ncgutil.pas 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499
  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 cpu64bit}
  27. ,cg64f32
  28. {$endif cpu64bit}
  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_reg(list:TAsmList;var l:tlocation;dst_size:TCGSize;maybeconst:boolean);
  50. procedure location_force_fpureg(list:TAsmList;var l: tlocation;maybeconst:boolean);
  51. procedure location_force_mem(list:TAsmList;var l:tlocation);
  52. procedure location_force_mmregscalar(list:TAsmList;var l: tlocation;maybeconst:boolean);
  53. { Retrieve the location of the data pointed to in location l, when the location is
  54. a register it is expected to contain the address of the data }
  55. procedure location_get_data_ref(list:TAsmList;const l:tlocation;var ref:treference;loadref:boolean);
  56. function maybe_pushfpu(list:TAsmList;needed : byte;var l:tlocation) : boolean;
  57. procedure alloc_proc_symbol(pd: tprocdef);
  58. procedure gen_proc_symbol(list:TAsmList);
  59. procedure gen_proc_symbol_end(list:TAsmList);
  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_initialize_code(list:TAsmList);
  67. procedure gen_finalize_code(list:TAsmList);
  68. procedure gen_entry_code(list:TAsmList);
  69. procedure gen_exit_code(list:TAsmList);
  70. procedure gen_load_para_value(list:TAsmList);
  71. procedure gen_load_return_value(list:TAsmList);
  72. procedure gen_external_stub(list:TAsmList;pd:tprocdef;const externalname:string);
  73. procedure gen_intf_wrappers(list:TAsmList;st:tsymtable);
  74. procedure gen_load_vmt_register(list:TAsmList;objdef:tobjectdef;selfloc:tlocation;var vmtreg:tregister);
  75. procedure get_used_regvars(n: tnode; var rv: tusedregvars);
  76. { adds the regvars used in n and its children to rv.allregvars,
  77. those which were already in rv.allregvars to rv.commonregvars and
  78. uses rv.myregvars as scratch (so that two uses of the same regvar
  79. in a single tree to make it appear in commonregvars). Useful to
  80. find out which regvars are used in two different node trees
  81. (e.g. in the "else" and "then" path, or in various case blocks }
  82. // procedure get_used_regvars_common(n: tnode; var rv: tusedregvarscommon);
  83. procedure gen_sync_regvars(list:TAsmList; var rv: tusedregvars);
  84. {#
  85. Allocate the buffers for exception management and setjmp environment.
  86. Return a pointer to these buffers, send them to the utility routine
  87. so they are registered, and then call setjmp.
  88. Then compare the result of setjmp with 0, and if not equal
  89. to zero, then jump to exceptlabel.
  90. Also store the result of setjmp to a temporary space by calling g_save_exception_reason
  91. It is to note that this routine may be called *after* the stackframe of a
  92. routine has been called, therefore on machines where the stack cannot
  93. be modified, all temps should be allocated on the heap instead of the
  94. stack.
  95. }
  96. const
  97. EXCEPT_BUF_SIZE = 3*sizeof(aint);
  98. type
  99. texceptiontemps=record
  100. jmpbuf,
  101. envbuf,
  102. reasonbuf : treference;
  103. end;
  104. procedure get_exception_temps(list:TAsmList;var t:texceptiontemps);
  105. procedure unget_exception_temps(list:TAsmList;const t:texceptiontemps);
  106. procedure new_exception(list:TAsmList;const t:texceptiontemps;exceptlabel:tasmlabel);
  107. procedure free_exception(list:TAsmList;const t:texceptiontemps;a:aint;endexceptlabel:tasmlabel;onlyfree:boolean);
  108. procedure insertbssdata(sym : tglobalvarsym);
  109. procedure gen_alloc_symtable(list:TAsmList;st:tsymtable);
  110. procedure gen_free_symtable(list:TAsmList;st:tsymtable);
  111. { rtti and init/final }
  112. procedure generate_rtti(p:Ttypesym);
  113. procedure generate_inittable(p:tsym);
  114. procedure location_free(list: TAsmList; const location : TLocation);
  115. function getprocalign : shortint;
  116. procedure gen_pic_helpers(list : TAsmList);
  117. procedure gen_got_load(list : TAsmList);
  118. implementation
  119. uses
  120. version,
  121. cutils,cclasses,
  122. globals,systems,verbose,
  123. ppu,defutil,
  124. procinfo,paramgr,fmodule,
  125. regvars,dbgbase,
  126. pass_1,pass_2,
  127. nbas,ncon,nld,nutils,
  128. tgobj,cgobj
  129. {$ifdef powerpc}
  130. , cpupi
  131. {$endif}
  132. {$ifdef powerpc64}
  133. , cpupi
  134. {$endif}
  135. ;
  136. {*****************************************************************************
  137. Misc Helpers
  138. *****************************************************************************}
  139. procedure location_free(list: TAsmList; const location : TLocation);
  140. begin
  141. case location.loc of
  142. LOC_VOID:
  143. ;
  144. LOC_REGISTER,
  145. LOC_CREGISTER:
  146. begin
  147. if getsupreg(location.register)<first_int_imreg then
  148. cg.ungetcpuregister(list,location.register);
  149. end;
  150. LOC_FPUREGISTER,
  151. LOC_CFPUREGISTER:
  152. begin
  153. if getsupreg(location.register)<first_fpu_imreg then
  154. cg.ungetcpuregister(list,location.register);
  155. end;
  156. LOC_MMREGISTER,
  157. LOC_CMMREGISTER :
  158. begin
  159. if getsupreg(location.register)<first_mm_imreg then
  160. cg.ungetcpuregister(list,location.register);
  161. end;
  162. LOC_REFERENCE,
  163. LOC_CREFERENCE :
  164. begin
  165. if use_fixed_stack then
  166. location_freetemp(list,location);
  167. end;
  168. else
  169. internalerror(2004110211);
  170. end;
  171. end;
  172. { DO NOT RELY on the fact that the tnode is not yet swaped
  173. because of inlining code PM }
  174. procedure firstcomplex(p : tbinarynode);
  175. var
  176. hp : tnode;
  177. begin
  178. { always calculate boolean AND and OR from left to right }
  179. if (p.nodetype in [orn,andn]) and
  180. is_boolean(p.left.resulttype.def) then
  181. begin
  182. if nf_swaped in p.flags then
  183. internalerror(234234);
  184. end
  185. else
  186. if (
  187. (p.expectloc=LOC_FPUREGISTER) and
  188. (p.right.registersfpu > p.left.registersfpu)
  189. ) or
  190. (
  191. (
  192. (
  193. ((p.left.registersfpu = 0) and (p.right.registersfpu = 0)) or
  194. (p.expectloc<>LOC_FPUREGISTER)
  195. ) and
  196. (p.left.registersint<p.right.registersint)
  197. )
  198. ) then
  199. begin
  200. hp:=p.left;
  201. p.left:=p.right;
  202. p.right:=hp;
  203. if nf_swaped in p.flags then
  204. exclude(p.flags,nf_swaped)
  205. else
  206. include(p.flags,nf_swaped);
  207. end;
  208. end;
  209. procedure maketojumpbool(list:TAsmList; p : tnode; loadregvars: tloadregvars);
  210. {
  211. produces jumps to true respectively false labels using boolean expressions
  212. depending on whether the loading of regvars is currently being
  213. synchronized manually (such as in an if-node) or automatically (most of
  214. the other cases where this procedure is called), loadregvars can be
  215. "lr_load_regvars" or "lr_dont_load_regvars"
  216. }
  217. var
  218. opsize : tcgsize;
  219. storepos : tfileposinfo;
  220. begin
  221. if nf_error in p.flags then
  222. exit;
  223. storepos:=aktfilepos;
  224. aktfilepos:=p.fileinfo;
  225. if is_boolean(p.resulttype.def) then
  226. begin
  227. {$ifdef OLDREGVARS}
  228. if loadregvars = lr_load_regvars then
  229. load_all_regvars(list);
  230. {$endif OLDREGVARS}
  231. if is_constboolnode(p) then
  232. begin
  233. if tordconstnode(p).value<>0 then
  234. cg.a_jmp_always(list,current_procinfo.CurrTrueLabel)
  235. else
  236. cg.a_jmp_always(list,current_procinfo.CurrFalseLabel)
  237. end
  238. else
  239. begin
  240. opsize:=def_cgsize(p.resulttype.def);
  241. case p.location.loc of
  242. LOC_CREGISTER,LOC_REGISTER,LOC_CREFERENCE,LOC_REFERENCE :
  243. begin
  244. {$ifdef OLDREGVARS}
  245. if (p.location.loc = LOC_CREGISTER) then
  246. load_regvar_reg(list,p.location.register);
  247. {$endif OLDREGVARS}
  248. cg.a_cmp_const_loc_label(list,opsize,OC_NE,0,p.location,current_procinfo.CurrTrueLabel);
  249. cg.a_jmp_always(list,current_procinfo.CurrFalseLabel);
  250. end;
  251. LOC_JUMP:
  252. ;
  253. {$ifdef cpuflags}
  254. LOC_FLAGS :
  255. begin
  256. cg.a_jmp_flags(list,p.location.resflags,current_procinfo.CurrTrueLabel);
  257. cg.a_jmp_always(list,current_procinfo.CurrFalseLabel);
  258. end;
  259. {$endif cpuflags}
  260. else
  261. begin
  262. printnode(output,p);
  263. internalerror(200308241);
  264. end;
  265. end;
  266. end;
  267. end
  268. else
  269. internalerror(200112305);
  270. aktfilepos:=storepos;
  271. end;
  272. (*
  273. This code needs fixing. It is not safe to use rgint; on the m68000 it
  274. would be rgaddr.
  275. procedure remove_non_regvars_from_loc(const t: tlocation; var regs:Tsuperregisterset);
  276. begin
  277. case t.loc of
  278. LOC_REGISTER:
  279. begin
  280. { can't be a regvar, since it would be LOC_CREGISTER then }
  281. exclude(regs,getsupreg(t.register));
  282. if t.register64.reghi<>NR_NO then
  283. exclude(regs,getsupreg(t.register64.reghi));
  284. end;
  285. LOC_CREFERENCE,LOC_REFERENCE:
  286. begin
  287. if not(cs_opt_regvar in aktoptimizerswitches) or
  288. (getsupreg(t.reference.base) in cg.rgint.usableregs) then
  289. exclude(regs,getsupreg(t.reference.base));
  290. if not(cs_opt_regvar in aktoptimizerswitches) or
  291. (getsupreg(t.reference.index) in cg.rgint.usableregs) then
  292. exclude(regs,getsupreg(t.reference.index));
  293. end;
  294. end;
  295. end;
  296. *)
  297. {*****************************************************************************
  298. EXCEPTION MANAGEMENT
  299. *****************************************************************************}
  300. procedure get_exception_temps(list:TAsmList;var t:texceptiontemps);
  301. var
  302. srsym : ttypesym;
  303. begin
  304. if jmp_buf_size=-1 then
  305. begin
  306. srsym:=search_system_type('JMP_BUF');
  307. jmp_buf_size:=srsym.restype.def.size;
  308. end;
  309. tg.GetTemp(list,EXCEPT_BUF_SIZE,tt_persistent,t.envbuf);
  310. tg.GetTemp(list,jmp_buf_size,tt_persistent,t.jmpbuf);
  311. tg.GetTemp(list,sizeof(aint),tt_persistent,t.reasonbuf);
  312. end;
  313. procedure unget_exception_temps(list:TAsmList;const t:texceptiontemps);
  314. begin
  315. tg.Ungettemp(list,t.jmpbuf);
  316. tg.ungettemp(list,t.envbuf);
  317. tg.ungettemp(list,t.reasonbuf);
  318. end;
  319. procedure new_exception(list:TAsmList;const t:texceptiontemps;exceptlabel:tasmlabel);
  320. var
  321. paraloc1,paraloc2,paraloc3 : tcgpara;
  322. begin
  323. paraloc1.init;
  324. paraloc2.init;
  325. paraloc3.init;
  326. paramanager.getintparaloc(pocall_default,1,paraloc1);
  327. paramanager.getintparaloc(pocall_default,2,paraloc2);
  328. paramanager.getintparaloc(pocall_default,3,paraloc3);
  329. paramanager.allocparaloc(list,paraloc3);
  330. cg.a_paramaddr_ref(list,t.envbuf,paraloc3);
  331. paramanager.allocparaloc(list,paraloc2);
  332. cg.a_paramaddr_ref(list,t.jmpbuf,paraloc2);
  333. { push type of exceptionframe }
  334. paramanager.allocparaloc(list,paraloc1);
  335. cg.a_param_const(list,OS_S32,1,paraloc1);
  336. paramanager.freeparaloc(list,paraloc3);
  337. paramanager.freeparaloc(list,paraloc2);
  338. paramanager.freeparaloc(list,paraloc1);
  339. cg.allocallcpuregisters(list);
  340. cg.a_call_name(list,'FPC_PUSHEXCEPTADDR');
  341. cg.deallocallcpuregisters(list);
  342. paramanager.getintparaloc(pocall_default,1,paraloc1);
  343. paramanager.allocparaloc(list,paraloc1);
  344. cg.a_param_reg(list,OS_ADDR,NR_FUNCTION_RESULT_REG,paraloc1);
  345. paramanager.freeparaloc(list,paraloc1);
  346. cg.allocallcpuregisters(list);
  347. cg.a_call_name(list,'FPC_SETJMP');
  348. cg.deallocallcpuregisters(list);
  349. cg.g_exception_reason_save(list, t.reasonbuf);
  350. cg.a_cmp_const_reg_label(list,OS_S32,OC_NE,0,cg.makeregsize(list,NR_FUNCTION_RESULT_REG,OS_S32),exceptlabel);
  351. paraloc1.done;
  352. paraloc2.done;
  353. paraloc3.done;
  354. end;
  355. procedure free_exception(list:TAsmList;const t:texceptiontemps;a:aint;endexceptlabel:tasmlabel;onlyfree:boolean);
  356. begin
  357. cg.allocallcpuregisters(list);
  358. cg.a_call_name(list,'FPC_POPADDRSTACK');
  359. cg.deallocallcpuregisters(list);
  360. if not onlyfree then
  361. begin
  362. cg.g_exception_reason_load(list, t.reasonbuf);
  363. cg.a_cmp_const_reg_label(list,OS_INT,OC_EQ,a,NR_FUNCTION_RESULT_REG,endexceptlabel);
  364. end;
  365. end;
  366. {*****************************************************************************
  367. TLocation
  368. *****************************************************************************}
  369. {$ifndef cpu64bit}
  370. { 32-bit version }
  371. procedure location_force_reg(list:TAsmList;var l:tlocation;dst_size:TCGSize;maybeconst:boolean);
  372. var
  373. hregister,
  374. hregisterhi : tregister;
  375. hreg64 : tregister64;
  376. hl : tasmlabel;
  377. oldloc : tlocation;
  378. const_location: boolean;
  379. begin
  380. oldloc:=l;
  381. if dst_size=OS_NO then
  382. internalerror(200309144);
  383. { handle transformations to 64bit separate }
  384. if dst_size in [OS_64,OS_S64] then
  385. begin
  386. if not (l.size in [OS_64,OS_S64]) then
  387. begin
  388. { load a smaller size to OS_64 }
  389. if l.loc=LOC_REGISTER then
  390. begin
  391. hregister:=cg.makeregsize(list,l.register64.reglo,OS_32);
  392. cg.a_load_reg_reg(list,l.size,OS_32,l.register64.reglo,hregister);
  393. end
  394. else
  395. hregister:=cg.getintregister(list,OS_INT);
  396. { load value in low register }
  397. case l.loc of
  398. LOC_FLAGS :
  399. cg.g_flags2reg(list,OS_INT,l.resflags,hregister);
  400. LOC_JUMP :
  401. begin
  402. cg.a_label(list,current_procinfo.CurrTrueLabel);
  403. cg.a_load_const_reg(list,OS_INT,1,hregister);
  404. current_asmdata.getjumplabel(hl);
  405. cg.a_jmp_always(list,hl);
  406. cg.a_label(list,current_procinfo.CurrFalseLabel);
  407. cg.a_load_const_reg(list,OS_INT,0,hregister);
  408. cg.a_label(list,hl);
  409. end;
  410. else
  411. cg.a_load_loc_reg(list,OS_INT,l,hregister);
  412. end;
  413. { reset hi part, take care of the signed bit of the current value }
  414. hregisterhi:=cg.getintregister(list,OS_INT);
  415. if (l.size in [OS_S8,OS_S16,OS_S32]) then
  416. begin
  417. if l.loc=LOC_CONSTANT then
  418. begin
  419. if (longint(l.value)<0) then
  420. cg.a_load_const_reg(list,OS_32,aint($ffffffff),hregisterhi)
  421. else
  422. cg.a_load_const_reg(list,OS_32,0,hregisterhi);
  423. end
  424. else
  425. begin
  426. cg.a_op_const_reg_reg(list,OP_SAR,OS_32,31,hregister,
  427. hregisterhi);
  428. end;
  429. end
  430. else
  431. cg.a_load_const_reg(list,OS_32,0,hregisterhi);
  432. location_reset(l,LOC_REGISTER,dst_size);
  433. l.register64.reglo:=hregister;
  434. l.register64.reghi:=hregisterhi;
  435. end
  436. else
  437. begin
  438. { 64bit to 64bit }
  439. if ((l.loc=LOC_CREGISTER) and maybeconst) then
  440. begin
  441. hregister:=l.register64.reglo;
  442. hregisterhi:=l.register64.reghi;
  443. const_location := true;
  444. end
  445. else
  446. begin
  447. hregister:=cg.getintregister(list,OS_INT);
  448. hregisterhi:=cg.getintregister(list,OS_INT);
  449. const_location := false;
  450. end;
  451. hreg64.reglo:=hregister;
  452. hreg64.reghi:=hregisterhi;
  453. { load value in new register }
  454. cg64.a_load64_loc_reg(list,l,hreg64);
  455. if not const_location then
  456. location_reset(l,LOC_REGISTER,dst_size)
  457. else
  458. location_reset(l,LOC_CREGISTER,dst_size);
  459. l.register64.reglo:=hregister;
  460. l.register64.reghi:=hregisterhi;
  461. end;
  462. end
  463. else
  464. begin
  465. {Do not bother to recycle the existing register. The register
  466. allocator eliminates unnecessary moves, so it's not needed
  467. and trying to recycle registers can cause problems because
  468. the registers changes size and may need aditional constraints.
  469. Not if it's about LOC_CREGISTER's (JM)
  470. }
  471. const_location :=
  472. (maybeconst) and
  473. (l.loc = LOC_CREGISTER) and
  474. (TCGSize2Size[l.size] = TCGSize2Size[dst_size]) and
  475. ((l.size = dst_size) or
  476. (TCGSize2Size[l.size] = TCGSize2Size[OS_INT]));
  477. if not const_location then
  478. hregister:=cg.getintregister(list,dst_size)
  479. else
  480. hregister := l.register;
  481. { load value in new register }
  482. case l.loc of
  483. LOC_FLAGS :
  484. cg.g_flags2reg(list,dst_size,l.resflags,hregister);
  485. LOC_JUMP :
  486. begin
  487. cg.a_label(list,current_procinfo.CurrTrueLabel);
  488. cg.a_load_const_reg(list,dst_size,1,hregister);
  489. current_asmdata.getjumplabel(hl);
  490. cg.a_jmp_always(list,hl);
  491. cg.a_label(list,current_procinfo.CurrFalseLabel);
  492. cg.a_load_const_reg(list,dst_size,0,hregister);
  493. cg.a_label(list,hl);
  494. end;
  495. else
  496. begin
  497. { load_loc_reg can only handle size >= l.size, when the
  498. new size is smaller then we need to adjust the size
  499. of the orignal and maybe recalculate l.register for i386 }
  500. if (TCGSize2Size[dst_size]<TCGSize2Size[l.size]) then
  501. begin
  502. if (l.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  503. l.register:=cg.makeregsize(list,l.register,dst_size);
  504. { for big endian systems, the reference's offset must }
  505. { be increased in this case, since they have the }
  506. { MSB first in memory and e.g. byte(word_var) should }
  507. { return the second byte in this case (JM) }
  508. if (target_info.endian = ENDIAN_BIG) and
  509. (l.loc in [LOC_REFERENCE,LOC_CREFERENCE]) then
  510. inc(l.reference.offset,TCGSize2Size[l.size]-TCGSize2Size[dst_size]);
  511. {$ifdef x86}
  512. l.size:=dst_size;
  513. {$endif x86}
  514. end;
  515. cg.a_load_loc_reg(list,dst_size,l,hregister);
  516. {$ifndef x86}
  517. if (TCGSize2Size[dst_size]<TCGSize2Size[l.size]) then
  518. l.size:=dst_size;
  519. {$endif not x86}
  520. end;
  521. end;
  522. if not const_location then
  523. location_reset(l,LOC_REGISTER,dst_size)
  524. else
  525. location_reset(l,LOC_CREGISTER,dst_size);
  526. l.register:=hregister;
  527. end;
  528. { Release temp when it was a reference }
  529. if oldloc.loc=LOC_REFERENCE then
  530. location_freetemp(list,oldloc);
  531. end;
  532. {$else cpu64bit}
  533. { 64-bit version }
  534. procedure location_force_reg(list:TAsmList;var l:tlocation;dst_size:TCGSize;maybeconst:boolean);
  535. var
  536. hregister : tregister;
  537. hl : tasmlabel;
  538. oldloc : tlocation;
  539. begin
  540. oldloc:=l;
  541. hregister:=cg.getintregister(list,dst_size);
  542. { load value in new register }
  543. case l.loc of
  544. LOC_FLAGS :
  545. cg.g_flags2reg(list,dst_size,l.resflags,hregister);
  546. LOC_JUMP :
  547. begin
  548. cg.a_label(list,current_procinfo.CurrTrueLabel);
  549. cg.a_load_const_reg(list,dst_size,1,hregister);
  550. current_asmdata.getjumplabel(hl);
  551. cg.a_jmp_always(list,hl);
  552. cg.a_label(list,current_procinfo.CurrFalseLabel);
  553. cg.a_load_const_reg(list,dst_size,0,hregister);
  554. cg.a_label(list,hl);
  555. end;
  556. else
  557. begin
  558. { load_loc_reg can only handle size >= l.size, when the
  559. new size is smaller then we need to adjust the size
  560. of the orignal and maybe recalculate l.register for i386 }
  561. if (TCGSize2Size[dst_size]<TCGSize2Size[l.size]) then
  562. begin
  563. if (l.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  564. l.register:=cg.makeregsize(list,l.register,dst_size);
  565. { for big endian systems, the reference's offset must }
  566. { be increased in this case, since they have the }
  567. { MSB first in memory and e.g. byte(word_var) should }
  568. { return the second byte in this case (JM) }
  569. if (target_info.endian = ENDIAN_BIG) and
  570. (l.loc in [LOC_REFERENCE,LOC_CREFERENCE]) then
  571. inc(l.reference.offset,TCGSize2Size[l.size]-TCGSize2Size[dst_size]);
  572. {$ifdef x86}
  573. l.size:=dst_size;
  574. {$endif x86}
  575. end;
  576. cg.a_load_loc_reg(list,dst_size,l,hregister);
  577. {$ifndef x86}
  578. if (TCGSize2Size[dst_size]<TCGSize2Size[l.size]) then
  579. l.size:=dst_size;
  580. {$endif not x86}
  581. end;
  582. end;
  583. if (l.loc <> LOC_CREGISTER) or
  584. not maybeconst then
  585. location_reset(l,LOC_REGISTER,dst_size)
  586. else
  587. location_reset(l,LOC_CREGISTER,dst_size);
  588. l.register:=hregister;
  589. { Release temp when it was a reference }
  590. if oldloc.loc=LOC_REFERENCE then
  591. location_freetemp(list,oldloc);
  592. end;
  593. {$endif cpu64bit}
  594. procedure location_force_fpureg(list:TAsmList;var l: tlocation;maybeconst:boolean);
  595. var
  596. reg : tregister;
  597. href : treference;
  598. begin
  599. if (l.loc<>LOC_FPUREGISTER) and
  600. ((l.loc<>LOC_CFPUREGISTER) or (not maybeconst)) then
  601. begin
  602. { if it's in an mm register, store to memory first }
  603. if (l.loc in [LOC_MMREGISTER,LOC_CMMREGISTER]) then
  604. begin
  605. tg.GetTemp(list,tcgsize2size[l.size],tt_normal,href);
  606. cg.a_loadmm_reg_ref(list,l.size,l.size,l.register,href,mms_movescalar);
  607. location_reset(l,LOC_REFERENCE,l.size);
  608. l.reference:=href;
  609. end;
  610. reg:=cg.getfpuregister(list,l.size);
  611. cg.a_loadfpu_loc_reg(list,l,reg);
  612. location_freetemp(list,l);
  613. location_reset(l,LOC_FPUREGISTER,l.size);
  614. l.register:=reg;
  615. end;
  616. end;
  617. procedure location_force_mmregscalar(list:TAsmList;var l: tlocation;maybeconst:boolean);
  618. var
  619. reg : tregister;
  620. href : treference;
  621. begin
  622. if (l.loc<>LOC_MMREGISTER) and
  623. ((l.loc<>LOC_CMMREGISTER) or (not maybeconst)) then
  624. begin
  625. { if it's in an fpu register, store to memory first }
  626. if (l.loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER]) then
  627. begin
  628. tg.GetTemp(list,tcgsize2size[l.size],tt_normal,href);
  629. cg.a_loadfpu_reg_ref(list,l.size,l.register,href);
  630. location_reset(l,LOC_REFERENCE,l.size);
  631. l.reference:=href;
  632. end;
  633. reg:=cg.getmmregister(list,l.size);
  634. cg.a_loadmm_loc_reg(list,l.size,l,reg,mms_movescalar);
  635. location_freetemp(list,l);
  636. location_reset(l,LOC_MMREGISTER,l.size);
  637. l.register:=reg;
  638. end;
  639. end;
  640. procedure location_force_mem(list:TAsmList;var l:tlocation);
  641. var
  642. r : treference;
  643. begin
  644. case l.loc of
  645. LOC_FPUREGISTER,
  646. LOC_CFPUREGISTER :
  647. begin
  648. tg.GetTemp(list,TCGSize2Size[l.size],tt_normal,r);
  649. cg.a_loadfpu_reg_ref(list,l.size,l.register,r);
  650. location_reset(l,LOC_REFERENCE,l.size);
  651. l.reference:=r;
  652. end;
  653. LOC_MMREGISTER,
  654. LOC_CMMREGISTER:
  655. begin
  656. tg.GetTemp(list,TCGSize2Size[l.size],tt_normal,r);
  657. cg.a_loadmm_reg_ref(list,l.size,l.size,l.register,r,mms_movescalar);
  658. location_reset(l,LOC_REFERENCE,l.size);
  659. l.reference:=r;
  660. end;
  661. LOC_CONSTANT,
  662. LOC_REGISTER,
  663. LOC_CREGISTER :
  664. begin
  665. tg.GetTemp(list,TCGSize2Size[l.size],tt_normal,r);
  666. {$ifndef cpu64bit}
  667. if l.size in [OS_64,OS_S64] then
  668. cg64.a_load64_loc_ref(list,l,r)
  669. else
  670. {$endif cpu64bit}
  671. cg.a_load_loc_ref(list,l.size,l,r);
  672. location_reset(l,LOC_REFERENCE,l.size);
  673. l.reference:=r;
  674. end;
  675. LOC_CREFERENCE,
  676. LOC_REFERENCE : ;
  677. else
  678. internalerror(200203219);
  679. end;
  680. end;
  681. procedure location_get_data_ref(list:TAsmList;const l:tlocation;var ref:treference;loadref:boolean);
  682. begin
  683. case l.loc of
  684. LOC_REGISTER,
  685. LOC_CREGISTER :
  686. begin
  687. if not loadref then
  688. internalerror(200410231);
  689. reference_reset_base(ref,l.register,0);
  690. end;
  691. LOC_REFERENCE,
  692. LOC_CREFERENCE :
  693. begin
  694. if loadref then
  695. begin
  696. reference_reset_base(ref,cg.getaddressregister(list),0);
  697. cg.a_load_ref_reg(list,OS_ADDR,OS_ADDR,l.reference,ref.base);
  698. end
  699. else
  700. ref:=l.reference;
  701. end;
  702. else
  703. internalerror(200309181);
  704. end;
  705. end;
  706. {*****************************************************************************
  707. Maybe_Save
  708. *****************************************************************************}
  709. function maybe_pushfpu(list:TAsmList;needed : byte;var l:tlocation) : boolean;
  710. begin
  711. {$ifdef i386}
  712. if (needed>=maxfpuregs) and
  713. (l.loc = LOC_FPUREGISTER) then
  714. begin
  715. location_force_mem(list,l);
  716. maybe_pushfpu:=true;
  717. end
  718. else
  719. maybe_pushfpu:=false;
  720. {$else i386}
  721. maybe_pushfpu:=false;
  722. {$endif i386}
  723. end;
  724. {****************************************************************************
  725. Init/Finalize Code
  726. ****************************************************************************}
  727. procedure copyvalueparas(p : tnamedindexitem;arg:pointer);
  728. var
  729. href : treference;
  730. hreg : tregister;
  731. list : TAsmList;
  732. hsym : tparavarsym;
  733. l : longint;
  734. localcopyloc : tlocation;
  735. begin
  736. list:=TAsmList(arg);
  737. if (tsym(p).typ=paravarsym) and
  738. (tparavarsym(p).varspez=vs_value) and
  739. (paramanager.push_addr_param(tparavarsym(p).varspez,tparavarsym(p).vartype.def,current_procinfo.procdef.proccalloption)) then
  740. begin
  741. location_get_data_ref(list,tparavarsym(p).localloc,href,true);
  742. if is_open_array(tparavarsym(p).vartype.def) or
  743. is_array_of_const(tparavarsym(p).vartype.def) then
  744. begin
  745. { cdecl functions don't have a high pointer so it is not possible to generate
  746. a local copy }
  747. if not(current_procinfo.procdef.proccalloption in [pocall_cdecl,pocall_cppdecl]) then
  748. begin
  749. hsym:=tparavarsym(tsym(p).owner.search('high'+p.name));
  750. if not assigned(hsym) then
  751. internalerror(200306061);
  752. hreg:=cg.getaddressregister(list);
  753. cg.g_copyvaluepara_openarray(list,href,hsym.localloc,tarraydef(tparavarsym(p).vartype.def).elesize,hreg);
  754. cg.a_load_reg_loc(list,OS_ADDR,hreg,tparavarsym(p).localloc);
  755. end;
  756. end
  757. else
  758. begin
  759. { Allocate space for the local copy }
  760. l:=tparavarsym(p).getsize;
  761. localcopyloc.loc:=LOC_REFERENCE;
  762. localcopyloc.size:=int_cgsize(l);
  763. tg.GetLocal(list,l,tparavarsym(p).vartype.def,localcopyloc.reference);
  764. { Copy data }
  765. if is_shortstring(tparavarsym(p).vartype.def) then
  766. begin
  767. { this code is only executed before the code for the body and the entry/exit code is generated
  768. so we're allowed to include pi_do_call here; after pass1 is run, this isn't allowed anymore
  769. }
  770. include(current_procinfo.flags,pi_do_call);
  771. cg.g_copyshortstring(list,href,localcopyloc.reference,tstringdef(tparavarsym(p).vartype.def).len)
  772. end
  773. else
  774. cg.g_concatcopy(list,href,localcopyloc.reference,tparavarsym(p).vartype.def.size);
  775. { update localloc of varsym }
  776. tg.Ungetlocal(list,tparavarsym(p).localloc.reference);
  777. tparavarsym(p).localloc:=localcopyloc;
  778. end;
  779. end;
  780. end;
  781. { initializes the regvars from staticsymtable with 0 }
  782. procedure initialize_regvars(p : tnamedindexitem;arg:pointer);
  783. begin
  784. if (tsym(p).typ=globalvarsym) then
  785. begin
  786. case tglobalvarsym(p).localloc.loc of
  787. LOC_CREGISTER :
  788. cg.a_load_const_reg(TAsmList(arg),reg_cgsize(tglobalvarsym(p).localloc.register),0,
  789. tglobalvarsym(p).localloc.register);
  790. LOC_REFERENCE : ;
  791. LOC_CMMREGISTER :
  792. { clear the whole register }
  793. cg.a_opmm_reg_reg(TAsmList(arg),OP_XOR,reg_cgsize(tglobalvarsym(p).localloc.register),
  794. tglobalvarsym(p).localloc.register,
  795. tglobalvarsym(p).localloc.register,
  796. nil);
  797. LOC_CFPUREGISTER :
  798. ;
  799. else
  800. internalerror(200410124);
  801. end;
  802. end;
  803. end;
  804. { generates the code for initialisation of local data }
  805. procedure initialize_data(p : tnamedindexitem;arg:pointer);
  806. var
  807. OldAsmList : TAsmList;
  808. hp : tnode;
  809. begin
  810. if (tsym(p).typ in [globalvarsym,localvarsym]) and
  811. (tabstractvarsym(p).refs>0) and
  812. not(vo_is_external in tabstractvarsym(p).varoptions) and
  813. not(is_class(tabstractvarsym(p).vartype.def)) and
  814. tabstractvarsym(p).vartype.def.needs_inittable then
  815. begin
  816. OldAsmList:=current_asmdata.CurrAsmList;
  817. current_asmdata.CurrAsmList:=TAsmList(arg);
  818. hp:=initialize_data_node(cloadnode.create(tsym(p),tsym(p).owner));
  819. firstpass(hp);
  820. secondpass(hp);
  821. hp.free;
  822. current_asmdata.CurrAsmList:=OldAsmList;
  823. end;
  824. end;
  825. procedure finalize_sym(asmlist:TAsmList;sym:tsym);
  826. var
  827. hp : tnode;
  828. OldAsmList : TAsmList;
  829. begin
  830. include(current_procinfo.flags,pi_needs_implicit_finally);
  831. OldAsmList:=current_asmdata.CurrAsmList;
  832. current_asmdata.CurrAsmList:=asmlist;
  833. hp:=finalize_data_node(cloadnode.create(sym,sym.owner));
  834. firstpass(hp);
  835. secondpass(hp);
  836. hp.free;
  837. current_asmdata.CurrAsmList:=OldAsmList;
  838. end;
  839. { generates the code for finalisation of local variables }
  840. procedure finalize_local_vars(p : tnamedindexitem;arg:pointer);
  841. begin
  842. if (tsym(p).typ=localvarsym) and
  843. (tlocalvarsym(p).refs>0) and
  844. not(vo_is_external in tlocalvarsym(p).varoptions) and
  845. not(vo_is_funcret in tlocalvarsym(p).varoptions) and
  846. not(is_class(tlocalvarsym(p).vartype.def)) and
  847. tlocalvarsym(p).vartype.def.needs_inittable then
  848. finalize_sym(TAsmList(arg),tsym(p));
  849. end;
  850. { generates the code for finalisation of local typedconsts }
  851. procedure finalize_local_typedconst(p : tnamedindexitem;arg:pointer);
  852. var
  853. i : longint;
  854. pd : tprocdef;
  855. begin
  856. case tsym(p).typ of
  857. typedconstsym :
  858. begin
  859. if ttypedconstsym(p).is_writable and
  860. ttypedconstsym(p).typedconsttype.def.needs_inittable then
  861. finalize_sym(TAsmList(arg),tsym(p));
  862. end;
  863. procsym :
  864. begin
  865. for i:=1 to tprocsym(p).procdef_count do
  866. begin
  867. pd:=tprocsym(p).procdef[i];
  868. if assigned(pd.localst) and
  869. (pd.procsym=tprocsym(p)) and
  870. (pd.localst.symtabletype<>staticsymtable) then
  871. pd.localst.foreach_static(@finalize_local_typedconst,arg);
  872. end;
  873. end;
  874. end;
  875. end;
  876. { generates the code for finalization of static symtable and
  877. all local (static) typedconsts }
  878. procedure finalize_static_data(p : tnamedindexitem;arg:pointer);
  879. var
  880. i : longint;
  881. pd : tprocdef;
  882. begin
  883. case tsym(p).typ of
  884. globalvarsym :
  885. begin
  886. if (tglobalvarsym(p).refs>0) and
  887. not(vo_is_funcret in tglobalvarsym(p).varoptions) and
  888. not(vo_is_external in tglobalvarsym(p).varoptions) and
  889. not(is_class(tglobalvarsym(p).vartype.def)) and
  890. tglobalvarsym(p).vartype.def.needs_inittable then
  891. finalize_sym(TAsmList(arg),tsym(p));
  892. end;
  893. typedconstsym :
  894. begin
  895. if ttypedconstsym(p).is_writable and
  896. ttypedconstsym(p).typedconsttype.def.needs_inittable then
  897. finalize_sym(TAsmList(arg),tsym(p));
  898. end;
  899. procsym :
  900. begin
  901. for i:=1 to tprocsym(p).procdef_count do
  902. begin
  903. pd:=tprocsym(p).procdef[i];
  904. if assigned(pd.localst) and
  905. (pd.procsym=tprocsym(p)) and
  906. (pd.localst.symtabletype<>staticsymtable) then
  907. pd.localst.foreach_static(@finalize_local_typedconst,arg);
  908. end;
  909. end;
  910. end;
  911. end;
  912. { generates the code for incrementing the reference count of parameters and
  913. initialize out parameters }
  914. procedure init_paras(p : tnamedindexitem;arg:pointer);
  915. var
  916. href : treference;
  917. tmpreg : tregister;
  918. list : TAsmList;
  919. begin
  920. list:=TAsmList(arg);
  921. if (tsym(p).typ=paravarsym) and
  922. not is_class_or_interface(tparavarsym(p).vartype.def) and
  923. tparavarsym(p).vartype.def.needs_inittable then
  924. begin
  925. case tparavarsym(p).varspez of
  926. vs_value :
  927. begin
  928. location_get_data_ref(list,tparavarsym(p).localloc,href,is_open_array(tparavarsym(p).vartype.def));
  929. cg.g_incrrefcount(list,tparavarsym(p).vartype.def,href);
  930. end;
  931. vs_out :
  932. begin
  933. tmpreg:=cg.getaddressregister(list);
  934. cg.a_load_loc_reg(list,OS_ADDR,tparavarsym(p).localloc,tmpreg);
  935. reference_reset_base(href,tmpreg,0);
  936. cg.g_initialize(list,tparavarsym(p).vartype.def,href);
  937. end;
  938. end;
  939. end;
  940. end;
  941. { generates the code for decrementing the reference count of parameters }
  942. procedure final_paras(p : tnamedindexitem;arg:pointer);
  943. var
  944. list : TAsmList;
  945. href : treference;
  946. begin
  947. if not(tsym(p).typ=paravarsym) then
  948. exit;
  949. list:=TAsmList(arg);
  950. if not is_class_or_interface(tparavarsym(p).vartype.def) and
  951. tparavarsym(p).vartype.def.needs_inittable then
  952. begin
  953. if (tparavarsym(p).varspez=vs_value) then
  954. begin
  955. include(current_procinfo.flags,pi_needs_implicit_finally);
  956. location_get_data_ref(list,tparavarsym(p).localloc,href,is_open_array(tparavarsym(p).vartype.def));
  957. cg.g_decrrefcount(list,tparavarsym(p).vartype.def,href);
  958. end;
  959. end
  960. else
  961. if (tparavarsym(p).varspez=vs_value) and
  962. (is_open_array(tparavarsym(p).vartype.def) or
  963. is_array_of_const(tparavarsym(p).vartype.def)) then
  964. begin
  965. { cdecl functions don't have a high pointer so it is not possible to generate
  966. a local copy }
  967. if not(current_procinfo.procdef.proccalloption in [pocall_cdecl,pocall_cppdecl]) then
  968. cg.g_releasevaluepara_openarray(list,tparavarsym(p).localloc);
  969. end;
  970. end;
  971. { Initialize temp ansi/widestrings,interfaces }
  972. procedure inittempvariables(list:TAsmList);
  973. var
  974. hp : ptemprecord;
  975. href : treference;
  976. begin
  977. hp:=tg.templist;
  978. while assigned(hp) do
  979. begin
  980. if assigned(hp^.def) and
  981. hp^.def.needs_inittable then
  982. begin
  983. reference_reset_base(href,current_procinfo.framepointer,hp^.pos);
  984. cg.g_initialize(list,hp^.def,href);
  985. end;
  986. hp:=hp^.next;
  987. end;
  988. end;
  989. procedure finalizetempvariables(list:TAsmList);
  990. var
  991. hp : ptemprecord;
  992. href : treference;
  993. begin
  994. hp:=tg.templist;
  995. while assigned(hp) do
  996. begin
  997. if assigned(hp^.def) and
  998. hp^.def.needs_inittable then
  999. begin
  1000. include(current_procinfo.flags,pi_needs_implicit_finally);
  1001. reference_reset_base(href,current_procinfo.framepointer,hp^.pos);
  1002. cg.g_finalize(list,hp^.def,href);
  1003. end;
  1004. hp:=hp^.next;
  1005. end;
  1006. end;
  1007. procedure gen_load_return_value(list:TAsmList);
  1008. var
  1009. {$ifndef cpu64bit}
  1010. href : treference;
  1011. {$endif cpu64bit}
  1012. ressym : tabstractnormalvarsym;
  1013. resloc,
  1014. restmploc : tlocation;
  1015. hreg : tregister;
  1016. funcretloc : tlocation;
  1017. begin
  1018. { Is the loading needed? }
  1019. if (current_procinfo.procdef.funcretloc[calleeside].loc=LOC_VOID) or
  1020. (
  1021. (po_assembler in current_procinfo.procdef.procoptions) and
  1022. (not(assigned(current_procinfo.procdef.funcretsym)) or
  1023. (tabstractvarsym(current_procinfo.procdef.funcretsym).refs=0))
  1024. ) then
  1025. exit;
  1026. funcretloc:=current_procinfo.procdef.funcretloc[calleeside];
  1027. { constructors return self }
  1028. if (current_procinfo.procdef.proctypeoption=potype_constructor) then
  1029. ressym:=tabstractnormalvarsym(current_procinfo.procdef.parast.search('self'))
  1030. else
  1031. ressym:=tabstractnormalvarsym(current_procinfo.procdef.funcretsym);
  1032. if (ressym.refs>0) then
  1033. begin
  1034. {$ifdef OLDREGVARS}
  1035. case ressym.localloc.loc of
  1036. LOC_CFPUREGISTER,
  1037. LOC_FPUREGISTER:
  1038. begin
  1039. location_reset(restmploc,LOC_CFPUREGISTER,funcretloc^.size);
  1040. restmploc.register:=ressym.localloc.register;
  1041. end;
  1042. LOC_CREGISTER,
  1043. LOC_REGISTER:
  1044. begin
  1045. location_reset(restmploc,LOC_CREGISTER,funcretloc^.size);
  1046. restmploc.register:=ressym.localloc.register;
  1047. end;
  1048. LOC_MMREGISTER:
  1049. begin
  1050. location_reset(restmploc,LOC_CMMREGISTER,funcretloc^.size);
  1051. restmploc.register:=ressym.localloc.register;
  1052. end;
  1053. LOC_REFERENCE:
  1054. begin
  1055. location_reset(restmploc,LOC_REFERENCE,funcretloc^.size);
  1056. restmploc.reference:=ressym.localloc.reference;
  1057. end;
  1058. else
  1059. internalerror(200309184);
  1060. end;
  1061. {$else}
  1062. restmploc:=ressym.localloc;
  1063. {$endif}
  1064. { Here, we return the function result. In most architectures, the value is
  1065. passed into the FUNCTION_RETURN_REG, but in a windowed architecure like sparc a
  1066. function returns in a register and the caller receives it in an other one }
  1067. case funcretloc.loc of
  1068. LOC_REGISTER:
  1069. begin
  1070. {$ifndef cpu64bit}
  1071. if current_procinfo.procdef.funcretloc[calleeside].size in [OS_64,OS_S64] then
  1072. begin
  1073. resloc:=current_procinfo.procdef.funcretloc[calleeside];
  1074. if resloc.loc<>LOC_REGISTER then
  1075. internalerror(200409141);
  1076. { Load low and high register separate to generate better register
  1077. allocation info }
  1078. if getsupreg(resloc.register64.reglo)<first_int_imreg then
  1079. begin
  1080. cg.getcpuregister(list,resloc.register64.reglo);
  1081. end;
  1082. case restmploc.loc of
  1083. LOC_REFERENCE :
  1084. begin
  1085. href:=restmploc.reference;
  1086. if target_info.endian=ENDIAN_BIG then
  1087. inc(href.offset,4);
  1088. cg.a_load_ref_reg(list,OS_32,OS_32,href,resloc.register64.reglo);
  1089. end;
  1090. LOC_CREGISTER :
  1091. cg.a_load_reg_reg(list,OS_32,OS_32,restmploc.register64.reglo,resloc.register64.reglo);
  1092. else
  1093. internalerror(200409203);
  1094. end;
  1095. if getsupreg(resloc.register64.reghi)<first_int_imreg then
  1096. begin
  1097. cg.getcpuregister(list,resloc.register64.reghi);
  1098. end;
  1099. case restmploc.loc of
  1100. LOC_REFERENCE :
  1101. begin
  1102. href:=restmploc.reference;
  1103. if target_info.endian=ENDIAN_LITTLE then
  1104. inc(href.offset,4);
  1105. cg.a_load_ref_reg(list,OS_32,OS_32,href,resloc.register64.reghi);
  1106. end;
  1107. LOC_CREGISTER :
  1108. cg.a_load_reg_reg(list,OS_32,OS_32,restmploc.register64.reghi,resloc.register64.reghi);
  1109. else
  1110. internalerror(200409204);
  1111. end;
  1112. end
  1113. else
  1114. {$endif cpu64bit}
  1115. begin
  1116. hreg:=cg.makeregsize(list,funcretloc.register,funcretloc.size);
  1117. if getsupreg(funcretloc.register)<first_int_imreg then
  1118. begin
  1119. cg.getcpuregister(list,funcretloc.register);
  1120. end;
  1121. { it could be that a structure is passed in memory but the function is expected to
  1122. return a pointer to this memory }
  1123. if paramanager.ret_in_param(current_procinfo.procdef.rettype.def,current_procinfo.procdef.proccalloption) then
  1124. cg.a_load_loc_reg(list,OS_ADDR,restmploc,hreg)
  1125. else
  1126. cg.a_load_loc_reg(list,restmploc.size,restmploc,hreg);
  1127. end;
  1128. end;
  1129. LOC_FPUREGISTER:
  1130. begin
  1131. if getsupreg(funcretloc.register)<first_fpu_imreg then
  1132. begin
  1133. cg.getcpuregister(list,funcretloc.register);
  1134. end;
  1135. { we can't do direct moves between fpu and mm registers }
  1136. if restmploc.loc in [LOC_MMREGISTER,LOC_CMMREGISTER] then
  1137. location_force_fpureg(list,restmploc,false);
  1138. cg.a_loadfpu_loc_reg(list,restmploc,funcretloc.register);
  1139. end;
  1140. LOC_MMREGISTER:
  1141. begin
  1142. if getsupreg(funcretloc.register)<first_mm_imreg then
  1143. begin
  1144. cg.getcpuregister(list,funcretloc.register);
  1145. end;
  1146. cg.a_loadmm_loc_reg(list,restmploc.size,restmploc,funcretloc.register,mms_movescalar);
  1147. end;
  1148. LOC_INVALID,
  1149. LOC_REFERENCE:
  1150. ;
  1151. else
  1152. internalerror(200405025);
  1153. end;
  1154. end
  1155. {$ifdef x86}
  1156. else
  1157. begin
  1158. { the caller will pop a value off the cpu stack }
  1159. if (funcretloc.loc = LOC_FPUREGISTER) then
  1160. list.concat(taicpu.op_none(A_FLDZ));
  1161. end;
  1162. {$endif x86}
  1163. end;
  1164. procedure gen_alloc_regvar(list:TAsmList;sym: tabstractnormalvarsym);
  1165. begin
  1166. case sym.localloc.loc of
  1167. LOC_CREGISTER:
  1168. begin
  1169. {$ifndef cpu64bit}
  1170. if sym.localloc.size in [OS_64,OS_S64] then
  1171. begin
  1172. sym.localloc.register64.reglo:=cg.getintregister(list,OS_32);
  1173. sym.localloc.register64.reghi:=cg.getintregister(list,OS_32);
  1174. end
  1175. else
  1176. {$endif cpu64bit}
  1177. sym.localloc.register:=cg.getintregister(list,sym.localloc.size);
  1178. end;
  1179. LOC_CFPUREGISTER:
  1180. begin
  1181. sym.localloc.register:=cg.getfpuregister(list,sym.localloc.size);
  1182. end;
  1183. LOC_CMMREGISTER:
  1184. begin
  1185. sym. localloc.register:=cg.getmmregister(list,sym.localloc.size);
  1186. end;
  1187. end;
  1188. if (pi_has_goto in current_procinfo.flags) then
  1189. begin
  1190. { Allocate register already, to prevent first allocation to be
  1191. inside a loop }
  1192. {$ifndef cpu64bit}
  1193. if sym.localloc.size in [OS_64,OS_S64] then
  1194. begin
  1195. cg.a_reg_sync(list,sym.localloc.register64.reglo);
  1196. cg.a_reg_sync(list,sym.localloc.register64.reghi);
  1197. end
  1198. else
  1199. {$endif cpu64bit}
  1200. cg.a_reg_sync(list,sym.localloc.register);
  1201. end;
  1202. end;
  1203. procedure gen_load_para_value(list:TAsmList);
  1204. procedure get_para(const paraloc:TCGParaLocation);
  1205. begin
  1206. case paraloc.loc of
  1207. LOC_REGISTER :
  1208. begin
  1209. if getsupreg(paraloc.register)<first_int_imreg then
  1210. cg.getcpuregister(list,paraloc.register);
  1211. end;
  1212. LOC_MMREGISTER :
  1213. begin
  1214. if getsupreg(paraloc.register)<first_mm_imreg then
  1215. cg.getcpuregister(list,paraloc.register);
  1216. end;
  1217. LOC_FPUREGISTER :
  1218. begin
  1219. if getsupreg(paraloc.register)<first_fpu_imreg then
  1220. cg.getcpuregister(list,paraloc.register);
  1221. end;
  1222. end;
  1223. end;
  1224. procedure unget_para(const paraloc:TCGParaLocation);
  1225. begin
  1226. case paraloc.loc of
  1227. LOC_REGISTER :
  1228. begin
  1229. if getsupreg(paraloc.register)<first_int_imreg then
  1230. cg.ungetcpuregister(list,paraloc.register);
  1231. end;
  1232. LOC_MMREGISTER :
  1233. begin
  1234. if getsupreg(paraloc.register)<first_mm_imreg then
  1235. cg.ungetcpuregister(list,paraloc.register);
  1236. end;
  1237. LOC_FPUREGISTER :
  1238. begin
  1239. if getsupreg(paraloc.register)<first_fpu_imreg then
  1240. cg.ungetcpuregister(list,paraloc.register);
  1241. end;
  1242. end;
  1243. end;
  1244. procedure gen_load_ref(const paraloc:TCGParaLocation;const ref:treference;sizeleft:aint);
  1245. var
  1246. href : treference;
  1247. begin
  1248. case paraloc.loc of
  1249. LOC_REGISTER :
  1250. begin
  1251. {$IFDEF POWERPC64}
  1252. if (paraloc.shiftval <> 0) then
  1253. cg.a_op_const_reg_reg(list, OP_SHL, OS_INT, paraloc.shiftval, paraloc.register, paraloc.register);
  1254. {$ENDIF POWERPC64}
  1255. cg.a_load_reg_ref(list,paraloc.size,paraloc.size,paraloc.register,ref);
  1256. end;
  1257. LOC_MMREGISTER :
  1258. cg.a_loadmm_reg_ref(list,paraloc.size,paraloc.size,paraloc.register,ref,mms_movescalar);
  1259. LOC_FPUREGISTER :
  1260. cg.a_loadfpu_reg_ref(list,paraloc.size,paraloc.register,ref);
  1261. LOC_REFERENCE :
  1262. begin
  1263. reference_reset_base(href,paraloc.reference.index,paraloc.reference.offset);
  1264. { use concatcopy, because it can also be a float which fails when
  1265. load_ref_ref is used. Don't copy data when the references are equal }
  1266. if not((href.base=ref.base) and (href.offset=ref.offset)) then
  1267. cg.g_concatcopy(list,href,ref,sizeleft);
  1268. end;
  1269. else
  1270. internalerror(2002081302);
  1271. end;
  1272. end;
  1273. procedure gen_load_reg(const paraloc:TCGParaLocation;reg:tregister);
  1274. var
  1275. href : treference;
  1276. begin
  1277. case paraloc.loc of
  1278. LOC_REGISTER :
  1279. cg.a_load_reg_reg(list,paraloc.size,paraloc.size,paraloc.register,reg);
  1280. LOC_MMREGISTER :
  1281. cg.a_loadmm_reg_reg(list,paraloc.size,paraloc.size,paraloc.register,reg,mms_movescalar);
  1282. LOC_FPUREGISTER :
  1283. cg.a_loadfpu_reg_reg(list,paraloc.size,paraloc.register,reg);
  1284. LOC_REFERENCE :
  1285. begin
  1286. reference_reset_base(href,paraloc.reference.index,paraloc.reference.offset);
  1287. case getregtype(reg) of
  1288. R_INTREGISTER :
  1289. cg.a_load_ref_reg(list,paraloc.size,paraloc.size,href,reg);
  1290. R_FPUREGISTER :
  1291. cg.a_loadfpu_ref_reg(list,paraloc.size,href,reg);
  1292. R_MMREGISTER :
  1293. cg.a_loadmm_ref_reg(list,paraloc.size,paraloc.size,href,reg,mms_movescalar);
  1294. else
  1295. internalerror(2004101012);
  1296. end;
  1297. end;
  1298. else
  1299. internalerror(2002081302);
  1300. end;
  1301. end;
  1302. var
  1303. i : longint;
  1304. currpara : tparavarsym;
  1305. paraloc : pcgparalocation;
  1306. href : treference;
  1307. sizeleft : aint;
  1308. {$ifdef sparc}
  1309. tempref : treference;
  1310. {$endif sparc}
  1311. begin
  1312. if (po_assembler in current_procinfo.procdef.procoptions) then
  1313. exit;
  1314. { Allocate registers used by parameters }
  1315. for i:=0 to current_procinfo.procdef.paras.count-1 do
  1316. begin
  1317. currpara:=tparavarsym(current_procinfo.procdef.paras[i]);
  1318. paraloc:=currpara.paraloc[calleeside].location;
  1319. while assigned(paraloc) do
  1320. begin
  1321. if paraloc^.loc in [LOC_REGISTER,LOC_FPUREGISTER,LOC_MMREGISTER] then
  1322. get_para(paraloc^);
  1323. paraloc:=paraloc^.next;
  1324. end;
  1325. end;
  1326. { Copy parameters to local references/registers }
  1327. for i:=0 to current_procinfo.procdef.paras.count-1 do
  1328. begin
  1329. currpara:=tparavarsym(current_procinfo.procdef.paras[i]);
  1330. paraloc:=currpara.paraloc[calleeside].location;
  1331. { skip e.g. empty records }
  1332. if not assigned(paraloc) then
  1333. internalerror(200408203);
  1334. if (paraloc^.loc = LOC_VOID) then
  1335. continue;
  1336. case currpara.localloc.loc of
  1337. LOC_REFERENCE :
  1338. begin
  1339. { If the parameter location is reused we don't need to copy
  1340. anything }
  1341. if not paramanager.param_use_paraloc(currpara.paraloc[calleeside]) then
  1342. begin
  1343. href:=currpara.localloc.reference;
  1344. sizeleft:=currpara.paraloc[calleeside].intsize;
  1345. while assigned(paraloc) do
  1346. begin
  1347. unget_para(paraloc^);
  1348. if (paraloc^.size=OS_NO) then
  1349. begin
  1350. { Can only be a reference that contains the rest
  1351. of the parameter }
  1352. if (paraloc^.loc<>LOC_REFERENCE) or
  1353. assigned(paraloc^.next) then
  1354. internalerror(2005013010);
  1355. gen_load_ref(paraloc^,href,sizeleft);
  1356. inc(href.offset,sizeleft);
  1357. sizeleft:=0;
  1358. end
  1359. else
  1360. begin
  1361. gen_load_ref(paraloc^,href,tcgsize2size[paraloc^.size]);
  1362. inc(href.offset,TCGSize2Size[paraloc^.size]);
  1363. dec(sizeleft,TCGSize2Size[paraloc^.size]);
  1364. end;
  1365. paraloc:=paraloc^.next;
  1366. end;
  1367. end;
  1368. end;
  1369. LOC_CREGISTER :
  1370. begin
  1371. {$ifndef cpu64bit}
  1372. if (currpara.paraloc[calleeside].size in [OS_64,OS_S64]) and
  1373. is_64bit(currpara.vartype.def) then
  1374. begin
  1375. case paraloc^.loc of
  1376. LOC_REGISTER:
  1377. begin
  1378. if not assigned(paraloc^.next) then
  1379. internalerror(200410104);
  1380. if (target_info.endian=ENDIAN_BIG) then
  1381. begin
  1382. { paraloc^ -> high
  1383. paraloc^.next -> low }
  1384. unget_para(paraloc^);
  1385. gen_alloc_regvar(list,currpara);
  1386. gen_load_reg(paraloc^,currpara.localloc.register64.reghi);
  1387. unget_para(paraloc^.next^);
  1388. gen_load_reg(paraloc^.next^,currpara.localloc.register64.reglo);
  1389. end
  1390. else
  1391. begin
  1392. { paraloc^ -> low
  1393. paraloc^.next -> high }
  1394. unget_para(paraloc^);
  1395. gen_alloc_regvar(list,currpara);
  1396. gen_load_reg(paraloc^,currpara.localloc.register64.reglo);
  1397. unget_para(paraloc^.next^);
  1398. gen_load_reg(paraloc^.next^,currpara.localloc.register64.reghi);
  1399. end;
  1400. end;
  1401. LOC_REFERENCE:
  1402. begin
  1403. gen_alloc_regvar(list,currpara);
  1404. reference_reset_base(href,paraloc^.reference.index,paraloc^.reference.offset);
  1405. cg64.a_load64_ref_reg(list,href,currpara.localloc.register64);
  1406. unget_para(paraloc^);
  1407. end;
  1408. else
  1409. internalerror(2005101501);
  1410. end
  1411. end
  1412. else
  1413. {$endif cpu64bit}
  1414. begin
  1415. if assigned(paraloc^.next) then
  1416. internalerror(200410105);
  1417. unget_para(paraloc^);
  1418. gen_alloc_regvar(list,currpara);
  1419. gen_load_reg(paraloc^,currpara.localloc.register);
  1420. end;
  1421. end;
  1422. LOC_CFPUREGISTER :
  1423. begin
  1424. {$ifdef sparc}
  1425. { Sparc passes floats in int registers, when loading to fpu register
  1426. we need a temp }
  1427. sizeleft := TCGSize2Size[currpara.localloc.size];
  1428. tg.GetTemp(list,sizeleft,tt_normal,tempref);
  1429. href:=tempref;
  1430. while assigned(paraloc) do
  1431. begin
  1432. unget_para(paraloc^);
  1433. gen_load_ref(paraloc^,href,sizeleft);
  1434. inc(href.offset,TCGSize2Size[paraloc^.size]);
  1435. dec(sizeleft,TCGSize2Size[paraloc^.size]);
  1436. paraloc:=paraloc^.next;
  1437. end;
  1438. gen_alloc_regvar(list,currpara);
  1439. cg.a_loadfpu_ref_reg(list,currpara.localloc.size,tempref,currpara.localloc.register);
  1440. tg.UnGetTemp(list,tempref);
  1441. {$else sparc}
  1442. unget_para(paraloc^);
  1443. gen_alloc_regvar(list,currpara);
  1444. gen_load_reg(paraloc^,currpara.localloc.register);
  1445. if assigned(paraloc^.next) then
  1446. internalerror(200410109);
  1447. {$endif sparc}
  1448. end;
  1449. LOC_CMMREGISTER :
  1450. begin
  1451. unget_para(paraloc^);
  1452. gen_alloc_regvar(list,currpara);
  1453. gen_load_reg(paraloc^,currpara.localloc.register);
  1454. { data could come in two memory locations, for now
  1455. we simply ignore the sanity check (FK)
  1456. if assigned(paraloc^.next) then
  1457. internalerror(200410108);
  1458. }
  1459. end;
  1460. end;
  1461. end;
  1462. { generate copies of call by value parameters, must be done before
  1463. the initialization and body is parsed because the refcounts are
  1464. incremented using the local copies }
  1465. current_procinfo.procdef.parast.foreach_static({$ifndef TP}@{$endif}copyvalueparas,list);
  1466. {$ifdef powerpc}
  1467. { unget the register that contains the stack pointer before the procedure entry, }
  1468. { which is used to access the parameters in their original callee-side location }
  1469. if (tppcprocinfo(current_procinfo).needs_frame_pointer) then
  1470. cg.a_reg_dealloc(list,NR_R12);
  1471. {$endif powerpc}
  1472. {$ifdef powerpc64}
  1473. { unget the register that contains the stack pointer before the procedure entry, }
  1474. { which is used to access the parameters in their original callee-side location }
  1475. if (tppcprocinfo(current_procinfo).needs_frame_pointer) then
  1476. cg.a_reg_dealloc(list, NR_OLD_STACK_POINTER_REG);
  1477. {$endif powerpc64}
  1478. end;
  1479. procedure gen_initialize_code(list:TAsmList);
  1480. begin
  1481. { initialize local data like ansistrings }
  1482. case current_procinfo.procdef.proctypeoption of
  1483. potype_unitinit:
  1484. begin
  1485. { this is also used for initialization of variables in a
  1486. program which does not have a globalsymtable }
  1487. if assigned(current_module.globalsymtable) then
  1488. tsymtable(current_module.globalsymtable).foreach_static({$ifndef TP}@{$endif}initialize_data,list);
  1489. tsymtable(current_module.localsymtable).foreach_static({$ifndef TP}@{$endif}initialize_data,list);
  1490. tsymtable(current_module.localsymtable).foreach_static({$ifndef TP}@{$endif}initialize_regvars,list);
  1491. end;
  1492. { units have seperate code for initilization and finalization }
  1493. potype_unitfinalize: ;
  1494. { program init/final is generated in separate procedure }
  1495. potype_proginit:
  1496. begin
  1497. tsymtable(current_module.localsymtable).foreach_static({$ifndef TP}@{$endif}initialize_regvars,list);
  1498. end;
  1499. else
  1500. current_procinfo.procdef.localst.foreach_static({$ifndef TP}@{$endif}initialize_data,list);
  1501. end;
  1502. { initialisizes temp. ansi/wide string data }
  1503. inittempvariables(list);
  1504. { initialize ansi/widesstring para's }
  1505. if not(po_assembler in current_procinfo.procdef.procoptions) then
  1506. current_procinfo.procdef.parast.foreach_static({$ifndef TP}@{$endif}init_paras,list);
  1507. {$ifdef OLDREGVARS}
  1508. load_regvars(list,nil);
  1509. {$endif OLDREGVARS}
  1510. end;
  1511. procedure gen_finalize_code(list:TAsmList);
  1512. begin
  1513. {$ifdef OLDREGVARS}
  1514. cleanup_regvars(list);
  1515. {$endif OLDREGVARS}
  1516. { finalize temporary data }
  1517. finalizetempvariables(list);
  1518. { finalize local data like ansistrings}
  1519. case current_procinfo.procdef.proctypeoption of
  1520. potype_unitfinalize:
  1521. begin
  1522. { this is also used for initialization of variables in a
  1523. program which does not have a globalsymtable }
  1524. if assigned(current_module.globalsymtable) then
  1525. tsymtable(current_module.globalsymtable).foreach_static({$ifndef TP}@{$endif}finalize_static_data,list);
  1526. tsymtable(current_module.localsymtable).foreach_static({$ifndef TP}@{$endif}finalize_static_data,list);
  1527. end;
  1528. { units/progs have separate code for initialization and finalization }
  1529. potype_unitinit: ;
  1530. { program init/final is generated in separate procedure }
  1531. potype_proginit: ;
  1532. else
  1533. current_procinfo.procdef.localst.foreach_static({$ifndef TP}@{$endif}finalize_local_vars,list);
  1534. end;
  1535. { finalize paras data }
  1536. if assigned(current_procinfo.procdef.parast) and
  1537. not(po_assembler in current_procinfo.procdef.procoptions) then
  1538. current_procinfo.procdef.parast.foreach_static({$ifndef TP}@{$endif}final_paras,list);
  1539. end;
  1540. procedure gen_entry_code(list:TAsmList);
  1541. var
  1542. paraloc1,
  1543. paraloc2 : tcgpara;
  1544. begin
  1545. paraloc1.init;
  1546. paraloc2.init;
  1547. { the actual profile code can clobber some registers,
  1548. therefore if the context must be saved, do it before
  1549. the actual call to the profile code
  1550. }
  1551. if (cs_profile in aktmoduleswitches) and
  1552. not(po_assembler in current_procinfo.procdef.procoptions) then
  1553. begin
  1554. { non-win32 can call mcout even in main }
  1555. if not (target_info.system in [system_i386_win32,system_i386_wdosx]) or
  1556. not (current_procinfo.procdef.proctypeoption=potype_proginit) then
  1557. begin
  1558. cg.allocallcpuregisters(list);
  1559. cg.g_profilecode(list);
  1560. cg.deallocallcpuregisters(list);
  1561. end;
  1562. end;
  1563. { call startup helpers from main program }
  1564. if (current_procinfo.procdef.proctypeoption=potype_proginit) then
  1565. begin
  1566. { initialize units }
  1567. cg.allocallcpuregisters(list);
  1568. cg.a_call_name(list,'FPC_INITIALIZEUNITS');
  1569. cg.deallocallcpuregisters(list);
  1570. end;
  1571. list.concat(Tai_force_line.Create);
  1572. {$ifdef OLDREGVARS}
  1573. load_regvars(list,nil);
  1574. {$endif OLDREGVARS}
  1575. paraloc1.done;
  1576. paraloc2.done;
  1577. end;
  1578. procedure gen_exit_code(list:TAsmList);
  1579. begin
  1580. { call __EXIT for main program }
  1581. if (not DLLsource) and
  1582. (current_procinfo.procdef.proctypeoption=potype_proginit) then
  1583. cg.a_call_name(list,'FPC_DO_EXIT');
  1584. end;
  1585. {****************************************************************************
  1586. Entry/Exit
  1587. ****************************************************************************}
  1588. procedure alloc_proc_symbol(pd: tprocdef);
  1589. var
  1590. item: tstringlistitem;
  1591. begin
  1592. item := tstringlistitem(pd.aliasnames.first);
  1593. while assigned(item) do
  1594. begin
  1595. if (cs_profile in aktmoduleswitches) or
  1596. (po_global in current_procinfo.procdef.procoptions) then
  1597. current_asmdata.newasmsymbol(item.str,AB_GLOBAL,AT_FUNCTION)
  1598. else
  1599. current_asmdata.newasmsymbol(item.str,AB_GLOBAL,AT_FUNCTION);
  1600. item := tstringlistitem(item.next);
  1601. end;
  1602. end;
  1603. procedure gen_proc_symbol(list:TAsmList);
  1604. var
  1605. hs : string;
  1606. begin
  1607. repeat
  1608. hs:=current_procinfo.procdef.aliasnames.getfirst;
  1609. if hs='' then
  1610. break;
  1611. if (cs_profile in aktmoduleswitches) or
  1612. (po_global in current_procinfo.procdef.procoptions) then
  1613. list.concat(Tai_symbol.createname_global(hs,AT_FUNCTION,0))
  1614. else
  1615. list.concat(Tai_symbol.createname(hs,AT_FUNCTION,0));
  1616. if tf_use_function_relative_addresses in target_info.flags then
  1617. list.concat(Tai_function_name.create(hs));
  1618. until false;
  1619. current_procinfo.procdef.procstarttai:=tai(list.last);
  1620. end;
  1621. procedure gen_proc_symbol_end(list:TAsmList);
  1622. begin
  1623. list.concat(Tai_symbol_end.Createname(current_procinfo.procdef.mangledname));
  1624. current_procinfo.procdef.procendtai:=tai(list.last);
  1625. { finalisation marker for Mac OS X }
  1626. if (target_info.system in [system_powerpc_darwin,system_i386_darwin]) and
  1627. (current_module.islibrary) and
  1628. (((current_module.flags and uf_finalize)<>0) or
  1629. (current_procinfo.procdef.proctypeoption = potype_proginit)) then
  1630. begin
  1631. if (current_procinfo.procdef.proctypeoption = potype_proginit) then
  1632. list.concat(tai_directive.create(asd_mod_init_func,''))
  1633. else
  1634. list.concat(tai_directive.create(asd_mod_term_func,''));
  1635. list.concat(tai_align.create(4));
  1636. list.concat(Tai_const.Createname(current_procinfo.procdef.mangledname,AT_FUNCTION,0));
  1637. end;
  1638. if (current_procinfo.procdef.proctypeoption=potype_proginit) then
  1639. begin
  1640. if (target_info.system in [system_powerpc_darwin,system_i386_darwin,system_powerpc_macos]) and
  1641. not(current_module.islibrary) then
  1642. begin
  1643. list.concat(tai_section.create(sec_code,'',4));
  1644. list.concat(tai_symbol.createname_global(
  1645. target_info.cprefix+mainaliasname,AT_FUNCTION,0));
  1646. { keep argc, argv and envp properly on the stack }
  1647. cg.a_jmp_name(list,target_info.cprefix+'FPC_SYSTEMMAIN');
  1648. end;
  1649. { Reference all DEBUGINFO sections from the main .text section }
  1650. if (cs_debuginfo in aktmoduleswitches) then
  1651. debuginfo.referencesections(list);
  1652. { Insert Ident of the compiler in the main .text section }
  1653. if (not (cs_create_smart in aktmoduleswitches)) then
  1654. begin
  1655. list.concat(Tai_section.create(sec_data,'',0));
  1656. list.concat(Tai_align.Create(const_align(32)));
  1657. list.concat(Tai_string.Create('FPC '+full_version_string+
  1658. ' ['+date_string+'] for '+target_cpu_string+' - '+target_info.shortname));
  1659. end;
  1660. end;
  1661. end;
  1662. procedure gen_proc_entry_code(list:TAsmList);
  1663. var
  1664. hitemp,
  1665. lotemp : longint;
  1666. begin
  1667. { generate call frame marker for dwarf call frame info }
  1668. current_asmdata.asmcfi.start_frame(list);
  1669. { All temps are know, write offsets used for information }
  1670. if (cs_asm_source in aktglobalswitches) then
  1671. begin
  1672. if tg.direction>0 then
  1673. begin
  1674. lotemp:=current_procinfo.tempstart;
  1675. hitemp:=tg.lasttemp;
  1676. end
  1677. else
  1678. begin
  1679. lotemp:=tg.lasttemp;
  1680. hitemp:=current_procinfo.tempstart;
  1681. end;
  1682. list.concat(Tai_comment.Create(strpnew('Temps allocated between '+std_regname(current_procinfo.framepointer)+
  1683. tostr_with_plus(lotemp)+' and '+std_regname(current_procinfo.framepointer)+tostr_with_plus(hitemp))));
  1684. end;
  1685. { generate target specific proc entry code }
  1686. cg.g_proc_entry(list,current_procinfo.calc_stackframe_size,(po_nostackframe in current_procinfo.procdef.procoptions));
  1687. end;
  1688. procedure gen_proc_exit_code(list:TAsmList);
  1689. var
  1690. parasize : longint;
  1691. begin
  1692. { c style clearstack does not need to remove parameters from the stack, only the
  1693. return value when it was pushed by arguments }
  1694. if current_procinfo.procdef.proccalloption in clearstack_pocalls then
  1695. begin
  1696. parasize:=0;
  1697. if paramanager.ret_in_param(current_procinfo.procdef.rettype.def,current_procinfo.procdef.proccalloption) then
  1698. inc(parasize,sizeof(aint));
  1699. end
  1700. else
  1701. parasize:=current_procinfo.para_stack_size;
  1702. { generate target specific proc exit code }
  1703. cg.g_proc_exit(list,parasize,(po_nostackframe in current_procinfo.procdef.procoptions));
  1704. { release return registers, needed for optimizer }
  1705. if not is_void(current_procinfo.procdef.rettype.def) then
  1706. location_free(list,current_procinfo.procdef.funcretloc[calleeside]);
  1707. { end of frame marker for call frame info }
  1708. current_asmdata.asmcfi.end_frame(list);
  1709. end;
  1710. procedure gen_stack_check_size_para(list:TAsmList);
  1711. var
  1712. paraloc1 : tcgpara;
  1713. begin
  1714. paraloc1.init;
  1715. paramanager.getintparaloc(pocall_default,1,paraloc1);
  1716. paramanager.allocparaloc(list,paraloc1);
  1717. cg.a_param_const(list,OS_INT,current_procinfo.calc_stackframe_size,paraloc1);
  1718. paramanager.freeparaloc(list,paraloc1);
  1719. paraloc1.done;
  1720. end;
  1721. procedure gen_stack_check_call(list:TAsmList);
  1722. var
  1723. paraloc1 : tcgpara;
  1724. begin
  1725. paraloc1.init;
  1726. { Also alloc the register needed for the parameter }
  1727. paramanager.getintparaloc(pocall_default,1,paraloc1);
  1728. paramanager.allocparaloc(list,paraloc1);
  1729. paramanager.freeparaloc(list,paraloc1);
  1730. { Call the helper }
  1731. cg.allocallcpuregisters(list);
  1732. cg.a_call_name(list,'FPC_STACKCHECK');
  1733. cg.deallocallcpuregisters(list);
  1734. paraloc1.done;
  1735. end;
  1736. procedure gen_save_used_regs(list:TAsmList);
  1737. begin
  1738. { Pure assembler routines need to save the registers themselves }
  1739. if (po_assembler in current_procinfo.procdef.procoptions) then
  1740. exit;
  1741. { oldfpccall expects all registers to be destroyed }
  1742. if current_procinfo.procdef.proccalloption<>pocall_oldfpccall then
  1743. cg.g_save_standard_registers(list);
  1744. end;
  1745. procedure gen_restore_used_regs(list:TAsmList);
  1746. begin
  1747. { Pure assembler routines need to save the registers themselves }
  1748. if (po_assembler in current_procinfo.procdef.procoptions) then
  1749. exit;
  1750. { oldfpccall expects all registers to be destroyed }
  1751. if current_procinfo.procdef.proccalloption<>pocall_oldfpccall then
  1752. cg.g_restore_standard_registers(list);
  1753. end;
  1754. procedure gen_got_load(list : TAsmList);
  1755. begin
  1756. { if loading got is necessary for more cpus, it can be moved
  1757. to the cg }
  1758. {$ifdef i386}
  1759. { allocate PIC register }
  1760. if (cs_create_pic in aktmoduleswitches) and
  1761. (tf_pic_uses_got in target_info.flags) and
  1762. (pi_needs_got in current_procinfo.flags) then
  1763. begin
  1764. current_module.requires_ebx_pic_helper:=true;
  1765. cg.a_call_name_static(list,'fpc_geteipasebx');
  1766. list.concat(taicpu.op_sym_ofs_reg(A_ADD,S_L,current_asmdata.newasmsymbol('_GLOBAL_OFFSET_TABLE_',AB_EXTERNAL,AT_DATA),0,NR_PIC_OFFSET_REG));
  1767. list.concat(tai_regalloc.alloc(NR_PIC_OFFSET_REG,nil));
  1768. { ecx could be used in leave procedures }
  1769. current_procinfo.got:=NR_EBX;
  1770. end;
  1771. {$endif i386}
  1772. end;
  1773. {****************************************************************************
  1774. External handling
  1775. ****************************************************************************}
  1776. procedure gen_external_stub(list:TAsmList;pd:tprocdef;const externalname:string);
  1777. begin
  1778. { add the procedure to the al_procedures }
  1779. maybe_new_object_file(list);
  1780. new_section(list,sec_code,lower(pd.mangledname),aktalignment.procalign);
  1781. list.concat(Tai_align.create(aktalignment.procalign));
  1782. if (po_global in pd.procoptions) then
  1783. list.concat(Tai_symbol.createname_global(pd.mangledname,AT_FUNCTION,0))
  1784. else
  1785. list.concat(Tai_symbol.createname(pd.mangledname,AT_FUNCTION,0));
  1786. cg.a_jmp_name(list,externalname);
  1787. end;
  1788. {****************************************************************************
  1789. Const Data
  1790. ****************************************************************************}
  1791. procedure insertbssdata(sym : tglobalvarsym);
  1792. var
  1793. l : aint;
  1794. varalign : shortint;
  1795. storefilepos : tfileposinfo;
  1796. list : TAsmList;
  1797. sectype : TAsmSectiontype;
  1798. begin
  1799. storefilepos:=aktfilepos;
  1800. aktfilepos:=sym.fileinfo;
  1801. l:=sym.getsize;
  1802. if tf_section_threadvars in target_info.flags then
  1803. begin
  1804. if (vo_is_thread_var in sym.varoptions) then
  1805. begin
  1806. list:=current_asmdata.asmlists[al_threadvars];
  1807. sectype:=sec_threadvar;
  1808. end
  1809. else
  1810. begin
  1811. list:=current_asmdata.asmlists[al_globals];
  1812. sectype:=sec_bss;
  1813. end;
  1814. end
  1815. else
  1816. begin
  1817. if (vo_is_thread_var in sym.varoptions) then
  1818. inc(l,sizeof(aint));
  1819. list:=current_asmdata.asmlists[al_globals];
  1820. sectype:=sec_bss;
  1821. end;
  1822. varalign:=var_align(size_2_align(l));
  1823. maybe_new_object_file(list);
  1824. new_section(list,sectype,lower(sym.mangledname),varalign);
  1825. if (sym.owner.symtabletype=globalsymtable) or
  1826. maybe_smartlink_symbol or
  1827. DLLSource or
  1828. (assigned(current_procinfo) and
  1829. (po_inline in current_procinfo.procdef.procoptions)) or
  1830. (vo_is_exported in sym.varoptions) or
  1831. (vo_is_C_var in sym.varoptions) then
  1832. list.concat(Tai_datablock.create_global(sym.mangledname,l))
  1833. else
  1834. list.concat(Tai_datablock.create(sym.mangledname,l));
  1835. aktfilepos:=storefilepos;
  1836. end;
  1837. procedure init_regvar_loc(sym:tabstractnormalvarsym;cgsize:tcgsize);
  1838. begin
  1839. with sym do
  1840. begin
  1841. localloc.size:=cgsize;
  1842. case varregable of
  1843. vr_intreg :
  1844. begin
  1845. localloc.loc:=LOC_CREGISTER;
  1846. end;
  1847. vr_fpureg :
  1848. begin
  1849. localloc.loc:=LOC_CFPUREGISTER;
  1850. end;
  1851. vr_mmreg :
  1852. begin
  1853. localloc.loc:=LOC_CMMREGISTER;
  1854. end;
  1855. else
  1856. internalerror(2004101010);
  1857. end;
  1858. end;
  1859. end;
  1860. procedure gen_alloc_symtable(list:TAsmList;st:tsymtable);
  1861. var
  1862. sym : tsym;
  1863. isaddr : boolean;
  1864. cgsize : tcgsize;
  1865. begin
  1866. sym:=tsym(st.symindex.first);
  1867. while assigned(sym) do
  1868. begin
  1869. if (sym.typ in [globalvarsym,localvarsym,paravarsym]) then
  1870. begin
  1871. with tabstractnormalvarsym(sym) do
  1872. begin
  1873. { Parameters passed to assembler procedures need to be kept
  1874. in the original location }
  1875. if (sym.typ=paravarsym) and
  1876. (po_assembler in current_procinfo.procdef.procoptions) then
  1877. begin
  1878. tparavarsym(sym).paraloc[calleeside].get_location(localloc);
  1879. end
  1880. else
  1881. begin
  1882. isaddr:=(st.symtabletype=parasymtable) and
  1883. paramanager.push_addr_param(varspez,vartype.def,current_procinfo.procdef.proccalloption);
  1884. if isaddr then
  1885. cgsize:=OS_ADDR
  1886. else
  1887. cgsize:=def_cgsize(vartype.def);
  1888. {$ifndef OLDREGVARS}
  1889. { When there is assembler code we can't use regvars }
  1890. if is_regvar then
  1891. begin
  1892. init_regvar_loc(tabstractnormalvarsym(sym),cgsize);
  1893. if (st.symtabletype <> parasymtable) then
  1894. gen_alloc_regvar(list,tabstractnormalvarsym(sym));
  1895. end
  1896. else
  1897. {$endif NOT OLDREGVARS}
  1898. begin
  1899. localloc.loc:=LOC_REFERENCE;
  1900. localloc.size:=cgsize;
  1901. case st.symtabletype of
  1902. parasymtable :
  1903. begin
  1904. { Reuse the parameter location for values to are at a single location on the stack }
  1905. if paramanager.param_use_paraloc(tparavarsym(sym).paraloc[calleeside]) then
  1906. begin
  1907. reference_reset_base(localloc.reference,tparavarsym(sym).paraloc[calleeside].location^.reference.index,
  1908. tparavarsym(sym).paraloc[calleeside].location^.reference.offset);
  1909. end
  1910. else
  1911. begin
  1912. if isaddr then
  1913. tg.GetLocal(list,sizeof(aint),voidpointertype.def,localloc.reference)
  1914. else
  1915. tg.GetLocal(list,getsize,vartype.def,localloc.reference);
  1916. end;
  1917. end;
  1918. localsymtable,
  1919. stt_exceptsymtable :
  1920. begin
  1921. tg.GetLocal(list,getsize,vartype.def,localloc.reference);
  1922. end;
  1923. staticsymtable :
  1924. begin
  1925. { PIC, DLL and Threadvar need extra code and are handled in ncgld }
  1926. if not(vo_is_dll_var in varoptions) and ((tf_section_threadvars in target_info.flags) or
  1927. not(vo_is_thread_var in varoptions)) then
  1928. reference_reset_symbol(localloc.reference,current_asmdata.newasmsymbol(mangledname,AB_EXTERNAL,AT_DATA),0);
  1929. end;
  1930. else
  1931. internalerror(200410103);
  1932. end;
  1933. end;
  1934. end;
  1935. if cs_asm_source in aktglobalswitches then
  1936. begin
  1937. case localloc.loc of
  1938. LOC_REFERENCE :
  1939. begin
  1940. if not assigned(localloc.reference.symbol) then
  1941. list.concat(Tai_comment.Create(strpnew('Var '+realname+' located at '+
  1942. std_regname(localloc.reference.base)+tostr_with_plus(localloc.reference.offset))));
  1943. end;
  1944. end;
  1945. end;
  1946. end;
  1947. end;
  1948. sym:=tsym(sym.indexnext);
  1949. end;
  1950. end;
  1951. procedure add_regvars(var rv: tusedregvars; const location: tlocation);
  1952. begin
  1953. case location.loc of
  1954. LOC_CREGISTER:
  1955. {$ifndef cpu64bit}
  1956. if location.size in [OS_64,OS_S64] then
  1957. begin
  1958. rv.intregvars.addnodup(getsupreg(location.register64.reglo));
  1959. rv.intregvars.addnodup(getsupreg(location.register64.reghi));
  1960. end
  1961. else
  1962. {$endif cpu64bit}
  1963. rv.intregvars.addnodup(getsupreg(location.register));
  1964. LOC_CFPUREGISTER:
  1965. rv.fpuregvars.addnodup(getsupreg(location.register));
  1966. LOC_CMMREGISTER:
  1967. rv.mmregvars.addnodup(getsupreg(location.register));
  1968. end;
  1969. end;
  1970. function do_get_used_regvars(var n: tnode; arg: pointer): foreachnoderesult;
  1971. var
  1972. rv: pusedregvars absolute arg;
  1973. begin
  1974. case (n.nodetype) of
  1975. temprefn:
  1976. { We only have to synchronise a tempnode before a loop if it is }
  1977. { not created inside the loop, and only synchronise after the }
  1978. { loop if it's not destroyed inside the loop. If it's created }
  1979. { before the loop and not yet destroyed, then before the loop }
  1980. { is secondpassed tempinfo^.valid will be true, and we get the }
  1981. { correct registers. If it's not destroyed inside the loop, }
  1982. { then after the loop has been secondpassed tempinfo^.valid }
  1983. { be true and we also get the right registers. In other cases, }
  1984. { tempinfo^.valid will be false and so we do not add }
  1985. { unnecessary registers. This way, we don't have to look at }
  1986. { tempcreate and tempdestroy nodes to get this info (JM) }
  1987. if (ttemprefnode(n).tempinfo^.valid) then
  1988. add_regvars(rv^,ttemprefnode(n).tempinfo^.location);
  1989. loadn:
  1990. if (tloadnode(n).symtableentry.typ in [globalvarsym,localvarsym,paravarsym]) then
  1991. add_regvars(rv^,tabstractnormalvarsym(tloadnode(n).symtableentry).localloc);
  1992. end;
  1993. result := fen_true;
  1994. end;
  1995. procedure get_used_regvars(n: tnode; var rv: tusedregvars);
  1996. begin
  1997. foreachnodestatic(n,@do_get_used_regvars,@rv);
  1998. end;
  1999. (*
  2000. See comments at declaration of pusedregvarscommon
  2001. function do_get_used_regvars_common(var n: tnode; arg: pointer): foreachnoderesult;
  2002. var
  2003. rv: pusedregvarscommon absolute arg;
  2004. begin
  2005. if (n.nodetype = loadn) and
  2006. (tloadnode(n).symtableentry.typ in [globalvarsym,localvarsym,paravarsym]) then
  2007. with tabstractnormalvarsym(tloadnode(n).symtableentry).localloc do
  2008. case loc of
  2009. LOC_CREGISTER:
  2010. { if not yet encountered in this node tree }
  2011. if (rv^.myregvars.intregvars.addnodup(getsupreg(register))) and
  2012. { but nevertheless already encountered somewhere }
  2013. not(rv^.allregvars.intregvars.addnodup(getsupreg(register))) then
  2014. { then it's a regvar used in two or more node trees }
  2015. rv^.commonregvars.intregvars.addnodup(getsupreg(register));
  2016. LOC_CFPUREGISTER:
  2017. if (rv^.myregvars.intregvars.addnodup(getsupreg(register))) and
  2018. not(rv^.allregvars.intregvars.addnodup(getsupreg(register))) then
  2019. rv^.commonregvars.intregvars.addnodup(getsupreg(register));
  2020. LOC_CMMREGISTER:
  2021. if (rv^.myregvars.intregvars.addnodup(getsupreg(register))) and
  2022. not(rv^.allregvars.intregvars.addnodup(getsupreg(register))) then
  2023. rv^.commonregvars.intregvars.addnodup(getsupreg(register));
  2024. end;
  2025. result := fen_true;
  2026. end;
  2027. procedure get_used_regvars_common(n: tnode; var rv: tusedregvarscommon);
  2028. begin
  2029. rv.myregvars.intregvars.clear;
  2030. rv.myregvars.fpuregvars.clear;
  2031. rv.myregvars.mmregvars.clear;
  2032. foreachnodestatic(n,@do_get_used_regvars_common,@rv);
  2033. end;
  2034. *)
  2035. procedure gen_sync_regvars(list:TAsmList; var rv: tusedregvars);
  2036. var
  2037. count: longint;
  2038. begin
  2039. for count := 1 to rv.intregvars.length do
  2040. cg.a_reg_sync(list,newreg(R_INTREGISTER,rv.intregvars.readidx(count-1),R_SUBWHOLE));
  2041. for count := 1 to rv.fpuregvars.length do
  2042. cg.a_reg_sync(list,newreg(R_FPUREGISTER,rv.fpuregvars.readidx(count-1),R_SUBWHOLE));
  2043. for count := 1 to rv.mmregvars.length do
  2044. cg.a_reg_sync(list,newreg(R_MMREGISTER,rv.mmregvars.readidx(count-1),R_SUBWHOLE));
  2045. end;
  2046. procedure gen_free_symtable(list:TAsmList;st:tsymtable);
  2047. var
  2048. sym : tsym;
  2049. begin
  2050. sym:=tsym(st.symindex.first);
  2051. while assigned(sym) do
  2052. begin
  2053. if (sym.typ in [globalvarsym,localvarsym,paravarsym]) then
  2054. begin
  2055. with tabstractnormalvarsym(sym) do
  2056. begin
  2057. { Note: We need to keep the data available in memory
  2058. for the sub procedures that can access local data
  2059. in the parent procedures }
  2060. case localloc.loc of
  2061. LOC_CREGISTER :
  2062. {$ifndef cpu64bit}
  2063. if (pi_has_goto in current_procinfo.flags) then
  2064. if def_cgsize(vartype.def) in [OS_64,OS_S64] then
  2065. begin
  2066. cg.a_reg_sync(list,localloc.register64.reglo);
  2067. cg.a_reg_sync(list,localloc.register64.reghi);
  2068. end
  2069. else
  2070. {$endif cpu64bit}
  2071. cg.a_reg_sync(list,localloc.register);
  2072. LOC_CFPUREGISTER,
  2073. LOC_CMMREGISTER:
  2074. if (pi_has_goto in current_procinfo.flags) then
  2075. cg.a_reg_sync(list,localloc.register);
  2076. LOC_REFERENCE :
  2077. begin
  2078. case st.symtabletype of
  2079. localsymtable,
  2080. parasymtable,
  2081. stt_exceptsymtable :
  2082. tg.Ungetlocal(list,localloc.reference);
  2083. end;
  2084. end;
  2085. end;
  2086. end;
  2087. end;
  2088. sym:=tsym(sym.indexnext);
  2089. end;
  2090. end;
  2091. { persistent rtti generation }
  2092. procedure generate_rtti(p:Ttypesym);
  2093. var
  2094. rsym : trttisym;
  2095. def : tstoreddef;
  2096. begin
  2097. { rtti can only be generated for classes that are always typesyms }
  2098. def:=tstoreddef(ttypesym(p).restype.def);
  2099. { there is an error, skip rtti info }
  2100. if (def.deftype=errordef) or (Errorcount>0) then
  2101. exit;
  2102. { only create rtti once for each definition }
  2103. if not(df_has_rttitable in def.defoptions) then
  2104. begin
  2105. { definition should be in the same symtable as the symbol }
  2106. if p.owner<>def.owner then
  2107. internalerror(200108262);
  2108. { create rttisym }
  2109. rsym:=trttisym.create(p.name,fullrtti);
  2110. p.owner.insert(rsym);
  2111. { register rttisym in definition }
  2112. include(def.defoptions,df_has_rttitable);
  2113. def.rttitablesym:=rsym;
  2114. { write rtti data }
  2115. def.write_child_rtti_data(fullrtti);
  2116. maybe_new_object_file(current_asmdata.asmlists[al_rtti]);
  2117. new_section(current_asmdata.asmlists[al_rtti],sec_rodata,rsym.get_label.name,const_align(sizeof(aint)));
  2118. current_asmdata.asmlists[al_rtti].concat(Tai_symbol.Create_global(rsym.get_label,0));
  2119. def.write_rtti_data(fullrtti);
  2120. current_asmdata.asmlists[al_rtti].concat(Tai_symbol_end.Create(rsym.get_label));
  2121. end;
  2122. end;
  2123. { persistent init table generation }
  2124. procedure generate_inittable(p:tsym);
  2125. var
  2126. rsym : trttisym;
  2127. def : tstoreddef;
  2128. begin
  2129. { anonymous types are also allowed for records that can be varsym }
  2130. case p.typ of
  2131. typesym :
  2132. def:=tstoreddef(ttypesym(p).restype.def);
  2133. globalvarsym,
  2134. localvarsym,
  2135. paravarsym :
  2136. def:=tstoreddef(tabstractvarsym(p).vartype.def);
  2137. else
  2138. internalerror(200108263);
  2139. end;
  2140. { only create inittable once for each definition }
  2141. if not(df_has_inittable in def.defoptions) then
  2142. begin
  2143. { definition should be in the same symtable as the symbol }
  2144. if p.owner<>def.owner then
  2145. internalerror(200108264);
  2146. { create rttisym }
  2147. rsym:=trttisym.create(p.name,initrtti);
  2148. p.owner.insert(rsym);
  2149. { register rttisym in definition }
  2150. include(def.defoptions,df_has_inittable);
  2151. def.inittablesym:=rsym;
  2152. { write inittable data }
  2153. def.write_child_rtti_data(initrtti);
  2154. maybe_new_object_file(current_asmdata.asmlists[al_rtti]);
  2155. new_section(current_asmdata.asmlists[al_rtti],sec_rodata,rsym.get_label.name,const_align(sizeof(aint)));
  2156. current_asmdata.asmlists[al_rtti].concat(Tai_symbol.Create_global(rsym.get_label,0));
  2157. def.write_rtti_data(initrtti);
  2158. current_asmdata.asmlists[al_rtti].concat(Tai_symbol_end.Create(rsym.get_label));
  2159. end;
  2160. end;
  2161. procedure gen_intf_wrapper(list:TAsmList;_class:tobjectdef);
  2162. var
  2163. i,j,
  2164. proccount : longint;
  2165. tmps : string;
  2166. begin
  2167. for i:=1 to _class.implementedinterfaces.count do
  2168. begin
  2169. { only if implemented by this class }
  2170. if _class.implementedinterfaces.implindex(i)=i then
  2171. begin
  2172. proccount:=_class.implementedinterfaces.implproccount(i);
  2173. for j:=1 to proccount do
  2174. begin
  2175. tmps:=make_mangledname('WRPR',_class.owner,_class.objname^+'_$_'+
  2176. _class.implementedinterfaces.interfaces(i).objname^+'_$_'+
  2177. tostr(j)+'_$_'+_class.implementedinterfaces.implprocs(i,j).mangledname);
  2178. { create wrapper code }
  2179. new_section(list,sec_code,lower(tmps),0);
  2180. cg.init_register_allocators;
  2181. cg.g_intf_wrapper(list,_class.implementedinterfaces.implprocs(i,j),tmps,_class.implementedinterfaces.ioffsets(i));
  2182. cg.done_register_allocators;
  2183. end;
  2184. end;
  2185. end;
  2186. end;
  2187. procedure gen_intf_wrappers(list:TAsmList;st:tsymtable);
  2188. var
  2189. def : tstoreddef;
  2190. begin
  2191. def:=tstoreddef(st.defindex.first);
  2192. while assigned(def) do
  2193. begin
  2194. if is_class(def) then
  2195. gen_intf_wrapper(list,tobjectdef(def));
  2196. def:=tstoreddef(def.indexnext);
  2197. end;
  2198. end;
  2199. procedure gen_load_vmt_register(list:TAsmList;objdef:tobjectdef;selfloc:tlocation;var vmtreg:tregister);
  2200. var
  2201. href : treference;
  2202. begin
  2203. if is_object(objdef) then
  2204. begin
  2205. case selfloc.loc of
  2206. LOC_CREFERENCE,
  2207. LOC_REFERENCE:
  2208. begin
  2209. reference_reset_base(href,cg.getaddressregister(list),objdef.vmt_offset);
  2210. cg.a_loadaddr_ref_reg(list,selfloc.reference,href.base);
  2211. end;
  2212. else
  2213. internalerror(200305056);
  2214. end;
  2215. end
  2216. else
  2217. begin
  2218. case selfloc.loc of
  2219. LOC_REGISTER:
  2220. begin
  2221. {$ifdef cpu_uses_separate_address_registers}
  2222. if getregtype(left.location.register)<>R_ADDRESSREGISTER then
  2223. begin
  2224. reference_reset_base(href,cg.getaddressregister(list),objdef.vmt_offset);
  2225. cg.a_load_reg_reg(list,OS_ADDR,OS_ADDR,selfloc.register,href.base);
  2226. end
  2227. else
  2228. {$endif cpu_uses_separate_address_registers}
  2229. reference_reset_base(href,selfloc.register,objdef.vmt_offset);
  2230. end;
  2231. LOC_CREGISTER,
  2232. LOC_CREFERENCE,
  2233. LOC_REFERENCE:
  2234. begin
  2235. reference_reset_base(href,cg.getaddressregister(list),objdef.vmt_offset);
  2236. cg.a_load_loc_reg(list,OS_ADDR,selfloc,href.base);
  2237. end;
  2238. else
  2239. internalerror(200305057);
  2240. end;
  2241. end;
  2242. vmtreg:=cg.getaddressregister(list);
  2243. cg.g_maybe_testself(list,href.base);
  2244. cg.a_load_ref_reg(list,OS_ADDR,OS_ADDR,href,vmtreg);
  2245. { test validity of VMT }
  2246. if not(is_interface(objdef)) and
  2247. not(is_cppclass(objdef)) then
  2248. cg.g_maybe_testvmt(list,vmtreg,objdef);
  2249. end;
  2250. function getprocalign : shortint;
  2251. begin
  2252. { gprof uses 16 byte granularity }
  2253. if (cs_profile in aktmoduleswitches) then
  2254. result:=16
  2255. else
  2256. result:=aktalignment.procalign;
  2257. end;
  2258. procedure gen_pic_helpers(list : TAsmList);
  2259. var
  2260. href : treference;
  2261. begin
  2262. { if other cpus require such helpers as well, it can be solved more cleaner }
  2263. {$ifdef i386}
  2264. if current_module.requires_ebx_pic_helper then
  2265. begin
  2266. new_section(list,sec_code,'fpc_geteipasebx',0);
  2267. list.concat(tai_symbol.Createname('fpc_geteipasebx',AT_FUNCTION,getprocalign));
  2268. reference_reset(href);
  2269. href.base:=NR_ESP;
  2270. list.concat(taicpu.op_ref_reg(A_MOV,S_L,href,NR_EBX));
  2271. list.concat(taicpu.op_none(A_RET,S_NO));
  2272. end;
  2273. if current_module.requires_ecx_pic_helper then
  2274. begin
  2275. new_section(list,sec_code,'fpc_geteipasecx',0);
  2276. list.concat(tai_symbol.Createname('fpc_geteipasecx',AT_FUNCTION,getprocalign));
  2277. reference_reset(href);
  2278. href.base:=NR_ESP;
  2279. list.concat(taicpu.op_ref_reg(A_MOV,S_L,href,NR_ECX));
  2280. list.concat(taicpu.op_none(A_RET,S_NO));
  2281. end;
  2282. {$endif i386}
  2283. end;
  2284. end.