ncgutil.pas 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl
  4. Helper routines for all code generators
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. ****************************************************************************
  17. }
  18. unit ncgutil;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. node,cpuinfo,
  23. cpubase,cpupara,
  24. aasmbase,aasmtai,aasmcpu,
  25. cginfo,symbase,symdef,symtype,
  26. {$ifndef cpu64bit}
  27. cg64f32,
  28. {$endif cpu64bit}
  29. rgobj;
  30. type
  31. tloadregvars = (lr_dont_load_regvars, lr_load_regvars);
  32. tmaybesave = record
  33. saved : boolean;
  34. ref : treference;
  35. end;
  36. procedure firstcomplex(p : tbinarynode);
  37. procedure maketojumpbool(list:TAAsmoutput; p : tnode; loadregvars: tloadregvars);
  38. procedure remove_non_regvars_from_loc(const t: tlocation; var regs: tregisterset);
  39. procedure location_force_reg(list: TAAsmoutput;var l:tlocation;dst_size:TCGSize;maybeconst:boolean);
  40. procedure location_force_mem(list: TAAsmoutput;var l:tlocation);
  41. procedure maybe_save(list:taasmoutput;needed:integer;var l:tlocation;var s:tmaybesave);
  42. procedure maybe_restore(list:taasmoutput;var l:tlocation;const s:tmaybesave);
  43. function maybe_pushfpu(list:taasmoutput;needed : byte;var l:tlocation) : boolean;
  44. procedure push_value_para(p:tnode;inlined,is_cdecl:boolean;
  45. para_offset:longint;alignment : longint;
  46. const locpara : tparalocation);
  47. procedure genentrycode(list : TAAsmoutput;
  48. make_global:boolean;
  49. stackframe:longint;
  50. var parasize:longint;var nostackframe:boolean;
  51. inlined : boolean);
  52. procedure genexitcode(list : TAAsmoutput;parasize:longint;nostackframe,inlined:boolean);
  53. procedure genimplicitunitinit(list : TAAsmoutput);
  54. procedure genimplicitunitfinal(list : TAAsmoutput);
  55. {#
  56. Allocate the buffers for exception management and setjmp environment.
  57. Return a pointer to these buffers, send them to the utility routine
  58. so they are registered, and then call setjmp.
  59. Then compare the result of setjmp with 0, and if not equal
  60. to zero, then jump to exceptlabel.
  61. Also store the result of setjmp to a temporary space by calling g_save_exception_reason
  62. It is to note that this routine may be called *after* the stackframe of a
  63. routine has been called, therefore on machines where the stack cannot
  64. be modified, all temps should be allocated on the heap instead of the
  65. stack.
  66. }
  67. procedure new_exception(list : taasmoutput;const jmpbuf,envbuf, href : treference;
  68. a : aword; exceptlabel : tasmlabel);
  69. procedure free_exception(list : taasmoutput;const jmpbuf, envbuf, href : treference;
  70. a : aword ; endexceptlabel : tasmlabel; onlyfree : boolean);
  71. implementation
  72. uses
  73. {$ifdef Delphi}
  74. Sysutils,
  75. {$else}
  76. strings,
  77. {$endif}
  78. cutils,cclasses,globtype,globals,systems,verbose,
  79. symconst,symsym,symtable,defbase,paramgr,
  80. fmodule,
  81. cgbase,regvars,
  82. {$ifdef GDB}
  83. gdb,
  84. {$endif GDB}
  85. ncon,
  86. tgobj,cgobj,cgcpu;
  87. {*****************************************************************************
  88. Misc Helpers
  89. *****************************************************************************}
  90. { DO NOT RELY on the fact that the tnode is not yet swaped
  91. because of inlining code PM }
  92. procedure firstcomplex(p : tbinarynode);
  93. var
  94. hp : tnode;
  95. begin
  96. { always calculate boolean AND and OR from left to right }
  97. if (p.nodetype in [orn,andn]) and
  98. is_boolean(p.left.resulttype.def) then
  99. begin
  100. if nf_swaped in p.flags then
  101. internalerror(234234);
  102. end
  103. else
  104. if (
  105. (p.location.loc=LOC_FPUREGISTER) and
  106. (p.right.registersfpu > p.left.registersfpu)
  107. ) or
  108. (
  109. (
  110. (
  111. ((p.left.registersfpu = 0) and (p.right.registersfpu = 0)) or
  112. (p.location.loc<>LOC_FPUREGISTER)
  113. ) and
  114. (p.left.registers32<p.right.registers32)
  115. ) and
  116. { the following check is appropriate, because all }
  117. { 4 registers are rarely used and it is thereby }
  118. { achieved that the extra code is being dropped }
  119. { by exchanging not commutative operators }
  120. (p.right.registers32<=c_countusableregsint)
  121. ) then
  122. begin
  123. hp:=p.left;
  124. p.left:=p.right;
  125. p.right:=hp;
  126. if nf_swaped in p.flags then
  127. exclude(p.flags,nf_swaped)
  128. else
  129. include(p.flags,nf_swaped);
  130. end;
  131. end;
  132. procedure maketojumpbool(list:TAAsmoutput; p : tnode; loadregvars: tloadregvars);
  133. {
  134. produces jumps to true respectively false labels using boolean expressions
  135. depending on whether the loading of regvars is currently being
  136. synchronized manually (such as in an if-node) or automatically (most of
  137. the other cases where this procedure is called), loadregvars can be
  138. "lr_load_regvars" or "lr_dont_load_regvars"
  139. }
  140. var
  141. opsize : tcgsize;
  142. storepos : tfileposinfo;
  143. begin
  144. if nf_error in p.flags then
  145. exit;
  146. storepos:=aktfilepos;
  147. aktfilepos:=p.fileinfo;
  148. if is_boolean(p.resulttype.def) then
  149. begin
  150. if loadregvars = lr_load_regvars then
  151. load_all_regvars(list);
  152. if is_constboolnode(p) then
  153. begin
  154. if tordconstnode(p).value<>0 then
  155. cg.a_jmp_always(list,truelabel)
  156. else
  157. cg.a_jmp_always(list,falselabel)
  158. end
  159. else
  160. begin
  161. opsize:=def_cgsize(p.resulttype.def);
  162. case p.location.loc of
  163. LOC_CREGISTER,LOC_REGISTER,LOC_CREFERENCE,LOC_REFERENCE :
  164. begin
  165. if (p.location.loc = LOC_CREGISTER) then
  166. load_regvar_reg(list,p.location.register);
  167. cg.a_cmp_const_loc_label(list,opsize,OC_NE,
  168. 0,p.location,truelabel);
  169. { !!! should happen right after cmp (JM) }
  170. location_release(list,p.location);
  171. cg.a_jmp_always(list,falselabel);
  172. end;
  173. {$ifdef cpuflags}
  174. LOC_FLAGS :
  175. begin
  176. cg.a_jmp_flags(list,p.location.resflags,
  177. truelabel);
  178. cg.a_jmp_always(list,falselabel);
  179. end;
  180. {$endif cpuflags}
  181. end;
  182. end;
  183. end
  184. else
  185. internalerror(200112305);
  186. aktfilepos:=storepos;
  187. end;
  188. procedure remove_non_regvars_from_loc(const t: tlocation; var regs: tregisterset);
  189. begin
  190. case t.loc of
  191. LOC_REGISTER:
  192. begin
  193. { can't be a regvar, since it would be LOC_CREGISTER then }
  194. exclude(regs,t.register);
  195. if t.registerhigh <> R_NO then
  196. exclude(regs,t.registerhigh);
  197. end;
  198. LOC_CREFERENCE,LOC_REFERENCE:
  199. begin
  200. if not(cs_regalloc in aktglobalswitches) or
  201. (t.reference.base in rg.usableregsint) then
  202. exclude(regs,t.reference.base);
  203. if not(cs_regalloc in aktglobalswitches) or
  204. (t.reference.index in rg.usableregsint) then
  205. exclude(regs,t.reference.index);
  206. end;
  207. end;
  208. end;
  209. {*****************************************************************************
  210. EXCEPTION MANAGEMENT
  211. *****************************************************************************}
  212. procedure new_exception(list : taasmoutput;const jmpbuf,envbuf, href : treference;
  213. a : aword; exceptlabel : tasmlabel);
  214. begin
  215. cg.a_paramaddr_ref(list,envbuf,paramanager.getintparaloc(3));
  216. cg.a_paramaddr_ref(list,jmpbuf,paramanager.getintparaloc(2));
  217. { push type of exceptionframe }
  218. cg.a_param_const(list,OS_S32,1,paramanager.getintparaloc(1));
  219. cg.a_call_name(list,'FPC_PUSHEXCEPTADDR');
  220. cg.a_param_reg(list,OS_ADDR,accumulator,paramanager.getintparaloc(1));
  221. cg.a_call_name(list,'FPC_SETJMP');
  222. cg.g_exception_reason_save(list, href);
  223. cg.a_cmp_const_reg_label(list,OS_S32,OC_NE,0,accumulator,exceptlabel);
  224. end;
  225. procedure free_exception(list : taasmoutput;const jmpbuf, envbuf, href : treference;
  226. a : aword ; endexceptlabel : tasmlabel; onlyfree : boolean);
  227. begin
  228. cg.a_call_name(list,'FPC_POPADDRSTACK');
  229. if not onlyfree then
  230. begin
  231. cg.g_exception_reason_load(list, href);
  232. cg.a_cmp_const_reg_label(list,OS_S32,OC_EQ,a,accumulator,endexceptlabel);
  233. end;
  234. end;
  235. {*****************************************************************************
  236. TLocation
  237. *****************************************************************************}
  238. {$ifndef cpu64bit}
  239. { 32-bit version }
  240. procedure location_force(list: TAAsmoutput;var l:tlocation;dst_size:TCGSize;maybeconst:boolean);
  241. var
  242. hregister,
  243. hregisterhi : tregister;
  244. hreg64 : tregister64;
  245. hl : tasmlabel;
  246. begin
  247. { handle transformations to 64bit separate }
  248. if dst_size in [OS_64,OS_S64] then
  249. begin
  250. if not (l.size in [OS_64,OS_S64]) then
  251. begin
  252. { load a smaller size to OS_64 }
  253. if l.loc=LOC_REGISTER then
  254. begin
  255. hregister:=rg.makeregsize(l.registerlow,OS_INT);
  256. cg.a_load_reg_reg(list,l.size,OS_32,l.registerlow,hregister);
  257. end
  258. else
  259. hregister:=rg.getregisterint(list);
  260. { load value in low register }
  261. case l.loc of
  262. LOC_FLAGS :
  263. cg.g_flags2reg(list,OS_INT,l.resflags,hregister);
  264. LOC_JUMP :
  265. begin
  266. cg.a_label(list,truelabel);
  267. cg.a_load_const_reg(list,OS_INT,1,hregister);
  268. objectlibrary.getlabel(hl);
  269. cg.a_jmp_always(list,hl);
  270. cg.a_label(list,falselabel);
  271. cg.a_load_const_reg(list,OS_INT,0,hregister);
  272. cg.a_label(list,hl);
  273. end;
  274. else
  275. cg.a_load_loc_reg(list,l,hregister);
  276. end;
  277. { reset hi part, take care of the signed bit of the current value }
  278. hregisterhi:=rg.getregisterint(list);
  279. if (dst_size=OS_S64) and
  280. (l.size in [OS_S8,OS_S16,OS_S32]) then
  281. begin
  282. if l.loc=LOC_CONSTANT then
  283. begin
  284. if (longint(l.value)<0) then
  285. cg.a_load_const_reg(list,OS_32,$ffffffff,hregisterhi)
  286. else
  287. cg.a_load_const_reg(list,OS_32,0,hregisterhi);
  288. end
  289. else
  290. begin
  291. cg.a_op_const_reg_reg(list,OP_SAR,OS_32,31,hregister,
  292. hregisterhi);
  293. end;
  294. end
  295. else
  296. cg.a_load_const_reg(list,OS_32,0,hregisterhi);
  297. location_reset(l,LOC_REGISTER,dst_size);
  298. l.registerlow:=hregister;
  299. l.registerhigh:=hregisterhi;
  300. end
  301. else
  302. begin
  303. { 64bit to 64bit }
  304. if (l.loc=LOC_REGISTER) or
  305. ((l.loc=LOC_CREGISTER) and maybeconst) then
  306. begin
  307. hregister:=l.registerlow;
  308. hregisterhi:=l.registerhigh;
  309. end
  310. else
  311. begin
  312. hregister:=rg.getregisterint(list);
  313. hregisterhi:=rg.getregisterint(list);
  314. end;
  315. hreg64.reglo:=hregister;
  316. hreg64.reghi:=hregisterhi;
  317. { load value in new register }
  318. cg64.a_load64_loc_reg(list,l,hreg64);
  319. location_reset(l,LOC_REGISTER,dst_size);
  320. l.registerlow:=hregister;
  321. l.registerhigh:=hregisterhi;
  322. end;
  323. end
  324. else
  325. begin
  326. { transformations to 32bit or smaller }
  327. if l.loc=LOC_REGISTER then
  328. begin
  329. { if the previous was 64bit release the high register }
  330. if l.size in [OS_64,OS_S64] then
  331. begin
  332. rg.ungetregisterint(list,l.registerhigh);
  333. l.registerhigh:=R_NO;
  334. end;
  335. hregister:=l.register;
  336. end
  337. else
  338. begin
  339. { get new register }
  340. if (l.loc=LOC_CREGISTER) and
  341. maybeconst and
  342. (TCGSize2Size[dst_size]=TCGSize2Size[l.size]) then
  343. hregister:=l.register
  344. else
  345. hregister:=rg.getregisterint(list);
  346. end;
  347. hregister:=rg.makeregsize(hregister,dst_size);
  348. { load value in new register }
  349. case l.loc of
  350. LOC_FLAGS :
  351. cg.g_flags2reg(list,dst_size,l.resflags,hregister);
  352. LOC_JUMP :
  353. begin
  354. cg.a_label(list,truelabel);
  355. cg.a_load_const_reg(list,dst_size,1,hregister);
  356. objectlibrary.getlabel(hl);
  357. cg.a_jmp_always(list,hl);
  358. cg.a_label(list,falselabel);
  359. cg.a_load_const_reg(list,dst_size,0,hregister);
  360. cg.a_label(list,hl);
  361. end;
  362. else
  363. begin
  364. { load_loc_reg can only handle size >= l.size, when the
  365. new size is smaller then we need to adjust the size
  366. of the orignal and maybe recalculate l.register for i386 }
  367. if (TCGSize2Size[dst_size]<TCGSize2Size[l.size]) then
  368. begin
  369. if (l.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  370. l.register:=rg.makeregsize(l.register,dst_size);
  371. { for big endian systems, the reference's offset must }
  372. { be increased in this case, since they have the }
  373. { MSB first in memory and e.g. byte(word_var) should }
  374. { return the second byte in this case (JM) }
  375. if (target_info.endian = ENDIAN_BIG) and
  376. (l.loc in [LOC_REFERENCE,LOC_CREFERENCE]) then
  377. inc(l.reference.offset,TCGSize2Size[l.size]-TCGSize2Size[dst_size]);
  378. l.size:=dst_size;
  379. end;
  380. cg.a_load_loc_reg(list,l,hregister);
  381. end;
  382. end;
  383. location_reset(l,LOC_REGISTER,dst_size);
  384. l.register:=hregister;
  385. end;
  386. end;
  387. {$else cpu64bit}
  388. { 64-bit version }
  389. procedure location_force(list: TAAsmoutput;var l:tlocation;dst_size:TCGSize;maybeconst:boolean);
  390. var
  391. hregister : tregister;
  392. hl : tasmlabel;
  393. begin
  394. { handle transformations to 64bit separate }
  395. if dst_size in [OS_64,OS_S64] then
  396. begin
  397. { load a smaller size to OS_64 }
  398. if l.loc=LOC_REGISTER then
  399. hregister:=rg.makeregsize(l.register,OS_INT)
  400. else
  401. hregister:=rg.getregisterint(list);
  402. { load value in low register }
  403. case l.loc of
  404. {$ifdef cpuflags}
  405. LOC_FLAGS :
  406. cg.g_flags2reg(list,OS_INT,l.resflags,hregister);
  407. {$endif cpuflags}
  408. LOC_JUMP :
  409. begin
  410. cg.a_label(list,truelabel);
  411. cg.a_load_const_reg(list,OS_INT,1,hregister);
  412. objectlibrary.getlabel(hl);
  413. cg.a_jmp_always(list,hl);
  414. cg.a_label(list,falselabel);
  415. cg.a_load_const_reg(list,OS_INT,0,hregister);
  416. cg.a_label(list,hl);
  417. end;
  418. else
  419. cg.a_load_loc_reg(list,l,hregister);
  420. end;
  421. location_reset(l,LOC_REGISTER,dst_size);
  422. l.register:=hregister;
  423. end
  424. else
  425. begin
  426. { transformations to 32bit or smaller }
  427. if l.loc=LOC_REGISTER then
  428. begin
  429. hregister:=l.register;
  430. end
  431. else
  432. begin
  433. { get new register }
  434. if (l.loc=LOC_CREGISTER) and
  435. maybeconst and
  436. (TCGSize2Size[dst_size]=TCGSize2Size[l.size]) then
  437. hregister:=l.register
  438. else
  439. hregister:=rg.getregisterint(list);
  440. end;
  441. hregister:=rg.makeregsize(hregister,dst_size);
  442. { load value in new register }
  443. case l.loc of
  444. {$ifdef cpuflags}
  445. LOC_FLAGS :
  446. cg.g_flags2reg(list,dst_size,l.resflags,hregister);
  447. {$endif cpuflags}
  448. LOC_JUMP :
  449. begin
  450. cg.a_label(list,truelabel);
  451. cg.a_load_const_reg(list,dst_size,1,hregister);
  452. objectlibrary.getlabel(hl);
  453. cg.a_jmp_always(list,hl);
  454. cg.a_label(list,falselabel);
  455. cg.a_load_const_reg(list,dst_size,0,hregister);
  456. cg.a_label(list,hl);
  457. end;
  458. else
  459. begin
  460. { load_loc_reg can only handle size >= l.size, when the
  461. new size is smaller then we need to adjust the size
  462. of the orignal and maybe recalculate l.register for i386 }
  463. if (TCGSize2Size[dst_size]<TCGSize2Size[l.size]) then
  464. begin
  465. if (l.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  466. l.register:=rg.makeregsize(l.register,dst_size);
  467. { for big endian systems, the reference's offset must }
  468. { be increased in this case, since they have the }
  469. { MSB first in memory and e.g. byte(word_var) should }
  470. { return the second byte in this case (JM) }
  471. if (target_info.endian = ENDIAN_BIG) and
  472. (l.loc in [LOC_REFERENCE,LOC_CREFERENCE]) then
  473. inc(l.reference.offset,TCGSize2Size[l.size]-TCGSize2Size[dst_size]);
  474. l.size:=dst_size;
  475. end;
  476. cg.a_load_loc_reg(list,l,hregister);
  477. end;
  478. end;
  479. location_reset(l,LOC_REGISTER,dst_size);
  480. l.register:=hregister;
  481. end;
  482. end;
  483. {$endif cpu64bit}
  484. procedure location_force_reg(list: TAAsmoutput;var l:tlocation;dst_size:TCGSize;maybeconst:boolean);
  485. begin
  486. { release previous location before demanding a new register }
  487. if (l.loc in [LOC_REFERENCE,LOC_CREFERENCE]) then
  488. begin
  489. location_freetemp(list,l);
  490. location_release(list,l);
  491. end;
  492. location_force(list, l, dst_size, maybeconst)
  493. end;
  494. procedure location_force_mem(list: TAAsmoutput;var l:tlocation);
  495. var
  496. r : treference;
  497. begin
  498. case l.loc of
  499. LOC_FPUREGISTER,
  500. LOC_CFPUREGISTER :
  501. begin
  502. tg.GetTemp(list,TCGSize2Size[l.size],tt_normal,r);
  503. cg.a_loadfpu_reg_ref(list,l.size,l.register,r);
  504. location_reset(l,LOC_REFERENCE,l.size);
  505. l.reference:=r;
  506. end;
  507. LOC_CONSTANT,
  508. LOC_REGISTER,
  509. LOC_CREGISTER :
  510. begin
  511. tg.GetTemp(list,TCGSize2Size[l.size],tt_normal,r);
  512. if l.size in [OS_64,OS_S64] then
  513. cg64.a_load64_loc_ref(list,l,r)
  514. else
  515. cg.a_load_loc_ref(list,l,r);
  516. location_reset(l,LOC_REFERENCE,l.size);
  517. l.reference:=r;
  518. end;
  519. LOC_CREFERENCE,
  520. LOC_REFERENCE : ;
  521. else
  522. internalerror(200203219);
  523. end;
  524. end;
  525. {*****************************************************************************
  526. Maybe_Save
  527. *****************************************************************************}
  528. procedure maybe_save(list:taasmoutput;needed:integer;var l:tlocation;var s:tmaybesave);
  529. begin
  530. s.saved:=false;
  531. if l.loc=LOC_CREGISTER then
  532. begin
  533. s.saved:=true;
  534. exit;
  535. end;
  536. if needed>rg.countunusedregsint then
  537. begin
  538. case l.loc of
  539. LOC_REGISTER :
  540. begin
  541. {$ifndef cpu64bit}
  542. if l.size in [OS_64,OS_S64] then
  543. begin
  544. tg.GetTemp(exprasmlist,8,tt_normal,s.ref);
  545. cg64.a_load64_reg_ref(exprasmlist,joinreg64(l.registerlow,l.registerhigh),s.ref);
  546. end
  547. else
  548. {$endif cpu64bit}
  549. begin
  550. tg.GetTemp(exprasmlist,TCGSize2Size[l.size],tt_normal,s.ref);
  551. cg.a_load_reg_ref(exprasmlist,l.size,l.register,s.ref);
  552. end;
  553. location_release(exprasmlist,l);
  554. s.saved:=true;
  555. end;
  556. LOC_REFERENCE,
  557. LOC_CREFERENCE :
  558. begin
  559. if ((l.reference.base<>R_NO) or
  560. (l.reference.index<>R_NO)) then
  561. begin
  562. { load address into a single base register }
  563. if l.reference.index<>R_NO then
  564. begin
  565. cg.a_loadaddr_ref_reg(list,l.reference,l.reference.index);
  566. rg.ungetregister(list,l.reference.base);
  567. reference_reset_base(l.reference,l.reference.index,0);
  568. end
  569. else
  570. begin
  571. cg.a_loadaddr_ref_reg(list,l.reference,l.reference.base);
  572. rg.ungetregister(list,l.reference.index);
  573. reference_reset_base(l.reference,l.reference.base,0);
  574. end;
  575. { save base register }
  576. tg.GetTemp(exprasmlist,TCGSize2Size[OS_ADDR],tt_normal,s.ref);
  577. cg.a_load_reg_ref(exprasmlist,OS_ADDR,l.reference.base,s.ref);
  578. { release }
  579. location_release(exprasmlist,l);
  580. s.saved:=true;
  581. end;
  582. end;
  583. end;
  584. end;
  585. end;
  586. procedure maybe_restore(list:taasmoutput;var l:tlocation;const s:tmaybesave);
  587. begin
  588. if not s.saved then
  589. exit;
  590. if l.loc=LOC_CREGISTER then
  591. begin
  592. load_regvar_reg(list,l.register);
  593. exit;
  594. end;
  595. case l.loc of
  596. LOC_REGISTER :
  597. begin
  598. {$ifndef cpu64bit}
  599. if l.size in [OS_64,OS_S64] then
  600. begin
  601. l.registerlow:=rg.getregisterint(exprasmlist);
  602. l.registerhigh:=rg.getregisterint(exprasmlist);
  603. cg64.a_load64_ref_reg(exprasmlist,s.ref,joinreg64(l.registerlow,l.registerhigh));
  604. end
  605. else
  606. {$endif cpu64bit}
  607. begin
  608. l.register:=rg.getregisterint(exprasmlist);
  609. cg.a_load_ref_reg(exprasmlist,OS_INT,s.ref,l.register);
  610. end;
  611. end;
  612. LOC_CREFERENCE,
  613. LOC_REFERENCE :
  614. begin
  615. reference_reset(l.reference);
  616. l.reference.base:=rg.getaddressregister(exprasmlist);
  617. cg.a_load_ref_reg(exprasmlist,OS_ADDR,s.ref,l.reference.base);
  618. end;
  619. end;
  620. tg.ungetiftemp(exprasmlist,s.ref);
  621. end;
  622. function maybe_pushfpu(list:taasmoutput;needed : byte;var l:tlocation) : boolean;
  623. begin
  624. if (needed>=maxfpuregs) and
  625. (l.loc = LOC_FPUREGISTER) then
  626. begin
  627. location_force_mem(list,l);
  628. maybe_pushfpu:=true;
  629. end
  630. else
  631. maybe_pushfpu:=false;
  632. end;
  633. {*****************************************************************************
  634. Push Value Para
  635. *****************************************************************************}
  636. procedure push_value_para(p:tnode;inlined,is_cdecl:boolean;
  637. para_offset:longint;alignment : longint;
  638. const locpara : tparalocation);
  639. var
  640. tempreference : treference;
  641. href : treference;
  642. hreg : tregister;
  643. sizetopush,
  644. size : longint;
  645. cgsize : tcgsize;
  646. begin
  647. { we've nothing to push when the size of the parameter is 0 }
  648. if p.resulttype.def.size=0 then
  649. exit;
  650. { Move flags and jump in register to make it less complex }
  651. if p.location.loc in [LOC_FLAGS,LOC_JUMP] then
  652. location_force_reg(exprasmlist,p.location,def_cgsize(p.resulttype.def),false);
  653. { Handle Floating point types differently }
  654. if p.resulttype.def.deftype=floatdef then
  655. begin
  656. case p.location.loc of
  657. LOC_FPUREGISTER,
  658. LOC_CFPUREGISTER:
  659. begin
  660. size:=align(tfloatdef(p.resulttype.def).size,alignment);
  661. inc(pushedparasize,size);
  662. if not inlined then
  663. cg.a_op_const_reg(exprasmlist,OP_SUB,size,STACK_POINTER_REG);
  664. {$ifdef GDB}
  665. if (cs_debuginfo in aktmoduleswitches) and
  666. (exprasmList.first=exprasmList.last) then
  667. exprasmList.concat(Tai_force_line.Create);
  668. {$endif GDB}
  669. { this is the easiest case for inlined !! }
  670. if inlined then
  671. reference_reset_base(href,procinfo.framepointer,para_offset-pushedparasize)
  672. else
  673. reference_reset_base(href,stack_pointer_reg,0);
  674. cg.a_loadfpu_reg_ref(exprasmlist,
  675. def_cgsize(p.resulttype.def),p.location.register,href);
  676. end;
  677. LOC_REFERENCE,
  678. LOC_CREFERENCE :
  679. begin
  680. sizetopush:=align(p.resulttype.def.size,alignment);
  681. tempreference:=p.location.reference;
  682. inc(tempreference.offset,sizetopush);
  683. while (sizetopush>0) do
  684. begin
  685. if sizetopush>=4 then
  686. begin
  687. cgsize:=OS_32;
  688. inc(pushedparasize,4);
  689. dec(tempreference.offset,4);
  690. dec(sizetopush,4);
  691. end
  692. else
  693. begin
  694. cgsize:=OS_16;
  695. inc(pushedparasize,2);
  696. dec(tempreference.offset,2);
  697. dec(sizetopush,2);
  698. end;
  699. if inlined then
  700. begin
  701. reference_reset_base(href,procinfo.framepointer,para_offset-pushedparasize);
  702. cg.a_load_ref_ref(exprasmlist,cgsize,tempreference,href);
  703. end
  704. else
  705. cg.a_param_ref(exprasmlist,cgsize,tempreference,locpara);
  706. end;
  707. end;
  708. else
  709. internalerror(200204243);
  710. end;
  711. end
  712. else
  713. begin
  714. { call by value open array ? }
  715. if is_cdecl and
  716. paramanager.push_addr_param(p.resulttype.def,false) then
  717. begin
  718. if not (p.location.loc in [LOC_REFERENCE,LOC_CREFERENCE]) then
  719. internalerror(200204241);
  720. { push on stack }
  721. size:=align(p.resulttype.def.size,alignment);
  722. inc(pushedparasize,size);
  723. cg.a_op_const_reg(exprasmlist,OP_SUB,size,STACK_POINTER_REG);
  724. reference_reset_base(href,STACK_POINTER_REG,0);
  725. cg.g_concatcopy(exprasmlist,p.location.reference,href,size,false,false);
  726. end
  727. else
  728. begin
  729. case p.location.loc of
  730. LOC_CONSTANT,
  731. LOC_REGISTER,
  732. LOC_CREGISTER,
  733. LOC_REFERENCE,
  734. LOC_CREFERENCE :
  735. begin
  736. cgsize:=def_cgsize(p.resulttype.def);
  737. if cgsize in [OS_64,OS_S64] then
  738. begin
  739. inc(pushedparasize,8);
  740. if inlined then
  741. begin
  742. reference_reset_base(href,procinfo.framepointer,para_offset-pushedparasize);
  743. if p.location.loc in [LOC_REFERENCE,LOC_CREFERENCE] then
  744. begin
  745. size:=align(p.resulttype.def.size,alignment);
  746. cg.g_concatcopy(exprasmlist,p.location.reference,href,size,false,false)
  747. end
  748. else
  749. cg64.a_load64_loc_ref(exprasmlist,p.location,href);
  750. end
  751. else
  752. cg64.a_param64_loc(exprasmlist,p.location,locpara);
  753. end
  754. else
  755. begin
  756. case cgsize of
  757. OS_8,OS_S8 :
  758. begin
  759. if alignment=4 then
  760. cgsize:=OS_32
  761. else
  762. cgsize:=OS_16;
  763. end;
  764. OS_16,OS_S16 :
  765. begin
  766. if alignment=4 then
  767. cgsize:=OS_32;
  768. end;
  769. end;
  770. { update register to use to match alignment }
  771. if p.location.loc in [LOC_REGISTER,LOC_CREGISTER] then
  772. begin
  773. hreg:=p.location.register;
  774. p.location.register:=rg.makeregsize(p.location.register,cgsize);
  775. end;
  776. inc(pushedparasize,alignment);
  777. if inlined then
  778. begin
  779. reference_reset_base(href,procinfo.framepointer,para_offset-pushedparasize);
  780. if p.location.loc in [LOC_REFERENCE,LOC_CREFERENCE] then
  781. begin
  782. size:=align(p.resulttype.def.size,alignment);
  783. cg.g_concatcopy(exprasmlist,p.location.reference,href,size,false,false)
  784. end
  785. else
  786. cg.a_load_loc_ref(exprasmlist,p.location,href);
  787. end
  788. else
  789. cg.a_param_loc(exprasmlist,p.location,locpara);
  790. { restore old register }
  791. if p.location.loc in [LOC_REGISTER,LOC_CREGISTER] then
  792. p.location.register:=hreg;
  793. end;
  794. location_release(exprasmlist,p.location);
  795. end;
  796. {$ifdef SUPPORT_MMX}
  797. LOC_MMXREGISTER,
  798. LOC_CMMXREGISTER:
  799. begin
  800. inc(pushedparasize,8);
  801. if inlined then
  802. begin
  803. reference_reset_base(href,procinfo.framepointer,para_offset-pushedparasize);
  804. cg.a_loadmm_reg_ref(exprasmlist,p.location.register,href);
  805. end
  806. else
  807. cg.a_parammm_reg(exprasmlist,p.location.register);
  808. end;
  809. {$endif SUPPORT_MMX}
  810. else
  811. internalerror(200204241);
  812. end;
  813. end;
  814. end;
  815. end;
  816. {****************************************************************************
  817. Entry/Exit Code
  818. ****************************************************************************}
  819. procedure copyvalueparas(p : tnamedindexitem;arg:pointer);
  820. var
  821. href1,href2 : treference;
  822. list : taasmoutput;
  823. begin
  824. list:=taasmoutput(arg);
  825. if (tsym(p).typ=varsym) and
  826. (tvarsym(p).varspez=vs_value) and
  827. (paramanager.push_addr_param(tvarsym(p).vartype.def,false)) then
  828. begin
  829. reference_reset_base(href1,procinfo.framepointer,tvarsym(p).address+procinfo.para_offset);
  830. if is_open_array(tvarsym(p).vartype.def) or
  831. is_array_of_const(tvarsym(p).vartype.def) then
  832. cg.g_copyvaluepara_openarray(list,href1,tarraydef(tvarsym(p).vartype.def).elesize)
  833. else
  834. begin
  835. reference_reset_base(href2,procinfo.framepointer,-tvarsym(p).localvarsym.address+tvarsym(p).localvarsym.owner.address_fixup);
  836. if is_shortstring(tvarsym(p).vartype.def) then
  837. cg.g_copyshortstring(list,href1,href2,tstringdef(tvarsym(p).vartype.def).len,false,true)
  838. else
  839. cg.g_concatcopy(list,href1,href2,tvarsym(p).vartype.def.size,true,true);
  840. end;
  841. end;
  842. end;
  843. procedure removevalueparas(p : tnamedindexitem;arg:pointer);
  844. var
  845. href1 : treference;
  846. list : taasmoutput;
  847. begin
  848. list:=taasmoutput(arg);
  849. if (tsym(p).typ=varsym) and
  850. (tvarsym(p).varspez=vs_value) and
  851. (is_open_array(tvarsym(p).vartype.def) or
  852. is_array_of_const(tvarsym(p).vartype.def)) and
  853. (paramanager.push_addr_param(tvarsym(p).vartype.def,false)) then
  854. begin
  855. reference_reset_base(href1,procinfo.framepointer,tvarsym(p).address+procinfo.para_offset);
  856. cg.g_removevaluepara_openarray(list,href1,tarraydef(tvarsym(p).vartype.def).elesize);
  857. end;
  858. end;
  859. procedure initialize_threadvar(p : tnamedindexitem;arg:pointer);
  860. var
  861. href : treference;
  862. list : taasmoutput;
  863. begin
  864. list:=taasmoutput(arg);
  865. if (tsym(p).typ=varsym) and
  866. (vo_is_thread_var in tvarsym(p).varoptions) then
  867. begin
  868. cg.a_param_const(list,OS_INT,tvarsym(p).getsize,paramanager.getintparaloc(2));
  869. reference_reset_symbol(href,objectlibrary.newasmsymbol(tvarsym(p).mangledname),0);
  870. cg.a_paramaddr_ref(list,href,paramanager.getintparaloc(1));
  871. rg.saveregvars(list,all_registers);
  872. cg.a_call_name(list,'FPC_INIT_THREADVAR');
  873. end;
  874. end;
  875. { generates the code for initialisation of local data }
  876. procedure initialize_data(p : tnamedindexitem;arg:pointer);
  877. var
  878. href : treference;
  879. list : taasmoutput;
  880. begin
  881. list:=taasmoutput(arg);
  882. if (tsym(p).typ=varsym) and
  883. not(vo_is_local_copy in tvarsym(p).varoptions) and
  884. assigned(tvarsym(p).vartype.def) and
  885. not(is_class(tvarsym(p).vartype.def)) and
  886. tvarsym(p).vartype.def.needs_inittable then
  887. begin
  888. if assigned(procinfo) then
  889. procinfo.flags:=procinfo.flags or pi_needs_implicit_finally;
  890. if tsym(p).owner.symtabletype in [localsymtable,inlinelocalsymtable] then
  891. reference_reset_base(href,procinfo.framepointer,-tvarsym(p).address+tvarsym(p).owner.address_fixup)
  892. else
  893. reference_reset_symbol(href,objectlibrary.newasmsymbol(tvarsym(p).mangledname),0);
  894. cg.g_initialize(list,tvarsym(p).vartype.def,href,false);
  895. end;
  896. end;
  897. { generates the code for finalisation of local data }
  898. procedure finalize_data(p : tnamedindexitem;arg:pointer);
  899. var
  900. href : treference;
  901. list : taasmoutput;
  902. begin
  903. list:=taasmoutput(arg);
  904. if (tsym(p).typ=varsym) and
  905. not(vo_is_local_copy in tvarsym(p).varoptions) and
  906. assigned(tvarsym(p).vartype.def) and
  907. not(is_class(tvarsym(p).vartype.def)) and
  908. tvarsym(p).vartype.def.needs_inittable then
  909. begin
  910. if tsym(p).owner.symtabletype in [localsymtable,inlinelocalsymtable] then
  911. reference_reset_base(href,procinfo.framepointer,-tvarsym(p).address+tvarsym(p).owner.address_fixup)
  912. else
  913. reference_reset_symbol(href,objectlibrary.newasmsymbol(tvarsym(p).mangledname),0);
  914. cg.g_finalize(list,tvarsym(p).vartype.def,href,false);
  915. end;
  916. end;
  917. { generates the code for incrementing the reference count of parameters and
  918. initialize out parameters }
  919. procedure init_paras(p : tnamedindexitem;arg:pointer);
  920. var
  921. href : treference;
  922. tmpreg : tregister;
  923. list : taasmoutput;
  924. begin
  925. list:=taasmoutput(arg);
  926. if (tsym(p).typ=varsym) and
  927. not is_class(tvarsym(p).vartype.def) and
  928. tvarsym(p).vartype.def.needs_inittable then
  929. begin
  930. case tvarsym(p).varspez of
  931. vs_value :
  932. begin
  933. procinfo.flags:=procinfo.flags or pi_needs_implicit_finally;
  934. if assigned(tvarsym(p).localvarsym) then
  935. reference_reset_base(href,procinfo.framepointer,
  936. -tvarsym(p).localvarsym.address+tvarsym(p).localvarsym.owner.address_fixup)
  937. else
  938. reference_reset_base(href,procinfo.framepointer,tvarsym(p).address+procinfo.para_offset);
  939. cg.g_incrrefcount(list,tvarsym(p).vartype.def,href);
  940. end;
  941. vs_out :
  942. begin
  943. reference_reset_base(href,procinfo.framepointer,tvarsym(p).address+procinfo.para_offset);
  944. tmpreg:=cg.get_scratch_reg_address(list);
  945. cg.a_load_ref_reg(list,OS_ADDR,href,tmpreg);
  946. reference_reset_base(href,tmpreg,0);
  947. cg.g_initialize(list,tvarsym(p).vartype.def,href,false);
  948. cg.free_scratch_reg(list,tmpreg);
  949. end;
  950. end;
  951. end;
  952. end;
  953. { generates the code for decrementing the reference count of parameters }
  954. procedure final_paras(p : tnamedindexitem;arg:pointer);
  955. var
  956. href : treference;
  957. list : taasmoutput;
  958. begin
  959. list:=taasmoutput(arg);
  960. if (tsym(p).typ=varsym) and
  961. not is_class(tvarsym(p).vartype.def) and
  962. tvarsym(p).vartype.def.needs_inittable then
  963. begin
  964. if (tvarsym(p).varspez=vs_value) then
  965. begin
  966. if assigned(tvarsym(p).localvarsym) then
  967. reference_reset_base(href,procinfo.framepointer,
  968. -tvarsym(p).localvarsym.address+tvarsym(p).localvarsym.owner.address_fixup)
  969. else
  970. reference_reset_base(href,procinfo.framepointer,tvarsym(p).address+procinfo.para_offset);
  971. cg.g_decrrefcount(list,tvarsym(p).vartype.def,href);
  972. end;
  973. end;
  974. end;
  975. { Initialize temp ansi/widestrings,interfaces }
  976. procedure inittempvariables(list:taasmoutput);
  977. var
  978. hp : ptemprecord;
  979. href : treference;
  980. begin
  981. hp:=tg.templist;
  982. while assigned(hp) do
  983. begin
  984. if hp^.temptype in [tt_ansistring,tt_freeansistring,
  985. tt_widestring,tt_freewidestring,
  986. tt_interfacecom,tt_freeinterfacecom] then
  987. begin
  988. procinfo.flags:=procinfo.flags or pi_needs_implicit_finally;
  989. reference_reset_base(href,procinfo.framepointer,hp^.pos);
  990. cg.a_load_const_ref(list,OS_ADDR,0,href);
  991. end;
  992. hp:=hp^.next;
  993. end;
  994. end;
  995. procedure finalizetempvariables(list:taasmoutput);
  996. var
  997. hp : ptemprecord;
  998. href : treference;
  999. begin
  1000. hp:=tg.templist;
  1001. while assigned(hp) do
  1002. begin
  1003. case hp^.temptype of
  1004. tt_ansistring,
  1005. tt_freeansistring :
  1006. begin
  1007. reference_reset_base(href,procinfo.framepointer,hp^.pos);
  1008. cg.a_paramaddr_ref(list,href,paramanager.getintparaloc(1));
  1009. cg.a_call_name(list,'FPC_ANSISTR_DECR_REF');
  1010. end;
  1011. tt_widestring,
  1012. tt_freewidestring :
  1013. begin
  1014. reference_reset_base(href,procinfo.framepointer,hp^.pos);
  1015. cg.a_paramaddr_ref(list,href,paramanager.getintparaloc(2));
  1016. cg.a_call_name(list,'FPC_WIDESTR_DECR_REF');
  1017. end;
  1018. tt_interfacecom :
  1019. begin
  1020. reference_reset_base(href,procinfo.framepointer,hp^.pos);
  1021. cg.a_paramaddr_ref(list,href,paramanager.getintparaloc(2));
  1022. cg.a_call_name(list,'FPC_INTF_DECR_REF');
  1023. end;
  1024. end;
  1025. hp:=hp^.next;
  1026. end;
  1027. end;
  1028. procedure handle_return_value(list:TAAsmoutput; inlined : boolean;var uses_acc,uses_acchi,uses_fpu : boolean);
  1029. var
  1030. href : treference;
  1031. hreg : tregister;
  1032. cgsize : TCGSize;
  1033. begin
  1034. if not is_void(aktprocdef.rettype.def) then
  1035. begin
  1036. if (tfuncretsym(aktprocdef.funcretsym).funcretstate<>vs_assigned) and
  1037. (not inlined) then
  1038. CGMessage(sym_w_function_result_not_set);
  1039. reference_reset_base(href,procinfo.framepointer,procinfo.return_offset);
  1040. cgsize:=def_cgsize(aktprocdef.rettype.def);
  1041. case aktprocdef.rettype.def.deftype of
  1042. orddef,
  1043. enumdef :
  1044. begin
  1045. uses_acc:=true;
  1046. cg.a_reg_alloc(list,accumulator);
  1047. {$ifndef cpu64bit}
  1048. if cgsize in [OS_64,OS_S64] then
  1049. begin
  1050. uses_acchi:=true;
  1051. cg.a_reg_alloc(list,accumulatorhigh);
  1052. cg64.a_load64_ref_reg(list,href,joinreg64(accumulator,accumulatorhigh));
  1053. end
  1054. else
  1055. {$endif cpu64bit}
  1056. begin
  1057. hreg:=rg.makeregsize(accumulator,cgsize);
  1058. cg.a_load_ref_reg(list,cgsize,href,hreg);
  1059. end;
  1060. end;
  1061. floatdef :
  1062. begin
  1063. uses_fpu := true;
  1064. cg.a_loadfpu_ref_reg(list,cgsize,href,FPU_RESULT_REG);
  1065. end;
  1066. else
  1067. begin
  1068. if paramanager.ret_in_acc(aktprocdef.rettype.def) then
  1069. begin
  1070. uses_acc:=true;
  1071. cg.a_reg_alloc(list,accumulator);
  1072. cg.a_load_ref_reg(list,cgsize,href,accumulator);
  1073. end
  1074. end;
  1075. end;
  1076. end;
  1077. end;
  1078. procedure handle_fast_exit_return_value(list:TAAsmoutput);
  1079. var
  1080. href : treference;
  1081. hreg : tregister;
  1082. cgsize : TCGSize;
  1083. begin
  1084. if not is_void(aktprocdef.rettype.def) then
  1085. begin
  1086. reference_reset_base(href,procinfo.framepointer,procinfo.return_offset);
  1087. cgsize:=def_cgsize(aktprocdef.rettype.def);
  1088. case aktprocdef.rettype.def.deftype of
  1089. orddef,
  1090. enumdef :
  1091. begin
  1092. {$ifndef cpu64bit}
  1093. if cgsize in [OS_64,OS_S64] then
  1094. cg64.a_load64_reg_ref(list,joinreg64(accumulator,accumulatorhigh),href)
  1095. else
  1096. {$endif cpu64bit}
  1097. begin
  1098. hreg:=rg.makeregsize(accumulator,cgsize);
  1099. cg.a_load_reg_ref(list,cgsize,hreg,href);
  1100. end;
  1101. end;
  1102. floatdef :
  1103. begin
  1104. cg.a_loadfpu_reg_ref(list,cgsize,FPU_RESULT_REG,href);
  1105. end;
  1106. else
  1107. begin
  1108. if paramanager.ret_in_acc(aktprocdef.rettype.def) then
  1109. cg.a_load_reg_ref(list,cgsize,accumulator,href);
  1110. end;
  1111. end;
  1112. end;
  1113. end;
  1114. procedure genentrycode(list : TAAsmoutput;
  1115. make_global:boolean;
  1116. stackframe:longint;
  1117. var parasize:longint;var nostackframe:boolean;
  1118. inlined : boolean);
  1119. var
  1120. hs : string;
  1121. href : treference;
  1122. p : tsymtable;
  1123. stackalloclist : taasmoutput;
  1124. hp : tparaitem;
  1125. paraloc : tparalocation;
  1126. begin
  1127. if not inlined then
  1128. stackalloclist:=taasmoutput.Create;
  1129. { the actual stack allocation code, symbol entry point and
  1130. gdb stabs information is generated AFTER the rest of this
  1131. code, since temp. allocation might occur before - carl
  1132. }
  1133. if (cs_profile in aktmoduleswitches) and
  1134. not(po_assembler in aktprocdef.procoptions) and not(inlined) then
  1135. cg.g_profilecode(list);
  1136. { for the save all registers we can simply use a pusha,popa which
  1137. push edi,esi,ebp,esp(ignored),ebx,edx,ecx,eax }
  1138. if (po_saveregisters in aktprocdef.procoptions) then
  1139. cg.g_save_all_registers(list)
  1140. else
  1141. { should we save edi,esi,ebx like C ? }
  1142. if (po_savestdregs in aktprocdef.procoptions) then
  1143. cg.g_save_standard_registers(list,aktprocdef.usedregisters);
  1144. { a constructor needs a help procedure }
  1145. if (aktprocdef.proctypeoption=potype_constructor) then
  1146. cg.g_call_constructor_helper(list);
  1147. { don't load ESI, does the caller }
  1148. { we must do it for local function }
  1149. { that can be called from a foreach_static }
  1150. { of another object than self !! PM }
  1151. if assigned(procinfo._class) and { !!!!! shouldn't we load ESI always? }
  1152. (lexlevel>normal_function_level) then
  1153. cg.g_maybe_loadself(list);
  1154. { When message method contains self as a parameter,
  1155. we must load it into ESI }
  1156. If (po_containsself in aktprocdef.procoptions) then
  1157. begin
  1158. list.concat(tai_regalloc.Alloc(self_pointer_reg));
  1159. reference_reset_base(href,procinfo.framepointer,procinfo.selfpointer_offset);
  1160. cg.a_load_ref_reg(list,OS_ADDR,href,self_pointer_reg);
  1161. end;
  1162. if not is_void(aktprocdef.rettype.def) then
  1163. begin
  1164. { for now the pointer to the result can't be a register }
  1165. if not(paramanager.ret_in_reg(aktprocdef.rettype.def)) then
  1166. begin
  1167. paraloc:=paramanager.getfuncretparaloc(aktprocdef);
  1168. reference_reset_base(href,procinfo.framepointer,procinfo.return_offset);
  1169. case paraloc.loc of
  1170. LOC_CREGISTER,
  1171. LOC_REGISTER:
  1172. if not(paraloc.size in [OS_64,OS_S64]) then
  1173. cg.a_load_reg_ref(list,paraloc.size,paraloc.register,href)
  1174. else
  1175. cg64.a_load64_reg_ref(list,paraloc.register64,href);
  1176. LOC_CFPUREGISTER,
  1177. LOC_FPUREGISTER:
  1178. cg.a_load_reg_ref(list,paraloc.size,paraloc.register,href);
  1179. LOC_CMMREGISTER,
  1180. LOC_MMREGISTER:
  1181. cg.a_loadmm_reg_ref(list,paraloc.register,href);
  1182. end;
  1183. end;
  1184. { initialize return value }
  1185. if (aktprocdef.rettype.def.needs_inittable) then
  1186. begin
  1187. procinfo.flags:=procinfo.flags or pi_needs_implicit_finally;
  1188. reference_reset_base(href,procinfo.framepointer,procinfo.return_offset);
  1189. cg.g_initialize(list,aktprocdef.rettype.def,href,paramanager.ret_in_param(aktprocdef.rettype.def));
  1190. end;
  1191. end;
  1192. { initialisize local data like ansistrings }
  1193. case aktprocdef.proctypeoption of
  1194. potype_unitinit:
  1195. begin
  1196. { using current_module.globalsymtable is hopefully }
  1197. { more robust than symtablestack and symtablestack.next }
  1198. tsymtable(current_module.globalsymtable).foreach_static({$ifndef TP}@{$endif}initialize_data,list);
  1199. tsymtable(current_module.localsymtable).foreach_static({$ifndef TP}@{$endif}initialize_data,list);
  1200. end;
  1201. { units have seperate code for initilization and finalization }
  1202. potype_unitfinalize: ;
  1203. else
  1204. aktprocdef.localst.foreach_static({$ifndef TP}@{$endif}initialize_data,list);
  1205. end;
  1206. { initialisizes temp. ansi/wide string data }
  1207. inittempvariables(list);
  1208. { generate copies of call by value parameters }
  1209. if not(po_assembler in aktprocdef.procoptions) and
  1210. not(aktprocdef.proccalloption in [pocall_cdecl,pocall_cppdecl,pocall_palmossyscall,pocall_system]) then
  1211. aktprocdef.parast.foreach_static({$ifndef TP}@{$endif}copyvalueparas,list);
  1212. if assigned(aktprocdef.parast) then
  1213. begin
  1214. aktprocdef.parast.foreach_static({$ifndef TP}@{$endif}init_paras,list);
  1215. { move register parameters which aren't regable into memory }
  1216. { we do this after init_paras because it saves some code in init_paras if parameters are in register }
  1217. { instead in memory }
  1218. hp:=tparaitem(procinfo.procdef.para.first);
  1219. while assigned(hp) do
  1220. begin
  1221. if (tvarsym(hp.parasym).reg<>R_NO) then
  1222. case hp.paraloc.loc of
  1223. LOC_CREGISTER,
  1224. LOC_REGISTER:
  1225. // if not(hp.paraloc.size in [OS_S64,OS_64]) then
  1226. cg.a_load_reg_reg(list,hp.paraloc.size,OS_32,hp.paraloc.register,tvarsym(hp.parasym).reg);
  1227. // else
  1228. // cg64.a_load64_reg_reg(list,hp.paraloc.register64,tvarsym(hp.parasym).reg);
  1229. LOC_CFPUREGISTER,
  1230. LOC_FPUREGISTER:
  1231. cg.a_loadfpu_reg_reg(list,hp.paraloc.register,tvarsym(hp.parasym).reg);
  1232. end
  1233. else if (hp.paraloc.loc in [LOC_REGISTER,LOC_FPUREGISTER,LOC_MMREGISTER,
  1234. LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMREGISTER]) and
  1235. (tvarsym(hp.parasym).reg=R_NO) then
  1236. begin
  1237. reference_reset_base(href,procinfo.framepointer,tvarsym(hp.parasym).address+
  1238. tvarsym(hp.parasym).owner.address_fixup);
  1239. case hp.paraloc.loc of
  1240. LOC_CREGISTER,
  1241. LOC_REGISTER:
  1242. if not(hp.paraloc.size in [OS_S64,OS_64]) then
  1243. cg.a_load_reg_ref(list,hp.paraloc.size,hp.paraloc.register,href)
  1244. else
  1245. cg64.a_load64_reg_ref(list,hp.paraloc.register64,href);
  1246. LOC_FPUREGISTER,
  1247. LOC_CFPUREGISTER:
  1248. cg.a_loadfpu_reg_ref(list,hp.paraloc.size,hp.paraloc.register,href);
  1249. else
  1250. internalerror(2002081302);
  1251. end;
  1252. end;
  1253. hp:=tparaitem(hp.next);
  1254. end;
  1255. end;
  1256. if (not inlined) then
  1257. begin
  1258. { call startup helpers from main program }
  1259. if (aktprocdef.proctypeoption=potype_proginit) then
  1260. begin
  1261. { initialize profiling for win32 }
  1262. if (target_info.system in [system_i386_win32,system_i386_wdosx]) and
  1263. (cs_profile in aktmoduleswitches) then
  1264. cg.a_call_name(list,'__monstartup');
  1265. { add local threadvars in units (only if needed because not all platforms
  1266. have threadvar support) }
  1267. if have_local_threadvars then
  1268. cg.a_call_name(list,'FPC_INITIALIZELOCALTHREADVARS');
  1269. { add global threadvars }
  1270. p:=symtablestack;
  1271. while assigned(p) do
  1272. begin
  1273. p.foreach_static({$ifndef TP}@{$endif}initialize_threadvar,list);
  1274. p:=p.next;
  1275. end;
  1276. { initialize units }
  1277. cg.a_call_name(list,'FPC_INITIALIZEUNITS');
  1278. end;
  1279. { do we need an exception frame because of ansi/widestrings/interfaces ? }
  1280. if ((procinfo.flags and pi_needs_implicit_finally)<>0) and
  1281. { but it's useless in init/final code of units }
  1282. not(aktprocdef.proctypeoption in [potype_unitfinalize,potype_unitinit]) then
  1283. begin
  1284. include(rg.usedinproc,accumulator);
  1285. tg.GetTemp(list,JMP_BUF_SIZE,tt_noreuse,procinfo.exception_jmp_ref);
  1286. tg.GetTemp(list,12,tt_noreuse,procinfo.exception_env_ref);
  1287. tg.GetTemp(list,sizeof(aword),tt_noreuse,procinfo.exception_result_ref);
  1288. new_exception(list,procinfo.exception_jmp_ref,
  1289. procinfo.exception_env_ref,
  1290. procinfo.exception_result_ref,1,aktexitlabel);
  1291. { probably we've to reload self here }
  1292. cg.g_maybe_loadself(list);
  1293. end;
  1294. {$ifdef GDB}
  1295. if (cs_debuginfo in aktmoduleswitches) then
  1296. list.concat(Tai_force_line.Create);
  1297. {$endif GDB}
  1298. end;
  1299. if inlined then
  1300. load_regvars(list,nil);
  1301. {************************* Stack allocation **************************}
  1302. { and symbol entry point as well as debug information }
  1303. { will be inserted in front of the rest of this list. }
  1304. { Insert alignment and assembler names }
  1305. if not inlined then
  1306. begin
  1307. { Align, gprof uses 16 byte granularity }
  1308. if (cs_profile in aktmoduleswitches) then
  1309. stackalloclist.concat(Tai_align.Create_op(16,$90))
  1310. else
  1311. stackalloclist.concat(Tai_align.Create(aktalignment.procalign));
  1312. if (cs_profile in aktmoduleswitches) or
  1313. (aktprocdef.owner.symtabletype=globalsymtable) or
  1314. (assigned(procinfo._class) and (procinfo._class.owner.symtabletype=globalsymtable)) then
  1315. make_global:=true;
  1316. if make_global or ((procinfo.flags and pi_is_global) <> 0) then
  1317. aktprocsym.is_global := True;
  1318. {$ifdef GDB}
  1319. if (cs_debuginfo in aktmoduleswitches) then
  1320. begin
  1321. aktprocdef.concatstabto(stackalloclist);
  1322. aktprocsym.isstabwritten:=true;
  1323. end;
  1324. {$endif GDB}
  1325. repeat
  1326. hs:=aktprocdef.aliasnames.getfirst;
  1327. if hs='' then
  1328. break;
  1329. {$ifdef GDB}
  1330. if (cs_debuginfo in aktmoduleswitches) and
  1331. target_info.use_function_relative_addresses then
  1332. stackalloclist.concat(Tai_stab_function_name.Create(strpnew(hs)));
  1333. {$endif GDB}
  1334. if make_global then
  1335. stackalloclist.concat(Tai_symbol.Createname_global(hs,0))
  1336. else
  1337. stackalloclist.concat(Tai_symbol.Createname(hs,0));
  1338. until false;
  1339. stackframe:=stackframe+tg.gettempsize;
  1340. {$ifndef powerpc}
  1341. { at least for the ppc this applies always, so this code isn't usable (FK) }
  1342. { omit stack frame ? }
  1343. if (procinfo.framepointer=STACK_POINTER_REG) then
  1344. begin
  1345. CGMessage(cg_d_stackframe_omited);
  1346. nostackframe:=true;
  1347. if (aktprocdef.proctypeoption in [potype_unitinit,potype_proginit,potype_unitfinalize]) then
  1348. parasize:=0
  1349. else
  1350. parasize:=aktprocdef.parast.datasize+procinfo.para_offset-4;
  1351. if stackframe<>0 then
  1352. cg.a_op_const_reg(stackalloclist,OP_SUB,stackframe,procinfo.framepointer);
  1353. end
  1354. else
  1355. {$endif powerpc}
  1356. begin
  1357. nostackframe:=false;
  1358. if (aktprocdef.proctypeoption in [potype_unitinit,potype_proginit,potype_unitfinalize]) then
  1359. parasize:=0
  1360. else
  1361. parasize:=aktprocdef.parast.datasize+procinfo.para_offset-target_info.first_parm_offset;
  1362. if (po_interrupt in aktprocdef.procoptions) then
  1363. cg.g_interrupt_stackframe_entry(stackalloclist);
  1364. cg.g_stackframe_entry(stackalloclist,stackframe);
  1365. { never call stack checking before the standard system unit
  1366. has not been initialized
  1367. }
  1368. if (cs_check_stack in aktlocalswitches) and (aktprocdef.proctypeoption<>potype_proginit) then
  1369. cg.g_stackcheck(stackalloclist,stackframe);
  1370. end;
  1371. list.insertlist(stackalloclist);
  1372. stackalloclist.free;
  1373. end;
  1374. {************************* End Stack allocation **************************}
  1375. end;
  1376. procedure genexitcode(list : TAAsmoutput;parasize:longint;nostackframe,inlined:boolean);
  1377. var
  1378. {$ifdef GDB}
  1379. stabsendlabel : tasmlabel;
  1380. mangled_length : longint;
  1381. p : pchar;
  1382. st : string[2];
  1383. {$endif GDB}
  1384. okexitlabel,
  1385. noreraiselabel,nodestroycall : tasmlabel;
  1386. tmpreg : tregister;
  1387. href : treference;
  1388. usesacc,
  1389. usesacchi,
  1390. usesself,usesfpu : boolean;
  1391. pd : tprocdef;
  1392. begin
  1393. if aktexit2label.is_used and
  1394. ((procinfo.flags and (pi_needs_implicit_finally or pi_uses_exceptions)) <> 0) then
  1395. begin
  1396. cg.a_jmp_always(list,aktexitlabel);
  1397. cg.a_label(list,aktexit2label);
  1398. handle_fast_exit_return_value(list);
  1399. end;
  1400. if aktexitlabel.is_used then
  1401. list.concat(Tai_label.Create(aktexitlabel));
  1402. cleanup_regvars(list);
  1403. { call the destructor help procedure }
  1404. if (aktprocdef.proctypeoption=potype_destructor) and
  1405. assigned(procinfo._class) then
  1406. cg.g_call_destructor_helper(list);
  1407. { finalize temporary data }
  1408. finalizetempvariables(list);
  1409. { finalize local data like ansistrings}
  1410. case aktprocdef.proctypeoption of
  1411. potype_unitfinalize:
  1412. begin
  1413. { using current_module.globalsymtable is hopefully }
  1414. { more robust than symtablestack and symtablestack.next }
  1415. tsymtable(current_module.globalsymtable).foreach_static({$ifndef TP}@{$endif}finalize_data,list);
  1416. tsymtable(current_module.localsymtable).foreach_static({$ifndef TP}@{$endif}finalize_data,list);
  1417. end;
  1418. { units have seperate code for initialization and finalization }
  1419. potype_unitinit: ;
  1420. else
  1421. aktprocdef.localst.foreach_static({$ifndef TP}@{$endif}finalize_data,list);
  1422. end;
  1423. { finalize paras data }
  1424. if assigned(aktprocdef.parast) then
  1425. aktprocdef.parast.foreach_static({$ifndef TP}@{$endif}final_paras,list);
  1426. { do we need to handle exceptions because of ansi/widestrings ? }
  1427. if not inlined and
  1428. ((procinfo.flags and pi_needs_implicit_finally)<>0) and
  1429. { but it's useless in init/final code of units }
  1430. not(aktprocdef.proctypeoption in [potype_unitfinalize,potype_unitinit]) then
  1431. begin
  1432. { the exception helper routines modify all registers }
  1433. aktprocdef.usedregisters:=all_registers;
  1434. objectlibrary.getlabel(noreraiselabel);
  1435. free_exception(list,
  1436. procinfo.exception_jmp_ref,
  1437. procinfo.exception_env_ref,
  1438. procinfo.exception_result_ref,0,
  1439. noreraiselabel,false);
  1440. tg.Ungettemp(list,procinfo.exception_jmp_ref);
  1441. tg.Ungettemp(list,procinfo.exception_env_ref);
  1442. tg.Ungettemp(list,procinfo.exception_result_ref);
  1443. if (aktprocdef.proctypeoption=potype_constructor) then
  1444. begin
  1445. if assigned(procinfo._class) then
  1446. begin
  1447. pd:=procinfo._class.searchdestructor;
  1448. if assigned(pd) then
  1449. begin
  1450. objectlibrary.getlabel(nodestroycall);
  1451. reference_reset_base(href,procinfo.framepointer,procinfo.selfpointer_offset);
  1452. cg.a_cmp_const_ref_label(list,OS_ADDR,OC_EQ,0,href,nodestroycall);
  1453. if is_class(procinfo._class) then
  1454. begin
  1455. cg.a_param_const(list,OS_INT,1,paramanager.getintparaloc(2));
  1456. cg.a_param_reg(list,OS_ADDR,self_pointer_reg,paramanager.getintparaloc(1));
  1457. end
  1458. else if is_object(procinfo._class) then
  1459. begin
  1460. cg.a_param_reg(list,OS_ADDR,self_pointer_reg,paramanager.getintparaloc(2));
  1461. reference_reset_symbol(href,objectlibrary.newasmsymbol(procinfo._class.vmt_mangledname),0);
  1462. cg.a_paramaddr_ref(list,href,paramanager.getintparaloc(1));
  1463. end
  1464. else
  1465. Internalerror(200006164);
  1466. if (po_virtualmethod in pd.procoptions) then
  1467. begin
  1468. reference_reset_base(href,self_pointer_reg,0);
  1469. tmpreg:=cg.get_scratch_reg_address(list);
  1470. cg.a_load_ref_reg(list,OS_ADDR,href,tmpreg);
  1471. reference_reset_base(href,tmpreg,procinfo._class.vmtmethodoffset(pd.extnumber));
  1472. cg.free_scratch_reg(list,tmpreg);
  1473. cg.a_call_ref(list,href);
  1474. end
  1475. else
  1476. cg.a_call_name(list,pd.mangledname);
  1477. { not necessary because the result is never assigned in the
  1478. case of an exception (FK) }
  1479. cg.a_label(list,nodestroycall);
  1480. end;
  1481. end
  1482. end
  1483. else
  1484. begin
  1485. { no constructor }
  1486. { must be the return value finalized before reraising the exception? }
  1487. if (not is_void(aktprocdef.rettype.def)) and
  1488. (aktprocdef.rettype.def.needs_inittable) and
  1489. ((aktprocdef.rettype.def.deftype<>objectdef) or
  1490. not is_class(aktprocdef.rettype.def)) then
  1491. begin
  1492. reference_reset_base(href,procinfo.framepointer,procinfo.return_offset);
  1493. cg.g_finalize(list,aktprocdef.rettype.def,href,paramanager.ret_in_param(aktprocdef.rettype.def));
  1494. end;
  1495. end;
  1496. cg.a_call_name(list,'FPC_RERAISE');
  1497. cg.a_label(list,noreraiselabel);
  1498. end;
  1499. { call __EXIT for main program }
  1500. if (not DLLsource) and
  1501. (not inlined) and
  1502. (aktprocdef.proctypeoption=potype_proginit) then
  1503. cg.a_call_name(list,'FPC_DO_EXIT');
  1504. { handle return value, this is not done for assembler routines when
  1505. they didn't reference the result variable }
  1506. usesacc:=false;
  1507. usesacchi:=false;
  1508. usesself:=false;
  1509. if not(po_assembler in aktprocdef.procoptions) or
  1510. (assigned(aktprocdef.funcretsym) and
  1511. (tfuncretsym(aktprocdef.funcretsym).refcount>1)) then
  1512. begin
  1513. if (aktprocdef.proctypeoption<>potype_constructor) then
  1514. handle_return_value(list,inlined,usesacc,usesacchi,usesfpu)
  1515. else
  1516. begin
  1517. { successful constructor deletes the zero flag }
  1518. { and returns self in eax }
  1519. { eax must be set to zero if the allocation failed !!! }
  1520. objectlibrary.getlabel(okexitlabel);
  1521. cg.a_jmp_always(list,okexitlabel);
  1522. cg.a_label(list,faillabel);
  1523. cg.g_call_fail_helper(list);
  1524. cg.a_label(list,okexitlabel);
  1525. { for classes this is done after the call to }
  1526. { AfterConstruction }
  1527. if is_object(procinfo._class) then
  1528. begin
  1529. cg.a_reg_alloc(list,accumulator);
  1530. cg.a_load_reg_reg(list,OS_ADDR,OS_ADDR,self_pointer_reg,accumulator);
  1531. usesacc:=true;
  1532. end;
  1533. {$ifdef i386}
  1534. list.concat(taicpu.op_reg_reg(A_TEST,S_L,R_ESI,R_ESI));
  1535. {$else}
  1536. {$warning constructor returns in flags for i386}
  1537. {$endif i386}
  1538. usesself:=true;
  1539. end;
  1540. end;
  1541. if aktexit2label.is_used and not aktexit2label.is_set then
  1542. cg.a_label(list,aktexit2label);
  1543. {$ifdef GDB}
  1544. if ((cs_debuginfo in aktmoduleswitches) and not inlined) then
  1545. begin
  1546. objectlibrary.getlabel(stabsendlabel);
  1547. cg.a_label(list,stabsendlabel);
  1548. end;
  1549. {$endif GDB}
  1550. { remove copies of call by value parameters when there are also
  1551. registers saved on the stack }
  1552. if ((po_saveregisters in aktprocdef.procoptions) or
  1553. (po_savestdregs in aktprocdef.procoptions)) and
  1554. not(po_assembler in aktprocdef.procoptions) and
  1555. not(aktprocdef.proccalloption in [pocall_cdecl,pocall_cppdecl,pocall_palmossyscall,pocall_system]) then
  1556. aktprocdef.parast.foreach_static({$ifndef TP}@{$endif}removevalueparas,list);
  1557. { for the save all registers we can simply use a pusha,popa which
  1558. push edi,esi,ebp,esp(ignored),ebx,edx,ecx,eax }
  1559. if (po_saveregisters in aktprocdef.procoptions) then
  1560. cg.g_restore_all_registers(list,usesself,usesacc,usesacchi)
  1561. else
  1562. { should we restore edi ? }
  1563. if (po_savestdregs in aktprocdef.procoptions) then
  1564. cg.g_restore_standard_registers(list,aktprocdef.usedregisters);
  1565. { remove stackframe }
  1566. if not inlined then
  1567. begin
  1568. if (not nostackframe) then
  1569. cg.g_restore_frame_pointer(list)
  1570. else
  1571. if (tg.gettempsize<>0) then
  1572. cg.a_op_const_reg(list,OP_ADD,tg.gettempsize,STACK_POINTER_REG);
  1573. end;
  1574. { at last, the return is generated }
  1575. if not inlined then
  1576. begin
  1577. if (po_interrupt in aktprocdef.procoptions) then
  1578. cg.g_interrupt_stackframe_exit(list,usesself,usesacc,usesacchi)
  1579. else
  1580. cg.g_return_from_proc(list,parasize);
  1581. end;
  1582. if not inlined then
  1583. list.concat(Tai_symbol_end.Createname(aktprocdef.mangledname));
  1584. {$ifdef GDB}
  1585. if (cs_debuginfo in aktmoduleswitches) and not inlined then
  1586. begin
  1587. if assigned(procinfo._class) then
  1588. if (not assigned(procinfo.parent) or
  1589. not assigned(procinfo.parent._class)) then
  1590. begin
  1591. if (po_classmethod in aktprocdef.procoptions) or
  1592. ((po_virtualmethod in aktprocdef.procoptions) and
  1593. (potype_constructor=aktprocdef.proctypeoption)) or
  1594. (po_staticmethod in aktprocdef.procoptions) then
  1595. begin
  1596. list.concat(Tai_stabs.Create(strpnew(
  1597. '"pvmt:p'+tstoreddef(pvmttype.def).numberstring+'",'+
  1598. tostr(N_tsym)+',0,0,'+tostr(procinfo.selfpointer_offset))));
  1599. end
  1600. else
  1601. begin
  1602. if not(is_class(procinfo._class)) then
  1603. st:='v'
  1604. else
  1605. st:='p';
  1606. list.concat(Tai_stabs.Create(strpnew(
  1607. '"$t:'+st+procinfo._class.numberstring+'",'+
  1608. tostr(N_tsym)+',0,0,'+tostr(procinfo.selfpointer_offset))));
  1609. end;
  1610. end
  1611. else
  1612. begin
  1613. if not is_class(procinfo._class) then
  1614. st:='*'
  1615. else
  1616. st:='';
  1617. list.concat(Tai_stabs.Create(strpnew(
  1618. '"$t:r'+st+procinfo._class.numberstring+'",'+
  1619. tostr(N_RSYM)+',0,0,'+tostr(stab_regindex[SELF_POINTER_REG]))));
  1620. end;
  1621. { define calling EBP as pseudo local var PM }
  1622. { this enables test if the function is a local one !! }
  1623. if assigned(procinfo.parent) and (lexlevel>normal_function_level) then
  1624. list.concat(Tai_stabs.Create(strpnew(
  1625. '"parent_ebp:'+tstoreddef(voidpointertype.def).numberstring+'",'+
  1626. tostr(N_LSYM)+',0,0,'+tostr(procinfo.framepointer_offset))));
  1627. if (not is_void(aktprocdef.rettype.def)) then
  1628. begin
  1629. if paramanager.ret_in_param(aktprocdef.rettype.def) then
  1630. list.concat(Tai_stabs.Create(strpnew(
  1631. '"'+aktprocsym.name+':X*'+tstoreddef(aktprocdef.rettype.def).numberstring+'",'+
  1632. tostr(N_tsym)+',0,0,'+tostr(procinfo.return_offset))))
  1633. else
  1634. list.concat(Tai_stabs.Create(strpnew(
  1635. '"'+aktprocsym.name+':X'+tstoreddef(aktprocdef.rettype.def).numberstring+'",'+
  1636. tostr(N_tsym)+',0,0,'+tostr(procinfo.return_offset))));
  1637. if (m_result in aktmodeswitches) then
  1638. if paramanager.ret_in_param(aktprocdef.rettype.def) then
  1639. list.concat(Tai_stabs.Create(strpnew(
  1640. '"RESULT:X*'+tstoreddef(aktprocdef.rettype.def).numberstring+'",'+
  1641. tostr(N_tsym)+',0,0,'+tostr(procinfo.return_offset))))
  1642. else
  1643. list.concat(Tai_stabs.Create(strpnew(
  1644. '"RESULT:X'+tstoreddef(aktprocdef.rettype.def).numberstring+'",'+
  1645. tostr(N_tsym)+',0,0,'+tostr(procinfo.return_offset))));
  1646. end;
  1647. mangled_length:=length(aktprocdef.mangledname);
  1648. getmem(p,2*mangled_length+50);
  1649. strpcopy(p,'192,0,0,');
  1650. strpcopy(strend(p),aktprocdef.mangledname);
  1651. if (target_info.use_function_relative_addresses) then
  1652. begin
  1653. strpcopy(strend(p),'-');
  1654. strpcopy(strend(p),aktprocdef.mangledname);
  1655. end;
  1656. list.concat(Tai_stabn.Create(strnew(p)));
  1657. {List.concat(Tai_stabn.Create(strpnew('192,0,0,'
  1658. +aktprocdef.mangledname))));
  1659. p[0]:='2';p[1]:='2';p[2]:='4';
  1660. strpcopy(strend(p),'_end');}
  1661. strpcopy(p,'224,0,0,'+stabsendlabel.name);
  1662. if (target_info.use_function_relative_addresses) then
  1663. begin
  1664. strpcopy(strend(p),'-');
  1665. strpcopy(strend(p),aktprocdef.mangledname);
  1666. end;
  1667. list.concatlist(withdebuglist);
  1668. list.concat(Tai_stabn.Create(strnew(p)));
  1669. { strpnew('224,0,0,'
  1670. +aktprocdef.mangledname+'_end'))));}
  1671. freemem(p,2*mangled_length+50);
  1672. end;
  1673. {$endif GDB}
  1674. if inlined then
  1675. cleanup_regvars(list);
  1676. end;
  1677. procedure genimplicitunitinit(list : TAAsmoutput);
  1678. begin
  1679. {$ifdef GDB}
  1680. if (cs_debuginfo in aktmoduleswitches) and
  1681. target_info.use_function_relative_addresses then
  1682. list.concat(Tai_stab_function_name.Create(strpnew('INIT$$'+current_module.modulename^)));
  1683. {$endif GDB}
  1684. list.concat(Tai_symbol.Createname_global('INIT$$'+current_module.modulename^,0));
  1685. list.concat(Tai_symbol.Createname_global(target_info.cprefix+current_module.modulename^+'_init',0));
  1686. { using current_module.globalsymtable is hopefully }
  1687. { more robust than symtablestack and symtablestack.next }
  1688. tsymtable(current_module.globalsymtable).foreach_static({$ifdef FPCPROCVAR}@{$endif}finalize_data,list);
  1689. tsymtable(current_module.localsymtable).foreach_static({$ifdef FPCPROCVAR}@{$endif}finalize_data,list);
  1690. cg.g_return_from_proc(list,0);
  1691. end;
  1692. procedure genimplicitunitfinal(list : TAAsmoutput);
  1693. begin
  1694. {$ifdef GDB}
  1695. if (cs_debuginfo in aktmoduleswitches) and
  1696. target_info.use_function_relative_addresses then
  1697. list.concat(Tai_stab_function_name.Create(strpnew('FINALIZE$$'+current_module.modulename^)));
  1698. {$endif GDB}
  1699. list.concat(Tai_symbol.Createname_global('FINALIZE$$'+current_module.modulename^,0));
  1700. list.concat(Tai_symbol.Createname_global(target_info.cprefix+current_module.modulename^+'_finalize',0));
  1701. { using current_module.globalsymtable is hopefully }
  1702. { more robust than symtablestack and symtablestack.next }
  1703. tsymtable(current_module.globalsymtable).foreach_static({$ifdef FPCPROCVAR}@{$endif}finalize_data,list);
  1704. tsymtable(current_module.localsymtable).foreach_static({$ifdef FPCPROCVAR}@{$endif}finalize_data,list);
  1705. cg.g_return_from_proc(list,0);
  1706. end;
  1707. end.
  1708. {
  1709. $Log$
  1710. Revision 1.53 2002-10-05 15:18:42 carl
  1711. * fix heap leaks
  1712. Revision 1.52 2002/09/30 07:00:46 florian
  1713. * fixes to common code to get the alpha compiler compiled applied
  1714. Revision 1.51 2002/09/22 14:02:35 carl
  1715. * stack checking cannot be called before system unit is initialized
  1716. * MC68020 define
  1717. Revision 1.50 2002/09/17 18:54:03 jonas
  1718. * a_load_reg_reg() now has two size parameters: source and dest. This
  1719. allows some optimizations on architectures that don't encode the
  1720. register size in the register name.
  1721. Revision 1.49 2002/09/10 21:48:30 florian
  1722. * improved handling of procedures with register calling conventions
  1723. Revision 1.48 2002/09/07 15:25:03 peter
  1724. * old logs removed and tabs fixed
  1725. Revision 1.47 2002/09/02 18:44:48 peter
  1726. * fixed (not) pushing of empty parameters
  1727. * fixed implicit initialization/finalization generation
  1728. * fixed/optimized local copy of value arguments init/final
  1729. Revision 1.46 2002/09/01 19:27:34 peter
  1730. * use index register when available for generating a reference with
  1731. only a signle register. Using the base register could possibly
  1732. destroy the framepointer
  1733. Revision 1.45 2002/09/01 18:50:20 peter
  1734. * fixed maybe_save that did not support a reference with only
  1735. a index register. It now also updates the location with the new
  1736. base register only
  1737. Revision 1.44 2002/09/01 14:42:41 peter
  1738. * removevaluepara added to fix the stackpointer so restoring of
  1739. saved registers works
  1740. Revision 1.43 2002/08/25 19:25:18 peter
  1741. * sym.insert_in_data removed
  1742. * symtable.insertvardata/insertconstdata added
  1743. * removed insert_in_data call from symtable.insert, it needs to be
  1744. called separatly. This allows to deref the address calculation
  1745. * procedures now calculate the parast addresses after the procedure
  1746. directives are parsed. This fixes the cdecl parast problem
  1747. * push_addr_param has an extra argument that specifies if cdecl is used
  1748. or not
  1749. Revision 1.42 2002/08/24 18:38:26 peter
  1750. * really use tt_noreuse for exception frame buffers
  1751. Revision 1.41 2002/08/23 16:14:49 peter
  1752. * tempgen cleanup
  1753. * tt_noreuse temp type added that will be used in genentrycode
  1754. Revision 1.40 2002/08/18 10:42:37 florian
  1755. * remaining assembler writer bugs fixed, the errors in the
  1756. system unit are inline assembler problems
  1757. Revision 1.39 2002/08/17 09:23:36 florian
  1758. * first part of procinfo rewrite
  1759. Revision 1.38 2002/08/16 14:24:57 carl
  1760. * issameref() to test if two references are the same (then emit no opcodes)
  1761. + ret_in_reg to replace ret_in_acc
  1762. (fix some register allocation bugs at the same time)
  1763. + save_std_register now has an extra parameter which is the
  1764. usedinproc registers
  1765. Revision 1.37 2002/08/15 15:15:55 carl
  1766. * jmpbuf size allocation for exceptions is now cpu specific (as it should)
  1767. * more generic nodes for maths
  1768. * several fixes for better m68k support
  1769. Revision 1.36 2002/08/14 19:25:09 carl
  1770. * fix Florian's last commit for m68k compilation
  1771. Revision 1.35 2002/08/13 21:40:56 florian
  1772. * more fixes for ppc calling conventions
  1773. Revision 1.34 2002/08/12 15:08:39 carl
  1774. + stab register indexes for powerpc (moved from gdb to cpubase)
  1775. + tprocessor enumeration moved to cpuinfo
  1776. + linker in target_info is now a class
  1777. * many many updates for m68k (will soon start to compile)
  1778. - removed some ifdef or correct them for correct cpu
  1779. Revision 1.33 2002/08/11 14:32:27 peter
  1780. * renamed current_library to objectlibrary
  1781. Revision 1.32 2002/08/11 13:24:12 peter
  1782. * saving of asmsymbols in ppu supported
  1783. * asmsymbollist global is removed and moved into a new class
  1784. tasmlibrarydata that will hold the info of a .a file which
  1785. corresponds with a single module. Added librarydata to tmodule
  1786. to keep the library info stored for the module. In the future the
  1787. objectfiles will also be stored to the tasmlibrarydata class
  1788. * all getlabel/newasmsymbol and friends are moved to the new class
  1789. Revision 1.31 2002/08/09 19:16:57 carl
  1790. * stack allocation is now done separately (at the end) of genentrycode
  1791. so temps. can be allocated before.
  1792. * fix generic exception handling
  1793. Revision 1.30 2002/08/06 20:55:21 florian
  1794. * first part of ppc calling conventions fix
  1795. Revision 1.29 2002/08/04 19:09:22 carl
  1796. + added generic exception support (still does not work!)
  1797. + more documentation
  1798. Revision 1.28 2002/07/29 21:23:42 florian
  1799. * more fixes for the ppc
  1800. + wrappers for the tcnvnode.first_* stuff introduced
  1801. }