hlcgobj.pas 227 KB

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