hlcgobj.pas 226 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292
  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: longint; temppos: treftemppos; alignment: longint; volatility: tvolatilityset); virtual;
  104. {# Emit a label to the instruction stream. }
  105. procedure a_label(list : TAsmList;l : tasmlabel); inline;
  106. {# Allocates register r by inserting a pai_realloc record }
  107. procedure a_reg_alloc(list : TAsmList;r : tregister); inline;
  108. {# Deallocates register r by inserting a pa_regdealloc record}
  109. procedure a_reg_dealloc(list : TAsmList;r : tregister); inline;
  110. { Synchronize register, make sure it is still valid }
  111. procedure a_reg_sync(list : TAsmList;r : tregister); inline;
  112. {# Pass a parameter, which is located in a register, to a routine.
  113. This routine should push/send the parameter to the routine, as
  114. required by the specific processor ABI and routine modifiers.
  115. It must generate register allocation information for the cgpara in
  116. case it consists of cpuregisters.
  117. @param(size size of the operand in the register)
  118. @param(r register source of the operand)
  119. @param(cgpara where the parameter will be stored)
  120. }
  121. procedure a_load_reg_cgpara(list : TAsmList;size : tdef;r : tregister;const cgpara : TCGPara);virtual;
  122. {# Pass a parameter, which is a constant, to a routine.
  123. A generic version is provided. This routine should
  124. be overridden for optimization purposes if the cpu
  125. permits directly sending this type of parameter.
  126. It must generate register allocation information for the cgpara in
  127. case it consists of cpuregisters.
  128. @param(size size of the operand in constant)
  129. @param(a value of constant to send)
  130. @param(cgpara where the parameter will be stored)
  131. }
  132. procedure a_load_const_cgpara(list : TAsmList;tosize : tdef;a : tcgint;const cgpara : TCGPara);virtual;
  133. {# Pass the value of a parameter, which is located in memory, to a routine.
  134. A generic version is provided. This routine should
  135. be overridden for optimization purposes if the cpu
  136. permits directly sending this type of parameter.
  137. It must generate register allocation information for the cgpara in
  138. case it consists of cpuregisters.
  139. @param(size size of the operand in constant)
  140. @param(r Memory reference of value to send)
  141. @param(cgpara where the parameter will be stored)
  142. }
  143. procedure a_load_ref_cgpara(list : TAsmList;size : tdef;const r : treference;const cgpara : TCGPara);virtual;
  144. {# Pass the value of a parameter, which can be located either in a register or memory location,
  145. to a routine.
  146. A generic version is provided.
  147. @param(l location of the operand to send)
  148. @param(nr parameter number (starting from one) of routine (from left to right))
  149. @param(cgpara where the parameter will be stored)
  150. }
  151. procedure a_load_loc_cgpara(list : TAsmList;size : tdef; const l : tlocation;const cgpara : TCGPara);virtual;
  152. {# Pass the address of a reference to a routine. This routine
  153. will calculate the address of the reference, and pass this
  154. calculated address as a parameter.
  155. It must generate register allocation information for the cgpara in
  156. case it consists of cpuregisters.
  157. A generic version is provided. This routine should
  158. be overridden for optimization purposes if the cpu
  159. permits directly sending this type of parameter.
  160. @param(fromsize type of the reference we are taking the address of)
  161. @param(tosize type of the pointer that we get as a result)
  162. @param(r reference to get address from)
  163. }
  164. procedure a_loadaddr_ref_cgpara(list : TAsmList;fromsize : tdef;const r : treference;const cgpara : TCGPara);virtual;
  165. { Remarks:
  166. * If a method specifies a size you have only to take care
  167. of that number of bits, i.e. load_const_reg with OP_8 must
  168. only load the lower 8 bit of the specified register
  169. the rest of the register can be undefined
  170. if necessary the compiler will call a method
  171. to zero or sign extend the register
  172. * The a_load_XX_XX with OP_64 needn't to be
  173. implemented for 32 bit
  174. processors, the code generator takes care of that
  175. * the addr size is for work with the natural pointer
  176. size
  177. * the procedures without fpu/mm are only for integer usage
  178. * normally the first location is the source and the
  179. second the destination
  180. }
  181. {# Emits instruction to call the method specified by symbol name.
  182. Returns the function result location.
  183. This routine must be overridden for each new target cpu.
  184. }
  185. function a_call_name(list : TAsmList;pd : tprocdef;const s : TSymStr; const paras: array of pcgpara; forceresdef: tdef; weak: boolean): tcgpara;virtual;abstract;
  186. function a_call_reg(list : TAsmList;pd : tabstractprocdef;reg : tregister; const paras: array of pcgpara): tcgpara;virtual;abstract;
  187. { same as a_call_name, might be overridden on certain architectures to emit
  188. static calls without usage of a got trampoline }
  189. function a_call_name_static(list : TAsmList;pd : tprocdef;const s : TSymStr; const paras: array of pcgpara; forceresdef: tdef): tcgpara;virtual;
  190. { same as a_call_name, might be overridden on certain architectures to emit
  191. special static calls for inherited methods }
  192. function a_call_name_inherited(list : TAsmList;pd : tprocdef;const s : TSymStr; const paras: array of pcgpara): tcgpara;virtual;
  193. { move instructions }
  194. procedure a_load_const_reg(list : TAsmList;tosize : tdef;a : tcgint;register : tregister);virtual;abstract;
  195. procedure a_load_const_ref(list : TAsmList;tosize : tdef;a : tcgint;const ref : treference);virtual;
  196. procedure a_load_const_loc(list : TAsmList;tosize : tdef;a : tcgint;const loc : tlocation);virtual;
  197. procedure a_load_reg_ref(list : TAsmList;fromsize, tosize : tdef;register : tregister;const ref : treference);virtual;abstract;
  198. procedure a_load_reg_ref_unaligned(list : TAsmList;fromsize, tosize : tdef;register : tregister;const ref : treference);virtual;
  199. procedure a_load_reg_reg(list : TAsmList;fromsize, tosize : tdef;reg1,reg2 : tregister);virtual;abstract;
  200. procedure a_load_reg_loc(list : TAsmList;fromsize, tosize : tdef;reg : tregister;const loc: tlocation);virtual;
  201. procedure a_load_ref_reg(list : TAsmList;fromsize, tosize : tdef;const ref : treference;register : tregister);virtual;abstract;
  202. procedure a_load_ref_reg_unaligned(list : TAsmList;fromsize, tosize : tdef;const ref : treference;register : tregister);virtual;
  203. procedure a_load_ref_ref(list : TAsmList;fromsize, tosize : tdef;const sref : treference;const dref : treference);virtual;
  204. procedure a_load_loc_reg(list : TAsmList;fromsize, tosize : tdef; const loc: tlocation; reg : tregister);virtual;
  205. procedure a_load_loc_ref(list : TAsmList;fromsize, tosize: tdef; const loc: tlocation; const ref : treference);virtual;
  206. procedure a_load_loc_subsetreg(list : TAsmList;fromsize, tosubsetsize: tdef; const loc: tlocation; const sreg : tsubsetregister);virtual;
  207. procedure a_load_loc_subsetref(list : TAsmList;fromsize, tosubsetsize: tdef; const loc: tlocation; const sref : tsubsetreference);virtual;
  208. procedure a_loadaddr_ref_reg(list : TAsmList;fromsize, tosize : tdef;const ref : treference;r : tregister);virtual;abstract;
  209. { For subsetreg/ref, the def is the size of the packed element. The
  210. size of the register that holds the data is a tcgsize, and hence
  211. always must be an orddef of the corresponding size in practice }
  212. procedure a_load_subsetreg_reg(list : TAsmList; subsetsize, tosize: tdef; const sreg: tsubsetregister; destreg: tregister); virtual;
  213. procedure a_load_reg_subsetreg(list : TAsmList; fromsize, tosubsetsize: tdef; fromreg: tregister; const sreg: tsubsetregister); virtual;
  214. procedure a_load_subsetreg_subsetreg(list: TAsmlist; fromsubsetsize, tosubsetsize : tdef; const fromsreg, tosreg: tsubsetregister); virtual;
  215. procedure a_load_subsetreg_ref(list : TAsmList; fromsubsetsize, tosize: tdef; const sreg: tsubsetregister; const destref: treference); virtual;
  216. procedure a_load_ref_subsetreg(list : TAsmList; fromsize, tosubsetsize: tdef; const fromref: treference; const sreg: tsubsetregister); virtual;
  217. procedure a_load_const_subsetreg(list: TAsmlist; tosubsetsize: tdef; a: tcgint; const sreg: tsubsetregister); virtual;
  218. procedure a_load_subsetreg_loc(list: TAsmlist; fromsubsetsize, tosize: tdef; const sreg: tsubsetregister; const loc: tlocation); virtual;
  219. procedure a_load_subsetref_reg(list : TAsmList; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; destreg: tregister); virtual;
  220. procedure a_load_reg_subsetref(list : TAsmList; fromsize, tosubsetsize: tdef; fromreg: tregister; const sref: tsubsetreference); virtual;
  221. procedure a_load_subsetref_subsetref(list: TAsmlist; fromsubsetsize, tosubsetsize : tdef; const fromsref, tosref: tsubsetreference); virtual;
  222. procedure a_load_subsetref_ref(list : TAsmList; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; const destref: treference); virtual;
  223. procedure a_load_ref_subsetref(list : TAsmList; fromsize, tosubsetsize: tdef; const fromref: treference; const sref: tsubsetreference); virtual;
  224. procedure a_load_const_subsetref(list: TAsmlist; tosubsetsize: tdef; a: tcgint; const sref: tsubsetreference); virtual;
  225. procedure a_load_subsetref_loc(list: TAsmlist; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; const loc: tlocation); virtual;
  226. procedure a_load_subsetref_subsetreg(list: TAsmlist; fromsubsetsize, tosubsetsize : tdef; const fromsref: tsubsetreference; const tosreg: tsubsetregister); virtual;
  227. procedure a_load_subsetreg_subsetref(list: TAsmlist; fromsubsetsize, tosubsetsize : tdef; const fromsreg: tsubsetregister; const tosref: tsubsetreference); virtual;
  228. { bit test instructions }
  229. procedure a_bit_test_reg_reg_reg(list : TAsmList; bitnumbersize,valuesize,destsize: tdef;bitnumber,value,destreg: tregister); virtual;
  230. procedure a_bit_test_const_ref_reg(list: TAsmList; fromsize, destsize: tdef; bitnumber: aint; const ref: treference; destreg: tregister); virtual;
  231. procedure a_bit_test_const_reg_reg(list: TAsmList; setregsize, destsize: tdef; bitnumber: aint; setreg, destreg: tregister); virtual;
  232. procedure a_bit_test_const_subsetreg_reg(list: TAsmList; fromsubsetsize, destsize: tdef; bitnumber: aint; const setreg: tsubsetregister; destreg: tregister); virtual;
  233. procedure a_bit_test_reg_ref_reg(list: TAsmList; bitnumbersize, refsize, destsize: tdef; bitnumber: tregister; const ref: treference; destreg: tregister); virtual;
  234. procedure a_bit_test_reg_loc_reg(list: TAsmList; bitnumbersize, locsize, destsize: tdef; bitnumber: tregister; const loc: tlocation; destreg: tregister);virtual;
  235. procedure a_bit_test_const_loc_reg(list: TAsmList; locsize, destsize: tdef; bitnumber: aint; const loc: tlocation; destreg: tregister);virtual;
  236. { bit set/clear instructions }
  237. procedure a_bit_set_reg_reg(list : TAsmList; doset: boolean; bitnumbersize, destsize: tdef; bitnumber,dest: tregister); virtual;
  238. procedure a_bit_set_const_ref(list: TAsmList; doset: boolean;destsize: tdef; bitnumber: tcgint; const ref: treference); virtual;
  239. procedure a_bit_set_const_reg(list: TAsmList; doset: boolean; destsize: tdef; bitnumber: tcgint; destreg: tregister); virtual;
  240. procedure a_bit_set_const_subsetreg(list: TAsmList; doset: boolean; destsize: tdef; bitnumber: tcgint; const destreg: tsubsetregister); virtual;
  241. procedure a_bit_set_reg_ref(list: TAsmList; doset: boolean; fromsize, tosize: tdef; bitnumber: tregister; const ref: treference); virtual;
  242. procedure a_bit_set_reg_loc(list: TAsmList; doset: boolean; regsize, tosize: tdef; bitnumber: tregister; const loc: tlocation);virtual;
  243. procedure a_bit_set_const_loc(list: TAsmList; doset: boolean; tosize: tdef; bitnumber: tcgint; const loc: tlocation);virtual;
  244. function get_call_result_cgpara(pd: tabstractprocdef; forceresdef: tdef): tcgpara; virtual;
  245. protected
  246. procedure get_subsetref_load_info(const sref: tsubsetreference; out loadsize: torddef; out extra_load: boolean);
  247. procedure a_load_subsetref_regs_noindex(list: TAsmList; subsetsize: tdef; loadbitsize: byte; const sref: tsubsetreference; valuereg, extra_value_reg: tregister); virtual;
  248. procedure a_load_subsetref_regs_index(list: TAsmList; subsetsize: tdef; loadbitsize: byte; const sref: tsubsetreference; valuereg: tregister); virtual;
  249. procedure a_load_regconst_subsetref_intern(list : TAsmList; fromsize, subsetsize: tdef; fromreg: tregister; const sref: tsubsetreference; slopt: tsubsetloadopt); virtual;
  250. procedure a_load_regconst_subsetreg_intern(list : TAsmList; fromsize, subsetsize: tdef; fromreg: tregister; const sreg: tsubsetregister; slopt: tsubsetloadopt); virtual;
  251. { return a subsetref that represents bit "bitnumber" in ref, if ref
  252. has the type "refdef". The subsetref must be addressable via
  253. (unsigned) 8 bit access, unless all the *_bit_* methods are
  254. overloaded and use something else. }
  255. function get_bit_const_ref_sref(bitnumber: tcgint; refdef: tdef; const ref: treference): tsubsetreference;
  256. function get_bit_const_reg_sreg(setregsize: tdef; bitnumber: tcgint; setreg: tregister): tsubsetregister;
  257. function get_bit_reg_ref_sref(list: TAsmList; bitnumbersize, refsize: tdef; bitnumber: tregister; const ref: treference): tsubsetreference;
  258. public
  259. { bit scan instructions (still need transformation to thlcgobj) }
  260. procedure a_bit_scan_reg_reg(list: TAsmList; reverse: boolean; srcsize, dstsize: tdef; src, dst: tregister); virtual; abstract;
  261. { fpu move instructions }
  262. procedure a_loadfpu_reg_reg(list: TAsmList; fromsize, tosize: tdef; reg1, reg2: tregister); virtual; abstract;
  263. procedure a_loadfpu_ref_reg(list: TAsmList; fromsize, tosize: tdef; const ref: treference; reg: tregister); virtual; abstract;
  264. procedure a_loadfpu_reg_ref(list: TAsmList; fromsize, tosize: tdef; reg: tregister; const ref: treference); virtual; abstract;
  265. procedure a_loadfpu_ref_ref(list: TAsmList; fromsize, tosize: tdef; const ref1,ref2: treference);virtual;
  266. procedure a_loadfpu_loc_reg(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const reg: tregister);virtual;
  267. procedure a_loadfpu_loc_ref(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const ref: treference);virtual;
  268. procedure a_loadfpu_reg_loc(list: TAsmList; fromsize, tosize: tdef; const reg: tregister; const loc: tlocation);virtual;
  269. procedure a_loadfpu_reg_cgpara(list : TAsmList;fromsize: tdef;const r : tregister;const cgpara : TCGPara);virtual;
  270. procedure a_loadfpu_ref_cgpara(list : TAsmList;fromsize : tdef;const ref : treference;const cgpara : TCGPara);virtual;
  271. { vector register move instructions }
  272. procedure a_loadmm_reg_reg(list: TAsmList; fromsize, tosize: tdef;reg1, reg2: tregister;shuffle : pmmshuffle); virtual; abstract;
  273. procedure a_loadmm_ref_reg(list: TAsmList; fromsize, tosize: tdef;const ref: treference; reg: tregister;shuffle : pmmshuffle); virtual; abstract;
  274. procedure a_loadmm_reg_ref(list: TAsmList; fromsize, tosize: tdef;reg: tregister; const ref: treference;shuffle : pmmshuffle); virtual; abstract;
  275. procedure a_loadmm_ref_ref(list: TAsmList; fromsize, tosize: tdef; const fromref, toref: treference; shuffle: pmmshuffle); virtual;
  276. { required for subsetreg/ref; still tcgsize rather than tdef because of reason mentioned above }
  277. procedure a_loadmm_loc_reg(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const reg: tregister; shuffle : pmmshuffle);virtual;
  278. procedure a_loadmm_reg_loc(list: TAsmList; fromsize, tosize: tdef; const reg: tregister; const loc: tlocation;shuffle : pmmshuffle);virtual;
  279. procedure a_loadmm_loc_ref(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const ref: treference; shuffle : pmmshuffle);virtual;
  280. procedure a_loadmm_reg_cgpara(list: TAsmList; fromsize: tdef; reg: tregister;const cgpara : TCGPara;shuffle : pmmshuffle); virtual;
  281. procedure a_loadmm_ref_cgpara(list: TAsmList; fromsize: tdef; const ref: treference;const cgpara : TCGPara;shuffle : pmmshuffle); virtual;
  282. procedure a_loadmm_loc_cgpara(list: TAsmList; fromsize: tdef; const loc: tlocation; const cgpara : TCGPara;shuffle : pmmshuffle); virtual;
  283. procedure a_opmm_reg_reg(list: TAsmList; Op: TOpCG; size : tdef;src,dst: tregister;shuffle : pmmshuffle); virtual; abstract;
  284. procedure a_opmm_ref_reg(list: TAsmList; Op: TOpCG; size : tdef;const ref: treference; reg: tregister;shuffle : pmmshuffle); virtual;
  285. procedure a_opmm_loc_reg(list: TAsmList; Op: TOpCG; size : tdef;const loc: tlocation; reg: tregister;shuffle : pmmshuffle); virtual;
  286. procedure a_opmm_reg_ref(list: TAsmList; Op: TOpCG; size : tdef;reg: tregister;const ref: treference; shuffle : pmmshuffle); virtual;
  287. { requires a temp that is interpreted in two different ways, and we
  288. don't have a way (yet) to tag a treference with tdef information so
  289. targets like LLVM can insert the necessary bitcast
  290. }
  291. procedure a_loadmm_intreg_reg(list: TAsmList; fromsize, tosize : tdef; intreg, mmreg: tregister; shuffle: pmmshuffle); virtual; abstract;
  292. procedure a_loadmm_reg_intreg(list: TAsmList; fromsize, tosize : tdef; mmreg, intreg: tregister; shuffle : pmmshuffle); virtual; abstract;
  293. { basic arithmetic operations }
  294. { note: for operators which require only one argument (not, neg), use }
  295. { the op_reg_reg, op_reg_ref or op_reg_loc methods and keep in mind }
  296. { that in this case the *second* operand is used as both source and }
  297. { destination (JM) }
  298. procedure a_op_const_reg(list : TAsmList; Op: TOpCG; size: tdef; a: tcgint; reg: TRegister); virtual; abstract;
  299. procedure a_op_const_ref(list : TAsmList; Op: TOpCG; size: tdef; a: tcgint; const ref: TReference); virtual;
  300. procedure a_op_const_subsetreg(list : TAsmList; Op : TOpCG; size, subsetsize : tdef; a : tcgint; const sreg: tsubsetregister); virtual;
  301. procedure a_op_const_subsetref(list : TAsmList; Op : TOpCG; size, subsetsize : tdef; a : tcgint; const sref: tsubsetreference); virtual;
  302. procedure a_op_const_loc(list : TAsmList; Op: TOpCG; size: tdef; a: tcgint; const loc: tlocation);virtual;
  303. procedure a_op_reg_reg(list : TAsmList; Op: TOpCG; size: tdef; reg1, reg2: TRegister); virtual; abstract;
  304. procedure a_op_reg_ref(list : TAsmList; Op: TOpCG; size: tdef; reg: TRegister; const ref: TReference); virtual;
  305. procedure a_op_ref_reg(list : TAsmList; Op: TOpCG; size: tdef; const ref: TReference; reg: TRegister); virtual;
  306. procedure a_op_reg_subsetreg(list: TAsmList; Op: TOpCG; opsize, destsubsetsize: tdef; reg: TRegister; const sreg: tsubsetregister); virtual;
  307. procedure a_op_reg_subsetref(list: TAsmList; Op: TOpCG; opsize, destsubsetsize: tdef; reg: TRegister; const sref: tsubsetreference); virtual;
  308. procedure a_op_reg_loc(list : TAsmList; Op: TOpCG; size: tdef; reg: tregister; const loc: tlocation);virtual;
  309. procedure a_op_ref_loc(list : TAsmList; Op: TOpCG; size: tdef; const ref: TReference; const loc: tlocation);virtual;
  310. { trinary operations for processors that support them, 'emulated' }
  311. { on others. None with "ref" arguments since I don't think there }
  312. { are any processors that support it (JM) }
  313. procedure a_op_const_reg_reg(list: TAsmList; op: TOpCg; size: tdef; a: tcgint; src, dst: tregister); virtual;
  314. procedure a_op_reg_reg_reg(list: TAsmList; op: TOpCg; size: tdef; src1, src2, dst: tregister); virtual;
  315. procedure a_op_const_reg_reg_checkoverflow(list: TAsmList; op: TOpCg; size: tdef; a: tcgint; src, dst: tregister;setflags : boolean;var ovloc : tlocation); virtual;
  316. procedure a_op_reg_reg_reg_checkoverflow(list: TAsmList; op: TOpCg; size: tdef; src1, src2, dst: tregister;setflags : boolean;var ovloc : tlocation); virtual;
  317. { comparison operations }
  318. procedure a_cmp_const_reg_label(list : TAsmList;size : tdef;cmp_op : topcmp;a : tcgint;reg : tregister;
  319. l : tasmlabel);virtual;
  320. procedure a_cmp_const_ref_label(list : TAsmList;size : tdef;cmp_op : topcmp;a : tcgint;const ref : treference;
  321. l : tasmlabel); virtual;
  322. procedure a_cmp_const_loc_label(list: TAsmList; size: tdef;cmp_op: topcmp; a: tcgint; const loc: tlocation;
  323. l : tasmlabel);virtual;
  324. procedure a_cmp_reg_reg_label(list : TAsmList;size : tdef;cmp_op : topcmp;reg1,reg2 : tregister;l : tasmlabel); virtual; abstract;
  325. procedure a_cmp_ref_reg_label(list : TAsmList;size : tdef;cmp_op : topcmp; const ref: treference; reg : tregister; l : tasmlabel); virtual;
  326. procedure a_cmp_reg_ref_label(list : TAsmList;size : tdef;cmp_op : topcmp;reg : tregister; const ref: treference; l : tasmlabel); virtual;
  327. procedure a_cmp_subsetreg_reg_label(list: TAsmList; fromsubsetsize, cmpsize: tdef; cmp_op: topcmp; const sreg: tsubsetregister; reg: tregister; l: tasmlabel); virtual;
  328. procedure a_cmp_subsetref_reg_label(list: TAsmList; fromsubsetsize, cmpsize: tdef; cmp_op: topcmp; const sref: tsubsetreference; reg: tregister; l: tasmlabel); virtual;
  329. procedure a_cmp_loc_reg_label(list : TAsmList;size : tdef;cmp_op : topcmp; const loc: tlocation; reg : tregister; l : tasmlabel);virtual;
  330. procedure a_cmp_reg_loc_label(list : TAsmList;size : tdef;cmp_op : topcmp; reg: tregister; const loc: tlocation; l : tasmlabel);
  331. procedure a_cmp_ref_loc_label(list: TAsmList; size: tdef;cmp_op: topcmp; const ref: treference; const loc: tlocation; l : tasmlabel);virtual;
  332. procedure a_jmp_always(list : TAsmList;l: tasmlabel); virtual;abstract;
  333. {$ifdef cpuflags}
  334. procedure a_jmp_flags(list : TAsmList;const f : TResFlags;l: tasmlabel); virtual; abstract;
  335. {# Depending on the value to check in the flags, either sets the register reg to one (if the flag is set)
  336. or zero (if the flag is cleared). The size parameter indicates the destination size register.
  337. }
  338. procedure g_flags2reg(list: TAsmList; size: tdef; const f: tresflags; reg: TRegister); virtual; abstract;
  339. procedure g_flags2ref(list: TAsmList; size: tdef; const f: tresflags; const ref:TReference); virtual; abstract;
  340. {$endif cpuflags}
  341. {#
  342. This routine is used in exception management nodes. It should
  343. save the exception reason currently in the reg. The
  344. save should be done either to a temp (pointed to by href).
  345. or on the stack (pushing the value on the stack).
  346. }
  347. procedure g_exception_reason_save(list : TAsmList; fromsize, tosize: tdef; reg: tregister; const href : treference);virtual;
  348. {#
  349. This routine is used in exception management nodes. It should
  350. save the exception reason constant. The
  351. save should be done either to a temp (pointed to by href).
  352. or on the stack (pushing the value on the stack).
  353. The size of the value to save is OS_S32. The default version
  354. saves the exception reason to a temp. memory area.
  355. }
  356. procedure g_exception_reason_save_const(list: TAsmList; size: tdef; a: tcgint; const href: treference);virtual;
  357. {#
  358. This routine is used in exception management nodes. It should
  359. load the exception reason to reg. The saved value
  360. should either be in the temp. area (pointed to by href , href should
  361. *NOT* be freed) or on the stack (the value should be popped).
  362. The size of the value to save is OS_S32. The default version
  363. saves the exception reason to a temp. memory area.
  364. }
  365. procedure g_exception_reason_load(list : TAsmList; fromsize, tosize: tdef; const href : treference; reg: tregister);virtual;
  366. {#
  367. This routine is called when the current exception reason can be
  368. discarded. On platforms that use push/pop, it causes the current
  369. value to be popped. On other platforms it doesn't do anything
  370. }
  371. procedure g_exception_reason_discard(list : TAsmList; size: tdef; href: treference); virtual;
  372. {#
  373. Call when the current location should never be reached
  374. }
  375. procedure g_unreachable(list: TAsmList); virtual;
  376. procedure g_maybe_testself(list : TAsmList; selftype: tdef; reg:tregister);
  377. // procedure g_maybe_testvmt(list : TAsmList;reg:tregister;objdef:tobjectdef);
  378. {# This should emit the opcode to copy len bytes from the source
  379. to destination.
  380. It must be overridden for each new target processor.
  381. @param(source Source reference of copy)
  382. @param(dest Destination reference of copy)
  383. }
  384. procedure g_concatcopy(list : TAsmList;size: tdef; const source,dest : treference);virtual;
  385. {# This should emit the opcode to copy len bytes from the an unaligned source
  386. to destination.
  387. It must be overridden for each new target processor.
  388. @param(source Source reference of copy)
  389. @param(dest Destination reference of copy)
  390. }
  391. procedure g_concatcopy_unaligned(list : TAsmList;size: tdef; const source,dest : treference);virtual;
  392. {# This should emit the opcode to a shortrstring from the source
  393. to destination.
  394. @param(source Source reference of copy)
  395. @param(dest Destination reference of copy)
  396. }
  397. procedure g_copyshortstring(list : TAsmList;const source,dest : treference;strdef:tstringdef);virtual;
  398. procedure g_copyvariant(list : TAsmList;const source,dest : treference;vardef:tvariantdef);virtual;
  399. procedure g_incrrefcount(list : TAsmList;t: tdef; const ref: treference);virtual;
  400. procedure g_initialize(list : TAsmList;t : tdef;const ref : treference);virtual;
  401. procedure g_finalize(list : TAsmList;t : tdef;const ref : treference);virtual;
  402. procedure g_array_rtti_helper(list: TAsmList; t: tdef; const ref: treference; const highloc: tlocation;
  403. const name: string);virtual;
  404. protected
  405. { helper called by g_incrrefcount, g_initialize, g_finalize and
  406. g_array_rtti_helper to determine whether the RTTI symbol representing
  407. t needs to be loaded using the indirect symbol }
  408. function def_needs_indirect(t:tdef):boolean;
  409. public
  410. {# Generates range checking code. It is to note
  411. that this routine does not need to be overridden,
  412. as it takes care of everything.
  413. @param(p Node which contains the value to check)
  414. @param(todef Type definition of node to range check)
  415. }
  416. procedure g_rangecheck(list: TAsmList; const l:tlocation; fromdef,todef: tdef); virtual;
  417. {# Generates overflow checking code for a node }
  418. procedure g_overflowcheck(list: TAsmList; const Loc:tlocation; def:tdef); virtual; abstract;
  419. procedure g_overflowCheck_loc(List:TAsmList;const Loc:TLocation;def:TDef;var ovloc : tlocation);virtual; abstract;
  420. procedure g_copyvaluepara_openarray(list : TAsmList;const ref:treference;const lenloc:tlocation;arrdef: tarraydef;destreg:tregister);virtual;
  421. procedure g_releasevaluepara_openarray(list : TAsmList;arrdef: tarraydef;const l:tlocation);virtual;
  422. {# Emits instructions when compilation is done in profile
  423. mode (this is set as a command line option). The default
  424. behavior does nothing, should be overridden as required.
  425. }
  426. procedure g_profilecode(list : TAsmList);virtual;
  427. {# Emits instruction for allocating @var(size) bytes at the stackpointer
  428. @param(size Number of bytes to allocate)
  429. }
  430. procedure g_stackpointer_alloc(list : TAsmList;size : longint);virtual; abstract;
  431. {# Emits instruction for allocating the locals in entry
  432. code of a routine. This is one of the first
  433. routine called in @var(genentrycode).
  434. @param(localsize Number of bytes to allocate as locals)
  435. }
  436. procedure g_proc_entry(list : TAsmList;localsize : longint;nostackframe:boolean);virtual; abstract;
  437. {# Emits instructions for returning from a subroutine.
  438. Should also restore the framepointer and stack.
  439. @param(parasize Number of bytes of parameters to deallocate from stack)
  440. }
  441. procedure g_proc_exit(list : TAsmList;parasize:longint;nostackframe:boolean);virtual; abstract;
  442. procedure g_intf_wrapper(list: TAsmList; procdef: tprocdef; const labelname: string; ioffset: longint);virtual; abstract;
  443. procedure g_adjust_self_value(list:TAsmList;procdef: tprocdef;ioffset: aint);virtual; abstract;
  444. protected
  445. procedure a_jmp_external_name(list: TAsmList; const externalname: TSymStr); virtual;
  446. public
  447. { generate a stub which only purpose is to pass control the given external method,
  448. setting up any additional environment before doing so (if required).
  449. The default implementation issues a jump instruction to the external name. }
  450. procedure g_external_wrapper(list : TAsmList; procdef: tprocdef; const wrappername, externalname: string; global: boolean); virtual;
  451. protected
  452. procedure g_allocload_reg_reg(list: TAsmList; regsize: tdef; const fromreg: tregister; out toreg: tregister; regtyp: tregistertype);
  453. public
  454. { create "safe copy" of a tlocation that can be used later: all
  455. registers used in the tlocation are copied to new ones, so that
  456. even if the original ones change, things stay the same (except if
  457. the original location was already a register, then the register is
  458. kept). Must only be used on lvalue locations.
  459. It's intended as some kind of replacement for a_loadaddr_ref_reg()
  460. for targets without pointers. }
  461. procedure g_reference_loc(list: TAsmList; def: tdef; const fromloc: tlocation; out toloc: tlocation); virtual;
  462. { typecasts the pointer in reg to a new pointer. By default it does
  463. nothing, only required for type-aware platforms like LLVM.
  464. fromdef/todef are not typed as pointerdef, because they may also be
  465. a procvardef or classrefdef. Replaces reg with a new register if
  466. necessary }
  467. procedure g_ptrtypecast_reg(list: TAsmList; fromdef, todef: tdef; var reg: tregister); virtual;
  468. { same but for a treference (considers the reference itself, not the
  469. value stored at that place in memory). Replaces ref with a new
  470. reference if necessary. fromdef needs to be a pointerdef because
  471. it may have to be passed as fromdef to a_loadaddr_ref_reg, which
  472. needs the "pointeddef" of fromdef }
  473. procedure g_ptrtypecast_ref(list: TAsmList; fromdef, todef: tdef; var ref: treference); virtual;
  474. { update a reference pointing to the start address of a record/object/
  475. class (contents) so it refers to the indicated field }
  476. procedure g_set_addr_nonbitpacked_field_ref(list: TAsmList; recdef: tabstractrecorddef; field: tfieldvarsym; var recref: treference); virtual;
  477. { load a register/constant into a record field by name }
  478. protected
  479. procedure g_setup_load_field_by_name(list: TAsmList; recdef: trecorddef; const name: TIDString; const recref: treference; out fref: treference; out fielddef: tdef);
  480. public
  481. procedure g_load_reg_field_by_name(list: TAsmList; regsize: tdef; recdef: trecorddef; reg: tregister; const name: TIDString; const recref: treference);
  482. procedure g_load_const_field_by_name(list: TAsmList; recdef: trecorddef; a: tcgint; const name: TIDString; const recref: treference);
  483. { laod a named field into a register }
  484. procedure g_load_field_reg_by_name(list: TAsmList; recdef: trecorddef; regsize: tdef; const name: TIDString; const recref: treference; reg: tregister);
  485. { same as above, but allocates the register and determines the def
  486. based on the type of the field }
  487. procedure g_force_field_reg_by_name(list: TAsmList; recdef: trecorddef; const name: TIDString; const recref: treference; out regdef: tdef; out reg: tregister);
  488. { routines migrated from ncgutil }
  489. procedure location_force_reg(list:TAsmList;var l:tlocation;src_size,dst_size:tdef;maybeconst:boolean);virtual;
  490. procedure location_force_fpureg(list:TAsmList;var l: tlocation;size: tdef;maybeconst:boolean);virtual;
  491. procedure location_force_mem(list:TAsmList;var l:tlocation;size:tdef);virtual;
  492. procedure location_force_mmregscalar(list:TAsmList;var l: tlocation;var size:tdef;maybeconst:boolean);virtual;
  493. // procedure location_force_mmreg(list:TAsmList;var l: tlocation;size:tdef;maybeconst:boolean);virtual;abstract;
  494. { Retrieve the location of the data pointed to in location l, when the location is
  495. a register it is expected to contain the address of the data }
  496. procedure location_get_data_ref(list:TAsmList;def: tdef; const l:tlocation;var ref:treference;loadref:boolean; alignment: longint);virtual;
  497. { if p is a boolean expression, turns p.location into a LOC_JUMP with
  498. jumps to generated true and false labels; otherwise internalerrors }
  499. procedure maketojumpbool(list: TAsmList; p: tnode);
  500. { same as above, but using predefined true/false labels instead of
  501. by generating new ones }
  502. procedure maketojumpboollabels(list: TAsmList; p: tnode; truelabel, falselabel: tasmlabel);virtual;
  503. { if the result of n is a LOC_C(..)REGISTER, try to find the corresponding
  504. loadn and change its location to a new register (= SSA). In case reload
  505. is true, transfer the old to the new register }
  506. procedure maybe_change_load_node_reg(list: TAsmList; var n: tnode; reload: boolean); virtual;
  507. private
  508. function do_replace_node_regs(var n: tnode; para: pointer): foreachnoderesult; virtual;
  509. public
  510. procedure gen_proc_symbol(list:TAsmList);virtual;
  511. procedure gen_proc_symbol_end(list:TAsmList);virtual;
  512. procedure handle_external_proc(list: TAsmList; pd: tprocdef; const importname: TSymStr); virtual;
  513. procedure gen_initialize_code(list:TAsmList);virtual;
  514. procedure gen_finalize_code(list:TAsmList);virtual;
  515. procedure gen_entry_code(list:TAsmList);virtual;
  516. procedure gen_exit_code(list:TAsmList);virtual;
  517. protected
  518. { helpers called by gen_initialize_code/gen_finalize_code }
  519. procedure inittempvariables(list:TAsmList);virtual;
  520. procedure finalizetempvariables(list:TAsmList);virtual;
  521. procedure initialize_regvars(p:TObject;arg:pointer);virtual;
  522. { generates the code for decrementing the reference count of parameters }
  523. procedure final_paras(p:TObject;arg:pointer);
  524. public
  525. { helper called by gen_alloc_symtable }
  526. procedure varsym_set_localloc(list: TAsmList; vs:tabstractnormalvarsym); virtual;
  527. { helper called by gen_alloc_symtable }
  528. procedure paravarsym_set_initialloc_to_paraloc(vs: tparavarsym); virtual;
  529. procedure gen_load_para_value(list:TAsmList);virtual;
  530. { helpers called by gen_load_para_value }
  531. procedure g_copyvalueparas(p:TObject;arg:pointer);virtual;
  532. protected
  533. procedure gen_loadfpu_loc_cgpara(list: TAsmList; size: tdef; const l: tlocation;const cgpara: tcgpara;locintsize: longint);virtual;
  534. procedure init_paras(p:TObject;arg:pointer);
  535. protected
  536. { Some targets have to put "something" in the function result
  537. location if it's not initialised by the Pascal code, e.g.
  538. stack-based architectures. By default it does nothing }
  539. procedure gen_load_uninitialized_function_result(list: TAsmList; pd: tprocdef; resdef: tdef; const resloc: tcgpara);virtual;
  540. procedure gen_load_loc_function_result(list: TAsmList; vardef: tdef; const l: tlocation);virtual;
  541. public
  542. { load a tlocation into a cgpara }
  543. procedure gen_load_loc_cgpara(list: TAsmList; vardef: tdef; const l: tlocation; const cgpara: tcgpara);virtual;
  544. { load a cgpara into a tlocation }
  545. procedure gen_load_cgpara_loc(list: TAsmList; vardef: tdef; const para: TCGPara; var destloc: tlocation; reusepara: boolean);virtual;
  546. { load the function return value into the ABI-defined function return location }
  547. procedure gen_load_return_value(list:TAsmList);virtual;
  548. { extras refactored from other units }
  549. procedure gen_stack_check_size_para(list:TAsmList); virtual;
  550. procedure gen_stack_check_call(list:TAsmList); virtual;
  551. { queue the code/data generated for a procedure for writing out to
  552. the assembler/object file }
  553. procedure record_generated_code_for_procdef(pd: tprocdef; code, data: TAsmList); virtual;
  554. { generate a call to a routine in the system unit }
  555. function g_call_system_proc(list: TAsmList; const procname: string; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  556. function g_call_system_proc(list: TAsmList; pd: tprocdef; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  557. protected
  558. function g_call_system_proc_intern(list: TAsmList; pd: tprocdef; const paras: array of pcgpara; forceresdef: tdef): tcgpara; virtual;
  559. public
  560. { Generate code to exit an unwind-protected region. The default implementation
  561. produces a simple jump to destination label. }
  562. procedure g_local_unwind(list: TAsmList; l: TAsmLabel);virtual;abstract;
  563. end;
  564. thlcgobjclass = class of thlcgobj;
  565. var
  566. {# Main high level code generator class }
  567. hlcg : thlcgobj;
  568. { class type of high level code generator class (also valid when hlcg is
  569. nil, in order to be able to call its virtual class methods) }
  570. chlcgobj: thlcgobjclass;
  571. create_hlcodegen: TProcedure;
  572. procedure destroy_hlcodegen;
  573. implementation
  574. uses
  575. globals,systems,
  576. fmodule,
  577. verbose,defutil,paramgr,
  578. symtable,
  579. nbas,ncon,nld,ncgrtti,pass_2,
  580. cgobj,cutils,procinfo,
  581. {$ifdef x86}
  582. cgx86,
  583. {$endif x86}
  584. ncgutil;
  585. procedure destroy_hlcodegen;
  586. begin
  587. hlcg.free;
  588. hlcg:=nil;
  589. destroy_codegen;
  590. end;
  591. { thlcgobj }
  592. constructor thlcgobj.create;
  593. begin
  594. end;
  595. procedure thlcgobj.init_register_allocators;
  596. begin
  597. cg.init_register_allocators;
  598. end;
  599. procedure thlcgobj.done_register_allocators;
  600. begin
  601. cg.done_register_allocators;
  602. end;
  603. procedure thlcgobj.set_regalloc_live_range_direction(dir: TRADirection);
  604. begin
  605. cg.set_regalloc_live_range_direction(dir);
  606. end;
  607. function thlcgobj.getintregister(list: TAsmList; size: tdef): Tregister;
  608. begin
  609. result:=cg.getintregister(list,def_cgsize(size));
  610. end;
  611. function thlcgobj.getaddressregister(list: TAsmList; size: tdef): Tregister;
  612. begin
  613. result:=cg.getaddressregister(list);
  614. end;
  615. function thlcgobj.getfpuregister(list: TAsmList; size: tdef): Tregister;
  616. begin
  617. result:=cg.getfpuregister(list,def_cgsize(size));
  618. end;
  619. function thlcgobj.getmmregister(list: TAsmList; size: tdef): Tregister;
  620. begin
  621. result:=cg.getmmregister(list,def_cgsize(size));
  622. end;
  623. function thlcgobj.getflagregister(list: TAsmList; size: tdef): Tregister;
  624. begin
  625. result:=cg.getflagregister(list,def_cgsize(size));
  626. end;
  627. function thlcgobj.gettempregister(list: TAsmList; size: tdef): Tregister;
  628. begin
  629. { doesn't make sense to try to translate this size to tcgsize, temps
  630. can have any size }
  631. result:=cg.gettempregister(list);
  632. end;
  633. function thlcgobj.getregisterfordef(list: TAsmList; size: tdef): Tregister;
  634. begin
  635. case def2regtyp(size) of
  636. R_INTREGISTER:
  637. result:=getintregister(list,size);
  638. R_ADDRESSREGISTER:
  639. result:=getaddressregister(list,size);
  640. R_FPUREGISTER:
  641. result:=getfpuregister(list,size);
  642. R_MMREGISTER:
  643. result:=getmmregister(list,size);
  644. else
  645. internalerror(2010122901);
  646. end;
  647. end;
  648. function thlcgobj.uses_registers(rt: Tregistertype): boolean;
  649. begin
  650. result:=cg.uses_registers(rt);
  651. end;
  652. procedure thlcgobj.getcpuregister(list: TAsmList; r: Tregister);
  653. begin
  654. cg.getcpuregister(list,r);
  655. end;
  656. procedure thlcgobj.ungetcpuregister(list: TAsmList; r: Tregister);
  657. begin
  658. cg.ungetcpuregister(list,r);
  659. end;
  660. procedure thlcgobj.alloccpuregisters(list: TAsmList; rt: Tregistertype; const r: Tcpuregisterset);
  661. begin
  662. cg.alloccpuregisters(list,rt,r);
  663. end;
  664. procedure thlcgobj.dealloccpuregisters(list: TAsmList; rt: Tregistertype; const r: Tcpuregisterset);
  665. begin
  666. cg.dealloccpuregisters(list,rt,r);
  667. end;
  668. procedure thlcgobj.allocallcpuregisters(list: TAsmList);
  669. begin
  670. cg.allocallcpuregisters(list);
  671. end;
  672. procedure thlcgobj.deallocallcpuregisters(list: TAsmList);
  673. begin
  674. cg.deallocallcpuregisters(list);
  675. end;
  676. procedure thlcgobj.do_register_allocation(list: TAsmList; headertai: tai);
  677. begin
  678. cg.do_register_allocation(list,headertai);
  679. end;
  680. procedure thlcgobj.translate_register(var reg: tregister);
  681. begin
  682. cg.translate_register(reg);
  683. end;
  684. class function thlcgobj.def2regtyp(def: tdef): tregistertype;
  685. begin
  686. case def.typ of
  687. enumdef,
  688. orddef,
  689. recorddef,
  690. setdef:
  691. result:=R_INTREGISTER;
  692. stringdef,
  693. pointerdef,
  694. classrefdef,
  695. objectdef,
  696. procvardef,
  697. procdef,
  698. arraydef,
  699. formaldef:
  700. result:=R_ADDRESSREGISTER;
  701. floatdef:
  702. if use_vectorfpu(def) then
  703. result:=R_MMREGISTER
  704. else if cs_fp_emulation in current_settings.moduleswitches then
  705. result:=R_INTREGISTER
  706. else
  707. result:=R_FPUREGISTER;
  708. filedef,
  709. variantdef,
  710. forwarddef,
  711. undefineddef:
  712. result:=R_INVALIDREGISTER;
  713. else
  714. internalerror(2010120506);
  715. end;
  716. end;
  717. procedure thlcgobj.reference_reset_base(var ref: treference; regsize: tdef;
  718. reg: tregister; offset: longint; temppos: treftemppos; alignment: longint; volatility: tvolatilityset);
  719. begin
  720. reference_reset(ref,alignment,volatility);
  721. ref.base:=reg;
  722. ref.offset:=offset;
  723. ref.temppos:=temppos;
  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,ctempposinvalid,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,ctempposinvalid,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. {$if defined(cpu64bitalu) or defined(cpuhighleveltarget)}
  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 defind(cpu64bitalu) or defined(cpuhighleveltarget)}
  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,ctempposinvalid,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.temppos,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,ctempposinvalid,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,ctempposinvalid,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.temppos,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,ctempposinvalid,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_unreachable(list: TAsmList);
  2866. begin
  2867. { nothing }
  2868. end;
  2869. procedure thlcgobj.g_maybe_testself(list: TAsmList; selftype: tdef; reg: tregister);
  2870. var
  2871. OKLabel : tasmlabel;
  2872. cgpara1 : TCGPara;
  2873. pd : tprocdef;
  2874. begin
  2875. if (cs_check_object in current_settings.localswitches) or
  2876. (cs_check_range in current_settings.localswitches) then
  2877. begin
  2878. pd:=search_system_proc('fpc_handleerror');
  2879. current_asmdata.getjumplabel(oklabel);
  2880. a_cmp_const_reg_label(list,selftype,OC_NE,0,reg,oklabel);
  2881. cgpara1.init;
  2882. paramanager.getintparaloc(list,pd,1,cgpara1);
  2883. a_load_const_cgpara(list,s32inttype,aint(210),cgpara1);
  2884. paramanager.freecgpara(list,cgpara1);
  2885. g_call_system_proc(list,pd,[@cgpara1],nil).resetiftemp;
  2886. cgpara1.done;
  2887. a_label(list,oklabel);
  2888. end;
  2889. end;
  2890. procedure thlcgobj.g_concatcopy(list: TAsmList; size: tdef; const source, dest: treference);
  2891. begin
  2892. if use_vectorfpu(size) then
  2893. a_loadmm_ref_ref(list,size,size,source,dest,mms_movescalar)
  2894. else if size.typ<>floatdef then
  2895. a_load_ref_ref(list,size,size,source,dest)
  2896. else
  2897. a_loadfpu_ref_ref(list,size,size,source,dest);
  2898. end;
  2899. procedure thlcgobj.g_concatcopy_unaligned(list: TAsmList; size: tdef; const source, dest: treference);
  2900. begin
  2901. g_concatcopy(list,size,source,dest);
  2902. end;
  2903. procedure thlcgobj.g_copyshortstring(list: TAsmList; const source, dest: treference; strdef: tstringdef);
  2904. var
  2905. cgpara1,cgpara2,cgpara3 : TCGPara;
  2906. pd : tprocdef;
  2907. begin
  2908. pd:=search_system_proc('fpc_shortstr_to_shortstr');
  2909. cgpara1.init;
  2910. cgpara2.init;
  2911. cgpara3.init;
  2912. paramanager.getintparaloc(list,pd,1,cgpara1);
  2913. paramanager.getintparaloc(list,pd,2,cgpara2);
  2914. paramanager.getintparaloc(list,pd,3,cgpara3);
  2915. if pd.is_pushleftright then
  2916. begin
  2917. a_loadaddr_ref_cgpara(list,strdef,dest,cgpara1);
  2918. a_load_const_cgpara(list,s32inttype,strdef.len,cgpara2);
  2919. a_loadaddr_ref_cgpara(list,strdef,source,cgpara3);
  2920. end
  2921. else
  2922. begin
  2923. a_loadaddr_ref_cgpara(list,strdef,source,cgpara3);
  2924. a_load_const_cgpara(list,s32inttype,strdef.len,cgpara2);
  2925. a_loadaddr_ref_cgpara(list,strdef,dest,cgpara1);
  2926. end;
  2927. paramanager.freecgpara(list,cgpara3);
  2928. paramanager.freecgpara(list,cgpara2);
  2929. paramanager.freecgpara(list,cgpara1);
  2930. g_call_system_proc(list,pd,[@cgpara1,@cgpara2,@cgpara3],nil).resetiftemp;
  2931. cgpara3.done;
  2932. cgpara2.done;
  2933. cgpara1.done;
  2934. end;
  2935. procedure thlcgobj.g_copyvariant(list: TAsmList; const source, dest: treference; vardef: tvariantdef);
  2936. var
  2937. cgpara1,cgpara2 : TCGPara;
  2938. pd : tprocdef;
  2939. begin
  2940. pd:=search_system_proc('fpc_variant_copy_overwrite');
  2941. cgpara1.init;
  2942. cgpara2.init;
  2943. paramanager.getintparaloc(list,pd,1,cgpara1);
  2944. paramanager.getintparaloc(list,pd,2,cgpara2);
  2945. if pd.is_pushleftright then
  2946. begin
  2947. a_loadaddr_ref_cgpara(list,vardef,source,cgpara1);
  2948. a_loadaddr_ref_cgpara(list,vardef,dest,cgpara2);
  2949. end
  2950. else
  2951. begin
  2952. a_loadaddr_ref_cgpara(list,vardef,dest,cgpara2);
  2953. a_loadaddr_ref_cgpara(list,vardef,source,cgpara1);
  2954. end;
  2955. paramanager.freecgpara(list,cgpara2);
  2956. paramanager.freecgpara(list,cgpara1);
  2957. g_call_system_proc(list,pd,[@cgpara1,@cgpara2],nil).resetiftemp;
  2958. cgpara2.done;
  2959. cgpara1.done;
  2960. end;
  2961. procedure thlcgobj.g_incrrefcount(list: TAsmList; t: tdef; const ref: treference);
  2962. var
  2963. href : treference;
  2964. incrfunc : string;
  2965. cgpara1,cgpara2 : TCGPara;
  2966. pd : tprocdef;
  2967. begin
  2968. cgpara1.init;
  2969. cgpara2.init;
  2970. if is_interfacecom_or_dispinterface(t) then
  2971. incrfunc:='fpc_intf_incr_ref'
  2972. else if is_ansistring(t) then
  2973. incrfunc:='fpc_ansistr_incr_ref'
  2974. else if is_widestring(t) then
  2975. incrfunc:='fpc_widestr_incr_ref'
  2976. else if is_unicodestring(t) then
  2977. incrfunc:='fpc_unicodestr_incr_ref'
  2978. else if is_dynamic_array(t) then
  2979. incrfunc:='fpc_dynarray_incr_ref'
  2980. else
  2981. incrfunc:='';
  2982. { call the special incr function or the generic addref }
  2983. if incrfunc<>'' then
  2984. begin
  2985. pd:=search_system_proc(incrfunc);
  2986. paramanager.getintparaloc(list,pd,1,cgpara1);
  2987. { widestrings aren't ref. counted on all platforms so we need the address
  2988. to create a real copy }
  2989. if is_widestring(t) then
  2990. a_loadaddr_ref_cgpara(list,t,ref,cgpara1)
  2991. else
  2992. { these functions get the pointer by value }
  2993. a_load_ref_cgpara(list,t,ref,cgpara1);
  2994. paramanager.freecgpara(list,cgpara1);
  2995. g_call_system_proc(list,pd,[@cgpara1],nil).resetiftemp;
  2996. end
  2997. else
  2998. begin
  2999. pd:=search_system_proc('fpc_addref');
  3000. paramanager.getintparaloc(list,pd,1,cgpara1);
  3001. paramanager.getintparaloc(list,pd,2,cgpara2);
  3002. if is_open_array(t) then
  3003. InternalError(201103054);
  3004. reference_reset_symbol(href,RTTIWriter.get_rtti_label(t,initrtti,def_needs_indirect(t)),0,sizeof(pint),[]);
  3005. if pd.is_pushleftright then
  3006. begin
  3007. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3008. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3009. end
  3010. else
  3011. begin
  3012. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3013. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3014. end;
  3015. paramanager.freecgpara(list,cgpara1);
  3016. paramanager.freecgpara(list,cgpara2);
  3017. g_call_system_proc(list,pd,[@cgpara1,@cgpara2],nil).resetiftemp;
  3018. end;
  3019. cgpara2.done;
  3020. cgpara1.done;
  3021. end;
  3022. procedure thlcgobj.g_initialize(list: TAsmList; t: tdef; const ref: treference);
  3023. var
  3024. href : treference;
  3025. cgpara1,cgpara2 : TCGPara;
  3026. pd : tprocdef;
  3027. begin
  3028. cgpara1.init;
  3029. cgpara2.init;
  3030. if is_ansistring(t) or
  3031. is_widestring(t) or
  3032. is_unicodestring(t) or
  3033. is_interfacecom_or_dispinterface(t) or
  3034. is_dynamic_array(t) then
  3035. a_load_const_ref(list,t,0,ref)
  3036. else if t.typ=variantdef then
  3037. begin
  3038. pd:=search_system_proc('fpc_variant_init');
  3039. paramanager.getintparaloc(list,pd,1,cgpara1);
  3040. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3041. paramanager.freecgpara(list,cgpara1);
  3042. g_call_system_proc(list,pd,[@cgpara1],nil).resetiftemp;
  3043. end
  3044. else
  3045. begin
  3046. if is_open_array(t) then
  3047. InternalError(201103052);
  3048. pd:=search_system_proc('fpc_initialize');
  3049. paramanager.getintparaloc(list,pd,1,cgpara1);
  3050. paramanager.getintparaloc(list,pd,2,cgpara2);
  3051. reference_reset_symbol(href,RTTIWriter.get_rtti_label(t,initrtti,def_needs_indirect(t)),0,sizeof(pint),[]);
  3052. if pd.is_pushleftright then
  3053. begin
  3054. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3055. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3056. end
  3057. else
  3058. begin
  3059. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3060. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3061. end;
  3062. paramanager.freecgpara(list,cgpara1);
  3063. paramanager.freecgpara(list,cgpara2);
  3064. g_call_system_proc(list,pd,[@cgpara1,@cgpara2],nil).resetiftemp;
  3065. end;
  3066. cgpara1.done;
  3067. cgpara2.done;
  3068. end;
  3069. procedure thlcgobj.g_finalize(list: TAsmList; t: tdef; const ref: treference);
  3070. var
  3071. href : treference;
  3072. cgpara1,cgpara2 : TCGPara;
  3073. pd : tprocdef;
  3074. decrfunc : string;
  3075. begin
  3076. if is_interfacecom_or_dispinterface(t) then
  3077. decrfunc:='fpc_intf_decr_ref'
  3078. else if is_ansistring(t) then
  3079. decrfunc:='fpc_ansistr_decr_ref'
  3080. else if is_widestring(t) then
  3081. decrfunc:='fpc_widestr_decr_ref'
  3082. else if is_unicodestring(t) then
  3083. decrfunc:='fpc_unicodestr_decr_ref'
  3084. else if t.typ=variantdef then
  3085. decrfunc:='fpc_variant_clear'
  3086. else
  3087. begin
  3088. cgpara1.init;
  3089. cgpara2.init;
  3090. if is_open_array(t) then
  3091. InternalError(201103051);
  3092. { fpc_finalize takes a pointer value parameter, fpc_dynarray_clear a
  3093. pointer var parameter }
  3094. if is_dynamic_array(t) then
  3095. pd:=search_system_proc('fpc_dynarray_clear')
  3096. else
  3097. pd:=search_system_proc('fpc_finalize');
  3098. paramanager.getintparaloc(list,pd,1,cgpara1);
  3099. paramanager.getintparaloc(list,pd,2,cgpara2);
  3100. reference_reset_symbol(href,RTTIWriter.get_rtti_label(t,initrtti,def_needs_indirect(t)),0,sizeof(pint),[]);
  3101. if pd.is_pushleftright then
  3102. begin
  3103. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3104. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3105. end
  3106. else
  3107. begin
  3108. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3109. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3110. end;
  3111. paramanager.freecgpara(list,cgpara1);
  3112. paramanager.freecgpara(list,cgpara2);
  3113. g_call_system_proc(list,pd,[@cgpara1,@cgpara2],nil).resetiftemp;
  3114. cgpara1.done;
  3115. cgpara2.done;
  3116. exit;
  3117. end;
  3118. pd:=search_system_proc(decrfunc);
  3119. cgpara1.init;
  3120. paramanager.getintparaloc(list,pd,1,cgpara1);
  3121. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3122. paramanager.freecgpara(list,cgpara1);
  3123. g_call_system_proc(list,pd,[@cgpara1],nil).resetiftemp;
  3124. cgpara1.done;
  3125. end;
  3126. procedure thlcgobj.g_array_rtti_helper(list: TAsmList; t: tdef; const ref: treference; const highloc: tlocation; const name: string);
  3127. var
  3128. cgpara1,cgpara2,cgpara3: TCGPara;
  3129. href: TReference;
  3130. hreg, lenreg: TRegister;
  3131. pd: tprocdef;
  3132. begin
  3133. cgpara1.init;
  3134. cgpara2.init;
  3135. cgpara3.init;
  3136. pd:=search_system_proc(name);
  3137. paramanager.getintparaloc(list,pd,1,cgpara1);
  3138. paramanager.getintparaloc(list,pd,2,cgpara2);
  3139. paramanager.getintparaloc(list,pd,3,cgpara3);
  3140. reference_reset_symbol(href,RTTIWriter.get_rtti_label(t,initrtti,def_needs_indirect(t)),0,sizeof(pint),[]);
  3141. { if calling convention is left to right, push parameters 1 and 2 }
  3142. if pd.is_pushleftright then
  3143. begin
  3144. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3145. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3146. end;
  3147. { push parameter 3 }
  3148. if highloc.loc=LOC_CONSTANT then
  3149. a_load_const_cgpara(list,sizesinttype,highloc.value+1,cgpara3)
  3150. else
  3151. begin
  3152. if highloc.loc in [LOC_REGISTER,LOC_CREGISTER] then
  3153. hreg:=highloc.register
  3154. else
  3155. begin
  3156. hreg:=getintregister(list,sizesinttype);
  3157. a_load_loc_reg(list,sizesinttype,sizesinttype,highloc,hreg);
  3158. end;
  3159. { increment, converts high(x) to length(x) }
  3160. lenreg:=getintregister(list,sizesinttype);
  3161. a_op_const_reg_reg(list,OP_ADD,sizesinttype,1,hreg,lenreg);
  3162. a_load_reg_cgpara(list,sizesinttype,lenreg,cgpara3);
  3163. end;
  3164. { if calling convention is right to left, push parameters 2 and 1 }
  3165. if not pd.is_pushleftright then
  3166. begin
  3167. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3168. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3169. end;
  3170. paramanager.freecgpara(list,cgpara1);
  3171. paramanager.freecgpara(list,cgpara2);
  3172. paramanager.freecgpara(list,cgpara3);
  3173. g_call_system_proc(list,pd,[@cgpara1,@cgpara2,@cgpara3],nil).resetiftemp;
  3174. cgpara3.done;
  3175. cgpara2.done;
  3176. cgpara1.done;
  3177. end;
  3178. function thlcgobj.def_needs_indirect(t:tdef):boolean;
  3179. begin
  3180. result:=(tf_supports_packages in target_info.flags) and
  3181. (target_info.system in systems_indirect_var_imports) and
  3182. (cs_imported_data in current_settings.localswitches) and
  3183. (findunitsymtable(t.owner).moduleid<>current_module.moduleid);
  3184. end;
  3185. procedure thlcgobj.g_rangecheck(list: TAsmList; const l: tlocation; fromdef, todef: tdef);
  3186. var
  3187. {$if defined(cpu64bitalu) or defined(cpu32bitalu)}
  3188. aintmax: aint;
  3189. {$else}
  3190. aintmax: longint;
  3191. {$endif}
  3192. neglabel : tasmlabel;
  3193. hreg : tregister;
  3194. lto,hto,
  3195. lfrom,hfrom : TConstExprInt;
  3196. fromsize, tosize: cardinal;
  3197. maxdef: tdef;
  3198. from_signed, to_signed: boolean;
  3199. begin
  3200. { range checking on and range checkable value? }
  3201. if not(cs_check_range in current_settings.localswitches) or
  3202. not(fromdef.typ in [orddef,enumdef]) or
  3203. { C-style booleans can't really fail range checks, }
  3204. { all values are always valid }
  3205. is_cbool(todef) then
  3206. exit;
  3207. {$if not defined(cpuhighleveltarget) and not defined(cpu64bitalu)}
  3208. { handle 64bit rangechecks separate for 32bit processors }
  3209. if is_64bit(fromdef) or is_64bit(todef) then
  3210. begin
  3211. cg64.g_rangecheck64(list,l,fromdef,todef);
  3212. exit;
  3213. end;
  3214. {$endif ndef cpuhighleveltarget and ndef cpu64bitalu}
  3215. { only check when assigning to scalar, subranges are different, }
  3216. { when todef=fromdef then the check is always generated }
  3217. getrange(fromdef,lfrom,hfrom);
  3218. getrange(todef,lto,hto);
  3219. from_signed := is_signed(fromdef);
  3220. to_signed := is_signed(todef);
  3221. { check the rangedef of the array, not the array itself }
  3222. { (only change now, since getrange needs the arraydef) }
  3223. if (todef.typ = arraydef) then
  3224. todef := tarraydef(todef).rangedef;
  3225. { no range check if from and to are equal and are both longint/dword }
  3226. { (if we have a 32bit processor) or int64/qword, since such }
  3227. { operations can at most cause overflows (JM) }
  3228. { Note that these checks are mostly processor independent, they only }
  3229. { have to be changed once we introduce 64bit subrange types }
  3230. {$if defined(cpuhighleveltarget) or defined(cpu64bitalu)}
  3231. if (fromdef=todef) and
  3232. (fromdef.typ=orddef) and
  3233. (((((torddef(fromdef).ordtype=s64bit) and
  3234. (lfrom = low(int64)) and
  3235. (hfrom = high(int64))) or
  3236. ((torddef(fromdef).ordtype=u64bit) and
  3237. (lfrom = low(qword)) and
  3238. (hfrom = high(qword))) or
  3239. ((torddef(fromdef).ordtype=scurrency) and
  3240. (lfrom = low(int64)) and
  3241. (hfrom = high(int64)))))) then
  3242. exit;
  3243. {$endif cpuhighleveltarget or cpu64bitalu}
  3244. { 32 bit operations are automatically widened to 64 bit on 64 bit addr
  3245. targets }
  3246. {$ifdef cpu32bitaddr}
  3247. if (fromdef = todef) and
  3248. (fromdef.typ=orddef) and
  3249. (((((torddef(fromdef).ordtype = s32bit) and
  3250. (lfrom = int64(low(longint))) and
  3251. (hfrom = int64(high(longint)))) or
  3252. ((torddef(fromdef).ordtype = u32bit) and
  3253. (lfrom = low(cardinal)) and
  3254. (hfrom = high(cardinal)))))) then
  3255. exit;
  3256. {$endif cpu32bitaddr}
  3257. { optimize some range checks away in safe cases }
  3258. fromsize := fromdef.size;
  3259. tosize := todef.size;
  3260. if ((from_signed = to_signed) or
  3261. (not from_signed)) and
  3262. (lto<=lfrom) and (hto>=hfrom) and
  3263. (fromsize <= tosize) then
  3264. begin
  3265. { if fromsize < tosize, and both have the same signed-ness or }
  3266. { fromdef is unsigned, then all bit patterns from fromdef are }
  3267. { valid for todef as well }
  3268. if (fromsize < tosize) then
  3269. exit;
  3270. if (fromsize = tosize) and
  3271. (from_signed = to_signed) then
  3272. { only optimize away if all bit patterns which fit in fromsize }
  3273. { are valid for the todef }
  3274. begin
  3275. {$ifopt Q+}
  3276. {$define overflowon}
  3277. {$Q-}
  3278. {$endif}
  3279. {$ifopt R+}
  3280. {$define rangeon}
  3281. {$R-}
  3282. {$endif}
  3283. if to_signed then
  3284. begin
  3285. { calculation of the low/high ranges must not overflow 64 bit
  3286. otherwise we end up comparing with zero for 64 bit data types on
  3287. 64 bit processors }
  3288. if (lto = (int64(-1) << (tosize * 8 - 1))) and
  3289. (hto = (-((int64(-1) << (tosize * 8 - 1))+1))) then
  3290. exit
  3291. end
  3292. else
  3293. begin
  3294. { calculation of the low/high ranges must not overflow 64 bit
  3295. otherwise we end up having all zeros for 64 bit data types on
  3296. 64 bit processors }
  3297. if (lto = 0) and
  3298. (qword(hto) = (qword(-1) >> (64-(tosize * 8))) ) then
  3299. exit
  3300. end;
  3301. {$ifdef overflowon}
  3302. {$Q+}
  3303. {$undef overflowon}
  3304. {$endif}
  3305. {$ifdef rangeon}
  3306. {$R+}
  3307. {$undef rangeon}
  3308. {$endif}
  3309. end
  3310. end;
  3311. { depending on the types involved, we perform the range check for 64 or
  3312. for 32 bit }
  3313. if fromsize=8 then
  3314. maxdef:=fromdef
  3315. else
  3316. maxdef:=todef;
  3317. {$if sizeof(aintmax) = 8}
  3318. if maxdef.size=8 then
  3319. aintmax:=high(int64)
  3320. else
  3321. {$endif}
  3322. begin
  3323. aintmax:=high(longint);
  3324. maxdef:=u32inttype;
  3325. end;
  3326. { generate the rangecheck code for the def where we are going to }
  3327. { store the result }
  3328. { use the trick that }
  3329. { a <= x <= b <=> 0 <= x-a <= b-a <=> unsigned(x-a) <= unsigned(b-a) }
  3330. { To be able to do that, we have to make sure however that either }
  3331. { fromdef and todef are both signed or unsigned, or that we leave }
  3332. { the parts < 0 and > maxlongint out }
  3333. if from_signed xor to_signed then
  3334. begin
  3335. if from_signed then
  3336. { from is signed, to is unsigned }
  3337. begin
  3338. { if high(from) < 0 -> always range error }
  3339. if (hfrom < 0) or
  3340. { if low(to) > maxlongint also range error }
  3341. (lto > aintmax) then
  3342. begin
  3343. g_call_system_proc(list,'fpc_rangeerror',[],nil).resetiftemp;
  3344. exit
  3345. end;
  3346. { from is signed and to is unsigned -> when looking at to }
  3347. { as an signed value, it must be < maxaint (otherwise }
  3348. { it will become negative, which is invalid since "to" is unsigned) }
  3349. if hto > aintmax then
  3350. hto := aintmax;
  3351. end
  3352. else
  3353. { from is unsigned, to is signed }
  3354. begin
  3355. if (lfrom > aintmax) or
  3356. (hto < 0) then
  3357. begin
  3358. g_call_system_proc(list,'fpc_rangeerror',[],nil).resetiftemp;
  3359. exit
  3360. end;
  3361. { from is unsigned and to is signed -> when looking at to }
  3362. { as an unsigned value, it must be >= 0 (since negative }
  3363. { values are the same as values > maxlongint) }
  3364. if lto < 0 then
  3365. lto := 0;
  3366. end;
  3367. end;
  3368. hreg:=getintregister(list,maxdef);
  3369. a_load_loc_reg(list,fromdef,maxdef,l,hreg);
  3370. a_op_const_reg(list,OP_SUB,maxdef,tcgint(int64(lto)),hreg);
  3371. current_asmdata.getjumplabel(neglabel);
  3372. {
  3373. if from_signed then
  3374. a_cmp_const_reg_label(list,OS_INT,OC_GTE,aint(hto-lto),hreg,neglabel)
  3375. else
  3376. }
  3377. if qword(hto-lto)>qword(aintmax) then
  3378. a_cmp_const_reg_label(list,maxdef,OC_BE,aintmax,hreg,neglabel)
  3379. else
  3380. a_cmp_const_reg_label(list,maxdef,OC_BE,tcgint(int64(hto-lto)),hreg,neglabel);
  3381. g_call_system_proc(list,'fpc_rangeerror',[],nil).resetiftemp;
  3382. a_label(list,neglabel);
  3383. end;
  3384. procedure thlcgobj.g_copyvaluepara_openarray(list: TAsmList; const ref: treference; const lenloc: tlocation; arrdef: tarraydef; destreg: tregister);
  3385. var
  3386. sizereg,sourcereg,lenreg : tregister;
  3387. cgpara1,cgpara2,cgpara3 : TCGPara;
  3388. ptrarrdef : tdef;
  3389. pd : tprocdef;
  3390. getmemres : tcgpara;
  3391. destloc : tlocation;
  3392. begin
  3393. { because some abis don't support dynamic stack allocation properly
  3394. open array value parameters are copied onto the heap
  3395. }
  3396. include(current_procinfo.flags, pi_has_open_array_parameter);
  3397. { calculate necessary memory }
  3398. { read/write operations on one register make the life of the register allocator hard }
  3399. if not(lenloc.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  3400. begin
  3401. lenreg:=getintregister(list,sinttype);
  3402. a_load_loc_reg(list,sinttype,sinttype,lenloc,lenreg);
  3403. end
  3404. else
  3405. lenreg:=lenloc.register;
  3406. sizereg:=getintregister(list,sinttype);
  3407. a_op_const_reg_reg(list,OP_ADD,sinttype,1,lenreg,sizereg);
  3408. a_op_const_reg(list,OP_IMUL,sinttype,arrdef.elesize,sizereg);
  3409. { load source }
  3410. ptrarrdef:=cpointerdef.getreusable(arrdef);
  3411. sourcereg:=getaddressregister(list,ptrarrdef);
  3412. a_loadaddr_ref_reg(list,arrdef,ptrarrdef,ref,sourcereg);
  3413. { do getmem call }
  3414. pd:=search_system_proc('fpc_getmem');
  3415. cgpara1.init;
  3416. paramanager.getintparaloc(list,pd,1,cgpara1);
  3417. a_load_reg_cgpara(list,sinttype,sizereg,cgpara1);
  3418. paramanager.freecgpara(list,cgpara1);
  3419. getmemres:=g_call_system_proc(list,pd,[@cgpara1],ptrarrdef);
  3420. cgpara1.done;
  3421. { return the new address }
  3422. location_reset(destloc,LOC_REGISTER,OS_ADDR);
  3423. destloc.register:=destreg;
  3424. gen_load_cgpara_loc(list,ptrarrdef,getmemres,destloc,false);
  3425. { do move call }
  3426. pd:=search_system_proc('MOVE');
  3427. cgpara1.init;
  3428. cgpara2.init;
  3429. cgpara3.init;
  3430. paramanager.getintparaloc(list,pd,1,cgpara1);
  3431. paramanager.getintparaloc(list,pd,2,cgpara2);
  3432. paramanager.getintparaloc(list,pd,3,cgpara3);
  3433. if pd.is_pushleftright then
  3434. begin
  3435. { load source }
  3436. a_load_reg_cgpara(list,ptrarrdef,sourcereg,cgpara1);
  3437. { load destination }
  3438. a_load_reg_cgpara(list,ptrarrdef,destreg,cgpara2);
  3439. { load size }
  3440. a_load_reg_cgpara(list,sizesinttype,sizereg,cgpara3);
  3441. end
  3442. else
  3443. begin
  3444. { load size }
  3445. a_load_reg_cgpara(list,sizesinttype,sizereg,cgpara3);
  3446. { load destination }
  3447. a_load_reg_cgpara(list,ptrarrdef,destreg,cgpara2);
  3448. { load source }
  3449. a_load_reg_cgpara(list,ptrarrdef,sourcereg,cgpara1);
  3450. end;
  3451. paramanager.freecgpara(list,cgpara3);
  3452. paramanager.freecgpara(list,cgpara2);
  3453. paramanager.freecgpara(list,cgpara1);
  3454. g_call_system_proc(list,pd,[@cgpara1,@cgpara2,@cgpara3],nil).resetiftemp;
  3455. cgpara3.done;
  3456. cgpara2.done;
  3457. cgpara1.done;
  3458. getmemres.resetiftemp;
  3459. end;
  3460. procedure thlcgobj.g_releasevaluepara_openarray(list: TAsmList; arrdef: tarraydef; const l: tlocation);
  3461. var
  3462. cgpara1 : TCGPara;
  3463. pd : tprocdef;
  3464. begin
  3465. { do freemem call }
  3466. pd:=search_system_proc('fpc_freemem');
  3467. cgpara1.init;
  3468. paramanager.getintparaloc(list,pd,1,cgpara1);
  3469. { load source }
  3470. a_load_loc_cgpara(list,cpointerdef.getreusable(arrdef),l,cgpara1);
  3471. paramanager.freecgpara(list,cgpara1);
  3472. g_call_system_proc(list,pd,[@cgpara1],nil).resetiftemp;
  3473. cgpara1.done;
  3474. end;
  3475. procedure thlcgobj.g_profilecode(list: TAsmList);
  3476. begin
  3477. end;
  3478. procedure thlcgobj.a_jmp_external_name(list: TAsmList; const externalname: TSymStr);
  3479. begin
  3480. cg.a_jmp_name(list,externalname);
  3481. end;
  3482. procedure thlcgobj.g_external_wrapper(list: TAsmList; procdef: tprocdef; const wrappername, externalname: string; global: boolean);
  3483. var
  3484. sym: tasmsymbol;
  3485. begin
  3486. maybe_new_object_file(list);
  3487. new_section(list,sec_code,wrappername,target_info.alignment.procalign);
  3488. if global then
  3489. begin
  3490. sym:=current_asmdata.DefineAsmSymbol(wrappername,AB_GLOBAL,AT_FUNCTION,procdef);
  3491. list.concat(Tai_symbol.Create_global(sym,0));
  3492. end
  3493. else
  3494. begin
  3495. sym:=current_asmdata.DefineAsmSymbol(wrappername,AB_LOCAL,AT_FUNCTION,procdef);
  3496. list.concat(Tai_symbol.Create(sym,0));
  3497. end;
  3498. a_jmp_external_name(list,externalname);
  3499. list.concat(Tai_symbol_end.Create(sym));
  3500. end;
  3501. procedure thlcgobj.g_allocload_reg_reg(list: TAsmList; regsize: tdef; const fromreg: tregister; out toreg: tregister; regtyp: tregistertype);
  3502. begin
  3503. case regtyp of
  3504. R_INTREGISTER:
  3505. toreg:=getintregister(list,regsize);
  3506. R_ADDRESSREGISTER:
  3507. toreg:=getaddressregister(list,regsize);
  3508. R_FPUREGISTER:
  3509. toreg:=getfpuregister(list,regsize);
  3510. else
  3511. internalerror(2013112910);
  3512. end;
  3513. a_load_reg_reg(list,regsize,regsize,fromreg,toreg);
  3514. end;
  3515. procedure thlcgobj.g_reference_loc(list: TAsmList; def: tdef; const fromloc: tlocation; out toloc: tlocation);
  3516. procedure handle_reg_move(regsize: tdef; const fromreg: tregister; out toreg: tregister; regtyp: tregistertype);
  3517. begin
  3518. case regtyp of
  3519. R_INTREGISTER:
  3520. toreg:=getintregister(list,regsize);
  3521. R_ADDRESSREGISTER:
  3522. toreg:=getaddressregister(list,regsize);
  3523. R_FPUREGISTER:
  3524. toreg:=getfpuregister(list,regsize);
  3525. else
  3526. internalerror(2013112915);
  3527. end;
  3528. a_load_reg_reg(list,regsize,regsize,fromreg,toreg);
  3529. end;
  3530. begin
  3531. toloc:=fromloc;
  3532. case fromloc.loc of
  3533. { volatile location, can't get a permanent reference }
  3534. LOC_REGISTER,
  3535. LOC_FPUREGISTER:
  3536. internalerror(2012012702);
  3537. LOC_CONSTANT:
  3538. { finished }
  3539. ;
  3540. LOC_CREGISTER:
  3541. handle_reg_move(def,fromloc.reference.index,toloc.reference.index,R_INTREGISTER);
  3542. LOC_CFPUREGISTER:
  3543. handle_reg_move(def,fromloc.reference.index,toloc.reference.index,R_FPUREGISTER);
  3544. { although LOC_CREFERENCE cannot be an lvalue, we may want to take a
  3545. reference to such a location for multiple reading }
  3546. LOC_CREFERENCE,
  3547. LOC_REFERENCE:
  3548. begin
  3549. if (fromloc.reference.base<>NR_NO) and
  3550. (fromloc.reference.base<>current_procinfo.framepointer) and
  3551. (fromloc.reference.base<>NR_STACK_POINTER_REG) then
  3552. handle_reg_move(voidpointertype,fromloc.reference.base,toloc.reference.base,getregtype(fromloc.reference.base));
  3553. if (fromloc.reference.index<>NR_NO) and
  3554. (fromloc.reference.index<>current_procinfo.framepointer) and
  3555. (fromloc.reference.index<>NR_STACK_POINTER_REG) then
  3556. handle_reg_move(voidpointertype,fromloc.reference.index,toloc.reference.index,getregtype(fromloc.reference.index));
  3557. end;
  3558. else
  3559. internalerror(2012012701);
  3560. end;
  3561. end;
  3562. procedure thlcgobj.g_ptrtypecast_reg(list: TAsmList; fromdef, todef: tdef; var reg: tregister);
  3563. begin
  3564. { nothing to do }
  3565. end;
  3566. procedure thlcgobj.g_ptrtypecast_ref(list: TAsmList; fromdef, todef: tdef; var ref: treference);
  3567. begin
  3568. { nothing to do }
  3569. end;
  3570. procedure thlcgobj.g_set_addr_nonbitpacked_field_ref(list: TAsmList; recdef: tabstractrecorddef; field: tfieldvarsym; var recref: treference);
  3571. begin
  3572. inc(recref.offset,field.fieldoffset);
  3573. recref.alignment:=newalignment(recref.alignment,field.fieldoffset);
  3574. end;
  3575. procedure thlcgobj.g_setup_load_field_by_name(list: TAsmList; recdef: trecorddef; const name: TIDString; const recref: treference; out fref: treference; out fielddef: tdef);
  3576. var
  3577. sym: tsym;
  3578. field: tfieldvarsym;
  3579. begin
  3580. sym:=search_struct_member(recdef,name);
  3581. if not assigned(sym) or
  3582. (sym.typ<>fieldvarsym) then
  3583. internalerror(2015111901);
  3584. field:=tfieldvarsym(sym);
  3585. fref:=recref;
  3586. fielddef:=field.vardef;
  3587. g_set_addr_nonbitpacked_field_ref(list,recdef,field,fref);
  3588. end;
  3589. procedure thlcgobj.g_load_reg_field_by_name(list: TAsmList; regsize: tdef; recdef: trecorddef; reg: tregister; const name: TIDString; const recref: treference);
  3590. var
  3591. fref: treference;
  3592. fielddef: tdef;
  3593. begin
  3594. g_setup_load_field_by_name(list,recdef,name,recref,fref,fielddef);
  3595. a_load_reg_ref(list,regsize,fielddef,reg,fref);
  3596. end;
  3597. procedure thlcgobj.g_load_const_field_by_name(list: TAsmList; recdef: trecorddef; a: tcgint; const name: TIDString; const recref: treference);
  3598. var
  3599. fref: treference;
  3600. fielddef: tdef;
  3601. begin
  3602. g_setup_load_field_by_name(list,recdef,name,recref,fref,fielddef);
  3603. a_load_const_ref(list,fielddef,a,fref);
  3604. end;
  3605. procedure thlcgobj.g_load_field_reg_by_name(list: TAsmList; recdef: trecorddef; regsize: tdef; const name: TIDString; const recref: treference; reg: tregister);
  3606. var
  3607. fref: treference;
  3608. fielddef: tdef;
  3609. begin
  3610. g_setup_load_field_by_name(list,recdef,name,recref,fref,fielddef);
  3611. a_load_ref_reg(list,fielddef,regsize,fref,reg);
  3612. end;
  3613. procedure thlcgobj.g_force_field_reg_by_name(list: TAsmList; recdef: trecorddef; const name: TIDString; const recref: treference; out regdef: tdef; out reg: tregister);
  3614. var
  3615. fref: treference;
  3616. begin
  3617. g_setup_load_field_by_name(list,recdef,name,recref,fref,regdef);
  3618. reg:=getregisterfordef(list,regdef);
  3619. a_load_ref_reg(list,regdef,regdef,fref,reg);
  3620. end;
  3621. procedure thlcgobj.location_force_reg(list: TAsmList; var l: tlocation; src_size, dst_size: tdef; maybeconst: boolean);
  3622. var
  3623. hregister,
  3624. hregister2: tregister;
  3625. hl : tasmlabel;
  3626. oldloc : tlocation;
  3627. begin
  3628. oldloc:=l;
  3629. hregister:=getregisterfordef(list,dst_size);
  3630. { load value in new register }
  3631. case l.loc of
  3632. {$ifdef cpuflags}
  3633. LOC_FLAGS :
  3634. begin
  3635. g_flags2reg(list,dst_size,l.resflags,hregister);
  3636. cg.a_reg_dealloc(list,NR_DEFAULTFLAGS);
  3637. end;
  3638. {$endif cpuflags}
  3639. LOC_JUMP :
  3640. begin
  3641. a_label(list,l.truelabel);
  3642. if is_cbool(src_size) then
  3643. a_load_const_reg(list,dst_size,-1,hregister)
  3644. else
  3645. a_load_const_reg(list,dst_size,1,hregister);
  3646. current_asmdata.getjumplabel(hl);
  3647. a_jmp_always(list,hl);
  3648. a_label(list,l.falselabel);
  3649. a_load_const_reg(list,dst_size,0,hregister);
  3650. a_label(list,hl);
  3651. end;
  3652. else
  3653. begin
  3654. { load_loc_reg can only handle size >= l.size, when the
  3655. new size is smaller then we need to adjust the size
  3656. of the orignal and maybe recalculate l.register for i386 }
  3657. if (dst_size.size<src_size.size) then
  3658. begin
  3659. hregister2:=getregisterfordef(list,src_size);
  3660. { prevent problems with memory locations -- at this high
  3661. level we cannot twiddle with the reference offset, since
  3662. that may not mean anything (e.g., it refers to fixed-sized
  3663. stack slots on Java) }
  3664. a_load_loc_reg(list,src_size,src_size,l,hregister2);
  3665. a_load_reg_reg(list,src_size,dst_size,hregister2,hregister);
  3666. end
  3667. else
  3668. a_load_loc_reg(list,src_size,dst_size,l,hregister);
  3669. end;
  3670. end;
  3671. if (l.loc <> LOC_CREGISTER) or
  3672. not maybeconst then
  3673. location_reset(l,LOC_REGISTER,def_cgsize(dst_size))
  3674. else
  3675. location_reset(l,LOC_CREGISTER,def_cgsize(dst_size));
  3676. l.register:=hregister;
  3677. { Release temp if it was a reference }
  3678. if oldloc.loc=LOC_REFERENCE then
  3679. location_freetemp(list,oldloc);
  3680. end;
  3681. procedure thlcgobj.location_force_fpureg(list: TAsmList; var l: tlocation; size: tdef; maybeconst: boolean);
  3682. var
  3683. reg : tregister;
  3684. begin
  3685. if (l.loc<>LOC_FPUREGISTER) and
  3686. ((l.loc<>LOC_CFPUREGISTER) or (not maybeconst)) then
  3687. begin
  3688. { if it's in an mm register, store to memory first }
  3689. if (l.loc in [LOC_MMREGISTER,LOC_CMMREGISTER]) then
  3690. location_force_mem(list,l,size);
  3691. reg:=getfpuregister(list,size);
  3692. a_loadfpu_loc_reg(list,size,size,l,reg);
  3693. location_freetemp(list,l);
  3694. location_reset(l,LOC_FPUREGISTER,l.size);
  3695. l.register:=reg;
  3696. end;
  3697. end;
  3698. procedure thlcgobj.location_force_mem(list: TAsmList; var l: tlocation; size: tdef);
  3699. var
  3700. r : treference;
  3701. forcesize: aint;
  3702. begin
  3703. case l.loc of
  3704. LOC_FPUREGISTER,
  3705. LOC_CFPUREGISTER :
  3706. begin
  3707. tg.gethltemp(list,size,size.size,tt_normal,r);
  3708. a_loadfpu_reg_ref(list,size,size,l.register,r);
  3709. location_reset_ref(l,LOC_REFERENCE,l.size,size.alignment,[]);
  3710. l.reference:=r;
  3711. end;
  3712. LOC_MMREGISTER,
  3713. LOC_CMMREGISTER:
  3714. begin
  3715. { vectors can't be represented yet using tdef }
  3716. if size.typ<>floatdef then
  3717. internalerror(2012062301);
  3718. tg.gethltemp(list,size,size.size,tt_normal,r);
  3719. a_loadmm_reg_ref(list,size,size,l.register,r,mms_movescalar);
  3720. location_reset_ref(l,LOC_REFERENCE,l.size,size.alignment,[]);
  3721. l.reference:=r;
  3722. end;
  3723. LOC_CONSTANT,
  3724. LOC_REGISTER,
  3725. LOC_CREGISTER,
  3726. LOC_SUBSETREG,
  3727. LOC_CSUBSETREG,
  3728. LOC_SUBSETREF,
  3729. LOC_CSUBSETREF:
  3730. begin
  3731. if not is_dynamic_array(size) and
  3732. not is_open_array(size) then
  3733. forcesize:=size.size
  3734. else
  3735. forcesize:=sizeof(pint);
  3736. tg.gethltemp(list,size,forcesize,tt_normal,r);
  3737. a_load_loc_ref(list,size,size,l,r);
  3738. location_reset_ref(l,LOC_REFERENCE,l.size,size.alignment,[]);
  3739. l.reference:=r;
  3740. end;
  3741. LOC_CREFERENCE,
  3742. LOC_REFERENCE : ;
  3743. else
  3744. internalerror(2011010304);
  3745. end;
  3746. end;
  3747. procedure thlcgobj.location_force_mmregscalar(list: TAsmList; var l: tlocation; var size: tdef; maybeconst: boolean);
  3748. var
  3749. reg : tregister;
  3750. href : treference;
  3751. newsize : tdef;
  3752. begin
  3753. if (l.loc<>LOC_MMREGISTER) and
  3754. ((l.loc<>LOC_CMMREGISTER) or (not maybeconst)) then
  3755. begin
  3756. { if it's in an fpu register, store to memory first }
  3757. if (l.loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER]) then
  3758. begin
  3759. tg.gethltemp(list,size,-1,tt_normal,href);
  3760. hlcg.a_loadfpu_reg_ref(list,size,size,l.register,href);
  3761. location_reset_ref(l,LOC_REFERENCE,l.size,size.alignment,[]);
  3762. l.reference:=href;
  3763. end;
  3764. { on ARM, CFP values may be located in integer registers,
  3765. and its second_int_to_real() also uses this routine to
  3766. force integer (memory) values in an mmregister }
  3767. if (l.size in [OS_32,OS_S32]) then
  3768. begin
  3769. size:=cgsize_orddef(l.size);
  3770. newsize:=s32floattype;
  3771. end
  3772. else if (l.size in [OS_64,OS_S64]) then
  3773. begin
  3774. size:=cgsize_orddef(l.size);
  3775. newsize:=s64floattype;
  3776. end
  3777. else
  3778. newsize:=size;
  3779. case size.size of
  3780. 4:
  3781. newsize:=s32floattype;
  3782. 8:
  3783. newsize:=s64floattype;
  3784. else
  3785. newsize:=size;
  3786. end;
  3787. reg:=hlcg.getmmregister(list,newsize);
  3788. hlcg.a_loadmm_loc_reg(list,size,newsize,l,reg,mms_movescalar);
  3789. l.size:=def_cgsize(newsize);
  3790. location_freetemp(list,l);
  3791. location_reset(l,LOC_MMREGISTER,l.size);
  3792. size:=newsize;
  3793. l.register:=reg;
  3794. end;
  3795. end;
  3796. procedure thlcgobj.location_get_data_ref(list: TAsmList; def: tdef; const l: tlocation; var ref: treference; loadref: boolean; alignment: longint);
  3797. var
  3798. pdef: tdef;
  3799. begin
  3800. case l.loc of
  3801. LOC_REGISTER,
  3802. LOC_CREGISTER :
  3803. begin
  3804. if not loadref then
  3805. internalerror(200410231);
  3806. reference_reset_base(ref,cpointerdef.getreusable(def),l.register,0,ctempposinvalid,alignment,[]);
  3807. end;
  3808. LOC_REFERENCE,
  3809. LOC_CREFERENCE :
  3810. begin
  3811. if loadref then
  3812. begin
  3813. pdef:=cpointerdef.getreusable(def);
  3814. reference_reset_base(ref,pdef,getaddressregister(list,voidpointertype),0,ctempposinvalid,alignment,[]);
  3815. { it's a pointer to def }
  3816. a_load_ref_reg(list,pdef,pdef,l.reference,ref.base);
  3817. end
  3818. else
  3819. ref:=l.reference;
  3820. end;
  3821. else
  3822. internalerror(200309181);
  3823. end;
  3824. end;
  3825. procedure thlcgobj.maketojumpbool(list: TAsmList; p: tnode);
  3826. var
  3827. truelabel,
  3828. falselabel: tasmlabel;
  3829. begin
  3830. if p.location.loc<>LOC_JUMP then
  3831. begin
  3832. current_asmdata.getjumplabel(truelabel);
  3833. current_asmdata.getjumplabel(falselabel);
  3834. end
  3835. else
  3836. begin
  3837. truelabel:=p.location.truelabel;
  3838. falselabel:=p.location.falselabel;
  3839. end;
  3840. maketojumpboollabels(list,p,truelabel,falselabel);
  3841. end;
  3842. procedure thlcgobj.maketojumpboollabels(list: TAsmList; p: tnode; truelabel, falselabel: tasmlabel);
  3843. var
  3844. storepos : tfileposinfo;
  3845. begin
  3846. if nf_error in p.flags then
  3847. exit;
  3848. storepos:=current_filepos;
  3849. current_filepos:=p.fileinfo;
  3850. if is_boolean(p.resultdef) then
  3851. begin
  3852. if is_constboolnode(p) then
  3853. begin
  3854. if Tordconstnode(p).value.uvalue<>0 then
  3855. a_jmp_always(list,truelabel)
  3856. else
  3857. a_jmp_always(list,falselabel)
  3858. end
  3859. else
  3860. begin
  3861. case p.location.loc of
  3862. LOC_SUBSETREG,LOC_CSUBSETREG,
  3863. LOC_SUBSETREF,LOC_CSUBSETREF,
  3864. LOC_CREGISTER,LOC_REGISTER,LOC_CREFERENCE,LOC_REFERENCE :
  3865. begin
  3866. a_cmp_const_loc_label(list,p.resultdef,OC_NE,0,p.location,truelabel);
  3867. a_jmp_always(list,falselabel);
  3868. end;
  3869. LOC_JUMP:
  3870. begin
  3871. if truelabel<>p.location.truelabel then
  3872. begin
  3873. a_label(list,p.location.truelabel);
  3874. a_jmp_always(list,truelabel);
  3875. end;
  3876. if falselabel<>p.location.falselabel then
  3877. begin
  3878. a_label(list,p.location.falselabel);
  3879. a_jmp_always(list,falselabel);
  3880. end;
  3881. end;
  3882. {$ifdef cpuflags}
  3883. LOC_FLAGS :
  3884. begin
  3885. a_jmp_flags(list,p.location.resflags,truelabel);
  3886. a_reg_dealloc(list,NR_DEFAULTFLAGS);
  3887. a_jmp_always(list,falselabel);
  3888. end;
  3889. {$endif cpuflags}
  3890. else
  3891. begin
  3892. printnode(output,p);
  3893. internalerror(2011010418);
  3894. end;
  3895. end;
  3896. end;
  3897. location_reset_jump(p.location,truelabel,falselabel);
  3898. end
  3899. else
  3900. internalerror(2011010419);
  3901. current_filepos:=storepos;
  3902. end;
  3903. procedure thlcgobj.maybe_change_load_node_reg(list: TAsmList; var n: tnode; reload: boolean);
  3904. var
  3905. rr: treplaceregrec;
  3906. varloc : tai_varloc;
  3907. begin
  3908. if not (n.location.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMXREGISTER,LOC_CMMREGISTER]) or
  3909. ([fc_inflowcontrol,fc_gotolabel,fc_lefthandled] * flowcontrol <> []) then
  3910. exit;
  3911. rr.old := n.location.register;
  3912. rr.ressym := nil;
  3913. rr.sym := nil;
  3914. rr.oldhi := NR_NO;
  3915. case n.location.loc of
  3916. LOC_CREGISTER:
  3917. begin
  3918. {$ifdef cpu64bitalu}
  3919. if (n.location.size in [OS_128,OS_S128]) then
  3920. begin
  3921. rr.oldhi := n.location.register128.reghi;
  3922. rr.new := cg.getintregister(current_asmdata.CurrAsmList,OS_INT);
  3923. rr.newhi := cg.getintregister(current_asmdata.CurrAsmList,OS_INT);
  3924. end
  3925. else
  3926. {$else cpu64bitalu}
  3927. if (n.location.size in [OS_64,OS_S64]) then
  3928. begin
  3929. rr.oldhi := n.location.register64.reghi;
  3930. rr.new := cg.getintregister(current_asmdata.CurrAsmList,OS_32);
  3931. rr.newhi := cg.getintregister(current_asmdata.CurrAsmList,OS_32);
  3932. end
  3933. else
  3934. {$endif cpu64bitalu}
  3935. if getregtype(rr.old)=R_ADDRESSREGISTER then
  3936. rr.new := hlcg.getaddressregister(current_asmdata.CurrAsmList,n.resultdef)
  3937. else
  3938. rr.new := cg.getintregister(current_asmdata.CurrAsmList,n.location.size);
  3939. end;
  3940. LOC_CFPUREGISTER:
  3941. rr.new := cg.getfpuregister(current_asmdata.CurrAsmList,n.location.size);
  3942. {$ifdef SUPPORT_MMX}
  3943. LOC_CMMXREGISTER:
  3944. rr.new := tcgx86(cg).getmmxregister(current_asmdata.CurrAsmList);
  3945. {$endif SUPPORT_MMX}
  3946. LOC_CMMREGISTER:
  3947. rr.new := cg.getmmregister(current_asmdata.CurrAsmList,n.location.size);
  3948. else
  3949. exit;
  3950. end;
  3951. { self is implicitly returned from constructors, even if there are no
  3952. references to it; additionally, funcretsym is not set for constructor
  3953. procdefs }
  3954. if (current_procinfo.procdef.proctypeoption=potype_constructor) then
  3955. rr.ressym:=tsym(current_procinfo.procdef.parast.Find('self'))
  3956. else if not is_void(current_procinfo.procdef.returndef) and
  3957. assigned(current_procinfo.procdef.funcretsym) and
  3958. (tabstractvarsym(current_procinfo.procdef.funcretsym).refs <> 0) then
  3959. rr.ressym:=current_procinfo.procdef.funcretsym;
  3960. if not foreachnode(n,@do_replace_node_regs,@rr) then
  3961. exit;
  3962. if reload then
  3963. case n.location.loc of
  3964. LOC_CREGISTER:
  3965. begin
  3966. {$ifdef cpu64bitalu}
  3967. if (n.location.size in [OS_128,OS_S128]) then
  3968. cg128.a_load128_reg_reg(list,n.location.register128,joinreg128(rr.new,rr.newhi))
  3969. else
  3970. {$else cpu64bitalu}
  3971. if (n.location.size in [OS_64,OS_S64]) then
  3972. cg64.a_load64_reg_reg(list,n.location.register64,joinreg64(rr.new,rr.newhi))
  3973. else
  3974. {$endif cpu64bitalu}
  3975. a_load_reg_reg(list,n.resultdef,n.resultdef,n.location.register,rr.new);
  3976. end;
  3977. LOC_CFPUREGISTER:
  3978. cg.a_loadfpu_reg_reg(list,n.location.size,n.location.size,n.location.register,rr.new);
  3979. {$ifdef SUPPORT_MMX}
  3980. LOC_CMMXREGISTER:
  3981. cg.a_loadmm_reg_reg(list,OS_M64,OS_M64,n.location.register,rr.new,nil);
  3982. {$endif SUPPORT_MMX}
  3983. LOC_CMMREGISTER:
  3984. a_loadmm_reg_reg(list,n.resultdef,n.resultdef,n.location.register,rr.new,nil);
  3985. else
  3986. internalerror(2006090920);
  3987. end;
  3988. { now that we've change the loadn/temp, also change the node result location }
  3989. {$ifdef cpu64bitalu}
  3990. if (n.location.size in [OS_128,OS_S128]) then
  3991. begin
  3992. n.location.register128.reglo := rr.new;
  3993. n.location.register128.reghi := rr.newhi;
  3994. if assigned(rr.sym) then
  3995. begin
  3996. varloc:=tai_varloc.create128(rr.sym,rr.new,rr.newhi);
  3997. list.concat(varloc);
  3998. end;
  3999. end
  4000. else
  4001. {$else cpu64bitalu}
  4002. if (n.location.size in [OS_64,OS_S64]) then
  4003. begin
  4004. n.location.register64.reglo := rr.new;
  4005. n.location.register64.reghi := rr.newhi;
  4006. if assigned(rr.sym) then
  4007. begin
  4008. varloc:=tai_varloc.create64(rr.sym,rr.new,rr.newhi);
  4009. list.concat(varloc);
  4010. end;
  4011. end
  4012. else
  4013. {$endif cpu64bitalu}
  4014. begin
  4015. n.location.register := rr.new;
  4016. if assigned(rr.sym) then
  4017. begin
  4018. varloc:=tai_varloc.create(rr.sym,rr.new);
  4019. list.concat(varloc);
  4020. end;
  4021. end;
  4022. end;
  4023. function thlcgobj.do_replace_node_regs(var n: tnode; para: pointer): foreachnoderesult;
  4024. var
  4025. rr: preplaceregrec absolute para;
  4026. begin
  4027. result := fen_false;
  4028. if (nf_is_funcret in n.flags) and (fc_exit in flowcontrol) then
  4029. exit;
  4030. case n.nodetype of
  4031. loadn:
  4032. begin
  4033. if (tloadnode(n).symtableentry.typ in [localvarsym,paravarsym,staticvarsym]) and
  4034. (tabstractvarsym(tloadnode(n).symtableentry).varoptions * [vo_is_dll_var, vo_is_thread_var] = []) and
  4035. not assigned(tloadnode(n).left) and
  4036. ((tloadnode(n).symtableentry <> rr^.ressym) or
  4037. not(fc_exit in flowcontrol)
  4038. ) and
  4039. (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMXREGISTER,LOC_CMMREGISTER]) and
  4040. (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register = rr^.old) then
  4041. begin
  4042. {$ifdef cpu64bitalu}
  4043. { it's possible a 128 bit location was shifted and/xor typecasted }
  4044. { in a 64 bit value, so only 1 register was left in the location }
  4045. if (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.size in [OS_128,OS_S128]) then
  4046. if (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register128.reghi = rr^.oldhi) then
  4047. tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register128.reghi := rr^.newhi
  4048. else
  4049. exit;
  4050. {$else cpu64bitalu}
  4051. { it's possible a 64 bit location was shifted and/xor typecasted }
  4052. { in a 32 bit value, so only 1 register was left in the location }
  4053. if (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.size in [OS_64,OS_S64]) then
  4054. if (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register64.reghi = rr^.oldhi) then
  4055. tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register64.reghi := rr^.newhi
  4056. else
  4057. exit;
  4058. {$endif cpu64bitalu}
  4059. tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register := rr^.new;
  4060. rr^.sym := tabstractnormalvarsym(tloadnode(n).symtableentry);
  4061. result := fen_norecurse_true;
  4062. end;
  4063. end;
  4064. temprefn:
  4065. begin
  4066. if (ti_valid in ttemprefnode(n).tempflags) and
  4067. (ttemprefnode(n).tempinfo^.location.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMXREGISTER,LOC_CMMREGISTER]) and
  4068. (ttemprefnode(n).tempinfo^.location.register = rr^.old) then
  4069. begin
  4070. {$ifdef cpu64bitalu}
  4071. { it's possible a 128 bit location was shifted and/xor typecasted }
  4072. { in a 64 bit value, so only 1 register was left in the location }
  4073. if (ttemprefnode(n).tempinfo^.location.size in [OS_128,OS_S128]) then
  4074. if (ttemprefnode(n).tempinfo^.location.register128.reghi = rr^.oldhi) then
  4075. ttemprefnode(n).tempinfo^.location.register128.reghi := rr^.newhi
  4076. else
  4077. exit;
  4078. {$else cpu64bitalu}
  4079. { it's possible a 64 bit location was shifted and/xor typecasted }
  4080. { in a 32 bit value, so only 1 register was left in the location }
  4081. if (ttemprefnode(n).tempinfo^.location.size in [OS_64,OS_S64]) then
  4082. if (ttemprefnode(n).tempinfo^.location.register64.reghi = rr^.oldhi) then
  4083. ttemprefnode(n).tempinfo^.location.register64.reghi := rr^.newhi
  4084. else
  4085. exit;
  4086. {$endif cpu64bitalu}
  4087. ttemprefnode(n).tempinfo^.location.register := rr^.new;
  4088. result := fen_norecurse_true;
  4089. end;
  4090. end;
  4091. { optimize the searching a bit }
  4092. derefn,addrn,
  4093. calln,inlinen,casen,
  4094. addn,subn,muln,
  4095. andn,orn,xorn,
  4096. ltn,lten,gtn,gten,equaln,unequaln,
  4097. slashn,divn,shrn,shln,notn,
  4098. inn,
  4099. asn,isn:
  4100. result := fen_norecurse_false;
  4101. end;
  4102. end;
  4103. procedure thlcgobj.gen_proc_symbol(list: TAsmList);
  4104. var
  4105. item,
  4106. previtem : TCmdStrListItem;
  4107. begin
  4108. previtem:=nil;
  4109. item := TCmdStrListItem(current_procinfo.procdef.aliasnames.first);
  4110. while assigned(item) do
  4111. begin
  4112. {$ifdef arm}
  4113. if GenerateThumbCode or GenerateThumb2Code then
  4114. list.concat(tai_directive.create(asd_thumb_func,''));
  4115. {$endif arm}
  4116. { "double link" all procedure entry symbols via .reference }
  4117. { directives on darwin, because otherwise the linker }
  4118. { sometimes strips the procedure if only on of the symbols }
  4119. { is referenced }
  4120. if assigned(previtem) and
  4121. (target_info.system in systems_darwin) then
  4122. list.concat(tai_directive.create(asd_reference,item.str));
  4123. if (cs_profile in current_settings.moduleswitches) or
  4124. { smart linking using a library requires to promote
  4125. all non-nested procedures to AB_GLOBAL
  4126. otherwise you get undefined symbol error at linking
  4127. for msdos target with -CX option for instance }
  4128. (create_smartlink_library and not is_nested_pd(current_procinfo.procdef)) or
  4129. (po_global in current_procinfo.procdef.procoptions) then
  4130. list.concat(Tai_symbol.createname_global(item.str,AT_FUNCTION,0,current_procinfo.procdef))
  4131. else
  4132. list.concat(Tai_symbol.createname(item.str,AT_FUNCTION,0,current_procinfo.procdef));
  4133. if assigned(previtem) and
  4134. (target_info.system in systems_darwin) then
  4135. list.concat(tai_directive.create(asd_reference,previtem.str));
  4136. if not(af_stabs_use_function_absolute_addresses in target_asm.flags) then
  4137. list.concat(Tai_function_name.create(item.str));
  4138. previtem:=item;
  4139. item := TCmdStrListItem(item.next);
  4140. end;
  4141. current_procinfo.procdef.procstarttai:=tai(list.last);
  4142. end;
  4143. procedure thlcgobj.gen_proc_symbol_end(list: TAsmList);
  4144. begin
  4145. list.concat(Tai_symbol_end.Createname(current_procinfo.procdef.mangledname));
  4146. current_procinfo.procdef.procendtai:=tai(list.last);
  4147. end;
  4148. procedure thlcgobj.handle_external_proc(list: TAsmList; pd: tprocdef; const importname: TSymStr);
  4149. begin
  4150. { External declared in implementation, and there was already a
  4151. forward (or interface) declaration then we need to generate
  4152. a stub that calls the external routine }
  4153. if (not pd.forwarddef) and
  4154. (pd.hasforward) then
  4155. begin
  4156. if importname<>'' then
  4157. begin
  4158. { add the procedure to the al_procedures }
  4159. g_external_wrapper(list,pd,pd.mangledname,importname,true);
  4160. end;
  4161. { remove the external stuff, so that the interface crc
  4162. doesn't change. This makes the function calls less
  4163. efficient, but it means that the interface doesn't
  4164. change if the function is ever redirected to another
  4165. function or implemented in the unit. }
  4166. pd.procoptions:=pd.procoptions-[po_external,po_has_importname,po_has_importdll];
  4167. stringdispose(pd.import_name);
  4168. stringdispose(pd.import_dll);
  4169. pd.import_nr:=0;
  4170. end;
  4171. end;
  4172. procedure thlcgobj.gen_initialize_code(list: TAsmList);
  4173. begin
  4174. { initialize global register variables }
  4175. case current_procinfo.procdef.proctypeoption of
  4176. potype_unitinit,
  4177. potype_proginit:
  4178. TSymtable(current_module.localsymtable).SymList.ForEachCall(@initialize_regvars,list);
  4179. end;
  4180. { initialises temp. ansi/wide string data }
  4181. if (current_procinfo.procdef.proctypeoption<>potype_exceptfilter) then
  4182. inittempvariables(list);
  4183. {$ifdef OLDREGVARS}
  4184. load_regvars(list,nil);
  4185. {$endif OLDREGVARS}
  4186. end;
  4187. procedure thlcgobj.gen_finalize_code(list: TAsmList);
  4188. var
  4189. old_current_procinfo: tprocinfo;
  4190. begin
  4191. old_current_procinfo:=current_procinfo;
  4192. if (current_procinfo.procdef.proctypeoption=potype_exceptfilter) then
  4193. begin
  4194. if (current_procinfo.parent.finalize_procinfo<>current_procinfo) then
  4195. exit;
  4196. current_procinfo:=current_procinfo.parent;
  4197. end;
  4198. {$ifdef OLDREGVARS}
  4199. cleanup_regvars(list);
  4200. {$endif OLDREGVARS}
  4201. { finalize paras data }
  4202. if assigned(current_procinfo.procdef.parast) and
  4203. not(po_assembler in current_procinfo.procdef.procoptions) then
  4204. current_procinfo.procdef.parast.SymList.ForEachCall(@final_paras,list);
  4205. { finalize temporary data }
  4206. finalizetempvariables(list);
  4207. current_procinfo:=old_current_procinfo;
  4208. end;
  4209. procedure thlcgobj.varsym_set_localloc(list: TAsmList; vs: tabstractnormalvarsym);
  4210. begin
  4211. if cs_asm_source in current_settings.globalswitches then
  4212. begin
  4213. case vs.initialloc.loc of
  4214. LOC_REFERENCE :
  4215. begin
  4216. if not assigned(vs.initialloc.reference.symbol) then
  4217. list.concat(Tai_comment.Create(strpnew('Var '+vs.realname+' located at '+
  4218. std_regname(vs.initialloc.reference.base)+tostr_with_plus(vs.initialloc.reference.offset)+
  4219. ', size='+tcgsize2str(vs.initialloc.size))));
  4220. end;
  4221. end;
  4222. end;
  4223. vs.localloc:=vs.initialloc;
  4224. end;
  4225. procedure thlcgobj.paravarsym_set_initialloc_to_paraloc(vs: tparavarsym);
  4226. begin
  4227. reference_reset_base(vs.initialloc.reference,voidstackpointertype,tparavarsym(vs).paraloc[calleeside].location^.reference.index,
  4228. tparavarsym(vs).paraloc[calleeside].location^.reference.offset,ctempposinvalid,
  4229. tparavarsym(vs).paraloc[calleeside].alignment,[]);
  4230. end;
  4231. procedure thlcgobj.gen_entry_code(list: TAsmList);
  4232. begin
  4233. { the actual profile code can clobber some registers,
  4234. therefore if the context must be saved, do it before
  4235. the actual call to the profile code
  4236. }
  4237. if (cs_profile in current_settings.moduleswitches) and
  4238. not(po_assembler in current_procinfo.procdef.procoptions) then
  4239. begin
  4240. { non-win32 can call mcout even in main }
  4241. if not (target_info.system in [system_i386_win32,system_i386_wdosx]) or
  4242. not (current_procinfo.procdef.proctypeoption=potype_proginit) then
  4243. begin
  4244. g_profilecode(list);
  4245. end;
  4246. end;
  4247. { call startup helpers from main program }
  4248. if (current_procinfo.procdef.proctypeoption=potype_proginit) then
  4249. begin
  4250. { initialize units }
  4251. if not(current_module.islibrary) then
  4252. {$ifdef AVR}
  4253. cg.a_call_name(list,'FPC_INIT_FUNC_TABLE',false)
  4254. {$else AVR}
  4255. g_call_system_proc(list,'fpc_initializeunits',[],nil).resetiftemp
  4256. {$endif AVR}
  4257. else
  4258. g_call_system_proc(list,'fpc_libinitializeunits',[],nil).resetiftemp;
  4259. end;
  4260. list.concat(Tai_force_line.Create);
  4261. {$ifdef OLDREGVARS}
  4262. load_regvars(list,nil);
  4263. {$endif OLDREGVARS}
  4264. end;
  4265. procedure thlcgobj.gen_exit_code(list: TAsmList);
  4266. begin
  4267. { TODO: create high level version (create compilerproc in system unit,
  4268. look up procdef, use hlcgobj.a_call_name()) }
  4269. { call __EXIT for main program }
  4270. if (not current_module.islibrary) and
  4271. (current_procinfo.procdef.proctypeoption=potype_proginit) then
  4272. g_call_system_proc(list,'fpc_do_exit',[],nil).resetiftemp;
  4273. end;
  4274. procedure thlcgobj.inittempvariables(list: TAsmList);
  4275. var
  4276. hp : ptemprecord;
  4277. href : treference;
  4278. begin
  4279. hp:=tg.templist;
  4280. while assigned(hp) do
  4281. begin
  4282. if hp^.fini and
  4283. assigned(hp^.def) and
  4284. is_managed_type(hp^.def) then
  4285. begin
  4286. tg.temp_to_ref(hp,href);
  4287. g_initialize(list,hp^.def,href);
  4288. end;
  4289. hp:=hp^.next;
  4290. end;
  4291. end;
  4292. procedure thlcgobj.finalizetempvariables(list: TAsmList);
  4293. var
  4294. hp : ptemprecord;
  4295. href : treference;
  4296. begin
  4297. hp:=tg.templist;
  4298. while assigned(hp) do
  4299. begin
  4300. if hp^.fini and
  4301. assigned(hp^.def) and
  4302. is_managed_type(hp^.def) then
  4303. begin
  4304. include(current_procinfo.flags,pi_needs_implicit_finally);
  4305. tg.temp_to_ref(hp,href);
  4306. g_finalize(list,hp^.def,href);
  4307. end;
  4308. hp:=hp^.next;
  4309. end;
  4310. end;
  4311. procedure thlcgobj.initialize_regvars(p: TObject; arg: pointer);
  4312. var
  4313. href : treference;
  4314. begin
  4315. if (tsym(p).typ=staticvarsym) and not(tstaticvarsym(p).noregvarinitneeded) then
  4316. begin
  4317. { Static variables can have the initialloc only set to LOC_CxREGISTER
  4318. or LOC_INVALID, for explaination see gen_alloc_symtable (PFV) }
  4319. case tstaticvarsym(p).initialloc.loc of
  4320. LOC_CREGISTER :
  4321. begin
  4322. {$ifdef cpu64bitalu}
  4323. if (tstaticvarsym(p).initialloc.size in [OS_128,OS_S128]) then
  4324. cg128.a_load128_const_reg(TAsmList(arg),0,0,tstaticvarsym(p).initialloc.register128)
  4325. else
  4326. {$else cpu64bitalu}
  4327. if (tstaticvarsym(p).initialloc.size in [OS_64,OS_S64]) then
  4328. cg64.a_load64_const_reg(TAsmList(arg),0,tstaticvarsym(p).initialloc.register64)
  4329. else
  4330. {$endif cpu64bitalu}
  4331. a_load_const_reg(TAsmList(arg),tstaticvarsym(p).vardef,0,
  4332. tstaticvarsym(p).initialloc.register);
  4333. end;
  4334. LOC_CMMREGISTER :
  4335. { clear the whole register }
  4336. a_opmm_reg_reg(TAsmList(arg),OP_XOR,tstaticvarsym(p).vardef,
  4337. tstaticvarsym(p).initialloc.register,
  4338. tstaticvarsym(p).initialloc.register,
  4339. nil);
  4340. LOC_CFPUREGISTER :
  4341. begin
  4342. { initialize fpu regvar by loading from memory }
  4343. reference_reset_symbol(href,
  4344. current_asmdata.RefAsmSymbol(tstaticvarsym(p).mangledname,AT_DATA), 0,
  4345. var_align(tstaticvarsym(p).vardef.alignment),[]);
  4346. a_loadfpu_ref_reg(TAsmList(arg), tstaticvarsym(p).vardef,
  4347. tstaticvarsym(p).vardef, href, tstaticvarsym(p).initialloc.register);
  4348. end;
  4349. LOC_INVALID :
  4350. ;
  4351. else
  4352. internalerror(200410124);
  4353. end;
  4354. end;
  4355. end;
  4356. procedure thlcgobj.final_paras(p: TObject; arg: pointer);
  4357. var
  4358. list : TAsmList;
  4359. href : treference;
  4360. hsym : tparavarsym;
  4361. eldef : tdef;
  4362. highloc : tlocation;
  4363. begin
  4364. if not(tsym(p).typ=paravarsym) then
  4365. exit;
  4366. list:=TAsmList(arg);
  4367. if is_managed_type(tparavarsym(p).vardef) then
  4368. begin
  4369. if (tparavarsym(p).varspez=vs_value) then
  4370. begin
  4371. include(current_procinfo.flags,pi_needs_implicit_finally);
  4372. location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).localloc,href,
  4373. is_open_array(tparavarsym(p).vardef) or
  4374. ((target_info.system in systems_caller_copy_addr_value_para) and
  4375. paramanager.push_addr_param(vs_value,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)),
  4376. sizeof(pint));
  4377. if is_open_array(tparavarsym(p).vardef) then
  4378. begin
  4379. if paramanager.push_high_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption) then
  4380. begin
  4381. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  4382. if not assigned(hsym) then
  4383. internalerror(201003032);
  4384. highloc:=hsym.initialloc
  4385. end
  4386. else
  4387. highloc.loc:=LOC_INVALID;
  4388. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  4389. g_ptrtypecast_ref(list,cpointerdef.getreusable(tparavarsym(p).vardef),cpointerdef.getreusable(eldef),href);
  4390. g_array_rtti_helper(list,eldef,href,highloc,'fpc_finalize_array');
  4391. end
  4392. else
  4393. g_finalize(list,tparavarsym(p).vardef,href);
  4394. end;
  4395. end;
  4396. { open arrays can contain elements requiring init/final code, so the else has been removed here }
  4397. if not(target_info.system in systems_caller_copy_addr_value_para) and
  4398. (tparavarsym(p).varspez=vs_value) and
  4399. (is_open_array(tparavarsym(p).vardef) or
  4400. is_array_of_const(tparavarsym(p).vardef)) then
  4401. begin
  4402. { cdecl functions don't have a high pointer so it is not possible to generate
  4403. a local copy }
  4404. if not(current_procinfo.procdef.proccalloption in cdecl_pocalls) then
  4405. g_releasevaluepara_openarray(list,tarraydef(tparavarsym(p).vardef),tparavarsym(p).localloc);
  4406. end;
  4407. end;
  4408. { generates the code for incrementing the reference count of parameters and
  4409. initialize out parameters }
  4410. { generates the code for incrementing the reference count of parameters and
  4411. initialize out parameters }
  4412. procedure thlcgobj.init_paras(p:TObject;arg:pointer);
  4413. var
  4414. href : treference;
  4415. hsym : tparavarsym;
  4416. eldef : tdef;
  4417. list : TAsmList;
  4418. highloc : tlocation;
  4419. needs_inittable : boolean;
  4420. begin
  4421. list:=TAsmList(arg);
  4422. if (tsym(p).typ=paravarsym) then
  4423. begin
  4424. needs_inittable:=is_managed_type(tparavarsym(p).vardef);
  4425. case tparavarsym(p).varspez of
  4426. vs_value :
  4427. if needs_inittable then
  4428. begin
  4429. { variants are already handled by the call to fpc_variant_copy_overwrite if
  4430. they are passed by reference }
  4431. if not((tparavarsym(p).vardef.typ=variantdef) and
  4432. paramanager.push_addr_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)) then
  4433. begin
  4434. location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,
  4435. is_open_array(tparavarsym(p).vardef) or
  4436. ((target_info.system in systems_caller_copy_addr_value_para) and
  4437. paramanager.push_addr_param(vs_value,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)),
  4438. sizeof(pint));
  4439. if is_open_array(tparavarsym(p).vardef) then
  4440. begin
  4441. if paramanager.push_high_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption) then
  4442. begin
  4443. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  4444. if not assigned(hsym) then
  4445. internalerror(201003032);
  4446. highloc:=hsym.initialloc
  4447. end
  4448. else
  4449. highloc.loc:=LOC_INVALID;
  4450. { open arrays do not contain correct element count in their rtti,
  4451. the actual count must be passed separately. }
  4452. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  4453. g_ptrtypecast_ref(list,cpointerdef.getreusable(tparavarsym(p).vardef),cpointerdef.getreusable(eldef),href);
  4454. g_array_rtti_helper(list,eldef,href,highloc,'fpc_addref_array');
  4455. end
  4456. else
  4457. g_incrrefcount(list,tparavarsym(p).vardef,href);
  4458. end;
  4459. end;
  4460. vs_out :
  4461. begin
  4462. if needs_inittable then
  4463. begin
  4464. { we have no idea about the alignment at the callee side,
  4465. and the user also cannot specify "unaligned" here, so
  4466. assume worst case }
  4467. location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,true,1);
  4468. if needs_inittable then
  4469. begin
  4470. if is_open_array(tparavarsym(p).vardef) then
  4471. begin
  4472. if paramanager.push_high_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption) then
  4473. begin
  4474. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  4475. if not assigned(hsym) then
  4476. internalerror(201003032);
  4477. highloc:=hsym.initialloc
  4478. end
  4479. else
  4480. highloc.loc:=LOC_INVALID;
  4481. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  4482. g_ptrtypecast_ref(list,cpointerdef.getreusable(tparavarsym(p).vardef),cpointerdef.getreusable(eldef),href);
  4483. g_array_rtti_helper(list,eldef,href,highloc,'fpc_initialize_array');
  4484. end
  4485. else
  4486. g_initialize(list,tparavarsym(p).vardef,href);
  4487. end;
  4488. end;
  4489. end;
  4490. end;
  4491. end;
  4492. end;
  4493. procedure thlcgobj.gen_load_para_value(list: TAsmList);
  4494. var
  4495. i: longint;
  4496. currpara: tparavarsym;
  4497. begin
  4498. if (po_assembler in current_procinfo.procdef.procoptions) or
  4499. { exceptfilters have a single hidden 'parentfp' parameter, which
  4500. is handled by tcg.g_proc_entry. }
  4501. (current_procinfo.procdef.proctypeoption=potype_exceptfilter) then
  4502. exit;
  4503. { Copy parameters to local references/registers }
  4504. for i:=0 to current_procinfo.procdef.paras.count-1 do
  4505. begin
  4506. currpara:=tparavarsym(current_procinfo.procdef.paras[i]);
  4507. { don't use currpara.vardef, as this will be wrong in case of
  4508. call-by-reference parameters (it won't contain the pointer) }
  4509. gen_load_cgpara_loc(list,currpara.paraloc[calleeside].def,currpara.paraloc[calleeside],currpara.initialloc,paramanager.param_use_paraloc(currpara.paraloc[calleeside]));
  4510. end;
  4511. { generate copies of call by value parameters, must be done before
  4512. the initialization and body is parsed because the refcounts are
  4513. incremented using the local copies }
  4514. current_procinfo.procdef.parast.SymList.ForEachCall(@g_copyvalueparas,list);
  4515. if not(po_assembler in current_procinfo.procdef.procoptions) then
  4516. begin
  4517. { initialize refcounted paras, and trash others. Needed here
  4518. instead of in gen_initialize_code, because when a reference is
  4519. intialised or trashed while the pointer to that reference is kept
  4520. in a regvar, we add a register move and that one again has to
  4521. come after the parameter loading code as far as the register
  4522. allocator is concerned }
  4523. current_procinfo.procdef.parast.SymList.ForEachCall(@init_paras,list);
  4524. end;
  4525. end;
  4526. procedure thlcgobj.g_copyvalueparas(p: TObject; arg: pointer);
  4527. var
  4528. href : treference;
  4529. hreg : tregister;
  4530. list : TAsmList;
  4531. hsym : tparavarsym;
  4532. l : longint;
  4533. highloc,
  4534. localcopyloc : tlocation;
  4535. begin
  4536. list:=TAsmList(arg);
  4537. if (tsym(p).typ=paravarsym) and
  4538. ((vo_has_local_copy in tparavarsym(p).varoptions) or
  4539. (not(target_info.system in systems_caller_copy_addr_value_para) and
  4540. (is_open_array(tparavarsym(p).vardef) or
  4541. is_array_of_const(tparavarsym(p).vardef)) and
  4542. (tparavarsym(p).varspez=vs_value))) then
  4543. begin
  4544. { we have no idea about the alignment at the caller side }
  4545. location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,true,1);
  4546. if is_open_array(tparavarsym(p).vardef) or
  4547. is_array_of_const(tparavarsym(p).vardef) then
  4548. begin
  4549. { cdecl functions don't have a high pointer so it is not possible to generate
  4550. a local copy }
  4551. if not(current_procinfo.procdef.proccalloption in cdecl_pocalls) then
  4552. begin
  4553. if paramanager.push_high_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption) then
  4554. begin
  4555. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  4556. if not assigned(hsym) then
  4557. internalerror(2011020506);
  4558. highloc:=hsym.initialloc
  4559. end
  4560. else
  4561. highloc.loc:=LOC_INVALID;
  4562. hreg:=getaddressregister(list,voidpointertype);
  4563. if not is_packed_array(tparavarsym(p).vardef) then
  4564. g_copyvaluepara_openarray(list,href,highloc,tarraydef(tparavarsym(p).vardef),hreg)
  4565. else
  4566. internalerror(2011020507);
  4567. // cg.g_copyvaluepara_packedopenarray(list,href,hsym.intialloc,tarraydef(tparavarsym(p).vardef).elepackedbitsize,hreg);
  4568. a_load_reg_loc(list,cpointerdef.getreusable(tparavarsym(p).vardef),cpointerdef.getreusable(tparavarsym(p).vardef),hreg,tparavarsym(p).initialloc);
  4569. end;
  4570. end
  4571. else
  4572. begin
  4573. { Allocate space for the local copy }
  4574. l:=tparavarsym(p).getsize;
  4575. localcopyloc.loc:=LOC_REFERENCE;
  4576. localcopyloc.size:=int_cgsize(l);
  4577. tg.GetLocal(list,l,tparavarsym(p).vardef,localcopyloc.reference);
  4578. { Copy data }
  4579. if is_shortstring(tparavarsym(p).vardef) then
  4580. begin
  4581. { this code is only executed before the code for the body and the entry/exit code is generated
  4582. so we're allowed to include pi_do_call here; after pass1 is run, this isn't allowed anymore
  4583. }
  4584. include(current_procinfo.flags,pi_do_call);
  4585. g_copyshortstring(list,href,localcopyloc.reference,tstringdef(tparavarsym(p).vardef))
  4586. end
  4587. else if tparavarsym(p).vardef.typ=variantdef then
  4588. begin
  4589. { this code is only executed before the code for the body and the entry/exit code is generated
  4590. so we're allowed to include pi_do_call here; after pass1 is run, this isn't allowed anymore
  4591. }
  4592. include(current_procinfo.flags,pi_do_call);
  4593. g_copyvariant(list,href,localcopyloc.reference,tvariantdef(tparavarsym(p).vardef))
  4594. end
  4595. else
  4596. begin
  4597. g_concatcopy(list,tparavarsym(p).vardef,href,localcopyloc.reference);
  4598. end;
  4599. { update localloc of varsym }
  4600. if tparavarsym(p).localloc.loc in [LOC_REFERENCE,LOC_CREFERENCE] then
  4601. tg.Ungetlocal(list,tparavarsym(p).localloc.reference);
  4602. tparavarsym(p).localloc:=localcopyloc;
  4603. tparavarsym(p).initialloc:=localcopyloc;
  4604. end;
  4605. end;
  4606. end;
  4607. procedure thlcgobj.gen_loadfpu_loc_cgpara(list: TAsmList; size: tdef; const l: tlocation; const cgpara: tcgpara; locintsize: longint);
  4608. var
  4609. tmploc: tlocation;
  4610. begin
  4611. case l.loc of
  4612. LOC_MMREGISTER,
  4613. LOC_CMMREGISTER:
  4614. case cgpara.location^.loc of
  4615. LOC_REFERENCE,
  4616. LOC_CREFERENCE,
  4617. LOC_MMREGISTER,
  4618. LOC_CMMREGISTER,
  4619. LOC_REGISTER,
  4620. LOC_CREGISTER :
  4621. a_loadmm_reg_cgpara(list,size,l.register,cgpara,mms_movescalar);
  4622. LOC_FPUREGISTER,
  4623. LOC_CFPUREGISTER:
  4624. begin
  4625. tmploc:=l;
  4626. location_force_fpureg(list,tmploc,size,false);
  4627. a_loadfpu_reg_cgpara(list,size,tmploc.register,cgpara);
  4628. end;
  4629. else
  4630. internalerror(200204249);
  4631. end;
  4632. LOC_FPUREGISTER,
  4633. LOC_CFPUREGISTER:
  4634. case cgpara.location^.loc of
  4635. LOC_MMREGISTER,
  4636. LOC_CMMREGISTER:
  4637. begin
  4638. tmploc:=l;
  4639. location_force_mmregscalar(list,tmploc,size,false);
  4640. a_loadmm_reg_cgpara(list,size,tmploc.register,cgpara,mms_movescalar);
  4641. end;
  4642. { Some targets pass floats in normal registers }
  4643. LOC_REGISTER,
  4644. LOC_CREGISTER,
  4645. LOC_REFERENCE,
  4646. LOC_CREFERENCE,
  4647. LOC_FPUREGISTER,
  4648. LOC_CFPUREGISTER:
  4649. a_loadfpu_reg_cgpara(list,size,l.register,cgpara);
  4650. else
  4651. internalerror(2011010210);
  4652. end;
  4653. LOC_REFERENCE,
  4654. LOC_CREFERENCE:
  4655. case cgpara.location^.loc of
  4656. LOC_MMREGISTER,
  4657. LOC_CMMREGISTER:
  4658. a_loadmm_ref_cgpara(list,size,l.reference,cgpara,mms_movescalar);
  4659. { Some targets pass floats in normal registers }
  4660. LOC_REGISTER,
  4661. LOC_CREGISTER,
  4662. LOC_REFERENCE,
  4663. LOC_CREFERENCE,
  4664. LOC_FPUREGISTER,
  4665. LOC_CFPUREGISTER:
  4666. a_loadfpu_ref_cgpara(list,size,l.reference,cgpara);
  4667. else
  4668. internalerror(2011010211);
  4669. end;
  4670. LOC_REGISTER,
  4671. LOC_CREGISTER :
  4672. a_load_loc_cgpara(list,size,l,cgpara);
  4673. else
  4674. internalerror(2011010212);
  4675. end;
  4676. end;
  4677. procedure thlcgobj.gen_load_uninitialized_function_result(list: TAsmList; pd: tprocdef; resdef: tdef; const resloc: tcgpara);
  4678. begin
  4679. { do nothing by default }
  4680. end;
  4681. procedure thlcgobj.gen_load_loc_function_result(list: TAsmList; vardef: tdef; const l: tlocation);
  4682. begin
  4683. gen_load_loc_cgpara(list,vardef,l,current_procinfo.procdef.funcretloc[calleeside]);
  4684. end;
  4685. procedure thlcgobj.gen_load_loc_cgpara(list: TAsmList; vardef: tdef; const l: tlocation; const cgpara: tcgpara);
  4686. var
  4687. tmploc: tlocation;
  4688. begin
  4689. { skip e.g. empty records }
  4690. if (cgpara.location^.loc = LOC_VOID) then
  4691. exit;
  4692. { Handle Floating point types differently
  4693. This doesn't depend on emulator settings, emulator settings should
  4694. be handled by cpupara }
  4695. if (vardef.typ=floatdef) or
  4696. { some ABIs return certain records in an fpu register }
  4697. (l.loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER]) or
  4698. (assigned(cgpara.location) and
  4699. (cgpara.Location^.loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER])) then
  4700. begin
  4701. gen_loadfpu_loc_cgpara(list,vardef,l,cgpara,vardef.size);
  4702. exit;
  4703. end;
  4704. { in case of multiple locations, force the source to memory as only
  4705. a_load_ref_cgpara supports multiple locations }
  4706. if assigned(cgpara.location^.next) and
  4707. not(l.loc in [LOC_REFERENCE,LOC_CREFERENCE]) then
  4708. begin
  4709. tmploc:=l;
  4710. location_force_mem(list,tmploc,vardef);
  4711. a_load_loc_cgpara(list,vardef,tmploc,cgpara);
  4712. location_freetemp(list,tmploc);
  4713. exit;
  4714. end;
  4715. case l.loc of
  4716. LOC_CONSTANT,
  4717. LOC_REGISTER,
  4718. LOC_CREGISTER,
  4719. LOC_REFERENCE,
  4720. LOC_CREFERENCE :
  4721. begin
  4722. a_load_loc_cgpara(list,vardef,l,cgpara);
  4723. end;
  4724. LOC_MMREGISTER,
  4725. LOC_CMMREGISTER:
  4726. begin
  4727. if use_vectorfpu(vardef) then
  4728. a_loadmm_loc_cgpara(list,vardef,l,cgpara,mms_movescalar)
  4729. else
  4730. { no vector support yet }
  4731. internalerror(2012071212);
  4732. {
  4733. cg.a_loadmm_loc_cgpara(list,l,cgpara,nil);
  4734. }
  4735. end;
  4736. else
  4737. internalerror(2011010213);
  4738. end;
  4739. end;
  4740. procedure thlcgobj.gen_load_cgpara_loc(list: TAsmList; vardef: tdef; const para: TCGPara; var destloc: tlocation; reusepara: boolean);
  4741. var
  4742. href : treference;
  4743. begin
  4744. para.check_simple_location;
  4745. { skip e.g. empty records }
  4746. if (para.location^.loc = LOC_VOID) then
  4747. exit;
  4748. case destloc.loc of
  4749. LOC_REFERENCE :
  4750. begin
  4751. { If the parameter location is reused we don't need to copy
  4752. anything }
  4753. if not reusepara then
  4754. begin
  4755. case para.location^.loc of
  4756. LOC_REFERENCE,LOC_CREFERENCE:
  4757. begin
  4758. reference_reset_base(href,voidstackpointertype,para.location^.reference.index,para.location^.reference.offset,ctempposinvalid,para.alignment,[]);
  4759. a_load_ref_ref(list,para.def,para.def,href,destloc.reference);
  4760. end;
  4761. else
  4762. internalerror(2013102301);
  4763. end;
  4764. end;
  4765. end;
  4766. { TODO other possible locations }
  4767. else
  4768. internalerror(2011010308);
  4769. end;
  4770. end;
  4771. procedure thlcgobj.gen_load_return_value(list: TAsmList);
  4772. var
  4773. ressym : tsym;
  4774. retdef : tdef;
  4775. begin
  4776. { Is the loading needed? }
  4777. if is_void(current_procinfo.procdef.returndef) or
  4778. (
  4779. (po_assembler in current_procinfo.procdef.procoptions) and
  4780. (not(assigned(current_procinfo.procdef.funcretsym)) or
  4781. (tabstractvarsym(current_procinfo.procdef.funcretsym).refs=0) or
  4782. (po_nostackframe in current_procinfo.procdef.procoptions))
  4783. ) then
  4784. exit;
  4785. { constructors return self }
  4786. if not current_procinfo.procdef.getfuncretsyminfo(ressym,retdef) then
  4787. internalerror(2018122501);
  4788. if (ressym.refs>0) or
  4789. is_managed_type(retdef) then
  4790. begin
  4791. { was: don't do anything if funcretloc.loc in [LOC_INVALID,LOC_REFERENCE] }
  4792. if not paramanager.ret_in_param(current_procinfo.procdef.returndef,current_procinfo.procdef) then
  4793. gen_load_loc_function_result(list,retdef,tabstractnormalvarsym(ressym).localloc);
  4794. end
  4795. else
  4796. gen_load_uninitialized_function_result(list,current_procinfo.procdef,retdef,current_procinfo.procdef.funcretloc[calleeside]);
  4797. if tabstractnormalvarsym(ressym).localloc.loc=LOC_REFERENCE then
  4798. tg.UnGetLocal(list,tabstractnormalvarsym(ressym).localloc.reference);
  4799. end;
  4800. procedure thlcgobj.gen_stack_check_size_para(list: TAsmList);
  4801. var
  4802. paraloc1 : tcgpara;
  4803. pd : tprocdef;
  4804. begin
  4805. pd:=search_system_proc('fpc_stackcheck');
  4806. paraloc1.init;
  4807. paramanager.getintparaloc(current_asmdata.CurrAsmList,pd,1,paraloc1);
  4808. hlcg.a_load_const_cgpara(list,paraloc1.def,current_procinfo.calc_stackframe_size,paraloc1);
  4809. paramanager.freecgpara(list,paraloc1);
  4810. paraloc1.done;
  4811. end;
  4812. procedure thlcgobj.gen_stack_check_call(list: TAsmList);
  4813. var
  4814. paraloc1 : tcgpara;
  4815. pd : tprocdef;
  4816. begin
  4817. pd:=search_system_proc('fpc_stackcheck');
  4818. paraloc1.init;
  4819. { The parameter to fpc_stackcheck is loaded seperately via
  4820. gen_stack_check_size_para() }
  4821. paramanager.getintparaloc(list,pd,1,paraloc1);
  4822. paramanager.freecgpara(list,paraloc1);
  4823. { Call the helper }
  4824. g_call_system_proc(list,pd,[@paraloc1],nil).resetiftemp;
  4825. paraloc1.done;
  4826. end;
  4827. procedure thlcgobj.record_generated_code_for_procdef(pd: tprocdef; code, data: TAsmList);
  4828. var
  4829. alt: TAsmListType;
  4830. begin
  4831. if not(po_assembler in pd.procoptions) then
  4832. alt:=al_procedures
  4833. else
  4834. alt:=al_pure_assembler;
  4835. { add the procedure to the al_procedures }
  4836. maybe_new_object_file(current_asmdata.asmlists[alt]);
  4837. new_section(current_asmdata.asmlists[alt],sec_code,lower(pd.mangledname),getprocalign);
  4838. current_asmdata.asmlists[alt].concatlist(code);
  4839. { save local data (casetable) also in the same file }
  4840. if assigned(data) and
  4841. (not data.empty) then
  4842. current_asmdata.asmlists[alt].concatlist(data);
  4843. end;
  4844. function thlcgobj.g_call_system_proc(list: TAsmList; const procname: string; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  4845. var
  4846. pd: tprocdef;
  4847. begin
  4848. pd:=search_system_proc(procname);
  4849. pd.init_paraloc_info(callerside);
  4850. if systemunit<>current_module.globalsymtable then
  4851. current_module.addimportedsym(pd.procsym);
  4852. result:=g_call_system_proc_intern(list,pd,paras,forceresdef);
  4853. end;
  4854. function thlcgobj.g_call_system_proc(list: TAsmList; pd: tprocdef; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  4855. begin
  4856. { separate non-virtual routine to make it clear that the routine to
  4857. override, if any, is g_call_system_proc_intern (and that none of
  4858. the g_call_system_proc variants should be made virtual) }
  4859. pd.init_paraloc_info(callerside);
  4860. if systemunit<>current_module.globalsymtable then
  4861. current_module.addimportedsym(pd.procsym);
  4862. result:=g_call_system_proc_intern(list,pd,paras,forceresdef);
  4863. end;
  4864. function thlcgobj.g_call_system_proc_intern(list: TAsmList; pd: tprocdef; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  4865. begin
  4866. allocallcpuregisters(list);
  4867. result:=a_call_name(list,pd,pd.mangledname,paras,forceresdef,false);
  4868. deallocallcpuregisters(list);
  4869. end;
  4870. end.