symdef.pas 294 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777
  1. {
  2. Symbol table implementation for the definitions
  3. Copyright (c) 1998-2005 by Florian Klaempfl, Pierre Muller
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. unit symdef;
  18. {$i fpcdefs.inc}
  19. interface
  20. uses
  21. { common }
  22. cclasses,widestr,
  23. { global }
  24. globtype,globals,tokens,constexp,
  25. { symtable }
  26. symconst,symbase,symtype,
  27. { node }
  28. node,
  29. { aasm }
  30. aasmtai,
  31. cpuinfo,
  32. cgbase,
  33. parabase
  34. ;
  35. type
  36. {************************************************
  37. TDef
  38. ************************************************}
  39. tgenericconstraintdata=class
  40. interfaces : tfpobjectlist;
  41. interfacesderef : tfplist;
  42. flags : tgenericconstraintflags;
  43. constructor create;
  44. destructor destroy;override;
  45. procedure ppuload(ppufile:tcompilerppufile);
  46. procedure ppuwrite(ppufile:tcompilerppufile);
  47. procedure buildderef;
  48. procedure deref;
  49. end;
  50. { trtti_attribute_list }
  51. trtti_attribute = class
  52. typesym : tsym;
  53. typesymderef : tderef;
  54. typeconstr : tdef;
  55. typeconstrderef : tderef;
  56. { these two are not stored in PPU }
  57. constructorcall : tnode;
  58. constructorpd : tdef;
  59. paras : array of tnode;
  60. constructor ppuload(ppufile:tcompilerppufile);
  61. procedure ppuwrite(ppufile:tcompilerppufile);
  62. procedure ppuload_subentries(ppufile:tcompilerppufile);
  63. procedure ppuwrite_subentries(ppufile:tcompilerppufile);
  64. destructor destroy;override;
  65. procedure buildderef;
  66. procedure deref;
  67. end;
  68. trtti_attribute_list = class
  69. rtti_attributes : TFPObjectList;
  70. { if the attribute list is bound to a def or symbol }
  71. is_bound : Boolean;
  72. class procedure bind(var dangling,owned:trtti_attribute_list);
  73. procedure addattribute(atypesym:tsym;typeconstr:tdef;constructorcall:tnode;constref paras:array of tnode);
  74. procedure addattribute(attr:trtti_attribute);
  75. destructor destroy; override;
  76. function get_attribute_count:longint;
  77. procedure buildderef;
  78. procedure deref;
  79. class function ppuload(ppufile:tcompilerppufile):trtti_attribute_list;
  80. class procedure ppuwrite(attrlist:trtti_attribute_list;ppufile:tcompilerppufile);
  81. class procedure ppuload_subentries(attrlist:trtti_attribute_list;ppufile:tcompilerppufile);
  82. class procedure ppuwrite_subentries(attrlist:trtti_attribute_list;ppufile:tcompilerppufile);
  83. end;
  84. { tstoreddef }
  85. tstoreddef = class(tdef)
  86. private
  87. {$ifdef symansistr}
  88. _fullownerhierarchyname : ansistring;
  89. {$else symansistr}
  90. _fullownerhierarchyname : pshortstring;
  91. {$endif symansistr}
  92. procedure writeentry(ppufile: tcompilerppufile; ibnr: byte);
  93. protected
  94. typesymderef : tderef;
  95. procedure ppuwrite_platform(ppufile:tcompilerppufile);virtual;
  96. procedure ppuload_platform(ppufile:tcompilerppufile);virtual;
  97. { a (possibly) reusable def is always created on the basis of another
  98. def, and contains a reference to this other def. If this other
  99. def is in a non-persistent symboltable, the new def cannot actually
  100. be safely reused everywhere in the current module. This routine
  101. abtracts that checking, and also restores the symtable stack
  102. (which had to be reset before creating the new def, so that the new
  103. def did not automatically get added to its top) }
  104. class procedure setup_reusable_def(origdef, newdef: tdef; res: PHashSetItem; oldsymtablestack: tsymtablestack);
  105. public
  106. {$ifdef EXTDEBUG}
  107. fileinfo : tfileposinfo;
  108. {$endif}
  109. { generic support }
  110. genericdef : tstoreddef;
  111. genericdefderef : tderef;
  112. generictokenbuf : tdynamicarray;
  113. { this list contains references to the symbols that make up the
  114. generic parameters; the symbols are not owned by this list
  115. Note: this list is allocated on demand! }
  116. genericparas : tfphashobjectlist;
  117. genericparaderefs : tfplist;
  118. { contains additional data if this def is a generic constraint
  119. Note: this class is allocated on demand! }
  120. genconstraintdata : tgenericconstraintdata;
  121. { this is Nil if the def has no RTTI attributes }
  122. rtti_attribute_list : trtti_attribute_list;
  123. constructor create(dt:tdeftyp;doregister:boolean);
  124. constructor ppuload(dt:tdeftyp;ppufile:tcompilerppufile);
  125. destructor destroy;override;
  126. function getcopy : tstoreddef;virtual;
  127. procedure ppuwrite(ppufile:tcompilerppufile);virtual;
  128. { this is called directly after ppuload }
  129. procedure ppuload_subentries(ppufile:tcompilerppufile);virtual;
  130. { this is called directly after ppuwrite }
  131. procedure ppuwrite_subentries(ppufile:tcompilerppufile);virtual;
  132. procedure buildderef;override;
  133. procedure buildderefimpl;override;
  134. procedure deref;override;
  135. procedure derefimpl;override;
  136. function size:asizeint;override;
  137. function getvardef:longint;override;
  138. function alignment:shortint;override;
  139. function is_publishable : boolean;override;
  140. function needs_inittable : boolean;override;
  141. function has_non_trivial_init_child(check_parent:boolean):boolean;override;
  142. function rtti_mangledname(rt:trttitype):TSymStr;override;
  143. function OwnerHierarchyName: string; override;
  144. function fullownerhierarchyname(skipprocparams:boolean):TSymStr;override;
  145. function needs_separate_initrtti:boolean;override;
  146. function in_currentunit: boolean;
  147. { regvars }
  148. function is_intregable : boolean;
  149. function is_fpuregable : boolean;
  150. { def can be put into a register if it is const/immutable }
  151. function is_const_intregable : boolean;
  152. { generics }
  153. procedure initgeneric;
  154. { this function can be used to determine whether a def is really a
  155. generic declaration or just a normal type declared inside another
  156. generic }
  157. function is_generic:boolean;
  158. { same as above for specializations }
  159. function is_specialization:boolean;
  160. { registers this def in the unit's deflist; no-op if already registered }
  161. procedure register_def; override;
  162. { add the def to the top of the symtable stack if it's not yet owned
  163. by another symtable }
  164. procedure maybe_put_in_symtable_stack;
  165. private
  166. savesize : asizeuint;
  167. end;
  168. tfiletyp = (ft_text,ft_typed,ft_untyped);
  169. tfiledef = class(tstoreddef)
  170. filetyp : tfiletyp;
  171. typedfiledef : tdef;
  172. typedfiledefderef : tderef;
  173. constructor createtext;virtual;
  174. constructor createuntyped;virtual;
  175. constructor createtyped(def : tdef);virtual;
  176. constructor ppuload(ppufile:tcompilerppufile);
  177. function getcopy : tstoreddef;override;
  178. { do not override this routine in platform-specific subclasses,
  179. override ppuwrite_platform instead }
  180. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  181. procedure buildderef;override;
  182. procedure deref;override;
  183. function GetTypeName:string;override;
  184. function getmangledparaname:TSymStr;override;
  185. function size:asizeint;override;
  186. procedure setsize;
  187. function alignment: shortint; override;
  188. end;
  189. tfiledefclass = class of tfiledef;
  190. tvariantdef = class(tstoreddef)
  191. varianttype : tvarianttype;
  192. constructor create(v : tvarianttype);virtual;
  193. constructor ppuload(ppufile:tcompilerppufile);
  194. function getcopy : tstoreddef;override;
  195. function GetTypeName:string;override;
  196. { do not override this routine in platform-specific subclasses,
  197. override ppuwrite_platform instead }
  198. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  199. function getvardef:longint;override;
  200. procedure setsize;
  201. function is_publishable : boolean;override;
  202. function needs_inittable : boolean;override;
  203. end;
  204. tvariantdefclass = class of tvariantdef;
  205. tformaldef = class(tstoreddef)
  206. typed:boolean;
  207. constructor create(Atyped:boolean);virtual;
  208. constructor ppuload(ppufile:tcompilerppufile);
  209. { do not override this routine in platform-specific subclasses,
  210. override ppuwrite_platform instead }
  211. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  212. function GetTypeName:string;override;
  213. end;
  214. tformaldefclass = class of tformaldef;
  215. tforwarddef = class(tstoreddef)
  216. tosymname : pshortstring;
  217. forwardpos : tfileposinfo;
  218. constructor create(const s:string;const pos:tfileposinfo);virtual;
  219. destructor destroy;override;
  220. function getcopy:tstoreddef;override;
  221. function GetTypeName:string;override;
  222. end;
  223. tforwarddefclass = class of tforwarddef;
  224. tundefineddef = class(tstoreddef)
  225. constructor create(doregister:boolean);virtual;
  226. constructor ppuload(ppufile:tcompilerppufile);
  227. { do not override this routine in platform-specific subclasses,
  228. override ppuwrite_platform instead }
  229. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  230. function GetTypeName:string;override;
  231. end;
  232. tundefineddefclass = class of tundefineddef;
  233. terrordef = class(tstoreddef)
  234. constructor create;virtual;
  235. { do not override this routine in platform-specific subclasses,
  236. override ppuwrite_platform instead }
  237. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  238. function GetTypeName:string;override;
  239. function getmangledparaname : TSymStr;override;
  240. end;
  241. terrordefclass = class of terrordef;
  242. tabstractpointerdef = class(tstoreddef)
  243. pointeddef : tdef;
  244. pointeddefderef : tderef;
  245. constructor create(dt:tdeftyp;def:tdef);
  246. constructor ppuload(dt:tdeftyp;ppufile:tcompilerppufile);
  247. procedure ppuwrite(ppufile:tcompilerppufile);override;
  248. procedure buildderef;override;
  249. procedure deref;override;
  250. function size:asizeint;override;
  251. function alignment:shortint;override;
  252. end;
  253. tpointerdef = class(tabstractpointerdef)
  254. has_pointer_math : boolean;
  255. constructor create(def:tdef);virtual;
  256. { returns a pointerdef for def, reusing an existing one in case it
  257. exists in the current module }
  258. class function getreusable(def: tdef): tpointerdef; virtual;
  259. { same as above, but in case the def must never be freed after the
  260. current module has been compiled -- even if the def was not written
  261. to the ppu file (for defs in para locations, as we don't reset them
  262. so we don't have to recalculate them all the time) }
  263. class function getreusable_no_free(def: tdef): tpointerdef;
  264. function size:asizeint;override;
  265. function getcopy:tstoreddef;override;
  266. constructor ppuload(ppufile:tcompilerppufile);
  267. { do not override this routine in platform-specific subclasses,
  268. override ppuwrite_platform instead }
  269. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  270. function GetTypeName:string;override;
  271. {# returns the appropriate int type for pointer arithmetic with the given pointer type.
  272. When adding or subtracting a number to/from a pointer, this function returns the
  273. int type to which that number has to be converted, before the operation can be performed.
  274. Normally, this is sinttype, except on i8086, where it takes into account the
  275. special i8086 pointer types (near, far, huge). }
  276. function pointer_arithmetic_int_type:tdef;virtual;
  277. {# the unsigned version of pointer_arithmetic_int_type. Used with inc/dec. }
  278. function pointer_arithmetic_uint_type:tdef;virtual;
  279. {# returns the int type produced when subtracting two pointers of the given type.
  280. Normally, this is sinttype, except on i8086, where it takes into account the
  281. special i8086 pointer types (near, far, huge). }
  282. function pointer_subtraction_result_type:tdef;virtual;
  283. function compatible_with_pointerdef_size(ptr: tpointerdef): boolean; virtual;
  284. {# the integer index type used to convert the pointer to array (i.e. denotes int_type in: ptr[int_type]) }
  285. function converted_pointer_to_array_range_type:tdef;virtual;
  286. end;
  287. tpointerdefclass = class of tpointerdef;
  288. tprocdef = class;
  289. tabstractrecorddef= class(tstoreddef)
  290. private
  291. rttistring : string;
  292. public
  293. objname,
  294. objrealname : PShortString;
  295. { for C++ classes: name of the library this class is imported from }
  296. { for Java classes/records: package name }
  297. import_lib : PShortString;
  298. symtable : TSymtable;
  299. cloneddef : tabstractrecorddef;
  300. cloneddefderef : tderef;
  301. objectoptions : tobjectoptions;
  302. { for targets that initialise typed constants via explicit assignments
  303. instead of by generating an initialised data sectino }
  304. tcinitcode : tnode;
  305. constructor create(const n:string; dt:tdeftyp;doregister:boolean);
  306. constructor ppuload(dt:tdeftyp;ppufile:tcompilerppufile);
  307. procedure ppuwrite(ppufile:tcompilerppufile);override;
  308. destructor destroy; override;
  309. procedure buildderefimpl;override;
  310. procedure derefimpl;override;
  311. procedure check_forwards; virtual;
  312. function find_procdef_bytype(pt:tproctypeoption): tprocdef;
  313. function GetSymtable(t:tGetSymtable):TSymtable;override;
  314. function is_packed:boolean;
  315. function RttiName: string;
  316. { enumerator support }
  317. function search_enumerator_get: tprocdef; virtual;
  318. function search_enumerator_move: tprocdef; virtual;
  319. function search_enumerator_current: tsym; virtual;
  320. { JVM }
  321. function jvm_full_typename(with_package_name: boolean): string;
  322. { check if the symtable contains a float field }
  323. function contains_float_field : boolean;
  324. { check if the symtable contains a field that spans an aword boundary }
  325. function contains_cross_aword_field: boolean;
  326. end;
  327. pvariantrecdesc = ^tvariantrecdesc;
  328. tvariantrecbranch = record
  329. { we store only single values here and no ranges because tvariantrecdesc is only needed in iso mode
  330. which does not support range expressions in variant record definitions }
  331. values : array of Tconstexprint;
  332. nestedvariant : pvariantrecdesc;
  333. end;
  334. ppvariantrecdesc = ^pvariantrecdesc;
  335. tvariantrecdesc = record
  336. variantselector : tsym;
  337. variantselectorderef : tderef;
  338. branches : array of tvariantrecbranch;
  339. end;
  340. trecorddef = class(tabstractrecorddef)
  341. public
  342. variantrecdesc : pvariantrecdesc;
  343. isunion : boolean;
  344. constructor create(const n:string; p:TSymtable);virtual;
  345. constructor create_global_internal(const n: string; packrecords, recordalignmin: shortint); virtual;
  346. function add_field_by_def(const optionalname: TIDString; def: tdef): tsym;
  347. procedure add_fields_from_deflist(fieldtypes: tfplist);
  348. constructor ppuload(ppufile:tcompilerppufile);
  349. destructor destroy;override;
  350. function getcopy : tstoreddef;override;
  351. { do not override this routine in platform-specific subclasses,
  352. override ppuwrite_platform instead }
  353. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  354. procedure buildderef;override;
  355. procedure deref;override;
  356. function size:asizeint;override;
  357. function alignment : shortint;override;
  358. function padalignment: shortint;
  359. function GetTypeName:string;override;
  360. { debug }
  361. function needs_inittable : boolean;override;
  362. function needs_separate_initrtti:boolean;override;
  363. function has_non_trivial_init_child(check_parent:boolean):boolean;override;
  364. end;
  365. trecorddefclass = class of trecorddef;
  366. tobjectdef = class;
  367. { TImplementedInterface }
  368. TImplementedInterface = class
  369. private
  370. fIOffset : longint;
  371. function GetIOffset: longint;
  372. public
  373. IntfDef : tobjectdef;
  374. IntfDefDeref : tderef;
  375. IType : tinterfaceentrytype;
  376. VtblImplIntf : TImplementedInterface;
  377. NameMappings : TFPHashList;
  378. ProcDefs : TFPObjectList;
  379. ImplementsGetter : tsym;
  380. ImplementsGetterDeref : tderef;
  381. ImplementsField : tsym;
  382. constructor create(aintf: tobjectdef);virtual;
  383. constructor create_deref(intfd,getterd:tderef);virtual;
  384. destructor destroy; override;
  385. function getcopy:TImplementedInterface;
  386. procedure buildderef;
  387. procedure deref;
  388. procedure AddMapping(const origname, newname: string);
  389. function GetMapping(const origname: string):string;
  390. procedure AddImplProc(pd:tprocdef);
  391. function IsImplMergePossible(MergingIntf:TImplementedInterface;out weight: longint): boolean;
  392. property IOffset: longint read GetIOffset write fIOffset;
  393. end;
  394. timplementedinterfaceclass = class of timplementedinterface;
  395. { tvmtentry }
  396. tvmtentry = record
  397. procdef : tprocdef;
  398. procdefderef : tderef;
  399. visibility : tvisibility;
  400. end;
  401. pvmtentry = ^tvmtentry;
  402. { tobjectdef }
  403. tvmcallstatic = (vmcs_default, vmcs_yes, vmcs_no, vmcs_unreachable);
  404. pmvcallstaticinfo = ^tmvcallstaticinfo;
  405. tmvcallstaticinfo = array[0..1024*1024-1] of tvmcallstatic;
  406. tobjectdef = class(tabstractrecorddef)
  407. private
  408. fcurrent_dispid: longint;
  409. public
  410. childof : tobjectdef;
  411. childofderef : tderef;
  412. { for Object Pascal helpers }
  413. extendeddef : tdef;
  414. extendeddefderef: tderef;
  415. helpertype : thelpertype;
  416. { for Objective-C: protocols and classes can have the same name there }
  417. objextname : pshortstring;
  418. { to be able to have a variable vmt position }
  419. { and no vmt field for objects without virtuals }
  420. vmtentries : TFPList;
  421. vmcallstaticinfo : pmvcallstaticinfo;
  422. vmt_field : tsym;
  423. vmt_fieldderef : tderef;
  424. iidguid : pguid;
  425. iidstr : pshortstring;
  426. { store implemented interfaces defs and name mappings }
  427. ImplementedInterfaces : TFPObjectList;
  428. { number of abstract methods (used by JVM target to determine whether
  429. or not the class should be marked as abstract: must be done if 1 or
  430. more abstract methods) }
  431. abstractcnt : longint;
  432. writing_class_record_dbginfo,
  433. { a class of this type has been created in this module }
  434. created_in_current_module,
  435. { a loadvmtnode for this class has been created in this
  436. module, so if a classrefdef variable of this or a parent
  437. class is used somewhere to instantiate a class, then this
  438. class may be instantiated
  439. }
  440. maybe_created_in_current_module,
  441. { a "class of" this particular class has been created in
  442. this module
  443. }
  444. classref_created_in_current_module : boolean;
  445. objecttype : tobjecttyp;
  446. constructor create(ot:tobjecttyp;const n:string;c:tobjectdef;doregister:boolean);virtual;
  447. constructor ppuload(ppufile:tcompilerppufile);
  448. destructor destroy;override;
  449. function getcopy : tstoreddef;override;
  450. { do not override this routine in platform-specific subclasses,
  451. override ppuwrite_platform instead }
  452. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  453. function GetTypeName:string;override;
  454. procedure buildderef;override;
  455. procedure deref;override;
  456. procedure derefimpl;override;
  457. procedure copyvmtentries(objdef:tobjectdef);
  458. function getparentdef:tdef;override;
  459. function size : asizeint;override;
  460. function alignment:shortint;override;
  461. function vmtmethodoffset(index:longint):longint;
  462. function members_need_inittable : boolean;
  463. { this should be called when this class implements an interface }
  464. procedure prepareguid;
  465. function is_publishable : boolean;override;
  466. function needs_inittable : boolean;override;
  467. function needs_separate_initrtti : boolean;override;
  468. function has_non_trivial_init_child(check_parent:boolean):boolean;override;
  469. function rtti_mangledname(rt:trttitype):TSymStr;override;
  470. function vmt_mangledname : TSymStr;
  471. function vmt_def: trecorddef;
  472. procedure check_forwards; override;
  473. procedure insertvmt;
  474. function vmt_offset: asizeint;
  475. procedure set_parent(c : tobjectdef);
  476. function find_destructor: tprocdef;
  477. function implements_any_interfaces: boolean;
  478. { dispinterface support }
  479. function get_next_dispid: longint;
  480. { enumerator support }
  481. function search_enumerator_get: tprocdef; override;
  482. function search_enumerator_move: tprocdef; override;
  483. function search_enumerator_current: tsym; override;
  484. { WPO }
  485. procedure register_created_object_type;override;
  486. procedure register_maybe_created_object_type;
  487. procedure register_created_classref_type;
  488. procedure register_vmt_call(index:longint);
  489. { ObjC }
  490. procedure finish_objc_data;
  491. function check_objc_types: boolean;
  492. { C++ }
  493. procedure finish_cpp_data;
  494. end;
  495. tobjectdefclass = class of tobjectdef;
  496. tclassrefdef = class(tabstractpointerdef)
  497. constructor create(def:tdef);virtual;
  498. constructor ppuload(ppufile:tcompilerppufile);
  499. { do not override this routine in platform-specific subclasses,
  500. override ppuwrite_platform instead }
  501. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  502. function getcopy:tstoreddef;override;
  503. function GetTypeName:string;override;
  504. function is_publishable : boolean;override;
  505. function rtti_mangledname(rt:trttitype):TSymStr;override;
  506. procedure register_created_object_type;override;
  507. end;
  508. tclassrefdefclass = class of tclassrefdef;
  509. tarraydef = class(tstoreddef)
  510. lowrange,
  511. highrange : asizeint;
  512. rangedef : tdef;
  513. rangedefderef : tderef;
  514. arrayoptions : tarraydefoptions;
  515. symtable : TSymtable;
  516. protected
  517. _elementdef : tdef;
  518. _elementdefderef : tderef;
  519. procedure setelementdef(def:tdef);
  520. class function getreusable_intern(def: tdef; elems: asizeint; const options: tarraydefoptions): tarraydef;
  521. public
  522. function elesize : asizeint;
  523. function elepackedbitsize : asizeint;
  524. function elecount : asizeuint;
  525. constructor create_from_pointer(def: tpointerdef);virtual;
  526. constructor create(l, h: asizeint; def: tdef);virtual;
  527. constructor create_vector(l,h:asizeint; def:tdef);
  528. constructor create_openarray;virtual;
  529. class function getreusable(def: tdef; elems: asizeint): tarraydef;
  530. class function getreusable_vector(def: tdef; elems: asizeint): tarraydef;
  531. { same as above, but in case the def must never be freed after the
  532. current module has been compiled -- even if the def was not written
  533. to the ppu file (for defs in para locations, as we don't reset them
  534. so we don't have to recalculate them all the time) }
  535. class function getreusable_no_free(def: tdef; elems: asizeint): tarraydef;
  536. class function getreusable_no_free_vector(def: tdef; elems: asizeint): tarraydef;
  537. constructor ppuload(ppufile:tcompilerppufile);
  538. destructor destroy; override;
  539. function getcopy : tstoreddef;override;
  540. { do not override this routine in platform-specific subclasses,
  541. override ppuwrite_platform instead }
  542. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  543. function GetTypeName:string;override;
  544. function getmangledparaname : TSymStr;override;
  545. procedure buildderef;override;
  546. procedure deref;override;
  547. function size : asizeint;override;
  548. function alignment : shortint;override;
  549. { returns the label of the range check string }
  550. function needs_inittable : boolean;override;
  551. function needs_separate_initrtti : boolean;override;
  552. property elementdef : tdef read _elementdef write setelementdef;
  553. function is_publishable : boolean;override;
  554. function is_hwvector: boolean;
  555. end;
  556. tarraydefclass = class of tarraydef;
  557. torddef = class(tstoreddef)
  558. low,high : TConstExprInt;
  559. ordtype : tordtype;
  560. constructor create(t : tordtype;v,b : TConstExprInt; doregister: boolean);virtual;
  561. constructor ppuload(ppufile:tcompilerppufile);
  562. function getcopy : tstoreddef;override;
  563. { do not override this routine in platform-specific subclasses,
  564. override ppuwrite_platform instead }
  565. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  566. function is_publishable : boolean;override;
  567. function GetTypeName:string;override;
  568. function alignment:shortint;override;
  569. procedure setsize;
  570. function packedbitsize: asizeint; override;
  571. function getvardef : longint;override;
  572. end;
  573. torddefclass = class of torddef;
  574. tfloatdef = class(tstoreddef)
  575. floattype : tfloattype;
  576. constructor create(t: tfloattype; doregister: boolean);virtual;
  577. constructor ppuload(ppufile:tcompilerppufile);
  578. function getcopy : tstoreddef;override;
  579. { do not override this routine in platform-specific subclasses,
  580. override ppuwrite_platform instead }
  581. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  582. function GetTypeName:string;override;
  583. function is_publishable : boolean;override;
  584. function alignment:shortint;override;
  585. function structalignment: shortint;override;
  586. procedure setsize;
  587. function getvardef:longint;override;
  588. end;
  589. tfloatdefclass = class of tfloatdef;
  590. { tabstractprocdef }
  591. tprocnameoption = (pno_showhidden, pno_proctypeoption, pno_paranames,
  592. pno_ownername, pno_noclassmarker, pno_noleadingdollar,
  593. pno_mangledname, pno_noparams);
  594. tprocnameoptions = set of tprocnameoption;
  595. tproccopytyp = (pc_normal,
  596. { everything except for hidden parameters }
  597. pc_normal_no_hidden,
  598. { always creates a top-level function, removes all
  599. special parameters (self, vmt, parentfp, ...) }
  600. pc_bareproc,
  601. { creates a procvardef describing only the code pointer
  602. of a method/netsted function/... }
  603. pc_address_only
  604. );
  605. tabstractprocdef = class(tstoreddef)
  606. { saves a definition to the return type }
  607. returndef : tdef;
  608. returndefderef : tderef;
  609. parast : TSymtable;
  610. paras : tparalist;
  611. proctypeoption : tproctypeoption;
  612. proccalloption : tproccalloption;
  613. procoptions : tprocoptions;
  614. callerargareasize,
  615. calleeargareasize: pint;
  616. {$ifdef m68k}
  617. exp_funcretloc : tregister; { explicit funcretloc for AmigaOS }
  618. {$endif}
  619. funcretloc : array[callerside..calleeside] of TCGPara;
  620. has_paraloc_info : tcallercallee; { paraloc info is available }
  621. { number of user visible parameters }
  622. maxparacount,
  623. minparacount : byte;
  624. constructor create(dt:tdeftyp;level:byte;doregister:boolean);
  625. constructor ppuload(dt:tdeftyp;ppufile:tcompilerppufile);
  626. destructor destroy;override;
  627. procedure ppuwrite(ppufile:tcompilerppufile);override;
  628. procedure buildderef;override;
  629. procedure deref;override;
  630. procedure calcparas;
  631. function mangledprocparanames(oldlen : longint) : string;
  632. function typename_paras(pno: tprocnameoptions): ansistring;
  633. function is_methodpointer:boolean;virtual;
  634. function is_addressonly:boolean;virtual;
  635. function no_self_node:boolean;
  636. { get either a copy as a procdef or procvardef }
  637. function getcopyas(newtyp:tdeftyp;copytyp:tproccopytyp; const paraprefix: string): tstoreddef; virtual;
  638. function compatible_with_pointerdef_size(ptr: tpointerdef): boolean; virtual;
  639. procedure check_mark_as_nested;
  640. procedure init_paraloc_info(side: tcallercallee);
  641. procedure done_paraloc_info(side: tcallercallee);
  642. function stack_tainting_parameter(side: tcallercallee): boolean;
  643. function is_pushleftright: boolean;virtual;
  644. function address_type:tdef;virtual;
  645. { address type, generated for ofs() }
  646. function ofs_address_type:tdef;virtual;
  647. procedure declared_far;virtual;
  648. procedure declared_near;virtual;
  649. function generate_safecall_wrapper: boolean; virtual;
  650. private
  651. procedure count_para(p:TObject;arg:pointer);
  652. procedure insert_para(p:TObject;arg:pointer);
  653. end;
  654. tprocvardef = class(tabstractprocdef)
  655. constructor create(level:byte);virtual;
  656. { returns a procvardef that represents the address of a proc(var)def }
  657. class function getreusableprocaddr(def: tabstractprocdef): tprocvardef; virtual;
  658. { same as above, but in case the def must never be freed after the
  659. current module has been compiled -- even if the def was not written
  660. to the ppu file (for defs in para locations, as we don't reset them
  661. so we don't have to recalculate them all the time) }
  662. class function getreusableprocaddr_no_free(def: tabstractprocdef): tprocvardef;
  663. constructor ppuload(ppufile:tcompilerppufile);
  664. function getcopy : tstoreddef;override;
  665. { do not override this routine in platform-specific subclasses,
  666. override ppuwrite_platform instead }
  667. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  668. function GetSymtable(t:tGetSymtable):TSymtable;override;
  669. function size : asizeint;override;
  670. function GetTypeName:string;override;
  671. function is_publishable : boolean;override;
  672. function is_methodpointer:boolean;override;
  673. function is_addressonly:boolean;override;
  674. function getmangledparaname:TSymStr;override;
  675. function getcopyas(newtyp: tdeftyp; copytyp: tproccopytyp; const paraprefix: string): tstoreddef; override;
  676. end;
  677. tprocvardefclass = class of tprocvardef;
  678. tmessageinf = record
  679. case integer of
  680. 0 : (str : pshortstring);
  681. 1 : (i : longint);
  682. end;
  683. tinlininginfo = record
  684. { node tree }
  685. code : tnode;
  686. flags : tprocinfoflags;
  687. end;
  688. pinlininginfo = ^tinlininginfo;
  689. {$ifdef oldregvars}
  690. { register variables }
  691. pregvarinfo = ^tregvarinfo;
  692. tregvarinfo = record
  693. regvars : array[1..maxvarregs] of tsym;
  694. regvars_para : array[1..maxvarregs] of boolean;
  695. regvars_refs : array[1..maxvarregs] of longint;
  696. fpuregvars : array[1..maxfpuvarregs] of tsym;
  697. fpuregvars_para : array[1..maxfpuvarregs] of boolean;
  698. fpuregvars_refs : array[1..maxfpuvarregs] of longint;
  699. end;
  700. {$endif oldregvars}
  701. timplprocdefinfo = record
  702. resultname : pshortstring;
  703. parentfpstruct: tsym;
  704. parentfpstructptrtype: tdef;
  705. parentfpinitblock: tnode;
  706. procstarttai,
  707. procendtai : tai;
  708. skpara: pointer;
  709. personality: tprocdef;
  710. forwarddef,
  711. interfacedef : boolean;
  712. hasforward : boolean;
  713. end;
  714. pimplprocdefinfo = ^timplprocdefinfo;
  715. { tprocdef }
  716. tprocdef = class(tabstractprocdef)
  717. protected
  718. {$ifdef symansistr}
  719. _mangledname : ansistring;
  720. {$else symansistr}
  721. _mangledname : pshortstring;
  722. {$endif}
  723. { information that is only required until the implementation of the
  724. procdef has been handled }
  725. implprocdefinfo : pimplprocdefinfo;
  726. function store_localst:boolean;
  727. function GetResultName: PShortString;
  728. procedure SetResultName(AValue: PShortString);
  729. function GetParentFPStruct: tsym;
  730. procedure SetParentFPStruct(AValue: tsym);
  731. function GetParentFPStructPtrType: tdef;
  732. procedure SetParentFPStructPtrType(AValue: tdef);
  733. function GetParentFPInitBlock: tnode;
  734. procedure SetParentFPInitBlock(AValue: tnode);
  735. function Getprocstarttai: tai;
  736. procedure Setprocstarttai(AValue: tai);
  737. function Getprocendtai: tai;
  738. procedure Setprocendtai(AValue: tai);
  739. function Getskpara: pointer;
  740. procedure Setskpara(AValue: pointer);
  741. function Getpersonality: tprocdef;
  742. procedure Setpersonality(AValue: tprocdef);
  743. function Getforwarddef: boolean;
  744. procedure Setforwarddef(AValue: boolean);
  745. function Getinterfacedef: boolean;
  746. procedure Setinterfacedef(AValue: boolean);virtual;
  747. function Gethasforward: boolean;
  748. procedure Sethasforward(AValue: boolean);
  749. function GetIsEmpty: boolean;
  750. procedure SetIsEmpty(AValue: boolean);
  751. function GetHasInliningInfo: boolean;
  752. procedure SetHasInliningInfo(AValue: boolean);
  753. public
  754. messageinf : tmessageinf;
  755. dispid : longint;
  756. {$ifndef EXTDEBUG}
  757. { where is this function defined and what were the symbol
  758. flags, needed here because there
  759. is only one symbol for all overloaded functions
  760. EXTDEBUG has fileinfo in tdef (PFV) }
  761. fileinfo : tfileposinfo;
  762. {$endif}
  763. symoptions : tsymoptions;
  764. deprecatedmsg : pshortstring;
  765. { generic support }
  766. genericdecltokenbuf : tdynamicarray;
  767. { symbol owning this definition }
  768. procsym : tsym;
  769. procsymderef : tderef;
  770. { alias names }
  771. aliasnames : TCmdStrList;
  772. { symtables }
  773. localst : TSymtable;
  774. funcretsym : tsym;
  775. funcretsymderef : tderef;
  776. struct : tabstractrecorddef;
  777. structderef : tderef;
  778. implprocoptions: timplprocoptions;
  779. { import info }
  780. import_dll,
  781. import_name : pshortstring;
  782. { info for inlining the subroutine, if this pointer is nil,
  783. the procedure can't be inlined }
  784. inlininginfo : pinlininginfo;
  785. {$ifdef oldregvars}
  786. regvarinfo: pregvarinfo;
  787. {$endif oldregvars}
  788. import_nr : word;
  789. extnumber : word;
  790. { set to a value different from tsk_none in case this procdef is for
  791. a routine that has to be internally generated by the compiler }
  792. synthetickind: tsynthetickind;
  793. visibility : tvisibility;
  794. constructor create(level:byte;doregister:boolean);virtual;
  795. constructor ppuload(ppufile:tcompilerppufile);
  796. destructor destroy;override;
  797. procedure freeimplprocdefinfo;
  798. { do not override this routine in platform-specific subclasses,
  799. override ppuwrite_platform instead }
  800. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  801. procedure buildderef;override;
  802. procedure buildderefimpl;override;
  803. procedure deref;override;
  804. procedure derefimpl;override;
  805. function GetSymtable(t:tGetSymtable):TSymtable;override;
  806. { warnings:
  807. * the symtablestack top has to be the symtable to which the copy
  808. should be added
  809. * getcopy does not create a finished/ready-to-use procdef; it
  810. needs to be finalised afterwards by calling
  811. symcreat.finish_copied_procdef() afterwards
  812. }
  813. function getcopyas(newtyp:tdeftyp;copytyp:tproccopytyp; const paraprefix: string): tstoreddef; override;
  814. function getcopy: tstoreddef; override;
  815. function GetTypeName : string;override;
  816. function mangledname : TSymStr; virtual;
  817. procedure setmangledname(const s : TSymStr);
  818. function needsglobalasmsym: boolean;
  819. procedure setcompilerprocname;
  820. function fullprocname(showhidden:boolean):string;
  821. function customprocname(pno: tprocnameoptions):ansistring;
  822. function defaultmangledname: TSymStr;
  823. function cplusplusmangledname : TSymStr;
  824. function objcmangledname : TSymStr;
  825. function is_methodpointer:boolean;override;
  826. function is_addressonly:boolean;override;
  827. procedure make_external;
  828. procedure init_genericdecl;
  829. function get_funcretsym_info(out ressym: tsym; out resdef: tdef): boolean; virtual;
  830. function get_safecall_funcretsym_info(out ressym: tsym; out resdef: tdef): boolean; virtual;
  831. { returns whether the mangled name or any of its aliases is equal to
  832. s }
  833. function has_alias_name(const s: TSymStr):boolean;
  834. { aliases to fields only required when a function is implemented in
  835. the current unit }
  836. property resultname: PShortString read GetResultName write SetResultName;
  837. { temporary reference to structure containing copies of all local
  838. variables and parameters accessed by nested routines; reference to
  839. this structure is passed as "parent frame pointer" on targets that
  840. lack this concept (at least JVM and LLVM); no need to save to/
  841. restore from ppu, since nested routines are always in the same
  842. unit }
  843. property parentfpstruct: tsym read GetParentFPStruct write SetParentFPStruct;
  844. { pointer to parentfpstruct's type (not yet valid during parsing, so
  845. cannot be used for $parentfp parameter) (no need to save to ppu) }
  846. property parentfpstructptrtype: tdef read GetParentFPStructPtrType write SetParentFPStructPtrType;
  847. { code to copy the parameters accessed from nested routines into the
  848. parentfpstruct (no need to save to ppu) }
  849. property parentfpinitblock: tnode read GetParentFPInitBlock write SetParentFPInitBlock;
  850. { First/last assembler symbol/instruction in aasmoutput list.
  851. Note: initialised after compiling the code for the procdef, but
  852. not saved to/restored from ppu. Used when inserting debug info }
  853. property procstarttai: tai read Getprocstarttai write Setprocstarttai;
  854. property procendtai: tai read Getprocendtai write Setprocendtai;
  855. { optional parameter for the synthetic routine generation logic }
  856. property skpara: pointer read Getskpara write Setskpara;
  857. { ABI-conformant exception handling personality function }
  858. property personality: tprocdef read Getpersonality write Setpersonality;
  859. { true, if the procedure is only declared
  860. (forward procedure) }
  861. property forwarddef: boolean read Getforwarddef write Setforwarddef;
  862. { true if the procedure is declared in the interface }
  863. property interfacedef: boolean read Getinterfacedef write Setinterfacedef;
  864. { true if the procedure has a forward declaration }
  865. property hasforward: boolean read Gethasforward write Sethasforward;
  866. { true if the routine's body is empty }
  867. property isempty: boolean read GetIsEmpty write SetIsEmpty;
  868. { true if all information required to inline this routine is available }
  869. property has_inlininginfo: boolean read GetHasInliningInfo write SetHasInliningInfo;
  870. end;
  871. tprocdefclass = class of tprocdef;
  872. { single linked list of overloaded procs }
  873. pprocdeflist = ^tprocdeflist;
  874. tprocdeflist = record
  875. def : tprocdef;
  876. defderef : tderef;
  877. next : pprocdeflist;
  878. end;
  879. tstringdef = class(tstoreddef)
  880. encoding : tstringencoding;
  881. stringtype : tstringtype;
  882. len : asizeint;
  883. constructor createshort(l: byte; doregister: boolean);virtual;
  884. constructor loadshort(ppufile:tcompilerppufile);
  885. constructor createlong(l: asizeint; doregister: boolean);virtual;
  886. constructor loadlong(ppufile:tcompilerppufile);
  887. constructor createansi(aencoding: tstringencoding; doregister: boolean);virtual;
  888. constructor loadansi(ppufile:tcompilerppufile);
  889. constructor createwide(doregister: boolean);virtual;
  890. constructor loadwide(ppufile:tcompilerppufile);
  891. constructor createunicode(doregister: boolean);virtual;
  892. constructor loadunicode(ppufile:tcompilerppufile);virtual;
  893. function getcopy : tstoreddef;override;
  894. function stringtypname:string;
  895. { do not override this routine in platform-specific subclasses,
  896. override ppuwrite_platform instead }
  897. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  898. function GetTypeName:string;override;
  899. function getmangledparaname:TSymStr;override;
  900. function is_publishable : boolean;override;
  901. function size:asizeint;override;
  902. function alignment : shortint;override;
  903. function needs_inittable : boolean;override;
  904. function getvardef:longint;override;
  905. end;
  906. tstringdefclass = class of tstringdef;
  907. { tenumdef }
  908. tenumdef = class(tstoreddef)
  909. minval,
  910. maxval : asizeint;
  911. basedef : tenumdef;
  912. basedefderef : tderef;
  913. symtable : TSymtable;
  914. has_jumps : boolean;
  915. constructor create;virtual;
  916. constructor create_subrange(_basedef:tenumdef;_min,_max:asizeint);virtual;
  917. constructor ppuload(ppufile:tcompilerppufile);
  918. destructor destroy;override;
  919. function getcopy : tstoreddef;override;
  920. { do not override this routine in platform-specific subclasses,
  921. override ppuwrite_platform instead }
  922. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  923. procedure buildderef;override;
  924. procedure deref;override;
  925. function GetTypeName:string;override;
  926. function is_publishable : boolean;override;
  927. procedure calcsavesize(packenum: shortint);
  928. function packedbitsize: asizeint; override;
  929. procedure setmax(_max:asizeint);
  930. procedure setmin(_min:asizeint);
  931. function min:asizeint;
  932. function max:asizeint;
  933. function getfirstsym:tsym;
  934. function int2enumsym(l: asizeint): tsym;
  935. { returns basedef if assigned, otherwise self }
  936. function getbasedef: tenumdef;
  937. end;
  938. tenumdefclass = class of tenumdef;
  939. tsetdef = class(tstoreddef)
  940. elementdef : tdef;
  941. elementdefderef : tderef;
  942. setbase,
  943. setmax : asizeint;
  944. constructor create(def: tdef; low, high: asizeint; doregister: boolean);virtual;
  945. constructor ppuload(ppufile:tcompilerppufile);
  946. function getcopy : tstoreddef;override;
  947. { do not override this routine in platform-specific subclasses,
  948. override ppuwrite_platform instead }
  949. procedure ppuwrite(ppufile:tcompilerppufile);override;final;
  950. procedure buildderef;override;
  951. procedure deref;override;
  952. function GetTypeName:string;override;
  953. function is_publishable : boolean;override;
  954. function alignment: shortint; override;
  955. end;
  956. tsetdefclass = class of tsetdef;
  957. tgenericdummyentry = class
  958. dummysym : tsym;
  959. resolvedsym : tsym;
  960. end;
  961. tdefawaresymtablestack = class(TSymtablestack)
  962. private
  963. procedure add_helpers_and_generics(st:tsymtable;addgenerics:boolean);
  964. procedure remove_helpers_and_generics(st:tsymtable);inline;
  965. procedure remove_helpers(st:tsymtable);
  966. procedure remove_generics(st:tsymtable);
  967. procedure pushcommon(st:tsymtable);inline;
  968. public
  969. procedure push(st: TSymtable); override;
  970. procedure pushafter(st,afterst:TSymtable); override;
  971. procedure pop(st: TSymtable); override;
  972. end;
  973. var
  974. current_structdef: tabstractrecorddef; { used for private functions check !! }
  975. current_genericdef: tstoreddef; { used to reject declaration of generic class inside generic class }
  976. current_specializedef: tstoreddef; { used to implement usage of generic class in itself }
  977. cfiledef: tfiledefclass;
  978. cvariantdef: tvariantdefclass;
  979. cformaldef: tformaldefclass;
  980. cforwarddef: tforwarddefclass;
  981. cundefineddef: tundefineddefclass;
  982. cerrordef: terrordefclass;
  983. cpointerdef: tpointerdefclass;
  984. crecorddef: trecorddefclass;
  985. cimplementedinterface: timplementedinterfaceclass;
  986. cobjectdef: tobjectdefclass;
  987. cclassrefdef: tclassrefdefclass;
  988. carraydef: tarraydefclass;
  989. corddef: torddefclass;
  990. cfloatdef: tfloatdefclass;
  991. cprocvardef: tprocvardefclass;
  992. cprocdef: tprocdefclass;
  993. cstringdef: tstringdefclass;
  994. cenumdef: tenumdefclass;
  995. csetdef: tsetdefclass;
  996. { default types }
  997. generrordef, { error in definition }
  998. voidpointertype, { pointer for Void-pointeddef }
  999. charpointertype, { pointer for Char-pointeddef }
  1000. widecharpointertype, { pointer for WideChar-pointeddef }
  1001. voidcodepointertype, { pointer to code; corresponds to System.CodePointer }
  1002. voidstackpointertype, { the pointer type used for accessing parameters and local vars on the stack }
  1003. parentfpvoidpointertype, { void pointer with the size of the hidden parentfp parameter, passed to nested functions }
  1004. {$ifdef x86}
  1005. voidnearpointertype,
  1006. voidnearcspointertype,
  1007. voidneardspointertype,
  1008. voidnearsspointertype,
  1009. voidnearespointertype,
  1010. voidnearfspointertype,
  1011. voidneargspointertype,
  1012. {$ifdef i8086}
  1013. voidfarpointertype,
  1014. voidhugepointertype,
  1015. charnearpointertype,
  1016. charfarpointertype,
  1017. charhugepointertype,
  1018. bytefarpointertype, { used for Mem[] }
  1019. wordfarpointertype, { used for MemW[] }
  1020. longintfarpointertype, { used for MemL[] }
  1021. {$endif i8086}
  1022. {$endif x86}
  1023. cundefinedtype,
  1024. cformaltype, { unique formal definition }
  1025. ctypedformaltype, { unique typed formal definition }
  1026. voidtype, { Void (procedure) }
  1027. cansichartype, { Char }
  1028. cwidechartype, { WideChar }
  1029. pasbool1type, { boolean type }
  1030. pasbool8type,
  1031. pasbool16type,
  1032. pasbool32type,
  1033. pasbool64type,
  1034. bool8type,
  1035. bool16type,
  1036. bool32type,
  1037. bool64type, { implement me }
  1038. {$ifdef llvm}
  1039. llvmbool1type, { LLVM i1 type }
  1040. {$endif llvm}
  1041. u8inttype, { 8-Bit unsigned integer }
  1042. s8inttype, { 8-Bit signed integer }
  1043. u16inttype, { 16-Bit unsigned integer }
  1044. s16inttype, { 16-Bit signed integer }
  1045. u24inttype, { 24-Bit unsigned integer }
  1046. s24inttype, { 24-Bit signed integer }
  1047. u32inttype, { 32-Bit unsigned integer }
  1048. s32inttype, { 32-Bit signed integer }
  1049. u40inttype, { 40-Bit unsigned integer }
  1050. s40inttype, { 40-Bit signed integer }
  1051. u48inttype, { 48-Bit unsigned integer }
  1052. s48inttype, { 48-Bit signed integer }
  1053. u56inttype, { 56-Bit unsigned integer }
  1054. s56inttype, { 56-Bit signed integer }
  1055. u64inttype, { 64-bit unsigned integer }
  1056. s64inttype, { 64-bit signed integer }
  1057. u128inttype, { 128-bit unsigned integer }
  1058. s128inttype, { 128-bit signed integer }
  1059. s32floattype, { 32 bit floating point number }
  1060. s64floattype, { 64 bit floating point number }
  1061. s80floattype, { 80 bit floating point number }
  1062. sc80floattype, { 80 bit floating point number but stored like in C }
  1063. s64currencytype, { pointer to a currency type }
  1064. cshortstringtype, { pointer to type of short string const }
  1065. clongstringtype, { pointer to type of long string const }
  1066. cansistringtype, { pointer to type of ansi string const }
  1067. cwidestringtype, { pointer to type of wide string const }
  1068. cunicodestringtype,
  1069. openshortstringtype, { pointer to type of an open shortstring,
  1070. needed for readln() }
  1071. openchararraytype, { pointer to type of an open array of char,
  1072. needed for readln() }
  1073. cfiletype, { get the same definition for all file }
  1074. { used for stabs }
  1075. methodpointertype, { typecasting of methodpointers to extract self }
  1076. nestedprocpointertype, { typecasting of nestedprocpointers to extract parentfp }
  1077. hresultdef,
  1078. typekindtype, { def of TTypeKind for correct handling of GetTypeKind parameters }
  1079. { we use only one variant def for every variant class }
  1080. cvarianttype,
  1081. colevarianttype,
  1082. { default integer type, normally s32inttype on 32 bit systems and s64bittype on 64 bit systems }
  1083. sinttype,
  1084. uinttype,
  1085. { integer types corresponding to OS_SINT/OS_INT }
  1086. ossinttype,
  1087. osuinttype,
  1088. { integer types corresponding to the ALU size, sizeof(aint) and the ALUSInt/ALUUInt types in the system unit }
  1089. alusinttype,
  1090. aluuinttype,
  1091. { integer types corresponding to SizeInt and SizeUInt for the target platform }
  1092. sizeuinttype,
  1093. sizesinttype,
  1094. { unsigned and signed ord type with the same size as a pointer }
  1095. ptruinttype,
  1096. ptrsinttype,
  1097. { unsigned and signed ord type with the same size as a codepointer }
  1098. codeptruinttype,
  1099. codeptrsinttype,
  1100. { several types to simulate more or less C++ objects for GDB }
  1101. vmttype,
  1102. vmtarraytype,
  1103. pvmttype : tdef; { type of classrefs, used for stabs }
  1104. { pointer to the anchestor of all classes }
  1105. class_tobject : tobjectdef;
  1106. { pointer to the base type for custom attributes }
  1107. class_tcustomattribute : tobjectdef;
  1108. { pointer to the ancestor of all COM interfaces }
  1109. interface_iunknown : tobjectdef;
  1110. { pointer to the ancestor of all dispinterfaces }
  1111. interface_idispatch : tobjectdef;
  1112. { pointer to the TGUID type
  1113. of all interfaces }
  1114. rec_tguid : trecorddef;
  1115. { jump buffer type, used by setjmp }
  1116. rec_jmp_buf : trecorddef;
  1117. { system.texceptaddr type, used by fpc_pushexceptaddr }
  1118. rec_exceptaddr: trecorddef;
  1119. { Objective-C base types }
  1120. objc_metaclasstype,
  1121. objc_superclasstype,
  1122. objc_idtype,
  1123. objc_seltype : tpointerdef;
  1124. objc_objecttype : trecorddef;
  1125. { base type of @protocol(protocolname) Objective-C statements }
  1126. objc_protocoltype : tobjectdef;
  1127. { helper types for for-in "fast enumeration" support in Objective-C 2.0 }
  1128. objc_fastenumeration : tobjectdef;
  1129. objc_fastenumerationstate : trecorddef;
  1130. {$ifdef llvm}
  1131. { llvm types }
  1132. { a unique def to identify any kind of metadata }
  1133. llvm_metadatatype : tdef;
  1134. {$endif llvm}
  1135. { Java base types }
  1136. { java.lang.Object }
  1137. java_jlobject : tobjectdef;
  1138. { java.lang.Throwable }
  1139. java_jlthrowable : tobjectdef;
  1140. { FPC base type for records }
  1141. java_fpcbaserecordtype : tobjectdef;
  1142. { java.lang.String }
  1143. java_jlstring : tobjectdef;
  1144. { java.lang.Enum }
  1145. java_jlenum : tobjectdef;
  1146. { java.util.EnumSet }
  1147. java_juenumset : tobjectdef;
  1148. { java.util.BitSet }
  1149. java_jubitset : tobjectdef;
  1150. { FPC java implementation of ansistrings }
  1151. java_ansistring : tobjectdef;
  1152. { FPC java implementation of shortstrings }
  1153. java_shortstring : tobjectdef;
  1154. { FPC java procvar base class }
  1155. java_procvarbase : tobjectdef;
  1156. { x86 vector types }
  1157. x86_m64type,
  1158. x86_m128type,
  1159. x86_m128dtype,
  1160. x86_m128itype,
  1161. x86_m256type,
  1162. x86_m256dtype,
  1163. x86_m256itype : tdef;
  1164. function make_mangledname(const typeprefix:TSymStr;st:TSymtable;const suffix:TSymStr):TSymStr;
  1165. function make_dllmangledname(const dllname,importname:TSymStr;
  1166. import_nr : word; pco : tproccalloption):TSymStr;
  1167. { should be in the types unit, but the types unit uses the node stuff :( }
  1168. function is_interfacecom(def: tdef): boolean;
  1169. function is_interfacecom_or_dispinterface(def: tdef): boolean;
  1170. function is_any_interface_kind(def: tdef): boolean;
  1171. function is_interfacecorba(def: tdef): boolean;
  1172. function is_interface(def: tdef): boolean;
  1173. function is_dispinterface(def: tdef): boolean;
  1174. function is_object(def: tdef): boolean;
  1175. function is_class(def: tdef): boolean;
  1176. function is_cppclass(def: tdef): boolean;
  1177. function is_objectpascal_helper(def: tdef): boolean;
  1178. function is_objcclass(def: tdef): boolean;
  1179. function is_objcclassref(def: tdef): boolean;
  1180. function is_objcprotocol(def: tdef): boolean;
  1181. function is_objccategory(def: tdef): boolean;
  1182. function is_objc_class_or_protocol(def: tdef): boolean;
  1183. function is_objc_protocol_or_category(def: tdef): boolean;
  1184. function is_classhelper(def: tdef): boolean;
  1185. function is_class_or_interface(def: tdef): boolean;
  1186. function is_class_or_interface_or_objc(def: tdef): boolean;
  1187. function is_class_or_interface_or_objc_or_java(def: tdef): boolean;
  1188. function is_class_or_interface_or_dispinterface_or_objc_or_java(def: tdef): boolean;
  1189. function is_class_or_interface_or_object(def: tdef): boolean;
  1190. function is_class_or_interface_or_dispinterface(def: tdef): boolean;
  1191. function is_implicit_pointer_object_type(def: tdef): boolean;
  1192. { returns true, if def is a type which is an implicit pointer to an array (dyn. array or dyn. string) }
  1193. function is_implicit_array_pointer(def: tdef): boolean;
  1194. function is_class_or_object(def: tdef): boolean;
  1195. function is_record(def: tdef): boolean;
  1196. function is_javaclass(def: tdef): boolean;
  1197. function is_javaclassref(def: tdef): boolean;
  1198. function is_javainterface(def: tdef): boolean;
  1199. function is_java_class_or_interface(def: tdef): boolean;
  1200. procedure loadobjctypes;
  1201. procedure maybeloadcocoatypes;
  1202. function use_vectorfpu(def : tdef) : boolean;
  1203. function getansistringcodepage:tstringencoding; inline;
  1204. function getansistringdef:tstringdef;
  1205. function getparaencoding(def:tdef):tstringencoding; inline;
  1206. function get_threadvar_record(def: tdef; out index_field, non_mt_data_field: tsym): trecorddef;
  1207. function get_recorddef(prefix:tinternaltypeprefix;const fields:array of tdef; packrecords:shortint): trecorddef;
  1208. { get a table def of the form
  1209. record
  1210. count: countdef;
  1211. elements: array[0..count-1] of elementdef
  1212. end;
  1213. Returns both the outer record and the inner arraydef
  1214. }
  1215. procedure get_tabledef(prefix:tinternaltypeprefix;countdef,elementdef:tdef;count:longint;packrecords:shortint;out recdef:trecorddef;out arrdef:tarraydef);
  1216. implementation
  1217. uses
  1218. SysUtils,
  1219. cutils,
  1220. { global }
  1221. verbose,
  1222. { target }
  1223. systems,paramgr,
  1224. { symtable }
  1225. symsym,symtable,defutil,objcdef,
  1226. { parser }
  1227. pgenutil,
  1228. { module }
  1229. fmodule,ppu,
  1230. { other }
  1231. aasmbase,
  1232. gendef,
  1233. fpccrc,
  1234. entfile
  1235. ;
  1236. {****************************************************************************
  1237. Helpers
  1238. ****************************************************************************}
  1239. function getansistringcodepage:tstringencoding; inline;
  1240. begin
  1241. if ([cs_explicit_codepage,cs_system_codepage]*current_settings.moduleswitches)<>[] then
  1242. result:=current_settings.sourcecodepage
  1243. else
  1244. result:=0;
  1245. end;
  1246. function getansistringdef:tstringdef;
  1247. var
  1248. symtable:tsymtable;
  1249. oldstack : tsymtablestack;
  1250. begin
  1251. { if a codepage is explicitly defined in this mudule we need to return
  1252. a replacement for ansistring def }
  1253. if ([cs_explicit_codepage,cs_system_codepage]*current_settings.moduleswitches)<>[] then
  1254. begin
  1255. if not assigned(current_module) then
  1256. internalerror(2011101301);
  1257. { codepage can be redeclared only once per unit so we don't need a list of
  1258. redefined ansistring but only one pointer }
  1259. if not assigned(current_module.ansistrdef) then
  1260. begin
  1261. { if we did not create it yet we need to do this now }
  1262. if current_module.in_interface then
  1263. symtable:=current_module.globalsymtable
  1264. else
  1265. symtable:=current_module.localsymtable;
  1266. { create a temporary stack as it's not good (TM) to mess around
  1267. with the order if the unit contains generics or helpers; don't
  1268. use a def aware symtablestack though }
  1269. oldstack:=symtablestack;
  1270. symtablestack:=tsymtablestack.create;
  1271. symtablestack.push(symtable);
  1272. current_module.ansistrdef:=cstringdef.createansi(current_settings.sourcecodepage,true);
  1273. symtablestack.pop(symtable);
  1274. symtablestack.free;
  1275. symtablestack:=oldstack;
  1276. end;
  1277. result:=tstringdef(current_module.ansistrdef);
  1278. end
  1279. else
  1280. result:=tstringdef(cansistringtype);
  1281. end;
  1282. function getparaencoding(def:tdef):tstringencoding; inline;
  1283. begin
  1284. { don't pass CP_NONE encoding to internal functions
  1285. they expect 0 encoding instead
  1286. exception: result of string concatenation, because if you pass the
  1287. result of a string concatenation to a rawbytestring, the result of
  1288. that concatenation shouldn't be converted to defaultsystemcodepage
  1289. if all strings have the same type }
  1290. result:=tstringdef(def).encoding;
  1291. if result=globals.CP_NONE then
  1292. result:=0
  1293. end;
  1294. function get_threadvar_record(def: tdef; out index_field, non_mt_data_field: tsym): trecorddef;
  1295. var
  1296. typ: ttypesym;
  1297. name: string;
  1298. begin
  1299. name:=internaltypeprefixName[itp_threadvar_record]+def.unique_id_str;
  1300. typ:=try_search_current_module_type(name);
  1301. if assigned(typ) then
  1302. begin
  1303. result:=trecorddef(ttypesym(typ).typedef);
  1304. index_field:=tsym(result.symtable.symlist[0]);
  1305. non_mt_data_field:=tsym(result.symtable.symlist[1]);
  1306. exit;
  1307. end;
  1308. { set recordalinmin to sizeof(pint), so the second field gets put at
  1309. offset = sizeof(pint) as expected }
  1310. result:=crecorddef.create_global_internal(
  1311. name,sizeof(pint),sizeof(pint));
  1312. {$ifdef cpu16bitaddr}
  1313. index_field:=result.add_field_by_def('',u16inttype);
  1314. {$else cpu16bitaddr}
  1315. index_field:=result.add_field_by_def('',u32inttype);
  1316. {$endif cpu16bitaddr}
  1317. non_mt_data_field:=result.add_field_by_def('',def);
  1318. { no need to add alignment padding, we won't create arrays of these }
  1319. end;
  1320. function get_recorddef(prefix:tinternaltypeprefix; const fields:array of tdef; packrecords:shortint): trecorddef;
  1321. var
  1322. fieldlist: tfplist;
  1323. srsym: tsym;
  1324. srsymtable: tsymtable;
  1325. i: longint;
  1326. name : TIDString;
  1327. begin
  1328. name:=copy(internaltypeprefixName[prefix],2,length(internaltypeprefixName[prefix]));
  1329. if searchsym_type(name,srsym,srsymtable) then
  1330. begin
  1331. result:=trecorddef(ttypesym(srsym).typedef);
  1332. exit
  1333. end;
  1334. { also always search in the current module (symtables are popped for
  1335. RTTI related code already) }
  1336. if searchsym_in_module(pointer(current_module),name,srsym,srsymtable) then
  1337. begin
  1338. result:=trecorddef(ttypesym(srsym).typedef);
  1339. exit;
  1340. end;
  1341. fieldlist:=tfplist.create;
  1342. for i:=low(fields) to high(fields) do
  1343. fieldlist.add(fields[i]);
  1344. result:=crecorddef.create_global_internal(internaltypeprefixName[prefix],packrecords,
  1345. targetinfos[target_info.system]^.alignment.recordalignmin);
  1346. result.add_fields_from_deflist(fieldlist);
  1347. fieldlist.free;
  1348. end;
  1349. procedure get_tabledef(prefix:tinternaltypeprefix;countdef,elementdef:tdef;count:longint;packrecords:shortint;out recdef:trecorddef;out arrdef:tarraydef);
  1350. var
  1351. fields: tfplist;
  1352. name: TIDString;
  1353. srsym: tsym;
  1354. srsymtable: tsymtable;
  1355. begin
  1356. { already created a message string table with this number of elements
  1357. in this unit -> reuse the def }
  1358. name:=internaltypeprefixName[prefix]+tostr(count);
  1359. if searchsym_type(copy(name,2,length(name)),srsym,srsymtable) then
  1360. begin
  1361. recdef:=trecorddef(ttypesym(srsym).typedef);
  1362. arrdef:=tarraydef(trecordsymtable(recdef.symtable).findfieldbyoffset(countdef.size).vardef);
  1363. exit
  1364. end;
  1365. { also always search in the current module (symtables are popped for
  1366. RTTI related code already) }
  1367. if searchsym_in_module(pointer(current_module),copy(name,2,length(name)),srsym,srsymtable) then
  1368. begin
  1369. recdef:=trecorddef(ttypesym(srsym).typedef);
  1370. arrdef:=tarraydef(trecordsymtable(recdef.symtable).findfieldbyoffset(countdef.size).vardef);
  1371. exit;
  1372. end;
  1373. recdef:=crecorddef.create_global_internal(name,packrecords,
  1374. targetinfos[target_info.system]^.alignment.recordalignmin);
  1375. fields:=tfplist.create;
  1376. fields.add(countdef);
  1377. if count>0 then
  1378. begin
  1379. arrdef:=carraydef.create(0,count-1,sizeuinttype);
  1380. arrdef.elementdef:=elementdef;
  1381. fields.add(arrdef);
  1382. end
  1383. else
  1384. arrdef:=nil;
  1385. recdef.add_fields_from_deflist(fields);
  1386. fields.free;
  1387. end;
  1388. function make_mangledname(const typeprefix:TSymStr;st:TSymtable;const suffix:TSymStr):TSymStr;
  1389. var
  1390. s,
  1391. prefix : TSymStr;
  1392. crc : dword;
  1393. begin
  1394. prefix:='';
  1395. if not assigned(st) then
  1396. internalerror(200204212);
  1397. { sub procedures }
  1398. while (st.symtabletype in [localsymtable,parasymtable]) do
  1399. begin
  1400. if st.defowner.typ<>procdef then
  1401. internalerror(200204173);
  1402. { Add the full mangledname of procedure to prevent
  1403. conflicts with 2 overloads having both a nested procedure
  1404. with the same name, see tb0314 (PFV) }
  1405. s:=tprocdef(st.defowner).procsym.name;
  1406. s:=s+tprocdef(st.defowner).mangledprocparanames(Length(s));
  1407. if prefix<>'' then
  1408. prefix:=s+'_'+prefix
  1409. else
  1410. prefix:=s;
  1411. if length(prefix)>100 then
  1412. begin
  1413. crc:=0;
  1414. crc:=UpdateCrc32(crc,prefix[1],length(prefix));
  1415. prefix:='$CRC'+hexstr(crc,8);
  1416. end;
  1417. st:=st.defowner.owner;
  1418. end;
  1419. { object/classes symtable, nested type definitions in classes require the while loop }
  1420. while st.symtabletype in [ObjectSymtable,recordsymtable] do
  1421. begin
  1422. if not (st.defowner.typ in [objectdef,recorddef]) then
  1423. internalerror(200204174);
  1424. prefix:=tabstractrecorddef(st.defowner).objname^+'_$_'+prefix;
  1425. st:=st.defowner.owner;
  1426. end;
  1427. { symtable must now be static or global }
  1428. if not(st.symtabletype in [staticsymtable,globalsymtable]) then
  1429. internalerror(200204175);
  1430. { The mangled name is made out of at most 4 parts:
  1431. 1) Optional typeprefix given as first parameter
  1432. with '_$' appended if not empty
  1433. 2) Unit name or 'P$'+program name (never empty)
  1434. 3) optional prefix variable that contains a unique
  1435. name for the local symbol table (prepended with '$_$'
  1436. if not empty)
  1437. 4) suffix as given as third parameter,
  1438. also optional (i.e. can be empty)
  1439. prepended by '_$$_' if not empty }
  1440. result:='';
  1441. if typeprefix<>'' then
  1442. result:=result+typeprefix+'_$';
  1443. { Add P$ for program, which can have the same name as
  1444. a unit }
  1445. if (TSymtable(main_module.localsymtable)=st) and
  1446. (not main_module.is_unit) then
  1447. result:=result+'P$'+st.name^
  1448. else
  1449. result:=result+st.name^;
  1450. if prefix<>'' then
  1451. result:=result+'$_$'+prefix;
  1452. if suffix<>'' then
  1453. result:=result+'_$$_'+suffix;
  1454. { the Darwin assembler assumes that all symbols starting with 'L' are local }
  1455. { Further, the Mac OS X 10.5 linker does not consider symbols which do not }
  1456. { start with '_' as regular symbols (it does not generate N_GSYM entries }
  1457. { those in the debug map, leading to troubles with dsymutil). So always }
  1458. { add an underscore on darwin. }
  1459. if (target_info.system in systems_darwin) then
  1460. result := '_' + result;
  1461. end;
  1462. function make_dllmangledname(const dllname,importname:TSymStr;import_nr : word; pco : tproccalloption):TSymStr;
  1463. var
  1464. crc : cardinal;
  1465. i : longint;
  1466. use_crc : boolean;
  1467. dllprefix : TSymStr;
  1468. begin
  1469. if (target_info.system in (systems_all_windows + systems_nativent +
  1470. [system_i386_emx, system_i386_os2]))
  1471. and (dllname <> '') then
  1472. begin
  1473. dllprefix:=lower(ExtractFileName(dllname));
  1474. { Remove .dll suffix if present }
  1475. if copy(dllprefix,length(dllprefix)-3,length(dllprefix))='.dll' then
  1476. dllprefix:=copy(dllprefix,1,length(dllprefix)-4);
  1477. use_crc:=false;
  1478. for i:=1 to length(dllprefix) do
  1479. if not (dllprefix[i] in ['a'..'z','A'..'Z','_','0'..'9']) then
  1480. begin
  1481. use_crc:=true;
  1482. break;
  1483. end;
  1484. if use_crc then
  1485. begin
  1486. crc:=0;
  1487. crc:=UpdateCrc32(crc,dllprefix[1],length(dllprefix));
  1488. dllprefix:='_$dll$crc$'+hexstr(crc,8)+'$';
  1489. end
  1490. else
  1491. dllprefix:='_$dll$'+dllprefix+'$';
  1492. if importname<>'' then
  1493. result:=dllprefix+importname
  1494. else
  1495. result:=dllprefix+'_index_'+tostr(import_nr);
  1496. { Replace ? and @ in import name, since GNU AS does not allow these characters in symbol names. }
  1497. { This allows to import VC++ mangled names from DLLs. }
  1498. { Do not perform replacement, if external symbol is not imported from DLL. }
  1499. if (dllname<>'') then
  1500. begin
  1501. Replace(result,'?','__q$$');
  1502. {$ifdef arm}
  1503. { @ symbol is not allowed in ARM assembler only }
  1504. Replace(result,'@','__a$$');
  1505. {$endif arm}
  1506. end;
  1507. end
  1508. else
  1509. begin
  1510. if importname<>'' then
  1511. begin
  1512. if not(pco in [pocall_cdecl,pocall_cppdecl]) then
  1513. result:=importname
  1514. else
  1515. result:=target_info.Cprefix+importname;
  1516. end
  1517. else
  1518. result:='_index_'+tostr(import_nr);
  1519. end;
  1520. end;
  1521. {****************************************************************************
  1522. TDEFAWARESYMTABLESTACK
  1523. (symtablestack descendant that does some special actions on
  1524. the pushed/popped symtables)
  1525. ****************************************************************************}
  1526. procedure tdefawaresymtablestack.add_helpers_and_generics(st:tsymtable;addgenerics:boolean);
  1527. var
  1528. i: integer;
  1529. s: string;
  1530. list: TFPObjectList;
  1531. def: tdef;
  1532. sym : tsym;
  1533. begin
  1534. { search the symtable from first to last; the helper to use will be the
  1535. last one in the list }
  1536. for i:=0 to st.symlist.count-1 do
  1537. begin
  1538. sym:=tsym(st.symlist[i]);
  1539. if not (sym.typ in [typesym,procsym]) then
  1540. continue;
  1541. if sym.typ=typesym then
  1542. def:=ttypesym(st.SymList[i]).typedef
  1543. else
  1544. def:=nil;
  1545. if is_objectpascal_helper(def) then
  1546. begin
  1547. s:=generate_objectpascal_helper_key(tobjectdef(def).extendeddef);
  1548. Message1(sym_d_adding_helper_for,s);
  1549. list:=TFPObjectList(current_module.extendeddefs.Find(s));
  1550. if not assigned(list) then
  1551. begin
  1552. list:=TFPObjectList.Create(false);
  1553. current_module.extendeddefs.Add(s,list);
  1554. end;
  1555. list.Add(def);
  1556. end
  1557. else
  1558. begin
  1559. if addgenerics then
  1560. add_generic_dummysym(sym);
  1561. { add nested helpers as well }
  1562. if assigned(def) and
  1563. (def.typ in [recorddef,objectdef]) and
  1564. (sto_has_helper in tabstractrecorddef(def).symtable.tableoptions) then
  1565. add_helpers_and_generics(tabstractrecorddef(def).symtable,false);
  1566. end;
  1567. end;
  1568. end;
  1569. procedure tdefawaresymtablestack.remove_helpers_and_generics(st:tsymtable);
  1570. begin
  1571. if sto_has_helper in st.tableoptions then
  1572. remove_helpers(st);
  1573. if sto_has_generic in st.tableoptions then
  1574. remove_generics(st);
  1575. end;
  1576. procedure tdefawaresymtablestack.remove_helpers(st:TSymtable);
  1577. var
  1578. i, j: integer;
  1579. tmpst: TSymtable;
  1580. list: TFPObjectList;
  1581. begin
  1582. for i:=current_module.extendeddefs.count-1 downto 0 do
  1583. begin
  1584. list:=TFPObjectList(current_module.extendeddefs[i]);
  1585. for j:=list.count-1 downto 0 do
  1586. begin
  1587. if not (list[j] is tobjectdef) then
  1588. Internalerror(2011031501);
  1589. tmpst:=tobjectdef(list[j]).owner;
  1590. repeat
  1591. if tmpst=st then
  1592. begin
  1593. list.delete(j);
  1594. break;
  1595. end
  1596. else
  1597. begin
  1598. if assigned(tmpst.defowner) then
  1599. tmpst:=tmpst.defowner.owner
  1600. else
  1601. tmpst:=nil;
  1602. end;
  1603. until not assigned(tmpst) or (tmpst.symtabletype in [globalsymtable,staticsymtable]);
  1604. end;
  1605. if list.count=0 then
  1606. current_module.extendeddefs.delete(i);
  1607. end;
  1608. end;
  1609. procedure tdefawaresymtablestack.remove_generics(st:tsymtable);
  1610. var
  1611. i,j : longint;
  1612. entry : tgenericdummyentry;
  1613. list : tfpobjectlist;
  1614. begin
  1615. for i:=current_module.genericdummysyms.count-1 downto 0 do
  1616. begin
  1617. list:=tfpobjectlist(current_module.genericdummysyms[i]);
  1618. if not assigned(list) then
  1619. continue;
  1620. for j:=list.count-1 downto 0 do
  1621. begin
  1622. entry:=tgenericdummyentry(list[j]);
  1623. if entry.dummysym.owner=st then
  1624. list.delete(j);
  1625. end;
  1626. if list.count=0 then
  1627. current_module.genericdummysyms.delete(i);
  1628. end;
  1629. end;
  1630. procedure tdefawaresymtablestack.pushcommon(st:tsymtable);
  1631. begin
  1632. if (sto_has_generic in st.tableoptions) or
  1633. (
  1634. (st.symtabletype in [globalsymtable,staticsymtable]) and
  1635. (sto_has_helper in st.tableoptions)
  1636. ) then
  1637. { nested helpers will be added as well }
  1638. add_helpers_and_generics(st,true);
  1639. end;
  1640. procedure tdefawaresymtablestack.push(st: TSymtable);
  1641. begin
  1642. pushcommon(st);
  1643. inherited push(st);
  1644. end;
  1645. procedure tdefawaresymtablestack.pushafter(st,afterst:TSymtable);
  1646. begin
  1647. pushcommon(st);
  1648. inherited pushafter(st,afterst);
  1649. end;
  1650. procedure tdefawaresymtablestack.pop(st: TSymtable);
  1651. begin
  1652. inherited pop(st);
  1653. if (sto_has_generic in st.tableoptions) or
  1654. (
  1655. (st.symtabletype in [globalsymtable,staticsymtable]) and
  1656. (sto_has_helper in st.tableoptions)
  1657. ) then
  1658. { nested helpers will be removed as well }
  1659. remove_helpers_and_generics(st);
  1660. end;
  1661. {****************************************************************************
  1662. TDEF (base class for definitions)
  1663. ****************************************************************************}
  1664. constructor tgenericconstraintdata.create;
  1665. begin
  1666. interfaces:=tfpobjectlist.create(false);
  1667. interfacesderef:=tfplist.create;
  1668. end;
  1669. destructor tgenericconstraintdata.destroy;
  1670. var
  1671. i : longint;
  1672. begin
  1673. for i:=0 to interfacesderef.count-1 do
  1674. dispose(pderef(interfacesderef[i]));
  1675. interfacesderef.free;
  1676. interfaces.free;
  1677. inherited destroy;
  1678. end;
  1679. procedure tgenericconstraintdata.ppuload(ppufile: tcompilerppufile);
  1680. var
  1681. cnt,i : longint;
  1682. intfderef : pderef;
  1683. begin
  1684. ppufile.getset(tppuset1(flags));
  1685. cnt:=ppufile.getlongint;
  1686. for i:=0 to cnt-1 do
  1687. begin
  1688. new(intfderef);
  1689. ppufile.getderef(intfderef^);
  1690. interfacesderef.add(intfderef);
  1691. end;
  1692. end;
  1693. procedure tgenericconstraintdata.ppuwrite(ppufile: tcompilerppufile);
  1694. var
  1695. i : longint;
  1696. begin
  1697. ppufile.putset(tppuset1(flags));
  1698. ppufile.putlongint(interfacesderef.count);
  1699. for i:=0 to interfacesderef.count-1 do
  1700. ppufile.putderef(pderef(interfacesderef[i])^);
  1701. end;
  1702. procedure tgenericconstraintdata.buildderef;
  1703. var
  1704. intfderef : pderef;
  1705. i : longint;
  1706. begin
  1707. for i:=0 to interfaces.count-1 do
  1708. begin
  1709. new(intfderef);
  1710. intfderef^.build(tobjectdef(interfaces[i]));
  1711. interfacesderef.add(intfderef);
  1712. end;
  1713. end;
  1714. procedure tgenericconstraintdata.deref;
  1715. var
  1716. i : longint;
  1717. begin
  1718. for i:=0 to interfacesderef.count-1 do
  1719. interfaces.add(pderef(interfacesderef[i])^.resolve);
  1720. end;
  1721. procedure tstoreddef.writeentry(ppufile: tcompilerppufile; ibnr: byte);
  1722. begin
  1723. ppuwrite_platform(ppufile);
  1724. ppufile.writeentry(ibnr);
  1725. end;
  1726. procedure tstoreddef.ppuwrite_platform(ppufile: tcompilerppufile);
  1727. begin
  1728. { by default: do nothing }
  1729. end;
  1730. procedure tstoreddef.ppuload_platform(ppufile: tcompilerppufile);
  1731. begin
  1732. { by default: do nothing }
  1733. end;
  1734. class procedure tstoreddef.setup_reusable_def(origdef, newdef: tdef; res: PHashSetItem; oldsymtablestack: tsymtablestack);
  1735. var
  1736. reusablesymtab: tsymtable;
  1737. begin
  1738. { must not yet belong to a symtable }
  1739. if assigned(newdef.owner) then
  1740. internalerror(2015111503);
  1741. reusablesymtab:=origdef.getreusablesymtab;
  1742. res^.Data:=newdef;
  1743. reusablesymtab.insertdef(newdef);
  1744. symtablestack:=oldsymtablestack;
  1745. end;
  1746. constructor tstoreddef.create(dt:tdeftyp;doregister:boolean);
  1747. begin
  1748. inherited create(dt);
  1749. savesize := 0;
  1750. {$ifdef EXTDEBUG}
  1751. fileinfo := current_filepos;
  1752. {$endif}
  1753. generictokenbuf:=nil;
  1754. genericdef:=nil;
  1755. typesymderef.reset;
  1756. genericdefderef.reset;
  1757. { Don't register forwarddefs, they are disposed at the
  1758. end of an type block }
  1759. if (dt=forwarddef) then
  1760. exit;
  1761. { Register in symtable stack }
  1762. if doregister then
  1763. begin
  1764. { immediately register interface defs, as they will always be
  1765. written to the ppu, their defid inlfuences the interface crc and
  1766. if we wait, depending on e.g. compiler defines they may get a
  1767. different defid (e.g. when a function is called, its procdef is
  1768. registered, so depending on whether or not, or when, an interface
  1769. procedure is called in the implementation, that may change its
  1770. defid otherwise) }
  1771. if assigned(current_module) and
  1772. current_module.in_interface then
  1773. register_def
  1774. else
  1775. maybe_put_in_symtable_stack;
  1776. end;
  1777. end;
  1778. destructor tstoreddef.destroy;
  1779. var
  1780. i : longint;
  1781. begin
  1782. { Direct calls are not allowed, use symtable.deletedef() }
  1783. if assigned(owner) then
  1784. internalerror(200612311);
  1785. if assigned(generictokenbuf) then
  1786. begin
  1787. generictokenbuf.free;
  1788. generictokenbuf:=nil;
  1789. end;
  1790. rtti_attribute_list.free;
  1791. genericparas.free;
  1792. if assigned(genericparaderefs) then
  1793. for i:=0 to genericparaderefs.count-1 do
  1794. dispose(pderef(genericparaderefs[i]));
  1795. genericparaderefs.free;
  1796. genconstraintdata.free;
  1797. {$ifndef symansistr}
  1798. stringdispose(_fullownerhierarchyname);
  1799. {$endif not symansistr}
  1800. inherited destroy;
  1801. end;
  1802. constructor tstoreddef.ppuload(dt:tdeftyp;ppufile:tcompilerppufile);
  1803. var
  1804. sizeleft,i,cnt : longint;
  1805. buf : array[0..255] of byte;
  1806. symderef : pderef;
  1807. begin
  1808. inherited create(dt);
  1809. DefId:=ppufile.getlongint;
  1810. current_module.deflist[DefId]:=self;
  1811. {$ifdef EXTDEBUG}
  1812. fillchar(fileinfo,sizeof(fileinfo),0);
  1813. {$endif}
  1814. { load }
  1815. ppufile.getderef(typesymderef);
  1816. ppufile.getset(tppuset2(defoptions));
  1817. ppufile.getset(tppuset1(defstates));
  1818. if df_genconstraint in defoptions then
  1819. begin
  1820. genconstraintdata:=tgenericconstraintdata.create;
  1821. genconstraintdata.ppuload(ppufile);
  1822. end;
  1823. if [df_generic,df_specialization]*defoptions<>[] then
  1824. begin
  1825. cnt:=ppufile.getlongint;
  1826. if cnt>0 then
  1827. begin
  1828. genericparas:=tfphashobjectlist.create(false);
  1829. genericparaderefs:=tfplist.create;
  1830. for i:=0 to cnt-1 do
  1831. begin
  1832. genericparas.add(ppufile.getstring,nil);
  1833. New(symderef);
  1834. ppufile.getderef(symderef^);
  1835. genericparaderefs.add(symderef);
  1836. end;
  1837. end;
  1838. end;
  1839. if df_generic in defoptions then
  1840. begin
  1841. sizeleft:=ppufile.getlongint;
  1842. initgeneric;
  1843. while sizeleft>0 do
  1844. begin
  1845. if sizeleft>sizeof(buf) then
  1846. i:=sizeof(buf)
  1847. else
  1848. i:=sizeleft;
  1849. ppufile.getdata(buf,i);
  1850. generictokenbuf.write(buf,i);
  1851. dec(sizeleft,i);
  1852. end;
  1853. end;
  1854. if df_specialization in defoptions then
  1855. ppufile.getderef(genericdefderef);
  1856. rtti_attribute_list:=trtti_attribute_list.ppuload(ppufile);
  1857. end;
  1858. function tstoreddef.needs_separate_initrtti:boolean;
  1859. begin
  1860. result:=false;
  1861. end;
  1862. function tstoreddef.rtti_mangledname(rt : trttitype) : TSymStr;
  1863. var
  1864. prefix : string[4];
  1865. begin
  1866. if (rt=fullrtti) or (not needs_separate_initrtti) then
  1867. begin
  1868. prefix:='RTTI';
  1869. include(defstates,ds_rtti_table_used);
  1870. end
  1871. else
  1872. begin
  1873. prefix:='INIT';
  1874. include(defstates,ds_init_table_used);
  1875. end;
  1876. if assigned(typesym) and
  1877. (owner.symtabletype in [staticsymtable,globalsymtable]) then
  1878. result:=make_mangledname(prefix,typesym.owner,typesym.name)
  1879. else
  1880. result:=make_mangledname(prefix,findunitsymtable(owner),'def'+unique_id_str)
  1881. end;
  1882. function tstoreddef.OwnerHierarchyName: string;
  1883. var
  1884. tmp: tdef;
  1885. begin
  1886. tmp:=self;
  1887. result:='';
  1888. repeat
  1889. { can be not assigned in case of a forwarddef }
  1890. if assigned(tmp.owner) and
  1891. (tmp.owner.symtabletype in [ObjectSymtable,recordsymtable]) then
  1892. tmp:=tdef(tmp.owner.defowner)
  1893. else
  1894. break;
  1895. result:=tabstractrecorddef(tmp).objrealname^+'.'+result;
  1896. until tmp=nil;
  1897. end;
  1898. function tstoreddef.fullownerhierarchyname(skipprocparams:boolean): TSymStr;
  1899. var
  1900. lastowner: tsymtable;
  1901. tmp: tdef;
  1902. pno: tprocnameoptions;
  1903. begin
  1904. {$ifdef symansistr}
  1905. if not skipprocparams and (_fullownerhierarchyname<>'') then
  1906. exit(_fullownerhierarchyname);
  1907. {$else symansistr}
  1908. if not skipprocparams and assigned(_fullownerhierarchyname) then
  1909. exit(_fullownerhierarchyname^);
  1910. {$endif symansistr}
  1911. { the def can only reside inside structured types or
  1912. procedures/functions/methods }
  1913. tmp:=self;
  1914. result:='';
  1915. repeat
  1916. lastowner:=tmp.owner;
  1917. { can be not assigned in case of a forwarddef }
  1918. if not assigned(lastowner) then
  1919. break
  1920. else
  1921. tmp:=tdef(lastowner.defowner);
  1922. if not assigned(tmp) then
  1923. break;
  1924. if tmp.typ in [recorddef,objectdef] then
  1925. result:=tabstractrecorddef(tmp).objrealname^+'.'+result
  1926. else
  1927. if tmp.typ=procdef then
  1928. begin
  1929. pno:=[pno_paranames,pno_proctypeoption];
  1930. if skipprocparams then
  1931. include(pno,pno_noparams);
  1932. result:=tprocdef(tmp).customprocname(pno)+'.'+result;
  1933. end;
  1934. until tmp=nil;
  1935. { add the unit name }
  1936. if assigned(lastowner) and
  1937. assigned(lastowner.realname) then
  1938. result:=lastowner.realname^+'.'+result;
  1939. if not skipprocparams then
  1940. { don't store the name in this case }
  1941. {$ifdef symansistr}
  1942. _fullownerhierarchyname:=result;
  1943. {$else symansistr}
  1944. _fullownerhierarchyname:=stringdup(result);
  1945. {$endif symansistr}
  1946. end;
  1947. function tstoreddef.in_currentunit: boolean;
  1948. var
  1949. st: tsymtable;
  1950. begin
  1951. st:=owner;
  1952. while not(st.symtabletype in [globalsymtable,staticsymtable]) do
  1953. st:=st.defowner.owner;
  1954. result:=st.iscurrentunit;
  1955. end;
  1956. function tstoreddef.getcopy : tstoreddef;
  1957. begin
  1958. Message(sym_e_cant_create_unique_type);
  1959. getcopy:=cerrordef.create;
  1960. end;
  1961. procedure tstoreddef.ppuwrite(ppufile:tcompilerppufile);
  1962. var
  1963. sizeleft,i : longint;
  1964. buf : array[0..255] of byte;
  1965. oldintfcrc : boolean;
  1966. begin
  1967. if defid<0 then
  1968. internalerror(2015101401);
  1969. ppufile.putlongint(DefId);
  1970. ppufile.putderef(typesymderef);
  1971. ppufile.putset(tppuset2(defoptions));
  1972. oldintfcrc:=ppufile.do_crc;
  1973. ppufile.do_crc:=false;
  1974. ppufile.putset(tppuset1(defstates));
  1975. if df_genconstraint in defoptions then
  1976. genconstraintdata.ppuwrite(ppufile);
  1977. if [df_generic,df_specialization]*defoptions<>[] then
  1978. begin
  1979. if not assigned(genericparas) then
  1980. ppufile.putlongint(0)
  1981. else
  1982. begin
  1983. if not assigned(genericparaderefs) then
  1984. internalerror(2014052305);
  1985. ppufile.putlongint(genericparas.count);
  1986. for i:=0 to genericparas.count-1 do
  1987. begin
  1988. ppufile.putstring(genericparas.nameofindex(i));
  1989. ppufile.putderef(pderef(genericparaderefs[i])^);
  1990. end;
  1991. end;
  1992. end;
  1993. if df_generic in defoptions then
  1994. begin
  1995. if assigned(generictokenbuf) then
  1996. begin
  1997. sizeleft:=generictokenbuf.size;
  1998. generictokenbuf.seek(0);
  1999. end
  2000. else
  2001. sizeleft:=0;
  2002. ppufile.putlongint(sizeleft);
  2003. while sizeleft>0 do
  2004. begin
  2005. if sizeleft>sizeof(buf) then
  2006. i:=sizeof(buf)
  2007. else
  2008. i:=sizeleft;
  2009. generictokenbuf.read(buf,i);
  2010. ppufile.putdata(buf,i);
  2011. dec(sizeleft,i);
  2012. end;
  2013. end;
  2014. ppufile.do_crc:=oldintfcrc;
  2015. if df_specialization in defoptions then
  2016. ppufile.putderef(genericdefderef);
  2017. trtti_attribute_list.ppuwrite(rtti_attribute_list,ppufile);
  2018. end;
  2019. procedure tstoreddef.ppuload_subentries(ppufile: tcompilerppufile);
  2020. begin
  2021. trtti_attribute_list.ppuload_subentries(rtti_attribute_list,ppufile);
  2022. end;
  2023. procedure tstoreddef.ppuwrite_subentries(ppufile: tcompilerppufile);
  2024. begin
  2025. trtti_attribute_list.ppuwrite_subentries(rtti_attribute_list,ppufile);
  2026. end;
  2027. procedure tstoreddef.buildderef;
  2028. var
  2029. i : longint;
  2030. sym : tsym;
  2031. symderef : pderef;
  2032. begin
  2033. if not registered then
  2034. register_def;
  2035. typesymderef.build(typesym);
  2036. genericdefderef.build(genericdef);
  2037. if assigned(rtti_attribute_list) then
  2038. rtti_attribute_list.buildderef;
  2039. if assigned(genconstraintdata) then
  2040. genconstraintdata.buildderef;
  2041. if assigned(genericparas) then
  2042. begin
  2043. if not assigned(genericparaderefs) then
  2044. genericparaderefs:=tfplist.create;
  2045. for i:=0 to genericparas.count-1 do
  2046. begin
  2047. sym:=tsym(genericparas.items[i]);
  2048. new(symderef);
  2049. symderef^.build(sym);
  2050. genericparaderefs.add(symderef);
  2051. end;
  2052. end;
  2053. end;
  2054. procedure tstoreddef.buildderefimpl;
  2055. begin
  2056. end;
  2057. procedure tstoreddef.deref;
  2058. var
  2059. symderef : pderef;
  2060. i : longint;
  2061. begin
  2062. typesym:=ttypesym(typesymderef.resolve);
  2063. if df_specialization in defoptions then
  2064. genericdef:=tstoreddef(genericdefderef.resolve);
  2065. if assigned(rtti_attribute_list) then
  2066. rtti_attribute_list.deref;
  2067. if assigned(genconstraintdata) then
  2068. genconstraintdata.deref;
  2069. if assigned(genericparas) then
  2070. begin
  2071. if not assigned(genericparaderefs) then
  2072. internalerror(2014052302);
  2073. if genericparas.count<>genericparaderefs.count then
  2074. internalerror(2014052303);
  2075. for i:=0 to genericparaderefs.count-1 do
  2076. begin
  2077. symderef:=pderef(genericparaderefs[i]);
  2078. genericparas.items[i]:=symderef^.resolve;
  2079. end;
  2080. end;
  2081. end;
  2082. procedure tstoreddef.derefimpl;
  2083. begin
  2084. end;
  2085. function tstoreddef.size : asizeint;
  2086. begin
  2087. size:=savesize;
  2088. end;
  2089. function tstoreddef.getvardef:longint;
  2090. begin
  2091. result:=varUndefined;
  2092. end;
  2093. function tstoreddef.alignment : shortint;
  2094. begin
  2095. { natural alignment by default }
  2096. alignment:=size_2_align(savesize);
  2097. { can happen if savesize = 0, e.g. for voiddef or
  2098. an empty record
  2099. }
  2100. if (alignment=0) then
  2101. alignment:=1;
  2102. end;
  2103. { returns true, if the definition can be published }
  2104. function tstoreddef.is_publishable : boolean;
  2105. begin
  2106. is_publishable:=false;
  2107. end;
  2108. { needs an init table }
  2109. function tstoreddef.needs_inittable : boolean;
  2110. begin
  2111. needs_inittable:=false;
  2112. end;
  2113. function tstoreddef.has_non_trivial_init_child(check_parent:boolean):boolean;
  2114. begin
  2115. result:=false;
  2116. end;
  2117. function tstoreddef.is_intregable : boolean;
  2118. var
  2119. recsize,temp: longint;
  2120. begin
  2121. case typ of
  2122. orddef,
  2123. pointerdef,
  2124. enumdef,
  2125. classrefdef:
  2126. is_intregable:=true;
  2127. procvardef :
  2128. is_intregable:=tprocvardef(self).is_addressonly or (po_methodpointer in tprocvardef(self).procoptions);
  2129. objectdef:
  2130. is_intregable:=(is_implicit_pointer_object_type(self)) and not needs_inittable;
  2131. setdef:
  2132. is_intregable:=is_smallset(self);
  2133. arraydef:
  2134. {$ifdef cpuhighleveltarget}
  2135. is_intregable:=false
  2136. {$else cpuhighleveltarget}
  2137. is_intregable:=not(is_special_array(self)) and
  2138. (tarraydef(self).size<=8) and (tarraydef(self).size in [1,2,4,8]) and
  2139. tstoreddef(tarraydef(self).elementdef).is_intregable
  2140. {$ifdef SUPPORT_MMX}
  2141. and not((cs_mmx in current_settings.localswitches) and
  2142. is_mmx_able_array(self))
  2143. {$endif SUPPORT_MMX}
  2144. {$endif cpuhighleveltarget}
  2145. ;
  2146. recorddef:
  2147. begin
  2148. {$ifdef cpuhighleveltarget}
  2149. is_intregable:=false;
  2150. {$else cpuhighleveltarget}
  2151. recsize:=size;
  2152. is_intregable:=
  2153. ispowerof2(recsize,temp) and
  2154. ((recsize<=sizeof(aint)*2) and
  2155. not trecorddef(self).contains_cross_aword_field and
  2156. { records cannot go into registers on 16 bit targets for now }
  2157. (sizeof(aint)>2) and
  2158. (not trecorddef(self).contains_float_field) or
  2159. (recsize <= sizeof(aint))
  2160. ) and
  2161. not needs_inittable;
  2162. {$endif cpuhighleveltarget}
  2163. end;
  2164. else
  2165. is_intregable:=false;
  2166. end;
  2167. end;
  2168. function tstoreddef.is_fpuregable : boolean;
  2169. begin
  2170. {$ifdef x86}
  2171. result:=use_vectorfpu(self);
  2172. {$else x86}
  2173. result:=(typ=floatdef) and not(cs_fp_emulation in current_settings.moduleswitches);
  2174. {$endif x86}
  2175. end;
  2176. function tstoreddef.is_const_intregable : boolean;
  2177. begin
  2178. case typ of
  2179. stringdef:
  2180. result:=tstringdef(self).stringtype in [st_ansistring,st_unicodestring,st_widestring];
  2181. arraydef:
  2182. result:=is_dynamic_array(self);
  2183. objectdef:
  2184. result:=is_interface(self);
  2185. else
  2186. result:=false;
  2187. end;
  2188. end;
  2189. procedure tstoreddef.initgeneric;
  2190. begin
  2191. if assigned(generictokenbuf) then
  2192. internalerror(200512131);
  2193. generictokenbuf:=tdynamicarray.create(256);
  2194. end;
  2195. function tstoreddef.is_generic: boolean;
  2196. var
  2197. sym: tsym;
  2198. i: longint;
  2199. begin
  2200. result:=assigned(genericparas) and
  2201. (genericparas.count>0) and
  2202. (df_generic in defoptions);
  2203. if result then
  2204. { if any of the type parameters does *not* belong to as (meaning it was passed
  2205. in from outside) then we aren't a generic, but a specialization }
  2206. for i:=0 to genericparas.count-1 do
  2207. begin
  2208. sym:=tsym(genericparas[i]);
  2209. if sym.typ<>symconst.typesym then
  2210. internalerror(2014050903);
  2211. if sym.owner.defowner<>self then
  2212. exit(false);
  2213. end;
  2214. end;
  2215. function tstoreddef.is_specialization: boolean;
  2216. var
  2217. i : longint;
  2218. sym : tsym;
  2219. begin
  2220. result:=assigned(genericparas) and
  2221. (genericparas.count>0) and
  2222. (df_specialization in defoptions);
  2223. if result then
  2224. begin
  2225. { if at least one of the generic parameters is not owned by us (meaning it was
  2226. passed in from outside) then we have a specialization, otherwise we have a generic }
  2227. for i:=0 to genericparas.count-1 do
  2228. begin
  2229. sym:=tsym(genericparas[i]);
  2230. if sym.typ<>symconst.typesym then
  2231. internalerror(2014050904);
  2232. if sym.owner.defowner<>self then
  2233. exit(true);
  2234. end;
  2235. result:=false;
  2236. end;
  2237. end;
  2238. procedure tstoreddef.register_def;
  2239. var
  2240. gst : tgetsymtable;
  2241. st : tsymtable;
  2242. begin
  2243. if registered then
  2244. exit;
  2245. { Register in current_module }
  2246. if assigned(current_module) then
  2247. begin
  2248. exclude(defoptions,df_not_registered_no_free);
  2249. for gst:=low(tgetsymtable) to high(tgetsymtable) do
  2250. begin
  2251. st:=getsymtable(gst);
  2252. if assigned(st) then
  2253. tstoredsymtable(st).register_children;
  2254. end;
  2255. if defid<defid_not_registered then
  2256. defid:=deflist_index
  2257. else
  2258. begin
  2259. current_module.deflist.Add(self);
  2260. defid:=current_module.deflist.Count-1;
  2261. end;
  2262. maybe_put_in_symtable_stack;
  2263. end
  2264. else
  2265. DefId:=defid_registered_nost;
  2266. end;
  2267. procedure tstoreddef.maybe_put_in_symtable_stack;
  2268. var
  2269. insertstack: psymtablestackitem;
  2270. begin
  2271. if assigned(symtablestack) and
  2272. not assigned(self.owner) then
  2273. begin
  2274. insertstack:=symtablestack.stack;
  2275. { don't insert defs in exception symtables, as they are freed before
  2276. the module is compiled, so we can get crashes on high level targets
  2277. if they still need it while e.g. writing assembler code }
  2278. while assigned(insertstack) and
  2279. (insertstack^.symtable.symtabletype in [stt_exceptsymtable,withsymtable]) do
  2280. insertstack:=insertstack^.next;
  2281. if not assigned(insertstack) then
  2282. internalerror(200602044);
  2283. if insertstack^.symtable.sealed then
  2284. internalerror(2015022301);
  2285. insertstack^.symtable.insertdef(self);
  2286. end;
  2287. end;
  2288. {****************************************************************************
  2289. Tstringdef
  2290. ****************************************************************************}
  2291. constructor tstringdef.createshort(l: byte; doregister: boolean);
  2292. begin
  2293. inherited create(stringdef,doregister);
  2294. stringtype:=st_shortstring;
  2295. encoding:=0;
  2296. len:=l;
  2297. end;
  2298. constructor tstringdef.loadshort(ppufile:tcompilerppufile);
  2299. begin
  2300. inherited ppuload(stringdef,ppufile);
  2301. stringtype:=st_shortstring;
  2302. encoding:=0;
  2303. len:=ppufile.getbyte;
  2304. ppuload_platform(ppufile);
  2305. end;
  2306. constructor tstringdef.createlong(l: asizeint; doregister: boolean);
  2307. begin
  2308. inherited create(stringdef,doregister);
  2309. stringtype:=st_longstring;
  2310. encoding:=0;
  2311. len:=l;
  2312. end;
  2313. constructor tstringdef.loadlong(ppufile:tcompilerppufile);
  2314. begin
  2315. inherited ppuload(stringdef,ppufile);
  2316. stringtype:=st_longstring;
  2317. encoding:=0;
  2318. len:=ppufile.getasizeint;
  2319. ppuload_platform(ppufile);
  2320. end;
  2321. constructor tstringdef.createansi(aencoding: tstringencoding; doregister: boolean);
  2322. begin
  2323. inherited create(stringdef,doregister);
  2324. stringtype:=st_ansistring;
  2325. encoding:=aencoding;
  2326. len:=-1;
  2327. end;
  2328. constructor tstringdef.loadansi(ppufile:tcompilerppufile);
  2329. begin
  2330. inherited ppuload(stringdef,ppufile);
  2331. stringtype:=st_ansistring;
  2332. len:=ppufile.getasizeint;
  2333. encoding:=ppufile.getword;
  2334. ppuload_platform(ppufile);
  2335. end;
  2336. constructor tstringdef.createwide(doregister: boolean);
  2337. begin
  2338. inherited create(stringdef,doregister);
  2339. stringtype:=st_widestring;
  2340. if target_info.endian=endian_little then
  2341. encoding:=CP_UTF16LE
  2342. else
  2343. encoding:=CP_UTF16BE;
  2344. len:=-1;
  2345. end;
  2346. constructor tstringdef.loadwide(ppufile:tcompilerppufile);
  2347. begin
  2348. inherited ppuload(stringdef,ppufile);
  2349. stringtype:=st_widestring;
  2350. if target_info.endian=endian_little then
  2351. encoding:=CP_UTF16LE
  2352. else
  2353. encoding:=CP_UTF16BE;
  2354. len:=ppufile.getasizeint;
  2355. ppuload_platform(ppufile);
  2356. end;
  2357. constructor tstringdef.createunicode(doregister: boolean);
  2358. begin
  2359. inherited create(stringdef,doregister);
  2360. stringtype:=st_unicodestring;
  2361. if target_info.endian=endian_little then
  2362. encoding:=CP_UTF16LE
  2363. else
  2364. encoding:=CP_UTF16BE;
  2365. len:=-1;
  2366. end;
  2367. constructor tstringdef.loadunicode(ppufile:tcompilerppufile);
  2368. begin
  2369. inherited ppuload(stringdef,ppufile);
  2370. stringtype:=st_unicodestring;
  2371. len:=ppufile.getasizeint;
  2372. encoding:=ppufile.getword;
  2373. ppuload_platform(ppufile);
  2374. end;
  2375. function tstringdef.getcopy : tstoreddef;
  2376. begin
  2377. result:=cstringdef.create(typ,true);
  2378. result.typ:=stringdef;
  2379. tstringdef(result).stringtype:=stringtype;
  2380. tstringdef(result).encoding:=encoding;
  2381. tstringdef(result).len:=len;
  2382. end;
  2383. function tstringdef.stringtypname:string;
  2384. const
  2385. typname:array[tstringtype] of string[10]=(
  2386. 'shortstr','longstr','ansistr','widestr','unicodestr'
  2387. );
  2388. begin
  2389. stringtypname:=typname[stringtype];
  2390. end;
  2391. procedure tstringdef.ppuwrite(ppufile:tcompilerppufile);
  2392. begin
  2393. inherited ppuwrite(ppufile);
  2394. if stringtype=st_shortstring then
  2395. begin
  2396. {$ifdef extdebug}
  2397. if len > 255 then internalerror(12122002);
  2398. {$endif}
  2399. ppufile.putbyte(byte(len))
  2400. end
  2401. else
  2402. ppufile.putasizeint(len);
  2403. if stringtype in [st_ansistring,st_unicodestring] then
  2404. ppufile.putword(encoding);
  2405. case stringtype of
  2406. st_shortstring : writeentry(ppufile,ibshortstringdef);
  2407. st_longstring : writeentry(ppufile,iblongstringdef);
  2408. st_ansistring : writeentry(ppufile,ibansistringdef);
  2409. st_widestring : writeentry(ppufile,ibwidestringdef);
  2410. st_unicodestring : writeentry(ppufile,ibunicodestringdef);
  2411. end;
  2412. end;
  2413. function tstringdef.needs_inittable : boolean;
  2414. begin
  2415. needs_inittable:=stringtype in [st_ansistring,st_widestring,st_unicodestring];
  2416. end;
  2417. function tstringdef.GetTypeName : string;
  2418. const
  2419. names : array[tstringtype] of string[15] = (
  2420. 'ShortString','LongString','AnsiString','WideString','UnicodeString');
  2421. begin
  2422. GetTypeName:=names[stringtype];
  2423. end;
  2424. function tstringdef.getvardef : longint;
  2425. const
  2426. vardef : array[tstringtype] of longint = (
  2427. varUndefined,varUndefined,varString,varOleStr,varUString);
  2428. begin
  2429. result:=vardef[stringtype];
  2430. end;
  2431. function tstringdef.alignment : shortint;
  2432. begin
  2433. case stringtype of
  2434. st_unicodestring,
  2435. st_widestring,
  2436. st_ansistring:
  2437. alignment:=voidpointertype.alignment;
  2438. st_longstring,
  2439. st_shortstring:
  2440. { char to string accesses byte 0 and 1 with one word access }
  2441. if (tf_requires_proper_alignment in target_info.flags) or
  2442. { macpas needs an alignment of 2 (MetroWerks compatible) }
  2443. (m_mac in current_settings.modeswitches) then
  2444. alignment:=size_2_align(2)
  2445. else
  2446. alignment:=size_2_align(1);
  2447. end;
  2448. end;
  2449. function tstringdef.getmangledparaname : TSymStr;
  2450. begin
  2451. getmangledparaname:='STRING';
  2452. end;
  2453. function tstringdef.is_publishable : boolean;
  2454. begin
  2455. is_publishable:=true;
  2456. end;
  2457. function tstringdef.size: asizeint;
  2458. begin
  2459. case stringtype of
  2460. st_shortstring:
  2461. Result:=len+1;
  2462. st_longstring,
  2463. st_ansistring,
  2464. st_widestring,
  2465. st_unicodestring:
  2466. Result:=voidpointertype.size;
  2467. end;
  2468. end;
  2469. {****************************************************************************
  2470. TENUMDEF
  2471. ****************************************************************************}
  2472. constructor tenumdef.create;
  2473. begin
  2474. inherited create(enumdef,true);
  2475. minval:=0;
  2476. maxval:=0;
  2477. calcsavesize(current_settings.packenum);
  2478. has_jumps:=false;
  2479. basedef:=nil;
  2480. basedefderef.reset;
  2481. symtable:=tenumsymtable.create(self);
  2482. end;
  2483. constructor tenumdef.create_subrange(_basedef:tenumdef;_min,_max:asizeint);
  2484. begin
  2485. inherited create(enumdef,true);
  2486. minval:=_min;
  2487. maxval:=_max;
  2488. basedef:=_basedef;
  2489. calcsavesize(current_settings.packenum);
  2490. has_jumps:=false;
  2491. symtable:=basedef.symtable.getcopy;
  2492. include(defoptions, df_copied_def);
  2493. end;
  2494. constructor tenumdef.ppuload(ppufile:tcompilerppufile);
  2495. begin
  2496. inherited ppuload(enumdef,ppufile);
  2497. minval:=ppufile.getaint;
  2498. maxval:=ppufile.getaint;
  2499. savesize:=ppufile.getaint;
  2500. has_jumps:=false;
  2501. if df_copied_def in defoptions then
  2502. begin
  2503. symtable:=nil;
  2504. ppufile.getderef(basedefderef);
  2505. ppuload_platform(ppufile);
  2506. end
  2507. else
  2508. begin
  2509. ppuload_platform(ppufile);
  2510. // create with nil defowner first to prevent values changes on insert
  2511. symtable:=tenumsymtable.create(nil);
  2512. tenumsymtable(symtable).ppuload(ppufile);
  2513. symtable.defowner:=self;
  2514. end;
  2515. end;
  2516. destructor tenumdef.destroy;
  2517. begin
  2518. symtable.free;
  2519. symtable:=nil;
  2520. inherited destroy;
  2521. end;
  2522. function tenumdef.getcopy : tstoreddef;
  2523. begin
  2524. if assigned(basedef) then
  2525. result:=cenumdef.create_subrange(basedef,minval,maxval)
  2526. else
  2527. begin
  2528. result:=cenumdef.create;
  2529. tenumdef(result).minval:=minval;
  2530. tenumdef(result).maxval:=maxval;
  2531. tenumdef(result).symtable.free;
  2532. tenumdef(result).symtable:=symtable.getcopy;
  2533. tenumdef(result).basedef:=self;
  2534. end;
  2535. tenumdef(result).has_jumps:=has_jumps;
  2536. tenumdef(result).basedefderef:=basedefderef;
  2537. include(tenumdef(result).defoptions,df_copied_def);
  2538. end;
  2539. procedure tenumdef.calcsavesize(packenum: shortint);
  2540. begin
  2541. {$IFNDEF cpu64bitaddr} {$push}{$warnings off} {$ENDIF} //comparison always false warning
  2542. if (packenum=8) or (int64(min)<low(longint)) or (int64(max)>high(cardinal)) then
  2543. savesize:=8
  2544. {$IFNDEF cpu64bitaddr} {$pop} {$ENDIF}
  2545. else
  2546. {$IFDEF cpu16bitaddr} {$push}{$warnings off} {$ENDIF} //comparison always false warning
  2547. if (packenum=4) or (min<low(smallint)) or (max>high(word)) then
  2548. savesize:=4
  2549. {$IFDEF cpu16bitaddr} {$pop} {$ENDIF}
  2550. else
  2551. if (packenum=2) or (min<low(shortint)) or (max>high(byte)) then
  2552. savesize:=2
  2553. else
  2554. savesize:=1;
  2555. end;
  2556. function tenumdef.packedbitsize: asizeint;
  2557. var
  2558. sizeval: tconstexprint;
  2559. power: longint;
  2560. begin
  2561. result := 0;
  2562. if (minval >= 0) and
  2563. (maxval <= 1) then
  2564. result := 1
  2565. else
  2566. begin
  2567. if (minval>=0) then
  2568. sizeval:=maxval
  2569. else
  2570. { don't count 0 twice, but take into account that range goes from -n-1..n }
  2571. sizeval:=(cutils.max(-minval,maxval+1)*2)-1;
  2572. { 256 must become 512 etc. }
  2573. nextpowerof2(sizeval+1,power);
  2574. result := power;
  2575. end;
  2576. end;
  2577. procedure tenumdef.setmax(_max:asizeint);
  2578. begin
  2579. maxval:=_max;
  2580. calcsavesize(current_settings.packenum);
  2581. end;
  2582. procedure tenumdef.setmin(_min:asizeint);
  2583. begin
  2584. minval:=_min;
  2585. calcsavesize(current_settings.packenum);
  2586. end;
  2587. function tenumdef.min:asizeint;
  2588. begin
  2589. min:=minval;
  2590. end;
  2591. function tenumdef.max:asizeint;
  2592. begin
  2593. max:=maxval;
  2594. end;
  2595. function tenumdef.getfirstsym: tsym;
  2596. var
  2597. i:integer;
  2598. begin
  2599. for i := 0 to symtable.SymList.Count - 1 do
  2600. begin
  2601. result:=tsym(symtable.SymList[i]);
  2602. if tenumsym(result).value=minval then
  2603. exit;
  2604. end;
  2605. result:=nil;
  2606. end;
  2607. function tenumdef.int2enumsym(l: asizeint): tsym;
  2608. var
  2609. i: longint;
  2610. sym: tsym;
  2611. bdef: tenumdef;
  2612. begin
  2613. result:=nil;
  2614. if (l<minval) or
  2615. (l>maxval) then
  2616. exit;
  2617. bdef:=getbasedef;
  2618. for i:=0 to bdef.symtable.symlist.count-1 do
  2619. begin
  2620. sym:=tsym(bdef.symtable.symlist[i]);
  2621. if (sym.typ=enumsym) and
  2622. (tenumsym(sym).value=l) then
  2623. begin
  2624. result:=sym;
  2625. exit;
  2626. end;
  2627. end;
  2628. end;
  2629. function tenumdef.getbasedef: tenumdef;
  2630. begin
  2631. if not assigned(basedef) then
  2632. result:=self
  2633. else
  2634. result:=basedef;
  2635. end;
  2636. procedure tenumdef.buildderef;
  2637. begin
  2638. inherited buildderef;
  2639. if df_copied_def in defoptions then
  2640. basedefderef.build(basedef)
  2641. else
  2642. tenumsymtable(symtable).buildderef;
  2643. end;
  2644. procedure tenumdef.deref;
  2645. begin
  2646. inherited deref;
  2647. if df_copied_def in defoptions then
  2648. begin
  2649. basedef:=tenumdef(basedefderef.resolve);
  2650. symtable:=basedef.symtable.getcopy;
  2651. end
  2652. else
  2653. tenumsymtable(symtable).deref(false);
  2654. end;
  2655. procedure tenumdef.ppuwrite(ppufile:tcompilerppufile);
  2656. begin
  2657. inherited ppuwrite(ppufile);
  2658. ppufile.putaint(min);
  2659. ppufile.putaint(max);
  2660. ppufile.putaint(savesize);
  2661. if df_copied_def in defoptions then
  2662. ppufile.putderef(basedefderef);
  2663. writeentry(ppufile,ibenumdef);
  2664. if not (df_copied_def in defoptions) then
  2665. tenumsymtable(symtable).ppuwrite(ppufile);
  2666. end;
  2667. function tenumdef.is_publishable : boolean;
  2668. begin
  2669. is_publishable:=true;
  2670. end;
  2671. function tenumdef.GetTypeName : string;
  2672. begin
  2673. GetTypeName:='<enumeration type>';
  2674. end;
  2675. {****************************************************************************
  2676. TRTTI_ATTRIBUTE_LIST
  2677. ****************************************************************************}
  2678. constructor trtti_attribute.ppuload(ppufile: tcompilerppufile);
  2679. begin
  2680. ppufile.getderef(typesymderef);
  2681. ppufile.getderef(typeconstrderef);
  2682. setlength(paras,ppufile.getlongint);
  2683. end;
  2684. procedure trtti_attribute.ppuwrite(ppufile: tcompilerppufile);
  2685. begin
  2686. ppufile.putderef(typesymderef);
  2687. ppufile.putderef(typeconstrderef);
  2688. ppufile.putlongint(length(paras));
  2689. end;
  2690. procedure trtti_attribute.ppuload_subentries(ppufile: tcompilerppufile);
  2691. var
  2692. i : sizeint;
  2693. begin
  2694. for i:=0 to high(paras) do
  2695. paras[i]:=ppuloadnodetree(ppufile);
  2696. end;
  2697. procedure trtti_attribute.ppuwrite_subentries(ppufile: tcompilerppufile);
  2698. var
  2699. i : sizeint;
  2700. begin
  2701. for i:=0 to high(paras) do
  2702. ppuwritenodetree(ppufile,paras[i]);
  2703. end;
  2704. destructor trtti_attribute.destroy;
  2705. var
  2706. n : tnode;
  2707. begin
  2708. constructorcall.free;
  2709. for n in paras do
  2710. n.free;
  2711. inherited destroy;
  2712. end;
  2713. procedure trtti_attribute.buildderef;
  2714. var
  2715. i : sizeint;
  2716. begin
  2717. typesymderef.build(typesym);
  2718. typeconstrderef.build(typeconstr);
  2719. for i:=0 to high(paras) do
  2720. paras[i].buildderefimpl;
  2721. end;
  2722. procedure trtti_attribute.deref;
  2723. var
  2724. i : sizeint;
  2725. begin
  2726. typesym:=tsym(typesymderef.resolve);
  2727. typeconstr:=tdef(typeconstrderef.resolve);
  2728. for i:=0 to high(paras) do
  2729. paras[i].derefimpl;
  2730. end;
  2731. class procedure trtti_attribute_list.bind(var dangling,owned:trtti_attribute_list);
  2732. begin
  2733. if assigned(owned) then
  2734. internalerror(2019071001);
  2735. if not assigned(dangling) then
  2736. exit;
  2737. if dangling.is_bound then
  2738. internalerror(2019071002);
  2739. current_module.used_rtti_attrs.concatlistcopy(dangling.rtti_attributes);
  2740. dangling.is_bound:=true;
  2741. owned:=dangling;
  2742. dangling:=nil;
  2743. end;
  2744. procedure trtti_attribute_list.addattribute(atypesym:tsym;typeconstr:tdef;constructorcall:tnode;constref paras:array of tnode);
  2745. var
  2746. newattribute : trtti_attribute;
  2747. i : sizeint;
  2748. begin
  2749. if not assigned(rtti_attributes) then
  2750. rtti_attributes:=TFPObjectList.Create(true);
  2751. newattribute:=trtti_attribute.Create;
  2752. newattribute.typesym:=atypesym;
  2753. newattribute.typeconstr:=typeconstr;
  2754. newattribute.constructorcall:=constructorcall;
  2755. setlength(newattribute.paras,length(paras));
  2756. for i:=0 to high(paras) do
  2757. newattribute.paras[i]:=paras[i];
  2758. rtti_attributes.Add(newattribute);
  2759. end;
  2760. procedure trtti_attribute_list.addattribute(attr:trtti_attribute);
  2761. begin
  2762. if not assigned(rtti_attributes) then
  2763. rtti_attributes:=TFPObjectList.Create(true);
  2764. rtti_attributes.add(attr);
  2765. end;
  2766. destructor trtti_attribute_list.destroy;
  2767. begin
  2768. rtti_attributes.Free;
  2769. inherited destroy;
  2770. end;
  2771. function trtti_attribute_list.get_attribute_count:longint;
  2772. begin
  2773. if assigned(rtti_attributes) then
  2774. result:=rtti_attributes.Count
  2775. else
  2776. result:=0;
  2777. end;
  2778. procedure trtti_attribute_list.buildderef;
  2779. var
  2780. i : sizeint;
  2781. begin
  2782. if not assigned(rtti_attributes) then
  2783. exit;
  2784. for i:=0 to rtti_attributes.count-1 do
  2785. trtti_attribute(rtti_attributes[i]).buildderef;
  2786. end;
  2787. procedure trtti_attribute_list.deref;
  2788. var
  2789. i : sizeint;
  2790. begin
  2791. if not assigned(rtti_attributes) then
  2792. exit;
  2793. for i:=0 to rtti_attributes.count-1 do
  2794. trtti_attribute(rtti_attributes[i]).deref;
  2795. end;
  2796. class procedure trtti_attribute_list.ppuload_subentries(attrlist:trtti_attribute_list;ppufile:tcompilerppufile);
  2797. var
  2798. i : sizeint;
  2799. begin
  2800. if assigned(attrlist) then
  2801. begin
  2802. if not assigned(attrlist.rtti_attributes) then
  2803. internalerror(2019071101);
  2804. for i:=0 to attrlist.rtti_attributes.count-1 do
  2805. trtti_attribute(attrlist.rtti_attributes[i]).ppuload_subentries(ppufile);
  2806. end;
  2807. end;
  2808. class procedure trtti_attribute_list.ppuwrite_subentries(attrlist:trtti_attribute_list;ppufile:tcompilerppufile);
  2809. var
  2810. i : sizeint;
  2811. begin
  2812. if assigned(attrlist) and assigned(attrlist.rtti_attributes) then
  2813. begin
  2814. for i:=0 to attrlist.rtti_attributes.count-1 do
  2815. trtti_attribute(attrlist.rtti_attributes[i]).ppuwrite_subentries(ppufile);
  2816. end;
  2817. end;
  2818. class function trtti_attribute_list.ppuload(ppufile:tcompilerppufile):trtti_attribute_list;
  2819. var
  2820. cnt,i : longint;
  2821. begin
  2822. cnt:=ppufile.getlongint;
  2823. if cnt>0 then
  2824. begin
  2825. result:=trtti_attribute_list.create;
  2826. for i:=0 to cnt-1 do
  2827. result.addattribute(trtti_attribute.ppuload(ppufile));
  2828. end
  2829. else
  2830. result:=nil;
  2831. end;
  2832. class procedure trtti_attribute_list.ppuwrite(attrlist:trtti_attribute_list;ppufile:tcompilerppufile);
  2833. var
  2834. i : longint;
  2835. begin
  2836. if assigned(attrlist) and assigned(attrlist.rtti_attributes) then
  2837. begin
  2838. ppufile.putlongint(attrlist.rtti_attributes.count);
  2839. for i:=0 to attrlist.rtti_attributes.count-1 do
  2840. trtti_attribute(attrlist.rtti_attributes[i]).ppuwrite(ppufile);
  2841. end
  2842. else
  2843. ppufile.putlongint(0);
  2844. end;
  2845. {****************************************************************************
  2846. TORDDEF
  2847. ****************************************************************************}
  2848. constructor torddef.create(t : tordtype;v,b : TConstExprInt; doregister: boolean);
  2849. begin
  2850. inherited create(orddef,doregister);
  2851. low:=v;
  2852. high:=b;
  2853. ordtype:=t;
  2854. setsize;
  2855. end;
  2856. constructor torddef.ppuload(ppufile:tcompilerppufile);
  2857. begin
  2858. inherited ppuload(orddef,ppufile);
  2859. ordtype:=tordtype(ppufile.getbyte);
  2860. low:=ppufile.getexprint;
  2861. high:=ppufile.getexprint;
  2862. setsize;
  2863. ppuload_platform(ppufile);
  2864. end;
  2865. function torddef.getcopy : tstoreddef;
  2866. begin
  2867. result:=corddef.create(ordtype,low,high,true);
  2868. result.typ:=orddef;
  2869. torddef(result).low:=low;
  2870. torddef(result).high:=high;
  2871. torddef(result).ordtype:=ordtype;
  2872. torddef(result).savesize:=savesize;
  2873. end;
  2874. function torddef.alignment:shortint;
  2875. begin
  2876. if (target_info.system in [system_i386_darwin,system_i386_iphonesim,system_arm_darwin]) and
  2877. (ordtype in [s64bit,u64bit]) then
  2878. result := 4
  2879. else
  2880. result := inherited alignment;
  2881. end;
  2882. procedure torddef.setsize;
  2883. const
  2884. sizetbl : array[tordtype] of longint = (
  2885. 0,
  2886. 1,2,4,8,16,
  2887. 1,2,4,8,16,
  2888. 1,1,2,4,8,
  2889. 1,2,4,8,
  2890. 1,2,8,system.high(longint)
  2891. );
  2892. begin
  2893. savesize:=sizetbl[ordtype];
  2894. if savesize=system.high(longint) then
  2895. savesize:=packedbitsize div 8;
  2896. end;
  2897. function torddef.packedbitsize: asizeint;
  2898. var
  2899. sizeval: tconstexprint;
  2900. power: longint;
  2901. begin
  2902. result := 0;
  2903. if ordtype = uvoid then
  2904. exit;
  2905. {$ifndef cpu64bitalu}
  2906. if (ordtype in [s64bit,u64bit]) then
  2907. {$else not cpu64bitalu}
  2908. if (ordtype = u64bit) or
  2909. ((ordtype = s64bit) and
  2910. ((low <= (system.low(int64) div 2)) or
  2911. (high > (system.high(int64) div 2)))) then
  2912. {$endif cpu64bitalu}
  2913. result := 64
  2914. else if (
  2915. (low >= 0) and
  2916. (high <= 1)
  2917. ) or (
  2918. ordtype in [pasbool1,pasbool8,pasbool16,pasbool32,pasbool64,bool8bit,bool16bit,bool32bit,bool64bit]
  2919. ) then
  2920. result := 1
  2921. else
  2922. begin
  2923. if (low>=0) then
  2924. sizeval:=high
  2925. else
  2926. { don't count 0 twice, but take into account that range goes from -n-1..n }
  2927. sizeval:=(cutils.max(-low,high+1)*2)-1;
  2928. { 256 must become 512 etc. }
  2929. nextpowerof2(sizeval+1,power);
  2930. result := power;
  2931. end;
  2932. end;
  2933. function torddef.getvardef : longint;
  2934. const
  2935. basetype2vardef : array[tordtype] of longint = (
  2936. varUndefined,
  2937. varbyte,varword,varlongword,varqword,varUndefined,
  2938. varshortint,varsmallint,varinteger,varint64,varUndefined,
  2939. varboolean,varboolean,varboolean,varboolean,varboolean,
  2940. varboolean,varboolean,varUndefined,varUndefined,
  2941. varUndefined,varUndefined,varCurrency,varEmpty);
  2942. begin
  2943. result:=basetype2vardef[ordtype];
  2944. if result=varEmpty then
  2945. result:=basetype2vardef[range_to_basetype(low,high)];
  2946. end;
  2947. procedure torddef.ppuwrite(ppufile:tcompilerppufile);
  2948. begin
  2949. inherited ppuwrite(ppufile);
  2950. ppufile.putbyte(byte(ordtype));
  2951. ppufile.putexprint(low);
  2952. ppufile.putexprint(high);
  2953. writeentry(ppufile,iborddef);
  2954. end;
  2955. function torddef.is_publishable : boolean;
  2956. begin
  2957. is_publishable:=(ordtype<>uvoid);
  2958. end;
  2959. function torddef.GetTypeName : string;
  2960. const
  2961. names : array[tordtype] of string[20] = (
  2962. 'untyped',
  2963. 'Byte','Word','DWord','QWord','UInt128',
  2964. 'ShortInt','SmallInt','LongInt','Int64','Int128',
  2965. 'Boolean','Boolean8','Boolean16','Boolean32','Boolean64',
  2966. 'ByteBool','WordBool','LongBool','QWordBool',
  2967. 'Char','WideChar','Currency','CustomRange');
  2968. begin
  2969. GetTypeName:=names[ordtype];
  2970. end;
  2971. {****************************************************************************
  2972. TFLOATDEF
  2973. ****************************************************************************}
  2974. constructor tfloatdef.create(t: tfloattype; doregister: boolean);
  2975. begin
  2976. inherited create(floatdef,doregister);
  2977. floattype:=t;
  2978. setsize;
  2979. end;
  2980. constructor tfloatdef.ppuload(ppufile:tcompilerppufile);
  2981. begin
  2982. inherited ppuload(floatdef,ppufile);
  2983. floattype:=tfloattype(ppufile.getbyte);
  2984. setsize;
  2985. ppuload_platform(ppufile);
  2986. end;
  2987. function tfloatdef.getcopy : tstoreddef;
  2988. begin
  2989. result:=cfloatdef.create(floattype,true);
  2990. result.typ:=floatdef;
  2991. tfloatdef(result).savesize:=savesize;
  2992. end;
  2993. function tfloatdef.alignment:shortint;
  2994. begin
  2995. if (target_info.system in [system_i386_darwin,system_i386_iphonesim,system_arm_darwin]) then
  2996. case floattype of
  2997. sc80real,
  2998. s80real: result:=16;
  2999. s64real,
  3000. s64currency,
  3001. s64comp : result:=4;
  3002. else
  3003. result := inherited alignment;
  3004. end
  3005. else
  3006. result := inherited alignment;
  3007. end;
  3008. function tfloatdef.structalignment: shortint;
  3009. begin
  3010. { aix is really annoying: the recommended scalar alignment for both
  3011. int64 and double is 64 bits, but in structs int64 has to be aligned
  3012. to 8 bytes and double to 4 bytes }
  3013. if (target_info.system in systems_aix) and
  3014. (floattype=s64real) then
  3015. result:=4
  3016. else
  3017. result:=alignment;
  3018. end;
  3019. procedure tfloatdef.setsize;
  3020. begin
  3021. case floattype of
  3022. s32real : savesize:=4;
  3023. s80real : savesize:=10;
  3024. sc80real:
  3025. if target_info.system in [system_i386_darwin,
  3026. system_i386_iphonesim,system_x86_64_darwin,
  3027. system_x86_64_iphonesim,
  3028. system_x86_64_linux,system_x86_64_freebsd,
  3029. system_x86_64_openbsd,system_x86_64_netbsd,
  3030. system_x86_64_solaris,system_x86_64_embedded,
  3031. system_x86_64_dragonfly,system_x86_64_haiku] then
  3032. savesize:=16
  3033. else
  3034. savesize:=12;
  3035. s64real,
  3036. s64currency,
  3037. s64comp : savesize:=8;
  3038. else
  3039. savesize:=0;
  3040. end;
  3041. end;
  3042. function tfloatdef.getvardef : longint;
  3043. const
  3044. floattype2vardef : array[tfloattype] of longint = (
  3045. varSingle,varDouble,varUndefined,varUndefined,
  3046. varUndefined,varCurrency,varUndefined);
  3047. begin
  3048. if (upper(typename)='TDATETIME') and
  3049. assigned(owner) and
  3050. assigned(owner.name) and
  3051. (owner.name^='SYSTEM') then
  3052. result:=varDate
  3053. else
  3054. result:=floattype2vardef[floattype];
  3055. end;
  3056. procedure tfloatdef.ppuwrite(ppufile:tcompilerppufile);
  3057. begin
  3058. inherited ppuwrite(ppufile);
  3059. ppufile.putbyte(byte(floattype));
  3060. writeentry(ppufile,ibfloatdef);
  3061. end;
  3062. function tfloatdef.is_publishable : boolean;
  3063. begin
  3064. is_publishable:=true;
  3065. end;
  3066. function tfloatdef.GetTypeName : string;
  3067. const
  3068. names : array[tfloattype] of string[20] = (
  3069. 'Single','Double','Extended','CExtended','Comp','Currency','Float128');
  3070. begin
  3071. GetTypeName:=names[floattype];
  3072. end;
  3073. {****************************************************************************
  3074. TFILEDEF
  3075. ****************************************************************************}
  3076. constructor tfiledef.createtext;
  3077. begin
  3078. inherited create(filedef,true);
  3079. filetyp:=ft_text;
  3080. typedfiledef:=nil;
  3081. typedfiledefderef.reset;
  3082. end;
  3083. constructor tfiledef.createuntyped;
  3084. begin
  3085. inherited create(filedef,true);
  3086. filetyp:=ft_untyped;
  3087. typedfiledef:=nil;
  3088. end;
  3089. constructor tfiledef.createtyped(def:tdef);
  3090. begin
  3091. inherited create(filedef,true);
  3092. filetyp:=ft_typed;
  3093. typedfiledef:=def;
  3094. end;
  3095. constructor tfiledef.ppuload(ppufile:tcompilerppufile);
  3096. begin
  3097. inherited ppuload(filedef,ppufile);
  3098. filetyp:=tfiletyp(ppufile.getbyte);
  3099. if filetyp=ft_typed then
  3100. ppufile.getderef(typedfiledefderef)
  3101. else
  3102. typedfiledef:=nil;
  3103. ppuload_platform(ppufile);
  3104. end;
  3105. function tfiledef.getcopy : tstoreddef;
  3106. begin
  3107. case filetyp of
  3108. ft_typed:
  3109. result:=cfiledef.createtyped(typedfiledef);
  3110. ft_untyped:
  3111. result:=cfiledef.createuntyped;
  3112. ft_text:
  3113. result:=cfiledef.createtext;
  3114. end;
  3115. end;
  3116. procedure tfiledef.buildderef;
  3117. begin
  3118. inherited buildderef;
  3119. if filetyp=ft_typed then
  3120. typedfiledefderef.build(typedfiledef);
  3121. end;
  3122. procedure tfiledef.deref;
  3123. begin
  3124. inherited deref;
  3125. if filetyp=ft_typed then
  3126. typedfiledef:=tdef(typedfiledefderef.resolve);
  3127. end;
  3128. function tfiledef.size:asizeint;
  3129. begin
  3130. if savesize=0 then
  3131. setsize;
  3132. size:=savesize;
  3133. end;
  3134. procedure tfiledef.setsize;
  3135. begin
  3136. case filetyp of
  3137. ft_text:
  3138. savesize:=search_system_type('TEXTREC').typedef.size;
  3139. ft_typed:
  3140. begin
  3141. savesize:=search_system_type('FILEREC').typedef.size;
  3142. { allocate put/get buffer in iso mode }
  3143. if m_isolike_io in current_settings.modeswitches then
  3144. inc(savesize,typedfiledef.size);
  3145. end;
  3146. ft_untyped:
  3147. savesize:=search_system_type('FILEREC').typedef.size;
  3148. end;
  3149. end;
  3150. function tfiledef.alignment: shortint;
  3151. begin
  3152. case filetyp of
  3153. ft_text:
  3154. result:=search_system_type('TEXTREC').typedef.alignment;
  3155. ft_typed,
  3156. ft_untyped:
  3157. result:=search_system_type('FILEREC').typedef.alignment;
  3158. end;
  3159. end;
  3160. procedure tfiledef.ppuwrite(ppufile:tcompilerppufile);
  3161. begin
  3162. inherited ppuwrite(ppufile);
  3163. ppufile.putbyte(byte(filetyp));
  3164. if filetyp=ft_typed then
  3165. ppufile.putderef(typedfiledefderef);
  3166. writeentry(ppufile,ibfiledef);
  3167. end;
  3168. function tfiledef.GetTypeName : string;
  3169. begin
  3170. case filetyp of
  3171. ft_untyped:
  3172. GetTypeName:='File';
  3173. ft_typed:
  3174. GetTypeName:='File Of '+typedfiledef.typename;
  3175. ft_text:
  3176. GetTypeName:='Text'
  3177. end;
  3178. end;
  3179. function tfiledef.getmangledparaname : TSymStr;
  3180. begin
  3181. case filetyp of
  3182. ft_untyped:
  3183. getmangledparaname:='FILE';
  3184. ft_typed:
  3185. getmangledparaname:='FILE$OF$'+typedfiledef.mangledparaname;
  3186. ft_text:
  3187. getmangledparaname:='TEXT'
  3188. end;
  3189. end;
  3190. {****************************************************************************
  3191. TVARIANTDEF
  3192. ****************************************************************************}
  3193. constructor tvariantdef.create(v : tvarianttype);
  3194. begin
  3195. inherited create(variantdef,true);
  3196. varianttype:=v;
  3197. setsize;
  3198. end;
  3199. constructor tvariantdef.ppuload(ppufile:tcompilerppufile);
  3200. begin
  3201. inherited ppuload(variantdef,ppufile);
  3202. varianttype:=tvarianttype(ppufile.getbyte);
  3203. setsize;
  3204. ppuload_platform(ppufile);
  3205. end;
  3206. function tvariantdef.getcopy : tstoreddef;
  3207. begin
  3208. result:=cvariantdef.create(varianttype);
  3209. end;
  3210. procedure tvariantdef.ppuwrite(ppufile:tcompilerppufile);
  3211. begin
  3212. inherited ppuwrite(ppufile);
  3213. ppufile.putbyte(byte(varianttype));
  3214. writeentry(ppufile,ibvariantdef);
  3215. end;
  3216. function tvariantdef.getvardef : longint;
  3217. begin
  3218. Result:=varVariant;
  3219. end;
  3220. procedure tvariantdef.setsize;
  3221. begin
  3222. {$ifdef cpu64bitaddr}
  3223. savesize:=24;
  3224. {$else cpu64bitaddr}
  3225. savesize:=16;
  3226. {$endif cpu64bitaddr}
  3227. end;
  3228. function tvariantdef.GetTypeName : string;
  3229. begin
  3230. case varianttype of
  3231. vt_normalvariant:
  3232. GetTypeName:='Variant';
  3233. vt_olevariant:
  3234. GetTypeName:='OleVariant';
  3235. end;
  3236. end;
  3237. function tvariantdef.needs_inittable : boolean;
  3238. begin
  3239. needs_inittable:=true;
  3240. end;
  3241. function tvariantdef.is_publishable : boolean;
  3242. begin
  3243. is_publishable:=true;
  3244. end;
  3245. {****************************************************************************
  3246. TABSTRACtpointerdef
  3247. ****************************************************************************}
  3248. constructor tabstractpointerdef.create(dt:tdeftyp;def:tdef);
  3249. begin
  3250. inherited create(dt,true);
  3251. pointeddef:=def;
  3252. pointeddefderef.reset;
  3253. if df_generic in pointeddef.defoptions then
  3254. include(defoptions,df_generic);
  3255. if df_specialization in pointeddef.defoptions then
  3256. include(defoptions,df_specialization);
  3257. end;
  3258. constructor tabstractpointerdef.ppuload(dt:tdeftyp;ppufile:tcompilerppufile);
  3259. begin
  3260. inherited ppuload(dt,ppufile);
  3261. ppufile.getderef(pointeddefderef);
  3262. end;
  3263. procedure tabstractpointerdef.buildderef;
  3264. begin
  3265. inherited buildderef;
  3266. pointeddefderef.build(pointeddef);
  3267. end;
  3268. procedure tabstractpointerdef.deref;
  3269. begin
  3270. inherited deref;
  3271. pointeddef:=tdef(pointeddefderef.resolve);
  3272. end;
  3273. function tabstractpointerdef.size: asizeint;
  3274. begin
  3275. Result:=voidpointertype.size;
  3276. end;
  3277. function tabstractpointerdef.alignment: shortint;
  3278. begin
  3279. alignment:=size_2_align(voidpointertype.size);
  3280. end;
  3281. procedure tabstractpointerdef.ppuwrite(ppufile:tcompilerppufile);
  3282. begin
  3283. inherited ppuwrite(ppufile);
  3284. ppufile.putderef(pointeddefderef);
  3285. end;
  3286. {****************************************************************************
  3287. tpointerdef
  3288. ****************************************************************************}
  3289. constructor tpointerdef.create(def:tdef);
  3290. begin
  3291. inherited create(pointerdef,def);
  3292. has_pointer_math:=cs_pointermath in current_settings.localswitches;
  3293. if (df_specialization in tstoreddef(def).defoptions)
  3294. {$ifndef genericdef_for_nested}
  3295. { currently, nested procdefs of generic routines get df_specialisation,
  3296. but no genericdef }
  3297. and assigned(tstoreddef(def).genericdef)
  3298. {$endif}
  3299. then
  3300. genericdef:=cpointerdef.getreusable(tstoreddef(def).genericdef);
  3301. end;
  3302. class function tpointerdef.getreusable(def: tdef): tpointerdef;
  3303. var
  3304. res: PHashSetItem;
  3305. oldsymtablestack: tsymtablestack;
  3306. begin
  3307. if not assigned(current_module) then
  3308. internalerror(2011071101);
  3309. res:=current_module.ptrdefs.FindOrAdd(@def,sizeof(def));
  3310. if not assigned(res^.Data) then
  3311. begin
  3312. { since these pointerdefs can be reused anywhere in the current
  3313. unit, add them to the global/staticsymtable (or local symtable
  3314. if they're a local def, because otherwise they'll be saved
  3315. to the ppu referencing a local symtable entry that doesn't
  3316. exist in the ppu) }
  3317. oldsymtablestack:=symtablestack;
  3318. { do not simply push/pop current_module.localsymtable, because
  3319. that can have side-effects (e.g., it removes helpers) }
  3320. symtablestack:=nil;
  3321. result:=cpointerdef.create(def);
  3322. setup_reusable_def(def,result,res,oldsymtablestack);
  3323. { res^.Data may still be nil -> don't overwrite result }
  3324. exit;
  3325. end;
  3326. result:=tpointerdef(res^.Data);
  3327. end;
  3328. class function tpointerdef.getreusable_no_free(def: tdef): tpointerdef;
  3329. begin
  3330. result:=getreusable(def);
  3331. if not result.is_registered then
  3332. include(result.defoptions,df_not_registered_no_free);
  3333. end;
  3334. function tpointerdef.size: asizeint;
  3335. begin
  3336. result:=sizeof(pint);
  3337. end;
  3338. constructor tpointerdef.ppuload(ppufile:tcompilerppufile);
  3339. begin
  3340. inherited ppuload(pointerdef,ppufile);
  3341. has_pointer_math:=(ppufile.getbyte<>0);
  3342. ppuload_platform(ppufile);
  3343. end;
  3344. function tpointerdef.getcopy : tstoreddef;
  3345. begin
  3346. { don't use direct pointeddef if it is a forwarddef because in other case
  3347. one of them will be destroyed on forward type resolve and the second will
  3348. point to garbage }
  3349. if pointeddef.typ=forwarddef then
  3350. result:=cpointerdef.create(tforwarddef(pointeddef).getcopy)
  3351. else
  3352. result:=cpointerdef.create(pointeddef);
  3353. tpointerdef(result).has_pointer_math:=has_pointer_math;
  3354. tpointerdef(result).savesize:=savesize;
  3355. end;
  3356. procedure tpointerdef.ppuwrite(ppufile:tcompilerppufile);
  3357. begin
  3358. inherited ppuwrite(ppufile);
  3359. ppufile.putbyte(byte(has_pointer_math));
  3360. writeentry(ppufile,ibpointerdef);
  3361. end;
  3362. function tpointerdef.GetTypeName : string;
  3363. begin
  3364. { parameter types and the resultdef of a procvardef can contain a
  3365. pointer to this procvardef itself, resulting in endless recursion ->
  3366. use the typesym's name instead if it exists (if it doesn't, such as
  3367. for anynonymous procedure types in macpas/iso mode, then there cannot
  3368. be any recursive references to it either) }
  3369. if (pointeddef.typ<>procvardef) or
  3370. not assigned(pointeddef.typesym) then
  3371. GetTypeName:='^'+pointeddef.typename
  3372. else
  3373. GetTypeName:='^'+pointeddef.typesym.realname;
  3374. end;
  3375. function tpointerdef.pointer_arithmetic_int_type:tdef;
  3376. begin
  3377. result:=ptrsinttype;
  3378. end;
  3379. function tpointerdef.pointer_arithmetic_uint_type:tdef;
  3380. begin
  3381. result:=ptruinttype;
  3382. end;
  3383. function tpointerdef.pointer_subtraction_result_type:tdef;
  3384. begin
  3385. result:=ptrsinttype;
  3386. end;
  3387. function tpointerdef.compatible_with_pointerdef_size(ptr: tpointerdef): boolean;
  3388. begin
  3389. result:=true;
  3390. end;
  3391. function tpointerdef.converted_pointer_to_array_range_type:tdef;
  3392. begin
  3393. result:=ptrsinttype;
  3394. end;
  3395. {****************************************************************************
  3396. TCLASSREFDEF
  3397. ****************************************************************************}
  3398. constructor tclassrefdef.create(def:tdef);
  3399. begin
  3400. inherited create(classrefdef,def);
  3401. if df_specialization in tstoreddef(def).defoptions then
  3402. genericdef:=cclassrefdef.create(tstoreddef(def).genericdef);
  3403. end;
  3404. constructor tclassrefdef.ppuload(ppufile:tcompilerppufile);
  3405. begin
  3406. inherited ppuload(classrefdef,ppufile);
  3407. ppuload_platform(ppufile);
  3408. end;
  3409. procedure tclassrefdef.ppuwrite(ppufile:tcompilerppufile);
  3410. begin
  3411. inherited ppuwrite(ppufile);
  3412. writeentry(ppufile,ibclassrefdef);
  3413. end;
  3414. function tclassrefdef.getcopy:tstoreddef;
  3415. begin
  3416. if pointeddef.typ=forwarddef then
  3417. result:=cclassrefdef.create(tforwarddef(pointeddef).getcopy)
  3418. else
  3419. result:=cclassrefdef.create(pointeddef);
  3420. end;
  3421. function tclassrefdef.GetTypeName : string;
  3422. begin
  3423. GetTypeName:='Class Of '+pointeddef.typename;
  3424. end;
  3425. function tclassrefdef.is_publishable : boolean;
  3426. begin
  3427. result:=true;
  3428. end;
  3429. function tclassrefdef.rtti_mangledname(rt: trttitype): TSymStr;
  3430. begin
  3431. if (tobjectdef(pointeddef).objecttype<>odt_objcclass) then
  3432. result:=inherited rtti_mangledname(rt)
  3433. else
  3434. result:=tobjectdef(pointeddef).rtti_mangledname(objcmetartti);
  3435. end;
  3436. procedure tclassrefdef.register_created_object_type;
  3437. begin
  3438. tobjectdef(pointeddef).register_created_classref_type;
  3439. end;
  3440. {***************************************************************************
  3441. TSETDEF
  3442. ***************************************************************************}
  3443. constructor tsetdef.create(def: tdef; low, high: asizeint; doregister: boolean);
  3444. var
  3445. setallocbits: aint;
  3446. packedsavesize: aint;
  3447. actual_setalloc: ShortInt;
  3448. begin
  3449. inherited create(setdef,doregister);
  3450. elementdef:=def;
  3451. elementdefderef.reset;
  3452. setmax:=high;
  3453. actual_setalloc:=current_settings.setalloc;
  3454. {$if defined(cpu8bitalu) or defined(cpu16bitalu)}
  3455. if actual_setalloc=0 then
  3456. actual_setalloc:=1;
  3457. {$endif}
  3458. if (actual_setalloc=0) then
  3459. begin
  3460. setbase:=0;
  3461. if (high<32) then
  3462. savesize:=Sizeof(longint)
  3463. else if (high<256) then
  3464. savesize:=32
  3465. else
  3466. savesize:=(high+7) div 8
  3467. end
  3468. else
  3469. begin
  3470. setallocbits:=actual_setalloc*8;
  3471. setbase:=low and not(setallocbits-1);
  3472. packedsavesize:=actual_setalloc*((((high+setallocbits)-setbase)) DIV setallocbits);
  3473. savesize:=packedsavesize;
  3474. {$if not defined(cpu8bitalu) and not defined(cpu16bitalu)}
  3475. if savesize=3 then
  3476. savesize:=4;
  3477. {$endif}
  3478. end;
  3479. end;
  3480. constructor tsetdef.ppuload(ppufile:tcompilerppufile);
  3481. begin
  3482. inherited ppuload(setdef,ppufile);
  3483. ppufile.getderef(elementdefderef);
  3484. savesize:=ppufile.getasizeint;
  3485. setbase:=ppufile.getasizeint;
  3486. setmax:=ppufile.getasizeint;
  3487. ppuload_platform(ppufile);
  3488. end;
  3489. function tsetdef.getcopy : tstoreddef;
  3490. begin
  3491. result:=csetdef.create(elementdef,setbase,setmax,true);
  3492. { the copy might have been created with a different setalloc setting }
  3493. tsetdef(result).savesize:=savesize;
  3494. end;
  3495. procedure tsetdef.ppuwrite(ppufile:tcompilerppufile);
  3496. begin
  3497. inherited ppuwrite(ppufile);
  3498. ppufile.putderef(elementdefderef);
  3499. ppufile.putasizeint(savesize);
  3500. ppufile.putasizeint(setbase);
  3501. ppufile.putasizeint(setmax);
  3502. writeentry(ppufile,ibsetdef);
  3503. end;
  3504. procedure tsetdef.buildderef;
  3505. begin
  3506. inherited buildderef;
  3507. elementdefderef.build(elementdef);
  3508. end;
  3509. procedure tsetdef.deref;
  3510. begin
  3511. inherited deref;
  3512. elementdef:=tdef(elementdefderef.resolve);
  3513. end;
  3514. function tsetdef.is_publishable : boolean;
  3515. begin
  3516. is_publishable:=savesize in [1,2,4];
  3517. end;
  3518. function tsetdef.alignment: shortint;
  3519. begin
  3520. Result:=inherited;
  3521. if result>sizeof(aint) then
  3522. result:=sizeof(aint);
  3523. end;
  3524. function tsetdef.GetTypeName : string;
  3525. begin
  3526. if assigned(elementdef) then
  3527. GetTypeName:='Set Of '+elementdef.typename
  3528. else
  3529. GetTypeName:='Empty Set';
  3530. end;
  3531. {***************************************************************************
  3532. TFORMALDEF
  3533. ***************************************************************************}
  3534. constructor tformaldef.create(Atyped:boolean);
  3535. begin
  3536. inherited create(formaldef,true);
  3537. typed:=Atyped;
  3538. savesize:=0;
  3539. end;
  3540. constructor tformaldef.ppuload(ppufile:tcompilerppufile);
  3541. begin
  3542. inherited ppuload(formaldef,ppufile);
  3543. typed:=boolean(ppufile.getbyte);
  3544. savesize:=0;
  3545. ppuload_platform(ppufile);
  3546. end;
  3547. procedure tformaldef.ppuwrite(ppufile:tcompilerppufile);
  3548. begin
  3549. inherited ppuwrite(ppufile);
  3550. ppufile.putbyte(byte(typed));
  3551. writeentry(ppufile,ibformaldef);
  3552. end;
  3553. function tformaldef.GetTypeName : string;
  3554. begin
  3555. if typed then
  3556. GetTypeName:='<Typed formal type>'
  3557. else
  3558. GetTypeName:='<Formal type>';
  3559. end;
  3560. {***************************************************************************
  3561. TARRAYDEF
  3562. ***************************************************************************}
  3563. constructor tarraydef.create(l, h: asizeint; def: tdef);
  3564. begin
  3565. inherited create(arraydef,true);
  3566. lowrange:=l;
  3567. highrange:=h;
  3568. rangedef:=def;
  3569. rangedefderef.reset;
  3570. _elementdef:=nil;
  3571. _elementdefderef.reset;
  3572. arrayoptions:=[];
  3573. symtable:=tarraysymtable.create(self);
  3574. end;
  3575. constructor tarraydef.create_vector(l ,h: asizeint; def: tdef);
  3576. begin
  3577. self.create(l,h,def);
  3578. include(arrayoptions,ado_IsVector);
  3579. end;
  3580. constructor tarraydef.create_openarray;
  3581. begin
  3582. self.create(0,-1,sizesinttype)
  3583. end;
  3584. class function tarraydef.getreusable_intern(def: tdef; elems: asizeint; const options: tarraydefoptions): tarraydef;
  3585. var
  3586. res: PHashSetItem;
  3587. oldsymtablestack: tsymtablestack;
  3588. arrdesc: packed record
  3589. def: tdef;
  3590. elecount: asizeint;
  3591. options: tarraydefoptions
  3592. end;
  3593. begin
  3594. if not assigned(current_module) then
  3595. internalerror(2011081301);
  3596. arrdesc.def:=def;
  3597. arrdesc.elecount:=elems;
  3598. arrdesc.options:=options;
  3599. res:=current_module.arraydefs.FindOrAdd(@arrdesc,sizeof(arrdesc));
  3600. if not assigned(res^.Data) then
  3601. begin
  3602. { since these pointerdefs can be reused anywhere in the current
  3603. unit, add them to the global/staticsymtable (or local symtable
  3604. if they're a local def, because otherwise they'll be saved
  3605. to the ppu referencing a local symtable entry that doesn't
  3606. exist in the ppu) }
  3607. oldsymtablestack:=symtablestack;
  3608. { do not simply push/pop current_module.localsymtable, because
  3609. that can have side-effects (e.g., it removes helpers) }
  3610. symtablestack:=nil;
  3611. result:=carraydef.create(0,elems-1,sizesinttype);
  3612. result.elementdef:=def;
  3613. result.arrayoptions:=options;
  3614. setup_reusable_def(def,result,res,oldsymtablestack);
  3615. { res^.Data may still be nil -> don't overwrite result }
  3616. exit;
  3617. end;
  3618. result:=tarraydef(res^.Data);
  3619. end;
  3620. class function tarraydef.getreusable(def: tdef; elems: asizeint): tarraydef;
  3621. begin
  3622. result:=getreusable_intern(def,elems,[]);
  3623. end;
  3624. class function tarraydef.getreusable_vector(def: tdef; elems: asizeint): tarraydef;
  3625. begin
  3626. result:=getreusable_intern(def,elems,[ado_IsVector]);
  3627. end;
  3628. class function tarraydef.getreusable_no_free(def: tdef; elems: asizeint): tarraydef;
  3629. begin
  3630. result:=getreusable(def,elems);
  3631. if not result.is_registered then
  3632. include(result.defoptions,df_not_registered_no_free);
  3633. end;
  3634. class function tarraydef.getreusable_no_free_vector(def: tdef; elems: asizeint): tarraydef;
  3635. begin
  3636. result:=getreusable_vector(def,elems);
  3637. if not result.is_registered then
  3638. include(result.defoptions,df_not_registered_no_free);
  3639. end;
  3640. destructor tarraydef.destroy;
  3641. begin
  3642. symtable.free;
  3643. symtable:=nil;
  3644. inherited;
  3645. end;
  3646. constructor tarraydef.create_from_pointer(def:tpointerdef);
  3647. begin
  3648. { divide by the element size and do -1 so the array will have a valid size,
  3649. further, the element size might be 0 e.g. for empty records, so use max(...,1)
  3650. to avoid a division by zero }
  3651. self.create(0,(high(asizeint) div max(def.pointeddef.size,1))-1,
  3652. def.converted_pointer_to_array_range_type);
  3653. arrayoptions:=[ado_IsConvertedPointer];
  3654. setelementdef(def.pointeddef);
  3655. end;
  3656. constructor tarraydef.ppuload(ppufile:tcompilerppufile);
  3657. begin
  3658. inherited ppuload(arraydef,ppufile);
  3659. { the addresses are calculated later }
  3660. ppufile.getderef(_elementdefderef);
  3661. ppufile.getderef(rangedefderef);
  3662. lowrange:=ppufile.getasizeint;
  3663. highrange:=ppufile.getasizeint;
  3664. ppufile.getset(tppuset1(arrayoptions));
  3665. ppuload_platform(ppufile);
  3666. symtable:=tarraysymtable.create(self);
  3667. tarraysymtable(symtable).ppuload(ppufile)
  3668. end;
  3669. function tarraydef.getcopy : tstoreddef;
  3670. begin
  3671. result:=carraydef.create(lowrange,highrange,rangedef);
  3672. tarraydef(result).arrayoptions:=arrayoptions;
  3673. tarraydef(result)._elementdef:=_elementdef;
  3674. end;
  3675. procedure tarraydef.buildderef;
  3676. begin
  3677. inherited buildderef;
  3678. tarraysymtable(symtable).buildderef;
  3679. _elementdefderef.build(_elementdef);
  3680. rangedefderef.build(rangedef);
  3681. end;
  3682. procedure tarraydef.deref;
  3683. begin
  3684. inherited deref;
  3685. tarraysymtable(symtable).deref(false);
  3686. _elementdef:=tdef(_elementdefderef.resolve);
  3687. rangedef:=tdef(rangedefderef.resolve);
  3688. end;
  3689. procedure tarraydef.ppuwrite(ppufile:tcompilerppufile);
  3690. begin
  3691. inherited ppuwrite(ppufile);
  3692. ppufile.putderef(_elementdefderef);
  3693. ppufile.putderef(rangedefderef);
  3694. ppufile.putasizeint(lowrange);
  3695. ppufile.putasizeint(highrange);
  3696. ppufile.putset(tppuset1(arrayoptions));
  3697. writeentry(ppufile,ibarraydef);
  3698. tarraysymtable(symtable).ppuwrite(ppufile);
  3699. end;
  3700. function tarraydef.elesize : asizeint;
  3701. begin
  3702. if (ado_IsBitPacked in arrayoptions) then
  3703. internalerror(2006080101);
  3704. if assigned(_elementdef) then
  3705. result:=_elementdef.size
  3706. else
  3707. result:=0;
  3708. end;
  3709. function tarraydef.elepackedbitsize : asizeint;
  3710. begin
  3711. if not(ado_IsBitPacked in arrayoptions) then
  3712. internalerror(2006080102);
  3713. if assigned(_elementdef) then
  3714. result:=_elementdef.packedbitsize
  3715. else
  3716. result:=0;
  3717. end;
  3718. function tarraydef.elecount : asizeuint;
  3719. var
  3720. qhigh,qlow : qword;
  3721. begin
  3722. if ado_IsDynamicArray in arrayoptions then
  3723. begin
  3724. result:=0;
  3725. exit;
  3726. end;
  3727. if (highrange>0) and (lowrange<0) then
  3728. begin
  3729. qhigh:=highrange;
  3730. if lowrange=low(asizeint) then
  3731. qlow:=high(asizeint) + 1
  3732. else
  3733. qlow:=qword(-lowrange);
  3734. { prevent overflow, return 0 to indicate overflow }
  3735. if qhigh+qlow>qword(high(asizeint)-1) then
  3736. result:=0
  3737. else
  3738. result:=qhigh+qlow+1;
  3739. end
  3740. else
  3741. result:=int64(highrange)-lowrange+1;
  3742. end;
  3743. function tarraydef.size : asizeint;
  3744. var
  3745. cachedelecount : asizeuint;
  3746. cachedelesize : asizeint;
  3747. begin
  3748. if ado_IsDynamicArray in arrayoptions then
  3749. begin
  3750. size:=voidpointertype.size;
  3751. exit;
  3752. end;
  3753. { Tarraydef.size may never be called for an open array! }
  3754. if (highrange=-1) and (lowrange=0) then
  3755. internalerror(99080501);
  3756. if not (ado_IsBitPacked in arrayoptions) then
  3757. cachedelesize:=elesize
  3758. else
  3759. cachedelesize := elepackedbitsize;
  3760. cachedelecount:=elecount;
  3761. if (cachedelesize = 0) then
  3762. begin
  3763. size := 0;
  3764. exit;
  3765. end;
  3766. if (cachedelecount = 0) then
  3767. begin
  3768. size := -1;
  3769. exit;
  3770. end;
  3771. { prevent overflow, return -1 to indicate overflow }
  3772. { also make sure we don't need 64/128 bit arithmetic to calculate offsets }
  3773. if (cachedelecount > asizeuint(high(asizeint))) or
  3774. ((high(asizeint) div cachedelesize) < asizeint(cachedelecount)) or
  3775. { also lowrange*elesize must be < high(asizeint) to prevent overflow when
  3776. accessing the array, see ncgmem (PFV) }
  3777. ((high(asizeint) div cachedelesize) < abs(lowrange)) then
  3778. begin
  3779. result:=-1;
  3780. exit;
  3781. end;
  3782. result:=cachedelesize*asizeint(cachedelecount);
  3783. if (ado_IsBitPacked in arrayoptions) then
  3784. { can't just add 7 and divide by 8, because that may overflow }
  3785. result:=result div 8 + ord((result mod 8)<>0);
  3786. {$ifdef cpu16bitaddr}
  3787. if result>65535 then
  3788. begin
  3789. result:=-1;
  3790. exit;
  3791. end;
  3792. {$endif cpu16bitaddr}
  3793. end;
  3794. procedure tarraydef.setelementdef(def:tdef);
  3795. begin
  3796. _elementdef:=def;
  3797. if not(
  3798. (ado_IsDynamicArray in arrayoptions) or
  3799. (ado_IsConvertedPointer in arrayoptions) or
  3800. (ado_IsConstructor in arrayoptions) or
  3801. (highrange<lowrange)
  3802. ) and
  3803. (size=-1) then
  3804. Message(sym_e_segment_too_large);
  3805. end;
  3806. function tarraydef.alignment : shortint;
  3807. begin
  3808. if ado_IsVector in arrayoptions then
  3809. alignment:=size
  3810. { alignment of dyn. arrays doesn't depend on the element size }
  3811. else if ado_IsDynamicArray in arrayoptions then
  3812. alignment:=voidpointertype.alignment
  3813. { alignment is the target alignment for the used load size }
  3814. else if (ado_IsBitPacked in arrayoptions) and
  3815. (elementdef.typ in [enumdef,orddef]) then
  3816. alignment:=cgsize_orddef(int_cgsize(packedbitsloadsize(elepackedbitsize))).alignment
  3817. { alignment is the alignment of the elements }
  3818. else
  3819. alignment:=elementdef.alignment
  3820. end;
  3821. function tarraydef.needs_inittable : boolean;
  3822. begin
  3823. needs_inittable:=(ado_IsDynamicArray in arrayoptions) or elementdef.needs_inittable;
  3824. end;
  3825. function tarraydef.needs_separate_initrtti : boolean;
  3826. begin
  3827. if ado_IsBitPacked in arrayoptions then
  3828. result:=false
  3829. else
  3830. result:=elementdef.needs_separate_initrtti;
  3831. end;
  3832. function tarraydef.GetTypeName : string;
  3833. begin
  3834. if (ado_IsConstString in arrayoptions) then
  3835. result:='Constant String'
  3836. else if (ado_isarrayofconst in arrayoptions) or
  3837. (ado_isConstructor in arrayoptions) then
  3838. begin
  3839. if (ado_isvariant in arrayoptions) or ((highrange=-1) and (lowrange=0)) then
  3840. GetTypeName:='Array Of Const'
  3841. else
  3842. GetTypeName:='{Array Of Const/Constant Open} Array of '+elementdef.typename;
  3843. end
  3844. else if (ado_IsDynamicArray in arrayoptions) then
  3845. GetTypeName:='{Dynamic} Array Of '+elementdef.typename
  3846. else if ((highrange=-1) and (lowrange=0)) then
  3847. GetTypeName:='{Open} Array Of '+elementdef.typename
  3848. else
  3849. begin
  3850. result := '';
  3851. if (ado_IsBitPacked in arrayoptions) then
  3852. result:='BitPacked ';
  3853. if rangedef.typ=enumdef then
  3854. result:=result+'Array['+rangedef.typename+'] Of '+elementdef.typename
  3855. else
  3856. result:=result+'Array['+tostr(lowrange)+'..'+
  3857. tostr(highrange)+'] Of '+elementdef.typename
  3858. end;
  3859. end;
  3860. function tarraydef.getmangledparaname : TSymStr;
  3861. begin
  3862. if ado_isarrayofconst in arrayoptions then
  3863. getmangledparaname:='array_of_const'
  3864. else
  3865. if ((highrange=-1) and (lowrange=0)) then
  3866. getmangledparaname:='array_of_'+elementdef.mangledparaname
  3867. else
  3868. internalerror(200204176);
  3869. end;
  3870. function tarraydef.is_publishable : boolean;
  3871. begin
  3872. Result:=ado_IsDynamicArray in arrayoptions;
  3873. end;
  3874. function tarraydef.is_hwvector: boolean;
  3875. begin
  3876. result:=ado_IsVector in arrayoptions;
  3877. end;
  3878. {***************************************************************************
  3879. tabstractrecorddef
  3880. ***************************************************************************}
  3881. constructor tabstractrecorddef.create(const n:string; dt:tdeftyp;doregister:boolean);
  3882. begin
  3883. inherited create(dt,doregister);
  3884. objname:=stringdup(upper(n));
  3885. objrealname:=stringdup(n);
  3886. objectoptions:=[];
  3887. if assigned(current_module.namespace) then
  3888. begin
  3889. import_lib:=stringdup(current_module.namespace^);
  3890. replace(import_lib^,'.','/');
  3891. end;
  3892. end;
  3893. constructor tabstractrecorddef.ppuload(dt:tdeftyp;ppufile:tcompilerppufile);
  3894. begin
  3895. inherited ppuload(dt,ppufile);
  3896. objrealname:=ppufile.getpshortstring;
  3897. objname:=stringdup(upper(objrealname^));
  3898. import_lib:=ppufile.getpshortstring;
  3899. { only used for external C++ classes and Java classes/records }
  3900. if (import_lib^='') then
  3901. stringdispose(import_lib);
  3902. ppufile.getset(tppuset4(objectoptions));
  3903. end;
  3904. procedure tabstractrecorddef.ppuwrite(ppufile: tcompilerppufile);
  3905. begin
  3906. inherited ppuwrite(ppufile);
  3907. ppufile.putstring(objrealname^);
  3908. if assigned(import_lib) then
  3909. ppufile.putstring(import_lib^)
  3910. else
  3911. ppufile.putstring('');
  3912. ppufile.putset(tppuset4(objectoptions));
  3913. end;
  3914. destructor tabstractrecorddef.destroy;
  3915. begin
  3916. stringdispose(objname);
  3917. stringdispose(objrealname);
  3918. stringdispose(import_lib);
  3919. tcinitcode.free;
  3920. inherited destroy;
  3921. end;
  3922. procedure tabstractrecorddef.buildderefimpl;
  3923. begin
  3924. inherited buildderefimpl;
  3925. if not (df_copied_def in defoptions) then
  3926. tstoredsymtable(symtable).buildderefimpl;
  3927. end;
  3928. procedure tabstractrecorddef.derefimpl;
  3929. begin
  3930. inherited derefimpl;
  3931. if not (df_copied_def in defoptions) then
  3932. tstoredsymtable(symtable).derefimpl(false);
  3933. end;
  3934. procedure tabstractrecorddef.check_forwards;
  3935. begin
  3936. { the defs of a copied def are defined for the original type only }
  3937. if not(df_copied_def in defoptions) then
  3938. tstoredsymtable(symtable).check_forwards;
  3939. end;
  3940. function tabstractrecorddef.find_procdef_bytype(pt:tproctypeoption): tprocdef;
  3941. var
  3942. i: longint;
  3943. sym: tsym;
  3944. begin
  3945. for i:=0 to symtable.SymList.Count-1 do
  3946. begin
  3947. sym:=tsym(symtable.SymList[i]);
  3948. if sym.typ=procsym then
  3949. begin
  3950. result:=tprocsym(sym).find_procdef_bytype(pt);
  3951. if assigned(result) then
  3952. exit;
  3953. end;
  3954. end;
  3955. result:=nil;
  3956. end;
  3957. function tabstractrecorddef.GetSymtable(t:tGetSymtable):TSymtable;
  3958. begin
  3959. if t=gs_record then
  3960. GetSymtable:=symtable
  3961. else
  3962. GetSymtable:=nil;
  3963. end;
  3964. function tabstractrecorddef.is_packed:boolean;
  3965. begin
  3966. result:=tabstractrecordsymtable(symtable).is_packed;
  3967. end;
  3968. function tabstractrecorddef.RttiName: string;
  3969. function generate_full_paramname(maxlength:longint):string;
  3970. const
  3971. commacount : array[boolean] of longint = (0,1);
  3972. var
  3973. fullparas,
  3974. paramname : ansistring;
  3975. module : tmodule;
  3976. sym : ttypesym;
  3977. i : longint;
  3978. begin
  3979. { we want at least enough space for an ellipsis }
  3980. if maxlength<3 then
  3981. internalerror(2014121203);
  3982. fullparas:='';
  3983. for i:=0 to genericparas.count-1 do
  3984. begin
  3985. sym:=ttypesym(genericparas[i]);
  3986. module:=find_module_from_symtable(sym.owner);
  3987. if not assigned(module) then
  3988. internalerror(2014121202);
  3989. paramname:=module.realmodulename^;
  3990. if sym.typedef.typ in [objectdef,recorddef] then
  3991. paramname:=paramname+'.'+tabstractrecorddef(sym.typedef).rttiname
  3992. else
  3993. paramname:=paramname+'.'+sym.typedef.typename;
  3994. if length(fullparas)+commacount[i>0]+length(paramname)>maxlength then
  3995. begin
  3996. if i>0 then
  3997. fullparas:=fullparas+',...'
  3998. else
  3999. fullparas:=fullparas+'...';
  4000. break;
  4001. end;
  4002. { could we fit an ellipsis after this parameter if it should be too long? }
  4003. if (maxlength-(length(fullparas)+commacount[i>0]+length(paramname))<4) and (i<genericparas.count-1) then
  4004. begin
  4005. { then omit already this parameter }
  4006. if i>0 then
  4007. fullparas:=fullparas+',...'
  4008. else
  4009. fullparas:=fullparas+'...';
  4010. break;
  4011. end;
  4012. if i>0 then
  4013. fullparas:=fullparas+',';
  4014. fullparas:=fullparas+paramname;
  4015. end;
  4016. result:=fullparas;
  4017. end;
  4018. var
  4019. nongeneric,
  4020. basename : string;
  4021. i,
  4022. remlength,
  4023. paramcount,
  4024. crcidx : longint;
  4025. begin
  4026. if rttistring='' then
  4027. begin
  4028. if is_specialization then
  4029. begin
  4030. rttistring:=OwnerHierarchyName;
  4031. { there should be two $ characters, one before the CRC and one before the count }
  4032. crcidx:=-1;
  4033. for i:=length(objrealname^) downto 1 do
  4034. if objrealname^[i]='$' then
  4035. begin
  4036. crcidx:=i;
  4037. break;
  4038. end;
  4039. if crcidx<0 then
  4040. internalerror(2014121201);
  4041. basename:=copy(objrealname^,1,crcidx-1);
  4042. split_generic_name(basename,nongeneric,paramcount);
  4043. rttistring:=rttistring+nongeneric+'<';
  4044. remlength:=255-length(rttistring)-1;
  4045. if remlength<4 then
  4046. rttistring:=rttistring+'>'
  4047. else
  4048. rttistring:=rttistring+generate_full_paramname(remlength)+'>';
  4049. end
  4050. else
  4051. if is_generic then
  4052. begin
  4053. rttistring:=OwnerHierarchyName;
  4054. split_generic_name(objrealname^,nongeneric,paramcount);
  4055. rttistring:=rttistring+nongeneric+'<';
  4056. { we don't want any ',' if there is only one parameter }
  4057. for i:=0 to paramcount-0 do
  4058. rttistring:=rttistring+',';
  4059. rttistring:=rttistring+'>';
  4060. end
  4061. else
  4062. rttistring:=OwnerHierarchyName+objrealname^;
  4063. end;
  4064. result:=rttistring;
  4065. end;
  4066. function tabstractrecorddef.search_enumerator_get: tprocdef;
  4067. var
  4068. sym : tsym;
  4069. i : integer;
  4070. pd : tprocdef;
  4071. hashedid : THashedIDString;
  4072. begin
  4073. result:=nil;
  4074. hashedid.id:='GETENUMERATOR';
  4075. sym:=tsym(symtable.FindWithHash(hashedid));
  4076. if assigned(sym) and (sym.typ=procsym) then
  4077. begin
  4078. for i := 0 to Tprocsym(sym).ProcdefList.Count - 1 do
  4079. begin
  4080. pd := tprocdef(Tprocsym(sym).ProcdefList[i]);
  4081. if (pd.proctypeoption = potype_function) and
  4082. (is_class_or_interface_or_object(pd.returndef) or is_record(pd.returndef)) and
  4083. (pd.visibility >= vis_public) then
  4084. begin
  4085. result:=pd;
  4086. exit;
  4087. end;
  4088. end;
  4089. end;
  4090. end;
  4091. function tabstractrecorddef.search_enumerator_move: tprocdef;
  4092. var
  4093. sym : tsym;
  4094. i : integer;
  4095. pd : tprocdef;
  4096. hashedid : THashedIDString;
  4097. begin
  4098. result:=nil;
  4099. // first search for po_enumerator_movenext method modifier
  4100. // then search for public function MoveNext: Boolean
  4101. for i:=0 to symtable.SymList.Count-1 do
  4102. begin
  4103. sym:=TSym(symtable.SymList[i]);
  4104. if (sym.typ=procsym) then
  4105. begin
  4106. pd:=Tprocsym(sym).find_procdef_byoptions([po_enumerator_movenext]);
  4107. if assigned(pd) then
  4108. begin
  4109. result:=pd;
  4110. exit;
  4111. end;
  4112. end;
  4113. end;
  4114. hashedid.id:='MOVENEXT';
  4115. sym:=tsym(symtable.FindWithHash(hashedid));
  4116. if assigned(sym) and (sym.typ=procsym) then
  4117. begin
  4118. for i:=0 to Tprocsym(sym).ProcdefList.Count-1 do
  4119. begin
  4120. pd := tprocdef(Tprocsym(sym).ProcdefList[i]);
  4121. if (pd.proctypeoption = potype_function) and
  4122. is_boolean(pd.returndef) and
  4123. (pd.minparacount = 0) and
  4124. (pd.visibility >= vis_public) then
  4125. begin
  4126. result:=pd;
  4127. exit;
  4128. end;
  4129. end;
  4130. end;
  4131. end;
  4132. function tabstractrecorddef.search_enumerator_current: tsym;
  4133. var
  4134. sym: tsym;
  4135. i: integer;
  4136. hashedid : THashedIDString;
  4137. begin
  4138. result:=nil;
  4139. // first search for ppo_enumerator_current property modifier
  4140. // then search for public property Current
  4141. for i:=0 to symtable.SymList.Count-1 do
  4142. begin
  4143. sym:=TSym(symtable.SymList[i]);
  4144. if (sym.typ=propertysym) and (ppo_enumerator_current in tpropertysym(sym).propoptions) then
  4145. begin
  4146. result:=sym;
  4147. exit;
  4148. end;
  4149. end;
  4150. hashedid.id:='CURRENT';
  4151. sym:=tsym(symtable.FindWithHash(hashedid));
  4152. if assigned(sym) and (sym.typ=propertysym) and
  4153. (sym.visibility >= vis_public) and not tpropertysym(sym).propaccesslist[palt_read].empty then
  4154. begin
  4155. result:=sym;
  4156. exit;
  4157. end;
  4158. end;
  4159. function tabstractrecorddef.jvm_full_typename(with_package_name: boolean): string;
  4160. var
  4161. st: tsymtable;
  4162. enclosingdef: tdef;
  4163. begin
  4164. if typ=objectdef then
  4165. result:=tobjectdef(self).objextname^
  4166. else if assigned(typesym) then
  4167. result:=typesym.realname
  4168. { have to generate anonymous nested type in current unit/class/record }
  4169. else
  4170. internalerror(2011032601);
  4171. { in case of specializations, add some extras to prevent name conflicts
  4172. with nested classes }
  4173. if df_specialization in defoptions then
  4174. result:='$'+result+'$specialization$';
  4175. st:=owner;
  4176. while assigned(st) and
  4177. (st.symtabletype in [objectsymtable,recordsymtable,localsymtable]) do
  4178. begin
  4179. { nested classes are named as "OuterClass$InnerClass" }
  4180. enclosingdef:=tdef(st.defowner);
  4181. if enclosingdef.typ=procdef then
  4182. result:=result+tprocdef(enclosingdef).procsym.realname+'$$'+tostr(tprocdef(enclosingdef).procsym.symid)+'$'
  4183. else if enclosingdef.typ=objectdef then
  4184. result:=tobjectdef(enclosingdef).objextname^+'$'+result
  4185. else if assigned(enclosingdef.typesym) then
  4186. result:=enclosingdef.typesym.realname+'$'+result
  4187. else
  4188. internalerror(2011060305);
  4189. st:=enclosingdef.owner;
  4190. end;
  4191. if with_package_name and
  4192. assigned(import_lib) then
  4193. result:=import_lib^+'/'+result;
  4194. end;
  4195. function tabstractrecorddef.contains_float_field: boolean;
  4196. var
  4197. i : longint;
  4198. begin
  4199. result:=true;
  4200. for i:=0 to symtable.symlist.count-1 do
  4201. begin
  4202. if (tsym(symtable.symlist[i]).typ<>fieldvarsym) or
  4203. (sp_static in tsym(symtable.symlist[i]).symoptions) then
  4204. continue;
  4205. if assigned(tfieldvarsym(symtable.symlist[i]).vardef) then
  4206. begin
  4207. if tstoreddef(tfieldvarsym(symtable.symlist[i]).vardef).is_fpuregable then
  4208. exit;
  4209. { search recursively }
  4210. if (tstoreddef(tfieldvarsym(symtable.symlist[i]).vardef).typ=recorddef) and
  4211. (tabstractrecorddef(tfieldvarsym(symtable.symlist[i]).vardef).contains_float_field) then
  4212. exit;
  4213. end;
  4214. end;
  4215. result:=false;
  4216. end;
  4217. function tabstractrecorddef.contains_cross_aword_field: boolean;
  4218. var
  4219. i : longint;
  4220. foffset, fsize: aword;
  4221. begin
  4222. result:=true;
  4223. for i:=0 to symtable.symlist.count-1 do
  4224. begin
  4225. if (tsym(symtable.symlist[i]).typ<>fieldvarsym) or
  4226. (sp_static in tsym(symtable.symlist[i]).symoptions) then
  4227. continue;
  4228. if assigned(tfieldvarsym(symtable.symlist[i]).vardef) then
  4229. begin
  4230. if is_packed then
  4231. begin
  4232. foffset:=tfieldvarsym(symtable.symlist[i]).fieldoffset;
  4233. fsize:=tfieldvarsym(symtable.symlist[i]).vardef.packedbitsize;
  4234. end
  4235. else
  4236. begin
  4237. foffset:=tfieldvarsym(symtable.symlist[i]).fieldoffset*8;
  4238. fsize:=tfieldvarsym(symtable.symlist[i]).vardef.size*8;
  4239. end;
  4240. if (fsize>0) and ((foffset div (sizeof(aword)*8)) <> ((foffset+fsize-1) div (sizeof(aword)*8))) then
  4241. exit;
  4242. { search recursively }
  4243. if (tstoreddef(tfieldvarsym(symtable.symlist[i]).vardef).typ=recorddef) and
  4244. (tabstractrecorddef(tfieldvarsym(symtable.symlist[i]).vardef).contains_cross_aword_field) then
  4245. exit;
  4246. end;
  4247. end;
  4248. result:=false;
  4249. end;
  4250. {***************************************************************************
  4251. trecorddef
  4252. ***************************************************************************}
  4253. constructor trecorddef.create(const n:string; p:TSymtable);
  4254. begin
  4255. inherited create(n,recorddef,true);
  4256. symtable:=p;
  4257. { we can own the symtable only if nobody else owns a copy so far }
  4258. if symtable.refcount=1 then
  4259. symtable.defowner:=self;
  4260. isunion:=false;
  4261. cloneddefderef.reset;
  4262. end;
  4263. constructor trecorddef.create_global_internal(const n: string; packrecords, recordalignmin: shortint);
  4264. var
  4265. name : string;
  4266. pname : pshortstring;
  4267. oldsymtablestack: tsymtablestack;
  4268. where : tsymtable;
  4269. ts: ttypesym;
  4270. begin
  4271. { construct name }
  4272. if n<>'' then
  4273. pname:=@n
  4274. else
  4275. begin
  4276. init_defid;
  4277. name:='$InternalRec'+unique_id_str;
  4278. pname:=@name;
  4279. end;
  4280. oldsymtablestack:=symtablestack;
  4281. { do not simply push/pop current_module.localsymtable, because
  4282. that can have side-effects (e.g., it removes helpers) }
  4283. symtablestack:=nil;
  4284. symtable:=trecordsymtable.create(pname^,packrecords,recordalignmin);
  4285. symtable.defowner:=self;
  4286. isunion:=false;
  4287. inherited create(pname^,recorddef,true);
  4288. where:=current_module.localsymtable;
  4289. if not assigned(where) then
  4290. where:=current_module.globalsymtable;
  4291. where.insertdef(self);
  4292. { if we specified a name, then we'll probably want to look up the
  4293. type again by name too -> create typesym }
  4294. if n<>'' then
  4295. begin
  4296. ts:=ctypesym.create(n,self);
  4297. { avoid hints about unused types (these may only be used for
  4298. typed constant data) }
  4299. ts.increfcount;
  4300. where.insert(ts);
  4301. end;
  4302. symtablestack:=oldsymtablestack;
  4303. { don't create RTTI for internal types, these are not exported }
  4304. defstates:=defstates+[ds_rtti_table_written,ds_init_table_written];
  4305. include(defoptions,df_internal);
  4306. end;
  4307. function trecorddef.add_field_by_def(const optionalname: TIDString; def: tdef): tsym;
  4308. var
  4309. sym: tfieldvarsym;
  4310. name: TIDString;
  4311. pname: ^TIDString;
  4312. begin
  4313. if optionalname='' then
  4314. begin
  4315. name:='$f'+tostr(trecordsymtable(symtable).symlist.count);
  4316. pname:=@name
  4317. end
  4318. else
  4319. pname:=@optionalname;
  4320. sym:=cfieldvarsym.create(pname^,vs_value,def,[]);
  4321. symtable.insert(sym);
  4322. trecordsymtable(symtable).addfield(sym,vis_hidden);
  4323. result:=sym;
  4324. end;
  4325. procedure trecorddef.add_fields_from_deflist(fieldtypes: tfplist);
  4326. var
  4327. i: longint;
  4328. begin
  4329. for i:=0 to fieldtypes.count-1 do
  4330. add_field_by_def('',tdef(fieldtypes[i]));
  4331. end;
  4332. constructor trecorddef.ppuload(ppufile:tcompilerppufile);
  4333. procedure readvariantrecdesc(var variantrecdesc : pvariantrecdesc);
  4334. var
  4335. i,j : longint;
  4336. begin
  4337. if ppufile.getbyte=1 then
  4338. begin
  4339. new(variantrecdesc);
  4340. ppufile.getderef(variantrecdesc^.variantselectorderef);
  4341. SetLength(variantrecdesc^.branches,ppufile.getasizeint);
  4342. for i:=0 to high(variantrecdesc^.branches) do
  4343. begin
  4344. SetLength(variantrecdesc^.branches[i].values,ppufile.getasizeint);
  4345. for j:=0 to high(variantrecdesc^.branches[i].values) do
  4346. variantrecdesc^.branches[i].values[j]:=ppufile.getexprint;
  4347. readvariantrecdesc(variantrecdesc^.branches[i].nestedvariant);
  4348. end;
  4349. end
  4350. else
  4351. variantrecdesc:=nil;
  4352. end;
  4353. begin
  4354. inherited ppuload(recorddef,ppufile);
  4355. if df_copied_def in defoptions then
  4356. begin
  4357. ppufile.getderef(cloneddefderef);
  4358. ppuload_platform(ppufile);
  4359. end
  4360. else
  4361. begin
  4362. symtable:=trecordsymtable.create(objrealname^,0,0);
  4363. trecordsymtable(symtable).fieldalignment:=shortint(ppufile.getbyte);
  4364. trecordsymtable(symtable).recordalignment:=shortint(ppufile.getbyte);
  4365. trecordsymtable(symtable).padalignment:=shortint(ppufile.getbyte);
  4366. trecordsymtable(symtable).usefieldalignment:=shortint(ppufile.getbyte);
  4367. trecordsymtable(symtable).recordalignmin:=shortint(ppufile.getbyte);
  4368. trecordsymtable(symtable).datasize:=ppufile.getasizeint;
  4369. trecordsymtable(symtable).paddingsize:=ppufile.getword;
  4370. ppufile.getset(tppuset1(trecordsymtable(symtable).managementoperators));
  4371. { position of ppuload_platform call must correspond
  4372. to position of writeentry in ppuwrite method }
  4373. ppuload_platform(ppufile);
  4374. trecordsymtable(symtable).ppuload(ppufile);
  4375. { the variantrecdesc is needed only for iso-like new statements new(prec,1,2,3 ...);
  4376. but because iso mode supports no units, there is no need to store the variantrecdesc
  4377. in the ppu
  4378. }
  4379. // readvariantrecdesc(variantrecdesc);
  4380. { requires usefieldalignment to be set }
  4381. symtable.defowner:=self;
  4382. end;
  4383. isunion:=false;
  4384. end;
  4385. destructor trecorddef.destroy;
  4386. procedure free_variantrecdesc(var variantrecdesc : pvariantrecdesc);
  4387. var
  4388. i : longint;
  4389. begin
  4390. while assigned(variantrecdesc) do
  4391. begin
  4392. for i:=0 to high(variantrecdesc^.branches) do
  4393. begin
  4394. free_variantrecdesc(variantrecdesc^.branches[i].nestedvariant);
  4395. SetLength(variantrecdesc^.branches[i].values,0);
  4396. end;
  4397. SetLength(variantrecdesc^.branches,0);
  4398. dispose(variantrecdesc);
  4399. variantrecdesc:=nil;
  4400. end;
  4401. end;
  4402. begin
  4403. if assigned(variantrecdesc) then
  4404. free_variantrecdesc(variantrecdesc);
  4405. if assigned(symtable) then
  4406. begin
  4407. symtable.free;
  4408. symtable:=nil;
  4409. end;
  4410. inherited destroy;
  4411. end;
  4412. function trecorddef.getcopy : tstoreddef;
  4413. begin
  4414. result:=crecorddef.create(objrealname^,symtable.getcopy);
  4415. trecorddef(result).isunion:=isunion;
  4416. include(trecorddef(result).defoptions,df_copied_def);
  4417. if assigned(tcinitcode) then
  4418. trecorddef(result).tcinitcode:=tcinitcode.getcopy;
  4419. if assigned(import_lib) then
  4420. trecorddef(result).import_lib:=stringdup(import_lib^);
  4421. end;
  4422. function trecorddef.needs_inittable : boolean;
  4423. begin
  4424. { each record with managed field or with any management operator needs
  4425. init table }
  4426. needs_inittable:=(trecordsymtable(symtable).managementoperators<>[]) or
  4427. trecordsymtable(symtable).needs_init_final
  4428. end;
  4429. function trecorddef.needs_separate_initrtti : boolean;
  4430. begin
  4431. result:=true;
  4432. end;
  4433. function trecorddef.has_non_trivial_init_child(check_parent:boolean):boolean;
  4434. begin
  4435. result:=trecordsymtable(symtable).has_non_trivial_init;
  4436. end;
  4437. procedure trecorddef.buildderef;
  4438. begin
  4439. inherited buildderef;
  4440. if df_copied_def in defoptions then
  4441. cloneddefderef.build(symtable.defowner)
  4442. else
  4443. tstoredsymtable(symtable).buildderef;
  4444. end;
  4445. procedure trecorddef.deref;
  4446. begin
  4447. inherited deref;
  4448. { now dereference the definitions }
  4449. if df_copied_def in defoptions then
  4450. begin
  4451. cloneddef:=trecorddef(cloneddefderef.resolve);
  4452. symtable:=cloneddef.symtable.getcopy;
  4453. end
  4454. else
  4455. tstoredsymtable(symtable).deref(false);
  4456. { internal types, only load from the system unit }
  4457. if assigned(owner) and
  4458. assigned(owner.name) and
  4459. (owner.name^='SYSTEM') then
  4460. begin
  4461. { TGUID }
  4462. if not assigned(rec_tguid) and
  4463. (upper(typename)='TGUID') then
  4464. rec_tguid:=self
  4465. { JMP_BUF }
  4466. else if not assigned(rec_jmp_buf) and
  4467. (upper(typename)='JMP_BUF') then
  4468. rec_jmp_buf:=self
  4469. else if not assigned(rec_exceptaddr) and
  4470. (upper(typename)='TEXCEPTADDR') then
  4471. rec_exceptaddr:=self;
  4472. end;
  4473. end;
  4474. procedure trecorddef.ppuwrite(ppufile:tcompilerppufile);
  4475. procedure writevariantrecdesc(variantrecdesc : pvariantrecdesc);
  4476. var
  4477. i,j : longint;
  4478. begin
  4479. if assigned(variantrecdesc) then
  4480. begin
  4481. ppufile.putbyte(1);
  4482. ppufile.putderef(variantrecdesc^.variantselectorderef);
  4483. ppufile.putasizeint(length(variantrecdesc^.branches));
  4484. for i:=0 to high(variantrecdesc^.branches) do
  4485. begin
  4486. ppufile.putasizeint(length(variantrecdesc^.branches[i].values));
  4487. for j:=0 to high(variantrecdesc^.branches[i].values) do
  4488. ppufile.putexprint(variantrecdesc^.branches[i].values[j]);
  4489. writevariantrecdesc(variantrecdesc^.branches[i].nestedvariant);
  4490. end;
  4491. end
  4492. else
  4493. ppufile.putbyte(0);
  4494. end;
  4495. begin
  4496. inherited ppuwrite(ppufile);
  4497. if df_copied_def in defoptions then
  4498. ppufile.putderef(cloneddefderef)
  4499. else
  4500. begin
  4501. ppufile.putbyte(byte(trecordsymtable(symtable).fieldalignment));
  4502. ppufile.putbyte(byte(trecordsymtable(symtable).recordalignment));
  4503. ppufile.putbyte(byte(trecordsymtable(symtable).padalignment));
  4504. ppufile.putbyte(byte(trecordsymtable(symtable).usefieldalignment));
  4505. ppufile.putbyte(byte(trecordsymtable(symtable).recordalignmin));
  4506. ppufile.putasizeint(trecordsymtable(symtable).datasize);
  4507. ppufile.putword(trecordsymtable(symtable).paddingsize);
  4508. ppufile.putset(tppuset1(trecordsymtable(symtable).managementoperators));
  4509. { the variantrecdesc is needed only for iso-like new statements new(prec,1,2,3 ...);
  4510. but because iso mode supports no units, there is no need to store the variantrecdesc
  4511. in the ppu
  4512. }
  4513. // writevariantrecdesc(variantrecdesc);
  4514. end;
  4515. writeentry(ppufile,ibrecorddef);
  4516. if not(df_copied_def in defoptions) then
  4517. trecordsymtable(symtable).ppuwrite(ppufile);
  4518. end;
  4519. function trecorddef.size:asizeint;
  4520. begin
  4521. result:=trecordsymtable(symtable).datasize;
  4522. end;
  4523. function trecorddef.alignment:shortint;
  4524. begin
  4525. alignment:=trecordsymtable(symtable).recordalignment;
  4526. end;
  4527. function trecorddef.padalignment:shortint;
  4528. begin
  4529. padalignment := trecordsymtable(symtable).padalignment;
  4530. end;
  4531. function trecorddef.GetTypeName : string;
  4532. begin
  4533. GetTypeName:='<record type>'
  4534. end;
  4535. {***************************************************************************
  4536. TABSTRACTPROCDEF
  4537. ***************************************************************************}
  4538. constructor tabstractprocdef.create(dt:tdeftyp;level:byte;doregister:boolean);
  4539. begin
  4540. inherited create(dt,doregister);
  4541. parast:=tparasymtable.create(self,level);
  4542. paras:=nil;
  4543. minparacount:=0;
  4544. maxparacount:=0;
  4545. proctypeoption:=potype_none;
  4546. proccalloption:=pocall_none;
  4547. procoptions:=[];
  4548. returndef:=voidtype;
  4549. returndefderef.reset;
  4550. savesize:=sizeof(pint);
  4551. callerargareasize:=0;
  4552. calleeargareasize:=0;
  4553. has_paraloc_info:=callnoside;
  4554. funcretloc[callerside].init;
  4555. funcretloc[calleeside].init;
  4556. check_mark_as_nested;
  4557. end;
  4558. destructor tabstractprocdef.destroy;
  4559. begin
  4560. if assigned(paras) then
  4561. begin
  4562. {$ifdef MEMDEBUG}
  4563. memprocpara.start;
  4564. {$endif MEMDEBUG}
  4565. paras.free;
  4566. paras:=nil;
  4567. {$ifdef MEMDEBUG}
  4568. memprocpara.stop;
  4569. {$endif MEMDEBUG}
  4570. end;
  4571. if assigned(parast) then
  4572. begin
  4573. {$ifdef MEMDEBUG}
  4574. memprocparast.start;
  4575. {$endif MEMDEBUG}
  4576. parast.free;
  4577. parast:=nil;
  4578. {$ifdef MEMDEBUG}
  4579. memprocparast.stop;
  4580. {$endif MEMDEBUG}
  4581. end;
  4582. funcretloc[callerside].done;
  4583. funcretloc[calleeside].done;
  4584. inherited destroy;
  4585. end;
  4586. procedure tabstractprocdef.count_para(p:TObject;arg:pointer);
  4587. begin
  4588. if (tsym(p).typ<>paravarsym) then
  4589. exit;
  4590. inc(plongint(arg)^);
  4591. if not(vo_is_hidden_para in tparavarsym(p).varoptions) then
  4592. begin
  4593. if not assigned(tparavarsym(p).defaultconstsym) then
  4594. inc(minparacount);
  4595. inc(maxparacount);
  4596. end;
  4597. end;
  4598. procedure tabstractprocdef.insert_para(p:TObject;arg:pointer);
  4599. begin
  4600. if (tsym(p).typ<>paravarsym) then
  4601. exit;
  4602. paras.add(p);
  4603. end;
  4604. procedure tabstractprocdef.calcparas;
  4605. var
  4606. paracount : longint;
  4607. begin
  4608. { This can already be assigned when
  4609. we need to reresolve this unit (PFV) }
  4610. if assigned(paras) then
  4611. paras.free;
  4612. paras:=tparalist.create(false);
  4613. paracount:=0;
  4614. minparacount:=0;
  4615. maxparacount:=0;
  4616. parast.SymList.ForEachCall(@count_para,@paracount);
  4617. paras.capacity:=paracount;
  4618. { Insert parameters in table }
  4619. parast.SymList.ForEachCall(@insert_para,nil);
  4620. { Order parameters }
  4621. paras.sortparas;
  4622. end;
  4623. function tabstractprocdef.mangledprocparanames(oldlen : longint) : string;
  4624. var
  4625. crc : dword;
  4626. hp : TParavarsym;
  4627. hs : TSymStr;
  4628. newlen,
  4629. i : integer;
  4630. begin
  4631. result:='';
  4632. hp:=nil;
  4633. { add parameter types }
  4634. for i:=0 to paras.count-1 do
  4635. begin
  4636. hp:=tparavarsym(paras[i]);
  4637. if not(vo_is_hidden_para in hp.varoptions) then
  4638. result:=result+'$'+hp.vardef.mangledparaname;
  4639. end;
  4640. { add resultdef, add $$ as separator to make it unique from a
  4641. parameter separator }
  4642. if not is_void(returndef) then
  4643. result:=result+'$$'+returndef.mangledparaname;
  4644. newlen:=length(result)+oldlen;
  4645. { Replace with CRC if the parameter line is very long }
  4646. if (newlen-oldlen>12) and
  4647. ((newlen>100) or (newlen-oldlen>64)) then
  4648. begin
  4649. crc:=0;
  4650. for i:=0 to paras.count-1 do
  4651. begin
  4652. hp:=tparavarsym(paras[i]);
  4653. if not(vo_is_hidden_para in hp.varoptions) then
  4654. begin
  4655. hs:=hp.vardef.mangledparaname;
  4656. crc:=UpdateCrc32(crc,hs[1],length(hs));
  4657. end;
  4658. end;
  4659. if not is_void(returndef) then
  4660. begin
  4661. { add a little prefix so that x(integer; integer) is different from x(integer):integer }
  4662. hs:='$$'+returndef.mangledparaname;
  4663. crc:=UpdateCrc32(crc,hs[1],length(hs));
  4664. end;
  4665. result:='$crc'+hexstr(crc,8);
  4666. end;
  4667. end;
  4668. procedure tabstractprocdef.buildderef;
  4669. begin
  4670. { released procdef? }
  4671. if not assigned(parast) then
  4672. exit;
  4673. inherited buildderef;
  4674. returndefderef.build(returndef);
  4675. if po_explicitparaloc in procoptions then
  4676. funcretloc[callerside].buildderef;
  4677. { parast }
  4678. tparasymtable(parast).buildderef;
  4679. end;
  4680. procedure tabstractprocdef.deref;
  4681. begin
  4682. inherited deref;
  4683. returndef:=tdef(returndefderef.resolve);
  4684. if po_explicitparaloc in procoptions then
  4685. begin
  4686. funcretloc[callerside].deref;
  4687. has_paraloc_info:=callerside;
  4688. end
  4689. else
  4690. begin
  4691. { deref is called after loading from a ppu, but also after another
  4692. unit has been reloaded/recompiled and all references must be
  4693. re-resolved. Since the funcretloc contains a reference to a tdef,
  4694. reset it so that we won't try to access the stale def }
  4695. funcretloc[callerside].init;
  4696. has_paraloc_info:=callnoside;
  4697. end;
  4698. { parast }
  4699. tparasymtable(parast).deref(false);
  4700. { recalculated parameters }
  4701. calcparas;
  4702. end;
  4703. constructor tabstractprocdef.ppuload(dt:tdeftyp;ppufile:tcompilerppufile);
  4704. begin
  4705. inherited ppuload(dt,ppufile);
  4706. parast:=nil;
  4707. Paras:=nil;
  4708. minparacount:=0;
  4709. maxparacount:=0;
  4710. ppufile.getderef(returndefderef);
  4711. proctypeoption:=tproctypeoption(ppufile.getbyte);
  4712. proccalloption:=tproccalloption(ppufile.getbyte);
  4713. ppufile.getset(tppuset8(procoptions));
  4714. funcretloc[callerside].init;
  4715. if po_explicitparaloc in procoptions then
  4716. funcretloc[callerside].ppuload(ppufile);
  4717. savesize:=sizeof(pint);
  4718. if (po_explicitparaloc in procoptions) then
  4719. has_paraloc_info:=callerside;
  4720. end;
  4721. procedure tabstractprocdef.ppuwrite(ppufile:tcompilerppufile);
  4722. var
  4723. oldintfcrc : boolean;
  4724. begin
  4725. { released procdef? }
  4726. if not assigned(parast) then
  4727. exit;
  4728. inherited ppuwrite(ppufile);
  4729. ppufile.putderef(returndefderef);
  4730. oldintfcrc:=ppufile.do_interface_crc;
  4731. ppufile.do_interface_crc:=false;
  4732. ppufile.putbyte(ord(proctypeoption));
  4733. ppufile.putbyte(ord(proccalloption));
  4734. ppufile.putset(tppuset8(procoptions));
  4735. ppufile.do_interface_crc:=oldintfcrc;
  4736. if (po_explicitparaloc in procoptions) then
  4737. funcretloc[callerside].ppuwrite(ppufile);
  4738. end;
  4739. function tabstractprocdef.typename_paras(pno: tprocnameoptions) : ansistring;
  4740. var
  4741. hs,s : ansistring;
  4742. hp : TParavarsym;
  4743. hpc : tconstsym;
  4744. first : boolean;
  4745. i,j : integer;
  4746. begin
  4747. s:='';
  4748. first:=true;
  4749. for i:=0 to paras.count-1 do
  4750. begin
  4751. hp:=tparavarsym(paras[i]);
  4752. if not(vo_is_hidden_para in hp.varoptions) or
  4753. (pno_showhidden in pno) then
  4754. begin
  4755. if first then
  4756. begin
  4757. s:=s+'(';
  4758. first:=false;
  4759. end
  4760. else
  4761. s:=s+';';
  4762. if vo_is_hidden_para in hp.varoptions then
  4763. s:=s+'<';
  4764. case hp.varspez of
  4765. vs_var :
  4766. s:=s+'var ';
  4767. vs_const :
  4768. s:=s+'const ';
  4769. vs_out :
  4770. s:=s+'out ';
  4771. vs_constref :
  4772. s:=s+'constref ';
  4773. else
  4774. ;
  4775. end;
  4776. if (pno_paranames in pno) then
  4777. s:=s+hp.realname+':';
  4778. if hp.univpara then
  4779. s:=s+'univ ';
  4780. if assigned(hp.vardef.typesym) then
  4781. begin
  4782. hs:=hp.vardef.typesym.realname;
  4783. if hs[1]<>'$' then
  4784. s:=s+hp.vardef.OwnerHierarchyName+hs
  4785. else
  4786. s:=s+hp.vardef.GetTypeName;
  4787. end
  4788. else
  4789. s:=s+hp.vardef.GetTypeName;
  4790. { default value }
  4791. if assigned(hp.defaultconstsym) then
  4792. begin
  4793. hpc:=tconstsym(hp.defaultconstsym);
  4794. hs:='';
  4795. case hpc.consttyp of
  4796. constwstring:
  4797. begin
  4798. if pcompilerwidestring(hpc.value.valueptr)^.len>0 then
  4799. begin
  4800. setlength(hs,pcompilerwidestring(hpc.value.valueptr)^.len);
  4801. for j:=0 to pcompilerwidestring(hpc.value.valueptr)^.len-1 do
  4802. begin
  4803. if (ord(pcompilerwidestring(hpc.value.valueptr)^.data[j])<127) and
  4804. not(byte(pcompilerwidestring(hpc.value.valueptr)^.data[j]) in [0,10,13]) then
  4805. hs[j+1]:=char(pcompilerwidestring(hpc.value.valueptr)^.data[j])
  4806. else
  4807. hs[j+1]:='.';
  4808. end;
  4809. end;
  4810. end;
  4811. conststring,
  4812. constresourcestring :
  4813. begin
  4814. if hpc.value.len>0 then
  4815. begin
  4816. setLength(hs,hpc.value.len);
  4817. { don't write past the end of hs if the constant
  4818. is > 255 chars }
  4819. move(hpc.value.valueptr^,hs[1],length(hs));
  4820. { make sure that constant strings with newline chars
  4821. don't create a linebreak in the assembler code,
  4822. since comments are line-based. Also remove nulls
  4823. because the comments are written as a pchar. }
  4824. ReplaceCase(hs,#0,'.');
  4825. ReplaceCase(hs,#10,'.');
  4826. ReplaceCase(hs,#13,'.');
  4827. end;
  4828. end;
  4829. constreal :
  4830. str(pbestreal(hpc.value.valueptr)^,hs);
  4831. constpointer :
  4832. hs:=tostr(hpc.value.valueordptr);
  4833. constord :
  4834. begin
  4835. if is_boolean(hpc.constdef) then
  4836. begin
  4837. if hpc.value.valueord<>0 then
  4838. hs:='TRUE'
  4839. else
  4840. hs:='FALSE';
  4841. end
  4842. else
  4843. hs:=tostr(hpc.value.valueord);
  4844. end;
  4845. constnil :
  4846. hs:='nil';
  4847. constset :
  4848. hs:='<set>';
  4849. constguid:
  4850. hs:=guid2string(pguid(hpc.value.valueptr)^);
  4851. constnone:
  4852. internalerror(2019050704);
  4853. end;
  4854. if hs<>'' then
  4855. s:=s+'=`'+hs+'`';
  4856. end;
  4857. if vo_is_hidden_para in hp.varoptions then
  4858. s:=s+'>';
  4859. end;
  4860. end;
  4861. if not first then
  4862. s:=s+')';
  4863. if (po_varargs in procoptions) then
  4864. s:=s+';VarArgs';
  4865. typename_paras:=s;
  4866. end;
  4867. function tabstractprocdef.is_methodpointer:boolean;
  4868. begin
  4869. result:=false;
  4870. end;
  4871. function tabstractprocdef.is_addressonly:boolean;
  4872. begin
  4873. result:=true;
  4874. end;
  4875. function tabstractprocdef.no_self_node: boolean;
  4876. begin
  4877. Result:=([po_staticmethod,po_classmethod]<=procoptions)or
  4878. (proctypeoption in [potype_class_constructor,potype_class_destructor,potype_operator]);
  4879. end;
  4880. function tabstractprocdef.getcopyas(newtyp:tdeftyp;copytyp:tproccopytyp; const paraprefix: string): tstoreddef;
  4881. var
  4882. j, nestinglevel: longint;
  4883. pvs, npvs: tparavarsym;
  4884. begin
  4885. nestinglevel:=parast.symtablelevel;
  4886. if newtyp=procdef then
  4887. begin
  4888. if (copytyp<>pc_bareproc) then
  4889. result:=cprocdef.create(nestinglevel,true)
  4890. else
  4891. result:=cprocdef.create(normal_function_level,true);
  4892. tprocdef(result).visibility:=vis_public;
  4893. end
  4894. else
  4895. begin
  4896. result:=cprocvardef.create(nestinglevel);
  4897. end;
  4898. tabstractprocdef(result).returndef:=returndef;
  4899. tabstractprocdef(result).returndefderef:=returndefderef;
  4900. pvs:=nil;
  4901. npvs:=nil;
  4902. for j:=0 to parast.symlist.count-1 do
  4903. begin
  4904. case tsym(parast.symlist[j]).typ of
  4905. paravarsym:
  4906. begin
  4907. pvs:=tparavarsym(parast.symlist[j]);
  4908. { in case of bare proc, don't copy self, vmt or framepointer
  4909. parameters }
  4910. if (copytyp in [pc_bareproc,pc_normal_no_hidden]) and
  4911. (([vo_is_self,vo_is_vmt,vo_is_parentfp,vo_is_result,vo_is_funcret]*pvs.varoptions)<>[]) then
  4912. continue;
  4913. if paraprefix='' then
  4914. npvs:=cparavarsym.create(pvs.realname,pvs.paranr,pvs.varspez,
  4915. pvs.vardef,pvs.varoptions)
  4916. else if not(vo_is_high_para in pvs.varoptions) then
  4917. npvs:=cparavarsym.create(paraprefix+pvs.realname,pvs.paranr,pvs.varspez,
  4918. pvs.vardef,pvs.varoptions)
  4919. else
  4920. npvs:=cparavarsym.create('$high'+paraprefix+copy(pvs.name,5,length(pvs.name)),pvs.paranr,pvs.varspez,
  4921. pvs.vardef,pvs.varoptions);
  4922. npvs.defaultconstsym:=pvs.defaultconstsym;
  4923. tabstractprocdef(result).parast.insert(npvs);
  4924. end;
  4925. constsym:
  4926. begin
  4927. // ignore, reuse original constym. Should also be duplicated
  4928. // be safe though
  4929. end;
  4930. symconst.typesym:
  4931. begin
  4932. // reuse original, part of generic declaration
  4933. end
  4934. else
  4935. internalerror(201160604);
  4936. end;
  4937. end;
  4938. tabstractprocdef(result).savesize:=savesize;
  4939. if (typ<>procvardef) and
  4940. (newtyp=procvardef) then
  4941. begin
  4942. { procvars can't be (class)constructures/destructors etc }
  4943. if proctypeoption=potype_constructor then
  4944. begin
  4945. tabstractprocdef(result).returndef:=tdef(owner.defowner);
  4946. if not(is_implicit_pointer_object_type(returndef) or
  4947. (returndef.typ<>objectdef)) then
  4948. tabstractprocdef(result).returndef:=cpointerdef.getreusable(tabstractprocdef(result).returndef);
  4949. tabstractprocdef(result).proctypeoption:=potype_function;
  4950. end
  4951. else if is_void(returndef) then
  4952. tabstractprocdef(result).proctypeoption:=potype_procedure
  4953. else
  4954. tabstractprocdef(result).proctypeoption:=potype_function;
  4955. end
  4956. else
  4957. tabstractprocdef(result).proctypeoption:=proctypeoption;
  4958. tabstractprocdef(result).proccalloption:=proccalloption;
  4959. tabstractprocdef(result).procoptions:=procoptions;
  4960. if (copytyp=pc_bareproc) then
  4961. tabstractprocdef(result).procoptions:=tabstractprocdef(result).procoptions*[po_explicitparaloc,po_hascallingconvention,po_varargs,po_iocheck,po_has_importname,po_has_importdll];
  4962. if newtyp=procvardef then
  4963. tabstractprocdef(result).procoptions:=tabstractprocdef(result).procoptions-[po_has_importname,po_has_importdll];
  4964. if copytyp=pc_address_only then
  4965. include(tabstractprocdef(result).procoptions,po_addressonly);
  4966. tabstractprocdef(result).callerargareasize:=callerargareasize;
  4967. tabstractprocdef(result).calleeargareasize:=calleeargareasize;
  4968. tabstractprocdef(result).maxparacount:=maxparacount;
  4969. tabstractprocdef(result).minparacount:=minparacount;
  4970. if po_explicitparaloc in procoptions then
  4971. tabstractprocdef(result).funcretloc[callerside]:=funcretloc[callerside].getcopy;
  4972. { recalculate parameter info }
  4973. tabstractprocdef(result).has_paraloc_info:=callnoside;
  4974. {$ifdef m68k}
  4975. tabstractprocdef(result).exp_funcretloc:=exp_funcretloc;
  4976. {$endif}
  4977. if (typ=procdef) and
  4978. (newtyp=procvardef) and
  4979. (owner.symtabletype=ObjectSymtable) then
  4980. include(tprocvardef(result).procoptions,po_methodpointer);
  4981. end;
  4982. function tabstractprocdef.compatible_with_pointerdef_size(ptr: tpointerdef): boolean;
  4983. begin
  4984. result:=is_addressonly;
  4985. end;
  4986. procedure tabstractprocdef.check_mark_as_nested;
  4987. begin
  4988. { nested procvars require that nested functions use the Delphi-style
  4989. nested procedure calling convention }
  4990. if (parast.symtablelevel>normal_function_level) and
  4991. (m_nested_procvars in current_settings.modeswitches) then
  4992. include(procoptions,po_delphi_nested_cc);
  4993. end;
  4994. procedure tabstractprocdef.init_paraloc_info(side: tcallercallee);
  4995. begin
  4996. if (side in [callerside,callbothsides]) and
  4997. not(has_paraloc_info in [callerside,callbothsides]) then
  4998. begin
  4999. if not is_c_variadic(self) then
  5000. callerargareasize:=paramanager.create_paraloc_info(self,callerside)
  5001. else
  5002. callerargareasize:=paramanager.create_varargs_paraloc_info(self,callerside,nil);
  5003. if has_paraloc_info in [calleeside,callbothsides] then
  5004. has_paraloc_info:=callbothsides
  5005. else
  5006. has_paraloc_info:=callerside;
  5007. end;
  5008. if (side in [calleeside,callbothsides]) and
  5009. not(has_paraloc_info in [calleeside,callbothsides]) then
  5010. begin
  5011. if not is_c_variadic(self) then
  5012. calleeargareasize:=paramanager.create_paraloc_info(self,calleeside)
  5013. else
  5014. callerargareasize:=paramanager.create_varargs_paraloc_info(self,calleeside,nil);
  5015. if has_paraloc_info in [callerside,callbothsides] then
  5016. has_paraloc_info:=callbothsides
  5017. else
  5018. has_paraloc_info:=calleeside;
  5019. end;
  5020. end;
  5021. procedure tabstractprocdef.done_paraloc_info(side: tcallercallee);
  5022. var
  5023. i: longint;
  5024. begin
  5025. if (side in [callerside,callbothsides]) and
  5026. (has_paraloc_info in [callerside,callbothsides]) then
  5027. begin
  5028. funcretloc[callerside].done;
  5029. for i:=0 to paras.count-1 do
  5030. tparavarsym(paras[i]).paraloc[callerside].done;
  5031. if has_paraloc_info=callerside then
  5032. has_paraloc_info:=callnoside
  5033. else
  5034. has_paraloc_info:=calleeside;
  5035. end;
  5036. if (side in [calleeside,callbothsides]) and
  5037. (has_paraloc_info in [calleeside,callbothsides]) then
  5038. begin
  5039. funcretloc[calleeside].done;
  5040. for i:=0 to paras.count-1 do
  5041. tparavarsym(paras[i]).paraloc[calleeside].done;
  5042. if has_paraloc_info=calleeside then
  5043. has_paraloc_info:=callnoside
  5044. else
  5045. has_paraloc_info:=callerside;
  5046. end;
  5047. end;
  5048. function tabstractprocdef.stack_tainting_parameter(side: tcallercallee): boolean;
  5049. var
  5050. p: tparavarsym;
  5051. ploc: PCGParalocation;
  5052. i: longint;
  5053. begin
  5054. result:=false;
  5055. init_paraloc_info(side);
  5056. for i:=0 to parast.SymList.Count-1 do
  5057. if tsym(parast.SymList[i]).typ=paravarsym then
  5058. begin
  5059. p:=tparavarsym(parast.SymList[i]);
  5060. { check if no parameter is located on the stack }
  5061. if (is_open_array(p.vardef) or
  5062. is_array_of_const(p.vardef)) and (p.varspez=vs_value) then
  5063. begin
  5064. result:=true;
  5065. exit;
  5066. end;
  5067. ploc:=p.paraloc[side].location;
  5068. while assigned(ploc) do
  5069. begin
  5070. if (ploc^.loc=LOC_REFERENCE) then
  5071. begin
  5072. result:=true;
  5073. exit
  5074. end;
  5075. ploc:=ploc^.next;
  5076. end;
  5077. end;
  5078. end;
  5079. function tabstractprocdef.is_pushleftright: boolean;
  5080. begin
  5081. result:=false;
  5082. end;
  5083. function tabstractprocdef.address_type: tdef;
  5084. begin
  5085. result:=voidcodepointertype;
  5086. end;
  5087. function tabstractprocdef.ofs_address_type:tdef;
  5088. begin
  5089. result:=address_type;
  5090. end;
  5091. procedure tabstractprocdef.declared_far;
  5092. begin
  5093. Message1(parser_w_proc_directive_ignored,'FAR');
  5094. end;
  5095. procedure tabstractprocdef.declared_near;
  5096. begin
  5097. Message1(parser_w_proc_directive_ignored,'NEAR');
  5098. end;
  5099. function tabstractprocdef.generate_safecall_wrapper: boolean;
  5100. begin
  5101. {$ifdef SUPPORT_SAFECALL}
  5102. result:=
  5103. (proccalloption=pocall_safecall) and
  5104. not(po_assembler in procoptions) and
  5105. (tf_safecall_exceptions in target_info.flags);
  5106. {$else SUPPORT_SAFECALL}
  5107. result:=false;
  5108. {$endif}
  5109. end;
  5110. {***************************************************************************
  5111. TPROCDEF
  5112. ***************************************************************************}
  5113. function tprocdef.store_localst: boolean;
  5114. begin
  5115. result:=has_inlininginfo or (df_generic in defoptions);
  5116. end;
  5117. function tprocdef.GetResultName: PShortString;
  5118. begin
  5119. if not assigned(implprocdefinfo) then
  5120. internalerror(2014010301);
  5121. result:=implprocdefinfo^.resultname;
  5122. end;
  5123. procedure tprocdef.SetResultName(AValue: PShortString);
  5124. begin
  5125. if not assigned(implprocdefinfo) then
  5126. internalerror(2014010302);
  5127. implprocdefinfo^.resultname:=AValue;
  5128. end;
  5129. function tprocdef.GetParentFPInitBlock: tnode;
  5130. begin
  5131. if not assigned(implprocdefinfo) then
  5132. internalerror(2014010303);
  5133. result:=implprocdefinfo^.parentfpinitblock;
  5134. end;
  5135. function tprocdef.GetParentFPStruct: tsym;
  5136. begin
  5137. if not assigned(implprocdefinfo) then
  5138. internalerror(2014010304);
  5139. result:=implprocdefinfo^.parentfpstruct;
  5140. end;
  5141. function tprocdef.GetParentFPStructPtrType: tdef;
  5142. begin
  5143. if not assigned(implprocdefinfo) then
  5144. internalerror(2014010305);
  5145. result:=implprocdefinfo^.parentfpstructptrtype;
  5146. end;
  5147. procedure tprocdef.SetParentFPInitBlock(AValue: tnode);
  5148. begin
  5149. if not assigned(implprocdefinfo) then
  5150. internalerror(2014010306);
  5151. implprocdefinfo^.parentfpinitblock:=AValue;
  5152. end;
  5153. function tprocdef.Getprocendtai: tai;
  5154. begin
  5155. if not assigned(implprocdefinfo) then
  5156. internalerror(2014010307);
  5157. result:=implprocdefinfo^.procendtai;
  5158. end;
  5159. function tprocdef.Getprocstarttai: tai;
  5160. begin
  5161. if not assigned(implprocdefinfo) then
  5162. internalerror(2014010308);
  5163. result:=implprocdefinfo^.procstarttai;
  5164. end;
  5165. procedure tprocdef.Setprocendtai(AValue: tai);
  5166. begin
  5167. if not assigned(implprocdefinfo) then
  5168. internalerror(2014010309);
  5169. implprocdefinfo^.procendtai:=AValue;
  5170. end;
  5171. function tprocdef.Getskpara: pointer;
  5172. begin
  5173. if not assigned(implprocdefinfo) then
  5174. internalerror(2014010310);
  5175. result:=implprocdefinfo^.skpara;
  5176. end;
  5177. procedure tprocdef.Setskpara(AValue: pointer);
  5178. begin
  5179. if not assigned(implprocdefinfo) then
  5180. internalerror(2014010311);
  5181. implprocdefinfo^.skpara:=AValue;
  5182. end;
  5183. function tprocdef.Getpersonality: tprocdef;
  5184. begin
  5185. if not assigned(implprocdefinfo) then
  5186. internalerror(2016121701);
  5187. result:=implprocdefinfo^.personality;
  5188. end;
  5189. procedure tprocdef.Setpersonality(AValue: tprocdef);
  5190. begin
  5191. if not assigned(implprocdefinfo) then
  5192. internalerror(2016121702);
  5193. implprocdefinfo^.personality:=AValue;
  5194. end;
  5195. function tprocdef.Getforwarddef: boolean;
  5196. begin
  5197. if not assigned(implprocdefinfo) then
  5198. internalerror(2014010312);
  5199. result:=implprocdefinfo^.forwarddef;
  5200. end;
  5201. function tprocdef.Gethasforward: boolean;
  5202. begin
  5203. if not assigned(implprocdefinfo) then
  5204. internalerror(2014010313);
  5205. result:=implprocdefinfo^.hasforward;
  5206. end;
  5207. function tprocdef.Getinterfacedef: boolean;
  5208. begin
  5209. if not assigned(implprocdefinfo) then
  5210. internalerror(2014010314);
  5211. result:=implprocdefinfo^.interfacedef;
  5212. end;
  5213. procedure tprocdef.Setforwarddef(AValue: boolean);
  5214. begin
  5215. if not assigned(implprocdefinfo) then
  5216. internalerror(2014010315);
  5217. implprocdefinfo^.forwarddef:=AValue;
  5218. end;
  5219. procedure tprocdef.Sethasforward(AValue: boolean);
  5220. begin
  5221. if not assigned(implprocdefinfo) then
  5222. internalerror(2014010316);
  5223. implprocdefinfo^.hasforward:=AValue;
  5224. end;
  5225. function tprocdef.GetIsEmpty: boolean;
  5226. begin
  5227. result:=pio_empty in implprocoptions;
  5228. end;
  5229. procedure tprocdef.SetIsEmpty(AValue: boolean);
  5230. begin
  5231. if AValue then
  5232. include(implprocoptions,pio_empty)
  5233. else
  5234. include(implprocoptions,pio_empty);
  5235. end;
  5236. function tprocdef.GetHasInliningInfo: boolean;
  5237. begin
  5238. result:=pio_has_inlininginfo in implprocoptions;
  5239. end;
  5240. procedure tprocdef.SetHasInliningInfo(AValue: boolean);
  5241. begin
  5242. if AValue then
  5243. include(implprocoptions,pio_has_inlininginfo)
  5244. else
  5245. exclude(implprocoptions,pio_has_inlininginfo);
  5246. end;
  5247. procedure tprocdef.Setinterfacedef(AValue: boolean);
  5248. begin
  5249. if not assigned(implprocdefinfo) then
  5250. internalerror(2014010317);
  5251. implprocdefinfo^.interfacedef:=AValue;
  5252. end;
  5253. procedure tprocdef.Setprocstarttai(AValue: tai);
  5254. begin
  5255. if not assigned(implprocdefinfo) then
  5256. internalerror(2014010318);
  5257. implprocdefinfo^.procstarttai:=AValue;
  5258. end;
  5259. procedure tprocdef.SetParentFPStruct(AValue: tsym);
  5260. begin
  5261. if not assigned(implprocdefinfo) then
  5262. internalerror(2014010319);
  5263. implprocdefinfo^.parentfpstruct:=AValue;
  5264. end;
  5265. procedure tprocdef.SetParentFPStructPtrType(AValue: tdef);
  5266. begin
  5267. if not assigned(implprocdefinfo) then
  5268. internalerror(2014010320);
  5269. implprocdefinfo^.parentfpstructptrtype:=AValue;
  5270. end;
  5271. constructor tprocdef.create(level:byte;doregister:boolean);
  5272. begin
  5273. inherited create(procdef,level,doregister);
  5274. implprocdefinfo:=allocmem(sizeof(implprocdefinfo^));
  5275. localst:=tlocalsymtable.create(self,parast.symtablelevel);
  5276. {$ifdef symansistr}
  5277. _mangledname:='';
  5278. {$else symansistr}
  5279. _mangledname:=nil;
  5280. {$endif symansistr}
  5281. fileinfo:=current_filepos;
  5282. extnumber:=$ffff;
  5283. aliasnames:=TCmdStrList.create;
  5284. funcretsym:=nil;
  5285. funcretsymderef.reset;
  5286. procsymderef.reset;
  5287. forwarddef:=true;
  5288. interfacedef:=false;
  5289. hasforward:=false;
  5290. struct := nil;
  5291. structderef.reset;
  5292. import_dll:=nil;
  5293. import_name:=nil;
  5294. import_nr:=0;
  5295. inlininginfo:=nil;
  5296. deprecatedmsg:=nil;
  5297. if cs_opt_fastmath in current_settings.optimizerswitches then
  5298. include(implprocoptions, pio_fastmath);
  5299. end;
  5300. constructor tprocdef.ppuload(ppufile:tcompilerppufile);
  5301. var
  5302. i,aliasnamescount,sizeleft : longint;
  5303. level : byte;
  5304. buf : array[0..255] of byte;
  5305. begin
  5306. inherited ppuload(procdef,ppufile);
  5307. {$ifdef symansistr}
  5308. if po_has_mangledname in procoptions then
  5309. _mangledname:=ppufile.getansistring
  5310. else
  5311. _mangledname:='';
  5312. {$else symansistr}
  5313. if po_has_mangledname in procoptions then
  5314. _mangledname:=ppufile.getpshortstring
  5315. else
  5316. _mangledname:=nil;
  5317. {$endif symansistr}
  5318. extnumber:=ppufile.getword;
  5319. level:=ppufile.getbyte;
  5320. ppufile.getderef(structderef);
  5321. ppufile.getderef(procsymderef);
  5322. ppufile.getposinfo(fileinfo);
  5323. visibility:=tvisibility(ppufile.getbyte);
  5324. ppufile.getset(tppuset2(symoptions));
  5325. if sp_has_deprecated_msg in symoptions then
  5326. deprecatedmsg:=ppufile.getpshortstring
  5327. else
  5328. deprecatedmsg:=nil;
  5329. { import stuff }
  5330. if po_has_importdll in procoptions then
  5331. import_dll:=ppufile.getpshortstring
  5332. else
  5333. import_dll:=nil;
  5334. if po_has_importname in procoptions then
  5335. import_name:=ppufile.getpshortstring
  5336. else
  5337. import_name:=nil;
  5338. import_nr:=ppufile.getword;
  5339. if (po_msgint in procoptions) then
  5340. messageinf.i:=ppufile.getlongint;
  5341. if (po_msgstr in procoptions) then
  5342. messageinf.str:=ppufile.getpshortstring;
  5343. if (po_dispid in procoptions) then
  5344. dispid:=ppufile.getlongint;
  5345. { inline stuff }
  5346. ppufile.getset(tppuset1(implprocoptions));
  5347. if has_inlininginfo then
  5348. begin
  5349. ppufile.getderef(funcretsymderef);
  5350. new(inlininginfo);
  5351. ppufile.getset(tppuset4(inlininginfo^.flags));
  5352. end
  5353. else
  5354. begin
  5355. inlininginfo:=nil;
  5356. funcretsym:=nil;
  5357. end;
  5358. aliasnames:=TCmdStrList.create;
  5359. { count alias names }
  5360. aliasnamescount:=ppufile.getbyte;
  5361. for i:=1 to aliasnamescount do
  5362. aliasnames.insert(ppufile.getstring);
  5363. { load the token stream containing the declaration }
  5364. sizeleft:=ppufile.getlongint;
  5365. if sizeleft>0 then
  5366. begin
  5367. init_genericdecl;
  5368. while sizeleft>0 do
  5369. begin
  5370. if sizeleft>sizeof(buf) then
  5371. i:=sizeof(buf)
  5372. else
  5373. i:=sizeleft;
  5374. ppufile.getdata(buf,i);
  5375. genericdecltokenbuf.write(buf,i);
  5376. dec(sizeleft,i);
  5377. end;
  5378. end;
  5379. ppuload_platform(ppufile);
  5380. { load para symtable }
  5381. parast:=tparasymtable.create(self,level);
  5382. tparasymtable(parast).ppuload(ppufile);
  5383. { load local symtable }
  5384. if store_localst then
  5385. begin
  5386. localst:=tlocalsymtable.create(self,level);
  5387. tlocalsymtable(localst).ppuload(ppufile);
  5388. end
  5389. else
  5390. localst:=nil;
  5391. { inline stuff }
  5392. if has_inlininginfo then
  5393. inlininginfo^.code:=ppuloadnodetree(ppufile);
  5394. { default values for no persistent data }
  5395. if (cs_link_deffile in current_settings.globalswitches) and
  5396. (tf_need_export in target_info.flags) and
  5397. (po_exports in procoptions) then
  5398. deffile.AddExport(mangledname);
  5399. { Disable po_has_inlining until the derefimpl is done }
  5400. has_inlininginfo:=false;
  5401. end;
  5402. destructor tprocdef.destroy;
  5403. begin
  5404. aliasnames.free;
  5405. aliasnames:=nil;
  5406. if assigned(localst) and
  5407. (localst.symtabletype<>staticsymtable) then
  5408. begin
  5409. {$ifdef MEMDEBUG}
  5410. memproclocalst.start;
  5411. {$endif MEMDEBUG}
  5412. localst.free;
  5413. localst:=nil;
  5414. {$ifdef MEMDEBUG}
  5415. memproclocalst.start;
  5416. {$endif MEMDEBUG}
  5417. end;
  5418. if assigned(inlininginfo) then
  5419. begin
  5420. {$ifdef MEMDEBUG}
  5421. memprocnodetree.start;
  5422. {$endif MEMDEBUG}
  5423. tnode(inlininginfo^.code).free;
  5424. {$ifdef MEMDEBUG}
  5425. memprocnodetree.start;
  5426. {$endif MEMDEBUG}
  5427. dispose(inlininginfo);
  5428. inlininginfo:=nil;
  5429. end;
  5430. freeimplprocdefinfo;
  5431. genericdecltokenbuf.free;
  5432. genericdecltokenbuf:=nil;
  5433. stringdispose(import_dll);
  5434. stringdispose(import_name);
  5435. stringdispose(deprecatedmsg);
  5436. if (po_msgstr in procoptions) then
  5437. stringdispose(messageinf.str);
  5438. {$ifndef symansistr}
  5439. if assigned(_mangledname) then
  5440. begin
  5441. {$ifdef MEMDEBUG}
  5442. memmanglednames.start;
  5443. {$endif MEMDEBUG}
  5444. stringdispose(_mangledname);
  5445. {$ifdef MEMDEBUG}
  5446. memmanglednames.stop;
  5447. {$endif MEMDEBUG}
  5448. end;
  5449. {$endif symansistr}
  5450. inherited destroy;
  5451. end;
  5452. procedure tprocdef.freeimplprocdefinfo;
  5453. begin
  5454. if assigned(implprocdefinfo) then
  5455. begin
  5456. stringdispose(implprocdefinfo^.resultname);
  5457. freemem(implprocdefinfo);
  5458. implprocdefinfo:=nil;
  5459. end;
  5460. end;
  5461. procedure tprocdef.ppuwrite(ppufile:tcompilerppufile);
  5462. var
  5463. oldintfcrc : boolean;
  5464. aliasnamescount,i,sizeleft : longint;
  5465. item : TCmdStrListItem;
  5466. buf : array[0..255] of byte;
  5467. begin
  5468. { released procdef? }
  5469. if not assigned(parast) then
  5470. exit;
  5471. inherited ppuwrite(ppufile);
  5472. {$ifdef symansistr}
  5473. if po_has_mangledname in procoptions then
  5474. ppufile.putansistring(_mangledname);
  5475. {$else symansistr}
  5476. if po_has_mangledname in procoptions then
  5477. ppufile.putstring(_mangledname^);
  5478. {$endif symansistr}
  5479. ppufile.putword(extnumber);
  5480. ppufile.putbyte(parast.symtablelevel);
  5481. ppufile.putderef(structderef);
  5482. ppufile.putderef(procsymderef);
  5483. ppufile.putposinfo(fileinfo);
  5484. ppufile.putbyte(byte(visibility));
  5485. ppufile.putset(tppuset2(symoptions));
  5486. if sp_has_deprecated_msg in symoptions then
  5487. ppufile.putstring(deprecatedmsg^);
  5488. { import }
  5489. if po_has_importdll in procoptions then
  5490. ppufile.putstring(import_dll^);
  5491. if po_has_importname in procoptions then
  5492. ppufile.putstring(import_name^);
  5493. ppufile.putword(import_nr);
  5494. if (po_msgint in procoptions) then
  5495. ppufile.putlongint(messageinf.i);
  5496. if (po_msgstr in procoptions) then
  5497. ppufile.putstring(messageinf.str^);
  5498. if (po_dispid in procoptions) then
  5499. ppufile.putlongint(dispid);
  5500. { inline stuff }
  5501. oldintfcrc:=ppufile.do_crc;
  5502. ppufile.do_crc:=false;
  5503. ppufile.putset(tppuset1(implprocoptions));
  5504. if has_inlininginfo then
  5505. begin
  5506. ppufile.putderef(funcretsymderef);
  5507. ppufile.putset(tppuset4(inlininginfo^.flags));
  5508. end;
  5509. { count alias names }
  5510. aliasnamescount:=0;
  5511. item:=TCmdStrListItem(aliasnames.first);
  5512. while assigned(item) do
  5513. begin
  5514. inc(aliasnamescount);
  5515. item:=TCmdStrListItem(item.next);
  5516. end;
  5517. if aliasnamescount>255 then
  5518. internalerror(200711021);
  5519. ppufile.putbyte(aliasnamescount);
  5520. item:=TCmdStrListItem(aliasnames.first);
  5521. while assigned(item) do
  5522. begin
  5523. ppufile.putstring(item.str);
  5524. item:=TCmdStrListItem(item.next);
  5525. end;
  5526. ppufile.do_crc:=oldintfcrc;
  5527. { generic tokens for the declaration }
  5528. if assigned(genericdecltokenbuf) and (genericdecltokenbuf.size>0) then
  5529. begin
  5530. sizeleft:=genericdecltokenbuf.size;
  5531. genericdecltokenbuf.seek(0);
  5532. ppufile.putlongint(sizeleft);
  5533. while sizeleft>0 do
  5534. begin
  5535. if sizeleft>sizeof(buf) then
  5536. i:=sizeof(buf)
  5537. else
  5538. i:=sizeleft;
  5539. genericdecltokenbuf.read(buf,i);
  5540. ppufile.putdata(buf,i);
  5541. dec(sizeleft,i);
  5542. end;
  5543. end
  5544. else
  5545. ppufile.putlongint(0);
  5546. { write this entry }
  5547. writeentry(ppufile,ibprocdef);
  5548. { Save the para symtable, this is taken from the interface }
  5549. tparasymtable(parast).ppuwrite(ppufile);
  5550. { save localsymtable for inline procedures or when local
  5551. browser info is requested, this has no influence on the crc }
  5552. if store_localst and not ppufile.crc_only then
  5553. begin
  5554. oldintfcrc:=ppufile.do_crc;
  5555. ppufile.do_crc:=false;
  5556. tlocalsymtable(localst).ppuwrite(ppufile);
  5557. ppufile.do_crc:=oldintfcrc;
  5558. end;
  5559. { node tree for inlining }
  5560. oldintfcrc:=ppufile.do_crc;
  5561. ppufile.do_crc:=false;
  5562. if has_inlininginfo then
  5563. ppuwritenodetree(ppufile,inlininginfo^.code);
  5564. ppufile.do_crc:=oldintfcrc;
  5565. end;
  5566. function tprocdef.fullprocname(showhidden:boolean):string;
  5567. var
  5568. pno: tprocnameoptions;
  5569. begin
  5570. pno:=[];
  5571. if showhidden then
  5572. include(pno,pno_showhidden);
  5573. result:=customprocname(pno);
  5574. end;
  5575. function tprocdef.customprocname(pno: tprocnameoptions):ansistring;
  5576. var
  5577. s, rn : ansistring;
  5578. t : ttoken;
  5579. syssym : tsyssym;
  5580. begin
  5581. {$ifdef EXTDEBUG}
  5582. include(pno,pno_showhidden);
  5583. {$endif EXTDEBUG}
  5584. s:='';
  5585. if proctypeoption=potype_operator then
  5586. begin
  5587. for t:=NOTOKEN to last_overloaded do
  5588. if procsym.realname='$'+overloaded_names[t] then
  5589. begin
  5590. s:='operator ';
  5591. if (pno_ownername in pno) and
  5592. assigned(struct) then
  5593. s:=s+struct.RttiName+'.';
  5594. s:=s+arraytokeninfo[t].str;
  5595. if not (pno_noparams in pno) then
  5596. s:=s+typename_paras(pno);
  5597. break;
  5598. end;
  5599. end
  5600. else
  5601. begin
  5602. if (po_classmethod in procoptions) and
  5603. not(pno_noclassmarker in pno) then
  5604. s:='class ';
  5605. case proctypeoption of
  5606. potype_constructor,
  5607. potype_class_constructor:
  5608. s:=s+'constructor ';
  5609. potype_class_destructor,
  5610. potype_destructor:
  5611. s:=s+'destructor ';
  5612. else
  5613. if (pno_proctypeoption in pno) then
  5614. begin
  5615. if assigned(returndef) and
  5616. not(is_void(returndef)) then
  5617. s:=s+'function '
  5618. else
  5619. s:=s+'procedure ';
  5620. end;
  5621. end;
  5622. if (pno_ownername in pno) and
  5623. (owner.symtabletype in [recordsymtable,objectsymtable]) then
  5624. s:=s+tabstractrecorddef(owner.defowner).RttiName+'.';
  5625. if (po_compilerproc in procoptions) and (extnumber<>$ffff) then
  5626. begin
  5627. syssym:=tsyssym.find_by_number(extnumber);
  5628. if not assigned(syssym) then
  5629. internalerror(2016060305);
  5630. rn:=syssym.realname;
  5631. end
  5632. else
  5633. rn:=procsym.realname;
  5634. if (pno_noleadingdollar in pno) and
  5635. (rn[1]='$') then
  5636. delete(rn,1,1);
  5637. s:=s+rn;
  5638. if not (pno_noparams in pno) then
  5639. s:=s+typename_paras(pno);
  5640. end;
  5641. if not(proctypeoption in [potype_constructor,potype_destructor,
  5642. potype_class_constructor,potype_class_destructor]) and
  5643. assigned(returndef) and
  5644. not(is_void(returndef)) then
  5645. s:=s+':'+returndef.GetTypeName;
  5646. if assigned(owner) and (owner.symtabletype=localsymtable) then
  5647. s:=s+' is nested'
  5648. else if po_is_block in procoptions then
  5649. s:=s+' is block';
  5650. s:=s+';';
  5651. if po_far in procoptions then
  5652. s:=s+' far;';
  5653. { forced calling convention? }
  5654. if (po_hascallingconvention in procoptions) then
  5655. s:=s+' '+ProcCallOptionStr[proccalloption]+';';
  5656. if (po_staticmethod in procoptions) and
  5657. not (proctypeoption in [potype_class_constructor,potype_class_destructor]) then
  5658. s:=s+' Static;';
  5659. if pno_mangledname in pno then
  5660. s:=s+' -- mangled name: '+mangledname;
  5661. customprocname:=s;
  5662. end;
  5663. function tprocdef.is_methodpointer:boolean;
  5664. begin
  5665. { don't check assigned(_class), that's also the case for nested
  5666. procedures inside methods }
  5667. result:=(owner.symtabletype=ObjectSymtable)and not no_self_node;
  5668. end;
  5669. function tprocdef.is_addressonly:boolean;
  5670. begin
  5671. result:=assigned(owner) and
  5672. not is_methodpointer and
  5673. (not(m_nested_procvars in current_settings.modeswitches) or
  5674. not is_nested_pd(self));
  5675. end;
  5676. procedure tprocdef.make_external;
  5677. begin
  5678. include(procoptions,po_external);
  5679. forwarddef:=false;
  5680. end;
  5681. procedure tprocdef.init_genericdecl;
  5682. begin
  5683. if assigned(genericdecltokenbuf) then
  5684. internalerror(2015061901);
  5685. genericdecltokenbuf:=tdynamicarray.create(256);
  5686. end;
  5687. function tprocdef.get_funcretsym_info(out ressym: tsym; out resdef: tdef): boolean;
  5688. begin
  5689. result:=false;
  5690. if proctypeoption=potype_constructor then
  5691. begin
  5692. result:=true;
  5693. ressym:=tsym(parast.Find('self'));
  5694. resdef:=tabstractnormalvarsym(ressym).vardef;
  5695. { and TP-style constructors return a pointer to self }
  5696. if is_object(resdef) then
  5697. resdef:=cpointerdef.getreusable(resdef);
  5698. end
  5699. else if (proccalloption=pocall_safecall) and
  5700. (tf_safecall_exceptions in target_info.flags) then
  5701. begin
  5702. result:=true;
  5703. ressym:=tsym(localst.Find('safecallresult'));
  5704. resdef:=tabstractnormalvarsym(ressym).vardef;
  5705. end
  5706. else if not is_void(returndef) then
  5707. begin
  5708. result:=true;
  5709. ressym:=funcretsym;
  5710. resdef:=tabstractnormalvarsym(ressym).vardef;
  5711. end;
  5712. end;
  5713. function tprocdef.get_safecall_funcretsym_info(out ressym: tsym; out resdef: tdef): boolean;
  5714. begin
  5715. result:=false;
  5716. if (proctypeoption<>potype_constructor) and
  5717. (proccalloption=pocall_safecall) and
  5718. (tf_safecall_exceptions in target_info.flags) then
  5719. begin
  5720. result:=true;
  5721. ressym:=tsym(localst.Find('safecallresult'));
  5722. resdef:=tabstractnormalvarsym(ressym).vardef;
  5723. end
  5724. end;
  5725. function tprocdef.has_alias_name(const s: TSymStr): boolean;
  5726. var
  5727. item : TCmdStrListItem;
  5728. begin
  5729. result:=true;
  5730. if mangledname=s then
  5731. exit;
  5732. item:=TCmdStrListItem(aliasnames.first);
  5733. while assigned(item) do
  5734. begin
  5735. if item.str=s then
  5736. exit;
  5737. item:=TCmdStrListItem(item.next);
  5738. end;
  5739. result:=false;
  5740. end;
  5741. function tprocdef.GetSymtable(t:tGetSymtable):TSymtable;
  5742. begin
  5743. case t of
  5744. gs_local :
  5745. GetSymtable:=localst;
  5746. gs_para :
  5747. GetSymtable:=parast;
  5748. else
  5749. GetSymtable:=nil;
  5750. end;
  5751. end;
  5752. function tprocdef.getcopyas(newtyp: tdeftyp; copytyp: tproccopytyp; const paraprefix: string): tstoreddef;
  5753. var
  5754. j : longint;
  5755. begin
  5756. result:=inherited;
  5757. if newtyp=procvardef then
  5758. begin
  5759. { create new paralist }
  5760. tprocvardef(result).calcparas;
  5761. exit;
  5762. end;
  5763. { don't copy mangled name, can be different }
  5764. tprocdef(result).messageinf:=messageinf;
  5765. tprocdef(result).dispid:=dispid;
  5766. if po_msgstr in procoptions then
  5767. tprocdef(result).messageinf.str:=stringdup(messageinf.str^);
  5768. tprocdef(result).symoptions:=symoptions;
  5769. if assigned(deprecatedmsg) then
  5770. tprocdef(result).deprecatedmsg:=stringdup(deprecatedmsg^);
  5771. { will have to be associated with appropriate procsym }
  5772. tprocdef(result).procsym:=nil;
  5773. { don't create aliases for bare copies, nor copy the funcretsym as
  5774. the function result parameter will be inserted again if necessary
  5775. (e.g. if the calling convention is changed) }
  5776. if not(copytyp in [pc_bareproc,pc_normal_no_hidden]) then
  5777. begin
  5778. tprocdef(result).aliasnames.concatListcopy(aliasnames);
  5779. if assigned(funcretsym) then
  5780. begin
  5781. if funcretsym.owner=parast then
  5782. begin
  5783. j:=parast.symlist.indexof(funcretsym);
  5784. if j<0 then
  5785. internalerror(2011040606);
  5786. tprocdef(result).funcretsym:=tsym(tprocdef(result).parast.symlist[j]);
  5787. end
  5788. else if funcretsym.owner=localst then
  5789. begin
  5790. { nothing to do, will be inserted for the new procdef while
  5791. parsing its body (by pdecsub.insert_funcret_local) }
  5792. end
  5793. else
  5794. internalerror(2011040605);
  5795. end;
  5796. end;
  5797. { will have to be associated with a new struct }
  5798. tprocdef(result).struct:=nil;
  5799. if assigned(implprocdefinfo) then
  5800. begin
  5801. if assigned(resultname) then
  5802. tprocdef(result).resultname:=stringdup(resultname^);
  5803. tprocdef(result).synthetickind:=synthetickind;
  5804. end;
  5805. if assigned(import_dll) then
  5806. tprocdef(result).import_dll:=stringdup(import_dll^);
  5807. if assigned(import_name) then
  5808. tprocdef(result).import_name:=stringdup(import_name^);
  5809. tprocdef(result).import_nr:=import_nr;
  5810. tprocdef(result).extnumber:=$ffff;
  5811. tprocdef(result).visibility:=visibility;
  5812. { we need a separate implementation for the copied def }
  5813. tprocdef(result).forwarddef:=true;
  5814. tprocdef(result).interfacedef:=true;
  5815. { create new paralist }
  5816. tprocdef(result).calcparas;
  5817. end;
  5818. function tprocdef.getcopy: tstoreddef;
  5819. begin
  5820. result:=getcopyas(procdef,pc_normal,'');
  5821. end;
  5822. procedure tprocdef.buildderef;
  5823. begin
  5824. inherited buildderef;
  5825. structderef.build(struct);
  5826. { procsym that originaly defined this definition, should be in the
  5827. same symtable }
  5828. procsymderef.build(procsym);
  5829. end;
  5830. procedure tprocdef.buildderefimpl;
  5831. begin
  5832. inherited buildderefimpl;
  5833. { Localst is not available for main/unit init }
  5834. if store_localst and assigned(localst) then
  5835. begin
  5836. tlocalsymtable(localst).buildderef;
  5837. tlocalsymtable(localst).buildderefimpl;
  5838. end;
  5839. { inline tree }
  5840. if has_inlininginfo then
  5841. begin
  5842. funcretsymderef.build(funcretsym);
  5843. inlininginfo^.code.buildderefimpl;
  5844. end;
  5845. end;
  5846. procedure tprocdef.deref;
  5847. begin
  5848. inherited deref;
  5849. struct:=tabstractrecorddef(structderef.resolve);
  5850. { procsym that originaly defined this definition, should be in the
  5851. same symtable }
  5852. procsym:=tprocsym(procsymderef.resolve);
  5853. end;
  5854. procedure tprocdef.derefimpl;
  5855. begin
  5856. { Enable has_inlininginfo when the inlininginfo
  5857. structure is available. The has_inlininginfo was disabled
  5858. after the load, since the data was invalid }
  5859. if assigned(inlininginfo) then
  5860. has_inlininginfo:=true;
  5861. { Locals }
  5862. if store_localst and assigned(localst) then
  5863. begin
  5864. tlocalsymtable(localst).deref(false);
  5865. tlocalsymtable(localst).derefimpl(false);
  5866. end;
  5867. { Inline }
  5868. if has_inlininginfo then
  5869. begin
  5870. inlininginfo^.code.derefimpl;
  5871. { funcretsym, this is always located in the localst }
  5872. funcretsym:=tsym(funcretsymderef.resolve);
  5873. end
  5874. else
  5875. begin
  5876. { safety }
  5877. { Not safe! A unit may be reresolved after its interface has been
  5878. parsed but before its implementation has been parsed, and in that
  5879. case the funcretsym is still required!
  5880. funcretsym:=nil; }
  5881. end;
  5882. end;
  5883. function tprocdef.GetTypeName : string;
  5884. begin
  5885. GetTypeName := FullProcName(false);
  5886. end;
  5887. function tprocdef.mangledname : TSymStr;
  5888. begin
  5889. {$ifdef symansistr}
  5890. if _mangledname='' then
  5891. begin
  5892. result:=defaultmangledname;
  5893. _mangledname:=result;
  5894. end
  5895. else
  5896. result:=_mangledname;
  5897. {$else symansistr}
  5898. if not assigned(_mangledname) then
  5899. begin
  5900. result:=defaultmangledname;
  5901. _mangledname:=stringdup(mangledname);
  5902. end
  5903. else
  5904. result:=_mangledname^;
  5905. {$endif symansistr}
  5906. end;
  5907. function tprocdef.defaultmangledname: TSymStr;
  5908. begin
  5909. { we need to use the symtable where the procsym is inserted,
  5910. because that is visible to the world }
  5911. defaultmangledname:=make_mangledname('',procsym.owner,procsym.name);
  5912. defaultmangledname:=defaultmangledname+mangledprocparanames(Length(defaultmangledname))
  5913. end;
  5914. function tprocdef.cplusplusmangledname : TSymStr;
  5915. function getcppparaname(p : tdef) : TSymStr;
  5916. const
  5917. {$ifdef NAMEMANGLING_GCC2}
  5918. ordtype2str : array[tordtype] of string[2] = (
  5919. '',
  5920. 'Uc','Us','Ui','Us','',
  5921. 'Sc','s','i','x','',
  5922. 'b','b','b','b','b','b',
  5923. 'c','w','x');
  5924. {$else NAMEMANGLING_GCC2}
  5925. ordtype2str : array[tordtype] of string[1] = (
  5926. 'v',
  5927. 'h','t','j','y','',
  5928. 'a','s','i','x','',
  5929. 'b','b','b','b','b',
  5930. 'b','b','b','b',
  5931. 'c','w','x','C');
  5932. floattype2str : array[tfloattype] of string[1] = (
  5933. 'f','d','e','e',
  5934. 'd','d','g');
  5935. {$endif NAMEMANGLING_GCC2}
  5936. var
  5937. s : TSymStr;
  5938. begin
  5939. case p.typ of
  5940. orddef:
  5941. begin
  5942. s:=ordtype2str[torddef(p).ordtype];
  5943. if s='C' then
  5944. s:=ordtype2str[range_to_basetype(torddef(p).low,torddef(p).high)];
  5945. end;
  5946. pointerdef:
  5947. s:='P'+getcppparaname(tpointerdef(p).pointeddef);
  5948. {$ifndef NAMEMANGLING_GCC2}
  5949. floatdef:
  5950. s:=floattype2str[tfloatdef(p).floattype];
  5951. {$endif NAMEMANGLING_GCC2}
  5952. else
  5953. internalerror(2103001);
  5954. end;
  5955. getcppparaname:=s;
  5956. end;
  5957. var
  5958. s,s2 : TSymStr;
  5959. hp : TParavarsym;
  5960. i : integer;
  5961. begin
  5962. {$ifdef NAMEMANGLING_GCC2}
  5963. { outdated gcc 2.x name mangling scheme }
  5964. s := procsym.realname;
  5965. if procsym.owner.symtabletype=ObjectSymtable then
  5966. begin
  5967. s2:=upper(tobjectdef(procsym.owner.defowner).objrealname^);
  5968. case proctypeoption of
  5969. potype_destructor:
  5970. s:='_$_'+tostr(length(s2))+s2;
  5971. potype_constructor:
  5972. s:='___'+tostr(length(s2))+s2;
  5973. else
  5974. s:='_'+s+'__'+tostr(length(s2))+s2;
  5975. end;
  5976. end
  5977. else s:=s+'__';
  5978. s:=s+'F';
  5979. { concat modifiers }
  5980. { !!!!! }
  5981. { now we handle the parameters }
  5982. if maxparacount>0 then
  5983. begin
  5984. for i:=0 to paras.count-1 do
  5985. begin
  5986. hp:=tparavarsym(paras[i]);
  5987. { no hidden parameters form part of a C++ mangled name:
  5988. a) self is not included
  5989. b) there are no "high" or other hidden parameters
  5990. }
  5991. if vo_is_hidden_para in hp.varoptions then
  5992. continue;
  5993. s2:=getcppparaname(hp.vardef);
  5994. if hp.varspez in [vs_var,vs_out] then
  5995. s2:='R'+s2;
  5996. s:=s+s2;
  5997. end;
  5998. end
  5999. else
  6000. s:=s+'v';
  6001. cplusplusmangledname:=s;
  6002. {$else NAMEMANGLING_GCC2}
  6003. { gcc 3.x and 4.x name mangling scheme }
  6004. { see http://www.codesourcery.com/public/cxx-abi/abi.html#mangling }
  6005. if procsym.owner.symtabletype=ObjectSymtable then
  6006. begin
  6007. s:='_ZN';
  6008. s2:=tobjectdef(procsym.owner.defowner).objextname^;
  6009. s:=s+tostr(length(s2))+s2;
  6010. case proctypeoption of
  6011. potype_constructor:
  6012. s:=s+'C1';
  6013. potype_destructor:
  6014. s:=s+'D1';
  6015. else
  6016. s:=s+tostr(length(procsym.realname))+procsym.realname;
  6017. end;
  6018. s:=s+'E';
  6019. end
  6020. else
  6021. s:=procsym.realname;
  6022. { now we handle the parameters }
  6023. if maxparacount>0 then
  6024. begin
  6025. for i:=0 to paras.count-1 do
  6026. begin
  6027. hp:=tparavarsym(paras[i]);
  6028. { no hidden parameters form part of a C++ mangled name:
  6029. a) self is not included
  6030. b) there are no "high" or other hidden parameters
  6031. }
  6032. if vo_is_hidden_para in hp.varoptions then
  6033. continue;
  6034. s2:=getcppparaname(hp.vardef);
  6035. if hp.varspez in [vs_var,vs_out] then
  6036. s2:='R'+s2;
  6037. s:=s+s2;
  6038. end;
  6039. end
  6040. else
  6041. s:=s+'v';
  6042. cplusplusmangledname:=s;
  6043. {$endif NAMEMANGLING_GCC2}
  6044. end;
  6045. function tprocdef.objcmangledname : TSymStr;
  6046. var
  6047. manglednamelen: longint;
  6048. iscatmethod : boolean;
  6049. begin
  6050. if not (po_msgstr in procoptions) then
  6051. internalerror(2009030901);
  6052. { we may very well need longer strings to handle these... }
  6053. manglednamelen:=length(tobjectdef(procsym.owner.defowner).objextname^)+
  6054. length('+"[ ]"')+length(messageinf.str^);
  6055. iscatmethod:=oo_is_classhelper in tobjectdef(procsym.owner.defowner).objectoptions;
  6056. if (iscatmethod) then
  6057. inc(manglednamelen,length(tobjectdef(procsym.owner.defowner).childof.objextname^)+length('()'));
  6058. if manglednamelen>255 then
  6059. Message1(parser_e_objc_message_name_too_long,messageinf.str^);
  6060. if not(po_classmethod in procoptions) then
  6061. result:='"-['
  6062. else
  6063. result:='"+[';
  6064. { quotes are necessary because the +/- otherwise confuse the assembler
  6065. into expecting a number
  6066. }
  6067. if iscatmethod then
  6068. result:=result+tobjectdef(procsym.owner.defowner).childof.objextname^+'(';
  6069. result:=result+tobjectdef(procsym.owner.defowner).objextname^;
  6070. if iscatmethod then
  6071. result:=result+')';
  6072. result:=result+' '+messageinf.str^+']"';
  6073. end;
  6074. procedure tprocdef.setmangledname(const s : TSymStr);
  6075. begin
  6076. { This is not allowed anymore, the forward declaration
  6077. already needs to create the correct mangledname, no changes
  6078. afterwards are allowed (PFV) }
  6079. { Exception: interface definitions in mode macpas, since in that }
  6080. { case no reference to the old name can exist yet (JM) }
  6081. {$ifdef symansistr}
  6082. if _mangledname<>'' then
  6083. if ((m_mac in current_settings.modeswitches) and
  6084. (interfacedef)) then
  6085. _mangledname:=''
  6086. else
  6087. internalerror(200411171);
  6088. {$else symansistr}
  6089. if assigned(_mangledname) then
  6090. if ((m_mac in current_settings.modeswitches) and
  6091. (interfacedef)) then
  6092. stringdispose(_mangledname)
  6093. else
  6094. internalerror(200411171);
  6095. {$endif symansistr}
  6096. {$ifdef jvm}
  6097. { this routine can be called for compilerproces. can't set mangled
  6098. name since it must be calculated, but it uses import_name when set
  6099. -> set that one }
  6100. import_name:=stringdup(s);
  6101. include(procoptions,po_has_importname);
  6102. include(procoptions,po_has_mangledname);
  6103. {$else}
  6104. {$ifdef symansistr}
  6105. _mangledname:=s;
  6106. {$else symansistr}
  6107. _mangledname:=stringdup(s);
  6108. {$endif symansistr}
  6109. {$endif jvm}
  6110. include(procoptions,po_has_mangledname);
  6111. end;
  6112. function tprocdef.needsglobalasmsym: boolean;
  6113. begin
  6114. result:=
  6115. (cs_profile in current_settings.moduleswitches) or
  6116. { smart linking using a library requires to promote
  6117. all non-nested procedures to AB_GLOBAL
  6118. otherwise you get undefined symbol error at linking
  6119. for msdos target with -CX option for instance }
  6120. (create_smartlink_library and not is_nested_pd(self)) or
  6121. (po_global in procoptions);
  6122. end;
  6123. procedure tprocdef.setcompilerprocname;
  6124. begin
  6125. procsym.realname:='$'+lower(procsym.name);
  6126. end;
  6127. {***************************************************************************
  6128. TPROCVARDEF
  6129. ***************************************************************************}
  6130. constructor tprocvardef.create(level:byte);
  6131. begin
  6132. inherited create(procvardef,level,true);
  6133. end;
  6134. class function tprocvardef.getreusableprocaddr(def: tabstractprocdef): tprocvardef;
  6135. var
  6136. res: PHashSetItem;
  6137. oldsymtablestack: tsymtablestack;
  6138. begin
  6139. if not assigned(current_module) then
  6140. internalerror(2011081301);
  6141. res:=current_module.procaddrdefs.FindOrAdd(@def,sizeof(def));
  6142. if not assigned(res^.Data) then
  6143. begin
  6144. { since these pointerdefs can be reused anywhere in the current
  6145. unit, add them to the global/staticsymtable (or local symtable
  6146. if they're a local def, because otherwise they'll be saved
  6147. to the ppu referencing a local symtable entry that doesn't
  6148. exist in the ppu) }
  6149. oldsymtablestack:=symtablestack;
  6150. { do not simply push/pop current_module.localsymtable, because
  6151. that can have side-effects (e.g., it removes helpers) }
  6152. symtablestack:=nil;
  6153. result:=tprocvardef(def.getcopyas(procvardef,pc_address_only,''));
  6154. setup_reusable_def(def,result,res,oldsymtablestack);
  6155. { res^.Data may still be nil -> don't overwrite result }
  6156. exit;
  6157. end;
  6158. result:=tprocvardef(res^.Data);
  6159. end;
  6160. class function tprocvardef.getreusableprocaddr_no_free(def: tabstractprocdef): tprocvardef;
  6161. begin
  6162. result:=getreusableprocaddr(def);
  6163. if not result.is_registered then
  6164. include(result.defoptions,df_not_registered_no_free);
  6165. end;
  6166. constructor tprocvardef.ppuload(ppufile:tcompilerppufile);
  6167. begin
  6168. inherited ppuload(procvardef,ppufile);
  6169. { load para symtable }
  6170. parast:=tparasymtable.create(self,ppufile.getbyte);
  6171. ppuload_platform(ppufile);
  6172. tparasymtable(parast).ppuload(ppufile);
  6173. end;
  6174. function tprocvardef.getcopy : tstoreddef;
  6175. var
  6176. i : tcallercallee;
  6177. j : longint;
  6178. begin
  6179. result:=cprocvardef.create(parast.symtablelevel);
  6180. tprocvardef(result).returndef:=returndef;
  6181. tprocvardef(result).returndefderef:=returndefderef;
  6182. tprocvardef(result).parast:=parast.getcopy;
  6183. tprocvardef(result).savesize:=savesize;
  6184. { create paralist copy }
  6185. calcparas;
  6186. tprocvardef(result).paras:=tparalist.create(false);
  6187. tprocvardef(result).paras.count:=paras.count;
  6188. for j:=0 to paras.count-1 do
  6189. tprocvardef(result).paras[j]:=paras[j];
  6190. tprocvardef(result).proctypeoption:=proctypeoption;
  6191. tprocvardef(result).proccalloption:=proccalloption;
  6192. tprocvardef(result).procoptions:=procoptions;
  6193. tprocvardef(result).callerargareasize:=callerargareasize;
  6194. tprocvardef(result).calleeargareasize:=calleeargareasize;
  6195. tprocvardef(result).maxparacount:=maxparacount;
  6196. tprocvardef(result).minparacount:=minparacount;
  6197. for i:=low(funcretloc) to high(funcretloc) do
  6198. tprocvardef(result).funcretloc[i]:=funcretloc[i].getcopy;
  6199. tprocvardef(result).has_paraloc_info:=has_paraloc_info;
  6200. {$ifdef m68k}
  6201. tprocvardef(result).exp_funcretloc:=exp_funcretloc;
  6202. {$endif}
  6203. end;
  6204. procedure tprocvardef.ppuwrite(ppufile:tcompilerppufile);
  6205. begin
  6206. inherited ppuwrite(ppufile);
  6207. { Save the para symtable level (necessary to distinguish nested
  6208. procvars) }
  6209. ppufile.putbyte(parast.symtablelevel);
  6210. { Write this entry }
  6211. writeentry(ppufile,ibprocvardef);
  6212. { Save the para symtable, this is taken from the interface }
  6213. tparasymtable(parast).ppuwrite(ppufile);
  6214. end;
  6215. function tprocvardef.GetSymtable(t:tGetSymtable):TSymtable;
  6216. begin
  6217. case t of
  6218. gs_para :
  6219. GetSymtable:=parast;
  6220. else
  6221. GetSymtable:=nil;
  6222. end;
  6223. end;
  6224. function tprocvardef.size : asizeint;
  6225. begin
  6226. { we return false for is_addressonly for a block (because it's not a
  6227. simple pointer to a function), but they are handled as implicit
  6228. pointers to a datastructure that contains everything ->
  6229. voidpointertype.size instead of voidcodepointertype.size }
  6230. if po_is_block in procoptions then
  6231. size:=voidpointertype.size
  6232. else if not is_addressonly then
  6233. begin
  6234. if is_nested_pd(self) then
  6235. size:=voidcodepointertype.size+parentfpvoidpointertype.size
  6236. else
  6237. size:=voidcodepointertype.size+voidpointertype.size;
  6238. end
  6239. else
  6240. size:=voidcodepointertype.size;
  6241. end;
  6242. function tprocvardef.is_methodpointer:boolean;
  6243. begin
  6244. result:=(po_methodpointer in procoptions);
  6245. end;
  6246. function tprocvardef.is_addressonly:boolean;
  6247. begin
  6248. result:=((not(po_methodpointer in procoptions) or (po_staticmethod in procoptions)) and
  6249. not(po_is_block in procoptions) and
  6250. not is_nested_pd(self)) or
  6251. (po_addressonly in procoptions);
  6252. end;
  6253. function tprocvardef.getmangledparaname:TSymStr;
  6254. begin
  6255. if not(po_methodpointer in procoptions) then
  6256. if not is_nested_pd(self) then
  6257. result:='procvar'
  6258. else
  6259. { we need the manglednames here, because nestedprocvars can be anonymous, e.g.
  6260. having not a type name or not an unique one, see webtbs/tw27515.pp
  6261. Further, use $_ ... _$ delimiters to avoid ambiguous names, see webtbs/tw27515.pp }
  6262. result:='$_nestedprovar'+mangledprocparanames(0)+'_$'
  6263. else
  6264. result:='procvarofobj'
  6265. end;
  6266. function tprocvardef.getcopyas(newtyp: tdeftyp; copytyp: tproccopytyp; const paraprefix: string): tstoreddef;
  6267. begin
  6268. result:=inherited;
  6269. tabstractprocdef(result).calcparas;
  6270. end;
  6271. function tprocvardef.is_publishable : boolean;
  6272. begin
  6273. is_publishable:=(po_methodpointer in procoptions);
  6274. end;
  6275. function tprocvardef.GetTypeName : string;
  6276. var
  6277. s: string;
  6278. pno : tprocnameoptions;
  6279. begin
  6280. {$ifdef EXTDEBUG}
  6281. pno:=[pno_showhidden];
  6282. {$else EXTDEBUG}
  6283. pno:=[];
  6284. {$endif EXTDEBUG}
  6285. s:='<';
  6286. if po_is_block in procoptions then
  6287. s := s+'reference to'
  6288. else if po_classmethod in procoptions then
  6289. s := s+'class method type of'
  6290. else
  6291. if po_addressonly in procoptions then
  6292. s := s+'address of'
  6293. else
  6294. s := s+'procedure variable type of';
  6295. if assigned(returndef) and
  6296. (returndef<>voidtype) then
  6297. s:=s+' function'+typename_paras(pno)+':'+returndef.GetTypeName
  6298. else
  6299. s:=s+' procedure'+typename_paras(pno);
  6300. if po_methodpointer in procoptions then
  6301. s := s+' of object';
  6302. if is_nested_pd(self) then
  6303. s := s+' is nested';
  6304. if po_far in procoptions then
  6305. s := s+';far';
  6306. GetTypeName := s+';'+ProcCallOptionStr[proccalloption]+'>';
  6307. end;
  6308. {***************************************************************************
  6309. TOBJECTDEF
  6310. ***************************************************************************}
  6311. constructor tobjectdef.create(ot:tobjecttyp;const n:string;c:tobjectdef;doregister:boolean);
  6312. begin
  6313. inherited create(n,objectdef,doregister);
  6314. fcurrent_dispid:=0;
  6315. objecttype:=ot;
  6316. childof:=nil;
  6317. childofderef.reset;
  6318. vmt_fieldderef.reset;
  6319. extendeddefderef.reset;
  6320. cloneddefderef.reset;
  6321. if objecttype=odt_helper then
  6322. owner.includeoption(sto_has_helper);
  6323. symtable:=tObjectSymtable.create(self,n,current_settings.packrecords,
  6324. current_settings.alignment.recordalignmin);
  6325. { create space for vmt !! }
  6326. vmtentries:=TFPList.Create;
  6327. set_parent(c);
  6328. if objecttype in [odt_interfacecorba,odt_interfacecom,odt_dispinterface] then
  6329. prepareguid;
  6330. { setup implemented interfaces }
  6331. if objecttype in [odt_class,odt_objcclass,odt_objcprotocol,odt_javaclass,odt_interfacejava] then
  6332. ImplementedInterfaces:=TFPObjectList.Create(true)
  6333. else
  6334. ImplementedInterfaces:=nil;
  6335. writing_class_record_dbginfo:=false;
  6336. end;
  6337. constructor tobjectdef.ppuload(ppufile:tcompilerppufile);
  6338. var
  6339. i,
  6340. implintfcount : longint;
  6341. d, getterd : tderef;
  6342. ImplIntf : TImplementedInterface;
  6343. vmtentry : pvmtentry;
  6344. begin
  6345. inherited ppuload(objectdef,ppufile);
  6346. objecttype:=tobjecttyp(ppufile.getbyte);
  6347. helpertype:=thelpertype(ppufile.getbyte);
  6348. objextname:=ppufile.getpshortstring;
  6349. { only used for external Objective-C classes/protocols }
  6350. if (objextname^='') then
  6351. stringdispose(objextname);
  6352. symtable:=tObjectSymtable.create(self,objrealname^,0,0);
  6353. tObjectSymtable(symtable).datasize:=ppufile.getasizeint;
  6354. tObjectSymtable(symtable).paddingsize:=ppufile.getword;
  6355. tObjectSymtable(symtable).fieldalignment:=shortint(ppufile.getbyte);
  6356. tObjectSymtable(symtable).recordalignment:=shortint(ppufile.getbyte);
  6357. tObjectSymtable(symtable).recordalignmin:=shortint(ppufile.getbyte);
  6358. ppufile.getderef(vmt_fieldderef);
  6359. ppufile.getderef(childofderef);
  6360. { load guid }
  6361. iidstr:=nil;
  6362. if objecttype in [odt_interfacecom,odt_interfacecorba,odt_dispinterface] then
  6363. begin
  6364. new(iidguid);
  6365. ppufile.getguid(iidguid^);
  6366. iidstr:=ppufile.getpshortstring;
  6367. end;
  6368. abstractcnt:=ppufile.getlongint;
  6369. if objecttype=odt_helper then
  6370. ppufile.getderef(extendeddefderef);
  6371. vmtentries:=TFPList.Create;
  6372. vmtentries.count:=ppufile.getlongint;
  6373. for i:=0 to vmtentries.count-1 do
  6374. begin
  6375. ppufile.getderef(d);
  6376. new(vmtentry);
  6377. vmtentry^.procdef:=nil;
  6378. vmtentry^.procdefderef:=d;
  6379. vmtentry^.visibility:=tvisibility(ppufile.getbyte);
  6380. vmtentries[i]:=vmtentry;
  6381. end;
  6382. { load implemented interfaces }
  6383. if objecttype in [odt_class,odt_objcclass,odt_objcprotocol,odt_javaclass,odt_interfacejava] then
  6384. begin
  6385. ImplementedInterfaces:=TFPObjectList.Create(true);
  6386. implintfcount:=ppufile.getlongint;
  6387. for i:=0 to implintfcount-1 do
  6388. begin
  6389. ppufile.getderef(d);
  6390. ppufile.getderef(getterd);
  6391. ImplIntf:=TImplementedInterface.Create_deref(d,getterd);
  6392. ImplIntf.IOffset:=ppufile.getlongint;
  6393. byte(ImplIntf.IType):=ppufile.getbyte;
  6394. ImplementedInterfaces.Add(ImplIntf);
  6395. end;
  6396. end
  6397. else
  6398. ImplementedInterfaces:=nil;
  6399. if df_copied_def in defoptions then
  6400. begin
  6401. ppufile.getderef(cloneddefderef);
  6402. ppuload_platform(ppufile);
  6403. end
  6404. else
  6405. begin
  6406. ppuload_platform(ppufile);
  6407. tObjectSymtable(symtable).ppuload(ppufile);
  6408. end;
  6409. { handles the predefined class tobject }
  6410. { the last TOBJECT which is loaded gets }
  6411. { it ! }
  6412. if (childof=nil) and
  6413. (objecttype in [odt_class,odt_javaclass]) and
  6414. (objname^='TOBJECT') then
  6415. class_tobject:=self;
  6416. if (childof=nil) and
  6417. (objecttype=odt_interfacecom) then
  6418. if (objname^='IUNKNOWN') then
  6419. interface_iunknown:=self
  6420. else
  6421. if (objname^='IDISPATCH') then
  6422. interface_idispatch:=self;
  6423. if (childof=nil) and
  6424. (objecttype=odt_objcclass) and
  6425. (objname^='PROTOCOL') then
  6426. objc_protocoltype:=self;
  6427. if (objecttype=odt_javaclass) and
  6428. not(oo_is_formal in objectoptions) then
  6429. begin
  6430. if (objname^='JLOBJECT') then
  6431. java_jlobject:=self
  6432. else if (objname^='JLTHROWABLE') then
  6433. java_jlthrowable:=self
  6434. else if (objname^='FPCBASERECORDTYPE') then
  6435. java_fpcbaserecordtype:=self
  6436. else if (objname^='JLSTRING') then
  6437. java_jlstring:=self
  6438. else if (objname^='ANSISTRINGCLASS') then
  6439. java_ansistring:=self
  6440. else if (objname^='SHORTSTRINGCLASS') then
  6441. java_shortstring:=self
  6442. else if (objname^='JLENUM') then
  6443. java_jlenum:=self
  6444. else if (objname^='JUENUMSET') then
  6445. java_juenumset:=self
  6446. else if (objname^='FPCBITSET') then
  6447. java_jubitset:=self
  6448. else if (objname^='FPCBASEPROCVARTYPE') then
  6449. java_procvarbase:=self;
  6450. end;
  6451. writing_class_record_dbginfo:=false;
  6452. end;
  6453. destructor tobjectdef.destroy;
  6454. var
  6455. i: longint;
  6456. begin
  6457. if assigned(symtable) then
  6458. begin
  6459. symtable.free;
  6460. symtable:=nil;
  6461. end;
  6462. stringdispose(objextname);
  6463. stringdispose(iidstr);
  6464. if assigned(ImplementedInterfaces) then
  6465. begin
  6466. ImplementedInterfaces.free;
  6467. ImplementedInterfaces:=nil;
  6468. end;
  6469. if assigned(iidguid) then
  6470. begin
  6471. dispose(iidguid);
  6472. iidguid:=nil;
  6473. end;
  6474. if assigned(vmtentries) then
  6475. begin
  6476. for i:=0 to vmtentries.count-1 do
  6477. dispose(pvmtentry(vmtentries[i]));
  6478. vmtentries.free;
  6479. vmtentries:=nil;
  6480. end;
  6481. if assigned(vmcallstaticinfo) then
  6482. begin
  6483. freemem(vmcallstaticinfo);
  6484. vmcallstaticinfo:=nil;
  6485. end;
  6486. inherited destroy;
  6487. end;
  6488. function tobjectdef.getcopy : tstoreddef;
  6489. var
  6490. i : longint;
  6491. begin
  6492. result:=cobjectdef.create(objecttype,objrealname^,childof,true);
  6493. { the constructor allocates a symtable which we release to avoid memory leaks }
  6494. tobjectdef(result).symtable.free;
  6495. tobjectdef(result).symtable:=symtable.getcopy;
  6496. if assigned(objextname) then
  6497. tobjectdef(result).objextname:=stringdup(objextname^);
  6498. if assigned(import_lib) then
  6499. tobjectdef(result).import_lib:=stringdup(import_lib^);
  6500. tobjectdef(result).objectoptions:=objectoptions;
  6501. include(tobjectdef(result).defoptions,df_copied_def);
  6502. tobjectdef(result).extendeddef:=extendeddef;
  6503. if assigned(tcinitcode) then
  6504. tobjectdef(result).tcinitcode:=tcinitcode.getcopy;
  6505. tobjectdef(result).vmt_field:=vmt_field;
  6506. if assigned(iidguid) then
  6507. begin
  6508. new(tobjectdef(result).iidguid);
  6509. move(iidguid^,tobjectdef(result).iidguid^,sizeof(iidguid^));
  6510. end;
  6511. if assigned(iidstr) then
  6512. tobjectdef(result).iidstr:=stringdup(iidstr^);
  6513. tobjectdef(result).abstractcnt:=abstractcnt;
  6514. if assigned(ImplementedInterfaces) then
  6515. begin
  6516. for i:=0 to ImplementedInterfaces.count-1 do
  6517. tobjectdef(result).ImplementedInterfaces.Add(TImplementedInterface(ImplementedInterfaces[i]).Getcopy);
  6518. end;
  6519. tobjectdef(result).copyvmtentries(self);
  6520. end;
  6521. procedure tobjectdef.ppuwrite(ppufile:tcompilerppufile);
  6522. var
  6523. i : longint;
  6524. vmtentry : pvmtentry;
  6525. ImplIntf : TImplementedInterface;
  6526. old_do_indirect_crc: boolean;
  6527. begin
  6528. { if class1 in unit A changes, and class2 in unit B inherits from it
  6529. (so unit B uses unit A), then unit B with class2 will be recompiled.
  6530. However, if there is also a class3 in unit C that only depends on
  6531. unit B, then unit C will not be recompiled because nothing changed
  6532. to the interface of unit B. Nevertheless, unit C can indirectly
  6533. depend on unit A via derefs, and these must be updated -> the
  6534. indirect crc keeps track of such changes. }
  6535. old_do_indirect_crc:=ppufile.do_indirect_crc;
  6536. ppufile.do_indirect_crc:=true;
  6537. inherited ppuwrite(ppufile);
  6538. ppufile.putbyte(byte(objecttype));
  6539. ppufile.putbyte(byte(helpertype));
  6540. if assigned(objextname) then
  6541. ppufile.putstring(objextname^)
  6542. else
  6543. ppufile.putstring('');
  6544. ppufile.putasizeint(tObjectSymtable(symtable).datasize);
  6545. ppufile.putword(tObjectSymtable(symtable).paddingsize);
  6546. ppufile.putbyte(byte(tObjectSymtable(symtable).fieldalignment));
  6547. ppufile.putbyte(byte(tObjectSymtable(symtable).recordalignment));
  6548. ppufile.putbyte(byte(tObjectSymtable(symtable).recordalignmin));
  6549. ppufile.putderef(vmt_fieldderef);
  6550. ppufile.putderef(childofderef);
  6551. if objecttype in [odt_interfacecom,odt_interfacecorba,odt_dispinterface] then
  6552. begin
  6553. ppufile.putguid(iidguid^);
  6554. ppufile.putstring(iidstr^);
  6555. end;
  6556. ppufile.putlongint(abstractcnt);
  6557. if objecttype=odt_helper then
  6558. ppufile.putderef(extendeddefderef);
  6559. ppufile.putlongint(vmtentries.count);
  6560. for i:=0 to vmtentries.count-1 do
  6561. begin
  6562. vmtentry:=pvmtentry(vmtentries[i]);
  6563. ppufile.putderef(vmtentry^.procdefderef);
  6564. ppufile.putbyte(byte(vmtentry^.visibility));
  6565. end;
  6566. if assigned(ImplementedInterfaces) then
  6567. begin
  6568. ppufile.putlongint(ImplementedInterfaces.Count);
  6569. for i:=0 to ImplementedInterfaces.Count-1 do
  6570. begin
  6571. ImplIntf:=TImplementedInterface(ImplementedInterfaces[i]);
  6572. ppufile.putderef(ImplIntf.intfdefderef);
  6573. ppufile.putderef(ImplIntf.ImplementsGetterDeref);
  6574. ppufile.putlongint(ImplIntf.Ioffset);
  6575. ppufile.putbyte(byte(ImplIntf.IType));
  6576. end;
  6577. end;
  6578. if df_copied_def in defoptions then
  6579. ppufile.putderef(cloneddefderef);
  6580. writeentry(ppufile,ibobjectdef);
  6581. if not(df_copied_def in defoptions) then
  6582. tObjectSymtable(symtable).ppuwrite(ppufile);
  6583. ppufile.do_indirect_crc:=old_do_indirect_crc;
  6584. end;
  6585. function tobjectdef.GetTypeName:string;
  6586. begin
  6587. { in this case we will go in endless recursion, because then }
  6588. { there is no tsym associated yet with the def. It can occur }
  6589. { (tests/webtbf/tw4757.pp), so for now give a generic name }
  6590. { instead of the actual type name }
  6591. if not assigned(typesym) then
  6592. result:='<Currently Parsed Class>'
  6593. else
  6594. result:=typesymbolprettyname;
  6595. end;
  6596. procedure tobjectdef.buildderef;
  6597. var
  6598. i : longint;
  6599. vmtentry : pvmtentry;
  6600. begin
  6601. inherited buildderef;
  6602. vmt_fieldderef.build(vmt_field);
  6603. childofderef.build(childof);
  6604. if df_copied_def in defoptions then
  6605. cloneddefderef.build(symtable.defowner)
  6606. else
  6607. tstoredsymtable(symtable).buildderef;
  6608. if objecttype=odt_helper then
  6609. extendeddefderef.build(extendeddef);
  6610. for i:=0 to vmtentries.count-1 do
  6611. begin
  6612. vmtentry:=pvmtentry(vmtentries[i]);
  6613. vmtentry^.procdefderef.build(vmtentry^.procdef);
  6614. end;
  6615. if assigned(ImplementedInterfaces) then
  6616. begin
  6617. for i:=0 to ImplementedInterfaces.count-1 do
  6618. TImplementedInterface(ImplementedInterfaces[i]).buildderef;
  6619. end;
  6620. end;
  6621. procedure tobjectdef.deref;
  6622. var
  6623. i : longint;
  6624. vmtentry : pvmtentry;
  6625. begin
  6626. inherited deref;
  6627. vmt_field:=tsym(vmt_fieldderef.resolve);
  6628. childof:=tobjectdef(childofderef.resolve);
  6629. if df_copied_def in defoptions then
  6630. begin
  6631. cloneddef:=tobjectdef(cloneddefderef.resolve);
  6632. symtable:=cloneddef.symtable.getcopy;
  6633. end
  6634. else
  6635. tstoredsymtable(symtable).deref(false);
  6636. if objecttype=odt_helper then
  6637. extendeddef:=tdef(extendeddefderef.resolve);
  6638. for i:=0 to vmtentries.count-1 do
  6639. begin
  6640. vmtentry:=pvmtentry(vmtentries[i]);
  6641. vmtentry^.procdef:=tprocdef(vmtentry^.procdefderef.resolve);
  6642. end;
  6643. if assigned(ImplementedInterfaces) then
  6644. begin
  6645. for i:=0 to ImplementedInterfaces.count-1 do
  6646. TImplementedInterface(ImplementedInterfaces[i]).deref;
  6647. end;
  6648. end;
  6649. procedure create_class_helper_for_procdef(def: tobject; arg: pointer);
  6650. var
  6651. pd: tprocdef absolute def;
  6652. st: tsymtable;
  6653. psym: tsym;
  6654. nname: TIDString;
  6655. begin
  6656. if (tdef(def).typ<>procdef) then
  6657. exit;
  6658. { pd.owner = objcclass symtable -> defowner = objcclassdef ->
  6659. owner = symtable in which objcclassdef is defined
  6660. }
  6661. st:=pd.owner.defowner.owner;
  6662. nname:=class_helper_prefix+tprocsym(pd.procsym).name;
  6663. { check for an existing procsym with our special name }
  6664. psym:=tsym(st.find(nname));
  6665. if not assigned(psym) then
  6666. begin
  6667. psym:=cprocsym.create(nname);
  6668. { avoid warning about this symbol being unused }
  6669. psym.IncRefCount;
  6670. { don't check for duplicates:
  6671. a) we checked above
  6672. b) in case we are in the implementation section of a unit, this
  6673. will also check for this symbol in the interface section
  6674. (since you normally cannot have symbols with the same name
  6675. both interface and implementation), and it's possible to
  6676. have class helpers for the same class in the interface and
  6677. in the implementation, and they cannot be merged since only
  6678. the once in the interface must be saved to the ppu/visible
  6679. from other units }
  6680. st.insert(psym,false);
  6681. end
  6682. else if (psym.typ<>procsym) then
  6683. internalerror(2009111501);
  6684. { add ourselves to this special procsym }
  6685. tprocsym(psym).procdeflist.add(def);
  6686. end;
  6687. procedure tobjectdef.derefimpl;
  6688. begin
  6689. inherited derefimpl;
  6690. { the procdefs are not owned by the class helper procsyms, so they
  6691. are not stored/restored either -> re-add them here }
  6692. if (objecttype in [odt_objcclass,odt_objcprotocol]) or
  6693. (oo_is_classhelper in objectoptions) then
  6694. symtable.DefList.ForEachCall(@create_class_helper_for_procdef,nil);
  6695. end;
  6696. procedure tobjectdef.copyvmtentries(objdef:tobjectdef);
  6697. var
  6698. i : longint;
  6699. vmtentry : pvmtentry;
  6700. begin
  6701. if vmtentries.count<>0 then
  6702. internalerror(2019081401);
  6703. vmtentries.count:=objdef.vmtentries.count;
  6704. for i:=0 to objdef.vmtentries.count-1 do
  6705. begin
  6706. new(vmtentry);
  6707. vmtentry^:=pvmtentry(objdef.vmtentries[i])^;
  6708. vmtentries[i]:=vmtentry;
  6709. end;
  6710. end;
  6711. function tobjectdef.getparentdef:tdef;
  6712. begin
  6713. { TODO: Remove getparentdef hack}
  6714. { With 2 forward declared classes with the child class before the
  6715. parent class the child class is written earlier to the ppu. Leaving it
  6716. possible to have a reference to the parent class for property overriding,
  6717. but the parent class still has the childof not resolved yet (PFV) }
  6718. if childof=nil then
  6719. childof:=tobjectdef(childofderef.resolve);
  6720. result:=childof;
  6721. end;
  6722. procedure tobjectdef.prepareguid;
  6723. begin
  6724. { set up guid }
  6725. if not assigned(iidguid) then
  6726. begin
  6727. new(iidguid);
  6728. fillchar(iidguid^,sizeof(iidguid^),0); { default null guid }
  6729. end;
  6730. { setup iidstring }
  6731. if not assigned(iidstr) then
  6732. iidstr:=stringdup(''); { default is empty string }
  6733. end;
  6734. procedure tobjectdef.set_parent( c : tobjectdef);
  6735. begin
  6736. if assigned(childof) then
  6737. exit;
  6738. childof:=c;
  6739. if not assigned(c) then
  6740. exit;
  6741. { inherit options and status }
  6742. objectoptions:=objectoptions+(c.objectoptions*inherited_objectoptions);
  6743. { initially has the same number of abstract methods as the parent }
  6744. abstractcnt:=c.abstractcnt;
  6745. { add the data of the anchestor class/object }
  6746. if (objecttype in [odt_class,odt_object,odt_objcclass,odt_javaclass]) then
  6747. begin
  6748. tObjectSymtable(symtable).datasize:=tObjectSymtable(symtable).datasize+tObjectSymtable(c.symtable).datasize;
  6749. { inherit recordalignment }
  6750. tObjectSymtable(symtable).recordalignment:=tObjectSymtable(c.symtable).recordalignment;
  6751. { if both the parent and this record use C-alignment, also inherit
  6752. the current field alignment }
  6753. if (tObjectSymtable(c.symtable).usefieldalignment=C_alignment) and
  6754. (tObjectSymtable(symtable).usefieldalignment=C_alignment) then
  6755. tObjectSymtable(symtable).fieldalignment:=tObjectSymtable(c.symtable).fieldalignment;
  6756. { the padding is not inherited for Objective-C classes (maybe not
  6757. for cppclass either?) }
  6758. if objecttype=odt_objcclass then
  6759. tObjectSymtable(symtable).datasize:=tObjectSymtable(symtable).datasize-tObjectSymtable(c.symtable).paddingsize;
  6760. if (oo_has_vmt in objectoptions) and
  6761. (oo_has_vmt in c.objectoptions) then
  6762. tObjectSymtable(symtable).datasize:=tObjectSymtable(symtable).datasize-sizeof(pint);
  6763. { if parent has a vmt field then the offset is the same for the child PM }
  6764. if (oo_has_vmt in c.objectoptions) or is_class(self) then
  6765. begin
  6766. vmt_field:=c.vmt_field;
  6767. include(objectoptions,oo_has_vmt);
  6768. end;
  6769. end;
  6770. end;
  6771. procedure tobjectdef.insertvmt;
  6772. begin
  6773. if objecttype in [odt_interfacecom,odt_interfacecorba,odt_dispinterface,odt_objcclass,odt_objcprotocol,odt_javaclass,odt_interfacejava] then
  6774. exit;
  6775. if (oo_has_vmt in objectoptions) then
  6776. internalerror(12345)
  6777. else
  6778. begin
  6779. tObjectSymtable(symtable).datasize:=align(tObjectSymtable(symtable).datasize,
  6780. tObjectSymtable(symtable).fieldalignment);
  6781. if (tf_requires_proper_alignment in target_info.flags) then
  6782. begin
  6783. { Align VMT pointer and whole object instance if target CPU requires alignment. }
  6784. tObjectSymtable(symtable).datasize:=align(tObjectSymtable(symtable).datasize,sizeof(pint));
  6785. tObjectSymtable(symtable).alignrecord(tObjectSymtable(symtable).datasize,sizeof(pint));
  6786. end;
  6787. vmt_field:=cfieldvarsym.create('_vptr$'+objname^,vs_value,voidpointertype,[]);
  6788. hidesym(vmt_field);
  6789. tObjectSymtable(symtable).insert(vmt_field);
  6790. tObjectSymtable(symtable).addfield(tfieldvarsym(vmt_field),vis_hidden);
  6791. include(objectoptions,oo_has_vmt);
  6792. end;
  6793. end;
  6794. function tobjectdef.vmt_offset: asizeint;
  6795. begin
  6796. if objecttype in [odt_interfacecom,odt_interfacecorba,odt_dispinterface,odt_objcclass,odt_objcprotocol,odt_javaclass,odt_interfacejava] then
  6797. result:=0
  6798. else if (tObjectSymtable(symtable).usefieldalignment<>bit_alignment) then
  6799. result:=tfieldvarsym(vmt_field).fieldoffset
  6800. else
  6801. result:=tfieldvarsym(vmt_field).fieldoffset div 8;
  6802. end;
  6803. procedure tobjectdef.check_forwards;
  6804. begin
  6805. if not(objecttype in [odt_interfacecom,odt_interfacecorba,odt_dispinterface,odt_objcprotocol,odt_interfacejava]) then
  6806. inherited;
  6807. if (oo_is_forward in objectoptions) then
  6808. begin
  6809. { ok, in future, the forward can be resolved }
  6810. Message1(sym_e_class_forward_not_resolved,objrealname^);
  6811. exclude(objectoptions,oo_is_forward);
  6812. end;
  6813. end;
  6814. function tobjectdef.find_destructor: tprocdef;
  6815. var
  6816. objdef: tobjectdef;
  6817. begin
  6818. objdef:=self;
  6819. while assigned(objdef) do
  6820. begin
  6821. result:=objdef.find_procdef_bytype(potype_destructor);
  6822. if assigned(result) then
  6823. exit;
  6824. objdef:=objdef.childof;
  6825. end;
  6826. result:=nil;
  6827. end;
  6828. function tobjectdef.implements_any_interfaces: boolean;
  6829. begin
  6830. result := (ImplementedInterfaces.Count > 0) or
  6831. (assigned(childof) and childof.implements_any_interfaces);
  6832. end;
  6833. function tobjectdef.size : asizeint;
  6834. begin
  6835. if objecttype in [odt_class,odt_interfacecom,odt_interfacecorba,odt_dispinterface,odt_objcclass,odt_objcprotocol,odt_helper,odt_javaclass,odt_interfacejava] then
  6836. result:=voidpointertype.size
  6837. else
  6838. result:=tObjectSymtable(symtable).datasize;
  6839. end;
  6840. function tobjectdef.alignment:shortint;
  6841. begin
  6842. if objecttype in [odt_class,odt_interfacecom,odt_interfacecorba,odt_dispinterface,odt_objcclass,odt_objcprotocol,odt_helper,odt_javaclass,odt_interfacejava] then
  6843. alignment:=voidpointertype.alignment
  6844. else
  6845. alignment:=tObjectSymtable(symtable).recordalignment;
  6846. end;
  6847. function tobjectdef.vmtmethodoffset(index:longint):longint;
  6848. begin
  6849. { for offset of methods for classes, see rtl/inc/objpash.inc }
  6850. case objecttype of
  6851. odt_class:
  6852. { the +2*sizeof(pint) is size and -size }
  6853. vmtmethodoffset:=index*voidcodepointertype.size+10*voidpointertype.size+2*sizeof(pint);
  6854. odt_helper,
  6855. odt_objcclass,
  6856. odt_objcprotocol:
  6857. vmtmethodoffset:=0;
  6858. odt_interfacecom,odt_interfacecorba,odt_dispinterface:
  6859. vmtmethodoffset:=index*voidcodepointertype.size;
  6860. odt_javaclass,
  6861. odt_interfacejava:
  6862. { invalid }
  6863. vmtmethodoffset:=-1;
  6864. else
  6865. { the +2*sizeof(pint) is size and -size }
  6866. {$ifdef WITHDMT}
  6867. vmtmethodoffset:=index*voidcodepointertype.size+2*voidpointertype.size+2*sizeof(pint);
  6868. {$else WITHDMT}
  6869. vmtmethodoffset:=index*voidcodepointertype.size+1*voidpointertype.size+2*sizeof(pint);
  6870. {$endif WITHDMT}
  6871. end;
  6872. end;
  6873. function tobjectdef.vmt_mangledname : TSymStr;
  6874. begin
  6875. if not(oo_has_vmt in objectoptions) then
  6876. Message1(parser_n_object_has_no_vmt,objrealname^);
  6877. vmt_mangledname:=make_mangledname('VMT',owner,objname^);
  6878. end;
  6879. function tobjectdef.vmt_def: trecorddef;
  6880. var
  6881. vmttypesym: tsymentry;
  6882. begin
  6883. if not(typesym.owner.symtabletype in [ObjectSymtable,recordsymtable]) then
  6884. vmttypesym:=typesym.owner.Find('vmtdef$'+mangledparaname)
  6885. else
  6886. { Use common parent of trecordsymtable and tobjectsymtable
  6887. to avoid invalid typecast error when compiled with -CR option }
  6888. vmttypesym:=tabstractrecordsymtable(typesym.owner).get_unit_symtable.Find('vmtdef$'+mangledparaname);
  6889. if not assigned(vmttypesym) or
  6890. (vmttypesym.typ<>symconst.typesym) or
  6891. (ttypesym(vmttypesym).typedef.typ<>recorddef) then
  6892. internalerror(2015052501);
  6893. result:=trecorddef(ttypesym(vmttypesym).typedef);
  6894. end;
  6895. function tobjectdef.needs_inittable : boolean;
  6896. var
  6897. hp : tobjectdef;
  6898. begin
  6899. case objecttype of
  6900. odt_helper,
  6901. odt_class :
  6902. needs_inittable:=false;
  6903. odt_dispinterface,
  6904. odt_interfacecom:
  6905. needs_inittable:=true;
  6906. odt_interfacecorba:
  6907. begin
  6908. hp:=childof;
  6909. while assigned(hp) do
  6910. begin
  6911. if hp=interface_iunknown then
  6912. begin
  6913. needs_inittable:=true;
  6914. exit;
  6915. end;
  6916. hp:=hp.childof;
  6917. end;
  6918. needs_inittable:=false;
  6919. end;
  6920. odt_object:
  6921. needs_inittable:=
  6922. tObjectSymtable(symtable).needs_init_final or
  6923. (assigned(childof) and
  6924. childof.needs_inittable);
  6925. odt_cppclass,
  6926. odt_objcclass,
  6927. odt_objcprotocol,
  6928. odt_javaclass,
  6929. odt_interfacejava:
  6930. needs_inittable:=false;
  6931. else
  6932. internalerror(200108267);
  6933. end;
  6934. end;
  6935. function tobjectdef.needs_separate_initrtti : boolean;
  6936. begin
  6937. result:=not (objecttype in [odt_interfacecom,odt_interfacecorba,odt_dispinterface]);
  6938. end;
  6939. function tobjectdef.has_non_trivial_init_child(check_parent:boolean):boolean;
  6940. begin
  6941. if objecttype in [odt_class,odt_object] then
  6942. begin
  6943. result:=tobjectsymtable(symtable).has_non_trivial_init or
  6944. (check_parent and assigned(childof) and childof.has_non_trivial_init_child(true));
  6945. end
  6946. else
  6947. result:=false;
  6948. end;
  6949. function tobjectdef.rtti_mangledname(rt: trttitype): TSymStr;
  6950. begin
  6951. if not(objecttype in [odt_objcclass,odt_objcprotocol]) then
  6952. result:=inherited rtti_mangledname(rt)
  6953. else
  6954. begin
  6955. { necessary in case of a dynamic array of nsobject, or
  6956. if an nsobject field appears in a record that needs
  6957. init/finalisation }
  6958. if rt=initrtti then
  6959. begin
  6960. result:=voidpointertype.rtti_mangledname(rt);
  6961. exit;
  6962. end;
  6963. if not(target_info.system in systems_objc_nfabi) then
  6964. begin
  6965. result:=target_asm.labelprefix;
  6966. case objecttype of
  6967. odt_objcclass:
  6968. begin
  6969. case rt of
  6970. objcclassrtti:
  6971. if not(oo_is_classhelper in objectoptions) then
  6972. result:=result+'_OBJC_CLASS_'
  6973. else
  6974. result:=result+'_OBJC_CATEGORY_';
  6975. objcmetartti:
  6976. if not(oo_is_classhelper in objectoptions) then
  6977. result:=result+'_OBJC_METACLASS_'
  6978. else
  6979. internalerror(2009111511);
  6980. else
  6981. internalerror(2009092302);
  6982. end;
  6983. end;
  6984. odt_objcprotocol:
  6985. result:=result+'_OBJC_PROTOCOL_';
  6986. else
  6987. ;
  6988. end;
  6989. end
  6990. else
  6991. begin
  6992. case objecttype of
  6993. odt_objcclass:
  6994. begin
  6995. if (oo_is_classhelper in objectoptions) and
  6996. (rt<>objcclassrtti) then
  6997. internalerror(2009111512);
  6998. case rt of
  6999. objcclassrtti:
  7000. if not(oo_is_classhelper in objectoptions) then
  7001. result:='_OBJC_CLASS_$_'
  7002. else
  7003. result:='_OBJC_$_CATEGORY_';
  7004. objcmetartti:
  7005. result:='_OBJC_METACLASS_$_';
  7006. objcclassrortti:
  7007. result:=lower(target_asm.labelprefix)+'_OBJC_CLASS_RO_$_';
  7008. objcmetarortti:
  7009. result:=lower(target_asm.labelprefix)+'_OBJC_METACLASS_RO_$_';
  7010. else
  7011. internalerror(2009092303);
  7012. end;
  7013. end;
  7014. odt_objcprotocol:
  7015. begin
  7016. result:=lower(target_asm.labelprefix);
  7017. case rt of
  7018. objcclassrtti:
  7019. result:=result+'_OBJC_PROTOCOL_$_';
  7020. objcmetartti:
  7021. result:=result+'_OBJC_LABEL_PROTOCOL_$_';
  7022. else
  7023. internalerror(2009092501);
  7024. end;
  7025. end;
  7026. else
  7027. internalerror(2013113005);
  7028. end;
  7029. end;
  7030. result:=result+objextname^;
  7031. end;
  7032. end;
  7033. function tobjectdef.members_need_inittable : boolean;
  7034. begin
  7035. members_need_inittable:=tObjectSymtable(symtable).needs_init_final;
  7036. end;
  7037. function tobjectdef.is_publishable : boolean;
  7038. begin
  7039. is_publishable:=objecttype in [odt_class,odt_interfacecom,odt_interfacecorba,odt_dispinterface];
  7040. end;
  7041. function tobjectdef.get_next_dispid: longint;
  7042. begin
  7043. inc(fcurrent_dispid);
  7044. result:=fcurrent_dispid;
  7045. end;
  7046. function tobjectdef.search_enumerator_get: tprocdef;
  7047. begin
  7048. result:=inherited;
  7049. if not assigned(result) and assigned(childof) then
  7050. result:=childof.search_enumerator_get;
  7051. end;
  7052. function tobjectdef.search_enumerator_move: tprocdef;
  7053. begin
  7054. result:=inherited;
  7055. if not assigned(result) and assigned(childof) then
  7056. result:=childof.search_enumerator_move;
  7057. end;
  7058. function tobjectdef.search_enumerator_current: tsym;
  7059. begin
  7060. result:=inherited;
  7061. if not assigned(result) and assigned(childof) then
  7062. result:=childof.search_enumerator_current;
  7063. end;
  7064. procedure tobjectdef.register_created_classref_type;
  7065. begin
  7066. if not classref_created_in_current_module then
  7067. begin
  7068. classref_created_in_current_module:=true;
  7069. current_module.wpoinfo.addcreatedobjtypeforclassref(self);
  7070. end;
  7071. end;
  7072. procedure tobjectdef.register_created_object_type;
  7073. begin
  7074. if not created_in_current_module then
  7075. begin
  7076. created_in_current_module:=true;
  7077. current_module.wpoinfo.addcreatedobjtype(self);
  7078. end;
  7079. end;
  7080. procedure tobjectdef.register_maybe_created_object_type;
  7081. begin
  7082. { if we know it has been created for sure, no need
  7083. to also record that it maybe can be created in
  7084. this module
  7085. }
  7086. if not (created_in_current_module) and
  7087. not (maybe_created_in_current_module) then
  7088. begin
  7089. maybe_created_in_current_module:=true;
  7090. current_module.wpoinfo.addmaybecreatedbyclassref(self);
  7091. end;
  7092. end;
  7093. procedure tobjectdef.register_vmt_call(index: longint);
  7094. begin
  7095. if (is_object(self) or is_class(self)) then
  7096. current_module.wpoinfo.addcalledvmtentry(self,index);
  7097. end;
  7098. procedure check_and_finish_msg(data: tobject; arg: pointer);
  7099. var
  7100. def: tdef absolute data;
  7101. pd: tprocdef absolute data;
  7102. i,
  7103. paracount: longint;
  7104. begin
  7105. if (def.typ=procdef) then
  7106. begin
  7107. { add all messages also under a dummy name to the symtable in
  7108. which the objcclass/protocol/category is declared, so they can
  7109. be called via id.<name>
  7110. }
  7111. create_class_helper_for_procdef(pd,nil);
  7112. { we have to wait until now to set the mangled name because it
  7113. depends on the (possibly external) class name, which is defined
  7114. at the very end. }
  7115. if not(po_msgstr in pd.procoptions) then
  7116. begin
  7117. CGMessagePos(pd.fileinfo,parser_e_objc_requires_msgstr);
  7118. { recover to avoid internalerror later on }
  7119. include(pd.procoptions,po_msgstr);
  7120. pd.messageinf.str:=stringdup('MissingDeclaration');
  7121. end;
  7122. { Mangled name is already set in case this is a copy of
  7123. another type. }
  7124. if not(po_has_mangledname in pd.procoptions) then
  7125. begin
  7126. { check whether the number of formal parameters is correct,
  7127. and whether they have valid Objective-C types }
  7128. paracount:=0;
  7129. for i:=1 to length(pd.messageinf.str^) do
  7130. if pd.messageinf.str^[i]=':' then
  7131. inc(paracount);
  7132. for i:=0 to pd.paras.count-1 do
  7133. if not(vo_is_hidden_para in tparavarsym(pd.paras[i]).varoptions) and
  7134. not is_array_of_const(tparavarsym(pd.paras[i]).vardef) then
  7135. dec(paracount);
  7136. if (paracount<>0) then
  7137. MessagePos(pd.fileinfo,sym_e_objc_para_mismatch);
  7138. pd.setmangledname(pd.objcmangledname);
  7139. end
  7140. else
  7141. { all checks already done }
  7142. exit;
  7143. if not(oo_is_external in pd.struct.objectoptions) then
  7144. begin
  7145. if (po_varargs in pd.procoptions) then
  7146. MessagePos(pd.fileinfo,parser_e_varargs_need_cdecl_and_external)
  7147. else
  7148. begin
  7149. { check for "array of const" parameters }
  7150. for i:=0 to pd.parast.symlist.count-1 do
  7151. begin
  7152. if (tsym(pd.parast.symlist[i]).typ=paravarsym) and
  7153. is_array_of_const(tparavarsym(pd.parast.symlist[i]).vardef) then
  7154. MessagePos(pd.fileinfo,parser_e_varargs_need_cdecl_and_external);
  7155. end;
  7156. end;
  7157. end;
  7158. end;
  7159. end;
  7160. procedure mark_private_fields_used(data: tobject; arg: pointer);
  7161. var
  7162. sym: tsym absolute data;
  7163. begin
  7164. if (sym.typ=fieldvarsym) and
  7165. (tfieldvarsym(sym).visibility in [vis_private,vis_strictprivate]) then
  7166. sym.IncRefCount;
  7167. end;
  7168. procedure tobjectdef.finish_objc_data;
  7169. begin
  7170. self.symtable.DefList.foreachcall(@check_and_finish_msg,nil);
  7171. if (oo_is_external in objectoptions) then
  7172. self.symtable.SymList.ForEachCall(@mark_private_fields_used,nil);
  7173. end;
  7174. procedure verify_objc_vardef(data: tobject; arg: pointer);
  7175. var
  7176. sym: tabstractvarsym absolute data;
  7177. res: pboolean absolute arg;
  7178. founderrordef: tdef;
  7179. begin
  7180. if not(tsym(data).typ in [paravarsym,fieldvarsym]) then
  7181. exit;
  7182. if (sym.typ=paravarsym) and
  7183. ((vo_is_hidden_para in tparavarsym(sym).varoptions) or
  7184. is_array_of_const(tparavarsym(sym).vardef)) then
  7185. exit;
  7186. if not objcchecktype(sym.vardef,founderrordef) then
  7187. begin
  7188. MessagePos1(sym.fileinfo,type_e_objc_type_unsupported,founderrordef.typename);
  7189. res^:=false;
  7190. end;
  7191. end;
  7192. procedure verify_objc_procdef_paras(data: tobject; arg: pointer);
  7193. var
  7194. def: tdef absolute data;
  7195. res: pboolean absolute arg;
  7196. founderrordef: tdef;
  7197. begin
  7198. if (def.typ<>procdef) then
  7199. exit;
  7200. { check parameter types for validity }
  7201. tprocdef(def).paras.foreachcall(@verify_objc_vardef,arg);
  7202. { check the result type for validity }
  7203. if not objcchecktype(tprocdef(def).returndef,founderrordef) then
  7204. begin
  7205. MessagePos1(tprocdef(def).funcretsym.fileinfo,type_e_objc_type_unsupported,founderrordef.typename);
  7206. res^:=false;
  7207. end;
  7208. end;
  7209. function tobjectdef.check_objc_types: boolean;
  7210. begin
  7211. { done in separate step from finish_objc_data, because when
  7212. finish_objc_data is called, not all forwarddefs have been resolved
  7213. yet and we need to know all types here }
  7214. result:=true;
  7215. self.symtable.symlist.foreachcall(@verify_objc_vardef,@result);
  7216. self.symtable.deflist.foreachcall(@verify_objc_procdef_paras,@result);
  7217. end;
  7218. procedure do_cpp_import_info(data: tobject; arg: pointer);
  7219. var
  7220. def: tdef absolute data;
  7221. pd: tprocdef absolute data;
  7222. begin
  7223. if (def.typ=procdef) then
  7224. begin
  7225. pd.setmangledname(target_info.Cprefix+pd.cplusplusmangledname);
  7226. if (oo_is_external in pd.struct.objectoptions) then
  7227. begin
  7228. { copied from psub.read_proc }
  7229. if assigned(tobjectdef(pd.struct).import_lib) then
  7230. current_module.AddExternalImport(tobjectdef(pd.struct).import_lib^,pd.mangledname,pd.mangledname,0,false,false)
  7231. else
  7232. begin
  7233. { add import name to external list for DLL scanning }
  7234. if tf_has_dllscanner in target_info.flags then
  7235. current_module.dllscannerinputlist.Add(pd.mangledname,pd);
  7236. end;
  7237. end;
  7238. end;
  7239. end;
  7240. procedure tobjectdef.finish_cpp_data;
  7241. begin
  7242. self.symtable.DefList.ForEachCall(@do_cpp_import_info,nil);
  7243. end;
  7244. {****************************************************************************
  7245. TImplementedInterface
  7246. ****************************************************************************}
  7247. function TImplementedInterface.GetIOffset: longint;
  7248. begin
  7249. if (fIOffset=-1) and
  7250. (IType in [etFieldValue,etFieldValueClass]) then
  7251. result:=tfieldvarsym(ImplementsField).fieldoffset
  7252. else
  7253. result:=fIOffset;
  7254. end;
  7255. constructor TImplementedInterface.create(aintf: tobjectdef);
  7256. begin
  7257. inherited create;
  7258. intfdef:=aintf;
  7259. intfdefderef.reset;
  7260. IOffset:=-1;
  7261. IType:=etStandard;
  7262. NameMappings:=nil;
  7263. procdefs:=nil;
  7264. end;
  7265. constructor TImplementedInterface.create_deref(intfd,getterd:tderef);
  7266. begin
  7267. inherited create;
  7268. intfdef:=nil;
  7269. intfdefderef:=intfd;
  7270. ImplementsGetterDeref:=getterd;
  7271. IOffset:=-1;
  7272. IType:=etStandard;
  7273. NameMappings:=nil;
  7274. procdefs:=nil;
  7275. end;
  7276. destructor TImplementedInterface.destroy;
  7277. var
  7278. i : longint;
  7279. mappedname : pshortstring;
  7280. begin
  7281. if assigned(NameMappings) then
  7282. begin
  7283. for i:=0 to NameMappings.Count-1 do
  7284. begin
  7285. mappedname:=pshortstring(NameMappings[i]);
  7286. stringdispose(mappedname);
  7287. end;
  7288. NameMappings.free;
  7289. NameMappings:=nil;
  7290. end;
  7291. if assigned(procdefs) then
  7292. begin
  7293. procdefs.free;
  7294. procdefs:=nil;
  7295. end;
  7296. inherited destroy;
  7297. end;
  7298. procedure TImplementedInterface.buildderef;
  7299. begin
  7300. intfdefderef.build(intfdef);
  7301. ImplementsGetterDeref.build(ImplementsGetter);
  7302. end;
  7303. procedure TImplementedInterface.deref;
  7304. begin
  7305. intfdef:=tobjectdef(intfdefderef.resolve);
  7306. ImplementsGetter:=tsym(ImplementsGetterDeref.resolve);
  7307. end;
  7308. procedure TImplementedInterface.AddMapping(const origname,newname: string);
  7309. begin
  7310. if not assigned(NameMappings) then
  7311. NameMappings:=TFPHashList.Create;
  7312. NameMappings.Add(origname,stringdup(newname));
  7313. end;
  7314. function TImplementedInterface.GetMapping(const origname: string):string;
  7315. var
  7316. mappedname : pshortstring;
  7317. begin
  7318. result:='';
  7319. if not assigned(NameMappings) then
  7320. exit;
  7321. mappedname:=PShortstring(NameMappings.Find(origname));
  7322. if assigned(mappedname) then
  7323. result:=mappedname^;
  7324. end;
  7325. procedure TImplementedInterface.AddImplProc(pd:tprocdef);
  7326. begin
  7327. if not assigned(procdefs) then
  7328. procdefs:=TFPObjectList.Create(false);
  7329. { duplicate entries must be stored, because multiple }
  7330. { interfaces can declare methods with the same name }
  7331. { and all of these get their own VMT entry }
  7332. procdefs.Add(pd);
  7333. end;
  7334. function TImplementedInterface.IsImplMergePossible(MergingIntf:TImplementedInterface;out weight: longint): boolean;
  7335. var
  7336. i : longint;
  7337. begin
  7338. result:=false;
  7339. { interfaces being implemented through delegation are not mergable (FK) }
  7340. if (IType<>etStandard) or (MergingIntf.IType<>etStandard) or not(assigned(ProcDefs)) or not(assigned(MergingIntf.ProcDefs)) then
  7341. exit;
  7342. weight:=0;
  7343. { empty interface is mergeable }
  7344. if ProcDefs.Count=0 then
  7345. begin
  7346. result:=true;
  7347. exit;
  7348. end;
  7349. { The interface to merge must at least the number of
  7350. procedures of this interface }
  7351. if MergingIntf.ProcDefs.Count<ProcDefs.Count then
  7352. exit;
  7353. for i:=0 to ProcDefs.Count-1 do
  7354. begin
  7355. if MergingIntf.ProcDefs[i]<>ProcDefs[i] then
  7356. exit;
  7357. end;
  7358. weight:=ProcDefs.Count;
  7359. result:=true;
  7360. end;
  7361. function TImplementedInterface.getcopy:TImplementedInterface;
  7362. begin
  7363. Result:=TImplementedInterface.Create(nil);
  7364. { 1) the procdefs list will be freed once for each copy
  7365. 2) since the procdefs list owns its elements, those will also be freed for each copy
  7366. 3) idem for the name mappings
  7367. }
  7368. { warning: this is completely wrong on so many levels...
  7369. Move(pointer(self)^,pointer(result)^,InstanceSize);
  7370. We need to make clean copies of the different fields
  7371. this is not implemented yet, and thus we generate an internal
  7372. error instead PM 2011-06-14 }
  7373. internalerror(2011061401);
  7374. end;
  7375. {****************************************************************************
  7376. TFORWARDDEF
  7377. ****************************************************************************}
  7378. constructor tforwarddef.create(const s:string;const pos:tfileposinfo);
  7379. begin
  7380. inherited create(forwarddef,true);
  7381. tosymname:=stringdup(s);
  7382. forwardpos:=pos;
  7383. end;
  7384. function tforwarddef.GetTypeName:string;
  7385. begin
  7386. GetTypeName:='unresolved forward to '+tosymname^;
  7387. end;
  7388. destructor tforwarddef.destroy;
  7389. begin
  7390. stringdispose(tosymname);
  7391. inherited destroy;
  7392. end;
  7393. function tforwarddef.getcopy:tstoreddef;
  7394. begin
  7395. result:=cforwarddef.create(tosymname^, forwardpos);
  7396. end;
  7397. {****************************************************************************
  7398. TUNDEFINEDDEF
  7399. ****************************************************************************}
  7400. constructor tundefineddef.create(doregister:boolean);
  7401. begin
  7402. inherited create(undefineddef,doregister);
  7403. end;
  7404. constructor tundefineddef.ppuload(ppufile:tcompilerppufile);
  7405. begin
  7406. inherited ppuload(undefineddef,ppufile);
  7407. ppuload_platform(ppufile);
  7408. end;
  7409. function tundefineddef.GetTypeName:string;
  7410. begin
  7411. GetTypeName:='<undefined type>';
  7412. end;
  7413. procedure tundefineddef.ppuwrite(ppufile:tcompilerppufile);
  7414. begin
  7415. inherited ppuwrite(ppufile);
  7416. writeentry(ppufile,ibundefineddef);
  7417. end;
  7418. {****************************************************************************
  7419. TERRORDEF
  7420. ****************************************************************************}
  7421. constructor terrordef.create;
  7422. begin
  7423. inherited create(errordef,true);
  7424. { prevent consecutive faults }
  7425. savesize:=1;
  7426. end;
  7427. procedure terrordef.ppuwrite(ppufile:tcompilerppufile);
  7428. begin
  7429. { Can't write errordefs to ppu }
  7430. internalerror(200411063);
  7431. end;
  7432. function terrordef.GetTypeName:string;
  7433. begin
  7434. GetTypeName:='<erroneous type>';
  7435. end;
  7436. function terrordef.getmangledparaname:TSymStr;
  7437. begin
  7438. getmangledparaname:='error';
  7439. end;
  7440. {****************************************************************************
  7441. Definition Helpers
  7442. ****************************************************************************}
  7443. function is_interfacecom(def: tdef): boolean;
  7444. begin
  7445. is_interfacecom:=
  7446. assigned(def) and
  7447. (def.typ=objectdef) and
  7448. (tobjectdef(def).objecttype=odt_interfacecom);
  7449. end;
  7450. function is_interfacecom_or_dispinterface(def: tdef): boolean;
  7451. begin
  7452. is_interfacecom_or_dispinterface:=
  7453. assigned(def) and
  7454. (def.typ=objectdef) and
  7455. (tobjectdef(def).objecttype in [odt_interfacecom,odt_dispinterface]);
  7456. end;
  7457. function is_any_interface_kind(def: tdef): boolean;
  7458. begin
  7459. result:=
  7460. assigned(def) and
  7461. (def.typ=objectdef) and
  7462. ((tobjectdef(def).objecttype in [odt_interfacecom,odt_dispinterface,odt_interfacecorba,odt_interfacejava,odt_objcprotocol]) or
  7463. is_objccategory(def));
  7464. end;
  7465. function is_interfacecorba(def: tdef): boolean;
  7466. begin
  7467. is_interfacecorba:=
  7468. assigned(def) and
  7469. (def.typ=objectdef) and
  7470. (tobjectdef(def).objecttype=odt_interfacecorba);
  7471. end;
  7472. function is_interface(def: tdef): boolean;
  7473. begin
  7474. is_interface:=
  7475. assigned(def) and
  7476. (def.typ=objectdef) and
  7477. (tobjectdef(def).objecttype in [odt_interfacecom,odt_interfacecorba]);
  7478. end;
  7479. function is_dispinterface(def: tdef): boolean;
  7480. begin
  7481. result:=
  7482. assigned(def) and
  7483. (def.typ=objectdef) and
  7484. (tobjectdef(def).objecttype=odt_dispinterface);
  7485. end;
  7486. function is_class(def: tdef): boolean;
  7487. begin
  7488. is_class:=
  7489. assigned(def) and
  7490. (def.typ=objectdef) and
  7491. (tobjectdef(def).objecttype=odt_class);
  7492. end;
  7493. function is_object(def: tdef): boolean;
  7494. begin
  7495. is_object:=
  7496. assigned(def) and
  7497. (def.typ=objectdef) and
  7498. (tobjectdef(def).objecttype=odt_object);
  7499. end;
  7500. function is_cppclass(def: tdef): boolean;
  7501. begin
  7502. is_cppclass:=
  7503. assigned(def) and
  7504. (def.typ=objectdef) and
  7505. (tobjectdef(def).objecttype=odt_cppclass);
  7506. end;
  7507. function is_objcclass(def: tdef): boolean;
  7508. begin
  7509. is_objcclass:=
  7510. assigned(def) and
  7511. (def.typ=objectdef) and
  7512. (tobjectdef(def).objecttype=odt_objcclass);
  7513. end;
  7514. function is_objectpascal_helper(def: tdef): boolean;
  7515. begin
  7516. result:=
  7517. assigned(def) and
  7518. (def.typ=objectdef) and
  7519. (tobjectdef(def).objecttype=odt_helper);
  7520. end;
  7521. function is_objcclassref(def: tdef): boolean;
  7522. begin
  7523. is_objcclassref:=
  7524. assigned(def) and
  7525. (def.typ=classrefdef) and
  7526. is_objcclass(tclassrefdef(def).pointeddef);
  7527. end;
  7528. function is_objcprotocol(def: tdef): boolean;
  7529. begin
  7530. result:=
  7531. assigned(def) and
  7532. (def.typ=objectdef) and
  7533. (tobjectdef(def).objecttype=odt_objcprotocol);
  7534. end;
  7535. function is_objccategory(def: tdef): boolean;
  7536. begin
  7537. result:=
  7538. assigned(def) and
  7539. (def.typ=objectdef) and
  7540. { if used as a forward type }
  7541. ((tobjectdef(def).objecttype=odt_objccategory) or
  7542. { if used as after it has been resolved }
  7543. ((tobjectdef(def).objecttype=odt_objcclass) and
  7544. (oo_is_classhelper in tobjectdef(def).objectoptions)));
  7545. end;
  7546. function is_objc_class_or_protocol(def: tdef): boolean;
  7547. begin
  7548. result:=
  7549. assigned(def) and
  7550. (def.typ=objectdef) and
  7551. (tobjectdef(def).objecttype in [odt_objcclass,odt_objcprotocol]);
  7552. end;
  7553. function is_objc_protocol_or_category(def: tdef): boolean;
  7554. begin
  7555. result:=
  7556. assigned(def) and
  7557. (def.typ=objectdef) and
  7558. ((tobjectdef(def).objecttype = odt_objcprotocol) or
  7559. ((tobjectdef(def).objecttype = odt_objcclass) and
  7560. (oo_is_classhelper in tobjectdef(def).objectoptions)));
  7561. end;
  7562. function is_classhelper(def: tdef): boolean;
  7563. begin
  7564. result:=
  7565. is_objectpascal_helper(def) or
  7566. is_objccategory(def);
  7567. end;
  7568. function is_class_or_interface(def: tdef): boolean;
  7569. begin
  7570. result:=
  7571. assigned(def) and
  7572. (def.typ=objectdef) and
  7573. (tobjectdef(def).objecttype in [odt_class,odt_interfacecom,odt_interfacecorba]);
  7574. end;
  7575. function is_class_or_interface_or_objc(def: tdef): boolean;
  7576. begin
  7577. result:=
  7578. assigned(def) and
  7579. (def.typ=objectdef) and
  7580. (tobjectdef(def).objecttype in [odt_class,odt_interfacecom,odt_interfacecorba,odt_objcclass,odt_objcprotocol]);
  7581. end;
  7582. function is_class_or_interface_or_objc_or_java(def: tdef): boolean;
  7583. begin
  7584. result:=
  7585. assigned(def) and
  7586. (def.typ=objectdef) and
  7587. (tobjectdef(def).objecttype in [odt_class,odt_interfacecom,odt_interfacecorba,odt_objcclass,odt_objcprotocol,odt_javaclass,odt_interfacejava]);
  7588. end;
  7589. function is_class_or_interface_or_dispinterface_or_objc_or_java(def: tdef): boolean;
  7590. begin
  7591. result:=
  7592. assigned(def) and
  7593. (def.typ=objectdef) and
  7594. (tobjectdef(def).objecttype in [odt_class,odt_interfacecom,odt_interfacecorba,odt_dispinterface,odt_objcclass,odt_objcprotocol,odt_javaclass,odt_interfacejava]);
  7595. end;
  7596. function is_class_or_interface_or_object(def: tdef): boolean;
  7597. begin
  7598. result:=
  7599. assigned(def) and
  7600. (def.typ=objectdef) and
  7601. (tobjectdef(def).objecttype in [odt_class,odt_interfacecom,odt_interfacecorba,odt_object]);
  7602. end;
  7603. function is_class_or_interface_or_dispinterface(def: tdef): boolean;
  7604. begin
  7605. result:=
  7606. assigned(def) and
  7607. (def.typ=objectdef) and
  7608. (tobjectdef(def).objecttype in [odt_class,odt_interfacecom,odt_interfacecorba,odt_dispinterface]);
  7609. end;
  7610. function is_implicit_pointer_object_type(def: tdef): boolean;
  7611. begin
  7612. result:=
  7613. assigned(def) and
  7614. (((def.typ=objectdef) and
  7615. (tobjectdef(def).objecttype in [odt_class,odt_interfacecom,odt_interfacecorba,odt_dispinterface,odt_objcclass,odt_objcprotocol,odt_helper,odt_javaclass,odt_interfacejava])) or
  7616. ((target_info.system in systems_jvm) and
  7617. (def.typ=recorddef)));
  7618. end;
  7619. function is_implicit_array_pointer(def: tdef): boolean;
  7620. begin
  7621. result:=is_dynamic_array(def) or is_dynamicstring(def);
  7622. end;
  7623. function is_class_or_object(def: tdef): boolean;
  7624. begin
  7625. result:=
  7626. assigned(def) and
  7627. (def.typ=objectdef) and
  7628. (tobjectdef(def).objecttype in [odt_class,odt_object]);
  7629. end;
  7630. function is_record(def: tdef): boolean;
  7631. begin
  7632. result:=
  7633. assigned(def) and
  7634. (def.typ=recorddef);
  7635. end;
  7636. function is_javaclass(def: tdef): boolean;
  7637. begin
  7638. result:=
  7639. assigned(def) and
  7640. (def.typ=objectdef) and
  7641. (tobjectdef(def).objecttype=odt_javaclass);
  7642. end;
  7643. function is_javaclassref(def: tdef): boolean;
  7644. begin
  7645. is_javaclassref:=
  7646. assigned(def) and
  7647. (def.typ=classrefdef) and
  7648. is_javaclass(tclassrefdef(def).pointeddef);
  7649. end;
  7650. function is_javainterface(def: tdef): boolean;
  7651. begin
  7652. result:=
  7653. assigned(def) and
  7654. (def.typ=objectdef) and
  7655. (tobjectdef(def).objecttype=odt_interfacejava);
  7656. end;
  7657. function is_java_class_or_interface(def: tdef): boolean;
  7658. begin
  7659. result:=
  7660. assigned(def) and
  7661. (def.typ=objectdef) and
  7662. (tobjectdef(def).objecttype in [odt_javaclass,odt_interfacejava]);
  7663. end;
  7664. procedure loadobjctypes;
  7665. begin
  7666. objc_metaclasstype:=tpointerdef(search_named_unit_globaltype('OBJC','POBJC_CLASS',true).typedef);
  7667. objc_superclasstype:=tpointerdef(search_named_unit_globaltype('OBJC','POBJC_SUPER',true).typedef);
  7668. objc_idtype:=tpointerdef(search_named_unit_globaltype('OBJC','ID',true).typedef);
  7669. objc_seltype:=tpointerdef(search_named_unit_globaltype('OBJC','SEL',true).typedef);
  7670. objc_objecttype:=trecorddef(search_named_unit_globaltype('OBJC','OBJC_OBJECT',true).typedef);
  7671. end;
  7672. procedure maybeloadcocoatypes;
  7673. var
  7674. tsym: ttypesym;
  7675. cocoaunit: string[15];
  7676. begin
  7677. if assigned(objc_fastenumeration) then
  7678. exit;
  7679. if not(target_info.system in [system_arm_darwin,system_i386_iphonesim,system_aarch64_darwin,system_x86_64_iphonesim]) then
  7680. cocoaunit:='COCOAALL'
  7681. else
  7682. cocoaunit:='IPHONEALL';
  7683. tsym:=search_named_unit_globaltype(cocoaunit,'NSFASTENUMERATIONPROTOCOL',false);
  7684. if assigned(tsym) then
  7685. objc_fastenumeration:=tobjectdef(tsym.typedef)
  7686. else
  7687. objc_fastenumeration:=nil;
  7688. tsym:=search_named_unit_globaltype(cocoaunit,'NSFASTENUMERATIONSTATE',false);
  7689. if assigned(tsym) then
  7690. objc_fastenumerationstate:=trecorddef(tsym.typedef)
  7691. else
  7692. objc_fastenumerationstate:=nil;
  7693. end;
  7694. function use_vectorfpu(def : tdef) : boolean;
  7695. begin
  7696. {$ifdef x86}
  7697. {$define use_vectorfpuimplemented}
  7698. use_vectorfpu:=(is_single(def) and (current_settings.fputype in sse_singlescalar)) or
  7699. (is_double(def) and (current_settings.fputype in sse_doublescalar));
  7700. {$endif x86}
  7701. {$ifdef arm}
  7702. {$define use_vectorfpuimplemented}
  7703. use_vectorfpu:=FPUARM_HAS_VFP_EXTENSION in fpu_capabilities[current_settings.fputype];
  7704. {$endif arm}
  7705. {$ifdef aarch64}
  7706. {$define use_vectorfpuimplemented}
  7707. use_vectorfpu:=true;
  7708. {$endif aarch64}
  7709. {$ifndef use_vectorfpuimplemented}
  7710. use_vectorfpu:=false;
  7711. {$endif}
  7712. end;
  7713. end.