cgobj.pas 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532
  1. {
  2. Copyright (c) 1998-2005 by Florian Klaempfl
  3. Member of the Free Pascal development team
  4. This unit implements the basic 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. Abstreact code generator unit. This contains the base class
  20. to implement for all new supported processors.
  21. WARNING: None of the routines implemented in these modules,
  22. or their descendants, should use the temp. allocator, as
  23. these routines may be called inside genentrycode, and the
  24. stack frame is already setup!
  25. }
  26. unit cgobj;
  27. {$i fpcdefs.inc}
  28. interface
  29. uses
  30. cclasses,globtype,constexp,
  31. cpubase,cgbase,cgutils,parabase,
  32. aasmbase,aasmtai,aasmdata,aasmcpu,
  33. symconst,symtype,symdef,rgobj
  34. ;
  35. type
  36. talignment = (AM_NATURAL,AM_NONE,AM_2BYTE,AM_4BYTE,AM_8BYTE);
  37. {# @abstract(Abstract code generator)
  38. This class implements an abstract instruction generator. Some of
  39. the methods of this class are generic, while others must
  40. be overridden for all new processors which will be supported
  41. by Free Pascal. For 32-bit processors, the base class
  42. should be @link(tcg64f32) and not @var(tcg).
  43. }
  44. tcg = class
  45. public
  46. { how many times is this current code executed }
  47. executionweight : longint;
  48. alignment : talignment;
  49. rg : array[tregistertype] of trgobj;
  50. {$ifdef flowgraph}
  51. aktflownode:word;
  52. {$endif}
  53. {************************************************}
  54. { basic routines }
  55. constructor create;
  56. {# Initialize the register allocators needed for the codegenerator.}
  57. procedure init_register_allocators;virtual;
  58. {# Clean up the register allocators needed for the codegenerator.}
  59. procedure done_register_allocators;virtual;
  60. {# 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. }
  61. procedure set_regalloc_live_range_direction(dir: TRADirection);
  62. {$ifdef flowgraph}
  63. procedure init_flowgraph;
  64. procedure done_flowgraph;
  65. {$endif}
  66. {# Gets a register suitable to do integer operations on.}
  67. function getintregister(list:TAsmList;size:Tcgsize):Tregister;virtual;
  68. {# Gets a register suitable to do integer operations on.}
  69. function getaddressregister(list:TAsmList):Tregister;virtual;
  70. function getfpuregister(list:TAsmList;size:Tcgsize):Tregister;virtual;
  71. function getmmregister(list:TAsmList;size:Tcgsize):Tregister;virtual;
  72. function getflagregister(list:TAsmList;size:Tcgsize):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. procedure add_reg_instruction(instr:Tai;r:tregister);virtual;
  76. procedure add_move_instruction(instr:Taicpu);virtual;
  77. function uses_registers(rt:Tregistertype):boolean;virtual;
  78. {# Get a specific register.}
  79. procedure getcpuregister(list:TAsmList;r:Tregister);virtual;
  80. procedure ungetcpuregister(list:TAsmList;r:Tregister);virtual;
  81. {# Get multiple registers specified.}
  82. procedure alloccpuregisters(list:TAsmList;rt:Tregistertype;const r:Tcpuregisterset);virtual;
  83. {# Free multiple registers specified.}
  84. procedure dealloccpuregisters(list:TAsmList;rt:Tregistertype;const r:Tcpuregisterset);virtual;
  85. procedure allocallcpuregisters(list:TAsmList);virtual;
  86. procedure deallocallcpuregisters(list:TAsmList);virtual;
  87. procedure do_register_allocation(list:TAsmList;headertai:tai);virtual;
  88. procedure translate_register(var reg : tregister);
  89. function makeregsize(list:TAsmList;reg:Tregister;size:Tcgsize):Tregister;
  90. {# Emit a label to the instruction stream. }
  91. procedure a_label(list : TAsmList;l : tasmlabel);virtual;
  92. {# Allocates register r by inserting a pai_realloc record }
  93. procedure a_reg_alloc(list : TAsmList;r : tregister);
  94. {# Deallocates register r by inserting a pa_regdealloc record}
  95. procedure a_reg_dealloc(list : TAsmList;r : tregister);
  96. { Synchronize register, make sure it is still valid }
  97. procedure a_reg_sync(list : TAsmList;r : tregister);
  98. {# Pass a parameter, which is located in a register, to a routine.
  99. This routine should push/send the parameter to the routine, as
  100. required by the specific processor ABI and routine modifiers.
  101. It must generate register allocation information for the cgpara in
  102. case it consists of cpuregisters.
  103. @param(size size of the operand in the register)
  104. @param(r register source of the operand)
  105. @param(cgpara where the parameter will be stored)
  106. }
  107. procedure a_load_reg_cgpara(list : TAsmList;size : tcgsize;r : tregister;const cgpara : TCGPara);virtual;
  108. {# Pass a parameter, which is a constant, to a routine.
  109. A generic version is provided. This routine should
  110. be overridden for optimization purposes if the cpu
  111. permits directly sending this type of parameter.
  112. It must generate register allocation information for the cgpara in
  113. case it consists of cpuregisters.
  114. @param(size size of the operand in constant)
  115. @param(a value of constant to send)
  116. @param(cgpara where the parameter will be stored)
  117. }
  118. procedure a_load_const_cgpara(list : TAsmList;size : tcgsize;a : tcgint;const cgpara : TCGPara);virtual;
  119. {# Pass the value of a parameter, which is located in memory, to a routine.
  120. A generic version is provided. This routine should
  121. be overridden for optimization purposes if the cpu
  122. permits directly sending this type of parameter.
  123. It must generate register allocation information for the cgpara in
  124. case it consists of cpuregisters.
  125. @param(size size of the operand in constant)
  126. @param(r Memory reference of value to send)
  127. @param(cgpara where the parameter will be stored)
  128. }
  129. procedure a_load_ref_cgpara(list : TAsmList;size : tcgsize;const r : treference;const cgpara : TCGPara);virtual;
  130. {# Pass the value of a parameter, which can be located either in a register or memory location,
  131. to a routine.
  132. A generic version is provided.
  133. @param(l location of the operand to send)
  134. @param(nr parameter number (starting from one) of routine (from left to right))
  135. @param(cgpara where the parameter will be stored)
  136. }
  137. procedure a_load_loc_cgpara(list : TAsmList;const l : tlocation;const cgpara : TCGPara);
  138. {# Pass the address of a reference to a routine. This routine
  139. will calculate the address of the reference, and pass this
  140. calculated address as a parameter.
  141. It must generate register allocation information for the cgpara in
  142. case it consists of cpuregisters.
  143. A generic version is provided. This routine should
  144. be overridden for optimization purposes if the cpu
  145. permits directly sending this type of parameter.
  146. @param(r reference to get address from)
  147. @param(nr parameter number (starting from one) of routine (from left to right))
  148. }
  149. procedure a_loadaddr_ref_cgpara(list : TAsmList;const r : treference;const cgpara : TCGPara);virtual;
  150. {# Load a cgparaloc into a memory reference.
  151. It must generate register allocation information for the cgpara in
  152. case it consists of cpuregisters.
  153. @param(paraloc the source parameter sublocation)
  154. @param(ref the destination reference)
  155. @param(sizeleft indicates the total number of bytes left in all of
  156. the remaining sublocations of this parameter (the current
  157. sublocation and all of the sublocations coming after it).
  158. In case this location is also a reference, it is assumed
  159. to be the final part sublocation of the parameter and that it
  160. contains all of the "sizeleft" bytes).)
  161. @param(align the alignment of the paraloc in case it's a reference)
  162. }
  163. procedure a_load_cgparaloc_ref(list : TAsmList;const paraloc : TCGParaLocation;const ref : treference;sizeleft : tcgint;align : longint);
  164. {# Load a cgparaloc into any kind of register (int, fp, mm).
  165. @param(regsize the size of the destination register)
  166. @param(paraloc the source parameter sublocation)
  167. @param(reg the destination register)
  168. @param(align the alignment of the paraloc in case it's a reference)
  169. }
  170. procedure a_load_cgparaloc_anyreg(list : TAsmList;regsize : tcgsize;const paraloc : TCGParaLocation;reg : tregister;align : longint);
  171. { Remarks:
  172. * If a method specifies a size you have only to take care
  173. of that number of bits, i.e. load_const_reg with OP_8 must
  174. only load the lower 8 bit of the specified register
  175. the rest of the register can be undefined
  176. if necessary the compiler will call a method
  177. to zero or sign extend the register
  178. * The a_load_XX_XX with OP_64 needn't to be
  179. implemented for 32 bit
  180. processors, the code generator takes care of that
  181. * the addr size is for work with the natural pointer
  182. size
  183. * the procedures without fpu/mm are only for integer usage
  184. * normally the first location is the source and the
  185. second the destination
  186. }
  187. {# Emits instruction to call the method specified by symbol name.
  188. This routine must be overridden for each new target cpu.
  189. }
  190. procedure a_call_name(list : TAsmList;const s : string; weak: boolean);virtual; abstract;
  191. procedure a_call_reg(list : TAsmList;reg : tregister);virtual; abstract;
  192. procedure a_call_ref(list : TAsmList;ref : treference);virtual;
  193. { same as a_call_name, might be overridden on certain architectures to emit
  194. static calls without usage of a got trampoline }
  195. procedure a_call_name_static(list : TAsmList;const s : string);virtual;
  196. { move instructions }
  197. procedure a_load_const_reg(list : TAsmList;size : tcgsize;a : tcgint;register : tregister);virtual; abstract;
  198. procedure a_load_const_ref(list : TAsmList;size : tcgsize;a : tcgint;const ref : treference);virtual;
  199. procedure a_load_const_loc(list : TAsmList;a : tcgint;const loc : tlocation);
  200. procedure a_load_reg_ref(list : TAsmList;fromsize,tosize : tcgsize;register : tregister;const ref : treference);virtual; abstract;
  201. procedure a_load_reg_ref_unaligned(list : TAsmList;fromsize,tosize : tcgsize;register : tregister;const ref : treference);virtual;
  202. procedure a_load_reg_reg(list : TAsmList;fromsize,tosize : tcgsize;reg1,reg2 : tregister);virtual; abstract;
  203. procedure a_load_reg_loc(list : TAsmList;fromsize : tcgsize;reg : tregister;const loc: tlocation);
  204. procedure a_load_ref_reg(list : TAsmList;fromsize,tosize : tcgsize;const ref : treference;register : tregister);virtual; abstract;
  205. procedure a_load_ref_reg_unaligned(list : TAsmList;fromsize,tosize : tcgsize;const ref : treference;register : tregister);virtual;
  206. procedure a_load_ref_ref(list : TAsmList;fromsize,tosize : tcgsize;const sref : treference;const dref : treference);virtual;
  207. procedure a_load_loc_reg(list : TAsmList;tosize: tcgsize; const loc: tlocation; reg : tregister);
  208. procedure a_load_loc_ref(list : TAsmList;tosize: tcgsize; const loc: tlocation; const ref : treference);
  209. procedure a_loadaddr_ref_reg(list : TAsmList;const ref : treference;r : tregister);virtual; abstract;
  210. { bit scan instructions }
  211. procedure a_bit_scan_reg_reg(list: TAsmList; reverse: boolean; size: tcgsize; src, dst: TRegister); virtual; abstract;
  212. { fpu move instructions }
  213. procedure a_loadfpu_reg_reg(list: TAsmList; fromsize, tosize:tcgsize; reg1, reg2: tregister); virtual; abstract;
  214. procedure a_loadfpu_ref_reg(list: TAsmList; fromsize, tosize: tcgsize; const ref: treference; reg: tregister); virtual; abstract;
  215. procedure a_loadfpu_reg_ref(list: TAsmList; fromsize, tosize: tcgsize; reg: tregister; const ref: treference); virtual; abstract;
  216. procedure a_loadfpu_ref_ref(list: TAsmList; fromsize, tosize: tcgsize; const ref1,ref2: treference);
  217. procedure a_loadfpu_loc_reg(list: TAsmList; tosize: tcgsize; const loc: tlocation; const reg: tregister);
  218. procedure a_loadfpu_reg_loc(list: TAsmList; fromsize: tcgsize; const reg: tregister; const loc: tlocation);
  219. procedure a_loadfpu_reg_cgpara(list : TAsmList;size : tcgsize;const r : tregister;const cgpara : TCGPara);virtual;
  220. procedure a_loadfpu_ref_cgpara(list : TAsmList;size : tcgsize;const ref : treference;const cgpara : TCGPara);virtual;
  221. { vector register move instructions }
  222. procedure a_loadmm_reg_reg(list: TAsmList; fromsize, tosize : tcgsize;reg1, reg2: tregister;shuffle : pmmshuffle); virtual;
  223. procedure a_loadmm_ref_reg(list: TAsmList; fromsize, tosize : tcgsize;const ref: treference; reg: tregister;shuffle : pmmshuffle); virtual;
  224. procedure a_loadmm_reg_ref(list: TAsmList; fromsize, tosize : tcgsize;reg: tregister; const ref: treference;shuffle : pmmshuffle); virtual;
  225. procedure a_loadmm_loc_reg(list: TAsmList; size: tcgsize; const loc: tlocation; const reg: tregister;shuffle : pmmshuffle);
  226. procedure a_loadmm_reg_loc(list: TAsmList; size: tcgsize; const reg: tregister; const loc: tlocation;shuffle : pmmshuffle);
  227. procedure a_loadmm_reg_cgpara(list: TAsmList; size: tcgsize; reg: tregister;const cgpara : TCGPara;shuffle : pmmshuffle); virtual;
  228. procedure a_loadmm_ref_cgpara(list: TAsmList; size: tcgsize; const ref: treference;const cgpara : TCGPara;shuffle : pmmshuffle); virtual;
  229. procedure a_loadmm_loc_cgpara(list: TAsmList; const loc: tlocation; const cgpara : TCGPara;shuffle : pmmshuffle); virtual;
  230. procedure a_opmm_reg_reg(list: TAsmList; Op: TOpCG; size : tcgsize;src,dst: tregister;shuffle : pmmshuffle); virtual;
  231. procedure a_opmm_ref_reg(list: TAsmList; Op: TOpCG; size : tcgsize;const ref: treference; reg: tregister;shuffle : pmmshuffle); virtual;
  232. procedure a_opmm_loc_reg(list: TAsmList; Op: TOpCG; size : tcgsize;const loc: tlocation; reg: tregister;shuffle : pmmshuffle); virtual;
  233. procedure a_opmm_reg_ref(list: TAsmList; Op: TOpCG; size : tcgsize;reg: tregister;const ref: treference; shuffle : pmmshuffle); virtual;
  234. procedure a_loadmm_intreg_reg(list: TAsmList; fromsize, tosize : tcgsize; intreg, mmreg: tregister; shuffle: pmmshuffle); virtual;
  235. procedure a_loadmm_reg_intreg(list: TAsmList; fromsize, tosize : tcgsize; mmreg, intreg: tregister; shuffle : pmmshuffle); virtual;
  236. { basic arithmetic operations }
  237. { note: for operators which require only one argument (not, neg), use }
  238. { the op_reg_reg, op_reg_ref or op_reg_loc methods and keep in mind }
  239. { that in this case the *second* operand is used as both source and }
  240. { destination (JM) }
  241. procedure a_op_const_reg(list : TAsmList; Op: TOpCG; size: TCGSize; a: tcgint; reg: TRegister); virtual; abstract;
  242. procedure a_op_const_ref(list : TAsmList; Op: TOpCG; size: TCGSize; a: tcgint; const ref: TReference); virtual;
  243. procedure a_op_const_loc(list : TAsmList; Op: TOpCG; a: tcgint; const loc: tlocation);
  244. procedure a_op_reg_reg(list : TAsmList; Op: TOpCG; size: TCGSize; reg1, reg2: TRegister); virtual; abstract;
  245. procedure a_op_reg_ref(list : TAsmList; Op: TOpCG; size: TCGSize; reg: TRegister; const ref: TReference); virtual;
  246. procedure a_op_ref_reg(list : TAsmList; Op: TOpCG; size: TCGSize; const ref: TReference; reg: TRegister); virtual;
  247. procedure a_op_reg_loc(list : TAsmList; Op: TOpCG; reg: tregister; const loc: tlocation);
  248. procedure a_op_ref_loc(list : TAsmList; Op: TOpCG; const ref: TReference; const loc: tlocation);
  249. { trinary operations for processors that support them, 'emulated' }
  250. { on others. None with "ref" arguments since I don't think there }
  251. { are any processors that support it (JM) }
  252. procedure a_op_const_reg_reg(list: TAsmList; op: TOpCg; size: tcgsize; a: tcgint; src, dst: tregister); virtual;
  253. procedure a_op_reg_reg_reg(list: TAsmList; op: TOpCg; size: tcgsize; src1, src2, dst: tregister); virtual;
  254. procedure a_op_const_reg_reg_checkoverflow(list: TAsmList; op: TOpCg; size: tcgsize; a: tcgint; src, dst: tregister;setflags : boolean;var ovloc : tlocation); virtual;
  255. procedure a_op_reg_reg_reg_checkoverflow(list: TAsmList; op: TOpCg; size: tcgsize; src1, src2, dst: tregister;setflags : boolean;var ovloc : tlocation); virtual;
  256. { comparison operations }
  257. procedure a_cmp_const_reg_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;a : tcgint;reg : tregister;
  258. l : tasmlabel); virtual;
  259. procedure a_cmp_const_ref_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;a : tcgint;const ref : treference;
  260. l : tasmlabel); virtual;
  261. procedure a_cmp_const_loc_label(list: TAsmList; size: tcgsize;cmp_op: topcmp; a: tcgint; const loc: tlocation;
  262. l : tasmlabel);
  263. procedure a_cmp_reg_reg_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;reg1,reg2 : tregister;l : tasmlabel); virtual; abstract;
  264. procedure a_cmp_ref_reg_label(list : TAsmList;size : tcgsize;cmp_op : topcmp; const ref: treference; reg : tregister; l : tasmlabel); virtual;
  265. procedure a_cmp_reg_ref_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;reg : tregister; const ref: treference; l : tasmlabel); virtual;
  266. procedure a_cmp_loc_reg_label(list : TAsmList;size : tcgsize;cmp_op : topcmp; const loc: tlocation; reg : tregister; l : tasmlabel);
  267. procedure a_cmp_reg_loc_label(list : TAsmList;size : tcgsize;cmp_op : topcmp; reg: tregister; const loc: tlocation; l : tasmlabel);
  268. procedure a_cmp_ref_loc_label(list: TAsmList; size: tcgsize;cmp_op: topcmp; const ref: treference; const loc: tlocation;
  269. l : tasmlabel);
  270. procedure a_jmp_name(list : TAsmList;const s : string); virtual; abstract;
  271. procedure a_jmp_always(list : TAsmList;l: tasmlabel); virtual; abstract;
  272. {$ifdef cpuflags}
  273. procedure a_jmp_flags(list : TAsmList;const f : TResFlags;l: tasmlabel); virtual; abstract;
  274. {# Depending on the value to check in the flags, either sets the register reg to one (if the flag is set)
  275. or zero (if the flag is cleared). The size parameter indicates the destination size register.
  276. }
  277. procedure g_flags2reg(list: TAsmList; size: TCgSize; const f: tresflags; reg: TRegister); virtual; abstract;
  278. procedure g_flags2ref(list: TAsmList; size: TCgSize; const f: tresflags; const ref:TReference); virtual;
  279. {$endif cpuflags}
  280. {
  281. This routine tries to optimize the op_const_reg/ref opcode, and should be
  282. called at the start of a_op_const_reg/ref. It returns the actual opcode
  283. to emit, and the constant value to emit. This function can opcode OP_NONE to
  284. remove the opcode and OP_MOVE to replace it with a simple load
  285. @param(op The opcode to emit, returns the opcode which must be emitted)
  286. @param(a The constant which should be emitted, returns the constant which must
  287. be emitted)
  288. }
  289. procedure optimize_op_const(var op: topcg; var a : tcgint);virtual;
  290. {#
  291. This routine is used in exception management nodes. It should
  292. save the exception reason currently in the FUNCTION_RETURN_REG. The
  293. save should be done either to a temp (pointed to by href).
  294. or on the stack (pushing the value on the stack).
  295. The size of the value to save is OS_S32. The default version
  296. saves the exception reason to a temp. memory area.
  297. }
  298. procedure g_exception_reason_save(list : TAsmList; const href : treference);virtual;
  299. {#
  300. This routine is used in exception management nodes. It should
  301. save the exception reason constant. The
  302. save should be done either to a temp (pointed to by href).
  303. or on the stack (pushing the value on the stack).
  304. The size of the value to save is OS_S32. The default version
  305. saves the exception reason to a temp. memory area.
  306. }
  307. procedure g_exception_reason_save_const(list : TAsmList; const href : treference; a: tcgint);virtual;
  308. {#
  309. This routine is used in exception management nodes. It should
  310. load the exception reason to the FUNCTION_RETURN_REG. The saved value
  311. should either be in the temp. area (pointed to by href , href should
  312. *NOT* be freed) or on the stack (the value should be popped).
  313. The size of the value to save is OS_S32. The default version
  314. saves the exception reason to a temp. memory area.
  315. }
  316. procedure g_exception_reason_load(list : TAsmList; const href : treference);virtual;
  317. procedure g_maybe_testvmt(list : TAsmList;reg:tregister;objdef:tobjectdef);
  318. {# This should emit the opcode to copy len bytes from the source
  319. to destination.
  320. It must be overridden for each new target processor.
  321. @param(source Source reference of copy)
  322. @param(dest Destination reference of copy)
  323. }
  324. procedure g_concatcopy(list : TAsmList;const source,dest : treference;len : tcgint);virtual; abstract;
  325. {# This should emit the opcode to copy len bytes from the an unaligned source
  326. to destination.
  327. It must be overridden for each new target processor.
  328. @param(source Source reference of copy)
  329. @param(dest Destination reference of copy)
  330. }
  331. procedure g_concatcopy_unaligned(list : TAsmList;const source,dest : treference;len : tcgint);virtual;
  332. {# Generates overflow checking code for a node }
  333. procedure g_overflowcheck(list: TAsmList; const Loc:tlocation; def:tdef); virtual;abstract;
  334. procedure g_overflowCheck_loc(List:TAsmList;const Loc:TLocation;def:TDef;ovloc : tlocation);virtual;
  335. {# Emits instructions when compilation is done in profile
  336. mode (this is set as a command line option). The default
  337. behavior does nothing, should be overridden as required.
  338. }
  339. procedure g_profilecode(list : TAsmList);virtual;
  340. {# Emits instruction for allocating @var(size) bytes at the stackpointer
  341. @param(size Number of bytes to allocate)
  342. }
  343. procedure g_stackpointer_alloc(list : TAsmList;size : longint);virtual; abstract;
  344. {# Emits instruction for allocating the locals in entry
  345. code of a routine. This is one of the first
  346. routine called in @var(genentrycode).
  347. @param(localsize Number of bytes to allocate as locals)
  348. }
  349. procedure g_proc_entry(list : TAsmList;localsize : longint;nostackframe:boolean);virtual; abstract;
  350. {# Emits instructions for returning from a subroutine.
  351. Should also restore the framepointer and stack.
  352. @param(parasize Number of bytes of parameters to deallocate from stack)
  353. }
  354. procedure g_proc_exit(list : TAsmList;parasize:longint;nostackframe:boolean);virtual;abstract;
  355. {# This routine is called when generating the code for the entry point
  356. of a routine. It should save all registers which are not used in this
  357. routine, and which should be declared as saved in the std_saved_registers
  358. set.
  359. This routine is mainly used when linking to code which is generated
  360. by ABI-compliant compilers (like GCC), to make sure that the reserved
  361. registers of that ABI are not clobbered.
  362. @param(usedinproc Registers which are used in the code of this routine)
  363. }
  364. procedure g_save_registers(list:TAsmList);virtual;
  365. {# This routine is called when generating the code for the exit point
  366. of a routine. It should restore all registers which were previously
  367. saved in @var(g_save_standard_registers).
  368. @param(usedinproc Registers which are used in the code of this routine)
  369. }
  370. procedure g_restore_registers(list:TAsmList);virtual;
  371. procedure g_intf_wrapper(list: TAsmList; procdef: tprocdef; const labelname: string; ioffset: longint);virtual;abstract;
  372. procedure g_adjust_self_value(list:TAsmList;procdef: tprocdef;ioffset: tcgint);virtual;
  373. { generate a stub which only purpose is to pass control the given external method,
  374. setting up any additional environment before doing so (if required).
  375. The default implementation issues a jump instruction to the external name. }
  376. procedure g_external_wrapper(list : TAsmList; procdef: tprocdef; const externalname: string); virtual;
  377. { initialize the pic/got register }
  378. procedure g_maybe_got_init(list: TAsmList); virtual;
  379. { allocallcpuregisters, a_call_name, deallocallcpuregisters sequence }
  380. procedure g_call(list: TAsmList; const s: string);
  381. { Generate code to exit an unwind-protected region. The default implementation
  382. produces a simple jump to destination label. }
  383. procedure g_local_unwind(list: TAsmList; l: TAsmLabel);virtual;
  384. protected
  385. function g_indirect_sym_load(list:TAsmList;const symname: string; const flags: tindsymflags): tregister;virtual;
  386. end;
  387. {$ifndef cpu64bitalu}
  388. {# @abstract(Abstract code generator for 64 Bit operations)
  389. This class implements an abstract code generator class
  390. for 64 Bit operations.
  391. }
  392. tcg64 = class
  393. procedure a_load64_const_ref(list : TAsmList;value : int64;const ref : treference);virtual;abstract;
  394. procedure a_load64_reg_ref(list : TAsmList;reg : tregister64;const ref : treference);virtual;abstract;
  395. procedure a_load64_ref_reg(list : TAsmList;const ref : treference;reg : tregister64);virtual;abstract;
  396. procedure a_load64_reg_reg(list : TAsmList;regsrc,regdst : tregister64);virtual;abstract;
  397. procedure a_load64_const_reg(list : TAsmList;value : int64;reg : tregister64);virtual;abstract;
  398. procedure a_load64_loc_reg(list : TAsmList;const l : tlocation;reg : tregister64);virtual;abstract;
  399. procedure a_load64_loc_ref(list : TAsmList;const l : tlocation;const ref : treference);virtual;abstract;
  400. procedure a_load64_const_loc(list : TAsmList;value : int64;const l : tlocation);virtual;abstract;
  401. procedure a_load64_reg_loc(list : TAsmList;reg : tregister64;const l : tlocation);virtual;abstract;
  402. procedure a_load64_subsetref_reg(list : TAsmList; const sref: tsubsetreference; destreg: tregister64);virtual;abstract;
  403. procedure a_load64_reg_subsetref(list : TAsmList; fromreg: tregister64; const sref: tsubsetreference);virtual;abstract;
  404. procedure a_load64_const_subsetref(list: TAsmlist; a: int64; const sref: tsubsetreference);virtual;abstract;
  405. procedure a_load64_ref_subsetref(list : TAsmList; const fromref: treference; const sref: tsubsetreference);virtual;abstract;
  406. procedure a_load64_subsetref_subsetref(list: TAsmlist; const fromsref, tosref: tsubsetreference); virtual;abstract;
  407. procedure a_load64_subsetref_ref(list : TAsmList; const sref: tsubsetreference; const destref: treference); virtual;abstract;
  408. procedure a_load64_loc_subsetref(list : TAsmList; const l: tlocation; const sref : tsubsetreference);
  409. procedure a_load64_subsetref_loc(list: TAsmlist; const sref: tsubsetreference; const l: tlocation);
  410. procedure a_load64high_reg_ref(list : TAsmList;reg : tregister;const ref : treference);virtual;abstract;
  411. procedure a_load64low_reg_ref(list : TAsmList;reg : tregister;const ref : treference);virtual;abstract;
  412. procedure a_load64high_ref_reg(list : TAsmList;const ref : treference;reg : tregister);virtual;abstract;
  413. procedure a_load64low_ref_reg(list : TAsmList;const ref : treference;reg : tregister);virtual;abstract;
  414. procedure a_load64high_loc_reg(list : TAsmList;const l : tlocation;reg : tregister);virtual;abstract;
  415. procedure a_load64low_loc_reg(list : TAsmList;const l : tlocation;reg : tregister);virtual;abstract;
  416. procedure a_op64_ref_reg(list : TAsmList;op:TOpCG;size : tcgsize;const ref : treference;reg : tregister64);virtual;abstract;
  417. procedure a_op64_reg_reg(list : TAsmList;op:TOpCG;size : tcgsize;regsrc,regdst : tregister64);virtual;abstract;
  418. procedure a_op64_reg_ref(list : TAsmList;op:TOpCG;size : tcgsize;regsrc : tregister64;const ref : treference);virtual;abstract;
  419. procedure a_op64_const_reg(list : TAsmList;op:TOpCG;size : tcgsize;value : int64;regdst : tregister64);virtual;abstract;
  420. procedure a_op64_const_ref(list : TAsmList;op:TOpCG;size : tcgsize;value : int64;const ref : treference);virtual;abstract;
  421. procedure a_op64_const_loc(list : TAsmList;op:TOpCG;size : tcgsize;value : int64;const l: tlocation);virtual;abstract;
  422. procedure a_op64_reg_loc(list : TAsmList;op:TOpCG;size : tcgsize;reg : tregister64;const l : tlocation);virtual;abstract;
  423. procedure a_op64_loc_reg(list : TAsmList;op:TOpCG;size : tcgsize;const l : tlocation;reg64 : tregister64);virtual;abstract;
  424. procedure a_op64_const_reg_reg(list: TAsmList;op:TOpCG;size : tcgsize;value : int64;regsrc,regdst : tregister64);virtual;
  425. procedure a_op64_reg_reg_reg(list: TAsmList;op:TOpCG;size : tcgsize;regsrc1,regsrc2,regdst : tregister64);virtual;
  426. procedure a_op64_const_reg_reg_checkoverflow(list: TAsmList;op:TOpCG;size : tcgsize;value : int64;regsrc,regdst : tregister64;setflags : boolean;var ovloc : tlocation);virtual;
  427. procedure a_op64_reg_reg_reg_checkoverflow(list: TAsmList;op:TOpCG;size : tcgsize;regsrc1,regsrc2,regdst : tregister64;setflags : boolean;var ovloc : tlocation);virtual;
  428. procedure a_op64_const_subsetref(list : TAsmList; Op : TOpCG; size : TCGSize; a : int64; const sref: tsubsetreference);
  429. procedure a_op64_reg_subsetref(list : TAsmList; Op : TOpCG; size : TCGSize; reg: tregister64; const sref: tsubsetreference);
  430. procedure a_op64_ref_subsetref(list : TAsmList; Op : TOpCG; size : TCGSize; const ref: treference; const sref: tsubsetreference);
  431. procedure a_op64_subsetref_subsetref(list : TAsmList; Op : TOpCG; size : TCGSize; const ssref,dsref: tsubsetreference);
  432. procedure a_load64_reg_cgpara(list : TAsmList;reg64 : tregister64;const loc : TCGPara);virtual;abstract;
  433. procedure a_load64_const_cgpara(list : TAsmList;value : int64;const loc : TCGPara);virtual;abstract;
  434. procedure a_load64_ref_cgpara(list : TAsmList;const r : treference;const loc : TCGPara);virtual;abstract;
  435. procedure a_load64_loc_cgpara(list : TAsmList;const l : tlocation;const loc : TCGPara);virtual;abstract;
  436. procedure a_loadmm_intreg64_reg(list: TAsmList; mmsize: tcgsize; intreg: tregister64; mmreg: tregister); virtual;abstract;
  437. procedure a_loadmm_reg_intreg64(list: TAsmList; mmsize: tcgsize; mmreg: tregister; intreg: tregister64); virtual;abstract;
  438. {
  439. This routine tries to optimize the const_reg opcode, and should be
  440. called at the start of a_op64_const_reg. It returns the actual opcode
  441. to emit, and the constant value to emit. If this routine returns
  442. TRUE, @var(no) instruction should be emitted (.eg : imul reg by 1 )
  443. @param(op The opcode to emit, returns the opcode which must be emitted)
  444. @param(a The constant which should be emitted, returns the constant which must
  445. be emitted)
  446. @param(reg The register to emit the opcode with, returns the register with
  447. which the opcode will be emitted)
  448. }
  449. function optimize64_op_const_reg(list: TAsmList; var op: topcg; var a : int64; var reg: tregister64): boolean;virtual;abstract;
  450. { override to catch 64bit rangechecks }
  451. procedure g_rangecheck64(list: TAsmList; const l:tlocation; fromdef,todef: tdef);virtual;abstract;
  452. end;
  453. {$endif cpu64bitalu}
  454. var
  455. {# Main code generator class }
  456. cg : tcg;
  457. {$ifndef cpu64bitalu}
  458. {# Code generator class for all operations working with 64-Bit operands }
  459. cg64 : tcg64;
  460. {$endif cpu64bitalu}
  461. function asmsym2indsymflags(sym: TAsmSymbol): tindsymflags;
  462. procedure destroy_codegen;
  463. implementation
  464. uses
  465. globals,options,systems,
  466. verbose,defutil,paramgr,symsym,
  467. tgobj,cutils,procinfo,
  468. ncgrtti;
  469. {*****************************************************************************
  470. basic functionallity
  471. ******************************************************************************}
  472. constructor tcg.create;
  473. begin
  474. end;
  475. {*****************************************************************************
  476. register allocation
  477. ******************************************************************************}
  478. procedure tcg.init_register_allocators;
  479. begin
  480. fillchar(rg,sizeof(rg),0);
  481. add_reg_instruction_hook:=@add_reg_instruction;
  482. executionweight:=1;
  483. end;
  484. procedure tcg.done_register_allocators;
  485. begin
  486. { Safety }
  487. fillchar(rg,sizeof(rg),0);
  488. add_reg_instruction_hook:=nil;
  489. end;
  490. {$ifdef flowgraph}
  491. procedure Tcg.init_flowgraph;
  492. begin
  493. aktflownode:=0;
  494. end;
  495. procedure Tcg.done_flowgraph;
  496. begin
  497. end;
  498. {$endif}
  499. function tcg.getintregister(list:TAsmList;size:Tcgsize):Tregister;
  500. begin
  501. if not assigned(rg[R_INTREGISTER]) then
  502. internalerror(200312122);
  503. result:=rg[R_INTREGISTER].getregister(list,cgsize2subreg(R_INTREGISTER,size));
  504. end;
  505. function tcg.getfpuregister(list:TAsmList;size:Tcgsize):Tregister;
  506. begin
  507. if not assigned(rg[R_FPUREGISTER]) then
  508. internalerror(200312123);
  509. result:=rg[R_FPUREGISTER].getregister(list,cgsize2subreg(R_FPUREGISTER,size));
  510. end;
  511. function tcg.getmmregister(list:TAsmList;size:Tcgsize):Tregister;
  512. begin
  513. if not assigned(rg[R_MMREGISTER]) then
  514. internalerror(2003121214);
  515. result:=rg[R_MMREGISTER].getregister(list,cgsize2subreg(R_MMREGISTER,size));
  516. end;
  517. function tcg.getaddressregister(list:TAsmList):Tregister;
  518. begin
  519. if assigned(rg[R_ADDRESSREGISTER]) then
  520. result:=rg[R_ADDRESSREGISTER].getregister(list,R_SUBWHOLE)
  521. else
  522. begin
  523. if not assigned(rg[R_INTREGISTER]) then
  524. internalerror(200312121);
  525. result:=rg[R_INTREGISTER].getregister(list,R_SUBWHOLE);
  526. end;
  527. end;
  528. function Tcg.makeregsize(list:TAsmList;reg:Tregister;size:Tcgsize):Tregister;
  529. var
  530. subreg:Tsubregister;
  531. begin
  532. subreg:=cgsize2subreg(getregtype(reg),size);
  533. result:=reg;
  534. setsubreg(result,subreg);
  535. { notify RA }
  536. if result<>reg then
  537. list.concat(tai_regalloc.resize(result));
  538. end;
  539. procedure tcg.getcpuregister(list:TAsmList;r:Tregister);
  540. begin
  541. if not assigned(rg[getregtype(r)]) then
  542. internalerror(200312125);
  543. rg[getregtype(r)].getcpuregister(list,r);
  544. end;
  545. procedure tcg.ungetcpuregister(list:TAsmList;r:Tregister);
  546. begin
  547. if not assigned(rg[getregtype(r)]) then
  548. internalerror(200312126);
  549. rg[getregtype(r)].ungetcpuregister(list,r);
  550. end;
  551. procedure tcg.alloccpuregisters(list:TAsmList;rt:Tregistertype;const r:Tcpuregisterset);
  552. begin
  553. if assigned(rg[rt]) then
  554. rg[rt].alloccpuregisters(list,r)
  555. else
  556. internalerror(200310092);
  557. end;
  558. procedure tcg.allocallcpuregisters(list:TAsmList);
  559. begin
  560. alloccpuregisters(list,R_INTREGISTER,paramanager.get_volatile_registers_int(pocall_default));
  561. {$if not(defined(i386)) and not(defined(avr))}
  562. if uses_registers(R_FPUREGISTER) then
  563. alloccpuregisters(list,R_FPUREGISTER,paramanager.get_volatile_registers_fpu(pocall_default));
  564. {$ifdef cpumm}
  565. if uses_registers(R_MMREGISTER) then
  566. alloccpuregisters(list,R_MMREGISTER,paramanager.get_volatile_registers_mm(pocall_default));
  567. {$endif cpumm}
  568. {$endif not(defined(i386)) and not(defined(avr))}
  569. end;
  570. procedure tcg.dealloccpuregisters(list:TAsmList;rt:Tregistertype;const r:Tcpuregisterset);
  571. begin
  572. if assigned(rg[rt]) then
  573. rg[rt].dealloccpuregisters(list,r)
  574. else
  575. internalerror(200310093);
  576. end;
  577. procedure tcg.deallocallcpuregisters(list:TAsmList);
  578. begin
  579. dealloccpuregisters(list,R_INTREGISTER,paramanager.get_volatile_registers_int(pocall_default));
  580. {$if not(defined(i386)) and not(defined(avr))}
  581. if uses_registers(R_FPUREGISTER) then
  582. dealloccpuregisters(list,R_FPUREGISTER,paramanager.get_volatile_registers_fpu(pocall_default));
  583. {$ifdef cpumm}
  584. if uses_registers(R_MMREGISTER) then
  585. dealloccpuregisters(list,R_MMREGISTER,paramanager.get_volatile_registers_mm(pocall_default));
  586. {$endif cpumm}
  587. {$endif not(defined(i386)) and not(defined(avr))}
  588. end;
  589. function tcg.uses_registers(rt:Tregistertype):boolean;
  590. begin
  591. if assigned(rg[rt]) then
  592. result:=rg[rt].uses_registers
  593. else
  594. result:=false;
  595. end;
  596. procedure tcg.add_reg_instruction(instr:Tai;r:tregister);
  597. var
  598. rt : tregistertype;
  599. begin
  600. rt:=getregtype(r);
  601. { Only add it when a register allocator is configured.
  602. No IE can be generated, because the VMT is written
  603. without a valid rg[] }
  604. if assigned(rg[rt]) then
  605. rg[rt].add_reg_instruction(instr,r,cg.executionweight);
  606. end;
  607. procedure tcg.add_move_instruction(instr:Taicpu);
  608. var
  609. rt : tregistertype;
  610. begin
  611. rt:=getregtype(instr.oper[O_MOV_SOURCE]^.reg);
  612. if assigned(rg[rt]) then
  613. rg[rt].add_move_instruction(instr)
  614. else
  615. internalerror(200310095);
  616. end;
  617. procedure tcg.set_regalloc_live_range_direction(dir: TRADirection);
  618. var
  619. rt : tregistertype;
  620. begin
  621. for rt:=low(rg) to high(rg) do
  622. begin
  623. if assigned(rg[rt]) then
  624. rg[rt].live_range_direction:=dir;
  625. end;
  626. end;
  627. procedure tcg.do_register_allocation(list:TAsmList;headertai:tai);
  628. var
  629. rt : tregistertype;
  630. begin
  631. for rt:=R_FPUREGISTER to R_SPECIALREGISTER do
  632. begin
  633. if assigned(rg[rt]) then
  634. rg[rt].do_register_allocation(list,headertai);
  635. end;
  636. { running the other register allocator passes could require addition int/addr. registers
  637. when spilling so run int/addr register allocation at the end }
  638. if assigned(rg[R_INTREGISTER]) then
  639. rg[R_INTREGISTER].do_register_allocation(list,headertai);
  640. if assigned(rg[R_ADDRESSREGISTER]) then
  641. rg[R_ADDRESSREGISTER].do_register_allocation(list,headertai);
  642. end;
  643. procedure tcg.translate_register(var reg : tregister);
  644. begin
  645. rg[getregtype(reg)].translate_register(reg);
  646. end;
  647. procedure tcg.a_reg_alloc(list : TAsmList;r : tregister);
  648. begin
  649. list.concat(tai_regalloc.alloc(r,nil));
  650. end;
  651. procedure tcg.a_reg_dealloc(list : TAsmList;r : tregister);
  652. begin
  653. list.concat(tai_regalloc.dealloc(r,nil));
  654. end;
  655. procedure tcg.a_reg_sync(list : TAsmList;r : tregister);
  656. var
  657. instr : tai;
  658. begin
  659. instr:=tai_regalloc.sync(r);
  660. list.concat(instr);
  661. add_reg_instruction(instr,r);
  662. end;
  663. procedure tcg.a_label(list : TAsmList;l : tasmlabel);
  664. begin
  665. list.concat(tai_label.create(l));
  666. end;
  667. {*****************************************************************************
  668. for better code generation these methods should be overridden
  669. ******************************************************************************}
  670. procedure tcg.a_load_reg_cgpara(list : TAsmList;size : tcgsize;r : tregister;const cgpara : TCGPara);
  671. var
  672. ref : treference;
  673. tmpreg : tregister;
  674. begin
  675. cgpara.check_simple_location;
  676. paramanager.alloccgpara(list,cgpara);
  677. if cgpara.location^.shiftval<0 then
  678. begin
  679. tmpreg:=getintregister(list,cgpara.location^.size);
  680. a_op_const_reg_reg(list,OP_SHL,cgpara.location^.size,-cgpara.location^.shiftval,r,tmpreg);
  681. r:=tmpreg;
  682. end;
  683. case cgpara.location^.loc of
  684. LOC_REGISTER,LOC_CREGISTER:
  685. a_load_reg_reg(list,size,cgpara.location^.size,r,cgpara.location^.register);
  686. LOC_REFERENCE,LOC_CREFERENCE:
  687. begin
  688. reference_reset_base(ref,cgpara.location^.reference.index,cgpara.location^.reference.offset,cgpara.alignment);
  689. a_load_reg_ref(list,size,cgpara.location^.size,r,ref);
  690. end;
  691. LOC_MMREGISTER,LOC_CMMREGISTER:
  692. a_loadmm_intreg_reg(list,size,cgpara.location^.size,r,cgpara.location^.register,mms_movescalar);
  693. LOC_FPUREGISTER,LOC_CFPUREGISTER:
  694. begin
  695. tg.GetTemp(list,TCGSize2Size[size],TCGSize2Size[size],tt_normal,ref);
  696. a_load_reg_ref(list,size,size,r,ref);
  697. a_loadfpu_ref_cgpara(list,cgpara.location^.size,ref,cgpara);
  698. tg.Ungettemp(list,ref);
  699. end
  700. else
  701. internalerror(2002071004);
  702. end;
  703. end;
  704. procedure tcg.a_load_const_cgpara(list : TAsmList;size : tcgsize;a : tcgint;const cgpara : TCGPara);
  705. var
  706. ref : treference;
  707. begin
  708. cgpara.check_simple_location;
  709. paramanager.alloccgpara(list,cgpara);
  710. if cgpara.location^.shiftval<0 then
  711. a:=a shl -cgpara.location^.shiftval;
  712. case cgpara.location^.loc of
  713. LOC_REGISTER,LOC_CREGISTER:
  714. a_load_const_reg(list,cgpara.location^.size,a,cgpara.location^.register);
  715. LOC_REFERENCE,LOC_CREFERENCE:
  716. begin
  717. reference_reset_base(ref,cgpara.location^.reference.index,cgpara.location^.reference.offset,cgpara.alignment);
  718. a_load_const_ref(list,cgpara.location^.size,a,ref);
  719. end
  720. else
  721. internalerror(2010053109);
  722. end;
  723. end;
  724. procedure tcg.a_load_ref_cgpara(list : TAsmList;size : tcgsize;const r : treference;const cgpara : TCGPara);
  725. var
  726. tmpref, ref: treference;
  727. tmpreg: tregister;
  728. location: pcgparalocation;
  729. orgsizeleft,
  730. sizeleft: tcgint;
  731. reghasvalue: boolean;
  732. begin
  733. location:=cgpara.location;
  734. tmpref:=r;
  735. sizeleft:=cgpara.intsize;
  736. while assigned(location) do
  737. begin
  738. paramanager.allocparaloc(list,location);
  739. case location^.loc of
  740. LOC_REGISTER,LOC_CREGISTER:
  741. begin
  742. { Parameter locations are often allocated in multiples of
  743. entire registers. If a parameter only occupies a part of
  744. such a register (e.g. a 16 bit int on a 32 bit
  745. architecture), the size of this parameter can only be
  746. determined by looking at the "size" parameter of this
  747. method -> if the size parameter is <= sizeof(aint), then
  748. we check that there is only one parameter location and
  749. then use this "size" to load the value into the parameter
  750. location }
  751. if (size<>OS_NO) and
  752. (tcgsize2size[size]<=sizeof(aint)) then
  753. begin
  754. cgpara.check_simple_location;
  755. a_load_ref_reg(list,size,location^.size,tmpref,location^.register);
  756. if location^.shiftval<0 then
  757. a_op_const_reg(list,OP_SHL,location^.size,-location^.shiftval,location^.register);
  758. end
  759. { there's a lot more data left, and the current paraloc's
  760. register is entirely filled with part of that data }
  761. else if (sizeleft>sizeof(aint)) then
  762. begin
  763. a_load_ref_reg(list,location^.size,location^.size,tmpref,location^.register);
  764. end
  765. { we're at the end of the data, and it can be loaded into
  766. the current location's register with a single regular
  767. load }
  768. else if (sizeleft in [1,2{$ifndef cpu16bitalu},4{$endif}{$ifdef cpu64bitalu},8{$endif}]) then
  769. begin
  770. a_load_ref_reg(list,int_cgsize(sizeleft),location^.size,tmpref,location^.register);
  771. if location^.shiftval<0 then
  772. a_op_const_reg(list,OP_SHL,location^.size,-location^.shiftval,location^.register);
  773. end
  774. { we're at the end of the data, and we need multiple loads
  775. to get it in the register because it's an irregular size }
  776. else
  777. begin
  778. { should be the last part }
  779. if assigned(location^.next) then
  780. internalerror(2010052907);
  781. { load the value piecewise to get it into the register }
  782. orgsizeleft:=sizeleft;
  783. reghasvalue:=false;
  784. {$ifdef cpu64bitalu}
  785. if sizeleft>=4 then
  786. begin
  787. a_load_ref_reg(list,OS_32,location^.size,tmpref,location^.register);
  788. dec(sizeleft,4);
  789. if target_info.endian=endian_big then
  790. a_op_const_reg(list,OP_SHL,location^.size,sizeleft*8,location^.register);
  791. inc(tmpref.offset,4);
  792. reghasvalue:=true;
  793. end;
  794. {$endif cpu64bitalu}
  795. if sizeleft>=2 then
  796. begin
  797. tmpreg:=getintregister(list,location^.size);
  798. a_load_ref_reg(list,OS_16,location^.size,tmpref,tmpreg);
  799. dec(sizeleft,2);
  800. if reghasvalue then
  801. begin
  802. if target_info.endian=endian_big then
  803. a_op_const_reg(list,OP_SHL,location^.size,sizeleft*8,tmpreg)
  804. else
  805. a_op_const_reg(list,OP_SHL,location^.size,(orgsizeleft-(sizeleft+2))*8,tmpreg);
  806. a_op_reg_reg(list,OP_OR,location^.size,tmpreg,location^.register);
  807. end
  808. else
  809. begin
  810. if target_info.endian=endian_big then
  811. a_op_const_reg_reg(list,OP_SHL,location^.size,sizeleft*8,tmpreg,location^.register)
  812. else
  813. a_load_reg_reg(list,location^.size,location^.size,tmpreg,location^.register);
  814. end;
  815. inc(tmpref.offset,2);
  816. reghasvalue:=true;
  817. end;
  818. if sizeleft=1 then
  819. begin
  820. tmpreg:=getintregister(list,location^.size);
  821. a_load_ref_reg(list,OS_8,location^.size,tmpref,tmpreg);
  822. dec(sizeleft,1);
  823. if reghasvalue then
  824. begin
  825. if target_info.endian=endian_little then
  826. a_op_const_reg(list,OP_SHL,location^.size,(orgsizeleft-(sizeleft+1))*8,tmpreg);
  827. a_op_reg_reg(list,OP_OR,location^.size,tmpreg,location^.register)
  828. end
  829. else
  830. a_load_reg_reg(list,location^.size,location^.size,tmpreg,location^.register);
  831. inc(tmpref.offset);
  832. end;
  833. if location^.shiftval<0 then
  834. a_op_const_reg(list,OP_SHL,location^.size,-location^.shiftval,location^.register);
  835. { the loop will already adjust the offset and sizeleft }
  836. dec(tmpref.offset,orgsizeleft);
  837. sizeleft:=orgsizeleft;
  838. end;
  839. end;
  840. LOC_REFERENCE,LOC_CREFERENCE:
  841. begin
  842. if assigned(location^.next) then
  843. internalerror(2010052906);
  844. reference_reset_base(ref,location^.reference.index,location^.reference.offset,newalignment(cgpara.alignment,cgpara.intsize-sizeleft));
  845. if (size <> OS_NO) and
  846. (tcgsize2size[size] <= sizeof(aint)) then
  847. a_load_ref_ref(list,size,location^.size,tmpref,ref)
  848. else
  849. { use concatcopy, because the parameter can be larger than }
  850. { what the OS_* constants can handle }
  851. g_concatcopy(list,tmpref,ref,sizeleft);
  852. end;
  853. LOC_MMREGISTER,LOC_CMMREGISTER:
  854. begin
  855. case location^.size of
  856. OS_F32,
  857. OS_F64,
  858. OS_F128:
  859. a_loadmm_ref_reg(list,location^.size,location^.size,tmpref,location^.register,mms_movescalar);
  860. OS_M8..OS_M128,
  861. OS_MS8..OS_MS128:
  862. a_loadmm_ref_reg(list,location^.size,location^.size,tmpref,location^.register,nil);
  863. else
  864. internalerror(2010053101);
  865. end;
  866. end
  867. else
  868. internalerror(2010053111);
  869. end;
  870. inc(tmpref.offset,tcgsize2size[location^.size]);
  871. dec(sizeleft,tcgsize2size[location^.size]);
  872. location:=location^.next;
  873. end;
  874. end;
  875. procedure tcg.a_load_loc_cgpara(list : TAsmList;const l:tlocation;const cgpara : TCGPara);
  876. begin
  877. case l.loc of
  878. LOC_REGISTER,
  879. LOC_CREGISTER :
  880. a_load_reg_cgpara(list,l.size,l.register,cgpara);
  881. LOC_CONSTANT :
  882. a_load_const_cgpara(list,l.size,l.value,cgpara);
  883. LOC_CREFERENCE,
  884. LOC_REFERENCE :
  885. a_load_ref_cgpara(list,l.size,l.reference,cgpara);
  886. else
  887. internalerror(2002032211);
  888. end;
  889. end;
  890. procedure tcg.a_loadaddr_ref_cgpara(list : TAsmList;const r : treference;const cgpara : TCGPara);
  891. var
  892. hr : tregister;
  893. begin
  894. cgpara.check_simple_location;
  895. if cgpara.location^.loc in [LOC_CREGISTER,LOC_REGISTER] then
  896. begin
  897. paramanager.allocparaloc(list,cgpara.location);
  898. a_loadaddr_ref_reg(list,r,cgpara.location^.register)
  899. end
  900. else
  901. begin
  902. hr:=getaddressregister(list);
  903. a_loadaddr_ref_reg(list,r,hr);
  904. a_load_reg_cgpara(list,OS_ADDR,hr,cgpara);
  905. end;
  906. end;
  907. procedure tcg.a_load_cgparaloc_ref(list : TAsmList;const paraloc : TCGParaLocation;const ref : treference;sizeleft : tcgint;align : longint);
  908. var
  909. href : treference;
  910. hreg : tregister;
  911. cgsize: tcgsize;
  912. begin
  913. case paraloc.loc of
  914. LOC_REGISTER :
  915. begin
  916. hreg:=paraloc.register;
  917. cgsize:=paraloc.size;
  918. if paraloc.shiftval>0 then
  919. a_op_const_reg_reg(list,OP_SHL,OS_INT,paraloc.shiftval,paraloc.register,paraloc.register)
  920. else if (paraloc.shiftval<0) and
  921. (sizeleft in [1,2,4]) then
  922. begin
  923. a_op_const_reg_reg(list,OP_SHR,OS_INT,-paraloc.shiftval,paraloc.register,paraloc.register);
  924. { convert to a register of 1/2/4 bytes in size, since the
  925. original register had to be made larger to be able to hold
  926. the shifted value }
  927. cgsize:=int_cgsize(tcgsize2size[OS_INT]-(-paraloc.shiftval div 8));
  928. hreg:=getintregister(list,cgsize);
  929. a_load_reg_reg(list,OS_INT,cgsize,paraloc.register,hreg);
  930. end;
  931. a_load_reg_ref(list,paraloc.size,cgsize,hreg,ref);
  932. end;
  933. LOC_MMREGISTER :
  934. begin
  935. case paraloc.size of
  936. OS_F32,
  937. OS_F64,
  938. OS_F128:
  939. a_loadmm_reg_ref(list,paraloc.size,paraloc.size,paraloc.register,ref,mms_movescalar);
  940. OS_M8..OS_M128,
  941. OS_MS8..OS_MS128:
  942. a_loadmm_reg_ref(list,paraloc.size,paraloc.size,paraloc.register,ref,nil);
  943. else
  944. internalerror(2010053102);
  945. end;
  946. end;
  947. LOC_FPUREGISTER :
  948. cg.a_loadfpu_reg_ref(list,paraloc.size,paraloc.size,paraloc.register,ref);
  949. LOC_REFERENCE :
  950. begin
  951. reference_reset_base(href,paraloc.reference.index,paraloc.reference.offset,align);
  952. { use concatcopy, because it can also be a float which fails when
  953. load_ref_ref is used. Don't copy data when the references are equal }
  954. if not((href.base=ref.base) and (href.offset=ref.offset)) then
  955. g_concatcopy(list,href,ref,sizeleft);
  956. end;
  957. else
  958. internalerror(2002081302);
  959. end;
  960. end;
  961. procedure tcg.a_load_cgparaloc_anyreg(list: TAsmList;regsize: tcgsize;const paraloc: TCGParaLocation;reg: tregister;align: longint);
  962. var
  963. href : treference;
  964. begin
  965. case paraloc.loc of
  966. LOC_REGISTER :
  967. begin
  968. if paraloc.shiftval<0 then
  969. a_op_const_reg_reg(list,OP_SHR,OS_INT,-paraloc.shiftval,paraloc.register,paraloc.register);
  970. case getregtype(reg) of
  971. R_INTREGISTER:
  972. a_load_reg_reg(list,paraloc.size,regsize,paraloc.register,reg);
  973. R_MMREGISTER:
  974. a_loadmm_intreg_reg(list,paraloc.size,regsize,paraloc.register,reg,mms_movescalar);
  975. else
  976. internalerror(2009112422);
  977. end;
  978. end;
  979. LOC_MMREGISTER :
  980. begin
  981. case getregtype(reg) of
  982. R_INTREGISTER:
  983. a_loadmm_reg_intreg(list,paraloc.size,regsize,paraloc.register,reg,mms_movescalar);
  984. R_MMREGISTER:
  985. begin
  986. case paraloc.size of
  987. OS_F32,
  988. OS_F64,
  989. OS_F128:
  990. a_loadmm_reg_reg(list,paraloc.size,regsize,paraloc.register,reg,mms_movescalar);
  991. OS_M8..OS_M128,
  992. OS_MS8..OS_MS128:
  993. a_loadmm_reg_reg(list,paraloc.size,paraloc.size,paraloc.register,reg,nil);
  994. else
  995. internalerror(2010053102);
  996. end;
  997. end;
  998. else
  999. internalerror(2010053104);
  1000. end;
  1001. end;
  1002. LOC_FPUREGISTER :
  1003. a_loadfpu_reg_reg(list,paraloc.size,regsize,paraloc.register,reg);
  1004. LOC_REFERENCE :
  1005. begin
  1006. reference_reset_base(href,paraloc.reference.index,paraloc.reference.offset,align);
  1007. case getregtype(reg) of
  1008. R_INTREGISTER :
  1009. a_load_ref_reg(list,paraloc.size,regsize,href,reg);
  1010. R_FPUREGISTER :
  1011. a_loadfpu_ref_reg(list,paraloc.size,regsize,href,reg);
  1012. R_MMREGISTER :
  1013. { not paraloc.size, because it may be OS_64 instead of
  1014. OS_F64 in case the parameter is passed using integer
  1015. conventions (e.g., on ARM) }
  1016. a_loadmm_ref_reg(list,regsize,regsize,href,reg,mms_movescalar);
  1017. else
  1018. internalerror(2004101012);
  1019. end;
  1020. end;
  1021. else
  1022. internalerror(2002081302);
  1023. end;
  1024. end;
  1025. {****************************************************************************
  1026. some generic implementations
  1027. ****************************************************************************}
  1028. { memory/register loading }
  1029. procedure tcg.a_load_reg_ref_unaligned(list : TAsmList;fromsize,tosize : tcgsize;register : tregister;const ref : treference);
  1030. var
  1031. tmpref : treference;
  1032. tmpreg : tregister;
  1033. i : longint;
  1034. begin
  1035. if ref.alignment<tcgsize2size[fromsize] then
  1036. begin
  1037. tmpref:=ref;
  1038. { we take care of the alignment now }
  1039. tmpref.alignment:=0;
  1040. case FromSize of
  1041. OS_16,OS_S16:
  1042. begin
  1043. tmpreg:=getintregister(list,OS_16);
  1044. a_load_reg_reg(list,fromsize,OS_16,register,tmpreg);
  1045. if target_info.endian=endian_big then
  1046. inc(tmpref.offset);
  1047. tmpreg:=makeregsize(list,tmpreg,OS_8);
  1048. a_load_reg_ref(list,OS_8,OS_8,tmpreg,tmpref);
  1049. tmpreg:=makeregsize(list,tmpreg,OS_16);
  1050. a_op_const_reg(list,OP_SHR,OS_16,8,tmpreg);
  1051. if target_info.endian=endian_big then
  1052. dec(tmpref.offset)
  1053. else
  1054. inc(tmpref.offset);
  1055. tmpreg:=makeregsize(list,tmpreg,OS_8);
  1056. a_load_reg_ref(list,OS_8,OS_8,tmpreg,tmpref);
  1057. end;
  1058. OS_32,OS_S32:
  1059. begin
  1060. { could add an optimised case for ref.alignment=2 }
  1061. tmpreg:=getintregister(list,OS_32);
  1062. a_load_reg_reg(list,fromsize,OS_32,register,tmpreg);
  1063. if target_info.endian=endian_big then
  1064. inc(tmpref.offset,3);
  1065. tmpreg:=makeregsize(list,tmpreg,OS_8);
  1066. a_load_reg_ref(list,OS_8,OS_8,tmpreg,tmpref);
  1067. tmpreg:=makeregsize(list,tmpreg,OS_32);
  1068. for i:=1 to 3 do
  1069. begin
  1070. a_op_const_reg(list,OP_SHR,OS_32,8,tmpreg);
  1071. if target_info.endian=endian_big then
  1072. dec(tmpref.offset)
  1073. else
  1074. inc(tmpref.offset);
  1075. tmpreg:=makeregsize(list,tmpreg,OS_8);
  1076. a_load_reg_ref(list,OS_8,OS_8,tmpreg,tmpref);
  1077. tmpreg:=makeregsize(list,tmpreg,OS_32);
  1078. end;
  1079. end
  1080. else
  1081. a_load_reg_ref(list,fromsize,tosize,register,tmpref);
  1082. end;
  1083. end
  1084. else
  1085. a_load_reg_ref(list,fromsize,tosize,register,ref);
  1086. end;
  1087. procedure tcg.a_load_ref_reg_unaligned(list : TAsmList;fromsize,tosize : tcgsize;const ref : treference;register : tregister);
  1088. var
  1089. tmpref : treference;
  1090. tmpreg,
  1091. tmpreg2 : tregister;
  1092. i : longint;
  1093. begin
  1094. if ref.alignment in [1,2] then
  1095. begin
  1096. tmpref:=ref;
  1097. { we take care of the alignment now }
  1098. tmpref.alignment:=0;
  1099. case FromSize of
  1100. OS_16,OS_S16:
  1101. if ref.alignment=2 then
  1102. a_load_ref_reg(list,fromsize,tosize,tmpref,register)
  1103. else
  1104. begin
  1105. { first load in tmpreg, because the target register }
  1106. { may be used in ref as well }
  1107. if target_info.endian=endian_little then
  1108. inc(tmpref.offset);
  1109. tmpreg:=getintregister(list,OS_8);
  1110. a_load_ref_reg(list,OS_8,OS_8,tmpref,tmpreg);
  1111. tmpreg:=makeregsize(list,tmpreg,OS_16);
  1112. a_op_const_reg(list,OP_SHL,OS_16,8,tmpreg);
  1113. if target_info.endian=endian_little then
  1114. dec(tmpref.offset)
  1115. else
  1116. inc(tmpref.offset);
  1117. a_load_ref_reg(list,OS_8,OS_16,tmpref,register);
  1118. a_op_reg_reg(list,OP_OR,OS_16,tmpreg,register);
  1119. end;
  1120. OS_32,OS_S32:
  1121. if ref.alignment=2 then
  1122. begin
  1123. if target_info.endian=endian_little then
  1124. inc(tmpref.offset,2);
  1125. tmpreg:=getintregister(list,OS_32);
  1126. a_load_ref_reg(list,OS_16,OS_32,tmpref,tmpreg);
  1127. a_op_const_reg(list,OP_SHL,OS_32,16,tmpreg);
  1128. if target_info.endian=endian_little then
  1129. dec(tmpref.offset,2)
  1130. else
  1131. inc(tmpref.offset,2);
  1132. a_load_ref_reg(list,OS_16,OS_32,tmpref,register);
  1133. a_op_reg_reg(list,OP_OR,OS_32,tmpreg,register);
  1134. end
  1135. else
  1136. begin
  1137. if target_info.endian=endian_little then
  1138. inc(tmpref.offset,3);
  1139. tmpreg:=getintregister(list,OS_32);
  1140. a_load_ref_reg(list,OS_8,OS_32,tmpref,tmpreg);
  1141. tmpreg2:=getintregister(list,OS_32);
  1142. for i:=1 to 3 do
  1143. begin
  1144. a_op_const_reg(list,OP_SHL,OS_32,8,tmpreg);
  1145. if target_info.endian=endian_little then
  1146. dec(tmpref.offset)
  1147. else
  1148. inc(tmpref.offset);
  1149. a_load_ref_reg(list,OS_8,OS_32,tmpref,tmpreg2);
  1150. a_op_reg_reg(list,OP_OR,OS_32,tmpreg2,tmpreg);
  1151. end;
  1152. a_load_reg_reg(list,OS_32,OS_32,tmpreg,register);
  1153. end
  1154. else
  1155. a_load_ref_reg(list,fromsize,tosize,tmpref,register);
  1156. end;
  1157. end
  1158. else
  1159. a_load_ref_reg(list,fromsize,tosize,ref,register);
  1160. end;
  1161. procedure tcg.a_load_ref_ref(list : TAsmList;fromsize,tosize : tcgsize;const sref : treference;const dref : treference);
  1162. var
  1163. tmpreg: tregister;
  1164. begin
  1165. { verify if we have the same reference }
  1166. if references_equal(sref,dref) then
  1167. exit;
  1168. tmpreg:=getintregister(list,tosize);
  1169. a_load_ref_reg(list,fromsize,tosize,sref,tmpreg);
  1170. a_load_reg_ref(list,tosize,tosize,tmpreg,dref);
  1171. end;
  1172. procedure tcg.a_load_const_ref(list : TAsmList;size : tcgsize;a : tcgint;const ref : treference);
  1173. var
  1174. tmpreg: tregister;
  1175. begin
  1176. tmpreg:=getintregister(list,size);
  1177. a_load_const_reg(list,size,a,tmpreg);
  1178. a_load_reg_ref(list,size,size,tmpreg,ref);
  1179. end;
  1180. procedure tcg.a_load_const_loc(list : TAsmList;a : tcgint;const loc: tlocation);
  1181. begin
  1182. case loc.loc of
  1183. LOC_REFERENCE,LOC_CREFERENCE:
  1184. a_load_const_ref(list,loc.size,a,loc.reference);
  1185. LOC_REGISTER,LOC_CREGISTER:
  1186. a_load_const_reg(list,loc.size,a,loc.register);
  1187. else
  1188. internalerror(200203272);
  1189. end;
  1190. end;
  1191. procedure tcg.a_load_reg_loc(list : TAsmList;fromsize : tcgsize;reg : tregister;const loc: tlocation);
  1192. begin
  1193. case loc.loc of
  1194. LOC_REFERENCE,LOC_CREFERENCE:
  1195. a_load_reg_ref(list,fromsize,loc.size,reg,loc.reference);
  1196. LOC_REGISTER,LOC_CREGISTER:
  1197. a_load_reg_reg(list,fromsize,loc.size,reg,loc.register);
  1198. LOC_MMREGISTER,LOC_CMMREGISTER:
  1199. a_loadmm_intreg_reg(list,fromsize,loc.size,reg,loc.register,mms_movescalar);
  1200. else
  1201. internalerror(200203271);
  1202. end;
  1203. end;
  1204. procedure tcg.a_load_loc_reg(list : TAsmList; tosize: tcgsize; const loc: tlocation; reg : tregister);
  1205. begin
  1206. case loc.loc of
  1207. LOC_REFERENCE,LOC_CREFERENCE:
  1208. a_load_ref_reg(list,loc.size,tosize,loc.reference,reg);
  1209. LOC_REGISTER,LOC_CREGISTER:
  1210. a_load_reg_reg(list,loc.size,tosize,loc.register,reg);
  1211. LOC_CONSTANT:
  1212. a_load_const_reg(list,tosize,loc.value,reg);
  1213. else
  1214. internalerror(200109092);
  1215. end;
  1216. end;
  1217. procedure tcg.a_load_loc_ref(list : TAsmList;tosize: tcgsize; const loc: tlocation; const ref : treference);
  1218. begin
  1219. case loc.loc of
  1220. LOC_REFERENCE,LOC_CREFERENCE:
  1221. a_load_ref_ref(list,loc.size,tosize,loc.reference,ref);
  1222. LOC_REGISTER,LOC_CREGISTER:
  1223. a_load_reg_ref(list,loc.size,tosize,loc.register,ref);
  1224. LOC_CONSTANT:
  1225. a_load_const_ref(list,tosize,loc.value,ref);
  1226. else
  1227. internalerror(200109302);
  1228. end;
  1229. end;
  1230. procedure tcg.optimize_op_const(var op: topcg; var a : tcgint);
  1231. var
  1232. powerval : longint;
  1233. begin
  1234. case op of
  1235. OP_OR :
  1236. begin
  1237. { or with zero returns same result }
  1238. if a = 0 then
  1239. op:=OP_NONE
  1240. else
  1241. { or with max returns max }
  1242. if a = -1 then
  1243. op:=OP_MOVE;
  1244. end;
  1245. OP_AND :
  1246. begin
  1247. { and with max returns same result }
  1248. if (a = -1) then
  1249. op:=OP_NONE
  1250. else
  1251. { and with 0 returns 0 }
  1252. if a=0 then
  1253. op:=OP_MOVE;
  1254. end;
  1255. OP_DIV :
  1256. begin
  1257. { division by 1 returns result }
  1258. if a = 1 then
  1259. op:=OP_NONE
  1260. else if ispowerof2(int64(a), powerval) and not(cs_check_overflow in current_settings.localswitches) then
  1261. begin
  1262. a := powerval;
  1263. op:= OP_SHR;
  1264. end;
  1265. end;
  1266. OP_IDIV:
  1267. begin
  1268. if a = 1 then
  1269. op:=OP_NONE;
  1270. end;
  1271. OP_MUL,OP_IMUL:
  1272. begin
  1273. if a = 1 then
  1274. op:=OP_NONE
  1275. else
  1276. if a=0 then
  1277. op:=OP_MOVE
  1278. else if ispowerof2(int64(a), powerval) and not(cs_check_overflow in current_settings.localswitches) then
  1279. begin
  1280. a := powerval;
  1281. op:= OP_SHL;
  1282. end;
  1283. end;
  1284. OP_ADD,OP_SUB:
  1285. begin
  1286. if a = 0 then
  1287. op:=OP_NONE;
  1288. end;
  1289. OP_SAR,OP_SHL,OP_SHR,OP_ROL,OP_ROR:
  1290. begin
  1291. if a = 0 then
  1292. op:=OP_NONE;
  1293. end;
  1294. end;
  1295. end;
  1296. procedure tcg.a_loadfpu_loc_reg(list: TAsmList; tosize: tcgsize; const loc: tlocation; const reg: tregister);
  1297. begin
  1298. case loc.loc of
  1299. LOC_REFERENCE, LOC_CREFERENCE:
  1300. a_loadfpu_ref_reg(list,loc.size,tosize,loc.reference,reg);
  1301. LOC_FPUREGISTER, LOC_CFPUREGISTER:
  1302. a_loadfpu_reg_reg(list,loc.size,tosize,loc.register,reg);
  1303. else
  1304. internalerror(200203301);
  1305. end;
  1306. end;
  1307. procedure tcg.a_loadfpu_reg_loc(list: TAsmList; fromsize: tcgsize; const reg: tregister; const loc: tlocation);
  1308. begin
  1309. case loc.loc of
  1310. LOC_REFERENCE, LOC_CREFERENCE:
  1311. a_loadfpu_reg_ref(list,fromsize,loc.size,reg,loc.reference);
  1312. LOC_FPUREGISTER, LOC_CFPUREGISTER:
  1313. a_loadfpu_reg_reg(list,fromsize,loc.size,reg,loc.register);
  1314. else
  1315. internalerror(48991);
  1316. end;
  1317. end;
  1318. procedure tcg.a_loadfpu_ref_ref(list: TAsmList; fromsize, tosize: tcgsize; const ref1,ref2: treference);
  1319. var
  1320. reg: tregister;
  1321. regsize: tcgsize;
  1322. begin
  1323. if (fromsize>=tosize) then
  1324. regsize:=fromsize
  1325. else
  1326. regsize:=tosize;
  1327. reg:=getfpuregister(list,regsize);
  1328. a_loadfpu_ref_reg(list,fromsize,regsize,ref1,reg);
  1329. a_loadfpu_reg_ref(list,regsize,tosize,reg,ref2);
  1330. end;
  1331. procedure tcg.a_loadfpu_reg_cgpara(list : TAsmList;size : tcgsize;const r : tregister;const cgpara : TCGPara);
  1332. var
  1333. ref : treference;
  1334. begin
  1335. paramanager.alloccgpara(list,cgpara);
  1336. case cgpara.location^.loc of
  1337. LOC_FPUREGISTER,LOC_CFPUREGISTER:
  1338. begin
  1339. cgpara.check_simple_location;
  1340. a_loadfpu_reg_reg(list,size,size,r,cgpara.location^.register);
  1341. end;
  1342. LOC_REFERENCE,LOC_CREFERENCE:
  1343. begin
  1344. cgpara.check_simple_location;
  1345. reference_reset_base(ref,cgpara.location^.reference.index,cgpara.location^.reference.offset,cgpara.alignment);
  1346. a_loadfpu_reg_ref(list,size,size,r,ref);
  1347. end;
  1348. LOC_REGISTER,LOC_CREGISTER:
  1349. begin
  1350. { paramfpu_ref does the check_simpe_location check here if necessary }
  1351. tg.GetTemp(list,TCGSize2Size[size],TCGSize2Size[size],tt_normal,ref);
  1352. a_loadfpu_reg_ref(list,size,size,r,ref);
  1353. a_loadfpu_ref_cgpara(list,size,ref,cgpara);
  1354. tg.Ungettemp(list,ref);
  1355. end;
  1356. else
  1357. internalerror(2010053112);
  1358. end;
  1359. end;
  1360. procedure tcg.a_loadfpu_ref_cgpara(list : TAsmList;size : tcgsize;const ref : treference;const cgpara : TCGPara);
  1361. var
  1362. href : treference;
  1363. hsize: tcgsize;
  1364. begin
  1365. case cgpara.location^.loc of
  1366. LOC_FPUREGISTER,LOC_CFPUREGISTER:
  1367. begin
  1368. cgpara.check_simple_location;
  1369. paramanager.alloccgpara(list,cgpara);
  1370. a_loadfpu_ref_reg(list,size,size,ref,cgpara.location^.register);
  1371. end;
  1372. LOC_REFERENCE,LOC_CREFERENCE:
  1373. begin
  1374. cgpara.check_simple_location;
  1375. reference_reset_base(href,cgpara.location^.reference.index,cgpara.location^.reference.offset,cgpara.alignment);
  1376. { concatcopy should choose the best way to copy the data }
  1377. g_concatcopy(list,ref,href,tcgsize2size[size]);
  1378. end;
  1379. LOC_REGISTER,LOC_CREGISTER:
  1380. begin
  1381. { force integer size }
  1382. hsize:=int_cgsize(tcgsize2size[size]);
  1383. {$ifndef cpu64bitalu}
  1384. if (hsize in [OS_S64,OS_64]) then
  1385. cg64.a_load64_ref_cgpara(list,ref,cgpara)
  1386. else
  1387. {$endif not cpu64bitalu}
  1388. begin
  1389. cgpara.check_simple_location;
  1390. a_load_ref_cgpara(list,hsize,ref,cgpara)
  1391. end;
  1392. end
  1393. else
  1394. internalerror(200402201);
  1395. end;
  1396. end;
  1397. procedure tcg.a_op_const_ref(list : TAsmList; Op: TOpCG; size: TCGSize; a: tcgint; const ref: TReference);
  1398. var
  1399. tmpreg : tregister;
  1400. begin
  1401. tmpreg:=getintregister(list,size);
  1402. a_load_ref_reg(list,size,size,ref,tmpreg);
  1403. a_op_const_reg(list,op,size,a,tmpreg);
  1404. a_load_reg_ref(list,size,size,tmpreg,ref);
  1405. end;
  1406. procedure tcg.a_op_const_loc(list : TAsmList; Op: TOpCG; a: tcgint; const loc: tlocation);
  1407. begin
  1408. case loc.loc of
  1409. LOC_REGISTER, LOC_CREGISTER:
  1410. a_op_const_reg(list,op,loc.size,a,loc.register);
  1411. LOC_REFERENCE, LOC_CREFERENCE:
  1412. a_op_const_ref(list,op,loc.size,a,loc.reference);
  1413. else
  1414. internalerror(200109061);
  1415. end;
  1416. end;
  1417. procedure tcg.a_op_reg_ref(list : TAsmList; Op: TOpCG; size: TCGSize;reg: TRegister; const ref: TReference);
  1418. var
  1419. tmpreg : tregister;
  1420. begin
  1421. tmpreg:=getintregister(list,size);
  1422. a_load_ref_reg(list,size,size,ref,tmpreg);
  1423. a_op_reg_reg(list,op,size,reg,tmpreg);
  1424. a_load_reg_ref(list,size,size,tmpreg,ref);
  1425. end;
  1426. procedure tcg.a_op_ref_reg(list : TAsmList; Op: TOpCG; size: TCGSize; const ref: TReference; reg: TRegister);
  1427. var
  1428. tmpreg: tregister;
  1429. begin
  1430. case op of
  1431. OP_NOT,OP_NEG:
  1432. { handle it as "load ref,reg; op reg" }
  1433. begin
  1434. a_load_ref_reg(list,size,size,ref,reg);
  1435. a_op_reg_reg(list,op,size,reg,reg);
  1436. end;
  1437. else
  1438. begin
  1439. tmpreg:=getintregister(list,size);
  1440. a_load_ref_reg(list,size,size,ref,tmpreg);
  1441. a_op_reg_reg(list,op,size,tmpreg,reg);
  1442. end;
  1443. end;
  1444. end;
  1445. procedure tcg.a_op_reg_loc(list : TAsmList; Op: TOpCG; reg: tregister; const loc: tlocation);
  1446. begin
  1447. case loc.loc of
  1448. LOC_REGISTER, LOC_CREGISTER:
  1449. a_op_reg_reg(list,op,loc.size,reg,loc.register);
  1450. LOC_REFERENCE, LOC_CREFERENCE:
  1451. a_op_reg_ref(list,op,loc.size,reg,loc.reference);
  1452. else
  1453. internalerror(200109061);
  1454. end;
  1455. end;
  1456. procedure tcg.a_op_ref_loc(list : TAsmList; Op: TOpCG; const ref: TReference; const loc: tlocation);
  1457. var
  1458. tmpreg: tregister;
  1459. begin
  1460. case loc.loc of
  1461. LOC_REGISTER,LOC_CREGISTER:
  1462. a_op_ref_reg(list,op,loc.size,ref,loc.register);
  1463. LOC_REFERENCE,LOC_CREFERENCE:
  1464. begin
  1465. tmpreg:=getintregister(list,loc.size);
  1466. a_load_ref_reg(list,loc.size,loc.size,ref,tmpreg);
  1467. a_op_reg_ref(list,op,loc.size,tmpreg,loc.reference);
  1468. end;
  1469. else
  1470. internalerror(200109061);
  1471. end;
  1472. end;
  1473. procedure Tcg.a_op_const_reg_reg(list:TAsmList;op:Topcg;size:Tcgsize;
  1474. a:tcgint;src,dst:Tregister);
  1475. begin
  1476. a_load_reg_reg(list,size,size,src,dst);
  1477. a_op_const_reg(list,op,size,a,dst);
  1478. end;
  1479. procedure tcg.a_op_reg_reg_reg(list: TAsmList; op: TOpCg;
  1480. size: tcgsize; src1, src2, dst: tregister);
  1481. var
  1482. tmpreg: tregister;
  1483. begin
  1484. if (dst<>src1) then
  1485. begin
  1486. a_load_reg_reg(list,size,size,src2,dst);
  1487. a_op_reg_reg(list,op,size,src1,dst);
  1488. end
  1489. else
  1490. begin
  1491. { can we do a direct operation on the target register ? }
  1492. if op in [OP_ADD,OP_MUL,OP_AND,OP_MOVE,OP_XOR,OP_IMUL,OP_OR] then
  1493. a_op_reg_reg(list,op,size,src2,dst)
  1494. else
  1495. begin
  1496. tmpreg:=getintregister(list,size);
  1497. a_load_reg_reg(list,size,size,src2,tmpreg);
  1498. a_op_reg_reg(list,op,size,src1,tmpreg);
  1499. a_load_reg_reg(list,size,size,tmpreg,dst);
  1500. end;
  1501. end;
  1502. end;
  1503. procedure tcg.a_op_const_reg_reg_checkoverflow(list: TAsmList; op: TOpCg; size: tcgsize; a: tcgint; src, dst: tregister;setflags : boolean;var ovloc : tlocation);
  1504. begin
  1505. a_op_const_reg_reg(list,op,size,a,src,dst);
  1506. ovloc.loc:=LOC_VOID;
  1507. end;
  1508. procedure tcg.a_op_reg_reg_reg_checkoverflow(list: TAsmList; op: TOpCg; size: tcgsize; src1, src2, dst: tregister;setflags : boolean;var ovloc : tlocation);
  1509. begin
  1510. a_op_reg_reg_reg(list,op,size,src1,src2,dst);
  1511. ovloc.loc:=LOC_VOID;
  1512. end;
  1513. procedure tcg.a_cmp_const_reg_label(list: TAsmList; size: tcgsize;
  1514. cmp_op: topcmp; a: tcgint; reg: tregister; l: tasmlabel);
  1515. var
  1516. tmpreg: tregister;
  1517. begin
  1518. tmpreg:=getintregister(list,size);
  1519. a_load_const_reg(list,size,a,tmpreg);
  1520. a_cmp_reg_reg_label(list,size,cmp_op,tmpreg,reg,l);
  1521. end;
  1522. procedure tcg.a_cmp_const_ref_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;a : tcgint;const ref : treference;
  1523. l : tasmlabel);
  1524. var
  1525. tmpreg: tregister;
  1526. begin
  1527. tmpreg:=getintregister(list,size);
  1528. a_load_ref_reg(list,size,size,ref,tmpreg);
  1529. a_cmp_const_reg_label(list,size,cmp_op,a,tmpreg,l);
  1530. end;
  1531. procedure tcg.a_cmp_const_loc_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;a : tcgint;const loc : tlocation;
  1532. l : tasmlabel);
  1533. begin
  1534. case loc.loc of
  1535. LOC_REGISTER,LOC_CREGISTER:
  1536. a_cmp_const_reg_label(list,size,cmp_op,a,loc.register,l);
  1537. LOC_REFERENCE,LOC_CREFERENCE:
  1538. a_cmp_const_ref_label(list,size,cmp_op,a,loc.reference,l);
  1539. else
  1540. internalerror(200109061);
  1541. end;
  1542. end;
  1543. procedure tcg.a_cmp_ref_reg_label(list : TAsmList;size : tcgsize;cmp_op : topcmp; const ref: treference; reg : tregister; l : tasmlabel);
  1544. var
  1545. tmpreg: tregister;
  1546. begin
  1547. tmpreg:=getintregister(list,size);
  1548. a_load_ref_reg(list,size,size,ref,tmpreg);
  1549. a_cmp_reg_reg_label(list,size,cmp_op,tmpreg,reg,l);
  1550. end;
  1551. procedure tcg.a_cmp_reg_ref_label(list : TAsmList;size : tcgsize;cmp_op : topcmp; reg : tregister; const ref: treference; l : tasmlabel);
  1552. var
  1553. tmpreg: tregister;
  1554. begin
  1555. tmpreg:=getintregister(list,size);
  1556. a_load_ref_reg(list,size,size,ref,tmpreg);
  1557. a_cmp_reg_reg_label(list,size,cmp_op,reg,tmpreg,l);
  1558. end;
  1559. procedure tcg.a_cmp_reg_loc_label(list : TAsmList;size : tcgsize;cmp_op : topcmp; reg: tregister; const loc: tlocation; l : tasmlabel);
  1560. begin
  1561. a_cmp_loc_reg_label(list,size,swap_opcmp(cmp_op),loc,reg,l);
  1562. end;
  1563. procedure tcg.a_cmp_loc_reg_label(list : TAsmList;size : tcgsize;cmp_op : topcmp; const loc: tlocation; reg : tregister; l : tasmlabel);
  1564. begin
  1565. case loc.loc of
  1566. LOC_REGISTER,
  1567. LOC_CREGISTER:
  1568. a_cmp_reg_reg_label(list,size,cmp_op,loc.register,reg,l);
  1569. LOC_REFERENCE,
  1570. LOC_CREFERENCE :
  1571. a_cmp_ref_reg_label(list,size,cmp_op,loc.reference,reg,l);
  1572. LOC_CONSTANT:
  1573. a_cmp_const_reg_label(list,size,cmp_op,loc.value,reg,l);
  1574. else
  1575. internalerror(200203231);
  1576. end;
  1577. end;
  1578. procedure tcg.a_cmp_ref_loc_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;const ref: treference;const loc : tlocation;
  1579. l : tasmlabel);
  1580. var
  1581. tmpreg: tregister;
  1582. begin
  1583. case loc.loc of
  1584. LOC_REGISTER,LOC_CREGISTER:
  1585. a_cmp_ref_reg_label(list,size,cmp_op,ref,loc.register,l);
  1586. LOC_REFERENCE,LOC_CREFERENCE:
  1587. begin
  1588. tmpreg:=getintregister(list,size);
  1589. a_load_ref_reg(list,size,size,loc.reference,tmpreg);
  1590. a_cmp_ref_reg_label(list,size,cmp_op,ref,tmpreg,l);
  1591. end;
  1592. else
  1593. internalerror(200109061);
  1594. end;
  1595. end;
  1596. procedure tcg.a_loadmm_loc_reg(list: TAsmList; size: tcgsize; const loc: tlocation; const reg: tregister;shuffle : pmmshuffle);
  1597. var
  1598. tmpreg: tregister;
  1599. begin
  1600. case loc.loc of
  1601. LOC_MMREGISTER,LOC_CMMREGISTER:
  1602. a_loadmm_reg_reg(list,loc.size,size,loc.register,reg,shuffle);
  1603. LOC_REFERENCE,LOC_CREFERENCE:
  1604. a_loadmm_ref_reg(list,loc.size,size,loc.reference,reg,shuffle);
  1605. LOC_REGISTER,LOC_CREGISTER:
  1606. a_loadmm_intreg_reg(list,loc.size,size,loc.register,reg,shuffle);
  1607. else
  1608. internalerror(200310121);
  1609. end;
  1610. end;
  1611. procedure tcg.a_loadmm_reg_loc(list: TAsmList; size: tcgsize; const reg: tregister; const loc: tlocation;shuffle : pmmshuffle);
  1612. begin
  1613. case loc.loc of
  1614. LOC_MMREGISTER,LOC_CMMREGISTER:
  1615. a_loadmm_reg_reg(list,size,loc.size,reg,loc.register,shuffle);
  1616. LOC_REFERENCE,LOC_CREFERENCE:
  1617. a_loadmm_reg_ref(list,size,loc.size,reg,loc.reference,shuffle);
  1618. else
  1619. internalerror(200310122);
  1620. end;
  1621. end;
  1622. procedure tcg.a_loadmm_reg_cgpara(list: TAsmList; size: tcgsize; reg: tregister;const cgpara : TCGPara;shuffle : pmmshuffle);
  1623. var
  1624. href : treference;
  1625. {$ifndef cpu64bitalu}
  1626. tmpreg : tregister;
  1627. reg64 : tregister64;
  1628. {$endif not cpu64bitalu}
  1629. begin
  1630. {$ifndef cpu64bitalu}
  1631. if not(cgpara.location^.loc in [LOC_REGISTER,LOC_CREGISTER]) or
  1632. (size<>OS_F64) then
  1633. {$endif not cpu64bitalu}
  1634. cgpara.check_simple_location;
  1635. paramanager.alloccgpara(list,cgpara);
  1636. case cgpara.location^.loc of
  1637. LOC_MMREGISTER,LOC_CMMREGISTER:
  1638. a_loadmm_reg_reg(list,size,cgpara.location^.size,reg,cgpara.location^.register,shuffle);
  1639. LOC_REFERENCE,LOC_CREFERENCE:
  1640. begin
  1641. reference_reset_base(href,cgpara.location^.reference.index,cgpara.location^.reference.offset,cgpara.alignment);
  1642. a_loadmm_reg_ref(list,size,cgpara.location^.size,reg,href,shuffle);
  1643. end;
  1644. LOC_REGISTER,LOC_CREGISTER:
  1645. begin
  1646. if assigned(shuffle) and
  1647. not shufflescalar(shuffle) then
  1648. internalerror(2009112510);
  1649. {$ifndef cpu64bitalu}
  1650. if (size=OS_F64) then
  1651. begin
  1652. if not assigned(cgpara.location^.next) or
  1653. assigned(cgpara.location^.next^.next) then
  1654. internalerror(2009112512);
  1655. case cgpara.location^.next^.loc of
  1656. LOC_REGISTER,LOC_CREGISTER:
  1657. tmpreg:=cgpara.location^.next^.register;
  1658. LOC_REFERENCE,LOC_CREFERENCE:
  1659. tmpreg:=getintregister(list,OS_32);
  1660. else
  1661. internalerror(2009112910);
  1662. end;
  1663. if (target_info.endian=ENDIAN_BIG) then
  1664. begin
  1665. { paraloc^ -> high
  1666. paraloc^.next -> low }
  1667. reg64.reghi:=cgpara.location^.register;
  1668. reg64.reglo:=tmpreg;
  1669. end
  1670. else
  1671. begin
  1672. { paraloc^ -> low
  1673. paraloc^.next -> high }
  1674. reg64.reglo:=cgpara.location^.register;
  1675. reg64.reghi:=tmpreg;
  1676. end;
  1677. cg64.a_loadmm_reg_intreg64(list,size,reg,reg64);
  1678. if (cgpara.location^.next^.loc in [LOC_REFERENCE,LOC_CREFERENCE]) then
  1679. begin
  1680. if not(cgpara.location^.next^.size in [OS_32,OS_S32]) then
  1681. internalerror(2009112911);
  1682. reference_reset_base(href,cgpara.location^.next^.reference.index,cgpara.location^.next^.reference.offset,cgpara.alignment);
  1683. a_load_reg_ref(list,OS_32,cgpara.location^.next^.size,tmpreg,href);
  1684. end;
  1685. end
  1686. else
  1687. {$endif not cpu64bitalu}
  1688. a_loadmm_reg_intreg(list,size,cgpara.location^.size,reg,cgpara.location^.register,mms_movescalar);
  1689. end
  1690. else
  1691. internalerror(200310123);
  1692. end;
  1693. end;
  1694. procedure tcg.a_loadmm_ref_cgpara(list: TAsmList; size: tcgsize;const ref: treference;const cgpara : TCGPara;shuffle : pmmshuffle);
  1695. var
  1696. hr : tregister;
  1697. hs : tmmshuffle;
  1698. begin
  1699. cgpara.check_simple_location;
  1700. hr:=getmmregister(list,cgpara.location^.size);
  1701. a_loadmm_ref_reg(list,size,cgpara.location^.size,ref,hr,shuffle);
  1702. if realshuffle(shuffle) then
  1703. begin
  1704. hs:=shuffle^;
  1705. removeshuffles(hs);
  1706. a_loadmm_reg_cgpara(list,cgpara.location^.size,hr,cgpara,@hs);
  1707. end
  1708. else
  1709. a_loadmm_reg_cgpara(list,cgpara.location^.size,hr,cgpara,shuffle);
  1710. end;
  1711. procedure tcg.a_loadmm_loc_cgpara(list: TAsmList;const loc: tlocation; const cgpara : TCGPara;shuffle : pmmshuffle);
  1712. begin
  1713. case loc.loc of
  1714. LOC_MMREGISTER,LOC_CMMREGISTER:
  1715. a_loadmm_reg_cgpara(list,loc.size,loc.register,cgpara,shuffle);
  1716. LOC_REFERENCE,LOC_CREFERENCE:
  1717. a_loadmm_ref_cgpara(list,loc.size,loc.reference,cgpara,shuffle);
  1718. else
  1719. internalerror(200310123);
  1720. end;
  1721. end;
  1722. procedure tcg.a_opmm_ref_reg(list: TAsmList; Op: TOpCG; size : tcgsize;const ref: treference; reg: tregister;shuffle : pmmshuffle);
  1723. var
  1724. hr : tregister;
  1725. hs : tmmshuffle;
  1726. begin
  1727. hr:=getmmregister(list,size);
  1728. a_loadmm_ref_reg(list,size,size,ref,hr,shuffle);
  1729. if realshuffle(shuffle) then
  1730. begin
  1731. hs:=shuffle^;
  1732. removeshuffles(hs);
  1733. a_opmm_reg_reg(list,op,size,hr,reg,@hs);
  1734. end
  1735. else
  1736. a_opmm_reg_reg(list,op,size,hr,reg,shuffle);
  1737. end;
  1738. procedure tcg.a_opmm_reg_ref(list: TAsmList; Op: TOpCG; size : tcgsize;reg: tregister; const ref: treference; shuffle : pmmshuffle);
  1739. var
  1740. hr : tregister;
  1741. hs : tmmshuffle;
  1742. begin
  1743. hr:=getmmregister(list,size);
  1744. a_loadmm_ref_reg(list,size,size,ref,hr,shuffle);
  1745. if realshuffle(shuffle) then
  1746. begin
  1747. hs:=shuffle^;
  1748. removeshuffles(hs);
  1749. a_opmm_reg_reg(list,op,size,reg,hr,@hs);
  1750. a_loadmm_reg_ref(list,size,size,hr,ref,@hs);
  1751. end
  1752. else
  1753. begin
  1754. a_opmm_reg_reg(list,op,size,reg,hr,shuffle);
  1755. a_loadmm_reg_ref(list,size,size,hr,ref,shuffle);
  1756. end;
  1757. end;
  1758. procedure tcg.a_loadmm_intreg_reg(list: tasmlist; fromsize,tosize: tcgsize; intreg,mmreg: tregister; shuffle: pmmshuffle);
  1759. var
  1760. tmpref: treference;
  1761. begin
  1762. if (tcgsize2size[fromsize]<>4) or
  1763. (tcgsize2size[tosize]<>4) then
  1764. internalerror(2009112503);
  1765. tg.gettemp(list,4,4,tt_normal,tmpref);
  1766. a_load_reg_ref(list,fromsize,fromsize,intreg,tmpref);
  1767. a_loadmm_ref_reg(list,tosize,tosize,tmpref,mmreg,shuffle);
  1768. tg.ungettemp(list,tmpref);
  1769. end;
  1770. procedure tcg.a_loadmm_reg_intreg(list: tasmlist; fromsize,tosize: tcgsize; mmreg,intreg: tregister; shuffle: pmmshuffle);
  1771. var
  1772. tmpref: treference;
  1773. begin
  1774. if (tcgsize2size[fromsize]<>4) or
  1775. (tcgsize2size[tosize]<>4) then
  1776. internalerror(2009112504);
  1777. tg.gettemp(list,8,8,tt_normal,tmpref);
  1778. cg.a_loadmm_reg_ref(list,fromsize,fromsize,mmreg,tmpref,shuffle);
  1779. a_load_ref_reg(list,tosize,tosize,tmpref,intreg);
  1780. tg.ungettemp(list,tmpref);
  1781. end;
  1782. procedure tcg.a_opmm_loc_reg(list: TAsmList; Op: TOpCG; size : tcgsize;const loc: tlocation; reg: tregister;shuffle : pmmshuffle);
  1783. begin
  1784. case loc.loc of
  1785. LOC_CMMREGISTER,LOC_MMREGISTER:
  1786. a_opmm_reg_reg(list,op,size,loc.register,reg,shuffle);
  1787. LOC_CREFERENCE,LOC_REFERENCE:
  1788. a_opmm_ref_reg(list,op,size,loc.reference,reg,shuffle);
  1789. else
  1790. internalerror(200312232);
  1791. end;
  1792. end;
  1793. procedure tcg.g_concatcopy_unaligned(list : TAsmList;const source,dest : treference;len : tcgint);
  1794. begin
  1795. g_concatcopy(list,source,dest,len);
  1796. end;
  1797. procedure tcg.g_overflowCheck_loc(List:TAsmList;const Loc:TLocation;def:TDef;ovloc : tlocation);
  1798. begin
  1799. g_overflowCheck(list,loc,def);
  1800. end;
  1801. {$ifdef cpuflags}
  1802. procedure tcg.g_flags2ref(list: TAsmList; size: TCgSize; const f: tresflags; const ref:TReference);
  1803. var
  1804. tmpreg : tregister;
  1805. begin
  1806. tmpreg:=getintregister(list,size);
  1807. g_flags2reg(list,size,f,tmpreg);
  1808. a_load_reg_ref(list,size,size,tmpreg,ref);
  1809. end;
  1810. {$endif cpuflags}
  1811. procedure tcg.g_maybe_testvmt(list : TAsmList;reg:tregister;objdef:tobjectdef);
  1812. var
  1813. hrefvmt : treference;
  1814. cgpara1,cgpara2 : TCGPara;
  1815. begin
  1816. cgpara1.init;
  1817. cgpara2.init;
  1818. paramanager.getintparaloc(pocall_default,1,voidpointertype,cgpara1);
  1819. if (cs_check_object in current_settings.localswitches) then
  1820. begin
  1821. paramanager.getintparaloc(pocall_default,2,voidpointertype,cgpara2);
  1822. reference_reset_symbol(hrefvmt,current_asmdata.RefAsmSymbol(objdef.vmt_mangledname),0,sizeof(pint));
  1823. a_loadaddr_ref_cgpara(list,hrefvmt,cgpara2);
  1824. a_load_reg_cgpara(list,OS_ADDR,reg,cgpara1);
  1825. paramanager.freecgpara(list,cgpara1);
  1826. paramanager.freecgpara(list,cgpara2);
  1827. allocallcpuregisters(list);
  1828. a_call_name(list,'FPC_CHECK_OBJECT_EXT',false);
  1829. deallocallcpuregisters(list);
  1830. end
  1831. else
  1832. if (cs_check_range in current_settings.localswitches) then
  1833. begin
  1834. a_load_reg_cgpara(list,OS_ADDR,reg,cgpara1);
  1835. paramanager.freecgpara(list,cgpara1);
  1836. allocallcpuregisters(list);
  1837. a_call_name(list,'FPC_CHECK_OBJECT',false);
  1838. deallocallcpuregisters(list);
  1839. end;
  1840. cgpara1.done;
  1841. cgpara2.done;
  1842. end;
  1843. {*****************************************************************************
  1844. Entry/Exit Code Functions
  1845. *****************************************************************************}
  1846. procedure tcg.g_save_registers(list:TAsmList);
  1847. var
  1848. href : treference;
  1849. size : longint;
  1850. r : integer;
  1851. begin
  1852. { calculate temp. size }
  1853. size:=0;
  1854. for r:=low(saved_standard_registers) to high(saved_standard_registers) do
  1855. if saved_standard_registers[r] in rg[R_INTREGISTER].used_in_proc then
  1856. inc(size,sizeof(aint));
  1857. { mm registers }
  1858. if uses_registers(R_MMREGISTER) then
  1859. begin
  1860. { Make sure we reserve enough space to do the alignment based on the offset
  1861. later on. We can't use the size for this, because the alignment of the start
  1862. of the temp is smaller than needed for an OS_VECTOR }
  1863. inc(size,tcgsize2size[OS_VECTOR]);
  1864. for r:=low(saved_mm_registers) to high(saved_mm_registers) do
  1865. if saved_mm_registers[r] in rg[R_MMREGISTER].used_in_proc then
  1866. inc(size,tcgsize2size[OS_VECTOR]);
  1867. end;
  1868. if size>0 then
  1869. begin
  1870. tg.GetTemp(list,size,sizeof(aint),tt_noreuse,current_procinfo.save_regs_ref);
  1871. include(current_procinfo.flags,pi_has_saved_regs);
  1872. { Copy registers to temp }
  1873. href:=current_procinfo.save_regs_ref;
  1874. for r:=low(saved_standard_registers) to high(saved_standard_registers) do
  1875. begin
  1876. if saved_standard_registers[r] in rg[R_INTREGISTER].used_in_proc then
  1877. begin
  1878. a_load_reg_ref(list,OS_ADDR,OS_ADDR,newreg(R_INTREGISTER,saved_standard_registers[r],R_SUBWHOLE),href);
  1879. inc(href.offset,sizeof(aint));
  1880. end;
  1881. include(rg[R_INTREGISTER].preserved_by_proc,saved_standard_registers[r]);
  1882. end;
  1883. if uses_registers(R_MMREGISTER) then
  1884. begin
  1885. if (href.offset mod tcgsize2size[OS_VECTOR])<>0 then
  1886. inc(href.offset,tcgsize2size[OS_VECTOR]-(href.offset mod tcgsize2size[OS_VECTOR]));
  1887. for r:=low(saved_mm_registers) to high(saved_mm_registers) do
  1888. begin
  1889. { the array has to be declared even if no MM registers are saved
  1890. (such as with SSE on i386), and since 0-element arrays don't
  1891. exist, they contain a single RS_INVALID element in that case
  1892. }
  1893. if saved_mm_registers[r]<>RS_INVALID then
  1894. begin
  1895. if saved_mm_registers[r] in rg[R_MMREGISTER].used_in_proc then
  1896. begin
  1897. a_loadmm_reg_ref(list,OS_VECTOR,OS_VECTOR,newreg(R_MMREGISTER,saved_mm_registers[r],R_SUBNONE),href,nil);
  1898. inc(href.offset,tcgsize2size[OS_VECTOR]);
  1899. end;
  1900. include(rg[R_MMREGISTER].preserved_by_proc,saved_mm_registers[r]);
  1901. end;
  1902. end;
  1903. end;
  1904. end;
  1905. end;
  1906. procedure tcg.g_restore_registers(list:TAsmList);
  1907. var
  1908. href : treference;
  1909. r : integer;
  1910. hreg : tregister;
  1911. begin
  1912. if not(pi_has_saved_regs in current_procinfo.flags) then
  1913. exit;
  1914. { Copy registers from temp }
  1915. href:=current_procinfo.save_regs_ref;
  1916. for r:=low(saved_standard_registers) to high(saved_standard_registers) do
  1917. if saved_standard_registers[r] in rg[R_INTREGISTER].used_in_proc then
  1918. begin
  1919. hreg:=newreg(R_INTREGISTER,saved_standard_registers[r],R_SUBWHOLE);
  1920. { Allocate register so the optimizer does not remove the load }
  1921. a_reg_alloc(list,hreg);
  1922. a_load_ref_reg(list,OS_ADDR,OS_ADDR,href,hreg);
  1923. inc(href.offset,sizeof(aint));
  1924. end;
  1925. if uses_registers(R_MMREGISTER) then
  1926. begin
  1927. if (href.offset mod tcgsize2size[OS_VECTOR])<>0 then
  1928. inc(href.offset,tcgsize2size[OS_VECTOR]-(href.offset mod tcgsize2size[OS_VECTOR]));
  1929. for r:=low(saved_mm_registers) to high(saved_mm_registers) do
  1930. begin
  1931. if saved_mm_registers[r] in rg[R_MMREGISTER].used_in_proc then
  1932. begin
  1933. hreg:=newreg(R_MMREGISTER,saved_mm_registers[r],R_SUBNONE);
  1934. { Allocate register so the optimizer does not remove the load }
  1935. a_reg_alloc(list,hreg);
  1936. a_loadmm_ref_reg(list,OS_VECTOR,OS_VECTOR,href,hreg,nil);
  1937. inc(href.offset,tcgsize2size[OS_VECTOR]);
  1938. end;
  1939. end;
  1940. end;
  1941. tg.UnGetTemp(list,current_procinfo.save_regs_ref);
  1942. end;
  1943. procedure tcg.g_profilecode(list : TAsmList);
  1944. begin
  1945. end;
  1946. procedure tcg.g_exception_reason_save(list : TAsmList; const href : treference);
  1947. begin
  1948. a_load_reg_ref(list, OS_INT, OS_INT, NR_FUNCTION_RESULT_REG, href);
  1949. end;
  1950. procedure tcg.g_exception_reason_save_const(list : TAsmList; const href : treference; a: tcgint);
  1951. begin
  1952. a_load_const_ref(list, OS_INT, a, href);
  1953. end;
  1954. procedure tcg.g_exception_reason_load(list : TAsmList; const href : treference);
  1955. begin
  1956. cg.a_reg_alloc(list,NR_FUNCTION_RESULT_REG);
  1957. a_load_ref_reg(list, OS_INT, OS_INT, href, NR_FUNCTION_RESULT_REG);
  1958. end;
  1959. procedure tcg.g_adjust_self_value(list:TAsmList;procdef: tprocdef;ioffset: tcgint);
  1960. var
  1961. hsym : tsym;
  1962. href : treference;
  1963. paraloc : Pcgparalocation;
  1964. begin
  1965. { calculate the parameter info for the procdef }
  1966. procdef.init_paraloc_info(callerside);
  1967. hsym:=tsym(procdef.parast.Find('self'));
  1968. if not(assigned(hsym) and
  1969. (hsym.typ=paravarsym)) then
  1970. internalerror(200305251);
  1971. paraloc:=tparavarsym(hsym).paraloc[callerside].location;
  1972. while paraloc<>nil do
  1973. with paraloc^ do
  1974. begin
  1975. case loc of
  1976. LOC_REGISTER:
  1977. a_op_const_reg(list,OP_SUB,size,ioffset,register);
  1978. LOC_REFERENCE:
  1979. begin
  1980. { offset in the wrapper needs to be adjusted for the stored
  1981. return address }
  1982. reference_reset_base(href,reference.index,reference.offset+sizeof(pint),sizeof(pint));
  1983. a_op_const_ref(list,OP_SUB,size,ioffset,href);
  1984. end
  1985. else
  1986. internalerror(200309189);
  1987. end;
  1988. paraloc:=next;
  1989. end;
  1990. end;
  1991. procedure tcg.g_external_wrapper(list : TAsmList; procdef: tprocdef; const externalname: string);
  1992. begin
  1993. a_jmp_name(list,externalname);
  1994. end;
  1995. procedure tcg.a_call_name_static(list : TAsmList;const s : string);
  1996. begin
  1997. a_call_name(list,s,false);
  1998. end;
  1999. procedure tcg.a_call_ref(list : TAsmList;ref: treference);
  2000. var
  2001. tempreg : TRegister;
  2002. begin
  2003. tempreg := getintregister(list, OS_ADDR);
  2004. a_load_ref_reg(list,OS_ADDR,OS_ADDR,ref,tempreg);
  2005. a_call_reg(list,tempreg);
  2006. end;
  2007. function tcg.g_indirect_sym_load(list:TAsmList;const symname: string; const flags: tindsymflags): tregister;
  2008. var
  2009. l: tasmsymbol;
  2010. ref: treference;
  2011. nlsymname: string;
  2012. begin
  2013. result := NR_NO;
  2014. case target_info.system of
  2015. system_powerpc_darwin,
  2016. system_i386_darwin,
  2017. system_i386_iphonesim,
  2018. system_powerpc64_darwin,
  2019. system_arm_darwin:
  2020. begin
  2021. nlsymname:='L'+symname+'$non_lazy_ptr';
  2022. l:=current_asmdata.getasmsymbol(nlsymname);
  2023. if not(assigned(l)) then
  2024. begin
  2025. new_section(current_asmdata.asmlists[al_picdata],sec_data_nonlazy,'',sizeof(pint));
  2026. l:=current_asmdata.DefineAsmSymbol(nlsymname,AB_LOCAL,AT_DATA);
  2027. current_asmdata.asmlists[al_picdata].concat(tai_symbol.create(l,0));
  2028. if not(is_weak in flags) then
  2029. current_asmdata.asmlists[al_picdata].concat(tai_directive.Create(asd_indirect_symbol,current_asmdata.RefAsmSymbol(symname).Name))
  2030. else
  2031. current_asmdata.asmlists[al_picdata].concat(tai_directive.Create(asd_indirect_symbol,current_asmdata.WeakRefAsmSymbol(symname).Name));
  2032. {$ifdef cpu64bitaddr}
  2033. current_asmdata.asmlists[al_picdata].concat(tai_const.create_64bit(0));
  2034. {$else cpu64bitaddr}
  2035. current_asmdata.asmlists[al_picdata].concat(tai_const.create_32bit(0));
  2036. {$endif cpu64bitaddr}
  2037. end;
  2038. result := getaddressregister(list);
  2039. reference_reset_symbol(ref,l,0,sizeof(pint));
  2040. { a_load_ref_reg will turn this into a pic-load if needed }
  2041. a_load_ref_reg(list,OS_ADDR,OS_ADDR,ref,result);
  2042. end;
  2043. end;
  2044. end;
  2045. procedure tcg.g_maybe_got_init(list: TAsmList);
  2046. begin
  2047. end;
  2048. procedure tcg.g_call(list: TAsmList;const s: string);
  2049. begin
  2050. allocallcpuregisters(list);
  2051. a_call_name(list,s,false);
  2052. deallocallcpuregisters(list);
  2053. end;
  2054. procedure tcg.g_local_unwind(list: TAsmList; l: TAsmLabel);
  2055. begin
  2056. a_jmp_always(list,l);
  2057. end;
  2058. procedure tcg.a_loadmm_reg_reg(list: TAsmList; fromsize, tosize: tcgsize; reg1, reg2: tregister; shuffle: pmmshuffle);
  2059. begin
  2060. internalerror(200807231);
  2061. end;
  2062. procedure tcg.a_loadmm_ref_reg(list: TAsmList; fromsize, tosize: tcgsize; const ref: treference; reg: tregister; shuffle: pmmshuffle);
  2063. begin
  2064. internalerror(200807232);
  2065. end;
  2066. procedure tcg.a_loadmm_reg_ref(list: TAsmList; fromsize, tosize: tcgsize; reg: tregister; const ref: treference; shuffle: pmmshuffle);
  2067. begin
  2068. internalerror(200807233);
  2069. end;
  2070. procedure tcg.a_opmm_reg_reg(list: TAsmList; Op: TOpCG; size: tcgsize; src, dst: tregister; shuffle: pmmshuffle);
  2071. begin
  2072. internalerror(200807234);
  2073. end;
  2074. function tcg.getflagregister(list: TAsmList; size: Tcgsize): Tregister;
  2075. begin
  2076. Result:=TRegister(0);
  2077. internalerror(200807238);
  2078. end;
  2079. {*****************************************************************************
  2080. TCG64
  2081. *****************************************************************************}
  2082. {$ifndef cpu64bitalu}
  2083. procedure tcg64.a_op64_const_reg_reg(list: TAsmList;op:TOpCG;size : tcgsize;value : int64; regsrc,regdst : tregister64);
  2084. begin
  2085. a_load64_reg_reg(list,regsrc,regdst);
  2086. a_op64_const_reg(list,op,size,value,regdst);
  2087. end;
  2088. procedure tcg64.a_op64_reg_reg_reg(list: TAsmList;op:TOpCG;size : tcgsize;regsrc1,regsrc2,regdst : tregister64);
  2089. var
  2090. tmpreg64 : tregister64;
  2091. begin
  2092. { when src1=dst then we need to first create a temp to prevent
  2093. overwriting src1 with src2 }
  2094. if (regsrc1.reghi=regdst.reghi) or
  2095. (regsrc1.reglo=regdst.reghi) or
  2096. (regsrc1.reghi=regdst.reglo) or
  2097. (regsrc1.reglo=regdst.reglo) then
  2098. begin
  2099. tmpreg64.reglo:=cg.getintregister(list,OS_32);
  2100. tmpreg64.reghi:=cg.getintregister(list,OS_32);
  2101. a_load64_reg_reg(list,regsrc2,tmpreg64);
  2102. a_op64_reg_reg(list,op,size,regsrc1,tmpreg64);
  2103. a_load64_reg_reg(list,tmpreg64,regdst);
  2104. end
  2105. else
  2106. begin
  2107. a_load64_reg_reg(list,regsrc2,regdst);
  2108. a_op64_reg_reg(list,op,size,regsrc1,regdst);
  2109. end;
  2110. end;
  2111. procedure tcg64.a_op64_const_subsetref(list : TAsmList; Op : TOpCG; size : TCGSize; a : int64; const sref: tsubsetreference);
  2112. var
  2113. tmpreg64 : tregister64;
  2114. begin
  2115. tmpreg64.reglo:=cg.getintregister(list,OS_32);
  2116. tmpreg64.reghi:=cg.getintregister(list,OS_32);
  2117. a_load64_subsetref_reg(list,sref,tmpreg64);
  2118. a_op64_const_reg(list,op,size,a,tmpreg64);
  2119. a_load64_reg_subsetref(list,tmpreg64,sref);
  2120. end;
  2121. procedure tcg64.a_op64_reg_subsetref(list : TAsmList; Op : TOpCG; size : TCGSize; reg: tregister64; const sref: tsubsetreference);
  2122. var
  2123. tmpreg64 : tregister64;
  2124. begin
  2125. tmpreg64.reglo:=cg.getintregister(list,OS_32);
  2126. tmpreg64.reghi:=cg.getintregister(list,OS_32);
  2127. a_load64_subsetref_reg(list,sref,tmpreg64);
  2128. a_op64_reg_reg(list,op,size,reg,tmpreg64);
  2129. a_load64_reg_subsetref(list,tmpreg64,sref);
  2130. end;
  2131. procedure tcg64.a_op64_ref_subsetref(list : TAsmList; Op : TOpCG; size : TCGSize; const ref: treference; const sref: tsubsetreference);
  2132. var
  2133. tmpreg64 : tregister64;
  2134. begin
  2135. tmpreg64.reglo:=cg.getintregister(list,OS_32);
  2136. tmpreg64.reghi:=cg.getintregister(list,OS_32);
  2137. a_load64_subsetref_reg(list,sref,tmpreg64);
  2138. a_op64_ref_reg(list,op,size,ref,tmpreg64);
  2139. a_load64_reg_subsetref(list,tmpreg64,sref);
  2140. end;
  2141. procedure tcg64.a_op64_subsetref_subsetref(list : TAsmList; Op : TOpCG; size : TCGSize; const ssref,dsref: tsubsetreference);
  2142. var
  2143. tmpreg64 : tregister64;
  2144. begin
  2145. tmpreg64.reglo:=cg.getintregister(list,OS_32);
  2146. tmpreg64.reghi:=cg.getintregister(list,OS_32);
  2147. a_load64_subsetref_reg(list,ssref,tmpreg64);
  2148. a_op64_reg_subsetref(list,op,size,tmpreg64,dsref);
  2149. end;
  2150. procedure tcg64.a_op64_const_reg_reg_checkoverflow(list: TAsmList;op:TOpCG;size : tcgsize;value : int64;regsrc,regdst : tregister64;setflags : boolean;var ovloc : tlocation);
  2151. begin
  2152. a_op64_const_reg_reg(list,op,size,value,regsrc,regdst);
  2153. ovloc.loc:=LOC_VOID;
  2154. end;
  2155. procedure tcg64.a_op64_reg_reg_reg_checkoverflow(list: TAsmList;op:TOpCG;size : tcgsize;regsrc1,regsrc2,regdst : tregister64;setflags : boolean;var ovloc : tlocation);
  2156. begin
  2157. a_op64_reg_reg_reg(list,op,size,regsrc1,regsrc2,regdst);
  2158. ovloc.loc:=LOC_VOID;
  2159. end;
  2160. procedure tcg64.a_load64_loc_subsetref(list : TAsmList;const l: tlocation; const sref : tsubsetreference);
  2161. begin
  2162. case l.loc of
  2163. LOC_REFERENCE, LOC_CREFERENCE:
  2164. a_load64_ref_subsetref(list,l.reference,sref);
  2165. LOC_REGISTER,LOC_CREGISTER:
  2166. a_load64_reg_subsetref(list,l.register64,sref);
  2167. LOC_CONSTANT :
  2168. a_load64_const_subsetref(list,l.value64,sref);
  2169. LOC_SUBSETREF,LOC_CSUBSETREF:
  2170. a_load64_subsetref_subsetref(list,l.sref,sref);
  2171. else
  2172. internalerror(2006082210);
  2173. end;
  2174. end;
  2175. procedure tcg64.a_load64_subsetref_loc(list: TAsmlist; const sref: tsubsetreference; const l: tlocation);
  2176. begin
  2177. case l.loc of
  2178. LOC_REFERENCE, LOC_CREFERENCE:
  2179. a_load64_subsetref_ref(list,sref,l.reference);
  2180. LOC_REGISTER,LOC_CREGISTER:
  2181. a_load64_subsetref_reg(list,sref,l.register64);
  2182. LOC_SUBSETREF,LOC_CSUBSETREF:
  2183. a_load64_subsetref_subsetref(list,sref,l.sref);
  2184. else
  2185. internalerror(2006082211);
  2186. end;
  2187. end;
  2188. {$endif cpu64bitalu}
  2189. function asmsym2indsymflags(sym: TAsmSymbol): tindsymflags;
  2190. begin
  2191. result:=[];
  2192. if sym.typ<>AT_FUNCTION then
  2193. include(result,is_data);
  2194. if sym.bind=AB_WEAK_EXTERNAL then
  2195. include(result,is_weak);
  2196. end;
  2197. procedure destroy_codegen;
  2198. begin
  2199. cg.free;
  2200. cg:=nil;
  2201. {$ifndef cpu64bitalu}
  2202. cg64.free;
  2203. cg64:=nil;
  2204. {$endif cpu64bitalu}
  2205. end;
  2206. end.