ncgset.pas 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl and Carl Eric Codere
  4. Generate generic assembler for in set/case nodes
  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 ncgset;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. node,nset,cpubase,cginfo,cgbase,cgobj,aasmbase,aasmtai;
  23. type
  24. tcgsetelementnode = class(tsetelementnode)
  25. procedure pass_2;override;
  26. end;
  27. tcginnode = class(tinnode)
  28. procedure pass_2;override;
  29. {# Routine to test bitnumber in bitnumber register on value
  30. in value register. The __result register should be set
  31. to one if the bit is set, otherwise __result register
  32. should be set to zero.
  33. Should be overriden on processors which have specific
  34. instructions to do bit tests.
  35. }
  36. procedure emit_bit_test_reg_reg(list : taasmoutput; bitnumber : tregister;
  37. value : tregister; __result :tregister);virtual;
  38. end;
  39. implementation
  40. uses
  41. globtype,systems,
  42. verbose,globals,
  43. symconst,symdef,defbase,
  44. paramgr,
  45. pass_2,
  46. ncon,
  47. cga,tgobj,ncgutil,regvars,rgobj;
  48. {*****************************************************************************
  49. TCGSETELEMENTNODE
  50. *****************************************************************************}
  51. procedure tcgsetelementnode.pass_2;
  52. var
  53. pushedregs : tmaybesave;
  54. begin
  55. { load first value in 32bit register }
  56. secondpass(left);
  57. if left.location.loc in [LOC_REGISTER,LOC_CREGISTER] then
  58. location_force_reg(exprasmlist,left.location,OS_32,false);
  59. { also a second value ? }
  60. if assigned(right) then
  61. begin
  62. maybe_save(exprasmlist,right.registers32,left.location,pushedregs);
  63. secondpass(right);
  64. if codegenerror then
  65. exit;
  66. maybe_restore(exprasmlist,left.location,pushedregs);
  67. if right.location.loc in [LOC_REGISTER,LOC_CREGISTER] then
  68. location_force_reg(exprasmlist,right.location,OS_32,false);
  69. end;
  70. { we doesn't modify the left side, we check only the type }
  71. location_copy(location,left.location);
  72. end;
  73. {*****************************************************************************
  74. *****************************************************************************}
  75. {**********************************************************************}
  76. { Description: Emit operation to do a bit test, where the bitnumber }
  77. { to test is in the bitnumber register. The value to test against is }
  78. { located in the value register. }
  79. { WARNING: Bitnumber register value is DESTROYED! }
  80. { __Result register is set to 1, if the bit is set otherwise, __Result}
  81. { is set to zero. __RESULT register is also used as scratch. }
  82. {**********************************************************************}
  83. procedure tcginnode.emit_bit_test_reg_reg(list : taasmoutput; bitnumber : tregister; value : tregister; __result :tregister);
  84. var
  85. foundlabel : tasmlabel;
  86. notfoundlabel : tasmlabel;
  87. begin
  88. getlabel(foundlabel);
  89. getlabel(notfoundlabel);
  90. { first make sure that the bit number is modulo 32 }
  91. cg.a_op_const_reg(list,OP_AND,31,bitnumber);
  92. { rotate bit to correct position }
  93. cg.a_load_const_reg(list,OS_INT,1,__result);
  94. cg.a_op_reg_reg(list,OP_SHL,OS_INT,bitnumber,__result);
  95. { do and value to result }
  96. cg.a_op_reg_reg(list,OP_AND,OS_INT,value,__result);
  97. { if the value in the AND register is <> 0 then the value is equal. }
  98. cg.a_cmp_const_reg_label(list,OS_32,OC_NE,0,__result,foundlabel);
  99. { clear the register value, indicating result is FALSE }
  100. cg.a_load_const_reg(list,OS_INT,0,__result);
  101. cg.a_jmp_always(list,notfoundlabel);
  102. { Now place the end label if IN success }
  103. cg.a_label(list,foundlabel);
  104. { result register is 1 : LOC_JUMP }
  105. cg.a_load_const_reg(list,OS_INT,1,__result);
  106. { in case value is not found }
  107. cg.a_label(list,notfoundlabel);
  108. end;
  109. procedure tcginnode.pass_2;
  110. type
  111. Tsetpart=record
  112. range : boolean; {Part is a range.}
  113. start,stop : byte; {Start/stop when range; Stop=element when an element.}
  114. end;
  115. var
  116. genjumps,
  117. use_small,
  118. ranges : boolean;
  119. hr,hr2,hr3,
  120. pleftreg : tregister;
  121. href : treference;
  122. opsize : tcgsize;
  123. setparts : array[1..8] of Tsetpart;
  124. i,numparts : byte;
  125. adjustment : longint;
  126. pushedregs : tmaybesave;
  127. l,l2,l3 : tasmlabel;
  128. function analizeset(Aset:pconstset;is_small:boolean):boolean;
  129. type
  130. byteset=set of byte;
  131. var
  132. compares,maxcompares:word;
  133. i:byte;
  134. begin
  135. analizeset:=false;
  136. ranges:=false;
  137. numparts:=0;
  138. compares:=0;
  139. { Lots of comparisions take a lot of time, so do not allow
  140. too much comparisions. 8 comparisions are, however, still
  141. smalller than emitting the set }
  142. if cs_littlesize in aktglobalswitches then
  143. maxcompares:=8
  144. else
  145. maxcompares:=5;
  146. { when smallset is possible allow only 3 compares the smallset
  147. code is for littlesize also smaller when more compares are used }
  148. if is_small then
  149. maxcompares:=3;
  150. for i:=0 to 255 do
  151. if i in byteset(Aset^) then
  152. begin
  153. if (numparts=0) or (i<>setparts[numparts].stop+1) then
  154. begin
  155. {Set element is a separate element.}
  156. inc(compares);
  157. if compares>maxcompares then
  158. exit;
  159. inc(numparts);
  160. setparts[numparts].range:=false;
  161. setparts[numparts].stop:=i;
  162. end
  163. else
  164. {Set element is part of a range.}
  165. if not setparts[numparts].range then
  166. begin
  167. {Transform an element into a range.}
  168. setparts[numparts].range:=true;
  169. setparts[numparts].start:=setparts[numparts].stop;
  170. setparts[numparts].stop:=i;
  171. ranges := true;
  172. { there's only one compare per range anymore. Only a }
  173. { sub is added, but that's much faster than a }
  174. { cmp/jcc combo so neglect its effect }
  175. { inc(compares);
  176. if compares>maxcompares then
  177. exit; }
  178. end
  179. else
  180. begin
  181. {Extend a range.}
  182. setparts[numparts].stop:=i;
  183. end;
  184. end;
  185. analizeset:=true;
  186. end;
  187. begin
  188. { We check first if we can generate jumps, this can be done
  189. because the resulttype.def is already set in firstpass }
  190. { check if we can use smallset operation using btl which is limited
  191. to 32 bits, the left side may also not contain higher values !! }
  192. use_small:=(tsetdef(right.resulttype.def).settype=smallset) and
  193. ((left.resulttype.def.deftype=orddef) and (torddef(left.resulttype.def).high<=32) or
  194. (left.resulttype.def.deftype=enumdef) and (tenumdef(left.resulttype.def).max<=32));
  195. { Can we generate jumps? Possible for all types of sets }
  196. genjumps:=(right.nodetype=setconstn) and
  197. analizeset(tsetconstnode(right).value_set,use_small);
  198. { calculate both operators }
  199. { the complex one first }
  200. firstcomplex(self);
  201. secondpass(left);
  202. { Only process the right if we are not generating jumps }
  203. if not genjumps then
  204. begin
  205. maybe_save(exprasmlist,right.registers32,left.location,pushedregs);
  206. secondpass(right);
  207. maybe_restore(exprasmlist,left.location,pushedregs);
  208. end;
  209. if codegenerror then
  210. exit;
  211. { ofcourse not commutative }
  212. if nf_swaped in flags then
  213. swapleftright;
  214. { location is always LOC_JUMP }
  215. location_reset(location,LOC_REGISTER,OS_INT);
  216. { allocate a register for the result }
  217. location.register := rg.getregisterint(exprasmlist);
  218. { Get a label to jump to the end }
  219. getlabel(l);
  220. if genjumps then
  221. begin
  222. { clear the register value, indicating result is FALSE }
  223. cg.a_load_const_reg(exprasmlist,OS_INT,0,location.register);
  224. opsize := def_cgsize(left.resulttype.def);
  225. { If register is used, use only lower 8 bits }
  226. if left.location.loc in [LOC_REGISTER,LOC_CREGISTER] then
  227. begin
  228. { for ranges we always need a 32bit register, because then we }
  229. { use the register as base in a reference (JM) }
  230. if ranges then
  231. begin
  232. pleftreg:=rg.makeregsize(left.location.register,OS_INT);
  233. cg.a_load_reg_reg(exprasmlist,left.location.size,left.location.register,pleftreg);
  234. if opsize <> OS_INT then
  235. cg.a_op_const_reg(exprasmlist,OP_AND,255,pleftreg);
  236. opsize := OS_INT;
  237. end
  238. else
  239. { otherwise simply use the lower 8 bits (no "and" }
  240. { necessary this way) (JM) }
  241. begin
  242. pleftreg:=rg.makeregsize(left.location.register,OS_8);
  243. opsize := OS_8;
  244. end;
  245. end
  246. else
  247. begin
  248. { load the value in a register }
  249. pleftreg := cg.get_scratch_reg_int(exprasmlist);
  250. opsize := OS_INT;
  251. cg.a_load_ref_reg(exprasmlist,def_cgsize(left.resulttype.def),left.location.reference,pleftreg);
  252. end;
  253. { how much have we already substracted from the x in the }
  254. { "x in [y..z]" expression }
  255. adjustment := 0;
  256. hr := R_NO;
  257. for i:=1 to numparts do
  258. if setparts[i].range then
  259. { use fact that a <= x <= b <=> cardinal(x-a) <= cardinal(b-a) }
  260. begin
  261. { is the range different from all legal values? }
  262. if (setparts[i].stop-setparts[i].start <> 255) then
  263. begin
  264. { yes, is the lower bound <> 0? }
  265. if (setparts[i].start <> 0) then
  266. { we're going to substract from the left register, }
  267. { so in case of a LOC_CREGISTER first move the value }
  268. { to edi (not done before because now we can do the }
  269. { move and substract in one instruction with LEA) }
  270. if (left.location.loc = LOC_CREGISTER) and
  271. (hr <> pleftreg) then
  272. begin
  273. hr:=cg.get_scratch_reg_int(exprasmlist);
  274. cg.a_load_reg_reg(exprasmlist,opsize,pleftreg,hr);
  275. pleftreg:=hr;
  276. rg.ungetregister(exprasmlist,pleftreg);
  277. opsize := OS_INT;
  278. end
  279. else
  280. begin
  281. { otherwise, the value is already in a register }
  282. { that can be modified }
  283. cg.a_op_const_reg(exprasmlist,OP_SUB,
  284. setparts[i].start-adjustment,pleftreg)
  285. end;
  286. { new total value substracted from x: }
  287. { adjustment + (setparts[i].start - adjustment) }
  288. adjustment := setparts[i].start;
  289. { check if result < b-a+1 (not "result <= b-a", since }
  290. { we need a carry in case the element is in the range }
  291. { (this will never overflow since we check at the }
  292. { beginning whether stop-start <> 255) }
  293. cg.a_cmp_const_reg_label(exprasmlist, opsize, OC_B,
  294. setparts[i].stop-setparts[i].start+1,pleftreg,l);
  295. end
  296. else
  297. { if setparts[i].start = 0 and setparts[i].stop = 255, }
  298. { it's always true since "in" is only allowed for bytes }
  299. begin
  300. cg.a_jmp_always(exprasmlist,l);
  301. end;
  302. end
  303. else
  304. begin
  305. { Emit code to check if left is an element }
  306. cg.a_cmp_const_reg_label(exprasmlist, opsize, OC_EQ,
  307. setparts[i].stop-adjustment,pleftreg,l);
  308. end;
  309. { To compensate for not doing a second pass }
  310. right.location.reference.symbol:=nil;
  311. getlabel(l3);
  312. cg.a_jmp_always(exprasmlist,l3);
  313. { Now place the end label if IN success }
  314. cg.a_label(exprasmlist,l);
  315. { result register is 1 }
  316. cg.a_load_const_reg(exprasmlist,OS_INT,1,location.register);
  317. { in case value is not found }
  318. cg.a_label(exprasmlist,l3);
  319. case left.location.loc of
  320. LOC_CREGISTER :
  321. cg.free_scratch_reg(exprasmlist,pleftreg);
  322. LOC_REGISTER :
  323. rg.ungetregister(exprasmlist,pleftreg);
  324. else
  325. begin
  326. reference_release(exprasmlist,left.location.reference);
  327. cg.free_scratch_reg(exprasmlist,R_EDI);
  328. end;
  329. end;
  330. end
  331. else
  332. {*****************************************************************}
  333. { NO JUMP TABLE GENERATION }
  334. {*****************************************************************}
  335. begin
  336. { We will now generated code to check the set itself, no jmps,
  337. handle smallsets separate, because it allows faster checks }
  338. if use_small then
  339. begin
  340. {**************************** SMALL SET **********************}
  341. if left.nodetype=ordconstn then
  342. begin
  343. { clear the register value, indicating result is FALSE }
  344. cg.a_load_const_reg(exprasmlist,OS_INT,0,location.register);
  345. hr:=cg.get_scratch_reg_int(exprasmlist);
  346. case right.location.loc of
  347. LOC_REGISTER,
  348. LOC_CREGISTER:
  349. begin
  350. { load set value into register }
  351. cg.a_load_reg_reg(exprasmlist,OS_INT,
  352. right.location.register,hr);
  353. end;
  354. LOC_REFERENCE,
  355. LOC_CREFERENCE :
  356. begin
  357. { load set value into register }
  358. cg.a_load_ref_reg(exprasmlist,OS_INT,
  359. right.location.reference,hr);
  360. end;
  361. else
  362. internalerror(200203312);
  363. end;
  364. { then do AND with constant and register }
  365. cg.a_op_const_reg(exprasmlist,OP_AND,1 shl
  366. (tordconstnode(left).value and 31),hr);
  367. { if the value in the AND register is <> 0 then the value is equal. }
  368. cg.a_cmp_const_reg_label(exprasmlist,OS_32,OC_EQ,1 shl
  369. (tordconstnode(left).value and 31),hr,l);
  370. cg.free_scratch_reg(exprasmlist,hr);
  371. getlabel(l3);
  372. cg.a_jmp_always(exprasmlist,l3);
  373. { Now place the end label if IN success }
  374. cg.a_label(exprasmlist,l);
  375. { result register is 1 : LOC_JUMP }
  376. cg.a_load_const_reg(exprasmlist,OS_INT,1,location.register);
  377. { in case value is not found }
  378. cg.a_label(exprasmlist,l3);
  379. location_release(exprasmlist,right.location);
  380. end
  381. else
  382. begin
  383. case left.location.loc of
  384. LOC_REGISTER,
  385. LOC_CREGISTER:
  386. begin
  387. hr3:=rg.makeregsize(left.location.register,OS_INT);
  388. cg.a_load_reg_reg(exprasmlist,left.location.size,left.location.register,hr3);
  389. hr:=cg.get_scratch_reg_int(exprasmlist);
  390. cg.a_load_reg_reg(exprasmlist,OS_INT,hr3,hr);
  391. end;
  392. else
  393. begin
  394. hr:=cg.get_scratch_reg_int(exprasmlist);
  395. cg.a_load_ref_reg(exprasmlist,def_cgsize(left.resulttype.def),
  396. left.location.reference,hr);
  397. location_release(exprasmlist,left.location);
  398. end;
  399. end;
  400. case right.location.loc of
  401. LOC_REGISTER,
  402. LOC_CREGISTER :
  403. begin
  404. hr2:=right.location.register;
  405. end;
  406. LOC_CONSTANT :
  407. begin
  408. hr2:=rg.getregisterint(exprasmlist);
  409. cg.a_load_const_reg(exprasmlist,OS_32,
  410. right.location.value,hr2);
  411. end;
  412. LOC_CREFERENCE,
  413. LOC_REFERENCE :
  414. begin
  415. location_release(exprasmlist,right.location);
  416. hr2:=rg.getregisterint(exprasmlist);
  417. cg.a_load_ref_reg(exprasmlist, OS_32,
  418. right.location.reference,hr2);
  419. end;
  420. else
  421. internalerror(2002032210);
  422. end;
  423. { emit bit test operation }
  424. emit_bit_test_reg_reg(exprasmlist,hr,hr2,location.register);
  425. { free the resources }
  426. case right.location.loc of
  427. LOC_REGISTER,
  428. LOC_CREGISTER :
  429. rg.ungetregisterint(exprasmlist,right.location.register);
  430. LOC_CONSTANT ,
  431. LOC_CREFERENCE,
  432. LOC_REFERENCE :
  433. rg.ungetregisterint(exprasmlist,hr2);
  434. else
  435. internalerror(2002032210);
  436. end;
  437. { free bitnumber register }
  438. cg.free_scratch_reg(exprasmlist,hr);
  439. end;
  440. end
  441. else
  442. {************************** NOT SMALL SET ********************}
  443. begin
  444. if right.location.loc=LOC_CONSTANT then
  445. begin
  446. { this section has not been tested! }
  447. { can it actually occur currently? CEC }
  448. internalerror(20020610);
  449. getlabel(l);
  450. getlabel(l2);
  451. { Is this treated in firstpass ?? }
  452. if left.nodetype=ordconstn then
  453. begin
  454. hr:=rg.getregisterint(exprasmlist);
  455. left.location.loc:=LOC_REGISTER;
  456. left.location.size:=OS_INT;
  457. left.location.register:=hr;
  458. cg.a_load_const_reg(exprasmlist,OS_INT,
  459. tordconstnode(left).value,hr);
  460. end;
  461. case left.location.loc of
  462. LOC_REGISTER,
  463. LOC_CREGISTER:
  464. begin
  465. hr:=rg.makeregsize(left.location.register,OS_INT);
  466. cg.a_load_reg_reg(exprasmlist,left.location.size,left.location.register,hr);
  467. cg.a_cmp_const_reg_label(exprasmlist,OS_INT,OC_BE,31,hr,l);
  468. { reset of result register is done in routine entry }
  469. cg.a_jmp_always(exprasmlist,l2);
  470. cg.a_label(exprasmlist,l);
  471. { We have to load the value into a register because
  472. btl does not accept values only refs or regs (PFV) }
  473. hr2:=rg.getregisterint(exprasmlist);
  474. cg.a_load_const_reg(exprasmlist,OS_INT,right.location.value,hr2);
  475. end;
  476. else
  477. begin
  478. cg.a_cmp_const_ref_label(exprasmlist,OS_8,OC_BE,31,left.location.reference,l);
  479. cg.a_jmp_always(exprasmlist,l2);
  480. cg.a_label(exprasmlist,l);
  481. location_release(exprasmlist,left.location);
  482. hr:=rg.getregisterint(exprasmlist);
  483. cg.a_load_ref_reg(exprasmlist,OS_32,left.location.reference,hr);
  484. { We have to load the value into a register because
  485. btl does not accept values only refs or regs (PFV) }
  486. hr2:=rg.getregisterint(exprasmlist);
  487. cg.a_load_const_reg(exprasmlist,OS_INT,
  488. right.location.value,hr2);
  489. end;
  490. end;
  491. { emit bit test operation }
  492. emit_bit_test_reg_reg(exprasmlist,hr,hr2,location.register);
  493. rg.ungetregisterint(exprasmlist,hr2);
  494. if not (left.location.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  495. rg.ungetregisterint(exprasmlist,hr);
  496. cg.a_label(exprasmlist,l2);
  497. end { of right.location.loc=LOC_CONSTANT }
  498. { do search in a normal set which could have >32 elementsm
  499. but also used if the left side contains higher values > 32 }
  500. else if left.nodetype=ordconstn then
  501. begin
  502. getlabel(l2);
  503. getlabel(l);
  504. { use location.register as scratch register here }
  505. inc(right.location.reference.offset,tordconstnode(left).value shr 3);
  506. cg.a_load_ref_reg(exprasmlist, OS_8, right.location.reference, location.register);
  507. cg.a_op_const_reg(exprasmlist, OP_AND,1 shl (tordconstnode(left).value and 7),
  508. location.register);
  509. cg.a_cmp_const_reg_label(exprasmlist,OS_8, OC_NE,0,location.register,l2);
  510. cg.a_load_const_reg(exprasmlist, OS_INT,0, location.register);
  511. cg.a_jmp_always(exprasmlist,l);
  512. cg.a_label(exprasmlist,l2);
  513. cg.a_load_const_reg(exprasmlist, OS_INT,1, location.register);
  514. {emit_const_ref(A_TEST,S_B,1 shl (tordconstnode(left).value and 7),right.location.reference);}
  515. cg.a_label(exprasmlist,l);
  516. location_release(exprasmlist,right.location);
  517. end
  518. else
  519. begin
  520. if (left.location.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  521. pleftreg:=rg.makeregsize(left.location.register,OS_INT)
  522. else
  523. pleftreg:=rg.getregisterint(exprasmlist);
  524. cg.a_load_loc_reg(exprasmlist,left.location,pleftreg);
  525. location_freetemp(exprasmlist,left.location);
  526. location_release(exprasmlist,left.location);
  527. cg.a_param_reg(exprasmlist,OS_8,pleftreg,paramanager.getintparaloc(2));
  528. cg.a_param_ref(exprasmlist,OS_ADDR,right.location.reference,paramanager.getintparaloc(1));
  529. cg.a_call_name(exprasmlist,'FPC_SET_IN_BYTE');
  530. { result of value is always one full register }
  531. cg.a_load_reg_reg(exprasmlist,OS_INT,ACCUMULATOR,location.register);
  532. { release the allocated register }
  533. if not (left.location.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  534. rg.ungetregisterint(exprasmlist,pleftreg);
  535. location_release(exprasmlist,right.location);
  536. end;
  537. end;
  538. end;
  539. location_freetemp(exprasmlist,right.location);
  540. end;
  541. begin
  542. csetelementnode:=tcgsetelementnode;
  543. cinnode:=tcginnode;
  544. end.
  545. {
  546. $Log$
  547. Revision 1.6 2002-07-20 11:57:54 florian
  548. * types.pas renamed to defbase.pas because D6 contains a types
  549. unit so this would conflicts if D6 programms are compiled
  550. + Willamette/SSE2 instructions to assembler added
  551. Revision 1.5 2002/07/11 14:41:28 florian
  552. * start of the new generic parameter handling
  553. Revision 1.4 2002/07/07 10:16:29 florian
  554. * problems with last commit fixed
  555. Revision 1.3 2002/07/06 20:19:25 carl
  556. + generic set handling
  557. Revision 1.2 2002/07/01 16:23:53 peter
  558. * cg64 patch
  559. * basics for currency
  560. * asnode updates for class and interface (not finished)
  561. Revision 1.1 2002/06/16 08:14:56 carl
  562. + generic sets
  563. }