cgbase.pas 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl
  4. Some basic types and constants for the code generation
  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. {# This unit exports some types which are used across the code generator }
  19. unit cgbase;
  20. {$i fpcdefs.inc}
  21. interface
  22. uses
  23. cpuinfo,
  24. symconst;
  25. type
  26. { Location types where value can be stored }
  27. TCGLoc=(
  28. LOC_INVALID, { added for tracking problems}
  29. LOC_VOID, { no value is available }
  30. LOC_CONSTANT, { constant value }
  31. LOC_JUMP, { boolean results only, jump to false or true label }
  32. LOC_FLAGS, { boolean results only, flags are set }
  33. LOC_CREFERENCE, { in memory constant value reference (cannot change) }
  34. LOC_REFERENCE, { in memory value }
  35. LOC_REGISTER, { in a processor register }
  36. LOC_CREGISTER, { Constant register which shouldn't be modified }
  37. LOC_FPUREGISTER, { FPU stack }
  38. LOC_CFPUREGISTER, { if it is a FPU register variable on the fpu stack }
  39. LOC_MMXREGISTER, { MMX register }
  40. { MMX register variable }
  41. LOC_CMMXREGISTER,
  42. LOC_SSEREGISTER,
  43. LOC_CSSEREGISTER,
  44. { multimedia register }
  45. LOC_MMREGISTER,
  46. { Constant multimedia reg which shouldn't be modified }
  47. LOC_CMMREGISTER
  48. );
  49. {# Generic opcodes, which must be supported by all processors
  50. }
  51. topcg =
  52. (
  53. OP_NONE,
  54. OP_ADD, { simple addition }
  55. OP_AND, { simple logical and }
  56. OP_DIV, { simple unsigned division }
  57. OP_IDIV, { simple signed division }
  58. OP_IMUL, { simple signed multiply }
  59. OP_MUL, { simple unsigned multiply }
  60. OP_NEG, { simple negate }
  61. OP_NOT, { simple logical not }
  62. OP_OR, { simple logical or }
  63. OP_SAR, { arithmetic shift-right }
  64. OP_SHL, { logical shift left }
  65. OP_SHR, { logical shift right }
  66. OP_SUB, { simple subtraction }
  67. OP_XOR { simple exclusive or }
  68. );
  69. {# Generic flag values - used for jump locations }
  70. TOpCmp =
  71. (
  72. OC_NONE,
  73. OC_EQ, { equality comparison }
  74. OC_GT, { greater than (signed) }
  75. OC_LT, { less than (signed) }
  76. OC_GTE, { greater or equal than (signed) }
  77. OC_LTE, { less or equal than (signed) }
  78. OC_NE, { not equal }
  79. OC_BE, { less or equal than (unsigned) }
  80. OC_B, { less than (unsigned) }
  81. OC_AE, { greater or equal than (unsigned) }
  82. OC_A { greater than (unsigned) }
  83. );
  84. { OS_NO is also used memory references with large data that can
  85. not be loaded in a register directly }
  86. TCgSize = (OS_NO,
  87. { integer registers }
  88. OS_8,OS_16,OS_32,OS_64,OS_S8,OS_S16,OS_S32,OS_S64,
  89. { single,double,extended,comp,float128 }
  90. OS_F32,OS_F64,OS_F80,OS_C64,OS_F128,
  91. { multi-media sizes: split in byte, word, dword, ... }
  92. { entities, then the signed counterparts }
  93. OS_M8,OS_M16,OS_M32,OS_M64,OS_M128,OS_MS8,OS_MS16,OS_MS32,
  94. OS_MS64,OS_MS128);
  95. { Register types }
  96. TRegisterType = (
  97. R_INVALIDREGISTER, { = 0 }
  98. R_INTREGISTER, { = 1 }
  99. R_FPUREGISTER, { = 2 }
  100. { used by Intel only }
  101. R_MMXREGISTER, { = 3 }
  102. R_MMREGISTER, { = 4 }
  103. R_SPECIALREGISTER, { = 5 }
  104. R_ADDRESSREGISTER { = 6 }
  105. );
  106. { Sub registers }
  107. TSubRegister = (
  108. R_SUBNONE, { = 0; no sub register possible }
  109. R_SUBL, { = 1; 8 bits, Like AL }
  110. R_SUBH, { = 2; 8 bits, Like AH }
  111. R_SUBW, { = 3; 16 bits, Like AX }
  112. R_SUBD, { = 4; 32 bits, Like EAX }
  113. R_SUBQ, { = 5; 64 bits, Like RAX }
  114. R_SUBFD { = 6; Float that allocates 2 FPU registers }
  115. );
  116. TSuperRegister = type word;
  117. {
  118. The new register coding:
  119. SuperRegister (bits 0..7)
  120. Unused (bits 8..15)
  121. Subregister (bits 16..23)
  122. Register type (bits 24..31)
  123. }
  124. TRegister = type cardinal;
  125. TRegisterRec=packed record
  126. {$ifdef FPC_BIG_ENDIAN}
  127. regtype : Tregistertype;
  128. subreg : Tsubregister;
  129. supreg : Tsuperregister;
  130. {$else FPC_BIG_ENDIAN}
  131. supreg : Tsuperregister;
  132. subreg : Tsubregister;
  133. regtype : Tregistertype;
  134. {$endif FPC_BIG_ENDIAN}
  135. end;
  136. { A type to store register locations for 64 Bit values. }
  137. {$ifdef cpu64bit}
  138. tregister64 = tregister;
  139. {$else cpu64bit}
  140. tregister64 = packed record
  141. reglo,reghi : tregister;
  142. end;
  143. {$endif cpu64bit}
  144. { Set type definition for registers }
  145. tcpuregisterset = set of byte;
  146. tsuperregisterset = array[byte] of set of byte;
  147. { Temp types }
  148. ttemptype = (tt_none,
  149. tt_free,tt_normal,tt_persistent,
  150. tt_noreuse,tt_freenoreuse,
  151. tt_ansistring,tt_freeansistring,
  152. tt_widestring,tt_freewidestring,
  153. tt_interfacecom,tt_freeinterfacecom);
  154. ttemptypeset = set of ttemptype;
  155. pmmshuffle = ^tmmshuffle;
  156. { this record describes shuffle operations for mm operations; if a pointer a shuffle record
  157. passed to an mm operation is nil, it means that the whole location is moved }
  158. tmmshuffle = record
  159. { describes how many shuffles are actually described, if len=0 then
  160. moving the scalar with index 0 to the scalar with index 0 is meant }
  161. len : byte;
  162. { lower nibble of each entry of this array describes index of the source data index while
  163. the upper nibble describes the destination index }
  164. shuffles : array[1..1] of byte;
  165. end;
  166. const
  167. { alias for easier understanding }
  168. R_SSEREGISTER = R_MMREGISTER;
  169. { Invalid register number }
  170. RS_INVALID = high(tsuperregister);
  171. { Maximum number of cpu registers per register type,
  172. this must fit in tcpuregisterset }
  173. maxcpuregister = 32;
  174. tcgsize2size : Array[tcgsize] of integer =
  175. { integer values }
  176. (0,1,2,4,8,1,2,4,8,
  177. { floating point values }
  178. 4,8,EXTENDED_SIZE,8,16,
  179. { multimedia values }
  180. 1,2,4,8,16,1,2,4,8,16);
  181. tfloat2tcgsize: array[tfloattype] of tcgsize =
  182. (OS_F32,OS_F64,OS_F80,OS_C64,OS_C64,OS_F128);
  183. tcgsize2tfloat: array[OS_F32..OS_C64] of tfloattype =
  184. (s32real,s64real,s80real,s64comp);
  185. { Table to convert tcgsize variables to the correspondending
  186. unsigned types }
  187. tcgsize2unsigned : array[tcgsize] of tcgsize = (OS_NO,
  188. OS_8,OS_16,OS_32,OS_64,OS_8,OS_16,OS_32,OS_64,
  189. OS_F32,OS_F64,OS_F80,OS_C64,OS_F128,
  190. OS_M8,OS_M16,OS_M32,OS_M64,OS_M128,OS_M8,OS_M16,OS_M32,
  191. OS_M64,OS_M128);
  192. tcgloc2str : array[TCGLoc] of string[11] = (
  193. 'LOC_INVALID',
  194. 'LOC_VOID',
  195. 'LOC_CONST',
  196. 'LOC_JUMP',
  197. 'LOC_FLAGS',
  198. 'LOC_CREF',
  199. 'LOC_REF',
  200. 'LOC_REG',
  201. 'LOC_CREG',
  202. 'LOC_FPUREG',
  203. 'LOC_CFPUREG',
  204. 'LOC_MMXREG',
  205. 'LOC_CMMXREG',
  206. 'LOC_SSEREG',
  207. 'LOC_CSSEREG',
  208. 'LOC_MMREG',
  209. 'LOC_CMMREG');
  210. var
  211. mms_movescalar : pmmshuffle;
  212. procedure supregset_reset(var regs:tsuperregisterset;setall:boolean);{$ifdef USEINLINE}inline;{$endif}
  213. procedure supregset_include(var regs:tsuperregisterset;s:tsuperregister);{$ifdef USEINLINE}inline;{$endif}
  214. procedure supregset_exclude(var regs:tsuperregisterset;s:tsuperregister);{$ifdef USEINLINE}inline;{$endif}
  215. function supregset_in(const regs:tsuperregisterset;s:tsuperregister):boolean;{$ifdef USEINLINE}inline;{$endif}
  216. function newreg(rt:tregistertype;sr:tsuperregister;sb:tsubregister):tregister;{$ifdef USEINLINE}inline;{$endif}
  217. function getsubreg(r:tregister):tsubregister;{$ifdef USEINLINE}inline;{$endif}
  218. function getsupreg(r:tregister):tsuperregister;{$ifdef USEINLINE}inline;{$endif}
  219. function getregtype(r:tregister):tregistertype;{$ifdef USEINLINE}inline;{$endif}
  220. procedure setsubreg(var r:tregister;sr:tsubregister);{$ifdef USEINLINE}inline;{$endif}
  221. procedure setsupreg(var r:tregister;sr:tsuperregister);{$ifdef USEINLINE}inline;{$endif}
  222. function generic_regname(r:tregister):string;
  223. {# From a constant numeric value, return the abstract code generator
  224. size.
  225. }
  226. function int_cgsize(const a: aword): tcgsize;{$ifdef USEINLINE}inline;{$endif}
  227. { return the inverse condition of opcmp }
  228. function inverse_opcmp(opcmp: topcmp): topcmp;{$ifdef USEINLINE}inline;{$endif}
  229. { return whether op is commutative }
  230. function commutativeop(op: topcg): boolean;{$ifdef USEINLINE}inline;{$endif}
  231. { returns true, if shuffle describes a real shuffle operation and not only a move }
  232. function realshuffle(shuffle : pmmshuffle) : boolean;
  233. { removes shuffling from shuffle, this means that the destenation index of each shuffle is copied to
  234. the source }
  235. procedure removeshuffles(var shuffle : tmmshuffle);
  236. implementation
  237. uses
  238. verbose;
  239. procedure supregset_reset(var regs:tsuperregisterset;setall:boolean);{$ifdef USEINLINE}inline;{$endif}
  240. var
  241. b : byte;
  242. begin
  243. if setall then
  244. b:=$ff
  245. else
  246. b:=0;
  247. fillchar(regs,sizeof(regs),b);
  248. end;
  249. procedure supregset_include(var regs:tsuperregisterset;s:tsuperregister);{$ifdef USEINLINE}inline;{$endif}
  250. begin
  251. include(regs[s shr 8],(s and $ff));
  252. end;
  253. procedure supregset_exclude(var regs:tsuperregisterset;s:tsuperregister);{$ifdef USEINLINE}inline;{$endif}
  254. begin
  255. exclude(regs[s shr 8],(s and $ff));
  256. end;
  257. function supregset_in(const regs:tsuperregisterset;s:tsuperregister):boolean;{$ifdef USEINLINE}inline;{$endif}
  258. begin
  259. result:=(s and $ff) in regs[s shr 8];
  260. end;
  261. function newreg(rt:tregistertype;sr:tsuperregister;sb:tsubregister):tregister;{$ifdef USEINLINE}inline;{$endif}
  262. begin
  263. tregisterrec(result).regtype:=rt;
  264. tregisterrec(result).supreg:=sr;
  265. tregisterrec(result).subreg:=sb;
  266. end;
  267. function getsubreg(r:tregister):tsubregister;{$ifdef USEINLINE}inline;{$endif}
  268. begin
  269. result:=tregisterrec(r).subreg;
  270. end;
  271. function getsupreg(r:tregister):tsuperregister;{$ifdef USEINLINE}inline;{$endif}
  272. begin
  273. result:=tregisterrec(r).supreg;
  274. end;
  275. function getregtype(r:tregister):tregistertype;{$ifdef USEINLINE}inline;{$endif}
  276. begin
  277. result:=tregisterrec(r).regtype;
  278. end;
  279. procedure setsubreg(var r:tregister;sr:tsubregister);{$ifdef USEINLINE}inline;{$endif}
  280. begin
  281. tregisterrec(r).subreg:=sr;
  282. end;
  283. procedure setsupreg(var r:tregister;sr:tsuperregister);{$ifdef USEINLINE}inline;{$endif}
  284. begin
  285. tregisterrec(r).supreg:=sr;
  286. end;
  287. function generic_regname(r:tregister):string;
  288. var
  289. t,sub : char;
  290. nr : string[12];
  291. begin
  292. case getregtype(r) of
  293. R_INTREGISTER:
  294. t:='i';
  295. R_FPUREGISTER:
  296. t:='f';
  297. R_MMXREGISTER:
  298. t:='x';
  299. R_MMREGISTER:
  300. t:='m';
  301. else
  302. begin
  303. result:='INVALID';
  304. exit;
  305. end;
  306. end;
  307. str(getsupreg(r),nr);
  308. case getsubreg(r) of
  309. R_SUBNONE:
  310. sub:=' ';
  311. R_SUBL:
  312. sub:='l';
  313. R_SUBH:
  314. sub:='h';
  315. R_SUBW:
  316. sub:='w';
  317. R_SUBD:
  318. sub:='d';
  319. R_SUBQ:
  320. sub:='q';
  321. R_SUBFD:
  322. sub:='f';
  323. else
  324. internalerror(200308252);
  325. end;
  326. if sub<>' ' then
  327. result:=t+'reg'+nr+sub
  328. else
  329. result:=t+'reg'+nr;
  330. end;
  331. function int_cgsize(const a: aword): tcgsize;{$ifdef USEINLINE}inline;{$endif}
  332. const
  333. size2cgsize : array[0..8] of tcgsize = (
  334. OS_NO,OS_8,OS_16,OS_32,OS_32,OS_64,OS_64,OS_64,OS_64
  335. );
  336. begin
  337. if a>8 then
  338. result:=OS_NO
  339. else
  340. result:=size2cgsize[a];
  341. end;
  342. function inverse_opcmp(opcmp: topcmp): topcmp;{$ifdef USEINLINE}inline;{$endif}
  343. const
  344. list: array[TOpCmp] of TOpCmp =
  345. (OC_NONE,OC_NE,OC_LTE,OC_GTE,OC_LT,OC_GT,OC_EQ,OC_A,OC_AE,
  346. OC_B,OC_BE);
  347. begin
  348. inverse_opcmp := list[opcmp];
  349. end;
  350. function commutativeop(op: topcg): boolean;{$ifdef USEINLINE}inline;{$endif}
  351. const
  352. list: array[topcg] of boolean =
  353. (true,true,true,false,false,true,true,false,false,
  354. true,false,false,false,false,true);
  355. begin
  356. commutativeop := list[op];
  357. end;
  358. function realshuffle(shuffle : pmmshuffle) : boolean;
  359. var
  360. i : longint;
  361. begin
  362. realshuffle:=true;
  363. if (shuffle=nil) or (shuffle^.len=0) then
  364. realshuffle:=false
  365. else
  366. begin
  367. for i:=1 to shuffle^.len do
  368. begin
  369. if (shuffle^.shuffles[i] and $f)<>((shuffle^.shuffles[i] and $f0) shr 8) then
  370. exit;
  371. end;
  372. realshuffle:=false;
  373. end;
  374. end;
  375. procedure removeshuffles(var shuffle : tmmshuffle);
  376. var
  377. i : longint;
  378. begin
  379. if shuffle.len=0 then
  380. exit;
  381. for i:=1 to shuffle.len do
  382. shuffle.shuffles[i]:=(shuffle.shuffles[i] and $f0) or ((shuffle.shuffles[i] and $f0) shr 8);
  383. end;
  384. initialization
  385. new(mms_movescalar);
  386. mms_movescalar^.len:=0;
  387. finalization
  388. dispose(mms_movescalar);
  389. end.
  390. {
  391. $Log$
  392. Revision 1.76 2003-11-03 17:48:04 peter
  393. * int_cgsize returned garbage for a=0
  394. Revision 1.75 2003/10/31 15:51:11 peter
  395. * USEINLINE directive added (not enabled yet)
  396. Revision 1.74 2003/10/30 14:56:40 mazen
  397. + add support for double float register vars
  398. Revision 1.73 2003/10/29 15:07:01 mazen
  399. * 32 registers are available
  400. Revision 1.72 2003/10/24 15:21:31 peter
  401. * renamed R_SUBF64 to R_SUBFD
  402. Revision 1.71 2003/10/17 14:38:32 peter
  403. * 64k registers supported
  404. * fixed some memory leaks
  405. Revision 1.70 2003/10/13 01:10:01 florian
  406. * some ideas for mm support implemented
  407. Revision 1.69 2003/10/11 16:06:42 florian
  408. * fixed some MMX<->SSE
  409. * started to fix ppc, needs an overhaul
  410. + stabs info improve for spilling, not sure if it works correctly/completly
  411. - MMX_SUPPORT removed from Makefile.fpc
  412. Revision 1.68 2003/10/09 21:31:37 daniel
  413. * Register allocator splitted, ans abstract now
  414. Revision 1.67 2003/10/01 20:34:48 peter
  415. * procinfo unit contains tprocinfo
  416. * cginfo renamed to cgbase
  417. * moved cgmessage to verbose
  418. * fixed ppc and sparc compiles
  419. }