symdef.pas 290 KB

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