ncgutil.pas 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123
  1. {
  2. Copyright (c) 1998-2002 by Florian Klaempfl
  3. Helper routines for all code generators
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. unit ncgutil;
  18. {$i fpcdefs.inc}
  19. interface
  20. uses
  21. node,cpuinfo,
  22. globtype,
  23. cpubase,cgbase,parabase,cgutils,
  24. aasmbase,aasmtai,aasmdata,aasmcpu,
  25. symconst,symbase,symdef,symsym,symtype,symtable
  26. {$ifndef cpu64bitalu}
  27. ,cg64f32
  28. {$endif not cpu64bitalu}
  29. ;
  30. type
  31. tloadregvars = (lr_dont_load_regvars, lr_load_regvars);
  32. pusedregvars = ^tusedregvars;
  33. tusedregvars = record
  34. intregvars, fpuregvars, mmregvars: Tsuperregisterworklist;
  35. end;
  36. {
  37. Not used currently, implemented because I thought we had to
  38. synchronise around if/then/else as well, but not needed. May
  39. still be useful for SSA once we get around to implementing
  40. that (JM)
  41. pusedregvarscommon = ^tusedregvarscommon;
  42. tusedregvarscommon = record
  43. allregvars, commonregvars, myregvars: tusedregvars;
  44. end;
  45. }
  46. procedure firstcomplex(p : tbinarynode);
  47. procedure maketojumpbool(list:TAsmList; p : tnode; loadregvars: tloadregvars);
  48. // procedure remove_non_regvars_from_loc(const t: tlocation; var regs:Tsuperregisterset);
  49. procedure location_force_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. procedure location_force_mmreg(list:TAsmList;var l: tlocation;maybeconst:boolean);
  54. procedure location_allocate_register(list:TAsmList;out l: tlocation;def: tdef;constant: boolean);
  55. { load a tlocation into a cgpara }
  56. procedure gen_load_loc_cgpara(list: TAsmList; vardef: tdef; const l: tlocation; const cgpara: tcgpara);
  57. { loads a cgpara into a tlocation; assumes that loc.loc is already
  58. initialised }
  59. procedure gen_load_cgpara_loc(list: TAsmList; vardef: tdef; const para: TCGPara; var destloc: tlocation; reusepara: boolean);
  60. { allocate registers for a tlocation; assumes that loc.loc is already
  61. set to LOC_CREGISTER/LOC_CFPUREGISTER/... }
  62. procedure gen_alloc_regloc(list:TAsmList;var loc: tlocation);
  63. procedure register_maybe_adjust_setbase(list: TAsmList; var l: tlocation; setbase: aint);
  64. { Retrieve the location of the data pointed to in location l, when the location is
  65. a register it is expected to contain the address of the data }
  66. procedure location_get_data_ref(list:TAsmList;const l:tlocation;var ref:treference;loadref:boolean; alignment: longint);
  67. function has_alias_name(pd:tprocdef;const s:string):boolean;
  68. procedure alloc_proc_symbol(pd: tprocdef);
  69. procedure gen_proc_symbol(list:TAsmList);
  70. procedure gen_proc_symbol_end(list:TAsmList);
  71. procedure gen_proc_entry_code(list:TAsmList);
  72. procedure gen_proc_exit_code(list:TAsmList);
  73. procedure gen_stack_check_size_para(list:TAsmList);
  74. procedure gen_stack_check_call(list:TAsmList);
  75. procedure gen_save_used_regs(list:TAsmList);
  76. procedure gen_restore_used_regs(list:TAsmList);
  77. procedure gen_initialize_code(list:TAsmList);
  78. procedure gen_finalize_code(list:TAsmList);
  79. procedure gen_entry_code(list:TAsmList);
  80. procedure gen_exit_code(list:TAsmList);
  81. procedure gen_load_para_value(list:TAsmList);
  82. procedure gen_load_return_value(list:TAsmList);
  83. procedure gen_external_stub(list:TAsmList;pd:tprocdef;const externalname:string);
  84. procedure gen_intf_wrappers(list:TAsmList;st:TSymtable;nested:boolean);
  85. procedure gen_load_vmt_register(list:TAsmList;objdef:tobjectdef;selfloc:tlocation;var vmtreg:tregister);
  86. procedure get_used_regvars(n: tnode; var rv: tusedregvars);
  87. { adds the regvars used in n and its children to rv.allregvars,
  88. those which were already in rv.allregvars to rv.commonregvars and
  89. uses rv.myregvars as scratch (so that two uses of the same regvar
  90. in a single tree to make it appear in commonregvars). Useful to
  91. find out which regvars are used in two different node trees
  92. (e.g. in the "else" and "then" path, or in various case blocks }
  93. // procedure get_used_regvars_common(n: tnode; var rv: tusedregvarscommon);
  94. procedure gen_sync_regvars(list:TAsmList; var rv: tusedregvars);
  95. { if the result of n is a LOC_C(..)REGISTER, try to find the corresponding }
  96. { loadn and change its location to a new register (= SSA). In case reload }
  97. { is true, transfer the old to the new register }
  98. procedure maybechangeloadnodereg(list: TAsmList; var n: tnode; reload: boolean);
  99. {#
  100. Allocate the buffers for exception management and setjmp environment.
  101. Return a pointer to these buffers, send them to the utility routine
  102. so they are registered, and then call setjmp.
  103. Then compare the result of setjmp with 0, and if not equal
  104. to zero, then jump to exceptlabel.
  105. Also store the result of setjmp to a temporary space by calling g_save_exception_reason
  106. It is to note that this routine may be called *after* the stackframe of a
  107. routine has been called, therefore on machines where the stack cannot
  108. be modified, all temps should be allocated on the heap instead of the
  109. stack.
  110. }
  111. const
  112. EXCEPT_BUF_SIZE = 3*sizeof(pint);
  113. type
  114. texceptiontemps=record
  115. jmpbuf,
  116. envbuf,
  117. reasonbuf : treference;
  118. end;
  119. procedure get_exception_temps(list:TAsmList;var t:texceptiontemps);
  120. procedure unget_exception_temps(list:TAsmList;const t:texceptiontemps);
  121. procedure new_exception(list:TAsmList;const t:texceptiontemps;exceptlabel:tasmlabel);
  122. procedure free_exception(list:TAsmList;const t:texceptiontemps;a:aint;endexceptlabel:tasmlabel;onlyfree:boolean);
  123. procedure insertbssdata(sym : tstaticvarsym);
  124. procedure gen_alloc_symtable(list:TAsmList;st:TSymtable);
  125. procedure gen_free_symtable(list:TAsmList;st:TSymtable);
  126. procedure location_free(list: TAsmList; const location : TLocation);
  127. function getprocalign : shortint;
  128. procedure gen_pic_helpers(list : TAsmList);
  129. implementation
  130. uses
  131. version,
  132. cutils,cclasses,
  133. globals,systems,verbose,export,
  134. ppu,defutil,
  135. procinfo,paramgr,fmodule,
  136. regvars,dbgbase,
  137. pass_1,pass_2,
  138. nbas,ncon,nld,nmem,nutils,
  139. tgobj,cgobj,cgcpu
  140. {$ifdef powerpc}
  141. , cpupi
  142. {$endif}
  143. {$ifdef powerpc64}
  144. , cpupi
  145. {$endif}
  146. {$ifdef SUPPORT_MMX}
  147. , cgx86
  148. {$endif SUPPORT_MMX}
  149. ;
  150. {*****************************************************************************
  151. Misc Helpers
  152. *****************************************************************************}
  153. procedure location_free(list: TAsmList; const location : TLocation);
  154. begin
  155. case location.loc of
  156. LOC_VOID:
  157. ;
  158. LOC_REGISTER,
  159. LOC_CREGISTER:
  160. begin
  161. {$ifdef cpu64bitaddr}
  162. { x86-64 system v abi:
  163. structs with up to 16 bytes are returned in registers }
  164. if location.size in [OS_128,OS_S128] then
  165. begin
  166. if getsupreg(location.register)<first_int_imreg then
  167. cg.ungetcpuregister(list,location.register);
  168. if getsupreg(location.registerhi)<first_int_imreg then
  169. cg.ungetcpuregister(list,location.registerhi);
  170. end
  171. {$else cpu64bitaddr}
  172. if location.size in [OS_64,OS_S64] then
  173. begin
  174. if getsupreg(location.register64.reglo)<first_int_imreg then
  175. cg.ungetcpuregister(list,location.register64.reglo);
  176. if getsupreg(location.register64.reghi)<first_int_imreg then
  177. cg.ungetcpuregister(list,location.register64.reghi);
  178. end
  179. {$endif}
  180. else
  181. if getsupreg(location.register)<first_int_imreg then
  182. cg.ungetcpuregister(list,location.register);
  183. end;
  184. LOC_FPUREGISTER,
  185. LOC_CFPUREGISTER:
  186. begin
  187. if getsupreg(location.register)<first_fpu_imreg then
  188. cg.ungetcpuregister(list,location.register);
  189. end;
  190. LOC_MMREGISTER,
  191. LOC_CMMREGISTER :
  192. begin
  193. if getsupreg(location.register)<first_mm_imreg then
  194. cg.ungetcpuregister(list,location.register);
  195. end;
  196. LOC_REFERENCE,
  197. LOC_CREFERENCE :
  198. begin
  199. if paramanager.use_fixed_stack then
  200. location_freetemp(list,location);
  201. end;
  202. else
  203. internalerror(2004110211);
  204. end;
  205. end;
  206. procedure firstcomplex(p : tbinarynode);
  207. var
  208. fcl, fcr: longint;
  209. ncl, ncr: longint;
  210. begin
  211. { always calculate boolean AND and OR from left to right }
  212. if (p.nodetype in [orn,andn]) and
  213. is_boolean(p.left.resultdef) then
  214. begin
  215. if nf_swapped in p.flags then
  216. internalerror(200709253);
  217. end
  218. else
  219. begin
  220. fcl:=node_resources_fpu(p.left);
  221. fcr:=node_resources_fpu(p.right);
  222. ncl:=node_complexity(p.left);
  223. ncr:=node_complexity(p.right);
  224. { We swap left and right if
  225. a) right needs more floating point registers than left, and
  226. left needs more than 0 floating point registers (if it
  227. doesn't need any, swapping won't change the floating
  228. point register pressure)
  229. b) both left and right need an equal amount of floating
  230. point registers or right needs no floating point registers,
  231. and in addition right has a higher complexity than left
  232. (+- needs more integer registers, but not necessarily)
  233. }
  234. if ((fcr>fcl) and
  235. (fcl>0)) or
  236. (((fcr=fcl) or
  237. (fcr=0)) and
  238. (ncr>ncl)) then
  239. p.swapleftright
  240. end;
  241. end;
  242. procedure maketojumpbool(list:TAsmList; p : tnode; loadregvars: tloadregvars);
  243. {
  244. produces jumps to true respectively false labels using boolean expressions
  245. depending on whether the loading of regvars is currently being
  246. synchronized manually (such as in an if-node) or automatically (most of
  247. the other cases where this procedure is called), loadregvars can be
  248. "lr_load_regvars" or "lr_dont_load_regvars"
  249. }
  250. var
  251. opsize : tcgsize;
  252. storepos : tfileposinfo;
  253. tmpreg : tregister;
  254. begin
  255. if nf_error in p.flags then
  256. exit;
  257. storepos:=current_filepos;
  258. current_filepos:=p.fileinfo;
  259. if is_boolean(p.resultdef) then
  260. begin
  261. {$ifdef OLDREGVARS}
  262. if loadregvars = lr_load_regvars then
  263. load_all_regvars(list);
  264. {$endif OLDREGVARS}
  265. if is_constboolnode(p) then
  266. begin
  267. if Tordconstnode(p).value.uvalue<>0 then
  268. cg.a_jmp_always(list,current_procinfo.CurrTrueLabel)
  269. else
  270. cg.a_jmp_always(list,current_procinfo.CurrFalseLabel)
  271. end
  272. else
  273. begin
  274. opsize:=def_cgsize(p.resultdef);
  275. case p.location.loc of
  276. LOC_SUBSETREG,LOC_CSUBSETREG,
  277. LOC_SUBSETREF,LOC_CSUBSETREF:
  278. begin
  279. tmpreg := cg.getintregister(list,OS_INT);
  280. cg.a_load_loc_reg(list,OS_INT,p.location,tmpreg);
  281. cg.a_cmp_const_reg_label(list,OS_INT,OC_NE,0,tmpreg,current_procinfo.CurrTrueLabel);
  282. cg.a_jmp_always(list,current_procinfo.CurrFalseLabel);
  283. end;
  284. LOC_CREGISTER,LOC_REGISTER,LOC_CREFERENCE,LOC_REFERENCE :
  285. begin
  286. cg.a_cmp_const_loc_label(list,opsize,OC_NE,0,p.location,current_procinfo.CurrTrueLabel);
  287. cg.a_jmp_always(list,current_procinfo.CurrFalseLabel);
  288. end;
  289. LOC_JUMP:
  290. ;
  291. {$ifdef cpuflags}
  292. LOC_FLAGS :
  293. begin
  294. cg.a_jmp_flags(list,p.location.resflags,current_procinfo.CurrTrueLabel);
  295. cg.a_jmp_always(list,current_procinfo.CurrFalseLabel);
  296. end;
  297. {$endif cpuflags}
  298. else
  299. begin
  300. printnode(output,p);
  301. internalerror(200308241);
  302. end;
  303. end;
  304. end;
  305. end
  306. else
  307. internalerror(200112305);
  308. current_filepos:=storepos;
  309. end;
  310. (*
  311. This code needs fixing. It is not safe to use rgint; on the m68000 it
  312. would be rgaddr.
  313. procedure remove_non_regvars_from_loc(const t: tlocation; var regs:Tsuperregisterset);
  314. begin
  315. case t.loc of
  316. LOC_REGISTER:
  317. begin
  318. { can't be a regvar, since it would be LOC_CREGISTER then }
  319. exclude(regs,getsupreg(t.register));
  320. if t.register64.reghi<>NR_NO then
  321. exclude(regs,getsupreg(t.register64.reghi));
  322. end;
  323. LOC_CREFERENCE,LOC_REFERENCE:
  324. begin
  325. if not(cs_opt_regvar in current_settings.optimizerswitches) or
  326. (getsupreg(t.reference.base) in cg.rgint.usableregs) then
  327. exclude(regs,getsupreg(t.reference.base));
  328. if not(cs_opt_regvar in current_settings.optimizerswitches) or
  329. (getsupreg(t.reference.index) in cg.rgint.usableregs) then
  330. exclude(regs,getsupreg(t.reference.index));
  331. end;
  332. end;
  333. end;
  334. *)
  335. {*****************************************************************************
  336. EXCEPTION MANAGEMENT
  337. *****************************************************************************}
  338. procedure get_exception_temps(list:TAsmList;var t:texceptiontemps);
  339. var
  340. srsym : ttypesym;
  341. begin
  342. if jmp_buf_size=-1 then
  343. begin
  344. srsym:=search_system_type('JMP_BUF');
  345. jmp_buf_size:=srsym.typedef.size;
  346. jmp_buf_align:=srsym.typedef.alignment;
  347. end;
  348. tg.GetTemp(list,EXCEPT_BUF_SIZE,sizeof(pint),tt_persistent,t.envbuf);
  349. tg.GetTemp(list,jmp_buf_size,jmp_buf_align,tt_persistent,t.jmpbuf);
  350. tg.GetTemp(list,sizeof(pint),sizeof(pint),tt_persistent,t.reasonbuf);
  351. end;
  352. procedure unget_exception_temps(list:TAsmList;const t:texceptiontemps);
  353. begin
  354. tg.Ungettemp(list,t.jmpbuf);
  355. tg.ungettemp(list,t.envbuf);
  356. tg.ungettemp(list,t.reasonbuf);
  357. end;
  358. procedure new_exception(list:TAsmList;const t:texceptiontemps;exceptlabel:tasmlabel);
  359. var
  360. paraloc1,paraloc2,paraloc3 : tcgpara;
  361. begin
  362. paraloc1.init;
  363. paraloc2.init;
  364. paraloc3.init;
  365. paramanager.getintparaloc(pocall_default,1,paraloc1);
  366. paramanager.getintparaloc(pocall_default,2,paraloc2);
  367. paramanager.getintparaloc(pocall_default,3,paraloc3);
  368. cg.a_loadaddr_ref_cgpara(list,t.envbuf,paraloc3);
  369. cg.a_loadaddr_ref_cgpara(list,t.jmpbuf,paraloc2);
  370. { push type of exceptionframe }
  371. cg.a_load_const_cgpara(list,OS_S32,1,paraloc1);
  372. paramanager.freecgpara(list,paraloc3);
  373. paramanager.freecgpara(list,paraloc2);
  374. paramanager.freecgpara(list,paraloc1);
  375. cg.allocallcpuregisters(list);
  376. cg.a_call_name(list,'FPC_PUSHEXCEPTADDR',false);
  377. cg.deallocallcpuregisters(list);
  378. paramanager.getintparaloc(pocall_default,1,paraloc1);
  379. cg.a_load_reg_cgpara(list,OS_ADDR,NR_FUNCTION_RESULT_REG,paraloc1);
  380. paramanager.freecgpara(list,paraloc1);
  381. cg.allocallcpuregisters(list);
  382. cg.a_call_name(list,'FPC_SETJMP',false);
  383. cg.deallocallcpuregisters(list);
  384. cg.alloccpuregisters(list,R_INTREGISTER,[RS_FUNCTION_RESULT_REG]);
  385. cg.g_exception_reason_save(list, t.reasonbuf);
  386. cg.a_cmp_const_reg_label(list,OS_S32,OC_NE,0,cg.makeregsize(list,NR_FUNCTION_RESULT_REG,OS_S32),exceptlabel);
  387. cg.dealloccpuregisters(list,R_INTREGISTER,[RS_FUNCTION_RESULT_REG]);
  388. paraloc1.done;
  389. paraloc2.done;
  390. paraloc3.done;
  391. end;
  392. procedure free_exception(list:TAsmList;const t:texceptiontemps;a:aint;endexceptlabel:tasmlabel;onlyfree:boolean);
  393. begin
  394. cg.allocallcpuregisters(list);
  395. cg.a_call_name(list,'FPC_POPADDRSTACK',false);
  396. cg.deallocallcpuregisters(list);
  397. if not onlyfree then
  398. begin
  399. { g_exception_reason_load already allocates NR_FUNCTION_RESULT_REG }
  400. cg.g_exception_reason_load(list, t.reasonbuf);
  401. cg.a_cmp_const_reg_label(list,OS_INT,OC_EQ,a,NR_FUNCTION_RESULT_REG,endexceptlabel);
  402. cg.a_reg_dealloc(list,NR_FUNCTION_RESULT_REG);
  403. end;
  404. end;
  405. {*****************************************************************************
  406. TLocation
  407. *****************************************************************************}
  408. {$ifndef cpu64bitalu}
  409. { 32-bit version }
  410. procedure location_force_reg(list:TAsmList;var l:tlocation;dst_size:TCGSize;maybeconst:boolean);
  411. var
  412. hregister,
  413. hregisterhi : tregister;
  414. hreg64 : tregister64;
  415. hl : tasmlabel;
  416. oldloc : tlocation;
  417. const_location: boolean;
  418. begin
  419. oldloc:=l;
  420. if dst_size=OS_NO then
  421. internalerror(200309144);
  422. { handle transformations to 64bit separate }
  423. if dst_size in [OS_64,OS_S64] then
  424. begin
  425. if not (l.size in [OS_64,OS_S64]) then
  426. begin
  427. { load a smaller size to OS_64 }
  428. if l.loc=LOC_REGISTER then
  429. begin
  430. hregister:=cg.makeregsize(list,l.register64.reglo,OS_32);
  431. cg.a_load_reg_reg(list,l.size,OS_32,l.register64.reglo,hregister);
  432. end
  433. else
  434. hregister:=cg.getintregister(list,OS_INT);
  435. { load value in low register }
  436. case l.loc of
  437. {$ifdef cpuflags}
  438. LOC_FLAGS :
  439. cg.g_flags2reg(list,OS_INT,l.resflags,hregister);
  440. {$endif cpuflags}
  441. LOC_JUMP :
  442. begin
  443. cg.a_label(list,current_procinfo.CurrTrueLabel);
  444. cg.a_load_const_reg(list,OS_INT,1,hregister);
  445. current_asmdata.getjumplabel(hl);
  446. cg.a_jmp_always(list,hl);
  447. cg.a_label(list,current_procinfo.CurrFalseLabel);
  448. cg.a_load_const_reg(list,OS_INT,0,hregister);
  449. cg.a_label(list,hl);
  450. end;
  451. else
  452. cg.a_load_loc_reg(list,OS_INT,l,hregister);
  453. end;
  454. { reset hi part, take care of the signed bit of the current value }
  455. hregisterhi:=cg.getintregister(list,OS_INT);
  456. if (l.size in [OS_S8,OS_S16,OS_S32]) then
  457. begin
  458. if l.loc=LOC_CONSTANT then
  459. begin
  460. if (longint(l.value)<0) then
  461. cg.a_load_const_reg(list,OS_32,aint($ffffffff),hregisterhi)
  462. else
  463. cg.a_load_const_reg(list,OS_32,0,hregisterhi);
  464. end
  465. else
  466. begin
  467. cg.a_op_const_reg_reg(list,OP_SAR,OS_32,31,hregister,
  468. hregisterhi);
  469. end;
  470. end
  471. else
  472. cg.a_load_const_reg(list,OS_32,0,hregisterhi);
  473. location_reset(l,LOC_REGISTER,dst_size);
  474. l.register64.reglo:=hregister;
  475. l.register64.reghi:=hregisterhi;
  476. end
  477. else
  478. begin
  479. { 64bit to 64bit }
  480. if ((l.loc=LOC_CREGISTER) and maybeconst) then
  481. begin
  482. hregister:=l.register64.reglo;
  483. hregisterhi:=l.register64.reghi;
  484. const_location := true;
  485. end
  486. else
  487. begin
  488. hregister:=cg.getintregister(list,OS_INT);
  489. hregisterhi:=cg.getintregister(list,OS_INT);
  490. const_location := false;
  491. end;
  492. hreg64.reglo:=hregister;
  493. hreg64.reghi:=hregisterhi;
  494. { load value in new register }
  495. cg64.a_load64_loc_reg(list,l,hreg64);
  496. if not const_location then
  497. location_reset(l,LOC_REGISTER,dst_size)
  498. else
  499. location_reset(l,LOC_CREGISTER,dst_size);
  500. l.register64.reglo:=hregister;
  501. l.register64.reghi:=hregisterhi;
  502. end;
  503. end
  504. else
  505. begin
  506. {Do not bother to recycle the existing register. The register
  507. allocator eliminates unnecessary moves, so it's not needed
  508. and trying to recycle registers can cause problems because
  509. the registers changes size and may need aditional constraints.
  510. Not if it's about LOC_CREGISTER's (JM)
  511. }
  512. const_location :=
  513. (maybeconst) and
  514. (l.loc = LOC_CREGISTER) and
  515. (TCGSize2Size[l.size] = TCGSize2Size[dst_size]) and
  516. ((l.size = dst_size) or
  517. (TCGSize2Size[l.size] = sizeof(aint)));
  518. if not const_location then
  519. hregister:=cg.getintregister(list,dst_size)
  520. else
  521. hregister := l.register;
  522. { load value in new register }
  523. case l.loc of
  524. {$ifdef cpuflags}
  525. LOC_FLAGS :
  526. cg.g_flags2reg(list,dst_size,l.resflags,hregister);
  527. {$endif cpuflags}
  528. LOC_JUMP :
  529. begin
  530. cg.a_label(list,current_procinfo.CurrTrueLabel);
  531. cg.a_load_const_reg(list,dst_size,1,hregister);
  532. current_asmdata.getjumplabel(hl);
  533. cg.a_jmp_always(list,hl);
  534. cg.a_label(list,current_procinfo.CurrFalseLabel);
  535. cg.a_load_const_reg(list,dst_size,0,hregister);
  536. cg.a_label(list,hl);
  537. end;
  538. else
  539. begin
  540. { load_loc_reg can only handle size >= l.size, when the
  541. new size is smaller then we need to adjust the size
  542. of the orignal and maybe recalculate l.register for i386 }
  543. if (TCGSize2Size[dst_size]<TCGSize2Size[l.size]) then
  544. begin
  545. if (l.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  546. l.register:=cg.makeregsize(list,l.register,dst_size);
  547. { for big endian systems, the reference's offset must }
  548. { be increased in this case, since they have the }
  549. { MSB first in memory and e.g. byte(word_var) should }
  550. { return the second byte in this case (JM) }
  551. if (target_info.endian = ENDIAN_BIG) and
  552. (l.loc in [LOC_REFERENCE,LOC_CREFERENCE]) then
  553. begin
  554. inc(l.reference.offset,TCGSize2Size[l.size]-TCGSize2Size[dst_size]);
  555. l.reference.alignment:=newalignment(l.reference.alignment,TCGSize2Size[l.size]-TCGSize2Size[dst_size]);
  556. end;
  557. {$ifdef x86}
  558. if not (l.loc in [LOC_SUBSETREG,LOC_CSUBSETREG]) then
  559. l.size:=dst_size;
  560. {$endif x86}
  561. end;
  562. cg.a_load_loc_reg(list,dst_size,l,hregister);
  563. if (TCGSize2Size[dst_size]<TCGSize2Size[l.size])
  564. {$ifdef x86}
  565. and (l.loc in [LOC_SUBSETREG,LOC_CSUBSETREG])
  566. {$endif x86}
  567. then
  568. l.size:=dst_size;
  569. end;
  570. end;
  571. if not const_location then
  572. location_reset(l,LOC_REGISTER,dst_size)
  573. else
  574. location_reset(l,LOC_CREGISTER,dst_size);
  575. l.register:=hregister;
  576. end;
  577. { Release temp when it was a reference }
  578. if oldloc.loc=LOC_REFERENCE then
  579. location_freetemp(list,oldloc);
  580. end;
  581. {$else not cpu64bitalu}
  582. { 64-bit version }
  583. procedure location_force_reg(list:TAsmList;var l:tlocation;dst_size:TCGSize;maybeconst:boolean);
  584. var
  585. hregister : tregister;
  586. hl : tasmlabel;
  587. oldloc : tlocation;
  588. begin
  589. oldloc:=l;
  590. hregister:=cg.getintregister(list,dst_size);
  591. { load value in new register }
  592. case l.loc of
  593. LOC_FLAGS :
  594. cg.g_flags2reg(list,dst_size,l.resflags,hregister);
  595. LOC_JUMP :
  596. begin
  597. cg.a_label(list,current_procinfo.CurrTrueLabel);
  598. cg.a_load_const_reg(list,dst_size,1,hregister);
  599. current_asmdata.getjumplabel(hl);
  600. cg.a_jmp_always(list,hl);
  601. cg.a_label(list,current_procinfo.CurrFalseLabel);
  602. cg.a_load_const_reg(list,dst_size,0,hregister);
  603. cg.a_label(list,hl);
  604. end;
  605. else
  606. begin
  607. { load_loc_reg can only handle size >= l.size, when the
  608. new size is smaller then we need to adjust the size
  609. of the orignal and maybe recalculate l.register for i386 }
  610. if (TCGSize2Size[dst_size]<TCGSize2Size[l.size]) then
  611. begin
  612. if (l.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  613. l.register:=cg.makeregsize(list,l.register,dst_size);
  614. { for big endian systems, the reference's offset must }
  615. { be increased in this case, since they have the }
  616. { MSB first in memory and e.g. byte(word_var) should }
  617. { return the second byte in this case (JM) }
  618. if (target_info.endian = ENDIAN_BIG) and
  619. (l.loc in [LOC_REFERENCE,LOC_CREFERENCE]) then
  620. begin
  621. inc(l.reference.offset,TCGSize2Size[l.size]-TCGSize2Size[dst_size]);
  622. l.reference.alignment:=newalignment(l.reference.alignment,TCGSize2Size[l.size]-TCGSize2Size[dst_size]);
  623. end;
  624. {$ifdef x86}
  625. l.size:=dst_size;
  626. {$endif x86}
  627. end;
  628. cg.a_load_loc_reg(list,dst_size,l,hregister);
  629. {$ifndef x86}
  630. if (TCGSize2Size[dst_size]<TCGSize2Size[l.size]) then
  631. l.size:=dst_size;
  632. {$endif not x86}
  633. end;
  634. end;
  635. if (l.loc <> LOC_CREGISTER) or
  636. not maybeconst then
  637. location_reset(l,LOC_REGISTER,dst_size)
  638. else
  639. location_reset(l,LOC_CREGISTER,dst_size);
  640. l.register:=hregister;
  641. { Release temp when it was a reference }
  642. if oldloc.loc=LOC_REFERENCE then
  643. location_freetemp(list,oldloc);
  644. end;
  645. {$endif not cpu64bitalu}
  646. procedure location_force_fpureg(list:TAsmList;var l: tlocation;maybeconst:boolean);
  647. var
  648. reg : tregister;
  649. href : treference;
  650. begin
  651. if (l.loc<>LOC_FPUREGISTER) and
  652. ((l.loc<>LOC_CFPUREGISTER) or (not maybeconst)) then
  653. begin
  654. { if it's in an mm register, store to memory first }
  655. if (l.loc in [LOC_MMREGISTER,LOC_CMMREGISTER]) then
  656. begin
  657. tg.GetTemp(list,tcgsize2size[l.size],tcgsize2size[l.size],tt_normal,href);
  658. cg.a_loadmm_reg_ref(list,l.size,l.size,l.register,href,mms_movescalar);
  659. location_reset_ref(l,LOC_REFERENCE,l.size,0);
  660. l.reference:=href;
  661. end;
  662. reg:=cg.getfpuregister(list,l.size);
  663. cg.a_loadfpu_loc_reg(list,l.size,l,reg);
  664. location_freetemp(list,l);
  665. location_reset(l,LOC_FPUREGISTER,l.size);
  666. l.register:=reg;
  667. end;
  668. end;
  669. procedure location_force_mmregscalar(list:TAsmList;var l: tlocation;maybeconst:boolean);
  670. var
  671. reg : tregister;
  672. href : treference;
  673. newsize : tcgsize;
  674. begin
  675. if (l.loc<>LOC_MMREGISTER) and
  676. ((l.loc<>LOC_CMMREGISTER) or (not maybeconst)) then
  677. begin
  678. { if it's in an fpu register, store to memory first }
  679. if (l.loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER]) then
  680. begin
  681. tg.GetTemp(list,tcgsize2size[l.size],tcgsize2size[l.size],tt_normal,href);
  682. cg.a_loadfpu_reg_ref(list,l.size,l.size,l.register,href);
  683. location_reset_ref(l,LOC_REFERENCE,l.size,0);
  684. l.reference:=href;
  685. end;
  686. {$ifndef cpu64bitalu}
  687. if (l.loc in [LOC_REGISTER,LOC_CREGISTER]) and
  688. (l.size in [OS_64,OS_S64]) then
  689. begin
  690. reg:=cg.getmmregister(list,OS_F64);
  691. cg64.a_loadmm_intreg64_reg(list,OS_F64,l.register64,reg);
  692. l.size:=OS_F64
  693. end
  694. else
  695. {$endif not cpu64bitalu}
  696. begin
  697. { on ARM, CFP values may be located in integer registers,
  698. and its second_int_to_real() also uses this routine to
  699. force integer (memory) values in an mmregister }
  700. if (l.size in [OS_32,OS_S32]) then
  701. newsize:=OS_F32
  702. else if (l.size in [OS_64,OS_S64]) then
  703. newsize:=OS_F64
  704. else
  705. newsize:=l.size;
  706. reg:=cg.getmmregister(list,newsize);
  707. cg.a_loadmm_loc_reg(list,newsize,l,reg,mms_movescalar);
  708. l.size:=newsize;
  709. end;
  710. location_freetemp(list,l);
  711. location_reset(l,LOC_MMREGISTER,l.size);
  712. l.register:=reg;
  713. end;
  714. end;
  715. procedure gen_loadfpu_loc_cgpara(list: TAsmList; const l: tlocation;const cgpara: tcgpara;locintsize: longint);
  716. var
  717. {$ifdef i386}
  718. href : treference;
  719. size : longint;
  720. {$endif i386}
  721. locsize : tcgsize;
  722. tmploc : tlocation;
  723. begin
  724. if not(l.size in [OS_32,OS_S32,OS_64,OS_S64,OS_128,OS_S128]) then
  725. locsize:=l.size
  726. else
  727. locsize:=int_float_cgsize(tcgsize2size[l.size]);
  728. {$ifdef i386}
  729. case l.loc of
  730. LOC_FPUREGISTER,
  731. LOC_CFPUREGISTER:
  732. begin
  733. case cgpara.location^.loc of
  734. LOC_REFERENCE:
  735. begin
  736. size:=align(locintsize,cgpara.alignment);
  737. if (not paramanager.use_fixed_stack) and
  738. (cgpara.location^.reference.index=NR_STACK_POINTER_REG) then
  739. begin
  740. cg.g_stackpointer_alloc(list,size);
  741. reference_reset_base(href,NR_STACK_POINTER_REG,0,sizeof(pint));
  742. end
  743. else
  744. reference_reset_base(href,cgpara.location^.reference.index,cgpara.location^.reference.offset,cgpara.alignment);
  745. cg.a_loadfpu_reg_ref(list,locsize,locsize,l.register,href);
  746. end;
  747. LOC_FPUREGISTER:
  748. begin
  749. cg.a_loadfpu_reg_reg(list,locsize,cgpara.location^.size,l.register,cgpara.location^.register);
  750. end;
  751. { can happen if a record with only 1 "single field" is
  752. returned in a floating point register and then is directly
  753. passed to a regcall parameter }
  754. LOC_REGISTER:
  755. begin
  756. tmploc:=l;
  757. location_force_mem(list,tmploc);
  758. case locsize of
  759. OS_F32:
  760. tmploc.size:=OS_32;
  761. OS_F64:
  762. tmploc.size:=OS_64;
  763. else
  764. internalerror(2010053116);
  765. end;
  766. cg.a_load_loc_cgpara(list,tmploc,cgpara);
  767. location_freetemp(list,tmploc);
  768. end
  769. else
  770. internalerror(2010053003);
  771. end;
  772. end;
  773. LOC_MMREGISTER,
  774. LOC_CMMREGISTER:
  775. begin
  776. case cgpara.location^.loc of
  777. LOC_REFERENCE:
  778. begin
  779. { can't use TCGSize2Size[l.size], because the size of an
  780. 80 bit extended parameter can be either 10 or 12 bytes }
  781. size:=align(locintsize,cgpara.alignment);
  782. if (not paramanager.use_fixed_stack) and
  783. (cgpara.location^.reference.index=NR_STACK_POINTER_REG) then
  784. begin
  785. cg.g_stackpointer_alloc(list,size);
  786. reference_reset_base(href,NR_STACK_POINTER_REG,0,sizeof(pint));
  787. end
  788. else
  789. reference_reset_base(href,cgpara.location^.reference.index,cgpara.location^.reference.offset,cgpara.alignment);
  790. cg.a_loadmm_reg_ref(list,locsize,locsize,l.register,href,mms_movescalar);
  791. end;
  792. LOC_FPUREGISTER:
  793. begin
  794. tmploc:=l;
  795. location_force_mem(list,tmploc);
  796. cg.a_loadfpu_ref_cgpara(list,tmploc.size,tmploc.reference,cgpara);
  797. location_freetemp(list,tmploc);
  798. end;
  799. else
  800. internalerror(2010053004);
  801. end;
  802. end;
  803. LOC_REFERENCE,
  804. LOC_CREFERENCE :
  805. begin
  806. case cgpara.location^.loc of
  807. LOC_REFERENCE:
  808. begin
  809. size:=align(locintsize,cgpara.alignment);
  810. if (not paramanager.use_fixed_stack) and
  811. (cgpara.location^.reference.index=NR_STACK_POINTER_REG) then
  812. cg.a_load_ref_cgpara(list,locsize,l.reference,cgpara)
  813. else
  814. begin
  815. reference_reset_base(href,cgpara.location^.reference.index,cgpara.location^.reference.offset,cgpara.alignment);
  816. cg.g_concatcopy(list,l.reference,href,size);
  817. end;
  818. end;
  819. LOC_FPUREGISTER:
  820. begin
  821. cg.a_loadfpu_ref_cgpara(list,locsize,l.reference,cgpara);
  822. end;
  823. else
  824. internalerror(2010053005);
  825. end;
  826. end;
  827. else
  828. internalerror(2002042430);
  829. end;
  830. {$else i386}
  831. case l.loc of
  832. LOC_MMREGISTER,
  833. LOC_CMMREGISTER:
  834. case cgpara.location^.loc of
  835. LOC_REFERENCE,
  836. LOC_CREFERENCE,
  837. LOC_MMREGISTER,
  838. LOC_CMMREGISTER,
  839. LOC_REGISTER,
  840. LOC_CREGISTER :
  841. cg.a_loadmm_reg_cgpara(list,locsize,l.register,cgpara,mms_movescalar);
  842. LOC_FPUREGISTER,
  843. LOC_CFPUREGISTER:
  844. begin
  845. tmploc:=l;
  846. location_force_fpureg(list,tmploc,false);
  847. cg.a_loadfpu_reg_cgpara(list,tmploc.size,tmploc.register,cgpara);
  848. end;
  849. else
  850. internalerror(200204249);
  851. end;
  852. LOC_FPUREGISTER,
  853. LOC_CFPUREGISTER:
  854. case cgpara.location^.loc of
  855. LOC_MMREGISTER,
  856. LOC_CMMREGISTER:
  857. begin
  858. tmploc:=l;
  859. location_force_mmregscalar(list,tmploc,false);
  860. cg.a_loadmm_reg_cgpara(list,tmploc.size,tmploc.register,cgpara,mms_movescalar);
  861. end;
  862. { Some targets pass floats in normal registers }
  863. LOC_REGISTER,
  864. LOC_CREGISTER,
  865. LOC_REFERENCE,
  866. LOC_CREFERENCE,
  867. LOC_FPUREGISTER,
  868. LOC_CFPUREGISTER:
  869. cg.a_loadfpu_reg_cgpara(list,locsize,l.register,cgpara);
  870. else
  871. internalerror(2002042433);
  872. end;
  873. LOC_REFERENCE,
  874. LOC_CREFERENCE:
  875. case cgpara.location^.loc of
  876. LOC_MMREGISTER,
  877. LOC_CMMREGISTER:
  878. cg.a_loadmm_ref_cgpara(list,locsize,l.reference,cgpara,mms_movescalar);
  879. { Some targets pass floats in normal registers }
  880. LOC_REGISTER,
  881. LOC_CREGISTER,
  882. LOC_REFERENCE,
  883. LOC_CREFERENCE,
  884. LOC_FPUREGISTER,
  885. LOC_CFPUREGISTER:
  886. cg.a_loadfpu_ref_cgpara(list,locsize,l.reference,cgpara);
  887. else
  888. internalerror(2002042431);
  889. end;
  890. LOC_REGISTER,
  891. LOC_CREGISTER :
  892. begin
  893. {$ifndef cpu64bitalu}
  894. { Only a_load_ref_cgpara supports multiple locations, when the
  895. value is still a const or in a register then write it
  896. to a reference first. This situation can be triggered
  897. by typecasting an int64 constant to a record of 8 bytes }
  898. if locsize = OS_F64 then
  899. begin
  900. tmploc:=l;
  901. location_force_mem(list,tmploc);
  902. cg.a_load_loc_cgpara(list,tmploc,cgpara);
  903. location_freetemp(list,tmploc);
  904. end
  905. else
  906. {$endif not cpu64bitalu}
  907. cg.a_load_loc_cgpara(list,l,cgpara);
  908. end;
  909. else
  910. internalerror(2002042432);
  911. end;
  912. {$endif i386}
  913. end;
  914. procedure gen_load_loc_cgpara(list: TAsmList; vardef: tdef; const l: tlocation; const cgpara: tcgpara);
  915. {$ifndef cpu64bitalu}
  916. var
  917. tmploc: tlocation;
  918. {$endif not cpu64bitalu}
  919. begin
  920. { Handle Floating point types differently
  921. This doesn't depend on emulator settings, emulator settings should
  922. be handled by cpupara }
  923. if (vardef.typ=floatdef) or
  924. { some ABIs return certain records in an fpu register }
  925. (l.loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER]) or
  926. (assigned(cgpara.location) and
  927. (cgpara.Location^.loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER])) then
  928. begin
  929. gen_loadfpu_loc_cgpara(list,l,cgpara,vardef.size);
  930. exit;
  931. end;
  932. case l.loc of
  933. LOC_CONSTANT,
  934. LOC_REGISTER,
  935. LOC_CREGISTER,
  936. LOC_REFERENCE,
  937. LOC_CREFERENCE :
  938. begin
  939. {$ifndef cpu64bitalu}
  940. { use cg64 only for int64, not for 8 byte records }
  941. if is_64bit(vardef) then
  942. cg64.a_load64_loc_cgpara(list,l,cgpara)
  943. else
  944. {$endif not cpu64bitalu}
  945. begin
  946. {$ifndef cpu64bitalu}
  947. { Only a_load_ref_cgpara supports multiple locations, when the
  948. value is still a const or in a register then write it
  949. to a reference first. This situation can be triggered
  950. by typecasting an int64 constant to a record of 8 bytes }
  951. if l.size in [OS_64,OS_S64] then
  952. begin
  953. tmploc:=l;
  954. location_force_mem(list,tmploc);
  955. cg.a_load_loc_cgpara(list,tmploc,cgpara);
  956. location_freetemp(list,tmploc);
  957. end
  958. else
  959. {$endif not cpu64bitalu}
  960. cg.a_load_loc_cgpara(list,l,cgpara);
  961. end;
  962. end;
  963. LOC_MMREGISTER,
  964. LOC_CMMREGISTER:
  965. begin
  966. case l.size of
  967. OS_F32,
  968. OS_F64:
  969. cg.a_loadmm_loc_cgpara(list,l,cgpara,mms_movescalar);
  970. else
  971. cg.a_loadmm_loc_cgpara(list,l,cgpara,nil);
  972. end;
  973. end;
  974. {$ifdef SUPPORT_MMX}
  975. LOC_MMXREGISTER,
  976. LOC_CMMXREGISTER:
  977. cg.a_loadmm_reg_cgpara(list,OS_M64,l.register,cgpara,nil);
  978. {$endif SUPPORT_MMX}
  979. else
  980. internalerror(200204241);
  981. end;
  982. end;
  983. procedure register_maybe_adjust_setbase(list: TAsmList; var l: tlocation; setbase: aint);
  984. var
  985. tmpreg: tregister;
  986. begin
  987. if (setbase<>0) then
  988. begin
  989. if not(l.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  990. internalerror(2007091502);
  991. { subtract the setbase }
  992. case l.loc of
  993. LOC_CREGISTER:
  994. begin
  995. tmpreg := cg.getintregister(list,l.size);
  996. cg.a_op_const_reg_reg(list,OP_SUB,l.size,setbase,l.register,tmpreg);
  997. l.loc:=LOC_REGISTER;
  998. l.register:=tmpreg;
  999. end;
  1000. LOC_REGISTER:
  1001. begin
  1002. cg.a_op_const_reg(list,OP_SUB,l.size,setbase,l.register);
  1003. end;
  1004. end;
  1005. end;
  1006. end;
  1007. procedure location_force_mmreg(list:TAsmList;var l: tlocation;maybeconst:boolean);
  1008. var
  1009. reg : tregister;
  1010. begin
  1011. if (l.loc<>LOC_MMREGISTER) and
  1012. ((l.loc<>LOC_CMMREGISTER) or (not maybeconst)) then
  1013. begin
  1014. reg:=cg.getmmregister(list,OS_VECTOR);
  1015. cg.a_loadmm_loc_reg(list,OS_VECTOR,l,reg,nil);
  1016. location_freetemp(list,l);
  1017. location_reset(l,LOC_MMREGISTER,OS_VECTOR);
  1018. l.register:=reg;
  1019. end;
  1020. end;
  1021. procedure location_allocate_register(list: TAsmList;out l: tlocation;def: tdef;constant: boolean);
  1022. begin
  1023. l.size:=def_cgsize(def);
  1024. if (def.typ=floatdef) and
  1025. not(cs_fp_emulation in current_settings.moduleswitches) then
  1026. begin
  1027. if use_vectorfpu(def) then
  1028. begin
  1029. if constant then
  1030. location_reset(l,LOC_CMMREGISTER,l.size)
  1031. else
  1032. location_reset(l,LOC_MMREGISTER,l.size);
  1033. l.register:=cg.getmmregister(list,l.size);
  1034. end
  1035. else
  1036. begin
  1037. if constant then
  1038. location_reset(l,LOC_CFPUREGISTER,l.size)
  1039. else
  1040. location_reset(l,LOC_FPUREGISTER,l.size);
  1041. l.register:=cg.getfpuregister(list,l.size);
  1042. end;
  1043. end
  1044. else
  1045. begin
  1046. if constant then
  1047. location_reset(l,LOC_CREGISTER,l.size)
  1048. else
  1049. location_reset(l,LOC_REGISTER,l.size);
  1050. {$ifndef cpu64bitalu}
  1051. if l.size in [OS_64,OS_S64,OS_F64] then
  1052. begin
  1053. l.register64.reglo:=cg.getintregister(list,OS_32);
  1054. l.register64.reghi:=cg.getintregister(list,OS_32);
  1055. end
  1056. else
  1057. {$endif not cpu64bitalu}
  1058. l.register:=cg.getintregister(list,l.size);
  1059. end;
  1060. end;
  1061. procedure location_force_mem(list:TAsmList;var l:tlocation);
  1062. var
  1063. r : treference;
  1064. begin
  1065. case l.loc of
  1066. LOC_FPUREGISTER,
  1067. LOC_CFPUREGISTER :
  1068. begin
  1069. tg.GetTemp(list,TCGSize2Size[l.size],TCGSize2Size[l.size],tt_normal,r);
  1070. cg.a_loadfpu_reg_ref(list,l.size,l.size,l.register,r);
  1071. location_reset_ref(l,LOC_REFERENCE,l.size,0);
  1072. l.reference:=r;
  1073. end;
  1074. LOC_MMREGISTER,
  1075. LOC_CMMREGISTER:
  1076. begin
  1077. tg.GetTemp(list,TCGSize2Size[l.size],TCGSize2Size[l.size],tt_normal,r);
  1078. cg.a_loadmm_reg_ref(list,l.size,l.size,l.register,r,mms_movescalar);
  1079. location_reset_ref(l,LOC_REFERENCE,l.size,0);
  1080. l.reference:=r;
  1081. end;
  1082. LOC_CONSTANT,
  1083. LOC_REGISTER,
  1084. LOC_CREGISTER :
  1085. begin
  1086. tg.GetTemp(list,TCGSize2Size[l.size],TCGSize2Size[l.size],tt_normal,r);
  1087. {$ifndef cpu64bitalu}
  1088. if l.size in [OS_64,OS_S64] then
  1089. cg64.a_load64_loc_ref(list,l,r)
  1090. else
  1091. {$endif not cpu64bitalu}
  1092. cg.a_load_loc_ref(list,l.size,l,r);
  1093. location_reset_ref(l,LOC_REFERENCE,l.size,0);
  1094. l.reference:=r;
  1095. end;
  1096. LOC_SUBSETREG,
  1097. LOC_CSUBSETREG,
  1098. LOC_SUBSETREF,
  1099. LOC_CSUBSETREF:
  1100. begin
  1101. tg.GetTemp(list,TCGSize2Size[l.size],TCGSize2Size[l.size],tt_normal,r);
  1102. cg.a_load_loc_ref(list,l.size,l,r);
  1103. location_reset_ref(l,LOC_REFERENCE,l.size,0);
  1104. l.reference:=r;
  1105. end;
  1106. LOC_CREFERENCE,
  1107. LOC_REFERENCE : ;
  1108. else
  1109. internalerror(200203219);
  1110. end;
  1111. end;
  1112. procedure location_get_data_ref(list:TAsmList;const l:tlocation;var ref:treference;loadref:boolean; alignment: longint);
  1113. begin
  1114. case l.loc of
  1115. LOC_REGISTER,
  1116. LOC_CREGISTER :
  1117. begin
  1118. if not loadref then
  1119. internalerror(200410231);
  1120. reference_reset_base(ref,l.register,0,alignment);
  1121. end;
  1122. LOC_REFERENCE,
  1123. LOC_CREFERENCE :
  1124. begin
  1125. if loadref then
  1126. begin
  1127. reference_reset_base(ref,cg.getaddressregister(list),0,alignment);
  1128. cg.a_load_ref_reg(list,OS_ADDR,OS_ADDR,l.reference,ref.base);
  1129. end
  1130. else
  1131. ref:=l.reference;
  1132. end;
  1133. else
  1134. internalerror(200309181);
  1135. end;
  1136. end;
  1137. {****************************************************************************
  1138. Init/Finalize Code
  1139. ****************************************************************************}
  1140. procedure copyvalueparas(p:TObject;arg:pointer);
  1141. var
  1142. href : treference;
  1143. hreg : tregister;
  1144. list : TAsmList;
  1145. hsym : tparavarsym;
  1146. l : longint;
  1147. localcopyloc : tlocation;
  1148. begin
  1149. list:=TAsmList(arg);
  1150. if (tsym(p).typ=paravarsym) and
  1151. (tparavarsym(p).varspez=vs_value) and
  1152. (paramanager.push_addr_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)) then
  1153. begin
  1154. { we have no idea about the alignment at the caller side }
  1155. location_get_data_ref(list,tparavarsym(p).initialloc,href,true,1);
  1156. if is_open_array(tparavarsym(p).vardef) or
  1157. is_array_of_const(tparavarsym(p).vardef) then
  1158. begin
  1159. { cdecl functions don't have a high pointer so it is not possible to generate
  1160. a local copy }
  1161. if not(current_procinfo.procdef.proccalloption in cdecl_pocalls) then
  1162. begin
  1163. hsym:=tparavarsym(tsym(p).owner.Find('high'+tsym(p).name));
  1164. if not assigned(hsym) then
  1165. internalerror(200306061);
  1166. hreg:=cg.getaddressregister(list);
  1167. if not is_packed_array(tparavarsym(p).vardef) then
  1168. cg.g_copyvaluepara_openarray(list,href,hsym.initialloc,tarraydef(tparavarsym(p).vardef).elesize,hreg)
  1169. else
  1170. internalerror(2006080401);
  1171. // cg.g_copyvaluepara_packedopenarray(list,href,hsym.intialloc,tarraydef(tparavarsym(p).vardef).elepackedbitsize,hreg);
  1172. cg.a_load_reg_loc(list,OS_ADDR,hreg,tparavarsym(p).initialloc);
  1173. end;
  1174. end
  1175. else
  1176. begin
  1177. { Allocate space for the local copy }
  1178. l:=tparavarsym(p).getsize;
  1179. localcopyloc.loc:=LOC_REFERENCE;
  1180. localcopyloc.size:=int_cgsize(l);
  1181. tg.GetLocal(list,l,tparavarsym(p).vardef,localcopyloc.reference);
  1182. { Copy data }
  1183. if is_shortstring(tparavarsym(p).vardef) then
  1184. begin
  1185. { this code is only executed before the code for the body and the entry/exit code is generated
  1186. so we're allowed to include pi_do_call here; after pass1 is run, this isn't allowed anymore
  1187. }
  1188. include(current_procinfo.flags,pi_do_call);
  1189. cg.g_copyshortstring(list,href,localcopyloc.reference,tstringdef(tparavarsym(p).vardef).len)
  1190. end
  1191. else if tparavarsym(p).vardef.typ = variantdef then
  1192. begin
  1193. { this code is only executed before the code for the body and the entry/exit code is generated
  1194. so we're allowed to include pi_do_call here; after pass1 is run, this isn't allowed anymore
  1195. }
  1196. include(current_procinfo.flags,pi_do_call);
  1197. cg.g_copyvariant(list,href,localcopyloc.reference)
  1198. end
  1199. else
  1200. begin
  1201. { pass proper alignment info }
  1202. localcopyloc.reference.alignment:=tparavarsym(p).vardef.alignment;
  1203. cg.g_concatcopy(list,href,localcopyloc.reference,tparavarsym(p).vardef.size);
  1204. end;
  1205. { update localloc of varsym }
  1206. tg.Ungetlocal(list,tparavarsym(p).localloc.reference);
  1207. tparavarsym(p).localloc:=localcopyloc;
  1208. tparavarsym(p).initialloc:=localcopyloc;
  1209. end;
  1210. end;
  1211. end;
  1212. const
  1213. {$ifdef cpu64bitalu}
  1214. trashintvalues: array[0..nroftrashvalues-1] of aint = ($5555555555555555,aint($AAAAAAAAAAAAAAAA),aint($EFEFEFEFEFEFEFEF),0);
  1215. {$endif cpu64bitalu}
  1216. {$ifdef cpu32bitalu}
  1217. trashintvalues: array[0..nroftrashvalues-1] of aint = ($55555555,aint($AAAAAAAA),aint($EFEFEFEF),0);
  1218. {$endif cpu32bitalu}
  1219. {$ifdef cpu8bitalu}
  1220. trashintvalues: array[0..nroftrashvalues-1] of aint = ($55,aint($AA),aint($EF),0);
  1221. {$endif cpu8bitalu}
  1222. procedure trash_reference(list: TAsmList; const ref: treference; size: aint);
  1223. var
  1224. countreg, valuereg: tregister;
  1225. hl: tasmlabel;
  1226. trashintval: aint;
  1227. tmpref: treference;
  1228. begin
  1229. trashintval := trashintvalues[localvartrashing];
  1230. case size of
  1231. 0: ; { empty record }
  1232. 1: cg.a_load_const_ref(list,OS_8,byte(trashintval),ref);
  1233. 2: cg.a_load_const_ref(list,OS_16,word(trashintval),ref);
  1234. 4: cg.a_load_const_ref(list,OS_32,longint(trashintval),ref);
  1235. {$ifdef cpu64bitalu}
  1236. 8: cg.a_load_const_ref(list,OS_64,int64(trashintval),ref);
  1237. {$endif cpu64bitalu}
  1238. else
  1239. begin
  1240. countreg := cg.getintregister(list,OS_ADDR);
  1241. valuereg := cg.getintregister(list,OS_8);
  1242. cg.a_load_const_reg(list,OS_INT,size,countreg);
  1243. cg.a_load_const_reg(list,OS_8,byte(trashintval),valuereg);
  1244. current_asmdata.getjumplabel(hl);
  1245. tmpref := ref;
  1246. if (tmpref.index <> NR_NO) then
  1247. internalerror(200607201);
  1248. tmpref.index := countreg;
  1249. dec(tmpref.offset);
  1250. cg.a_label(list,hl);
  1251. cg.a_load_reg_ref(list,OS_8,OS_8,valuereg,tmpref);
  1252. cg.a_op_const_reg(list,OP_SUB,OS_INT,1,countreg);
  1253. cg.a_cmp_const_reg_label(list,OS_INT,OC_NE,0,countreg,hl);
  1254. cg.a_reg_sync(list,tmpref.base);
  1255. cg.a_reg_sync(list,valuereg);
  1256. end;
  1257. end;
  1258. end;
  1259. { trash contents of local variables or parameters (function result) }
  1260. procedure trash_variable(p:TObject;arg:pointer);
  1261. var
  1262. trashintval: aint;
  1263. list: TAsmList absolute arg;
  1264. begin
  1265. if ((tsym(p).typ=localvarsym) or
  1266. ((tsym(p).typ=paravarsym) and
  1267. (vo_is_funcret in tparavarsym(p).varoptions))) and
  1268. not(is_managed_type(tabstractnormalvarsym(p).vardef)) and
  1269. not(assigned(tabstractnormalvarsym(p).defaultconstsym)) then
  1270. begin
  1271. trashintval := trashintvalues[localvartrashing];
  1272. case tabstractnormalvarsym(p).initialloc.loc of
  1273. LOC_CREGISTER :
  1274. {$ifopt q+}
  1275. {$define overflowon}
  1276. {$q-}
  1277. {$endif}
  1278. begin
  1279. { avoid problems with broken x86 shifts }
  1280. case tcgsize2size[tabstractnormalvarsym(p).initialloc.size] of
  1281. 1: cg.a_load_const_reg(list,OS_8,byte(trashintval),tabstractnormalvarsym(p).initialloc.register);
  1282. 2: cg.a_load_const_reg(list,OS_16,word(trashintval),tabstractnormalvarsym(p).initialloc.register);
  1283. 4: cg.a_load_const_reg(list,OS_32,longint(trashintval),tabstractnormalvarsym(p).initialloc.register);
  1284. 8:
  1285. begin
  1286. {$ifdef cpu64bitalu}
  1287. cg.a_load_const_reg(list,OS_64,aint(trashintval),tabstractnormalvarsym(p).initialloc.register);
  1288. {$else}
  1289. cg64.a_load64_const_reg(list,int64(trashintval) shl 32 or int64(trashintval),tabstractnormalvarsym(p).initialloc.register64);
  1290. {$endif}
  1291. end;
  1292. else
  1293. internalerror(2010060801);
  1294. end;
  1295. end;
  1296. {$ifdef overflowon}
  1297. {$undef overflowon}
  1298. {$q+}
  1299. {$endif}
  1300. LOC_REFERENCE :
  1301. begin
  1302. if ((tsym(p).typ=localvarsym) and
  1303. not(vo_is_funcret in tabstractvarsym(p).varoptions)) or
  1304. not is_shortstring(tabstractnormalvarsym(p).vardef) then
  1305. trash_reference(list,tabstractnormalvarsym(p).initialloc.reference,
  1306. tlocalvarsym(p).getsize)
  1307. else
  1308. { may be an open string, even if is_open_string() returns }
  1309. { false (for some helpers in the system unit) }
  1310. { an open string has at least size 2 }
  1311. trash_reference(list,tabstractnormalvarsym(p).initialloc.reference,
  1312. 2);
  1313. end;
  1314. LOC_CMMREGISTER :
  1315. ;
  1316. LOC_CFPUREGISTER :
  1317. ;
  1318. else
  1319. internalerror(200410124);
  1320. end;
  1321. end;
  1322. end;
  1323. { initializes the regvars from staticsymtable with 0 }
  1324. procedure initialize_regvars(p:TObject;arg:pointer);
  1325. var
  1326. href : treference;
  1327. begin
  1328. if (tsym(p).typ=staticvarsym) then
  1329. begin
  1330. { Static variables can have the initialloc only set to LOC_CxREGISTER
  1331. or LOC_INVALID, for explaination see gen_alloc_symtable (PFV) }
  1332. case tstaticvarsym(p).initialloc.loc of
  1333. LOC_CREGISTER :
  1334. begin
  1335. {$ifndef cpu64bitalu}
  1336. if (tstaticvarsym(p).initialloc.size in [OS_64,OS_S64]) then
  1337. cg64.a_load64_const_reg(TAsmList(arg),0,tstaticvarsym(p).initialloc.register64)
  1338. else
  1339. {$endif not cpu64bitalu}
  1340. cg.a_load_const_reg(TAsmList(arg),reg_cgsize(tstaticvarsym(p).initialloc.register),0,
  1341. tstaticvarsym(p).initialloc.register);
  1342. end;
  1343. LOC_CMMREGISTER :
  1344. { clear the whole register }
  1345. cg.a_opmm_reg_reg(TAsmList(arg),OP_XOR,reg_cgsize(tstaticvarsym(p).initialloc.register),
  1346. tstaticvarsym(p).initialloc.register,
  1347. tstaticvarsym(p).initialloc.register,
  1348. nil);
  1349. LOC_CFPUREGISTER :
  1350. begin
  1351. { initialize fpu regvar by loading from memory }
  1352. reference_reset_symbol(href,
  1353. current_asmdata.RefAsmSymbol(tstaticvarsym(p).mangledname), 0,
  1354. var_align(tstaticvarsym(p).vardef.alignment));
  1355. cg.a_loadfpu_ref_reg(TAsmList(arg), tstaticvarsym(p).initialloc.size,
  1356. tstaticvarsym(p).initialloc.size, href, tstaticvarsym(p).initialloc.register);
  1357. end;
  1358. LOC_INVALID :
  1359. ;
  1360. else
  1361. internalerror(200410124);
  1362. end;
  1363. end;
  1364. end;
  1365. { generates the code for initialisation of local data }
  1366. procedure initialize_data(p:TObject;arg:pointer);
  1367. var
  1368. OldAsmList : TAsmList;
  1369. hp : tnode;
  1370. begin
  1371. if (tsym(p).typ = localvarsym) and
  1372. { local (procedure or unit) variables only need initialization if
  1373. they are used }
  1374. ((tabstractvarsym(p).refs>0) or
  1375. { managed return symbols must be inited }
  1376. ((tsym(p).typ=localvarsym) and (vo_is_funcret in tlocalvarsym(p).varoptions))
  1377. ) and
  1378. not(vo_is_typed_const in tabstractvarsym(p).varoptions) and
  1379. not(vo_is_external in tabstractvarsym(p).varoptions) and
  1380. (is_managed_type(tabstractvarsym(p).vardef) or
  1381. ((m_iso in current_settings.modeswitches) and (tabstractvarsym(p).vardef.typ=filedef))
  1382. ) then
  1383. begin
  1384. OldAsmList:=current_asmdata.CurrAsmList;
  1385. current_asmdata.CurrAsmList:=TAsmList(arg);
  1386. hp:=initialize_data_node(cloadnode.create(tsym(p),tsym(p).owner));
  1387. firstpass(hp);
  1388. secondpass(hp);
  1389. hp.free;
  1390. current_asmdata.CurrAsmList:=OldAsmList;
  1391. end;
  1392. end;
  1393. procedure finalize_sym(asmlist:TAsmList;sym:tsym);
  1394. var
  1395. hp : tnode;
  1396. OldAsmList : TAsmList;
  1397. begin
  1398. include(current_procinfo.flags,pi_needs_implicit_finally);
  1399. OldAsmList:=current_asmdata.CurrAsmList;
  1400. current_asmdata.CurrAsmList:=asmlist;
  1401. hp:=finalize_data_node(cloadnode.create(sym,sym.owner));
  1402. firstpass(hp);
  1403. secondpass(hp);
  1404. hp.free;
  1405. current_asmdata.CurrAsmList:=OldAsmList;
  1406. end;
  1407. { generates the code for finalisation of local variables }
  1408. procedure finalize_local_vars(p:TObject;arg:pointer);
  1409. begin
  1410. if (tsym(p).typ=localvarsym) and
  1411. (tlocalvarsym(p).refs>0) and
  1412. not(vo_is_external in tlocalvarsym(p).varoptions) and
  1413. not(vo_is_funcret in tlocalvarsym(p).varoptions) and
  1414. is_managed_type(tlocalvarsym(p).vardef) then
  1415. finalize_sym(TAsmList(arg),tsym(p));
  1416. end;
  1417. { generates the code for finalization of static symtable and
  1418. all local (static) typed consts }
  1419. procedure finalize_static_data(p:TObject;arg:pointer);
  1420. var
  1421. i : longint;
  1422. pd : tprocdef;
  1423. begin
  1424. case tsym(p).typ of
  1425. staticvarsym :
  1426. begin
  1427. { local (procedure or unit) variables only need finalization
  1428. if they are used
  1429. }
  1430. if ((tstaticvarsym(p).refs>0) or
  1431. { global (unit) variables always need finalization, since
  1432. they may also be used in another unit
  1433. }
  1434. (tstaticvarsym(p).owner.symtabletype=globalsymtable)) and
  1435. (tstaticvarsym(p).varspez<>vs_const) and
  1436. not(vo_is_funcret in tstaticvarsym(p).varoptions) and
  1437. not(vo_is_external in tstaticvarsym(p).varoptions) and
  1438. is_managed_type(tstaticvarsym(p).vardef) then
  1439. finalize_sym(TAsmList(arg),tsym(p));
  1440. end;
  1441. procsym :
  1442. begin
  1443. for i:=0 to tprocsym(p).ProcdefList.Count-1 do
  1444. begin
  1445. pd:=tprocdef(tprocsym(p).ProcdefList[i]);
  1446. if assigned(pd.localst) and
  1447. (pd.procsym=tprocsym(p)) and
  1448. (pd.localst.symtabletype<>staticsymtable) then
  1449. pd.localst.SymList.ForEachCall(@finalize_static_data,arg);
  1450. end;
  1451. end;
  1452. end;
  1453. end;
  1454. { generates the code for incrementing the reference count of parameters and
  1455. initialize out parameters }
  1456. procedure init_paras(p:TObject;arg:pointer);
  1457. var
  1458. href : treference;
  1459. hsym : tparavarsym;
  1460. eldef : tdef;
  1461. tmpreg : tregister;
  1462. list : TAsmList;
  1463. needs_inittable,
  1464. do_trashing : boolean;
  1465. begin
  1466. list:=TAsmList(arg);
  1467. if (tsym(p).typ=paravarsym) then
  1468. begin
  1469. needs_inittable:=is_managed_type(tparavarsym(p).vardef);
  1470. do_trashing:=
  1471. (localvartrashing <> -1) and
  1472. (not assigned(tparavarsym(p).defaultconstsym)) and
  1473. not needs_inittable;
  1474. case tparavarsym(p).varspez of
  1475. vs_value :
  1476. if needs_inittable then
  1477. begin
  1478. { variants are already handled by the call to fpc_variant_copy_overwrite if
  1479. they are passed by reference }
  1480. if not((tparavarsym(p).vardef.typ=variantdef) and
  1481. paramanager.push_addr_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)) then
  1482. begin
  1483. location_get_data_ref(list,tparavarsym(p).initialloc,href,is_open_array(tparavarsym(p).vardef),sizeof(pint));
  1484. if is_open_array(tparavarsym(p).vardef) then
  1485. begin
  1486. { open arrays do not contain correct element count in their rtti,
  1487. the actual count must be passed separately. }
  1488. hsym:=tparavarsym(tsym(p).owner.Find('high'+tsym(p).name));
  1489. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  1490. if not assigned(hsym) then
  1491. internalerror(201003031);
  1492. cg.g_array_rtti_helper(list,eldef,href,hsym.initialloc,'FPC_ADDREF_ARRAY');
  1493. end
  1494. else
  1495. cg.g_incrrefcount(list,tparavarsym(p).vardef,href);
  1496. end;
  1497. end;
  1498. vs_out :
  1499. begin
  1500. if needs_inittable or
  1501. do_trashing then
  1502. begin
  1503. tmpreg:=cg.getaddressregister(list);
  1504. cg.a_load_loc_reg(list,OS_ADDR,tparavarsym(p).initialloc,tmpreg);
  1505. { we have no idea about the alignment at the callee side,
  1506. and the user also cannot specify "unaligned" here, so
  1507. assume worst case }
  1508. reference_reset_base(href,tmpreg,0,1);
  1509. if do_trashing and
  1510. { needs separate implementation to trash open arrays }
  1511. { since their size is only known at run time }
  1512. not is_special_array(tparavarsym(p).vardef) then
  1513. { may be an open string, even if is_open_string() returns }
  1514. { false (for some helpers in the system unit) }
  1515. if not is_shortstring(tparavarsym(p).vardef) then
  1516. trash_reference(list,href,tparavarsym(p).vardef.size)
  1517. else
  1518. trash_reference(list,href,2);
  1519. if needs_inittable then
  1520. begin
  1521. if is_open_array(tparavarsym(p).vardef) then
  1522. begin
  1523. hsym:=tparavarsym(tsym(p).owner.Find('high'+tsym(p).name));
  1524. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  1525. if not assigned(hsym) then
  1526. internalerror(201103033);
  1527. cg.g_array_rtti_helper(list,eldef,href,hsym.initialloc,'FPC_INITIALIZE_ARRAY');
  1528. end
  1529. else
  1530. cg.g_initialize(list,tparavarsym(p).vardef,href);
  1531. end;
  1532. end;
  1533. end;
  1534. else if do_trashing and
  1535. ([vo_is_funcret,vo_is_hidden_para] * tparavarsym(p).varoptions = [vo_is_funcret,vo_is_hidden_para]) then
  1536. begin
  1537. tmpreg:=cg.getaddressregister(list);
  1538. cg.a_load_loc_reg(list,OS_ADDR,tparavarsym(p).initialloc,tmpreg);
  1539. { should always have standard alignment. If a function is assigned
  1540. to a non-aligned variable, the optimisation to pass this variable
  1541. directly as hidden function result must/cannot be performed
  1542. (see tcallnode.funcret_can_be_reused)
  1543. }
  1544. reference_reset_base(href,tmpreg,0,
  1545. used_align(tparavarsym(p).vardef.alignment,current_settings.alignment.localalignmin,current_settings.alignment.localalignmax));
  1546. { may be an open string, even if is_open_string() returns }
  1547. { false (for some helpers in the system unit) }
  1548. if not is_shortstring(tparavarsym(p).vardef) then
  1549. trash_reference(list,href,tparavarsym(p).vardef.size)
  1550. else
  1551. { an open string has at least size 2 }
  1552. trash_reference(list,href,2);
  1553. end
  1554. end;
  1555. end;
  1556. end;
  1557. { generates the code for decrementing the reference count of parameters }
  1558. procedure final_paras(p:TObject;arg:pointer);
  1559. var
  1560. list : TAsmList;
  1561. href : treference;
  1562. hsym : tparavarsym;
  1563. eldef : tdef;
  1564. begin
  1565. if not(tsym(p).typ=paravarsym) then
  1566. exit;
  1567. list:=TAsmList(arg);
  1568. if is_managed_type(tparavarsym(p).vardef) then
  1569. begin
  1570. if (tparavarsym(p).varspez=vs_value) then
  1571. begin
  1572. include(current_procinfo.flags,pi_needs_implicit_finally);
  1573. location_get_data_ref(list,tparavarsym(p).localloc,href,is_open_array(tparavarsym(p).vardef),sizeof(pint));
  1574. if is_open_array(tparavarsym(p).vardef) then
  1575. begin
  1576. hsym:=tparavarsym(tsym(p).owner.Find('high'+tsym(p).name));
  1577. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  1578. if not assigned(hsym) then
  1579. internalerror(201003032);
  1580. cg.g_array_rtti_helper(list,eldef,href,hsym.initialloc,'FPC_DECREF_ARRAY');
  1581. end
  1582. else
  1583. cg.g_decrrefcount(list,tparavarsym(p).vardef,href);
  1584. end;
  1585. end;
  1586. { open arrays can contain elements requiring init/final code, so the else has been removed here }
  1587. if (tparavarsym(p).varspez=vs_value) and
  1588. (is_open_array(tparavarsym(p).vardef) or
  1589. is_array_of_const(tparavarsym(p).vardef)) then
  1590. begin
  1591. { cdecl functions don't have a high pointer so it is not possible to generate
  1592. a local copy }
  1593. if not(current_procinfo.procdef.proccalloption in cdecl_pocalls) then
  1594. cg.g_releasevaluepara_openarray(list,tparavarsym(p).localloc);
  1595. end;
  1596. end;
  1597. { Initialize temp ansi/widestrings,interfaces }
  1598. procedure inittempvariables(list:TAsmList);
  1599. var
  1600. hp : ptemprecord;
  1601. href : treference;
  1602. begin
  1603. hp:=tg.templist;
  1604. while assigned(hp) do
  1605. begin
  1606. if assigned(hp^.def) and
  1607. is_managed_type(hp^.def) then
  1608. begin
  1609. reference_reset_base(href,current_procinfo.framepointer,hp^.pos,sizeof(pint));
  1610. cg.g_initialize(list,hp^.def,href);
  1611. end;
  1612. hp:=hp^.next;
  1613. end;
  1614. end;
  1615. procedure finalizetempvariables(list:TAsmList);
  1616. var
  1617. hp : ptemprecord;
  1618. href : treference;
  1619. begin
  1620. hp:=tg.templist;
  1621. while assigned(hp) do
  1622. begin
  1623. if assigned(hp^.def) and
  1624. is_managed_type(hp^.def) then
  1625. begin
  1626. include(current_procinfo.flags,pi_needs_implicit_finally);
  1627. reference_reset_base(href,current_procinfo.framepointer,hp^.pos,sizeof(pint));
  1628. cg.g_finalize(list,hp^.def,href);
  1629. end;
  1630. hp:=hp^.next;
  1631. end;
  1632. end;
  1633. procedure gen_load_return_value(list:TAsmList);
  1634. var
  1635. ressym : tabstractnormalvarsym;
  1636. funcretloc : TCGPara;
  1637. begin
  1638. { Is the loading needed? }
  1639. if is_void(current_procinfo.procdef.returndef) or
  1640. (
  1641. (po_assembler in current_procinfo.procdef.procoptions) and
  1642. (not(assigned(current_procinfo.procdef.funcretsym)) or
  1643. (tabstractvarsym(current_procinfo.procdef.funcretsym).refs=0))
  1644. ) then
  1645. exit;
  1646. funcretloc:=current_procinfo.procdef.funcretloc[calleeside];
  1647. { constructors return self }
  1648. if (current_procinfo.procdef.proctypeoption=potype_constructor) then
  1649. ressym:=tabstractnormalvarsym(current_procinfo.procdef.parast.Find('self'))
  1650. else
  1651. ressym:=tabstractnormalvarsym(current_procinfo.procdef.funcretsym);
  1652. if (ressym.refs>0) or
  1653. is_managed_type(ressym.vardef) then
  1654. begin
  1655. { was: don't do anything if funcretloc.loc in [LOC_INVALID,LOC_REFERENCE] }
  1656. if not paramanager.ret_in_param(current_procinfo.procdef.returndef,current_procinfo.procdef.proccalloption) then
  1657. gen_load_loc_cgpara(list,ressym.vardef,ressym.localloc,funcretloc);
  1658. end
  1659. {$ifdef x86}
  1660. else
  1661. begin
  1662. { the caller will pop a value from the fpu stack }
  1663. if assigned(funcretloc.location) and
  1664. (funcretloc.location^.loc = LOC_FPUREGISTER) then
  1665. list.concat(taicpu.op_none(A_FLDZ));
  1666. end;
  1667. {$endif x86}
  1668. end;
  1669. procedure gen_alloc_regloc(list:TAsmList;var loc: tlocation);
  1670. begin
  1671. case loc.loc of
  1672. LOC_CREGISTER:
  1673. begin
  1674. {$ifndef cpu64bitalu}
  1675. if loc.size in [OS_64,OS_S64] then
  1676. begin
  1677. loc.register64.reglo:=cg.getintregister(list,OS_32);
  1678. loc.register64.reghi:=cg.getintregister(list,OS_32);
  1679. end
  1680. else
  1681. {$endif cpu64bitalu}
  1682. loc.register:=cg.getintregister(list,loc.size);
  1683. end;
  1684. LOC_CFPUREGISTER:
  1685. begin
  1686. loc.register:=cg.getfpuregister(list,loc.size);
  1687. end;
  1688. LOC_CMMREGISTER:
  1689. begin
  1690. loc.register:=cg.getmmregister(list,loc.size);
  1691. end;
  1692. end;
  1693. end;
  1694. procedure gen_alloc_regvar(list:TAsmList;sym: tabstractnormalvarsym; allocreg: boolean);
  1695. begin
  1696. if allocreg then
  1697. gen_alloc_regloc(list,sym.initialloc);
  1698. if (pi_has_label in current_procinfo.flags) then
  1699. begin
  1700. { Allocate register already, to prevent first allocation to be
  1701. inside a loop }
  1702. {$ifndef cpu64bitalu}
  1703. if sym.initialloc.size in [OS_64,OS_S64] then
  1704. begin
  1705. cg.a_reg_sync(list,sym.initialloc.register64.reglo);
  1706. cg.a_reg_sync(list,sym.initialloc.register64.reghi);
  1707. end
  1708. else
  1709. {$endif not cpu64bitalu}
  1710. cg.a_reg_sync(list,sym.initialloc.register);
  1711. end;
  1712. sym.localloc:=sym.initialloc;
  1713. end;
  1714. procedure gen_load_cgpara_loc(list: TAsmList; vardef: tdef; const para: TCGPara; var destloc: tlocation; reusepara: boolean);
  1715. procedure unget_para(const paraloc:TCGParaLocation);
  1716. begin
  1717. case paraloc.loc of
  1718. LOC_REGISTER :
  1719. begin
  1720. if getsupreg(paraloc.register)<first_int_imreg then
  1721. cg.ungetcpuregister(list,paraloc.register);
  1722. end;
  1723. LOC_MMREGISTER :
  1724. begin
  1725. if getsupreg(paraloc.register)<first_mm_imreg then
  1726. cg.ungetcpuregister(list,paraloc.register);
  1727. end;
  1728. LOC_FPUREGISTER :
  1729. begin
  1730. if getsupreg(paraloc.register)<first_fpu_imreg then
  1731. cg.ungetcpuregister(list,paraloc.register);
  1732. end;
  1733. end;
  1734. end;
  1735. var
  1736. paraloc : pcgparalocation;
  1737. href : treference;
  1738. sizeleft : aint;
  1739. {$if defined(sparc) or defined(arm)}
  1740. tempref : treference;
  1741. {$endif sparc}
  1742. {$ifndef cpu64bitalu}
  1743. reg64: tregister64;
  1744. {$endif not cpu64bitalu}
  1745. begin
  1746. paraloc:=para.location;
  1747. if not assigned(paraloc) then
  1748. internalerror(200408203);
  1749. { skip e.g. empty records }
  1750. if (paraloc^.loc = LOC_VOID) then
  1751. exit;
  1752. case destloc.loc of
  1753. LOC_REFERENCE :
  1754. begin
  1755. { If the parameter location is reused we don't need to copy
  1756. anything }
  1757. if not reusepara then
  1758. begin
  1759. href:=destloc.reference;
  1760. sizeleft:=para.intsize;
  1761. while assigned(paraloc) do
  1762. begin
  1763. if (paraloc^.size=OS_NO) then
  1764. begin
  1765. { Can only be a reference that contains the rest
  1766. of the parameter }
  1767. if (paraloc^.loc<>LOC_REFERENCE) or
  1768. assigned(paraloc^.next) then
  1769. internalerror(2005013010);
  1770. cg.a_load_cgparaloc_ref(list,paraloc^,href,sizeleft,destloc.reference.alignment);
  1771. inc(href.offset,sizeleft);
  1772. sizeleft:=0;
  1773. end
  1774. else
  1775. begin
  1776. cg.a_load_cgparaloc_ref(list,paraloc^,href,tcgsize2size[paraloc^.size],destloc.reference.alignment);
  1777. inc(href.offset,TCGSize2Size[paraloc^.size]);
  1778. dec(sizeleft,TCGSize2Size[paraloc^.size]);
  1779. end;
  1780. unget_para(paraloc^);
  1781. paraloc:=paraloc^.next;
  1782. end;
  1783. end;
  1784. end;
  1785. LOC_REGISTER,
  1786. LOC_CREGISTER :
  1787. begin
  1788. {$ifndef cpu64bitalu}
  1789. if (para.size in [OS_64,OS_S64,OS_F64]) and
  1790. (is_64bit(vardef) or
  1791. { in case of fpu emulation, or abi's that pass fpu values
  1792. via integer registers }
  1793. (vardef.typ=floatdef)) then
  1794. begin
  1795. case paraloc^.loc of
  1796. LOC_REGISTER:
  1797. begin
  1798. if not assigned(paraloc^.next) then
  1799. internalerror(200410104);
  1800. if (target_info.endian=ENDIAN_BIG) then
  1801. begin
  1802. { paraloc^ -> high
  1803. paraloc^.next -> low }
  1804. unget_para(paraloc^);
  1805. gen_alloc_regloc(list,destloc);
  1806. { reg->reg, alignment is irrelevant }
  1807. cg.a_load_cgparaloc_anyreg(list,OS_32,paraloc^,destloc.register64.reghi,4);
  1808. unget_para(paraloc^.next^);
  1809. cg.a_load_cgparaloc_anyreg(list,OS_32,paraloc^.next^,destloc.register64.reglo,4);
  1810. end
  1811. else
  1812. begin
  1813. { paraloc^ -> low
  1814. paraloc^.next -> high }
  1815. unget_para(paraloc^);
  1816. gen_alloc_regloc(list,destloc);
  1817. cg.a_load_cgparaloc_anyreg(list,OS_32,paraloc^,destloc.register64.reglo,4);
  1818. unget_para(paraloc^.next^);
  1819. cg.a_load_cgparaloc_anyreg(list,OS_32,paraloc^.next^,destloc.register64.reghi,4);
  1820. end;
  1821. end;
  1822. LOC_REFERENCE:
  1823. begin
  1824. gen_alloc_regloc(list,destloc);
  1825. reference_reset_base(href,paraloc^.reference.index,paraloc^.reference.offset,para.alignment);
  1826. cg64.a_load64_ref_reg(list,href,destloc.register64);
  1827. unget_para(paraloc^);
  1828. end;
  1829. else
  1830. internalerror(2005101501);
  1831. end
  1832. end
  1833. else
  1834. {$endif not cpu64bitalu}
  1835. begin
  1836. if assigned(paraloc^.next) then
  1837. internalerror(200410105);
  1838. unget_para(paraloc^);
  1839. gen_alloc_regloc(list,destloc);
  1840. cg.a_load_cgparaloc_anyreg(list,destloc.size,paraloc^,destloc.register,sizeof(aint));
  1841. end;
  1842. end;
  1843. LOC_FPUREGISTER,
  1844. LOC_CFPUREGISTER :
  1845. begin
  1846. {$if defined(sparc) or defined(arm)}
  1847. { Arm and Sparc passes floats in int registers, when loading to fpu register
  1848. we need a temp }
  1849. sizeleft := TCGSize2Size[destloc.size];
  1850. tg.GetTemp(list,sizeleft,sizeleft,tt_normal,tempref);
  1851. href:=tempref;
  1852. while assigned(paraloc) do
  1853. begin
  1854. unget_para(paraloc^);
  1855. cg.a_load_cgparaloc_ref(list,paraloc^,href,sizeleft,destloc.reference.alignment);
  1856. inc(href.offset,TCGSize2Size[paraloc^.size]);
  1857. dec(sizeleft,TCGSize2Size[paraloc^.size]);
  1858. paraloc:=paraloc^.next;
  1859. end;
  1860. gen_alloc_regloc(list,destloc);
  1861. cg.a_loadfpu_ref_reg(list,destloc.size,destloc.size,tempref,destloc.register);
  1862. tg.UnGetTemp(list,tempref);
  1863. {$else sparc}
  1864. unget_para(paraloc^);
  1865. gen_alloc_regloc(list,destloc);
  1866. { from register to register -> alignment is irrelevant }
  1867. cg.a_load_cgparaloc_anyreg(list,destloc.size,paraloc^,destloc.register,0);
  1868. if assigned(paraloc^.next) then
  1869. internalerror(200410109);
  1870. {$endif sparc}
  1871. end;
  1872. LOC_MMREGISTER,
  1873. LOC_CMMREGISTER :
  1874. begin
  1875. {$ifndef cpu64bitalu}
  1876. { ARM vfp floats are passed in integer registers }
  1877. if (para.size=OS_F64) and
  1878. (paraloc^.size in [OS_32,OS_S32]) and
  1879. use_vectorfpu(vardef) then
  1880. begin
  1881. { we need 2x32bit reg }
  1882. if not assigned(paraloc^.next) or
  1883. assigned(paraloc^.next^.next) then
  1884. internalerror(2009112421);
  1885. unget_para(paraloc^);
  1886. unget_para(paraloc^.next^);
  1887. gen_alloc_regloc(list,destloc);
  1888. if (target_info.endian=endian_big) then
  1889. { paraloc^ -> high
  1890. paraloc^.next -> low }
  1891. reg64:=joinreg64(paraloc^.next^.register,paraloc^.register)
  1892. else
  1893. reg64:=joinreg64(paraloc^.register,paraloc^.next^.register);
  1894. cg64.a_loadmm_intreg64_reg(list,OS_F64,reg64,destloc.register);
  1895. end
  1896. else
  1897. {$endif not cpu64bitalu}
  1898. begin
  1899. unget_para(paraloc^);
  1900. gen_alloc_regloc(list,destloc);
  1901. { from register to register -> alignment is irrelevant }
  1902. cg.a_load_cgparaloc_anyreg(list,destloc.size,paraloc^,destloc.register,0);
  1903. { data could come in two memory locations, for now
  1904. we simply ignore the sanity check (FK)
  1905. if assigned(paraloc^.next) then
  1906. internalerror(200410108);
  1907. }
  1908. end;
  1909. end;
  1910. else
  1911. internalerror(2010052903);
  1912. end;
  1913. end;
  1914. procedure gen_load_para_value(list:TAsmList);
  1915. procedure get_para(const paraloc:TCGParaLocation);
  1916. begin
  1917. case paraloc.loc of
  1918. LOC_REGISTER :
  1919. begin
  1920. if getsupreg(paraloc.register)<first_int_imreg then
  1921. cg.getcpuregister(list,paraloc.register);
  1922. end;
  1923. LOC_MMREGISTER :
  1924. begin
  1925. if getsupreg(paraloc.register)<first_mm_imreg then
  1926. cg.getcpuregister(list,paraloc.register);
  1927. end;
  1928. LOC_FPUREGISTER :
  1929. begin
  1930. if getsupreg(paraloc.register)<first_fpu_imreg then
  1931. cg.getcpuregister(list,paraloc.register);
  1932. end;
  1933. end;
  1934. end;
  1935. var
  1936. i : longint;
  1937. currpara : tparavarsym;
  1938. paraloc : pcgparalocation;
  1939. begin
  1940. if (po_assembler in current_procinfo.procdef.procoptions) then
  1941. exit;
  1942. { Allocate registers used by parameters }
  1943. for i:=0 to current_procinfo.procdef.paras.count-1 do
  1944. begin
  1945. currpara:=tparavarsym(current_procinfo.procdef.paras[i]);
  1946. paraloc:=currpara.paraloc[calleeside].location;
  1947. while assigned(paraloc) do
  1948. begin
  1949. if paraloc^.loc in [LOC_REGISTER,LOC_FPUREGISTER,LOC_MMREGISTER] then
  1950. get_para(paraloc^);
  1951. paraloc:=paraloc^.next;
  1952. end;
  1953. end;
  1954. { Copy parameters to local references/registers }
  1955. for i:=0 to current_procinfo.procdef.paras.count-1 do
  1956. begin
  1957. currpara:=tparavarsym(current_procinfo.procdef.paras[i]);
  1958. gen_load_cgpara_loc(list,currpara.vardef,currpara.paraloc[calleeside],currpara.initialloc,paramanager.param_use_paraloc(currpara.paraloc[calleeside]));
  1959. { gen_load_cgpara_loc() already allocated the initialloc
  1960. -> don't allocate again }
  1961. if currpara.initialloc.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMREGISTER] then
  1962. gen_alloc_regvar(list,currpara,false);
  1963. end;
  1964. { generate copies of call by value parameters, must be done before
  1965. the initialization and body is parsed because the refcounts are
  1966. incremented using the local copies }
  1967. current_procinfo.procdef.parast.SymList.ForEachCall(@copyvalueparas,list);
  1968. {$ifdef powerpc}
  1969. { unget the register that contains the stack pointer before the procedure entry, }
  1970. { which is used to access the parameters in their original callee-side location }
  1971. if (tppcprocinfo(current_procinfo).needs_frame_pointer) then
  1972. cg.a_reg_dealloc(list,NR_R12);
  1973. {$endif powerpc}
  1974. {$ifdef powerpc64}
  1975. { unget the register that contains the stack pointer before the procedure entry, }
  1976. { which is used to access the parameters in their original callee-side location }
  1977. if (tppcprocinfo(current_procinfo).needs_frame_pointer) then
  1978. cg.a_reg_dealloc(list, NR_OLD_STACK_POINTER_REG);
  1979. {$endif powerpc64}
  1980. if not(po_assembler in current_procinfo.procdef.procoptions) then
  1981. begin
  1982. { has to be done here rather than in gen_initialize_code, because
  1983. the initialisation code is generated a) later and b) with
  1984. rad_backwards, so the register allocator would generate
  1985. information as if this code comes before loading the parameters
  1986. from their original registers to their local location }
  1987. if (localvartrashing <> -1) then
  1988. current_procinfo.procdef.localst.SymList.ForEachCall(@trash_variable,list);
  1989. { initialize refcounted paras, and trash others. Needed here
  1990. instead of in gen_initialize_code, because when a reference is
  1991. intialised or trashed while the pointer to that reference is kept
  1992. in a regvar, we add a register move and that one again has to
  1993. come after the parameter loading code as far as the register
  1994. allocator is concerned }
  1995. current_procinfo.procdef.parast.SymList.ForEachCall(@init_paras,list);
  1996. end;
  1997. end;
  1998. procedure gen_initialize_code(list:TAsmList);
  1999. begin
  2000. { initialize local data like ansistrings }
  2001. case current_procinfo.procdef.proctypeoption of
  2002. potype_unitinit:
  2003. begin
  2004. { this is also used for initialization of variables in a
  2005. program which does not have a globalsymtable }
  2006. if assigned(current_module.globalsymtable) then
  2007. TSymtable(current_module.globalsymtable).SymList.ForEachCall(@initialize_data,list);
  2008. TSymtable(current_module.localsymtable).SymList.ForEachCall(@initialize_data,list);
  2009. TSymtable(current_module.localsymtable).SymList.ForEachCall(@initialize_regvars,list);
  2010. end;
  2011. { units have seperate code for initilization and finalization }
  2012. potype_unitfinalize: ;
  2013. { program init/final is generated in separate procedure }
  2014. potype_proginit:
  2015. begin
  2016. TSymtable(current_module.localsymtable).SymList.ForEachCall(@initialize_regvars,list);
  2017. end;
  2018. else
  2019. current_procinfo.procdef.localst.SymList.ForEachCall(@initialize_data,list);
  2020. end;
  2021. { initialisizes temp. ansi/wide string data }
  2022. inittempvariables(list);
  2023. {$ifdef OLDREGVARS}
  2024. load_regvars(list,nil);
  2025. {$endif OLDREGVARS}
  2026. end;
  2027. procedure gen_finalize_code(list:TAsmList);
  2028. begin
  2029. {$ifdef OLDREGVARS}
  2030. cleanup_regvars(list);
  2031. {$endif OLDREGVARS}
  2032. { finalize temporary data }
  2033. finalizetempvariables(list);
  2034. { finalize local data like ansistrings}
  2035. case current_procinfo.procdef.proctypeoption of
  2036. potype_unitfinalize:
  2037. begin
  2038. { this is also used for initialization of variables in a
  2039. program which does not have a globalsymtable }
  2040. if assigned(current_module.globalsymtable) then
  2041. TSymtable(current_module.globalsymtable).SymList.ForEachCall(@finalize_static_data,list);
  2042. TSymtable(current_module.localsymtable).SymList.ForEachCall(@finalize_static_data,list);
  2043. end;
  2044. { units/progs have separate code for initialization and finalization }
  2045. potype_unitinit: ;
  2046. { program init/final is generated in separate procedure }
  2047. potype_proginit: ;
  2048. else
  2049. current_procinfo.procdef.localst.SymList.ForEachCall(@finalize_local_vars,list);
  2050. end;
  2051. { finalize paras data }
  2052. if assigned(current_procinfo.procdef.parast) and
  2053. not(po_assembler in current_procinfo.procdef.procoptions) then
  2054. current_procinfo.procdef.parast.SymList.ForEachCall(@final_paras,list);
  2055. end;
  2056. procedure gen_entry_code(list:TAsmList);
  2057. begin
  2058. { the actual profile code can clobber some registers,
  2059. therefore if the context must be saved, do it before
  2060. the actual call to the profile code
  2061. }
  2062. if (cs_profile in current_settings.moduleswitches) and
  2063. not(po_assembler in current_procinfo.procdef.procoptions) then
  2064. begin
  2065. { non-win32 can call mcout even in main }
  2066. if not (target_info.system in [system_i386_win32,system_i386_wdosx]) or
  2067. not (current_procinfo.procdef.proctypeoption=potype_proginit) then
  2068. begin
  2069. cg.g_profilecode(list);
  2070. end;
  2071. end;
  2072. { call startup helpers from main program }
  2073. if (current_procinfo.procdef.proctypeoption=potype_proginit) then
  2074. begin
  2075. { initialize units }
  2076. cg.allocallcpuregisters(list);
  2077. if not(current_module.islibrary) then
  2078. cg.a_call_name(list,'FPC_INITIALIZEUNITS',false)
  2079. else
  2080. cg.a_call_name(list,'FPC_LIBINITIALIZEUNITS',false);
  2081. cg.deallocallcpuregisters(list);
  2082. end;
  2083. list.concat(Tai_force_line.Create);
  2084. {$ifdef OLDREGVARS}
  2085. load_regvars(list,nil);
  2086. {$endif OLDREGVARS}
  2087. end;
  2088. procedure gen_exit_code(list:TAsmList);
  2089. begin
  2090. { call __EXIT for main program }
  2091. if (not DLLsource) and
  2092. (current_procinfo.procdef.proctypeoption=potype_proginit) then
  2093. cg.a_call_name(list,'FPC_DO_EXIT',false);
  2094. end;
  2095. {****************************************************************************
  2096. Entry/Exit
  2097. ****************************************************************************}
  2098. function has_alias_name(pd:tprocdef;const s:string):boolean;
  2099. var
  2100. item : TCmdStrListItem;
  2101. begin
  2102. result:=true;
  2103. if pd.mangledname=s then
  2104. exit;
  2105. item := TCmdStrListItem(pd.aliasnames.first);
  2106. while assigned(item) do
  2107. begin
  2108. if item.str=s then
  2109. exit;
  2110. item := TCmdStrListItem(item.next);
  2111. end;
  2112. result:=false;
  2113. end;
  2114. procedure alloc_proc_symbol(pd: tprocdef);
  2115. var
  2116. item : TCmdStrListItem;
  2117. begin
  2118. item := TCmdStrListItem(pd.aliasnames.first);
  2119. while assigned(item) do
  2120. begin
  2121. current_asmdata.DefineAsmSymbol(item.str,AB_GLOBAL,AT_FUNCTION);
  2122. item := TCmdStrListItem(item.next);
  2123. end;
  2124. end;
  2125. procedure gen_proc_symbol(list:TAsmList);
  2126. var
  2127. item,
  2128. previtem : TCmdStrListItem;
  2129. begin
  2130. previtem:=nil;
  2131. item := TCmdStrListItem(current_procinfo.procdef.aliasnames.first);
  2132. while assigned(item) do
  2133. begin
  2134. {$ifdef arm}
  2135. if current_settings.cputype in cpu_thumb2 then
  2136. list.concat(tai_thumb_func.create);
  2137. {$endif arm}
  2138. { "double link" all procedure entry symbols via .reference }
  2139. { directives on darwin, because otherwise the linker }
  2140. { sometimes strips the procedure if only on of the symbols }
  2141. { is referenced }
  2142. if assigned(previtem) and
  2143. (target_info.system in systems_darwin) then
  2144. list.concat(tai_directive.create(asd_reference,item.str));
  2145. if (cs_profile in current_settings.moduleswitches) or
  2146. (po_global in current_procinfo.procdef.procoptions) then
  2147. list.concat(Tai_symbol.createname_global(item.str,AT_FUNCTION,0))
  2148. else
  2149. list.concat(Tai_symbol.createname(item.str,AT_FUNCTION,0));
  2150. if assigned(previtem) and
  2151. (target_info.system in systems_darwin) then
  2152. list.concat(tai_directive.create(asd_reference,previtem.str));
  2153. if not(af_stabs_use_function_absolute_addresses in target_asm.flags) then
  2154. list.concat(Tai_function_name.create(item.str));
  2155. previtem:=item;
  2156. item := TCmdStrListItem(item.next);
  2157. end;
  2158. current_procinfo.procdef.procstarttai:=tai(list.last);
  2159. end;
  2160. procedure gen_proc_symbol_end(list:TAsmList);
  2161. begin
  2162. list.concat(Tai_symbol_end.Createname(current_procinfo.procdef.mangledname));
  2163. current_procinfo.procdef.procendtai:=tai(list.last);
  2164. if (current_module.islibrary) then
  2165. if (current_procinfo.procdef.proctypeoption = potype_proginit) then
  2166. { setinitname may generate a new section -> don't add to the
  2167. current list, because we assume this remains a text section }
  2168. exportlib.setinitname(current_asmdata.AsmLists[al_exports],current_procinfo.procdef.mangledname);
  2169. if (current_procinfo.procdef.proctypeoption=potype_proginit) then
  2170. begin
  2171. if (target_info.system in (systems_darwin+[system_powerpc_macos])) and
  2172. not(current_module.islibrary) then
  2173. begin
  2174. new_section(list,sec_code,'',4);
  2175. list.concat(tai_symbol.createname_global(
  2176. target_info.cprefix+mainaliasname,AT_FUNCTION,0));
  2177. { keep argc, argv and envp properly on the stack }
  2178. cg.a_jmp_name(list,target_info.cprefix+'FPC_SYSTEMMAIN');
  2179. end;
  2180. end;
  2181. end;
  2182. procedure gen_proc_entry_code(list:TAsmList);
  2183. var
  2184. hitemp,
  2185. lotemp : longint;
  2186. begin
  2187. { generate call frame marker for dwarf call frame info }
  2188. current_asmdata.asmcfi.start_frame(list);
  2189. { All temps are know, write offsets used for information }
  2190. if (cs_asm_source in current_settings.globalswitches) then
  2191. begin
  2192. if tg.direction>0 then
  2193. begin
  2194. lotemp:=current_procinfo.tempstart;
  2195. hitemp:=tg.lasttemp;
  2196. end
  2197. else
  2198. begin
  2199. lotemp:=tg.lasttemp;
  2200. hitemp:=current_procinfo.tempstart;
  2201. end;
  2202. list.concat(Tai_comment.Create(strpnew('Temps allocated between '+std_regname(current_procinfo.framepointer)+
  2203. tostr_with_plus(lotemp)+' and '+std_regname(current_procinfo.framepointer)+tostr_with_plus(hitemp))));
  2204. end;
  2205. { generate target specific proc entry code }
  2206. cg.g_proc_entry(list,current_procinfo.calc_stackframe_size,(po_nostackframe in current_procinfo.procdef.procoptions));
  2207. end;
  2208. procedure gen_proc_exit_code(list:TAsmList);
  2209. var
  2210. parasize : longint;
  2211. begin
  2212. { c style clearstack does not need to remove parameters from the stack, only the
  2213. return value when it was pushed by arguments }
  2214. if current_procinfo.procdef.proccalloption in clearstack_pocalls then
  2215. begin
  2216. parasize:=0;
  2217. if paramanager.ret_in_param(current_procinfo.procdef.returndef,current_procinfo.procdef.proccalloption) then
  2218. inc(parasize,sizeof(pint));
  2219. end
  2220. else
  2221. begin
  2222. parasize:=current_procinfo.para_stack_size;
  2223. { the parent frame pointer para has to be removed by the caller in
  2224. case of Delphi-style parent frame pointer passing }
  2225. if not paramanager.use_fixed_stack and
  2226. (po_delphi_nested_cc in current_procinfo.procdef.procoptions) then
  2227. dec(parasize,sizeof(pint));
  2228. end;
  2229. { generate target specific proc exit code }
  2230. cg.g_proc_exit(list,parasize,(po_nostackframe in current_procinfo.procdef.procoptions));
  2231. { release return registers, needed for optimizer }
  2232. if not is_void(current_procinfo.procdef.returndef) then
  2233. paramanager.freecgpara(list,current_procinfo.procdef.funcretloc[calleeside]);
  2234. { end of frame marker for call frame info }
  2235. current_asmdata.asmcfi.end_frame(list);
  2236. end;
  2237. procedure gen_stack_check_size_para(list:TAsmList);
  2238. var
  2239. paraloc1 : tcgpara;
  2240. begin
  2241. paraloc1.init;
  2242. paramanager.getintparaloc(pocall_default,1,paraloc1);
  2243. cg.a_load_const_cgpara(list,OS_INT,current_procinfo.calc_stackframe_size,paraloc1);
  2244. paramanager.freecgpara(list,paraloc1);
  2245. paraloc1.done;
  2246. end;
  2247. procedure gen_stack_check_call(list:TAsmList);
  2248. var
  2249. paraloc1 : tcgpara;
  2250. begin
  2251. paraloc1.init;
  2252. { Also alloc the register needed for the parameter }
  2253. paramanager.getintparaloc(pocall_default,1,paraloc1);
  2254. paramanager.freecgpara(list,paraloc1);
  2255. { Call the helper }
  2256. cg.allocallcpuregisters(list);
  2257. cg.a_call_name(list,'FPC_STACKCHECK',false);
  2258. cg.deallocallcpuregisters(list);
  2259. paraloc1.done;
  2260. end;
  2261. procedure gen_save_used_regs(list:TAsmList);
  2262. begin
  2263. { Pure assembler routines need to save the registers themselves }
  2264. if (po_assembler in current_procinfo.procdef.procoptions) then
  2265. exit;
  2266. { oldfpccall expects all registers to be destroyed }
  2267. if current_procinfo.procdef.proccalloption<>pocall_oldfpccall then
  2268. cg.g_save_registers(list);
  2269. end;
  2270. procedure gen_restore_used_regs(list:TAsmList);
  2271. begin
  2272. { Pure assembler routines need to save the registers themselves }
  2273. if (po_assembler in current_procinfo.procdef.procoptions) then
  2274. exit;
  2275. { oldfpccall expects all registers to be destroyed }
  2276. if current_procinfo.procdef.proccalloption<>pocall_oldfpccall then
  2277. cg.g_restore_registers(list);
  2278. end;
  2279. {****************************************************************************
  2280. External handling
  2281. ****************************************************************************}
  2282. procedure gen_external_stub(list:TAsmList;pd:tprocdef;const externalname:string);
  2283. begin
  2284. create_codegen;
  2285. { add the procedure to the al_procedures }
  2286. maybe_new_object_file(list);
  2287. new_section(list,sec_code,lower(pd.mangledname),current_settings.alignment.procalign);
  2288. list.concat(Tai_align.create(current_settings.alignment.procalign));
  2289. if (po_global in pd.procoptions) then
  2290. list.concat(Tai_symbol.createname_global(pd.mangledname,AT_FUNCTION,0))
  2291. else
  2292. list.concat(Tai_symbol.createname(pd.mangledname,AT_FUNCTION,0));
  2293. cg.g_external_wrapper(list,pd,externalname);
  2294. destroy_codegen;
  2295. end;
  2296. {****************************************************************************
  2297. Const Data
  2298. ****************************************************************************}
  2299. procedure insertbssdata(sym : tstaticvarsym);
  2300. var
  2301. l : asizeint;
  2302. varalign : shortint;
  2303. storefilepos : tfileposinfo;
  2304. list : TAsmList;
  2305. sectype : TAsmSectiontype;
  2306. begin
  2307. storefilepos:=current_filepos;
  2308. current_filepos:=sym.fileinfo;
  2309. l:=sym.getsize;
  2310. varalign:=sym.vardef.alignment;
  2311. if (varalign=0) then
  2312. varalign:=var_align_size(l)
  2313. else
  2314. varalign:=var_align(varalign);
  2315. if tf_section_threadvars in target_info.flags then
  2316. begin
  2317. if (vo_is_thread_var in sym.varoptions) then
  2318. begin
  2319. list:=current_asmdata.asmlists[al_threadvars];
  2320. sectype:=sec_threadvar;
  2321. end
  2322. else
  2323. begin
  2324. list:=current_asmdata.asmlists[al_globals];
  2325. sectype:=sec_bss;
  2326. end;
  2327. end
  2328. else
  2329. begin
  2330. if (vo_is_thread_var in sym.varoptions) then
  2331. begin
  2332. inc(l,sizeof(pint));
  2333. { it doesn't help to set a higher alignment, as }
  2334. { the first sizeof(pint) bytes field will offset }
  2335. { everything anyway }
  2336. varalign:=sizeof(pint);
  2337. end;
  2338. list:=current_asmdata.asmlists[al_globals];
  2339. sectype:=sec_bss;
  2340. end;
  2341. maybe_new_object_file(list);
  2342. new_section(list,sectype,lower(sym.mangledname),varalign);
  2343. if (sym.owner.symtabletype=globalsymtable) or
  2344. create_smartlink or
  2345. DLLSource or
  2346. (assigned(current_procinfo) and
  2347. (po_inline in current_procinfo.procdef.procoptions)) or
  2348. (vo_is_public in sym.varoptions) then
  2349. list.concat(Tai_datablock.create_global(sym.mangledname,l))
  2350. else
  2351. list.concat(Tai_datablock.create(sym.mangledname,l));
  2352. current_filepos:=storefilepos;
  2353. end;
  2354. procedure gen_alloc_symtable(list:TAsmList;st:TSymtable);
  2355. procedure setlocalloc(vs:tabstractnormalvarsym);
  2356. begin
  2357. if cs_asm_source in current_settings.globalswitches then
  2358. begin
  2359. case vs.initialloc.loc of
  2360. LOC_REFERENCE :
  2361. begin
  2362. if not assigned(vs.initialloc.reference.symbol) then
  2363. list.concat(Tai_comment.Create(strpnew('Var '+vs.realname+' located at '+
  2364. std_regname(vs.initialloc.reference.base)+tostr_with_plus(vs.initialloc.reference.offset))));
  2365. end;
  2366. end;
  2367. end;
  2368. vs.localloc:=vs.initialloc;
  2369. end;
  2370. var
  2371. i : longint;
  2372. sym : tsym;
  2373. vs : tabstractnormalvarsym;
  2374. isaddr : boolean;
  2375. begin
  2376. for i:=0 to st.SymList.Count-1 do
  2377. begin
  2378. sym:=tsym(st.SymList[i]);
  2379. case sym.typ of
  2380. staticvarsym :
  2381. begin
  2382. vs:=tabstractnormalvarsym(sym);
  2383. { The code in loadnode.pass_generatecode will create the
  2384. LOC_REFERENCE instead for all none register variables. This is
  2385. required because we can't store an asmsymbol in the localloc because
  2386. the asmsymbol is invalid after an unit is compiled. This gives
  2387. problems when this procedure is inlined in another unit (PFV) }
  2388. if vs.is_regvar(false) then
  2389. begin
  2390. vs.initialloc.loc:=tvarregable2tcgloc[vs.varregable];
  2391. vs.initialloc.size:=def_cgsize(vs.vardef);
  2392. gen_alloc_regvar(list,vs,true);
  2393. setlocalloc(vs);
  2394. end;
  2395. end;
  2396. paravarsym :
  2397. begin
  2398. vs:=tabstractnormalvarsym(sym);
  2399. { Parameters passed to assembler procedures need to be kept
  2400. in the original location }
  2401. if (po_assembler in current_procinfo.procdef.procoptions) then
  2402. tparavarsym(vs).paraloc[calleeside].get_location(vs.initialloc)
  2403. else
  2404. begin
  2405. isaddr:=paramanager.push_addr_param(vs.varspez,vs.vardef,current_procinfo.procdef.proccalloption);
  2406. if isaddr then
  2407. vs.initialloc.size:=OS_ADDR
  2408. else
  2409. vs.initialloc.size:=def_cgsize(vs.vardef);
  2410. if vs.is_regvar(isaddr) then
  2411. vs.initialloc.loc:=tvarregable2tcgloc[vs.varregable]
  2412. else
  2413. begin
  2414. vs.initialloc.loc:=LOC_REFERENCE;
  2415. { Reuse the parameter location for values to are at a single location on the stack }
  2416. if paramanager.param_use_paraloc(tparavarsym(sym).paraloc[calleeside]) then
  2417. begin
  2418. reference_reset_base(vs.initialloc.reference,tparavarsym(sym).paraloc[calleeside].location^.reference.index,
  2419. tparavarsym(sym).paraloc[calleeside].location^.reference.offset,tparavarsym(sym).paraloc[calleeside].alignment);
  2420. end
  2421. else
  2422. begin
  2423. if isaddr then
  2424. tg.GetLocal(list,sizeof(pint),voidpointertype,vs.initialloc.reference)
  2425. else
  2426. tg.GetLocal(list,vs.getsize,tparavarsym(sym).paraloc[calleeside].alignment,vs.vardef,vs.initialloc.reference);
  2427. end;
  2428. end;
  2429. end;
  2430. setlocalloc(vs);
  2431. end;
  2432. localvarsym :
  2433. begin
  2434. vs:=tabstractnormalvarsym(sym);
  2435. vs.initialloc.size:=def_cgsize(vs.vardef);
  2436. if (m_delphi in current_settings.modeswitches) and
  2437. (po_assembler in current_procinfo.procdef.procoptions) and
  2438. (vo_is_funcret in vs.varoptions) and
  2439. (vs.refs=0) then
  2440. begin
  2441. { not referenced, so don't allocate. Use dummy to }
  2442. { avoid ie's later on because of LOC_INVALID }
  2443. vs.initialloc.loc:=LOC_REGISTER;
  2444. vs.initialloc.size:=OS_INT;
  2445. vs.initialloc.register:=NR_FUNCTION_RESULT_REG;
  2446. end
  2447. else if vs.is_regvar(false) then
  2448. begin
  2449. vs.initialloc.loc:=tvarregable2tcgloc[vs.varregable];
  2450. gen_alloc_regvar(list,vs,true);
  2451. end
  2452. else
  2453. begin
  2454. vs.initialloc.loc:=LOC_REFERENCE;
  2455. tg.GetLocal(list,vs.getsize,vs.vardef,vs.initialloc.reference);
  2456. end;
  2457. setlocalloc(vs);
  2458. end;
  2459. end;
  2460. end;
  2461. end;
  2462. procedure add_regvars(var rv: tusedregvars; const location: tlocation);
  2463. begin
  2464. case location.loc of
  2465. LOC_CREGISTER:
  2466. {$ifndef cpu64bitalu}
  2467. if location.size in [OS_64,OS_S64] then
  2468. begin
  2469. rv.intregvars.addnodup(getsupreg(location.register64.reglo));
  2470. rv.intregvars.addnodup(getsupreg(location.register64.reghi));
  2471. end
  2472. else
  2473. {$endif not cpu64bitalu}
  2474. rv.intregvars.addnodup(getsupreg(location.register));
  2475. LOC_CFPUREGISTER:
  2476. rv.fpuregvars.addnodup(getsupreg(location.register));
  2477. LOC_CMMREGISTER:
  2478. rv.mmregvars.addnodup(getsupreg(location.register));
  2479. end;
  2480. end;
  2481. function do_get_used_regvars(var n: tnode; arg: pointer): foreachnoderesult;
  2482. var
  2483. rv: pusedregvars absolute arg;
  2484. begin
  2485. case (n.nodetype) of
  2486. temprefn:
  2487. { We only have to synchronise a tempnode before a loop if it is }
  2488. { not created inside the loop, and only synchronise after the }
  2489. { loop if it's not destroyed inside the loop. If it's created }
  2490. { before the loop and not yet destroyed, then before the loop }
  2491. { is secondpassed tempinfo^.valid will be true, and we get the }
  2492. { correct registers. If it's not destroyed inside the loop, }
  2493. { then after the loop has been secondpassed tempinfo^.valid }
  2494. { be true and we also get the right registers. In other cases, }
  2495. { tempinfo^.valid will be false and so we do not add }
  2496. { unnecessary registers. This way, we don't have to look at }
  2497. { tempcreate and tempdestroy nodes to get this info (JM) }
  2498. if (ti_valid in ttemprefnode(n).tempinfo^.flags) then
  2499. add_regvars(rv^,ttemprefnode(n).tempinfo^.location);
  2500. loadn:
  2501. if (tloadnode(n).symtableentry.typ in [staticvarsym,localvarsym,paravarsym]) then
  2502. add_regvars(rv^,tabstractnormalvarsym(tloadnode(n).symtableentry).localloc);
  2503. vecn:
  2504. { range checks sometimes need the high parameter }
  2505. if (cs_check_range in current_settings.localswitches) and
  2506. (is_open_array(tvecnode(n).left.resultdef) or
  2507. is_array_of_const(tvecnode(n).left.resultdef)) and
  2508. not(current_procinfo.procdef.proccalloption in cdecl_pocalls) then
  2509. add_regvars(rv^,tabstractnormalvarsym(get_high_value_sym(tparavarsym(tloadnode(tvecnode(n).left).symtableentry))).localloc)
  2510. end;
  2511. result := fen_true;
  2512. end;
  2513. procedure get_used_regvars(n: tnode; var rv: tusedregvars);
  2514. begin
  2515. foreachnodestatic(n,@do_get_used_regvars,@rv);
  2516. end;
  2517. (*
  2518. See comments at declaration of pusedregvarscommon
  2519. function do_get_used_regvars_common(var n: tnode; arg: pointer): foreachnoderesult;
  2520. var
  2521. rv: pusedregvarscommon absolute arg;
  2522. begin
  2523. if (n.nodetype = loadn) and
  2524. (tloadnode(n).symtableentry.typ in [staticvarsym,localvarsym,paravarsym]) then
  2525. with tabstractnormalvarsym(tloadnode(n).symtableentry).localloc do
  2526. case loc of
  2527. LOC_CREGISTER:
  2528. { if not yet encountered in this node tree }
  2529. if (rv^.myregvars.intregvars.addnodup(getsupreg(register))) and
  2530. { but nevertheless already encountered somewhere }
  2531. not(rv^.allregvars.intregvars.addnodup(getsupreg(register))) then
  2532. { then it's a regvar used in two or more node trees }
  2533. rv^.commonregvars.intregvars.addnodup(getsupreg(register));
  2534. LOC_CFPUREGISTER:
  2535. if (rv^.myregvars.intregvars.addnodup(getsupreg(register))) and
  2536. not(rv^.allregvars.intregvars.addnodup(getsupreg(register))) then
  2537. rv^.commonregvars.intregvars.addnodup(getsupreg(register));
  2538. LOC_CMMREGISTER:
  2539. if (rv^.myregvars.intregvars.addnodup(getsupreg(register))) and
  2540. not(rv^.allregvars.intregvars.addnodup(getsupreg(register))) then
  2541. rv^.commonregvars.intregvars.addnodup(getsupreg(register));
  2542. end;
  2543. result := fen_true;
  2544. end;
  2545. procedure get_used_regvars_common(n: tnode; var rv: tusedregvarscommon);
  2546. begin
  2547. rv.myregvars.intregvars.clear;
  2548. rv.myregvars.fpuregvars.clear;
  2549. rv.myregvars.mmregvars.clear;
  2550. foreachnodestatic(n,@do_get_used_regvars_common,@rv);
  2551. end;
  2552. *)
  2553. procedure gen_sync_regvars(list:TAsmList; var rv: tusedregvars);
  2554. var
  2555. count: longint;
  2556. begin
  2557. for count := 1 to rv.intregvars.length do
  2558. cg.a_reg_sync(list,newreg(R_INTREGISTER,rv.intregvars.readidx(count-1),R_SUBWHOLE));
  2559. for count := 1 to rv.fpuregvars.length do
  2560. cg.a_reg_sync(list,newreg(R_FPUREGISTER,rv.fpuregvars.readidx(count-1),R_SUBWHOLE));
  2561. for count := 1 to rv.mmregvars.length do
  2562. cg.a_reg_sync(list,newreg(R_MMREGISTER,rv.mmregvars.readidx(count-1),R_SUBWHOLE));
  2563. end;
  2564. {*****************************************************************************
  2565. SSA support
  2566. *****************************************************************************}
  2567. type
  2568. preplaceregrec = ^treplaceregrec;
  2569. treplaceregrec = record
  2570. old, new: tregister;
  2571. {$ifndef cpu64bitalu}
  2572. oldhi, newhi: tregister;
  2573. {$endif not cpu64bitalu}
  2574. ressym: tsym;
  2575. end;
  2576. function doreplace(var n: tnode; para: pointer): foreachnoderesult;
  2577. var
  2578. rr: preplaceregrec absolute para;
  2579. begin
  2580. result := fen_false;
  2581. if (nf_is_funcret in n.flags) and (fc_exit in flowcontrol) then
  2582. exit;
  2583. case n.nodetype of
  2584. loadn:
  2585. begin
  2586. if (tabstractvarsym(tloadnode(n).symtableentry).varoptions * [vo_is_dll_var, vo_is_thread_var] = []) and
  2587. not assigned(tloadnode(n).left) and
  2588. ((tloadnode(n).symtableentry <> rr^.ressym) or
  2589. not(fc_exit in flowcontrol)
  2590. ) and
  2591. (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMXREGISTER,LOC_CMMREGISTER]) and
  2592. (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register = rr^.old) then
  2593. begin
  2594. {$ifndef cpu64bitalu}
  2595. { it's possible a 64 bit location was shifted and/xor typecasted }
  2596. { in a 32 bit value, so only 1 register was left in the location }
  2597. if (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.size in [OS_64,OS_S64]) then
  2598. if (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register64.reghi = rr^.oldhi) then
  2599. tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register64.reghi := rr^.newhi
  2600. else
  2601. exit;
  2602. {$endif not cpu64bitalu}
  2603. tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register := rr^.new;
  2604. result := fen_norecurse_true;
  2605. end;
  2606. end;
  2607. temprefn:
  2608. begin
  2609. if (ti_valid in ttemprefnode(n).tempinfo^.flags) and
  2610. (ttemprefnode(n).tempinfo^.location.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMXREGISTER,LOC_CMMREGISTER]) and
  2611. (ttemprefnode(n).tempinfo^.location.register = rr^.old) then
  2612. begin
  2613. {$ifndef cpu64bitalu}
  2614. { it's possible a 64 bit location was shifted and/xor typecasted }
  2615. { in a 32 bit value, so only 1 register was left in the location }
  2616. if (ttemprefnode(n).tempinfo^.location.size in [OS_64,OS_S64]) then
  2617. if (ttemprefnode(n).tempinfo^.location.register64.reghi = rr^.oldhi) then
  2618. ttemprefnode(n).tempinfo^.location.register64.reghi := rr^.newhi
  2619. else
  2620. exit;
  2621. {$endif not cpu64bitalu}
  2622. ttemprefnode(n).tempinfo^.location.register := rr^.new;
  2623. result := fen_norecurse_true;
  2624. end;
  2625. end;
  2626. { optimize the searching a bit }
  2627. derefn,addrn,
  2628. calln,inlinen,casen,
  2629. addn,subn,muln,
  2630. andn,orn,xorn,
  2631. ltn,lten,gtn,gten,equaln,unequaln,
  2632. slashn,divn,shrn,shln,notn,
  2633. inn,
  2634. asn,isn:
  2635. result := fen_norecurse_false;
  2636. end;
  2637. end;
  2638. procedure maybechangeloadnodereg(list: TAsmList; var n: tnode; reload: boolean);
  2639. var
  2640. rr: treplaceregrec;
  2641. begin
  2642. if not (n.location.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMXREGISTER,LOC_CMMREGISTER]) or
  2643. ([fc_inflowcontrol,fc_gotolabel,fc_lefthandled] * flowcontrol <> []) then
  2644. exit;
  2645. rr.old := n.location.register;
  2646. rr.ressym := nil;
  2647. {$ifndef cpu64bitalu}
  2648. rr.oldhi := NR_NO;
  2649. {$endif not cpu64bitalu}
  2650. case n.location.loc of
  2651. LOC_CREGISTER:
  2652. begin
  2653. {$ifndef cpu64bitalu}
  2654. if (n.location.size in [OS_64,OS_S64]) then
  2655. begin
  2656. rr.oldhi := n.location.register64.reghi;
  2657. rr.new := cg.getintregister(current_asmdata.CurrAsmList,OS_INT);
  2658. rr.newhi := cg.getintregister(current_asmdata.CurrAsmList,OS_INT);
  2659. end
  2660. else
  2661. {$endif not cpu64bitalu}
  2662. rr.new := cg.getintregister(current_asmdata.CurrAsmList,n.location.size);
  2663. end;
  2664. LOC_CFPUREGISTER:
  2665. rr.new := cg.getfpuregister(current_asmdata.CurrAsmList,n.location.size);
  2666. {$ifdef SUPPORT_MMX}
  2667. LOC_CMMXREGISTER:
  2668. rr.new := tcgx86(cg).getmmxregister(current_asmdata.CurrAsmList);
  2669. {$endif SUPPORT_MMX}
  2670. LOC_CMMREGISTER:
  2671. rr.new := cg.getmmregister(current_asmdata.CurrAsmList,n.location.size);
  2672. else
  2673. exit;
  2674. end;
  2675. if not is_void(current_procinfo.procdef.returndef) and
  2676. assigned(current_procinfo.procdef.funcretsym) and
  2677. (tabstractvarsym(current_procinfo.procdef.funcretsym).refs <> 0) then
  2678. if (current_procinfo.procdef.proctypeoption=potype_constructor) then
  2679. rr.ressym:=tsym(current_procinfo.procdef.parast.Find('self'))
  2680. else
  2681. rr.ressym:=current_procinfo.procdef.funcretsym;
  2682. if not foreachnodestatic(n,@doreplace,@rr) then
  2683. exit;
  2684. if reload then
  2685. case n.location.loc of
  2686. LOC_CREGISTER:
  2687. begin
  2688. {$ifndef cpu64bitalu}
  2689. if (n.location.size in [OS_64,OS_S64]) then
  2690. cg64.a_load64_reg_reg(list,n.location.register64,joinreg64(rr.new,rr.newhi))
  2691. else
  2692. {$endif not cpu64bitalu}
  2693. cg.a_load_reg_reg(list,n.location.size,n.location.size,n.location.register,rr.new);
  2694. end;
  2695. LOC_CFPUREGISTER:
  2696. cg.a_loadfpu_reg_reg(list,n.location.size,n.location.size,n.location.register,rr.new);
  2697. {$ifdef SUPPORT_MMX}
  2698. LOC_CMMXREGISTER:
  2699. cg.a_loadmm_reg_reg(list,OS_M64,OS_M64,n.location.register,rr.new,nil);
  2700. {$endif SUPPORT_MMX}
  2701. LOC_CMMREGISTER:
  2702. cg.a_loadmm_reg_reg(list,n.location.size,n.location.size,n.location.register,rr.new,nil);
  2703. else
  2704. internalerror(2006090920);
  2705. end;
  2706. { now that we've change the loadn/temp, also change the node result location }
  2707. {$ifndef cpu64bitalu}
  2708. if (n.location.size in [OS_64,OS_S64]) then
  2709. begin
  2710. n.location.register64.reglo := rr.new;
  2711. n.location.register64.reghi := rr.newhi;
  2712. end
  2713. else
  2714. {$endif not cpu64bitalu}
  2715. n.location.register := rr.new;
  2716. end;
  2717. procedure gen_free_symtable(list:TAsmList;st:TSymtable);
  2718. var
  2719. i : longint;
  2720. sym : tsym;
  2721. begin
  2722. for i:=0 to st.SymList.Count-1 do
  2723. begin
  2724. sym:=tsym(st.SymList[i]);
  2725. if (sym.typ in [staticvarsym,localvarsym,paravarsym]) then
  2726. begin
  2727. with tabstractnormalvarsym(sym) do
  2728. begin
  2729. { Note: We need to keep the data available in memory
  2730. for the sub procedures that can access local data
  2731. in the parent procedures }
  2732. case localloc.loc of
  2733. LOC_CREGISTER :
  2734. if (pi_has_label in current_procinfo.flags) then
  2735. {$ifndef cpu64bitalu}
  2736. if def_cgsize(vardef) in [OS_64,OS_S64] then
  2737. begin
  2738. cg.a_reg_sync(list,localloc.register64.reglo);
  2739. cg.a_reg_sync(list,localloc.register64.reghi);
  2740. end
  2741. else
  2742. {$endif not cpu64bitalu}
  2743. cg.a_reg_sync(list,localloc.register);
  2744. LOC_CFPUREGISTER,
  2745. LOC_CMMREGISTER:
  2746. if (pi_has_label in current_procinfo.flags) then
  2747. cg.a_reg_sync(list,localloc.register);
  2748. LOC_REFERENCE :
  2749. begin
  2750. if typ in [localvarsym,paravarsym] then
  2751. tg.Ungetlocal(list,localloc.reference);
  2752. end;
  2753. end;
  2754. end;
  2755. end;
  2756. end;
  2757. end;
  2758. procedure gen_intf_wrapper(list:TAsmList;_class:tobjectdef);
  2759. var
  2760. i,j : longint;
  2761. tmps : string;
  2762. pd : TProcdef;
  2763. ImplIntf : TImplementedInterface;
  2764. begin
  2765. for i:=0 to _class.ImplementedInterfaces.count-1 do
  2766. begin
  2767. ImplIntf:=TImplementedInterface(_class.ImplementedInterfaces[i]);
  2768. if (ImplIntf=ImplIntf.VtblImplIntf) and
  2769. assigned(ImplIntf.ProcDefs) then
  2770. begin
  2771. maybe_new_object_file(list);
  2772. for j:=0 to ImplIntf.ProcDefs.Count-1 do
  2773. begin
  2774. pd:=TProcdef(ImplIntf.ProcDefs[j]);
  2775. tmps:=make_mangledname('WRPR',_class.owner,_class.objname^+'_$_'+
  2776. ImplIntf.IntfDef.objname^+'_$_'+tostr(j)+'_$_'+pd.mangledname);
  2777. { create wrapper code }
  2778. new_section(list,sec_code,tmps,0);
  2779. cg.init_register_allocators;
  2780. cg.g_intf_wrapper(list,pd,tmps,ImplIntf.ioffset);
  2781. cg.done_register_allocators;
  2782. end;
  2783. end;
  2784. end;
  2785. end;
  2786. procedure gen_intf_wrappers(list:TAsmList;st:TSymtable;nested:boolean);
  2787. var
  2788. i : longint;
  2789. def : tdef;
  2790. begin
  2791. if not nested then
  2792. create_codegen;
  2793. for i:=0 to st.DefList.Count-1 do
  2794. begin
  2795. def:=tdef(st.DefList[i]);
  2796. { if def can contain nested types then handle it symtable }
  2797. if def.typ in [objectdef,recorddef] then
  2798. gen_intf_wrappers(list,tabstractrecorddef(def).symtable,true);
  2799. if is_class(def) then
  2800. gen_intf_wrapper(list,tobjectdef(def));
  2801. end;
  2802. if not nested then
  2803. destroy_codegen;
  2804. end;
  2805. procedure gen_load_vmt_register(list:TAsmList;objdef:tobjectdef;selfloc:tlocation;var vmtreg:tregister);
  2806. var
  2807. href : treference;
  2808. begin
  2809. if is_object(objdef) then
  2810. begin
  2811. case selfloc.loc of
  2812. LOC_CREFERENCE,
  2813. LOC_REFERENCE:
  2814. begin
  2815. reference_reset_base(href,cg.getaddressregister(list),objdef.vmt_offset,sizeof(pint));
  2816. cg.a_loadaddr_ref_reg(list,selfloc.reference,href.base);
  2817. end;
  2818. else
  2819. internalerror(200305056);
  2820. end;
  2821. end
  2822. else
  2823. { This is also valid for Objective-C classes: vmt_offset is 0 there,
  2824. and the first "field" of an Objective-C class instance is a pointer
  2825. to its "meta-class". }
  2826. begin
  2827. case selfloc.loc of
  2828. LOC_REGISTER:
  2829. begin
  2830. {$ifdef cpu_uses_separate_address_registers}
  2831. if getregtype(left.location.register)<>R_ADDRESSREGISTER then
  2832. begin
  2833. reference_reset_base(href,cg.getaddressregister(list),objdef.vmt_offset,sizeof(pint));
  2834. cg.a_load_reg_reg(list,OS_ADDR,OS_ADDR,selfloc.register,href.base);
  2835. end
  2836. else
  2837. {$endif cpu_uses_separate_address_registers}
  2838. reference_reset_base(href,selfloc.register,objdef.vmt_offset,sizeof(pint));
  2839. end;
  2840. LOC_CREGISTER,
  2841. LOC_CREFERENCE,
  2842. LOC_REFERENCE:
  2843. begin
  2844. reference_reset_base(href,cg.getaddressregister(list),objdef.vmt_offset,sizeof(pint));
  2845. cg.a_load_loc_reg(list,OS_ADDR,selfloc,href.base);
  2846. end;
  2847. else
  2848. internalerror(200305057);
  2849. end;
  2850. end;
  2851. vmtreg:=cg.getaddressregister(list);
  2852. cg.g_maybe_testself(list,href.base);
  2853. cg.a_load_ref_reg(list,OS_ADDR,OS_ADDR,href,vmtreg);
  2854. { test validity of VMT }
  2855. if not(is_interface(objdef)) and
  2856. not(is_cppclass(objdef)) and
  2857. not(is_objc_class_or_protocol(objdef)) then
  2858. cg.g_maybe_testvmt(list,vmtreg,objdef);
  2859. end;
  2860. function getprocalign : shortint;
  2861. begin
  2862. { gprof uses 16 byte granularity }
  2863. if (cs_profile in current_settings.moduleswitches) then
  2864. result:=16
  2865. else
  2866. result:=current_settings.alignment.procalign;
  2867. end;
  2868. procedure gen_pic_helpers(list : TAsmList);
  2869. {$ifdef i386}
  2870. var
  2871. href : treference;
  2872. {$endif i386}
  2873. begin
  2874. { if other cpus require such helpers as well, it can be solved more cleanly }
  2875. {$ifdef i386}
  2876. if current_module.requires_ebx_pic_helper then
  2877. begin
  2878. new_section(list,sec_code,'fpc_geteipasebx',0);
  2879. list.concat(tai_symbol.Createname('fpc_geteipasebx',AT_FUNCTION,getprocalign));
  2880. reference_reset(href,sizeof(pint));
  2881. href.base:=NR_ESP;
  2882. list.concat(taicpu.op_ref_reg(A_MOV,S_L,href,NR_EBX));
  2883. list.concat(taicpu.op_none(A_RET,S_NO));
  2884. end;
  2885. if current_module.requires_ecx_pic_helper then
  2886. begin
  2887. new_section(list,sec_code,'fpc_geteipasecx',0);
  2888. list.concat(tai_symbol.Createname('fpc_geteipasecx',AT_FUNCTION,getprocalign));
  2889. reference_reset(href,sizeof(pint));
  2890. href.base:=NR_ESP;
  2891. list.concat(taicpu.op_ref_reg(A_MOV,S_L,href,NR_ECX));
  2892. list.concat(taicpu.op_none(A_RET,S_NO));
  2893. end;
  2894. {$endif i386}
  2895. end;
  2896. end.