hlcgobj.pas 225 KB

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