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. const
  340. EXCEPT_BUF_SIZE = 3*sizeof(pint);
  341. begin
  342. get_jumpbuf_size;
  343. tg.GetTemp(list,EXCEPT_BUF_SIZE,sizeof(pint),tt_persistent,t.envbuf);
  344. tg.GetTemp(list,jmp_buf_size,jmp_buf_align,tt_persistent,t.jmpbuf);
  345. tg.GetTemp(list,sizeof(pint),sizeof(pint),tt_persistent,t.reasonbuf);
  346. end;
  347. procedure unget_exception_temps(list:TAsmList;const t:texceptiontemps);
  348. begin
  349. tg.Ungettemp(list,t.jmpbuf);
  350. tg.ungettemp(list,t.envbuf);
  351. tg.ungettemp(list,t.reasonbuf);
  352. end;
  353. procedure new_exception(list:TAsmList;const t:texceptiontemps;exceptlabel:tasmlabel);
  354. const
  355. {$ifdef cpu16bitaddr}
  356. pushexceptaddr_frametype_cgsize = OS_S16;
  357. setjmp_result_cgsize = OS_S16;
  358. {$else cpu16bitaddr}
  359. pushexceptaddr_frametype_cgsize = OS_S32;
  360. setjmp_result_cgsize = OS_S32;
  361. {$endif cpu16bitaddr}
  362. var
  363. paraloc1,paraloc2,paraloc3 : tcgpara;
  364. pd: tprocdef;
  365. {$ifdef i8086}
  366. tmpreg: TRegister;
  367. {$endif i8086}
  368. begin
  369. pd:=search_system_proc('fpc_pushexceptaddr');
  370. paraloc1.init;
  371. paraloc2.init;
  372. paraloc3.init;
  373. paramanager.getintparaloc(pd,1,paraloc1);
  374. paramanager.getintparaloc(pd,2,paraloc2);
  375. paramanager.getintparaloc(pd,3,paraloc3);
  376. if pd.is_pushleftright then
  377. begin
  378. { push type of exceptionframe }
  379. cg.a_load_const_cgpara(list,pushexceptaddr_frametype_cgsize,1,paraloc1);
  380. cg.a_loadaddr_ref_cgpara(list,t.jmpbuf,paraloc2);
  381. cg.a_loadaddr_ref_cgpara(list,t.envbuf,paraloc3);
  382. end
  383. else
  384. begin
  385. cg.a_loadaddr_ref_cgpara(list,t.envbuf,paraloc3);
  386. cg.a_loadaddr_ref_cgpara(list,t.jmpbuf,paraloc2);
  387. { push type of exceptionframe }
  388. cg.a_load_const_cgpara(list,pushexceptaddr_frametype_cgsize,1,paraloc1);
  389. end;
  390. paramanager.freecgpara(list,paraloc3);
  391. paramanager.freecgpara(list,paraloc2);
  392. paramanager.freecgpara(list,paraloc1);
  393. cg.allocallcpuregisters(list);
  394. cg.a_call_name(list,'FPC_PUSHEXCEPTADDR',false);
  395. cg.deallocallcpuregisters(list);
  396. pd:=search_system_proc('fpc_setjmp');
  397. paramanager.getintparaloc(pd,1,paraloc1);
  398. {$ifdef i8086}
  399. if current_settings.x86memorymodel in x86_far_data_models then
  400. begin
  401. tmpreg:=cg.getintregister(list,OS_32);
  402. cg.a_load_reg_reg(list,OS_16,OS_16,NR_FUNCTION_RESULT32_LOW_REG,tmpreg);
  403. cg.a_load_reg_reg(list,OS_16,OS_16,NR_FUNCTION_RESULT32_HIGH_REG,GetNextReg(tmpreg));
  404. cg.a_load_reg_cgpara(list,OS_32,tmpreg,paraloc1);
  405. end
  406. else
  407. {$endif i8086}
  408. cg.a_load_reg_cgpara(list,OS_ADDR,NR_FUNCTION_RESULT_REG,paraloc1);
  409. paramanager.freecgpara(list,paraloc1);
  410. cg.allocallcpuregisters(list);
  411. cg.a_call_name(list,'FPC_SETJMP',false);
  412. cg.deallocallcpuregisters(list);
  413. cg.alloccpuregisters(list,R_INTREGISTER,[RS_FUNCTION_RESULT_REG]);
  414. cg.g_exception_reason_save(list, t.reasonbuf);
  415. cg.a_cmp_const_reg_label(list,setjmp_result_cgsize,OC_NE,0,cg.makeregsize(list,NR_FUNCTION_RESULT_REG,setjmp_result_cgsize),exceptlabel);
  416. cg.dealloccpuregisters(list,R_INTREGISTER,[RS_FUNCTION_RESULT_REG]);
  417. paraloc1.done;
  418. paraloc2.done;
  419. paraloc3.done;
  420. end;
  421. procedure free_exception(list:TAsmList;const t:texceptiontemps;a:aint;endexceptlabel:tasmlabel;onlyfree:boolean);
  422. begin
  423. cg.allocallcpuregisters(list);
  424. cg.a_call_name(list,'FPC_POPADDRSTACK',false);
  425. cg.deallocallcpuregisters(list);
  426. if not onlyfree then
  427. begin
  428. { g_exception_reason_load already allocates NR_FUNCTION_RESULT_REG }
  429. cg.g_exception_reason_load(list, t.reasonbuf);
  430. cg.a_cmp_const_reg_label(list,OS_INT,OC_EQ,a,NR_FUNCTION_RESULT_REG,endexceptlabel);
  431. cg.a_reg_dealloc(list,NR_FUNCTION_RESULT_REG);
  432. end;
  433. end;
  434. {*****************************************************************************
  435. TLocation
  436. *****************************************************************************}
  437. procedure register_maybe_adjust_setbase(list: TAsmList; var l: tlocation; setbase: aint);
  438. var
  439. tmpreg: tregister;
  440. begin
  441. if (setbase<>0) then
  442. begin
  443. if not(l.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  444. internalerror(2007091502);
  445. { subtract the setbase }
  446. case l.loc of
  447. LOC_CREGISTER:
  448. begin
  449. tmpreg := cg.getintregister(list,l.size);
  450. cg.a_op_const_reg_reg(list,OP_SUB,l.size,setbase,l.register,tmpreg);
  451. l.loc:=LOC_REGISTER;
  452. l.register:=tmpreg;
  453. end;
  454. LOC_REGISTER:
  455. begin
  456. cg.a_op_const_reg(list,OP_SUB,l.size,setbase,l.register);
  457. end;
  458. end;
  459. end;
  460. end;
  461. procedure location_force_mmreg(list:TAsmList;var l: tlocation;maybeconst:boolean);
  462. var
  463. reg : tregister;
  464. begin
  465. if (l.loc<>LOC_MMREGISTER) and
  466. ((l.loc<>LOC_CMMREGISTER) or (not maybeconst)) then
  467. begin
  468. reg:=cg.getmmregister(list,OS_VECTOR);
  469. cg.a_loadmm_loc_reg(list,OS_VECTOR,l,reg,nil);
  470. location_freetemp(list,l);
  471. location_reset(l,LOC_MMREGISTER,OS_VECTOR);
  472. l.register:=reg;
  473. end;
  474. end;
  475. procedure location_allocate_register(list: TAsmList;out l: tlocation;def: tdef;constant: boolean);
  476. begin
  477. l.size:=def_cgsize(def);
  478. if (def.typ=floatdef) and
  479. not(cs_fp_emulation in current_settings.moduleswitches) then
  480. begin
  481. if use_vectorfpu(def) then
  482. begin
  483. if constant then
  484. location_reset(l,LOC_CMMREGISTER,l.size)
  485. else
  486. location_reset(l,LOC_MMREGISTER,l.size);
  487. l.register:=cg.getmmregister(list,l.size);
  488. end
  489. else
  490. begin
  491. if constant then
  492. location_reset(l,LOC_CFPUREGISTER,l.size)
  493. else
  494. location_reset(l,LOC_FPUREGISTER,l.size);
  495. l.register:=cg.getfpuregister(list,l.size);
  496. end;
  497. end
  498. else
  499. begin
  500. if constant then
  501. location_reset(l,LOC_CREGISTER,l.size)
  502. else
  503. location_reset(l,LOC_REGISTER,l.size);
  504. {$ifdef cpu64bitalu}
  505. if l.size in [OS_128,OS_S128,OS_F128] then
  506. begin
  507. l.register128.reglo:=cg.getintregister(list,OS_64);
  508. l.register128.reghi:=cg.getintregister(list,OS_64);
  509. end
  510. else
  511. {$else cpu64bitalu}
  512. if l.size in [OS_64,OS_S64,OS_F64] then
  513. begin
  514. l.register64.reglo:=cg.getintregister(list,OS_32);
  515. l.register64.reghi:=cg.getintregister(list,OS_32);
  516. end
  517. else
  518. {$endif cpu64bitalu}
  519. { Note: for widths of records (and maybe objects, classes, etc.) an
  520. address register could be set here, but that is later
  521. changed to an intregister neverthless when in the
  522. tcgassignmentnode thlcgobj.maybe_change_load_node_reg is
  523. called for the temporary node; so the workaround for now is
  524. to fix the symptoms... }
  525. l.register:=cg.getintregister(list,l.size);
  526. end;
  527. end;
  528. {****************************************************************************
  529. Init/Finalize Code
  530. ****************************************************************************}
  531. procedure copyvalueparas(p:TObject;arg:pointer);
  532. var
  533. href : treference;
  534. hreg : tregister;
  535. list : TAsmList;
  536. hsym : tparavarsym;
  537. l : longint;
  538. localcopyloc : tlocation;
  539. sizedef : tdef;
  540. begin
  541. list:=TAsmList(arg);
  542. if (tsym(p).typ=paravarsym) and
  543. (tparavarsym(p).varspez=vs_value) and
  544. (paramanager.push_addr_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)) then
  545. begin
  546. { we have no idea about the alignment at the caller side }
  547. hlcg.location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,true,1);
  548. if is_open_array(tparavarsym(p).vardef) or
  549. is_array_of_const(tparavarsym(p).vardef) then
  550. begin
  551. { cdecl functions don't have a high pointer so it is not possible to generate
  552. a local copy }
  553. if not(current_procinfo.procdef.proccalloption in cdecl_pocalls) then
  554. begin
  555. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  556. if not assigned(hsym) then
  557. internalerror(200306061);
  558. hreg:=cg.getaddressregister(list);
  559. if not is_packed_array(tparavarsym(p).vardef) then
  560. hlcg.g_copyvaluepara_openarray(list,href,hsym.initialloc,tarraydef(tparavarsym(p).vardef),hreg)
  561. else
  562. internalerror(2006080401);
  563. // cg.g_copyvaluepara_packedopenarray(list,href,hsym.intialloc,tarraydef(tparavarsym(p).vardef).elepackedbitsize,hreg);
  564. sizedef:=getpointerdef(tparavarsym(p).vardef);
  565. hlcg.a_load_reg_loc(list,sizedef,sizedef,hreg,tparavarsym(p).initialloc);
  566. end;
  567. end
  568. else
  569. begin
  570. { Allocate space for the local copy }
  571. l:=tparavarsym(p).getsize;
  572. localcopyloc.loc:=LOC_REFERENCE;
  573. localcopyloc.size:=int_cgsize(l);
  574. tg.GetLocal(list,l,tparavarsym(p).vardef,localcopyloc.reference);
  575. { Copy data }
  576. if is_shortstring(tparavarsym(p).vardef) then
  577. begin
  578. { this code is only executed before the code for the body and the entry/exit code is generated
  579. so we're allowed to include pi_do_call here; after pass1 is run, this isn't allowed anymore
  580. }
  581. include(current_procinfo.flags,pi_do_call);
  582. hlcg.g_copyshortstring(list,href,localcopyloc.reference,tstringdef(tparavarsym(p).vardef));
  583. end
  584. else if tparavarsym(p).vardef.typ = variantdef then
  585. begin
  586. { this code is only executed before the code for the body and the entry/exit code is generated
  587. so we're allowed to include pi_do_call here; after pass1 is run, this isn't allowed anymore
  588. }
  589. include(current_procinfo.flags,pi_do_call);
  590. hlcg.g_copyvariant(list,href,localcopyloc.reference,tvariantdef(tparavarsym(p).vardef))
  591. end
  592. else
  593. begin
  594. { pass proper alignment info }
  595. localcopyloc.reference.alignment:=tparavarsym(p).vardef.alignment;
  596. cg.g_concatcopy(list,href,localcopyloc.reference,tparavarsym(p).vardef.size);
  597. end;
  598. { update localloc of varsym }
  599. tg.Ungetlocal(list,tparavarsym(p).localloc.reference);
  600. tparavarsym(p).localloc:=localcopyloc;
  601. tparavarsym(p).initialloc:=localcopyloc;
  602. end;
  603. end;
  604. end;
  605. { generates the code for incrementing the reference count of parameters and
  606. initialize out parameters }
  607. procedure init_paras(p:TObject;arg:pointer);
  608. var
  609. href : treference;
  610. hsym : tparavarsym;
  611. eldef : tdef;
  612. list : TAsmList;
  613. needs_inittable : boolean;
  614. begin
  615. list:=TAsmList(arg);
  616. if (tsym(p).typ=paravarsym) then
  617. begin
  618. needs_inittable:=is_managed_type(tparavarsym(p).vardef);
  619. if not needs_inittable then
  620. exit;
  621. case tparavarsym(p).varspez of
  622. vs_value :
  623. begin
  624. { variants are already handled by the call to fpc_variant_copy_overwrite if
  625. they are passed by reference }
  626. if not((tparavarsym(p).vardef.typ=variantdef) and
  627. paramanager.push_addr_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)) then
  628. begin
  629. hlcg.location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,is_open_array(tparavarsym(p).vardef),sizeof(pint));
  630. if is_open_array(tparavarsym(p).vardef) then
  631. begin
  632. { open arrays do not contain correct element count in their rtti,
  633. the actual count must be passed separately. }
  634. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  635. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  636. if not assigned(hsym) then
  637. internalerror(201003031);
  638. hlcg.g_array_rtti_helper(list,eldef,href,hsym.initialloc,'fpc_addref_array');
  639. end
  640. else
  641. hlcg.g_incrrefcount(list,tparavarsym(p).vardef,href);
  642. end;
  643. end;
  644. vs_out :
  645. begin
  646. { we have no idea about the alignment at the callee side,
  647. and the user also cannot specify "unaligned" here, so
  648. assume worst case }
  649. hlcg.location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,true,1);
  650. if is_open_array(tparavarsym(p).vardef) then
  651. begin
  652. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  653. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  654. if not assigned(hsym) then
  655. internalerror(201103033);
  656. hlcg.g_array_rtti_helper(list,eldef,href,hsym.initialloc,'fpc_initialize_array');
  657. end
  658. else
  659. hlcg.g_initialize(list,tparavarsym(p).vardef,href);
  660. end;
  661. end;
  662. end;
  663. end;
  664. procedure gen_alloc_regloc(list:TAsmList;var loc: tlocation);
  665. begin
  666. case loc.loc of
  667. LOC_CREGISTER:
  668. begin
  669. {$ifdef cpu64bitalu}
  670. if loc.size in [OS_128,OS_S128] then
  671. begin
  672. loc.register128.reglo:=cg.getintregister(list,OS_64);
  673. loc.register128.reghi:=cg.getintregister(list,OS_64);
  674. end
  675. else
  676. {$else cpu64bitalu}
  677. if loc.size in [OS_64,OS_S64] then
  678. begin
  679. loc.register64.reglo:=cg.getintregister(list,OS_32);
  680. loc.register64.reghi:=cg.getintregister(list,OS_32);
  681. end
  682. else
  683. {$endif cpu64bitalu}
  684. loc.register:=cg.getintregister(list,loc.size);
  685. end;
  686. LOC_CFPUREGISTER:
  687. begin
  688. loc.register:=cg.getfpuregister(list,loc.size);
  689. end;
  690. LOC_CMMREGISTER:
  691. begin
  692. loc.register:=cg.getmmregister(list,loc.size);
  693. end;
  694. end;
  695. end;
  696. procedure gen_alloc_regvar(list:TAsmList;sym: tabstractnormalvarsym; allocreg: boolean);
  697. begin
  698. if allocreg then
  699. gen_alloc_regloc(list,sym.initialloc);
  700. if (pi_has_label in current_procinfo.flags) then
  701. begin
  702. { Allocate register already, to prevent first allocation to be
  703. inside a loop }
  704. {$if defined(cpu64bitalu)}
  705. if sym.initialloc.size in [OS_128,OS_S128] then
  706. begin
  707. cg.a_reg_sync(list,sym.initialloc.register128.reglo);
  708. cg.a_reg_sync(list,sym.initialloc.register128.reghi);
  709. end
  710. else
  711. {$elseif defined(cpu32bitalu)}
  712. if sym.initialloc.size in [OS_64,OS_S64] then
  713. begin
  714. cg.a_reg_sync(list,sym.initialloc.register64.reglo);
  715. cg.a_reg_sync(list,sym.initialloc.register64.reghi);
  716. end
  717. else
  718. {$elseif defined(cpu16bitalu)}
  719. if sym.initialloc.size in [OS_64,OS_S64] then
  720. begin
  721. cg.a_reg_sync(list,sym.initialloc.register64.reglo);
  722. cg.a_reg_sync(list,GetNextReg(sym.initialloc.register64.reglo));
  723. cg.a_reg_sync(list,sym.initialloc.register64.reghi);
  724. cg.a_reg_sync(list,GetNextReg(sym.initialloc.register64.reghi));
  725. end
  726. else
  727. if sym.initialloc.size in [OS_32,OS_S32] then
  728. begin
  729. cg.a_reg_sync(list,sym.initialloc.register);
  730. cg.a_reg_sync(list,GetNextReg(sym.initialloc.register));
  731. end
  732. else
  733. {$elseif defined(cpu8bitalu)}
  734. if sym.initialloc.size in [OS_64,OS_S64] then
  735. begin
  736. cg.a_reg_sync(list,sym.initialloc.register64.reglo);
  737. cg.a_reg_sync(list,GetNextReg(sym.initialloc.register64.reglo));
  738. cg.a_reg_sync(list,GetNextReg(GetNextReg(sym.initialloc.register64.reglo)));
  739. cg.a_reg_sync(list,GetNextReg(GetNextReg(GetNextReg(sym.initialloc.register64.reglo))));
  740. cg.a_reg_sync(list,sym.initialloc.register64.reghi);
  741. cg.a_reg_sync(list,GetNextReg(sym.initialloc.register64.reghi));
  742. cg.a_reg_sync(list,GetNextReg(GetNextReg(sym.initialloc.register64.reghi)));
  743. cg.a_reg_sync(list,GetNextReg(GetNextReg(GetNextReg(sym.initialloc.register64.reghi))));
  744. end
  745. else
  746. if sym.initialloc.size in [OS_32,OS_S32] then
  747. begin
  748. cg.a_reg_sync(list,sym.initialloc.register);
  749. cg.a_reg_sync(list,GetNextReg(sym.initialloc.register));
  750. cg.a_reg_sync(list,GetNextReg(GetNextReg(sym.initialloc.register)));
  751. cg.a_reg_sync(list,GetNextReg(GetNextReg(GetNextReg(sym.initialloc.register))));
  752. end
  753. else
  754. if sym.initialloc.size in [OS_16,OS_S16] then
  755. begin
  756. cg.a_reg_sync(list,sym.initialloc.register);
  757. cg.a_reg_sync(list,GetNextReg(sym.initialloc.register));
  758. end
  759. else
  760. {$endif}
  761. cg.a_reg_sync(list,sym.initialloc.register);
  762. end;
  763. sym.localloc:=sym.initialloc;
  764. end;
  765. procedure gen_load_cgpara_loc(list: TAsmList; vardef: tdef; const para: TCGPara; var destloc: tlocation; reusepara: boolean);
  766. procedure unget_para(const paraloc:TCGParaLocation);
  767. begin
  768. case paraloc.loc of
  769. LOC_REGISTER :
  770. begin
  771. if getsupreg(paraloc.register)<first_int_imreg then
  772. cg.ungetcpuregister(list,paraloc.register);
  773. end;
  774. LOC_MMREGISTER :
  775. begin
  776. if getsupreg(paraloc.register)<first_mm_imreg then
  777. cg.ungetcpuregister(list,paraloc.register);
  778. end;
  779. LOC_FPUREGISTER :
  780. begin
  781. if getsupreg(paraloc.register)<first_fpu_imreg then
  782. cg.ungetcpuregister(list,paraloc.register);
  783. end;
  784. end;
  785. end;
  786. var
  787. paraloc : pcgparalocation;
  788. href : treference;
  789. sizeleft : aint;
  790. {$if defined(sparc) or defined(arm) or defined(mips)}
  791. tempref : treference;
  792. {$endif defined(sparc) or defined(arm) or defined(mips)}
  793. {$ifdef mips}
  794. tmpreg : tregister;
  795. {$endif mips}
  796. {$ifndef cpu64bitalu}
  797. tempreg : tregister;
  798. reg64 : tregister64;
  799. {$endif not cpu64bitalu}
  800. begin
  801. paraloc:=para.location;
  802. if not assigned(paraloc) then
  803. internalerror(200408203);
  804. { skip e.g. empty records }
  805. if (paraloc^.loc = LOC_VOID) then
  806. exit;
  807. case destloc.loc of
  808. LOC_REFERENCE :
  809. begin
  810. { If the parameter location is reused we don't need to copy
  811. anything }
  812. if not reusepara then
  813. begin
  814. href:=destloc.reference;
  815. sizeleft:=para.intsize;
  816. while assigned(paraloc) do
  817. begin
  818. if (paraloc^.size=OS_NO) then
  819. begin
  820. { Can only be a reference that contains the rest
  821. of the parameter }
  822. if (paraloc^.loc<>LOC_REFERENCE) or
  823. assigned(paraloc^.next) then
  824. internalerror(2005013010);
  825. cg.a_load_cgparaloc_ref(list,paraloc^,href,sizeleft,destloc.reference.alignment);
  826. inc(href.offset,sizeleft);
  827. sizeleft:=0;
  828. end
  829. else
  830. begin
  831. cg.a_load_cgparaloc_ref(list,paraloc^,href,tcgsize2size[paraloc^.size],destloc.reference.alignment);
  832. inc(href.offset,TCGSize2Size[paraloc^.size]);
  833. dec(sizeleft,TCGSize2Size[paraloc^.size]);
  834. end;
  835. unget_para(paraloc^);
  836. paraloc:=paraloc^.next;
  837. end;
  838. end;
  839. end;
  840. LOC_REGISTER,
  841. LOC_CREGISTER :
  842. begin
  843. {$ifdef cpu64bitalu}
  844. if (para.size in [OS_128,OS_S128,OS_F128]) and
  845. ({ in case of fpu emulation, or abi's that pass fpu values
  846. via integer registers }
  847. (vardef.typ=floatdef) or
  848. is_methodpointer(vardef) or
  849. is_record(vardef)) then
  850. begin
  851. case paraloc^.loc of
  852. LOC_REGISTER:
  853. begin
  854. if not assigned(paraloc^.next) then
  855. internalerror(200410104);
  856. if (target_info.endian=ENDIAN_BIG) then
  857. begin
  858. { paraloc^ -> high
  859. paraloc^.next -> low }
  860. unget_para(paraloc^);
  861. gen_alloc_regloc(list,destloc);
  862. { reg->reg, alignment is irrelevant }
  863. cg.a_load_cgparaloc_anyreg(list,OS_64,paraloc^,destloc.register128.reghi,8);
  864. unget_para(paraloc^.next^);
  865. cg.a_load_cgparaloc_anyreg(list,OS_64,paraloc^.next^,destloc.register128.reglo,8);
  866. end
  867. else
  868. begin
  869. { paraloc^ -> low
  870. paraloc^.next -> high }
  871. unget_para(paraloc^);
  872. gen_alloc_regloc(list,destloc);
  873. cg.a_load_cgparaloc_anyreg(list,OS_64,paraloc^,destloc.register128.reglo,8);
  874. unget_para(paraloc^.next^);
  875. cg.a_load_cgparaloc_anyreg(list,OS_64,paraloc^.next^,destloc.register128.reghi,8);
  876. end;
  877. end;
  878. LOC_REFERENCE:
  879. begin
  880. gen_alloc_regloc(list,destloc);
  881. reference_reset_base(href,paraloc^.reference.index,paraloc^.reference.offset,para.alignment);
  882. cg128.a_load128_ref_reg(list,href,destloc.register128);
  883. unget_para(paraloc^);
  884. end;
  885. else
  886. internalerror(2012090607);
  887. end
  888. end
  889. else
  890. {$else cpu64bitalu}
  891. if (para.size in [OS_64,OS_S64,OS_F64]) and
  892. (is_64bit(vardef) or
  893. { in case of fpu emulation, or abi's that pass fpu values
  894. via integer registers }
  895. (vardef.typ=floatdef) or
  896. is_methodpointer(vardef) or
  897. is_record(vardef)) then
  898. begin
  899. case paraloc^.loc of
  900. LOC_REGISTER:
  901. begin
  902. case para.locations_count of
  903. {$if defined(cpu16bitalu) or defined(cpu8bitalu)}
  904. { 4 paralocs? }
  905. 4:
  906. if (target_info.endian=ENDIAN_BIG) then
  907. begin
  908. { paraloc^ -> high
  909. paraloc^.next^.next -> low }
  910. unget_para(paraloc^);
  911. gen_alloc_regloc(list,destloc);
  912. { reg->reg, alignment is irrelevant }
  913. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^,GetNextReg(destloc.register64.reghi),2);
  914. unget_para(paraloc^.next^);
  915. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^.next^,destloc.register64.reghi,2);
  916. unget_para(paraloc^.next^.next^);
  917. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^.next^.next^,GetNextReg(destloc.register64.reglo),2);
  918. unget_para(paraloc^.next^.next^.next^);
  919. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^.next^.next^.next^,destloc.register64.reglo,2);
  920. end
  921. else
  922. begin
  923. { paraloc^ -> low
  924. paraloc^.next^.next -> high }
  925. unget_para(paraloc^);
  926. gen_alloc_regloc(list,destloc);
  927. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^,destloc.register64.reglo,2);
  928. unget_para(paraloc^.next^);
  929. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^.next^,GetNextReg(destloc.register64.reglo),2);
  930. unget_para(paraloc^.next^.next^);
  931. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^.next^.next^,destloc.register64.reghi,2);
  932. unget_para(paraloc^.next^.next^.next^);
  933. cg.a_load_cgparaloc_anyreg(list,OS_16,paraloc^.next^.next^.next^,GetNextReg(destloc.register64.reghi),2);
  934. end;
  935. {$endif defined(cpu16bitalu) or defined(cpu8bitalu)}
  936. 2:
  937. if (target_info.endian=ENDIAN_BIG) then
  938. begin
  939. { paraloc^ -> high
  940. paraloc^.next -> low }
  941. unget_para(paraloc^);
  942. gen_alloc_regloc(list,destloc);
  943. { reg->reg, alignment is irrelevant }
  944. cg.a_load_cgparaloc_anyreg(list,OS_32,paraloc^,destloc.register64.reghi,4);
  945. unget_para(paraloc^.next^);
  946. cg.a_load_cgparaloc_anyreg(list,OS_32,paraloc^.next^,destloc.register64.reglo,4);
  947. end
  948. else
  949. begin
  950. { paraloc^ -> low
  951. paraloc^.next -> high }
  952. unget_para(paraloc^);
  953. gen_alloc_regloc(list,destloc);
  954. cg.a_load_cgparaloc_anyreg(list,OS_32,paraloc^,destloc.register64.reglo,4);
  955. unget_para(paraloc^.next^);
  956. cg.a_load_cgparaloc_anyreg(list,OS_32,paraloc^.next^,destloc.register64.reghi,4);
  957. end;
  958. else
  959. { unexpected number of paralocs }
  960. internalerror(200410104);
  961. end;
  962. end;
  963. LOC_REFERENCE:
  964. begin
  965. gen_alloc_regloc(list,destloc);
  966. reference_reset_base(href,paraloc^.reference.index,paraloc^.reference.offset,para.alignment);
  967. cg64.a_load64_ref_reg(list,href,destloc.register64);
  968. unget_para(paraloc^);
  969. end;
  970. else
  971. internalerror(2005101501);
  972. end
  973. end
  974. else
  975. {$endif cpu64bitalu}
  976. begin
  977. if assigned(paraloc^.next) then
  978. begin
  979. if (destloc.size in [OS_PAIR,OS_SPAIR]) and
  980. (para.Size in [OS_PAIR,OS_SPAIR]) then
  981. begin
  982. unget_para(paraloc^);
  983. gen_alloc_regloc(list,destloc);
  984. cg.a_load_cgparaloc_anyreg(list,OS_INT,paraloc^,destloc.register,sizeof(aint));
  985. unget_para(paraloc^.Next^);
  986. {$if defined(cpu16bitalu) or defined(cpu8bitalu)}
  987. cg.a_load_cgparaloc_anyreg(list,OS_INT,paraloc^.Next^,GetNextReg(destloc.register),sizeof(aint));
  988. {$else}
  989. cg.a_load_cgparaloc_anyreg(list,OS_INT,paraloc^.Next^,destloc.registerhi,sizeof(aint));
  990. {$endif}
  991. end
  992. {$if defined(cpu8bitalu)}
  993. else if (destloc.size in [OS_32,OS_S32]) and
  994. (para.Size in [OS_32,OS_S32]) then
  995. begin
  996. unget_para(paraloc^);
  997. gen_alloc_regloc(list,destloc);
  998. cg.a_load_cgparaloc_anyreg(list,OS_INT,paraloc^,destloc.register,sizeof(aint));
  999. unget_para(paraloc^.Next^);
  1000. cg.a_load_cgparaloc_anyreg(list,OS_INT,paraloc^.Next^,GetNextReg(destloc.register),sizeof(aint));
  1001. unget_para(paraloc^.Next^.Next^);
  1002. cg.a_load_cgparaloc_anyreg(list,OS_INT,paraloc^.Next^.Next^,GetNextReg(GetNextReg(destloc.register)),sizeof(aint));
  1003. unget_para(paraloc^.Next^.Next^.Next^);
  1004. cg.a_load_cgparaloc_anyreg(list,OS_INT,paraloc^.Next^.Next^.Next^,GetNextReg(GetNextReg(GetNextReg(destloc.register))),sizeof(aint));
  1005. end
  1006. {$endif defined(cpu8bitalu)}
  1007. else
  1008. internalerror(200410105);
  1009. end
  1010. else
  1011. begin
  1012. unget_para(paraloc^);
  1013. gen_alloc_regloc(list,destloc);
  1014. cg.a_load_cgparaloc_anyreg(list,destloc.size,paraloc^,destloc.register,sizeof(aint));
  1015. end;
  1016. end;
  1017. end;
  1018. LOC_FPUREGISTER,
  1019. LOC_CFPUREGISTER :
  1020. begin
  1021. {$ifdef mips}
  1022. if (destloc.size = paraloc^.Size) and
  1023. (paraloc^.Loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER,LOC_REFERENCE,LOC_CREFERENCE]) then
  1024. begin
  1025. unget_para(paraloc^);
  1026. gen_alloc_regloc(list,destloc);
  1027. cg.a_load_cgparaloc_anyreg(list,destloc.size,paraloc^,destloc.register,para.alignment);
  1028. end
  1029. else if (destloc.size = OS_F32) and
  1030. (paraloc^.Loc in [LOC_REGISTER,LOC_CREGISTER]) then
  1031. begin
  1032. gen_alloc_regloc(list,destloc);
  1033. unget_para(paraloc^);
  1034. list.Concat(taicpu.op_reg_reg(A_MTC1,paraloc^.register,destloc.register));
  1035. end
  1036. { TODO: Produces invalid code, needs fixing together with regalloc setup. }
  1037. {
  1038. else if (destloc.size = OS_F64) and
  1039. (paraloc^.Loc in [LOC_REGISTER,LOC_CREGISTER]) and
  1040. (paraloc^.next^.Loc in [LOC_REGISTER,LOC_CREGISTER]) then
  1041. begin
  1042. gen_alloc_regloc(list,destloc);
  1043. tmpreg:=destloc.register;
  1044. unget_para(paraloc^);
  1045. list.Concat(taicpu.op_reg_reg(A_MTC1,paraloc^.register,tmpreg));
  1046. setsupreg(tmpreg,getsupreg(tmpreg)+1);
  1047. unget_para(paraloc^.next^);
  1048. list.Concat(taicpu.op_reg_reg(A_MTC1,paraloc^.Next^.register,tmpreg));
  1049. end
  1050. }
  1051. else
  1052. begin
  1053. sizeleft := TCGSize2Size[destloc.size];
  1054. tg.GetTemp(list,sizeleft,sizeleft,tt_normal,tempref);
  1055. href:=tempref;
  1056. while assigned(paraloc) do
  1057. begin
  1058. unget_para(paraloc^);
  1059. cg.a_load_cgparaloc_ref(list,paraloc^,href,sizeleft,destloc.reference.alignment);
  1060. inc(href.offset,TCGSize2Size[paraloc^.size]);
  1061. dec(sizeleft,TCGSize2Size[paraloc^.size]);
  1062. paraloc:=paraloc^.next;
  1063. end;
  1064. gen_alloc_regloc(list,destloc);
  1065. cg.a_loadfpu_ref_reg(list,destloc.size,destloc.size,tempref,destloc.register);
  1066. tg.UnGetTemp(list,tempref);
  1067. end;
  1068. {$else mips}
  1069. {$if defined(sparc) or defined(arm)}
  1070. { Arm and Sparc passes floats in int registers, when loading to fpu register
  1071. we need a temp }
  1072. sizeleft := TCGSize2Size[destloc.size];
  1073. tg.GetTemp(list,sizeleft,sizeleft,tt_normal,tempref);
  1074. href:=tempref;
  1075. while assigned(paraloc) do
  1076. begin
  1077. unget_para(paraloc^);
  1078. cg.a_load_cgparaloc_ref(list,paraloc^,href,sizeleft,destloc.reference.alignment);
  1079. inc(href.offset,TCGSize2Size[paraloc^.size]);
  1080. dec(sizeleft,TCGSize2Size[paraloc^.size]);
  1081. paraloc:=paraloc^.next;
  1082. end;
  1083. gen_alloc_regloc(list,destloc);
  1084. cg.a_loadfpu_ref_reg(list,destloc.size,destloc.size,tempref,destloc.register);
  1085. tg.UnGetTemp(list,tempref);
  1086. {$else defined(sparc) or defined(arm)}
  1087. unget_para(paraloc^);
  1088. gen_alloc_regloc(list,destloc);
  1089. { from register to register -> alignment is irrelevant }
  1090. cg.a_load_cgparaloc_anyreg(list,destloc.size,paraloc^,destloc.register,0);
  1091. if assigned(paraloc^.next) then
  1092. internalerror(200410109);
  1093. {$endif defined(sparc) or defined(arm)}
  1094. {$endif mips}
  1095. end;
  1096. LOC_MMREGISTER,
  1097. LOC_CMMREGISTER :
  1098. begin
  1099. {$ifndef cpu64bitalu}
  1100. { ARM vfp floats are passed in integer registers }
  1101. if (para.size=OS_F64) and
  1102. (paraloc^.size in [OS_32,OS_S32]) and
  1103. use_vectorfpu(vardef) then
  1104. begin
  1105. { we need 2x32bit reg }
  1106. if not assigned(paraloc^.next) or
  1107. assigned(paraloc^.next^.next) then
  1108. internalerror(2009112421);
  1109. unget_para(paraloc^.next^);
  1110. case paraloc^.next^.loc of
  1111. LOC_REGISTER:
  1112. tempreg:=paraloc^.next^.register;
  1113. LOC_REFERENCE:
  1114. begin
  1115. tempreg:=cg.getintregister(list,OS_32);
  1116. cg.a_load_cgparaloc_anyreg(list,OS_32,paraloc^.next^,tempreg,4);
  1117. end;
  1118. else
  1119. internalerror(2012051301);
  1120. end;
  1121. { don't free before the above, because then the getintregister
  1122. could reallocate this register and overwrite it }
  1123. unget_para(paraloc^);
  1124. gen_alloc_regloc(list,destloc);
  1125. if (target_info.endian=endian_big) then
  1126. { paraloc^ -> high
  1127. paraloc^.next -> low }
  1128. reg64:=joinreg64(tempreg,paraloc^.register)
  1129. else
  1130. reg64:=joinreg64(paraloc^.register,tempreg);
  1131. cg64.a_loadmm_intreg64_reg(list,OS_F64,reg64,destloc.register);
  1132. end
  1133. else
  1134. {$endif not cpu64bitalu}
  1135. begin
  1136. unget_para(paraloc^);
  1137. gen_alloc_regloc(list,destloc);
  1138. { from register to register -> alignment is irrelevant }
  1139. cg.a_load_cgparaloc_anyreg(list,destloc.size,paraloc^,destloc.register,0);
  1140. { data could come in two memory locations, for now
  1141. we simply ignore the sanity check (FK)
  1142. if assigned(paraloc^.next) then
  1143. internalerror(200410108);
  1144. }
  1145. end;
  1146. end;
  1147. else
  1148. internalerror(2010052903);
  1149. end;
  1150. end;
  1151. procedure gen_load_para_value(list:TAsmList);
  1152. procedure get_para(const paraloc:TCGParaLocation);
  1153. begin
  1154. case paraloc.loc of
  1155. LOC_REGISTER :
  1156. begin
  1157. if getsupreg(paraloc.register)<first_int_imreg then
  1158. cg.getcpuregister(list,paraloc.register);
  1159. end;
  1160. LOC_MMREGISTER :
  1161. begin
  1162. if getsupreg(paraloc.register)<first_mm_imreg then
  1163. cg.getcpuregister(list,paraloc.register);
  1164. end;
  1165. LOC_FPUREGISTER :
  1166. begin
  1167. if getsupreg(paraloc.register)<first_fpu_imreg then
  1168. cg.getcpuregister(list,paraloc.register);
  1169. end;
  1170. end;
  1171. end;
  1172. var
  1173. i : longint;
  1174. currpara : tparavarsym;
  1175. paraloc : pcgparalocation;
  1176. begin
  1177. if (po_assembler in current_procinfo.procdef.procoptions) or
  1178. { exceptfilters have a single hidden 'parentfp' parameter, which
  1179. is handled by tcg.g_proc_entry. }
  1180. (current_procinfo.procdef.proctypeoption=potype_exceptfilter) then
  1181. exit;
  1182. { Allocate registers used by parameters }
  1183. for i:=0 to current_procinfo.procdef.paras.count-1 do
  1184. begin
  1185. currpara:=tparavarsym(current_procinfo.procdef.paras[i]);
  1186. paraloc:=currpara.paraloc[calleeside].location;
  1187. while assigned(paraloc) do
  1188. begin
  1189. if paraloc^.loc in [LOC_REGISTER,LOC_FPUREGISTER,LOC_MMREGISTER] then
  1190. get_para(paraloc^);
  1191. paraloc:=paraloc^.next;
  1192. end;
  1193. end;
  1194. { Copy parameters to local references/registers }
  1195. for i:=0 to current_procinfo.procdef.paras.count-1 do
  1196. begin
  1197. currpara:=tparavarsym(current_procinfo.procdef.paras[i]);
  1198. gen_load_cgpara_loc(list,currpara.vardef,currpara.paraloc[calleeside],currpara.initialloc,paramanager.param_use_paraloc(currpara.paraloc[calleeside]));
  1199. { gen_load_cgpara_loc() already allocated the initialloc
  1200. -> don't allocate again }
  1201. if currpara.initialloc.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMREGISTER] then
  1202. gen_alloc_regvar(list,currpara,false);
  1203. end;
  1204. { generate copies of call by value parameters, must be done before
  1205. the initialization and body is parsed because the refcounts are
  1206. incremented using the local copies }
  1207. current_procinfo.procdef.parast.SymList.ForEachCall(@copyvalueparas,list);
  1208. {$ifdef powerpc}
  1209. { unget the register that contains the stack pointer before the procedure entry, }
  1210. { which is used to access the parameters in their original callee-side location }
  1211. if (tppcprocinfo(current_procinfo).needs_frame_pointer) then
  1212. cg.a_reg_dealloc(list,NR_R12);
  1213. {$endif powerpc}
  1214. {$ifdef powerpc64}
  1215. { unget the register that contains the stack pointer before the procedure entry, }
  1216. { which is used to access the parameters in their original callee-side location }
  1217. if (tppcprocinfo(current_procinfo).needs_frame_pointer) then
  1218. cg.a_reg_dealloc(list, NR_OLD_STACK_POINTER_REG);
  1219. {$endif powerpc64}
  1220. if not(po_assembler in current_procinfo.procdef.procoptions) then
  1221. begin
  1222. { initialize refcounted paras, and trash others. Needed here
  1223. instead of in gen_initialize_code, because when a reference is
  1224. intialised or trashed while the pointer to that reference is kept
  1225. in a regvar, we add a register move and that one again has to
  1226. come after the parameter loading code as far as the register
  1227. allocator is concerned }
  1228. current_procinfo.procdef.parast.SymList.ForEachCall(@init_paras,list);
  1229. end;
  1230. end;
  1231. {****************************************************************************
  1232. Entry/Exit
  1233. ****************************************************************************}
  1234. function has_alias_name(pd:tprocdef;const s:string):boolean;
  1235. var
  1236. item : TCmdStrListItem;
  1237. begin
  1238. result:=true;
  1239. if pd.mangledname=s then
  1240. exit;
  1241. item := TCmdStrListItem(pd.aliasnames.first);
  1242. while assigned(item) do
  1243. begin
  1244. if item.str=s then
  1245. exit;
  1246. item := TCmdStrListItem(item.next);
  1247. end;
  1248. result:=false;
  1249. end;
  1250. procedure alloc_proc_symbol(pd: tprocdef);
  1251. var
  1252. item : TCmdStrListItem;
  1253. begin
  1254. item := TCmdStrListItem(pd.aliasnames.first);
  1255. while assigned(item) do
  1256. begin
  1257. current_asmdata.DefineAsmSymbol(item.str,AB_GLOBAL,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. list.concat(Tai_align.create(current_settings.alignment.procalign));
  1377. if (po_global in pd.procoptions) then
  1378. list.concat(Tai_symbol.createname_global(pd.mangledname,AT_FUNCTION,0))
  1379. else
  1380. list.concat(Tai_symbol.createname(pd.mangledname,AT_FUNCTION,0));
  1381. cg.g_external_wrapper(list,pd,externalname);
  1382. destroy_hlcodegen;
  1383. end;
  1384. {****************************************************************************
  1385. Const Data
  1386. ****************************************************************************}
  1387. procedure gen_alloc_symtable(list:TAsmList;pd:tprocdef;st:TSymtable);
  1388. procedure setlocalloc(vs:tabstractnormalvarsym);
  1389. begin
  1390. if cs_asm_source in current_settings.globalswitches then
  1391. begin
  1392. case vs.initialloc.loc of
  1393. LOC_REFERENCE :
  1394. begin
  1395. if not assigned(vs.initialloc.reference.symbol) then
  1396. list.concat(Tai_comment.Create(strpnew('Var '+vs.realname+' located at '+
  1397. std_regname(vs.initialloc.reference.base)+tostr_with_plus(vs.initialloc.reference.offset))));
  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:=OS_ADDR
  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,sizeof(pint),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.