ncgutil.pas 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004
  1. {
  2. Copyright (c) 1998-2002 by Florian Klaempfl
  3. Helper routines for all code generators
  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 ncgutil;
  18. {$i fpcdefs.inc}
  19. interface
  20. uses
  21. node,cpuinfo,
  22. globtype,
  23. cpubase,cgbase,parabase,cgutils,
  24. aasmbase,aasmtai,aasmdata,aasmcpu,
  25. symconst,symbase,symdef,symsym,symtype,symtable
  26. {$ifndef cpu64bitalu}
  27. ,cg64f32
  28. {$endif not cpu64bitalu}
  29. ;
  30. type
  31. tloadregvars = (lr_dont_load_regvars, lr_load_regvars);
  32. pusedregvars = ^tusedregvars;
  33. tusedregvars = record
  34. intregvars, fpuregvars, mmregvars: Tsuperregisterworklist;
  35. end;
  36. {
  37. Not used currently, implemented because I thought we had to
  38. synchronise around if/then/else as well, but not needed. May
  39. still be useful for SSA once we get around to implementing
  40. that (JM)
  41. pusedregvarscommon = ^tusedregvarscommon;
  42. tusedregvarscommon = record
  43. allregvars, commonregvars, myregvars: tusedregvars;
  44. end;
  45. }
  46. procedure firstcomplex(p : tbinarynode);
  47. procedure maketojumpbool(list:TAsmList; p : tnode; loadregvars: tloadregvars);
  48. // procedure remove_non_regvars_from_loc(const t: tlocation; var regs:Tsuperregisterset);
  49. procedure location_force_mmreg(list:TAsmList;var l: tlocation;maybeconst:boolean);
  50. procedure location_allocate_register(list:TAsmList;out l: tlocation;def: tdef;constant: boolean);
  51. { loads a cgpara into a tlocation; assumes that loc.loc is already
  52. initialised }
  53. procedure gen_load_cgpara_loc(list: TAsmList; vardef: tdef; const para: TCGPara; var destloc: tlocation; reusepara: boolean);
  54. { allocate registers for a tlocation; assumes that loc.loc is already
  55. set to LOC_CREGISTER/LOC_CFPUREGISTER/... }
  56. procedure gen_alloc_regloc(list:TAsmList;var loc: tlocation);
  57. procedure register_maybe_adjust_setbase(list: TAsmList; var l: tlocation; setbase: aint);
  58. function has_alias_name(pd:tprocdef;const s:string):boolean;
  59. procedure alloc_proc_symbol(pd: tprocdef);
  60. procedure gen_proc_entry_code(list:TAsmList);
  61. procedure gen_proc_exit_code(list:TAsmList);
  62. procedure gen_stack_check_size_para(list:TAsmList);
  63. procedure gen_stack_check_call(list:TAsmList);
  64. procedure gen_save_used_regs(list:TAsmList);
  65. procedure gen_restore_used_regs(list:TAsmList);
  66. procedure gen_load_para_value(list:TAsmList);
  67. procedure gen_external_stub(list:TAsmList;pd:tprocdef;const externalname:string);
  68. procedure gen_load_vmt_register(list:TAsmList;objdef:tobjectdef;selfloc:tlocation;var vmtreg:tregister);
  69. procedure get_used_regvars(n: tnode; var rv: tusedregvars);
  70. { adds the regvars used in n and its children to rv.allregvars,
  71. those which were already in rv.allregvars to rv.commonregvars and
  72. uses rv.myregvars as scratch (so that two uses of the same regvar
  73. in a single tree to make it appear in commonregvars). Useful to
  74. find out which regvars are used in two different node trees
  75. e.g. in the "else" and "then" path, or in various case blocks }
  76. // procedure get_used_regvars_common(n: tnode; var rv: tusedregvarscommon);
  77. procedure gen_sync_regvars(list:TAsmList; var rv: tusedregvars);
  78. { Allocate the buffers for exception management and setjmp environment.
  79. Return a pointer to these buffers, send them to the utility routine
  80. so they are registered, and then call setjmp.
  81. Then compare the result of setjmp with 0, and if not equal
  82. to zero, then jump to exceptlabel.
  83. Also store the result of setjmp to a temporary space by calling g_save_exception_reason
  84. It is to note that this routine may be called *after* the stackframe of a
  85. routine has been called, therefore on machines where the stack cannot
  86. be modified, all temps should be allocated on the heap instead of the
  87. stack. }
  88. type
  89. texceptiontemps=record
  90. jmpbuf,
  91. envbuf,
  92. reasonbuf : treference;
  93. end;
  94. procedure get_exception_temps(list:TAsmList;var t:texceptiontemps);
  95. procedure unget_exception_temps(list:TAsmList;const t:texceptiontemps);
  96. procedure new_exception(list:TAsmList;const t:texceptiontemps;exceptlabel:tasmlabel);
  97. procedure free_exception(list:TAsmList;const t:texceptiontemps;a:aint;endexceptlabel:tasmlabel;onlyfree:boolean);
  98. procedure gen_alloc_symtable(list:TAsmList;pd:tprocdef;st:TSymtable);
  99. procedure gen_free_symtable(list:TAsmList;st:TSymtable);
  100. procedure location_free(list: TAsmList; const location : TLocation);
  101. function getprocalign : shortint;
  102. procedure gen_fpc_dummy(list : TAsmList);
  103. procedure gen_load_frame_for_exceptfilter(list : TAsmList);
  104. implementation
  105. uses
  106. version,
  107. cutils,cclasses,
  108. globals,systems,verbose,export,
  109. ppu,defutil,
  110. procinfo,paramgr,fmodule,
  111. regvars,dbgbase,
  112. pass_1,pass_2,
  113. nbas,ncon,nld,nmem,nutils,ngenutil,
  114. tgobj,cgobj,cgcpu,hlcgobj,hlcgcpu
  115. {$ifdef powerpc}
  116. , cpupi
  117. {$endif}
  118. {$ifdef powerpc64}
  119. , cpupi
  120. {$endif}
  121. {$ifdef SUPPORT_MMX}
  122. , cgx86
  123. {$endif SUPPORT_MMX}
  124. ;
  125. {*****************************************************************************
  126. Misc Helpers
  127. *****************************************************************************}
  128. {$if first_mm_imreg = 0}
  129. {$WARN 4044 OFF} { Comparison might be always false ... }
  130. {$endif}
  131. procedure location_free(list: TAsmList; const location : TLocation);
  132. begin
  133. case location.loc of
  134. LOC_VOID:
  135. ;
  136. LOC_REGISTER,
  137. LOC_CREGISTER:
  138. begin
  139. {$ifdef cpu64bitalu}
  140. { x86-64 system v abi:
  141. structs with up to 16 bytes are returned in registers }
  142. if location.size in [OS_128,OS_S128] then
  143. begin
  144. if getsupreg(location.register)<first_int_imreg then
  145. cg.ungetcpuregister(list,location.register);
  146. if getsupreg(location.registerhi)<first_int_imreg then
  147. cg.ungetcpuregister(list,location.registerhi);
  148. end
  149. {$else cpu64bitalu}
  150. if location.size in [OS_64,OS_S64] then
  151. begin
  152. if getsupreg(location.register64.reglo)<first_int_imreg then
  153. cg.ungetcpuregister(list,location.register64.reglo);
  154. if getsupreg(location.register64.reghi)<first_int_imreg then
  155. cg.ungetcpuregister(list,location.register64.reghi);
  156. end
  157. {$endif cpu64bitalu}
  158. else
  159. if getsupreg(location.register)<first_int_imreg then
  160. cg.ungetcpuregister(list,location.register);
  161. end;
  162. LOC_FPUREGISTER,
  163. LOC_CFPUREGISTER:
  164. begin
  165. if getsupreg(location.register)<first_fpu_imreg then
  166. cg.ungetcpuregister(list,location.register);
  167. end;
  168. LOC_MMREGISTER,
  169. LOC_CMMREGISTER :
  170. begin
  171. if getsupreg(location.register)<first_mm_imreg then
  172. cg.ungetcpuregister(list,location.register);
  173. end;
  174. LOC_REFERENCE,
  175. LOC_CREFERENCE :
  176. begin
  177. if paramanager.use_fixed_stack then
  178. location_freetemp(list,location);
  179. end;
  180. else
  181. internalerror(2004110211);
  182. end;
  183. end;
  184. procedure firstcomplex(p : tbinarynode);
  185. var
  186. fcl, fcr: longint;
  187. ncl, ncr: longint;
  188. begin
  189. { always calculate boolean AND and OR from left to right }
  190. if (p.nodetype in [orn,andn]) and
  191. is_boolean(p.left.resultdef) then
  192. begin
  193. if nf_swapped in p.flags then
  194. internalerror(200709253);
  195. end
  196. else
  197. begin
  198. fcl:=node_resources_fpu(p.left);
  199. fcr:=node_resources_fpu(p.right);
  200. ncl:=node_complexity(p.left);
  201. ncr:=node_complexity(p.right);
  202. { We swap left and right if
  203. a) right needs more floating point registers than left, and
  204. left needs more than 0 floating point registers (if it
  205. doesn't need any, swapping won't change the floating
  206. point register pressure)
  207. b) both left and right need an equal amount of floating
  208. point registers or right needs no floating point registers,
  209. and in addition right has a higher complexity than left
  210. (+- needs more integer registers, but not necessarily)
  211. }
  212. if ((fcr>fcl) and
  213. (fcl>0)) or
  214. (((fcr=fcl) or
  215. (fcr=0)) and
  216. (ncr>ncl)) then
  217. p.swapleftright
  218. end;
  219. end;
  220. procedure maketojumpbool(list:TAsmList; p : tnode; loadregvars: tloadregvars);
  221. {
  222. produces jumps to true respectively false labels using boolean expressions
  223. depending on whether the loading of regvars is currently being
  224. synchronized manually (such as in an if-node) or automatically (most of
  225. the other cases where this procedure is called), loadregvars can be
  226. "lr_load_regvars" or "lr_dont_load_regvars"
  227. }
  228. var
  229. opsize : tcgsize;
  230. storepos : tfileposinfo;
  231. tmpreg : tregister;
  232. begin
  233. if nf_error in p.flags then
  234. exit;
  235. storepos:=current_filepos;
  236. current_filepos:=p.fileinfo;
  237. if is_boolean(p.resultdef) then
  238. begin
  239. {$ifdef OLDREGVARS}
  240. if loadregvars = lr_load_regvars then
  241. load_all_regvars(list);
  242. {$endif OLDREGVARS}
  243. if is_constboolnode(p) then
  244. begin
  245. if Tordconstnode(p).value.uvalue<>0 then
  246. cg.a_jmp_always(list,current_procinfo.CurrTrueLabel)
  247. else
  248. cg.a_jmp_always(list,current_procinfo.CurrFalseLabel)
  249. end
  250. else
  251. begin
  252. opsize:=def_cgsize(p.resultdef);
  253. case p.location.loc of
  254. LOC_SUBSETREG,LOC_CSUBSETREG,
  255. LOC_SUBSETREF,LOC_CSUBSETREF:
  256. begin
  257. tmpreg := cg.getintregister(list,OS_INT);
  258. hlcg.a_load_loc_reg(list,p.resultdef,osuinttype,p.location,tmpreg);
  259. cg.a_cmp_const_reg_label(list,OS_INT,OC_NE,0,tmpreg,current_procinfo.CurrTrueLabel);
  260. cg.a_jmp_always(list,current_procinfo.CurrFalseLabel);
  261. end;
  262. LOC_CREGISTER,LOC_REGISTER,LOC_CREFERENCE,LOC_REFERENCE :
  263. begin
  264. {$ifdef cpu64bitalu}
  265. if opsize in [OS_128,OS_S128] then
  266. begin
  267. hlcg.location_force_reg(list,p.location,p.resultdef,cgsize_orddef(opsize),true);
  268. tmpreg:=cg.getintregister(list,OS_64);
  269. cg.a_op_reg_reg_reg(list,OP_OR,OS_64,p.location.register128.reglo,p.location.register128.reghi,tmpreg);
  270. location_reset(p.location,LOC_REGISTER,OS_64);
  271. p.location.register:=tmpreg;
  272. opsize:=OS_64;
  273. end;
  274. {$else cpu64bitalu}
  275. if opsize in [OS_64,OS_S64] then
  276. begin
  277. hlcg.location_force_reg(list,p.location,p.resultdef,cgsize_orddef(opsize),true);
  278. tmpreg:=cg.getintregister(list,OS_32);
  279. cg.a_op_reg_reg_reg(list,OP_OR,OS_32,p.location.register64.reglo,p.location.register64.reghi,tmpreg);
  280. location_reset(p.location,LOC_REGISTER,OS_32);
  281. p.location.register:=tmpreg;
  282. opsize:=OS_32;
  283. end;
  284. {$endif cpu64bitalu}
  285. cg.a_cmp_const_loc_label(list,opsize,OC_NE,0,p.location,current_procinfo.CurrTrueLabel);
  286. cg.a_jmp_always(list,current_procinfo.CurrFalseLabel);
  287. end;
  288. LOC_JUMP:
  289. ;
  290. {$ifdef cpuflags}
  291. LOC_FLAGS :
  292. begin
  293. cg.a_jmp_flags(list,p.location.resflags,current_procinfo.CurrTrueLabel);
  294. cg.a_reg_dealloc(list,NR_DEFAULTFLAGS);
  295. cg.a_jmp_always(list,current_procinfo.CurrFalseLabel);
  296. end;
  297. {$endif cpuflags}
  298. else
  299. begin
  300. printnode(output,p);
  301. internalerror(200308241);
  302. end;
  303. end;
  304. end;
  305. end
  306. else
  307. internalerror(200112305);
  308. current_filepos:=storepos;
  309. end;
  310. (*
  311. This code needs fixing. It is not safe to use rgint; on the m68000 it
  312. would be rgaddr.
  313. procedure remove_non_regvars_from_loc(const t: tlocation; var regs:Tsuperregisterset);
  314. begin
  315. case t.loc of
  316. LOC_REGISTER:
  317. begin
  318. { can't be a regvar, since it would be LOC_CREGISTER then }
  319. exclude(regs,getsupreg(t.register));
  320. if t.register64.reghi<>NR_NO then
  321. exclude(regs,getsupreg(t.register64.reghi));
  322. end;
  323. LOC_CREFERENCE,LOC_REFERENCE:
  324. begin
  325. if not(cs_opt_regvar in current_settings.optimizerswitches) or
  326. (getsupreg(t.reference.base) in cg.rgint.usableregs) then
  327. exclude(regs,getsupreg(t.reference.base));
  328. if not(cs_opt_regvar in current_settings.optimizerswitches) or
  329. (getsupreg(t.reference.index) in cg.rgint.usableregs) then
  330. exclude(regs,getsupreg(t.reference.index));
  331. end;
  332. end;
  333. end;
  334. *)
  335. {*****************************************************************************
  336. EXCEPTION MANAGEMENT
  337. *****************************************************************************}
  338. procedure get_exception_temps(list:TAsmList;var t:texceptiontemps);
  339. var
  340. except_buf_size: longint;
  341. begin
  342. { todo: is there a way to retrieve the except_buf_size from the size of
  343. the TExceptAddr record from the system unit (like we do for jmp_buf_size),
  344. without moving TExceptAddr to the interface part? }
  345. except_buf_size:=voidpointertype.size*2+sizeof(pint);
  346. get_jumpbuf_size;
  347. tg.GetTemp(list,except_buf_size,sizeof(pint),tt_persistent,t.envbuf);
  348. tg.GetTemp(list,jmp_buf_size,jmp_buf_align,tt_persistent,t.jmpbuf);
  349. tg.GetTemp(list,sizeof(pint),sizeof(pint),tt_persistent,t.reasonbuf);
  350. end;
  351. procedure unget_exception_temps(list:TAsmList;const t:texceptiontemps);
  352. begin
  353. tg.Ungettemp(list,t.jmpbuf);
  354. tg.ungettemp(list,t.envbuf);
  355. tg.ungettemp(list,t.reasonbuf);
  356. end;
  357. procedure new_exception(list:TAsmList;const t:texceptiontemps;exceptlabel:tasmlabel);
  358. const
  359. {$ifdef cpu16bitaddr}
  360. pushexceptaddr_frametype_cgsize = OS_S16;
  361. setjmp_result_cgsize = OS_S16;
  362. {$else cpu16bitaddr}
  363. pushexceptaddr_frametype_cgsize = OS_S32;
  364. setjmp_result_cgsize = OS_S32;
  365. {$endif cpu16bitaddr}
  366. var
  367. paraloc1,paraloc2,paraloc3 : tcgpara;
  368. pd: tprocdef;
  369. {$ifdef i8086}
  370. tmpreg: TRegister;
  371. {$endif i8086}
  372. begin
  373. pd:=search_system_proc('fpc_pushexceptaddr');
  374. paraloc1.init;
  375. paraloc2.init;
  376. paraloc3.init;
  377. paramanager.getintparaloc(pd,1,paraloc1);
  378. paramanager.getintparaloc(pd,2,paraloc2);
  379. paramanager.getintparaloc(pd,3,paraloc3);
  380. if pd.is_pushleftright then
  381. begin
  382. { push type of exceptionframe }
  383. cg.a_load_const_cgpara(list,pushexceptaddr_frametype_cgsize,1,paraloc1);
  384. cg.a_loadaddr_ref_cgpara(list,t.jmpbuf,paraloc2);
  385. cg.a_loadaddr_ref_cgpara(list,t.envbuf,paraloc3);
  386. end
  387. else
  388. begin
  389. cg.a_loadaddr_ref_cgpara(list,t.envbuf,paraloc3);
  390. cg.a_loadaddr_ref_cgpara(list,t.jmpbuf,paraloc2);
  391. { push type of exceptionframe }
  392. cg.a_load_const_cgpara(list,pushexceptaddr_frametype_cgsize,1,paraloc1);
  393. end;
  394. paramanager.freecgpara(list,paraloc3);
  395. paramanager.freecgpara(list,paraloc2);
  396. paramanager.freecgpara(list,paraloc1);
  397. cg.allocallcpuregisters(list);
  398. cg.a_call_name(list,'FPC_PUSHEXCEPTADDR',false);
  399. cg.deallocallcpuregisters(list);
  400. pd:=search_system_proc('fpc_setjmp');
  401. paramanager.getintparaloc(pd,1,paraloc1);
  402. {$ifdef i8086}
  403. if current_settings.x86memorymodel in x86_far_data_models then
  404. begin
  405. tmpreg:=cg.getintregister(list,OS_32);
  406. cg.a_load_reg_reg(list,OS_16,OS_16,NR_FUNCTION_RESULT32_LOW_REG,tmpreg);
  407. cg.a_load_reg_reg(list,OS_16,OS_16,NR_FUNCTION_RESULT32_HIGH_REG,GetNextReg(tmpreg));
  408. cg.a_load_reg_cgpara(list,OS_32,tmpreg,paraloc1);
  409. end
  410. else
  411. {$endif i8086}
  412. cg.a_load_reg_cgpara(list,OS_ADDR,NR_FUNCTION_RESULT_REG,paraloc1);
  413. paramanager.freecgpara(list,paraloc1);
  414. cg.allocallcpuregisters(list);
  415. cg.a_call_name(list,'FPC_SETJMP',false);
  416. cg.deallocallcpuregisters(list);
  417. cg.alloccpuregisters(list,R_INTREGISTER,[RS_FUNCTION_RESULT_REG]);
  418. cg.g_exception_reason_save(list, t.reasonbuf);
  419. cg.a_cmp_const_reg_label(list,setjmp_result_cgsize,OC_NE,0,cg.makeregsize(list,NR_FUNCTION_RESULT_REG,setjmp_result_cgsize),exceptlabel);
  420. cg.dealloccpuregisters(list,R_INTREGISTER,[RS_FUNCTION_RESULT_REG]);
  421. paraloc1.done;
  422. paraloc2.done;
  423. paraloc3.done;
  424. end;
  425. procedure free_exception(list:TAsmList;const t:texceptiontemps;a:aint;endexceptlabel:tasmlabel;onlyfree:boolean);
  426. begin
  427. cg.allocallcpuregisters(list);
  428. cg.a_call_name(list,'FPC_POPADDRSTACK',false);
  429. cg.deallocallcpuregisters(list);
  430. if not onlyfree then
  431. begin
  432. { g_exception_reason_load already allocates NR_FUNCTION_RESULT_REG }
  433. cg.g_exception_reason_load(list, t.reasonbuf);
  434. cg.a_cmp_const_reg_label(list,OS_INT,OC_EQ,a,NR_FUNCTION_RESULT_REG,endexceptlabel);
  435. cg.a_reg_dealloc(list,NR_FUNCTION_RESULT_REG);
  436. end;
  437. end;
  438. {*****************************************************************************
  439. TLocation
  440. *****************************************************************************}
  441. procedure register_maybe_adjust_setbase(list: TAsmList; var l: tlocation; setbase: aint);
  442. var
  443. tmpreg: tregister;
  444. begin
  445. if (setbase<>0) then
  446. begin
  447. if not(l.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  448. internalerror(2007091502);
  449. { subtract the setbase }
  450. case l.loc of
  451. LOC_CREGISTER:
  452. begin
  453. tmpreg := cg.getintregister(list,l.size);
  454. cg.a_op_const_reg_reg(list,OP_SUB,l.size,setbase,l.register,tmpreg);
  455. l.loc:=LOC_REGISTER;
  456. l.register:=tmpreg;
  457. end;
  458. LOC_REGISTER:
  459. begin
  460. cg.a_op_const_reg(list,OP_SUB,l.size,setbase,l.register);
  461. end;
  462. end;
  463. end;
  464. end;
  465. procedure location_force_mmreg(list:TAsmList;var l: tlocation;maybeconst:boolean);
  466. var
  467. reg : tregister;
  468. begin
  469. if (l.loc<>LOC_MMREGISTER) and
  470. ((l.loc<>LOC_CMMREGISTER) or (not maybeconst)) then
  471. begin
  472. reg:=cg.getmmregister(list,OS_VECTOR);
  473. cg.a_loadmm_loc_reg(list,OS_VECTOR,l,reg,nil);
  474. location_freetemp(list,l);
  475. location_reset(l,LOC_MMREGISTER,OS_VECTOR);
  476. l.register:=reg;
  477. end;
  478. end;
  479. procedure location_allocate_register(list: TAsmList;out l: tlocation;def: tdef;constant: boolean);
  480. begin
  481. l.size:=def_cgsize(def);
  482. if (def.typ=floatdef) and
  483. not(cs_fp_emulation in current_settings.moduleswitches) then
  484. begin
  485. if use_vectorfpu(def) then
  486. begin
  487. if constant then
  488. location_reset(l,LOC_CMMREGISTER,l.size)
  489. else
  490. location_reset(l,LOC_MMREGISTER,l.size);
  491. l.register:=cg.getmmregister(list,l.size);
  492. end
  493. else
  494. begin
  495. if constant then
  496. location_reset(l,LOC_CFPUREGISTER,l.size)
  497. else
  498. location_reset(l,LOC_FPUREGISTER,l.size);
  499. l.register:=cg.getfpuregister(list,l.size);
  500. end;
  501. end
  502. else
  503. begin
  504. if constant then
  505. location_reset(l,LOC_CREGISTER,l.size)
  506. else
  507. location_reset(l,LOC_REGISTER,l.size);
  508. {$ifdef cpu64bitalu}
  509. if l.size in [OS_128,OS_S128,OS_F128] then
  510. begin
  511. l.register128.reglo:=cg.getintregister(list,OS_64);
  512. l.register128.reghi:=cg.getintregister(list,OS_64);
  513. end
  514. else
  515. {$else cpu64bitalu}
  516. if l.size in [OS_64,OS_S64,OS_F64] then
  517. begin
  518. l.register64.reglo:=cg.getintregister(list,OS_32);
  519. l.register64.reghi:=cg.getintregister(list,OS_32);
  520. end
  521. else
  522. {$endif cpu64bitalu}
  523. { Note: for widths of records (and maybe objects, classes, etc.) an
  524. address register could be set here, but that is later
  525. changed to an intregister neverthless when in the
  526. tcgassignmentnode thlcgobj.maybe_change_load_node_reg is
  527. called for the temporary node; so the workaround for now is
  528. to fix the symptoms... }
  529. l.register:=cg.getintregister(list,l.size);
  530. end;
  531. end;
  532. {****************************************************************************
  533. Init/Finalize Code
  534. ****************************************************************************}
  535. procedure copyvalueparas(p:TObject;arg:pointer);
  536. var
  537. href : treference;
  538. hreg : tregister;
  539. list : TAsmList;
  540. hsym : tparavarsym;
  541. l : longint;
  542. localcopyloc : tlocation;
  543. sizedef : tdef;
  544. begin
  545. list:=TAsmList(arg);
  546. if (tsym(p).typ=paravarsym) and
  547. (tparavarsym(p).varspez=vs_value) and
  548. (paramanager.push_addr_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)) then
  549. begin
  550. { we have no idea about the alignment at the caller side }
  551. hlcg.location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,true,1);
  552. if is_open_array(tparavarsym(p).vardef) or
  553. is_array_of_const(tparavarsym(p).vardef) then
  554. begin
  555. { cdecl functions don't have a high pointer so it is not possible to generate
  556. a local copy }
  557. if not(current_procinfo.procdef.proccalloption in cdecl_pocalls) then
  558. begin
  559. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  560. if not assigned(hsym) then
  561. internalerror(200306061);
  562. sizedef:=getpointerdef(tparavarsym(p).vardef);
  563. hreg:=hlcg.getaddressregister(list,sizedef);
  564. if not is_packed_array(tparavarsym(p).vardef) then
  565. hlcg.g_copyvaluepara_openarray(list,href,hsym.initialloc,tarraydef(tparavarsym(p).vardef),hreg)
  566. else
  567. internalerror(2006080401);
  568. // cg.g_copyvaluepara_packedopenarray(list,href,hsym.intialloc,tarraydef(tparavarsym(p).vardef).elepackedbitsize,hreg);
  569. hlcg.a_load_reg_loc(list,sizedef,sizedef,hreg,tparavarsym(p).initialloc);
  570. end;
  571. end
  572. else
  573. begin
  574. { Allocate space for the local copy }
  575. l:=tparavarsym(p).getsize;
  576. localcopyloc.loc:=LOC_REFERENCE;
  577. localcopyloc.size:=int_cgsize(l);
  578. tg.GetLocal(list,l,tparavarsym(p).vardef,localcopyloc.reference);
  579. { Copy data }
  580. if is_shortstring(tparavarsym(p).vardef) then
  581. begin
  582. { this code is only executed before the code for the body and the entry/exit code is generated
  583. so we're allowed to include pi_do_call here; after pass1 is run, this isn't allowed anymore
  584. }
  585. include(current_procinfo.flags,pi_do_call);
  586. hlcg.g_copyshortstring(list,href,localcopyloc.reference,tstringdef(tparavarsym(p).vardef));
  587. end
  588. else if tparavarsym(p).vardef.typ = variantdef then
  589. begin
  590. { this code is only executed before the code for the body and the entry/exit code is generated
  591. so we're allowed to include pi_do_call here; after pass1 is run, this isn't allowed anymore
  592. }
  593. include(current_procinfo.flags,pi_do_call);
  594. hlcg.g_copyvariant(list,href,localcopyloc.reference,tvariantdef(tparavarsym(p).vardef))
  595. end
  596. else
  597. begin
  598. { pass proper alignment info }
  599. localcopyloc.reference.alignment:=tparavarsym(p).vardef.alignment;
  600. cg.g_concatcopy(list,href,localcopyloc.reference,tparavarsym(p).vardef.size);
  601. end;
  602. { update localloc of varsym }
  603. tg.Ungetlocal(list,tparavarsym(p).localloc.reference);
  604. tparavarsym(p).localloc:=localcopyloc;
  605. tparavarsym(p).initialloc:=localcopyloc;
  606. end;
  607. end;
  608. end;
  609. { generates the code for incrementing the reference count of parameters and
  610. initialize out parameters }
  611. procedure init_paras(p:TObject;arg:pointer);
  612. var
  613. href : treference;
  614. hsym : tparavarsym;
  615. eldef : tdef;
  616. list : TAsmList;
  617. needs_inittable : boolean;
  618. begin
  619. list:=TAsmList(arg);
  620. if (tsym(p).typ=paravarsym) then
  621. begin
  622. needs_inittable:=is_managed_type(tparavarsym(p).vardef);
  623. if not needs_inittable then
  624. exit;
  625. case tparavarsym(p).varspez of
  626. vs_value :
  627. begin
  628. { variants are already handled by the call to fpc_variant_copy_overwrite if
  629. they are passed by reference }
  630. if not((tparavarsym(p).vardef.typ=variantdef) and
  631. paramanager.push_addr_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)) then
  632. begin
  633. hlcg.location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,is_open_array(tparavarsym(p).vardef),sizeof(pint));
  634. if is_open_array(tparavarsym(p).vardef) then
  635. begin
  636. { open arrays do not contain correct element count in their rtti,
  637. the actual count must be passed separately. }
  638. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  639. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  640. if not assigned(hsym) then
  641. internalerror(201003031);
  642. hlcg.g_array_rtti_helper(list,eldef,href,hsym.initialloc,'fpc_addref_array');
  643. end
  644. else
  645. hlcg.g_incrrefcount(list,tparavarsym(p).vardef,href);
  646. end;
  647. end;
  648. vs_out :
  649. begin
  650. { we have no idea about the alignment at the callee side,
  651. and the user also cannot specify "unaligned" here, so
  652. assume worst case }
  653. hlcg.location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,true,1);
  654. if is_open_array(tparavarsym(p).vardef) then
  655. begin
  656. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  657. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  658. if not assigned(hsym) then
  659. internalerror(201103033);
  660. hlcg.g_array_rtti_helper(list,eldef,href,hsym.initialloc,'fpc_initialize_array');
  661. end
  662. else
  663. hlcg.g_initialize(list,tparavarsym(p).vardef,href);
  664. end;
  665. end;
  666. end;
  667. end;
  668. procedure gen_alloc_regloc(list:TAsmList;var loc: tlocation);
  669. begin
  670. case loc.loc of
  671. LOC_CREGISTER:
  672. begin
  673. {$ifdef cpu64bitalu}
  674. if loc.size in [OS_128,OS_S128] then
  675. begin
  676. loc.register128.reglo:=cg.getintregister(list,OS_64);
  677. loc.register128.reghi:=cg.getintregister(list,OS_64);
  678. end
  679. else
  680. {$else cpu64bitalu}
  681. if loc.size in [OS_64,OS_S64] then
  682. begin
  683. loc.register64.reglo:=cg.getintregister(list,OS_32);
  684. loc.register64.reghi:=cg.getintregister(list,OS_32);
  685. end
  686. else
  687. {$endif cpu64bitalu}
  688. loc.register:=cg.getintregister(list,loc.size);
  689. end;
  690. LOC_CFPUREGISTER:
  691. begin
  692. loc.register:=cg.getfpuregister(list,loc.size);
  693. end;
  694. LOC_CMMREGISTER:
  695. begin
  696. loc.register:=cg.getmmregister(list,loc.size);
  697. end;
  698. end;
  699. end;
  700. procedure gen_alloc_regvar(list:TAsmList;sym: tabstractnormalvarsym; allocreg: boolean);
  701. begin
  702. if allocreg then
  703. gen_alloc_regloc(list,sym.initialloc);
  704. if (pi_has_label in current_procinfo.flags) then
  705. begin
  706. { Allocate register already, to prevent first allocation to be
  707. inside a loop }
  708. {$if defined(cpu64bitalu)}
  709. if sym.initialloc.size in [OS_128,OS_S128] then
  710. begin
  711. cg.a_reg_sync(list,sym.initialloc.register128.reglo);
  712. cg.a_reg_sync(list,sym.initialloc.register128.reghi);
  713. end
  714. else
  715. {$elseif defined(cpu32bitalu)}
  716. if sym.initialloc.size in [OS_64,OS_S64] then
  717. begin
  718. cg.a_reg_sync(list,sym.initialloc.register64.reglo);
  719. cg.a_reg_sync(list,sym.initialloc.register64.reghi);
  720. end
  721. else
  722. {$elseif defined(cpu16bitalu)}
  723. if sym.initialloc.size in [OS_64,OS_S64] then
  724. begin
  725. cg.a_reg_sync(list,sym.initialloc.register64.reglo);
  726. cg.a_reg_sync(list,GetNextReg(sym.initialloc.register64.reglo));
  727. cg.a_reg_sync(list,sym.initialloc.register64.reghi);
  728. cg.a_reg_sync(list,GetNextReg(sym.initialloc.register64.reghi));
  729. end
  730. else
  731. if sym.initialloc.size in [OS_32,OS_S32] then
  732. begin
  733. cg.a_reg_sync(list,sym.initialloc.register);
  734. cg.a_reg_sync(list,GetNextReg(sym.initialloc.register));
  735. end
  736. else
  737. {$elseif defined(cpu8bitalu)}
  738. if sym.initialloc.size in [OS_64,OS_S64] then
  739. begin
  740. cg.a_reg_sync(list,sym.initialloc.register64.reglo);
  741. cg.a_reg_sync(list,GetNextReg(sym.initialloc.register64.reglo));
  742. cg.a_reg_sync(list,GetNextReg(GetNextReg(sym.initialloc.register64.reglo)));
  743. cg.a_reg_sync(list,GetNextReg(GetNextReg(GetNextReg(sym.initialloc.register64.reglo))));
  744. cg.a_reg_sync(list,sym.initialloc.register64.reghi);
  745. cg.a_reg_sync(list,GetNextReg(sym.initialloc.register64.reghi));
  746. cg.a_reg_sync(list,GetNextReg(GetNextReg(sym.initialloc.register64.reghi)));
  747. cg.a_reg_sync(list,GetNextReg(GetNextReg(GetNextReg(sym.initialloc.register64.reghi))));
  748. end
  749. else
  750. if sym.initialloc.size in [OS_32,OS_S32] then
  751. begin
  752. cg.a_reg_sync(list,sym.initialloc.register);
  753. cg.a_reg_sync(list,GetNextReg(sym.initialloc.register));
  754. cg.a_reg_sync(list,GetNextReg(GetNextReg(sym.initialloc.register)));
  755. cg.a_reg_sync(list,GetNextReg(GetNextReg(GetNextReg(sym.initialloc.register))));
  756. end
  757. else
  758. if sym.initialloc.size in [OS_16,OS_S16] then
  759. begin
  760. cg.a_reg_sync(list,sym.initialloc.register);
  761. cg.a_reg_sync(list,GetNextReg(sym.initialloc.register));
  762. end
  763. else
  764. {$endif}
  765. cg.a_reg_sync(list,sym.initialloc.register);
  766. end;
  767. sym.localloc:=sym.initialloc;
  768. end;
  769. procedure gen_load_cgpara_loc(list: TAsmList; vardef: tdef; const para: TCGPara; var destloc: tlocation; reusepara: boolean);
  770. procedure unget_para(const paraloc:TCGParaLocation);
  771. begin
  772. case paraloc.loc of
  773. LOC_REGISTER :
  774. begin
  775. if getsupreg(paraloc.register)<first_int_imreg then
  776. cg.ungetcpuregister(list,paraloc.register);
  777. end;
  778. LOC_MMREGISTER :
  779. begin
  780. if getsupreg(paraloc.register)<first_mm_imreg then
  781. cg.ungetcpuregister(list,paraloc.register);
  782. end;
  783. LOC_FPUREGISTER :
  784. begin
  785. if getsupreg(paraloc.register)<first_fpu_imreg then
  786. cg.ungetcpuregister(list,paraloc.register);
  787. end;
  788. end;
  789. end;
  790. var
  791. paraloc : pcgparalocation;
  792. href : treference;
  793. sizeleft : aint;
  794. {$if defined(sparc) or defined(arm) or defined(mips)}
  795. tempref : treference;
  796. {$endif defined(sparc) or defined(arm) or defined(mips)}
  797. {$ifdef mips}
  798. tmpreg : tregister;
  799. {$endif mips}
  800. {$ifndef cpu64bitalu}
  801. tempreg : tregister;
  802. reg64 : tregister64;
  803. {$endif not cpu64bitalu}
  804. begin
  805. paraloc:=para.location;
  806. if not assigned(paraloc) then
  807. internalerror(200408203);
  808. { skip e.g. empty records }
  809. if (paraloc^.loc = LOC_VOID) then
  810. exit;
  811. case destloc.loc of
  812. LOC_REFERENCE :
  813. begin
  814. { If the parameter location is reused we don't need to copy
  815. anything }
  816. if not reusepara then
  817. begin
  818. href:=destloc.reference;
  819. sizeleft:=para.intsize;
  820. while assigned(paraloc) do
  821. begin
  822. if (paraloc^.size=OS_NO) then
  823. begin
  824. { Can only be a reference that contains the rest
  825. of the parameter }
  826. if (paraloc^.loc<>LOC_REFERENCE) or
  827. assigned(paraloc^.next) then
  828. internalerror(2005013010);
  829. cg.a_load_cgparaloc_ref(list,paraloc^,href,sizeleft,destloc.reference.alignment);
  830. inc(href.offset,sizeleft);
  831. sizeleft:=0;
  832. end
  833. else
  834. begin
  835. cg.a_load_cgparaloc_ref(list,paraloc^,href,tcgsize2size[paraloc^.size],destloc.reference.alignment);
  836. inc(href.offset,TCGSize2Size[paraloc^.size]);
  837. dec(sizeleft,TCGSize2Size[paraloc^.size]);
  838. end;
  839. unget_para(paraloc^);
  840. paraloc:=paraloc^.next;
  841. end;
  842. end;
  843. end;
  844. LOC_REGISTER,
  845. LOC_CREGISTER :
  846. begin
  847. {$ifdef cpu64bitalu}
  848. if (para.size in [OS_128,OS_S128,OS_F128]) and
  849. ({ in case of fpu emulation, or abi's that pass fpu values
  850. via integer registers }
  851. (vardef.typ=floatdef) or
  852. is_methodpointer(vardef) or
  853. is_record(vardef)) then
  854. begin
  855. case paraloc^.loc of
  856. LOC_REGISTER:
  857. begin
  858. if not assigned(paraloc^.next) then
  859. internalerror(200410104);
  860. if (target_info.endian=ENDIAN_BIG) then
  861. begin
  862. { paraloc^ -> high
  863. paraloc^.next -> low }
  864. unget_para(paraloc^);
  865. gen_alloc_regloc(list,destloc);
  866. { reg->reg, alignment is irrelevant }
  867. cg.a_load_cgparaloc_anyreg(list,OS_64,paraloc^,destloc.register128.reghi,8);
  868. unget_para(paraloc^.next^);
  869. cg.a_load_cgparaloc_anyreg(list,OS_64,paraloc^.next^,destloc.register128.reglo,8);
  870. end
  871. else
  872. begin
  873. { paraloc^ -> low
  874. paraloc^.next -> high }
  875. unget_para(paraloc^);
  876. gen_alloc_regloc(list,destloc);
  877. cg.a_load_cgparaloc_anyreg(list,OS_64,paraloc^,destloc.register128.reglo,8);
  878. unget_para(paraloc^.next^);
  879. cg.a_load_cgparaloc_anyreg(list,OS_64,paraloc^.next^,destloc.register128.reghi,8);
  880. end;
  881. end;
  882. LOC_REFERENCE:
  883. begin
  884. gen_alloc_regloc(list,destloc);
  885. reference_reset_base(href,paraloc^.reference.index,paraloc^.reference.offset,para.alignment);
  886. cg128.a_load128_ref_reg(list,href,destloc.register128);
  887. unget_para(paraloc^);
  888. end;
  889. else
  890. internalerror(2012090607);
  891. end
  892. end
  893. else
  894. {$else cpu64bitalu}
  895. if (para.size in [OS_64,OS_S64,OS_F64]) and
  896. (is_64bit(vardef) or
  897. { in case of fpu emulation, or abi's that pass fpu values
  898. via integer registers }
  899. (vardef.typ=floatdef) or
  900. is_methodpointer(vardef) or
  901. is_record(vardef)) then
  902. begin
  903. case paraloc^.loc of
  904. LOC_REGISTER:
  905. begin
  906. case para.locations_count of
  907. {$if defined(cpu16bitalu) or defined(cpu8bitalu)}
  908. { 4 paralocs? }
  909. 4:
  910. if (target_info.endian=ENDIAN_BIG) then
  911. begin
  912. { paraloc^ -> high
  913. paraloc^.next^.next -> low }
  914. unget_para(paraloc^);
  915. gen_alloc_regloc(list,destloc);
  916. { reg->reg, alignment is irrelevant }
  917. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^,GetNextReg(destloc.register64.reghi),2);
  918. unget_para(paraloc^.next^);
  919. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^.next^,destloc.register64.reghi,2);
  920. unget_para(paraloc^.next^.next^);
  921. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^.next^.next^,GetNextReg(destloc.register64.reglo),2);
  922. unget_para(paraloc^.next^.next^.next^);
  923. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^.next^.next^.next^,destloc.register64.reglo,2);
  924. end
  925. else
  926. begin
  927. { paraloc^ -> low
  928. paraloc^.next^.next -> high }
  929. unget_para(paraloc^);
  930. gen_alloc_regloc(list,destloc);
  931. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^,destloc.register64.reglo,2);
  932. unget_para(paraloc^.next^);
  933. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^.next^,GetNextReg(destloc.register64.reglo),2);
  934. unget_para(paraloc^.next^.next^);
  935. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^.next^.next^,destloc.register64.reghi,2);
  936. unget_para(paraloc^.next^.next^.next^);
  937. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^.next^.next^.next^,GetNextReg(destloc.register64.reghi),2);
  938. end;
  939. {$endif defined(cpu16bitalu) or defined(cpu8bitalu)}
  940. 2:
  941. if (target_info.endian=ENDIAN_BIG) then
  942. begin
  943. { paraloc^ -> high
  944. paraloc^.next -> low }
  945. unget_para(paraloc^);
  946. gen_alloc_regloc(list,destloc);
  947. { reg->reg, alignment is irrelevant }
  948. cg.a_load_cgparaloc_anyreg(list,OS_32,paraloc^,destloc.register64.reghi,4);
  949. unget_para(paraloc^.next^);
  950. cg.a_load_cgparaloc_anyreg(list,OS_32,paraloc^.next^,destloc.register64.reglo,4);
  951. end
  952. else
  953. begin
  954. { paraloc^ -> low
  955. paraloc^.next -> high }
  956. unget_para(paraloc^);
  957. gen_alloc_regloc(list,destloc);
  958. cg.a_load_cgparaloc_anyreg(list,OS_32,paraloc^,destloc.register64.reglo,4);
  959. unget_para(paraloc^.next^);
  960. cg.a_load_cgparaloc_anyreg(list,OS_32,paraloc^.next^,destloc.register64.reghi,4);
  961. end;
  962. else
  963. { unexpected number of paralocs }
  964. internalerror(200410104);
  965. end;
  966. end;
  967. LOC_REFERENCE:
  968. begin
  969. gen_alloc_regloc(list,destloc);
  970. reference_reset_base(href,paraloc^.reference.index,paraloc^.reference.offset,para.alignment);
  971. cg64.a_load64_ref_reg(list,href,destloc.register64);
  972. unget_para(paraloc^);
  973. end;
  974. else
  975. internalerror(2005101501);
  976. end
  977. end
  978. else
  979. {$endif cpu64bitalu}
  980. begin
  981. if assigned(paraloc^.next) then
  982. begin
  983. if (destloc.size in [OS_PAIR,OS_SPAIR]) and
  984. (para.Size in [OS_PAIR,OS_SPAIR]) then
  985. begin
  986. unget_para(paraloc^);
  987. gen_alloc_regloc(list,destloc);
  988. cg.a_load_cgparaloc_anyreg(list,OS_INT,paraloc^,destloc.register,sizeof(aint));
  989. unget_para(paraloc^.Next^);
  990. {$if defined(cpu16bitalu) or defined(cpu8bitalu)}
  991. cg.a_load_cgparaloc_anyreg(list,OS_INT,paraloc^.Next^,GetNextReg(destloc.register),sizeof(aint));
  992. {$else}
  993. cg.a_load_cgparaloc_anyreg(list,OS_INT,paraloc^.Next^,destloc.registerhi,sizeof(aint));
  994. {$endif}
  995. end
  996. {$if defined(cpu8bitalu)}
  997. else if (destloc.size in [OS_32,OS_S32]) and
  998. (para.Size in [OS_32,OS_S32]) then
  999. begin
  1000. unget_para(paraloc^);
  1001. gen_alloc_regloc(list,destloc);
  1002. cg.a_load_cgparaloc_anyreg(list,OS_8,paraloc^,destloc.register,sizeof(aint));
  1003. unget_para(paraloc^.Next^);
  1004. cg.a_load_cgparaloc_anyreg(list,OS_8,paraloc^.Next^,GetNextReg(destloc.register),sizeof(aint));
  1005. unget_para(paraloc^.Next^.Next^);
  1006. cg.a_load_cgparaloc_anyreg(list,OS_8,paraloc^.Next^.Next^,GetNextReg(GetNextReg(destloc.register)),sizeof(aint));
  1007. unget_para(paraloc^.Next^.Next^.Next^);
  1008. cg.a_load_cgparaloc_anyreg(list,OS_8,paraloc^.Next^.Next^.Next^,GetNextReg(GetNextReg(GetNextReg(destloc.register))),sizeof(aint));
  1009. end
  1010. {$endif defined(cpu8bitalu)}
  1011. else
  1012. internalerror(200410105);
  1013. end
  1014. else
  1015. begin
  1016. unget_para(paraloc^);
  1017. gen_alloc_regloc(list,destloc);
  1018. cg.a_load_cgparaloc_anyreg(list,destloc.size,paraloc^,destloc.register,sizeof(aint));
  1019. end;
  1020. end;
  1021. end;
  1022. LOC_FPUREGISTER,
  1023. LOC_CFPUREGISTER :
  1024. begin
  1025. {$ifdef mips}
  1026. if (destloc.size = paraloc^.Size) and
  1027. (paraloc^.Loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER,LOC_REFERENCE,LOC_CREFERENCE]) then
  1028. begin
  1029. unget_para(paraloc^);
  1030. gen_alloc_regloc(list,destloc);
  1031. cg.a_load_cgparaloc_anyreg(list,destloc.size,paraloc^,destloc.register,para.alignment);
  1032. end
  1033. else if (destloc.size = OS_F32) and
  1034. (paraloc^.Loc in [LOC_REGISTER,LOC_CREGISTER]) then
  1035. begin
  1036. gen_alloc_regloc(list,destloc);
  1037. unget_para(paraloc^);
  1038. list.Concat(taicpu.op_reg_reg(A_MTC1,paraloc^.register,destloc.register));
  1039. end
  1040. { TODO: Produces invalid code, needs fixing together with regalloc setup. }
  1041. {
  1042. else if (destloc.size = OS_F64) and
  1043. (paraloc^.Loc in [LOC_REGISTER,LOC_CREGISTER]) and
  1044. (paraloc^.next^.Loc in [LOC_REGISTER,LOC_CREGISTER]) then
  1045. begin
  1046. gen_alloc_regloc(list,destloc);
  1047. tmpreg:=destloc.register;
  1048. unget_para(paraloc^);
  1049. list.Concat(taicpu.op_reg_reg(A_MTC1,paraloc^.register,tmpreg));
  1050. setsupreg(tmpreg,getsupreg(tmpreg)+1);
  1051. unget_para(paraloc^.next^);
  1052. list.Concat(taicpu.op_reg_reg(A_MTC1,paraloc^.Next^.register,tmpreg));
  1053. end
  1054. }
  1055. else
  1056. begin
  1057. sizeleft := TCGSize2Size[destloc.size];
  1058. tg.GetTemp(list,sizeleft,sizeleft,tt_normal,tempref);
  1059. href:=tempref;
  1060. while assigned(paraloc) do
  1061. begin
  1062. unget_para(paraloc^);
  1063. cg.a_load_cgparaloc_ref(list,paraloc^,href,sizeleft,destloc.reference.alignment);
  1064. inc(href.offset,TCGSize2Size[paraloc^.size]);
  1065. dec(sizeleft,TCGSize2Size[paraloc^.size]);
  1066. paraloc:=paraloc^.next;
  1067. end;
  1068. gen_alloc_regloc(list,destloc);
  1069. cg.a_loadfpu_ref_reg(list,destloc.size,destloc.size,tempref,destloc.register);
  1070. tg.UnGetTemp(list,tempref);
  1071. end;
  1072. {$else mips}
  1073. {$if defined(sparc) or defined(arm)}
  1074. { Arm and Sparc passes floats in int registers, when loading to fpu register
  1075. we need a temp }
  1076. sizeleft := TCGSize2Size[destloc.size];
  1077. tg.GetTemp(list,sizeleft,sizeleft,tt_normal,tempref);
  1078. href:=tempref;
  1079. while assigned(paraloc) do
  1080. begin
  1081. unget_para(paraloc^);
  1082. cg.a_load_cgparaloc_ref(list,paraloc^,href,sizeleft,destloc.reference.alignment);
  1083. inc(href.offset,TCGSize2Size[paraloc^.size]);
  1084. dec(sizeleft,TCGSize2Size[paraloc^.size]);
  1085. paraloc:=paraloc^.next;
  1086. end;
  1087. gen_alloc_regloc(list,destloc);
  1088. cg.a_loadfpu_ref_reg(list,destloc.size,destloc.size,tempref,destloc.register);
  1089. tg.UnGetTemp(list,tempref);
  1090. {$else defined(sparc) or defined(arm)}
  1091. unget_para(paraloc^);
  1092. gen_alloc_regloc(list,destloc);
  1093. { from register to register -> alignment is irrelevant }
  1094. cg.a_load_cgparaloc_anyreg(list,destloc.size,paraloc^,destloc.register,0);
  1095. if assigned(paraloc^.next) then
  1096. internalerror(200410109);
  1097. {$endif defined(sparc) or defined(arm)}
  1098. {$endif mips}
  1099. end;
  1100. LOC_MMREGISTER,
  1101. LOC_CMMREGISTER :
  1102. begin
  1103. {$ifndef cpu64bitalu}
  1104. { ARM vfp floats are passed in integer registers }
  1105. if (para.size=OS_F64) and
  1106. (paraloc^.size in [OS_32,OS_S32]) and
  1107. use_vectorfpu(vardef) then
  1108. begin
  1109. { we need 2x32bit reg }
  1110. if not assigned(paraloc^.next) or
  1111. assigned(paraloc^.next^.next) then
  1112. internalerror(2009112421);
  1113. unget_para(paraloc^.next^);
  1114. case paraloc^.next^.loc of
  1115. LOC_REGISTER:
  1116. tempreg:=paraloc^.next^.register;
  1117. LOC_REFERENCE:
  1118. begin
  1119. tempreg:=cg.getintregister(list,OS_32);
  1120. cg.a_load_cgparaloc_anyreg(list,OS_32,paraloc^.next^,tempreg,4);
  1121. end;
  1122. else
  1123. internalerror(2012051301);
  1124. end;
  1125. { don't free before the above, because then the getintregister
  1126. could reallocate this register and overwrite it }
  1127. unget_para(paraloc^);
  1128. gen_alloc_regloc(list,destloc);
  1129. if (target_info.endian=endian_big) then
  1130. { paraloc^ -> high
  1131. paraloc^.next -> low }
  1132. reg64:=joinreg64(tempreg,paraloc^.register)
  1133. else
  1134. reg64:=joinreg64(paraloc^.register,tempreg);
  1135. cg64.a_loadmm_intreg64_reg(list,OS_F64,reg64,destloc.register);
  1136. end
  1137. else
  1138. {$endif not cpu64bitalu}
  1139. begin
  1140. unget_para(paraloc^);
  1141. gen_alloc_regloc(list,destloc);
  1142. { from register to register -> alignment is irrelevant }
  1143. cg.a_load_cgparaloc_anyreg(list,destloc.size,paraloc^,destloc.register,0);
  1144. { data could come in two memory locations, for now
  1145. we simply ignore the sanity check (FK)
  1146. if assigned(paraloc^.next) then
  1147. internalerror(200410108);
  1148. }
  1149. end;
  1150. end;
  1151. else
  1152. internalerror(2010052903);
  1153. end;
  1154. end;
  1155. procedure gen_load_para_value(list:TAsmList);
  1156. procedure get_para(const paraloc:TCGParaLocation);
  1157. begin
  1158. case paraloc.loc of
  1159. LOC_REGISTER :
  1160. begin
  1161. if getsupreg(paraloc.register)<first_int_imreg then
  1162. cg.getcpuregister(list,paraloc.register);
  1163. end;
  1164. LOC_MMREGISTER :
  1165. begin
  1166. if getsupreg(paraloc.register)<first_mm_imreg then
  1167. cg.getcpuregister(list,paraloc.register);
  1168. end;
  1169. LOC_FPUREGISTER :
  1170. begin
  1171. if getsupreg(paraloc.register)<first_fpu_imreg then
  1172. cg.getcpuregister(list,paraloc.register);
  1173. end;
  1174. end;
  1175. end;
  1176. var
  1177. i : longint;
  1178. currpara : tparavarsym;
  1179. paraloc : pcgparalocation;
  1180. begin
  1181. if (po_assembler in current_procinfo.procdef.procoptions) or
  1182. { exceptfilters have a single hidden 'parentfp' parameter, which
  1183. is handled by tcg.g_proc_entry. }
  1184. (current_procinfo.procdef.proctypeoption=potype_exceptfilter) then
  1185. exit;
  1186. { Allocate registers used by parameters }
  1187. for i:=0 to current_procinfo.procdef.paras.count-1 do
  1188. begin
  1189. currpara:=tparavarsym(current_procinfo.procdef.paras[i]);
  1190. paraloc:=currpara.paraloc[calleeside].location;
  1191. while assigned(paraloc) do
  1192. begin
  1193. if paraloc^.loc in [LOC_REGISTER,LOC_FPUREGISTER,LOC_MMREGISTER] then
  1194. get_para(paraloc^);
  1195. paraloc:=paraloc^.next;
  1196. end;
  1197. end;
  1198. { Copy parameters to local references/registers }
  1199. for i:=0 to current_procinfo.procdef.paras.count-1 do
  1200. begin
  1201. currpara:=tparavarsym(current_procinfo.procdef.paras[i]);
  1202. gen_load_cgpara_loc(list,currpara.vardef,currpara.paraloc[calleeside],currpara.initialloc,paramanager.param_use_paraloc(currpara.paraloc[calleeside]));
  1203. { gen_load_cgpara_loc() already allocated the initialloc
  1204. -> don't allocate again }
  1205. if currpara.initialloc.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMREGISTER] then
  1206. gen_alloc_regvar(list,currpara,false);
  1207. end;
  1208. { generate copies of call by value parameters, must be done before
  1209. the initialization and body is parsed because the refcounts are
  1210. incremented using the local copies }
  1211. current_procinfo.procdef.parast.SymList.ForEachCall(@copyvalueparas,list);
  1212. if not(po_assembler in current_procinfo.procdef.procoptions) then
  1213. begin
  1214. { initialize refcounted paras, and trash others. Needed here
  1215. instead of in gen_initialize_code, because when a reference is
  1216. intialised or trashed while the pointer to that reference is kept
  1217. in a regvar, we add a register move and that one again has to
  1218. come after the parameter loading code as far as the register
  1219. allocator is concerned }
  1220. current_procinfo.procdef.parast.SymList.ForEachCall(@init_paras,list);
  1221. end;
  1222. end;
  1223. {****************************************************************************
  1224. Entry/Exit
  1225. ****************************************************************************}
  1226. function has_alias_name(pd:tprocdef;const s:string):boolean;
  1227. var
  1228. item : TCmdStrListItem;
  1229. begin
  1230. result:=true;
  1231. if pd.mangledname=s then
  1232. exit;
  1233. item := TCmdStrListItem(pd.aliasnames.first);
  1234. while assigned(item) do
  1235. begin
  1236. if item.str=s then
  1237. exit;
  1238. item := TCmdStrListItem(item.next);
  1239. end;
  1240. result:=false;
  1241. end;
  1242. procedure alloc_proc_symbol(pd: tprocdef);
  1243. var
  1244. item : TCmdStrListItem;
  1245. begin
  1246. item := TCmdStrListItem(pd.aliasnames.first);
  1247. while assigned(item) do
  1248. begin
  1249. { The condition to use global or local symbol must match
  1250. the code written in hlcg.gen_proc_symbol to
  1251. avoid change from AB_LOCAL to AB_GLOBAL, which generates
  1252. erroneous code (at least for targets using GOT) }
  1253. if (cs_profile in current_settings.moduleswitches) or
  1254. (po_global in current_procinfo.procdef.procoptions) then
  1255. current_asmdata.DefineAsmSymbol(item.str,AB_GLOBAL,AT_FUNCTION)
  1256. else
  1257. current_asmdata.DefineAsmSymbol(item.str,AB_LOCAL,AT_FUNCTION);
  1258. item := TCmdStrListItem(item.next);
  1259. end;
  1260. end;
  1261. procedure gen_proc_entry_code(list:TAsmList);
  1262. var
  1263. hitemp,
  1264. lotemp, stack_frame_size : longint;
  1265. begin
  1266. { generate call frame marker for dwarf call frame info }
  1267. current_asmdata.asmcfi.start_frame(list);
  1268. { All temps are know, write offsets used for information }
  1269. if (cs_asm_source in current_settings.globalswitches) and
  1270. (current_procinfo.tempstart<>tg.lasttemp) then
  1271. begin
  1272. if tg.direction>0 then
  1273. begin
  1274. lotemp:=current_procinfo.tempstart;
  1275. hitemp:=tg.lasttemp;
  1276. end
  1277. else
  1278. begin
  1279. lotemp:=tg.lasttemp;
  1280. hitemp:=current_procinfo.tempstart;
  1281. end;
  1282. list.concat(Tai_comment.Create(strpnew('Temps allocated between '+std_regname(current_procinfo.framepointer)+
  1283. tostr_with_plus(lotemp)+' and '+std_regname(current_procinfo.framepointer)+tostr_with_plus(hitemp))));
  1284. end;
  1285. { generate target specific proc entry code }
  1286. stack_frame_size := current_procinfo.calc_stackframe_size;
  1287. if (stack_frame_size <> 0) and
  1288. (po_nostackframe in current_procinfo.procdef.procoptions) then
  1289. message1(parser_e_nostackframe_with_locals,tostr(stack_frame_size));
  1290. hlcg.g_proc_entry(list,stack_frame_size,(po_nostackframe in current_procinfo.procdef.procoptions));
  1291. end;
  1292. procedure gen_proc_exit_code(list:TAsmList);
  1293. var
  1294. parasize : longint;
  1295. begin
  1296. { c style clearstack does not need to remove parameters from the stack, only the
  1297. return value when it was pushed by arguments }
  1298. if current_procinfo.procdef.proccalloption in clearstack_pocalls then
  1299. begin
  1300. parasize:=0;
  1301. if paramanager.ret_in_param(current_procinfo.procdef.returndef,current_procinfo.procdef) then
  1302. inc(parasize,sizeof(pint));
  1303. end
  1304. else
  1305. begin
  1306. parasize:=current_procinfo.para_stack_size;
  1307. { the parent frame pointer para has to be removed by the caller in
  1308. case of Delphi-style parent frame pointer passing }
  1309. if not paramanager.use_fixed_stack and
  1310. (po_delphi_nested_cc in current_procinfo.procdef.procoptions) then
  1311. dec(parasize,sizeof(pint));
  1312. end;
  1313. { generate target specific proc exit code }
  1314. hlcg.g_proc_exit(list,parasize,(po_nostackframe in current_procinfo.procdef.procoptions));
  1315. { release return registers, needed for optimizer }
  1316. if not is_void(current_procinfo.procdef.returndef) then
  1317. paramanager.freecgpara(list,current_procinfo.procdef.funcretloc[calleeside]);
  1318. { end of frame marker for call frame info }
  1319. current_asmdata.asmcfi.end_frame(list);
  1320. end;
  1321. procedure gen_stack_check_size_para(list:TAsmList);
  1322. var
  1323. paraloc1 : tcgpara;
  1324. pd : tprocdef;
  1325. begin
  1326. pd:=search_system_proc('fpc_stackcheck');
  1327. paraloc1.init;
  1328. paramanager.getintparaloc(pd,1,paraloc1);
  1329. cg.a_load_const_cgpara(list,OS_INT,current_procinfo.calc_stackframe_size,paraloc1);
  1330. paramanager.freecgpara(list,paraloc1);
  1331. paraloc1.done;
  1332. end;
  1333. procedure gen_stack_check_call(list:TAsmList);
  1334. var
  1335. paraloc1 : tcgpara;
  1336. pd : tprocdef;
  1337. begin
  1338. pd:=search_system_proc('fpc_stackcheck');
  1339. paraloc1.init;
  1340. { Also alloc the register needed for the parameter }
  1341. paramanager.getintparaloc(pd,1,paraloc1);
  1342. paramanager.freecgpara(list,paraloc1);
  1343. { Call the helper }
  1344. cg.allocallcpuregisters(list);
  1345. cg.a_call_name(list,'FPC_STACKCHECK',false);
  1346. cg.deallocallcpuregisters(list);
  1347. paraloc1.done;
  1348. end;
  1349. procedure gen_save_used_regs(list:TAsmList);
  1350. begin
  1351. { Pure assembler routines need to save the registers themselves }
  1352. if (po_assembler in current_procinfo.procdef.procoptions) then
  1353. exit;
  1354. { oldfpccall expects all registers to be destroyed }
  1355. if current_procinfo.procdef.proccalloption<>pocall_oldfpccall then
  1356. cg.g_save_registers(list);
  1357. end;
  1358. procedure gen_restore_used_regs(list:TAsmList);
  1359. begin
  1360. { Pure assembler routines need to save the registers themselves }
  1361. if (po_assembler in current_procinfo.procdef.procoptions) then
  1362. exit;
  1363. { oldfpccall expects all registers to be destroyed }
  1364. if current_procinfo.procdef.proccalloption<>pocall_oldfpccall then
  1365. cg.g_restore_registers(list);
  1366. end;
  1367. {****************************************************************************
  1368. External handling
  1369. ****************************************************************************}
  1370. procedure gen_external_stub(list:TAsmList;pd:tprocdef;const externalname:string);
  1371. begin
  1372. create_hlcodegen;
  1373. { add the procedure to the al_procedures }
  1374. maybe_new_object_file(list);
  1375. new_section(list,sec_code,lower(pd.mangledname),current_settings.alignment.procalign);
  1376. if (po_global in pd.procoptions) then
  1377. list.concat(Tai_symbol.createname_global(pd.mangledname,AT_FUNCTION,0))
  1378. else
  1379. list.concat(Tai_symbol.createname(pd.mangledname,AT_FUNCTION,0));
  1380. cg.g_external_wrapper(list,pd,externalname);
  1381. destroy_hlcodegen;
  1382. end;
  1383. {****************************************************************************
  1384. Const Data
  1385. ****************************************************************************}
  1386. procedure gen_alloc_symtable(list:TAsmList;pd:tprocdef;st:TSymtable);
  1387. procedure setlocalloc(vs:tabstractnormalvarsym);
  1388. begin
  1389. if cs_asm_source in current_settings.globalswitches then
  1390. begin
  1391. case vs.initialloc.loc of
  1392. LOC_REFERENCE :
  1393. begin
  1394. if not assigned(vs.initialloc.reference.symbol) then
  1395. list.concat(Tai_comment.Create(strpnew('Var '+vs.realname+' located at '+
  1396. std_regname(vs.initialloc.reference.base)+tostr_with_plus(vs.initialloc.reference.offset)+
  1397. ', size='+tcgsize2str(vs.initialloc.size))));
  1398. end;
  1399. end;
  1400. end;
  1401. vs.localloc:=vs.initialloc;
  1402. FillChar(vs.currentregloc,sizeof(vs.currentregloc),0);
  1403. end;
  1404. var
  1405. i : longint;
  1406. highsym,
  1407. sym : tsym;
  1408. vs : tabstractnormalvarsym;
  1409. isaddr : boolean;
  1410. begin
  1411. for i:=0 to st.SymList.Count-1 do
  1412. begin
  1413. sym:=tsym(st.SymList[i]);
  1414. case sym.typ of
  1415. staticvarsym :
  1416. begin
  1417. vs:=tabstractnormalvarsym(sym);
  1418. { The code in loadnode.pass_generatecode will create the
  1419. LOC_REFERENCE instead for all none register variables. This is
  1420. required because we can't store an asmsymbol in the localloc because
  1421. the asmsymbol is invalid after an unit is compiled. This gives
  1422. problems when this procedure is inlined in another unit (PFV) }
  1423. if vs.is_regvar(false) then
  1424. begin
  1425. vs.initialloc.loc:=tvarregable2tcgloc[vs.varregable];
  1426. vs.initialloc.size:=def_cgsize(vs.vardef);
  1427. gen_alloc_regvar(list,vs,true);
  1428. setlocalloc(vs);
  1429. end;
  1430. end;
  1431. paravarsym :
  1432. begin
  1433. vs:=tabstractnormalvarsym(sym);
  1434. { Parameters passed to assembler procedures need to be kept
  1435. in the original location }
  1436. if (po_assembler in pd.procoptions) then
  1437. tparavarsym(vs).paraloc[calleeside].get_location(vs.initialloc)
  1438. { exception filters receive their frame pointer as a parameter }
  1439. else if (pd.proctypeoption=potype_exceptfilter) and
  1440. (vo_is_parentfp in vs.varoptions) then
  1441. begin
  1442. location_reset(vs.initialloc,LOC_REGISTER,OS_ADDR);
  1443. vs.initialloc.register:=NR_FRAME_POINTER_REG;
  1444. end
  1445. else
  1446. begin
  1447. { if an open array is used, also its high parameter is used,
  1448. since the hidden high parameters are inserted after the corresponding symbols,
  1449. we can increase the ref. count here }
  1450. if is_open_array(vs.vardef) or is_array_of_const(vs.vardef) then
  1451. begin
  1452. highsym:=get_high_value_sym(tparavarsym(vs));
  1453. if assigned(highsym) then
  1454. inc(highsym.refs);
  1455. end;
  1456. isaddr:=paramanager.push_addr_param(vs.varspez,vs.vardef,pd.proccalloption);
  1457. if isaddr then
  1458. vs.initialloc.size:=def_cgsize(voidpointertype)
  1459. else
  1460. vs.initialloc.size:=def_cgsize(vs.vardef);
  1461. if vs.is_regvar(isaddr) then
  1462. vs.initialloc.loc:=tvarregable2tcgloc[vs.varregable]
  1463. else
  1464. begin
  1465. vs.initialloc.loc:=LOC_REFERENCE;
  1466. { Reuse the parameter location for values to are at a single location on the stack }
  1467. if paramanager.param_use_paraloc(tparavarsym(sym).paraloc[calleeside]) then
  1468. begin
  1469. reference_reset_base(vs.initialloc.reference,tparavarsym(sym).paraloc[calleeside].location^.reference.index,
  1470. tparavarsym(sym).paraloc[calleeside].location^.reference.offset,tparavarsym(sym).paraloc[calleeside].alignment);
  1471. end
  1472. else
  1473. begin
  1474. if isaddr then
  1475. tg.GetLocal(list,voidpointertype.size,voidpointertype,vs.initialloc.reference)
  1476. else
  1477. tg.GetLocal(list,vs.getsize,tparavarsym(sym).paraloc[calleeside].alignment,vs.vardef,vs.initialloc.reference);
  1478. end;
  1479. end;
  1480. end;
  1481. setlocalloc(vs);
  1482. end;
  1483. localvarsym :
  1484. begin
  1485. vs:=tabstractnormalvarsym(sym);
  1486. vs.initialloc.size:=def_cgsize(vs.vardef);
  1487. if ([po_assembler,po_nostackframe] * pd.procoptions = [po_assembler,po_nostackframe]) and
  1488. (vo_is_funcret in vs.varoptions) then
  1489. begin
  1490. paramanager.create_funcretloc_info(pd,calleeside);
  1491. if assigned(pd.funcretloc[calleeside].location^.next) then
  1492. begin
  1493. { can't replace references to "result" with a complex
  1494. location expression inside assembler code }
  1495. location_reset(vs.initialloc,LOC_INVALID,OS_NO);
  1496. end
  1497. else
  1498. pd.funcretloc[calleeside].get_location(vs.initialloc);
  1499. end
  1500. else if (m_delphi in current_settings.modeswitches) and
  1501. (po_assembler in pd.procoptions) and
  1502. (vo_is_funcret in vs.varoptions) and
  1503. (vs.refs=0) then
  1504. begin
  1505. { not referenced, so don't allocate. Use dummy to }
  1506. { avoid ie's later on because of LOC_INVALID }
  1507. vs.initialloc.loc:=LOC_REGISTER;
  1508. vs.initialloc.size:=OS_INT;
  1509. vs.initialloc.register:=NR_FUNCTION_RESULT_REG;
  1510. end
  1511. else if vs.is_regvar(false) then
  1512. begin
  1513. vs.initialloc.loc:=tvarregable2tcgloc[vs.varregable];
  1514. gen_alloc_regvar(list,vs,true);
  1515. end
  1516. else
  1517. begin
  1518. vs.initialloc.loc:=LOC_REFERENCE;
  1519. tg.GetLocal(list,vs.getsize,vs.vardef,vs.initialloc.reference);
  1520. end;
  1521. setlocalloc(vs);
  1522. end;
  1523. end;
  1524. end;
  1525. end;
  1526. procedure add_regvars(var rv: tusedregvars; const location: tlocation);
  1527. begin
  1528. case location.loc of
  1529. LOC_CREGISTER:
  1530. {$if defined(cpu64bitalu)}
  1531. if location.size in [OS_128,OS_S128] then
  1532. begin
  1533. rv.intregvars.addnodup(getsupreg(location.register128.reglo));
  1534. rv.intregvars.addnodup(getsupreg(location.register128.reghi));
  1535. end
  1536. else
  1537. {$elseif defined(cpu32bitalu)}
  1538. if location.size in [OS_64,OS_S64] then
  1539. begin
  1540. rv.intregvars.addnodup(getsupreg(location.register64.reglo));
  1541. rv.intregvars.addnodup(getsupreg(location.register64.reghi));
  1542. end
  1543. else
  1544. {$elseif defined(cpu16bitalu)}
  1545. if location.size in [OS_64,OS_S64] then
  1546. begin
  1547. rv.intregvars.addnodup(getsupreg(location.register64.reglo));
  1548. rv.intregvars.addnodup(getsupreg(GetNextReg(location.register64.reglo)));
  1549. rv.intregvars.addnodup(getsupreg(location.register64.reghi));
  1550. rv.intregvars.addnodup(getsupreg(GetNextReg(location.register64.reghi)));
  1551. end
  1552. else
  1553. if location.size in [OS_32,OS_S32] then
  1554. begin
  1555. rv.intregvars.addnodup(getsupreg(location.register));
  1556. rv.intregvars.addnodup(getsupreg(GetNextReg(location.register)));
  1557. end
  1558. else
  1559. {$elseif defined(cpu8bitalu)}
  1560. if location.size in [OS_64,OS_S64] then
  1561. begin
  1562. rv.intregvars.addnodup(getsupreg(location.register64.reglo));
  1563. rv.intregvars.addnodup(getsupreg(GetNextReg(location.register64.reglo)));
  1564. rv.intregvars.addnodup(getsupreg(GetNextReg(GetNextReg(location.register64.reglo))));
  1565. rv.intregvars.addnodup(getsupreg(GetNextReg(GetNextReg(GetNextReg(location.register64.reglo)))));
  1566. rv.intregvars.addnodup(getsupreg(location.register64.reghi));
  1567. rv.intregvars.addnodup(getsupreg(GetNextReg(location.register64.reghi)));
  1568. rv.intregvars.addnodup(getsupreg(GetNextReg(GetNextReg(location.register64.reghi))));
  1569. rv.intregvars.addnodup(getsupreg(GetNextReg(GetNextReg(GetNextReg(location.register64.reghi)))));
  1570. end
  1571. else
  1572. if location.size in [OS_32,OS_S32] then
  1573. begin
  1574. rv.intregvars.addnodup(getsupreg(location.register));
  1575. rv.intregvars.addnodup(getsupreg(GetNextReg(location.register)));
  1576. rv.intregvars.addnodup(getsupreg(GetNextReg(GetNextReg(location.register))));
  1577. rv.intregvars.addnodup(getsupreg(GetNextReg(GetNextReg(GetNextReg(location.register)))));
  1578. end
  1579. else
  1580. if location.size in [OS_16,OS_S16] then
  1581. begin
  1582. rv.intregvars.addnodup(getsupreg(location.register));
  1583. rv.intregvars.addnodup(getsupreg(GetNextReg(location.register)));
  1584. end
  1585. else
  1586. {$endif}
  1587. rv.intregvars.addnodup(getsupreg(location.register));
  1588. LOC_CFPUREGISTER:
  1589. rv.fpuregvars.addnodup(getsupreg(location.register));
  1590. LOC_CMMREGISTER:
  1591. rv.mmregvars.addnodup(getsupreg(location.register));
  1592. end;
  1593. end;
  1594. function do_get_used_regvars(var n: tnode; arg: pointer): foreachnoderesult;
  1595. var
  1596. rv: pusedregvars absolute arg;
  1597. begin
  1598. case (n.nodetype) of
  1599. temprefn:
  1600. { We only have to synchronise a tempnode before a loop if it is }
  1601. { not created inside the loop, and only synchronise after the }
  1602. { loop if it's not destroyed inside the loop. If it's created }
  1603. { before the loop and not yet destroyed, then before the loop }
  1604. { is secondpassed tempinfo^.valid will be true, and we get the }
  1605. { correct registers. If it's not destroyed inside the loop, }
  1606. { then after the loop has been secondpassed tempinfo^.valid }
  1607. { be true and we also get the right registers. In other cases, }
  1608. { tempinfo^.valid will be false and so we do not add }
  1609. { unnecessary registers. This way, we don't have to look at }
  1610. { tempcreate and tempdestroy nodes to get this info (JM) }
  1611. if (ti_valid in ttemprefnode(n).tempinfo^.flags) then
  1612. add_regvars(rv^,ttemprefnode(n).tempinfo^.location);
  1613. loadn:
  1614. if (tloadnode(n).symtableentry.typ in [staticvarsym,localvarsym,paravarsym]) then
  1615. add_regvars(rv^,tabstractnormalvarsym(tloadnode(n).symtableentry).localloc);
  1616. vecn:
  1617. { range checks sometimes need the high parameter }
  1618. if (cs_check_range in current_settings.localswitches) and
  1619. (is_open_array(tvecnode(n).left.resultdef) or
  1620. is_array_of_const(tvecnode(n).left.resultdef)) and
  1621. not(current_procinfo.procdef.proccalloption in cdecl_pocalls) then
  1622. add_regvars(rv^,tabstractnormalvarsym(get_high_value_sym(tparavarsym(tloadnode(tvecnode(n).left).symtableentry))).localloc)
  1623. end;
  1624. result := fen_true;
  1625. end;
  1626. procedure get_used_regvars(n: tnode; var rv: tusedregvars);
  1627. begin
  1628. foreachnodestatic(n,@do_get_used_regvars,@rv);
  1629. end;
  1630. (*
  1631. See comments at declaration of pusedregvarscommon
  1632. function do_get_used_regvars_common(var n: tnode; arg: pointer): foreachnoderesult;
  1633. var
  1634. rv: pusedregvarscommon absolute arg;
  1635. begin
  1636. if (n.nodetype = loadn) and
  1637. (tloadnode(n).symtableentry.typ in [staticvarsym,localvarsym,paravarsym]) then
  1638. with tabstractnormalvarsym(tloadnode(n).symtableentry).localloc do
  1639. case loc of
  1640. LOC_CREGISTER:
  1641. { if not yet encountered in this node tree }
  1642. if (rv^.myregvars.intregvars.addnodup(getsupreg(register))) and
  1643. { but nevertheless already encountered somewhere }
  1644. not(rv^.allregvars.intregvars.addnodup(getsupreg(register))) then
  1645. { then it's a regvar used in two or more node trees }
  1646. rv^.commonregvars.intregvars.addnodup(getsupreg(register));
  1647. LOC_CFPUREGISTER:
  1648. if (rv^.myregvars.intregvars.addnodup(getsupreg(register))) and
  1649. not(rv^.allregvars.intregvars.addnodup(getsupreg(register))) then
  1650. rv^.commonregvars.intregvars.addnodup(getsupreg(register));
  1651. LOC_CMMREGISTER:
  1652. if (rv^.myregvars.intregvars.addnodup(getsupreg(register))) and
  1653. not(rv^.allregvars.intregvars.addnodup(getsupreg(register))) then
  1654. rv^.commonregvars.intregvars.addnodup(getsupreg(register));
  1655. end;
  1656. result := fen_true;
  1657. end;
  1658. procedure get_used_regvars_common(n: tnode; var rv: tusedregvarscommon);
  1659. begin
  1660. rv.myregvars.intregvars.clear;
  1661. rv.myregvars.fpuregvars.clear;
  1662. rv.myregvars.mmregvars.clear;
  1663. foreachnodestatic(n,@do_get_used_regvars_common,@rv);
  1664. end;
  1665. *)
  1666. procedure gen_sync_regvars(list:TAsmList; var rv: tusedregvars);
  1667. var
  1668. count: longint;
  1669. begin
  1670. for count := 1 to rv.intregvars.length do
  1671. cg.a_reg_sync(list,newreg(R_INTREGISTER,rv.intregvars.readidx(count-1),R_SUBWHOLE));
  1672. for count := 1 to rv.fpuregvars.length do
  1673. cg.a_reg_sync(list,newreg(R_FPUREGISTER,rv.fpuregvars.readidx(count-1),R_SUBWHOLE));
  1674. for count := 1 to rv.mmregvars.length do
  1675. cg.a_reg_sync(list,newreg(R_MMREGISTER,rv.mmregvars.readidx(count-1),R_SUBWHOLE));
  1676. end;
  1677. procedure gen_free_symtable(list:TAsmList;st:TSymtable);
  1678. var
  1679. i : longint;
  1680. sym : tsym;
  1681. begin
  1682. for i:=0 to st.SymList.Count-1 do
  1683. begin
  1684. sym:=tsym(st.SymList[i]);
  1685. if (sym.typ in [staticvarsym,localvarsym,paravarsym]) then
  1686. begin
  1687. with tabstractnormalvarsym(sym) do
  1688. begin
  1689. { Note: We need to keep the data available in memory
  1690. for the sub procedures that can access local data
  1691. in the parent procedures }
  1692. case localloc.loc of
  1693. LOC_CREGISTER :
  1694. if (pi_has_label in current_procinfo.flags) then
  1695. {$if defined(cpu64bitalu)}
  1696. if def_cgsize(vardef) in [OS_128,OS_S128] then
  1697. begin
  1698. cg.a_reg_sync(list,localloc.register128.reglo);
  1699. cg.a_reg_sync(list,localloc.register128.reghi);
  1700. end
  1701. else
  1702. {$elseif defined(cpu32bitalu)}
  1703. if def_cgsize(vardef) in [OS_64,OS_S64] then
  1704. begin
  1705. cg.a_reg_sync(list,localloc.register64.reglo);
  1706. cg.a_reg_sync(list,localloc.register64.reghi);
  1707. end
  1708. else
  1709. {$elseif defined(cpu16bitalu)}
  1710. if def_cgsize(vardef) in [OS_64,OS_S64] then
  1711. begin
  1712. cg.a_reg_sync(list,localloc.register64.reglo);
  1713. cg.a_reg_sync(list,GetNextReg(localloc.register64.reglo));
  1714. cg.a_reg_sync(list,localloc.register64.reghi);
  1715. cg.a_reg_sync(list,GetNextReg(localloc.register64.reghi));
  1716. end
  1717. else
  1718. if def_cgsize(vardef) in [OS_32,OS_S32] then
  1719. begin
  1720. cg.a_reg_sync(list,localloc.register);
  1721. cg.a_reg_sync(list,GetNextReg(localloc.register));
  1722. end
  1723. else
  1724. {$elseif defined(cpu8bitalu)}
  1725. if def_cgsize(vardef) in [OS_64,OS_S64] then
  1726. begin
  1727. cg.a_reg_sync(list,localloc.register64.reglo);
  1728. cg.a_reg_sync(list,GetNextReg(localloc.register64.reglo));
  1729. cg.a_reg_sync(list,GetNextReg(GetNextReg(localloc.register64.reglo)));
  1730. cg.a_reg_sync(list,GetNextReg(GetNextReg(GetNextReg(localloc.register64.reglo))));
  1731. cg.a_reg_sync(list,localloc.register64.reghi);
  1732. cg.a_reg_sync(list,GetNextReg(localloc.register64.reghi));
  1733. cg.a_reg_sync(list,GetNextReg(GetNextReg(localloc.register64.reghi)));
  1734. cg.a_reg_sync(list,GetNextReg(GetNextReg(GetNextReg(localloc.register64.reghi))));
  1735. end
  1736. else
  1737. if def_cgsize(vardef) in [OS_32,OS_S32] then
  1738. begin
  1739. cg.a_reg_sync(list,localloc.register);
  1740. cg.a_reg_sync(list,GetNextReg(localloc.register));
  1741. cg.a_reg_sync(list,GetNextReg(GetNextReg(localloc.register)));
  1742. cg.a_reg_sync(list,GetNextReg(GetNextReg(GetNextReg(localloc.register))));
  1743. end
  1744. else
  1745. if def_cgsize(vardef) in [OS_16,OS_S16] then
  1746. begin
  1747. cg.a_reg_sync(list,localloc.register);
  1748. cg.a_reg_sync(list,GetNextReg(localloc.register));
  1749. end
  1750. else
  1751. {$endif}
  1752. cg.a_reg_sync(list,localloc.register);
  1753. LOC_CFPUREGISTER,
  1754. LOC_CMMREGISTER:
  1755. if (pi_has_label in current_procinfo.flags) then
  1756. cg.a_reg_sync(list,localloc.register);
  1757. LOC_REFERENCE :
  1758. begin
  1759. if typ in [localvarsym,paravarsym] then
  1760. tg.Ungetlocal(list,localloc.reference);
  1761. end;
  1762. end;
  1763. end;
  1764. end;
  1765. end;
  1766. end;
  1767. procedure gen_load_vmt_register(list:TAsmList;objdef:tobjectdef;selfloc:tlocation;var vmtreg:tregister);
  1768. var
  1769. href : treference;
  1770. selfdef: tdef;
  1771. begin
  1772. if is_object(objdef) then
  1773. begin
  1774. case selfloc.loc of
  1775. LOC_CREFERENCE,
  1776. LOC_REFERENCE:
  1777. begin
  1778. hlcg.reference_reset_base(href,voidpointertype,hlcg.getaddressregister(list,voidpointertype),objdef.vmt_offset,voidpointertype.size);
  1779. hlcg.a_loadaddr_ref_reg(list,voidpointertype,voidpointertype,selfloc.reference,href.base);
  1780. selfdef:=getpointerdef(objdef);
  1781. end;
  1782. else
  1783. internalerror(200305056);
  1784. end;
  1785. end
  1786. else
  1787. { This is also valid for Objective-C classes: vmt_offset is 0 there,
  1788. and the first "field" of an Objective-C class instance is a pointer
  1789. to its "meta-class". }
  1790. begin
  1791. selfdef:=objdef;
  1792. case selfloc.loc of
  1793. LOC_REGISTER:
  1794. begin
  1795. {$ifdef cpu_uses_separate_address_registers}
  1796. if getregtype(left.location.register)<>R_ADDRESSREGISTER then
  1797. begin
  1798. reference_reset_base(href,cg.getaddressregister(list),objdef.vmt_offset,sizeof(pint));
  1799. cg.a_load_reg_reg(list,OS_ADDR,OS_ADDR,selfloc.register,href.base);
  1800. end
  1801. else
  1802. {$endif cpu_uses_separate_address_registers}
  1803. hlcg.reference_reset_base(href,voidpointertype,selfloc.register,objdef.vmt_offset,voidpointertype.size);
  1804. end;
  1805. LOC_CONSTANT,
  1806. LOC_CREGISTER,
  1807. LOC_CREFERENCE,
  1808. LOC_REFERENCE,
  1809. LOC_CSUBSETREG,
  1810. LOC_SUBSETREG,
  1811. LOC_CSUBSETREF,
  1812. LOC_SUBSETREF:
  1813. begin
  1814. hlcg.reference_reset_base(href,voidpointertype,hlcg.getaddressregister(list,voidpointertype),objdef.vmt_offset,voidpointertype.size);
  1815. { todo: pass actual vmt pointer type to hlcg }
  1816. hlcg.a_load_loc_reg(list,voidpointertype,voidpointertype,selfloc,href.base);
  1817. end;
  1818. else
  1819. internalerror(200305057);
  1820. end;
  1821. end;
  1822. vmtreg:=hlcg.getaddressregister(list,voidpointertype);
  1823. hlcg.g_maybe_testself(list,selfdef,href.base);
  1824. hlcg.a_load_ref_reg(list,voidpointertype,voidpointertype,href,vmtreg);
  1825. { test validity of VMT }
  1826. if not(is_interface(objdef)) and
  1827. not(is_cppclass(objdef)) and
  1828. not(is_objc_class_or_protocol(objdef)) then
  1829. cg.g_maybe_testvmt(list,vmtreg,objdef);
  1830. end;
  1831. function getprocalign : shortint;
  1832. begin
  1833. { gprof uses 16 byte granularity }
  1834. if (cs_profile in current_settings.moduleswitches) then
  1835. result:=16
  1836. else
  1837. result:=current_settings.alignment.procalign;
  1838. end;
  1839. procedure gen_fpc_dummy(list : TAsmList);
  1840. begin
  1841. {$ifdef i386}
  1842. { fix me! }
  1843. list.concat(Taicpu.Op_const_reg(A_MOV,S_L,1,NR_EAX));
  1844. list.concat(Taicpu.Op_const(A_RET,S_W,12));
  1845. {$endif i386}
  1846. end;
  1847. procedure gen_load_frame_for_exceptfilter(list : TAsmList);
  1848. var
  1849. para: tparavarsym;
  1850. begin
  1851. para:=tparavarsym(current_procinfo.procdef.paras[0]);
  1852. if not (vo_is_parentfp in para.varoptions) then
  1853. InternalError(201201142);
  1854. if (para.paraloc[calleeside].location^.loc<>LOC_REGISTER) or
  1855. (para.paraloc[calleeside].location^.next<>nil) then
  1856. InternalError(201201143);
  1857. cg.a_load_reg_reg(list,OS_ADDR,OS_ADDR,para.paraloc[calleeside].location^.register,
  1858. NR_FRAME_POINTER_REG);
  1859. end;
  1860. end.