ncgld.pas 65 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381
  1. {
  2. Copyright (c) 1998-2002 by Florian Klaempfl
  3. Generate assembler for nodes that handle loads and assignments which
  4. are the same for all (most) processors
  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 ncgld;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. globtype,
  23. symtype,symsym,
  24. aasmdata,
  25. node,nld,cgutils;
  26. type
  27. tcgloadnode = class(tloadnode)
  28. protected
  29. procedure generate_nested_access(vs: tsym);virtual;
  30. procedure generate_absaddr_access(vs: tabsolutevarsym); virtual;
  31. public
  32. procedure pass_generate_code;override;
  33. procedure changereflocation(const ref: treference);
  34. end;
  35. tcgassignmentnode = class(tassignmentnode)
  36. protected
  37. function maybechangetemp(list: TAsmList; var n: tnode; const newref: treference): boolean;virtual;
  38. public
  39. procedure pass_generate_code;override;
  40. end;
  41. tcgarrayconstructornode = class(tarrayconstructornode)
  42. protected
  43. procedure makearrayref(var ref: treference; eledef: tdef);virtual;
  44. procedure advancearrayoffset(var ref: treference; elesize: asizeint);virtual;
  45. public
  46. procedure pass_generate_code;override;
  47. end;
  48. tcgrttinode = class(trttinode)
  49. procedure pass_generate_code;override;
  50. end;
  51. implementation
  52. uses
  53. cutils,
  54. systems,
  55. verbose,globals,constexp,
  56. nutils,
  57. symtable,symconst,symdef,defutil,paramgr,ncon,nbas,ncgrtti,
  58. aasmbase,
  59. cgbase,pass_2,
  60. procinfo,
  61. cpubase,parabase,cpuinfo,
  62. tgobj,ncgutil,
  63. cgobj,hlcgobj,
  64. ncgbas,ncgflw,
  65. wpobase;
  66. {*****************************************************************************
  67. SSA (for memory temps) support
  68. *****************************************************************************}
  69. type
  70. preplacerefrec = ^treplacerefrec;
  71. treplacerefrec = record
  72. old, new: preference;
  73. ressym: tsym;
  74. end;
  75. function doreplaceref(var n: tnode; para: pointer): foreachnoderesult;
  76. var
  77. rr: preplacerefrec absolute para;
  78. begin
  79. result := fen_false;
  80. case n.nodetype of
  81. loadn:
  82. begin
  83. { regular variable }
  84. if (tabstractvarsym(tloadnode(n).symtableentry).varoptions * [vo_is_dll_var, vo_is_thread_var] = []) and
  85. not assigned(tloadnode(n).left) and
  86. { not function result, or no exit in function }
  87. (((tloadnode(n).symtableentry <> rr^.ressym) and
  88. not(vo_is_funcret in tabstractvarsym(tloadnode(n).symtableentry).varoptions)) or
  89. not(fc_exit in flowcontrol)) and
  90. { stored in memory... }
  91. (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.loc in [LOC_REFERENCE]) and
  92. { ... at the place we are looking for }
  93. references_equal(tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.reference,rr^.old^) and
  94. { its address cannot have escaped the current routine }
  95. not(tabstractvarsym(tloadnode(n).symtableentry).addr_taken) then
  96. begin
  97. { relocate variable }
  98. tcgloadnode(n).changereflocation(rr^.new^);
  99. result := fen_norecurse_true;
  100. end;
  101. end;
  102. temprefn:
  103. begin
  104. if (ti_valid in ttemprefnode(n).tempinfo^.flags) and
  105. { memory temp... }
  106. (ttemprefnode(n).tempinfo^.location.loc in [LOC_REFERENCE]) and
  107. { ... at the place we are looking for }
  108. references_equal(ttemprefnode(n).tempinfo^.location.reference,rr^.old^) and
  109. { its address cannot have escaped the current routine }
  110. not(ti_addr_taken in ttemprefnode(n).tempinfo^.flags) then
  111. begin
  112. { relocate the temp }
  113. tcgtemprefnode(n).changelocation(rr^.new^);
  114. result := fen_norecurse_true;
  115. end;
  116. end;
  117. { Subscriptn must be rejected, otherwise we may replace an
  118. an entire record with a temp for its first field, mantis #13948)
  119. Exception: the field's size is the same as the entire record
  120. The same goes for array indexing
  121. }
  122. subscriptn,
  123. vecn:
  124. if not(tunarynode(n).left.resultdef.typ in [recorddef,objectdef,arraydef,stringdef]) or
  125. { make sure we don't try to call resultdef.size for types that
  126. don't have a compile-time size such as open arrays }
  127. is_special_array(tunarynode(n).left.resultdef) or
  128. (tunarynode(n).left.resultdef.size<>tunarynode(n).resultdef.size) then
  129. result := fen_norecurse_false;
  130. { optimize the searching a bit }
  131. derefn,addrn,
  132. calln,inlinen,casen,
  133. addn,subn,muln,
  134. andn,orn,xorn,
  135. ltn,lten,gtn,gten,equaln,unequaln,
  136. slashn,divn,shrn,shln,notn,
  137. inn,
  138. asn,isn:
  139. result := fen_norecurse_false;
  140. end;
  141. end;
  142. function tcgassignmentnode.maybechangetemp(list: TAsmList; var n: tnode; const newref: treference): boolean;
  143. var
  144. rr: treplacerefrec;
  145. begin
  146. result := false;
  147. { only do for -O2 or higher (breaks debugging since }
  148. { variables move to different memory locations) }
  149. if not(cs_opt_level2 in current_settings.optimizerswitches) or
  150. { must be a copy to a memory location ... }
  151. (n.location.loc <> LOC_REFERENCE) or
  152. { not inside a control flow statement and no goto's in sight }
  153. ([fc_inflowcontrol,fc_gotolabel] * flowcontrol <> []) or
  154. { not for refcounted types, because those locations are }
  155. { still used later on in initialisation/finalisation code }
  156. is_managed_type(n.resultdef) or
  157. { source and destination are temps (= not global variables) }
  158. not tg.istemp(n.location.reference) or
  159. not tg.istemp(newref) or
  160. { and both point to the start of a temp, and the source is a }
  161. { non-persistent temp (otherwise we need some kind of copy- }
  162. { on-write support in case later on both are still used) }
  163. (tg.gettypeoftemp(newref) <> tt_normal) or
  164. not (tg.gettypeoftemp(n.location.reference) in [tt_normal,tt_persistent]) or
  165. { and both have the same size }
  166. (tg.sizeoftemp(current_asmdata.CurrAsmList,newref) <> tg.sizeoftemp(current_asmdata.CurrAsmList,n.location.reference)) then
  167. exit;
  168. { find the source of the old reference (loadnode or tempnode) }
  169. { and replace it with the new reference }
  170. rr.old := @n.location.reference;
  171. rr.new := @newref;
  172. rr.ressym := nil;
  173. if assigned(current_procinfo.procdef.funcretsym) and
  174. (tabstractvarsym(current_procinfo.procdef.funcretsym).refs <> 0) then
  175. if (current_procinfo.procdef.proctypeoption=potype_constructor) then
  176. rr.ressym:=tsym(current_procinfo.procdef.parast.Find('self'))
  177. else
  178. rr.ressym:=current_procinfo.procdef.funcretsym;
  179. { if source not found, don't do anything }
  180. if not foreachnodestatic(n,@doreplaceref,@rr) then
  181. exit;
  182. n.location.reference := newref;
  183. result:=true;
  184. end;
  185. {*****************************************************************************
  186. SecondLoad
  187. *****************************************************************************}
  188. procedure tcgloadnode.changereflocation(const ref: treference);
  189. var
  190. oldtemptype: ttemptype;
  191. begin
  192. if (location.loc<>LOC_REFERENCE) then
  193. internalerror(2007020812);
  194. if not tg.istemp(location.reference) then
  195. internalerror(2007020813);
  196. oldtemptype:=tg.gettypeoftemp(location.reference);
  197. if (oldtemptype = tt_persistent) then
  198. tg.ChangeTempType(current_asmdata.CurrAsmList,location.reference,tt_normal);
  199. tg.ungettemp(current_asmdata.CurrAsmList,location.reference);
  200. location.reference:=ref;
  201. tg.ChangeTempType(current_asmdata.CurrAsmList,location.reference,oldtemptype);
  202. tabstractnormalvarsym(symtableentry).localloc:=location;
  203. end;
  204. procedure tcgloadnode.generate_nested_access(vs: tsym);
  205. var
  206. { paramter declared as tsym to reduce interface unit dependencies }
  207. lvs: tabstractnormalvarsym absolute vs;
  208. begin
  209. secondpass(left);
  210. if not(left.location.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  211. internalerror(200309286);
  212. if lvs.localloc.loc<>LOC_REFERENCE then
  213. internalerror(200409241);
  214. hlcg.reference_reset_base(location.reference,left.resultdef,left.location.register,lvs.localloc.reference.offset,lvs.localloc.reference.alignment);
  215. end;
  216. procedure tcgloadnode.generate_absaddr_access(vs: tabsolutevarsym);
  217. begin
  218. location.reference.offset:=aint(vs.addroffset);
  219. end;
  220. procedure tcgloadnode.pass_generate_code;
  221. var
  222. hregister : tregister;
  223. vs : tabstractnormalvarsym;
  224. gvs : tstaticvarsym;
  225. pd : tprocdef;
  226. href : treference;
  227. newsize : tcgsize;
  228. endrelocatelab,
  229. norelocatelab : tasmlabel;
  230. paraloc1 : tcgpara;
  231. vd,
  232. pvd : tdef;
  233. begin
  234. { we don't know the size of all arrays }
  235. newsize:=def_cgsize(resultdef);
  236. { alignment is overridden per case below }
  237. location_reset_ref(location,LOC_REFERENCE,newsize,resultdef.alignment);
  238. case symtableentry.typ of
  239. absolutevarsym :
  240. begin
  241. { this is only for toasm and toaddr }
  242. case tabsolutevarsym(symtableentry).abstyp of
  243. toaddr :
  244. generate_absaddr_access(tabsolutevarsym(symtableentry));
  245. toasm :
  246. location.reference.symbol:=current_asmdata.RefAsmSymbol(tabsolutevarsym(symtableentry).mangledname);
  247. else
  248. internalerror(200310283);
  249. end;
  250. end;
  251. constsym:
  252. begin
  253. if tconstsym(symtableentry).consttyp=constresourcestring then
  254. begin
  255. location_reset_ref(location,LOC_CREFERENCE,def_cgsize(cansistringtype),cansistringtype.size);
  256. location.reference.symbol:=current_asmdata.RefAsmSymbol(make_mangledname('RESSTR',symtableentry.owner,symtableentry.name),AT_DATA);
  257. { Resourcestring layout:
  258. TResourceStringRecord = Packed Record
  259. Name,
  260. CurrentValue,
  261. DefaultValue : AnsiString;
  262. HashValue : LongWord;
  263. end;
  264. }
  265. location.reference.offset:=cansistringtype.size;
  266. end
  267. else
  268. internalerror(22798);
  269. end;
  270. staticvarsym :
  271. begin
  272. gvs:=tstaticvarsym(symtableentry);
  273. if (vo_is_dll_var in gvs.varoptions) then
  274. { DLL variable }
  275. begin
  276. hregister:=cg.getaddressregister(current_asmdata.CurrAsmList);
  277. if not(vo_is_weak_external in gvs.varoptions) then
  278. location.reference.symbol:=current_asmdata.RefAsmSymbol(tstaticvarsym(symtableentry).mangledname)
  279. else
  280. location.reference.symbol:=current_asmdata.WeakRefAsmSymbol(tstaticvarsym(symtableentry).mangledname);
  281. cg.a_load_ref_reg(current_asmdata.CurrAsmList,OS_ADDR,OS_ADDR,location.reference,hregister);
  282. reference_reset_base(location.reference,hregister,0,location.reference.alignment);
  283. end
  284. { Thread variable }
  285. else if (vo_is_thread_var in gvs.varoptions) then
  286. begin
  287. if (tf_section_threadvars in target_info.flags) then
  288. begin
  289. if target_info.system in [system_i386_win32,system_x86_64_win64] then
  290. begin
  291. paraloc1.init;
  292. pd:=search_system_proc('fpc_tls_add');
  293. paramanager.getintparaloc(pd,1,paraloc1);
  294. if not(vo_is_weak_external in gvs.varoptions) then
  295. reference_reset_symbol(href,current_asmdata.RefAsmSymbol(gvs.mangledname),0,sizeof(pint))
  296. else
  297. reference_reset_symbol(href,current_asmdata.WeakRefAsmSymbol(gvs.mangledname),0,sizeof(pint));
  298. cg.a_loadaddr_ref_cgpara(current_asmdata.CurrAsmList,href,paraloc1);
  299. paramanager.freecgpara(current_asmdata.CurrAsmList,paraloc1);
  300. paraloc1.done;
  301. cg.g_call(current_asmdata.CurrAsmList,'FPC_TLS_ADD');
  302. cg.ungetcpuregister(current_asmdata.CurrAsmList,NR_FUNCTION_RESULT_REG);
  303. hregister:=cg.getaddressregister(current_asmdata.CurrAsmList);
  304. cg.a_load_reg_reg(current_asmdata.CurrAsmList,OS_ADDR,OS_ADDR,NR_FUNCTION_RESULT_REG,hregister);
  305. location.reference.base:=hregister;
  306. end
  307. else
  308. begin
  309. if gvs.localloc.loc=LOC_INVALID then
  310. if not(vo_is_weak_external in gvs.varoptions) then
  311. reference_reset_symbol(location.reference,current_asmdata.RefAsmSymbol(gvs.mangledname),0,location.reference.alignment)
  312. else
  313. reference_reset_symbol(location.reference,current_asmdata.WeakRefAsmSymbol(gvs.mangledname),0,location.reference.alignment)
  314. else
  315. location:=gvs.localloc;
  316. {$ifdef i386}
  317. case target_info.system of
  318. system_i386_linux,system_i386_android:
  319. location.reference.segment:=NR_GS;
  320. end;
  321. {$endif i386}
  322. end;
  323. end
  324. else
  325. begin
  326. {
  327. Thread var loading is optimized to first check if
  328. a relocate function is available. When the function
  329. is available it is called to retrieve the address.
  330. Otherwise the address is loaded with the symbol
  331. The code needs to be in the order to first handle the
  332. call and then the address load to be sure that the
  333. register that is used for returning is the same (PFV)
  334. }
  335. current_asmdata.getjumplabel(norelocatelab);
  336. current_asmdata.getjumplabel(endrelocatelab);
  337. { make sure hregister can't allocate the register necessary for the parameter }
  338. pvd:=search_system_type('TRELOCATETHREADVARHANDLER').typedef;
  339. if pvd.typ<>procvardef then
  340. internalerror(2012120901);
  341. paraloc1.init;
  342. paramanager.getintparaloc(tprocvardef(pvd),1,paraloc1);
  343. hregister:=hlcg.getaddressregister(current_asmdata.CurrAsmList,pvd);
  344. reference_reset_symbol(href,current_asmdata.RefAsmSymbol('FPC_THREADVAR_RELOCATE'),0,pvd.size);
  345. hlcg.a_load_ref_reg(current_asmdata.CurrAsmList,pvd,pvd,href,hregister);
  346. hlcg.a_cmp_const_reg_label(current_asmdata.CurrAsmList,pvd,OC_EQ,0,hregister,norelocatelab);
  347. { don't save the allocated register else the result will be destroyed later }
  348. if not(vo_is_weak_external in gvs.varoptions) then
  349. reference_reset_symbol(href,current_asmdata.RefAsmSymbol(gvs.mangledname),0,sizeof(pint))
  350. else
  351. reference_reset_symbol(href,current_asmdata.WeakRefAsmSymbol(gvs.mangledname),0,sizeof(pint));
  352. cg.a_load_ref_cgpara(current_asmdata.CurrAsmList,OS_32,href,paraloc1);
  353. paramanager.freecgpara(current_asmdata.CurrAsmList,paraloc1);
  354. paraloc1.done;
  355. cg.allocallcpuregisters(current_asmdata.CurrAsmList);
  356. cg.a_call_reg(current_asmdata.CurrAsmList,hregister);
  357. cg.deallocallcpuregisters(current_asmdata.CurrAsmList);
  358. cg.getcpuregister(current_asmdata.CurrAsmList,NR_FUNCTION_RESULT_REG);
  359. cg.ungetcpuregister(current_asmdata.CurrAsmList,NR_FUNCTION_RESULT_REG);
  360. hregister:=hlcg.getaddressregister(current_asmdata.CurrAsmList,voidpointertype);
  361. cg.a_load_reg_reg(current_asmdata.CurrAsmList,OS_INT,OS_ADDR,NR_FUNCTION_RESULT_REG,hregister);
  362. cg.a_jmp_always(current_asmdata.CurrAsmList,endrelocatelab);
  363. cg.a_label(current_asmdata.CurrAsmList,norelocatelab);
  364. { no relocation needed, load the address of the variable only, the
  365. layout of a threadvar is (4 bytes pointer):
  366. 0 - Threadvar index
  367. 4 - Threadvar value in single threading }
  368. if not(vo_is_weak_external in gvs.varoptions) then
  369. reference_reset_symbol(href,current_asmdata.RefAsmSymbol(gvs.mangledname),sizeof(pint),sizeof(pint))
  370. else
  371. reference_reset_symbol(href,current_asmdata.WeakRefAsmSymbol(gvs.mangledname),sizeof(pint),sizeof(pint));
  372. hlcg.a_loadaddr_ref_reg(current_asmdata.CurrAsmList,resultdef,voidpointertype,href,hregister);
  373. cg.a_label(current_asmdata.CurrAsmList,endrelocatelab);
  374. hlcg.reference_reset_base(location.reference,voidpointertype,hregister,0,location.reference.alignment);
  375. end;
  376. end
  377. { Normal (or external) variable }
  378. else
  379. begin
  380. if gvs.localloc.loc=LOC_INVALID then
  381. if not(vo_is_weak_external in gvs.varoptions) then
  382. reference_reset_symbol(location.reference,current_asmdata.RefAsmSymbol(gvs.mangledname),0,location.reference.alignment)
  383. else
  384. reference_reset_symbol(location.reference,current_asmdata.WeakRefAsmSymbol(gvs.mangledname),0,location.reference.alignment)
  385. else
  386. location:=gvs.localloc;
  387. end;
  388. { make const a LOC_CREFERENCE }
  389. if (gvs.varspez=vs_const) and
  390. (location.loc=LOC_REFERENCE) then
  391. location.loc:=LOC_CREFERENCE;
  392. end;
  393. paravarsym,
  394. localvarsym :
  395. begin
  396. vs:=tabstractnormalvarsym(symtableentry);
  397. { Nested variable }
  398. if assigned(left) then
  399. generate_nested_access(vs)
  400. else
  401. location:=vs.localloc;
  402. { handle call by reference variables when they are not
  403. already copied to local copies. Also ignore the reference
  404. when we need to load the self pointer for objects }
  405. if is_addr_param_load then
  406. begin
  407. if (location.loc in [LOC_CREGISTER,LOC_REGISTER]) then
  408. hregister:=location.register
  409. else
  410. begin
  411. vd:=getpointerdef(resultdef);
  412. hregister:=hlcg.getaddressregister(current_asmdata.CurrAsmList,vd);
  413. { we need to load only an address }
  414. location.size:=int_cgsize(vd.size);
  415. hlcg.a_load_loc_reg(current_asmdata.CurrAsmList,vd,vd,location,hregister);
  416. end;
  417. { assume packed records may always be unaligned }
  418. if not(resultdef.typ in [recorddef,objectdef]) or
  419. (tabstractrecordsymtable(tabstractrecorddef(resultdef).symtable).usefieldalignment<>1) then
  420. location_reset_ref(location,LOC_REFERENCE,newsize,resultdef.alignment)
  421. else
  422. location_reset_ref(location,LOC_REFERENCE,newsize,1);
  423. hlcg.reference_reset_base(location.reference,voidpointertype,hregister,0,location.reference.alignment);
  424. end;
  425. { make const a LOC_CREFERENCE }
  426. if (vs.varspez=vs_const) and
  427. (location.loc=LOC_REFERENCE) then
  428. location.loc:=LOC_CREFERENCE;
  429. end;
  430. procsym:
  431. begin
  432. if not assigned(procdef) then
  433. internalerror(200312011);
  434. if assigned(left) then
  435. begin
  436. location_reset(location,LOC_CREGISTER,int_cgsize(voidpointertype.size*2));
  437. secondpass(left);
  438. { load class instance/classrefdef address }
  439. if left.location.loc=LOC_CONSTANT then
  440. { todo: exact type for hlcg (can't use left.resultdef, because can be TP-style object, which is not pointer-sized) }
  441. hlcg.location_force_reg(current_asmdata.CurrAsmList,left.location,left.resultdef,voidpointertype,false);
  442. case left.location.loc of
  443. LOC_CREGISTER,
  444. LOC_REGISTER:
  445. begin
  446. { this is not possible for objects }
  447. if is_object(left.resultdef) then
  448. internalerror(200304234);
  449. location.registerhi:=left.location.register;
  450. end;
  451. LOC_CREFERENCE,
  452. LOC_REFERENCE:
  453. begin
  454. if is_implicit_pointer_object_type(left.resultdef) or
  455. (left.resultdef.typ=classrefdef) then
  456. begin
  457. location.registerhi:=hlcg.getaddressregister(current_asmdata.CurrAsmList,left.resultdef);
  458. hlcg.a_load_ref_reg(current_asmdata.CurrAsmList,left.resultdef,left.resultdef,left.location.reference,location.registerhi)
  459. end
  460. else
  461. begin
  462. location.registerhi:=hlcg.getaddressregister(current_asmdata.CurrAsmList,voidpointertype);
  463. hlcg.a_loadaddr_ref_reg(current_asmdata.CurrAsmList,left.resultdef,voidpointertype,left.location.reference,location.registerhi);
  464. end;
  465. location_freetemp(current_asmdata.CurrAsmList,left.location);
  466. end;
  467. else
  468. internalerror(200610311);
  469. end;
  470. { virtual method ? }
  471. if (po_virtualmethod in procdef.procoptions) and
  472. not(loadnf_inherited in loadnodeflags) and
  473. not is_objectpascal_helper(procdef.struct) then
  474. begin
  475. if (not assigned(current_procinfo) or
  476. wpoinfomanager.symbol_live(current_procinfo.procdef.mangledname)) then
  477. tobjectdef(procdef.struct).register_vmt_call(procdef.extnumber);
  478. {$ifdef vtentry}
  479. if not is_interface(procdef.struct) then
  480. begin
  481. inc(current_asmdata.NextVTEntryNr);
  482. current_asmdata.CurrAsmList.Concat(tai_symbol.CreateName('VTREF'+tostr(current_asmdata.NextVTEntryNr)+'_'+procdef._class.vmt_mangledname+'$$'+tostr(vmtoffset div sizeof(pint)),AT_FUNCTION,0));
  483. end;
  484. {$endif vtentry}
  485. { a classrefdef already points to the VMT }
  486. if (left.resultdef.typ<>classrefdef) then
  487. begin
  488. { load vmt pointer }
  489. hlcg.reference_reset_base(href,voidpointertype,location.registerhi,tobjectdef(left.resultdef).vmt_offset,voidpointertype.alignment);
  490. hregister:=hlcg.getaddressregister(current_asmdata.CurrAsmList,voidpointertype);
  491. hlcg.a_load_ref_reg(current_asmdata.CurrAsmList,voidpointertype,voidpointertype,href,hregister);
  492. end
  493. else
  494. hregister:=location.registerhi;
  495. { load method address }
  496. hlcg.reference_reset_base(href,voidpointertype,hregister,tobjectdef(procdef.struct).vmtmethodoffset(procdef.extnumber),voidpointertype.alignment);
  497. location.register:=hlcg.getaddressregister(current_asmdata.CurrAsmList,procdef.address_type);
  498. hlcg.a_load_ref_reg(current_asmdata.CurrAsmList,procdef.address_type,procdef.address_type,href,location.register);
  499. end
  500. else
  501. begin
  502. { load address of the function }
  503. reference_reset_symbol(href,current_asmdata.RefAsmSymbol(procdef.mangledname),0,procdef.address_type.alignment);
  504. location.register:=hlcg.getaddressregister(current_asmdata.CurrAsmList,procdef.address_type);
  505. hlcg.a_loadaddr_ref_reg(current_asmdata.CurrAsmList,procdef,procdef.address_type,href,location.register);
  506. end;
  507. { to get methodpointers stored correctly, code and self register must be swapped on
  508. big endian targets }
  509. if target_info.endian=endian_big then
  510. begin
  511. hregister:=location.register;
  512. location.register:=location.registerhi;
  513. location.registerhi:=hregister;
  514. end;
  515. end
  516. else
  517. begin
  518. pd:=tprocdef(tprocsym(symtableentry).ProcdefList[0]);
  519. { def_cgsize does not work for tprocdef, so we use pd.address_type }
  520. location.size:=def_cgsize(pd.address_type);
  521. if not(po_weakexternal in pd.procoptions) then
  522. location.reference.symbol:=current_asmdata.RefAsmSymbol(procdef.mangledname)
  523. else
  524. location.reference.symbol:=current_asmdata.WeakRefAsmSymbol(procdef.mangledname);
  525. end;
  526. end;
  527. labelsym :
  528. if assigned(tlabelsym(symtableentry).asmblocklabel) then
  529. location.reference.symbol:=tlabelsym(symtableentry).asmblocklabel
  530. else
  531. location.reference.symbol:=tcglabelnode((tlabelsym(symtableentry).code)).getasmlabel;
  532. else internalerror(200510032);
  533. end;
  534. end;
  535. {*****************************************************************************
  536. SecondAssignment
  537. *****************************************************************************}
  538. procedure tcgassignmentnode.pass_generate_code;
  539. var
  540. otlabel,hlabel,oflabel : tasmlabel;
  541. href : treference;
  542. releaseright : boolean;
  543. alignmentrequirement,
  544. len : aint;
  545. r : tregister;
  546. r64 : tregister64;
  547. oldflowcontrol : tflowcontrol;
  548. begin
  549. { previously, managed types were handled in firstpass
  550. newer FPCs however can identify situations when
  551. assignments of managed types require no special code and the
  552. value could be just copied so this could should be able also to handle
  553. managed types without any special "managing code"}
  554. location_reset(location,LOC_VOID,OS_NO);
  555. otlabel:=current_procinfo.CurrTrueLabel;
  556. oflabel:=current_procinfo.CurrFalseLabel;
  557. current_asmdata.getjumplabel(current_procinfo.CurrTrueLabel);
  558. current_asmdata.getjumplabel(current_procinfo.CurrFalseLabel);
  559. {
  560. in most cases we can process first the right node which contains
  561. the most complex code. Exceptions for this are:
  562. - result is in flags, loading left will then destroy the flags
  563. - result is a jump, loading left must be already done before the jump is made
  564. - result need reference count, when left points to a value used in
  565. right then decreasing the refcnt on left can possibly release
  566. the memory before right increased the refcnt, result is that an
  567. empty value is assigned
  568. But not when the result is in the flags, then
  569. loading the left node afterwards can destroy the flags.
  570. }
  571. if not(right.expectloc in [LOC_FLAGS,LOC_JUMP]) and
  572. (node_complexity(right)>node_complexity(left)) then
  573. begin
  574. secondpass(right);
  575. if codegenerror then
  576. exit;
  577. secondpass(left);
  578. if codegenerror then
  579. exit;
  580. end
  581. else
  582. begin
  583. { calculate left sides }
  584. secondpass(left);
  585. if codegenerror then
  586. exit;
  587. { tell the SSA/SSL code that the left side was handled first so
  588. ni SSL is done
  589. }
  590. oldflowcontrol:=flowcontrol;
  591. include(flowcontrol,fc_lefthandled);
  592. secondpass(right);
  593. flowcontrol:=oldflowcontrol;
  594. if codegenerror then
  595. exit;
  596. end;
  597. releaseright:=true;
  598. { shortstring assignments are handled separately }
  599. if is_shortstring(left.resultdef) then
  600. begin
  601. {
  602. we can get here only in the following situations
  603. for the right node:
  604. - empty constant string
  605. - char
  606. }
  607. { The addn is replaced by a blockn or calln that already returns
  608. a shortstring }
  609. if is_shortstring(right.resultdef) and
  610. (right.nodetype in [blockn,calln]) then
  611. begin
  612. { nothing to do }
  613. end
  614. { empty constant string }
  615. else if (right.nodetype=stringconstn) and
  616. (tstringconstnode(right).len=0) then
  617. begin
  618. hlcg.a_load_const_ref(current_asmdata.CurrAsmList,u8inttype,0,left.location.reference);
  619. end
  620. { char loading }
  621. else if is_char(right.resultdef) then
  622. begin
  623. if right.nodetype=ordconstn then
  624. begin
  625. if (target_info.endian = endian_little) then
  626. hlcg.a_load_const_ref(current_asmdata.CurrAsmList,u16inttype,(tordconstnode(right).value.svalue shl 8) or 1,
  627. setalignment(left.location.reference,1))
  628. else
  629. hlcg.a_load_const_ref(current_asmdata.CurrAsmList,u16inttype,tordconstnode(right).value.svalue or (1 shl 8),
  630. setalignment(left.location.reference,1));
  631. end
  632. else
  633. begin
  634. href:=left.location.reference;
  635. hlcg.a_load_const_ref(current_asmdata.CurrAsmList,u8inttype,1,href);
  636. inc(href.offset,1);
  637. case right.location.loc of
  638. LOC_REGISTER,
  639. LOC_CREGISTER :
  640. begin
  641. {$ifndef cpuhighleveltarget}
  642. r:=cg.makeregsize(current_asmdata.CurrAsmList,right.location.register,OS_8);
  643. {$else not cpuhighleveltarget}
  644. r:=hlcg.getintregister(current_asmdata.CurrAsmList,u8inttype);
  645. hlcg.a_load_reg_reg(current_asmdata.CurrAsmList,u8inttype,u8inttype,right.location.register,r);
  646. {$endif cpuhighleveltarget}
  647. hlcg.a_load_reg_ref(current_asmdata.CurrAsmList,u8inttype,u8inttype,r,href);
  648. end;
  649. LOC_REFERENCE,
  650. LOC_CREFERENCE :
  651. hlcg.a_load_ref_ref(current_asmdata.CurrAsmList,u8inttype,u8inttype,right.location.reference,href);
  652. else
  653. internalerror(200205111);
  654. end;
  655. end;
  656. end
  657. else
  658. internalerror(2002042410);
  659. end
  660. { try to reuse memory locations instead of copying }
  661. { copy to a memory location ... }
  662. else if (right.location.loc = LOC_REFERENCE) and
  663. maybechangetemp(current_asmdata.CurrAsmList,left,right.location.reference) then
  664. begin
  665. { if it worked, we're done }
  666. end
  667. else
  668. begin
  669. { SSA support }
  670. hlcg.maybe_change_load_node_reg(current_asmdata.CurrAsmList,left,false);
  671. hlcg.maybe_change_load_node_reg(current_asmdata.CurrAsmList,right,true);
  672. case right.location.loc of
  673. LOC_CONSTANT :
  674. begin
  675. {$ifndef cpu64bitalu}
  676. if (left.location.size in [OS_64,OS_S64]) or (right.location.size in [OS_64,OS_S64]) then
  677. cg64.a_load64_const_loc(current_asmdata.CurrAsmList,right.location.value64,left.location)
  678. else
  679. {$endif not cpu64bitalu}
  680. hlcg.a_load_const_loc(current_asmdata.CurrAsmList,left.resultdef,right.location.value,left.location);
  681. end;
  682. LOC_REFERENCE,
  683. LOC_CREFERENCE :
  684. begin
  685. case left.location.loc of
  686. LOC_REGISTER,
  687. LOC_CREGISTER :
  688. begin
  689. {$ifndef cpuhighleveltarget}
  690. {$ifdef cpu64bitalu}
  691. if left.location.size in [OS_128,OS_S128] then
  692. cg128.a_load128_ref_reg(current_asmdata.CurrAsmList,right.location.reference,left.location.register128)
  693. else
  694. {$else cpu64bitalu}
  695. if left.location.size in [OS_64,OS_S64] then
  696. cg64.a_load64_ref_reg(current_asmdata.CurrAsmList,right.location.reference,left.location.register64)
  697. else
  698. {$endif cpu64bitalu}
  699. {$endif not cpuhighleveltarget}
  700. hlcg.a_load_ref_reg(current_asmdata.CurrAsmList,right.resultdef,left.resultdef,right.location.reference,left.location.register);
  701. end;
  702. LOC_FPUREGISTER,
  703. LOC_CFPUREGISTER :
  704. begin
  705. hlcg.a_loadfpu_ref_reg(current_asmdata.CurrAsmList,
  706. right.resultdef,left.resultdef,
  707. right.location.reference,
  708. left.location.register);
  709. end;
  710. LOC_REFERENCE,
  711. LOC_CREFERENCE :
  712. begin
  713. if (left.resultdef.typ=floatdef) and
  714. (right.resultdef.typ=floatdef) and
  715. (left.location.size<>right.location.size) then
  716. begin
  717. hlcg.a_loadfpu_ref_ref(current_asmdata.CurrAsmList,
  718. right.resultdef,left.resultdef,
  719. right.location.reference,left.location.reference)
  720. end
  721. else
  722. begin
  723. { TODO: HACK: unaligned test, maybe remove all unaligned locations (array of char) from the compiler}
  724. { Use unaligned copy when the offset is not aligned }
  725. len:=left.resultdef.size;
  726. { can be 0 in case of formaldef on JVM target }
  727. if len=0 then
  728. len:=sizeof(pint);
  729. { data smaller than an aint has less alignment requirements }
  730. { max(1,...) avoids div by zero in case of an empty record }
  731. alignmentrequirement:=min(max(1,len),sizeof(aint));
  732. if (right.location.reference.offset mod alignmentrequirement<>0) or
  733. (left.location.reference.offset mod alignmentrequirement<>0) or
  734. (right.resultdef.alignment<alignmentrequirement) or
  735. ((right.location.reference.alignment<>0) and
  736. (right.location.reference.alignment<alignmentrequirement)) or
  737. ((left.location.reference.alignment<>0) and
  738. (left.location.reference.alignment<alignmentrequirement)) then
  739. hlcg.g_concatcopy_unaligned(current_asmdata.CurrAsmList,left.resultdef,right.location.reference,left.location.reference)
  740. else
  741. hlcg.g_concatcopy(current_asmdata.CurrAsmList,left.resultdef,right.location.reference,left.location.reference);
  742. end;
  743. end;
  744. LOC_MMREGISTER,
  745. LOC_CMMREGISTER:
  746. begin
  747. {$ifdef x86}
  748. if (right.resultdef.typ=floatdef) and
  749. not use_vectorfpu(right.resultdef) then
  750. begin
  751. { perform size conversion if needed (the mm-code cannot }
  752. { convert an extended into a double/single, since sse }
  753. { doesn't support extended) }
  754. r:=cg.getfpuregister(current_asmdata.CurrAsmList,right.location.size);
  755. tg.gethltemp(current_asmdata.CurrAsmList,left.resultdef,left.resultdef.size,tt_normal,href);
  756. cg.a_loadfpu_ref_reg(current_asmdata.CurrAsmList,right.location.size,right.location.size,right.location.reference,r);
  757. cg.a_loadfpu_reg_ref(current_asmdata.CurrAsmList,right.location.size,left.location.size,r,href);
  758. if releaseright then
  759. location_freetemp(current_asmdata.CurrAsmList,right.location);
  760. releaseright:=true;
  761. location_reset_ref(right.location,LOC_REFERENCE,left.location.size,0);
  762. right.location.reference:=href;
  763. right.resultdef:=left.resultdef;
  764. end;
  765. {$endif}
  766. hlcg.a_loadmm_ref_reg(current_asmdata.CurrAsmList,
  767. right.resultdef,
  768. left.resultdef,
  769. right.location.reference,
  770. left.location.register,mms_movescalar);
  771. end;
  772. LOC_SUBSETREG,
  773. LOC_CSUBSETREG:
  774. hlcg.a_load_ref_subsetreg(current_asmdata.CurrAsmList,right.resultdef,left.resultdef,right.location.reference,left.location.sreg);
  775. LOC_SUBSETREF,
  776. LOC_CSUBSETREF:
  777. {$ifndef cpu64bitalu}
  778. if right.location.size in [OS_64,OS_S64] then
  779. cg64.a_load64_ref_subsetref(current_asmdata.CurrAsmList,right.location.reference,left.location.sref)
  780. else
  781. {$endif not cpu64bitalu}
  782. hlcg.a_load_ref_subsetref(current_asmdata.CurrAsmList,right.resultdef,left.resultdef,right.location.reference,left.location.sref);
  783. else
  784. internalerror(200203284);
  785. end;
  786. end;
  787. {$ifdef SUPPORT_MMX}
  788. LOC_CMMXREGISTER,
  789. LOC_MMXREGISTER:
  790. begin
  791. if left.location.loc=LOC_CMMXREGISTER then
  792. cg.a_loadmm_reg_reg(current_asmdata.CurrAsmList,OS_M64,OS_M64,right.location.register,left.location.register,nil)
  793. else
  794. cg.a_loadmm_reg_ref(current_asmdata.CurrAsmList,OS_M64,OS_M64,right.location.register,left.location.reference,nil);
  795. end;
  796. {$endif SUPPORT_MMX}
  797. LOC_MMREGISTER,
  798. LOC_CMMREGISTER:
  799. begin
  800. if left.resultdef.typ=arraydef then
  801. begin
  802. end
  803. else
  804. begin
  805. case left.location.loc of
  806. LOC_CMMREGISTER,
  807. LOC_MMREGISTER:
  808. hlcg.a_loadmm_reg_reg(current_asmdata.CurrAsmList,right.resultdef,left.resultdef,right.location.register,left.location.register,mms_movescalar);
  809. LOC_REFERENCE,
  810. LOC_CREFERENCE:
  811. hlcg.a_loadmm_reg_ref(current_asmdata.CurrAsmList,right.resultdef,left.resultdef,right.location.register,left.location.reference,mms_movescalar);
  812. else
  813. internalerror(2009112601);
  814. end;
  815. end;
  816. end;
  817. LOC_REGISTER,
  818. LOC_CREGISTER :
  819. begin
  820. {$ifndef cpuhighleveltarget}
  821. {$ifdef cpu64bitalu}
  822. if left.location.size in [OS_128,OS_S128] then
  823. cg128.a_load128_reg_loc(current_asmdata.CurrAsmList,
  824. right.location.register128,left.location)
  825. else
  826. {$else cpu64bitalu}
  827. { also OS_F64 in case of mmreg -> intreg }
  828. if left.location.size in [OS_64,OS_S64,OS_F64] then
  829. cg64.a_load64_reg_loc(current_asmdata.CurrAsmList,
  830. right.location.register64,left.location)
  831. else
  832. {$endif cpu64bitalu}
  833. {$endif not cpuhighleveltarget}
  834. {$ifdef i8086}
  835. { prefer a_load_loc_ref, because it supports i8086-specific types
  836. that use registerhi (like 6-byte method pointers)
  837. (todo: maybe we should add a_load_loc_loc?) }
  838. if left.location.loc in [LOC_REFERENCE,LOC_CREFERENCE] then
  839. hlcg.a_load_loc_ref(current_asmdata.CurrAsmList,right.resultdef,left.resultdef,right.location,left.location.reference)
  840. else
  841. {$endif i8086}
  842. hlcg.a_load_reg_loc(current_asmdata.CurrAsmList,right.resultdef,left.resultdef,right.location.register,left.location);
  843. end;
  844. LOC_FPUREGISTER,
  845. LOC_CFPUREGISTER :
  846. begin
  847. { we can't do direct moves between fpu and mm registers }
  848. if left.location.loc in [LOC_MMREGISTER,LOC_CMMREGISTER] then
  849. begin
  850. {$ifdef x86}
  851. if not use_vectorfpu(right.resultdef) then
  852. begin
  853. { perform size conversion if needed (the mm-code cannot convert an }
  854. { extended into a double/single, since sse doesn't support extended) }
  855. tg.gethltemp(current_asmdata.CurrAsmList,left.resultdef,left.resultdef.size,tt_normal,href);
  856. cg.a_loadfpu_reg_ref(current_asmdata.CurrAsmList,right.location.size,left.location.size,right.location.register,href);
  857. location_reset_ref(right.location,LOC_REFERENCE,left.location.size,0);
  858. right.location.reference:=href;
  859. right.resultdef:=left.resultdef;
  860. end;
  861. {$endif}
  862. hlcg.location_force_mmregscalar(current_asmdata.CurrAsmList,right.location,right.resultdef,false);
  863. hlcg.a_loadmm_reg_reg(current_asmdata.CurrAsmList,
  864. right.resultdef,left.resultdef,
  865. right.location.register,left.location.register,mms_movescalar);
  866. end
  867. else
  868. hlcg.a_loadfpu_reg_loc(current_asmdata.CurrAsmList,
  869. right.resultdef,left.resultdef,
  870. right.location.register,left.location);
  871. end;
  872. LOC_SUBSETREG,
  873. LOC_CSUBSETREG:
  874. begin
  875. hlcg.a_load_subsetreg_loc(current_asmdata.CurrAsmList,
  876. right.resultdef,left.resultdef,right.location.sreg,left.location);
  877. end;
  878. LOC_SUBSETREF,
  879. LOC_CSUBSETREF:
  880. begin
  881. {$ifndef cpu64bitalu}
  882. if right.location.size in [OS_64,OS_S64] then
  883. cg64.a_load64_subsetref_loc(current_asmdata.CurrAsmList,right.location.sref,left.location)
  884. else
  885. {$endif not cpu64bitalu}
  886. hlcg.a_load_subsetref_loc(current_asmdata.CurrAsmList,
  887. right.resultdef,left.resultdef,right.location.sref,left.location);
  888. end;
  889. LOC_JUMP :
  890. begin
  891. current_asmdata.getjumplabel(hlabel);
  892. hlcg.a_label(current_asmdata.CurrAsmList,current_procinfo.CurrTrueLabel);
  893. if is_pasbool(left.resultdef) then
  894. begin
  895. {$ifndef cpu64bitalu}
  896. if left.location.size in [OS_64,OS_S64] then
  897. cg64.a_load64_const_loc(current_asmdata.CurrAsmList,1,left.location)
  898. else
  899. {$endif not cpu64bitalu}
  900. hlcg.a_load_const_loc(current_asmdata.CurrAsmList,left.resultdef,1,left.location)
  901. end
  902. else
  903. begin
  904. {$ifndef cpu64bitalu}
  905. if left.location.size in [OS_64,OS_S64] then
  906. cg64.a_load64_const_loc(current_asmdata.CurrAsmList,-1,left.location)
  907. else
  908. {$endif not cpu64bitalu}
  909. hlcg.a_load_const_loc(current_asmdata.CurrAsmList,left.resultdef,-1,left.location);
  910. end;
  911. hlcg.a_jmp_always(current_asmdata.CurrAsmList,hlabel);
  912. hlcg.a_label(current_asmdata.CurrAsmList,current_procinfo.CurrFalseLabel);
  913. {$ifndef cpu64bitalu}
  914. if left.location.size in [OS_64,OS_S64] then
  915. cg64.a_load64_const_loc(current_asmdata.CurrAsmList,0,left.location)
  916. else
  917. {$endif not cpu64bitalu}
  918. hlcg.a_load_const_loc(current_asmdata.CurrAsmList,left.resultdef,0,left.location);
  919. hlcg.a_label(current_asmdata.CurrAsmList,hlabel);
  920. end;
  921. {$ifdef cpuflags}
  922. LOC_FLAGS :
  923. begin
  924. if is_pasbool(left.resultdef) then
  925. begin
  926. case left.location.loc of
  927. LOC_REGISTER,LOC_CREGISTER:
  928. {$ifndef cpu64bitalu}
  929. if left.location.size in [OS_S64,OS_64] then
  930. begin
  931. cg.g_flags2reg(current_asmdata.CurrAsmList,OS_32,right.location.resflags,left.location.register64.reglo);
  932. cg.a_reg_dealloc(current_asmdata.CurrAsmList,NR_DEFAULTFLAGS);
  933. cg.a_load_const_reg(current_asmdata.CurrAsmList,OS_32,0,left.location.register64.reghi);
  934. end
  935. else
  936. {$endif not cpu64bitalu}
  937. begin
  938. cg.g_flags2reg(current_asmdata.CurrAsmList,left.location.size,right.location.resflags,left.location.register);
  939. cg.a_reg_dealloc(current_asmdata.CurrAsmList,NR_DEFAULTFLAGS);
  940. end;
  941. LOC_REFERENCE:
  942. { i8086 and i386 have hacks in their code generators so that they can
  943. deal with 64 bit locations in this parcticular case }
  944. {$if not defined(cpu64bitalu) and not defined(x86)}
  945. if left.location.size in [OS_S64,OS_64] then
  946. begin
  947. r64.reglo:=cg.getintregister(current_asmdata.CurrAsmList,OS_32);
  948. r64.reghi:=cg.getintregister(current_asmdata.CurrAsmList,OS_32);
  949. cg.g_flags2reg(current_asmdata.CurrAsmList,OS_32,right.location.resflags,r64.reglo);
  950. cg.a_reg_dealloc(current_asmdata.CurrAsmList,NR_DEFAULTFLAGS);
  951. cg.a_load_const_reg(current_asmdata.CurrAsmList,OS_32,0,r64.reghi);
  952. cg64.a_load64_reg_ref(current_asmdata.CurrAsmList,r64,left.location.reference);
  953. end
  954. else
  955. {$endif not cpu64bitalu}
  956. begin
  957. cg.g_flags2ref(current_asmdata.CurrAsmList,left.location.size,right.location.resflags,left.location.reference);
  958. cg.a_reg_dealloc(current_asmdata.CurrAsmList,NR_DEFAULTFLAGS);
  959. end;
  960. LOC_SUBSETREG,LOC_SUBSETREF:
  961. begin
  962. r:=cg.getintregister(current_asmdata.CurrAsmList,left.location.size);
  963. cg.g_flags2reg(current_asmdata.CurrAsmList,left.location.size,right.location.resflags,r);
  964. cg.a_reg_dealloc(current_asmdata.CurrAsmList,NR_DEFAULTFLAGS);
  965. hlcg.a_load_reg_loc(current_asmdata.CurrAsmList,left.resultdef,left.resultdef,r,left.location);
  966. end;
  967. else
  968. internalerror(200203273);
  969. end;
  970. end
  971. else
  972. begin
  973. {$ifndef cpu64bitalu}
  974. if left.location.size in [OS_S64,OS_64] then
  975. begin
  976. r64.reglo:=cg.getintregister(current_asmdata.CurrAsmList,OS_32);
  977. r64.reghi:=cg.getintregister(current_asmdata.CurrAsmList,OS_32);
  978. cg.g_flags2reg(current_asmdata.CurrAsmList,OS_32,right.location.resflags,r64.reglo);
  979. cg.a_reg_dealloc(current_asmdata.CurrAsmList,NR_DEFAULTFLAGS);
  980. cg.a_load_const_reg(current_asmdata.CurrAsmList,OS_32,0,r64.reghi);
  981. cg64.a_op64_reg_reg(current_asmdata.CurrAsmList,OP_NEG,OS_S64,
  982. r64,r64);
  983. cg64.a_load64_reg_loc(current_asmdata.CurrAsmList,r64,left.location);
  984. end
  985. else
  986. {$endif not cpu64bitalu}
  987. begin
  988. r:=cg.getintregister(current_asmdata.CurrAsmList,left.location.size);
  989. cg.g_flags2reg(current_asmdata.CurrAsmList,left.location.size,right.location.resflags,r);
  990. cg.a_reg_dealloc(current_asmdata.CurrAsmList,NR_DEFAULTFLAGS);
  991. cg.a_op_reg_reg(current_asmdata.CurrAsmList,OP_NEG,left.location.size,r,r);
  992. hlcg.a_load_reg_loc(current_asmdata.CurrAsmList,left.resultdef,left.resultdef,r,left.location);
  993. end
  994. end;
  995. end;
  996. {$endif cpuflags}
  997. end;
  998. end;
  999. if releaseright then
  1000. location_freetemp(current_asmdata.CurrAsmList,right.location);
  1001. current_procinfo.CurrTrueLabel:=otlabel;
  1002. current_procinfo.CurrFalseLabel:=oflabel;
  1003. end;
  1004. {*****************************************************************************
  1005. SecondArrayConstruct
  1006. *****************************************************************************}
  1007. const
  1008. vtInteger = 0;
  1009. vtBoolean = 1;
  1010. vtChar = 2;
  1011. vtExtended = 3;
  1012. vtString = 4;
  1013. vtPointer = 5;
  1014. vtPChar = 6;
  1015. vtObject = 7;
  1016. vtClass = 8;
  1017. vtWideChar = 9;
  1018. vtPWideChar = 10;
  1019. vtAnsiString32 = 11;
  1020. vtCurrency = 12;
  1021. vtVariant = 13;
  1022. vtInterface = 14;
  1023. vtWideString = 15;
  1024. vtInt64 = 16;
  1025. vtQWord = 17;
  1026. vtUnicodeString = 18;
  1027. vtAnsiString16 = 19;
  1028. vtAnsiString64 = 20;
  1029. procedure tcgarrayconstructornode.makearrayref(var ref: treference; eledef: tdef);
  1030. begin
  1031. { do nothing by default }
  1032. end;
  1033. procedure tcgarrayconstructornode.advancearrayoffset(var ref: treference; elesize: asizeint);
  1034. begin
  1035. inc(ref.offset,elesize);
  1036. end;
  1037. procedure tcgarrayconstructornode.pass_generate_code;
  1038. var
  1039. hp : tarrayconstructornode;
  1040. href : treference;
  1041. lt : tdef;
  1042. paraloc : tcgparalocation;
  1043. otlabel,
  1044. oflabel : tasmlabel;
  1045. vtype : longint;
  1046. eledef: tdef;
  1047. elesize : longint;
  1048. tmpreg : tregister;
  1049. vaddr : boolean;
  1050. freetemp,
  1051. dovariant: boolean;
  1052. begin
  1053. otlabel:=nil;
  1054. oflabel:=nil;
  1055. if is_packed_array(resultdef) then
  1056. internalerror(200608042);
  1057. dovariant:=
  1058. ((nf_forcevaria in flags) or is_variant_array(resultdef)) and
  1059. not(target_info.system in systems_managed_vm);
  1060. if dovariant then
  1061. begin
  1062. eledef:=search_system_type('TVARREC').typedef;
  1063. elesize:=eledef.size;
  1064. end
  1065. else
  1066. begin
  1067. eledef:=tarraydef(resultdef).elementdef;
  1068. elesize:=tarraydef(resultdef).elesize;
  1069. end;
  1070. { alignment is filled in by tg.gethltemp below }
  1071. location_reset_ref(location,LOC_CREFERENCE,OS_NO,0);
  1072. fillchar(paraloc,sizeof(paraloc),0);
  1073. { Allocate always a temp, also if no elements are required, to
  1074. be sure that location is valid (PFV) }
  1075. { on the JVM platform, an array can have 0 elements; since the length
  1076. of the array is part of the array itself, make sure we allocate one
  1077. of the proper length to avoid getting unexpected results later --
  1078. allocating a temp of size 0 also forces it to be size 4 on regular
  1079. targets }
  1080. if tarraydef(resultdef).highrange=-1 then
  1081. tg.gethltemp(current_asmdata.CurrAsmList,resultdef,0,tt_normal,location.reference)
  1082. else
  1083. tg.gethltemp(current_asmdata.CurrAsmList,resultdef,(tarraydef(resultdef).highrange+1)*elesize,tt_normal,location.reference);
  1084. href:=location.reference;
  1085. makearrayref(href,eledef);
  1086. { Process nodes in array constructor }
  1087. hp:=self;
  1088. while assigned(hp) do
  1089. begin
  1090. if assigned(hp.left) then
  1091. begin
  1092. freetemp:=true;
  1093. if (hp.left.expectloc=LOC_JUMP) then
  1094. begin
  1095. otlabel:=current_procinfo.CurrTrueLabel;
  1096. oflabel:=current_procinfo.CurrFalseLabel;
  1097. current_asmdata.getjumplabel(current_procinfo.CurrTrueLabel);
  1098. current_asmdata.getjumplabel(current_procinfo.CurrFalseLabel);
  1099. end;
  1100. secondpass(hp.left);
  1101. { Move flags and jump in register }
  1102. if hp.left.location.loc in [LOC_FLAGS,LOC_JUMP] then
  1103. hlcg.location_force_reg(current_asmdata.CurrAsmList,hp.left.location,hp.left.resultdef,hp.left.resultdef,false);
  1104. if (hp.left.location.loc=LOC_JUMP) then
  1105. begin
  1106. if (hp.left.expectloc<>LOC_JUMP) then
  1107. internalerror(2007103101);
  1108. current_procinfo.CurrTrueLabel:=otlabel;
  1109. current_procinfo.CurrFalseLabel:=oflabel;
  1110. end;
  1111. if dovariant then
  1112. begin
  1113. { find the correct vtype value }
  1114. vtype:=$ff;
  1115. vaddr:=false;
  1116. lt:=hp.left.resultdef;
  1117. case lt.typ of
  1118. enumdef,
  1119. orddef :
  1120. begin
  1121. if is_64bit(lt) then
  1122. begin
  1123. case torddef(lt).ordtype of
  1124. scurrency:
  1125. vtype:=vtCurrency;
  1126. s64bit:
  1127. vtype:=vtInt64;
  1128. u64bit:
  1129. vtype:=vtQWord;
  1130. end;
  1131. freetemp:=false;
  1132. vaddr:=true;
  1133. end
  1134. else if (lt.typ=enumdef) or
  1135. is_integer(lt) then
  1136. vtype:=vtInteger
  1137. else
  1138. if is_boolean(lt) then
  1139. vtype:=vtBoolean
  1140. else
  1141. if (lt.typ=orddef) then
  1142. begin
  1143. case torddef(lt).ordtype of
  1144. uchar:
  1145. vtype:=vtChar;
  1146. uwidechar:
  1147. vtype:=vtWideChar;
  1148. end;
  1149. end;
  1150. end;
  1151. floatdef :
  1152. begin
  1153. if is_currency(lt) then
  1154. vtype:=vtCurrency
  1155. else
  1156. vtype:=vtExtended;
  1157. freetemp:=false;
  1158. vaddr:=true;
  1159. end;
  1160. procvardef,
  1161. pointerdef :
  1162. begin
  1163. if is_pchar(lt) then
  1164. vtype:=vtPChar
  1165. else if is_pwidechar(lt) then
  1166. vtype:=vtPWideChar
  1167. else
  1168. vtype:=vtPointer;
  1169. end;
  1170. variantdef :
  1171. begin
  1172. vtype:=vtVariant;
  1173. vaddr:=true;
  1174. freetemp:=false;
  1175. end;
  1176. classrefdef :
  1177. vtype:=vtClass;
  1178. objectdef :
  1179. if is_interface(lt) then
  1180. vtype:=vtInterface
  1181. { vtObject really means a class based on TObject }
  1182. else if is_class(lt) then
  1183. vtype:=vtObject
  1184. else
  1185. internalerror(200505171);
  1186. stringdef :
  1187. begin
  1188. if is_shortstring(lt) then
  1189. begin
  1190. vtype:=vtString;
  1191. vaddr:=true;
  1192. freetemp:=false;
  1193. end
  1194. else
  1195. if is_ansistring(lt) then
  1196. begin
  1197. vtype:=vtAnsiString;
  1198. freetemp:=false;
  1199. end
  1200. else
  1201. if is_widestring(lt) then
  1202. begin
  1203. vtype:=vtWideString;
  1204. freetemp:=false;
  1205. end
  1206. else
  1207. if is_unicodestring(lt) then
  1208. begin
  1209. vtype:=vtUnicodeString;
  1210. freetemp:=false;
  1211. end;
  1212. end;
  1213. end;
  1214. if vtype=$ff then
  1215. internalerror(14357);
  1216. { write changing field update href to the next element }
  1217. inc(href.offset,sizeof(pint));
  1218. if vaddr then
  1219. begin
  1220. hlcg.location_force_mem(current_asmdata.CurrAsmList,hp.left.location,hp.left.resultdef);
  1221. tmpreg:=hlcg.getaddressregister(current_asmdata.CurrAsmList,voidpointertype);
  1222. hlcg.a_loadaddr_ref_reg(current_asmdata.CurrAsmList,hp.left.resultdef,voidpointertype,hp.left.location.reference,tmpreg);
  1223. hlcg.a_load_reg_ref(current_asmdata.CurrAsmList,voidpointertype,voidpointertype,tmpreg,href);
  1224. end
  1225. else
  1226. { todo: proper type information for hlcg }
  1227. hlcg.a_load_loc_ref(current_asmdata.CurrAsmList,hp.left.resultdef,{$ifdef cpu16bitaddr}u32inttype{$else}voidpointertype{$endif},hp.left.location,href);
  1228. { update href to the vtype field and write it }
  1229. dec(href.offset,sizeof(pint));
  1230. cg.a_load_const_ref(current_asmdata.CurrAsmList, OS_INT,vtype,href);
  1231. { goto next array element }
  1232. advancearrayoffset(href,elesize);
  1233. end
  1234. else
  1235. { normal array constructor of the same type }
  1236. begin
  1237. if is_managed_type(resultdef) then
  1238. freetemp:=false;
  1239. case hp.left.location.loc of
  1240. LOC_MMREGISTER,
  1241. LOC_CMMREGISTER:
  1242. hlcg.a_loadmm_reg_ref(current_asmdata.CurrAsmList,hp.left.resultdef,hp.left.resultdef,
  1243. hp.left.location.register,href,mms_movescalar);
  1244. LOC_FPUREGISTER,
  1245. LOC_CFPUREGISTER :
  1246. hlcg.a_loadfpu_reg_ref(current_asmdata.CurrAsmList,hp.left.resultdef,hp.left.resultdef,hp.left.location.register,href);
  1247. LOC_REFERENCE,
  1248. LOC_CREFERENCE :
  1249. begin
  1250. if is_shortstring(hp.left.resultdef) then
  1251. hlcg.g_copyshortstring(current_asmdata.CurrAsmList,hp.left.location.reference,href,
  1252. Tstringdef(hp.left.resultdef))
  1253. else
  1254. hlcg.g_concatcopy(current_asmdata.CurrAsmList,eledef,hp.left.location.reference,href);
  1255. end;
  1256. else
  1257. begin
  1258. {$ifndef cpuhighleveltarget}
  1259. {$ifdef cpu64bitalu}
  1260. if hp.left.location.size in [OS_128,OS_S128] then
  1261. cg128.a_load128_loc_ref(current_asmdata.CurrAsmList,hp.left.location,href)
  1262. else
  1263. {$else cpu64bitalu}
  1264. if hp.left.location.size in [OS_64,OS_S64] then
  1265. cg64.a_load64_loc_ref(current_asmdata.CurrAsmList,hp.left.location,href)
  1266. else
  1267. {$endif cpu64bitalu}
  1268. {$endif not cpuhighleveltarget}
  1269. hlcg.a_load_loc_ref(current_asmdata.CurrAsmList,eledef,eledef,hp.left.location,href);
  1270. end;
  1271. end;
  1272. advancearrayoffset(href,elesize);
  1273. end;
  1274. if freetemp then
  1275. location_freetemp(current_asmdata.CurrAsmList,hp.left.location);
  1276. end;
  1277. { load next entry }
  1278. hp:=tarrayconstructornode(hp.right);
  1279. end;
  1280. end;
  1281. {*****************************************************************************
  1282. SecondRTTI
  1283. *****************************************************************************}
  1284. procedure tcgrttinode.pass_generate_code;
  1285. begin
  1286. location_reset_ref(location,LOC_CREFERENCE,OS_NO,sizeof(pint));
  1287. case rttidatatype of
  1288. rdt_normal:
  1289. location.reference.symbol:=RTTIWriter.get_rtti_label(rttidef,rttitype);
  1290. rdt_ord2str:
  1291. location.reference.symbol:=RTTIWriter.get_rtti_label_ord2str(rttidef,rttitype);
  1292. rdt_str2ord:
  1293. location.reference.symbol:=RTTIWriter.get_rtti_label_str2ord(rttidef,rttitype);
  1294. end;
  1295. end;
  1296. begin
  1297. cloadnode:=tcgloadnode;
  1298. cassignmentnode:=tcgassignmentnode;
  1299. carrayconstructornode:=tcgarrayconstructornode;
  1300. crttinode:=tcgrttinode;
  1301. end.