ncgutil.pas 82 KB

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