cgbase.pas 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712
  1. {
  2. Copyright (c) 1998-2002 by Florian Klaempfl
  3. Some basic types and constants for the code generation
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. {# This unit exports some types which are used across the code generator }
  18. unit cgbase;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. globtype,
  23. symconst;
  24. type
  25. { Location types where value can be stored }
  26. TCGLoc=(
  27. LOC_INVALID, { added for tracking problems}
  28. LOC_VOID, { no value is available }
  29. LOC_CONSTANT, { constant value }
  30. LOC_JUMP, { boolean results only, jump to false or true label }
  31. LOC_FLAGS, { boolean results only, flags are set }
  32. LOC_REGISTER, { in a processor register }
  33. LOC_CREGISTER, { Constant register which shouldn't be modified }
  34. LOC_FPUREGISTER, { FPU stack }
  35. LOC_CFPUREGISTER, { if it is a FPU register variable on the fpu stack }
  36. LOC_MMXREGISTER, { MMX register }
  37. { MMX register variable }
  38. LOC_CMMXREGISTER,
  39. { multimedia register }
  40. LOC_MMREGISTER,
  41. { Constant multimedia reg which shouldn't be modified }
  42. LOC_CMMREGISTER,
  43. { contiguous subset of bits of an integer register }
  44. LOC_SUBSETREG,
  45. LOC_CSUBSETREG,
  46. { contiguous subset of bits in memory }
  47. LOC_SUBSETREF,
  48. LOC_CSUBSETREF,
  49. { keep these last for range checking purposes }
  50. LOC_CREFERENCE, { in memory constant value reference (cannot change) }
  51. LOC_REFERENCE { in memory value }
  52. );
  53. TCGNonRefLoc=low(TCGLoc)..pred(LOC_CREFERENCE);
  54. TCGRefLoc=LOC_CREFERENCE..LOC_REFERENCE;
  55. { since we have only 16bit offsets, we need to be able to specify the high
  56. and lower 16 bits of the address of a symbol of up to 64 bit }
  57. trefaddr = (
  58. addr_no,
  59. addr_full,
  60. addr_pic,
  61. addr_pic_no_got
  62. {$IF defined(POWERPC) or defined(POWERPC64) or defined(SPARC) or defined(MIPS)}
  63. ,
  64. addr_low, // bits 48-63
  65. addr_high, // bits 32-47
  66. {$IF defined(POWERPC64)}
  67. addr_higher, // bits 16-31
  68. addr_highest, // bits 00-15
  69. {$ENDIF}
  70. addr_higha // bits 16-31, adjusted
  71. {$IF defined(POWERPC64)}
  72. ,
  73. addr_highera, // bits 32-47, adjusted
  74. addr_highesta // bits 48-63, adjusted
  75. {$ENDIF}
  76. {$ENDIF}
  77. {$IFDEF AVR}
  78. ,addr_lo8
  79. ,addr_hi8
  80. {$ENDIF}
  81. );
  82. {# Generic opcodes, which must be supported by all processors
  83. }
  84. topcg =
  85. (
  86. OP_NONE,
  87. OP_MOVE, { replaced operation with direct load }
  88. OP_ADD, { simple addition }
  89. OP_AND, { simple logical and }
  90. OP_DIV, { simple unsigned division }
  91. OP_IDIV, { simple signed division }
  92. OP_IMUL, { simple signed multiply }
  93. OP_MUL, { simple unsigned multiply }
  94. OP_NEG, { simple negate }
  95. OP_NOT, { simple logical not }
  96. OP_OR, { simple logical or }
  97. OP_SAR, { arithmetic shift-right }
  98. OP_SHL, { logical shift left }
  99. OP_SHR, { logical shift right }
  100. OP_SUB, { simple subtraction }
  101. OP_XOR, { simple exclusive or }
  102. OP_ROL, { rotate left }
  103. OP_ROR { rotate right }
  104. );
  105. {# Generic flag values - used for jump locations }
  106. TOpCmp =
  107. (
  108. OC_NONE,
  109. OC_EQ, { equality comparison }
  110. OC_GT, { greater than (signed) }
  111. OC_LT, { less than (signed) }
  112. OC_GTE, { greater or equal than (signed) }
  113. OC_LTE, { less or equal than (signed) }
  114. OC_NE, { not equal }
  115. OC_BE, { less or equal than (unsigned) }
  116. OC_B, { less than (unsigned) }
  117. OC_AE, { greater or equal than (unsigned) }
  118. OC_A { greater than (unsigned) }
  119. );
  120. { indirect symbol flags }
  121. tindsymflag = (is_data,is_weak);
  122. tindsymflags = set of tindsymflag;
  123. { OS_NO is also used memory references with large data that can
  124. not be loaded in a register directly }
  125. TCgSize = (OS_NO,
  126. { integer registers }
  127. OS_8,OS_16,OS_32,OS_64,OS_128,OS_S8,OS_S16,OS_S32,OS_S64,OS_S128,
  128. { single,double,extended,comp,float128 }
  129. OS_F32,OS_F64,OS_F80,OS_C64,OS_F128,
  130. { multi-media sizes: split in byte, word, dword, ... }
  131. { entities, then the signed counterparts }
  132. OS_M8,OS_M16,OS_M32,OS_M64,OS_M128,
  133. OS_MS8,OS_MS16,OS_MS32,OS_MS64,OS_MS128);
  134. { Register types }
  135. TRegisterType = (
  136. R_INVALIDREGISTER, { = 0 }
  137. R_INTREGISTER, { = 1 }
  138. R_FPUREGISTER, { = 2 }
  139. { used by Intel only }
  140. R_MMXREGISTER, { = 3 }
  141. R_MMREGISTER, { = 4 }
  142. R_SPECIALREGISTER, { = 5 }
  143. R_ADDRESSREGISTER { = 6 }
  144. );
  145. { Sub registers }
  146. TSubRegister = (
  147. R_SUBNONE, { = 0; no sub register possible }
  148. R_SUBL, { = 1; 8 bits, Like AL }
  149. R_SUBH, { = 2; 8 bits, Like AH }
  150. R_SUBW, { = 3; 16 bits, Like AX }
  151. R_SUBD, { = 4; 32 bits, Like EAX }
  152. R_SUBQ, { = 5; 64 bits, Like RAX }
  153. { For Sparc floats that use F0:F1 to store doubles }
  154. R_SUBFS, { = 6; Float that allocates 1 FPU register }
  155. R_SUBFD, { = 7; Float that allocates 2 FPU registers }
  156. R_SUBFQ, { = 8; Float that allocates 4 FPU registers }
  157. R_SUBMMS, { = 9; single scalar in multi media register }
  158. R_SUBMMD, { = 10; double scalar in multi media register }
  159. R_SUBMMWHOLE { = 11; complete MM register, size depends on CPU }
  160. );
  161. TSubRegisterSet = set of TSubRegister;
  162. TSuperRegister = type word;
  163. {
  164. The new register coding:
  165. SuperRegister (bits 0..15)
  166. Subregister (bits 16..23)
  167. Register type (bits 24..31)
  168. TRegister is defined as an enum to make it incompatible
  169. with TSuperRegister to avoid mixing them
  170. }
  171. TRegister = (
  172. TRegisterLowEnum := Low(longint),
  173. TRegisterHighEnum := High(longint)
  174. );
  175. TRegisterRec=packed record
  176. {$ifdef FPC_BIG_ENDIAN}
  177. regtype : Tregistertype;
  178. subreg : Tsubregister;
  179. supreg : Tsuperregister;
  180. {$else FPC_BIG_ENDIAN}
  181. supreg : Tsuperregister;
  182. subreg : Tsubregister;
  183. regtype : Tregistertype;
  184. {$endif FPC_BIG_ENDIAN}
  185. end;
  186. { A type to store register locations for 64 Bit values. }
  187. {$ifdef cpu64bitalu}
  188. tregister64 = tregister;
  189. tregister128 = record
  190. reglo,reghi : tregister;
  191. end;
  192. {$else cpu64bitalu}
  193. tregister64 = record
  194. reglo,reghi : tregister;
  195. end;
  196. {$endif cpu64bitalu}
  197. Tregistermmxset = record
  198. reg0,reg1,reg2,reg3:Tregister
  199. end;
  200. { Set type definition for registers }
  201. tsuperregisterset = array[byte] of set of byte;
  202. pmmshuffle = ^tmmshuffle;
  203. { this record describes shuffle operations for mm operations; if a pointer a shuffle record
  204. passed to an mm operation is nil, it means that the whole location is moved }
  205. tmmshuffle = record
  206. { describes how many shuffles are actually described, if len=0 then
  207. moving the scalar with index 0 to the scalar with index 0 is meant }
  208. len : byte;
  209. { lower nibble of each entry of this array describes index of the source data index while
  210. the upper nibble describes the destination index }
  211. shuffles : array[1..1] of byte;
  212. end;
  213. Tsuperregisterarray=array[0..$ffff] of Tsuperregister;
  214. Psuperregisterarray=^Tsuperregisterarray;
  215. Tsuperregisterworklist=object
  216. buflength,
  217. buflengthinc,
  218. length:word;
  219. buf:Psuperregisterarray;
  220. constructor init;
  221. constructor copyfrom(const x:Tsuperregisterworklist);
  222. destructor done;
  223. procedure clear;
  224. procedure add(s:tsuperregister);
  225. function addnodup(s:tsuperregister): boolean;
  226. function get:tsuperregister;
  227. function readidx(i:word):tsuperregister;
  228. procedure deleteidx(i:word);
  229. function delete(s:tsuperregister):boolean;
  230. end;
  231. psuperregisterworklist=^tsuperregisterworklist;
  232. const
  233. { alias for easier understanding }
  234. R_SSEREGISTER = R_MMREGISTER;
  235. { Invalid register number }
  236. RS_INVALID = high(tsuperregister);
  237. tcgsize2size : Array[tcgsize] of integer =
  238. { integer values }
  239. (0,1,2,4,8,16,1,2,4,8,16,
  240. { floating point values }
  241. 4,8,10,8,16,
  242. { multimedia values }
  243. 1,2,4,8,16,1,2,4,8,16);
  244. tfloat2tcgsize: array[tfloattype] of tcgsize =
  245. (OS_F32,OS_F64,OS_F80,OS_F80,OS_C64,OS_C64,OS_F128);
  246. tcgsize2tfloat: array[OS_F32..OS_C64] of tfloattype =
  247. (s32real,s64real,s80real,s64comp);
  248. tvarregable2tcgloc : array[tvarregable] of tcgloc = (LOC_VOID,
  249. LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMREGISTER,LOC_CREGISTER);
  250. {$ifdef cpu64bitalu}
  251. { operand size describing an unsigned value in a pair of int registers }
  252. OS_PAIR = OS_128;
  253. { operand size describing an signed value in a pair of int registers }
  254. OS_SPAIR = OS_S128;
  255. {$else cpu64bitalu}
  256. { operand size describing an unsigned value in a pair of int registers }
  257. OS_PAIR = OS_64;
  258. { operand size describing an signed value in a pair of int registers }
  259. OS_SPAIR = OS_S64;
  260. {$endif cpu64bitalu}
  261. { Table to convert tcgsize variables to the correspondending
  262. unsigned types }
  263. tcgsize2unsigned : array[tcgsize] of tcgsize = (OS_NO,
  264. OS_8,OS_16,OS_32,OS_64,OS_128,OS_8,OS_16,OS_32,OS_64,OS_128,
  265. OS_F32,OS_F64,OS_F80,OS_C64,OS_F128,
  266. OS_M8,OS_M16,OS_M32,OS_M64,OS_M128,OS_M8,OS_M16,OS_M32,
  267. OS_M64,OS_M128);
  268. tcgloc2str : array[TCGLoc] of string[12] = (
  269. 'LOC_INVALID',
  270. 'LOC_VOID',
  271. 'LOC_CONST',
  272. 'LOC_JUMP',
  273. 'LOC_FLAGS',
  274. 'LOC_REG',
  275. 'LOC_CREG',
  276. 'LOC_FPUREG',
  277. 'LOC_CFPUREG',
  278. 'LOC_MMXREG',
  279. 'LOC_CMMXREG',
  280. 'LOC_MMREG',
  281. 'LOC_CMMREG',
  282. 'LOC_SSETREG',
  283. 'LOC_CSSETREG',
  284. 'LOC_SSETREF',
  285. 'LOC_CSSETREF',
  286. 'LOC_CREF',
  287. 'LOC_REF'
  288. );
  289. var
  290. mms_movescalar : pmmshuffle;
  291. procedure supregset_reset(var regs:tsuperregisterset;setall:boolean;
  292. maxreg:Tsuperregister);{$ifdef USEINLINE}inline;{$endif}
  293. procedure supregset_include(var regs:tsuperregisterset;s:tsuperregister);{$ifdef USEINLINE}inline;{$endif}
  294. procedure supregset_exclude(var regs:tsuperregisterset;s:tsuperregister);{$ifdef USEINLINE}inline;{$endif}
  295. function supregset_in(const regs:tsuperregisterset;s:tsuperregister):boolean;{$ifdef USEINLINE}inline;{$endif}
  296. function newreg(rt:tregistertype;sr:tsuperregister;sb:tsubregister):tregister;{$ifdef USEINLINE}inline;{$endif}
  297. function getsubreg(r:tregister):tsubregister;{$ifdef USEINLINE}inline;{$endif}
  298. function getsupreg(r:tregister):tsuperregister;{$ifdef USEINLINE}inline;{$endif}
  299. function getregtype(r:tregister):tregistertype;{$ifdef USEINLINE}inline;{$endif}
  300. procedure setsubreg(var r:tregister;sr:tsubregister);{$ifdef USEINLINE}inline;{$endif}
  301. procedure setsupreg(var r:tregister;sr:tsuperregister);{$ifdef USEINLINE}inline;{$endif}
  302. function generic_regname(r:tregister):string;
  303. {# From a constant numeric value, return the abstract code generator
  304. size.
  305. }
  306. function int_cgsize(const a: tcgint): tcgsize;{$ifdef USEINLINE}inline;{$endif}
  307. function int_float_cgsize(const a: tcgint): tcgsize;
  308. { return the inverse condition of opcmp }
  309. function inverse_opcmp(opcmp: topcmp): topcmp;{$ifdef USEINLINE}inline;{$endif}
  310. { return the opcmp needed when swapping the operands }
  311. function swap_opcmp(opcmp: topcmp): topcmp;{$ifdef USEINLINE}inline;{$endif}
  312. { return whether op is commutative }
  313. function commutativeop(op: topcg): boolean;{$ifdef USEINLINE}inline;{$endif}
  314. { returns true, if shuffle describes a real shuffle operation and not only a move }
  315. function realshuffle(shuffle : pmmshuffle) : boolean;
  316. { returns true, if the shuffle describes only a move of the scalar at index 0 }
  317. function shufflescalar(shuffle : pmmshuffle) : boolean;
  318. { removes shuffling from shuffle, this means that the destenation index of each shuffle is copied to
  319. the source }
  320. procedure removeshuffles(var shuffle : tmmshuffle);
  321. implementation
  322. uses
  323. verbose;
  324. {******************************************************************************
  325. tsuperregisterworklist
  326. ******************************************************************************}
  327. constructor tsuperregisterworklist.init;
  328. begin
  329. length:=0;
  330. buflength:=0;
  331. buflengthinc:=16;
  332. buf:=nil;
  333. end;
  334. constructor Tsuperregisterworklist.copyfrom(const x:Tsuperregisterworklist);
  335. begin
  336. self:=x;
  337. if x.buf<>nil then
  338. begin
  339. getmem(buf,buflength*sizeof(Tsuperregister));
  340. move(x.buf^,buf^,length*sizeof(Tsuperregister));
  341. end;
  342. end;
  343. destructor tsuperregisterworklist.done;
  344. begin
  345. if assigned(buf) then
  346. freemem(buf);
  347. end;
  348. procedure tsuperregisterworklist.add(s:tsuperregister);
  349. begin
  350. inc(length);
  351. { Need to increase buffer length? }
  352. if length>=buflength then
  353. begin
  354. inc(buflength,buflengthinc);
  355. buflengthinc:=buflengthinc*2;
  356. if buflengthinc>256 then
  357. buflengthinc:=256;
  358. reallocmem(buf,buflength*sizeof(Tsuperregister));
  359. end;
  360. buf^[length-1]:=s;
  361. end;
  362. function tsuperregisterworklist.addnodup(s:tsuperregister): boolean;
  363. begin
  364. addnodup := false;
  365. if indexword(buf^,length,s) = -1 then
  366. begin
  367. add(s);
  368. addnodup := true;
  369. end;
  370. end;
  371. procedure tsuperregisterworklist.clear;
  372. begin
  373. length:=0;
  374. end;
  375. procedure tsuperregisterworklist.deleteidx(i:word);
  376. begin
  377. if i>=length then
  378. internalerror(200310144);
  379. buf^[i]:=buf^[length-1];
  380. dec(length);
  381. end;
  382. function tsuperregisterworklist.readidx(i:word):tsuperregister;
  383. begin
  384. if (i >= length) then
  385. internalerror(2005010601);
  386. result := buf^[i];
  387. end;
  388. function tsuperregisterworklist.get:tsuperregister;
  389. begin
  390. if length=0 then
  391. internalerror(200310142);
  392. get:=buf^[0];
  393. buf^[0]:=buf^[length-1];
  394. dec(length);
  395. end;
  396. function tsuperregisterworklist.delete(s:tsuperregister):boolean;
  397. var
  398. i:longint;
  399. begin
  400. delete:=false;
  401. { indexword in 1.0.x and 1.9.4 is broken }
  402. i:=indexword(buf^,length,s);
  403. if i<>-1 then
  404. begin
  405. deleteidx(i);
  406. delete := true;
  407. end;
  408. end;
  409. procedure supregset_reset(var regs:tsuperregisterset;setall:boolean;
  410. maxreg:Tsuperregister);{$ifdef USEINLINE}inline;{$endif}
  411. begin
  412. fillchar(regs,(maxreg+7) shr 3,-byte(setall));
  413. end;
  414. procedure supregset_include(var regs:tsuperregisterset;s:tsuperregister);{$ifdef USEINLINE}inline;{$endif}
  415. begin
  416. include(regs[s shr 8],(s and $ff));
  417. end;
  418. procedure supregset_exclude(var regs:tsuperregisterset;s:tsuperregister);{$ifdef USEINLINE}inline;{$endif}
  419. begin
  420. exclude(regs[s shr 8],(s and $ff));
  421. end;
  422. function supregset_in(const regs:tsuperregisterset;s:tsuperregister):boolean;{$ifdef USEINLINE}inline;{$endif}
  423. begin
  424. result:=(s and $ff) in regs[s shr 8];
  425. end;
  426. function newreg(rt:tregistertype;sr:tsuperregister;sb:tsubregister):tregister;{$ifdef USEINLINE}inline;{$endif}
  427. begin
  428. tregisterrec(result).regtype:=rt;
  429. tregisterrec(result).supreg:=sr;
  430. tregisterrec(result).subreg:=sb;
  431. end;
  432. function getsubreg(r:tregister):tsubregister;{$ifdef USEINLINE}inline;{$endif}
  433. begin
  434. result:=tregisterrec(r).subreg;
  435. end;
  436. function getsupreg(r:tregister):tsuperregister;{$ifdef USEINLINE}inline;{$endif}
  437. begin
  438. result:=tregisterrec(r).supreg;
  439. end;
  440. function getregtype(r:tregister):tregistertype;{$ifdef USEINLINE}inline;{$endif}
  441. begin
  442. result:=tregisterrec(r).regtype;
  443. end;
  444. procedure setsubreg(var r:tregister;sr:tsubregister);{$ifdef USEINLINE}inline;{$endif}
  445. begin
  446. tregisterrec(r).subreg:=sr;
  447. end;
  448. procedure setsupreg(var r:tregister;sr:tsuperregister);{$ifdef USEINLINE}inline;{$endif}
  449. begin
  450. tregisterrec(r).supreg:=sr;
  451. end;
  452. function generic_regname(r:tregister):string;
  453. var
  454. nr : string[12];
  455. begin
  456. str(getsupreg(r),nr);
  457. case getregtype(r) of
  458. R_INTREGISTER:
  459. result:='ireg'+nr;
  460. R_FPUREGISTER:
  461. result:='freg'+nr;
  462. R_MMREGISTER:
  463. result:='mreg'+nr;
  464. R_MMXREGISTER:
  465. result:='xreg'+nr;
  466. R_ADDRESSREGISTER:
  467. result:='areg'+nr;
  468. R_SPECIALREGISTER:
  469. result:='sreg'+nr;
  470. else
  471. begin
  472. result:='INVALID';
  473. exit;
  474. end;
  475. end;
  476. case getsubreg(r) of
  477. R_SUBNONE:
  478. ;
  479. R_SUBL:
  480. result:=result+'l';
  481. R_SUBH:
  482. result:=result+'h';
  483. R_SUBW:
  484. result:=result+'w';
  485. R_SUBD:
  486. result:=result+'d';
  487. R_SUBQ:
  488. result:=result+'q';
  489. R_SUBFS:
  490. result:=result+'fs';
  491. R_SUBFD:
  492. result:=result+'fd';
  493. R_SUBMMD:
  494. result:=result+'md';
  495. R_SUBMMS:
  496. result:=result+'ms';
  497. R_SUBMMWHOLE:
  498. result:=result+'ma';
  499. else
  500. internalerror(200308252);
  501. end;
  502. end;
  503. function int_cgsize(const a: tcgint): tcgsize;{$ifdef USEINLINE}inline;{$endif}
  504. const
  505. size2cgsize : array[0..8] of tcgsize = (
  506. OS_NO,OS_8,OS_16,OS_NO,OS_32,OS_NO,OS_NO,OS_NO,OS_64
  507. );
  508. begin
  509. {$ifdef cpu64bitalu}
  510. if a=16 then
  511. result:=OS_128
  512. else
  513. {$endif cpu64bitalu}
  514. if a>8 then
  515. result:=OS_NO
  516. else
  517. result:=size2cgsize[a];
  518. end;
  519. function int_float_cgsize(const a: tcgint): tcgsize;
  520. begin
  521. case a of
  522. 4 :
  523. result:=OS_F32;
  524. 8 :
  525. result:=OS_F64;
  526. 10 :
  527. result:=OS_F80;
  528. 16 :
  529. result:=OS_F128;
  530. else
  531. internalerror(200603211);
  532. end;
  533. end;
  534. function inverse_opcmp(opcmp: topcmp): topcmp;{$ifdef USEINLINE}inline;{$endif}
  535. const
  536. list: array[TOpCmp] of TOpCmp =
  537. (OC_NONE,OC_NE,OC_LTE,OC_GTE,OC_LT,OC_GT,OC_EQ,OC_A,OC_AE,
  538. OC_B,OC_BE);
  539. begin
  540. inverse_opcmp := list[opcmp];
  541. end;
  542. function swap_opcmp(opcmp: topcmp): topcmp;{$ifdef USEINLINE}inline;{$endif}
  543. const
  544. list: array[TOpCmp] of TOpCmp =
  545. (OC_NONE,OC_EQ,OC_LT,OC_GT,OC_LTE,OC_GTE,OC_NE,OC_AE,OC_A,
  546. OC_BE,OC_B);
  547. begin
  548. swap_opcmp := list[opcmp];
  549. end;
  550. function commutativeop(op: topcg): boolean;{$ifdef USEINLINE}inline;{$endif}
  551. const
  552. list: array[topcg] of boolean =
  553. (true,false,true,true,false,false,true,true,false,false,
  554. true,false,false,false,false,true,false,false);
  555. begin
  556. commutativeop := list[op];
  557. end;
  558. function realshuffle(shuffle : pmmshuffle) : boolean;
  559. var
  560. i : longint;
  561. begin
  562. realshuffle:=true;
  563. if (shuffle=nil) or (shuffle^.len=0) then
  564. realshuffle:=false
  565. else
  566. begin
  567. for i:=1 to shuffle^.len do
  568. begin
  569. if (shuffle^.shuffles[i] and $f)<>((shuffle^.shuffles[i] and $f0) shr 4) then
  570. exit;
  571. end;
  572. realshuffle:=false;
  573. end;
  574. end;
  575. function shufflescalar(shuffle : pmmshuffle) : boolean;
  576. begin
  577. result:=shuffle^.len=0;
  578. end;
  579. procedure removeshuffles(var shuffle : tmmshuffle);
  580. var
  581. i : longint;
  582. begin
  583. if shuffle.len=0 then
  584. exit;
  585. for i:=1 to shuffle.len do
  586. shuffle.shuffles[i]:=(shuffle.shuffles[i] and $f) or ((shuffle.shuffles[i] and $f0) shr 4);
  587. end;
  588. initialization
  589. new(mms_movescalar);
  590. mms_movescalar^.len:=0;
  591. finalization
  592. dispose(mms_movescalar);
  593. end.