cg64f32.pas 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl
  4. Member of the Free Pascal development team
  5. This unit implements the code generation for 64 bit int
  6. arithmethics on 32 bit processors
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. GNU General Public License for more details.
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. ****************************************************************************
  19. }
  20. {# This unit implements the code generation for 64 bit int arithmethics on
  21. 32 bit processors.
  22. }
  23. unit cg64f32;
  24. {$i fpcdefs.inc}
  25. interface
  26. uses
  27. aasmbase,aasmtai,aasmcpu,
  28. cpuinfo, cpubase,cpupara,
  29. cginfo, cgobj,
  30. node,symtype
  31. {$ifdef delphi}
  32. ,dmisc
  33. {$endif}
  34. ;
  35. type
  36. {# Defines all the methods required on 32-bit processors
  37. to handle 64-bit integers.
  38. }
  39. tcg64f32 = class(tcg64)
  40. procedure a_reg_alloc(list : taasmoutput;r : tregister64);override;
  41. procedure a_reg_dealloc(list : taasmoutput;r : tregister64);override;
  42. procedure a_load64_const_ref(list : taasmoutput;value : qword;const ref : treference);override;
  43. procedure a_load64_reg_ref(list : taasmoutput;reg : tregister64;const ref : treference);override;
  44. procedure a_load64_ref_reg(list : taasmoutput;const ref : treference;reg : tregister64;delete:boolean);override;
  45. procedure a_load64_reg_reg(list : taasmoutput;regsrc,regdst : tregister64;delete:boolean);override;
  46. procedure a_load64_const_reg(list : taasmoutput;value: qword;reg : tregister64);override;
  47. procedure a_load64_loc_reg(list : taasmoutput;const l : tlocation;reg : tregister64;delete: boolean);override;
  48. procedure a_load64_loc_ref(list : taasmoutput;const l : tlocation;const ref : treference);override;
  49. procedure a_load64_const_loc(list : taasmoutput;value : qword;const l : tlocation);override;
  50. procedure a_load64_reg_loc(list : taasmoutput;reg : tregister64;const l : tlocation);override;
  51. procedure a_load64high_reg_ref(list : taasmoutput;reg : tregister;const ref : treference);override;
  52. procedure a_load64low_reg_ref(list : taasmoutput;reg : tregister;const ref : treference);override;
  53. procedure a_load64high_ref_reg(list : taasmoutput;const ref : treference;reg : tregister);override;
  54. procedure a_load64low_ref_reg(list : taasmoutput;const ref : treference;reg : tregister);override;
  55. procedure a_load64high_loc_reg(list : taasmoutput;const l : tlocation;reg : tregister);override;
  56. procedure a_load64low_loc_reg(list : taasmoutput;const l : tlocation;reg : tregister);override;
  57. procedure a_op64_ref_reg(list : taasmoutput;op:TOpCG;const ref : treference;reg : tregister64);override;
  58. procedure a_op64_reg_ref(list : taasmoutput;op:TOpCG;reg : tregister64; const ref: treference);override;
  59. procedure a_op64_const_loc(list : taasmoutput;op:TOpCG;value : qword;const l: tlocation);override;
  60. procedure a_op64_reg_loc(list : taasmoutput;op:TOpCG;reg : tregister64;const l : tlocation);override;
  61. procedure a_op64_loc_reg(list : taasmoutput;op:TOpCG;const l : tlocation;reg : tregister64);override;
  62. procedure a_op64_const_ref(list : taasmoutput;op:TOpCG;value : qword;const ref : treference);override;
  63. procedure a_param64_reg(list : taasmoutput;reg : tregister64;const locpara : tparalocation);override;
  64. procedure a_param64_const(list : taasmoutput;value : qword;const locpara : tparalocation);override;
  65. procedure a_param64_ref(list : taasmoutput;const r : treference;const locpara : tparalocation);override;
  66. procedure a_param64_loc(list : taasmoutput;const l : tlocation;const locpara : tparalocation);override;
  67. {# This routine tries to optimize the a_op64_const_reg operation, by
  68. removing superfluous opcodes. Returns TRUE if normal processing
  69. must continue in op64_const_reg, otherwise, everything is processed
  70. entirely in this routine, by emitting the appropriate 32-bit opcodes.
  71. }
  72. function optimize64_op_const_reg(list: taasmoutput; var op: topcg; var a : qword; var reg: tregister64): boolean;override;
  73. procedure g_rangecheck64(list: taasmoutput; const l:tlocation;fromdef,todef: tdef); override;
  74. end;
  75. {# Creates a tregister64 record from 2 32 Bit registers. }
  76. function joinreg64(reglo,reghi : tregister) : tregister64;
  77. implementation
  78. uses
  79. globtype,globals,systems,
  80. cgbase,
  81. verbose,
  82. symbase,symconst,symdef,defutil,rgobj,tgobj,paramgr;
  83. {****************************************************************************
  84. Helpers
  85. ****************************************************************************}
  86. function joinreg64(reglo,reghi : tregister) : tregister64;
  87. begin
  88. result.reglo:=reglo;
  89. result.reghi:=reghi;
  90. end;
  91. {****************************************************************************
  92. TCG64F32
  93. ****************************************************************************}
  94. procedure tcg64f32.a_reg_alloc(list : taasmoutput;r : tregister64);
  95. begin
  96. list.concat(tai_regalloc.alloc(r.reglo));
  97. list.concat(tai_regalloc.alloc(r.reghi));
  98. end;
  99. procedure tcg64f32.a_reg_dealloc(list : taasmoutput;r : tregister64);
  100. begin
  101. list.concat(tai_regalloc.dealloc(r.reglo));
  102. list.concat(tai_regalloc.dealloc(r.reghi));
  103. end;
  104. procedure tcg64f32.a_load64_reg_ref(list : taasmoutput;reg : tregister64;const ref : treference);
  105. var
  106. tmpreg: tregister;
  107. tmpref: treference;
  108. begin
  109. if target_info.endian = endian_big then
  110. begin
  111. tmpreg:=reg.reglo;
  112. reg.reglo:=reg.reghi;
  113. reg.reghi:=tmpreg;
  114. end;
  115. cg.a_load_reg_ref(list,OS_32,OS_32,reg.reglo,ref);
  116. tmpref := ref;
  117. inc(tmpref.offset,4);
  118. cg.a_load_reg_ref(list,OS_32,OS_32,reg.reghi,tmpref);
  119. end;
  120. procedure tcg64f32.a_load64_const_ref(list : taasmoutput;value : qword;const ref : treference);
  121. var
  122. tmpref: treference;
  123. begin
  124. if target_info.endian = endian_big then
  125. swap_qword(value);
  126. cg.a_load_const_ref(list,OS_32,lo(value),ref);
  127. tmpref := ref;
  128. inc(tmpref.offset,4);
  129. cg.a_load_const_ref(list,OS_32,hi(value),tmpref);
  130. end;
  131. procedure tcg64f32.a_load64_ref_reg(list : taasmoutput;const ref : treference;reg : tregister64;delete:boolean);
  132. var
  133. tmpreg: tregister;
  134. tmpref: treference;
  135. got_scratch: boolean;
  136. begin
  137. if target_info.endian = endian_big then
  138. begin
  139. tmpreg := reg.reglo;
  140. reg.reglo := reg.reghi;
  141. reg.reghi := tmpreg;
  142. end;
  143. got_scratch:=false;
  144. tmpref := ref;
  145. if (tmpref.base=reg.reglo) then
  146. begin
  147. tmpreg:=rg.getaddressregister(list);
  148. got_scratch:=true;
  149. cg.a_load_reg_reg(list,OS_ADDR,OS_ADDR,tmpref.base,tmpreg);
  150. tmpref.base:=tmpreg;
  151. end
  152. else
  153. { this works only for the i386, thus the i386 needs to override }
  154. { this method and this method must be replaced by a more generic }
  155. { implementation FK }
  156. if (tmpref.index=reg.reglo) then
  157. begin
  158. tmpreg:=rg.getaddressregister(list);
  159. got_scratch:=true;
  160. cg.a_load_reg_reg(list,OS_ADDR,OS_ADDR,tmpref.index,tmpreg);
  161. tmpref.index:=tmpreg;
  162. end;
  163. cg.a_load_ref_reg(list,OS_32,OS_32,tmpref,reg.reglo);
  164. inc(tmpref.offset,4);
  165. if delete then
  166. begin
  167. tg.ungetiftemp(list,tmpref);
  168. reference_release(list,tmpref);
  169. end;
  170. cg.a_load_ref_reg(list,OS_32,OS_32,tmpref,reg.reghi);
  171. if got_scratch then
  172. rg.ungetregisterint(list,tmpreg);
  173. end;
  174. procedure tcg64f32.a_load64_reg_reg(list : taasmoutput;regsrc,regdst : tregister64;delete:boolean);
  175. begin
  176. if delete then
  177. rg.ungetregisterint(list,regsrc.reglo);
  178. cg.a_load_reg_reg(list,OS_32,OS_32,regsrc.reglo,regdst.reglo);
  179. if delete then
  180. rg.ungetregisterint(list,regsrc.reghi);
  181. cg.a_load_reg_reg(list,OS_32,OS_32,regsrc.reghi,regdst.reghi);
  182. end;
  183. procedure tcg64f32.a_load64_const_reg(list : taasmoutput;value : qword;reg : tregister64);
  184. begin
  185. cg.a_load_const_reg(list,OS_32,lo(value),reg.reglo);
  186. cg.a_load_const_reg(list,OS_32,hi(value),reg.reghi);
  187. end;
  188. procedure tcg64f32.a_load64_loc_reg(list : taasmoutput;const l : tlocation;reg : tregister64;delete :boolean);
  189. begin
  190. case l.loc of
  191. LOC_REFERENCE, LOC_CREFERENCE:
  192. a_load64_ref_reg(list,l.reference,reg,delete);
  193. LOC_REGISTER,LOC_CREGISTER:
  194. a_load64_reg_reg(list,l.register64,reg,delete);
  195. LOC_CONSTANT :
  196. a_load64_const_reg(list,l.valueqword,reg);
  197. else
  198. internalerror(200112292);
  199. end;
  200. end;
  201. procedure tcg64f32.a_load64_loc_ref(list : taasmoutput;const l : tlocation;const ref : treference);
  202. begin
  203. case l.loc of
  204. LOC_REGISTER,LOC_CREGISTER:
  205. a_load64_reg_ref(list,l.reg64,ref);
  206. LOC_CONSTANT :
  207. a_load64_const_ref(list,l.valueqword,ref);
  208. else
  209. internalerror(200203288);
  210. end;
  211. end;
  212. procedure tcg64f32.a_load64_const_loc(list : taasmoutput;value : qword;const l : tlocation);
  213. begin
  214. case l.loc of
  215. LOC_REFERENCE, LOC_CREFERENCE:
  216. a_load64_const_ref(list,value,l.reference);
  217. LOC_REGISTER,LOC_CREGISTER:
  218. a_load64_const_reg(list,value,l.reg64);
  219. else
  220. internalerror(200112293);
  221. end;
  222. end;
  223. procedure tcg64f32.a_load64_reg_loc(list : taasmoutput;reg : tregister64;const l : tlocation);
  224. begin
  225. case l.loc of
  226. LOC_REFERENCE, LOC_CREFERENCE:
  227. a_load64_reg_ref(list,reg,l.reference);
  228. LOC_REGISTER,LOC_CREGISTER:
  229. a_load64_reg_reg(list,reg,l.register64,false);
  230. else
  231. internalerror(200112293);
  232. end;
  233. end;
  234. procedure tcg64f32.a_load64high_reg_ref(list : taasmoutput;reg : tregister;const ref : treference);
  235. var
  236. tmpref: treference;
  237. begin
  238. if target_info.endian = endian_big then
  239. cg.a_load_reg_ref(list,OS_32,OS_32,reg,ref)
  240. else
  241. begin
  242. tmpref := ref;
  243. inc(tmpref.offset,4);
  244. cg.a_load_reg_ref(list,OS_32,OS_32,reg,tmpref)
  245. end;
  246. end;
  247. procedure tcg64f32.a_load64low_reg_ref(list : taasmoutput;reg : tregister;const ref : treference);
  248. var
  249. tmpref: treference;
  250. begin
  251. if target_info.endian = endian_little then
  252. cg.a_load_reg_ref(list,OS_32,OS_32,reg,ref)
  253. else
  254. begin
  255. tmpref := ref;
  256. inc(tmpref.offset,4);
  257. cg.a_load_reg_ref(list,OS_32,OS_32,reg,tmpref)
  258. end;
  259. end;
  260. procedure tcg64f32.a_load64high_ref_reg(list : taasmoutput;const ref : treference;reg : tregister);
  261. var
  262. tmpref: treference;
  263. begin
  264. if target_info.endian = endian_big then
  265. cg.a_load_ref_reg(list,OS_32,OS_32,ref,reg)
  266. else
  267. begin
  268. tmpref := ref;
  269. inc(tmpref.offset,4);
  270. cg.a_load_ref_reg(list,OS_32,OS_32,tmpref,reg)
  271. end;
  272. end;
  273. procedure tcg64f32.a_load64low_ref_reg(list : taasmoutput;const ref : treference;reg : tregister);
  274. var
  275. tmpref: treference;
  276. begin
  277. if target_info.endian = endian_little then
  278. cg.a_load_ref_reg(list,OS_32,OS_32,ref,reg)
  279. else
  280. begin
  281. tmpref := ref;
  282. inc(tmpref.offset,4);
  283. cg.a_load_ref_reg(list,OS_32,OS_32,tmpref,reg)
  284. end;
  285. end;
  286. procedure tcg64f32.a_load64low_loc_reg(list : taasmoutput;const l : tlocation;reg : tregister);
  287. begin
  288. case l.loc of
  289. LOC_REFERENCE,
  290. LOC_CREFERENCE :
  291. a_load64low_ref_reg(list,l.reference,reg);
  292. LOC_REGISTER :
  293. cg.a_load_reg_reg(list,OS_32,OS_32,l.registerlow,reg);
  294. LOC_CONSTANT :
  295. cg.a_load_const_reg(list,OS_32,lo(l.valueqword),reg);
  296. else
  297. internalerror(200203244);
  298. end;
  299. end;
  300. procedure tcg64f32.a_load64high_loc_reg(list : taasmoutput;const l : tlocation;reg : tregister);
  301. begin
  302. case l.loc of
  303. LOC_REFERENCE,
  304. LOC_CREFERENCE :
  305. a_load64high_ref_reg(list,l.reference,reg);
  306. LOC_REGISTER :
  307. cg.a_load_reg_reg(list,OS_32,OS_32,l.registerhigh,reg);
  308. LOC_CONSTANT :
  309. cg.a_load_const_reg(list,OS_32,hi(l.valueqword),reg);
  310. else
  311. internalerror(200203244);
  312. end;
  313. end;
  314. procedure tcg64f32.a_op64_const_loc(list : taasmoutput;op:TOpCG;value : qword;const l: tlocation);
  315. begin
  316. case l.loc of
  317. LOC_REFERENCE, LOC_CREFERENCE:
  318. a_op64_const_ref(list,op,value,l.reference);
  319. LOC_REGISTER,LOC_CREGISTER:
  320. a_op64_const_reg(list,op,value,l.register64);
  321. else
  322. internalerror(200203292);
  323. end;
  324. end;
  325. procedure tcg64f32.a_op64_reg_loc(list : taasmoutput;op:TOpCG;reg : tregister64;const l : tlocation);
  326. begin
  327. case l.loc of
  328. LOC_REFERENCE, LOC_CREFERENCE:
  329. a_op64_reg_ref(list,op,reg,l.reference);
  330. LOC_REGISTER,LOC_CREGISTER:
  331. a_op64_reg_reg(list,op,reg,l.register64);
  332. else
  333. internalerror(2002032422);
  334. end;
  335. end;
  336. procedure tcg64f32.a_op64_loc_reg(list : taasmoutput;op:TOpCG;const l : tlocation;reg : tregister64);
  337. begin
  338. case l.loc of
  339. LOC_REFERENCE, LOC_CREFERENCE:
  340. a_op64_ref_reg(list,op,l.reference,reg);
  341. LOC_REGISTER,LOC_CREGISTER:
  342. a_op64_reg_reg(list,op,l.register64,reg);
  343. LOC_CONSTANT :
  344. a_op64_const_reg(list,op,l.valueqword,reg);
  345. else
  346. internalerror(200203242);
  347. end;
  348. end;
  349. procedure tcg64f32.a_op64_ref_reg(list : taasmoutput;op:TOpCG;const ref : treference;reg : tregister64);
  350. var
  351. tempreg: tregister64;
  352. begin
  353. tempreg.reghi:=rg.getregisterint(list,OS_INT);
  354. tempreg.reglo:=rg.getregisterint(list,OS_INT);
  355. a_load64_ref_reg(list,ref,tempreg,false);
  356. a_op64_reg_reg(list,op,tempreg,reg);
  357. rg.ungetregisterint(list,tempreg.reglo);
  358. rg.ungetregisterint(list,tempreg.reghi);
  359. end;
  360. procedure tcg64f32.a_op64_reg_ref(list : taasmoutput;op:TOpCG;reg : tregister64; const ref: treference);
  361. var
  362. tempreg: tregister64;
  363. begin
  364. tempreg.reghi:=rg.getregisterint(list,OS_INT);
  365. tempreg.reglo:=rg.getregisterint(list,OS_INT);
  366. a_load64_ref_reg(list,ref,tempreg,false);
  367. a_op64_reg_reg(list,op,reg,tempreg);
  368. a_load64_reg_ref(list,tempreg,ref);
  369. rg.ungetregisterint(list,tempreg.reglo);
  370. rg.ungetregisterint(list,tempreg.reghi);
  371. end;
  372. procedure tcg64f32.a_op64_const_ref(list : taasmoutput;op:TOpCG;value : qword;const ref : treference);
  373. var
  374. tempreg: tregister64;
  375. begin
  376. tempreg.reghi:=rg.getregisterint(list,OS_INT);
  377. tempreg.reglo:=rg.getregisterint(list,OS_INT);
  378. a_load64_ref_reg(list,ref,tempreg,false);
  379. a_op64_const_reg(list,op,value,tempreg);
  380. a_load64_reg_ref(list,tempreg,ref);
  381. rg.ungetregisterint(list,tempreg.reglo);
  382. rg.ungetregisterint(list,tempreg.reghi);
  383. end;
  384. procedure tcg64f32.a_param64_reg(list : taasmoutput;reg : tregister64;const locpara : tparalocation);
  385. var
  386. tmplochi,tmploclo: tparalocation;
  387. begin
  388. paramanager.splitparaloc64(locpara,tmploclo,tmplochi);
  389. cg.a_param_reg(list,OS_32,reg.reghi,tmplochi);
  390. cg.a_param_reg(list,OS_32,reg.reglo,tmploclo);
  391. end;
  392. procedure tcg64f32.a_param64_const(list : taasmoutput;value : qword;const locpara : tparalocation);
  393. var
  394. tmplochi,tmploclo: tparalocation;
  395. begin
  396. paramanager.splitparaloc64(locpara,tmploclo,tmplochi);
  397. cg.a_param_const(list,OS_32,hi(value),tmplochi);
  398. cg.a_param_const(list,OS_32,lo(value),tmploclo);
  399. end;
  400. procedure tcg64f32.a_param64_ref(list : taasmoutput;const r : treference;const locpara : tparalocation);
  401. var
  402. tmprefhi,tmpreflo : treference;
  403. tmploclo,tmplochi : tparalocation;
  404. begin
  405. paramanager.splitparaloc64(locpara,tmploclo,tmplochi);
  406. tmprefhi:=r;
  407. tmpreflo:=r;
  408. if target_info.endian=endian_big then
  409. inc(tmpreflo.offset,4)
  410. else
  411. inc(tmprefhi.offset,4);
  412. cg.a_param_ref(list,OS_32,tmprefhi,tmplochi);
  413. cg.a_param_ref(list,OS_32,tmpreflo,tmploclo);
  414. end;
  415. procedure tcg64f32.a_param64_loc(list : taasmoutput;const l:tlocation;const locpara : tparalocation);
  416. begin
  417. case l.loc of
  418. LOC_REGISTER,
  419. LOC_CREGISTER :
  420. a_param64_reg(list,l.register64,locpara);
  421. LOC_CONSTANT :
  422. a_param64_const(list,l.valueqword,locpara);
  423. LOC_CREFERENCE,
  424. LOC_REFERENCE :
  425. a_param64_ref(list,l.reference,locpara);
  426. else
  427. internalerror(200203287);
  428. end;
  429. end;
  430. procedure tcg64f32.g_rangecheck64(list : taasmoutput;const l:tlocation;fromdef,todef:tdef);
  431. var
  432. neglabel,
  433. poslabel,
  434. endlabel: tasmlabel;
  435. hreg : tregister;
  436. hdef : torddef;
  437. opsize : tcgsize;
  438. oldregisterdef: boolean;
  439. from_signed,to_signed: boolean;
  440. got_scratch: boolean;
  441. temploc : tlocation;
  442. begin
  443. from_signed := is_signed(fromdef);
  444. to_signed := is_signed(todef);
  445. if not is_64bit(todef) then
  446. begin
  447. oldregisterdef := registerdef;
  448. registerdef := false;
  449. { get the high dword in a register }
  450. if l.loc in [LOC_REGISTER,LOC_CREGISTER] then
  451. begin
  452. hreg := l.registerhigh;
  453. got_scratch := false
  454. end
  455. else
  456. begin
  457. hreg:=rg.getregisterint(list,OS_INT);
  458. got_scratch := true;
  459. a_load64high_ref_reg(list,l.reference,hreg);
  460. end;
  461. objectlibrary.getlabel(poslabel);
  462. { check high dword, must be 0 (for positive numbers) }
  463. cg.a_cmp_const_reg_label(list,OS_32,OC_EQ,0,hreg,poslabel);
  464. { It can also be $ffffffff, but only for negative numbers }
  465. if from_signed and to_signed then
  466. begin
  467. objectlibrary.getlabel(neglabel);
  468. cg.a_cmp_const_reg_label(list,OS_32,OC_EQ,aword(-1),hreg,neglabel);
  469. end;
  470. { !!! freeing of register should happen directly after compare! (JM) }
  471. if got_scratch then
  472. rg.ungetregisterint(list,hreg);
  473. { For all other values we have a range check error }
  474. cg.a_call_name(list,'FPC_RANGEERROR');
  475. { if the high dword = 0, the low dword can be considered a }
  476. { simple cardinal }
  477. cg.a_label(list,poslabel);
  478. hdef:=torddef.create(u32bit,0,cardinal($ffffffff));
  479. { no use in calling just "g_rangecheck" since that one will }
  480. { simply call the inherited method too (JM) }
  481. location_copy(temploc,l);
  482. temploc.size:=OS_32;
  483. cg.g_rangecheck(list,temploc,hdef,todef);
  484. hdef.free;
  485. if from_signed and to_signed then
  486. begin
  487. objectlibrary.getlabel(endlabel);
  488. cg.a_jmp_always(list,endlabel);
  489. { if the high dword = $ffffffff, then the low dword (when }
  490. { considered as a longint) must be < 0 }
  491. cg.a_label(list,neglabel);
  492. if l.loc in [LOC_REGISTER,LOC_CREGISTER] then
  493. begin
  494. hreg := l.registerlow;
  495. got_scratch := false
  496. end
  497. else
  498. begin
  499. hreg:=rg.getregisterint(list,OS_INT);
  500. got_scratch := true;
  501. a_load64low_ref_reg(list,l.reference,hreg);
  502. end;
  503. { get a new neglabel (JM) }
  504. objectlibrary.getlabel(neglabel);
  505. cg.a_cmp_const_reg_label(list,OS_32,OC_LT,0,hreg,neglabel);
  506. { !!! freeing of register should happen directly after compare! (JM) }
  507. if got_scratch then
  508. rg.ungetregisterint(list,hreg);
  509. cg.a_call_name(list,'FPC_RANGEERROR');
  510. { if we get here, the 64bit value lies between }
  511. { longint($80000000) and -1 (JM) }
  512. cg.a_label(list,neglabel);
  513. hdef:=torddef.create(s32bit,longint($80000000),-1);
  514. location_copy(temploc,l);
  515. temploc.size:=OS_32;
  516. cg.g_rangecheck(list,temploc,hdef,todef);
  517. hdef.free;
  518. cg.a_label(list,endlabel);
  519. end;
  520. registerdef := oldregisterdef;
  521. end
  522. else
  523. { todef = 64bit int }
  524. { no 64bit subranges supported, so only a small check is necessary }
  525. { if both are signed or both are unsigned, no problem! }
  526. if (from_signed xor to_signed) and
  527. { also not if the fromdef is unsigned and < 64bit, since that will }
  528. { always fit in a 64bit int (todef is 64bit) }
  529. (from_signed or
  530. (torddef(fromdef).typ = u64bit)) then
  531. begin
  532. { in all cases, there is only a problem if the higest bit is set }
  533. if l.loc in [LOC_REGISTER,LOC_CREGISTER] then
  534. begin
  535. if is_64bit(fromdef) then
  536. begin
  537. hreg := l.registerhigh;
  538. opsize := OS_32;
  539. end
  540. else
  541. begin
  542. hreg := l.register;
  543. opsize := def_cgsize(fromdef);
  544. end;
  545. got_scratch := false;
  546. end
  547. else
  548. begin
  549. hreg:=rg.getregisterint(list,OS_INT);
  550. got_scratch := true;
  551. opsize := def_cgsize(fromdef);
  552. if opsize in [OS_64,OS_S64] then
  553. a_load64high_ref_reg(list,l.reference,hreg)
  554. else
  555. cg.a_load_ref_reg(list,opsize,OS_INT,l.reference,hreg);
  556. end;
  557. objectlibrary.getlabel(poslabel);
  558. cg.a_cmp_const_reg_label(list,opsize,OC_GTE,0,hreg,poslabel);
  559. { !!! freeing of register should happen directly after compare! (JM) }
  560. if got_scratch then
  561. rg.ungetregisterint(list,hreg);
  562. cg.a_call_name(list,'FPC_RANGEERROR');
  563. cg.a_label(list,poslabel);
  564. end;
  565. end;
  566. function tcg64f32.optimize64_op_const_reg(list: taasmoutput; var op: topcg; var a : qword; var reg: tregister64): boolean;
  567. var
  568. lowvalue, highvalue : cardinal;
  569. hreg: tregister;
  570. begin
  571. lowvalue := cardinal(a);
  572. highvalue:= a shr 32;
  573. { assume it will be optimized out }
  574. optimize64_op_const_reg := true;
  575. case op of
  576. OP_ADD:
  577. begin
  578. if a = 0 then
  579. exit;
  580. end;
  581. OP_AND:
  582. begin
  583. if lowvalue <> high(cardinal) then
  584. cg.a_op_const_reg(list,op,OS_32,lowvalue,reg.reglo);
  585. if highvalue <> high(cardinal) then
  586. cg.a_op_const_reg(list,op,OS_32,highvalue,reg.reghi);
  587. { already emitted correctly }
  588. exit;
  589. end;
  590. OP_OR:
  591. begin
  592. if lowvalue <> 0 then
  593. cg.a_op_const_reg(list,op,OS_32,lowvalue,reg.reglo);
  594. if highvalue <> 0 then
  595. cg.a_op_const_reg(list,op,OS_32,highvalue,reg.reghi);
  596. { already emitted correctly }
  597. exit;
  598. end;
  599. OP_SUB:
  600. begin
  601. if a = 0 then
  602. exit;
  603. end;
  604. OP_XOR:
  605. begin
  606. end;
  607. OP_SHL:
  608. begin
  609. if a = 0 then
  610. exit;
  611. { simply clear low-register
  612. and shift the rest and swap
  613. registers.
  614. }
  615. if (a > 31) then
  616. begin
  617. cg.a_load_const_reg(list,OS_32,0,reg.reglo);
  618. cg.a_op_const_reg(list,OP_SHL,OS_32,a mod 32,reg.reghi);
  619. { swap the registers }
  620. hreg := reg.reghi;
  621. reg.reghi := reg.reglo;
  622. reg.reglo := hreg;
  623. exit;
  624. end;
  625. end;
  626. OP_SHR:
  627. begin
  628. if a = 0 then exit;
  629. { simply clear high-register
  630. and shift the rest and swap
  631. registers.
  632. }
  633. if (a > 31) then
  634. begin
  635. cg.a_load_const_reg(list,OS_32,0,reg.reghi);
  636. cg.a_op_const_reg(list,OP_SHL,OS_32,a mod 32,reg.reglo);
  637. { swap the registers }
  638. hreg := reg.reghi;
  639. reg.reghi := reg.reglo;
  640. reg.reglo := hreg;
  641. exit;
  642. end;
  643. end;
  644. OP_IMUL,OP_MUL:
  645. begin
  646. if a = 1 then exit;
  647. end;
  648. OP_IDIV,OP_DIV:
  649. begin
  650. if a = 1 then exit;
  651. end;
  652. else
  653. internalerror(20020817);
  654. end;
  655. optimize64_op_const_reg := false;
  656. end;
  657. (*
  658. procedure int64f32_assignment_int64_reg(p : passignmentnode);
  659. begin
  660. end;
  661. begin
  662. p2_assignment:=@int64f32_assignement_int64;
  663. *)
  664. end.
  665. {
  666. $Log$
  667. Revision 1.49 2003-09-03 15:55:00 peter
  668. * NEWRA branch merged
  669. Revision 1.48.2.2 2003/08/28 18:35:07 peter
  670. * tregister changed to cardinal
  671. Revision 1.48.2.1 2003/08/27 20:23:55 peter
  672. * remove old ra code
  673. Revision 1.48 2003/07/02 22:18:04 peter
  674. * paraloc splitted in callerparaloc,calleeparaloc
  675. * sparc calling convention updates
  676. Revision 1.47 2003/06/03 21:11:09 peter
  677. * cg.a_load_* get a from and to size specifier
  678. * makeregsize only accepts newregister
  679. * i386 uses generic tcgnotnode,tcgunaryminus
  680. Revision 1.46 2003/06/03 13:01:59 daniel
  681. * Register allocator finished
  682. Revision 1.45 2003/06/01 21:38:06 peter
  683. * getregisterfpu size parameter added
  684. * op_const_reg size parameter added
  685. * sparc updates
  686. Revision 1.44 2003/05/14 19:31:37 jonas
  687. * fixed a_param64_reg
  688. Revision 1.43 2003/04/27 14:48:09 jonas
  689. * fixed Florian's quick hack :)
  690. * fixed small bug 64bit range checking code
  691. Revision 1.42 2003/04/27 09:10:49 florian
  692. * quick fix for param64 for intel
  693. Revision 1.41 2003/04/27 08:23:51 florian
  694. * fixed parameter passing for 64 bit ints
  695. Revision 1.40 2003/04/23 20:16:03 peter
  696. + added currency support based on int64
  697. + is_64bit for use in cg units instead of is_64bitint
  698. * removed cgmessage from n386add, replace with internalerrors
  699. Revision 1.39 2003/04/22 10:09:34 daniel
  700. + Implemented the actual register allocator
  701. + Scratch registers unavailable when new register allocator used
  702. + maybe_save/maybe_restore unavailable when new register allocator used
  703. Revision 1.38 2003/04/07 08:52:58 jonas
  704. * fixed compiling error
  705. Revision 1.37 2003/04/07 08:45:09 jonas
  706. + generic a_op64_reg_ref implementation
  707. Revision 1.36 2003/03/28 19:16:56 peter
  708. * generic constructor working for i386
  709. * remove fixed self register
  710. * esi added as address register for i386
  711. Revision 1.35 2003/02/19 22:00:14 daniel
  712. * Code generator converted to new register notation
  713. - Horribily outdated todo.txt removed
  714. Revision 1.34 2003/01/08 18:43:56 daniel
  715. * Tregister changed into a record
  716. Revision 1.33 2003/01/05 13:36:53 florian
  717. * x86-64 compiles
  718. + very basic support for float128 type (x86-64 only)
  719. Revision 1.32 2002/11/25 17:43:16 peter
  720. * splitted defbase in defutil,symutil,defcmp
  721. * merged isconvertable and is_equal into compare_defs(_ext)
  722. * made operator search faster by walking the list only once
  723. Revision 1.31 2002/10/05 12:43:23 carl
  724. * fixes for Delphi 6 compilation
  725. (warning : Some features do not work under Delphi)
  726. Revision 1.30 2002/09/17 18:54:01 jonas
  727. * a_load_reg_reg() now has two size parameters: source and dest. This
  728. allows some optimizations on architectures that don't encode the
  729. register size in the register name.
  730. Revision 1.29 2002/09/10 21:24:38 jonas
  731. * fixed a_param64_ref
  732. Revision 1.28 2002/09/07 15:25:00 peter
  733. * old logs removed and tabs fixed
  734. Revision 1.27 2002/08/19 18:17:47 carl
  735. + optimize64_op_const_reg implemented (optimizes 64-bit constant opcodes)
  736. * more fixes to m68k for 64-bit operations
  737. Revision 1.26 2002/08/17 22:09:43 florian
  738. * result type handling in tcgcal.pass_2 overhauled
  739. * better tnode.dowrite
  740. * some ppc stuff fixed
  741. Revision 1.25 2002/08/14 18:41:47 jonas
  742. - remove valuelow/valuehigh fields from tlocation, because they depend
  743. on the endianess of the host operating system -> difficult to get
  744. right. Use lo/hi(location.valueqword) instead (remember to use
  745. valueqword and not value!!)
  746. Revision 1.24 2002/08/11 14:32:26 peter
  747. * renamed current_library to objectlibrary
  748. Revision 1.23 2002/08/11 13:24:11 peter
  749. * saving of asmsymbols in ppu supported
  750. * asmsymbollist global is removed and moved into a new class
  751. tasmlibrarydata that will hold the info of a .a file which
  752. corresponds with a single module. Added librarydata to tmodule
  753. to keep the library info stored for the module. In the future the
  754. objectfiles will also be stored to the tasmlibrarydata class
  755. * all getlabel/newasmsymbol and friends are moved to the new class
  756. Revision 1.22 2002/07/28 15:57:15 jonas
  757. * fixed a_load64_const_reg() for big endian systems
  758. Revision 1.21 2002/07/20 11:57:52 florian
  759. * types.pas renamed to defbase.pas because D6 contains a types
  760. unit so this would conflicts if D6 programms are compiled
  761. + Willamette/SSE2 instructions to assembler added
  762. Revision 1.20 2002/07/12 10:14:26 jonas
  763. * some big-endian fixes
  764. Revision 1.19 2002/07/11 07:23:17 jonas
  765. + generic implementations of a_op64_ref_reg() and a_op64_const_ref()
  766. (only works for processors with >2 scratch registers)
  767. Revision 1.18 2002/07/10 11:12:44 jonas
  768. * fixed a_op64_const_loc()
  769. Revision 1.17 2002/07/07 09:52:32 florian
  770. * powerpc target fixed, very simple units can be compiled
  771. * some basic stuff for better callparanode handling, far from being finished
  772. Revision 1.16 2002/07/01 18:46:21 peter
  773. * internal linker
  774. * reorganized aasm layer
  775. Revision 1.15 2002/07/01 16:23:52 peter
  776. * cg64 patch
  777. * basics for currency
  778. * asnode updates for class and interface (not finished)
  779. Revision 1.14 2002/05/20 13:30:40 carl
  780. * bugfix of hdisponen (base must be set, not index)
  781. * more portability fixes
  782. Revision 1.13 2002/05/18 13:34:05 peter
  783. * readded missing revisions
  784. Revision 1.12 2002/05/16 19:46:35 carl
  785. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  786. + try to fix temp allocation (still in ifdef)
  787. + generic constructor calls
  788. + start of tassembler / tmodulebase class cleanup
  789. Revision 1.10 2002/05/12 16:53:04 peter
  790. * moved entry and exitcode to ncgutil and cgobj
  791. * foreach gets extra argument for passing local data to the
  792. iterator function
  793. * -CR checks also class typecasts at runtime by changing them
  794. into as
  795. * fixed compiler to cycle with the -CR option
  796. * fixed stabs with elf writer, finally the global variables can
  797. be watched
  798. * removed a lot of routines from cga unit and replaced them by
  799. calls to cgobj
  800. * u32bit-s32bit updates for and,or,xor nodes. When one element is
  801. u32bit then the other is typecasted also to u32bit without giving
  802. a rangecheck warning/error.
  803. * fixed pascal calling method with reversing also the high tree in
  804. the parast, detected by tcalcst3 test
  805. Revision 1.9 2002/04/25 20:16:38 peter
  806. * moved more routines from cga/n386util
  807. Revision 1.8 2002/04/21 15:28:51 carl
  808. * a_jmp_cond -> a_jmp_always
  809. Revision 1.7 2002/04/07 13:21:18 carl
  810. + more documentation
  811. }