cgx86.pas 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781
  1. {
  2. Copyright (c) 1998-2005 by Florian Klaempfl
  3. This unit implements the common parts of the code generator for the i386 and the x86-64.
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. { This unit implements the common parts of the code generator for the i386 and the x86-64.
  18. }
  19. unit cgx86;
  20. {$i fpcdefs.inc}
  21. interface
  22. uses
  23. globtype,
  24. cgbase,cgutils,cgobj,
  25. aasmbase,aasmtai,aasmdata,aasmcpu,
  26. cpubase,cpuinfo,rgobj,rgx86,rgcpu,
  27. symconst,symtype,symdef;
  28. type
  29. { tcgx86 }
  30. tcgx86 = class(tcg)
  31. rgfpu : Trgx86fpu;
  32. procedure done_register_allocators;override;
  33. function getfpuregister(list:TAsmList;size:Tcgsize):Tregister;override;
  34. function getmmxregister(list:TAsmList):Tregister;
  35. function getmmregister(list:TAsmList;size:Tcgsize):Tregister;override;
  36. procedure getcpuregister(list:TAsmList;r:Tregister);override;
  37. procedure ungetcpuregister(list:TAsmList;r:Tregister);override;
  38. procedure alloccpuregisters(list:TAsmList;rt:Tregistertype;const r:Tcpuregisterset);override;
  39. procedure dealloccpuregisters(list:TAsmList;rt:Tregistertype;const r:Tcpuregisterset);override;
  40. function uses_registers(rt:Tregistertype):boolean;override;
  41. procedure add_reg_instruction(instr:Tai;r:tregister);override;
  42. procedure dec_fpu_stack;
  43. procedure inc_fpu_stack;
  44. procedure a_call_name(list : TAsmList;const s : string; weak: boolean);override;
  45. procedure a_call_name_near(list : TAsmList;const s : string; weak: boolean);
  46. procedure a_call_name_static(list : TAsmList;const s : string);override;
  47. procedure a_call_name_static_near(list : TAsmList;const s : string);
  48. procedure a_call_reg(list : TAsmList;reg : tregister);override;
  49. procedure a_call_reg_near(list : TAsmList;reg : tregister);
  50. procedure a_call_ref(list : TAsmList;ref : treference);override;
  51. procedure a_call_ref_near(list : TAsmList;ref : treference);
  52. procedure a_op_const_reg(list : TAsmList; Op: TOpCG; size: TCGSize; a: tcgint; reg: TRegister); override;
  53. procedure a_op_const_ref(list : TAsmList; Op: TOpCG; size: TCGSize; a: tcgint; const ref: TReference); override;
  54. procedure a_op_reg_reg(list : TAsmList; Op: TOpCG; size: TCGSize; src, dst: TRegister); override;
  55. procedure a_op_ref_reg(list : TAsmList; Op: TOpCG; size: TCGSize; const ref: TReference; reg: TRegister); override;
  56. procedure a_op_reg_ref(list : TAsmList; Op: TOpCG; size: TCGSize;reg: TRegister; const ref: TReference); override;
  57. {$ifndef i8086}
  58. procedure a_op_const_reg_reg(list : TAsmList; op : Topcg; size : Tcgsize; a : tcgint; src,dst : Tregister); override;
  59. procedure a_op_reg_reg_reg(list : TAsmList; op : TOpCg; size : tcgsize; src1,src2,dst : tregister); override;
  60. {$endif not i8086}
  61. { move instructions }
  62. procedure a_load_const_reg(list : TAsmList; tosize: tcgsize; a : tcgint;reg : tregister);override;
  63. procedure a_load_const_ref(list : TAsmList; tosize: tcgsize; a : tcgint;const ref : treference);override;
  64. procedure a_load_reg_ref(list : TAsmList;fromsize,tosize: tcgsize; reg : tregister;const ref : treference);override;
  65. procedure a_load_ref_reg(list : TAsmList;fromsize,tosize: tcgsize;const ref : treference;reg : tregister);override;
  66. procedure a_load_reg_reg(list : TAsmList;fromsize,tosize: tcgsize;reg1,reg2 : tregister);override;
  67. procedure a_loadaddr_ref_reg(list : TAsmList;const ref : treference;r : tregister);override;
  68. { bit scan instructions }
  69. procedure a_bit_scan_reg_reg(list: TAsmList; reverse: boolean; size: TCGSize; src, dst: TRegister); override;
  70. { fpu move instructions }
  71. procedure a_loadfpu_reg_reg(list: TAsmList; fromsize, tosize: tcgsize; reg1, reg2: tregister); override;
  72. procedure a_loadfpu_ref_reg(list: TAsmList; fromsize, tosize: tcgsize; const ref: treference; reg: tregister); override;
  73. procedure a_loadfpu_reg_ref(list: TAsmList; fromsize, tosize: tcgsize; reg: tregister; const ref: treference); override;
  74. { vector register move instructions }
  75. procedure a_loadmm_reg_reg(list: TAsmList; fromsize, tosize : tcgsize;reg1, reg2: tregister;shuffle : pmmshuffle); override;
  76. procedure a_loadmm_ref_reg(list: TAsmList; fromsize, tosize : tcgsize;const ref: treference; reg: tregister;shuffle : pmmshuffle); override;
  77. procedure a_loadmm_reg_ref(list: TAsmList; fromsize, tosize : tcgsize;reg: tregister; const ref: treference;shuffle : pmmshuffle); override;
  78. procedure a_opmm_ref_reg(list: TAsmList; Op: TOpCG; size : tcgsize;const ref: treference; reg: tregister;shuffle : pmmshuffle); override;
  79. procedure a_opmm_reg_reg(list: TAsmList; Op: TOpCG; size : tcgsize;src,dst: tregister;shuffle : pmmshuffle);override;
  80. procedure a_opmm_ref_reg_reg(list : TAsmList;Op : TOpCG;size : tcgsize;const ref : treference;src,dst : tregister;shuffle : pmmshuffle);override;
  81. procedure a_opmm_reg_reg_reg(list : TAsmList;Op : TOpCG;size : tcgsize;src1,src2,dst : tregister;shuffle : pmmshuffle);override;
  82. { comparison operations }
  83. procedure a_cmp_const_reg_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;a : tcgint;reg : tregister;
  84. l : tasmlabel);override;
  85. procedure a_cmp_const_ref_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;a : tcgint;const ref : treference;
  86. l : tasmlabel);override;
  87. procedure a_cmp_reg_reg_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;reg1,reg2 : tregister;l : tasmlabel); override;
  88. procedure a_cmp_ref_reg_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;const ref: treference; reg : tregister; l : tasmlabel); override;
  89. procedure a_cmp_reg_ref_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;reg : tregister; const ref: treference; l : tasmlabel); override;
  90. procedure a_jmp_name(list : TAsmList;const s : string);override;
  91. procedure a_jmp_always(list : TAsmList;l: tasmlabel); override;
  92. procedure a_jmp_flags(list : TAsmList;const f : TResFlags;l: tasmlabel); override;
  93. procedure g_flags2reg(list: TAsmList; size: TCgSize; const f: tresflags; reg: TRegister); override;
  94. procedure g_flags2ref(list: TAsmList; size: TCgSize; const f: tresflags; const ref: TReference); override;
  95. procedure g_concatcopy(list : TAsmList;const source,dest : treference;len : tcgint);override;
  96. { entry/exit code helpers }
  97. procedure g_profilecode(list : TAsmList);override;
  98. procedure g_stackpointer_alloc(list : TAsmList;localsize : longint);override;
  99. procedure g_proc_entry(list : TAsmList;localsize : longint;nostackframe:boolean);override;
  100. procedure g_save_registers(list: TAsmList); override;
  101. procedure g_restore_registers(list: TAsmList); override;
  102. procedure g_overflowcheck(list: TAsmList; const l:tlocation;def:tdef);override;
  103. procedure g_external_wrapper(list: TAsmList; procdef: tprocdef; const externalname: string); override;
  104. procedure make_simple_ref(list:TAsmList;var ref: treference);
  105. protected
  106. procedure a_jmp_cond(list : TAsmList;cond : TOpCmp;l: tasmlabel);
  107. procedure check_register_size(size:tcgsize;reg:tregister);
  108. procedure opmm_loc_reg(list: TAsmList; Op: TOpCG; size : tcgsize;loc : tlocation;dst: tregister; shuffle : pmmshuffle);
  109. procedure opmm_loc_reg_reg(list : TAsmList;Op : TOpCG;size : tcgsize;loc : tlocation;src,dst : tregister;shuffle : pmmshuffle);
  110. function get_darwin_call_stub(const s: string; weak: boolean): tasmsymbol;
  111. procedure sizes2load(s1,s2 : tcgsize;var op: tasmop; var s3: topsize);
  112. procedure floatload(list: TAsmList; t : tcgsize;const ref : treference);
  113. procedure floatstore(list: TAsmList; t : tcgsize;const ref : treference);
  114. procedure floatloadops(t : tcgsize;var op : tasmop;var s : topsize);
  115. procedure floatstoreops(t : tcgsize;var op : tasmop;var s : topsize);
  116. procedure internal_restore_regs(list: TAsmList; use_pop: boolean);
  117. end;
  118. const
  119. {$if defined(x86_64)}
  120. TCGSize2OpSize: Array[tcgsize] of topsize =
  121. (S_NO,S_B,S_W,S_L,S_Q,S_XMM,S_B,S_W,S_L,S_Q,S_XMM,
  122. S_FS,S_FL,S_FX,S_IQ,S_FXX,
  123. S_NO,S_NO,S_NO,S_MD,S_XMM,S_YMM,
  124. S_NO,S_NO,S_NO,S_NO,S_XMM,S_YMM);
  125. {$elseif defined(i386)}
  126. TCGSize2OpSize: Array[tcgsize] of topsize =
  127. (S_NO,S_B,S_W,S_L,S_L,S_T,S_B,S_W,S_L,S_L,S_L,
  128. S_FS,S_FL,S_FX,S_IQ,S_FXX,
  129. S_NO,S_NO,S_NO,S_MD,S_XMM,S_YMM,
  130. S_NO,S_NO,S_NO,S_NO,S_XMM,S_YMM);
  131. {$elseif defined(i8086)}
  132. TCGSize2OpSize: Array[tcgsize] of topsize =
  133. (S_NO,S_B,S_W,S_W,S_W,S_T,S_B,S_W,S_W,S_W,S_W,
  134. S_FS,S_FL,S_FX,S_IQ,S_FXX,
  135. S_NO,S_NO,S_NO,S_MD,S_XMM,S_YMM,
  136. S_NO,S_NO,S_NO,S_NO,S_XMM,S_YMM);
  137. {$endif}
  138. {$ifndef NOTARGETWIN}
  139. winstackpagesize = 4096;
  140. {$endif NOTARGETWIN}
  141. function UseAVX: boolean;
  142. function UseIncDec: boolean;
  143. implementation
  144. uses
  145. globals,verbose,systems,cutils,
  146. defutil,paramgr,procinfo,
  147. tgobj,ncgutil,
  148. fmodule,symsym;
  149. function UseAVX: boolean;
  150. begin
  151. Result:=current_settings.fputype in fpu_avx_instructionsets;
  152. end;
  153. { modern CPUs prefer add/sub over inc/dec because add/sub break instructions dependencies on flags
  154. because they modify all flags }
  155. function UseIncDec: boolean;
  156. begin
  157. {$if defined(x86_64)}
  158. Result:=cs_opt_size in current_settings.optimizerswitches;
  159. {$elseif defined(i386)}
  160. Result:=(cs_opt_size in current_settings.optimizerswitches) or (current_settings.cputype in [cpu_386]);
  161. {$elseif defined(i8086)}
  162. Result:=(cs_opt_size in current_settings.optimizerswitches) or (current_settings.cputype in [cpu_8086..cpu_386]);
  163. {$endif}
  164. end;
  165. const
  166. TOpCG2AsmOp: Array[topcg] of TAsmOp = (A_NONE,A_MOV,A_ADD,A_AND,A_DIV,
  167. A_IDIV,A_IMUL,A_MUL,A_NEG,A_NOT,A_OR,
  168. A_SAR,A_SHL,A_SHR,A_SUB,A_XOR,A_ROL,A_ROR);
  169. TOpCmp2AsmCond: Array[topcmp] of TAsmCond = (C_NONE,
  170. C_E,C_G,C_L,C_GE,C_LE,C_NE,C_BE,C_B,C_AE,C_A);
  171. procedure Tcgx86.done_register_allocators;
  172. begin
  173. rg[R_INTREGISTER].free;
  174. rg[R_MMREGISTER].free;
  175. rg[R_MMXREGISTER].free;
  176. rgfpu.free;
  177. inherited done_register_allocators;
  178. end;
  179. function Tcgx86.getfpuregister(list:TAsmList;size:Tcgsize):Tregister;
  180. begin
  181. result:=rgfpu.getregisterfpu(list);
  182. end;
  183. function Tcgx86.getmmxregister(list:TAsmList):Tregister;
  184. begin
  185. if not assigned(rg[R_MMXREGISTER]) then
  186. internalerror(2003121214);
  187. result:=rg[R_MMXREGISTER].getregister(list,R_SUBNONE);
  188. end;
  189. function Tcgx86.getmmregister(list:TAsmList;size:Tcgsize):Tregister;
  190. begin
  191. if not assigned(rg[R_MMREGISTER]) then
  192. internalerror(2003121234);
  193. case size of
  194. OS_F64:
  195. result:=rg[R_MMREGISTER].getregister(list,R_SUBMMD);
  196. OS_F32:
  197. result:=rg[R_MMREGISTER].getregister(list,R_SUBMMS);
  198. OS_M64:
  199. result:=rg[R_MMREGISTER].getregister(list,R_SUBQ);
  200. OS_M128:
  201. result:=rg[R_MMREGISTER].getregister(list,R_SUBMMWHOLE);
  202. else
  203. internalerror(200506041);
  204. end;
  205. end;
  206. procedure Tcgx86.getcpuregister(list:TAsmList;r:Tregister);
  207. begin
  208. if getregtype(r)=R_FPUREGISTER then
  209. internalerror(2003121210)
  210. else
  211. inherited getcpuregister(list,r);
  212. end;
  213. procedure tcgx86.ungetcpuregister(list:TAsmList;r:Tregister);
  214. begin
  215. if getregtype(r)=R_FPUREGISTER then
  216. rgfpu.ungetregisterfpu(list,r)
  217. else
  218. inherited ungetcpuregister(list,r);
  219. end;
  220. procedure Tcgx86.alloccpuregisters(list:TAsmList;rt:Tregistertype;const r:Tcpuregisterset);
  221. begin
  222. if rt<>R_FPUREGISTER then
  223. inherited alloccpuregisters(list,rt,r);
  224. end;
  225. procedure Tcgx86.dealloccpuregisters(list:TAsmList;rt:Tregistertype;const r:Tcpuregisterset);
  226. begin
  227. if rt<>R_FPUREGISTER then
  228. inherited dealloccpuregisters(list,rt,r);
  229. end;
  230. function Tcgx86.uses_registers(rt:Tregistertype):boolean;
  231. begin
  232. if rt=R_FPUREGISTER then
  233. result:=false
  234. else
  235. result:=inherited uses_registers(rt);
  236. end;
  237. procedure tcgx86.add_reg_instruction(instr:Tai;r:tregister);
  238. begin
  239. if getregtype(r)<>R_FPUREGISTER then
  240. inherited add_reg_instruction(instr,r);
  241. end;
  242. procedure tcgx86.dec_fpu_stack;
  243. begin
  244. if rgfpu.fpuvaroffset<=0 then
  245. internalerror(200604201);
  246. dec(rgfpu.fpuvaroffset);
  247. end;
  248. procedure tcgx86.inc_fpu_stack;
  249. begin
  250. if rgfpu.fpuvaroffset>=7 then
  251. internalerror(2012062901);
  252. inc(rgfpu.fpuvaroffset);
  253. end;
  254. {****************************************************************************
  255. This is private property, keep out! :)
  256. ****************************************************************************}
  257. procedure tcgx86.sizes2load(s1,s2 : tcgsize; var op: tasmop; var s3: topsize);
  258. begin
  259. { ensure to have always valid sizes }
  260. if s1=OS_NO then
  261. s1:=s2;
  262. if s2=OS_NO then
  263. s2:=s1;
  264. case s2 of
  265. OS_8,OS_S8 :
  266. if S1 in [OS_8,OS_S8] then
  267. s3 := S_B
  268. else
  269. internalerror(200109221);
  270. OS_16,OS_S16:
  271. case s1 of
  272. OS_8,OS_S8:
  273. s3 := S_BW;
  274. OS_16,OS_S16:
  275. s3 := S_W;
  276. else
  277. internalerror(200109222);
  278. end;
  279. OS_32,OS_S32:
  280. case s1 of
  281. OS_8,OS_S8:
  282. s3 := S_BL;
  283. OS_16,OS_S16:
  284. s3 := S_WL;
  285. OS_32,OS_S32:
  286. s3 := S_L;
  287. else
  288. internalerror(200109223);
  289. end;
  290. {$ifdef x86_64}
  291. OS_64,OS_S64:
  292. case s1 of
  293. OS_8:
  294. s3 := S_BL;
  295. OS_S8:
  296. s3 := S_BQ;
  297. OS_16:
  298. s3 := S_WL;
  299. OS_S16:
  300. s3 := S_WQ;
  301. OS_32:
  302. s3 := S_L;
  303. OS_S32:
  304. s3 := S_LQ;
  305. OS_64,OS_S64:
  306. s3 := S_Q;
  307. else
  308. internalerror(200304302);
  309. end;
  310. {$endif x86_64}
  311. else
  312. internalerror(200109227);
  313. end;
  314. if s3 in [S_B,S_W,S_L,S_Q] then
  315. op := A_MOV
  316. else if s1 in [OS_8,OS_16,OS_32,OS_64] then
  317. op := A_MOVZX
  318. else
  319. {$ifdef x86_64}
  320. if s3 in [S_LQ] then
  321. op := A_MOVSXD
  322. else
  323. {$endif x86_64}
  324. op := A_MOVSX;
  325. end;
  326. procedure tcgx86.make_simple_ref(list:TAsmList;var ref: treference);
  327. var
  328. hreg : tregister;
  329. href : treference;
  330. {$ifndef x86_64}
  331. add_hreg: boolean;
  332. {$endif not x86_64}
  333. begin
  334. hreg:=NR_NO;
  335. { make_simple_ref() may have already been called earlier, and in that
  336. case make sure we don't perform the PIC-simplifications twice }
  337. if (ref.refaddr in [addr_pic,addr_pic_no_got]) then
  338. exit;
  339. {$if defined(x86_64)}
  340. { Only 32bit is allowed }
  341. { Note that this isn't entirely correct: for RIP-relative targets/memory models,
  342. it is actually (offset+@symbol-RIP) that should fit into 32 bits. Since two last
  343. members aren't known until link time, ABIs place very pessimistic limits
  344. on offset values, e.g. SysV AMD64 allows +/-$1000000 (16 megabytes) }
  345. if ((ref.offset<low(longint)) or (ref.offset>high(longint))) or
  346. { absolute address is not a common thing in x64, but nevertheless a possible one }
  347. ((ref.base=NR_NO) and (ref.index=NR_NO) and (ref.symbol=nil)) then
  348. begin
  349. { Load constant value to register }
  350. hreg:=GetAddressRegister(list);
  351. list.concat(taicpu.op_const_reg(A_MOV,S_Q,ref.offset,hreg));
  352. ref.offset:=0;
  353. {if assigned(ref.symbol) then
  354. begin
  355. list.concat(taicpu.op_sym_ofs_reg(A_ADD,S_Q,ref.symbol,0,hreg));
  356. ref.symbol:=nil;
  357. end;}
  358. { Add register to reference }
  359. if ref.base=NR_NO then
  360. ref.base:=hreg
  361. else if ref.index=NR_NO then
  362. ref.index:=hreg
  363. else
  364. begin
  365. { don't use add, as the flags may contain a value }
  366. reference_reset_base(href,ref.base,0,8);
  367. href.index:=hreg;
  368. if ref.scalefactor<>0 then
  369. begin
  370. reference_reset_base(href,ref.base,0,8);
  371. href.index:=hreg;
  372. list.concat(taicpu.op_ref_reg(A_LEA,S_Q,href,hreg));
  373. ref.base:=hreg;
  374. end
  375. else
  376. begin
  377. reference_reset_base(href,ref.index,0,8);
  378. href.index:=hreg;
  379. list.concat(taicpu.op_reg_reg(A_ADD,S_Q,ref.index,hreg));
  380. ref.index:=hreg;
  381. end;
  382. end;
  383. end;
  384. if assigned(ref.symbol) then
  385. begin
  386. if cs_create_pic in current_settings.moduleswitches then
  387. begin
  388. { Local symbols must not be accessed via the GOT }
  389. if (ref.symbol.bind=AB_LOCAL) then
  390. begin
  391. { unfortunately, RIP-based addresses don't support an index }
  392. if (ref.base<>NR_NO) or
  393. (ref.index<>NR_NO) then
  394. begin
  395. reference_reset_symbol(href,ref.symbol,0,ref.alignment);
  396. hreg:=getaddressregister(list);
  397. href.refaddr:=addr_pic_no_got;
  398. href.base:=NR_RIP;
  399. list.concat(taicpu.op_ref_reg(A_LEA,S_Q,href,hreg));
  400. ref.symbol:=nil;
  401. end
  402. else
  403. begin
  404. ref.refaddr:=addr_pic_no_got;
  405. hreg:=NR_NO;
  406. ref.base:=NR_RIP;
  407. end;
  408. end
  409. else
  410. begin
  411. reference_reset_symbol(href,ref.symbol,0,ref.alignment);
  412. hreg:=getaddressregister(list);
  413. href.refaddr:=addr_pic;
  414. href.base:=NR_RIP;
  415. list.concat(taicpu.op_ref_reg(A_MOV,S_Q,href,hreg));
  416. ref.symbol:=nil;
  417. end;
  418. if ref.base=NR_NO then
  419. ref.base:=hreg
  420. else if ref.index=NR_NO then
  421. begin
  422. ref.index:=hreg;
  423. ref.scalefactor:=1;
  424. end
  425. else
  426. begin
  427. { don't use add, as the flags may contain a value }
  428. reference_reset_base(href,ref.base,0,8);
  429. href.index:=hreg;
  430. list.concat(taicpu.op_ref_reg(A_LEA,S_Q,href,hreg));
  431. ref.base:=hreg;
  432. end;
  433. end
  434. else
  435. { Always use RIP relative symbol addressing for Windows and Darwin targets. }
  436. if (target_info.system in (systems_all_windows+[system_x86_64_darwin])) and (ref.base<>NR_RIP) then
  437. begin
  438. if (ref.refaddr=addr_no) and (ref.base=NR_NO) and (ref.index=NR_NO) then
  439. begin
  440. { Set RIP relative addressing for simple symbol references }
  441. ref.base:=NR_RIP;
  442. ref.refaddr:=addr_pic_no_got
  443. end
  444. else
  445. begin
  446. { Use temp register to load calculated 64-bit symbol address for complex references }
  447. reference_reset_symbol(href,ref.symbol,0,sizeof(pint));
  448. href.base:=NR_RIP;
  449. href.refaddr:=addr_pic_no_got;
  450. hreg:=GetAddressRegister(list);
  451. list.concat(taicpu.op_ref_reg(A_LEA,S_Q,href,hreg));
  452. ref.symbol:=nil;
  453. if ref.base=NR_NO then
  454. ref.base:=hreg
  455. else if ref.index=NR_NO then
  456. begin
  457. ref.index:=hreg;
  458. ref.scalefactor:=0;
  459. end
  460. else
  461. begin
  462. { don't use add, as the flags may contain a value }
  463. reference_reset_base(href,ref.base,0,8);
  464. href.index:=hreg;
  465. list.concat(taicpu.op_ref_reg(A_LEA,S_Q,href,hreg));
  466. ref.base:=hreg;
  467. end;
  468. end;
  469. end;
  470. end;
  471. {$elseif defined(i386)}
  472. add_hreg:=false;
  473. if (target_info.system in [system_i386_darwin,system_i386_iphonesim]) then
  474. begin
  475. if assigned(ref.symbol) and
  476. not(assigned(ref.relsymbol)) and
  477. ((ref.symbol.bind in [AB_EXTERNAL,AB_WEAK_EXTERNAL,AB_PRIVATE_EXTERN]) or
  478. (cs_create_pic in current_settings.moduleswitches)) then
  479. begin
  480. if ref.symbol.bind in [AB_EXTERNAL,AB_WEAK_EXTERNAL,AB_PRIVATE_EXTERN] then
  481. begin
  482. hreg:=g_indirect_sym_load(list,ref.symbol.name,asmsym2indsymflags(ref.symbol));
  483. ref.symbol:=nil;
  484. end
  485. else
  486. begin
  487. include(current_procinfo.flags,pi_needs_got);
  488. { make a copy of the got register, hreg can get modified }
  489. hreg:=cg.getaddressregister(list);
  490. a_load_reg_reg(list,OS_ADDR,OS_ADDR,current_procinfo.got,hreg);
  491. ref.relsymbol:=current_procinfo.CurrGOTLabel;
  492. end;
  493. add_hreg:=true
  494. end
  495. end
  496. else if (cs_create_pic in current_settings.moduleswitches) and
  497. assigned(ref.symbol) then
  498. begin
  499. reference_reset_symbol(href,ref.symbol,0,sizeof(pint));
  500. href.base:=current_procinfo.got;
  501. href.refaddr:=addr_pic;
  502. include(current_procinfo.flags,pi_needs_got);
  503. hreg:=cg.getaddressregister(list);
  504. list.concat(taicpu.op_ref_reg(A_MOV,S_L,href,hreg));
  505. ref.symbol:=nil;
  506. add_hreg:=true;
  507. end;
  508. if add_hreg then
  509. begin
  510. if ref.base=NR_NO then
  511. ref.base:=hreg
  512. else if ref.index=NR_NO then
  513. begin
  514. ref.index:=hreg;
  515. ref.scalefactor:=1;
  516. end
  517. else
  518. begin
  519. { don't use add, as the flags may contain a value }
  520. reference_reset_base(href,ref.base,0,8);
  521. href.index:=hreg;
  522. list.concat(taicpu.op_ref_reg(A_LEA,S_L,href,hreg));
  523. ref.base:=hreg;
  524. end;
  525. end;
  526. {$elseif defined(i8086)}
  527. { i8086 does not support stack relative addressing }
  528. if ref.base = NR_STACK_POINTER_REG then
  529. begin
  530. href:=ref;
  531. href.base:=getaddressregister(list);
  532. { let the register allocator find a suitable register for the reference }
  533. list.Concat(Taicpu.op_reg_reg(A_MOV, S_W, NR_SP, href.base));
  534. ref:=href;
  535. end;
  536. { if there is a segment in an int register, move it to ES }
  537. if (ref.segment<>NR_NO) and (not is_segment_reg(ref.segment)) then
  538. begin
  539. list.concat(taicpu.op_reg_reg(A_MOV,S_W,ref.segment,NR_ES));
  540. ref.segment:=NR_ES;
  541. end;
  542. {$endif}
  543. end;
  544. procedure tcgx86.floatloadops(t : tcgsize;var op : tasmop;var s : topsize);
  545. begin
  546. case t of
  547. OS_F32 :
  548. begin
  549. op:=A_FLD;
  550. s:=S_FS;
  551. end;
  552. OS_F64 :
  553. begin
  554. op:=A_FLD;
  555. s:=S_FL;
  556. end;
  557. OS_F80 :
  558. begin
  559. op:=A_FLD;
  560. s:=S_FX;
  561. end;
  562. OS_C64 :
  563. begin
  564. op:=A_FILD;
  565. s:=S_IQ;
  566. end;
  567. else
  568. internalerror(200204043);
  569. end;
  570. end;
  571. procedure tcgx86.floatload(list: TAsmList; t : tcgsize;const ref : treference);
  572. var
  573. op : tasmop;
  574. s : topsize;
  575. tmpref : treference;
  576. begin
  577. tmpref:=ref;
  578. make_simple_ref(list,tmpref);
  579. floatloadops(t,op,s);
  580. list.concat(Taicpu.Op_ref(op,s,tmpref));
  581. inc_fpu_stack;
  582. end;
  583. procedure tcgx86.floatstoreops(t : tcgsize;var op : tasmop;var s : topsize);
  584. begin
  585. case t of
  586. OS_F32 :
  587. begin
  588. op:=A_FSTP;
  589. s:=S_FS;
  590. end;
  591. OS_F64 :
  592. begin
  593. op:=A_FSTP;
  594. s:=S_FL;
  595. end;
  596. OS_F80 :
  597. begin
  598. op:=A_FSTP;
  599. s:=S_FX;
  600. end;
  601. OS_C64 :
  602. begin
  603. op:=A_FISTP;
  604. s:=S_IQ;
  605. end;
  606. else
  607. internalerror(200204042);
  608. end;
  609. end;
  610. procedure tcgx86.floatstore(list: TAsmList; t : tcgsize;const ref : treference);
  611. var
  612. op : tasmop;
  613. s : topsize;
  614. tmpref : treference;
  615. begin
  616. tmpref:=ref;
  617. make_simple_ref(list,tmpref);
  618. floatstoreops(t,op,s);
  619. list.concat(Taicpu.Op_ref(op,s,tmpref));
  620. { storing non extended floats can cause a floating point overflow }
  621. if ((t<>OS_F80) and (cs_fpu_fwait in current_settings.localswitches))
  622. {$ifdef i8086}
  623. { 8087 and 80287 need a FWAIT after a memory store, before it can be
  624. read with the integer unit }
  625. or (current_settings.cputype<=cpu_286)
  626. {$endif i8086}
  627. then
  628. list.concat(Taicpu.Op_none(A_FWAIT,S_NO));
  629. dec_fpu_stack;
  630. end;
  631. procedure tcgx86.check_register_size(size:tcgsize;reg:tregister);
  632. begin
  633. if TCGSize2OpSize[size]<>TCGSize2OpSize[reg_cgsize(reg)] then
  634. internalerror(200306031);
  635. end;
  636. {****************************************************************************
  637. Assembler code
  638. ****************************************************************************}
  639. procedure tcgx86.a_jmp_name(list : TAsmList;const s : string);
  640. var
  641. r: treference;
  642. begin
  643. if (target_info.system <> system_i386_darwin) then
  644. list.concat(taicpu.op_sym(A_JMP,S_NO,current_asmdata.RefAsmSymbol(s)))
  645. else
  646. begin
  647. reference_reset_symbol(r,get_darwin_call_stub(s,false),0,sizeof(pint));
  648. r.refaddr:=addr_full;
  649. list.concat(taicpu.op_ref(A_JMP,S_NO,r));
  650. end;
  651. end;
  652. procedure tcgx86.a_jmp_always(list : TAsmList;l: tasmlabel);
  653. begin
  654. a_jmp_cond(list, OC_NONE, l);
  655. end;
  656. function tcgx86.get_darwin_call_stub(const s: string; weak: boolean): tasmsymbol;
  657. var
  658. stubname: string;
  659. begin
  660. stubname := 'L'+s+'$stub';
  661. result := current_asmdata.getasmsymbol(stubname);
  662. if assigned(result) then
  663. exit;
  664. if current_asmdata.asmlists[al_imports]=nil then
  665. current_asmdata.asmlists[al_imports]:=TAsmList.create;
  666. new_section(current_asmdata.asmlists[al_imports],sec_stub,'',0);
  667. result := current_asmdata.DefineAsmSymbol(stubname,AB_LOCAL,AT_FUNCTION);
  668. current_asmdata.asmlists[al_imports].concat(Tai_symbol.Create(result,0));
  669. { register as a weak symbol if necessary }
  670. if weak then
  671. current_asmdata.weakrefasmsymbol(s);
  672. current_asmdata.asmlists[al_imports].concat(tai_directive.create(asd_indirect_symbol,s));
  673. current_asmdata.asmlists[al_imports].concat(taicpu.op_none(A_HLT));
  674. current_asmdata.asmlists[al_imports].concat(taicpu.op_none(A_HLT));
  675. current_asmdata.asmlists[al_imports].concat(taicpu.op_none(A_HLT));
  676. current_asmdata.asmlists[al_imports].concat(taicpu.op_none(A_HLT));
  677. current_asmdata.asmlists[al_imports].concat(taicpu.op_none(A_HLT));
  678. end;
  679. procedure tcgx86.a_call_name(list : TAsmList;const s : string; weak: boolean);
  680. begin
  681. a_call_name_near(list,s,weak);
  682. end;
  683. procedure tcgx86.a_call_name_near(list : TAsmList;const s : string; weak: boolean);
  684. var
  685. sym : tasmsymbol;
  686. r : treference;
  687. begin
  688. if (target_info.system <> system_i386_darwin) then
  689. begin
  690. if not(weak) then
  691. sym:=current_asmdata.RefAsmSymbol(s)
  692. else
  693. sym:=current_asmdata.WeakRefAsmSymbol(s);
  694. reference_reset_symbol(r,sym,0,sizeof(pint));
  695. if (cs_create_pic in current_settings.moduleswitches) and
  696. { darwin's assembler doesn't want @PLT after call symbols }
  697. not(target_info.system in [system_x86_64_darwin,system_i386_iphonesim]) then
  698. begin
  699. {$ifdef i386}
  700. include(current_procinfo.flags,pi_needs_got);
  701. {$endif i386}
  702. r.refaddr:=addr_pic
  703. end
  704. else
  705. r.refaddr:=addr_full;
  706. end
  707. else
  708. begin
  709. reference_reset_symbol(r,get_darwin_call_stub(s,weak),0,sizeof(pint));
  710. r.refaddr:=addr_full;
  711. end;
  712. list.concat(taicpu.op_ref(A_CALL,S_NO,r));
  713. end;
  714. procedure tcgx86.a_call_name_static(list : TAsmList;const s : string);
  715. begin
  716. a_call_name_static_near(list,s);
  717. end;
  718. procedure tcgx86.a_call_name_static_near(list : TAsmList;const s : string);
  719. var
  720. sym : tasmsymbol;
  721. r : treference;
  722. begin
  723. sym:=current_asmdata.RefAsmSymbol(s);
  724. reference_reset_symbol(r,sym,0,sizeof(pint));
  725. r.refaddr:=addr_full;
  726. list.concat(taicpu.op_ref(A_CALL,S_NO,r));
  727. end;
  728. procedure tcgx86.a_call_reg(list : TAsmList;reg : tregister);
  729. begin
  730. a_call_reg_near(list,reg);
  731. end;
  732. procedure tcgx86.a_call_reg_near(list: TAsmList; reg: tregister);
  733. begin
  734. list.concat(taicpu.op_reg(A_CALL,S_NO,reg));
  735. end;
  736. procedure tcgx86.a_call_ref(list : TAsmList;ref : treference);
  737. begin
  738. a_call_ref_near(list,ref);
  739. end;
  740. procedure tcgx86.a_call_ref_near(list: TAsmList; ref: treference);
  741. begin
  742. list.concat(taicpu.op_ref(A_CALL,S_NO,ref));
  743. end;
  744. {********************** load instructions ********************}
  745. procedure tcgx86.a_load_const_reg(list : TAsmList; tosize: TCGSize; a : tcgint; reg : TRegister);
  746. begin
  747. check_register_size(tosize,reg);
  748. { the optimizer will change it to "xor reg,reg" when loading zero, }
  749. { no need to do it here too (JM) }
  750. list.concat(taicpu.op_const_reg(A_MOV,TCGSize2OpSize[tosize],a,reg))
  751. end;
  752. procedure tcgx86.a_load_const_ref(list : TAsmList; tosize: tcgsize; a : tcgint;const ref : treference);
  753. var
  754. tmpref : treference;
  755. begin
  756. tmpref:=ref;
  757. make_simple_ref(list,tmpref);
  758. {$ifdef x86_64}
  759. { x86_64 only supports signed 32 bits constants directly }
  760. if (tosize in [OS_S64,OS_64]) and
  761. ((a<low(longint)) or (a>high(longint))) then
  762. begin
  763. a_load_const_ref(list,OS_32,longint(a and $ffffffff),tmpref);
  764. inc(tmpref.offset,4);
  765. a_load_const_ref(list,OS_32,longint(a shr 32),tmpref);
  766. end
  767. else
  768. {$endif x86_64}
  769. list.concat(taicpu.op_const_ref(A_MOV,TCGSize2OpSize[tosize],a,tmpref));
  770. end;
  771. procedure tcgx86.a_load_reg_ref(list : TAsmList; fromsize,tosize: TCGSize; reg : tregister;const ref : treference);
  772. var
  773. op: tasmop;
  774. s: topsize;
  775. tmpsize : tcgsize;
  776. tmpreg : tregister;
  777. tmpref : treference;
  778. begin
  779. tmpref:=ref;
  780. make_simple_ref(list,tmpref);
  781. check_register_size(fromsize,reg);
  782. sizes2load(fromsize,tosize,op,s);
  783. case s of
  784. {$ifdef x86_64}
  785. S_BQ,S_WQ,S_LQ,
  786. {$endif x86_64}
  787. S_BW,S_BL,S_WL :
  788. begin
  789. tmpreg:=getintregister(list,tosize);
  790. {$ifdef x86_64}
  791. { zero extensions to 64 bit on the x86_64 are simply done by writting to the lower 32 bit
  792. which clears the upper 64 bit too, so it could be that s is S_L while the reg is
  793. 64 bit (FK) }
  794. if s in [S_BL,S_WL,S_L] then
  795. begin
  796. tmpreg:=makeregsize(list,tmpreg,OS_32);
  797. tmpsize:=OS_32;
  798. end
  799. else
  800. {$endif x86_64}
  801. tmpsize:=tosize;
  802. list.concat(taicpu.op_reg_reg(op,s,reg,tmpreg));
  803. a_load_reg_ref(list,tmpsize,tosize,tmpreg,tmpref);
  804. end;
  805. else
  806. list.concat(taicpu.op_reg_ref(op,s,reg,tmpref));
  807. end;
  808. end;
  809. procedure tcgx86.a_load_ref_reg(list : TAsmList;fromsize,tosize : tcgsize;const ref: treference;reg : tregister);
  810. var
  811. op: tasmop;
  812. s: topsize;
  813. tmpref : treference;
  814. begin
  815. tmpref:=ref;
  816. make_simple_ref(list,tmpref);
  817. check_register_size(tosize,reg);
  818. sizes2load(fromsize,tosize,op,s);
  819. {$ifdef x86_64}
  820. { zero extensions to 64 bit on the x86_64 are simply done by writting to the lower 32 bit
  821. which clears the upper 64 bit too, so it could be that s is S_L while the reg is
  822. 64 bit (FK) }
  823. if s in [S_BL,S_WL,S_L] then
  824. reg:=makeregsize(list,reg,OS_32);
  825. {$endif x86_64}
  826. list.concat(taicpu.op_ref_reg(op,s,tmpref,reg));
  827. end;
  828. procedure tcgx86.a_load_reg_reg(list : TAsmList;fromsize,tosize : tcgsize;reg1,reg2 : tregister);
  829. var
  830. op: tasmop;
  831. s: topsize;
  832. instr:Taicpu;
  833. begin
  834. check_register_size(fromsize,reg1);
  835. check_register_size(tosize,reg2);
  836. if tcgsize2size[fromsize]>tcgsize2size[tosize] then
  837. begin
  838. reg1:=makeregsize(list,reg1,tosize);
  839. s:=tcgsize2opsize[tosize];
  840. op:=A_MOV;
  841. end
  842. else
  843. sizes2load(fromsize,tosize,op,s);
  844. {$ifdef x86_64}
  845. { zero extensions to 64 bit on the x86_64 are simply done by writting to the lower 32 bit
  846. which clears the upper 64 bit too, so it could be that s is S_L while the reg is
  847. 64 bit (FK)
  848. }
  849. if s in [S_BL,S_WL,S_L] then
  850. reg2:=makeregsize(list,reg2,OS_32);
  851. {$endif x86_64}
  852. if (reg1<>reg2) then
  853. begin
  854. instr:=taicpu.op_reg_reg(op,s,reg1,reg2);
  855. { Notify the register allocator that we have written a move instruction so
  856. it can try to eliminate it. }
  857. if (reg1<>current_procinfo.framepointer) and (reg1<>NR_STACK_POINTER_REG) then
  858. add_move_instruction(instr);
  859. list.concat(instr);
  860. end;
  861. {$ifdef x86_64}
  862. { avoid merging of registers and killing the zero extensions (FK) }
  863. if (tosize in [OS_64,OS_S64]) and (s=S_L) then
  864. list.concat(taicpu.op_const_reg(A_AND,S_L,$ffffffff,reg2));
  865. {$endif x86_64}
  866. end;
  867. procedure tcgx86.a_loadaddr_ref_reg(list : TAsmList;const ref : treference;r : tregister);
  868. var
  869. tmpref : treference;
  870. begin
  871. with ref do
  872. begin
  873. if (base=NR_NO) and (index=NR_NO) then
  874. begin
  875. if assigned(ref.symbol) then
  876. begin
  877. if (target_info.system in [system_i386_darwin,system_i386_iphonesim]) and
  878. ((ref.symbol.bind in [AB_EXTERNAL,AB_WEAK_EXTERNAL]) or
  879. (cs_create_pic in current_settings.moduleswitches)) then
  880. begin
  881. if (ref.symbol.bind in [AB_EXTERNAL,AB_WEAK_EXTERNAL]) or
  882. ((cs_create_pic in current_settings.moduleswitches) and
  883. (ref.symbol.bind in [AB_COMMON,AB_GLOBAL,AB_PRIVATE_EXTERN])) then
  884. begin
  885. reference_reset_base(tmpref,
  886. g_indirect_sym_load(list,ref.symbol.name,asmsym2indsymflags(ref.symbol)),
  887. offset,sizeof(pint));
  888. a_loadaddr_ref_reg(list,tmpref,r);
  889. end
  890. else
  891. begin
  892. include(current_procinfo.flags,pi_needs_got);
  893. reference_reset_base(tmpref,current_procinfo.got,offset,ref.alignment);
  894. tmpref.symbol:=symbol;
  895. tmpref.relsymbol:=current_procinfo.CurrGOTLabel;
  896. list.concat(Taicpu.op_ref_reg(A_LEA,tcgsize2opsize[OS_ADDR],tmpref,r));
  897. end;
  898. end
  899. else if (cs_create_pic in current_settings.moduleswitches)
  900. {$ifdef x86_64}
  901. and not(ref.symbol.bind=AB_LOCAL)
  902. {$endif x86_64}
  903. then
  904. begin
  905. {$ifdef x86_64}
  906. reference_reset_symbol(tmpref,ref.symbol,0,ref.alignment);
  907. tmpref.refaddr:=addr_pic;
  908. tmpref.base:=NR_RIP;
  909. list.concat(taicpu.op_ref_reg(A_MOV,S_Q,tmpref,r));
  910. {$else x86_64}
  911. reference_reset_symbol(tmpref,ref.symbol,0,ref.alignment);
  912. tmpref.refaddr:=addr_pic;
  913. tmpref.base:=current_procinfo.got;
  914. include(current_procinfo.flags,pi_needs_got);
  915. list.concat(taicpu.op_ref_reg(A_MOV,S_L,tmpref,r));
  916. {$endif x86_64}
  917. if offset<>0 then
  918. a_op_const_reg(list,OP_ADD,OS_ADDR,offset,r);
  919. end
  920. {$ifdef x86_64}
  921. else if (target_info.system in (systems_all_windows+[system_x86_64_darwin]))
  922. or (cs_create_pic in current_settings.moduleswitches)
  923. then
  924. begin
  925. { Win64 and Darwin/x86_64 always require RIP-relative addressing }
  926. tmpref:=ref;
  927. tmpref.base:=NR_RIP;
  928. tmpref.refaddr:=addr_pic_no_got;
  929. list.concat(Taicpu.op_ref_reg(A_LEA,S_Q,tmpref,r));
  930. end
  931. {$endif x86_64}
  932. else
  933. begin
  934. tmpref:=ref;
  935. tmpref.refaddr:=ADDR_FULL;
  936. list.concat(Taicpu.op_ref_reg(A_MOV,tcgsize2opsize[OS_ADDR],tmpref,r));
  937. end
  938. end
  939. else
  940. a_load_const_reg(list,OS_ADDR,offset,r)
  941. end
  942. else if (base=NR_NO) and (index<>NR_NO) and
  943. (offset=0) and (scalefactor=0) and (symbol=nil) then
  944. a_load_reg_reg(list,OS_ADDR,OS_ADDR,index,r)
  945. else if (base<>NR_NO) and (index=NR_NO) and
  946. (offset=0) and (symbol=nil) then
  947. a_load_reg_reg(list,OS_ADDR,OS_ADDR,base,r)
  948. else
  949. begin
  950. tmpref:=ref;
  951. make_simple_ref(list,tmpref);
  952. list.concat(Taicpu.op_ref_reg(A_LEA,tcgsize2opsize[OS_ADDR],tmpref,r));
  953. end;
  954. if segment<>NR_NO then
  955. begin
  956. if (tf_section_threadvars in target_info.flags) then
  957. begin
  958. { Convert thread local address to a process global addres
  959. as we cannot handle far pointers.}
  960. case target_info.system of
  961. system_i386_linux,system_i386_android:
  962. if segment=NR_GS then
  963. begin
  964. reference_reset_symbol(tmpref,current_asmdata.RefAsmSymbol('___fpc_threadvar_offset'),0,ref.alignment);
  965. tmpref.segment:=NR_GS;
  966. list.concat(Taicpu.op_ref_reg(A_ADD,tcgsize2opsize[OS_ADDR],tmpref,r));
  967. end
  968. else
  969. cgmessage(cg_e_cant_use_far_pointer_there);
  970. else
  971. cgmessage(cg_e_cant_use_far_pointer_there);
  972. end;
  973. end
  974. else
  975. cgmessage(cg_e_cant_use_far_pointer_there);
  976. end;
  977. end;
  978. end;
  979. { all fpu load routines expect that R_ST[0-7] means an fpu regvar and }
  980. { R_ST means "the current value at the top of the fpu stack" (JM) }
  981. procedure tcgx86.a_loadfpu_reg_reg(list: TAsmList; fromsize, tosize: tcgsize; reg1, reg2: tregister);
  982. var
  983. href: treference;
  984. op: tasmop;
  985. s: topsize;
  986. begin
  987. if (reg1<>NR_ST) then
  988. begin
  989. floatloadops(tosize,op,s);
  990. list.concat(taicpu.op_reg(op,s,rgfpu.correct_fpuregister(reg1,rgfpu.fpuvaroffset)));
  991. inc_fpu_stack;
  992. end;
  993. if (reg2<>NR_ST) then
  994. begin
  995. floatstoreops(tosize,op,s);
  996. list.concat(taicpu.op_reg(op,s,rgfpu.correct_fpuregister(reg2,rgfpu.fpuvaroffset)));
  997. dec_fpu_stack;
  998. end;
  999. { OS_F80 < OS_C64, but OS_C64 fits perfectly in OS_F80 }
  1000. if (reg1=NR_ST) and
  1001. (reg2=NR_ST) and
  1002. (tosize<>OS_F80) and
  1003. (tosize<fromsize) then
  1004. begin
  1005. { can't round down to lower precision in x87 :/ }
  1006. tg.gettemp(list,tcgsize2size[tosize],tcgsize2size[tosize],tt_normal,href);
  1007. a_loadfpu_reg_ref(list,fromsize,tosize,NR_ST,href);
  1008. a_loadfpu_ref_reg(list,tosize,tosize,href,NR_ST);
  1009. tg.ungettemp(list,href);
  1010. end;
  1011. end;
  1012. procedure tcgx86.a_loadfpu_ref_reg(list: TAsmList; fromsize, tosize: tcgsize; const ref: treference; reg: tregister);
  1013. begin
  1014. floatload(list,fromsize,ref);
  1015. a_loadfpu_reg_reg(list,fromsize,tosize,NR_ST,reg);
  1016. end;
  1017. procedure tcgx86.a_loadfpu_reg_ref(list: TAsmList; fromsize,tosize: tcgsize; reg: tregister; const ref: treference);
  1018. begin
  1019. { in case a record returned in a floating point register
  1020. (LOC_FPUREGISTER with OS_F32/OS_F64) is stored in memory
  1021. (LOC_REFERENCE with OS_32/OS_64), we have to adjust the
  1022. tosize }
  1023. if (fromsize in [OS_F32,OS_F64]) and
  1024. (tcgsize2size[fromsize]=tcgsize2size[tosize]) then
  1025. case tosize of
  1026. OS_32:
  1027. tosize:=OS_F32;
  1028. OS_64:
  1029. tosize:=OS_F64;
  1030. end;
  1031. if reg<>NR_ST then
  1032. a_loadfpu_reg_reg(list,fromsize,tosize,reg,NR_ST);
  1033. floatstore(list,tosize,ref);
  1034. end;
  1035. function get_scalar_mm_op(fromsize,tosize : tcgsize) : tasmop;
  1036. const
  1037. convertopsse : array[OS_F32..OS_F128,OS_F32..OS_F128] of tasmop = (
  1038. (A_MOVSS,A_CVTSS2SD,A_NONE,A_NONE,A_NONE),
  1039. (A_CVTSD2SS,A_MOVSD,A_NONE,A_NONE,A_NONE),
  1040. (A_NONE,A_NONE,A_NONE,A_NONE,A_NONE),
  1041. (A_NONE,A_NONE,A_NONE,A_MOVQ,A_NONE),
  1042. (A_NONE,A_NONE,A_NONE,A_NONE,A_NONE));
  1043. convertopavx : array[OS_F32..OS_F128,OS_F32..OS_F128] of tasmop = (
  1044. (A_VMOVSS,A_VCVTSS2SD,A_NONE,A_NONE,A_NONE),
  1045. (A_VCVTSD2SS,A_VMOVSD,A_NONE,A_NONE,A_NONE),
  1046. (A_NONE,A_NONE,A_NONE,A_NONE,A_NONE),
  1047. (A_NONE,A_NONE,A_NONE,A_MOVQ,A_NONE),
  1048. (A_NONE,A_NONE,A_NONE,A_NONE,A_NONE));
  1049. begin
  1050. { we can have OS_F32/OS_F64 (record in function result/LOC_MMREGISTER) to
  1051. OS_32/OS_64 (record in memory/LOC_REFERENCE) }
  1052. if (fromsize in [OS_F32,OS_F64]) and
  1053. (tcgsize2size[fromsize]=tcgsize2size[tosize]) then
  1054. case tosize of
  1055. OS_32:
  1056. tosize:=OS_F32;
  1057. OS_64:
  1058. tosize:=OS_F64;
  1059. end;
  1060. if (fromsize in [low(convertopsse)..high(convertopsse)]) and
  1061. (tosize in [low(convertopsse)..high(convertopsse)]) then
  1062. begin
  1063. if UseAVX then
  1064. result:=convertopavx[fromsize,tosize]
  1065. else
  1066. result:=convertopsse[fromsize,tosize];
  1067. end
  1068. { we can have OS_M64 (record in function result/LOC_MMREGISTER) to
  1069. OS_64 (record in memory/LOC_REFERENCE) }
  1070. else if (tcgsize2size[fromsize]=tcgsize2size[tosize]) and
  1071. (fromsize=OS_M64) then
  1072. begin
  1073. if UseAVX then
  1074. result:=A_VMOVQ
  1075. else
  1076. result:=A_MOVQ;
  1077. end
  1078. else
  1079. internalerror(2010060104);
  1080. if result=A_NONE then
  1081. internalerror(200312205);
  1082. end;
  1083. procedure tcgx86.a_loadmm_reg_reg(list: TAsmList; fromsize, tosize : tcgsize;reg1, reg2: tregister;shuffle : pmmshuffle);
  1084. var
  1085. instr : taicpu;
  1086. op : TAsmOp;
  1087. begin
  1088. if shuffle=nil then
  1089. begin
  1090. if fromsize=tosize then
  1091. { needs correct size in case of spilling }
  1092. case fromsize of
  1093. OS_F32:
  1094. instr:=taicpu.op_reg_reg(A_MOVAPS,S_NO,reg1,reg2);
  1095. OS_F64:
  1096. instr:=taicpu.op_reg_reg(A_MOVAPD,S_NO,reg1,reg2);
  1097. OS_M64:
  1098. instr:=taicpu.op_reg_reg(A_MOVQ,S_NO,reg1,reg2);
  1099. else
  1100. internalerror(2006091201);
  1101. end
  1102. else
  1103. internalerror(200312202);
  1104. add_move_instruction(instr);
  1105. end
  1106. else if shufflescalar(shuffle) then
  1107. begin
  1108. op:=get_scalar_mm_op(fromsize,tosize);
  1109. { MOVAPD/MOVAPS are normally faster }
  1110. if op=A_MOVSD then
  1111. op:=A_MOVAPD
  1112. else if op=A_MOVSS then
  1113. op:=A_MOVAPS
  1114. { VMOVSD/SS is not available with two register operands }
  1115. else if op=A_VMOVSD then
  1116. op:=A_VMOVAPD
  1117. else if op=A_VMOVSS then
  1118. op:=A_VMOVAPS;
  1119. { A_VCVTSD2SS and A_VCVTSS2SD require always three operands }
  1120. if (op=A_VCVTSD2SS) or (op=A_VCVTSS2SD) then
  1121. instr:=taicpu.op_reg_reg_reg(op,S_NO,reg1,reg2,reg2)
  1122. else
  1123. instr:=taicpu.op_reg_reg(op,S_NO,reg1,reg2);
  1124. case op of
  1125. A_VMOVAPD,
  1126. A_VMOVAPS,
  1127. A_VMOVSS,
  1128. A_VMOVSD,
  1129. A_VMOVQ,
  1130. A_MOVAPD,
  1131. A_MOVAPS,
  1132. A_MOVSS,
  1133. A_MOVSD,
  1134. A_MOVQ:
  1135. add_move_instruction(instr);
  1136. end;
  1137. end
  1138. else
  1139. internalerror(200312201);
  1140. list.concat(instr);
  1141. end;
  1142. procedure tcgx86.a_loadmm_ref_reg(list: TAsmList; fromsize, tosize : tcgsize;const ref: treference; reg: tregister;shuffle : pmmshuffle);
  1143. var
  1144. tmpref : treference;
  1145. op : tasmop;
  1146. begin
  1147. tmpref:=ref;
  1148. make_simple_ref(list,tmpref);
  1149. if shuffle=nil then
  1150. begin
  1151. if fromsize=OS_M64 then
  1152. list.concat(taicpu.op_ref_reg(A_MOVQ,S_NO,tmpref,reg))
  1153. else
  1154. {$ifdef x86_64}
  1155. { x86-64 has always properly aligned data }
  1156. list.concat(taicpu.op_ref_reg(A_MOVDQA,S_NO,tmpref,reg));
  1157. {$else x86_64}
  1158. list.concat(taicpu.op_ref_reg(A_MOVDQU,S_NO,tmpref,reg));
  1159. {$endif x86_64}
  1160. end
  1161. else if shufflescalar(shuffle) then
  1162. begin
  1163. op:=get_scalar_mm_op(fromsize,tosize);
  1164. { A_VCVTSD2SS and A_VCVTSS2SD require always three operands }
  1165. if (op=A_VCVTSD2SS) or (op=A_VCVTSS2SD) then
  1166. list.concat(taicpu.op_ref_reg_reg(op,S_NO,tmpref,reg,reg))
  1167. else
  1168. list.concat(taicpu.op_ref_reg(op,S_NO,tmpref,reg))
  1169. end
  1170. else
  1171. internalerror(200312252);
  1172. end;
  1173. procedure tcgx86.a_loadmm_reg_ref(list: TAsmList; fromsize, tosize : tcgsize;reg: tregister; const ref: treference;shuffle : pmmshuffle);
  1174. var
  1175. hreg : tregister;
  1176. tmpref : treference;
  1177. op : tasmop;
  1178. begin
  1179. tmpref:=ref;
  1180. make_simple_ref(list,tmpref);
  1181. if shuffle=nil then
  1182. begin
  1183. if fromsize=OS_M64 then
  1184. list.concat(taicpu.op_reg_ref(A_MOVQ,S_NO,reg,tmpref))
  1185. else
  1186. {$ifdef x86_64}
  1187. { x86-64 has always properly aligned data }
  1188. list.concat(taicpu.op_reg_ref(A_MOVDQA,S_NO,reg,tmpref))
  1189. {$else x86_64}
  1190. list.concat(taicpu.op_reg_ref(A_MOVDQU,S_NO,reg,tmpref))
  1191. {$endif x86_64}
  1192. end
  1193. else if shufflescalar(shuffle) then
  1194. begin
  1195. if tcgsize2size[tosize]<>tcgsize2size[fromsize] then
  1196. begin
  1197. hreg:=getmmregister(list,tosize);
  1198. op:=get_scalar_mm_op(fromsize,tosize);
  1199. { A_VCVTSD2SS and A_VCVTSS2SD require always three operands }
  1200. if (op=A_VCVTSD2SS) or (op=A_VCVTSS2SD) then
  1201. list.concat(taicpu.op_reg_reg_reg(op,S_NO,reg,hreg,hreg))
  1202. else
  1203. list.concat(taicpu.op_reg_reg(op,S_NO,reg,hreg));
  1204. list.concat(taicpu.op_reg_ref(get_scalar_mm_op(tosize,tosize),S_NO,hreg,tmpref))
  1205. end
  1206. else
  1207. list.concat(taicpu.op_reg_ref(get_scalar_mm_op(fromsize,tosize),S_NO,reg,tmpref));
  1208. end
  1209. else
  1210. internalerror(200312252);
  1211. end;
  1212. procedure tcgx86.a_opmm_ref_reg(list: TAsmList; Op: TOpCG; size : tcgsize;const ref: treference; reg: tregister;shuffle : pmmshuffle);
  1213. var
  1214. l : tlocation;
  1215. begin
  1216. l.loc:=LOC_REFERENCE;
  1217. l.reference:=ref;
  1218. l.size:=size;
  1219. opmm_loc_reg(list,op,size,l,reg,shuffle);
  1220. end;
  1221. procedure tcgx86.a_opmm_reg_reg(list: TAsmList; Op: TOpCG; size : tcgsize;src,dst: tregister;shuffle : pmmshuffle);
  1222. var
  1223. l : tlocation;
  1224. begin
  1225. l.loc:=LOC_MMREGISTER;
  1226. l.register:=src;
  1227. l.size:=size;
  1228. opmm_loc_reg(list,op,size,l,dst,shuffle);
  1229. end;
  1230. procedure tcgx86.opmm_loc_reg_reg(list: TAsmList; Op: TOpCG; size : tcgsize;loc : tlocation;src,dst: tregister; shuffle : pmmshuffle);
  1231. const
  1232. opmm2asmop : array[0..1,OS_F32..OS_F64,topcg] of tasmop = (
  1233. ( { scalar }
  1234. ( { OS_F32 }
  1235. A_NOP,A_NOP,A_VADDSS,A_NOP,A_VDIVSS,A_NOP,A_NOP,A_VMULSS,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_VSUBSS,A_NOP,A_NOP,A_NOP
  1236. ),
  1237. ( { OS_F64 }
  1238. A_NOP,A_NOP,A_VADDSD,A_NOP,A_VDIVSD,A_NOP,A_NOP,A_VMULSD,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_VSUBSD,A_NOP,A_NOP,A_NOP
  1239. )
  1240. ),
  1241. ( { vectorized/packed }
  1242. { because the logical packed single instructions have shorter op codes, we use always
  1243. these
  1244. }
  1245. ( { OS_F32 }
  1246. A_NOP,A_NOP,A_VADDPS,A_NOP,A_VDIVPS,A_NOP,A_NOP,A_VMULPS,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_VSUBPS,A_VXORPS,A_NOP,A_NOP
  1247. ),
  1248. ( { OS_F64 }
  1249. A_NOP,A_NOP,A_VADDPD,A_NOP,A_VDIVPD,A_NOP,A_NOP,A_VMULPD,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_VSUBPD,A_VXORPD,A_NOP,A_NOP
  1250. )
  1251. )
  1252. );
  1253. var
  1254. resultreg : tregister;
  1255. asmop : tasmop;
  1256. begin
  1257. { this is an internally used procedure so the parameters have
  1258. some constrains
  1259. }
  1260. if loc.size<>size then
  1261. internalerror(2013061108);
  1262. resultreg:=dst;
  1263. { deshuffle }
  1264. //!!!
  1265. if (shuffle<>nil) and not(shufflescalar(shuffle)) then
  1266. begin
  1267. internalerror(2013061107);
  1268. end
  1269. else if (shuffle=nil) then
  1270. asmop:=opmm2asmop[1,size,op]
  1271. else if shufflescalar(shuffle) then
  1272. begin
  1273. asmop:=opmm2asmop[0,size,op];
  1274. { no scalar operation available? }
  1275. if asmop=A_NOP then
  1276. begin
  1277. { do vectorized and shuffle finally }
  1278. internalerror(2010060102);
  1279. end;
  1280. end
  1281. else
  1282. internalerror(2013061106);
  1283. if asmop=A_NOP then
  1284. internalerror(2013061105);
  1285. case loc.loc of
  1286. LOC_CREFERENCE,LOC_REFERENCE:
  1287. begin
  1288. make_simple_ref(current_asmdata.CurrAsmList,loc.reference);
  1289. list.concat(taicpu.op_ref_reg_reg(asmop,S_NO,loc.reference,src,resultreg));
  1290. end;
  1291. LOC_CMMREGISTER,LOC_MMREGISTER:
  1292. list.concat(taicpu.op_reg_reg_reg(asmop,S_NO,loc.register,src,resultreg));
  1293. else
  1294. internalerror(2013061104);
  1295. end;
  1296. { shuffle }
  1297. if resultreg<>dst then
  1298. begin
  1299. internalerror(2013061103);
  1300. end;
  1301. end;
  1302. procedure tcgx86.a_opmm_reg_reg_reg(list: TAsmList; Op: TOpCG; size : tcgsize;src1,src2,dst: tregister;shuffle : pmmshuffle);
  1303. var
  1304. l : tlocation;
  1305. begin
  1306. l.loc:=LOC_MMREGISTER;
  1307. l.register:=src1;
  1308. l.size:=size;
  1309. opmm_loc_reg_reg(list,op,size,l,src2,dst,shuffle);
  1310. end;
  1311. procedure tcgx86.a_opmm_ref_reg_reg(list: TAsmList; Op: TOpCG; size : tcgsize;const ref: treference; src,dst: tregister;shuffle : pmmshuffle);
  1312. var
  1313. l : tlocation;
  1314. begin
  1315. l.loc:=LOC_REFERENCE;
  1316. l.reference:=ref;
  1317. l.size:=size;
  1318. opmm_loc_reg_reg(list,op,size,l,src,dst,shuffle);
  1319. end;
  1320. procedure tcgx86.opmm_loc_reg(list: TAsmList; Op: TOpCG; size : tcgsize;loc : tlocation;dst: tregister; shuffle : pmmshuffle);
  1321. const
  1322. opmm2asmop : array[0..1,OS_F32..OS_F64,topcg] of tasmop = (
  1323. ( { scalar }
  1324. ( { OS_F32 }
  1325. A_NOP,A_NOP,A_ADDSS,A_NOP,A_DIVSS,A_NOP,A_NOP,A_MULSS,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_SUBSS,A_NOP,A_NOP,A_NOP
  1326. ),
  1327. ( { OS_F64 }
  1328. A_NOP,A_NOP,A_ADDSD,A_NOP,A_DIVSD,A_NOP,A_NOP,A_MULSD,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_SUBSD,A_NOP,A_NOP,A_NOP
  1329. )
  1330. ),
  1331. ( { vectorized/packed }
  1332. { because the logical packed single instructions have shorter op codes, we use always
  1333. these
  1334. }
  1335. ( { OS_F32 }
  1336. A_NOP,A_NOP,A_ADDPS,A_NOP,A_DIVPS,A_NOP,A_NOP,A_MULPS,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_SUBPS,A_XORPS,A_NOP,A_NOP
  1337. ),
  1338. ( { OS_F64 }
  1339. A_NOP,A_NOP,A_ADDPD,A_NOP,A_DIVPD,A_NOP,A_NOP,A_MULPD,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_NOP,A_SUBPD,A_XORPD,A_NOP,A_NOP
  1340. )
  1341. )
  1342. );
  1343. var
  1344. resultreg : tregister;
  1345. asmop : tasmop;
  1346. begin
  1347. { this is an internally used procedure so the parameters have
  1348. some constrains
  1349. }
  1350. if loc.size<>size then
  1351. internalerror(200312213);
  1352. resultreg:=dst;
  1353. { deshuffle }
  1354. //!!!
  1355. if (shuffle<>nil) and not(shufflescalar(shuffle)) then
  1356. begin
  1357. internalerror(2010060101);
  1358. end
  1359. else if (shuffle=nil) then
  1360. asmop:=opmm2asmop[1,size,op]
  1361. else if shufflescalar(shuffle) then
  1362. begin
  1363. asmop:=opmm2asmop[0,size,op];
  1364. { no scalar operation available? }
  1365. if asmop=A_NOP then
  1366. begin
  1367. { do vectorized and shuffle finally }
  1368. internalerror(2010060102);
  1369. end;
  1370. end
  1371. else
  1372. internalerror(200312211);
  1373. if asmop=A_NOP then
  1374. internalerror(200312216);
  1375. case loc.loc of
  1376. LOC_CREFERENCE,LOC_REFERENCE:
  1377. begin
  1378. make_simple_ref(current_asmdata.CurrAsmList,loc.reference);
  1379. list.concat(taicpu.op_ref_reg(asmop,S_NO,loc.reference,resultreg));
  1380. end;
  1381. LOC_CMMREGISTER,LOC_MMREGISTER:
  1382. list.concat(taicpu.op_reg_reg(asmop,S_NO,loc.register,resultreg));
  1383. else
  1384. internalerror(200312214);
  1385. end;
  1386. { shuffle }
  1387. if resultreg<>dst then
  1388. begin
  1389. internalerror(200312212);
  1390. end;
  1391. end;
  1392. {$ifndef i8086}
  1393. procedure tcgx86.a_op_const_reg_reg(list:TAsmList;op:Topcg;size:Tcgsize;
  1394. a:tcgint;src,dst:Tregister);
  1395. var
  1396. power : longint;
  1397. href : treference;
  1398. begin
  1399. power:=0;
  1400. if (op in [OP_MUL,OP_IMUL]) and (size in [OS_32,OS_S32,OS_64,OS_S64]) and
  1401. not(cs_check_overflow in current_settings.localswitches) and
  1402. (a>1) and ispowerof2(int64(a-1),power) and (power in [1..3]) then
  1403. begin
  1404. reference_reset_base(href,src,0,0);
  1405. href.index:=src;
  1406. href.scalefactor:=a-1;
  1407. list.concat(taicpu.op_ref_reg(A_LEA,TCgSize2OpSize[size],href,dst));
  1408. end
  1409. else if (op in [OP_MUL,OP_IMUL]) and (size in [OS_32,OS_S32,OS_64,OS_S64]) and
  1410. not(cs_check_overflow in current_settings.localswitches) and
  1411. (a>1) and ispowerof2(int64(a),power) and (power in [1..3]) then
  1412. begin
  1413. reference_reset_base(href,src,0,0);
  1414. href.index:=src;
  1415. href.scalefactor:=a;
  1416. list.concat(taicpu.op_ref_reg(A_LEA,TCgSize2OpSize[size],href,dst));
  1417. end
  1418. else if (op=OP_ADD) and
  1419. ((size in [OS_32,OS_S32]) or
  1420. { lea supports only 32 bit signed displacments }
  1421. ((size=OS_64) and (a>=0) and (a<=maxLongint)) or
  1422. ((size=OS_S64) and (a>=-maxLongint) and (a<=maxLongint))
  1423. ) and
  1424. not(cs_check_overflow in current_settings.localswitches) then
  1425. begin
  1426. reference_reset_base(href,src,a,0);
  1427. list.concat(taicpu.op_ref_reg(A_LEA,TCgSize2OpSize[size],href,dst));
  1428. end
  1429. else if (op=OP_SUB) and
  1430. ((size in [OS_32,OS_S32]) or
  1431. { lea supports only 32 bit signed displacments }
  1432. ((size=OS_64) and (a>=0) and (a<=maxLongint)) or
  1433. ((size=OS_S64) and (a>=-maxLongint) and (a<=maxLongint))
  1434. ) and
  1435. not(cs_check_overflow in current_settings.localswitches) then
  1436. begin
  1437. reference_reset_base(href,src,-a,0);
  1438. list.concat(taicpu.op_ref_reg(A_LEA,TCgSize2OpSize[size],href,dst));
  1439. end
  1440. else
  1441. inherited a_op_const_reg_reg(list,op,size,a,src,dst);
  1442. end;
  1443. procedure tcgx86.a_op_reg_reg_reg(list: TAsmList; op: TOpCg;
  1444. size: tcgsize; src1, src2, dst: tregister);
  1445. var
  1446. href : treference;
  1447. begin
  1448. if (op=OP_ADD) and (size in [OS_32,OS_S32,OS_64,OS_S64]) and
  1449. not(cs_check_overflow in current_settings.localswitches) then
  1450. begin
  1451. reference_reset_base(href,src1,0,0);
  1452. href.index:=src2;
  1453. list.concat(taicpu.op_ref_reg(A_LEA,TCgSize2OpSize[size],href,dst));
  1454. end
  1455. else
  1456. inherited a_op_reg_reg_reg(list,op,size,src1,src2,dst);
  1457. end;
  1458. {$endif not i8086}
  1459. procedure tcgx86.a_op_const_reg(list : TAsmList; Op: TOpCG; size: TCGSize; a: tcgint; reg: TRegister);
  1460. var
  1461. opcode : tasmop;
  1462. power : longint;
  1463. href : treference;
  1464. {$ifdef x86_64}
  1465. tmpreg : tregister;
  1466. {$endif x86_64}
  1467. begin
  1468. optimize_op_const(op, a);
  1469. {$ifdef x86_64}
  1470. { x86_64 only supports signed 32 bits constants directly }
  1471. if not(op in [OP_NONE,OP_MOVE]) and
  1472. (size in [OS_S64,OS_64]) and
  1473. ((a<low(longint)) or (a>high(longint))) then
  1474. begin
  1475. tmpreg:=getintregister(list,size);
  1476. a_load_const_reg(list,size,a,tmpreg);
  1477. a_op_reg_reg(list,op,size,tmpreg,reg);
  1478. exit;
  1479. end;
  1480. {$endif x86_64}
  1481. check_register_size(size,reg);
  1482. case op of
  1483. OP_NONE :
  1484. begin
  1485. { Opcode is optimized away }
  1486. end;
  1487. OP_MOVE :
  1488. begin
  1489. { Optimized, replaced with a simple load }
  1490. a_load_const_reg(list,size,a,reg);
  1491. end;
  1492. OP_DIV, OP_IDIV:
  1493. begin
  1494. if ispowerof2(int64(a),power) then
  1495. begin
  1496. case op of
  1497. OP_DIV:
  1498. opcode := A_SHR;
  1499. OP_IDIV:
  1500. opcode := A_SAR;
  1501. else
  1502. internalerror(2013112907);
  1503. end;
  1504. list.concat(taicpu.op_const_reg(opcode,TCgSize2OpSize[size],power,reg));
  1505. exit;
  1506. end;
  1507. { the rest should be handled specifically in the code }
  1508. { generator because of the silly register usage restraints }
  1509. internalerror(200109224);
  1510. end;
  1511. OP_MUL,OP_IMUL:
  1512. begin
  1513. if not(cs_check_overflow in current_settings.localswitches) and
  1514. ispowerof2(int64(a),power) then
  1515. begin
  1516. list.concat(taicpu.op_const_reg(A_SHL,TCgSize2OpSize[size],power,reg));
  1517. exit;
  1518. end;
  1519. if op = OP_IMUL then
  1520. list.concat(taicpu.op_const_reg(A_IMUL,TCgSize2OpSize[size],a,reg))
  1521. else
  1522. { OP_MUL should be handled specifically in the code }
  1523. { generator because of the silly register usage restraints }
  1524. internalerror(200109225);
  1525. end;
  1526. OP_ADD, OP_AND, OP_OR, OP_SUB, OP_XOR:
  1527. if not(cs_check_overflow in current_settings.localswitches) and
  1528. (a = 1) and
  1529. (op in [OP_ADD,OP_SUB]) and
  1530. UseIncDec then
  1531. begin
  1532. if op = OP_ADD then
  1533. list.concat(taicpu.op_reg(A_INC,TCgSize2OpSize[size],reg))
  1534. else
  1535. list.concat(taicpu.op_reg(A_DEC,TCgSize2OpSize[size],reg))
  1536. end
  1537. else if (a = 0) then
  1538. if (op <> OP_AND) then
  1539. exit
  1540. else
  1541. list.concat(taicpu.op_const_reg(A_MOV,TCgSize2OpSize[size],0,reg))
  1542. else if (aword(a) = high(aword)) and
  1543. (op in [OP_AND,OP_OR,OP_XOR]) then
  1544. begin
  1545. case op of
  1546. OP_AND:
  1547. exit;
  1548. OP_OR:
  1549. list.concat(taicpu.op_const_reg(A_MOV,TCgSize2OpSize[size],aint(high(aword)),reg));
  1550. OP_XOR:
  1551. list.concat(taicpu.op_reg(A_NOT,TCgSize2OpSize[size],reg));
  1552. end
  1553. end
  1554. else
  1555. list.concat(taicpu.op_const_reg(TOpCG2AsmOp[op],TCgSize2OpSize[size],aint(a),reg));
  1556. OP_SHL,OP_SHR,OP_SAR,OP_ROL,OP_ROR:
  1557. begin
  1558. {$if defined(x86_64)}
  1559. if (a and 63) <> 0 Then
  1560. list.concat(taicpu.op_const_reg(TOpCG2AsmOp[op],TCgSize2OpSize[size],a and 63,reg));
  1561. if (a shr 6) <> 0 Then
  1562. internalerror(200609073);
  1563. {$elseif defined(i386)}
  1564. if (a and 31) <> 0 Then
  1565. list.concat(taicpu.op_const_reg(TOpCG2AsmOp[op],TCgSize2OpSize[size],a and 31,reg));
  1566. if (a shr 5) <> 0 Then
  1567. internalerror(200609071);
  1568. {$elseif defined(i8086)}
  1569. if (a shr 5) <> 0 Then
  1570. internalerror(2013043002);
  1571. a := a and 31;
  1572. if a <> 0 Then
  1573. begin
  1574. if (current_settings.cputype < cpu_186) and (a <> 1) then
  1575. begin
  1576. getcpuregister(list,NR_CL);
  1577. a_load_const_reg(list,OS_8,a,NR_CL);
  1578. list.concat(taicpu.op_reg_reg(TOpCG2AsmOp[op],TCgSize2OpSize[size],NR_CL,reg));
  1579. ungetcpuregister(list,NR_CL);
  1580. end
  1581. else
  1582. list.concat(taicpu.op_const_reg(TOpCG2AsmOp[op],TCgSize2OpSize[size],a,reg));
  1583. end;
  1584. {$endif}
  1585. end
  1586. else internalerror(200609072);
  1587. end;
  1588. end;
  1589. procedure tcgx86.a_op_const_ref(list : TAsmList; Op: TOpCG; size: TCGSize; a: tcgint; const ref: TReference);
  1590. var
  1591. opcode: tasmop;
  1592. power: longint;
  1593. {$ifdef x86_64}
  1594. tmpreg : tregister;
  1595. {$endif x86_64}
  1596. tmpref : treference;
  1597. begin
  1598. optimize_op_const(op, a);
  1599. tmpref:=ref;
  1600. make_simple_ref(list,tmpref);
  1601. {$ifdef x86_64}
  1602. { x86_64 only supports signed 32 bits constants directly }
  1603. if not(op in [OP_NONE,OP_MOVE]) and
  1604. (size in [OS_S64,OS_64]) and
  1605. ((a<low(longint)) or (a>high(longint))) then
  1606. begin
  1607. tmpreg:=getintregister(list,size);
  1608. a_load_const_reg(list,size,a,tmpreg);
  1609. a_op_reg_ref(list,op,size,tmpreg,tmpref);
  1610. exit;
  1611. end;
  1612. {$endif x86_64}
  1613. Case Op of
  1614. OP_NONE :
  1615. begin
  1616. { Opcode is optimized away }
  1617. end;
  1618. OP_MOVE :
  1619. begin
  1620. { Optimized, replaced with a simple load }
  1621. a_load_const_ref(list,size,a,ref);
  1622. end;
  1623. OP_DIV, OP_IDIV:
  1624. Begin
  1625. if ispowerof2(int64(a),power) then
  1626. begin
  1627. case op of
  1628. OP_DIV:
  1629. opcode := A_SHR;
  1630. OP_IDIV:
  1631. opcode := A_SAR;
  1632. else
  1633. internalerror(2013112908);
  1634. end;
  1635. list.concat(taicpu.op_const_ref(opcode,
  1636. TCgSize2OpSize[size],power,tmpref));
  1637. exit;
  1638. end;
  1639. { the rest should be handled specifically in the code }
  1640. { generator because of the silly register usage restraints }
  1641. internalerror(200109231);
  1642. End;
  1643. OP_MUL,OP_IMUL:
  1644. begin
  1645. if not(cs_check_overflow in current_settings.localswitches) and
  1646. ispowerof2(int64(a),power) then
  1647. begin
  1648. list.concat(taicpu.op_const_ref(A_SHL,TCgSize2OpSize[size],
  1649. power,tmpref));
  1650. exit;
  1651. end;
  1652. { can't multiply a memory location directly with a constant }
  1653. if op = OP_IMUL then
  1654. inherited a_op_const_ref(list,op,size,a,tmpref)
  1655. else
  1656. { OP_MUL should be handled specifically in the code }
  1657. { generator because of the silly register usage restraints }
  1658. internalerror(200109232);
  1659. end;
  1660. OP_ADD, OP_AND, OP_OR, OP_SUB, OP_XOR:
  1661. if not(cs_check_overflow in current_settings.localswitches) and
  1662. (a = 1) and
  1663. (op in [OP_ADD,OP_SUB]) and
  1664. UseIncDec then
  1665. begin
  1666. if op = OP_ADD then
  1667. list.concat(taicpu.op_ref(A_INC,TCgSize2OpSize[size],tmpref))
  1668. else
  1669. list.concat(taicpu.op_ref(A_DEC,TCgSize2OpSize[size],tmpref))
  1670. end
  1671. else if (a = 0) then
  1672. if (op <> OP_AND) then
  1673. exit
  1674. else
  1675. a_load_const_ref(list,size,0,tmpref)
  1676. else if (aword(a) = high(aword)) and
  1677. (op in [OP_AND,OP_OR,OP_XOR]) then
  1678. begin
  1679. case op of
  1680. OP_AND:
  1681. exit;
  1682. OP_OR:
  1683. list.concat(taicpu.op_const_ref(A_MOV,TCgSize2OpSize[size],aint(high(aword)),tmpref));
  1684. OP_XOR:
  1685. list.concat(taicpu.op_ref(A_NOT,TCgSize2OpSize[size],tmpref));
  1686. end
  1687. end
  1688. else
  1689. list.concat(taicpu.op_const_ref(TOpCG2AsmOp[op],
  1690. TCgSize2OpSize[size],a,tmpref));
  1691. OP_SHL,OP_SHR,OP_SAR,OP_ROL,OP_ROR:
  1692. begin
  1693. {$if defined(x86_64)}
  1694. if (a and 63) <> 0 Then
  1695. list.concat(taicpu.op_const_ref(TOpCG2AsmOp[op],TCgSize2OpSize[size],a and 63,tmpref));
  1696. if (a shr 6) <> 0 Then
  1697. internalerror(2013111003);
  1698. {$elseif defined(i386)}
  1699. if (a and 31) <> 0 Then
  1700. list.concat(taicpu.op_const_ref(TOpCG2AsmOp[op],TCgSize2OpSize[size],a and 31,tmpref));
  1701. if (a shr 5) <> 0 Then
  1702. internalerror(2013111002);
  1703. {$elseif defined(i8086)}
  1704. if (a shr 5) <> 0 Then
  1705. internalerror(2013111001);
  1706. a := a and 31;
  1707. if a <> 0 Then
  1708. begin
  1709. if (current_settings.cputype < cpu_186) and (a <> 1) then
  1710. begin
  1711. getcpuregister(list,NR_CL);
  1712. a_load_const_reg(list,OS_8,a,NR_CL);
  1713. list.concat(taicpu.op_reg_ref(TOpCG2AsmOp[op],TCgSize2OpSize[size],NR_CL,tmpref));
  1714. ungetcpuregister(list,NR_CL);
  1715. end
  1716. else
  1717. list.concat(taicpu.op_const_ref(TOpCG2AsmOp[op],TCgSize2OpSize[size],a,tmpref));
  1718. end;
  1719. {$endif}
  1720. end
  1721. else internalerror(68992);
  1722. end;
  1723. end;
  1724. procedure tcgx86.a_op_reg_reg(list : TAsmList; Op: TOpCG; size: TCGSize; src, dst: TRegister);
  1725. const
  1726. {$if defined(cpu64bitalu) or defined(cpu32bitalu)}
  1727. REGCX=NR_ECX;
  1728. REGCX_Size = OS_32;
  1729. {$elseif defined(cpu16bitalu)}
  1730. REGCX=NR_CX;
  1731. REGCX_Size = OS_16;
  1732. {$endif}
  1733. var
  1734. dstsize: topsize;
  1735. instr:Taicpu;
  1736. begin
  1737. check_register_size(size,src);
  1738. check_register_size(size,dst);
  1739. dstsize := tcgsize2opsize[size];
  1740. case op of
  1741. OP_NEG,OP_NOT:
  1742. begin
  1743. if src<>dst then
  1744. a_load_reg_reg(list,size,size,src,dst);
  1745. list.concat(taicpu.op_reg(TOpCG2AsmOp[op],dstsize,dst));
  1746. end;
  1747. OP_MUL,OP_DIV,OP_IDIV:
  1748. { special stuff, needs separate handling inside code }
  1749. { generator }
  1750. internalerror(200109233);
  1751. OP_SHR,OP_SHL,OP_SAR,OP_ROL,OP_ROR:
  1752. begin
  1753. { Use ecx to load the value, that allows better coalescing }
  1754. getcpuregister(list,REGCX);
  1755. a_load_reg_reg(list,size,REGCX_Size,src,REGCX);
  1756. list.concat(taicpu.op_reg_reg(Topcg2asmop[op],tcgsize2opsize[size],NR_CL,dst));
  1757. ungetcpuregister(list,REGCX);
  1758. end;
  1759. else
  1760. begin
  1761. if reg2opsize(src) <> dstsize then
  1762. internalerror(200109226);
  1763. instr:=taicpu.op_reg_reg(TOpCG2AsmOp[op],dstsize,src,dst);
  1764. list.concat(instr);
  1765. end;
  1766. end;
  1767. end;
  1768. procedure tcgx86.a_op_ref_reg(list : TAsmList; Op: TOpCG; size: TCGSize; const ref: TReference; reg: TRegister);
  1769. var
  1770. tmpref : treference;
  1771. begin
  1772. tmpref:=ref;
  1773. make_simple_ref(list,tmpref);
  1774. check_register_size(size,reg);
  1775. case op of
  1776. OP_NEG,OP_NOT,OP_IMUL:
  1777. begin
  1778. inherited a_op_ref_reg(list,op,size,tmpref,reg);
  1779. end;
  1780. OP_MUL,OP_DIV,OP_IDIV:
  1781. { special stuff, needs separate handling inside code }
  1782. { generator }
  1783. internalerror(200109239);
  1784. else
  1785. begin
  1786. reg := makeregsize(list,reg,size);
  1787. list.concat(taicpu.op_ref_reg(TOpCG2AsmOp[op],tcgsize2opsize[size],tmpref,reg));
  1788. end;
  1789. end;
  1790. end;
  1791. procedure tcgx86.a_op_reg_ref(list : TAsmList; Op: TOpCG; size: TCGSize;reg: TRegister; const ref: TReference);
  1792. var
  1793. tmpref : treference;
  1794. begin
  1795. tmpref:=ref;
  1796. make_simple_ref(list,tmpref);
  1797. check_register_size(size,reg);
  1798. case op of
  1799. OP_NEG,OP_NOT:
  1800. begin
  1801. if reg<>NR_NO then
  1802. internalerror(200109237);
  1803. list.concat(taicpu.op_ref(TOpCG2AsmOp[op],tcgsize2opsize[size],tmpref));
  1804. end;
  1805. OP_IMUL:
  1806. begin
  1807. { this one needs a load/imul/store, which is the default }
  1808. inherited a_op_ref_reg(list,op,size,tmpref,reg);
  1809. end;
  1810. OP_MUL,OP_DIV,OP_IDIV:
  1811. { special stuff, needs separate handling inside code }
  1812. { generator }
  1813. internalerror(200109238);
  1814. else
  1815. begin
  1816. list.concat(taicpu.op_reg_ref(TOpCG2AsmOp[op],tcgsize2opsize[size],reg,tmpref));
  1817. end;
  1818. end;
  1819. end;
  1820. procedure tcgx86.a_bit_scan_reg_reg(list: TAsmList; reverse: boolean; size: TCGSize; src, dst: TRegister);
  1821. var
  1822. opsize: topsize;
  1823. l : TAsmLabel;
  1824. begin
  1825. opsize:=tcgsize2opsize[size];
  1826. if not reverse then
  1827. list.concat(taicpu.op_reg_reg(A_BSF,opsize,src,dst))
  1828. else
  1829. list.concat(taicpu.op_reg_reg(A_BSR,opsize,src,dst));
  1830. current_asmdata.getjumplabel(l);
  1831. a_jmp_cond(list,OC_NE,l);
  1832. list.concat(taicpu.op_const_reg(A_MOV,opsize,$ff,dst));
  1833. a_label(list,l);
  1834. end;
  1835. {*************** compare instructructions ****************}
  1836. procedure tcgx86.a_cmp_const_reg_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;a : tcgint;reg : tregister;
  1837. l : tasmlabel);
  1838. {$ifdef x86_64}
  1839. var
  1840. tmpreg : tregister;
  1841. {$endif x86_64}
  1842. begin
  1843. {$ifdef x86_64}
  1844. { x86_64 only supports signed 32 bits constants directly }
  1845. if (size in [OS_S64,OS_64]) and
  1846. ((a<low(longint)) or (a>high(longint))) then
  1847. begin
  1848. tmpreg:=getintregister(list,size);
  1849. a_load_const_reg(list,size,a,tmpreg);
  1850. a_cmp_reg_reg_label(list,size,cmp_op,tmpreg,reg,l);
  1851. exit;
  1852. end;
  1853. {$endif x86_64}
  1854. if (a = 0) then
  1855. list.concat(taicpu.op_reg_reg(A_TEST,tcgsize2opsize[size],reg,reg))
  1856. else
  1857. list.concat(taicpu.op_const_reg(A_CMP,tcgsize2opsize[size],a,reg));
  1858. a_jmp_cond(list,cmp_op,l);
  1859. end;
  1860. procedure tcgx86.a_cmp_const_ref_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;a : tcgint;const ref : treference;
  1861. l : tasmlabel);
  1862. var
  1863. {$ifdef x86_64}
  1864. tmpreg : tregister;
  1865. {$endif x86_64}
  1866. tmpref : treference;
  1867. begin
  1868. tmpref:=ref;
  1869. make_simple_ref(list,tmpref);
  1870. {$ifdef x86_64}
  1871. { x86_64 only supports signed 32 bits constants directly }
  1872. if (size in [OS_S64,OS_64]) and
  1873. ((a<low(longint)) or (a>high(longint))) then
  1874. begin
  1875. tmpreg:=getintregister(list,size);
  1876. a_load_const_reg(list,size,a,tmpreg);
  1877. a_cmp_reg_ref_label(list,size,cmp_op,tmpreg,tmpref,l);
  1878. exit;
  1879. end;
  1880. {$endif x86_64}
  1881. list.concat(taicpu.op_const_ref(A_CMP,TCgSize2OpSize[size],a,tmpref));
  1882. a_jmp_cond(list,cmp_op,l);
  1883. end;
  1884. procedure tcgx86.a_cmp_reg_reg_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;
  1885. reg1,reg2 : tregister;l : tasmlabel);
  1886. begin
  1887. check_register_size(size,reg1);
  1888. check_register_size(size,reg2);
  1889. list.concat(taicpu.op_reg_reg(A_CMP,TCgSize2OpSize[size],reg1,reg2));
  1890. a_jmp_cond(list,cmp_op,l);
  1891. end;
  1892. procedure tcgx86.a_cmp_ref_reg_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;const ref: treference; reg : tregister;l : tasmlabel);
  1893. var
  1894. tmpref : treference;
  1895. begin
  1896. tmpref:=ref;
  1897. make_simple_ref(list,tmpref);
  1898. check_register_size(size,reg);
  1899. list.concat(taicpu.op_ref_reg(A_CMP,TCgSize2OpSize[size],tmpref,reg));
  1900. a_jmp_cond(list,cmp_op,l);
  1901. end;
  1902. procedure tcgx86.a_cmp_reg_ref_label(list : TAsmList;size : tcgsize;cmp_op : topcmp;reg : tregister;const ref: treference; l : tasmlabel);
  1903. var
  1904. tmpref : treference;
  1905. begin
  1906. tmpref:=ref;
  1907. make_simple_ref(list,tmpref);
  1908. check_register_size(size,reg);
  1909. list.concat(taicpu.op_reg_ref(A_CMP,TCgSize2OpSize[size],reg,tmpref));
  1910. a_jmp_cond(list,cmp_op,l);
  1911. end;
  1912. procedure tcgx86.a_jmp_cond(list : TAsmList;cond : TOpCmp;l: tasmlabel);
  1913. var
  1914. ai : taicpu;
  1915. begin
  1916. if cond=OC_None then
  1917. ai := Taicpu.Op_sym(A_JMP,S_NO,l)
  1918. else
  1919. begin
  1920. ai:=Taicpu.Op_sym(A_Jcc,S_NO,l);
  1921. ai.SetCondition(TOpCmp2AsmCond[cond]);
  1922. end;
  1923. ai.is_jmp:=true;
  1924. list.concat(ai);
  1925. end;
  1926. procedure tcgx86.a_jmp_flags(list : TAsmList;const f : TResFlags;l: tasmlabel);
  1927. var
  1928. ai : taicpu;
  1929. begin
  1930. ai := Taicpu.op_sym(A_Jcc,S_NO,l);
  1931. ai.SetCondition(flags_to_cond(f));
  1932. ai.is_jmp := true;
  1933. list.concat(ai);
  1934. end;
  1935. procedure tcgx86.g_flags2reg(list: TAsmList; size: TCgSize; const f: tresflags; reg: TRegister);
  1936. var
  1937. ai : taicpu;
  1938. hreg : tregister;
  1939. begin
  1940. hreg:=makeregsize(list,reg,OS_8);
  1941. ai:=Taicpu.op_reg(A_SETcc,S_B,hreg);
  1942. ai.setcondition(flags_to_cond(f));
  1943. list.concat(ai);
  1944. if reg<>hreg then
  1945. a_load_reg_reg(list,OS_8,size,hreg,reg);
  1946. end;
  1947. procedure tcgx86.g_flags2ref(list: TAsmList; size: TCgSize; const f: tresflags; const ref: TReference);
  1948. var
  1949. ai : taicpu;
  1950. tmpref : treference;
  1951. begin
  1952. tmpref:=ref;
  1953. make_simple_ref(list,tmpref);
  1954. if not(size in [OS_8,OS_S8]) then
  1955. a_load_const_ref(list,size,0,tmpref);
  1956. ai:=Taicpu.op_ref(A_SETcc,S_B,tmpref);
  1957. ai.setcondition(flags_to_cond(f));
  1958. list.concat(ai);
  1959. {$ifndef cpu64bitalu}
  1960. if size in [OS_S64,OS_64] then
  1961. begin
  1962. inc(tmpref.offset,4);
  1963. a_load_const_ref(list,OS_32,0,tmpref);
  1964. end;
  1965. {$endif cpu64bitalu}
  1966. end;
  1967. { ************* concatcopy ************ }
  1968. procedure Tcgx86.g_concatcopy(list:TAsmList;const source,dest:Treference;len:tcgint);
  1969. const
  1970. {$if defined(cpu64bitalu)}
  1971. REGCX=NR_RCX;
  1972. REGSI=NR_RSI;
  1973. REGDI=NR_RDI;
  1974. copy_len_sizes = [1, 2, 4, 8];
  1975. push_segment_size = S_L;
  1976. {$elseif defined(cpu32bitalu)}
  1977. REGCX=NR_ECX;
  1978. REGSI=NR_ESI;
  1979. REGDI=NR_EDI;
  1980. copy_len_sizes = [1, 2, 4];
  1981. push_segment_size = S_L;
  1982. {$elseif defined(cpu16bitalu)}
  1983. REGCX=NR_CX;
  1984. REGSI=NR_SI;
  1985. REGDI=NR_DI;
  1986. copy_len_sizes = [1, 2];
  1987. push_segment_size = S_W;
  1988. {$endif}
  1989. type copymode=(copy_move,copy_mmx,copy_string);
  1990. var srcref,dstref:Treference;
  1991. r,r0,r1,r2,r3:Tregister;
  1992. helpsize:tcgint;
  1993. copysize:byte;
  1994. cgsize:Tcgsize;
  1995. cm:copymode;
  1996. begin
  1997. cm:=copy_move;
  1998. helpsize:=3*sizeof(aword);
  1999. if cs_opt_size in current_settings.optimizerswitches then
  2000. helpsize:=2*sizeof(aword);
  2001. if (cs_mmx in current_settings.localswitches) and
  2002. not(pi_uses_fpu in current_procinfo.flags) and
  2003. ((len=8) or (len=16) or (len=24) or (len=32)) then
  2004. cm:=copy_mmx;
  2005. if (len>helpsize) then
  2006. cm:=copy_string;
  2007. if (cs_opt_size in current_settings.optimizerswitches) and
  2008. not((len<=16) and (cm=copy_mmx)) and
  2009. not(len in copy_len_sizes) then
  2010. cm:=copy_string;
  2011. {$ifndef i8086}
  2012. if (source.segment<>NR_NO) or
  2013. (dest.segment<>NR_NO) then
  2014. cm:=copy_string;
  2015. {$endif not i8086}
  2016. case cm of
  2017. copy_move:
  2018. begin
  2019. dstref:=dest;
  2020. srcref:=source;
  2021. copysize:=sizeof(aint);
  2022. cgsize:=int_cgsize(copysize);
  2023. while len<>0 do
  2024. begin
  2025. if len<2 then
  2026. begin
  2027. copysize:=1;
  2028. cgsize:=OS_8;
  2029. end
  2030. else if len<4 then
  2031. begin
  2032. copysize:=2;
  2033. cgsize:=OS_16;
  2034. end
  2035. {$if defined(cpu32bitalu) or defined(cpu64bitalu)}
  2036. else if len<8 then
  2037. begin
  2038. copysize:=4;
  2039. cgsize:=OS_32;
  2040. end
  2041. {$endif cpu32bitalu or cpu64bitalu}
  2042. {$ifdef cpu64bitalu}
  2043. else if len<16 then
  2044. begin
  2045. copysize:=8;
  2046. cgsize:=OS_64;
  2047. end
  2048. {$endif}
  2049. ;
  2050. dec(len,copysize);
  2051. r:=getintregister(list,cgsize);
  2052. a_load_ref_reg(list,cgsize,cgsize,srcref,r);
  2053. a_load_reg_ref(list,cgsize,cgsize,r,dstref);
  2054. inc(srcref.offset,copysize);
  2055. inc(dstref.offset,copysize);
  2056. end;
  2057. end;
  2058. copy_mmx:
  2059. begin
  2060. dstref:=dest;
  2061. srcref:=source;
  2062. r0:=getmmxregister(list);
  2063. r1:=NR_NO;
  2064. r2:=NR_NO;
  2065. r3:=NR_NO;
  2066. a_loadmm_ref_reg(list,OS_M64,OS_M64,srcref,r0,nil);
  2067. if len>=16 then
  2068. begin
  2069. inc(srcref.offset,8);
  2070. r1:=getmmxregister(list);
  2071. a_loadmm_ref_reg(list,OS_M64,OS_M64,srcref,r1,nil);
  2072. end;
  2073. if len>=24 then
  2074. begin
  2075. inc(srcref.offset,8);
  2076. r2:=getmmxregister(list);
  2077. a_loadmm_ref_reg(list,OS_M64,OS_M64,srcref,r2,nil);
  2078. end;
  2079. if len>=32 then
  2080. begin
  2081. inc(srcref.offset,8);
  2082. r3:=getmmxregister(list);
  2083. a_loadmm_ref_reg(list,OS_M64,OS_M64,srcref,r3,nil);
  2084. end;
  2085. a_loadmm_reg_ref(list,OS_M64,OS_M64,r0,dstref,nil);
  2086. if len>=16 then
  2087. begin
  2088. inc(dstref.offset,8);
  2089. a_loadmm_reg_ref(list,OS_M64,OS_M64,r1,dstref,nil);
  2090. end;
  2091. if len>=24 then
  2092. begin
  2093. inc(dstref.offset,8);
  2094. a_loadmm_reg_ref(list,OS_M64,OS_M64,r2,dstref,nil);
  2095. end;
  2096. if len>=32 then
  2097. begin
  2098. inc(dstref.offset,8);
  2099. a_loadmm_reg_ref(list,OS_M64,OS_M64,r3,dstref,nil);
  2100. end;
  2101. end
  2102. else {copy_string, should be a good fallback in case of unhandled}
  2103. begin
  2104. getcpuregister(list,REGDI);
  2105. if (dest.segment=NR_NO) then
  2106. begin
  2107. a_loadaddr_ref_reg(list,dest,REGDI);
  2108. {$ifdef volatile_es}
  2109. list.concat(taicpu.op_reg(A_PUSH,push_segment_size,NR_DS));
  2110. list.concat(taicpu.op_reg(A_POP,push_segment_size,NR_ES));
  2111. {$endif volatile_es}
  2112. end
  2113. else
  2114. begin
  2115. dstref:=dest;
  2116. dstref.segment:=NR_NO;
  2117. a_loadaddr_ref_reg(list,dstref,REGDI);
  2118. {$ifndef volatile_es}
  2119. list.concat(taicpu.op_reg(A_PUSH,push_segment_size,NR_ES));
  2120. {$endif not volatile_es}
  2121. list.concat(taicpu.op_reg(A_PUSH,push_segment_size,dest.segment));
  2122. list.concat(taicpu.op_reg(A_POP,push_segment_size,NR_ES));
  2123. end;
  2124. getcpuregister(list,REGSI);
  2125. if (source.segment=NR_NO) then
  2126. a_loadaddr_ref_reg(list,source,REGSI)
  2127. else
  2128. begin
  2129. srcref:=source;
  2130. srcref.segment:=NR_NO;
  2131. a_loadaddr_ref_reg(list,srcref,REGSI);
  2132. list.concat(taicpu.op_reg(A_PUSH,S_L,NR_DS));
  2133. list.concat(taicpu.op_reg(A_PUSH,S_L,source.segment));
  2134. list.concat(taicpu.op_reg(A_POP,S_L,NR_DS));
  2135. end;
  2136. getcpuregister(list,REGCX);
  2137. if ts_cld in current_settings.targetswitches then
  2138. list.concat(Taicpu.op_none(A_CLD,S_NO));
  2139. if (cs_opt_size in current_settings.optimizerswitches) and
  2140. (len>sizeof(aint)+(sizeof(aint) div 2)) then
  2141. begin
  2142. a_load_const_reg(list,OS_INT,len,REGCX);
  2143. list.concat(Taicpu.op_none(A_REP,S_NO));
  2144. list.concat(Taicpu.op_none(A_MOVSB,S_NO));
  2145. end
  2146. else
  2147. begin
  2148. helpsize:=len div sizeof(aint);
  2149. len:=len mod sizeof(aint);
  2150. if helpsize>1 then
  2151. begin
  2152. a_load_const_reg(list,OS_INT,helpsize,REGCX);
  2153. list.concat(Taicpu.op_none(A_REP,S_NO));
  2154. end;
  2155. if helpsize>0 then
  2156. begin
  2157. {$if defined(cpu64bitalu)}
  2158. list.concat(Taicpu.op_none(A_MOVSQ,S_NO))
  2159. {$elseif defined(cpu32bitalu)}
  2160. list.concat(Taicpu.op_none(A_MOVSD,S_NO));
  2161. {$elseif defined(cpu16bitalu)}
  2162. list.concat(Taicpu.op_none(A_MOVSW,S_NO));
  2163. {$endif}
  2164. end;
  2165. if len>=4 then
  2166. begin
  2167. dec(len,4);
  2168. list.concat(Taicpu.op_none(A_MOVSD,S_NO));
  2169. end;
  2170. if len>=2 then
  2171. begin
  2172. dec(len,2);
  2173. list.concat(Taicpu.op_none(A_MOVSW,S_NO));
  2174. end;
  2175. if len=1 then
  2176. list.concat(Taicpu.op_none(A_MOVSB,S_NO));
  2177. end;
  2178. ungetcpuregister(list,REGCX);
  2179. ungetcpuregister(list,REGSI);
  2180. ungetcpuregister(list,REGDI);
  2181. if (source.segment<>NR_NO) then
  2182. list.concat(taicpu.op_reg(A_POP,push_segment_size,NR_DS));
  2183. {$ifndef volatile_es}
  2184. if (dest.segment<>NR_NO) then
  2185. list.concat(taicpu.op_reg(A_POP,push_segment_size,NR_ES));
  2186. {$endif not volatile_es}
  2187. end;
  2188. end;
  2189. end;
  2190. {****************************************************************************
  2191. Entry/Exit Code Helpers
  2192. ****************************************************************************}
  2193. procedure tcgx86.g_profilecode(list : TAsmList);
  2194. var
  2195. pl : tasmlabel;
  2196. mcountprefix : String[4];
  2197. begin
  2198. case target_info.system of
  2199. {$ifndef NOTARGETWIN}
  2200. system_i386_win32,
  2201. {$endif}
  2202. system_i386_freebsd,
  2203. system_i386_netbsd,
  2204. // system_i386_openbsd,
  2205. system_i386_wdosx :
  2206. begin
  2207. Case target_info.system Of
  2208. system_i386_freebsd : mcountprefix:='.';
  2209. system_i386_netbsd : mcountprefix:='__';
  2210. // system_i386_openbsd : mcountprefix:='.';
  2211. else
  2212. mcountPrefix:='';
  2213. end;
  2214. current_asmdata.getaddrlabel(pl);
  2215. new_section(list,sec_data,lower(current_procinfo.procdef.mangledname),sizeof(pint));
  2216. list.concat(Tai_label.Create(pl));
  2217. list.concat(Tai_const.Create_32bit(0));
  2218. new_section(list,sec_code,lower(current_procinfo.procdef.mangledname),0);
  2219. list.concat(Taicpu.Op_reg(A_PUSH,S_L,NR_EDX));
  2220. list.concat(Taicpu.Op_sym_ofs_reg(A_MOV,S_L,pl,0,NR_EDX));
  2221. a_call_name(list,target_info.Cprefix+mcountprefix+'mcount',false);
  2222. list.concat(Taicpu.Op_reg(A_POP,S_L,NR_EDX));
  2223. end;
  2224. system_i386_linux:
  2225. a_call_name(list,target_info.Cprefix+'mcount',false);
  2226. system_i386_go32v2,system_i386_watcom:
  2227. begin
  2228. a_call_name(list,'MCOUNT',false);
  2229. end;
  2230. system_x86_64_linux,
  2231. system_x86_64_darwin:
  2232. begin
  2233. a_call_name(list,'mcount',false);
  2234. end;
  2235. end;
  2236. end;
  2237. procedure tcgx86.g_stackpointer_alloc(list : TAsmList;localsize : longint);
  2238. procedure decrease_sp(a : tcgint);
  2239. var
  2240. href : treference;
  2241. begin
  2242. reference_reset_base(href,NR_STACK_POINTER_REG,-a,0);
  2243. { normally, lea is a better choice than a sub to adjust the stack pointer }
  2244. list.concat(Taicpu.op_ref_reg(A_LEA,TCGSize2OpSize[OS_ADDR],href,NR_STACK_POINTER_REG));
  2245. end;
  2246. {$ifdef x86}
  2247. {$ifndef NOTARGETWIN}
  2248. var
  2249. href : treference;
  2250. i : integer;
  2251. again : tasmlabel;
  2252. {$endif NOTARGETWIN}
  2253. {$endif x86}
  2254. begin
  2255. if localsize>0 then
  2256. begin
  2257. {$ifdef i386}
  2258. {$ifndef NOTARGETWIN}
  2259. { windows guards only a few pages for stack growing,
  2260. so we have to access every page first }
  2261. if (target_info.system in [system_i386_win32,system_i386_wince]) and
  2262. (localsize>=winstackpagesize) then
  2263. begin
  2264. if localsize div winstackpagesize<=5 then
  2265. begin
  2266. decrease_sp(localsize-4);
  2267. for i:=1 to localsize div winstackpagesize do
  2268. begin
  2269. reference_reset_base(href,NR_ESP,localsize-i*winstackpagesize,4);
  2270. list.concat(Taicpu.op_reg_ref(A_MOV,S_L,NR_EAX,href));
  2271. end;
  2272. list.concat(Taicpu.op_reg(A_PUSH,S_L,NR_EAX));
  2273. end
  2274. else
  2275. begin
  2276. current_asmdata.getjumplabel(again);
  2277. { Using a_reg_alloc instead of getcpuregister, so this procedure
  2278. does not change "used_in_proc" state of EDI and therefore can be
  2279. called after saving registers with "push" instruction
  2280. without creating an unbalanced "pop edi" in epilogue }
  2281. a_reg_alloc(list,NR_EDI);
  2282. list.concat(Taicpu.op_reg(A_PUSH,S_L,NR_EDI));
  2283. list.concat(Taicpu.op_const_reg(A_MOV,S_L,localsize div winstackpagesize,NR_EDI));
  2284. a_label(list,again);
  2285. decrease_sp(winstackpagesize-4);
  2286. list.concat(Taicpu.op_reg(A_PUSH,S_L,NR_EAX));
  2287. if UseIncDec then
  2288. list.concat(Taicpu.op_reg(A_DEC,S_L,NR_EDI))
  2289. else
  2290. list.concat(Taicpu.op_const_reg(A_SUB,S_L,1,NR_EDI));
  2291. a_jmp_cond(list,OC_NE,again);
  2292. decrease_sp(localsize mod winstackpagesize-4);
  2293. reference_reset_base(href,NR_ESP,localsize-4,4);
  2294. list.concat(Taicpu.op_ref_reg(A_MOV,S_L,href,NR_EDI));
  2295. a_reg_dealloc(list,NR_EDI);
  2296. end
  2297. end
  2298. else
  2299. {$endif NOTARGETWIN}
  2300. {$endif i386}
  2301. {$ifdef x86_64}
  2302. {$ifndef NOTARGETWIN}
  2303. { windows guards only a few pages for stack growing,
  2304. so we have to access every page first }
  2305. if (target_info.system=system_x86_64_win64) and
  2306. (localsize>=winstackpagesize) then
  2307. begin
  2308. if localsize div winstackpagesize<=5 then
  2309. begin
  2310. decrease_sp(localsize);
  2311. for i:=1 to localsize div winstackpagesize do
  2312. begin
  2313. reference_reset_base(href,NR_RSP,localsize-i*winstackpagesize+4,4);
  2314. list.concat(Taicpu.op_reg_ref(A_MOV,S_L,NR_EAX,href));
  2315. end;
  2316. reference_reset_base(href,NR_RSP,0,4);
  2317. list.concat(Taicpu.op_reg_ref(A_MOV,S_L,NR_EAX,href));
  2318. end
  2319. else
  2320. begin
  2321. current_asmdata.getjumplabel(again);
  2322. getcpuregister(list,NR_R10);
  2323. list.concat(Taicpu.op_const_reg(A_MOV,S_Q,localsize div winstackpagesize,NR_R10));
  2324. a_label(list,again);
  2325. decrease_sp(winstackpagesize);
  2326. reference_reset_base(href,NR_RSP,0,4);
  2327. list.concat(Taicpu.op_reg_ref(A_MOV,S_L,NR_EAX,href));
  2328. if UseIncDec then
  2329. list.concat(Taicpu.op_reg(A_DEC,S_Q,NR_R10))
  2330. else
  2331. list.concat(Taicpu.op_const_reg(A_SUB,S_Q,1,NR_R10));
  2332. a_jmp_cond(list,OC_NE,again);
  2333. decrease_sp(localsize mod winstackpagesize);
  2334. ungetcpuregister(list,NR_R10);
  2335. end
  2336. end
  2337. else
  2338. {$endif NOTARGETWIN}
  2339. {$endif x86_64}
  2340. decrease_sp(localsize);
  2341. end;
  2342. end;
  2343. procedure tcgx86.g_proc_entry(list : TAsmList;localsize : longint;nostackframe:boolean);
  2344. var
  2345. stackmisalignment: longint;
  2346. para: tparavarsym;
  2347. regsize: longint;
  2348. {$ifdef i8086}
  2349. dgroup: treference;
  2350. {$endif i8086}
  2351. procedure push_regs;
  2352. var
  2353. r: longint;
  2354. begin
  2355. regsize:=0;
  2356. for r := low(saved_standard_registers) to high(saved_standard_registers) do
  2357. if saved_standard_registers[r] in rg[R_INTREGISTER].used_in_proc then
  2358. begin
  2359. inc(regsize,sizeof(aint));
  2360. list.concat(Taicpu.Op_reg(A_PUSH,tcgsize2opsize[OS_ADDR],newreg(R_INTREGISTER,saved_standard_registers[r],R_SUBWHOLE)));
  2361. end;
  2362. end;
  2363. begin
  2364. {$ifdef i8086}
  2365. { interrupt support for i8086 }
  2366. if po_interrupt in current_procinfo.procdef.procoptions then
  2367. begin
  2368. list.concat(Taicpu.Op_reg(A_PUSH,S_W,NR_AX));
  2369. list.concat(Taicpu.Op_reg(A_PUSH,S_W,NR_BX));
  2370. list.concat(Taicpu.Op_reg(A_PUSH,S_W,NR_CX));
  2371. list.concat(Taicpu.Op_reg(A_PUSH,S_W,NR_DX));
  2372. list.concat(Taicpu.Op_reg(A_PUSH,S_W,NR_SI));
  2373. list.concat(Taicpu.Op_reg(A_PUSH,S_W,NR_DI));
  2374. list.concat(Taicpu.Op_reg(A_PUSH,S_W,NR_DS));
  2375. list.concat(Taicpu.Op_reg(A_PUSH,S_W,NR_ES));
  2376. reference_reset(dgroup,0);
  2377. dgroup.refaddr:=addr_dgroup;
  2378. list.concat(Taicpu.Op_ref_reg(A_MOV,S_W,dgroup,NR_AX));
  2379. list.concat(Taicpu.Op_reg_reg(A_MOV,S_W,NR_AX,NR_DS));
  2380. end;
  2381. {$endif i8086}
  2382. {$ifdef i386}
  2383. { interrupt support for i386 }
  2384. if (po_interrupt in current_procinfo.procdef.procoptions) and
  2385. { this messes up stack alignment }
  2386. not(target_info.system in [system_i386_darwin,system_i386_iphonesim,system_i386_android]) then
  2387. begin
  2388. { .... also the segment registers }
  2389. list.concat(Taicpu.Op_reg(A_PUSH,S_W,NR_GS));
  2390. list.concat(Taicpu.Op_reg(A_PUSH,S_W,NR_FS));
  2391. list.concat(Taicpu.Op_reg(A_PUSH,S_W,NR_ES));
  2392. list.concat(Taicpu.Op_reg(A_PUSH,S_W,NR_DS));
  2393. { save the registers of an interrupt procedure }
  2394. list.concat(Taicpu.Op_reg(A_PUSH,S_L,NR_EDI));
  2395. list.concat(Taicpu.Op_reg(A_PUSH,S_L,NR_ESI));
  2396. list.concat(Taicpu.Op_reg(A_PUSH,S_L,NR_EDX));
  2397. list.concat(Taicpu.Op_reg(A_PUSH,S_L,NR_ECX));
  2398. list.concat(Taicpu.Op_reg(A_PUSH,S_L,NR_EBX));
  2399. list.concat(Taicpu.Op_reg(A_PUSH,S_L,NR_EAX));
  2400. end;
  2401. {$endif i386}
  2402. { save old framepointer }
  2403. if not nostackframe then
  2404. begin
  2405. { return address }
  2406. stackmisalignment := sizeof(pint);
  2407. list.concat(tai_regalloc.alloc(current_procinfo.framepointer,nil));
  2408. if current_procinfo.framepointer=NR_STACK_POINTER_REG then
  2409. begin
  2410. {$ifdef i386}
  2411. if (not paramanager.use_fixed_stack) then
  2412. push_regs;
  2413. {$endif i386}
  2414. CGmessage(cg_d_stackframe_omited);
  2415. end
  2416. else
  2417. begin
  2418. { push <frame_pointer> }
  2419. inc(stackmisalignment,sizeof(pint));
  2420. include(rg[R_INTREGISTER].preserved_by_proc,RS_FRAME_POINTER_REG);
  2421. list.concat(Taicpu.op_reg(A_PUSH,tcgsize2opsize[OS_ADDR],NR_FRAME_POINTER_REG));
  2422. { Return address and FP are both on stack }
  2423. current_asmdata.asmcfi.cfa_def_cfa_offset(list,2*sizeof(pint));
  2424. current_asmdata.asmcfi.cfa_offset(list,NR_FRAME_POINTER_REG,-(2*sizeof(pint)));
  2425. list.concat(Taicpu.op_reg_reg(A_MOV,tcgsize2opsize[OS_ADDR],NR_STACK_POINTER_REG,NR_FRAME_POINTER_REG));
  2426. current_asmdata.asmcfi.cfa_def_cfa_register(list,NR_FRAME_POINTER_REG);
  2427. end;
  2428. { allocate stackframe space }
  2429. if (localsize<>0) or
  2430. ((target_info.stackalign>sizeof(pint)) and
  2431. (stackmisalignment <> 0) and
  2432. ((pi_do_call in current_procinfo.flags) or
  2433. (po_assembler in current_procinfo.procdef.procoptions))) then
  2434. begin
  2435. if target_info.stackalign>sizeof(pint) then
  2436. localsize := align(localsize+stackmisalignment,target_info.stackalign)-stackmisalignment;
  2437. cg.g_stackpointer_alloc(list,localsize);
  2438. if current_procinfo.framepointer=NR_STACK_POINTER_REG then
  2439. current_asmdata.asmcfi.cfa_def_cfa_offset(list,localsize+sizeof(pint));
  2440. current_procinfo.final_localsize:=localsize;
  2441. end;
  2442. {$ifdef i386}
  2443. if (not paramanager.use_fixed_stack) and
  2444. (current_procinfo.framepointer<>NR_STACK_POINTER_REG) then
  2445. begin
  2446. regsize:=0;
  2447. push_regs;
  2448. reference_reset_base(current_procinfo.save_regs_ref,
  2449. current_procinfo.framepointer,
  2450. -(localsize+regsize),sizeof(aint));
  2451. end;
  2452. {$endif i386}
  2453. end;
  2454. end;
  2455. procedure tcgx86.g_save_registers(list: TAsmList);
  2456. begin
  2457. {$ifdef i386}
  2458. if paramanager.use_fixed_stack then
  2459. {$endif i386}
  2460. inherited g_save_registers(list);
  2461. end;
  2462. procedure tcgx86.g_restore_registers(list: TAsmList);
  2463. begin
  2464. {$ifdef i386}
  2465. if paramanager.use_fixed_stack then
  2466. {$endif i386}
  2467. inherited g_restore_registers(list);
  2468. end;
  2469. procedure tcgx86.internal_restore_regs(list: TAsmList; use_pop: boolean);
  2470. var
  2471. r: longint;
  2472. hreg: tregister;
  2473. href: treference;
  2474. begin
  2475. href:=current_procinfo.save_regs_ref;
  2476. for r:=high(saved_standard_registers) downto low(saved_standard_registers) do
  2477. if saved_standard_registers[r] in rg[R_INTREGISTER].used_in_proc then
  2478. begin
  2479. hreg:=newreg(R_INTREGISTER,saved_standard_registers[r],R_SUBWHOLE);
  2480. { Allocate register so the optimizer does not remove the load }
  2481. a_reg_alloc(list,hreg);
  2482. if use_pop then
  2483. list.concat(Taicpu.Op_reg(A_POP,tcgsize2opsize[OS_ADDR],hreg))
  2484. else
  2485. begin
  2486. a_load_ref_reg(list,OS_ADDR,OS_ADDR,href,hreg);
  2487. inc(href.offset,sizeof(aint));
  2488. end;
  2489. end;
  2490. end;
  2491. { produces if necessary overflowcode }
  2492. procedure tcgx86.g_overflowcheck(list: TAsmList; const l:tlocation;def:tdef);
  2493. var
  2494. hl : tasmlabel;
  2495. ai : taicpu;
  2496. cond : TAsmCond;
  2497. begin
  2498. if not(cs_check_overflow in current_settings.localswitches) then
  2499. exit;
  2500. current_asmdata.getjumplabel(hl);
  2501. if not ((def.typ=pointerdef) or
  2502. ((def.typ=orddef) and
  2503. (torddef(def).ordtype in [u64bit,u16bit,u32bit,u8bit,uchar,
  2504. pasbool8,pasbool16,pasbool32,pasbool64]))) then
  2505. cond:=C_NO
  2506. else
  2507. cond:=C_NB;
  2508. ai:=Taicpu.Op_Sym(A_Jcc,S_NO,hl);
  2509. ai.SetCondition(cond);
  2510. ai.is_jmp:=true;
  2511. list.concat(ai);
  2512. a_call_name(list,'FPC_OVERFLOW',false);
  2513. a_label(list,hl);
  2514. end;
  2515. procedure tcgx86.g_external_wrapper(list: TAsmList; procdef: tprocdef; const externalname: string);
  2516. var
  2517. ref : treference;
  2518. sym : tasmsymbol;
  2519. begin
  2520. if (target_info.system = system_i386_darwin) then
  2521. begin
  2522. { a_jmp_name jumps to a stub which is always pic-safe on darwin }
  2523. inherited g_external_wrapper(list,procdef,externalname);
  2524. exit;
  2525. end;
  2526. sym:=current_asmdata.RefAsmSymbol(externalname);
  2527. reference_reset_symbol(ref,sym,0,sizeof(pint));
  2528. { create pic'ed? }
  2529. if (cs_create_pic in current_settings.moduleswitches) and
  2530. { darwin/x86_64's assembler doesn't want @PLT after call symbols }
  2531. not(target_info.system in [system_x86_64_darwin,system_i386_iphonesim]) then
  2532. ref.refaddr:=addr_pic
  2533. else
  2534. ref.refaddr:=addr_full;
  2535. list.concat(taicpu.op_ref(A_JMP,S_NO,ref));
  2536. end;
  2537. end.