cgcpu.pas 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160
  1. {
  2. Copyright (c) 1998-2002 by Florian Klaempfl
  3. This unit implements the code generator for the PowerPC
  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. unit cgcpu;
  18. {$I fpcdefs.inc}
  19. interface
  20. uses
  21. globtype, symtype, symdef, symsym,
  22. cgbase, cgobj,cgppc,
  23. aasmbase, aasmcpu, aasmtai,aasmdata,
  24. cpubase, cpuinfo, cgutils, rgcpu,
  25. parabase;
  26. type
  27. tcgppc = class(tcgppcgen)
  28. procedure init_register_allocators; override;
  29. procedure done_register_allocators; override;
  30. { passing parameters, per default the parameter is pushed }
  31. { nr gives the number of the parameter (enumerated from }
  32. { left to right), this allows to move the parameter to }
  33. { register, if the cpu supports register calling }
  34. { conventions }
  35. procedure a_param_ref(list: TAsmList; size: tcgsize; const r: treference;
  36. const paraloc: tcgpara); override;
  37. procedure a_call_name(list: TAsmList; const s: string); override;
  38. procedure a_call_reg(list: TAsmList; reg: tregister); override;
  39. procedure a_op_const_reg(list: TAsmList; Op: TOpCG; size: TCGSize; a:
  40. aint; reg: TRegister); override;
  41. procedure a_op_reg_reg(list: TAsmList; Op: TOpCG; size: TCGSize; src,
  42. dst: TRegister); override;
  43. procedure a_op_const_reg_reg(list: TAsmList; op: TOpCg;
  44. size: tcgsize; a: aint; src, dst: tregister); override;
  45. procedure a_op_reg_reg_reg(list: TAsmList; op: TOpCg;
  46. size: tcgsize; src1, src2, dst: tregister); override;
  47. { move instructions }
  48. procedure a_load_const_reg(list: TAsmList; size: tcgsize; a: aint; reg:
  49. tregister); override;
  50. { loads the memory pointed to by ref into register reg }
  51. procedure a_load_ref_reg(list: TAsmList; fromsize, tosize: tcgsize; const
  52. Ref: treference; reg: tregister); override;
  53. procedure a_load_reg_reg(list: TAsmList; fromsize, tosize: tcgsize; reg1,
  54. reg2: tregister); override;
  55. procedure a_load_subsetreg_reg(list : TAsmList; subsetsize, tosize: tcgsize; const sreg: tsubsetregister; destreg: tregister); override;
  56. procedure a_load_const_subsetreg(list: TAsmlist; subsetsize: tcgsize; a: aint; const sreg: tsubsetregister); override;
  57. { comparison operations }
  58. procedure a_cmp_const_reg_label(list: TAsmList; size: tcgsize; cmp_op:
  59. topcmp; a: aint; reg: tregister;
  60. l: tasmlabel); override;
  61. procedure a_cmp_reg_reg_label(list: TAsmList; size: tcgsize; cmp_op:
  62. topcmp; reg1, reg2: tregister; l: tasmlabel); override;
  63. procedure a_jmp_name(list: TAsmList; const s: string); override;
  64. procedure a_jmp_always(list: TAsmList; l: tasmlabel); override;
  65. procedure a_jmp_flags(list: TAsmList; const f: TResFlags; l: tasmlabel);
  66. override;
  67. procedure g_flags2reg(list: TAsmList; size: TCgSize; const f: TResFlags;
  68. reg: TRegister); override;
  69. procedure g_profilecode(list: TAsmList); override;
  70. procedure g_proc_entry(list: TAsmList; localsize: longint; nostackframe:
  71. boolean); override;
  72. procedure g_proc_exit(list: TAsmList; parasize: longint; nostackframe:
  73. boolean); override;
  74. procedure g_save_registers(list: TAsmList); override;
  75. procedure g_restore_registers(list: TAsmList); override;
  76. procedure a_loadaddr_ref_reg(list: TAsmList; const ref: treference; r:
  77. tregister); override;
  78. procedure g_concatcopy(list: TAsmList; const source, dest: treference;
  79. len: aint); override;
  80. procedure g_external_wrapper(list: TAsmList; pd: TProcDef; const externalname: string); override;
  81. private
  82. procedure a_load_regconst_subsetreg_intern(list : TAsmList; fromsize, subsetsize: tcgsize; fromreg: tregister; const sreg: tsubsetregister; slopt: tsubsetloadopt); override;
  83. procedure maybeadjustresult(list: TAsmList; op: TOpCg; size: tcgsize; dst: tregister);
  84. { returns whether a reference can be used immediately in a powerpc }
  85. { instruction }
  86. function issimpleref(const ref: treference): boolean;
  87. { contains the common code of a_load_reg_ref and a_load_ref_reg }
  88. procedure a_load_store(list: TAsmList; op: tasmop; reg: tregister;
  89. ref: treference); override;
  90. { returns the lowest numbered FP register in use, and the number of used FP registers
  91. for the current procedure }
  92. procedure calcFirstUsedFPR(out firstfpr : TSuperRegister; out fprcount : aint);
  93. { returns the lowest numbered GP register in use, and the number of used GP registers
  94. for the current procedure }
  95. procedure calcFirstUsedGPR(out firstgpr : TSuperRegister; out gprcount : aint);
  96. { generates code to call a method with the given string name. The boolean options
  97. control code generation. If prependDot is true, a single dot character is prepended to
  98. the string, if addNOP is true a single NOP instruction is added after the call, and
  99. if includeCall is true, the method is marked as having a call, not if false. This
  100. option is particularly useful to prevent generation of a larger stack frame for the
  101. register save and restore helper functions. }
  102. procedure a_call_name_direct(list: TAsmList; s: string; prependDot : boolean;
  103. addNOP : boolean; includeCall : boolean = true);
  104. procedure a_jmp_name_direct(list : TAsmList; s : string; prependDot : boolean);
  105. { emits code to store the given value a into the TOC (if not already in there), and load it from there
  106. as well }
  107. procedure loadConstantPIC(list : TAsmList; size : TCGSize; a : aint; reg : TRegister);
  108. procedure profilecode_savepara(para : tparavarsym; list : TAsmList);
  109. procedure profilecode_restorepara(para : tparavarsym; list : TAsmList);
  110. end;
  111. const
  112. TShiftOpCG2AsmOpConst : array[boolean, OP_SAR..OP_SHR] of TAsmOp = (
  113. (A_SRAWI, A_SLWI, A_SRWI), (A_SRADI, A_SLDI, A_SRDI)
  114. );
  115. implementation
  116. uses
  117. sysutils, cclasses,
  118. globals, verbose, systems, cutils,
  119. symconst, fmodule,
  120. rgobj, tgobj, cpupi, procinfo, paramgr, cpupara;
  121. function is_signed_cgsize(const size : TCgSize) : Boolean;
  122. begin
  123. case size of
  124. OS_S8,OS_S16,OS_S32,OS_S64 : result := true;
  125. OS_8,OS_16,OS_32,OS_64 : result := false;
  126. else
  127. internalerror(2006050701);
  128. end;
  129. end;
  130. {$ifopt r+}
  131. {$r-}
  132. {$define rangeon}
  133. {$endif}
  134. {$ifopt q+}
  135. {$q-}
  136. {$define overflowon}
  137. {$endif}
  138. { helper function which calculate "magic" values for replacement of unsigned
  139. division by constant operation by multiplication. See the PowerPC compiler
  140. developer manual for more information }
  141. procedure getmagic_unsignedN(const N : byte; const d : aWord;
  142. out magic_m : aWord; out magic_add : boolean; out magic_shift : byte);
  143. var
  144. p : aInt;
  145. nc, delta, q1, r1, q2, r2, two_N_minus_1 : aWord;
  146. begin
  147. assert(d > 0);
  148. two_N_minus_1 := aWord(1) shl (N-1);
  149. magic_add := false;
  150. nc := - 1 - (-d) mod d;
  151. p := N-1; { initialize p }
  152. q1 := two_N_minus_1 div nc; { initialize q1 = 2p/nc }
  153. r1 := two_N_minus_1 - q1*nc; { initialize r1 = rem(2p,nc) }
  154. q2 := (two_N_minus_1-1) div d; { initialize q2 = (2p-1)/d }
  155. r2 := (two_N_minus_1-1) - q2*d; { initialize r2 = rem((2p-1),d) }
  156. repeat
  157. inc(p);
  158. if (r1 >= (nc - r1)) then begin
  159. q1 := 2 * q1 + 1; { update q1 }
  160. r1 := 2*r1 - nc; { update r1 }
  161. end else begin
  162. q1 := 2*q1; { update q1 }
  163. r1 := 2*r1; { update r1 }
  164. end;
  165. if ((r2 + 1) >= (d - r2)) then begin
  166. if (q2 >= (two_N_minus_1-1)) then
  167. magic_add := true;
  168. q2 := 2*q2 + 1; { update q2 }
  169. r2 := 2*r2 + 1 - d; { update r2 }
  170. end else begin
  171. if (q2 >= two_N_minus_1) then
  172. magic_add := true;
  173. q2 := 2*q2; { update q2 }
  174. r2 := 2*r2 + 1; { update r2 }
  175. end;
  176. delta := d - 1 - r2;
  177. until not ((p < (2*N)) and ((q1 < delta) or ((q1 = delta) and (r1 = 0))));
  178. magic_m := q2 + 1; { resulting magic number }
  179. magic_shift := p - N; { resulting shift }
  180. end;
  181. { helper function which calculate "magic" values for replacement of signed
  182. division by constant operation by multiplication. See the PowerPC compiler
  183. developer manual for more information }
  184. procedure getmagic_signedN(const N : byte; const d : aInt;
  185. out magic_m : aInt; out magic_s : aInt);
  186. var
  187. p : aInt;
  188. ad, anc, delta, q1, r1, q2, r2, t : aWord;
  189. two_N_minus_1 : aWord;
  190. begin
  191. assert((d < -1) or (d > 1));
  192. two_N_minus_1 := aWord(1) shl (N-1);
  193. ad := abs(d);
  194. t := two_N_minus_1 + (aWord(d) shr (N-1));
  195. anc := t - 1 - t mod ad; { absolute value of nc }
  196. p := (N-1); { initialize p }
  197. q1 := two_N_minus_1 div anc; { initialize q1 = 2p/abs(nc) }
  198. r1 := two_N_minus_1 - q1*anc; { initialize r1 = rem(2p,abs(nc)) }
  199. q2 := two_N_minus_1 div ad; { initialize q2 = 2p/abs(d) }
  200. r2 := two_N_minus_1 - q2*ad; { initialize r2 = rem(2p,abs(d)) }
  201. repeat
  202. inc(p);
  203. q1 := 2*q1; { update q1 = 2p/abs(nc) }
  204. r1 := 2*r1; { update r1 = rem(2p/abs(nc)) }
  205. if (r1 >= anc) then begin { must be unsigned comparison }
  206. inc(q1);
  207. dec(r1, anc);
  208. end;
  209. q2 := 2*q2; { update q2 = 2p/abs(d) }
  210. r2 := 2*r2; { update r2 = rem(2p/abs(d)) }
  211. if (r2 >= ad) then begin { must be unsigned comparison }
  212. inc(q2);
  213. dec(r2, ad);
  214. end;
  215. delta := ad - r2;
  216. until not ((q1 < delta) or ((q1 = delta) and (r1 = 0)));
  217. magic_m := q2 + 1;
  218. if (d < 0) then begin
  219. magic_m := -magic_m; { resulting magic number }
  220. end;
  221. magic_s := p - N; { resulting shift }
  222. end;
  223. {$ifdef rangeon}
  224. {$r+}
  225. {$undef rangeon}
  226. {$endif}
  227. {$ifdef overflowon}
  228. {$q+}
  229. {$undef overflowon}
  230. {$endif}
  231. { finds positive and negative powers of two of the given value, returning the
  232. power and whether it's a negative power or not in addition to the actual result
  233. of the function }
  234. function ispowerof2(value : aInt; out power : byte; out neg : boolean) : boolean;
  235. var
  236. i : longint;
  237. hl : aInt;
  238. begin
  239. neg := false;
  240. { also try to find negative power of two's by negating if the
  241. value is negative. low(aInt) is special because it can not be
  242. negated. Simply return the appropriate values for it }
  243. if (value < 0) then begin
  244. neg := true;
  245. if (value = low(aInt)) then begin
  246. power := sizeof(aInt)*8-1;
  247. result := true;
  248. exit;
  249. end;
  250. value := -value;
  251. end;
  252. if ((value and (value-1)) <> 0) then begin
  253. result := false;
  254. exit;
  255. end;
  256. hl := 1;
  257. for i := 0 to (sizeof(aInt)*8-1) do begin
  258. if (hl = value) then begin
  259. result := true;
  260. power := i;
  261. exit;
  262. end;
  263. hl := hl shl 1;
  264. end;
  265. end;
  266. { returns the number of instruction required to load the given integer into a register.
  267. This is basically a stripped down version of a_load_const_reg, increasing a counter
  268. instead of emitting instructions. }
  269. function getInstructionLength(a : aint) : longint;
  270. function get32bitlength(a : longint; var length : longint) : boolean; inline;
  271. var
  272. is_half_signed : byte;
  273. begin
  274. { if the lower 16 bits are zero, do a single LIS }
  275. if (smallint(a) = 0) and ((a shr 16) <> 0) then begin
  276. inc(length);
  277. get32bitlength := longint(a) < 0;
  278. end else begin
  279. is_half_signed := ord(smallint(lo(a)) < 0);
  280. inc(length);
  281. if smallint(hi(a) + is_half_signed) <> 0 then
  282. inc(length);
  283. get32bitlength := (smallint(a) < 0) or (a < 0);
  284. end;
  285. end;
  286. var
  287. extendssign : boolean;
  288. begin
  289. result := 0;
  290. if (lo(a) = 0) and (hi(a) <> 0) then begin
  291. get32bitlength(hi(a), result);
  292. inc(result);
  293. end else begin
  294. extendssign := get32bitlength(lo(a), result);
  295. if (extendssign) and (hi(a) = 0) then
  296. inc(result)
  297. else if (not
  298. ((extendssign and (longint(hi(a)) = -1)) or
  299. ((not extendssign) and (hi(a)=0)))
  300. ) then begin
  301. get32bitlength(hi(a), result);
  302. inc(result);
  303. end;
  304. end;
  305. end;
  306. procedure tcgppc.init_register_allocators;
  307. begin
  308. inherited init_register_allocators;
  309. if (target_info.system <> system_powerpc64_darwin) then
  310. // r13 is tls, do not use, r2 is not available
  311. rg[R_INTREGISTER] := trgintcpu.create(R_INTREGISTER, R_SUBWHOLE,
  312. [{$ifdef user0} RS_R0, {$endif} RS_R3, RS_R4, RS_R5, RS_R6, RS_R7, RS_R8,
  313. RS_R9, RS_R10, RS_R11, RS_R12, RS_R31, RS_R30, RS_R29,
  314. RS_R28, RS_R27, RS_R26, RS_R25, RS_R24, RS_R23, RS_R22,
  315. RS_R21, RS_R20, RS_R19, RS_R18, RS_R17, RS_R16, RS_R15,
  316. RS_R14], first_int_imreg, [])
  317. else
  318. { special for darwin/ppc64: r2 available volatile, r13 = tls }
  319. rg[R_INTREGISTER] := trgintcpu.create(R_INTREGISTER, R_SUBWHOLE,
  320. [{$ifdef user0} RS_R0, {$endif} RS_R2, RS_R3, RS_R4, RS_R5, RS_R6, RS_R7, RS_R8,
  321. RS_R9, RS_R10, RS_R11, RS_R12, RS_R31, RS_R30, RS_R29,
  322. RS_R28, RS_R27, RS_R26, RS_R25, RS_R24, RS_R23, RS_R22,
  323. RS_R21, RS_R20, RS_R19, RS_R18, RS_R17, RS_R16, RS_R15,
  324. RS_R14], first_int_imreg, []);
  325. rg[R_FPUREGISTER] := trgcpu.create(R_FPUREGISTER, R_SUBNONE,
  326. [RS_F0, RS_F1, RS_F2, RS_F3, RS_F4, RS_F5, RS_F6, RS_F7, RS_F8, RS_F9,
  327. RS_F10, RS_F11, RS_F12, RS_F13, RS_F31, RS_F30, RS_F29, RS_F28, RS_F27,
  328. RS_F26, RS_F25, RS_F24, RS_F23, RS_F22, RS_F21, RS_F20, RS_F19, RS_F18,
  329. RS_F17, RS_F16, RS_F15, RS_F14], first_fpu_imreg, []);
  330. { TODO: FIX ME}
  331. rg[R_MMREGISTER] := trgcpu.create(R_MMREGISTER, R_SUBNONE,
  332. [RS_M0, RS_M1, RS_M2], first_mm_imreg, []);
  333. end;
  334. procedure tcgppc.done_register_allocators;
  335. begin
  336. rg[R_INTREGISTER].free;
  337. rg[R_FPUREGISTER].free;
  338. rg[R_MMREGISTER].free;
  339. inherited done_register_allocators;
  340. end;
  341. procedure tcgppc.a_param_ref(list: TAsmList; size: tcgsize; const r:
  342. treference; const paraloc: tcgpara);
  343. var
  344. tmpref, ref: treference;
  345. location: pcgparalocation;
  346. sizeleft: aint;
  347. adjusttail : boolean;
  348. begin
  349. location := paraloc.location;
  350. tmpref := r;
  351. sizeleft := paraloc.intsize;
  352. adjusttail := false;
  353. while assigned(location) do begin
  354. case location^.loc of
  355. LOC_REGISTER, LOC_CREGISTER:
  356. begin
  357. if not(size in [OS_NO,OS_128,OS_S128]) then
  358. a_load_ref_reg(list, size, location^.size, tmpref,
  359. location^.register)
  360. else begin
  361. { load non-integral sized memory location into register. This
  362. memory location be 1-sizeleft byte sized.
  363. Always assume that this memory area is properly aligned, eg. start
  364. loading the larger quantities for "odd" quantities first }
  365. case sizeleft of
  366. 1,2,4,8 :
  367. a_load_ref_reg(list, int_cgsize(sizeleft), location^.size, tmpref,
  368. location^.register);
  369. 3 : begin
  370. a_reg_alloc(list, NR_R12);
  371. a_load_ref_reg(list, OS_16, location^.size, tmpref,
  372. NR_R12);
  373. inc(tmpref.offset, tcgsize2size[OS_16]);
  374. a_load_ref_reg(list, OS_8, location^.size, tmpref,
  375. location^.register);
  376. list.concat(taicpu.op_reg_reg_const_const(A_RLDIMI, location^.register, NR_R12, 8, 40));
  377. a_reg_dealloc(list, NR_R12);
  378. end;
  379. 5 : begin
  380. a_reg_alloc(list, NR_R12);
  381. a_load_ref_reg(list, OS_32, location^.size, tmpref, NR_R12);
  382. inc(tmpref.offset, tcgsize2size[OS_32]);
  383. a_load_ref_reg(list, OS_8, location^.size, tmpref, location^.register);
  384. list.concat(taicpu.op_reg_reg_const_const(A_RLDIMI, location^.register, NR_R12, 8, 24));
  385. a_reg_dealloc(list, NR_R12);
  386. end;
  387. 6 : begin
  388. a_reg_alloc(list, NR_R12);
  389. a_load_ref_reg(list, OS_32, location^.size, tmpref, NR_R12);
  390. inc(tmpref.offset, tcgsize2size[OS_32]);
  391. a_load_ref_reg(list, OS_16, location^.size, tmpref, location^.register);
  392. list.concat(taicpu.op_reg_reg_const_const(A_RLDIMI, location^.register, NR_R12, 16, 16));
  393. a_reg_dealloc(list, NR_R12);
  394. end;
  395. 7 : begin
  396. a_reg_alloc(list, NR_R12);
  397. a_reg_alloc(list, NR_R0);
  398. a_load_ref_reg(list, OS_32, location^.size, tmpref, NR_R12);
  399. inc(tmpref.offset, tcgsize2size[OS_32]);
  400. a_load_ref_reg(list, OS_16, location^.size, tmpref, NR_R0);
  401. inc(tmpref.offset, tcgsize2size[OS_16]);
  402. a_load_ref_reg(list, OS_8, location^.size, tmpref, location^.register);
  403. list.concat(taicpu.op_reg_reg_const_const(A_RLDIMI, NR_R0, NR_R12, 16, 16));
  404. list.concat(taicpu.op_reg_reg_const_const(A_RLDIMI, location^.register, NR_R0, 8, 8));
  405. a_reg_dealloc(list, NR_R0);
  406. a_reg_dealloc(list, NR_R12);
  407. end;
  408. else begin
  409. { still > 8 bytes to load, so load data single register now }
  410. a_load_ref_reg(list, location^.size, location^.size, tmpref,
  411. location^.register);
  412. { the block is > 8 bytes, so we have to store any bytes not
  413. a multiple of the register size beginning with the MSB }
  414. adjusttail := true;
  415. end;
  416. end;
  417. if (adjusttail) and (sizeleft < sizeof(pint)) then
  418. a_op_const_reg(list, OP_SHL, OS_INT,
  419. (sizeof(pint) - sizeleft) * sizeof(pint),
  420. location^.register);
  421. end;
  422. end;
  423. LOC_REFERENCE:
  424. begin
  425. reference_reset_base(ref, location^.reference.index,
  426. location^.reference.offset);
  427. g_concatcopy(list, tmpref, ref, sizeleft);
  428. if assigned(location^.next) then
  429. internalerror(2005010710);
  430. end;
  431. LOC_FPUREGISTER, LOC_CFPUREGISTER:
  432. case location^.size of
  433. OS_F32, OS_F64:
  434. a_loadfpu_ref_reg(list, location^.size, location^.size, tmpref, location^.register);
  435. else
  436. internalerror(2002072801);
  437. end;
  438. LOC_VOID:
  439. { nothing to do }
  440. ;
  441. else
  442. internalerror(2002081103);
  443. end;
  444. inc(tmpref.offset, tcgsize2size[location^.size]);
  445. dec(sizeleft, tcgsize2size[location^.size]);
  446. location := location^.next;
  447. end;
  448. end;
  449. { calling a procedure by name }
  450. procedure tcgppc.a_call_name(list: TAsmList; const s: string);
  451. begin
  452. if (target_info.system <> system_powerpc64_darwin) then
  453. a_call_name_direct(list, s, false, true)
  454. else
  455. begin
  456. list.concat(taicpu.op_sym(A_BL,get_darwin_call_stub(s)));
  457. include(current_procinfo.flags,pi_do_call);
  458. end;
  459. end;
  460. procedure tcgppc.a_call_name_direct(list: TAsmList; s: string; prependDot : boolean; addNOP : boolean; includeCall : boolean);
  461. begin
  462. if (prependDot) then
  463. s := '.' + s;
  464. list.concat(taicpu.op_sym(A_BL, current_asmdata.RefAsmSymbol(s)));
  465. if (addNOP) then
  466. list.concat(taicpu.op_none(A_NOP));
  467. if (includeCall) then
  468. include(current_procinfo.flags, pi_do_call);
  469. end;
  470. { calling a procedure by address }
  471. procedure tcgppc.a_call_reg(list: TAsmList; reg: tregister);
  472. var
  473. tmpref: treference;
  474. tempreg : TRegister;
  475. begin
  476. if (target_info.system = system_powerpc64_darwin) then
  477. inherited a_call_reg(list,reg)
  478. else if (not (cs_opt_size in current_settings.optimizerswitches)) then begin
  479. tempreg := cg.getintregister(current_asmdata.CurrAsmList, OS_INT);
  480. { load actual function entry (reg contains the reference to the function descriptor)
  481. into tempreg }
  482. reference_reset_base(tmpref, reg, 0);
  483. a_load_ref_reg(list, OS_ADDR, OS_ADDR, tmpref, tempreg);
  484. { save TOC pointer in stackframe }
  485. reference_reset_base(tmpref, NR_STACK_POINTER_REG, LA_RTOC_ELF);
  486. a_load_reg_ref(list, OS_ADDR, OS_ADDR, NR_RTOC, tmpref);
  487. { move actual function pointer to CTR register }
  488. list.concat(taicpu.op_reg(A_MTCTR, tempreg));
  489. { load new TOC pointer from function descriptor into RTOC register }
  490. reference_reset_base(tmpref, reg, tcgsize2size[OS_ADDR]);
  491. a_load_ref_reg(list, OS_ADDR, OS_ADDR, tmpref, NR_RTOC);
  492. { load new environment pointer from function descriptor into R11 register }
  493. reference_reset_base(tmpref, reg, 2*tcgsize2size[OS_ADDR]);
  494. a_reg_alloc(list, NR_R11);
  495. a_load_ref_reg(list, OS_ADDR, OS_ADDR, tmpref, NR_R11);
  496. { call function }
  497. list.concat(taicpu.op_none(A_BCTRL));
  498. a_reg_dealloc(list, NR_R11);
  499. end else begin
  500. { call ptrgl helper routine which expects the pointer to the function descriptor
  501. in R11 }
  502. a_reg_alloc(list, NR_R11);
  503. a_load_reg_reg(list, OS_ADDR, OS_ADDR, reg, NR_R11);
  504. a_call_name_direct(list, '.ptrgl', false, false);
  505. a_reg_dealloc(list, NR_R11);
  506. end;
  507. { we need to load the old RTOC from stackframe because we changed it}
  508. reference_reset_base(tmpref, NR_STACK_POINTER_REG, LA_RTOC_ELF);
  509. a_load_ref_reg(list, OS_ADDR, OS_ADDR, tmpref, NR_RTOC);
  510. include(current_procinfo.flags, pi_do_call);
  511. end;
  512. {********************** load instructions ********************}
  513. procedure tcgppc.a_load_const_reg(list: TAsmList; size: TCGSize; a: aint;
  514. reg: TRegister);
  515. { loads a 32 bit constant into the given register, using an optimal instruction sequence.
  516. This is either LIS, LI or LI+ADDIS.
  517. Returns true if during these operations the upper 32 bits were filled with 1 bits (e.g.
  518. sign extension was performed) }
  519. function load32bitconstant(list : TAsmList; size : TCGSize; a : longint;
  520. reg : TRegister) : boolean;
  521. var
  522. is_half_signed : byte;
  523. begin
  524. { if the lower 16 bits are zero, do a single LIS }
  525. if (smallint(a) = 0) and ((a shr 16) <> 0) then begin
  526. list.concat(taicpu.op_reg_const(A_LIS, reg, smallint(hi(a))));
  527. load32bitconstant := longint(a) < 0;
  528. end else begin
  529. is_half_signed := ord(smallint(lo(a)) < 0);
  530. list.concat(taicpu.op_reg_const(A_LI, reg, smallint(a and $ffff)));
  531. if smallint(hi(a) + is_half_signed) <> 0 then begin
  532. list.concat(taicpu.op_reg_reg_const(A_ADDIS, reg, reg, smallint(hi(a) + is_half_signed)));
  533. end;
  534. load32bitconstant := (smallint(a) < 0) or (a < 0);
  535. end;
  536. end;
  537. { loads a 32 bit constant into R0, using an optimal instruction sequence.
  538. This is either LIS, LI or LI+ORIS.
  539. Returns true if during these operations the upper 32 bits were filled with 1 bits (e.g.
  540. sign extension was performed) }
  541. function load32bitconstantR0(list : TAsmList; size : TCGSize; a : longint) : boolean;
  542. begin
  543. { if it's a value we can load with a single LI, do it }
  544. if (a >= low(smallint)) and (a <= high(smallint)) then begin
  545. list.concat(taicpu.op_reg_const(A_LI, NR_R0, smallint(a)));
  546. end else begin
  547. { if the lower 16 bits are zero, do a single LIS }
  548. list.concat(taicpu.op_reg_const(A_LIS, NR_R0, smallint(a shr 16)));
  549. if (smallint(a) <> 0) then begin
  550. list.concat(taicpu.op_reg_reg_const(A_ORI, NR_R0, NR_R0, word(a)));
  551. end;
  552. end;
  553. load32bitconstantR0 := a < 0;
  554. end;
  555. { emits the code to load a constant by emitting various instructions into the output
  556. code}
  557. procedure loadConstantNormal(list: TAsmList; size : TCgSize; a: aint; reg: TRegister);
  558. var
  559. extendssign : boolean;
  560. instr : taicpu;
  561. begin
  562. if (lo(a) = 0) and (hi(a) <> 0) then begin
  563. { load only upper 32 bits, and shift }
  564. load32bitconstant(list, size, longint(hi(a)), reg);
  565. list.concat(taicpu.op_reg_reg_const(A_SLDI, reg, reg, 32));
  566. end else begin
  567. { load lower 32 bits }
  568. extendssign := load32bitconstant(list, size, longint(lo(a)), reg);
  569. if (extendssign) and (hi(a) = 0) then
  570. { if upper 32 bits are zero, but loading the lower 32 bit resulted in automatic
  571. sign extension, clear those bits }
  572. list.concat(taicpu.op_reg_reg_const_const(A_RLDICL, reg, reg, 0, 32))
  573. else if (not
  574. ((extendssign and (longint(hi(a)) = -1)) or
  575. ((not extendssign) and (hi(a)=0)))
  576. ) then begin
  577. { only load the upper 32 bits, if the automatic sign extension is not okay,
  578. that is, _not_ if
  579. - loading the lower 32 bits resulted in -1 in the upper 32 bits, and the upper
  580. 32 bits should contain -1
  581. - loading the lower 32 bits resulted in 0 in the upper 32 bits, and the upper
  582. 32 bits should contain 0 }
  583. a_reg_alloc(list, NR_R0);
  584. load32bitconstantR0(list, size, longint(hi(a)));
  585. { combine both registers }
  586. list.concat(taicpu.op_reg_reg_const_const(A_RLDIMI, reg, NR_R0, 32, 0));
  587. a_reg_dealloc(list, NR_R0);
  588. end;
  589. end;
  590. end;
  591. {$IFDEF EXTDEBUG}
  592. var
  593. astring : string;
  594. {$ENDIF EXTDEBUG}
  595. begin
  596. {$IFDEF EXTDEBUG}
  597. astring := 'a_load_const_reg ' + inttostr(hi(a)) + ' ' + inttostr(lo(a)) + ' ' + inttostr(ord(size)) + ' ' + inttostr(tcgsize2size[size]) + ' ' + hexstr(a, 16);
  598. list.concat(tai_comment.create(strpnew(astring)));
  599. {$ENDIF EXTDEBUG}
  600. if not (size in [OS_8, OS_S8, OS_16, OS_S16, OS_32, OS_S32, OS_64, OS_S64]) then
  601. internalerror(2002090902);
  602. { if PIC or basic optimizations are enabled, and the number of instructions which would be
  603. required to load the value is greater than 2, store (and later load) the value from there }
  604. // if (((cs_opt_peephole in current_settings.optimizerswitches) or (cs_create_pic in current_settings.moduleswitches)) and
  605. // (getInstructionLength(a) > 2)) then
  606. // loadConstantPIC(list, size, a, reg)
  607. // else
  608. loadConstantNormal(list, size, a, reg);
  609. end;
  610. procedure tcgppc.a_load_ref_reg(list: TAsmList; fromsize, tosize: tcgsize;
  611. const ref: treference; reg: tregister);
  612. const
  613. LoadInstr: array[OS_8..OS_S64, boolean, boolean] of TAsmOp =
  614. { indexed? updating? }
  615. (((A_LBZ, A_LBZU), (A_LBZX, A_LBZUX)),
  616. ((A_LHZ, A_LHZU), (A_LHZX, A_LHZUX)),
  617. ((A_LWZ, A_LWZU), (A_LWZX, A_LWZUX)),
  618. ((A_LD, A_LDU), (A_LDX, A_LDUX)),
  619. { 128bit stuff too }
  620. ((A_NONE, A_NONE), (A_NONE, A_NONE)),
  621. { there's no load-byte-with-sign-extend :( }
  622. ((A_LBZ, A_LBZU), (A_LBZX, A_LBZUX)),
  623. ((A_LHA, A_LHAU), (A_LHAX, A_LHAUX)),
  624. { there's no load-word-arithmetic-indexed with update, simulate it in code :( }
  625. ((A_LWA, A_NOP), (A_LWAX, A_LWAUX)),
  626. ((A_LD, A_LDU), (A_LDX, A_LDUX))
  627. );
  628. var
  629. op: tasmop;
  630. ref2: treference;
  631. tmpreg: tregister;
  632. begin
  633. {$IFDEF EXTDEBUG}
  634. list.concat(tai_comment.create(strpnew('a_load_ref_reg ' + ref2string(ref))));
  635. {$ENDIF EXTDEBUG}
  636. if not (fromsize in [OS_8, OS_S8, OS_16, OS_S16, OS_32, OS_S32, OS_64, OS_S64]) then
  637. internalerror(2002090904);
  638. { the caller is expected to have adjusted the reference already
  639. in this case }
  640. if (TCGSize2Size[fromsize] >= TCGSize2Size[tosize]) then
  641. fromsize := tosize;
  642. ref2 := ref;
  643. fixref(list, ref2);
  644. op := loadinstr[fromsize, ref2.index <> NR_NO, false];
  645. { there is no LWAU instruction, simulate using ADDI and LWA }
  646. if (op = A_NOP) then begin
  647. list.concat(taicpu.op_reg_reg_const(A_ADDI, reg, reg, ref2.offset));
  648. ref2.offset := 0;
  649. op := A_LWA;
  650. end;
  651. a_load_store(list, op, reg, ref2);
  652. { sign extend shortint if necessary (because there is
  653. no load instruction to sign extend an 8 bit value automatically)
  654. and mask out extra sign bits when loading from a smaller
  655. signed to a larger unsigned type (where it matters) }
  656. if (fromsize = OS_S8) then begin
  657. a_load_reg_reg(list, OS_8, OS_S8, reg, reg);
  658. a_load_reg_reg(list, OS_S8, tosize, reg, reg);
  659. end else if (fromsize = OS_S16) and (tosize = OS_32) then
  660. a_load_reg_reg(list, fromsize, tosize, reg, reg);
  661. end;
  662. procedure tcgppc.a_load_reg_reg(list: TAsmList; fromsize, tosize: tcgsize;
  663. reg1, reg2: tregister);
  664. var
  665. instr: TAiCpu;
  666. bytesize : byte;
  667. begin
  668. {$ifdef extdebug}
  669. list.concat(tai_comment.create(strpnew('a_load_reg_reg from : ' + cgsize2string(fromsize) + ' to ' + cgsize2string(tosize))));
  670. {$endif}
  671. if (tcgsize2size[fromsize] > tcgsize2size[tosize]) or
  672. ((tcgsize2size[fromsize] = tcgsize2size[tosize]) and (fromsize <> tosize)) or
  673. { do we need to mask out the sign when loading from smaller signed to larger unsigned type? }
  674. ( is_signed_cgsize(fromsize) and (not is_signed_cgsize(tosize)) and
  675. (tcgsize2size[fromsize] < tcgsize2size[tosize]) and (tcgsize2size[tosize] <> sizeof(pint)) ) then begin
  676. case tosize of
  677. OS_S8:
  678. instr := taicpu.op_reg_reg(A_EXTSB,reg2,reg1);
  679. OS_S16:
  680. instr := taicpu.op_reg_reg(A_EXTSH,reg2,reg1);
  681. OS_S32:
  682. instr := taicpu.op_reg_reg(A_EXTSW,reg2,reg1);
  683. OS_8, OS_16, OS_32:
  684. instr := taicpu.op_reg_reg_const_const(A_RLDICL, reg2, reg1, 0, (8-tcgsize2size[tosize])*8);
  685. OS_S64, OS_64:
  686. instr := taicpu.op_reg_reg(A_MR, reg2, reg1);
  687. end;
  688. end else
  689. instr := taicpu.op_reg_reg(A_MR, reg2, reg1);
  690. list.concat(instr);
  691. rg[R_INTREGISTER].add_move_instruction(instr);
  692. end;
  693. procedure tcgppc.a_load_subsetreg_reg(list : TAsmList; subsetsize, tosize: tcgsize; const sreg: tsubsetregister; destreg: tregister);
  694. begin
  695. {$ifdef extdebug}
  696. list.concat(tai_comment.create(strpnew('a_load_subsetreg_reg subsetregsize = ' + cgsize2string(sreg.subsetregsize) + ' subsetsize = ' + cgsize2string(subsetsize) + ' startbit = ' + intToStr(sreg.startbit) + ' tosize = ' + cgsize2string(tosize))));
  697. {$endif}
  698. { do the extraction if required and then extend the sign correctly. (The latter is actually required only for signed subsets
  699. and if that subset is not >= the tosize). }
  700. if (sreg.startbit <> 0) or
  701. (sreg.bitlen <> tcgsize2size[subsetsize]*8) then begin
  702. list.concat(taicpu.op_reg_reg_const_const(A_RLDICL, destreg, sreg.subsetreg, (64 - sreg.startbit) and 63, 64 - sreg.bitlen));
  703. if (subsetsize in [OS_S8..OS_S128]) then
  704. if ((sreg.bitlen mod 8) = 0) then begin
  705. a_load_reg_reg(list, tcgsize2unsigned[subsetsize], subsetsize, destreg, destreg);
  706. a_load_reg_reg(list, subsetsize, tosize, destreg, destreg);
  707. end else begin
  708. a_op_const_reg(list,OP_SHL,OS_INT,64-sreg.bitlen,destreg);
  709. a_op_const_reg(list,OP_SAR,OS_INT,64-sreg.bitlen,destreg);
  710. end;
  711. end else begin
  712. a_load_reg_reg(list, tcgsize2unsigned[sreg.subsetregsize], subsetsize, sreg.subsetreg, destreg);
  713. a_load_reg_reg(list, subsetsize, tosize, destreg, destreg);
  714. end;
  715. end;
  716. procedure tcgppc.a_load_regconst_subsetreg_intern(list : TAsmList; fromsize, subsetsize: tcgsize; fromreg: tregister; const sreg: tsubsetregister; slopt: tsubsetloadopt);
  717. begin
  718. {$ifdef extdebug}
  719. list.concat(tai_comment.create(strpnew('a_load_reg_subsetreg fromsize = ' + cgsize2string(fromsize) + ' subsetregsize = ' + cgsize2string(sreg.subsetregsize) + ' subsetsize = ' + cgsize2string(subsetsize) + ' startbit = ' + IntToStr(sreg.startbit))));
  720. {$endif}
  721. if (slopt in [SL_SETZERO,SL_SETMAX]) then
  722. inherited a_load_regconst_subsetreg_intern(list,fromsize,subsetsize,fromreg,sreg,slopt)
  723. else if (sreg.bitlen <> sizeof(aint)*8) then
  724. { simply use the INSRDI instruction }
  725. list.concat(taicpu.op_reg_reg_const_const(A_INSRDI, sreg.subsetreg, fromreg, sreg.bitlen, (64 - (sreg.startbit + sreg.bitlen)) and 63))
  726. else
  727. a_load_reg_reg(list, fromsize, subsetsize, fromreg, sreg.subsetreg);
  728. end;
  729. procedure tcgppc.a_load_const_subsetreg(list: TAsmlist; subsetsize: tcgsize;
  730. a: aint; const sreg: tsubsetregister);
  731. var
  732. tmpreg : TRegister;
  733. begin
  734. {$ifdef extdebug}
  735. list.concat(tai_comment.create(strpnew('a_load_const_subsetreg subsetregsize = ' + cgsize2string(sreg.subsetregsize) + ' subsetsize = ' + cgsize2string(subsetsize) + ' startbit = ' + intToStr(sreg.startbit) + ' a = ' + intToStr(a))));
  736. {$endif}
  737. { loading the constant into the lowest bits of a temp register and then inserting is
  738. better than loading some usually large constants and do some masking and shifting on ppc64 }
  739. tmpreg := getintregister(list,subsetsize);
  740. a_load_const_reg(list,subsetsize,a,tmpreg);
  741. a_load_reg_subsetreg(list, subsetsize, subsetsize, tmpreg, sreg);
  742. end;
  743. procedure tcgppc.a_op_const_reg(list: TAsmList; Op: TOpCG; size: TCGSize; a:
  744. aint; reg: TRegister);
  745. begin
  746. a_op_const_reg_reg(list, op, size, a, reg, reg);
  747. end;
  748. procedure tcgppc.a_op_reg_reg(list: TAsmList; Op: TOpCG; size: TCGSize; src,
  749. dst: TRegister);
  750. begin
  751. a_op_reg_reg_reg(list, op, size, src, dst, dst);
  752. end;
  753. procedure tcgppc.a_op_const_reg_reg(list: TAsmList; op: TOpCg;
  754. size: tcgsize; a: aint; src, dst: tregister);
  755. var
  756. useReg : boolean;
  757. procedure do_lo_hi(loOp, hiOp : TAsmOp);
  758. begin
  759. { Optimization for logical ops (excluding AND), trying to do this as efficiently
  760. as possible by only generating code for the affected halfwords. Note that all
  761. the instructions handled here must have "X op 0 = X" for every halfword. }
  762. usereg := false;
  763. if (aword(a) > high(dword)) then begin
  764. usereg := true;
  765. end else begin
  766. if (word(a) <> 0) then begin
  767. list.concat(taicpu.op_reg_reg_const(loOp, dst, src, word(a)));
  768. if (word(a shr 16) <> 0) then
  769. list.concat(taicpu.op_reg_reg_const(hiOp, dst, dst, word(a shr 16)));
  770. end else if (word(a shr 16) <> 0) then
  771. list.concat(taicpu.op_reg_reg_const(hiOp, dst, src, word(a shr 16)));
  772. end;
  773. end;
  774. procedure do_lo_hi_and;
  775. begin
  776. { optimization logical and with immediate: only use "andi." for 16 bit
  777. ands, otherwise use register method. Doing this for 32 bit constants
  778. would not give any advantage to the register method (via useReg := true),
  779. requiring a scratch register and three instructions. }
  780. usereg := false;
  781. if (aword(a) > high(word)) then
  782. usereg := true
  783. else
  784. list.concat(taicpu.op_reg_reg_const(A_ANDI_, dst, src, word(a)));
  785. end;
  786. procedure do_constant_div(list : TAsmList; size : TCgSize; a : aint; src, dst : TRegister;
  787. signed : boolean);
  788. const
  789. negops : array[boolean] of tasmop = (A_NEG, A_NEGO);
  790. var
  791. magic, shift : int64;
  792. u_magic : qword;
  793. u_shift : byte;
  794. u_add : boolean;
  795. power : byte;
  796. isNegPower : boolean;
  797. divreg : tregister;
  798. begin
  799. if (a = 0) then begin
  800. internalerror(2005061701);
  801. end else if (a = 1) then begin
  802. cg.a_load_reg_reg(current_asmdata.CurrAsmList, OS_INT, OS_INT, src, dst);
  803. end else if (a = -1) and (signed) then begin
  804. { note: only in the signed case possible..., may overflow }
  805. current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg(negops[cs_check_overflow in current_settings.localswitches], dst, src));
  806. end else if (ispowerof2(a, power, isNegPower)) then begin
  807. if (signed) then begin
  808. { From "The PowerPC Compiler Writer's Guide", pg. 52ff }
  809. cg.a_op_const_reg_reg(current_asmdata.CurrAsmList, OP_SAR, OS_INT, power,
  810. src, dst);
  811. current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg(A_ADDZE, dst, dst));
  812. if (isNegPower) then
  813. current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg(A_NEG, dst, dst));
  814. end else begin
  815. cg.a_op_const_reg_reg(current_asmdata.CurrAsmList, OP_SHR, OS_INT, power, src, dst)
  816. end;
  817. end else begin
  818. { replace division by multiplication, both implementations }
  819. { from "The PowerPC Compiler Writer's Guide" pg. 53ff }
  820. divreg := cg.getintregister(current_asmdata.CurrAsmList, OS_INT);
  821. if (signed) then begin
  822. getmagic_signedN(sizeof(aInt)*8, a, magic, shift);
  823. { load magic value }
  824. cg.a_load_const_reg(current_asmdata.CurrAsmList, OS_INT, magic, divreg);
  825. { multiply }
  826. current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg_reg(A_MULHD, dst, src, divreg));
  827. { add/subtract numerator }
  828. if (a > 0) and (magic < 0) then begin
  829. cg.a_op_reg_reg_reg(current_asmdata.CurrAsmList, OP_ADD, OS_INT, src, dst, dst);
  830. end else if (a < 0) and (magic > 0) then begin
  831. cg.a_op_reg_reg_reg(current_asmdata.CurrAsmList, OP_SUB, OS_INT, src, dst, dst);
  832. end;
  833. { shift shift places to the right (arithmetic) }
  834. cg.a_op_const_reg_reg(current_asmdata.CurrAsmList, OP_SAR, OS_INT, shift, dst, dst);
  835. { extract and add sign bit }
  836. if (a >= 0) then begin
  837. cg.a_op_const_reg_reg(current_asmdata.CurrAsmList, OP_SHR, OS_INT, 63, src, divreg);
  838. end else begin
  839. cg.a_op_const_reg_reg(current_asmdata.CurrAsmList, OP_SHR, OS_INT, 63, dst, divreg);
  840. end;
  841. cg.a_op_reg_reg_reg(current_asmdata.CurrAsmList, OP_ADD, OS_INT, dst, divreg, dst);
  842. end else begin
  843. getmagic_unsignedN(sizeof(aWord)*8, a, u_magic, u_add, u_shift);
  844. { load magic in divreg }
  845. cg.a_load_const_reg(current_asmdata.CurrAsmList, OS_INT, aint(u_magic), divreg);
  846. current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg_reg(A_MULHDU, dst, src, divreg));
  847. if (u_add) then begin
  848. cg.a_op_reg_reg_reg(current_asmdata.CurrAsmList, OP_SUB, OS_INT, dst, src, divreg);
  849. cg.a_op_const_reg_reg(current_asmdata.CurrAsmList, OP_SHR, OS_INT, 1, divreg, divreg);
  850. cg.a_op_reg_reg_reg(current_asmdata.CurrAsmList, OP_ADD, OS_INT, divreg, dst, divreg);
  851. cg.a_op_const_reg_reg(current_asmdata.CurrAsmList, OP_SHR, OS_INT, u_shift-1, divreg, dst);
  852. end else begin
  853. cg.a_op_const_reg_reg(current_asmdata.CurrAsmList, OP_SHR, OS_INT, u_shift, dst, dst);
  854. end;
  855. end;
  856. end;
  857. end;
  858. var
  859. scratchreg: tregister;
  860. shift : byte;
  861. shiftmask : longint;
  862. isneg : boolean;
  863. begin
  864. { subtraction is the same as addition with negative constant }
  865. if op = OP_SUB then begin
  866. a_op_const_reg_reg(list, OP_ADD, size, -a, src, dst);
  867. exit;
  868. end;
  869. {$IFDEF EXTDEBUG}
  870. list.concat(tai_comment.create(strpnew('a_op_const_reg_reg ' + cgop2string(op))));
  871. {$ENDIF EXTDEBUG}
  872. { This case includes some peephole optimizations for the various operations,
  873. (e.g. AND, OR, XOR, ..) - can't this be done at some higher level,
  874. independent of architecture? }
  875. { assume that we do not need a scratch register for the operation }
  876. useReg := false;
  877. case (op) of
  878. OP_DIV, OP_IDIV:
  879. if (cs_opt_level1 in current_settings.optimizerswitches) then
  880. do_constant_div(list, size, a, src, dst, op = OP_IDIV)
  881. else
  882. usereg := true;
  883. OP_IMUL, OP_MUL:
  884. { idea: factorize constant multiplicands and use adds/shifts with few factors;
  885. however, even a 64 bit multiply is already quite fast on PPC64 }
  886. if (a = 0) then
  887. a_load_const_reg(list, size, 0, dst)
  888. else if (a = -1) then
  889. list.concat(taicpu.op_reg_reg(A_NEG, dst, dst))
  890. else if (a = 1) then
  891. a_load_reg_reg(list, OS_INT, OS_INT, src, dst)
  892. else if ispowerof2(a, shift, isneg) then begin
  893. list.concat(taicpu.op_reg_reg_const(A_SLDI, dst, src, shift));
  894. if (isneg) then
  895. current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg(A_NEG, dst, dst));
  896. end else if (a >= low(smallint)) and (a <= high(smallint)) then
  897. list.concat(taicpu.op_reg_reg_const(A_MULLI, dst, src,
  898. smallint(a)))
  899. else
  900. usereg := true;
  901. OP_ADD:
  902. if (a = 0) then
  903. a_load_reg_reg(list, size, size, src, dst)
  904. else if (a >= low(smallint)) and (a <= high(smallint)) then
  905. list.concat(taicpu.op_reg_reg_const(A_ADDI, dst, src, smallint(a)))
  906. else
  907. useReg := true;
  908. OP_OR:
  909. if (a = 0) then
  910. a_load_reg_reg(list, size, size, src, dst)
  911. else if (a = -1) then
  912. a_load_const_reg(list, size, -1, dst)
  913. else
  914. do_lo_hi(A_ORI, A_ORIS);
  915. OP_AND:
  916. if (a = 0) then
  917. a_load_const_reg(list, size, 0, dst)
  918. else if (a = -1) then
  919. a_load_reg_reg(list, size, size, src, dst)
  920. else
  921. do_lo_hi_and;
  922. OP_XOR:
  923. if (a = 0) then
  924. a_load_reg_reg(list, size, size, src, dst)
  925. else if (a = -1) then
  926. list.concat(taicpu.op_reg_reg(A_NOT, dst, src))
  927. else
  928. do_lo_hi(A_XORI, A_XORIS);
  929. OP_ROL:
  930. begin
  931. if (size in [OS_64, OS_S64]) then begin
  932. list.concat(taicpu.op_reg_reg_const_const(A_RLDICL, dst, src, a and 63, 0));
  933. end else if (size in [OS_32, OS_S32]) then begin
  934. list.concat(taicpu.op_reg_reg_const_const_const(A_RLWINM, dst, src, a and 31, 0, 31));
  935. end else begin
  936. internalerror(2008091303);
  937. end;
  938. end;
  939. OP_ROR:
  940. begin
  941. if (size in [OS_64, OS_S64]) then begin
  942. list.concat(taicpu.op_reg_reg_const_const(A_RLDICL, dst, src, ((64 - a) and 63), 0));
  943. end else if (size in [OS_32, OS_S32]) then begin
  944. list.concat(taicpu.op_reg_reg_const_const_const(A_RLWINM, dst, src, (32 - a) and 31, 0, 31));
  945. end else begin
  946. internalerror(2008091304);
  947. end;
  948. end;
  949. OP_SHL, OP_SHR, OP_SAR:
  950. begin
  951. if (size in [OS_64, OS_S64]) then
  952. shift := 6
  953. else
  954. shift := 5;
  955. shiftmask := (1 shl shift)-1;
  956. if (a and shiftmask) <> 0 then begin
  957. list.concat(taicpu.op_reg_reg_const(
  958. TShiftOpCG2AsmOpConst[size in [OS_64, OS_S64], op], dst, src, a and shiftmask));
  959. end else
  960. a_load_reg_reg(list, size, size, src, dst);
  961. if ((a shr shift) <> 0) then
  962. internalError(68991);
  963. end
  964. else
  965. internalerror(200109091);
  966. end;
  967. { if all else failed, load the constant in a register and then
  968. perform the operation }
  969. if (useReg) then begin
  970. scratchreg := rg[R_INTREGISTER].getregister(list, R_SUBWHOLE);
  971. a_load_const_reg(list, size, a, scratchreg);
  972. a_op_reg_reg_reg(list, op, size, scratchreg, src, dst);
  973. end else
  974. maybeadjustresult(list, op, size, dst);
  975. end;
  976. procedure tcgppc.a_op_reg_reg_reg(list: TAsmList; op: TOpCg;
  977. size: tcgsize; src1, src2, dst: tregister);
  978. const
  979. op_reg_reg_opcg2asmop32: array[TOpCG] of tasmop =
  980. (A_NONE, A_MR, A_ADD, A_AND, A_DIVWU, A_DIVW, A_MULLW, A_MULLW, A_NEG, A_NOT, A_OR,
  981. A_SRAW, A_SLW, A_SRW, A_SUB, A_XOR, A_NONE, A_NONE);
  982. op_reg_reg_opcg2asmop64: array[TOpCG] of tasmop =
  983. (A_NONE, A_MR, A_ADD, A_AND, A_DIVDU, A_DIVD, A_MULLD, A_MULLD, A_NEG, A_NOT, A_OR,
  984. A_SRAD, A_SLD, A_SRD, A_SUB, A_XOR, A_NONE, A_NONE);
  985. var
  986. tmpreg : TRegister;
  987. begin
  988. case op of
  989. OP_NEG, OP_NOT:
  990. begin
  991. list.concat(taicpu.op_reg_reg(op_reg_reg_opcg2asmop64[op], dst, src1));
  992. if (op = OP_NOT) and not (size in [OS_64, OS_S64]) then
  993. { zero/sign extend result again, fromsize is not important here }
  994. a_load_reg_reg(list, OS_S64, size, dst, dst)
  995. end;
  996. OP_ROL:
  997. begin
  998. if (size in [OS_64, OS_S64]) then begin
  999. list.concat(taicpu.op_reg_reg_reg_const(A_RLDCL, dst, src2, src1, 0));
  1000. end else if (size in [OS_32, OS_S32]) then begin
  1001. list.concat(taicpu.op_reg_reg_reg_const_const(A_RLWNM, dst, src2, src1, 0, 31));
  1002. end else begin
  1003. internalerror(2008091301);
  1004. end;
  1005. end;
  1006. OP_ROR:
  1007. begin
  1008. tmpreg := getintregister(current_asmdata.CurrAsmList, OS_INT);
  1009. list.concat(taicpu.op_reg_reg(A_NEG, tmpreg, src1));
  1010. if (size in [OS_64, OS_S64]) then begin
  1011. list.concat(taicpu.op_reg_reg_reg_const(A_RLDCL, dst, src2, tmpreg, 0));
  1012. end else if (size in [OS_32, OS_S32]) then begin
  1013. list.concat(taicpu.op_reg_reg_reg_const_const(A_RLWNM, dst, src2, tmpreg, 0, 31));
  1014. end else begin
  1015. internalerror(2008091302);
  1016. end;
  1017. end;
  1018. else
  1019. if (size in [OS_64, OS_S64]) then begin
  1020. list.concat(taicpu.op_reg_reg_reg(op_reg_reg_opcg2asmop64[op], dst, src2,
  1021. src1));
  1022. end else begin
  1023. list.concat(taicpu.op_reg_reg_reg(op_reg_reg_opcg2asmop32[op], dst, src2,
  1024. src1));
  1025. maybeadjustresult(list, op, size, dst);
  1026. end;
  1027. end;
  1028. end;
  1029. {*************** compare instructructions ****************}
  1030. procedure tcgppc.a_cmp_const_reg_label(list: TAsmList; size: tcgsize;
  1031. cmp_op: topcmp; a: aint; reg: tregister; l: tasmlabel);
  1032. const
  1033. { unsigned useconst 32bit-op }
  1034. cmpop_table : array[boolean, boolean, boolean] of TAsmOp = (
  1035. ((A_CMPD, A_CMPW), (A_CMPDI, A_CMPWI)),
  1036. ((A_CMPLD, A_CMPLW), (A_CMPLDI, A_CMPLWI))
  1037. );
  1038. var
  1039. tmpreg : TRegister;
  1040. signed, useconst : boolean;
  1041. opsize : TCgSize;
  1042. op : TAsmOp;
  1043. begin
  1044. {$IFDEF EXTDEBUG}
  1045. list.concat(tai_comment.create(strpnew('a_cmp_const_reg_label ' + cgsize2string(size) + ' ' + booltostr(cmp_op in [OC_GT, OC_LT, OC_GTE, OC_LTE]) + ' ' + inttostr(a) )));
  1046. {$ENDIF EXTDEBUG}
  1047. signed := cmp_op in [OC_GT, OC_LT, OC_GTE, OC_LTE];
  1048. { in the following case, we generate more efficient code when
  1049. signed is true }
  1050. if (cmp_op in [OC_EQ, OC_NE]) and
  1051. (aword(a) > $FFFF) then
  1052. signed := true;
  1053. opsize := size;
  1054. { do we need to change the operand size because ppc64 only supports 32 and
  1055. 64 bit compares? }
  1056. if (not (size in [OS_32, OS_S32, OS_64, OS_S64])) then begin
  1057. if (signed) then
  1058. opsize := OS_S32
  1059. else
  1060. opsize := OS_32;
  1061. a_load_reg_reg(current_asmdata.CurrAsmList, size, opsize, reg, reg);
  1062. end;
  1063. { can we use immediate compares? }
  1064. useconst := (signed and ( (a >= low(smallint)) and (a <= high(smallint)))) or
  1065. ((not signed) and (aword(a) <= $FFFF));
  1066. op := cmpop_table[not signed, useconst, opsize in [OS_32, OS_S32]];
  1067. if (useconst) then begin
  1068. list.concat(taicpu.op_reg_reg_const(op, NR_CR0, reg, a));
  1069. end else begin
  1070. tmpreg := getintregister(current_asmdata.CurrAsmList, OS_INT);
  1071. a_load_const_reg(current_asmdata.CurrAsmList, opsize, a, tmpreg);
  1072. list.concat(taicpu.op_reg_reg_reg(op, NR_CR0, reg, tmpreg));
  1073. end;
  1074. a_jmp(list, A_BC, TOpCmp2AsmCond[cmp_op], 0, l);
  1075. end;
  1076. procedure tcgppc.a_cmp_reg_reg_label(list: TAsmList; size: tcgsize;
  1077. cmp_op: topcmp; reg1, reg2: tregister; l: tasmlabel);
  1078. var
  1079. op: tasmop;
  1080. begin
  1081. {$IFDEF extdebug}
  1082. list.concat(tai_comment.create(strpnew('a_cmp_reg_reg_label, size ' + cgsize2string(size) + ' op ' + inttostr(ord(cmp_op)))));
  1083. {$ENDIF extdebug}
  1084. {$note Commented out below check because of compiler weirdness}
  1085. {
  1086. if (not (size in [OS_32, OS_S32, OS_64, OS_S64])) then
  1087. internalerror(200606041);
  1088. }
  1089. if cmp_op in [OC_GT, OC_LT, OC_GTE, OC_LTE] then
  1090. if (size in [OS_64, OS_S64]) then
  1091. op := A_CMPD
  1092. else
  1093. op := A_CMPW
  1094. else
  1095. if (size in [OS_64, OS_S64]) then
  1096. op := A_CMPLD
  1097. else
  1098. op := A_CMPLW;
  1099. list.concat(taicpu.op_reg_reg_reg(op, NR_CR0, reg2, reg1));
  1100. a_jmp(list, A_BC, TOpCmp2AsmCond[cmp_op], 0, l);
  1101. end;
  1102. procedure tcgppc.a_jmp_name_direct(list : TAsmList; s : string; prependDot : boolean);
  1103. var
  1104. p: taicpu;
  1105. begin
  1106. if (prependDot) then
  1107. s := '.' + s;
  1108. p := taicpu.op_sym(A_B, current_asmdata.RefAsmSymbol(s));
  1109. p.is_jmp := true;
  1110. list.concat(p)
  1111. end;
  1112. procedure tcgppc.a_jmp_name(list: TAsmList; const s: string);
  1113. var
  1114. p: taicpu;
  1115. begin
  1116. if (target_info.system = system_powerpc64_darwin) then
  1117. begin
  1118. p := taicpu.op_sym(A_B,get_darwin_call_stub(s));
  1119. p.is_jmp := true;
  1120. list.concat(p)
  1121. end
  1122. else
  1123. a_jmp_name_direct(list, s, true);
  1124. end;
  1125. procedure tcgppc.a_jmp_always(list: TAsmList; l: tasmlabel);
  1126. begin
  1127. a_jmp(list, A_B, C_None, 0, l);
  1128. end;
  1129. procedure tcgppc.a_jmp_flags(list: TAsmList; const f: TResFlags; l:
  1130. tasmlabel);
  1131. var
  1132. c: tasmcond;
  1133. begin
  1134. c := flags_to_cond(f);
  1135. a_jmp(list, A_BC, c.cond, c.cr - RS_CR0, l);
  1136. end;
  1137. procedure tcgppc.g_flags2reg(list: TAsmList; size: TCgSize; const f:
  1138. TResFlags; reg: TRegister);
  1139. var
  1140. testbit: byte;
  1141. bitvalue: boolean;
  1142. begin
  1143. { get the bit to extract from the conditional register + its requested value (0 or 1) }
  1144. testbit := ((f.cr - RS_CR0) * 4);
  1145. case f.flag of
  1146. F_EQ, F_NE:
  1147. begin
  1148. inc(testbit, 2);
  1149. bitvalue := f.flag = F_EQ;
  1150. end;
  1151. F_LT, F_GE:
  1152. begin
  1153. bitvalue := f.flag = F_LT;
  1154. end;
  1155. F_GT, F_LE:
  1156. begin
  1157. inc(testbit);
  1158. bitvalue := f.flag = F_GT;
  1159. end;
  1160. else
  1161. internalerror(200112261);
  1162. end;
  1163. { load the conditional register in the destination reg }
  1164. list.concat(taicpu.op_reg(A_MFCR, reg));
  1165. { we will move the bit that has to be tested to bit 0 by rotating left }
  1166. testbit := (testbit + 1) and 31;
  1167. { extract bit }
  1168. list.concat(taicpu.op_reg_reg_const_const_const(
  1169. A_RLWINM,reg,reg,testbit,31,31));
  1170. { if we need the inverse, xor with 1 }
  1171. if not bitvalue then
  1172. list.concat(taicpu.op_reg_reg_const(A_XORI, reg, reg, 1));
  1173. end;
  1174. { *********** entry/exit code and address loading ************ }
  1175. procedure tcgppc.g_save_registers(list: TAsmList);
  1176. begin
  1177. { this work is done in g_proc_entry; additionally it is not safe
  1178. to use it because it is called at some weird time }
  1179. end;
  1180. procedure tcgppc.g_restore_registers(list: TAsmList);
  1181. begin
  1182. { this work is done in g_proc_exit; mainly because it is not safe to
  1183. put the register restore code here because it is called at some weird time }
  1184. end;
  1185. procedure tcgppc.calcFirstUsedFPR(out firstfpr : TSuperRegister; out fprcount : aint);
  1186. var
  1187. reg : TSuperRegister;
  1188. begin
  1189. fprcount := 0;
  1190. firstfpr := RS_F31;
  1191. if not (po_assembler in current_procinfo.procdef.procoptions) then
  1192. for reg := RS_F14 to RS_F31 do
  1193. if reg in rg[R_FPUREGISTER].used_in_proc then begin
  1194. fprcount := ord(RS_F31)-ord(reg)+1;
  1195. firstfpr := reg;
  1196. break;
  1197. end;
  1198. end;
  1199. procedure tcgppc.calcFirstUsedGPR(out firstgpr : TSuperRegister; out gprcount : aint);
  1200. var
  1201. reg : TSuperRegister;
  1202. begin
  1203. gprcount := 0;
  1204. firstgpr := RS_R31;
  1205. if not (po_assembler in current_procinfo.procdef.procoptions) then
  1206. for reg := RS_R14 to RS_R31 do
  1207. if reg in rg[R_INTREGISTER].used_in_proc then begin
  1208. gprcount := ord(RS_R31)-ord(reg)+1;
  1209. firstgpr := reg;
  1210. break;
  1211. end;
  1212. end;
  1213. procedure tcgppc.profilecode_savepara(para : tparavarsym; list : TAsmList);
  1214. begin
  1215. case (para.paraloc[calleeside].location^.loc) of
  1216. LOC_REGISTER, LOC_CREGISTER:
  1217. a_load_reg_ref(list, OS_INT, para.paraloc[calleeside].Location^.size,
  1218. para.paraloc[calleeside].Location^.register, para.localloc.reference);
  1219. LOC_FPUREGISTER, LOC_CFPUREGISTER:
  1220. a_loadfpu_reg_ref(list, para.paraloc[calleeside].Location^.size,
  1221. para.paraloc[calleeside].Location^.size,
  1222. para.paraloc[calleeside].Location^.register, para.localloc.reference);
  1223. LOC_MMREGISTER, LOC_CMMREGISTER:
  1224. { not supported }
  1225. internalerror(2006041801);
  1226. end;
  1227. end;
  1228. procedure tcgppc.profilecode_restorepara(para : tparavarsym; list : TAsmList);
  1229. begin
  1230. case (para.paraloc[calleeside].Location^.loc) of
  1231. LOC_REGISTER, LOC_CREGISTER:
  1232. a_load_ref_reg(list, para.paraloc[calleeside].Location^.size, OS_INT,
  1233. para.localloc.reference, para.paraloc[calleeside].Location^.register);
  1234. LOC_FPUREGISTER, LOC_CFPUREGISTER:
  1235. a_loadfpu_ref_reg(list, para.paraloc[calleeside].Location^.size,
  1236. para.paraloc[calleeside].Location^.size,
  1237. para.localloc.reference, para.paraloc[calleeside].Location^.register);
  1238. LOC_MMREGISTER, LOC_CMMREGISTER:
  1239. { not supported }
  1240. internalerror(2006041802);
  1241. end;
  1242. end;
  1243. procedure tcgppc.g_profilecode(list: TAsmList);
  1244. begin
  1245. current_procinfo.procdef.paras.ForEachCall(TObjectListCallback(@profilecode_savepara), list);
  1246. a_call_name_direct(list, '_mcount', false, true);
  1247. current_procinfo.procdef.paras.ForEachCall(TObjectListCallback(@profilecode_restorepara), list);
  1248. end;
  1249. { Generates the entry code of a procedure/function.
  1250. This procedure may be called before, as well as after g_return_from_proc
  1251. is called. localsize is the sum of the size necessary for local variables
  1252. and the maximum possible combined size of ALL the parameters of a procedure
  1253. called by the current one
  1254. IMPORTANT: registers are not to be allocated through the register
  1255. allocator here, because the register colouring has already occured !!
  1256. }
  1257. procedure tcgppc.g_proc_entry(list: TAsmList; localsize: longint;
  1258. nostackframe: boolean);
  1259. var
  1260. firstregfpu, firstreggpr: TSuperRegister;
  1261. needslinkreg: boolean;
  1262. fprcount, gprcount : aint;
  1263. { Save standard registers, both FPR and GPR; does not support VMX/Altivec }
  1264. procedure save_standard_registers;
  1265. var
  1266. regcount : TSuperRegister;
  1267. href : TReference;
  1268. mayNeedLRStore : boolean;
  1269. begin
  1270. { there are two ways to do this: manually, by generating a few "std" instructions,
  1271. or via the restore helper functions. The latter are selected by the -Og switch,
  1272. i.e. "optimize for size" }
  1273. if (cs_opt_size in current_settings.optimizerswitches) and
  1274. (target_info.system <> system_powerpc64_darwin) then begin
  1275. mayNeedLRStore := false;
  1276. if ((fprcount > 0) and (gprcount > 0)) then begin
  1277. a_op_const_reg_reg(list, OP_SUB, OS_INT, 8 * fprcount, NR_R1, NR_R12);
  1278. a_call_name_direct(list, '_savegpr1_' + intToStr(32-gprcount), false, false, false);
  1279. a_call_name_direct(list, '_savefpr_' + intToStr(32-fprcount), false, false, false);
  1280. end else if (gprcount > 0) then
  1281. a_call_name_direct(list, '_savegpr0_' + intToStr(32-gprcount), false, false, false)
  1282. else if (fprcount > 0) then
  1283. a_call_name_direct(list, '_savefpr_' + intToStr(32-fprcount), false, false, false)
  1284. else
  1285. mayNeedLRStore := true;
  1286. end else begin
  1287. { save registers, FPU first, then GPR }
  1288. reference_reset_base(href, NR_STACK_POINTER_REG, -8);
  1289. if (fprcount > 0) then
  1290. for regcount := RS_F31 downto firstregfpu do begin
  1291. a_loadfpu_reg_ref(list, OS_FLOAT, OS_FLOAT, newreg(R_FPUREGISTER,
  1292. regcount, R_SUBNONE), href);
  1293. dec(href.offset, tcgsize2size[OS_FLOAT]);
  1294. end;
  1295. if (gprcount > 0) then
  1296. for regcount := RS_R31 downto firstreggpr do begin
  1297. a_load_reg_ref(list, OS_INT, OS_INT, newreg(R_INTREGISTER, regcount,
  1298. R_SUBNONE), href);
  1299. dec(href.offset, sizeof(pint));
  1300. end;
  1301. { VMX registers not supported by FPC atm }
  1302. { in this branch we always need to store LR ourselves}
  1303. mayNeedLRStore := true;
  1304. end;
  1305. { we may need to store R0 (=LR) ourselves }
  1306. if ((cs_profile in init_settings.moduleswitches) or (mayNeedLRStore)) and (needslinkreg) then begin
  1307. reference_reset_base(href, NR_STACK_POINTER_REG, LA_LR_ELF);
  1308. list.concat(taicpu.op_reg_ref(A_STD, NR_R0, href));
  1309. end;
  1310. end;
  1311. var
  1312. href: treference;
  1313. begin
  1314. calcFirstUsedFPR(firstregfpu, fprcount);
  1315. calcFirstUsedGPR(firstreggpr, gprcount);
  1316. { calculate real stack frame size }
  1317. localsize := tppcprocinfo(current_procinfo).calc_stackframe_size(
  1318. gprcount, fprcount);
  1319. { determine whether we need to save the link register }
  1320. needslinkreg :=
  1321. not(nostackframe) and
  1322. (save_lr_in_prologue or
  1323. ((cs_opt_size in current_settings.optimizerswitches) and
  1324. ((fprcount > 0) or
  1325. (gprcount > 0))));
  1326. a_reg_alloc(list, NR_STACK_POINTER_REG);
  1327. a_reg_alloc(list, NR_R0);
  1328. { move link register to r0 }
  1329. if (needslinkreg) then
  1330. list.concat(taicpu.op_reg(A_MFLR, NR_R0));
  1331. save_standard_registers;
  1332. { save old stack frame pointer }
  1333. if (tppcprocinfo(current_procinfo).needs_frame_pointer) then begin
  1334. a_reg_alloc(list, NR_OLD_STACK_POINTER_REG);
  1335. list.concat(taicpu.op_reg_reg(A_MR, NR_OLD_STACK_POINTER_REG, NR_STACK_POINTER_REG));
  1336. end;
  1337. { create stack frame }
  1338. if (not nostackframe) and (localsize > 0) and
  1339. tppcprocinfo(current_procinfo).needstackframe then begin
  1340. if (localsize <= high(smallint)) then begin
  1341. reference_reset_base(href, NR_STACK_POINTER_REG, -localsize);
  1342. a_load_store(list, A_STDU, NR_STACK_POINTER_REG, href);
  1343. end else begin
  1344. reference_reset_base(href, NR_NO, -localsize);
  1345. { Use R0 for loading the constant (which is definitely > 32k when entering
  1346. this branch).
  1347. Inlined at this position because it must not use temp registers because
  1348. register allocations have already been done }
  1349. { Code template:
  1350. lis r0,ofs@highest
  1351. ori r0,r0,ofs@higher
  1352. sldi r0,r0,32
  1353. oris r0,r0,ofs@h
  1354. ori r0,r0,ofs@l
  1355. }
  1356. list.concat(taicpu.op_reg_const(A_LIS, NR_R0, word(href.offset shr 48)));
  1357. list.concat(taicpu.op_reg_reg_const(A_ORI, NR_R0, NR_R0, word(href.offset shr 32)));
  1358. list.concat(taicpu.op_reg_reg_const(A_SLDI, NR_R0, NR_R0, 32));
  1359. list.concat(taicpu.op_reg_reg_const(A_ORIS, NR_R0, NR_R0, word(href.offset shr 16)));
  1360. list.concat(taicpu.op_reg_reg_const(A_ORI, NR_R0, NR_R0, word(href.offset)));
  1361. list.concat(taicpu.op_reg_reg_reg(A_STDUX, NR_R1, NR_R1, NR_R0));
  1362. end;
  1363. end;
  1364. { CR register not used by FPC atm }
  1365. { keep R1 allocated??? }
  1366. a_reg_dealloc(list, NR_R0);
  1367. end;
  1368. { Generates the exit code for a method.
  1369. This procedure may be called before, as well as after g_stackframe_entry
  1370. is called.
  1371. IMPORTANT: registers are not to be allocated through the register
  1372. allocator here, because the register colouring has already occured !!
  1373. }
  1374. procedure tcgppc.g_proc_exit(list: TAsmList; parasize: longint; nostackframe:
  1375. boolean);
  1376. var
  1377. firstregfpu, firstreggpr: TSuperRegister;
  1378. needslinkreg : boolean;
  1379. fprcount, gprcount: aint;
  1380. { Restore standard registers, both FPR and GPR; does not support VMX/Altivec }
  1381. procedure restore_standard_registers;
  1382. var
  1383. { flag indicating whether we need to manually add the exit code (e.g. blr instruction)
  1384. or not }
  1385. needsExitCode : Boolean;
  1386. href : treference;
  1387. regcount : TSuperRegister;
  1388. begin
  1389. { there are two ways to do this: manually, by generating a few "ld" instructions,
  1390. or via the restore helper functions. The latter are selected by the -Og switch,
  1391. i.e. "optimize for size" }
  1392. if (cs_opt_size in current_settings.optimizerswitches) then begin
  1393. needsExitCode := false;
  1394. if ((fprcount > 0) and (gprcount > 0)) then begin
  1395. a_op_const_reg_reg(list, OP_SUB, OS_INT, 8 * fprcount, NR_R1, NR_R12);
  1396. a_call_name_direct(list, '_restgpr1_' + intToStr(32-gprcount), false, false, false);
  1397. a_jmp_name_direct(list, '_restfpr_' + intToStr(32-fprcount), false);
  1398. end else if (gprcount > 0) then
  1399. a_jmp_name_direct(list, '_restgpr0_' + intToStr(32-gprcount), false)
  1400. else if (fprcount > 0) then
  1401. a_jmp_name_direct(list, '_restfpr_' + intToStr(32-fprcount), false)
  1402. else
  1403. needsExitCode := true;
  1404. end else begin
  1405. needsExitCode := true;
  1406. { restore registers, FPU first, GPR next }
  1407. reference_reset_base(href, NR_STACK_POINTER_REG, -tcgsize2size[OS_FLOAT]);
  1408. if (fprcount > 0) then
  1409. for regcount := RS_F31 downto firstregfpu do begin
  1410. a_loadfpu_ref_reg(list, OS_FLOAT, OS_FLOAT, href, newreg(R_FPUREGISTER, regcount,
  1411. R_SUBNONE));
  1412. dec(href.offset, tcgsize2size[OS_FLOAT]);
  1413. end;
  1414. if (gprcount > 0) then
  1415. for regcount := RS_R31 downto firstreggpr do begin
  1416. a_load_ref_reg(list, OS_INT, OS_INT, href, newreg(R_INTREGISTER, regcount,
  1417. R_SUBNONE));
  1418. dec(href.offset, sizeof(pint));
  1419. end;
  1420. { VMX not supported by FPC atm }
  1421. end;
  1422. if (needsExitCode) then begin
  1423. { restore LR (if needed) }
  1424. if (needslinkreg) then begin
  1425. reference_reset_base(href, NR_STACK_POINTER_REG, LA_LR_ELF);
  1426. list.concat(taicpu.op_reg_ref(A_LD, NR_R0, href));
  1427. list.concat(taicpu.op_reg(A_MTLR, NR_R0));
  1428. end;
  1429. { generate return instruction }
  1430. list.concat(taicpu.op_none(A_BLR));
  1431. end;
  1432. end;
  1433. var
  1434. href: treference;
  1435. localsize : aint;
  1436. begin
  1437. calcFirstUsedFPR(firstregfpu, fprcount);
  1438. calcFirstUsedGPR(firstreggpr, gprcount);
  1439. { determine whether we need to restore the link register }
  1440. needslinkreg :=
  1441. not(nostackframe) and
  1442. (((not (po_assembler in current_procinfo.procdef.procoptions)) and
  1443. ((pi_do_call in current_procinfo.flags) or (cs_profile in init_settings.moduleswitches))) or
  1444. ((cs_opt_size in current_settings.optimizerswitches) and ((fprcount > 0) or (gprcount > 0))) or
  1445. ([cs_lineinfo, cs_debuginfo] * current_settings.moduleswitches <> []));
  1446. { calculate stack frame }
  1447. localsize := tppcprocinfo(current_procinfo).calc_stackframe_size(
  1448. gprcount, fprcount);
  1449. { CR register not supported }
  1450. { restore stack pointer }
  1451. if (not nostackframe) and (localsize > 0) and
  1452. tppcprocinfo(current_procinfo).needstackframe then begin
  1453. if (localsize <= high(smallint)) then begin
  1454. list.concat(taicpu.op_reg_reg_const(A_ADDI, NR_STACK_POINTER_REG, NR_STACK_POINTER_REG, localsize));
  1455. end else begin
  1456. reference_reset_base(href, NR_NO, localsize);
  1457. { use R0 for loading the constant (which is definitely > 32k when entering
  1458. this branch)
  1459. Inlined because it must not use temp registers because register allocations
  1460. have already been done
  1461. }
  1462. { Code template:
  1463. lis r0,ofs@highest
  1464. ori r0,ofs@higher
  1465. sldi r0,r0,32
  1466. oris r0,r0,ofs@h
  1467. ori r0,r0,ofs@l
  1468. }
  1469. list.concat(taicpu.op_reg_const(A_LIS, NR_R0, word(href.offset shr 48)));
  1470. list.concat(taicpu.op_reg_reg_const(A_ORI, NR_R0, NR_R0, word(href.offset shr 32)));
  1471. list.concat(taicpu.op_reg_reg_const(A_SLDI, NR_R0, NR_R0, 32));
  1472. list.concat(taicpu.op_reg_reg_const(A_ORIS, NR_R0, NR_R0, word(href.offset shr 16)));
  1473. list.concat(taicpu.op_reg_reg_const(A_ORI, NR_R0, NR_R0, word(href.offset)));
  1474. list.concat(taicpu.op_reg_reg_reg(A_ADD, NR_R1, NR_R1, NR_R0));
  1475. end;
  1476. end;
  1477. restore_standard_registers;
  1478. end;
  1479. procedure tcgppc.a_loadaddr_ref_reg(list: TAsmList; const ref: treference; r:
  1480. tregister);
  1481. var
  1482. ref2, tmpref: treference;
  1483. { register used to construct address }
  1484. tempreg : TRegister;
  1485. begin
  1486. if (target_info.system = system_powerpc64_darwin) then
  1487. begin
  1488. inherited a_loadaddr_ref_reg(list,ref,r);
  1489. exit;
  1490. end;
  1491. ref2 := ref;
  1492. fixref(list, ref2);
  1493. { load a symbol }
  1494. if (assigned(ref2.symbol) or (hasLargeOffset(ref2))) then begin
  1495. { add the symbol's value to the base of the reference, and if the }
  1496. { reference doesn't have a base, create one }
  1497. reference_reset(tmpref);
  1498. tmpref.offset := ref2.offset;
  1499. tmpref.symbol := ref2.symbol;
  1500. tmpref.relsymbol := ref2.relsymbol;
  1501. { load 64 bit reference into r. If the reference already has a base register,
  1502. first load the 64 bit value into a temp register, then add it to the result
  1503. register rD }
  1504. if (ref2.base <> NR_NO) then begin
  1505. { already have a base register, so allocate a new one }
  1506. tempreg := rg[R_INTREGISTER].getregister(list, R_SUBWHOLE);
  1507. end else begin
  1508. tempreg := r;
  1509. end;
  1510. { code for loading a reference from a symbol into a register rD }
  1511. (*
  1512. lis rX,SYM@highest
  1513. ori rX,SYM@higher
  1514. sldi rX,rX,32
  1515. oris rX,rX,SYM@h
  1516. ori rX,rX,SYM@l
  1517. *)
  1518. {$IFDEF EXTDEBUG}
  1519. list.concat(tai_comment.create(strpnew('loadaddr_ref_reg ')));
  1520. {$ENDIF EXTDEBUG}
  1521. if (assigned(tmpref.symbol)) then begin
  1522. tmpref.refaddr := addr_highest;
  1523. list.concat(taicpu.op_reg_ref(A_LIS, tempreg, tmpref));
  1524. tmpref.refaddr := addr_higher;
  1525. list.concat(taicpu.op_reg_reg_ref(A_ORI, tempreg, tempreg, tmpref));
  1526. list.concat(taicpu.op_reg_reg_const(A_SLDI, tempreg, tempreg, 32));
  1527. tmpref.refaddr := addr_high;
  1528. list.concat(taicpu.op_reg_reg_ref(A_ORIS, tempreg, tempreg, tmpref));
  1529. tmpref.refaddr := addr_low;
  1530. list.concat(taicpu.op_reg_reg_ref(A_ORI, tempreg, tempreg, tmpref));
  1531. end else
  1532. a_load_const_reg(list, OS_ADDR, tmpref.offset, tempreg);
  1533. { if there's already a base register, add the temp register contents to
  1534. the base register }
  1535. if (ref2.base <> NR_NO) then begin
  1536. list.concat(taicpu.op_reg_reg_reg(A_ADD, r, tempreg, ref2.base));
  1537. end;
  1538. end else if (ref2.offset <> 0) then begin
  1539. { no symbol, but offset <> 0 }
  1540. if (ref2.base <> NR_NO) then begin
  1541. a_op_const_reg_reg(list, OP_ADD, OS_64, ref2.offset, ref2.base, r)
  1542. { FixRef makes sure that "(ref.index <> R_NO) and (ref.offset <> 0)" never
  1543. occurs, so now only ref.offset has to be loaded }
  1544. end else begin
  1545. a_load_const_reg(list, OS_64, ref2.offset, r);
  1546. end;
  1547. end else if (ref2.index <> NR_NO) then begin
  1548. list.concat(taicpu.op_reg_reg_reg(A_ADD, r, ref2.base, ref2.index))
  1549. end else if (ref2.base <> NR_NO) and
  1550. (r <> ref2.base) then begin
  1551. a_load_reg_reg(list, OS_ADDR, OS_ADDR, ref2.base, r)
  1552. end else begin
  1553. list.concat(taicpu.op_reg_const(A_LI, r, 0));
  1554. end;
  1555. end;
  1556. { ************* concatcopy ************ }
  1557. procedure tcgppc.g_concatcopy(list: TAsmList; const source, dest: treference;
  1558. len: aint);
  1559. var
  1560. countreg, tempreg:TRegister;
  1561. src, dst: TReference;
  1562. lab: tasmlabel;
  1563. count, count2, step: longint;
  1564. size: tcgsize;
  1565. begin
  1566. {$IFDEF extdebug}
  1567. if len > high(aint) then
  1568. internalerror(2002072704);
  1569. list.concat(tai_comment.create(strpnew('g_concatcopy1 ' + inttostr(len) + ' bytes left ')));
  1570. {$ENDIF extdebug}
  1571. { if the references are equal, exit, there is no need to copy anything }
  1572. if references_equal(source, dest) or
  1573. (len=0) then
  1574. exit;
  1575. { make sure short loads are handled as optimally as possible;
  1576. note that the data here never overlaps, so we can do a forward
  1577. copy at all times.
  1578. NOTE: maybe use some scratch registers to pair load/store instructions
  1579. }
  1580. if (len <= 8) then begin
  1581. src := source; dst := dest;
  1582. {$IFDEF extdebug}
  1583. list.concat(tai_comment.create(strpnew('g_concatcopy3 ' + inttostr(src.offset) + ' ' + inttostr(dst.offset))));
  1584. {$ENDIF extdebug}
  1585. while (len <> 0) do begin
  1586. if (len = 8) then begin
  1587. a_load_ref_ref(list, OS_64, OS_64, src, dst);
  1588. dec(len, 8);
  1589. end else if (len >= 4) then begin
  1590. a_load_ref_ref(list, OS_32, OS_32, src, dst);
  1591. inc(src.offset, 4); inc(dst.offset, 4);
  1592. dec(len, 4);
  1593. end else if (len >= 2) then begin
  1594. a_load_ref_ref(list, OS_16, OS_16, src, dst);
  1595. inc(src.offset, 2); inc(dst.offset, 2);
  1596. dec(len, 2);
  1597. end else begin
  1598. a_load_ref_ref(list, OS_8, OS_8, src, dst);
  1599. inc(src.offset, 1); inc(dst.offset, 1);
  1600. dec(len, 1);
  1601. end;
  1602. end;
  1603. exit;
  1604. end;
  1605. {$IFDEF extdebug}
  1606. list.concat(tai_comment.create(strpnew('g_concatcopy2 ' + inttostr(len) + ' bytes left ')));
  1607. {$ENDIF extdebug}
  1608. if not(source.alignment in [1,2]) and
  1609. not(dest.alignment in [1,2]) then
  1610. begin
  1611. count:=len div 8;
  1612. step:=8;
  1613. size:=OS_64;
  1614. end
  1615. else
  1616. begin
  1617. count:=len div 4;
  1618. step:=4;
  1619. size:=OS_32;
  1620. end;
  1621. tempreg:=getintregister(list,size);
  1622. reference_reset(src);
  1623. reference_reset(dst);
  1624. { load the address of source into src.base }
  1625. if (count > 4) or
  1626. not issimpleref(source) or
  1627. ((source.index <> NR_NO) and
  1628. ((source.offset + len) > high(smallint))) then begin
  1629. src.base := getaddressregister(list);
  1630. a_loadaddr_ref_reg(list, source, src.base);
  1631. end else begin
  1632. src := source;
  1633. end;
  1634. { load the address of dest into dst.base }
  1635. if (count > 4) or
  1636. not issimpleref(dest) or
  1637. ((dest.index <> NR_NO) and
  1638. ((dest.offset + len) > high(smallint))) then begin
  1639. dst.base := getaddressregister(list);
  1640. a_loadaddr_ref_reg(list, dest, dst.base);
  1641. end else begin
  1642. dst := dest;
  1643. end;
  1644. { generate a loop }
  1645. if count > 4 then begin
  1646. { the offsets are zero after the a_loadaddress_ref_reg and just
  1647. have to be set to step. I put an Inc there so debugging may be
  1648. easier (should offset be different from zero here, it will be
  1649. easy to notice in the generated assembler }
  1650. inc(dst.offset, step);
  1651. inc(src.offset, step);
  1652. list.concat(taicpu.op_reg_reg_const(A_SUBI, src.base, src.base, step));
  1653. list.concat(taicpu.op_reg_reg_const(A_SUBI, dst.base, dst.base, step));
  1654. countreg := getintregister(list, OS_INT);
  1655. a_load_const_reg(list, OS_INT, count, countreg);
  1656. current_asmdata.getjumplabel(lab);
  1657. a_label(list, lab);
  1658. list.concat(taicpu.op_reg_reg_const(A_SUBIC_, countreg, countreg, 1));
  1659. if (size=OS_64) then
  1660. begin
  1661. list.concat(taicpu.op_reg_ref(A_LDU, tempreg, src));
  1662. list.concat(taicpu.op_reg_ref(A_STDU, tempreg, dst));
  1663. end
  1664. else
  1665. begin
  1666. list.concat(taicpu.op_reg_ref(A_LWZU, tempreg, src));
  1667. list.concat(taicpu.op_reg_ref(A_STWU, tempreg, dst));
  1668. end;
  1669. a_jmp(list, A_BC, C_NE, 0, lab);
  1670. a_reg_sync(list,src.base);
  1671. a_reg_sync(list,dst.base);
  1672. a_reg_sync(list,countreg);
  1673. len := len mod step;
  1674. count := 0;
  1675. end;
  1676. { unrolled loop }
  1677. if count > 0 then begin
  1678. for count2 := 1 to count do begin
  1679. a_load_ref_reg(list, size, size, src, tempreg);
  1680. a_load_reg_ref(list, size, size, tempreg, dst);
  1681. inc(src.offset, step);
  1682. inc(dst.offset, step);
  1683. end;
  1684. len := len mod step;
  1685. end;
  1686. if (len and 4) <> 0 then begin
  1687. a_load_ref_reg(list, OS_32, OS_32, src, tempreg);
  1688. a_load_reg_ref(list, OS_32, OS_32, tempreg, dst);
  1689. inc(src.offset, 4);
  1690. inc(dst.offset, 4);
  1691. end;
  1692. { copy the leftovers }
  1693. if (len and 2) <> 0 then begin
  1694. a_load_ref_reg(list, OS_16, OS_16, src, tempreg);
  1695. a_load_reg_ref(list, OS_16, OS_16, tempreg, dst);
  1696. inc(src.offset, 2);
  1697. inc(dst.offset, 2);
  1698. end;
  1699. if (len and 1) <> 0 then begin
  1700. a_load_ref_reg(list, OS_8, OS_8, src, tempreg);
  1701. a_load_reg_ref(list, OS_8, OS_8, tempreg, dst);
  1702. end;
  1703. end;
  1704. procedure tcgppc.g_external_wrapper(list: TAsmList; pd: TProcDef; const externalname: string);
  1705. var
  1706. href : treference;
  1707. begin
  1708. if (target_info.system <> system_powerpc64_linux) then begin
  1709. inherited;
  1710. exit;
  1711. end;
  1712. { for ppc64/linux emit correct code which sets up a stack frame and then calls the
  1713. external method normally to ensure that the GOT/TOC will be loaded correctly if
  1714. required.
  1715. It's not really advantageous to use cg methods here because they are too specialized.
  1716. I.e. the resulting code sequence looks as follows:
  1717. mflr r0
  1718. std r0, 16(r1)
  1719. stdu r1, -112(r1)
  1720. bl <external_method>
  1721. nop
  1722. addi r1, r1, 112
  1723. ld r0, 16(r1)
  1724. mtlr r0
  1725. blr
  1726. }
  1727. list.concat(taicpu.op_reg(A_MFLR, NR_R0));
  1728. reference_reset_base(href, NR_STACK_POINTER_REG, 16);
  1729. list.concat(taicpu.op_reg_ref(A_STD, NR_R0, href));
  1730. reference_reset_base(href, NR_STACK_POINTER_REG, -MINIMUM_STACKFRAME_SIZE);
  1731. list.concat(taicpu.op_reg_ref(A_STDU, NR_STACK_POINTER_REG, href));
  1732. list.concat(taicpu.op_sym(A_BL, current_asmdata.RefAsmSymbol(externalname)));
  1733. list.concat(taicpu.op_none(A_NOP));
  1734. list.concat(taicpu.op_reg_reg_const(A_ADDI, NR_STACK_POINTER_REG, NR_STACK_POINTER_REG, MINIMUM_STACKFRAME_SIZE));
  1735. reference_reset_base(href, NR_STACK_POINTER_REG, LA_LR_ELF);
  1736. list.concat(taicpu.op_reg_ref(A_LD, NR_R0, href));
  1737. list.concat(taicpu.op_reg(A_MTLR, NR_R0));
  1738. list.concat(taicpu.op_none(A_BLR));
  1739. end;
  1740. {***************** This is private property, keep out! :) *****************}
  1741. procedure tcgppc.maybeadjustresult(list: TAsmList; op: TOpCg; size: tcgsize; dst: tregister);
  1742. const
  1743. overflowops = [OP_MUL,OP_SHL,OP_ADD,OP_SUB,OP_NOT,OP_NEG];
  1744. begin
  1745. {$IFDEF EXTDEBUG}
  1746. list.concat(tai_comment.create(strpnew('maybeadjustresult op = ' + cgop2string(op) + ' size = ' + cgsize2string(size))));
  1747. {$ENDIF EXTDEBUG}
  1748. if (op in overflowops) and (size in [OS_8, OS_S8, OS_16, OS_S16, OS_32, OS_S32]) then
  1749. a_load_reg_reg(list, OS_64, size, dst, dst);
  1750. end;
  1751. function tcgppc.issimpleref(const ref: treference): boolean;
  1752. begin
  1753. if (ref.base = NR_NO) and
  1754. (ref.index <> NR_NO) then
  1755. internalerror(200208101);
  1756. result :=
  1757. not (assigned(ref.symbol)) and
  1758. (((ref.index = NR_NO) and
  1759. (ref.offset >= low(smallint)) and
  1760. (ref.offset <= high(smallint))) or
  1761. ((ref.index <> NR_NO) and
  1762. (ref.offset = 0)));
  1763. end;
  1764. procedure tcgppc.a_load_store(list: TAsmList; op: tasmop; reg: tregister;
  1765. ref: treference);
  1766. procedure maybefixup64bitoffset;
  1767. var
  1768. tmpreg: tregister;
  1769. begin
  1770. { for some instructions we need to check that the offset is divisible by at
  1771. least four. If not, add the bytes which are "off" to the base register and
  1772. adjust the offset accordingly }
  1773. case op of
  1774. A_LD, A_LDU, A_STD, A_STDU, A_LWA :
  1775. if ((ref.offset mod 4) <> 0) then begin
  1776. tmpreg := rg[R_INTREGISTER].getregister(list, R_SUBWHOLE);
  1777. if (ref.base <> NR_NO) then begin
  1778. a_op_const_reg_reg(list, OP_ADD, OS_ADDR, ref.offset mod 4, ref.base, tmpreg);
  1779. ref.base := tmpreg;
  1780. end else begin
  1781. list.concat(taicpu.op_reg_const(A_LI, tmpreg, ref.offset mod 4));
  1782. ref.base := tmpreg;
  1783. end;
  1784. ref.offset := (ref.offset div 4) * 4;
  1785. end;
  1786. end;
  1787. end;
  1788. var
  1789. tmpreg, tmpreg2: tregister;
  1790. tmpref: treference;
  1791. largeOffset: Boolean;
  1792. begin
  1793. if (target_info.system = system_powerpc64_darwin) then
  1794. begin
  1795. { darwin/ppc64 works with 32 bit relocatable symbol addresses }
  1796. maybefixup64bitoffset;
  1797. inherited a_load_store(list,op,reg,ref);
  1798. exit
  1799. end;
  1800. { at this point there must not be a combination of values in the ref treference
  1801. which is not possible to directly map to instructions of the PowerPC architecture }
  1802. if (ref.index <> NR_NO) and ((ref.offset <> 0) or (assigned(ref.symbol))) then
  1803. internalerror(200310131);
  1804. { if this is a PIC'ed address, handle it and exit }
  1805. if (ref.refaddr = addr_pic) then begin
  1806. if (ref.offset <> 0) then
  1807. internalerror(2006010501);
  1808. if (ref.index <> NR_NO) then
  1809. internalerror(2006010502);
  1810. if (not assigned(ref.symbol)) then
  1811. internalerror(200601050);
  1812. list.concat(taicpu.op_reg_ref(op, reg, ref));
  1813. exit;
  1814. end;
  1815. maybefixup64bitoffset;
  1816. {$IFDEF EXTDEBUG}
  1817. list.concat(tai_comment.create(strpnew('a_load_store1 ' + BoolToStr(ref.refaddr = addr_pic))));
  1818. {$ENDIF EXTDEBUG}
  1819. { if we have to load/store from a symbol or large addresses, use a temporary register
  1820. containing the address }
  1821. if (assigned(ref.symbol) or (hasLargeOffset(ref))) then begin
  1822. tmpreg := rg[R_INTREGISTER].getregister(list, R_SUBWHOLE);
  1823. if (hasLargeOffset(ref) and (ref.base = NR_NO)) then begin
  1824. ref.base := rg[R_INTREGISTER].getregister(list, R_SUBWHOLE);
  1825. a_load_const_reg(list, OS_ADDR, ref.offset, ref.base);
  1826. ref.offset := 0;
  1827. end;
  1828. reference_reset(tmpref);
  1829. tmpref.symbol := ref.symbol;
  1830. tmpref.relsymbol := ref.relsymbol;
  1831. tmpref.offset := ref.offset;
  1832. if (ref.base <> NR_NO) then begin
  1833. { As long as the TOC isn't working we try to achieve highest speed (in this
  1834. case by allowing instructions execute in parallel) as possible at the cost
  1835. of using another temporary register. So the code template when there is
  1836. a base register and an offset is the following:
  1837. lis rT1, SYM+offs@highest
  1838. ori rT1, rT1, SYM+offs@higher
  1839. lis rT2, SYM+offs@hi
  1840. ori rT2, SYM+offs@lo
  1841. rldimi rT2, rT1, 32
  1842. <op>X reg, base, rT2
  1843. }
  1844. tmpreg2 := rg[R_INTREGISTER].getregister(list, R_SUBWHOLE);
  1845. if (assigned(tmpref.symbol)) then begin
  1846. tmpref.refaddr := addr_highest;
  1847. list.concat(taicpu.op_reg_ref(A_LIS, tmpreg, tmpref));
  1848. tmpref.refaddr := addr_higher;
  1849. list.concat(taicpu.op_reg_reg_ref(A_ORI, tmpreg, tmpreg, tmpref));
  1850. tmpref.refaddr := addr_high;
  1851. list.concat(taicpu.op_reg_ref(A_LIS, tmpreg2, tmpref));
  1852. tmpref.refaddr := addr_low;
  1853. list.concat(taicpu.op_reg_reg_ref(A_ORI, tmpreg2, tmpreg2, tmpref));
  1854. list.concat(taicpu.op_reg_reg_const_const(A_RLDIMI, tmpreg2, tmpreg, 32, 0));
  1855. end else
  1856. a_load_const_reg(list, OS_ADDR, tmpref.offset, tmpreg2);
  1857. reference_reset(tmpref);
  1858. tmpref.base := ref.base;
  1859. tmpref.index := tmpreg2;
  1860. case op of
  1861. { the code generator doesn't generate update instructions anyway, so
  1862. error out on those instructions }
  1863. A_LBZ : op := A_LBZX;
  1864. A_LHZ : op := A_LHZX;
  1865. A_LWZ : op := A_LWZX;
  1866. A_LD : op := A_LDX;
  1867. A_LHA : op := A_LHAX;
  1868. A_LWA : op := A_LWAX;
  1869. A_LFS : op := A_LFSX;
  1870. A_LFD : op := A_LFDX;
  1871. A_STB : op := A_STBX;
  1872. A_STH : op := A_STHX;
  1873. A_STW : op := A_STWX;
  1874. A_STD : op := A_STDX;
  1875. A_STFS : op := A_STFSX;
  1876. A_STFD : op := A_STFDX;
  1877. else
  1878. { unknown load/store opcode }
  1879. internalerror(2005101302);
  1880. end;
  1881. list.concat(taicpu.op_reg_ref(op, reg, tmpref));
  1882. end else begin
  1883. { when accessing value from a reference without a base register, use the
  1884. following code template:
  1885. lis rT,SYM+offs@highesta
  1886. ori rT,SYM+offs@highera
  1887. sldi rT,rT,32
  1888. oris rT,rT,SYM+offs@ha
  1889. ld rD,SYM+offs@l(rT)
  1890. }
  1891. tmpref.refaddr := addr_highesta;
  1892. list.concat(taicpu.op_reg_ref(A_LIS, tmpreg, tmpref));
  1893. tmpref.refaddr := addr_highera;
  1894. list.concat(taicpu.op_reg_reg_ref(A_ORI, tmpreg, tmpreg, tmpref));
  1895. list.concat(taicpu.op_reg_reg_const(A_SLDI, tmpreg, tmpreg, 32));
  1896. tmpref.refaddr := addr_higha;
  1897. list.concat(taicpu.op_reg_reg_ref(A_ORIS, tmpreg, tmpreg, tmpref));
  1898. tmpref.base := tmpreg;
  1899. tmpref.refaddr := addr_low;
  1900. list.concat(taicpu.op_reg_ref(op, reg, tmpref));
  1901. end;
  1902. end else begin
  1903. list.concat(taicpu.op_reg_ref(op, reg, ref));
  1904. end;
  1905. end;
  1906. procedure tcgppc.loadConstantPIC(list : TAsmList; size : TCGSize; a : aint; reg : TRegister);
  1907. var
  1908. l: tasmsymbol;
  1909. ref: treference;
  1910. symname : string;
  1911. begin
  1912. maybe_new_object_file(current_asmdata.asmlists[al_picdata]);
  1913. symname := '_$' + current_asmdata.name + '$toc$' + hexstr(a, sizeof(a)*2);
  1914. l:=current_asmdata.getasmsymbol(symname);
  1915. if not(assigned(l)) then begin
  1916. l:=current_asmdata.DefineAsmSymbol(symname,AB_GLOBAL, AT_DATA);
  1917. current_asmdata.asmlists[al_picdata].concat(tai_section.create(sec_toc, '.toc', 8));
  1918. current_asmdata.asmlists[al_picdata].concat(tai_symbol.create_global(l,0));
  1919. current_asmdata.asmlists[al_picdata].concat(tai_directive.create(asd_toc_entry, symname + '[TC], ' + inttostr(a)));
  1920. end;
  1921. reference_reset_symbol(ref,l,0);
  1922. ref.base := NR_R2;
  1923. ref.refaddr := addr_no;
  1924. {$IFDEF EXTDEBUG}
  1925. list.concat(tai_comment.create(strpnew('loading value from TOC reference for ' + symname)));
  1926. {$ENDIF EXTDEBUG}
  1927. cg.a_load_ref_reg(list, OS_INT, OS_INT, ref, reg);
  1928. end;
  1929. begin
  1930. cg := tcgppc.create;
  1931. end.