hlcgobj.pas 226 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295
  1. {
  2. Copyright (c) 1998-2010 by Florian Klaempfl and Jonas Maebe
  3. Member of the Free Pascal development team
  4. This unit implements the basic high level code generator object
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. ****************************************************************************
  17. }
  18. {# @abstract(Abstract code generator unit)
  19. Abstract high level code generator unit. This contains the base class
  20. that either lowers most code to the regular code generator, or that
  21. has to be implemented/overridden for higher level targets (such as LLVM).
  22. }
  23. unit hlcgobj;
  24. {$i fpcdefs.inc}
  25. { define hlcginline}
  26. interface
  27. uses
  28. cclasses,globtype,constexp,
  29. cpubase,cgbase,cgutils,parabase,
  30. aasmbase,aasmtai,aasmdata,aasmcpu,
  31. symconst,symbase,symtype,symsym,symdef,
  32. node,nutils,
  33. tgobj
  34. ;
  35. type
  36. tsubsetloadopt = (SL_REG,SL_REGNOSRCMASK,SL_SETZERO,SL_SETMAX);
  37. preplaceregrec = ^treplaceregrec;
  38. treplaceregrec = record
  39. old, new: tregister;
  40. oldhi, newhi: tregister;
  41. ressym: tsym;
  42. { moved sym }
  43. sym : tabstractnormalvarsym;
  44. end;
  45. {# @abstract(Abstract high level code generator)
  46. This class implements an abstract instruction generator. All
  47. methods of this class are generic and are mapped to low level code
  48. generator methods by default. They have to be overridden for higher
  49. level targets
  50. }
  51. { thlcgobj }
  52. thlcgobj = class
  53. public
  54. {************************************************}
  55. { basic routines }
  56. constructor create;
  57. {# Initialize the register allocators needed for the codegenerator.}
  58. procedure init_register_allocators;virtual;
  59. {# Clean up the register allocators needed for the codegenerator.}
  60. procedure done_register_allocators;virtual;
  61. {# Set whether live_start or live_end should be updated when allocating registers, needed when e.g. generating initcode after the rest of the code. }
  62. procedure set_regalloc_live_range_direction(dir: TRADirection);virtual;
  63. {# Gets a register suitable to do integer operations on.}
  64. function getintregister(list:TAsmList;size:tdef):Tregister;virtual;
  65. {# Gets a register suitable to do integer operations on.}
  66. function getaddressregister(list:TAsmList;size:tdef):Tregister;virtual;
  67. function getfpuregister(list:TAsmList;size:tdef):Tregister;virtual;
  68. { warning: only works correctly for fpu types currently }
  69. function getmmregister(list:TAsmList;size:tdef):Tregister;virtual;
  70. function getflagregister(list:TAsmList;size:tdef):Tregister;virtual;
  71. function gettempregister(list:TAsmList;size:tdef):Tregister;virtual;
  72. function getregisterfordef(list: TAsmList;size:tdef):Tregister;virtual;
  73. {Does the generic cg need SIMD registers, like getmmxregister? Or should
  74. the cpu specific child cg object have such a method?}
  75. function uses_registers(rt:Tregistertype):boolean; inline;
  76. {# Get a specific register.}
  77. procedure getcpuregister(list:TAsmList;r:Tregister);virtual;
  78. procedure ungetcpuregister(list:TAsmList;r:Tregister);virtual;
  79. {# Get multiple registers specified.}
  80. procedure alloccpuregisters(list:TAsmList;rt:Tregistertype;const r:Tcpuregisterset);virtual;
  81. {# Free multiple registers specified.}
  82. procedure dealloccpuregisters(list:TAsmList;rt:Tregistertype;const r:Tcpuregisterset);virtual;
  83. procedure allocallcpuregisters(list:TAsmList);virtual;
  84. procedure deallocallcpuregisters(list:TAsmList);virtual;
  85. procedure do_register_allocation(list:TAsmList;headertai:tai); inline;
  86. procedure translate_register(var reg : tregister); inline;
  87. {# Returns the kind of register this type should be loaded in (it does not
  88. check whether this is actually possible, but if it's loaded in a register
  89. by the compiler for any purpose other than parameter passing/function
  90. result loading, this is the register type used) }
  91. class function def2regtyp(def: tdef): tregistertype; virtual;
  92. {# Returns a reference with its base address set from a pointer that
  93. has been loaded in a register.
  94. A generic version is provided. This routine should be overridden
  95. on platforms which support pointers with different sizes (for
  96. example i8086 near and far pointers) or require some other sort of
  97. special consideration when converting a pointer in a register to a
  98. reference.
  99. @param(ref where the result is returned)
  100. @param(regsize the type of the pointer, contained in the reg parameter)
  101. @param(reg register containing the value of a pointer)
  102. }
  103. procedure reference_reset_base(var ref: treference; regsize: tdef; reg: tregister; offset, alignment: longint; volatility: tvolatilityset); virtual;
  104. {# Returns a reference corresponding to a temp }
  105. procedure temp_to_ref(p: ptemprecord; out ref: treference); virtual;
  106. {# Emit a label to the instruction stream. }
  107. procedure a_label(list : TAsmList;l : tasmlabel); inline;
  108. {# Allocates register r by inserting a pai_realloc record }
  109. procedure a_reg_alloc(list : TAsmList;r : tregister); inline;
  110. {# Deallocates register r by inserting a pa_regdealloc record}
  111. procedure a_reg_dealloc(list : TAsmList;r : tregister); inline;
  112. { Synchronize register, make sure it is still valid }
  113. procedure a_reg_sync(list : TAsmList;r : tregister); inline;
  114. {# Pass a parameter, which is located in a register, to a routine.
  115. This routine should push/send the parameter to the routine, as
  116. required by the specific processor ABI and routine modifiers.
  117. It must generate register allocation information for the cgpara in
  118. case it consists of cpuregisters.
  119. @param(size size of the operand in the register)
  120. @param(r register source of the operand)
  121. @param(cgpara where the parameter will be stored)
  122. }
  123. procedure a_load_reg_cgpara(list : TAsmList;size : tdef;r : tregister;const cgpara : TCGPara);virtual;
  124. {# Pass a parameter, which is a constant, to a routine.
  125. A generic version is provided. This routine should
  126. be overridden for optimization purposes if the cpu
  127. permits directly sending this type of parameter.
  128. It must generate register allocation information for the cgpara in
  129. case it consists of cpuregisters.
  130. @param(size size of the operand in constant)
  131. @param(a value of constant to send)
  132. @param(cgpara where the parameter will be stored)
  133. }
  134. procedure a_load_const_cgpara(list : TAsmList;tosize : tdef;a : tcgint;const cgpara : TCGPara);virtual;
  135. {# Pass the value of a parameter, which is located in memory, to a routine.
  136. A generic version is provided. This routine should
  137. be overridden for optimization purposes if the cpu
  138. permits directly sending this type of parameter.
  139. It must generate register allocation information for the cgpara in
  140. case it consists of cpuregisters.
  141. @param(size size of the operand in constant)
  142. @param(r Memory reference of value to send)
  143. @param(cgpara where the parameter will be stored)
  144. }
  145. procedure a_load_ref_cgpara(list : TAsmList;size : tdef;const r : treference;const cgpara : TCGPara);virtual;
  146. {# Pass the value of a parameter, which can be located either in a register or memory location,
  147. to a routine.
  148. A generic version is provided.
  149. @param(l location of the operand to send)
  150. @param(nr parameter number (starting from one) of routine (from left to right))
  151. @param(cgpara where the parameter will be stored)
  152. }
  153. procedure a_load_loc_cgpara(list : TAsmList;size : tdef; const l : tlocation;const cgpara : TCGPara);virtual;
  154. {# Pass the address of a reference to a routine. This routine
  155. will calculate the address of the reference, and pass this
  156. calculated address as a parameter.
  157. It must generate register allocation information for the cgpara in
  158. case it consists of cpuregisters.
  159. A generic version is provided. This routine should
  160. be overridden for optimization purposes if the cpu
  161. permits directly sending this type of parameter.
  162. @param(fromsize type of the reference we are taking the address of)
  163. @param(tosize type of the pointer that we get as a result)
  164. @param(r reference to get address from)
  165. }
  166. procedure a_loadaddr_ref_cgpara(list : TAsmList;fromsize : tdef;const r : treference;const cgpara : TCGPara);virtual;
  167. { Remarks:
  168. * If a method specifies a size you have only to take care
  169. of that number of bits, i.e. load_const_reg with OP_8 must
  170. only load the lower 8 bit of the specified register
  171. the rest of the register can be undefined
  172. if necessary the compiler will call a method
  173. to zero or sign extend the register
  174. * The a_load_XX_XX with OP_64 needn't to be
  175. implemented for 32 bit
  176. processors, the code generator takes care of that
  177. * the addr size is for work with the natural pointer
  178. size
  179. * the procedures without fpu/mm are only for integer usage
  180. * normally the first location is the source and the
  181. second the destination
  182. }
  183. {# Emits instruction to call the method specified by symbol name.
  184. Returns the function result location.
  185. This routine must be overridden for each new target cpu.
  186. }
  187. function a_call_name(list : TAsmList;pd : tprocdef;const s : TSymStr; const paras: array of pcgpara; forceresdef: tdef; weak: boolean): tcgpara;virtual;abstract;
  188. function a_call_reg(list : TAsmList;pd : tabstractprocdef;reg : tregister; const paras: array of pcgpara): tcgpara;virtual;abstract;
  189. { same as a_call_name, might be overridden on certain architectures to emit
  190. static calls without usage of a got trampoline }
  191. function a_call_name_static(list : TAsmList;pd : tprocdef;const s : TSymStr; const paras: array of pcgpara; forceresdef: tdef): tcgpara;virtual;
  192. { same as a_call_name, might be overridden on certain architectures to emit
  193. special static calls for inherited methods }
  194. function a_call_name_inherited(list : TAsmList;pd : tprocdef;const s : TSymStr; const paras: array of pcgpara): tcgpara;virtual;
  195. { move instructions }
  196. procedure a_load_const_reg(list : TAsmList;tosize : tdef;a : tcgint;register : tregister);virtual;abstract;
  197. procedure a_load_const_ref(list : TAsmList;tosize : tdef;a : tcgint;const ref : treference);virtual;
  198. procedure a_load_const_loc(list : TAsmList;tosize : tdef;a : tcgint;const loc : tlocation);virtual;
  199. procedure a_load_reg_ref(list : TAsmList;fromsize, tosize : tdef;register : tregister;const ref : treference);virtual;abstract;
  200. procedure a_load_reg_ref_unaligned(list : TAsmList;fromsize, tosize : tdef;register : tregister;const ref : treference);virtual;
  201. procedure a_load_reg_reg(list : TAsmList;fromsize, tosize : tdef;reg1,reg2 : tregister);virtual;abstract;
  202. procedure a_load_reg_loc(list : TAsmList;fromsize, tosize : tdef;reg : tregister;const loc: tlocation);virtual;
  203. procedure a_load_ref_reg(list : TAsmList;fromsize, tosize : tdef;const ref : treference;register : tregister);virtual;abstract;
  204. procedure a_load_ref_reg_unaligned(list : TAsmList;fromsize, tosize : tdef;const ref : treference;register : tregister);virtual;
  205. procedure a_load_ref_ref(list : TAsmList;fromsize, tosize : tdef;const sref : treference;const dref : treference);virtual;
  206. procedure a_load_loc_reg(list : TAsmList;fromsize, tosize : tdef; const loc: tlocation; reg : tregister);virtual;
  207. procedure a_load_loc_ref(list : TAsmList;fromsize, tosize: tdef; const loc: tlocation; const ref : treference);virtual;
  208. procedure a_load_loc_subsetreg(list : TAsmList;fromsize, tosubsetsize: tdef; const loc: tlocation; const sreg : tsubsetregister);virtual;
  209. procedure a_load_loc_subsetref(list : TAsmList;fromsize, tosubsetsize: tdef; const loc: tlocation; const sref : tsubsetreference);virtual;
  210. procedure a_loadaddr_ref_reg(list : TAsmList;fromsize, tosize : tdef;const ref : treference;r : tregister);virtual;abstract;
  211. { For subsetreg/ref, the def is the size of the packed element. The
  212. size of the register that holds the data is a tcgsize, and hence
  213. always must be an orddef of the corresponding size in practice }
  214. procedure a_load_subsetreg_reg(list : TAsmList; subsetsize, tosize: tdef; const sreg: tsubsetregister; destreg: tregister); virtual;
  215. procedure a_load_reg_subsetreg(list : TAsmList; fromsize, tosubsetsize: tdef; fromreg: tregister; const sreg: tsubsetregister); virtual;
  216. procedure a_load_subsetreg_subsetreg(list: TAsmlist; fromsubsetsize, tosubsetsize : tdef; const fromsreg, tosreg: tsubsetregister); virtual;
  217. procedure a_load_subsetreg_ref(list : TAsmList; fromsubsetsize, tosize: tdef; const sreg: tsubsetregister; const destref: treference); virtual;
  218. procedure a_load_ref_subsetreg(list : TAsmList; fromsize, tosubsetsize: tdef; const fromref: treference; const sreg: tsubsetregister); virtual;
  219. procedure a_load_const_subsetreg(list: TAsmlist; tosubsetsize: tdef; a: tcgint; const sreg: tsubsetregister); virtual;
  220. procedure a_load_subsetreg_loc(list: TAsmlist; fromsubsetsize, tosize: tdef; const sreg: tsubsetregister; const loc: tlocation); virtual;
  221. procedure a_load_subsetref_reg(list : TAsmList; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; destreg: tregister); virtual;
  222. procedure a_load_reg_subsetref(list : TAsmList; fromsize, tosubsetsize: tdef; fromreg: tregister; const sref: tsubsetreference); virtual;
  223. procedure a_load_subsetref_subsetref(list: TAsmlist; fromsubsetsize, tosubsetsize : tdef; const fromsref, tosref: tsubsetreference); virtual;
  224. procedure a_load_subsetref_ref(list : TAsmList; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; const destref: treference); virtual;
  225. procedure a_load_ref_subsetref(list : TAsmList; fromsize, tosubsetsize: tdef; const fromref: treference; const sref: tsubsetreference); virtual;
  226. procedure a_load_const_subsetref(list: TAsmlist; tosubsetsize: tdef; a: tcgint; const sref: tsubsetreference); virtual;
  227. procedure a_load_subsetref_loc(list: TAsmlist; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; const loc: tlocation); virtual;
  228. procedure a_load_subsetref_subsetreg(list: TAsmlist; fromsubsetsize, tosubsetsize : tdef; const fromsref: tsubsetreference; const tosreg: tsubsetregister); virtual;
  229. procedure a_load_subsetreg_subsetref(list: TAsmlist; fromsubsetsize, tosubsetsize : tdef; const fromsreg: tsubsetregister; const tosref: tsubsetreference); virtual;
  230. { bit test instructions }
  231. procedure a_bit_test_reg_reg_reg(list : TAsmList; bitnumbersize,valuesize,destsize: tdef;bitnumber,value,destreg: tregister); virtual;
  232. procedure a_bit_test_const_ref_reg(list: TAsmList; fromsize, destsize: tdef; bitnumber: aint; const ref: treference; destreg: tregister); virtual;
  233. procedure a_bit_test_const_reg_reg(list: TAsmList; setregsize, destsize: tdef; bitnumber: aint; setreg, destreg: tregister); virtual;
  234. procedure a_bit_test_const_subsetreg_reg(list: TAsmList; fromsubsetsize, destsize: tdef; bitnumber: aint; const setreg: tsubsetregister; destreg: tregister); virtual;
  235. procedure a_bit_test_reg_ref_reg(list: TAsmList; bitnumbersize, refsize, destsize: tdef; bitnumber: tregister; const ref: treference; destreg: tregister); virtual;
  236. procedure a_bit_test_reg_loc_reg(list: TAsmList; bitnumbersize, locsize, destsize: tdef; bitnumber: tregister; const loc: tlocation; destreg: tregister);virtual;
  237. procedure a_bit_test_const_loc_reg(list: TAsmList; locsize, destsize: tdef; bitnumber: aint; const loc: tlocation; destreg: tregister);virtual;
  238. { bit set/clear instructions }
  239. procedure a_bit_set_reg_reg(list : TAsmList; doset: boolean; bitnumbersize, destsize: tdef; bitnumber,dest: tregister); virtual;
  240. procedure a_bit_set_const_ref(list: TAsmList; doset: boolean;destsize: tdef; bitnumber: tcgint; const ref: treference); virtual;
  241. procedure a_bit_set_const_reg(list: TAsmList; doset: boolean; destsize: tdef; bitnumber: tcgint; destreg: tregister); virtual;
  242. procedure a_bit_set_const_subsetreg(list: TAsmList; doset: boolean; destsize: tdef; bitnumber: tcgint; const destreg: tsubsetregister); virtual;
  243. procedure a_bit_set_reg_ref(list: TAsmList; doset: boolean; fromsize, tosize: tdef; bitnumber: tregister; const ref: treference); virtual;
  244. procedure a_bit_set_reg_loc(list: TAsmList; doset: boolean; regsize, tosize: tdef; bitnumber: tregister; const loc: tlocation);virtual;
  245. procedure a_bit_set_const_loc(list: TAsmList; doset: boolean; tosize: tdef; bitnumber: tcgint; const loc: tlocation);virtual;
  246. function get_call_result_cgpara(pd: tabstractprocdef; forceresdef: tdef): tcgpara; virtual;
  247. protected
  248. procedure get_subsetref_load_info(const sref: tsubsetreference; out loadsize: torddef; out extra_load: boolean);
  249. procedure a_load_subsetref_regs_noindex(list: TAsmList; subsetsize: tdef; loadbitsize: byte; const sref: tsubsetreference; valuereg, extra_value_reg: tregister); virtual;
  250. procedure a_load_subsetref_regs_index(list: TAsmList; subsetsize: tdef; loadbitsize: byte; const sref: tsubsetreference; valuereg: tregister); virtual;
  251. procedure a_load_regconst_subsetref_intern(list : TAsmList; fromsize, subsetsize: tdef; fromreg: tregister; const sref: tsubsetreference; slopt: tsubsetloadopt); virtual;
  252. procedure a_load_regconst_subsetreg_intern(list : TAsmList; fromsize, subsetsize: tdef; fromreg: tregister; const sreg: tsubsetregister; slopt: tsubsetloadopt); virtual;
  253. { return a subsetref that represents bit "bitnumber" in ref, if ref
  254. has the type "refdef". The subsetref must be addressable via
  255. (unsigned) 8 bit access, unless all the *_bit_* methods are
  256. overloaded and use something else. }
  257. function get_bit_const_ref_sref(bitnumber: tcgint; refdef: tdef; const ref: treference): tsubsetreference;
  258. function get_bit_const_reg_sreg(setregsize: tdef; bitnumber: tcgint; setreg: tregister): tsubsetregister;
  259. function get_bit_reg_ref_sref(list: TAsmList; bitnumbersize, refsize: tdef; bitnumber: tregister; const ref: treference): tsubsetreference;
  260. public
  261. { bit scan instructions (still need transformation to thlcgobj) }
  262. procedure a_bit_scan_reg_reg(list: TAsmList; reverse: boolean; srcsize, dstsize: tdef; src, dst: tregister); virtual; abstract;
  263. { fpu move instructions }
  264. procedure a_loadfpu_reg_reg(list: TAsmList; fromsize, tosize: tdef; reg1, reg2: tregister); virtual; abstract;
  265. procedure a_loadfpu_ref_reg(list: TAsmList; fromsize, tosize: tdef; const ref: treference; reg: tregister); virtual; abstract;
  266. procedure a_loadfpu_reg_ref(list: TAsmList; fromsize, tosize: tdef; reg: tregister; const ref: treference); virtual; abstract;
  267. procedure a_loadfpu_ref_ref(list: TAsmList; fromsize, tosize: tdef; const ref1,ref2: treference);virtual;
  268. procedure a_loadfpu_loc_reg(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const reg: tregister);virtual;
  269. procedure a_loadfpu_loc_ref(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const ref: treference);virtual;
  270. procedure a_loadfpu_reg_loc(list: TAsmList; fromsize, tosize: tdef; const reg: tregister; const loc: tlocation);virtual;
  271. procedure a_loadfpu_reg_cgpara(list : TAsmList;fromsize: tdef;const r : tregister;const cgpara : TCGPara);virtual;
  272. procedure a_loadfpu_ref_cgpara(list : TAsmList;fromsize : tdef;const ref : treference;const cgpara : TCGPara);virtual;
  273. { vector register move instructions }
  274. procedure a_loadmm_reg_reg(list: TAsmList; fromsize, tosize: tdef;reg1, reg2: tregister;shuffle : pmmshuffle); virtual; abstract;
  275. procedure a_loadmm_ref_reg(list: TAsmList; fromsize, tosize: tdef;const ref: treference; reg: tregister;shuffle : pmmshuffle); virtual; abstract;
  276. procedure a_loadmm_reg_ref(list: TAsmList; fromsize, tosize: tdef;reg: tregister; const ref: treference;shuffle : pmmshuffle); virtual; abstract;
  277. procedure a_loadmm_ref_ref(list: TAsmList; fromsize, tosize: tdef; const fromref, toref: treference; shuffle: pmmshuffle); virtual;
  278. { required for subsetreg/ref; still tcgsize rather than tdef because of reason mentioned above }
  279. procedure a_loadmm_loc_reg(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const reg: tregister; shuffle : pmmshuffle);virtual;
  280. procedure a_loadmm_reg_loc(list: TAsmList; fromsize, tosize: tdef; const reg: tregister; const loc: tlocation;shuffle : pmmshuffle);virtual;
  281. procedure a_loadmm_loc_ref(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const ref: treference; shuffle : pmmshuffle);virtual;
  282. procedure a_loadmm_reg_cgpara(list: TAsmList; fromsize: tdef; reg: tregister;const cgpara : TCGPara;shuffle : pmmshuffle); virtual;
  283. procedure a_loadmm_ref_cgpara(list: TAsmList; fromsize: tdef; const ref: treference;const cgpara : TCGPara;shuffle : pmmshuffle); virtual;
  284. procedure a_loadmm_loc_cgpara(list: TAsmList; fromsize: tdef; const loc: tlocation; const cgpara : TCGPara;shuffle : pmmshuffle); virtual;
  285. procedure a_opmm_reg_reg(list: TAsmList; Op: TOpCG; size : tdef;src,dst: tregister;shuffle : pmmshuffle); virtual; abstract;
  286. procedure a_opmm_ref_reg(list: TAsmList; Op: TOpCG; size : tdef;const ref: treference; reg: tregister;shuffle : pmmshuffle); virtual;
  287. procedure a_opmm_loc_reg(list: TAsmList; Op: TOpCG; size : tdef;const loc: tlocation; reg: tregister;shuffle : pmmshuffle); virtual;
  288. procedure a_opmm_reg_ref(list: TAsmList; Op: TOpCG; size : tdef;reg: tregister;const ref: treference; shuffle : pmmshuffle); virtual;
  289. { requires a temp that is interpreted in two different ways, and we
  290. don't have a way (yet) to tag a treference with tdef information so
  291. targets like LLVM can insert the necessary bitcast
  292. }
  293. procedure a_loadmm_intreg_reg(list: TAsmList; fromsize, tosize : tdef; intreg, mmreg: tregister; shuffle: pmmshuffle); virtual; abstract;
  294. procedure a_loadmm_reg_intreg(list: TAsmList; fromsize, tosize : tdef; mmreg, intreg: tregister; shuffle : pmmshuffle); virtual; abstract;
  295. { basic arithmetic operations }
  296. { note: for operators which require only one argument (not, neg), use }
  297. { the op_reg_reg, op_reg_ref or op_reg_loc methods and keep in mind }
  298. { that in this case the *second* operand is used as both source and }
  299. { destination (JM) }
  300. procedure a_op_const_reg(list : TAsmList; Op: TOpCG; size: tdef; a: tcgint; reg: TRegister); virtual; abstract;
  301. procedure a_op_const_ref(list : TAsmList; Op: TOpCG; size: tdef; a: tcgint; const ref: TReference); virtual;
  302. procedure a_op_const_subsetreg(list : TAsmList; Op : TOpCG; size, subsetsize : tdef; a : tcgint; const sreg: tsubsetregister); virtual;
  303. procedure a_op_const_subsetref(list : TAsmList; Op : TOpCG; size, subsetsize : tdef; a : tcgint; const sref: tsubsetreference); virtual;
  304. procedure a_op_const_loc(list : TAsmList; Op: TOpCG; size: tdef; a: tcgint; const loc: tlocation);virtual;
  305. procedure a_op_reg_reg(list : TAsmList; Op: TOpCG; size: tdef; reg1, reg2: TRegister); virtual; abstract;
  306. procedure a_op_reg_ref(list : TAsmList; Op: TOpCG; size: tdef; reg: TRegister; const ref: TReference); virtual;
  307. procedure a_op_ref_reg(list : TAsmList; Op: TOpCG; size: tdef; const ref: TReference; reg: TRegister); virtual;
  308. procedure a_op_reg_subsetreg(list: TAsmList; Op: TOpCG; opsize, destsubsetsize: tdef; reg: TRegister; const sreg: tsubsetregister); virtual;
  309. procedure a_op_reg_subsetref(list: TAsmList; Op: TOpCG; opsize, destsubsetsize: tdef; reg: TRegister; const sref: tsubsetreference); virtual;
  310. procedure a_op_reg_loc(list : TAsmList; Op: TOpCG; size: tdef; reg: tregister; const loc: tlocation);virtual;
  311. procedure a_op_ref_loc(list : TAsmList; Op: TOpCG; size: tdef; const ref: TReference; const loc: tlocation);virtual;
  312. { trinary operations for processors that support them, 'emulated' }
  313. { on others. None with "ref" arguments since I don't think there }
  314. { are any processors that support it (JM) }
  315. procedure a_op_const_reg_reg(list: TAsmList; op: TOpCg; size: tdef; a: tcgint; src, dst: tregister); virtual;
  316. procedure a_op_reg_reg_reg(list: TAsmList; op: TOpCg; size: tdef; src1, src2, dst: tregister); virtual;
  317. procedure a_op_const_reg_reg_checkoverflow(list: TAsmList; op: TOpCg; size: tdef; a: tcgint; src, dst: tregister;setflags : boolean;var ovloc : tlocation); virtual;
  318. procedure a_op_reg_reg_reg_checkoverflow(list: TAsmList; op: TOpCg; size: tdef; src1, src2, dst: tregister;setflags : boolean;var ovloc : tlocation); virtual;
  319. { comparison operations }
  320. procedure a_cmp_const_reg_label(list : TAsmList;size : tdef;cmp_op : topcmp;a : tcgint;reg : tregister;
  321. l : tasmlabel);virtual;
  322. procedure a_cmp_const_ref_label(list : TAsmList;size : tdef;cmp_op : topcmp;a : tcgint;const ref : treference;
  323. l : tasmlabel); virtual;
  324. procedure a_cmp_const_loc_label(list: TAsmList; size: tdef;cmp_op: topcmp; a: tcgint; const loc: tlocation;
  325. l : tasmlabel);virtual;
  326. procedure a_cmp_reg_reg_label(list : TAsmList;size : tdef;cmp_op : topcmp;reg1,reg2 : tregister;l : tasmlabel); virtual; abstract;
  327. procedure a_cmp_ref_reg_label(list : TAsmList;size : tdef;cmp_op : topcmp; const ref: treference; reg : tregister; l : tasmlabel); virtual;
  328. procedure a_cmp_reg_ref_label(list : TAsmList;size : tdef;cmp_op : topcmp;reg : tregister; const ref: treference; l : tasmlabel); virtual;
  329. procedure a_cmp_subsetreg_reg_label(list: TAsmList; fromsubsetsize, cmpsize: tdef; cmp_op: topcmp; const sreg: tsubsetregister; reg: tregister; l: tasmlabel); virtual;
  330. procedure a_cmp_subsetref_reg_label(list: TAsmList; fromsubsetsize, cmpsize: tdef; cmp_op: topcmp; const sref: tsubsetreference; reg: tregister; l: tasmlabel); virtual;
  331. procedure a_cmp_loc_reg_label(list : TAsmList;size : tdef;cmp_op : topcmp; const loc: tlocation; reg : tregister; l : tasmlabel);virtual;
  332. procedure a_cmp_reg_loc_label(list : TAsmList;size : tdef;cmp_op : topcmp; reg: tregister; const loc: tlocation; l : tasmlabel);
  333. procedure a_cmp_ref_loc_label(list: TAsmList; size: tdef;cmp_op: topcmp; const ref: treference; const loc: tlocation; l : tasmlabel);virtual;
  334. procedure a_jmp_always(list : TAsmList;l: tasmlabel); virtual;abstract;
  335. {$ifdef cpuflags}
  336. procedure a_jmp_flags(list : TAsmList;const f : TResFlags;l: tasmlabel); virtual; abstract;
  337. {# Depending on the value to check in the flags, either sets the register reg to one (if the flag is set)
  338. or zero (if the flag is cleared). The size parameter indicates the destination size register.
  339. }
  340. procedure g_flags2reg(list: TAsmList; size: tdef; const f: tresflags; reg: TRegister); virtual; abstract;
  341. procedure g_flags2ref(list: TAsmList; size: tdef; const f: tresflags; const ref:TReference); virtual; abstract;
  342. {$endif cpuflags}
  343. {#
  344. This routine is used in exception management nodes. It should
  345. save the exception reason currently in the reg. The
  346. save should be done either to a temp (pointed to by href).
  347. or on the stack (pushing the value on the stack).
  348. }
  349. procedure g_exception_reason_save(list : TAsmList; fromsize, tosize: tdef; reg: tregister; const href : treference);virtual;
  350. {#
  351. This routine is used in exception management nodes. It should
  352. save the exception reason constant. The
  353. save should be done either to a temp (pointed to by href).
  354. or on the stack (pushing the value on the stack).
  355. The size of the value to save is OS_S32. The default version
  356. saves the exception reason to a temp. memory area.
  357. }
  358. procedure g_exception_reason_save_const(list: TAsmList; size: tdef; a: tcgint; const href: treference);virtual;
  359. {#
  360. This routine is used in exception management nodes. It should
  361. load the exception reason to reg. The saved value
  362. should either be in the temp. area (pointed to by href , href should
  363. *NOT* be freed) or on the stack (the value should be popped).
  364. The size of the value to save is OS_S32. The default version
  365. saves the exception reason to a temp. memory area.
  366. }
  367. procedure g_exception_reason_load(list : TAsmList; fromsize, tosize: tdef; const href : treference; reg: tregister);virtual;
  368. {#
  369. This routine is called when the current exception reason can be
  370. discarded. On platforms that use push/pop, it causes the current
  371. value to be popped. On other platforms it doesn't do anything
  372. }
  373. procedure g_exception_reason_discard(list : TAsmList; size: tdef; href: treference); virtual;
  374. procedure g_maybe_testself(list : TAsmList; selftype: tdef; reg:tregister);
  375. // procedure g_maybe_testvmt(list : TAsmList;reg:tregister;objdef:tobjectdef);
  376. {# This should emit the opcode to copy len bytes from the source
  377. to destination.
  378. It must be overridden for each new target processor.
  379. @param(source Source reference of copy)
  380. @param(dest Destination reference of copy)
  381. }
  382. procedure g_concatcopy(list : TAsmList;size: tdef; const source,dest : treference);virtual;
  383. {# This should emit the opcode to copy len bytes from the an unaligned source
  384. to destination.
  385. It must be overridden for each new target processor.
  386. @param(source Source reference of copy)
  387. @param(dest Destination reference of copy)
  388. }
  389. procedure g_concatcopy_unaligned(list : TAsmList;size: tdef; const source,dest : treference);virtual;
  390. {# This should emit the opcode to a shortrstring from the source
  391. to destination.
  392. @param(source Source reference of copy)
  393. @param(dest Destination reference of copy)
  394. }
  395. procedure g_copyshortstring(list : TAsmList;const source,dest : treference;strdef:tstringdef);virtual;
  396. procedure g_copyvariant(list : TAsmList;const source,dest : treference;vardef:tvariantdef);virtual;
  397. procedure g_incrrefcount(list : TAsmList;t: tdef; const ref: treference);virtual;
  398. procedure g_initialize(list : TAsmList;t : tdef;const ref : treference);virtual;
  399. procedure g_finalize(list : TAsmList;t : tdef;const ref : treference);virtual;
  400. procedure g_array_rtti_helper(list: TAsmList; t: tdef; const ref: treference; const highloc: tlocation;
  401. const name: string);virtual;
  402. protected
  403. { helper called by g_incrrefcount, g_initialize, g_finalize and
  404. g_array_rtti_helper to determine whether the RTTI symbol representing
  405. t needs to be loaded using the indirect symbol }
  406. function def_needs_indirect(t:tdef):boolean;
  407. public
  408. {# Generates range checking code. It is to note
  409. that this routine does not need to be overridden,
  410. as it takes care of everything.
  411. @param(p Node which contains the value to check)
  412. @param(todef Type definition of node to range check)
  413. }
  414. procedure g_rangecheck(list: TAsmList; const l:tlocation; fromdef,todef: tdef); virtual;
  415. {# Generates overflow checking code for a node }
  416. procedure g_overflowcheck(list: TAsmList; const Loc:tlocation; def:tdef); virtual; abstract;
  417. procedure g_overflowCheck_loc(List:TAsmList;const Loc:TLocation;def:TDef;var ovloc : tlocation);virtual; abstract;
  418. procedure g_copyvaluepara_openarray(list : TAsmList;const ref:treference;const lenloc:tlocation;arrdef: tarraydef;destreg:tregister);virtual;
  419. procedure g_releasevaluepara_openarray(list : TAsmList;arrdef: tarraydef;const l:tlocation);virtual;
  420. {# Emits instructions when compilation is done in profile
  421. mode (this is set as a command line option). The default
  422. behavior does nothing, should be overridden as required.
  423. }
  424. procedure g_profilecode(list : TAsmList);virtual;
  425. {# Emits instruction for allocating @var(size) bytes at the stackpointer
  426. @param(size Number of bytes to allocate)
  427. }
  428. procedure g_stackpointer_alloc(list : TAsmList;size : longint);virtual; abstract;
  429. {# Emits instruction for allocating the locals in entry
  430. code of a routine. This is one of the first
  431. routine called in @var(genentrycode).
  432. @param(localsize Number of bytes to allocate as locals)
  433. }
  434. procedure g_proc_entry(list : TAsmList;localsize : longint;nostackframe:boolean);virtual; abstract;
  435. {# Emits instructions for returning from a subroutine.
  436. Should also restore the framepointer and stack.
  437. @param(parasize Number of bytes of parameters to deallocate from stack)
  438. }
  439. procedure g_proc_exit(list : TAsmList;parasize:longint;nostackframe:boolean);virtual; abstract;
  440. procedure g_intf_wrapper(list: TAsmList; procdef: tprocdef; const labelname: string; ioffset: longint);virtual; abstract;
  441. procedure g_adjust_self_value(list:TAsmList;procdef: tprocdef;ioffset: aint);virtual; abstract;
  442. protected
  443. procedure a_jmp_external_name(list: TAsmList; const externalname: TSymStr); virtual;
  444. public
  445. { generate a stub which only purpose is to pass control the given external method,
  446. setting up any additional environment before doing so (if required).
  447. The default implementation issues a jump instruction to the external name. }
  448. procedure g_external_wrapper(list : TAsmList; procdef: tprocdef; const wrappername, externalname: string; global: boolean); virtual;
  449. protected
  450. procedure g_allocload_reg_reg(list: TAsmList; regsize: tdef; const fromreg: tregister; out toreg: tregister; regtyp: tregistertype);
  451. public
  452. { create "safe copy" of a tlocation that can be used later: all
  453. registers used in the tlocation are copied to new ones, so that
  454. even if the original ones change, things stay the same (except if
  455. the original location was already a register, then the register is
  456. kept). Must only be used on lvalue locations.
  457. It's intended as some kind of replacement for a_loadaddr_ref_reg()
  458. for targets without pointers. }
  459. procedure g_reference_loc(list: TAsmList; def: tdef; const fromloc: tlocation; out toloc: tlocation); virtual;
  460. { typecasts the pointer in reg to a new pointer. By default it does
  461. nothing, only required for type-aware platforms like LLVM.
  462. fromdef/todef are not typed as pointerdef, because they may also be
  463. a procvardef or classrefdef. Replaces reg with a new register if
  464. necessary }
  465. procedure g_ptrtypecast_reg(list: TAsmList; fromdef, todef: tdef; var reg: tregister); virtual;
  466. { same but for a treference (considers the reference itself, not the
  467. value stored at that place in memory). Replaces ref with a new
  468. reference if necessary. fromdef needs to be a pointerdef because
  469. it may have to be passed as fromdef to a_loadaddr_ref_reg, which
  470. needs the "pointeddef" of fromdef }
  471. procedure g_ptrtypecast_ref(list: TAsmList; fromdef, todef: tdef; var ref: treference); virtual;
  472. { update a reference pointing to the start address of a record/object/
  473. class (contents) so it refers to the indicated field }
  474. procedure g_set_addr_nonbitpacked_field_ref(list: TAsmList; recdef: tabstractrecorddef; field: tfieldvarsym; var recref: treference); virtual;
  475. { load a register/constant into a record field by name }
  476. protected
  477. procedure g_setup_load_field_by_name(list: TAsmList; recdef: trecorddef; const name: TIDString; const recref: treference; out fref: treference; out fielddef: tdef);
  478. public
  479. procedure g_load_reg_field_by_name(list: TAsmList; regsize: tdef; recdef: trecorddef; reg: tregister; const name: TIDString; const recref: treference);
  480. procedure g_load_const_field_by_name(list: TAsmList; recdef: trecorddef; a: tcgint; const name: TIDString; const recref: treference);
  481. { laod a named field into a register }
  482. procedure g_load_field_reg_by_name(list: TAsmList; recdef: trecorddef; regsize: tdef; const name: TIDString; const recref: treference; reg: tregister);
  483. { same as above, but allocates the register and determines the def
  484. based on the type of the field }
  485. procedure g_force_field_reg_by_name(list: TAsmList; recdef: trecorddef; const name: TIDString; const recref: treference; out regdef: tdef; out reg: tregister);
  486. { routines migrated from ncgutil }
  487. procedure location_force_reg(list:TAsmList;var l:tlocation;src_size,dst_size:tdef;maybeconst:boolean);virtual;
  488. procedure location_force_fpureg(list:TAsmList;var l: tlocation;size: tdef;maybeconst:boolean);virtual;
  489. procedure location_force_mem(list:TAsmList;var l:tlocation;size:tdef);virtual;
  490. procedure location_force_mmregscalar(list:TAsmList;var l: tlocation;size:tdef;maybeconst:boolean);virtual;
  491. // procedure location_force_mmreg(list:TAsmList;var l: tlocation;size:tdef;maybeconst:boolean);virtual;abstract;
  492. { Retrieve the location of the data pointed to in location l, when the location is
  493. a register it is expected to contain the address of the data }
  494. procedure location_get_data_ref(list:TAsmList;def: tdef; const l:tlocation;var ref:treference;loadref:boolean; alignment: longint);virtual;
  495. { if p is a boolean expression, turns p.location into a LOC_JUMP with
  496. jumps to generated true and false labels; otherwise internalerrors }
  497. procedure maketojumpbool(list: TAsmList; p: tnode);
  498. { same as above, but using predefined true/false labels instead of
  499. by generating new ones }
  500. procedure maketojumpboollabels(list: TAsmList; p: tnode; truelabel, falselabel: tasmlabel);virtual;
  501. { if the result of n is a LOC_C(..)REGISTER, try to find the corresponding
  502. loadn and change its location to a new register (= SSA). In case reload
  503. is true, transfer the old to the new register }
  504. procedure maybe_change_load_node_reg(list: TAsmList; var n: tnode; reload: boolean); virtual;
  505. private
  506. function do_replace_node_regs(var n: tnode; para: pointer): foreachnoderesult; virtual;
  507. public
  508. procedure gen_proc_symbol(list:TAsmList);virtual;
  509. procedure gen_proc_symbol_end(list:TAsmList);virtual;
  510. procedure handle_external_proc(list: TAsmList; pd: tprocdef; const importname: TSymStr); virtual;
  511. procedure gen_initialize_code(list:TAsmList);virtual;
  512. procedure gen_finalize_code(list:TAsmList);virtual;
  513. procedure gen_entry_code(list:TAsmList);virtual;
  514. procedure gen_exit_code(list:TAsmList);virtual;
  515. protected
  516. { helpers called by gen_initialize_code/gen_finalize_code }
  517. procedure inittempvariables(list:TAsmList);virtual;
  518. procedure finalizetempvariables(list:TAsmList);virtual;
  519. procedure initialize_regvars(p:TObject;arg:pointer);virtual;
  520. { generates the code for decrementing the reference count of parameters }
  521. procedure final_paras(p:TObject;arg:pointer);
  522. public
  523. { helper called by gen_alloc_symtable }
  524. procedure varsym_set_localloc(list: TAsmList; vs:tabstractnormalvarsym); virtual;
  525. { helper called by gen_alloc_symtable }
  526. procedure paravarsym_set_initialloc_to_paraloc(vs: tparavarsym); virtual;
  527. procedure gen_load_para_value(list:TAsmList);virtual;
  528. { helpers called by gen_load_para_value }
  529. procedure g_copyvalueparas(p:TObject;arg:pointer);virtual;
  530. protected
  531. procedure gen_loadfpu_loc_cgpara(list: TAsmList; size: tdef; const l: tlocation;const cgpara: tcgpara;locintsize: longint);virtual;
  532. procedure init_paras(p:TObject;arg:pointer);
  533. protected
  534. { Some targets have to put "something" in the function result
  535. location if it's not initialised by the Pascal code, e.g.
  536. stack-based architectures. By default it does nothing }
  537. procedure gen_load_uninitialized_function_result(list: TAsmList; pd: tprocdef; resdef: tdef; const resloc: tcgpara);virtual;
  538. procedure gen_load_loc_function_result(list: TAsmList; vardef: tdef; const l: tlocation);virtual;
  539. public
  540. { load a tlocation into a cgpara }
  541. procedure gen_load_loc_cgpara(list: TAsmList; vardef: tdef; const l: tlocation; const cgpara: tcgpara);virtual;
  542. { load a cgpara into a tlocation }
  543. procedure gen_load_cgpara_loc(list: TAsmList; vardef: tdef; const para: TCGPara; var destloc: tlocation; reusepara: boolean);virtual;
  544. { load the function return value into the ABI-defined function return location }
  545. procedure gen_load_return_value(list:TAsmList);virtual;
  546. { extras refactored from other units }
  547. procedure gen_stack_check_size_para(list:TAsmList); virtual;
  548. procedure gen_stack_check_call(list:TAsmList); virtual;
  549. { queue the code/data generated for a procedure for writing out to
  550. the assembler/object file }
  551. procedure record_generated_code_for_procdef(pd: tprocdef; code, data: TAsmList); virtual;
  552. { generate a call to a routine in the system unit }
  553. function g_call_system_proc(list: TAsmList; const procname: string; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  554. function g_call_system_proc(list: TAsmList; pd: tprocdef; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  555. protected
  556. function g_call_system_proc_intern(list: TAsmList; pd: tprocdef; const paras: array of pcgpara; forceresdef: tdef): tcgpara; virtual;
  557. public
  558. { Generate code to exit an unwind-protected region. The default implementation
  559. produces a simple jump to destination label. }
  560. procedure g_local_unwind(list: TAsmList; l: TAsmLabel);virtual;abstract;
  561. end;
  562. thlcgobjclass = class of thlcgobj;
  563. var
  564. {# Main high level code generator class }
  565. hlcg : thlcgobj;
  566. { class type of high level code generator class (also valid when hlcg is
  567. nil, in order to be able to call its virtual class methods) }
  568. chlcgobj: thlcgobjclass;
  569. procedure destroy_hlcodegen;
  570. implementation
  571. uses
  572. globals,systems,
  573. fmodule,
  574. verbose,defutil,paramgr,
  575. symtable,
  576. nbas,ncon,nld,ncgrtti,pass_2,
  577. cgobj,cutils,procinfo,
  578. {$ifdef x86}
  579. cgx86,
  580. {$endif x86}
  581. ncgutil;
  582. procedure destroy_hlcodegen;
  583. begin
  584. hlcg.free;
  585. hlcg:=nil;
  586. destroy_codegen;
  587. end;
  588. { thlcgobj }
  589. constructor thlcgobj.create;
  590. begin
  591. end;
  592. procedure thlcgobj.init_register_allocators;
  593. begin
  594. cg.init_register_allocators;
  595. end;
  596. procedure thlcgobj.done_register_allocators;
  597. begin
  598. cg.done_register_allocators;
  599. end;
  600. procedure thlcgobj.set_regalloc_live_range_direction(dir: TRADirection);
  601. begin
  602. cg.set_regalloc_live_range_direction(dir);
  603. end;
  604. function thlcgobj.getintregister(list: TAsmList; size: tdef): Tregister;
  605. begin
  606. result:=cg.getintregister(list,def_cgsize(size));
  607. end;
  608. function thlcgobj.getaddressregister(list: TAsmList; size: tdef): Tregister;
  609. begin
  610. result:=cg.getaddressregister(list);
  611. end;
  612. function thlcgobj.getfpuregister(list: TAsmList; size: tdef): Tregister;
  613. begin
  614. result:=cg.getfpuregister(list,def_cgsize(size));
  615. end;
  616. function thlcgobj.getmmregister(list: TAsmList; size: tdef): Tregister;
  617. begin
  618. result:=cg.getmmregister(list,def_cgsize(size));
  619. end;
  620. function thlcgobj.getflagregister(list: TAsmList; size: tdef): Tregister;
  621. begin
  622. result:=cg.getflagregister(list,def_cgsize(size));
  623. end;
  624. function thlcgobj.gettempregister(list: TAsmList; size: tdef): Tregister;
  625. begin
  626. { doesn't make sense to try to translate this size to tcgsize, temps
  627. can have any size }
  628. result:=cg.gettempregister(list);
  629. end;
  630. function thlcgobj.getregisterfordef(list: TAsmList; size: tdef): Tregister;
  631. begin
  632. case def2regtyp(size) of
  633. R_INTREGISTER:
  634. result:=getintregister(list,size);
  635. R_ADDRESSREGISTER:
  636. result:=getaddressregister(list,size);
  637. R_FPUREGISTER:
  638. result:=getfpuregister(list,size);
  639. R_MMREGISTER:
  640. result:=getmmregister(list,size);
  641. else
  642. internalerror(2010122901);
  643. end;
  644. end;
  645. function thlcgobj.uses_registers(rt: Tregistertype): boolean;
  646. begin
  647. result:=cg.uses_registers(rt);
  648. end;
  649. procedure thlcgobj.getcpuregister(list: TAsmList; r: Tregister);
  650. begin
  651. cg.getcpuregister(list,r);
  652. end;
  653. procedure thlcgobj.ungetcpuregister(list: TAsmList; r: Tregister);
  654. begin
  655. cg.ungetcpuregister(list,r);
  656. end;
  657. procedure thlcgobj.alloccpuregisters(list: TAsmList; rt: Tregistertype; const r: Tcpuregisterset);
  658. begin
  659. cg.alloccpuregisters(list,rt,r);
  660. end;
  661. procedure thlcgobj.dealloccpuregisters(list: TAsmList; rt: Tregistertype; const r: Tcpuregisterset);
  662. begin
  663. cg.dealloccpuregisters(list,rt,r);
  664. end;
  665. procedure thlcgobj.allocallcpuregisters(list: TAsmList);
  666. begin
  667. cg.allocallcpuregisters(list);
  668. end;
  669. procedure thlcgobj.deallocallcpuregisters(list: TAsmList);
  670. begin
  671. cg.deallocallcpuregisters(list);
  672. end;
  673. procedure thlcgobj.do_register_allocation(list: TAsmList; headertai: tai);
  674. begin
  675. cg.do_register_allocation(list,headertai);
  676. end;
  677. procedure thlcgobj.translate_register(var reg: tregister);
  678. begin
  679. cg.translate_register(reg);
  680. end;
  681. class function thlcgobj.def2regtyp(def: tdef): tregistertype;
  682. begin
  683. case def.typ of
  684. enumdef,
  685. orddef,
  686. recorddef,
  687. setdef:
  688. result:=R_INTREGISTER;
  689. stringdef,
  690. pointerdef,
  691. classrefdef,
  692. objectdef,
  693. procvardef,
  694. procdef,
  695. arraydef,
  696. formaldef:
  697. result:=R_ADDRESSREGISTER;
  698. floatdef:
  699. if use_vectorfpu(def) then
  700. result:=R_MMREGISTER
  701. else if cs_fp_emulation in current_settings.moduleswitches then
  702. result:=R_INTREGISTER
  703. else
  704. result:=R_FPUREGISTER;
  705. filedef,
  706. variantdef,
  707. forwarddef,
  708. undefineddef:
  709. result:=R_INVALIDREGISTER;
  710. else
  711. internalerror(2010120506);
  712. end;
  713. end;
  714. procedure thlcgobj.reference_reset_base(var ref: treference; regsize: tdef;
  715. reg: tregister; offset, alignment: longint; volatility: tvolatilityset);
  716. begin
  717. reference_reset(ref,alignment,volatility);
  718. ref.base:=reg;
  719. ref.offset:=offset;
  720. end;
  721. procedure thlcgobj.temp_to_ref(p: ptemprecord; out ref: treference);
  722. begin
  723. reference_reset_base(ref,voidstackpointertype,current_procinfo.framepointer,p^.pos,p^.alignment,[]);
  724. end;
  725. procedure thlcgobj.a_label(list: TAsmList; l: tasmlabel); inline;
  726. begin
  727. cg.a_label(list,l);
  728. end;
  729. procedure thlcgobj.a_reg_alloc(list: TAsmList; r: tregister);
  730. begin
  731. cg.a_reg_alloc(list,r);
  732. end;
  733. procedure thlcgobj.a_reg_dealloc(list: TAsmList; r: tregister);
  734. begin
  735. cg.a_reg_dealloc(list,r);
  736. end;
  737. procedure thlcgobj.a_reg_sync(list: TAsmList; r: tregister);
  738. begin
  739. cg.a_reg_sync(list,r);
  740. end;
  741. procedure thlcgobj.a_load_reg_cgpara(list: TAsmList; size: tdef; r: tregister; const cgpara: TCGPara);
  742. var
  743. ref: treference;
  744. tmpreg : tregister;
  745. begin
  746. cgpara.check_simple_location;
  747. paramanager.alloccgpara(list,cgpara);
  748. if cgpara.location^.shiftval<0 then
  749. begin
  750. tmpreg:=getintregister(list,cgpara.location^.def);
  751. a_op_const_reg_reg(list,OP_SHL,cgpara.location^.def,-cgpara.location^.shiftval,r,tmpreg);
  752. r:=tmpreg;
  753. end;
  754. case cgpara.location^.loc of
  755. LOC_REGISTER,LOC_CREGISTER:
  756. a_load_reg_reg(list,size,cgpara.location^.def,r,cgpara.location^.register);
  757. LOC_REFERENCE,LOC_CREFERENCE:
  758. begin
  759. reference_reset_base(ref,voidstackpointertype,cgpara.location^.reference.index,cgpara.location^.reference.offset,cgpara.alignment,[]);
  760. a_load_reg_ref(list,size,cgpara.location^.def,r,ref);
  761. end;
  762. LOC_MMREGISTER,LOC_CMMREGISTER:
  763. a_loadmm_intreg_reg(list,size,cgpara.location^.def,r,cgpara.location^.register,mms_movescalar);
  764. LOC_FPUREGISTER,LOC_CFPUREGISTER:
  765. begin
  766. tg.gethltemp(list,size,size.size,tt_normal,ref);
  767. a_load_reg_ref(list,size,cgpara.location^.def,r,ref);
  768. a_loadfpu_ref_cgpara(list,cgpara.location^.def,ref,cgpara);
  769. tg.ungettemp(list,ref);
  770. end
  771. else
  772. internalerror(2010120415);
  773. end;
  774. end;
  775. procedure thlcgobj.a_load_const_cgpara(list: TAsmList; tosize: tdef; a: tcgint; const cgpara: TCGPara);
  776. var
  777. ref : treference;
  778. begin
  779. cgpara.check_simple_location;
  780. paramanager.alloccgpara(list,cgpara);
  781. if cgpara.location^.shiftval<0 then
  782. a:=a shl -cgpara.location^.shiftval;
  783. case cgpara.location^.loc of
  784. LOC_REGISTER,LOC_CREGISTER:
  785. a_load_const_reg(list,cgpara.location^.def,a,cgpara.location^.register);
  786. LOC_REFERENCE,LOC_CREFERENCE:
  787. begin
  788. reference_reset_base(ref,voidstackpointertype,cgpara.location^.reference.index,cgpara.location^.reference.offset,cgpara.alignment,[]);
  789. a_load_const_ref(list,cgpara.location^.def,a,ref);
  790. end
  791. else
  792. internalerror(2010120416);
  793. end;
  794. end;
  795. procedure thlcgobj.a_load_ref_cgpara(list: TAsmList; size: tdef; const r: treference; const cgpara: TCGPara);
  796. var
  797. tmpref, ref: treference;
  798. tmpreg: tregister;
  799. location: pcgparalocation;
  800. orgsizeleft,
  801. sizeleft: tcgint;
  802. reghasvalue: boolean;
  803. begin
  804. location:=cgpara.location;
  805. tmpref:=r;
  806. sizeleft:=cgpara.intsize;
  807. while assigned(location) do
  808. begin
  809. paramanager.allocparaloc(list,location);
  810. case location^.loc of
  811. LOC_REGISTER,LOC_CREGISTER:
  812. begin
  813. { Parameter locations are often allocated in multiples of
  814. entire registers. If a parameter only occupies a part of
  815. such a register (e.g. a 16 bit int on a 32 bit
  816. architecture), the size of this parameter can only be
  817. determined by looking at the "size" parameter of this
  818. method -> if the size parameter is <= sizeof(aint), then
  819. we check that there is only one parameter location and
  820. then use this "size" to load the value into the parameter
  821. location }
  822. if (def_cgsize(size)<>OS_NO) and
  823. (size.size<=sizeof(aint)) then
  824. begin
  825. cgpara.check_simple_location;
  826. a_load_ref_reg(list,size,location^.def,tmpref,location^.register);
  827. if location^.shiftval<0 then
  828. a_op_const_reg(list,OP_SHL,location^.def,-location^.shiftval,location^.register);
  829. end
  830. { there's a lot more data left, and the current paraloc's
  831. register is entirely filled with part of that data }
  832. else if (sizeleft>sizeof(aint)) then
  833. begin
  834. a_load_ref_reg(list,location^.def,location^.def,tmpref,location^.register);
  835. end
  836. { we're at the end of the data, and it can be loaded into
  837. the current location's register with a single regular
  838. load }
  839. else if sizeleft in [1,2,4,8] then
  840. begin
  841. { don't use cgsize_orddef(int_cgsize(sizeleft)) as fromdef,
  842. because that may be larger than location^.register in
  843. case of padding at the end of a record }
  844. a_load_ref_reg(list,location^.def,location^.def,tmpref,location^.register);
  845. if location^.shiftval<0 then
  846. a_op_const_reg(list,OP_SHL,location^.def,-location^.shiftval,location^.register);
  847. end
  848. { we're at the end of the data, and we need multiple loads
  849. to get it in the register because it's an irregular size }
  850. else
  851. begin
  852. { should be the last part }
  853. if assigned(location^.next) then
  854. internalerror(2010052907);
  855. { load the value piecewise to get it into the register }
  856. orgsizeleft:=sizeleft;
  857. reghasvalue:=false;
  858. {$ifdef cpu64bitalu}
  859. if sizeleft>=4 then
  860. begin
  861. a_load_ref_reg(list,u32inttype,location^.def,tmpref,location^.register);
  862. dec(sizeleft,4);
  863. if target_info.endian=endian_big then
  864. a_op_const_reg(list,OP_SHL,location^.def,sizeleft*8,location^.register);
  865. inc(tmpref.offset,4);
  866. reghasvalue:=true;
  867. end;
  868. {$endif cpu64bitalu}
  869. if sizeleft>=2 then
  870. begin
  871. tmpreg:=getintregister(list,location^.def);
  872. a_load_ref_reg(list,u16inttype,location^.def,tmpref,tmpreg);
  873. dec(sizeleft,2);
  874. if reghasvalue then
  875. begin
  876. if target_info.endian=endian_big then
  877. a_op_const_reg(list,OP_SHL,location^.def,sizeleft*8,tmpreg)
  878. else
  879. a_op_const_reg(list,OP_SHL,location^.def,(orgsizeleft-(sizeleft+2))*8,tmpreg);
  880. a_op_reg_reg(list,OP_OR,location^.def,tmpreg,location^.register);
  881. end
  882. else
  883. begin
  884. if target_info.endian=endian_big then
  885. a_op_const_reg_reg(list,OP_SHL,location^.def,sizeleft*8,tmpreg,location^.register)
  886. else
  887. a_load_reg_reg(list,location^.def,location^.def,tmpreg,location^.register);
  888. end;
  889. inc(tmpref.offset,2);
  890. reghasvalue:=true;
  891. end;
  892. if sizeleft=1 then
  893. begin
  894. tmpreg:=getintregister(list,location^.def);
  895. a_load_ref_reg(list,u8inttype,location^.def,tmpref,tmpreg);
  896. dec(sizeleft,1);
  897. if reghasvalue then
  898. begin
  899. if target_info.endian=endian_little then
  900. a_op_const_reg(list,OP_SHL,location^.def,(orgsizeleft-(sizeleft+1))*8,tmpreg);
  901. a_op_reg_reg(list,OP_OR,location^.def,tmpreg,location^.register)
  902. end
  903. else
  904. a_load_reg_reg(list,location^.def,location^.def,tmpreg,location^.register);
  905. inc(tmpref.offset);
  906. end;
  907. if location^.shiftval<0 then
  908. a_op_const_reg(list,OP_SHL,location^.def,-location^.shiftval,location^.register);
  909. { the loop will already adjust the offset and sizeleft }
  910. dec(tmpref.offset,orgsizeleft);
  911. sizeleft:=orgsizeleft;
  912. end;
  913. end;
  914. LOC_REFERENCE,LOC_CREFERENCE:
  915. begin
  916. if assigned(location^.next) then
  917. internalerror(2017073001);
  918. reference_reset_base(ref,voidstackpointertype,location^.reference.index,location^.reference.offset,newalignment(cgpara.alignment,cgpara.intsize-sizeleft),[]);
  919. if (def_cgsize(size)<>OS_NO) and
  920. (size.size=sizeleft) and
  921. (sizeleft<=sizeof(aint)) then
  922. a_load_ref_ref(list,size,location^.def,tmpref,ref)
  923. else
  924. { use concatcopy, because the parameter can be larger than }
  925. { what the OS_* constants can handle }
  926. g_concatcopy(list,location^.def,tmpref,ref);
  927. end;
  928. LOC_MMREGISTER,LOC_CMMREGISTER:
  929. begin
  930. case location^.size of
  931. OS_F32,
  932. OS_F64,
  933. OS_F128:
  934. a_loadmm_ref_reg(list,location^.def,location^.def,tmpref,location^.register,mms_movescalar);
  935. OS_M8..OS_M128,
  936. OS_MS8..OS_MS128:
  937. a_loadmm_ref_reg(list,location^.def,location^.def,tmpref,location^.register,nil);
  938. else
  939. internalerror(2010053101);
  940. end;
  941. end
  942. else
  943. internalerror(2014032101);
  944. end;
  945. inc(tmpref.offset,tcgsize2size[location^.size]);
  946. dec(sizeleft,tcgsize2size[location^.size]);
  947. location:=location^.next;
  948. end;
  949. end;
  950. procedure thlcgobj.a_load_loc_cgpara(list: TAsmList; size: tdef; const l: tlocation; const cgpara: TCGPara);
  951. begin
  952. case l.loc of
  953. LOC_REGISTER,
  954. LOC_CREGISTER :
  955. a_load_reg_cgpara(list,size,l.register,cgpara);
  956. LOC_CONSTANT :
  957. a_load_const_cgpara(list,size,l.value,cgpara);
  958. LOC_CREFERENCE,
  959. LOC_REFERENCE :
  960. a_load_ref_cgpara(list,size,l.reference,cgpara);
  961. else
  962. internalerror(2010120419);
  963. end;
  964. end;
  965. procedure thlcgobj.a_loadaddr_ref_cgpara(list: TAsmList; fromsize: tdef; const r: treference; const cgpara: TCGPara);
  966. var
  967. hr : tregister;
  968. begin
  969. cgpara.check_simple_location;
  970. if cgpara.location^.loc in [LOC_CREGISTER,LOC_REGISTER] then
  971. begin
  972. paramanager.allocparaloc(list,cgpara.location);
  973. a_loadaddr_ref_reg(list,fromsize,cgpara.location^.def,r,cgpara.location^.register)
  974. end
  975. else
  976. begin
  977. hr:=getaddressregister(list,cgpara.def);
  978. a_loadaddr_ref_reg(list,fromsize,cgpara.location^.def,r,hr);
  979. a_load_reg_cgpara(list,cgpara.def,hr,cgpara);
  980. end;
  981. end;
  982. function thlcgobj.a_call_name_static(list: TAsmList; pd: tprocdef; const s: TSymStr; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  983. begin
  984. result:=a_call_name(list,pd,s,paras,forceresdef,false);
  985. end;
  986. function thlcgobj.a_call_name_inherited(list: TAsmList; pd: tprocdef; const s: TSymStr; const paras: array of pcgpara): tcgpara;
  987. begin
  988. result:=a_call_name(list,pd,s,paras,nil,false);
  989. end;
  990. procedure thlcgobj.a_load_const_ref(list: TAsmList; tosize: tdef; a: tcgint; const ref: treference);
  991. var
  992. tmpreg: tregister;
  993. begin
  994. tmpreg:=getintregister(list,tosize);
  995. a_load_const_reg(list,tosize,a,tmpreg);
  996. a_load_reg_ref(list,tosize,tosize,tmpreg,ref);
  997. end;
  998. procedure thlcgobj.a_load_const_loc(list: TAsmList; tosize: tdef; a: tcgint; const loc: tlocation);
  999. begin
  1000. case loc.loc of
  1001. LOC_REFERENCE,LOC_CREFERENCE:
  1002. a_load_const_ref(list,tosize,a,loc.reference);
  1003. LOC_REGISTER,LOC_CREGISTER:
  1004. a_load_const_reg(list,tosize,a,loc.register);
  1005. LOC_SUBSETREG,LOC_CSUBSETREG:
  1006. a_load_const_subsetreg(list,tosize,a,loc.sreg);
  1007. LOC_SUBSETREF,LOC_CSUBSETREF:
  1008. a_load_const_subsetref(list,tosize,a,loc.sref);
  1009. else
  1010. internalerror(2010120401);
  1011. end;
  1012. end;
  1013. procedure thlcgobj.a_load_reg_ref_unaligned(list: TAsmList; fromsize, tosize: tdef; register: tregister; const ref: treference);
  1014. begin
  1015. a_load_reg_ref(list,fromsize,tosize,register,ref);
  1016. end;
  1017. procedure thlcgobj.a_load_reg_loc(list: TAsmList; fromsize, tosize: tdef; reg: tregister; const loc: tlocation);
  1018. begin
  1019. case loc.loc of
  1020. LOC_REFERENCE,LOC_CREFERENCE:
  1021. a_load_reg_ref(list,fromsize,tosize,reg,loc.reference);
  1022. LOC_REGISTER,LOC_CREGISTER:
  1023. a_load_reg_reg(list,fromsize,tosize,reg,loc.register);
  1024. LOC_SUBSETREG,LOC_CSUBSETREG:
  1025. a_load_reg_subsetreg(list,fromsize,tosize,reg,loc.sreg);
  1026. LOC_SUBSETREF,LOC_CSUBSETREF:
  1027. a_load_reg_subsetref(list,fromsize,tosize,reg,loc.sref);
  1028. LOC_MMREGISTER,LOC_CMMREGISTER:
  1029. a_loadmm_intreg_reg(list,fromsize,tosize,reg,loc.register,mms_movescalar);
  1030. else
  1031. internalerror(2010120402);
  1032. end;
  1033. end;
  1034. procedure thlcgobj.a_load_ref_reg_unaligned(list: TAsmList; fromsize, tosize: tdef; const ref: treference; register: tregister);
  1035. begin
  1036. a_load_ref_reg(list,fromsize,tosize,ref,register);
  1037. end;
  1038. procedure thlcgobj.a_load_ref_ref(list: TAsmList; fromsize, tosize: tdef; const sref: treference; const dref: treference);
  1039. var
  1040. tmpreg: tregister;
  1041. begin
  1042. { verify if we have the same reference }
  1043. if references_equal(sref,dref) then
  1044. exit;
  1045. tmpreg:=getintregister(list,tosize);
  1046. a_load_ref_reg(list,fromsize,tosize,sref,tmpreg);
  1047. a_load_reg_ref(list,tosize,tosize,tmpreg,dref);
  1048. end;
  1049. procedure thlcgobj.a_load_loc_reg(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; reg: tregister);
  1050. begin
  1051. case loc.loc of
  1052. LOC_REFERENCE,LOC_CREFERENCE:
  1053. a_load_ref_reg(list,fromsize,tosize,loc.reference,reg);
  1054. LOC_REGISTER,LOC_CREGISTER:
  1055. a_load_reg_reg(list,fromsize,tosize,loc.register,reg);
  1056. LOC_CONSTANT:
  1057. a_load_const_reg(list,tosize,loc.value,reg);
  1058. LOC_SUBSETREG,LOC_CSUBSETREG:
  1059. a_load_subsetreg_reg(list,fromsize,tosize,loc.sreg,reg);
  1060. LOC_SUBSETREF,LOC_CSUBSETREF:
  1061. a_load_subsetref_reg(list,fromsize,tosize,loc.sref,reg);
  1062. else
  1063. internalerror(2010120201);
  1064. end;
  1065. end;
  1066. procedure thlcgobj.a_load_loc_ref(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const ref: treference);
  1067. begin
  1068. case loc.loc of
  1069. LOC_REFERENCE,LOC_CREFERENCE:
  1070. a_load_ref_ref(list,fromsize,tosize,loc.reference,ref);
  1071. LOC_REGISTER,LOC_CREGISTER:
  1072. a_load_reg_ref(list,fromsize,tosize,loc.register,ref);
  1073. LOC_CONSTANT:
  1074. a_load_const_ref(list,tosize,loc.value,ref);
  1075. LOC_SUBSETREG,LOC_CSUBSETREG:
  1076. a_load_subsetreg_ref(list,fromsize,tosize,loc.sreg,ref);
  1077. LOC_SUBSETREF,LOC_CSUBSETREF:
  1078. a_load_subsetref_ref(list,fromsize,tosize,loc.sref,ref);
  1079. else
  1080. internalerror(2010120403);
  1081. end;
  1082. end;
  1083. procedure thlcgobj.a_load_loc_subsetreg(list: TAsmList; fromsize, tosubsetsize: tdef; const loc: tlocation; const sreg: tsubsetregister);
  1084. begin
  1085. case loc.loc of
  1086. LOC_REFERENCE,LOC_CREFERENCE:
  1087. a_load_ref_subsetreg(list,fromsize,tosubsetsize,loc.reference,sreg);
  1088. LOC_REGISTER,LOC_CREGISTER:
  1089. a_load_reg_subsetreg(list,fromsize,tosubsetsize,loc.register,sreg);
  1090. LOC_CONSTANT:
  1091. a_load_const_subsetreg(list,tosubsetsize,loc.value,sreg);
  1092. LOC_SUBSETREG,LOC_CSUBSETREG:
  1093. a_load_subsetreg_subsetreg(list,fromsize,tosubsetsize,loc.sreg,sreg);
  1094. LOC_SUBSETREF,LOC_CSUBSETREF:
  1095. a_load_subsetref_subsetreg(list,fromsize,tosubsetsize,loc.sref,sreg);
  1096. else
  1097. internalerror(2010120404);
  1098. end;
  1099. end;
  1100. procedure thlcgobj.a_load_loc_subsetref(list: TAsmList; fromsize, tosubsetsize: tdef; const loc: tlocation; const sref: tsubsetreference);
  1101. begin
  1102. case loc.loc of
  1103. LOC_REFERENCE,LOC_CREFERENCE:
  1104. a_load_ref_subsetref(list,fromsize,tosubsetsize,loc.reference,sref);
  1105. LOC_REGISTER,LOC_CREGISTER:
  1106. a_load_reg_subsetref(list,fromsize,tosubsetsize,loc.register,sref);
  1107. LOC_CONSTANT:
  1108. a_load_const_subsetref(list,tosubsetsize,loc.value,sref);
  1109. LOC_SUBSETREG,LOC_CSUBSETREG:
  1110. a_load_subsetreg_subsetref(list,fromsize,tosubsetsize,loc.sreg,sref);
  1111. LOC_SUBSETREF,LOC_CSUBSETREF:
  1112. a_load_subsetref_subsetref(list,fromsize,tosubsetsize,loc.sref,sref);
  1113. else
  1114. internalerror(2010120405);
  1115. end;
  1116. end;
  1117. {$push}
  1118. {$r-,q-}
  1119. procedure thlcgobj.a_load_subsetreg_reg(list: TAsmList; subsetsize, tosize: tdef; const sreg: tsubsetregister; destreg: tregister);
  1120. var
  1121. subsetregdef: torddef;
  1122. bitmask: aword;
  1123. tmpreg,
  1124. subsetsizereg: tregister;
  1125. stopbit: byte;
  1126. begin
  1127. subsetregdef:=cgsize_orddef(sreg.subsetregsize);
  1128. tmpreg:=getintregister(list,subsetregdef);
  1129. { insert shifts only if it changes bits being accessed later on }
  1130. if (sreg.startbit<>0) or
  1131. (tosize.size*8>sreg.bitlen) then
  1132. begin
  1133. if is_signed(subsetsize) then
  1134. begin
  1135. { sign extend in case the value has a bitsize mod 8 <> 0 }
  1136. { both instructions will be optimized away if not }
  1137. a_op_const_reg_reg(list,OP_SHL,subsetregdef,(tcgsize2size[sreg.subsetregsize]*8)-sreg.startbit-sreg.bitlen,sreg.subsetreg,tmpreg);
  1138. a_op_const_reg(list,OP_SAR,subsetregdef,(tcgsize2size[sreg.subsetregsize]*8)-sreg.bitlen,tmpreg);
  1139. end
  1140. else
  1141. begin
  1142. a_op_const_reg_reg(list,OP_SHR,subsetregdef,sreg.startbit,sreg.subsetreg,tmpreg);
  1143. stopbit:=sreg.startbit+sreg.bitlen;
  1144. // on x86(64), 1 shl 32(64) = 1 instead of 0
  1145. // use aword to prevent overflow with 1 shl 31
  1146. if (stopbit-sreg.startbit<>AIntBits) then
  1147. bitmask:=(aword(1) shl (stopbit-sreg.startbit))-1
  1148. else
  1149. bitmask:=high(aword);
  1150. a_op_const_reg(list,OP_AND,subsetregdef,tcgint(bitmask),tmpreg);
  1151. end;
  1152. end
  1153. else
  1154. a_load_reg_reg(list,subsetregdef,subsetregdef,sreg.subsetreg,tmpreg);
  1155. subsetsizereg:=getintregister(list,subsetsize);
  1156. a_load_reg_reg(list,subsetregdef,subsetsize,tmpreg,subsetsizereg);
  1157. a_load_reg_reg(list,subsetsize,tosize,subsetsizereg,destreg);
  1158. end;
  1159. procedure thlcgobj.a_load_reg_subsetreg(list: TAsmList; fromsize, tosubsetsize: tdef; fromreg: tregister; const sreg: tsubsetregister);
  1160. begin
  1161. a_load_regconst_subsetreg_intern(list,fromsize,tosubsetsize,fromreg,sreg,SL_REG);
  1162. end;
  1163. procedure thlcgobj.a_load_subsetreg_subsetreg(list: TAsmlist; fromsubsetsize, tosubsetsize: tdef; const fromsreg, tosreg: tsubsetregister);
  1164. var
  1165. fromsubsetregdef,
  1166. tosubsetregdef: torddef;
  1167. tmpreg, tmpreg2: tregister;
  1168. bitmask: aword;
  1169. stopbit: byte;
  1170. begin
  1171. if (fromsreg.bitlen>=tosreg.bitlen) then
  1172. begin
  1173. fromsubsetregdef:=cgsize_orddef(fromsreg.subsetregsize);
  1174. tosubsetregdef:=cgsize_orddef(tosreg.subsetregsize);
  1175. if (fromsreg.startbit<=tosreg.startbit) then
  1176. begin
  1177. { tosreg may be larger -> use its size to perform the shift }
  1178. tmpreg:=getintregister(list,tosubsetregdef);
  1179. a_load_reg_reg(list,fromsubsetregdef,tosubsetregdef,fromsreg.subsetreg,tmpreg);
  1180. a_op_const_reg(list,OP_SHL,tosubsetregdef,tosreg.startbit-fromsreg.startbit,tmpreg)
  1181. end
  1182. else
  1183. begin
  1184. { fromsreg may be larger -> use its size to perform the shift }
  1185. tmpreg:=getintregister(list,fromsubsetregdef);
  1186. a_op_const_reg_reg(list,OP_SHR,fromsubsetregdef,fromsreg.startbit-tosreg.startbit,fromsreg.subsetreg,tmpreg);
  1187. tmpreg2:=getintregister(list,tosubsetregdef);
  1188. a_load_reg_reg(list,fromsubsetregdef,tosubsetregdef,tmpreg,tmpreg2);
  1189. tmpreg:=tmpreg2;
  1190. end;
  1191. stopbit:=tosreg.startbit + tosreg.bitlen;
  1192. // on x86(64), 1 shl 32(64) = 1 instead of 0
  1193. if (stopbit<>AIntBits) then
  1194. bitmask:=not(((aword(1) shl stopbit)-1) xor ((aword(1) shl tosreg.startbit)-1))
  1195. else
  1196. bitmask:=(aword(1) shl tosreg.startbit) - 1;
  1197. a_op_const_reg(list,OP_AND,tosubsetregdef,tcgint(bitmask),tosreg.subsetreg);
  1198. a_op_const_reg(list,OP_AND,tosubsetregdef,tcgint(not(bitmask)),tmpreg);
  1199. a_op_reg_reg(list,OP_OR,tosubsetregdef,tmpreg,tosreg.subsetreg);
  1200. end
  1201. else
  1202. begin
  1203. tmpreg:=getintregister(list,tosubsetsize);
  1204. a_load_subsetreg_reg(list,fromsubsetsize,tosubsetsize,fromsreg,tmpreg);
  1205. a_load_reg_subsetreg(list,tosubsetsize,tosubsetsize,tmpreg,tosreg);
  1206. end;
  1207. end;
  1208. procedure thlcgobj.a_load_subsetreg_ref(list: TAsmList; fromsubsetsize, tosize: tdef; const sreg: tsubsetregister; const destref: treference);
  1209. var
  1210. tmpreg: tregister;
  1211. begin
  1212. tmpreg:=getintregister(list,tosize);
  1213. a_load_subsetreg_reg(list,fromsubsetsize,tosize,sreg,tmpreg);
  1214. a_load_reg_ref(list,tosize,tosize,tmpreg,destref);
  1215. end;
  1216. procedure thlcgobj.a_load_ref_subsetreg(list: TAsmList; fromsize, tosubsetsize: tdef; const fromref: treference; const sreg: tsubsetregister);
  1217. var
  1218. tmpreg: tregister;
  1219. begin
  1220. tmpreg := getintregister(list,tosubsetsize);
  1221. a_load_ref_reg(list,fromsize,tosubsetsize,fromref,tmpreg);
  1222. a_load_reg_subsetreg(list,tosubsetsize,tosubsetsize,tmpreg,sreg);
  1223. end;
  1224. procedure thlcgobj.a_load_const_subsetreg(list: TAsmlist; tosubsetsize: tdef; a: tcgint; const sreg: tsubsetregister);
  1225. var
  1226. subsetregdef: torddef;
  1227. bitmask: aword;
  1228. stopbit: byte;
  1229. begin
  1230. subsetregdef:=cgsize_orddef(sreg.subsetregsize);
  1231. stopbit:=sreg.startbit+sreg.bitlen;
  1232. // on x86(64), 1 shl 32(64) = 1 instead of 0
  1233. if (stopbit<>AIntBits) then
  1234. bitmask:=not(((aword(1) shl stopbit)-1) xor ((aword(1) shl sreg.startbit)-1))
  1235. else
  1236. bitmask:=(aword(1) shl sreg.startbit)-1;
  1237. if (((aword(a) shl sreg.startbit) and not bitmask)<>not bitmask) then
  1238. a_op_const_reg(list,OP_AND,subsetregdef,tcgint(bitmask),sreg.subsetreg);
  1239. a_op_const_reg(list,OP_OR,subsetregdef,tcgint((aword(a) shl sreg.startbit) and not(bitmask)),sreg.subsetreg);
  1240. end;
  1241. procedure thlcgobj.a_load_subsetreg_loc(list: TAsmlist; fromsubsetsize, tosize: tdef; const sreg: tsubsetregister; const loc: tlocation);
  1242. begin
  1243. case loc.loc of
  1244. LOC_REFERENCE,LOC_CREFERENCE:
  1245. a_load_subsetreg_ref(list,fromsubsetsize,tosize,sreg,loc.reference);
  1246. LOC_REGISTER,LOC_CREGISTER:
  1247. a_load_subsetreg_reg(list,fromsubsetsize,tosize,sreg,loc.register);
  1248. LOC_SUBSETREG,LOC_CSUBSETREG:
  1249. a_load_subsetreg_subsetreg(list,fromsubsetsize,tosize,sreg,loc.sreg);
  1250. LOC_SUBSETREF,LOC_CSUBSETREF:
  1251. a_load_subsetreg_subsetref(list,fromsubsetsize,tosize,sreg,loc.sref);
  1252. else
  1253. internalerror(2010120406);
  1254. end;
  1255. end;
  1256. procedure thlcgobj.a_load_subsetref_reg(list: TAsmList; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; destreg: tregister);
  1257. var
  1258. tmpref: treference;
  1259. valuereg,extra_value_reg: tregister;
  1260. tosreg: tsubsetregister;
  1261. loadsize: torddef;
  1262. loadbitsize: byte;
  1263. extra_load: boolean;
  1264. begin
  1265. get_subsetref_load_info(sref,loadsize,extra_load);
  1266. loadbitsize:=loadsize.size*8;
  1267. { load the (first part) of the bit sequence }
  1268. valuereg:=getintregister(list,osuinttype);
  1269. a_load_ref_reg(list,loadsize,osuinttype,sref.ref,valuereg);
  1270. if not extra_load then
  1271. begin
  1272. { everything is guaranteed to be in a single register of loadsize }
  1273. if (sref.bitindexreg=NR_NO) then
  1274. begin
  1275. { use subsetreg routine, it may have been overridden with an optimized version }
  1276. tosreg.subsetreg:=valuereg;
  1277. tosreg.subsetregsize:=def_cgsize(osuinttype);
  1278. { subsetregs always count bits from right to left }
  1279. if (target_info.endian=endian_big) then
  1280. tosreg.startbit:=loadbitsize-(sref.startbit+sref.bitlen)
  1281. else
  1282. tosreg.startbit:=sref.startbit;
  1283. tosreg.bitlen:=sref.bitlen;
  1284. a_load_subsetreg_reg(list,fromsubsetsize,tosize,tosreg,destreg);
  1285. exit;
  1286. end
  1287. else
  1288. begin
  1289. if (sref.startbit<>0) then
  1290. internalerror(2006081510);
  1291. if (target_info.endian=endian_big) then
  1292. begin
  1293. a_op_reg_reg(list,OP_SHL,osuinttype,sref.bitindexreg,valuereg);
  1294. if is_signed(fromsubsetsize) then
  1295. begin
  1296. { sign extend to entire register }
  1297. a_op_const_reg(list,OP_SHL,osuinttype,AIntBits-loadbitsize,valuereg);
  1298. a_op_const_reg(list,OP_SAR,osuinttype,AIntBits-sref.bitlen,valuereg);
  1299. end
  1300. else
  1301. a_op_const_reg(list,OP_SHR,osuinttype,loadbitsize-sref.bitlen,valuereg);
  1302. end
  1303. else
  1304. begin
  1305. a_op_reg_reg(list,OP_SHR,osuinttype,sref.bitindexreg,valuereg);
  1306. if is_signed(fromsubsetsize) then
  1307. begin
  1308. a_op_const_reg(list,OP_SHL,osuinttype,AIntBits-sref.bitlen,valuereg);
  1309. a_op_const_reg(list,OP_SAR,osuinttype,AIntBits-sref.bitlen,valuereg);
  1310. end
  1311. end;
  1312. { mask other bits/sign extend }
  1313. if not is_signed(fromsubsetsize) then
  1314. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),valuereg);
  1315. end
  1316. end
  1317. else
  1318. begin
  1319. { load next value as well }
  1320. extra_value_reg:=getintregister(list,osuinttype);
  1321. if (sref.bitindexreg=NR_NO) then
  1322. begin
  1323. tmpref:=sref.ref;
  1324. inc(tmpref.offset,loadbitsize div 8);
  1325. a_load_ref_reg(list,loadsize,osuinttype,tmpref,extra_value_reg);
  1326. { can be overridden to optimize }
  1327. a_load_subsetref_regs_noindex(list,fromsubsetsize,loadbitsize,sref,valuereg,extra_value_reg)
  1328. end
  1329. else
  1330. begin
  1331. if (sref.startbit<>0) then
  1332. internalerror(2006080610);
  1333. a_load_subsetref_regs_index(list,fromsubsetsize,loadbitsize,sref,valuereg);
  1334. end;
  1335. end;
  1336. { store in destination }
  1337. {$ifndef cpuhighleveltarget}
  1338. { avoid unnecessary sign extension and zeroing }
  1339. valuereg:=cg.makeregsize(list,valuereg,OS_INT);
  1340. destreg:=cg.makeregsize(list,destreg,OS_INT);
  1341. cg.a_load_reg_reg(list,OS_INT,OS_INT,valuereg,destreg);
  1342. destreg:=cg.makeregsize(list,destreg,def_cgsize(tosize));
  1343. {$else}
  1344. { can't juggle with register sizes, they are actually typed entities
  1345. here }
  1346. a_load_reg_reg(list,osuinttype,tosize,valuereg,destreg);
  1347. {$endif}
  1348. end;
  1349. procedure thlcgobj.a_load_reg_subsetref(list: TAsmList; fromsize, tosubsetsize: tdef; fromreg: tregister; const sref: tsubsetreference);
  1350. begin
  1351. a_load_regconst_subsetref_intern(list,fromsize,tosubsetsize,fromreg,sref,SL_REG);
  1352. end;
  1353. procedure thlcgobj.a_load_subsetref_subsetref(list: TAsmlist; fromsubsetsize, tosubsetsize: tdef; const fromsref, tosref: tsubsetreference);
  1354. var
  1355. tmpreg: tregister;
  1356. begin
  1357. tmpreg:=getintregister(list,tosubsetsize);
  1358. a_load_subsetref_reg(list,fromsubsetsize,tosubsetsize,fromsref,tmpreg);
  1359. a_load_reg_subsetref(list,tosubsetsize,tosubsetsize,tmpreg,tosref);
  1360. end;
  1361. procedure thlcgobj.a_load_subsetref_ref(list: TAsmList; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; const destref: treference);
  1362. var
  1363. tmpreg: tregister;
  1364. begin
  1365. tmpreg:=getintregister(list,tosize);
  1366. a_load_subsetref_reg(list,fromsubsetsize,tosize,sref,tmpreg);
  1367. a_load_reg_ref(list,tosize,tosize,tmpreg,destref);
  1368. end;
  1369. procedure thlcgobj.a_load_ref_subsetref(list: TAsmList; fromsize, tosubsetsize: tdef; const fromref: treference; const sref: tsubsetreference);
  1370. var
  1371. tmpreg: tregister;
  1372. begin
  1373. tmpreg := getintregister(list,tosubsetsize);
  1374. a_load_ref_reg(list,fromsize,tosubsetsize,fromref,tmpreg);
  1375. a_load_reg_subsetref(list,tosubsetsize,tosubsetsize,tmpreg,sref);
  1376. end;
  1377. procedure thlcgobj.a_load_const_subsetref(list: TAsmlist; tosubsetsize: tdef; a: tcgint; const sref: tsubsetreference);
  1378. var
  1379. tmpreg: tregister;
  1380. slopt: tsubsetloadopt;
  1381. begin
  1382. { perform masking of the source value in advance }
  1383. slopt:=SL_REGNOSRCMASK;
  1384. if (sref.bitlen<>AIntBits) then
  1385. a:=tcgint(aword(a) and ((aword(1) shl sref.bitlen) -1));
  1386. if (
  1387. { broken x86 "x shl regbitsize = x" }
  1388. ((sref.bitlen<>AIntBits) and
  1389. ((aword(a) and ((aword(1) shl sref.bitlen)-1))=(aword(1) shl sref.bitlen)-1)) or
  1390. ((sref.bitlen=AIntBits) and
  1391. (a=-1))
  1392. ) then
  1393. slopt:=SL_SETMAX
  1394. else if (a=0) then
  1395. slopt:=SL_SETZERO;
  1396. if not(slopt in [SL_SETZERO,SL_SETMAX]) then
  1397. begin
  1398. tmpreg:=getintregister(list,tosubsetsize);
  1399. a_load_const_reg(list,tosubsetsize,a,tmpreg);
  1400. end
  1401. else
  1402. tmpreg:=NR_NO;
  1403. a_load_regconst_subsetref_intern(list,tosubsetsize,tosubsetsize,tmpreg,sref,slopt);
  1404. end;
  1405. procedure thlcgobj.a_load_subsetref_loc(list: TAsmlist; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; const loc: tlocation);
  1406. begin
  1407. case loc.loc of
  1408. LOC_REFERENCE,LOC_CREFERENCE:
  1409. a_load_subsetref_ref(list,fromsubsetsize,tosize,sref,loc.reference);
  1410. LOC_REGISTER,LOC_CREGISTER:
  1411. a_load_subsetref_reg(list,fromsubsetsize,tosize,sref,loc.register);
  1412. LOC_SUBSETREG,LOC_CSUBSETREG:
  1413. a_load_subsetref_subsetreg(list,fromsubsetsize,tosize,sref,loc.sreg);
  1414. LOC_SUBSETREF,LOC_CSUBSETREF:
  1415. a_load_subsetref_subsetref(list,fromsubsetsize,tosize,sref,loc.sref);
  1416. else
  1417. internalerror(2010120407);
  1418. end;
  1419. end;
  1420. procedure thlcgobj.a_load_subsetref_subsetreg(list: TAsmlist; fromsubsetsize, tosubsetsize: tdef; const fromsref: tsubsetreference; const tosreg: tsubsetregister);
  1421. var
  1422. tmpreg: tregister;
  1423. begin
  1424. tmpreg:=getintregister(list,tosubsetsize);
  1425. a_load_subsetref_reg(list,fromsubsetsize,tosubsetsize,fromsref,tmpreg);
  1426. a_load_reg_subsetreg(list,tosubsetsize,tosubsetsize,tmpreg,tosreg);
  1427. end;
  1428. procedure thlcgobj.a_load_subsetreg_subsetref(list: TAsmlist; fromsubsetsize, tosubsetsize: tdef; const fromsreg: tsubsetregister; const tosref: tsubsetreference);
  1429. var
  1430. tmpreg: tregister;
  1431. begin
  1432. tmpreg := getintregister(list,tosubsetsize);
  1433. a_load_subsetreg_reg(list,fromsubsetsize,tosubsetsize,fromsreg,tmpreg);
  1434. a_load_reg_subsetref(list,tosubsetsize,tosubsetsize,tmpreg,tosref);
  1435. end;
  1436. procedure thlcgobj.a_bit_test_reg_reg_reg(list: TAsmList; bitnumbersize, valuesize, destsize: tdef; bitnumber, value, destreg: tregister);
  1437. var
  1438. tmpvalue: tregister;
  1439. begin
  1440. tmpvalue:=getintregister(list,valuesize);
  1441. if (target_info.endian=endian_little) then
  1442. begin
  1443. { rotate value register "bitnumber" bits to the right }
  1444. a_op_reg_reg_reg(list,OP_SHR,valuesize,bitnumber,value,tmpvalue);
  1445. { extract the bit we want }
  1446. a_op_const_reg(list,OP_AND,valuesize,1,tmpvalue);
  1447. end
  1448. else
  1449. begin
  1450. { highest (leftmost) bit = bit 0 -> shl bitnumber results in wanted }
  1451. { bit in uppermost position, then move it to the lowest position }
  1452. { "and" is not necessary since combination of shl/shr will clear }
  1453. { all other bits }
  1454. a_op_reg_reg_reg(list,OP_SHL,valuesize,bitnumber,value,tmpvalue);
  1455. a_op_const_reg(list,OP_SHR,valuesize,valuesize.size*8-1,tmpvalue);
  1456. end;
  1457. a_load_reg_reg(list,valuesize,destsize,tmpvalue,destreg);
  1458. end;
  1459. procedure thlcgobj.a_bit_test_const_ref_reg(list: TAsmList; fromsize, destsize: tdef; bitnumber: aint; const ref: treference; destreg: tregister);
  1460. var
  1461. href: treference;
  1462. begin
  1463. href:=ref;
  1464. g_ptrtypecast_ref(list,cpointerdef.getreusable(fromsize),cpointerdef.getreusable(u8inttype),href);
  1465. a_load_subsetref_reg(list,u8inttype,destsize,get_bit_const_ref_sref(bitnumber,fromsize,href),destreg);
  1466. end;
  1467. procedure thlcgobj.a_bit_test_const_reg_reg(list: TAsmList; setregsize, destsize: tdef; bitnumber: aint; setreg, destreg: tregister);
  1468. begin
  1469. a_load_subsetreg_reg(list,setregsize,destsize,get_bit_const_reg_sreg(setregsize,bitnumber,setreg),destreg);
  1470. end;
  1471. procedure thlcgobj.a_bit_test_const_subsetreg_reg(list: TAsmList; fromsubsetsize, destsize: tdef; bitnumber: aint; const setreg: tsubsetregister; destreg: tregister);
  1472. var
  1473. tmpsreg: tsubsetregister;
  1474. begin
  1475. { the first parameter is used to calculate the bit offset in }
  1476. { case of big endian, and therefore must be the size of the }
  1477. { set and not of the whole subsetreg }
  1478. tmpsreg:=get_bit_const_reg_sreg(fromsubsetsize,bitnumber,setreg.subsetreg);
  1479. { now fix the size of the subsetreg }
  1480. tmpsreg.subsetregsize:=setreg.subsetregsize;
  1481. { correct offset of the set in the subsetreg }
  1482. inc(tmpsreg.startbit,setreg.startbit);
  1483. a_load_subsetreg_reg(list,fromsubsetsize,destsize,tmpsreg,destreg);
  1484. end;
  1485. procedure thlcgobj.a_bit_test_reg_ref_reg(list: TAsmList; bitnumbersize, refsize, destsize: tdef; bitnumber: tregister; const ref: treference; destreg: tregister);
  1486. var
  1487. href: treference;
  1488. begin
  1489. href:=ref;
  1490. g_ptrtypecast_ref(list,cpointerdef.getreusable(refsize),cpointerdef.getreusable(u8inttype),href);
  1491. a_load_subsetref_reg(list,u8inttype,destsize,get_bit_reg_ref_sref(list,bitnumbersize,refsize,bitnumber,href),destreg);
  1492. end;
  1493. procedure thlcgobj.a_bit_test_reg_loc_reg(list: TAsmList; bitnumbersize, locsize, destsize: tdef; bitnumber: tregister; const loc: tlocation; destreg: tregister);
  1494. var
  1495. tmpreg: tregister;
  1496. begin
  1497. case loc.loc of
  1498. LOC_REFERENCE,LOC_CREFERENCE:
  1499. a_bit_test_reg_ref_reg(list,bitnumbersize,locsize,destsize,bitnumber,loc.reference,destreg);
  1500. LOC_REGISTER,LOC_CREGISTER,
  1501. LOC_SUBSETREG,LOC_CSUBSETREG,
  1502. LOC_CONSTANT:
  1503. begin
  1504. case loc.loc of
  1505. LOC_REGISTER,LOC_CREGISTER:
  1506. tmpreg:=loc.register;
  1507. LOC_SUBSETREG,LOC_CSUBSETREG:
  1508. begin
  1509. tmpreg:=getintregister(list,locsize);
  1510. a_load_subsetreg_reg(list,locsize,locsize,loc.sreg,tmpreg);
  1511. end;
  1512. LOC_CONSTANT:
  1513. begin
  1514. tmpreg:=getintregister(list,locsize);
  1515. a_load_const_reg(list,locsize,loc.value,tmpreg);
  1516. end;
  1517. else
  1518. internalerror(2013112909);
  1519. end;
  1520. a_bit_test_reg_reg_reg(list,bitnumbersize,locsize,destsize,bitnumber,tmpreg,destreg);
  1521. end;
  1522. { LOC_SUBSETREF is not possible, because sets are not (yet) bitpacked }
  1523. else
  1524. internalerror(2010120411);
  1525. end;
  1526. end;
  1527. procedure thlcgobj.a_bit_test_const_loc_reg(list: TAsmList; locsize, destsize: tdef; bitnumber: aint; const loc: tlocation; destreg: tregister);
  1528. begin
  1529. case loc.loc of
  1530. LOC_REFERENCE,LOC_CREFERENCE:
  1531. a_bit_test_const_ref_reg(list,locsize,destsize,bitnumber,loc.reference,destreg);
  1532. LOC_REGISTER,LOC_CREGISTER:
  1533. a_bit_test_const_reg_reg(list,locsize,destsize,bitnumber,loc.register,destreg);
  1534. LOC_SUBSETREG,LOC_CSUBSETREG:
  1535. a_bit_test_const_subsetreg_reg(list,locsize,destsize,bitnumber,loc.sreg,destreg);
  1536. { LOC_SUBSETREF is not possible, because sets are not (yet) bitpacked }
  1537. else
  1538. internalerror(2010120410);
  1539. end;
  1540. end;
  1541. procedure thlcgobj.a_bit_set_reg_reg(list: TAsmList; doset: boolean; bitnumbersize, destsize: tdef; bitnumber, dest: tregister);
  1542. var
  1543. tmpvalue: tregister;
  1544. begin
  1545. tmpvalue:=getintregister(list,destsize);
  1546. if (target_info.endian=endian_little) then
  1547. begin
  1548. a_load_const_reg(list,destsize,1,tmpvalue);
  1549. { rotate bit "bitnumber" bits to the left }
  1550. a_op_reg_reg(list,OP_SHL,destsize,bitnumber,tmpvalue);
  1551. end
  1552. else
  1553. begin
  1554. { highest (leftmost) bit = bit 0 -> "$80/$8000/$80000000/ ... }
  1555. { shr bitnumber" results in correct mask }
  1556. a_load_const_reg(list,destsize,1 shl (destsize.size*8-1),tmpvalue);
  1557. a_op_reg_reg(list,OP_SHR,destsize,bitnumber,tmpvalue);
  1558. end;
  1559. { set/clear the bit we want }
  1560. if doset then
  1561. a_op_reg_reg(list,OP_OR,destsize,tmpvalue,dest)
  1562. else
  1563. begin
  1564. a_op_reg_reg(list,OP_NOT,destsize,tmpvalue,tmpvalue);
  1565. a_op_reg_reg(list,OP_AND,destsize,tmpvalue,dest)
  1566. end;
  1567. end;
  1568. procedure thlcgobj.a_bit_set_const_ref(list: TAsmList; doset: boolean; destsize: tdef; bitnumber: tcgint; const ref: treference);
  1569. var
  1570. href: treference;
  1571. begin
  1572. href:=ref;
  1573. g_ptrtypecast_ref(list,cpointerdef.getreusable(destsize),cpointerdef.getreusable(u8inttype),href);
  1574. a_load_const_subsetref(list,u8inttype,ord(doset),get_bit_const_ref_sref(bitnumber,destsize,href));
  1575. end;
  1576. procedure thlcgobj.a_bit_set_const_reg(list: TAsmList; doset: boolean; destsize: tdef; bitnumber: tcgint; destreg: tregister);
  1577. begin
  1578. g_ptrtypecast_reg(list,cpointerdef.getreusable(destsize),cpointerdef.getreusable(u8inttype),destreg);
  1579. a_load_const_subsetreg(list,u8inttype,ord(doset),get_bit_const_reg_sreg(destsize,bitnumber,destreg));
  1580. end;
  1581. procedure thlcgobj.a_bit_set_const_subsetreg(list: TAsmList; doset: boolean; destsize: tdef; bitnumber: tcgint; const destreg: tsubsetregister);
  1582. var
  1583. tmpsreg: tsubsetregister;
  1584. begin
  1585. { the first parameter is used to calculate the bit offset in }
  1586. { case of big endian, and therefore must be the size of the }
  1587. { set and not of the whole subsetreg }
  1588. tmpsreg:=get_bit_const_reg_sreg(destsize,bitnumber,destreg.subsetreg);
  1589. { now fix the size of the subsetreg }
  1590. tmpsreg.subsetregsize:=destreg.subsetregsize;
  1591. { correct offset of the set in the subsetreg }
  1592. inc(tmpsreg.startbit,destreg.startbit);
  1593. a_load_const_subsetreg(list,u8inttype,ord(doset),tmpsreg);
  1594. end;
  1595. procedure thlcgobj.a_bit_set_reg_ref(list: TAsmList; doset: boolean; fromsize, tosize: tdef; bitnumber: tregister; const ref: treference);
  1596. var
  1597. href: treference;
  1598. begin
  1599. href:=ref;
  1600. g_ptrtypecast_ref(list,cpointerdef.getreusable(tosize),cpointerdef.getreusable(u8inttype),href);
  1601. a_load_const_subsetref(list,u8inttype,ord(doset),get_bit_reg_ref_sref(list,fromsize,tosize,bitnumber,href));
  1602. end;
  1603. procedure thlcgobj.a_bit_set_reg_loc(list: TAsmList; doset: boolean; regsize, tosize: tdef; bitnumber: tregister; const loc: tlocation);
  1604. var
  1605. tmpreg: tregister;
  1606. begin
  1607. case loc.loc of
  1608. LOC_REFERENCE:
  1609. a_bit_set_reg_ref(list,doset,regsize,tosize,bitnumber,loc.reference);
  1610. LOC_CREGISTER:
  1611. a_bit_set_reg_reg(list,doset,regsize,tosize,bitnumber,loc.register);
  1612. { e.g. a 2-byte set in a record regvar }
  1613. LOC_CSUBSETREG:
  1614. begin
  1615. { hard to do in-place in a generic way, so operate on a copy }
  1616. tmpreg:=getintregister(list,tosize);
  1617. a_load_subsetreg_reg(list,tosize,tosize,loc.sreg,tmpreg);
  1618. a_bit_set_reg_reg(list,doset,regsize,tosize,bitnumber,tmpreg);
  1619. a_load_reg_subsetreg(list,tosize,tosize,tmpreg,loc.sreg);
  1620. end;
  1621. { LOC_SUBSETREF is not possible, because sets are not (yet) bitpacked }
  1622. else
  1623. internalerror(2010120408)
  1624. end;
  1625. end;
  1626. procedure thlcgobj.a_bit_set_const_loc(list: TAsmList; doset: boolean; tosize: tdef; bitnumber: tcgint; const loc: tlocation);
  1627. begin
  1628. case loc.loc of
  1629. LOC_REFERENCE:
  1630. a_bit_set_const_ref(list,doset,tosize,bitnumber,loc.reference);
  1631. LOC_CREGISTER:
  1632. a_bit_set_const_reg(list,doset,tosize,bitnumber,loc.register);
  1633. LOC_CSUBSETREG:
  1634. a_bit_set_const_subsetreg(list,doset,tosize,bitnumber,loc.sreg);
  1635. { LOC_SUBSETREF is not possible, because sets are not (yet) bitpacked }
  1636. else
  1637. internalerror(2010120409)
  1638. end;
  1639. end;
  1640. function thlcgobj.get_call_result_cgpara(pd: tabstractprocdef; forceresdef: tdef): tcgpara;
  1641. begin
  1642. if not assigned(forceresdef) then
  1643. begin
  1644. pd.init_paraloc_info(callerside);
  1645. result:=pd.funcretloc[callerside];
  1646. end
  1647. else
  1648. result:=paramanager.get_funcretloc(pd,callerside,forceresdef);
  1649. end;
  1650. (*
  1651. Subsetrefs are used for (bit)packed arrays and (bit)packed records stored
  1652. in memory. They are like a regular reference, but contain an extra bit
  1653. offset (either constant -startbit- or variable -bitindexreg-, always OS_INT)
  1654. and a bit length (always constant).
  1655. Bit packed values are stored differently in memory depending on whether we
  1656. are on a big or a little endian system (compatible with at least GPC). The
  1657. size of the basic working unit is always the smallest power-of-2 byte size
  1658. which can contain the bit value (so 1..8 bits -> 1 byte, 9..16 bits -> 2
  1659. bytes, 17..32 bits -> 4 bytes etc).
  1660. On a big endian, 5-bit: values are stored like this:
  1661. 11111222 22333334 44445555 56666677 77788888
  1662. The leftmost bit of each 5-bit value corresponds to the most significant
  1663. bit.
  1664. On little endian, it goes like this:
  1665. 22211111 43333322 55554444 77666665 88888777
  1666. In this case, per byte the left-most bit is more significant than those on
  1667. the right, but the bits in the next byte are all more significant than
  1668. those in the previous byte (e.g., the 222 in the first byte are the low
  1669. three bits of that value, while the 22 in the second byte are the upper
  1670. two bits.
  1671. Big endian, 9 bit values:
  1672. 11111111 12222222 22333333 33344444 ...
  1673. Little endian, 9 bit values:
  1674. 11111111 22222221 33333322 44444333 ...
  1675. This is memory representation and the 16 bit values are byteswapped.
  1676. Similarly as in the previous case, the 2222222 string contains the lower
  1677. bits of value 2 and the 22 string contains the upper bits. Once loaded into
  1678. registers (two 16 bit registers in the current implementation, although a
  1679. single 32 bit register would be possible too, in particular if 32 bit
  1680. alignment can be guaranteed), this becomes:
  1681. 22222221 11111111 44444333 33333322 ...
  1682. (l)ow u l l u l u
  1683. The startbit/bitindex in a subsetreference always refers to
  1684. a) on big endian: the most significant bit of the value
  1685. (bits counted from left to right, both memory an registers)
  1686. b) on little endian: the least significant bit when the value
  1687. is loaded in a register (bit counted from right to left)
  1688. Although a) results in more complex code for big endian systems, it's
  1689. needed for compatibility both with GPC and with e.g. bitpacked arrays in
  1690. Apple's universal interfaces which depend on these layout differences).
  1691. Note: when changing the loadsize calculated in get_subsetref_load_info,
  1692. make sure the appropriate alignment is guaranteed, at least in case of
  1693. {$defined cpurequiresproperalignment}.
  1694. *)
  1695. procedure thlcgobj.get_subsetref_load_info(const sref: tsubsetreference; out loadsize: torddef; out extra_load: boolean);
  1696. var
  1697. intloadsize: tcgint;
  1698. begin
  1699. intloadsize:=packedbitsloadsize(sref.bitlen);
  1700. if (intloadsize=0) then
  1701. internalerror(2006081310);
  1702. if (intloadsize>sizeof(aint)) then
  1703. intloadsize:=sizeof(aint);
  1704. loadsize:=cgsize_orddef(int_cgsize(intloadsize));
  1705. if (sref.bitlen>sizeof(aint)*8) then
  1706. internalerror(2006081312);
  1707. extra_load:=
  1708. (sref.bitlen<>1) and
  1709. ((sref.bitindexreg<>NR_NO) or
  1710. (byte(sref.startbit+sref.bitlen)>byte(intloadsize*8)));
  1711. end;
  1712. procedure thlcgobj.a_load_subsetref_regs_noindex(list: TAsmList; subsetsize: tdef; loadbitsize: byte; const sref: tsubsetreference; valuereg, extra_value_reg: tregister);
  1713. var
  1714. restbits: byte;
  1715. begin
  1716. if (target_info.endian=endian_big) then
  1717. begin
  1718. { valuereg contains the upper bits, extra_value_reg the lower }
  1719. restbits:=(sref.bitlen-(loadbitsize-sref.startbit));
  1720. if is_signed(subsetsize) then
  1721. begin
  1722. { sign extend }
  1723. a_op_const_reg(list,OP_SHL,osuinttype,AIntBits-loadbitsize+sref.startbit,valuereg);
  1724. a_op_const_reg(list,OP_SAR,osuinttype,AIntBits-sref.bitlen,valuereg);
  1725. end
  1726. else
  1727. begin
  1728. a_op_const_reg(list,OP_SHL,osuinttype,restbits,valuereg);
  1729. { mask other bits }
  1730. if (sref.bitlen<>AIntBits) then
  1731. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),valuereg);
  1732. end;
  1733. a_op_const_reg(list,OP_SHR,osuinttype,loadbitsize-restbits,extra_value_reg)
  1734. end
  1735. else
  1736. begin
  1737. { valuereg contains the lower bits, extra_value_reg the upper }
  1738. a_op_const_reg(list,OP_SHR,osuinttype,sref.startbit,valuereg);
  1739. if is_signed(subsetsize) then
  1740. begin
  1741. a_op_const_reg(list,OP_SHL,osuinttype,AIntBits-sref.bitlen+loadbitsize-sref.startbit,extra_value_reg);
  1742. a_op_const_reg(list,OP_SAR,osuinttype,AIntBits-sref.bitlen,extra_value_reg);
  1743. end
  1744. else
  1745. begin
  1746. a_op_const_reg(list,OP_SHL,osuinttype,loadbitsize-sref.startbit,extra_value_reg);
  1747. { mask other bits }
  1748. if (sref.bitlen <> AIntBits) then
  1749. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),extra_value_reg);
  1750. end;
  1751. end;
  1752. { merge }
  1753. a_op_reg_reg(list,OP_OR,osuinttype,extra_value_reg,valuereg);
  1754. end;
  1755. procedure thlcgobj.a_load_subsetref_regs_index(list: TAsmList; subsetsize: tdef; loadbitsize: byte; const sref: tsubsetreference; valuereg: tregister);
  1756. var
  1757. hl: tasmlabel;
  1758. tmpref: treference;
  1759. extra_value_reg,
  1760. tmpreg: tregister;
  1761. begin
  1762. tmpreg:=getintregister(list,osuinttype);
  1763. tmpref:=sref.ref;
  1764. inc(tmpref.offset,loadbitsize div 8);
  1765. extra_value_reg:=getintregister(list,osuinttype);
  1766. if (target_info.endian=endian_big) then
  1767. begin
  1768. { since this is a dynamic index, it's possible that the value }
  1769. { is entirely in valuereg. }
  1770. { get the data in valuereg in the right place }
  1771. a_op_reg_reg(list,OP_SHL,osuinttype,sref.bitindexreg,valuereg);
  1772. if is_signed(subsetsize) then
  1773. begin
  1774. a_op_const_reg(list,OP_SHL,osuinttype,AIntBits-loadbitsize,valuereg);
  1775. a_op_const_reg(list,OP_SAR,osuinttype,AIntBits-sref.bitlen,valuereg)
  1776. end
  1777. else
  1778. begin
  1779. a_op_const_reg(list,OP_SHR,osuinttype,loadbitsize-sref.bitlen,valuereg);
  1780. if (loadbitsize<>AIntBits) then
  1781. { mask left over bits }
  1782. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),valuereg);
  1783. end;
  1784. tmpreg := getintregister(list,osuinttype);
  1785. { ensure we don't load anything past the end of the array }
  1786. current_asmdata.getjumplabel(hl);
  1787. a_cmp_const_reg_label(list,osuinttype,OC_BE,loadbitsize-sref.bitlen,sref.bitindexreg,hl);
  1788. { the bits in extra_value_reg (if any) start at the most significant bit => }
  1789. { extra_value_reg must be shr by (loadbitsize-sref.bitlen)+(loadsize-sref.bitindex) }
  1790. { => = -(sref.bitindex+(sref.bitlen-2*loadbitsize)) }
  1791. a_op_const_reg_reg(list,OP_ADD,osuinttype,sref.bitlen-2*loadbitsize,sref.bitindexreg,tmpreg);
  1792. a_op_reg_reg(list,OP_NEG,osuinttype,tmpreg,tmpreg);
  1793. { load next "loadbitsize" bits of the array }
  1794. a_load_ref_reg(list,cgsize_orddef(int_cgsize(loadbitsize div 8)),osuinttype,tmpref,extra_value_reg);
  1795. a_op_reg_reg(list,OP_SHR,osuinttype,tmpreg,extra_value_reg);
  1796. { if there are no bits in extra_value_reg, then sref.bitindex was }
  1797. { < loadsize-sref.bitlen, and therefore tmpreg will now be >= loadsize }
  1798. { => extra_value_reg is now 0 }
  1799. { merge }
  1800. a_op_reg_reg(list,OP_OR,osuinttype,extra_value_reg,valuereg);
  1801. { no need to mask, necessary masking happened earlier on }
  1802. a_label(list,hl);
  1803. end
  1804. else
  1805. begin
  1806. a_op_reg_reg(list,OP_SHR,osuinttype,sref.bitindexreg,valuereg);
  1807. { ensure we don't load anything past the end of the array }
  1808. current_asmdata.getjumplabel(hl);
  1809. a_cmp_const_reg_label(list,osuinttype,OC_BE,loadbitsize-sref.bitlen,sref.bitindexreg,hl);
  1810. { Y-x = -(Y-x) }
  1811. a_op_const_reg_reg(list,OP_SUB,osuinttype,loadbitsize,sref.bitindexreg,tmpreg);
  1812. a_op_reg_reg(list,OP_NEG,osuinttype,tmpreg,tmpreg);
  1813. { load next "loadbitsize" bits of the array }
  1814. a_load_ref_reg(list,cgsize_orddef(int_cgsize(loadbitsize div 8)),osuinttype,tmpref,extra_value_reg);
  1815. { tmpreg is in the range 1..<cpu_bitsize>-1 -> always ok }
  1816. a_op_reg_reg(list,OP_SHL,osuinttype,tmpreg,extra_value_reg);
  1817. { merge }
  1818. a_op_reg_reg(list,OP_OR,osuinttype,extra_value_reg,valuereg);
  1819. a_label(list,hl);
  1820. { sign extend or mask other bits }
  1821. if is_signed(subsetsize) then
  1822. begin
  1823. a_op_const_reg(list,OP_SHL,osuinttype,AIntBits-sref.bitlen,valuereg);
  1824. a_op_const_reg(list,OP_SAR,osuinttype,AIntBits-sref.bitlen,valuereg);
  1825. end
  1826. else
  1827. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),valuereg);
  1828. end;
  1829. end;
  1830. procedure thlcgobj.a_load_regconst_subsetref_intern(list: TAsmList; fromsize, subsetsize: tdef; fromreg: tregister; const sref: tsubsetreference; slopt: tsubsetloadopt);
  1831. var
  1832. hl: tasmlabel;
  1833. tmpreg, tmpindexreg, valuereg, extra_value_reg, maskreg: tregister;
  1834. tosreg, fromsreg: tsubsetregister;
  1835. tmpref: treference;
  1836. bitmask: aword;
  1837. loadsize: torddef;
  1838. loadbitsize: byte;
  1839. extra_load: boolean;
  1840. begin
  1841. { the register must be able to contain the requested value }
  1842. if (fromsize.size*8<sref.bitlen) then
  1843. internalerror(2006081613);
  1844. get_subsetref_load_info(sref,loadsize,extra_load);
  1845. loadbitsize:=loadsize.size*8;
  1846. { load the (first part) of the bit sequence }
  1847. valuereg:=getintregister(list,osuinttype);
  1848. a_load_ref_reg(list,loadsize,osuinttype,sref.ref,valuereg);
  1849. { constant offset of bit sequence? }
  1850. if not extra_load then
  1851. begin
  1852. if (sref.bitindexreg=NR_NO) then
  1853. begin
  1854. { use subsetreg routine, it may have been overridden with an optimized version }
  1855. tosreg.subsetreg:=valuereg;
  1856. tosreg.subsetregsize:=def_cgsize(osuinttype);
  1857. { subsetregs always count bits from right to left }
  1858. if (target_info.endian=endian_big) then
  1859. tosreg.startbit:=loadbitsize-(sref.startbit+sref.bitlen)
  1860. else
  1861. tosreg.startbit:=sref.startbit;
  1862. tosreg.bitlen:=sref.bitlen;
  1863. a_load_regconst_subsetreg_intern(list,fromsize,subsetsize,fromreg,tosreg,slopt);
  1864. end
  1865. else
  1866. begin
  1867. if (sref.startbit<>0) then
  1868. internalerror(2006081710);
  1869. { should be handled by normal code and will give wrong result }
  1870. { on x86 for the '1 shl bitlen' below }
  1871. if (sref.bitlen=AIntBits) then
  1872. internalerror(2006081711);
  1873. { zero the bits we have to insert }
  1874. if (slopt<>SL_SETMAX) then
  1875. begin
  1876. maskreg:=getintregister(list,osuinttype);
  1877. if (target_info.endian = endian_big) then
  1878. begin
  1879. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen)-1) shl (loadbitsize-sref.bitlen),maskreg);
  1880. a_op_reg_reg(list,OP_SHR,osuinttype,sref.bitindexreg,maskreg);
  1881. end
  1882. else
  1883. begin
  1884. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),maskreg);
  1885. a_op_reg_reg(list,OP_SHL,osuinttype,sref.bitindexreg,maskreg);
  1886. end;
  1887. a_op_reg_reg(list,OP_NOT,osuinttype,maskreg,maskreg);
  1888. a_op_reg_reg(list,OP_AND,osuinttype,maskreg,valuereg);
  1889. end;
  1890. { insert the value }
  1891. if (slopt<>SL_SETZERO) then
  1892. begin
  1893. tmpreg:=getintregister(list,osuinttype);
  1894. if (slopt<>SL_SETMAX) then
  1895. a_load_reg_reg(list,fromsize,osuinttype,fromreg,tmpreg)
  1896. else if (sref.bitlen<>AIntBits) then
  1897. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen)-1), tmpreg)
  1898. else
  1899. a_load_const_reg(list,osuinttype,-1,tmpreg);
  1900. if (target_info.endian=endian_big) then
  1901. begin
  1902. a_op_const_reg(list,OP_SHL,osuinttype,loadbitsize-sref.bitlen,tmpreg);
  1903. if not(slopt in [SL_REGNOSRCMASK,SL_SETMAX]) then
  1904. begin
  1905. if (loadbitsize<>AIntBits) then
  1906. bitmask:=(((aword(1) shl loadbitsize)-1) xor ((aword(1) shl (loadbitsize-sref.bitlen))-1))
  1907. else
  1908. bitmask:=(high(aword) xor ((aword(1) shl (loadbitsize-sref.bitlen))-1));
  1909. a_op_const_reg(list,OP_AND,osuinttype,bitmask,tmpreg);
  1910. end;
  1911. a_op_reg_reg(list,OP_SHR,osuinttype,sref.bitindexreg,tmpreg);
  1912. end
  1913. else
  1914. begin
  1915. if not(slopt in [SL_REGNOSRCMASK,SL_SETMAX]) then
  1916. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),tmpreg);
  1917. a_op_reg_reg(list,OP_SHL,osuinttype,sref.bitindexreg,tmpreg);
  1918. end;
  1919. a_op_reg_reg(list,OP_OR,osuinttype,tmpreg,valuereg);
  1920. end;
  1921. end;
  1922. { store back to memory }
  1923. tmpreg:=getintregister(list,loadsize);
  1924. a_load_reg_reg(list,osuinttype,loadsize,valuereg,tmpreg);
  1925. a_load_reg_ref(list,loadsize,loadsize,tmpreg,sref.ref);
  1926. exit;
  1927. end
  1928. else
  1929. begin
  1930. { load next value }
  1931. extra_value_reg:=getintregister(list,osuinttype);
  1932. tmpref:=sref.ref;
  1933. inc(tmpref.offset,loadbitsize div 8);
  1934. { should maybe be taken out too, can be done more efficiently }
  1935. { on e.g. i386 with shld/shrd }
  1936. if (sref.bitindexreg = NR_NO) then
  1937. begin
  1938. a_load_ref_reg(list,loadsize,osuinttype,tmpref,extra_value_reg);
  1939. fromsreg.subsetreg:=fromreg;
  1940. fromsreg.subsetregsize:=def_cgsize(fromsize);
  1941. tosreg.subsetreg:=valuereg;
  1942. tosreg.subsetregsize:=def_cgsize(osuinttype);
  1943. { transfer first part }
  1944. fromsreg.bitlen:=loadbitsize-sref.startbit;
  1945. tosreg.bitlen:=fromsreg.bitlen;
  1946. if (target_info.endian=endian_big) then
  1947. begin
  1948. { valuereg must contain the upper bits of the value at bits [0..loadbitsize-startbit] }
  1949. { upper bits of the value ... }
  1950. fromsreg.startbit:=sref.bitlen-(loadbitsize-sref.startbit);
  1951. { ... to bit 0 }
  1952. tosreg.startbit:=0
  1953. end
  1954. else
  1955. begin
  1956. { valuereg must contain the lower bits of the value at bits [startbit..loadbitsize] }
  1957. { lower bits of the value ... }
  1958. fromsreg.startbit:=0;
  1959. { ... to startbit }
  1960. tosreg.startbit:=sref.startbit;
  1961. end;
  1962. case slopt of
  1963. SL_SETZERO,
  1964. SL_SETMAX:
  1965. a_load_regconst_subsetreg_intern(list,fromsize,subsetsize,fromreg,tosreg,slopt);
  1966. else
  1967. a_load_subsetreg_subsetreg(list,subsetsize,subsetsize,fromsreg,tosreg);
  1968. end;
  1969. {$ifndef cpuhighleveltarget}
  1970. valuereg:=cg.makeregsize(list,valuereg,def_cgsize(loadsize));
  1971. a_load_reg_ref(list,loadsize,loadsize,valuereg,sref.ref);
  1972. {$else}
  1973. tmpreg:=getintregister(list,loadsize);
  1974. a_load_reg_reg(list,osuinttype,loadsize,valuereg,tmpreg);
  1975. a_load_reg_ref(list,loadsize,loadsize,tmpreg,sref.ref);
  1976. {$endif}
  1977. { transfer second part }
  1978. if (target_info.endian = endian_big) then
  1979. begin
  1980. { extra_value_reg must contain the lower bits of the value at bits }
  1981. { [(loadbitsize-(bitlen-(loadbitsize-startbit)))..loadbitsize] }
  1982. { (loadbitsize-(bitlen-(loadbitsize-startbit))) = 2*loadbitsize }
  1983. { - bitlen - startbit }
  1984. fromsreg.startbit:=0;
  1985. tosreg.startbit:=2*loadbitsize-sref.bitlen-sref.startbit
  1986. end
  1987. else
  1988. begin
  1989. { extra_value_reg must contain the upper bits of the value at bits [0..bitlen-(loadbitsize-startbit)] }
  1990. fromsreg.startbit:=fromsreg.bitlen;
  1991. tosreg.startbit:=0;
  1992. end;
  1993. tosreg.subsetreg:=extra_value_reg;
  1994. fromsreg.bitlen:=sref.bitlen-fromsreg.bitlen;
  1995. tosreg.bitlen:=fromsreg.bitlen;
  1996. case slopt of
  1997. SL_SETZERO,
  1998. SL_SETMAX:
  1999. a_load_regconst_subsetreg_intern(list,fromsize,subsetsize,fromreg,tosreg,slopt);
  2000. else
  2001. a_load_subsetreg_subsetreg(list,subsetsize,subsetsize,fromsreg,tosreg);
  2002. end;
  2003. tmpreg:=getintregister(list,loadsize);
  2004. a_load_reg_reg(list,osuinttype,loadsize,extra_value_reg,tmpreg);
  2005. a_load_reg_ref(list,loadsize,loadsize,tmpreg,tmpref);
  2006. exit;
  2007. end
  2008. else
  2009. begin
  2010. if (sref.startbit <> 0) then
  2011. internalerror(2006081812);
  2012. { should be handled by normal code and will give wrong result }
  2013. { on x86 for the '1 shl bitlen' below }
  2014. if (sref.bitlen = AIntBits) then
  2015. internalerror(2006081713);
  2016. { generate mask to zero the bits we have to insert }
  2017. if (slopt <> SL_SETMAX) then
  2018. begin
  2019. maskreg := getintregister(list,osuinttype);
  2020. if (target_info.endian = endian_big) then
  2021. begin
  2022. a_load_const_reg(list,osuinttype,tcgint(((aword(1) shl sref.bitlen)-1) shl (loadbitsize-sref.bitlen)),maskreg);
  2023. a_op_reg_reg(list,OP_SHR,osuinttype,sref.bitindexreg,maskreg);
  2024. end
  2025. else
  2026. begin
  2027. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),maskreg);
  2028. a_op_reg_reg(list,OP_SHL,osuinttype,sref.bitindexreg,maskreg);
  2029. end;
  2030. a_op_reg_reg(list,OP_NOT,osuinttype,maskreg,maskreg);
  2031. a_op_reg_reg(list,OP_AND,osuinttype,maskreg,valuereg);
  2032. end;
  2033. { insert the value }
  2034. if (slopt <> SL_SETZERO) then
  2035. begin
  2036. tmpreg := getintregister(list,osuinttype);
  2037. if (slopt <> SL_SETMAX) then
  2038. a_load_reg_reg(list,fromsize,osuinttype,fromreg,tmpreg)
  2039. else if (sref.bitlen <> AIntBits) then
  2040. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen) - 1), tmpreg)
  2041. else
  2042. a_load_const_reg(list,osuinttype,-1,tmpreg);
  2043. if (target_info.endian = endian_big) then
  2044. begin
  2045. a_op_const_reg(list,OP_SHL,osuinttype,loadbitsize-sref.bitlen,tmpreg);
  2046. if not(slopt in [SL_REGNOSRCMASK,SL_SETMAX]) then
  2047. { mask left over bits }
  2048. a_op_const_reg(list,OP_AND,osuinttype,tcgint(((aword(1) shl sref.bitlen)-1) shl (loadbitsize-sref.bitlen)),tmpreg);
  2049. a_op_reg_reg(list,OP_SHR,osuinttype,sref.bitindexreg,tmpreg);
  2050. end
  2051. else
  2052. begin
  2053. if not(slopt in [SL_REGNOSRCMASK,SL_SETMAX]) then
  2054. { mask left over bits }
  2055. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),tmpreg);
  2056. a_op_reg_reg(list,OP_SHL,osuinttype,sref.bitindexreg,tmpreg);
  2057. end;
  2058. a_op_reg_reg(list,OP_OR,osuinttype,tmpreg,valuereg);
  2059. end;
  2060. tmpreg:=getintregister(list,loadsize);
  2061. a_load_reg_reg(list,osuinttype,loadsize,valuereg,tmpreg);
  2062. a_load_reg_ref(list,loadsize,loadsize,tmpreg,sref.ref);
  2063. { make sure we do not read/write past the end of the array }
  2064. current_asmdata.getjumplabel(hl);
  2065. a_cmp_const_reg_label(list,osuinttype,OC_BE,loadbitsize-sref.bitlen,sref.bitindexreg,hl);
  2066. a_load_ref_reg(list,loadsize,osuinttype,tmpref,extra_value_reg);
  2067. tmpindexreg:=getintregister(list,osuinttype);
  2068. { load current array value }
  2069. if (slopt<>SL_SETZERO) then
  2070. begin
  2071. tmpreg:=getintregister(list,osuinttype);
  2072. if (slopt<>SL_SETMAX) then
  2073. a_load_reg_reg(list,fromsize,osuinttype,fromreg,tmpreg)
  2074. else if (sref.bitlen<>AIntBits) then
  2075. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen) - 1), tmpreg)
  2076. else
  2077. a_load_const_reg(list,osuinttype,-1,tmpreg);
  2078. end;
  2079. { generate mask to zero the bits we have to insert }
  2080. if (slopt<>SL_SETMAX) then
  2081. begin
  2082. maskreg:=getintregister(list,osuinttype);
  2083. if (target_info.endian=endian_big) then
  2084. begin
  2085. a_op_const_reg_reg(list,OP_ADD,osuinttype,sref.bitlen-2*loadbitsize,sref.bitindexreg,tmpindexreg);
  2086. a_op_reg_reg(list,OP_NEG,osuinttype,tmpindexreg,tmpindexreg);
  2087. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),maskreg);
  2088. a_op_reg_reg(list,OP_SHL,osuinttype,tmpindexreg,maskreg);
  2089. end
  2090. else
  2091. begin
  2092. { Y-x = -(x-Y) }
  2093. a_op_const_reg_reg(list,OP_SUB,osuinttype,loadbitsize,sref.bitindexreg,tmpindexreg);
  2094. a_op_reg_reg(list,OP_NEG,osuinttype,tmpindexreg,tmpindexreg);
  2095. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),maskreg);
  2096. a_op_reg_reg(list,OP_SHR,osuinttype,tmpindexreg,maskreg);
  2097. end;
  2098. a_op_reg_reg(list,OP_NOT,osuinttype,maskreg,maskreg);
  2099. a_op_reg_reg(list,OP_AND,osuinttype,maskreg,extra_value_reg);
  2100. end;
  2101. if (slopt<>SL_SETZERO) then
  2102. begin
  2103. if (target_info.endian=endian_big) then
  2104. a_op_reg_reg(list,OP_SHL,osuinttype,tmpindexreg,tmpreg)
  2105. else
  2106. begin
  2107. if not(slopt in [SL_REGNOSRCMASK,SL_SETMAX]) then
  2108. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),tmpreg);
  2109. a_op_reg_reg(list,OP_SHR,osuinttype,tmpindexreg,tmpreg);
  2110. end;
  2111. a_op_reg_reg(list,OP_OR,osuinttype,tmpreg,extra_value_reg);
  2112. end;
  2113. {$ifndef cpuhighleveltarget}
  2114. extra_value_reg:=cg.makeregsize(list,extra_value_reg,def_cgsize(loadsize));
  2115. a_load_reg_ref(list,loadsize,loadsize,extra_value_reg,tmpref);
  2116. {$else}
  2117. tmpreg:=getintregister(list,loadsize);
  2118. a_load_reg_reg(list,osuinttype,loadsize,extra_value_reg,tmpreg);
  2119. a_load_reg_ref(list,loadsize,loadsize,tmpreg,tmpref);
  2120. {$endif}
  2121. a_label(list,hl);
  2122. end;
  2123. end;
  2124. end;
  2125. procedure thlcgobj.a_load_regconst_subsetreg_intern(list: TAsmList; fromsize, subsetsize: tdef; fromreg: tregister; const sreg: tsubsetregister; slopt: tsubsetloadopt);
  2126. var
  2127. bitmask: aword;
  2128. tmpreg: tregister;
  2129. subsetregdef: torddef;
  2130. stopbit: byte;
  2131. begin
  2132. tmpreg:=NR_NO;
  2133. subsetregdef:=cgsize_orddef(sreg.subsetregsize);
  2134. stopbit:=sreg.startbit+sreg.bitlen;
  2135. // on x86(64), 1 shl 32(64) = 1 instead of 0
  2136. if (stopbit<>AIntBits) then
  2137. bitmask:=not(((aword(1) shl stopbit)-1) xor ((aword(1) shl sreg.startbit)-1))
  2138. else
  2139. bitmask:=not(high(aword) xor ((aword(1) shl sreg.startbit)-1));
  2140. if not(slopt in [SL_SETZERO,SL_SETMAX]) then
  2141. begin
  2142. tmpreg:=getintregister(list,subsetregdef);
  2143. a_load_reg_reg(list,fromsize,subsetregdef,fromreg,tmpreg);
  2144. a_op_const_reg(list,OP_SHL,subsetregdef,sreg.startbit,tmpreg);
  2145. if (slopt<>SL_REGNOSRCMASK) then
  2146. a_op_const_reg(list,OP_AND,subsetregdef,tcgint(not(bitmask)),tmpreg);
  2147. end;
  2148. if (slopt<>SL_SETMAX) and
  2149. { the "and" is not needed if the whole register is modified (except for SL_SETZERO),
  2150. because later on we do a move in this case instead of an or }
  2151. ((sreg.bitlen<>AIntBits) or (slopt=SL_SETZERO)) then
  2152. begin
  2153. { shl could wrap around in this case }
  2154. if subsetregdef.size=sizeof(aword) then
  2155. a_op_const_reg(list,OP_AND,subsetregdef,tcgint(bitmask),sreg.subsetreg)
  2156. else
  2157. a_op_const_reg(list,OP_AND,subsetregdef,tcgint(bitmask) and aword((aword(1) shl (subsetregdef.size*8))-1),sreg.subsetreg);
  2158. end;
  2159. case slopt of
  2160. SL_SETZERO : ;
  2161. SL_SETMAX :
  2162. if (sreg.bitlen<>AIntBits) then
  2163. a_op_const_reg(list,OP_OR,subsetregdef,
  2164. tcgint(((aword(1) shl sreg.bitlen)-1) shl sreg.startbit),
  2165. sreg.subsetreg)
  2166. else
  2167. a_load_const_reg(list,subsetregdef,-1,sreg.subsetreg);
  2168. { if the whole register is modified, no "or" is needed }
  2169. else if sreg.bitlen=AIntBits then
  2170. a_load_reg_reg(list,subsetregdef,subsetregdef,tmpreg,sreg.subsetreg)
  2171. else
  2172. a_op_reg_reg(list,OP_OR,subsetregdef,tmpreg,sreg.subsetreg)
  2173. end;
  2174. end;
  2175. {$pop}
  2176. function thlcgobj.get_bit_const_ref_sref(bitnumber: tcgint; refdef: tdef; const ref: treference): tsubsetreference;
  2177. begin
  2178. result.ref:=ref;
  2179. inc(result.ref.offset,bitnumber div 8);
  2180. result.ref.alignment:=newalignment(result.ref.alignment,bitnumber div 8);
  2181. result.bitindexreg:=NR_NO;
  2182. result.startbit:=bitnumber mod 8;
  2183. result.bitlen:=1;
  2184. end;
  2185. function thlcgobj.get_bit_const_reg_sreg(setregsize: tdef; bitnumber: tcgint; setreg: tregister): tsubsetregister;
  2186. begin
  2187. result.subsetreg:=setreg;
  2188. result.subsetregsize:=def_cgsize(setregsize);
  2189. { subsetregs always count from the least significant to the most significant bit }
  2190. if (target_info.endian=endian_big) then
  2191. result.startbit:=(setregsize.size*8)-bitnumber-1
  2192. else
  2193. result.startbit:=bitnumber;
  2194. result.bitlen:=1;
  2195. end;
  2196. function thlcgobj.get_bit_reg_ref_sref(list: TAsmList; bitnumbersize, refsize: tdef; bitnumber: tregister; const ref: treference): tsubsetreference;
  2197. var
  2198. refptrdef: tdef;
  2199. tmpreg,
  2200. newbase: tregister;
  2201. begin
  2202. result.ref:=ref;
  2203. result.startbit:=0;
  2204. result.bitlen:=1;
  2205. tmpreg:=getintregister(list,ptruinttype);
  2206. a_load_reg_reg(list,bitnumbersize,ptruinttype,bitnumber,tmpreg);
  2207. a_op_const_reg(list,OP_SHR,ptruinttype,3,tmpreg);
  2208. { don't assign to ref.base, that one is for pointers and this is an index
  2209. (important for platforms like LLVM) }
  2210. if result.ref.index<>NR_NO then
  2211. begin
  2212. { don't just add to ref.index, as it may be scaled }
  2213. refptrdef:=cpointerdef.getreusable(refsize);
  2214. newbase:=getaddressregister(list,refptrdef);
  2215. a_loadaddr_ref_reg(list,refsize,refptrdef,ref,newbase);
  2216. reference_reset_base(result.ref,refptrdef,newbase,0,result.ref.alignment,[]);
  2217. end;
  2218. result.ref.index:=tmpreg;
  2219. tmpreg:=getintregister(list,ptruinttype);
  2220. a_load_reg_reg(list,bitnumbersize,ptruinttype,bitnumber,tmpreg);
  2221. a_op_const_reg(list,OP_AND,ptruinttype,7,tmpreg);
  2222. result.bitindexreg:=tmpreg;
  2223. end;
  2224. procedure thlcgobj.a_loadfpu_ref_ref(list: TAsmList; fromsize, tosize: tdef; const ref1, ref2: treference);
  2225. var
  2226. reg: tregister;
  2227. regsize: tdef;
  2228. begin
  2229. if (fromsize.size>=tosize.size) then
  2230. regsize:=fromsize
  2231. else
  2232. regsize:=tosize;
  2233. reg:=getfpuregister(list,regsize);
  2234. a_loadfpu_ref_reg(list,fromsize,regsize,ref1,reg);
  2235. a_loadfpu_reg_ref(list,regsize,tosize,reg,ref2);
  2236. end;
  2237. procedure thlcgobj.a_loadfpu_loc_reg(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const reg: tregister);
  2238. begin
  2239. case loc.loc of
  2240. LOC_REFERENCE, LOC_CREFERENCE:
  2241. a_loadfpu_ref_reg(list,fromsize,tosize,loc.reference,reg);
  2242. LOC_FPUREGISTER, LOC_CFPUREGISTER:
  2243. a_loadfpu_reg_reg(list,fromsize,tosize,loc.register,reg);
  2244. else
  2245. internalerror(2010120412);
  2246. end;
  2247. end;
  2248. procedure thlcgobj.a_loadfpu_loc_ref(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const ref: treference);
  2249. var
  2250. reg: tregister;
  2251. begin
  2252. case loc.loc of
  2253. LOC_REFERENCE, LOC_CREFERENCE:
  2254. begin
  2255. reg:=getfpuregister(list,tosize);
  2256. a_loadfpu_ref_reg(list,fromsize,tosize,loc.reference,reg);
  2257. a_loadfpu_reg_ref(list,tosize,tosize,reg,ref);
  2258. end;
  2259. LOC_FPUREGISTER, LOC_CFPUREGISTER:
  2260. begin
  2261. a_loadfpu_reg_ref(list,fromsize,tosize,loc.register,ref);
  2262. end;
  2263. else
  2264. internalerror(2014080802);
  2265. end;
  2266. end;
  2267. procedure thlcgobj.a_loadfpu_reg_loc(list: TAsmList; fromsize, tosize: tdef; const reg: tregister; const loc: tlocation);
  2268. begin
  2269. case loc.loc of
  2270. LOC_REFERENCE, LOC_CREFERENCE:
  2271. a_loadfpu_reg_ref(list,fromsize,tosize,reg,loc.reference);
  2272. LOC_FPUREGISTER, LOC_CFPUREGISTER:
  2273. a_loadfpu_reg_reg(list,fromsize,tosize,reg,loc.register);
  2274. else
  2275. internalerror(2010120413);
  2276. end;
  2277. end;
  2278. procedure thlcgobj.a_loadfpu_reg_cgpara(list: TAsmList; fromsize: tdef; const r: tregister; const cgpara: TCGPara);
  2279. var
  2280. ref : treference;
  2281. begin
  2282. paramanager.alloccgpara(list,cgpara);
  2283. case cgpara.location^.loc of
  2284. LOC_FPUREGISTER,LOC_CFPUREGISTER:
  2285. begin
  2286. cgpara.check_simple_location;
  2287. a_loadfpu_reg_reg(list,fromsize,cgpara.def,r,cgpara.location^.register);
  2288. end;
  2289. LOC_REFERENCE,LOC_CREFERENCE:
  2290. begin
  2291. cgpara.check_simple_location;
  2292. reference_reset_base(ref,voidstackpointertype,cgpara.location^.reference.index,cgpara.location^.reference.offset,cgpara.alignment,[]);
  2293. a_loadfpu_reg_ref(list,fromsize,cgpara.def,r,ref);
  2294. end;
  2295. LOC_REGISTER,LOC_CREGISTER:
  2296. begin
  2297. { paramfpu_ref does the check_simpe_location check here if necessary }
  2298. tg.gethltemp(list,fromsize,fromsize.size,tt_normal,ref);
  2299. a_loadfpu_reg_ref(list,fromsize,fromsize,r,ref);
  2300. a_loadfpu_ref_cgpara(list,fromsize,ref,cgpara);
  2301. tg.Ungettemp(list,ref);
  2302. end;
  2303. else
  2304. internalerror(2010120422);
  2305. end;
  2306. end;
  2307. procedure thlcgobj.a_loadfpu_ref_cgpara(list: TAsmList; fromsize: tdef; const ref: treference; const cgpara: TCGPara);
  2308. var
  2309. hreg : tregister;
  2310. href : treference;
  2311. intptrdef: tdef;
  2312. begin
  2313. case cgpara.location^.loc of
  2314. LOC_FPUREGISTER,LOC_CFPUREGISTER:
  2315. begin
  2316. cgpara.check_simple_location;
  2317. paramanager.alloccgpara(list,cgpara);
  2318. a_loadfpu_ref_reg(list,fromsize,cgpara.location^.def,ref,cgpara.location^.register);
  2319. end;
  2320. LOC_REFERENCE,LOC_CREFERENCE:
  2321. begin
  2322. cgpara.check_simple_location;
  2323. reference_reset_base(href,voidstackpointertype,cgpara.location^.reference.index,cgpara.location^.reference.offset,cgpara.alignment,[]);
  2324. { concatcopy should choose the best way to copy the data }
  2325. g_concatcopy(list,fromsize,ref,href);
  2326. end;
  2327. LOC_REGISTER,LOC_CREGISTER:
  2328. begin
  2329. cgpara.check_simple_location;
  2330. if fromsize.size<>cgpara.location^.def.size then
  2331. internalerror(2014080603);
  2332. { convert the reference from a floating point location to an
  2333. integer location, and load that }
  2334. intptrdef:=cpointerdef.getreusable(cgpara.location^.def);
  2335. hreg:=getaddressregister(list,intptrdef);
  2336. a_loadaddr_ref_reg(list,fromsize,intptrdef,ref,hreg);
  2337. reference_reset_base(href,intptrdef,hreg,0,ref.alignment,[]);
  2338. a_load_ref_cgpara(list,cgpara.location^.def,ref,cgpara);
  2339. end
  2340. else
  2341. internalerror(2010120423);
  2342. end;
  2343. end;
  2344. procedure thlcgobj.a_loadmm_ref_ref(list: TAsmList; fromsize, tosize: tdef; const fromref, toref: treference; shuffle: pmmshuffle);
  2345. var
  2346. reg: tregister;
  2347. begin
  2348. reg:=getmmregister(list,tosize);
  2349. a_loadmm_ref_reg(list,fromsize,tosize,fromref,reg,shuffle);
  2350. a_loadmm_reg_ref(list,tosize,tosize,reg,toref,shuffle);
  2351. end;
  2352. procedure thlcgobj.a_loadmm_loc_reg(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const reg: tregister; shuffle: pmmshuffle);
  2353. var
  2354. tmpreg: tregister;
  2355. begin
  2356. case loc.loc of
  2357. LOC_MMREGISTER,LOC_CMMREGISTER:
  2358. a_loadmm_reg_reg(list,fromsize,tosize,loc.register,reg,shuffle);
  2359. LOC_REFERENCE,LOC_CREFERENCE:
  2360. a_loadmm_ref_reg(list,fromsize,tosize,loc.reference,reg,shuffle);
  2361. LOC_REGISTER,LOC_CREGISTER:
  2362. a_loadmm_intreg_reg(list,fromsize,tosize,loc.register,reg,shuffle);
  2363. LOC_SUBSETREG,LOC_CSUBSETREG,
  2364. LOC_SUBSETREF,LOC_CSUBSETREF:
  2365. begin
  2366. tmpreg:=getintregister(list,fromsize);
  2367. a_load_loc_reg(list,fromsize,fromsize,loc,tmpreg);
  2368. a_loadmm_intreg_reg(list,fromsize,tosize,tmpreg,reg,shuffle);
  2369. end
  2370. else
  2371. internalerror(2010120414);
  2372. end;
  2373. end;
  2374. procedure thlcgobj.a_loadmm_reg_loc(list: TAsmList; fromsize, tosize: tdef; const reg: tregister; const loc: tlocation; shuffle: pmmshuffle);
  2375. begin
  2376. case loc.loc of
  2377. LOC_MMREGISTER,LOC_CMMREGISTER:
  2378. a_loadmm_reg_reg(list,fromsize,tosize,reg,loc.register,shuffle);
  2379. LOC_REFERENCE,LOC_CREFERENCE:
  2380. a_loadmm_reg_ref(list,fromsize,tosize,reg,loc.reference,shuffle);
  2381. else
  2382. internalerror(2010120415);
  2383. end;
  2384. end;
  2385. procedure thlcgobj.a_loadmm_loc_ref(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const ref: treference; shuffle: pmmshuffle);
  2386. var
  2387. intreg, reg: tregister;
  2388. begin
  2389. case loc.loc of
  2390. LOC_MMREGISTER,LOC_CMMREGISTER:
  2391. a_loadmm_reg_ref(list,fromsize,tosize,loc.register,ref,shuffle);
  2392. LOC_REFERENCE,LOC_CREFERENCE:
  2393. begin
  2394. reg:=getmmregister(list,tosize);
  2395. a_loadmm_ref_reg(list,fromsize,tosize,loc.reference,reg,shuffle);
  2396. a_loadmm_reg_ref(list,tosize,tosize,reg,ref,shuffle);
  2397. end;
  2398. LOC_REGISTER,LOC_CREGISTER:
  2399. begin
  2400. reg:=getmmregister(list,tosize);
  2401. a_loadmm_intreg_reg(list,fromsize,tosize,loc.register,reg,shuffle);
  2402. a_loadmm_reg_ref(list,tosize,tosize,reg,ref,shuffle);
  2403. end;
  2404. LOC_SUBSETREG,LOC_CSUBSETREG,
  2405. LOC_SUBSETREF,LOC_CSUBSETREF:
  2406. begin
  2407. intreg:=getintregister(list,fromsize);
  2408. reg:=getmmregister(list,tosize);
  2409. a_load_loc_reg(list,fromsize,fromsize,loc,intreg);
  2410. a_loadmm_intreg_reg(list,fromsize,tosize,intreg,reg,shuffle);
  2411. a_loadmm_reg_ref(list,tosize,tosize,reg,ref,shuffle);
  2412. end
  2413. else
  2414. internalerror(2014080803);
  2415. end;
  2416. end;
  2417. procedure thlcgobj.a_loadmm_reg_cgpara(list: TAsmList; fromsize: tdef; reg: tregister; const cgpara: TCGPara; shuffle: pmmshuffle);
  2418. var
  2419. href : treference;
  2420. begin
  2421. cgpara.check_simple_location;
  2422. paramanager.alloccgpara(list,cgpara);
  2423. case cgpara.location^.loc of
  2424. LOC_MMREGISTER,LOC_CMMREGISTER:
  2425. a_loadmm_reg_reg(list,fromsize,cgpara.def,reg,cgpara.location^.register,shuffle);
  2426. LOC_REFERENCE,LOC_CREFERENCE:
  2427. begin
  2428. reference_reset_base(href,voidstackpointertype,cgpara.location^.reference.index,cgpara.location^.reference.offset,cgpara.alignment,[]);
  2429. a_loadmm_reg_ref(list,fromsize,cgpara.def,reg,href,shuffle);
  2430. end;
  2431. LOC_REGISTER,LOC_CREGISTER:
  2432. begin
  2433. if assigned(shuffle) and
  2434. not shufflescalar(shuffle) then
  2435. internalerror(2012071205);
  2436. a_loadmm_reg_intreg(list,fromsize,cgpara.def,reg,cgpara.location^.register,mms_movescalar);
  2437. end
  2438. else
  2439. internalerror(2012071204);
  2440. end;
  2441. end;
  2442. procedure thlcgobj.a_loadmm_ref_cgpara(list: TAsmList; fromsize: tdef; const ref: treference; const cgpara: TCGPara; shuffle: pmmshuffle);
  2443. var
  2444. hr : tregister;
  2445. hs : tmmshuffle;
  2446. begin
  2447. cgpara.check_simple_location;
  2448. hr:=getmmregister(list,cgpara.def);
  2449. a_loadmm_ref_reg(list,fromsize,cgpara.def,ref,hr,shuffle);
  2450. if realshuffle(shuffle) then
  2451. begin
  2452. hs:=shuffle^;
  2453. removeshuffles(hs);
  2454. a_loadmm_reg_cgpara(list,cgpara.def,hr,cgpara,@hs);
  2455. end
  2456. else
  2457. a_loadmm_reg_cgpara(list,cgpara.def,hr,cgpara,shuffle);
  2458. end;
  2459. procedure thlcgobj.a_loadmm_loc_cgpara(list: TAsmList; fromsize: tdef; const loc: tlocation; const cgpara: TCGPara; shuffle: pmmshuffle);
  2460. begin
  2461. {$ifdef extdebug}
  2462. if def_cgsize(fromsize)<>loc.size then
  2463. internalerror(2012071203);
  2464. {$endif}
  2465. case loc.loc of
  2466. LOC_MMREGISTER,LOC_CMMREGISTER:
  2467. a_loadmm_reg_cgpara(list,fromsize,loc.register,cgpara,shuffle);
  2468. LOC_REFERENCE,LOC_CREFERENCE:
  2469. a_loadmm_ref_cgpara(list,fromsize,loc.reference,cgpara,shuffle);
  2470. else
  2471. internalerror(2012071202);
  2472. end;
  2473. end;
  2474. procedure thlcgobj.a_opmm_ref_reg(list: TAsmList; Op: TOpCG; size: tdef; const ref: treference; reg: tregister; shuffle: pmmshuffle);
  2475. var
  2476. hr : tregister;
  2477. hs : tmmshuffle;
  2478. begin
  2479. hr:=getmmregister(list,size);
  2480. a_loadmm_ref_reg(list,size,size,ref,hr,shuffle);
  2481. if realshuffle(shuffle) then
  2482. begin
  2483. hs:=shuffle^;
  2484. removeshuffles(hs);
  2485. a_opmm_reg_reg(list,op,size,hr,reg,@hs);
  2486. end
  2487. else
  2488. a_opmm_reg_reg(list,op,size,hr,reg,shuffle);
  2489. end;
  2490. procedure thlcgobj.a_opmm_loc_reg(list: TAsmList; Op: TOpCG; size: tdef; const loc: tlocation; reg: tregister; shuffle: pmmshuffle);
  2491. begin
  2492. case loc.loc of
  2493. LOC_CMMREGISTER,LOC_MMREGISTER:
  2494. a_opmm_reg_reg(list,op,size,loc.register,reg,shuffle);
  2495. LOC_CREFERENCE,LOC_REFERENCE:
  2496. a_opmm_ref_reg(list,op,size,loc.reference,reg,shuffle);
  2497. else
  2498. internalerror(2012071201);
  2499. end;
  2500. end;
  2501. procedure thlcgobj.a_opmm_reg_ref(list: TAsmList; Op: TOpCG; size: tdef; reg: tregister; const ref: treference; shuffle: pmmshuffle);
  2502. var
  2503. hr : tregister;
  2504. hs : tmmshuffle;
  2505. begin
  2506. hr:=getmmregister(list,size);
  2507. a_loadmm_ref_reg(list,size,size,ref,hr,shuffle);
  2508. if realshuffle(shuffle) then
  2509. begin
  2510. hs:=shuffle^;
  2511. removeshuffles(hs);
  2512. a_opmm_reg_reg(list,op,size,reg,hr,@hs);
  2513. a_loadmm_reg_ref(list,size,size,hr,ref,@hs);
  2514. end
  2515. else
  2516. begin
  2517. a_opmm_reg_reg(list,op,size,reg,hr,shuffle);
  2518. a_loadmm_reg_ref(list,size,size,hr,ref,shuffle);
  2519. end;
  2520. end;
  2521. (*
  2522. procedure thlcgobj.a_loadmm_intreg_reg(list: TAsmList; fromsize, tosize: tdef; intreg, mmreg: tregister; shuffle: pmmshuffle);
  2523. begin
  2524. cg.a_loadmm_intreg_reg(list,def_cgsize(fromsize),def_cgsize(tosize),intreg,mmreg,shuffle);
  2525. end;
  2526. procedure thlcgobj.a_loadmm_reg_intreg(list: TAsmList; fromsize, tosize: tdef; mmreg, intreg: tregister; shuffle: pmmshuffle);
  2527. begin
  2528. cg.a_loadmm_reg_intreg(list,def_cgsize(fromsize),def_cgsize(tosize),mmreg,intreg,shuffle);
  2529. end;
  2530. *)
  2531. procedure thlcgobj.a_op_const_ref(list: TAsmList; Op: TOpCG; size: tdef; a: tcgint; const ref: TReference);
  2532. var
  2533. tmpreg : tregister;
  2534. begin
  2535. tmpreg:=getintregister(list,size);
  2536. a_load_ref_reg(list,size,size,ref,tmpreg);
  2537. a_op_const_reg(list,op,size,a,tmpreg);
  2538. a_load_reg_ref(list,size,size,tmpreg,ref);
  2539. end;
  2540. procedure thlcgobj.a_op_const_subsetreg(list: TAsmList; Op: TOpCG; size, subsetsize: tdef; a: tcgint; const sreg: tsubsetregister);
  2541. var
  2542. tmpreg: tregister;
  2543. begin
  2544. tmpreg:=getintregister(list,size);
  2545. a_load_subsetreg_reg(list,subsetsize,size,sreg,tmpreg);
  2546. a_op_const_reg(list,op,size,a,tmpreg);
  2547. a_load_reg_subsetreg(list,size,subsetsize,tmpreg,sreg);
  2548. end;
  2549. procedure thlcgobj.a_op_const_subsetref(list: TAsmList; Op: TOpCG; size, subsetsize: tdef; a: tcgint; const sref: tsubsetreference);
  2550. var
  2551. tmpreg: tregister;
  2552. begin
  2553. tmpreg:=getintregister(list,size);
  2554. a_load_subsetref_reg(list,subsetsize,size,sref,tmpreg);
  2555. a_op_const_reg(list,op,size,a,tmpreg);
  2556. a_load_reg_subsetref(list,size,subsetsize,tmpreg,sref);
  2557. end;
  2558. procedure thlcgobj.a_op_const_loc(list: TAsmList; Op: TOpCG; size: tdef; a: tcgint; const loc: tlocation);
  2559. begin
  2560. case loc.loc of
  2561. LOC_REGISTER, LOC_CREGISTER:
  2562. a_op_const_reg(list,op,size,a,loc.register);
  2563. LOC_REFERENCE, LOC_CREFERENCE:
  2564. a_op_const_ref(list,op,size,a,loc.reference);
  2565. LOC_SUBSETREG, LOC_CSUBSETREG:
  2566. a_op_const_subsetreg(list,op,size,size,a,loc.sreg);
  2567. LOC_SUBSETREF, LOC_CSUBSETREF:
  2568. a_op_const_subsetref(list,op,size,size,a,loc.sref);
  2569. else
  2570. internalerror(2010120428);
  2571. end;
  2572. end;
  2573. procedure thlcgobj.a_op_reg_ref(list: TAsmList; Op: TOpCG; size: tdef; reg: TRegister; const ref: TReference);
  2574. var
  2575. tmpreg: tregister;
  2576. begin
  2577. tmpreg:=getintregister(list,size);
  2578. a_load_ref_reg(list,size,size,ref,tmpreg);
  2579. case op of
  2580. OP_NOT,OP_NEG:
  2581. begin
  2582. a_op_reg_reg(list,op,size,tmpreg,tmpreg);
  2583. end;
  2584. else
  2585. begin
  2586. a_op_reg_reg(list,op,size,reg,tmpreg);
  2587. end;
  2588. end;
  2589. a_load_reg_ref(list,size,size,tmpreg,ref);
  2590. end;
  2591. procedure thlcgobj.a_op_ref_reg(list: TAsmList; Op: TOpCG; size: tdef; const ref: TReference; reg: TRegister);
  2592. var
  2593. tmpreg: tregister;
  2594. begin
  2595. case op of
  2596. OP_NOT,OP_NEG:
  2597. { handle it as "load ref,reg; op reg" }
  2598. begin
  2599. a_load_ref_reg(list,size,size,ref,reg);
  2600. a_op_reg_reg(list,op,size,reg,reg);
  2601. end;
  2602. else
  2603. begin
  2604. tmpreg:=getintregister(list,size);
  2605. a_load_ref_reg(list,size,size,ref,tmpreg);
  2606. a_op_reg_reg(list,op,size,tmpreg,reg);
  2607. end;
  2608. end;
  2609. end;
  2610. procedure thlcgobj.a_op_reg_subsetreg(list: TAsmList; Op: TOpCG; opsize, destsubsetsize: tdef; reg: TRegister; const sreg: tsubsetregister);
  2611. var
  2612. tmpreg: tregister;
  2613. begin
  2614. tmpreg:=getintregister(list,opsize);
  2615. a_load_subsetreg_reg(list,destsubsetsize,opsize,sreg,tmpreg);
  2616. a_op_reg_reg(list,op,opsize,reg,tmpreg);
  2617. a_load_reg_subsetreg(list,opsize,destsubsetsize,tmpreg,sreg);
  2618. end;
  2619. procedure thlcgobj.a_op_reg_subsetref(list: TAsmList; Op: TOpCG; opsize, destsubsetsize: tdef; reg: TRegister; const sref: tsubsetreference);
  2620. var
  2621. tmpreg: tregister;
  2622. begin
  2623. tmpreg:=getintregister(list,opsize);
  2624. a_load_subsetref_reg(list,destsubsetsize,opsize,sref,tmpreg);
  2625. a_op_reg_reg(list,op,opsize,reg,tmpreg);
  2626. a_load_reg_subsetref(list,opsize,destsubsetsize,tmpreg,sref);
  2627. end;
  2628. procedure thlcgobj.a_op_reg_loc(list: TAsmList; Op: TOpCG; size: tdef; reg: tregister; const loc: tlocation);
  2629. begin
  2630. case loc.loc of
  2631. LOC_REGISTER, LOC_CREGISTER:
  2632. a_op_reg_reg(list,op,size,reg,loc.register);
  2633. LOC_REFERENCE, LOC_CREFERENCE:
  2634. a_op_reg_ref(list,op,size,reg,loc.reference);
  2635. LOC_SUBSETREG, LOC_CSUBSETREG:
  2636. a_op_reg_subsetreg(list,op,size,size,reg,loc.sreg);
  2637. LOC_SUBSETREF, LOC_CSUBSETREF:
  2638. a_op_reg_subsetref(list,op,size,size,reg,loc.sref);
  2639. else
  2640. internalerror(2010120429);
  2641. end;
  2642. end;
  2643. procedure thlcgobj.a_op_ref_loc(list: TAsmList; Op: TOpCG; size: tdef; const ref: TReference; const loc: tlocation);
  2644. var
  2645. tmpreg: tregister;
  2646. begin
  2647. case loc.loc of
  2648. LOC_REGISTER,LOC_CREGISTER:
  2649. a_op_ref_reg(list,op,size,ref,loc.register);
  2650. LOC_REFERENCE,LOC_CREFERENCE:
  2651. begin
  2652. tmpreg:=getintregister(list,size);
  2653. a_load_ref_reg(list,size,size,ref,tmpreg);
  2654. a_op_reg_ref(list,op,size,tmpreg,loc.reference);
  2655. end;
  2656. LOC_SUBSETREG, LOC_CSUBSETREG:
  2657. begin
  2658. tmpreg:=getintregister(list,size);
  2659. a_load_subsetreg_reg(list,size,size,loc.sreg,tmpreg);
  2660. a_op_ref_reg(list,op,size,ref,tmpreg);
  2661. a_load_reg_subsetreg(list,size,size,tmpreg,loc.sreg);
  2662. end;
  2663. LOC_SUBSETREF, LOC_CSUBSETREF:
  2664. begin
  2665. tmpreg:=getintregister(list,size);
  2666. a_load_subsetref_reg(list,size,size,loc.sref,tmpreg);
  2667. a_op_ref_reg(list,op,size,ref,tmpreg);
  2668. a_load_reg_subsetref(list,size,size,tmpreg,loc.sref);
  2669. end;
  2670. else
  2671. internalerror(2010120429);
  2672. end;
  2673. end;
  2674. procedure thlcgobj.a_op_const_reg_reg(list: TAsmList; op: TOpCg; size: tdef; a: tcgint; src, dst: tregister);
  2675. begin
  2676. a_load_reg_reg(list,size,size,src,dst);
  2677. a_op_const_reg(list,op,size,a,dst);
  2678. end;
  2679. procedure thlcgobj.a_op_reg_reg_reg(list: TAsmList; op: TOpCg; size: tdef; src1, src2, dst: tregister);
  2680. var
  2681. tmpreg: tregister;
  2682. begin
  2683. if (dst<>src1) then
  2684. begin
  2685. a_load_reg_reg(list,size,size,src2,dst);
  2686. a_op_reg_reg(list,op,size,src1,dst);
  2687. end
  2688. else
  2689. begin
  2690. { can we do a direct operation on the target register ? }
  2691. if op in [OP_ADD,OP_MUL,OP_AND,OP_MOVE,OP_XOR,OP_IMUL,OP_OR] then
  2692. a_op_reg_reg(list,op,size,src2,dst)
  2693. else
  2694. begin
  2695. tmpreg:=getintregister(list,size);
  2696. a_load_reg_reg(list,size,size,src2,tmpreg);
  2697. a_op_reg_reg(list,op,size,src1,tmpreg);
  2698. a_load_reg_reg(list,size,size,tmpreg,dst);
  2699. end;
  2700. end;
  2701. end;
  2702. procedure thlcgobj.a_op_const_reg_reg_checkoverflow(list: TAsmList; op: TOpCg; size: tdef; a: tcgint; src, dst: tregister; setflags: boolean; var ovloc: tlocation);
  2703. begin
  2704. ovloc.loc:=LOC_VOID;
  2705. if not setflags then
  2706. a_op_const_reg_reg(list,op,size,a,src,dst)
  2707. else
  2708. internalerror(2010122910);
  2709. end;
  2710. procedure thlcgobj.a_op_reg_reg_reg_checkoverflow(list: TAsmList; op: TOpCg; size: tdef; src1, src2, dst: tregister; setflags: boolean; var ovloc: tlocation);
  2711. begin
  2712. ovloc.loc:=LOC_VOID;
  2713. if not setflags then
  2714. a_op_reg_reg_reg(list,op,size,src1,src2,dst)
  2715. else
  2716. internalerror(2010122911);
  2717. end;
  2718. procedure thlcgobj.a_cmp_const_reg_label(list: TAsmList; size: tdef; cmp_op: topcmp; a: tcgint; reg: tregister; l: tasmlabel);
  2719. var
  2720. tmpreg: tregister;
  2721. begin
  2722. tmpreg:=getregisterfordef(list,size);
  2723. a_load_const_reg(list,size,a,tmpreg);
  2724. a_cmp_reg_reg_label(list,size,cmp_op,tmpreg,reg,l);
  2725. end;
  2726. procedure thlcgobj.a_cmp_const_ref_label(list: TAsmList; size: tdef; cmp_op: topcmp; a: tcgint; const ref: treference; l: tasmlabel);
  2727. var
  2728. tmpreg: tregister;
  2729. begin
  2730. tmpreg:=getregisterfordef(list,size);
  2731. a_load_ref_reg(list,size,size,ref,tmpreg);
  2732. a_cmp_const_reg_label(list,size,cmp_op,a,tmpreg,l);
  2733. end;
  2734. procedure thlcgobj.a_cmp_const_loc_label(list: TAsmList; size: tdef; cmp_op: topcmp; a: tcgint; const loc: tlocation; l: tasmlabel);
  2735. var
  2736. tmpreg: tregister;
  2737. begin
  2738. case loc.loc of
  2739. LOC_REGISTER,LOC_CREGISTER:
  2740. a_cmp_const_reg_label(list,size,cmp_op,a,loc.register,l);
  2741. LOC_REFERENCE,LOC_CREFERENCE:
  2742. a_cmp_const_ref_label(list,size,cmp_op,a,loc.reference,l);
  2743. LOC_SUBSETREG, LOC_CSUBSETREG:
  2744. begin
  2745. tmpreg:=getintregister(list,size);
  2746. a_load_subsetreg_reg(list,size,size,loc.sreg,tmpreg);
  2747. a_cmp_const_reg_label(list,size,cmp_op,a,tmpreg,l);
  2748. end;
  2749. LOC_SUBSETREF, LOC_CSUBSETREF:
  2750. begin
  2751. tmpreg:=getintregister(list,size);
  2752. a_load_subsetref_reg(list,size,size,loc.sref,tmpreg);
  2753. a_cmp_const_reg_label(list,size,cmp_op,a,tmpreg,l);
  2754. end;
  2755. else
  2756. internalerror(2010120430);
  2757. end;
  2758. end;
  2759. procedure thlcgobj.a_cmp_ref_reg_label(list: TAsmList; size: tdef; cmp_op: topcmp; const ref: treference; reg: tregister; l: tasmlabel);
  2760. var
  2761. tmpreg: tregister;
  2762. begin
  2763. tmpreg:=getintregister(list,size);
  2764. a_load_ref_reg(list,size,size,ref,tmpreg);
  2765. a_cmp_reg_reg_label(list,size,cmp_op,tmpreg,reg,l);
  2766. end;
  2767. procedure thlcgobj.a_cmp_reg_ref_label(list: TAsmList; size: tdef; cmp_op: topcmp; reg: tregister; const ref: treference; l: tasmlabel);
  2768. var
  2769. tmpreg: tregister;
  2770. begin
  2771. tmpreg:=getintregister(list,size);
  2772. a_load_ref_reg(list,size,size,ref,tmpreg);
  2773. a_cmp_reg_reg_label(list,size,cmp_op,reg,tmpreg,l);
  2774. end;
  2775. procedure thlcgobj.a_cmp_subsetreg_reg_label(list: TAsmList; fromsubsetsize, cmpsize: tdef; cmp_op: topcmp; const sreg: tsubsetregister; reg: tregister; l: tasmlabel);
  2776. var
  2777. tmpreg: tregister;
  2778. begin
  2779. tmpreg:=getintregister(list,cmpsize);
  2780. a_load_subsetreg_reg(list,fromsubsetsize,cmpsize,sreg,tmpreg);
  2781. a_cmp_reg_reg_label(list,cmpsize,cmp_op,tmpreg,reg,l);
  2782. end;
  2783. procedure thlcgobj.a_cmp_subsetref_reg_label(list: TAsmList; fromsubsetsize, cmpsize: tdef; cmp_op: topcmp; const sref: tsubsetreference; reg: tregister; l: tasmlabel);
  2784. var
  2785. tmpreg: tregister;
  2786. begin
  2787. tmpreg:=getintregister(list,cmpsize);
  2788. a_load_subsetref_reg(list,fromsubsetsize,cmpsize,sref,tmpreg);
  2789. a_cmp_reg_reg_label(list,cmpsize,cmp_op,tmpreg,reg,l);
  2790. end;
  2791. procedure thlcgobj.a_cmp_loc_reg_label(list: TAsmList; size: tdef; cmp_op: topcmp; const loc: tlocation; reg: tregister; l: tasmlabel);
  2792. begin
  2793. case loc.loc of
  2794. LOC_REGISTER,
  2795. LOC_CREGISTER:
  2796. a_cmp_reg_reg_label(list,size,cmp_op,loc.register,reg,l);
  2797. LOC_REFERENCE,
  2798. LOC_CREFERENCE :
  2799. a_cmp_ref_reg_label(list,size,cmp_op,loc.reference,reg,l);
  2800. LOC_CONSTANT:
  2801. a_cmp_const_reg_label(list,size,cmp_op,loc.value,reg,l);
  2802. LOC_SUBSETREG,
  2803. LOC_CSUBSETREG:
  2804. a_cmp_subsetreg_reg_label(list,size,size,cmp_op,loc.sreg,reg,l);
  2805. LOC_SUBSETREF,
  2806. LOC_CSUBSETREF:
  2807. a_cmp_subsetref_reg_label(list,size,size,cmp_op,loc.sref,reg,l);
  2808. else
  2809. internalerror(2010120431);
  2810. end;
  2811. end;
  2812. procedure thlcgobj.a_cmp_reg_loc_label(list: TAsmList; size: tdef; cmp_op: topcmp; reg: tregister; const loc: tlocation; l: tasmlabel);
  2813. begin
  2814. a_cmp_loc_reg_label(list,size,swap_opcmp(cmp_op),loc,reg,l);
  2815. end;
  2816. procedure thlcgobj.a_cmp_ref_loc_label(list: TAsmList; size: tdef; cmp_op: topcmp; const ref: treference; const loc: tlocation; l: tasmlabel);
  2817. var
  2818. tmpreg: tregister;
  2819. begin
  2820. case loc.loc of
  2821. LOC_REGISTER,LOC_CREGISTER:
  2822. a_cmp_ref_reg_label(list,size,cmp_op,ref,loc.register,l);
  2823. LOC_REFERENCE,LOC_CREFERENCE:
  2824. begin
  2825. tmpreg:=getintregister(list,size);
  2826. a_load_ref_reg(list,size,size,loc.reference,tmpreg);
  2827. a_cmp_ref_reg_label(list,size,cmp_op,ref,tmpreg,l);
  2828. end;
  2829. LOC_CONSTANT:
  2830. begin
  2831. a_cmp_const_ref_label(list,size,swap_opcmp(cmp_op),loc.value,ref,l);
  2832. end;
  2833. LOC_SUBSETREG, LOC_CSUBSETREG:
  2834. begin
  2835. tmpreg:=getintregister(list,size);
  2836. a_load_ref_reg(list,size,size,loc.reference,tmpreg);
  2837. a_cmp_subsetreg_reg_label(list,size,size,swap_opcmp(cmp_op),loc.sreg,tmpreg,l);
  2838. end;
  2839. LOC_SUBSETREF, LOC_CSUBSETREF:
  2840. begin
  2841. tmpreg:=getintregister(list,size);
  2842. a_load_ref_reg(list,size,size,loc.reference,tmpreg);
  2843. a_cmp_subsetref_reg_label(list,size,size,swap_opcmp(cmp_op),loc.sref,tmpreg,l);
  2844. end;
  2845. else
  2846. internalerror(2010120432);
  2847. end;
  2848. end;
  2849. procedure thlcgobj.g_exception_reason_save(list: TAsmList; fromsize, tosize: tdef; reg: tregister; const href: treference);
  2850. begin
  2851. a_load_reg_ref(list,fromsize,tosize,reg,href);
  2852. end;
  2853. procedure thlcgobj.g_exception_reason_save_const(list: TAsmList; size: tdef; a: tcgint; const href: treference);
  2854. begin
  2855. a_load_const_ref(list,size,a,href);
  2856. end;
  2857. procedure thlcgobj.g_exception_reason_load(list: TAsmList; fromsize, tosize: tdef; const href: treference; reg: tregister);
  2858. begin
  2859. a_load_ref_reg(list,fromsize,tosize,href,reg);
  2860. end;
  2861. procedure thlcgobj.g_exception_reason_discard(list: TAsmList; size: tdef; href: treference);
  2862. begin
  2863. { do nothing by default }
  2864. end;
  2865. procedure thlcgobj.g_maybe_testself(list: TAsmList; selftype: tdef; reg: tregister);
  2866. var
  2867. OKLabel : tasmlabel;
  2868. cgpara1 : TCGPara;
  2869. pd : tprocdef;
  2870. begin
  2871. if (cs_check_object in current_settings.localswitches) or
  2872. (cs_check_range in current_settings.localswitches) then
  2873. begin
  2874. pd:=search_system_proc('fpc_handleerror');
  2875. current_asmdata.getjumplabel(oklabel);
  2876. a_cmp_const_reg_label(list,selftype,OC_NE,0,reg,oklabel);
  2877. cgpara1.init;
  2878. paramanager.getintparaloc(list,pd,1,cgpara1);
  2879. a_load_const_cgpara(list,s32inttype,aint(210),cgpara1);
  2880. paramanager.freecgpara(list,cgpara1);
  2881. g_call_system_proc(list,pd,[@cgpara1],nil);
  2882. cgpara1.done;
  2883. a_label(list,oklabel);
  2884. end;
  2885. end;
  2886. procedure thlcgobj.g_concatcopy(list: TAsmList; size: tdef; const source, dest: treference);
  2887. begin
  2888. if use_vectorfpu(size) then
  2889. a_loadmm_ref_ref(list,size,size,source,dest,mms_movescalar)
  2890. else if size.typ<>floatdef then
  2891. a_load_ref_ref(list,size,size,source,dest)
  2892. else
  2893. a_loadfpu_ref_ref(list,size,size,source,dest);
  2894. end;
  2895. procedure thlcgobj.g_concatcopy_unaligned(list: TAsmList; size: tdef; const source, dest: treference);
  2896. begin
  2897. g_concatcopy(list,size,source,dest);
  2898. end;
  2899. procedure thlcgobj.g_copyshortstring(list: TAsmList; const source, dest: treference; strdef: tstringdef);
  2900. var
  2901. cgpara1,cgpara2,cgpara3 : TCGPara;
  2902. pd : tprocdef;
  2903. begin
  2904. pd:=search_system_proc('fpc_shortstr_to_shortstr');
  2905. cgpara1.init;
  2906. cgpara2.init;
  2907. cgpara3.init;
  2908. paramanager.getintparaloc(list,pd,1,cgpara1);
  2909. paramanager.getintparaloc(list,pd,2,cgpara2);
  2910. paramanager.getintparaloc(list,pd,3,cgpara3);
  2911. if pd.is_pushleftright then
  2912. begin
  2913. a_loadaddr_ref_cgpara(list,strdef,dest,cgpara1);
  2914. a_load_const_cgpara(list,s32inttype,strdef.len,cgpara2);
  2915. a_loadaddr_ref_cgpara(list,strdef,source,cgpara3);
  2916. end
  2917. else
  2918. begin
  2919. a_loadaddr_ref_cgpara(list,strdef,source,cgpara3);
  2920. a_load_const_cgpara(list,s32inttype,strdef.len,cgpara2);
  2921. a_loadaddr_ref_cgpara(list,strdef,dest,cgpara1);
  2922. end;
  2923. paramanager.freecgpara(list,cgpara3);
  2924. paramanager.freecgpara(list,cgpara2);
  2925. paramanager.freecgpara(list,cgpara1);
  2926. g_call_system_proc(list,pd,[@cgpara1,@cgpara2,@cgpara3],nil);
  2927. cgpara3.done;
  2928. cgpara2.done;
  2929. cgpara1.done;
  2930. end;
  2931. procedure thlcgobj.g_copyvariant(list: TAsmList; const source, dest: treference; vardef: tvariantdef);
  2932. var
  2933. cgpara1,cgpara2 : TCGPara;
  2934. pd : tprocdef;
  2935. begin
  2936. pd:=search_system_proc('fpc_variant_copy_overwrite');
  2937. cgpara1.init;
  2938. cgpara2.init;
  2939. paramanager.getintparaloc(list,pd,1,cgpara1);
  2940. paramanager.getintparaloc(list,pd,2,cgpara2);
  2941. if pd.is_pushleftright then
  2942. begin
  2943. a_loadaddr_ref_cgpara(list,vardef,source,cgpara1);
  2944. a_loadaddr_ref_cgpara(list,vardef,dest,cgpara2);
  2945. end
  2946. else
  2947. begin
  2948. a_loadaddr_ref_cgpara(list,vardef,dest,cgpara2);
  2949. a_loadaddr_ref_cgpara(list,vardef,source,cgpara1);
  2950. end;
  2951. paramanager.freecgpara(list,cgpara2);
  2952. paramanager.freecgpara(list,cgpara1);
  2953. g_call_system_proc(list,pd,[@cgpara1,@cgpara2],nil);
  2954. cgpara2.done;
  2955. cgpara1.done;
  2956. end;
  2957. procedure thlcgobj.g_incrrefcount(list: TAsmList; t: tdef; const ref: treference);
  2958. var
  2959. href : treference;
  2960. incrfunc : string;
  2961. cgpara1,cgpara2 : TCGPara;
  2962. pd : tprocdef;
  2963. begin
  2964. cgpara1.init;
  2965. cgpara2.init;
  2966. if is_interfacecom_or_dispinterface(t) then
  2967. incrfunc:='fpc_intf_incr_ref'
  2968. else if is_ansistring(t) then
  2969. incrfunc:='fpc_ansistr_incr_ref'
  2970. else if is_widestring(t) then
  2971. incrfunc:='fpc_widestr_incr_ref'
  2972. else if is_unicodestring(t) then
  2973. incrfunc:='fpc_unicodestr_incr_ref'
  2974. else if is_dynamic_array(t) then
  2975. incrfunc:='fpc_dynarray_incr_ref'
  2976. else
  2977. incrfunc:='';
  2978. { call the special incr function or the generic addref }
  2979. if incrfunc<>'' then
  2980. begin
  2981. pd:=search_system_proc(incrfunc);
  2982. paramanager.getintparaloc(list,pd,1,cgpara1);
  2983. { widestrings aren't ref. counted on all platforms so we need the address
  2984. to create a real copy }
  2985. if is_widestring(t) then
  2986. a_loadaddr_ref_cgpara(list,t,ref,cgpara1)
  2987. else
  2988. { these functions get the pointer by value }
  2989. a_load_ref_cgpara(list,t,ref,cgpara1);
  2990. paramanager.freecgpara(list,cgpara1);
  2991. g_call_system_proc(list,pd,[@cgpara1],nil);
  2992. end
  2993. else
  2994. begin
  2995. pd:=search_system_proc('fpc_addref');
  2996. paramanager.getintparaloc(list,pd,1,cgpara1);
  2997. paramanager.getintparaloc(list,pd,2,cgpara2);
  2998. if is_open_array(t) then
  2999. InternalError(201103054);
  3000. reference_reset_symbol(href,RTTIWriter.get_rtti_label(t,initrtti,def_needs_indirect(t)),0,sizeof(pint),[]);
  3001. if pd.is_pushleftright then
  3002. begin
  3003. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3004. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3005. end
  3006. else
  3007. begin
  3008. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3009. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3010. end;
  3011. paramanager.freecgpara(list,cgpara1);
  3012. paramanager.freecgpara(list,cgpara2);
  3013. g_call_system_proc(list,pd,[@cgpara1,@cgpara2],nil);
  3014. end;
  3015. cgpara2.done;
  3016. cgpara1.done;
  3017. end;
  3018. procedure thlcgobj.g_initialize(list: TAsmList; t: tdef; const ref: treference);
  3019. var
  3020. href : treference;
  3021. cgpara1,cgpara2 : TCGPara;
  3022. pd : tprocdef;
  3023. begin
  3024. cgpara1.init;
  3025. cgpara2.init;
  3026. if is_ansistring(t) or
  3027. is_widestring(t) or
  3028. is_unicodestring(t) or
  3029. is_interfacecom_or_dispinterface(t) or
  3030. is_dynamic_array(t) then
  3031. a_load_const_ref(list,t,0,ref)
  3032. else if t.typ=variantdef then
  3033. begin
  3034. pd:=search_system_proc('fpc_variant_init');
  3035. paramanager.getintparaloc(list,pd,1,cgpara1);
  3036. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3037. paramanager.freecgpara(list,cgpara1);
  3038. g_call_system_proc(list,pd,[@cgpara1],nil);
  3039. end
  3040. else
  3041. begin
  3042. if is_open_array(t) then
  3043. InternalError(201103052);
  3044. pd:=search_system_proc('fpc_initialize');
  3045. paramanager.getintparaloc(list,pd,1,cgpara1);
  3046. paramanager.getintparaloc(list,pd,2,cgpara2);
  3047. reference_reset_symbol(href,RTTIWriter.get_rtti_label(t,initrtti,def_needs_indirect(t)),0,sizeof(pint),[]);
  3048. if pd.is_pushleftright then
  3049. begin
  3050. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3051. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3052. end
  3053. else
  3054. begin
  3055. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3056. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3057. end;
  3058. paramanager.freecgpara(list,cgpara1);
  3059. paramanager.freecgpara(list,cgpara2);
  3060. g_call_system_proc(list,pd,[@cgpara1,@cgpara2],nil);
  3061. end;
  3062. cgpara1.done;
  3063. cgpara2.done;
  3064. end;
  3065. procedure thlcgobj.g_finalize(list: TAsmList; t: tdef; const ref: treference);
  3066. var
  3067. href : treference;
  3068. cgpara1,cgpara2 : TCGPara;
  3069. pd : tprocdef;
  3070. decrfunc : string;
  3071. begin
  3072. if is_interfacecom_or_dispinterface(t) then
  3073. decrfunc:='fpc_intf_decr_ref'
  3074. else if is_ansistring(t) then
  3075. decrfunc:='fpc_ansistr_decr_ref'
  3076. else if is_widestring(t) then
  3077. decrfunc:='fpc_widestr_decr_ref'
  3078. else if is_unicodestring(t) then
  3079. decrfunc:='fpc_unicodestr_decr_ref'
  3080. else if t.typ=variantdef then
  3081. decrfunc:='fpc_variant_clear'
  3082. else
  3083. begin
  3084. cgpara1.init;
  3085. cgpara2.init;
  3086. if is_open_array(t) then
  3087. InternalError(201103051);
  3088. { fpc_finalize takes a pointer value parameter, fpc_dynarray_clear a
  3089. pointer var parameter }
  3090. if is_dynamic_array(t) then
  3091. pd:=search_system_proc('fpc_dynarray_clear')
  3092. else
  3093. pd:=search_system_proc('fpc_finalize');
  3094. paramanager.getintparaloc(list,pd,1,cgpara1);
  3095. paramanager.getintparaloc(list,pd,2,cgpara2);
  3096. reference_reset_symbol(href,RTTIWriter.get_rtti_label(t,initrtti,def_needs_indirect(t)),0,sizeof(pint),[]);
  3097. if pd.is_pushleftright then
  3098. begin
  3099. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3100. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3101. end
  3102. else
  3103. begin
  3104. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3105. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3106. end;
  3107. paramanager.freecgpara(list,cgpara1);
  3108. paramanager.freecgpara(list,cgpara2);
  3109. g_call_system_proc(list,pd,[@cgpara1,@cgpara2],nil);
  3110. cgpara1.done;
  3111. cgpara2.done;
  3112. exit;
  3113. end;
  3114. pd:=search_system_proc(decrfunc);
  3115. cgpara1.init;
  3116. paramanager.getintparaloc(list,pd,1,cgpara1);
  3117. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3118. paramanager.freecgpara(list,cgpara1);
  3119. g_call_system_proc(list,pd,[@cgpara1],nil);
  3120. cgpara1.done;
  3121. end;
  3122. procedure thlcgobj.g_array_rtti_helper(list: TAsmList; t: tdef; const ref: treference; const highloc: tlocation; const name: string);
  3123. var
  3124. cgpara1,cgpara2,cgpara3: TCGPara;
  3125. href: TReference;
  3126. hreg, lenreg: TRegister;
  3127. pd: tprocdef;
  3128. begin
  3129. cgpara1.init;
  3130. cgpara2.init;
  3131. cgpara3.init;
  3132. pd:=search_system_proc(name);
  3133. paramanager.getintparaloc(list,pd,1,cgpara1);
  3134. paramanager.getintparaloc(list,pd,2,cgpara2);
  3135. paramanager.getintparaloc(list,pd,3,cgpara3);
  3136. reference_reset_symbol(href,RTTIWriter.get_rtti_label(t,initrtti,def_needs_indirect(t)),0,sizeof(pint),[]);
  3137. { if calling convention is left to right, push parameters 1 and 2 }
  3138. if pd.is_pushleftright then
  3139. begin
  3140. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3141. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3142. end;
  3143. { push parameter 3 }
  3144. if highloc.loc=LOC_CONSTANT then
  3145. a_load_const_cgpara(list,sizesinttype,highloc.value+1,cgpara3)
  3146. else
  3147. begin
  3148. if highloc.loc in [LOC_REGISTER,LOC_CREGISTER] then
  3149. hreg:=highloc.register
  3150. else
  3151. begin
  3152. hreg:=getintregister(list,sizesinttype);
  3153. a_load_loc_reg(list,sizesinttype,sizesinttype,highloc,hreg);
  3154. end;
  3155. { increment, converts high(x) to length(x) }
  3156. lenreg:=getintregister(list,sizesinttype);
  3157. a_op_const_reg_reg(list,OP_ADD,sizesinttype,1,hreg,lenreg);
  3158. a_load_reg_cgpara(list,sizesinttype,lenreg,cgpara3);
  3159. end;
  3160. { if calling convention is right to left, push parameters 2 and 1 }
  3161. if not pd.is_pushleftright then
  3162. begin
  3163. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3164. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3165. end;
  3166. paramanager.freecgpara(list,cgpara1);
  3167. paramanager.freecgpara(list,cgpara2);
  3168. paramanager.freecgpara(list,cgpara3);
  3169. g_call_system_proc(list,pd,[@cgpara1,@cgpara2,@cgpara3],nil);
  3170. cgpara3.done;
  3171. cgpara2.done;
  3172. cgpara1.done;
  3173. end;
  3174. function thlcgobj.def_needs_indirect(t:tdef):boolean;
  3175. begin
  3176. result:=(tf_supports_packages in target_info.flags) and
  3177. (target_info.system in systems_indirect_var_imports) and
  3178. (cs_imported_data in current_settings.localswitches) and
  3179. (findunitsymtable(t.owner).moduleid<>current_module.moduleid);
  3180. end;
  3181. procedure thlcgobj.g_rangecheck(list: TAsmList; const l: tlocation; fromdef, todef: tdef);
  3182. var
  3183. {$if defined(cpu64bitalu) or defined(cpu32bitalu)}
  3184. aintmax: aint;
  3185. {$else}
  3186. aintmax: longint;
  3187. {$endif}
  3188. neglabel : tasmlabel;
  3189. hreg : tregister;
  3190. lto,hto,
  3191. lfrom,hfrom : TConstExprInt;
  3192. fromsize, tosize: cardinal;
  3193. maxdef: tdef;
  3194. from_signed, to_signed: boolean;
  3195. begin
  3196. { range checking on and range checkable value? }
  3197. if not(cs_check_range in current_settings.localswitches) or
  3198. not(fromdef.typ in [orddef,enumdef]) or
  3199. { C-style booleans can't really fail range checks, }
  3200. { all values are always valid }
  3201. is_cbool(todef) then
  3202. exit;
  3203. {$if not defined(cpuhighleveltarget) and not defined(cpu64bitalu)}
  3204. { handle 64bit rangechecks separate for 32bit processors }
  3205. if is_64bit(fromdef) or is_64bit(todef) then
  3206. begin
  3207. cg64.g_rangecheck64(list,l,fromdef,todef);
  3208. exit;
  3209. end;
  3210. {$endif ndef cpuhighleveltarget and ndef cpu64bitalu}
  3211. { only check when assigning to scalar, subranges are different, }
  3212. { when todef=fromdef then the check is always generated }
  3213. getrange(fromdef,lfrom,hfrom);
  3214. getrange(todef,lto,hto);
  3215. from_signed := is_signed(fromdef);
  3216. to_signed := is_signed(todef);
  3217. { check the rangedef of the array, not the array itself }
  3218. { (only change now, since getrange needs the arraydef) }
  3219. if (todef.typ = arraydef) then
  3220. todef := tarraydef(todef).rangedef;
  3221. { no range check if from and to are equal and are both longint/dword }
  3222. { (if we have a 32bit processor) or int64/qword, since such }
  3223. { operations can at most cause overflows (JM) }
  3224. { Note that these checks are mostly processor independent, they only }
  3225. { have to be changed once we introduce 64bit subrange types }
  3226. {$if defined(cpuhighleveltarget) or defined(cpu64bitalu)}
  3227. if (fromdef=todef) and
  3228. (fromdef.typ=orddef) and
  3229. (((((torddef(fromdef).ordtype=s64bit) and
  3230. (lfrom = low(int64)) and
  3231. (hfrom = high(int64))) or
  3232. ((torddef(fromdef).ordtype=u64bit) and
  3233. (lfrom = low(qword)) and
  3234. (hfrom = high(qword))) or
  3235. ((torddef(fromdef).ordtype=scurrency) and
  3236. (lfrom = low(int64)) and
  3237. (hfrom = high(int64)))))) then
  3238. exit;
  3239. {$endif cpuhighleveltarget or cpu64bitalu}
  3240. { 32 bit operations are automatically widened to 64 bit on 64 bit addr
  3241. targets }
  3242. {$ifdef cpu32bitaddr}
  3243. if (fromdef = todef) and
  3244. (fromdef.typ=orddef) and
  3245. (((((torddef(fromdef).ordtype = s32bit) and
  3246. (lfrom = int64(low(longint))) and
  3247. (hfrom = int64(high(longint)))) or
  3248. ((torddef(fromdef).ordtype = u32bit) and
  3249. (lfrom = low(cardinal)) and
  3250. (hfrom = high(cardinal)))))) then
  3251. exit;
  3252. {$endif cpu32bitaddr}
  3253. { optimize some range checks away in safe cases }
  3254. fromsize := fromdef.size;
  3255. tosize := todef.size;
  3256. if ((from_signed = to_signed) or
  3257. (not from_signed)) and
  3258. (lto<=lfrom) and (hto>=hfrom) and
  3259. (fromsize <= tosize) then
  3260. begin
  3261. { if fromsize < tosize, and both have the same signed-ness or }
  3262. { fromdef is unsigned, then all bit patterns from fromdef are }
  3263. { valid for todef as well }
  3264. if (fromsize < tosize) then
  3265. exit;
  3266. if (fromsize = tosize) and
  3267. (from_signed = to_signed) then
  3268. { only optimize away if all bit patterns which fit in fromsize }
  3269. { are valid for the todef }
  3270. begin
  3271. {$ifopt Q+}
  3272. {$define overflowon}
  3273. {$Q-}
  3274. {$endif}
  3275. {$ifopt R+}
  3276. {$define rangeon}
  3277. {$R-}
  3278. {$endif}
  3279. if to_signed then
  3280. begin
  3281. { calculation of the low/high ranges must not overflow 64 bit
  3282. otherwise we end up comparing with zero for 64 bit data types on
  3283. 64 bit processors }
  3284. if (lto = (int64(-1) << (tosize * 8 - 1))) and
  3285. (hto = (-((int64(-1) << (tosize * 8 - 1))+1))) then
  3286. exit
  3287. end
  3288. else
  3289. begin
  3290. { calculation of the low/high ranges must not overflow 64 bit
  3291. otherwise we end up having all zeros for 64 bit data types on
  3292. 64 bit processors }
  3293. if (lto = 0) and
  3294. (qword(hto) = (qword(-1) >> (64-(tosize * 8))) ) then
  3295. exit
  3296. end;
  3297. {$ifdef overflowon}
  3298. {$Q+}
  3299. {$undef overflowon}
  3300. {$endif}
  3301. {$ifdef rangeon}
  3302. {$R+}
  3303. {$undef rangeon}
  3304. {$endif}
  3305. end
  3306. end;
  3307. { depending on the types involved, we perform the range check for 64 or
  3308. for 32 bit }
  3309. if fromsize=8 then
  3310. maxdef:=fromdef
  3311. else
  3312. maxdef:=todef;
  3313. {$if sizeof(aintmax) = 8}
  3314. if maxdef.size=8 then
  3315. aintmax:=high(int64)
  3316. else
  3317. {$endif}
  3318. begin
  3319. aintmax:=high(longint);
  3320. maxdef:=u32inttype;
  3321. end;
  3322. { generate the rangecheck code for the def where we are going to }
  3323. { store the result }
  3324. { use the trick that }
  3325. { a <= x <= b <=> 0 <= x-a <= b-a <=> unsigned(x-a) <= unsigned(b-a) }
  3326. { To be able to do that, we have to make sure however that either }
  3327. { fromdef and todef are both signed or unsigned, or that we leave }
  3328. { the parts < 0 and > maxlongint out }
  3329. if from_signed xor to_signed then
  3330. begin
  3331. if from_signed then
  3332. { from is signed, to is unsigned }
  3333. begin
  3334. { if high(from) < 0 -> always range error }
  3335. if (hfrom < 0) or
  3336. { if low(to) > maxlongint also range error }
  3337. (lto > aintmax) then
  3338. begin
  3339. g_call_system_proc(list,'fpc_rangeerror',[],nil);
  3340. exit
  3341. end;
  3342. { from is signed and to is unsigned -> when looking at to }
  3343. { as an signed value, it must be < maxaint (otherwise }
  3344. { it will become negative, which is invalid since "to" is unsigned) }
  3345. if hto > aintmax then
  3346. hto := aintmax;
  3347. end
  3348. else
  3349. { from is unsigned, to is signed }
  3350. begin
  3351. if (lfrom > aintmax) or
  3352. (hto < 0) then
  3353. begin
  3354. g_call_system_proc(list,'fpc_rangeerror',[],nil);
  3355. exit
  3356. end;
  3357. { from is unsigned and to is signed -> when looking at to }
  3358. { as an unsigned value, it must be >= 0 (since negative }
  3359. { values are the same as values > maxlongint) }
  3360. if lto < 0 then
  3361. lto := 0;
  3362. end;
  3363. end;
  3364. hreg:=getintregister(list,maxdef);
  3365. a_load_loc_reg(list,fromdef,maxdef,l,hreg);
  3366. a_op_const_reg(list,OP_SUB,maxdef,tcgint(int64(lto)),hreg);
  3367. current_asmdata.getjumplabel(neglabel);
  3368. {
  3369. if from_signed then
  3370. a_cmp_const_reg_label(list,OS_INT,OC_GTE,aint(hto-lto),hreg,neglabel)
  3371. else
  3372. }
  3373. if qword(hto-lto)>qword(aintmax) then
  3374. a_cmp_const_reg_label(list,maxdef,OC_BE,aintmax,hreg,neglabel)
  3375. else
  3376. a_cmp_const_reg_label(list,maxdef,OC_BE,tcgint(int64(hto-lto)),hreg,neglabel);
  3377. g_call_system_proc(list,'fpc_rangeerror',[],nil);
  3378. a_label(list,neglabel);
  3379. end;
  3380. procedure thlcgobj.g_copyvaluepara_openarray(list: TAsmList; const ref: treference; const lenloc: tlocation; arrdef: tarraydef; destreg: tregister);
  3381. var
  3382. sizereg,sourcereg,lenreg : tregister;
  3383. cgpara1,cgpara2,cgpara3 : TCGPara;
  3384. ptrarrdef : tdef;
  3385. pd : tprocdef;
  3386. getmemres : tcgpara;
  3387. destloc : tlocation;
  3388. begin
  3389. { because some abis don't support dynamic stack allocation properly
  3390. open array value parameters are copied onto the heap
  3391. }
  3392. include(current_procinfo.flags, pi_has_open_array_parameter);
  3393. { calculate necessary memory }
  3394. { read/write operations on one register make the life of the register allocator hard }
  3395. if not(lenloc.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  3396. begin
  3397. lenreg:=getintregister(list,sinttype);
  3398. a_load_loc_reg(list,sinttype,sinttype,lenloc,lenreg);
  3399. end
  3400. else
  3401. lenreg:=lenloc.register;
  3402. sizereg:=getintregister(list,sinttype);
  3403. a_op_const_reg_reg(list,OP_ADD,sinttype,1,lenreg,sizereg);
  3404. a_op_const_reg(list,OP_IMUL,sinttype,arrdef.elesize,sizereg);
  3405. { load source }
  3406. ptrarrdef:=cpointerdef.getreusable(arrdef);
  3407. sourcereg:=getaddressregister(list,ptrarrdef);
  3408. a_loadaddr_ref_reg(list,arrdef,ptrarrdef,ref,sourcereg);
  3409. { do getmem call }
  3410. pd:=search_system_proc('fpc_getmem');
  3411. cgpara1.init;
  3412. paramanager.getintparaloc(list,pd,1,cgpara1);
  3413. a_load_reg_cgpara(list,sinttype,sizereg,cgpara1);
  3414. paramanager.freecgpara(list,cgpara1);
  3415. getmemres:=g_call_system_proc(list,pd,[@cgpara1],ptrarrdef);
  3416. cgpara1.done;
  3417. { return the new address }
  3418. location_reset(destloc,LOC_REGISTER,OS_ADDR);
  3419. destloc.register:=destreg;
  3420. gen_load_cgpara_loc(list,ptrarrdef,getmemres,destloc,false);
  3421. { do move call }
  3422. pd:=search_system_proc('MOVE');
  3423. cgpara1.init;
  3424. cgpara2.init;
  3425. cgpara3.init;
  3426. paramanager.getintparaloc(list,pd,1,cgpara1);
  3427. paramanager.getintparaloc(list,pd,2,cgpara2);
  3428. paramanager.getintparaloc(list,pd,3,cgpara3);
  3429. if pd.is_pushleftright then
  3430. begin
  3431. { load source }
  3432. a_load_reg_cgpara(list,ptrarrdef,sourcereg,cgpara1);
  3433. { load destination }
  3434. a_load_reg_cgpara(list,ptrarrdef,destreg,cgpara2);
  3435. { load size }
  3436. a_load_reg_cgpara(list,sizesinttype,sizereg,cgpara3);
  3437. end
  3438. else
  3439. begin
  3440. { load size }
  3441. a_load_reg_cgpara(list,sizesinttype,sizereg,cgpara3);
  3442. { load destination }
  3443. a_load_reg_cgpara(list,ptrarrdef,destreg,cgpara2);
  3444. { load source }
  3445. a_load_reg_cgpara(list,ptrarrdef,sourcereg,cgpara1);
  3446. end;
  3447. paramanager.freecgpara(list,cgpara3);
  3448. paramanager.freecgpara(list,cgpara2);
  3449. paramanager.freecgpara(list,cgpara1);
  3450. g_call_system_proc(list,pd,[@cgpara1,@cgpara2,@cgpara3],nil);
  3451. cgpara3.done;
  3452. cgpara2.done;
  3453. cgpara1.done;
  3454. getmemres.resetiftemp;
  3455. end;
  3456. procedure thlcgobj.g_releasevaluepara_openarray(list: TAsmList; arrdef: tarraydef; const l: tlocation);
  3457. var
  3458. cgpara1 : TCGPara;
  3459. pd : tprocdef;
  3460. begin
  3461. { do freemem call }
  3462. pd:=search_system_proc('fpc_freemem');
  3463. cgpara1.init;
  3464. paramanager.getintparaloc(list,pd,1,cgpara1);
  3465. { load source }
  3466. a_load_loc_cgpara(list,cpointerdef.getreusable(arrdef),l,cgpara1);
  3467. paramanager.freecgpara(list,cgpara1);
  3468. g_call_system_proc(list,pd,[@cgpara1],nil);
  3469. cgpara1.done;
  3470. end;
  3471. procedure thlcgobj.g_profilecode(list: TAsmList);
  3472. begin
  3473. end;
  3474. procedure thlcgobj.a_jmp_external_name(list: TAsmList; const externalname: TSymStr);
  3475. begin
  3476. cg.a_jmp_name(list,externalname);
  3477. end;
  3478. procedure thlcgobj.g_external_wrapper(list: TAsmList; procdef: tprocdef; const wrappername, externalname: string; global: boolean);
  3479. var
  3480. sym: tasmsymbol;
  3481. begin
  3482. maybe_new_object_file(list);
  3483. new_section(list,sec_code,wrappername,target_info.alignment.procalign);
  3484. if global then
  3485. begin
  3486. sym:=current_asmdata.DefineAsmSymbol(wrappername,AB_GLOBAL,AT_FUNCTION,procdef);
  3487. list.concat(Tai_symbol.Create_global(sym,0));
  3488. end
  3489. else
  3490. begin
  3491. sym:=current_asmdata.DefineAsmSymbol(wrappername,AB_LOCAL,AT_FUNCTION,procdef);
  3492. list.concat(Tai_symbol.Create(sym,0));
  3493. end;
  3494. a_jmp_external_name(list,externalname);
  3495. list.concat(Tai_symbol_end.Create(sym));
  3496. end;
  3497. procedure thlcgobj.g_allocload_reg_reg(list: TAsmList; regsize: tdef; const fromreg: tregister; out toreg: tregister; regtyp: tregistertype);
  3498. begin
  3499. case regtyp of
  3500. R_INTREGISTER:
  3501. toreg:=getintregister(list,regsize);
  3502. R_ADDRESSREGISTER:
  3503. toreg:=getaddressregister(list,regsize);
  3504. R_FPUREGISTER:
  3505. toreg:=getfpuregister(list,regsize);
  3506. else
  3507. internalerror(2013112910);
  3508. end;
  3509. a_load_reg_reg(list,regsize,regsize,fromreg,toreg);
  3510. end;
  3511. procedure thlcgobj.g_reference_loc(list: TAsmList; def: tdef; const fromloc: tlocation; out toloc: tlocation);
  3512. procedure handle_reg_move(regsize: tdef; const fromreg: tregister; out toreg: tregister; regtyp: tregistertype);
  3513. begin
  3514. case regtyp of
  3515. R_INTREGISTER:
  3516. toreg:=getintregister(list,regsize);
  3517. R_ADDRESSREGISTER:
  3518. toreg:=getaddressregister(list,regsize);
  3519. R_FPUREGISTER:
  3520. toreg:=getfpuregister(list,regsize);
  3521. else
  3522. internalerror(2013112915);
  3523. end;
  3524. a_load_reg_reg(list,regsize,regsize,fromreg,toreg);
  3525. end;
  3526. begin
  3527. toloc:=fromloc;
  3528. case fromloc.loc of
  3529. { volatile location, can't get a permanent reference }
  3530. LOC_REGISTER,
  3531. LOC_FPUREGISTER:
  3532. internalerror(2012012702);
  3533. LOC_CONSTANT:
  3534. { finished }
  3535. ;
  3536. LOC_CREGISTER:
  3537. handle_reg_move(def,fromloc.reference.index,toloc.reference.index,R_INTREGISTER);
  3538. LOC_CFPUREGISTER:
  3539. handle_reg_move(def,fromloc.reference.index,toloc.reference.index,R_FPUREGISTER);
  3540. { although LOC_CREFERENCE cannot be an lvalue, we may want to take a
  3541. reference to such a location for multiple reading }
  3542. LOC_CREFERENCE,
  3543. LOC_REFERENCE:
  3544. begin
  3545. if (fromloc.reference.base<>NR_NO) and
  3546. (fromloc.reference.base<>current_procinfo.framepointer) and
  3547. (fromloc.reference.base<>NR_STACK_POINTER_REG) then
  3548. handle_reg_move(voidpointertype,fromloc.reference.base,toloc.reference.base,getregtype(fromloc.reference.base));
  3549. if (fromloc.reference.index<>NR_NO) and
  3550. (fromloc.reference.index<>current_procinfo.framepointer) and
  3551. (fromloc.reference.index<>NR_STACK_POINTER_REG) then
  3552. handle_reg_move(voidpointertype,fromloc.reference.index,toloc.reference.index,getregtype(fromloc.reference.index));
  3553. end;
  3554. else
  3555. internalerror(2012012701);
  3556. end;
  3557. end;
  3558. procedure thlcgobj.g_ptrtypecast_reg(list: TAsmList; fromdef, todef: tdef; var reg: tregister);
  3559. begin
  3560. { nothing to do }
  3561. end;
  3562. procedure thlcgobj.g_ptrtypecast_ref(list: TAsmList; fromdef, todef: tdef; var ref: treference);
  3563. begin
  3564. { nothing to do }
  3565. end;
  3566. procedure thlcgobj.g_set_addr_nonbitpacked_field_ref(list: TAsmList; recdef: tabstractrecorddef; field: tfieldvarsym; var recref: treference);
  3567. begin
  3568. inc(recref.offset,field.fieldoffset);
  3569. recref.alignment:=newalignment(recref.alignment,field.fieldoffset);
  3570. end;
  3571. procedure thlcgobj.g_setup_load_field_by_name(list: TAsmList; recdef: trecorddef; const name: TIDString; const recref: treference; out fref: treference; out fielddef: tdef);
  3572. var
  3573. sym: tsym;
  3574. field: tfieldvarsym;
  3575. begin
  3576. sym:=search_struct_member(recdef,name);
  3577. if not assigned(sym) or
  3578. (sym.typ<>fieldvarsym) then
  3579. internalerror(2015111901);
  3580. field:=tfieldvarsym(sym);
  3581. fref:=recref;
  3582. fielddef:=field.vardef;
  3583. g_set_addr_nonbitpacked_field_ref(list,recdef,field,fref);
  3584. end;
  3585. procedure thlcgobj.g_load_reg_field_by_name(list: TAsmList; regsize: tdef; recdef: trecorddef; reg: tregister; const name: TIDString; const recref: treference);
  3586. var
  3587. fref: treference;
  3588. fielddef: tdef;
  3589. begin
  3590. g_setup_load_field_by_name(list,recdef,name,recref,fref,fielddef);
  3591. a_load_reg_ref(list,regsize,fielddef,reg,fref);
  3592. end;
  3593. procedure thlcgobj.g_load_const_field_by_name(list: TAsmList; recdef: trecorddef; a: tcgint; const name: TIDString; const recref: treference);
  3594. var
  3595. fref: treference;
  3596. fielddef: tdef;
  3597. begin
  3598. g_setup_load_field_by_name(list,recdef,name,recref,fref,fielddef);
  3599. a_load_const_ref(list,fielddef,a,fref);
  3600. end;
  3601. procedure thlcgobj.g_load_field_reg_by_name(list: TAsmList; recdef: trecorddef; regsize: tdef; const name: TIDString; const recref: treference; reg: tregister);
  3602. var
  3603. fref: treference;
  3604. fielddef: tdef;
  3605. begin
  3606. g_setup_load_field_by_name(list,recdef,name,recref,fref,fielddef);
  3607. a_load_ref_reg(list,fielddef,regsize,fref,reg);
  3608. end;
  3609. procedure thlcgobj.g_force_field_reg_by_name(list: TAsmList; recdef: trecorddef; const name: TIDString; const recref: treference; out regdef: tdef; out reg: tregister);
  3610. var
  3611. fref: treference;
  3612. begin
  3613. g_setup_load_field_by_name(list,recdef,name,recref,fref,regdef);
  3614. reg:=getregisterfordef(list,regdef);
  3615. a_load_ref_reg(list,regdef,regdef,fref,reg);
  3616. end;
  3617. procedure thlcgobj.location_force_reg(list: TAsmList; var l: tlocation; src_size, dst_size: tdef; maybeconst: boolean);
  3618. var
  3619. hregister,
  3620. hregister2: tregister;
  3621. hl : tasmlabel;
  3622. oldloc : tlocation;
  3623. begin
  3624. oldloc:=l;
  3625. hregister:=getregisterfordef(list,dst_size);
  3626. { load value in new register }
  3627. case l.loc of
  3628. {$ifdef cpuflags}
  3629. LOC_FLAGS :
  3630. begin
  3631. g_flags2reg(list,dst_size,l.resflags,hregister);
  3632. cg.a_reg_dealloc(list,NR_DEFAULTFLAGS);
  3633. end;
  3634. {$endif cpuflags}
  3635. LOC_JUMP :
  3636. begin
  3637. a_label(list,l.truelabel);
  3638. if is_cbool(src_size) then
  3639. a_load_const_reg(list,dst_size,-1,hregister)
  3640. else
  3641. a_load_const_reg(list,dst_size,1,hregister);
  3642. current_asmdata.getjumplabel(hl);
  3643. a_jmp_always(list,hl);
  3644. a_label(list,l.falselabel);
  3645. a_load_const_reg(list,dst_size,0,hregister);
  3646. a_label(list,hl);
  3647. end;
  3648. else
  3649. begin
  3650. { load_loc_reg can only handle size >= l.size, when the
  3651. new size is smaller then we need to adjust the size
  3652. of the orignal and maybe recalculate l.register for i386 }
  3653. if (dst_size.size<src_size.size) then
  3654. begin
  3655. hregister2:=getregisterfordef(list,src_size);
  3656. { prevent problems with memory locations -- at this high
  3657. level we cannot twiddle with the reference offset, since
  3658. that may not mean anything (e.g., it refers to fixed-sized
  3659. stack slots on Java) }
  3660. a_load_loc_reg(list,src_size,src_size,l,hregister2);
  3661. a_load_reg_reg(list,src_size,dst_size,hregister2,hregister);
  3662. end
  3663. else
  3664. a_load_loc_reg(list,src_size,dst_size,l,hregister);
  3665. end;
  3666. end;
  3667. if (l.loc <> LOC_CREGISTER) or
  3668. not maybeconst then
  3669. location_reset(l,LOC_REGISTER,def_cgsize(dst_size))
  3670. else
  3671. location_reset(l,LOC_CREGISTER,def_cgsize(dst_size));
  3672. l.register:=hregister;
  3673. { Release temp if it was a reference }
  3674. if oldloc.loc=LOC_REFERENCE then
  3675. location_freetemp(list,oldloc);
  3676. end;
  3677. procedure thlcgobj.location_force_fpureg(list: TAsmList; var l: tlocation; size: tdef; maybeconst: boolean);
  3678. var
  3679. reg : tregister;
  3680. begin
  3681. if (l.loc<>LOC_FPUREGISTER) and
  3682. ((l.loc<>LOC_CFPUREGISTER) or (not maybeconst)) then
  3683. begin
  3684. { if it's in an mm register, store to memory first }
  3685. if (l.loc in [LOC_MMREGISTER,LOC_CMMREGISTER]) then
  3686. location_force_mem(list,l,size);
  3687. reg:=getfpuregister(list,size);
  3688. a_loadfpu_loc_reg(list,size,size,l,reg);
  3689. location_freetemp(list,l);
  3690. location_reset(l,LOC_FPUREGISTER,l.size);
  3691. l.register:=reg;
  3692. end;
  3693. end;
  3694. procedure thlcgobj.location_force_mem(list: TAsmList; var l: tlocation; size: tdef);
  3695. var
  3696. r : treference;
  3697. forcesize: aint;
  3698. begin
  3699. case l.loc of
  3700. LOC_FPUREGISTER,
  3701. LOC_CFPUREGISTER :
  3702. begin
  3703. tg.gethltemp(list,size,size.size,tt_normal,r);
  3704. a_loadfpu_reg_ref(list,size,size,l.register,r);
  3705. location_reset_ref(l,LOC_REFERENCE,l.size,size.alignment,[]);
  3706. l.reference:=r;
  3707. end;
  3708. LOC_MMREGISTER,
  3709. LOC_CMMREGISTER:
  3710. begin
  3711. { vectors can't be represented yet using tdef }
  3712. if size.typ<>floatdef then
  3713. internalerror(2012062301);
  3714. tg.gethltemp(list,size,size.size,tt_normal,r);
  3715. a_loadmm_reg_ref(list,size,size,l.register,r,mms_movescalar);
  3716. location_reset_ref(l,LOC_REFERENCE,l.size,size.alignment,[]);
  3717. l.reference:=r;
  3718. end;
  3719. LOC_CONSTANT,
  3720. LOC_REGISTER,
  3721. LOC_CREGISTER,
  3722. LOC_SUBSETREG,
  3723. LOC_CSUBSETREG,
  3724. LOC_SUBSETREF,
  3725. LOC_CSUBSETREF:
  3726. begin
  3727. if not is_dynamic_array(size) and
  3728. not is_open_array(size) then
  3729. forcesize:=size.size
  3730. else
  3731. forcesize:=sizeof(pint);
  3732. tg.gethltemp(list,size,forcesize,tt_normal,r);
  3733. a_load_loc_ref(list,size,size,l,r);
  3734. location_reset_ref(l,LOC_REFERENCE,l.size,size.alignment,[]);
  3735. l.reference:=r;
  3736. end;
  3737. LOC_CREFERENCE,
  3738. LOC_REFERENCE : ;
  3739. else
  3740. internalerror(2011010304);
  3741. end;
  3742. end;
  3743. procedure thlcgobj.location_force_mmregscalar(list: TAsmList; var l: tlocation; size: tdef; maybeconst: boolean);
  3744. var
  3745. reg : tregister;
  3746. href : treference;
  3747. newsize : tdef;
  3748. begin
  3749. if (l.loc<>LOC_MMREGISTER) and
  3750. ((l.loc<>LOC_CMMREGISTER) or (not maybeconst)) then
  3751. begin
  3752. { if it's in an fpu register, store to memory first }
  3753. if (l.loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER]) then
  3754. begin
  3755. tg.gethltemp(list,size,-1,tt_normal,href);
  3756. hlcg.a_loadfpu_reg_ref(list,size,size,l.register,href);
  3757. location_reset_ref(l,LOC_REFERENCE,l.size,size.alignment,[]);
  3758. l.reference:=href;
  3759. end;
  3760. { on ARM, CFP values may be located in integer registers,
  3761. and its second_int_to_real() also uses this routine to
  3762. force integer (memory) values in an mmregister }
  3763. if (l.size in [OS_32,OS_S32]) then
  3764. begin
  3765. size:=cgsize_orddef(l.size);
  3766. newsize:=s32floattype;
  3767. end
  3768. else if (l.size in [OS_64,OS_S64]) then
  3769. begin
  3770. size:=cgsize_orddef(l.size);
  3771. newsize:=s64floattype;
  3772. end
  3773. else
  3774. newsize:=size;
  3775. case size.size of
  3776. 4:
  3777. newsize:=s32floattype;
  3778. 8:
  3779. newsize:=s64floattype;
  3780. else
  3781. newsize:=size;
  3782. end;
  3783. reg:=hlcg.getmmregister(list,newsize);
  3784. hlcg.a_loadmm_loc_reg(list,size,newsize,l,reg,mms_movescalar);
  3785. l.size:=def_cgsize(newsize);
  3786. location_freetemp(list,l);
  3787. location_reset(l,LOC_MMREGISTER,l.size);
  3788. l.register:=reg;
  3789. end;
  3790. end;
  3791. procedure thlcgobj.location_get_data_ref(list: TAsmList; def: tdef; const l: tlocation; var ref: treference; loadref: boolean; alignment: longint);
  3792. var
  3793. pdef: tdef;
  3794. begin
  3795. case l.loc of
  3796. LOC_REGISTER,
  3797. LOC_CREGISTER :
  3798. begin
  3799. if not loadref then
  3800. internalerror(200410231);
  3801. reference_reset_base(ref,cpointerdef.getreusable(def),l.register,0,alignment,[]);
  3802. end;
  3803. LOC_REFERENCE,
  3804. LOC_CREFERENCE :
  3805. begin
  3806. if loadref then
  3807. begin
  3808. pdef:=cpointerdef.getreusable(def);
  3809. reference_reset_base(ref,pdef,getaddressregister(list,voidpointertype),0,alignment,[]);
  3810. { it's a pointer to def }
  3811. a_load_ref_reg(list,pdef,pdef,l.reference,ref.base);
  3812. end
  3813. else
  3814. ref:=l.reference;
  3815. end;
  3816. else
  3817. internalerror(200309181);
  3818. end;
  3819. end;
  3820. procedure thlcgobj.maketojumpbool(list: TAsmList; p: tnode);
  3821. var
  3822. truelabel,
  3823. falselabel: tasmlabel;
  3824. begin
  3825. if p.location.loc<>LOC_JUMP then
  3826. begin
  3827. current_asmdata.getjumplabel(truelabel);
  3828. current_asmdata.getjumplabel(falselabel);
  3829. end
  3830. else
  3831. begin
  3832. truelabel:=p.location.truelabel;
  3833. falselabel:=p.location.falselabel;
  3834. end;
  3835. maketojumpboollabels(list,p,truelabel,falselabel);
  3836. end;
  3837. procedure thlcgobj.maketojumpboollabels(list: TAsmList; p: tnode; truelabel, falselabel: tasmlabel);
  3838. var
  3839. storepos : tfileposinfo;
  3840. begin
  3841. if nf_error in p.flags then
  3842. exit;
  3843. storepos:=current_filepos;
  3844. current_filepos:=p.fileinfo;
  3845. if is_boolean(p.resultdef) then
  3846. begin
  3847. if is_constboolnode(p) then
  3848. begin
  3849. if Tordconstnode(p).value.uvalue<>0 then
  3850. a_jmp_always(list,truelabel)
  3851. else
  3852. a_jmp_always(list,falselabel)
  3853. end
  3854. else
  3855. begin
  3856. case p.location.loc of
  3857. LOC_SUBSETREG,LOC_CSUBSETREG,
  3858. LOC_SUBSETREF,LOC_CSUBSETREF,
  3859. LOC_CREGISTER,LOC_REGISTER,LOC_CREFERENCE,LOC_REFERENCE :
  3860. begin
  3861. a_cmp_const_loc_label(list,p.resultdef,OC_NE,0,p.location,truelabel);
  3862. a_jmp_always(list,falselabel);
  3863. end;
  3864. LOC_JUMP:
  3865. begin
  3866. if truelabel<>p.location.truelabel then
  3867. begin
  3868. a_label(list,p.location.truelabel);
  3869. a_jmp_always(list,truelabel);
  3870. end;
  3871. if falselabel<>p.location.falselabel then
  3872. begin
  3873. a_label(list,p.location.falselabel);
  3874. a_jmp_always(list,falselabel);
  3875. end;
  3876. end;
  3877. {$ifdef cpuflags}
  3878. LOC_FLAGS :
  3879. begin
  3880. a_jmp_flags(list,p.location.resflags,truelabel);
  3881. a_reg_dealloc(list,NR_DEFAULTFLAGS);
  3882. a_jmp_always(list,falselabel);
  3883. end;
  3884. {$endif cpuflags}
  3885. else
  3886. begin
  3887. printnode(output,p);
  3888. internalerror(2011010418);
  3889. end;
  3890. end;
  3891. end;
  3892. location_reset_jump(p.location,truelabel,falselabel);
  3893. end
  3894. else
  3895. internalerror(2011010419);
  3896. current_filepos:=storepos;
  3897. end;
  3898. procedure thlcgobj.maybe_change_load_node_reg(list: TAsmList; var n: tnode; reload: boolean);
  3899. var
  3900. rr: treplaceregrec;
  3901. varloc : tai_varloc;
  3902. begin
  3903. if not (n.location.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMXREGISTER,LOC_CMMREGISTER]) or
  3904. ([fc_inflowcontrol,fc_gotolabel,fc_lefthandled] * flowcontrol <> []) then
  3905. exit;
  3906. rr.old := n.location.register;
  3907. rr.ressym := nil;
  3908. rr.sym := nil;
  3909. rr.oldhi := NR_NO;
  3910. case n.location.loc of
  3911. LOC_CREGISTER:
  3912. begin
  3913. {$ifdef cpu64bitalu}
  3914. if (n.location.size in [OS_128,OS_S128]) then
  3915. begin
  3916. rr.oldhi := n.location.register128.reghi;
  3917. rr.new := cg.getintregister(current_asmdata.CurrAsmList,OS_INT);
  3918. rr.newhi := cg.getintregister(current_asmdata.CurrAsmList,OS_INT);
  3919. end
  3920. else
  3921. {$else cpu64bitalu}
  3922. if (n.location.size in [OS_64,OS_S64]) then
  3923. begin
  3924. rr.oldhi := n.location.register64.reghi;
  3925. rr.new := cg.getintregister(current_asmdata.CurrAsmList,OS_32);
  3926. rr.newhi := cg.getintregister(current_asmdata.CurrAsmList,OS_32);
  3927. end
  3928. else
  3929. {$endif cpu64bitalu}
  3930. if getregtype(rr.old)=R_ADDRESSREGISTER then
  3931. rr.new := hlcg.getaddressregister(current_asmdata.CurrAsmList,n.resultdef)
  3932. else
  3933. rr.new := cg.getintregister(current_asmdata.CurrAsmList,n.location.size);
  3934. end;
  3935. LOC_CFPUREGISTER:
  3936. rr.new := cg.getfpuregister(current_asmdata.CurrAsmList,n.location.size);
  3937. {$ifdef SUPPORT_MMX}
  3938. LOC_CMMXREGISTER:
  3939. rr.new := tcgx86(cg).getmmxregister(current_asmdata.CurrAsmList);
  3940. {$endif SUPPORT_MMX}
  3941. LOC_CMMREGISTER:
  3942. rr.new := cg.getmmregister(current_asmdata.CurrAsmList,n.location.size);
  3943. else
  3944. exit;
  3945. end;
  3946. { self is implicitly returned from constructors, even if there are no
  3947. references to it; additionally, funcretsym is not set for constructor
  3948. procdefs }
  3949. if (current_procinfo.procdef.proctypeoption=potype_constructor) then
  3950. rr.ressym:=tsym(current_procinfo.procdef.parast.Find('self'))
  3951. else if not is_void(current_procinfo.procdef.returndef) and
  3952. assigned(current_procinfo.procdef.funcretsym) and
  3953. (tabstractvarsym(current_procinfo.procdef.funcretsym).refs <> 0) then
  3954. rr.ressym:=current_procinfo.procdef.funcretsym;
  3955. if not foreachnode(n,@do_replace_node_regs,@rr) then
  3956. exit;
  3957. if reload then
  3958. case n.location.loc of
  3959. LOC_CREGISTER:
  3960. begin
  3961. {$ifdef cpu64bitalu}
  3962. if (n.location.size in [OS_128,OS_S128]) then
  3963. cg128.a_load128_reg_reg(list,n.location.register128,joinreg128(rr.new,rr.newhi))
  3964. else
  3965. {$else cpu64bitalu}
  3966. if (n.location.size in [OS_64,OS_S64]) then
  3967. cg64.a_load64_reg_reg(list,n.location.register64,joinreg64(rr.new,rr.newhi))
  3968. else
  3969. {$endif cpu64bitalu}
  3970. a_load_reg_reg(list,n.resultdef,n.resultdef,n.location.register,rr.new);
  3971. end;
  3972. LOC_CFPUREGISTER:
  3973. cg.a_loadfpu_reg_reg(list,n.location.size,n.location.size,n.location.register,rr.new);
  3974. {$ifdef SUPPORT_MMX}
  3975. LOC_CMMXREGISTER:
  3976. cg.a_loadmm_reg_reg(list,OS_M64,OS_M64,n.location.register,rr.new,nil);
  3977. {$endif SUPPORT_MMX}
  3978. LOC_CMMREGISTER:
  3979. a_loadmm_reg_reg(list,n.resultdef,n.resultdef,n.location.register,rr.new,nil);
  3980. else
  3981. internalerror(2006090920);
  3982. end;
  3983. { now that we've change the loadn/temp, also change the node result location }
  3984. {$ifdef cpu64bitalu}
  3985. if (n.location.size in [OS_128,OS_S128]) then
  3986. begin
  3987. n.location.register128.reglo := rr.new;
  3988. n.location.register128.reghi := rr.newhi;
  3989. if assigned(rr.sym) then
  3990. begin
  3991. varloc:=tai_varloc.create128(rr.sym,rr.new,rr.newhi);
  3992. list.concat(varloc);
  3993. end;
  3994. end
  3995. else
  3996. {$else cpu64bitalu}
  3997. if (n.location.size in [OS_64,OS_S64]) then
  3998. begin
  3999. n.location.register64.reglo := rr.new;
  4000. n.location.register64.reghi := rr.newhi;
  4001. if assigned(rr.sym) then
  4002. begin
  4003. varloc:=tai_varloc.create64(rr.sym,rr.new,rr.newhi);
  4004. list.concat(varloc);
  4005. end;
  4006. end
  4007. else
  4008. {$endif cpu64bitalu}
  4009. begin
  4010. n.location.register := rr.new;
  4011. if assigned(rr.sym) then
  4012. begin
  4013. varloc:=tai_varloc.create(rr.sym,rr.new);
  4014. list.concat(varloc);
  4015. end;
  4016. end;
  4017. end;
  4018. function thlcgobj.do_replace_node_regs(var n: tnode; para: pointer): foreachnoderesult;
  4019. var
  4020. rr: preplaceregrec absolute para;
  4021. begin
  4022. result := fen_false;
  4023. if (nf_is_funcret in n.flags) and (fc_exit in flowcontrol) then
  4024. exit;
  4025. case n.nodetype of
  4026. loadn:
  4027. begin
  4028. if (tloadnode(n).symtableentry.typ in [localvarsym,paravarsym,staticvarsym]) and
  4029. (tabstractvarsym(tloadnode(n).symtableentry).varoptions * [vo_is_dll_var, vo_is_thread_var] = []) and
  4030. not assigned(tloadnode(n).left) and
  4031. ((tloadnode(n).symtableentry <> rr^.ressym) or
  4032. not(fc_exit in flowcontrol)
  4033. ) and
  4034. (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMXREGISTER,LOC_CMMREGISTER]) and
  4035. (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register = rr^.old) then
  4036. begin
  4037. {$ifdef cpu64bitalu}
  4038. { it's possible a 128 bit location was shifted and/xor typecasted }
  4039. { in a 64 bit value, so only 1 register was left in the location }
  4040. if (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.size in [OS_128,OS_S128]) then
  4041. if (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register128.reghi = rr^.oldhi) then
  4042. tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register128.reghi := rr^.newhi
  4043. else
  4044. exit;
  4045. {$else cpu64bitalu}
  4046. { it's possible a 64 bit location was shifted and/xor typecasted }
  4047. { in a 32 bit value, so only 1 register was left in the location }
  4048. if (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.size in [OS_64,OS_S64]) then
  4049. if (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register64.reghi = rr^.oldhi) then
  4050. tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register64.reghi := rr^.newhi
  4051. else
  4052. exit;
  4053. {$endif cpu64bitalu}
  4054. tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register := rr^.new;
  4055. rr^.sym := tabstractnormalvarsym(tloadnode(n).symtableentry);
  4056. result := fen_norecurse_true;
  4057. end;
  4058. end;
  4059. temprefn:
  4060. begin
  4061. if (ti_valid in ttemprefnode(n).tempflags) and
  4062. (ttemprefnode(n).tempinfo^.location.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMXREGISTER,LOC_CMMREGISTER]) and
  4063. (ttemprefnode(n).tempinfo^.location.register = rr^.old) then
  4064. begin
  4065. {$ifdef cpu64bitalu}
  4066. { it's possible a 128 bit location was shifted and/xor typecasted }
  4067. { in a 64 bit value, so only 1 register was left in the location }
  4068. if (ttemprefnode(n).tempinfo^.location.size in [OS_128,OS_S128]) then
  4069. if (ttemprefnode(n).tempinfo^.location.register128.reghi = rr^.oldhi) then
  4070. ttemprefnode(n).tempinfo^.location.register128.reghi := rr^.newhi
  4071. else
  4072. exit;
  4073. {$else cpu64bitalu}
  4074. { it's possible a 64 bit location was shifted and/xor typecasted }
  4075. { in a 32 bit value, so only 1 register was left in the location }
  4076. if (ttemprefnode(n).tempinfo^.location.size in [OS_64,OS_S64]) then
  4077. if (ttemprefnode(n).tempinfo^.location.register64.reghi = rr^.oldhi) then
  4078. ttemprefnode(n).tempinfo^.location.register64.reghi := rr^.newhi
  4079. else
  4080. exit;
  4081. {$endif cpu64bitalu}
  4082. ttemprefnode(n).tempinfo^.location.register := rr^.new;
  4083. result := fen_norecurse_true;
  4084. end;
  4085. end;
  4086. { optimize the searching a bit }
  4087. derefn,addrn,
  4088. calln,inlinen,casen,
  4089. addn,subn,muln,
  4090. andn,orn,xorn,
  4091. ltn,lten,gtn,gten,equaln,unequaln,
  4092. slashn,divn,shrn,shln,notn,
  4093. inn,
  4094. asn,isn:
  4095. result := fen_norecurse_false;
  4096. end;
  4097. end;
  4098. procedure thlcgobj.gen_proc_symbol(list: TAsmList);
  4099. var
  4100. item,
  4101. previtem : TCmdStrListItem;
  4102. begin
  4103. previtem:=nil;
  4104. item := TCmdStrListItem(current_procinfo.procdef.aliasnames.first);
  4105. while assigned(item) do
  4106. begin
  4107. {$ifdef arm}
  4108. if GenerateThumbCode or GenerateThumb2Code then
  4109. list.concat(tai_directive.create(asd_thumb_func,''));
  4110. {$endif arm}
  4111. { "double link" all procedure entry symbols via .reference }
  4112. { directives on darwin, because otherwise the linker }
  4113. { sometimes strips the procedure if only on of the symbols }
  4114. { is referenced }
  4115. if assigned(previtem) and
  4116. (target_info.system in systems_darwin) then
  4117. list.concat(tai_directive.create(asd_reference,item.str));
  4118. if (cs_profile in current_settings.moduleswitches) or
  4119. { smart linking using a library requires to promote
  4120. all non-nested procedures to AB_GLOBAL
  4121. otherwise you get undefined symbol error at linking
  4122. for msdos target with -CX option for instance }
  4123. (create_smartlink_library and not is_nested_pd(current_procinfo.procdef)) or
  4124. (po_global in current_procinfo.procdef.procoptions) then
  4125. list.concat(Tai_symbol.createname_global(item.str,AT_FUNCTION,0,current_procinfo.procdef))
  4126. else
  4127. list.concat(Tai_symbol.createname(item.str,AT_FUNCTION,0,current_procinfo.procdef));
  4128. if assigned(previtem) and
  4129. (target_info.system in systems_darwin) then
  4130. list.concat(tai_directive.create(asd_reference,previtem.str));
  4131. if not(af_stabs_use_function_absolute_addresses in target_asm.flags) then
  4132. list.concat(Tai_function_name.create(item.str));
  4133. previtem:=item;
  4134. item := TCmdStrListItem(item.next);
  4135. end;
  4136. current_procinfo.procdef.procstarttai:=tai(list.last);
  4137. end;
  4138. procedure thlcgobj.gen_proc_symbol_end(list: TAsmList);
  4139. begin
  4140. list.concat(Tai_symbol_end.Createname(current_procinfo.procdef.mangledname));
  4141. current_procinfo.procdef.procendtai:=tai(list.last);
  4142. end;
  4143. procedure thlcgobj.handle_external_proc(list: TAsmList; pd: tprocdef; const importname: TSymStr);
  4144. begin
  4145. { External declared in implementation, and there was already a
  4146. forward (or interface) declaration then we need to generate
  4147. a stub that calls the external routine }
  4148. if (not pd.forwarddef) and
  4149. (pd.hasforward) then
  4150. begin
  4151. if importname<>'' then
  4152. begin
  4153. { add the procedure to the al_procedures }
  4154. g_external_wrapper(list,pd,pd.mangledname,importname,true);
  4155. end;
  4156. { remove the external stuff, so that the interface crc
  4157. doesn't change. This makes the function calls less
  4158. efficient, but it means that the interface doesn't
  4159. change if the function is ever redirected to another
  4160. function or implemented in the unit. }
  4161. pd.procoptions:=pd.procoptions-[po_external,po_has_importname,po_has_importdll];
  4162. stringdispose(pd.import_name);
  4163. stringdispose(pd.import_dll);
  4164. pd.import_nr:=0;
  4165. end;
  4166. end;
  4167. procedure thlcgobj.gen_initialize_code(list: TAsmList);
  4168. begin
  4169. { initialize global register variables }
  4170. case current_procinfo.procdef.proctypeoption of
  4171. potype_unitinit,
  4172. potype_proginit:
  4173. TSymtable(current_module.localsymtable).SymList.ForEachCall(@initialize_regvars,list);
  4174. end;
  4175. { initialises temp. ansi/wide string data }
  4176. if (current_procinfo.procdef.proctypeoption<>potype_exceptfilter) then
  4177. inittempvariables(list);
  4178. {$ifdef OLDREGVARS}
  4179. load_regvars(list,nil);
  4180. {$endif OLDREGVARS}
  4181. end;
  4182. procedure thlcgobj.gen_finalize_code(list: TAsmList);
  4183. var
  4184. old_current_procinfo: tprocinfo;
  4185. begin
  4186. old_current_procinfo:=current_procinfo;
  4187. if (current_procinfo.procdef.proctypeoption=potype_exceptfilter) then
  4188. begin
  4189. if (current_procinfo.parent.finalize_procinfo<>current_procinfo) then
  4190. exit;
  4191. current_procinfo:=current_procinfo.parent;
  4192. end;
  4193. {$ifdef OLDREGVARS}
  4194. cleanup_regvars(list);
  4195. {$endif OLDREGVARS}
  4196. { finalize temporary data }
  4197. finalizetempvariables(list);
  4198. { finalize paras data }
  4199. if assigned(current_procinfo.procdef.parast) and
  4200. not(po_assembler in current_procinfo.procdef.procoptions) then
  4201. current_procinfo.procdef.parast.SymList.ForEachCall(@final_paras,list);
  4202. current_procinfo:=old_current_procinfo;
  4203. end;
  4204. procedure thlcgobj.varsym_set_localloc(list: TAsmList; vs: tabstractnormalvarsym);
  4205. begin
  4206. if cs_asm_source in current_settings.globalswitches then
  4207. begin
  4208. case vs.initialloc.loc of
  4209. LOC_REFERENCE :
  4210. begin
  4211. if not assigned(vs.initialloc.reference.symbol) then
  4212. list.concat(Tai_comment.Create(strpnew('Var '+vs.realname+' located at '+
  4213. std_regname(vs.initialloc.reference.base)+tostr_with_plus(vs.initialloc.reference.offset)+
  4214. ', size='+tcgsize2str(vs.initialloc.size))));
  4215. end;
  4216. end;
  4217. end;
  4218. vs.localloc:=vs.initialloc;
  4219. end;
  4220. procedure thlcgobj.paravarsym_set_initialloc_to_paraloc(vs: tparavarsym);
  4221. begin
  4222. reference_reset_base(vs.initialloc.reference,voidstackpointertype,tparavarsym(vs).paraloc[calleeside].location^.reference.index,
  4223. tparavarsym(vs).paraloc[calleeside].location^.reference.offset,tparavarsym(vs).paraloc[calleeside].alignment,[]);
  4224. end;
  4225. procedure thlcgobj.gen_entry_code(list: TAsmList);
  4226. begin
  4227. { the actual profile code can clobber some registers,
  4228. therefore if the context must be saved, do it before
  4229. the actual call to the profile code
  4230. }
  4231. if (cs_profile in current_settings.moduleswitches) and
  4232. not(po_assembler in current_procinfo.procdef.procoptions) then
  4233. begin
  4234. { non-win32 can call mcout even in main }
  4235. if not (target_info.system in [system_i386_win32,system_i386_wdosx]) or
  4236. not (current_procinfo.procdef.proctypeoption=potype_proginit) then
  4237. begin
  4238. g_profilecode(list);
  4239. end;
  4240. end;
  4241. { call startup helpers from main program }
  4242. if (current_procinfo.procdef.proctypeoption=potype_proginit) then
  4243. begin
  4244. { initialize units }
  4245. if not(current_module.islibrary) then
  4246. {$ifdef AVR}
  4247. cg.a_call_name(list,'FPC_INIT_FUNC_TABLE',false)
  4248. {$else AVR}
  4249. g_call_system_proc(list,'fpc_initializeunits',[],nil)
  4250. {$endif AVR}
  4251. else
  4252. g_call_system_proc(list,'fpc_libinitializeunits',[],nil);
  4253. end;
  4254. list.concat(Tai_force_line.Create);
  4255. {$ifdef OLDREGVARS}
  4256. load_regvars(list,nil);
  4257. {$endif OLDREGVARS}
  4258. end;
  4259. procedure thlcgobj.gen_exit_code(list: TAsmList);
  4260. begin
  4261. { TODO: create high level version (create compilerproc in system unit,
  4262. look up procdef, use hlcgobj.a_call_name()) }
  4263. { call __EXIT for main program }
  4264. if (not current_module.islibrary) and
  4265. (current_procinfo.procdef.proctypeoption=potype_proginit) then
  4266. g_call_system_proc(list,'fpc_do_exit',[],nil);
  4267. end;
  4268. procedure thlcgobj.inittempvariables(list: TAsmList);
  4269. var
  4270. hp : ptemprecord;
  4271. href : treference;
  4272. begin
  4273. hp:=tg.templist;
  4274. while assigned(hp) do
  4275. begin
  4276. if hp^.fini and
  4277. assigned(hp^.def) and
  4278. is_managed_type(hp^.def) then
  4279. begin
  4280. temp_to_ref(hp,href);
  4281. g_initialize(list,hp^.def,href);
  4282. end;
  4283. hp:=hp^.next;
  4284. end;
  4285. end;
  4286. procedure thlcgobj.finalizetempvariables(list: TAsmList);
  4287. var
  4288. hp : ptemprecord;
  4289. href : treference;
  4290. begin
  4291. hp:=tg.templist;
  4292. while assigned(hp) do
  4293. begin
  4294. if hp^.fini and
  4295. assigned(hp^.def) and
  4296. is_managed_type(hp^.def) then
  4297. begin
  4298. include(current_procinfo.flags,pi_needs_implicit_finally);
  4299. temp_to_ref(hp,href);
  4300. g_finalize(list,hp^.def,href);
  4301. end;
  4302. hp:=hp^.next;
  4303. end;
  4304. end;
  4305. procedure thlcgobj.initialize_regvars(p: TObject; arg: pointer);
  4306. var
  4307. href : treference;
  4308. begin
  4309. if (tsym(p).typ=staticvarsym) and not(tstaticvarsym(p).noregvarinitneeded) then
  4310. begin
  4311. { Static variables can have the initialloc only set to LOC_CxREGISTER
  4312. or LOC_INVALID, for explaination see gen_alloc_symtable (PFV) }
  4313. case tstaticvarsym(p).initialloc.loc of
  4314. LOC_CREGISTER :
  4315. begin
  4316. {$ifdef cpu64bitalu}
  4317. if (tstaticvarsym(p).initialloc.size in [OS_128,OS_S128]) then
  4318. cg128.a_load128_const_reg(TAsmList(arg),0,0,tstaticvarsym(p).initialloc.register128)
  4319. else
  4320. {$else cpu64bitalu}
  4321. if (tstaticvarsym(p).initialloc.size in [OS_64,OS_S64]) then
  4322. cg64.a_load64_const_reg(TAsmList(arg),0,tstaticvarsym(p).initialloc.register64)
  4323. else
  4324. {$endif cpu64bitalu}
  4325. a_load_const_reg(TAsmList(arg),tstaticvarsym(p).vardef,0,
  4326. tstaticvarsym(p).initialloc.register);
  4327. end;
  4328. LOC_CMMREGISTER :
  4329. { clear the whole register }
  4330. a_opmm_reg_reg(TAsmList(arg),OP_XOR,tstaticvarsym(p).vardef,
  4331. tstaticvarsym(p).initialloc.register,
  4332. tstaticvarsym(p).initialloc.register,
  4333. nil);
  4334. LOC_CFPUREGISTER :
  4335. begin
  4336. { initialize fpu regvar by loading from memory }
  4337. reference_reset_symbol(href,
  4338. current_asmdata.RefAsmSymbol(tstaticvarsym(p).mangledname,AT_DATA), 0,
  4339. var_align(tstaticvarsym(p).vardef.alignment),[]);
  4340. a_loadfpu_ref_reg(TAsmList(arg), tstaticvarsym(p).vardef,
  4341. tstaticvarsym(p).vardef, href, tstaticvarsym(p).initialloc.register);
  4342. end;
  4343. LOC_INVALID :
  4344. ;
  4345. else
  4346. internalerror(200410124);
  4347. end;
  4348. end;
  4349. end;
  4350. procedure thlcgobj.final_paras(p: TObject; arg: pointer);
  4351. var
  4352. list : TAsmList;
  4353. href : treference;
  4354. hsym : tparavarsym;
  4355. eldef : tdef;
  4356. highloc : tlocation;
  4357. begin
  4358. if not(tsym(p).typ=paravarsym) then
  4359. exit;
  4360. list:=TAsmList(arg);
  4361. if is_managed_type(tparavarsym(p).vardef) then
  4362. begin
  4363. if (tparavarsym(p).varspez=vs_value) then
  4364. begin
  4365. include(current_procinfo.flags,pi_needs_implicit_finally);
  4366. location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).localloc,href,
  4367. is_open_array(tparavarsym(p).vardef) or
  4368. ((target_info.system in systems_caller_copy_addr_value_para) and
  4369. paramanager.push_addr_param(vs_value,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)),
  4370. sizeof(pint));
  4371. if is_open_array(tparavarsym(p).vardef) then
  4372. begin
  4373. if paramanager.push_high_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption) then
  4374. begin
  4375. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  4376. if not assigned(hsym) then
  4377. internalerror(201003032);
  4378. highloc:=hsym.initialloc
  4379. end
  4380. else
  4381. highloc.loc:=LOC_INVALID;
  4382. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  4383. g_ptrtypecast_ref(list,cpointerdef.getreusable(tparavarsym(p).vardef),cpointerdef.getreusable(eldef),href);
  4384. g_array_rtti_helper(list,eldef,href,highloc,'fpc_finalize_array');
  4385. end
  4386. else
  4387. g_finalize(list,tparavarsym(p).vardef,href);
  4388. end;
  4389. end;
  4390. { open arrays can contain elements requiring init/final code, so the else has been removed here }
  4391. if not(target_info.system in systems_caller_copy_addr_value_para) and
  4392. (tparavarsym(p).varspez=vs_value) and
  4393. (is_open_array(tparavarsym(p).vardef) or
  4394. is_array_of_const(tparavarsym(p).vardef)) then
  4395. begin
  4396. { cdecl functions don't have a high pointer so it is not possible to generate
  4397. a local copy }
  4398. if not(current_procinfo.procdef.proccalloption in cdecl_pocalls) then
  4399. g_releasevaluepara_openarray(list,tarraydef(tparavarsym(p).vardef),tparavarsym(p).localloc);
  4400. end;
  4401. end;
  4402. { generates the code for incrementing the reference count of parameters and
  4403. initialize out parameters }
  4404. { generates the code for incrementing the reference count of parameters and
  4405. initialize out parameters }
  4406. procedure thlcgobj.init_paras(p:TObject;arg:pointer);
  4407. var
  4408. href : treference;
  4409. hsym : tparavarsym;
  4410. eldef : tdef;
  4411. list : TAsmList;
  4412. highloc : tlocation;
  4413. needs_inittable : boolean;
  4414. begin
  4415. list:=TAsmList(arg);
  4416. if (tsym(p).typ=paravarsym) then
  4417. begin
  4418. needs_inittable:=is_managed_type(tparavarsym(p).vardef);
  4419. case tparavarsym(p).varspez of
  4420. vs_value :
  4421. if needs_inittable then
  4422. begin
  4423. { variants are already handled by the call to fpc_variant_copy_overwrite if
  4424. they are passed by reference }
  4425. if not((tparavarsym(p).vardef.typ=variantdef) and
  4426. paramanager.push_addr_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)) then
  4427. begin
  4428. location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,
  4429. is_open_array(tparavarsym(p).vardef) or
  4430. ((target_info.system in systems_caller_copy_addr_value_para) and
  4431. paramanager.push_addr_param(vs_value,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)),
  4432. sizeof(pint));
  4433. if is_open_array(tparavarsym(p).vardef) then
  4434. begin
  4435. if paramanager.push_high_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption) then
  4436. begin
  4437. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  4438. if not assigned(hsym) then
  4439. internalerror(201003032);
  4440. highloc:=hsym.initialloc
  4441. end
  4442. else
  4443. highloc.loc:=LOC_INVALID;
  4444. { open arrays do not contain correct element count in their rtti,
  4445. the actual count must be passed separately. }
  4446. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  4447. g_ptrtypecast_ref(list,cpointerdef.getreusable(tparavarsym(p).vardef),cpointerdef.getreusable(eldef),href);
  4448. g_array_rtti_helper(list,eldef,href,highloc,'fpc_addref_array');
  4449. end
  4450. else
  4451. g_incrrefcount(list,tparavarsym(p).vardef,href);
  4452. end;
  4453. end;
  4454. vs_out :
  4455. begin
  4456. if needs_inittable then
  4457. begin
  4458. { we have no idea about the alignment at the callee side,
  4459. and the user also cannot specify "unaligned" here, so
  4460. assume worst case }
  4461. location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,true,1);
  4462. if needs_inittable then
  4463. begin
  4464. if is_open_array(tparavarsym(p).vardef) then
  4465. begin
  4466. if paramanager.push_high_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption) then
  4467. begin
  4468. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  4469. if not assigned(hsym) then
  4470. internalerror(201003032);
  4471. highloc:=hsym.initialloc
  4472. end
  4473. else
  4474. highloc.loc:=LOC_INVALID;
  4475. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  4476. g_ptrtypecast_ref(list,cpointerdef.getreusable(tparavarsym(p).vardef),cpointerdef.getreusable(eldef),href);
  4477. g_array_rtti_helper(list,eldef,href,highloc,'fpc_initialize_array');
  4478. end
  4479. else
  4480. g_initialize(list,tparavarsym(p).vardef,href);
  4481. end;
  4482. end;
  4483. end;
  4484. end;
  4485. end;
  4486. end;
  4487. procedure thlcgobj.gen_load_para_value(list: TAsmList);
  4488. var
  4489. i: longint;
  4490. currpara: tparavarsym;
  4491. begin
  4492. if (po_assembler in current_procinfo.procdef.procoptions) or
  4493. { exceptfilters have a single hidden 'parentfp' parameter, which
  4494. is handled by tcg.g_proc_entry. }
  4495. (current_procinfo.procdef.proctypeoption=potype_exceptfilter) then
  4496. exit;
  4497. { Copy parameters to local references/registers }
  4498. for i:=0 to current_procinfo.procdef.paras.count-1 do
  4499. begin
  4500. currpara:=tparavarsym(current_procinfo.procdef.paras[i]);
  4501. { don't use currpara.vardef, as this will be wrong in case of
  4502. call-by-reference parameters (it won't contain the pointer) }
  4503. gen_load_cgpara_loc(list,currpara.paraloc[calleeside].def,currpara.paraloc[calleeside],currpara.initialloc,paramanager.param_use_paraloc(currpara.paraloc[calleeside]));
  4504. end;
  4505. { generate copies of call by value parameters, must be done before
  4506. the initialization and body is parsed because the refcounts are
  4507. incremented using the local copies }
  4508. current_procinfo.procdef.parast.SymList.ForEachCall(@g_copyvalueparas,list);
  4509. if not(po_assembler in current_procinfo.procdef.procoptions) then
  4510. begin
  4511. { initialize refcounted paras, and trash others. Needed here
  4512. instead of in gen_initialize_code, because when a reference is
  4513. intialised or trashed while the pointer to that reference is kept
  4514. in a regvar, we add a register move and that one again has to
  4515. come after the parameter loading code as far as the register
  4516. allocator is concerned }
  4517. current_procinfo.procdef.parast.SymList.ForEachCall(@init_paras,list);
  4518. end;
  4519. end;
  4520. procedure thlcgobj.g_copyvalueparas(p: TObject; arg: pointer);
  4521. var
  4522. href : treference;
  4523. hreg : tregister;
  4524. list : TAsmList;
  4525. hsym : tparavarsym;
  4526. l : longint;
  4527. highloc,
  4528. localcopyloc : tlocation;
  4529. begin
  4530. list:=TAsmList(arg);
  4531. if (tsym(p).typ=paravarsym) and
  4532. ((vo_has_local_copy in tparavarsym(p).varoptions) or
  4533. (not(target_info.system in systems_caller_copy_addr_value_para) and
  4534. (is_open_array(tparavarsym(p).vardef) or
  4535. is_array_of_const(tparavarsym(p).vardef)) and
  4536. (tparavarsym(p).varspez=vs_value))) then
  4537. begin
  4538. { we have no idea about the alignment at the caller side }
  4539. location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,true,1);
  4540. if is_open_array(tparavarsym(p).vardef) or
  4541. is_array_of_const(tparavarsym(p).vardef) then
  4542. begin
  4543. { cdecl functions don't have a high pointer so it is not possible to generate
  4544. a local copy }
  4545. if not(current_procinfo.procdef.proccalloption in cdecl_pocalls) then
  4546. begin
  4547. if paramanager.push_high_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption) then
  4548. begin
  4549. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  4550. if not assigned(hsym) then
  4551. internalerror(2011020506);
  4552. highloc:=hsym.initialloc
  4553. end
  4554. else
  4555. highloc.loc:=LOC_INVALID;
  4556. hreg:=getaddressregister(list,voidpointertype);
  4557. if not is_packed_array(tparavarsym(p).vardef) then
  4558. g_copyvaluepara_openarray(list,href,highloc,tarraydef(tparavarsym(p).vardef),hreg)
  4559. else
  4560. internalerror(2011020507);
  4561. // cg.g_copyvaluepara_packedopenarray(list,href,hsym.intialloc,tarraydef(tparavarsym(p).vardef).elepackedbitsize,hreg);
  4562. a_load_reg_loc(list,cpointerdef.getreusable(tparavarsym(p).vardef),cpointerdef.getreusable(tparavarsym(p).vardef),hreg,tparavarsym(p).initialloc);
  4563. end;
  4564. end
  4565. else
  4566. begin
  4567. { Allocate space for the local copy }
  4568. l:=tparavarsym(p).getsize;
  4569. localcopyloc.loc:=LOC_REFERENCE;
  4570. localcopyloc.size:=int_cgsize(l);
  4571. tg.GetLocal(list,l,tparavarsym(p).vardef,localcopyloc.reference);
  4572. { Copy data }
  4573. if is_shortstring(tparavarsym(p).vardef) then
  4574. begin
  4575. { this code is only executed before the code for the body and the entry/exit code is generated
  4576. so we're allowed to include pi_do_call here; after pass1 is run, this isn't allowed anymore
  4577. }
  4578. include(current_procinfo.flags,pi_do_call);
  4579. g_copyshortstring(list,href,localcopyloc.reference,tstringdef(tparavarsym(p).vardef))
  4580. end
  4581. else if tparavarsym(p).vardef.typ=variantdef then
  4582. begin
  4583. { this code is only executed before the code for the body and the entry/exit code is generated
  4584. so we're allowed to include pi_do_call here; after pass1 is run, this isn't allowed anymore
  4585. }
  4586. include(current_procinfo.flags,pi_do_call);
  4587. g_copyvariant(list,href,localcopyloc.reference,tvariantdef(tparavarsym(p).vardef))
  4588. end
  4589. else
  4590. begin
  4591. { pass proper alignment info }
  4592. localcopyloc.reference.alignment:=tparavarsym(p).vardef.alignment;
  4593. g_concatcopy(list,tparavarsym(p).vardef,href,localcopyloc.reference);
  4594. end;
  4595. { update localloc of varsym }
  4596. tg.Ungetlocal(list,tparavarsym(p).localloc.reference);
  4597. tparavarsym(p).localloc:=localcopyloc;
  4598. tparavarsym(p).initialloc:=localcopyloc;
  4599. end;
  4600. end;
  4601. end;
  4602. procedure thlcgobj.gen_loadfpu_loc_cgpara(list: TAsmList; size: tdef; const l: tlocation; const cgpara: tcgpara; locintsize: longint);
  4603. var
  4604. tmploc: tlocation;
  4605. begin
  4606. case l.loc of
  4607. LOC_MMREGISTER,
  4608. LOC_CMMREGISTER:
  4609. case cgpara.location^.loc of
  4610. LOC_REFERENCE,
  4611. LOC_CREFERENCE,
  4612. LOC_MMREGISTER,
  4613. LOC_CMMREGISTER,
  4614. LOC_REGISTER,
  4615. LOC_CREGISTER :
  4616. a_loadmm_reg_cgpara(list,size,l.register,cgpara,mms_movescalar);
  4617. LOC_FPUREGISTER,
  4618. LOC_CFPUREGISTER:
  4619. begin
  4620. tmploc:=l;
  4621. location_force_fpureg(list,tmploc,size,false);
  4622. a_loadfpu_reg_cgpara(list,size,tmploc.register,cgpara);
  4623. end;
  4624. else
  4625. internalerror(200204249);
  4626. end;
  4627. LOC_FPUREGISTER,
  4628. LOC_CFPUREGISTER:
  4629. case cgpara.location^.loc of
  4630. LOC_MMREGISTER,
  4631. LOC_CMMREGISTER:
  4632. begin
  4633. tmploc:=l;
  4634. location_force_mmregscalar(list,tmploc,size,false);
  4635. a_loadmm_reg_cgpara(list,size,tmploc.register,cgpara,mms_movescalar);
  4636. end;
  4637. { Some targets pass floats in normal registers }
  4638. LOC_REGISTER,
  4639. LOC_CREGISTER,
  4640. LOC_REFERENCE,
  4641. LOC_CREFERENCE,
  4642. LOC_FPUREGISTER,
  4643. LOC_CFPUREGISTER:
  4644. a_loadfpu_reg_cgpara(list,size,l.register,cgpara);
  4645. else
  4646. internalerror(2011010210);
  4647. end;
  4648. LOC_REFERENCE,
  4649. LOC_CREFERENCE:
  4650. case cgpara.location^.loc of
  4651. LOC_MMREGISTER,
  4652. LOC_CMMREGISTER:
  4653. a_loadmm_ref_cgpara(list,size,l.reference,cgpara,mms_movescalar);
  4654. { Some targets pass floats in normal registers }
  4655. LOC_REGISTER,
  4656. LOC_CREGISTER,
  4657. LOC_REFERENCE,
  4658. LOC_CREFERENCE,
  4659. LOC_FPUREGISTER,
  4660. LOC_CFPUREGISTER:
  4661. a_loadfpu_ref_cgpara(list,size,l.reference,cgpara);
  4662. else
  4663. internalerror(2011010211);
  4664. end;
  4665. LOC_REGISTER,
  4666. LOC_CREGISTER :
  4667. a_load_loc_cgpara(list,size,l,cgpara);
  4668. else
  4669. internalerror(2011010212);
  4670. end;
  4671. end;
  4672. procedure thlcgobj.gen_load_uninitialized_function_result(list: TAsmList; pd: tprocdef; resdef: tdef; const resloc: tcgpara);
  4673. begin
  4674. { do nothing by default }
  4675. end;
  4676. procedure thlcgobj.gen_load_loc_function_result(list: TAsmList; vardef: tdef; const l: tlocation);
  4677. begin
  4678. gen_load_loc_cgpara(list,vardef,l,current_procinfo.procdef.funcretloc[calleeside]);
  4679. end;
  4680. procedure thlcgobj.gen_load_loc_cgpara(list: TAsmList; vardef: tdef; const l: tlocation; const cgpara: tcgpara);
  4681. var
  4682. tmploc: tlocation;
  4683. begin
  4684. { skip e.g. empty records }
  4685. if (cgpara.location^.loc = LOC_VOID) then
  4686. exit;
  4687. { Handle Floating point types differently
  4688. This doesn't depend on emulator settings, emulator settings should
  4689. be handled by cpupara }
  4690. if (vardef.typ=floatdef) or
  4691. { some ABIs return certain records in an fpu register }
  4692. (l.loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER]) or
  4693. (assigned(cgpara.location) and
  4694. (cgpara.Location^.loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER])) then
  4695. begin
  4696. gen_loadfpu_loc_cgpara(list,vardef,l,cgpara,vardef.size);
  4697. exit;
  4698. end;
  4699. { in case of multiple locations, force the source to memory as only
  4700. a_load_ref_cgpara supports multiple locations }
  4701. if assigned(cgpara.location^.next) and
  4702. not(l.loc in [LOC_REFERENCE,LOC_CREFERENCE]) then
  4703. begin
  4704. tmploc:=l;
  4705. location_force_mem(list,tmploc,vardef);
  4706. a_load_loc_cgpara(list,vardef,tmploc,cgpara);
  4707. location_freetemp(list,tmploc);
  4708. exit;
  4709. end;
  4710. case l.loc of
  4711. LOC_CONSTANT,
  4712. LOC_REGISTER,
  4713. LOC_CREGISTER,
  4714. LOC_REFERENCE,
  4715. LOC_CREFERENCE :
  4716. begin
  4717. a_load_loc_cgpara(list,vardef,l,cgpara);
  4718. end;
  4719. LOC_MMREGISTER,
  4720. LOC_CMMREGISTER:
  4721. begin
  4722. if use_vectorfpu(vardef) then
  4723. a_loadmm_loc_cgpara(list,vardef,l,cgpara,mms_movescalar)
  4724. else
  4725. { no vector support yet }
  4726. internalerror(2012071212);
  4727. {
  4728. cg.a_loadmm_loc_cgpara(list,l,cgpara,nil);
  4729. }
  4730. end;
  4731. else
  4732. internalerror(2011010213);
  4733. end;
  4734. end;
  4735. procedure thlcgobj.gen_load_cgpara_loc(list: TAsmList; vardef: tdef; const para: TCGPara; var destloc: tlocation; reusepara: boolean);
  4736. var
  4737. href : treference;
  4738. begin
  4739. para.check_simple_location;
  4740. { skip e.g. empty records }
  4741. if (para.location^.loc = LOC_VOID) then
  4742. exit;
  4743. case destloc.loc of
  4744. LOC_REFERENCE :
  4745. begin
  4746. { If the parameter location is reused we don't need to copy
  4747. anything }
  4748. if not reusepara then
  4749. begin
  4750. case para.location^.loc of
  4751. LOC_REFERENCE,LOC_CREFERENCE:
  4752. begin
  4753. reference_reset_base(href,voidstackpointertype,para.location^.reference.index,para.location^.reference.offset,para.alignment,[]);
  4754. a_load_ref_ref(list,para.def,para.def,href,destloc.reference);
  4755. end;
  4756. else
  4757. internalerror(2013102301);
  4758. end;
  4759. end;
  4760. end;
  4761. { TODO other possible locations }
  4762. else
  4763. internalerror(2011010308);
  4764. end;
  4765. end;
  4766. procedure thlcgobj.gen_load_return_value(list: TAsmList);
  4767. var
  4768. ressym : tabstractnormalvarsym;
  4769. retdef : tdef;
  4770. begin
  4771. { Is the loading needed? }
  4772. if is_void(current_procinfo.procdef.returndef) or
  4773. (
  4774. (po_assembler in current_procinfo.procdef.procoptions) and
  4775. (not(assigned(current_procinfo.procdef.funcretsym)) or
  4776. (tabstractvarsym(current_procinfo.procdef.funcretsym).refs=0) or
  4777. (po_nostackframe in current_procinfo.procdef.procoptions))
  4778. ) then
  4779. exit;
  4780. { constructors return self }
  4781. if (current_procinfo.procdef.proctypeoption=potype_constructor) then
  4782. begin
  4783. ressym:=tabstractnormalvarsym(current_procinfo.procdef.parast.Find('self'));
  4784. retdef:=ressym.vardef;
  4785. { and TP-style constructors return a pointer to self }
  4786. if is_object(ressym.vardef) then
  4787. retdef:=cpointerdef.getreusable(retdef);
  4788. end
  4789. else
  4790. begin
  4791. ressym:=tabstractnormalvarsym(current_procinfo.procdef.funcretsym);
  4792. retdef:=ressym.vardef;
  4793. end;
  4794. if (ressym.refs>0) or
  4795. is_managed_type(retdef) then
  4796. begin
  4797. { was: don't do anything if funcretloc.loc in [LOC_INVALID,LOC_REFERENCE] }
  4798. if not paramanager.ret_in_param(current_procinfo.procdef.returndef,current_procinfo.procdef) then
  4799. gen_load_loc_function_result(list,retdef,ressym.localloc);
  4800. end
  4801. else
  4802. gen_load_uninitialized_function_result(list,current_procinfo.procdef,retdef,current_procinfo.procdef.funcretloc[calleeside])
  4803. end;
  4804. procedure thlcgobj.gen_stack_check_size_para(list: TAsmList);
  4805. var
  4806. paraloc1 : tcgpara;
  4807. pd : tprocdef;
  4808. begin
  4809. pd:=search_system_proc('fpc_stackcheck');
  4810. paraloc1.init;
  4811. paramanager.getintparaloc(current_asmdata.CurrAsmList,pd,1,paraloc1);
  4812. hlcg.a_load_const_cgpara(list,paraloc1.def,current_procinfo.calc_stackframe_size,paraloc1);
  4813. paramanager.freecgpara(list,paraloc1);
  4814. paraloc1.done;
  4815. end;
  4816. procedure thlcgobj.gen_stack_check_call(list: TAsmList);
  4817. var
  4818. paraloc1 : tcgpara;
  4819. pd : tprocdef;
  4820. begin
  4821. pd:=search_system_proc('fpc_stackcheck');
  4822. paraloc1.init;
  4823. { The parameter to fpc_stackcheck is loaded seperately via
  4824. gen_stack_check_size_para() }
  4825. paramanager.getintparaloc(list,pd,1,paraloc1);
  4826. paramanager.freecgpara(list,paraloc1);
  4827. { Call the helper }
  4828. hlcg.g_call_system_proc(list,pd,[@paraloc1],nil);
  4829. paraloc1.done;
  4830. end;
  4831. procedure thlcgobj.record_generated_code_for_procdef(pd: tprocdef; code, data: TAsmList);
  4832. var
  4833. alt: TAsmListType;
  4834. begin
  4835. if not(po_assembler in pd.procoptions) then
  4836. alt:=al_procedures
  4837. else
  4838. alt:=al_pure_assembler;
  4839. { add the procedure to the al_procedures }
  4840. maybe_new_object_file(current_asmdata.asmlists[alt]);
  4841. new_section(current_asmdata.asmlists[alt],sec_code,lower(pd.mangledname),getprocalign);
  4842. current_asmdata.asmlists[alt].concatlist(code);
  4843. { save local data (casetable) also in the same file }
  4844. if assigned(data) and
  4845. (not data.empty) then
  4846. current_asmdata.asmlists[alt].concatlist(data);
  4847. end;
  4848. function thlcgobj.g_call_system_proc(list: TAsmList; const procname: string; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  4849. var
  4850. pd: tprocdef;
  4851. begin
  4852. pd:=search_system_proc(procname);
  4853. pd.init_paraloc_info(callerside);
  4854. if systemunit<>current_module.globalsymtable then
  4855. current_module.addimportedsym(pd.procsym);
  4856. result:=g_call_system_proc_intern(list,pd,paras,forceresdef);
  4857. end;
  4858. function thlcgobj.g_call_system_proc(list: TAsmList; pd: tprocdef; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  4859. begin
  4860. { separate non-virtual routine to make it clear that the routine to
  4861. override, if any, is g_call_system_proc_intern (and that none of
  4862. the g_call_system_proc variants should be made virtual) }
  4863. pd.init_paraloc_info(callerside);
  4864. if systemunit<>current_module.globalsymtable then
  4865. current_module.addimportedsym(pd.procsym);
  4866. result:=g_call_system_proc_intern(list,pd,paras,forceresdef);
  4867. end;
  4868. function thlcgobj.g_call_system_proc_intern(list: TAsmList; pd: tprocdef; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  4869. begin
  4870. allocallcpuregisters(list);
  4871. result:=a_call_name(list,pd,pd.mangledname,paras,forceresdef,false);
  4872. deallocallcpuregisters(list);
  4873. end;
  4874. end.