tgeni386.pas 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733
  1. {
  2. $Id$
  3. Copyright (C) 1993-98 by Florian Klaempfl
  4. This unit handles the temporary variables stuff for i386
  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 tgeni386;
  19. interface
  20. uses
  21. cobjects,globals,tree,hcodegen,verbose,files,aasm
  22. {$ifdef i386}
  23. ,i386
  24. {$endif}
  25. ;
  26. type
  27. tregisterset = set of tregister;
  28. tpushed = array[R_EAX..R_MM6] of boolean;
  29. const
  30. usablereg32 : byte = 4;
  31. {$ifdef SUPPORT_MMX}
  32. usableregmmx : byte = 8;
  33. {$endif SUPPORT_MMX}
  34. function getregister32 : tregister;
  35. procedure ungetregister32(r : tregister);
  36. {$ifdef SUPPORT_MMX}
  37. function getregistermmx : tregister;
  38. procedure ungetregistermmx(r : tregister);
  39. {$endif SUPPORT_MMX}
  40. procedure ungetregister(r : tregister);
  41. procedure cleartempgen;
  42. { generates temporary variables }
  43. procedure resettempgen;
  44. procedure setfirsttemp(l : longint);
  45. function gettempsize : longint;
  46. function gettempofsize(size : longint) : longint;
  47. { special call for inlined procedures }
  48. function gettempofsizepersistant(size : longint) : longint;
  49. { for parameter func returns }
  50. procedure persistanttemptonormal(pos : longint);
  51. procedure ungettemp(pos : longint;size : longint);
  52. procedure ungetpersistanttemp(pos : longint;size : longint);
  53. procedure gettempofsizereference(l : longint;var ref : treference);
  54. function istemp(const ref : treference) : boolean;
  55. procedure ungetiftemp(const ref : treference);
  56. procedure del_reference(const ref : treference);
  57. procedure del_locref(const location : tlocation);
  58. { pushs and restores registers }
  59. procedure pushusedregisters(var pushed : tpushed;b : byte);
  60. procedure popusedregisters(const pushed : tpushed);
  61. var
  62. unused,usableregs : tregisterset;
  63. c_usableregs : longint;
  64. { uses only 1 byte while a set uses in FPC 32 bytes }
  65. usedinproc : byte;
  66. { count, how much a register must be pushed if it is used as register }
  67. { variable }
  68. {$ifdef SUPPORT_MMX}
  69. reg_pushes : array[R_EAX..R_MM6] of longint;
  70. is_reg_var : array[R_EAX..R_MM6] of boolean;
  71. {$else SUPPORT_MMX}
  72. reg_pushes : array[R_EAX..R_EDI] of longint;
  73. is_reg_var : array[R_EAX..R_EDI] of boolean;
  74. {$endif SUPPORT_MMX}
  75. implementation
  76. procedure pushusedregisters(var pushed : tpushed;b : byte);
  77. var
  78. r : tregister;
  79. {$ifdef SUPPORT_MMX}
  80. hr : preference;
  81. {$endif SUPPORT_MMX}
  82. begin
  83. usedinproc:=usedinproc or b;
  84. for r:=R_EAX to R_EBX do
  85. begin
  86. pushed[r]:=false;
  87. { if the register is used by the calling subroutine }
  88. if ((b and ($80 shr byte(r)))<>0) then
  89. begin
  90. { and is present in use }
  91. if not(r in unused) then
  92. begin
  93. { then save it }
  94. exprasmlist^.concat(new(pai386,op_reg(A_PUSH,S_L,r)));
  95. { here was a big problem !!!!!}
  96. { you cannot do that for a register that is
  97. globally assigned to a var
  98. this also means that you must push it much more
  99. often, but there must be a better way
  100. maybe by putting the value back to the stack !! }
  101. if not(is_reg_var[r]) then
  102. unused:=unused+[r];
  103. pushed[r]:=true;
  104. end;
  105. end;
  106. end;
  107. {$ifdef SUPPORT_MMX}
  108. for r:=R_MM0 to R_MM6 do
  109. begin
  110. pushed[r]:=false;
  111. { if the mmx register is in use, save it }
  112. if not(r in unused) then
  113. begin
  114. exprasmlist^.concat(new(pai386,op_const_reg(
  115. A_SUB,S_L,8,R_ESP)));
  116. new(hr);
  117. reset_reference(hr^);
  118. hr^.base:=R_ESP;
  119. exprasmlist^.concat(new(pai386,op_reg_ref(
  120. A_MOVQ,S_NO,r,hr)));
  121. if not(is_reg_var[r]) then
  122. unused:=unused+[r];
  123. pushed[r]:=true;
  124. end;
  125. end;
  126. {$endif SUPPORT_MMX}
  127. end;
  128. procedure popusedregisters(const pushed : tpushed);
  129. var
  130. r : tregister;
  131. {$ifdef SUPPORT_MMX}
  132. hr : preference;
  133. {$endif SUPPORT_MMX}
  134. begin
  135. { restore in reverse order: }
  136. {$ifdef SUPPORT_MMX}
  137. for r:=R_MM6 downto R_MM0 do
  138. begin
  139. if pushed[r] then
  140. begin
  141. new(hr);
  142. reset_reference(hr^);
  143. hr^.base:=R_ESP;
  144. exprasmlist^.concat(new(pai386,op_ref_reg(
  145. A_MOVQ,S_NO,hr,r)));
  146. exprasmlist^.concat(new(pai386,op_const_reg(
  147. A_ADD,S_L,8,R_ESP)));
  148. unused:=unused-[r];
  149. end;
  150. end;
  151. {$endif SUPPORT_MMX}
  152. for r:=R_EBX downto R_EAX do
  153. if pushed[r] then
  154. begin
  155. exprasmlist^.concat(new(pai386,op_reg(A_POP,S_L,r)));
  156. unused:=unused-[r];
  157. end;
  158. end;
  159. procedure ungetregister(r : tregister);
  160. begin
  161. if r in [R_EAX,R_ECX,R_EDX,R_EBX,R_ESP,R_EBP,R_ESI,R_EDI] then
  162. ungetregister32(r)
  163. else if r in [R_AX,R_CX,R_DX,R_BX,R_SP,R_BP,R_SI,R_DI] then
  164. ungetregister32(reg16toreg32(r))
  165. else if r in [R_AL,R_BL,R_CL,R_DL] then
  166. ungetregister32(reg8toreg32(r))
  167. {$ifdef SUPPORT_MMX}
  168. else if r in [R_MM0..R_MM6] then
  169. ungetregistermmx(r)
  170. {$endif SUPPORT_MMX}
  171. else internalerror(18);
  172. end;
  173. procedure ungetregister32(r : tregister);
  174. begin
  175. if cs_maxoptimieren in aktswitches then
  176. begin
  177. { takes much time }
  178. if not(r in usableregs) then
  179. exit;
  180. unused:=unused+[r];
  181. inc(usablereg32);
  182. end
  183. else
  184. begin
  185. if not(r in [R_EAX,R_EBX,R_ECX,R_EDX]) then
  186. exit;
  187. unused:=unused+[r];
  188. inc(usablereg32);
  189. end;
  190. {$ifdef REGALLOC}
  191. exprasmlist^.concat(new(pairegdealloc,init(r)));
  192. {$endif REGALLOC}
  193. end;
  194. {$ifdef SUPPORT_MMX}
  195. function getregistermmx : tregister;
  196. var
  197. r : tregister;
  198. begin
  199. dec(usableregmmx);
  200. for r:=R_MM0 to R_MM6 do
  201. if r in unused then
  202. begin
  203. unused:=unused-[r];
  204. usedinproc:=usedinproc or ($80 shr byte(R_EAX));
  205. getregistermmx:=r;
  206. exit;
  207. end;
  208. internalerror(10);
  209. end;
  210. procedure ungetregistermmx(r : tregister);
  211. begin
  212. if cs_maxoptimieren in aktswitches then
  213. begin
  214. { takes much time }
  215. if not(r in usableregs) then
  216. exit;
  217. unused:=unused+[r];
  218. inc(usableregmmx);
  219. end
  220. else
  221. begin
  222. unused:=unused+[r];
  223. inc(usableregmmx);
  224. end;
  225. end;
  226. {$endif SUPPORT_MMX}
  227. procedure del_reference(const ref : treference);
  228. begin
  229. if ref.isintvalue then
  230. exit;
  231. ungetregister32(ref.base);
  232. ungetregister32(ref.index);
  233. { ref.segment:=R_DEFAULT_SEG; }
  234. end;
  235. procedure del_locref(const location : tlocation);
  236. begin
  237. if (location.loc<>loc_mem) and (location.loc<>loc_reference) then
  238. exit;
  239. if location.reference.isintvalue then
  240. exit;
  241. ungetregister32(location.reference.base);
  242. ungetregister32(location.reference.index);
  243. { ref.segment:=R_DEFAULT_SEG; }
  244. end;
  245. function getregister32 : tregister;
  246. begin
  247. dec(usablereg32);
  248. if R_EAX in unused then
  249. begin
  250. unused:=unused-[R_EAX];
  251. usedinproc:=usedinproc or ($80 shr byte(R_EAX));
  252. getregister32:=R_EAX;
  253. end
  254. else if R_EDX in unused then
  255. begin
  256. unused:=unused-[R_EDX];
  257. usedinproc:=usedinproc or ($80 shr byte(R_EDX));
  258. getregister32:=R_EDX;
  259. end
  260. else if R_EBX in unused then
  261. begin
  262. unused:=unused-[R_EBX];
  263. usedinproc:=usedinproc or ($80 shr byte(R_EBX));
  264. getregister32:=R_EBX;
  265. end
  266. else if R_ECX in unused then
  267. begin
  268. unused:=unused-[R_ECX];
  269. usedinproc:=usedinproc or ($80 shr byte(R_ECX));
  270. getregister32:=R_ECX;
  271. end
  272. else internalerror(10);
  273. end;
  274. procedure cleartempgen;
  275. begin
  276. unused:=usableregs;
  277. usablereg32:=c_usableregs;
  278. end;
  279. type
  280. pfreerecord = ^tfreerecord;
  281. tfreerecord = record
  282. next : pfreerecord;
  283. pos : longint;
  284. size : longint;
  285. persistant : boolean; { used for inlined procedures }
  286. {$ifdef EXTDEBUG}
  287. line : longint;
  288. {$endif}
  289. end;
  290. var
  291. tmpfreelist : pfreerecord;
  292. templist : pfreerecord;
  293. lastoccupied : longint;
  294. firsttemp, maxtemp : longint;
  295. procedure resettempgen;
  296. var
  297. hp : pfreerecord;
  298. begin
  299. while assigned(tmpfreelist) do
  300. begin
  301. hp:=tmpfreelist;
  302. tmpfreelist:=hp^.next;
  303. dispose(hp);
  304. end;
  305. while assigned(templist) do
  306. begin
  307. {$ifdef EXTDEBUG}
  308. Comment(V_Warning,'temporary assignment of size '
  309. +tostr(templist^.size)+' from line '+tostr(templist^.line)+
  310. +' at pos '+tostr(templist^.pos)+
  311. ' not freed at the end of the procedure');
  312. {$endif}
  313. hp:=templist;
  314. templist:=hp^.next;
  315. {$ifndef EXTDEBUG}
  316. dispose(hp);
  317. {$endif not EXTDEBUG}
  318. end;
  319. templist:=nil;
  320. tmpfreelist:=nil;
  321. firsttemp:=0;
  322. maxtemp:=0;
  323. lastoccupied:=0;
  324. end;
  325. procedure setfirsttemp(l : longint);
  326. begin
  327. { generates problems
  328. if (l mod 4 <> 0) then dec(l,l mod 4);}
  329. firsttemp:=l;
  330. maxtemp := l;
  331. lastoccupied:=l;
  332. end;
  333. function gettempofsize(size : longint) : longint;
  334. var
  335. tl,last,hp : pfreerecord;
  336. ofs : longint;
  337. begin
  338. { this code comes from the heap management of FPC ... }
  339. if (size mod 4)<>0 then
  340. size:=size+(4-(size mod 4));
  341. ofs:=0;
  342. if assigned(tmpfreelist) then
  343. begin
  344. last:=nil;
  345. hp:=tmpfreelist;
  346. while assigned(hp) do
  347. begin
  348. { first fit }
  349. if hp^.size>=size then
  350. begin
  351. ofs:=hp^.pos;
  352. if hp^.pos-size < maxtemp then
  353. maxtemp := hp^.size-size;
  354. { the whole block is needed ? }
  355. if hp^.size>size then
  356. begin
  357. hp^.size:=hp^.size-size;
  358. hp^.pos:=hp^.pos-size;
  359. end
  360. else
  361. begin
  362. if assigned(last) then
  363. last^.next:=hp^.next
  364. else
  365. tmpfreelist:=nil;
  366. dispose(hp);
  367. end;
  368. break;
  369. end;
  370. last:=hp;
  371. hp:=hp^.next;
  372. end;
  373. end;
  374. { nothing free is big enough : expand temp }
  375. if ofs=0 then
  376. begin
  377. ofs:=lastoccupied-size;
  378. lastoccupied:=lastoccupied-size;
  379. if lastoccupied < maxtemp then
  380. maxtemp := lastoccupied;
  381. end;
  382. new(tl);
  383. tl^.pos:=ofs;
  384. tl^.size:=size;
  385. tl^.next:=templist;
  386. tl^.persistant:=false;
  387. templist:=tl;
  388. {$ifdef EXTDEBUG}
  389. tl^.line:=current_module^.current_inputfile^.line_no;
  390. {$endif}
  391. gettempofsize:=ofs;
  392. end;
  393. function gettempofsizepersistant(size : longint) : longint;
  394. var
  395. l : longint;
  396. begin
  397. l:=gettempofsize(size);
  398. templist^.persistant:=true;
  399. {$ifdef EXTDEBUG}
  400. Comment(V_Debug,'temp managment : call to gettempofsizepersistant()'+
  401. ' with size '+tostr(size)+' returned '+tostr(l));
  402. {$endif}
  403. gettempofsizepersistant:=l;
  404. end;
  405. function gettempsize : longint;
  406. begin
  407. { align local data to dwords }
  408. if (maxtemp mod 4)<>0 then
  409. dec(maxtemp,4+(maxtemp mod 4));
  410. gettempsize:=-maxtemp;
  411. end;
  412. procedure gettempofsizereference(l : longint;var ref : treference);
  413. begin
  414. { do a reset, because the reference isn't used }
  415. reset_reference(ref);
  416. ref.offset:=gettempofsize(l);
  417. ref.base:=procinfo.framepointer;
  418. end;
  419. function istemp(const ref : treference) : boolean;
  420. begin
  421. { ref.index = R_NO was missing
  422. led to problems with local arrays
  423. with lower bound > 0 (PM) }
  424. istemp:=((ref.base=procinfo.framepointer) and
  425. (ref.offset<firsttemp) and (ref.index=R_NO));
  426. end;
  427. procedure persistanttemptonormal(pos : longint);
  428. var hp : pfreerecord;
  429. begin
  430. hp:=templist;
  431. while assigned(hp) do
  432. if (hp^.persistant) and (hp^.pos=pos) then
  433. begin
  434. {$ifdef EXTDEBUG}
  435. Comment(V_Debug,'temp managment : persistanttemptonormal()'+
  436. ' at pos '+tostr(pos)+ ' found !');
  437. {$endif}
  438. hp^.persistant:=false;
  439. exit;
  440. end
  441. else
  442. hp:=hp^.next;
  443. {$ifdef EXTDEBUG}
  444. Comment(V_Debug,'temp managment problem : persistanttemptonormal()'+
  445. ' at pos '+tostr(pos)+ ' not found !');
  446. {$endif}
  447. end;
  448. procedure ungetpersistanttemp(pos : longint;size : longint);
  449. var
  450. prev,hp : pfreerecord;
  451. begin
  452. ungettemp(pos,size);
  453. prev:=nil;
  454. hp:=templist;
  455. while assigned(hp) do
  456. begin
  457. if (hp^.persistant) and (hp^.pos=pos) and (hp^.size=size) then
  458. begin
  459. if assigned(prev) then
  460. prev^.next:=hp^.next
  461. else
  462. templist:=hp^.next;
  463. {$ifdef EXTDEBUG}
  464. Comment(V_Debug,'temp managment : ungetpersistanttemp()'+
  465. ' at pos '+tostr(pos)+ ' found !');
  466. {$endif}
  467. dispose(hp);
  468. exit;
  469. end;
  470. prev:=hp;
  471. hp:=hp^.next;
  472. end;
  473. {$ifdef EXTDEBUG}
  474. Comment(V_Warning,'temp managment problem : ungetpersistanttemp()'+
  475. ' at pos '+tostr(pos)+ ' not found !');
  476. {$endif}
  477. end;
  478. procedure ungettemp(pos : longint;size : longint);
  479. var
  480. hp,newhp : pfreerecord;
  481. begin
  482. if (size mod 4)<>0 then
  483. size:=size+(4-(size mod 4));
  484. if size = 0 then
  485. exit;
  486. if pos<=lastoccupied then
  487. if pos=lastoccupied then
  488. begin
  489. lastoccupied:=pos+size;
  490. hp:=tmpfreelist;
  491. newhp:=nil;
  492. while assigned(hp) do
  493. begin
  494. { conneting a free block }
  495. if hp^.pos=lastoccupied then
  496. begin
  497. if assigned(newhp) then newhp^.next:=nil
  498. else tmpfreelist:=nil;
  499. lastoccupied:=lastoccupied+hp^.size;
  500. dispose(hp);
  501. break;
  502. end;
  503. newhp:=hp;
  504. hp:=hp^.next;
  505. end;
  506. end
  507. else
  508. begin
  509. {$ifdef EXTDEBUG}
  510. Comment(V_Warning,'temp managment problem : ungettemp()'+
  511. 'pos '+tostr(pos)+ '< lastoccupied '+tostr(lastoccupied)+' !');
  512. {$endif}
  513. end
  514. else
  515. begin
  516. new(newhp);
  517. { size can be allways set }
  518. newhp^.size:=size;
  519. newhp^.pos := pos;
  520. { if there is no free list }
  521. if not assigned(tmpfreelist) then
  522. begin
  523. { then generate one }
  524. tmpfreelist:=newhp;
  525. newhp^.next:=nil;
  526. exit;
  527. end;
  528. { search the position to insert }
  529. hp:=tmpfreelist;
  530. while assigned(hp) do
  531. begin
  532. { conneting two blocks ? }
  533. if hp^.pos+hp^.size=pos then
  534. begin
  535. inc(hp^.size,size);
  536. dispose(newhp);
  537. break;
  538. end
  539. { if the end is reached, then concat }
  540. else if hp^.next=nil then
  541. begin
  542. hp^.next:=newhp;
  543. newhp^.next:=nil;
  544. break;
  545. end
  546. { falls der n„chste Zeiger gr”áer ist, dann }
  547. { Einh„ngen }
  548. else if hp^.next^.pos<=pos+size then
  549. begin
  550. { concat two blocks ? }
  551. if pos+size=hp^.next^.pos then
  552. begin
  553. newhp^.next:=hp^.next^.next;
  554. inc(newhp^.size,hp^.next^.size);
  555. dispose(hp^.next);
  556. hp^.next:=newhp;
  557. end
  558. else
  559. begin
  560. newhp^.next:=hp^.next;
  561. hp^.next:=newhp;
  562. end;
  563. break;
  564. end;
  565. hp:=hp^.next;
  566. end;
  567. end;
  568. end;
  569. procedure ungetiftemp(const ref : treference);
  570. var
  571. tl,prev : pfreerecord;
  572. begin
  573. if istemp(ref) then
  574. begin
  575. prev:=nil;
  576. tl:=templist;
  577. while assigned(tl) do
  578. begin
  579. { no release of persistant blocks this way!! }
  580. if tl^.persistant then
  581. if (ref.offset>=tl^.pos) and
  582. (ref.offset<tl^.pos+tl^.size) then
  583. begin
  584. {$ifdef EXTDEBUG}
  585. Comment(V_Debug,'temp '+
  586. ' at pos '+tostr(ref.offset)+ ' not released because persistant !');
  587. {$endif}
  588. exit;
  589. end;
  590. if (ref.offset=tl^.pos) then
  591. begin
  592. ungettemp(ref.offset,tl^.size);
  593. {$ifdef TEMPDEBUG}
  594. Comment(V_Debug,'temp managment : ungettemp()'+
  595. ' at pos '+tostr(tl^.pos)+ ' found !');
  596. {$endif}
  597. if assigned(prev) then
  598. prev^.next:=tl^.next
  599. else
  600. templist:=tl^.next;
  601. dispose(tl);
  602. exit;
  603. end
  604. else
  605. begin
  606. prev:=tl;
  607. tl:=tl^.next;
  608. end;
  609. end;
  610. {$ifdef EXTDEBUG}
  611. Comment(V_Warning,'Internal: temp managment problem : '+
  612. 'temp not found for release at offset '+tostr(ref.offset));
  613. {$endIf}
  614. end;
  615. end;
  616. begin
  617. usableregs:=[R_EAX,R_EBX,R_ECX,R_EDX];
  618. {$ifdef SUPPORT_MMX}
  619. usableregs:=usableregs+[R_MM0..R_MM6];
  620. {$endif SUPPORT_MMX}
  621. c_usableregs:=4;
  622. tmpfreelist:=nil;
  623. templist:=nil;
  624. end.
  625. {
  626. $Log$
  627. Revision 1.6 1998-05-20 09:42:38 pierre
  628. + UseTokenInfo now default
  629. * unit in interface uses and implementation uses gives error now
  630. * only one error for unknown symbol (uses lastsymknown boolean)
  631. the problem came from the label code !
  632. + first inlined procedures and function work
  633. (warning there might be allowed cases were the result is still wrong !!)
  634. * UseBrower updated gives a global list of all position of all used symbols
  635. with switch -gb
  636. Revision 1.5 1998/05/11 13:07:58 peter
  637. + $ifdef NEWPPU for the new ppuformat
  638. + $define GDB not longer required
  639. * removed all warnings and stripped some log comments
  640. * no findfirst/findnext anymore to remove smartlink *.o files
  641. Revision 1.4 1998/04/29 10:34:08 pierre
  642. + added some code for ansistring (not complete nor working yet)
  643. * corrected operator overloading
  644. * corrected nasm output
  645. + started inline procedures
  646. + added starstarn : use ** for exponentiation (^ gave problems)
  647. + started UseTokenInfo cond to get accurate positions
  648. Revision 1.3 1998/04/09 22:16:36 florian
  649. * problem with previous REGALLOC solved
  650. * improved property support
  651. Revision 1.2 1998/04/09 15:46:39 florian
  652. + register allocation tracing stuff added
  653. }