temp_gen.pas 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727
  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 temp_gen;
  19. interface
  20. uses
  21. {$ifdef i386}
  22. {$ifndef OLDASM}
  23. i386base,i386asm,
  24. {$else}
  25. i386,
  26. {$endif}
  27. {$endif i386}
  28. {$ifdef m68k}
  29. m68k,
  30. {$endif m68k}
  31. cobjects,globals,tree,hcodegen,verbose,files,aasm;
  32. type
  33. { this saves some memory }
  34. {$ifdef TEST_MINENUMSIZE}
  35. {$ifdef FPC}
  36. {$minenumsize 1}
  37. {$endif FPC}
  38. {$endif TEST_MINENUMSIZE}
  39. ttemptype = (tt_normal,tt_ansistring,tt_widestring);
  40. {$ifdef TEST_MINENUMSIZE}
  41. {$ifdef FPC}
  42. {$minenumsize default}
  43. {$endif FPC}
  44. {$endif TEST_MINENUMSIZE}
  45. { generates temporary variables }
  46. procedure resettempgen;
  47. procedure setfirsttemp(l : longint);
  48. function gettempsize : longint;
  49. function gettempofsize(size : longint) : longint;
  50. { special call for inlined procedures }
  51. function gettempofsizepersistant(size : longint) : longint;
  52. { for parameter func returns }
  53. procedure persistanttemptonormal(pos : longint);
  54. {procedure ungettemp(pos : longint;size : longint);}
  55. procedure ungetpersistanttemp(pos : longint;size : longint);
  56. procedure gettempofsizereference(l : longint;var ref : treference);
  57. procedure gettempslotreference(slottype : ttemptype;var ref : treference);
  58. function istemp(const ref : treference) : boolean;
  59. procedure ungetiftemp(const ref : treference);
  60. function ungetiftempansi(const ref : treference) : boolean;
  61. procedure gettempansistringreference(var ref : treference);
  62. type
  63. pfreerecord = ^tfreerecord;
  64. tfreerecord = record
  65. next : pfreerecord;
  66. pos : longint;
  67. size : longint;
  68. persistant : boolean; { used for inlined procedures }
  69. is_ansistring : boolean;
  70. is_freeansistring : boolean;
  71. temptype : ttemptype;
  72. {$ifdef EXTDEBUG}
  73. posinfo,releaseposinfo : tfileposinfo;
  74. {$endif}
  75. end;
  76. var
  77. tempansilist : pfreerecord;
  78. implementation
  79. uses
  80. scanner,systems
  81. {$ifdef i386}
  82. ,cgai386
  83. {$endif i386}
  84. {$ifdef m68k}
  85. ,cga68k
  86. {$endif m68k}
  87. ;
  88. var
  89. { contains all free temps }
  90. tmpfreelist : pfreerecord;
  91. { contains all used temps }
  92. templist : pfreerecord;
  93. { contains the slots for ansi/wide string temps }
  94. reftempslots : pfreerecord;
  95. {$ifdef EXTDEBUG}
  96. tempfreedlist : pfreerecord;
  97. {$endif}
  98. lastoccupied : longint;
  99. firsttemp, maxtemp : longint;
  100. procedure resettempgen;
  101. var
  102. hp : pfreerecord;
  103. begin
  104. while assigned(tmpfreelist) do
  105. begin
  106. hp:=tmpfreelist;
  107. tmpfreelist:=hp^.next;
  108. dispose(hp);
  109. end;
  110. while assigned(templist) do
  111. begin
  112. {$ifdef EXTDEBUG}
  113. Comment(V_Warning,'temporary assignment of size '
  114. +tostr(templist^.size)+' from pos '+tostr(templist^.posinfo.line)
  115. +':'+tostr(templist^.posinfo.column)
  116. +' at pos '+tostr(templist^.pos)+
  117. ' not freed at the end of the procedure');
  118. {$endif}
  119. hp:=templist;
  120. templist:=hp^.next;
  121. dispose(hp);
  122. end;
  123. {$ifdef EXTDEBUG}
  124. while assigned(tempfreedlist) do
  125. begin
  126. hp:=tempfreedlist;
  127. tempfreedlist:=hp^.next;
  128. dispose(hp);
  129. end;
  130. {$endif}
  131. while assigned(tempansilist) do
  132. begin
  133. hp:=tempansilist;
  134. {$ifdef EXTDEBUG}
  135. if not hp^.is_freeansistring then
  136. Comment(V_Warning,'temporary ANSI assignment of size '
  137. +tostr(hp^.size)+' from pos '+tostr(hp^.posinfo.line)
  138. +':'+tostr(hp^.posinfo.column)
  139. +' at pos '+tostr(hp^.pos)+
  140. ' not freed at the end of the procedure');
  141. {$endif}
  142. tempansilist:=hp^.next;
  143. dispose(hp);
  144. end;
  145. firsttemp:=0;
  146. maxtemp:=0;
  147. lastoccupied:=0;
  148. end;
  149. procedure setfirsttemp(l : longint);
  150. begin
  151. { this is a negative value normally }
  152. if l < 0 then
  153. Begin
  154. if odd(l) then
  155. Dec(l);
  156. end
  157. else
  158. Begin
  159. if odd(l) then
  160. Inc(l);
  161. end;
  162. firsttemp:=l;
  163. maxtemp:=l;
  164. lastoccupied:=l;
  165. end;
  166. function gettempofsize(size : longint) : longint;
  167. var
  168. tl,last,hp : pfreerecord;
  169. ofs : longint;
  170. begin
  171. { this code comes from the heap management of FPC ... }
  172. if (size mod 4)<>0 then
  173. size:=size+(4-(size mod 4));
  174. ofs:=0;
  175. if assigned(tmpfreelist) then
  176. begin
  177. last:=nil;
  178. hp:=tmpfreelist;
  179. while assigned(hp) do
  180. begin
  181. { first fit }
  182. if hp^.size>=size then
  183. begin
  184. ofs:=hp^.pos;
  185. { the whole block is needed ? }
  186. if hp^.size>size then
  187. begin
  188. dec(hp^.size,size);
  189. { the value is <0 so we need to add the size
  190. instead of sub (PFV) }
  191. inc(hp^.pos,size);
  192. end
  193. else
  194. begin
  195. if assigned(last) then
  196. last^.next:=hp^.next
  197. else
  198. tmpfreelist:=nil;
  199. dispose(hp);
  200. end;
  201. break;
  202. end;
  203. last:=hp;
  204. hp:=hp^.next;
  205. end;
  206. end;
  207. { nothing free is big enough : expand temp }
  208. if ofs=0 then
  209. begin
  210. ofs:=lastoccupied-size;
  211. lastoccupied:=lastoccupied-size;
  212. if lastoccupied < maxtemp then
  213. maxtemp := lastoccupied;
  214. end;
  215. new(tl);
  216. tl^.pos:=ofs;
  217. tl^.size:=size;
  218. tl^.next:=templist;
  219. tl^.persistant:=false;
  220. tl^.temptype:=tt_normal;
  221. templist:=tl;
  222. {$ifdef EXTDEBUG}
  223. tl^.posinfo:=aktfilepos;
  224. {$endif}
  225. exprasmlist^.concat(new(paitempalloc,alloc(ofs,size)));
  226. gettempofsize:=ofs;
  227. end;
  228. function gettempofsizepersistant(size : longint) : longint;
  229. var
  230. l : longint;
  231. begin
  232. l:=gettempofsize(size);
  233. templist^.persistant:=true;
  234. {$ifdef EXTDEBUG}
  235. Comment(V_Debug,'temp managment : call to gettempofsizepersistant()'+
  236. ' with size '+tostr(size)+' returned '+tostr(l));
  237. {$endif}
  238. gettempofsizepersistant:=l;
  239. end;
  240. function gettempsize : longint;
  241. begin
  242. {$ifdef i386}
  243. { align local data to dwords }
  244. if (maxtemp mod 4)<>0 then
  245. dec(maxtemp,4+(maxtemp mod 4));
  246. {$endif}
  247. {$ifdef m68k}
  248. { we only push words and we want to stay on }
  249. { even stack addresses }
  250. { maxtemp is negative }
  251. if (maxtemp mod 2)<>0 then
  252. dec(maxtemp);
  253. {$endif}
  254. gettempsize:=-maxtemp;
  255. end;
  256. procedure gettempofsizereference(l : longint;var ref : treference);
  257. begin
  258. { do a reset, because the reference isn't used }
  259. reset_reference(ref);
  260. ref.offset:=gettempofsize(l);
  261. ref.base:=procinfo.framepointer;
  262. end;
  263. function gettempansioffset : longint;
  264. var
  265. ofs : longint;
  266. tl : pfreerecord;
  267. begin
  268. tl:=tempansilist;
  269. while assigned(tl) do
  270. begin
  271. if tl^.is_freeansistring then
  272. break;
  273. tl:=tl^.next;
  274. end;
  275. if assigned(tl) then
  276. begin
  277. tl^.is_freeansistring:=false;
  278. ofs:=tl^.pos;
  279. end
  280. else
  281. begin
  282. if lastoccupied<>maxtemp then
  283. begin
  284. { we cannnot use already used temp
  285. so we need to convert that space into
  286. a tempfreeitem ! }
  287. new(tl);
  288. tl^.pos:=maxtemp;
  289. tl^.size:=lastoccupied-maxtemp;
  290. tl^.next:=tmpfreelist;
  291. lastoccupied:=maxtemp;
  292. tl^.persistant:=false;
  293. tl^.is_ansistring:=false;
  294. tl^.is_freeansistring:=false;
  295. tmpfreelist:=tl;
  296. end;
  297. ofs:=maxtemp-target_os.size_of_pointer;
  298. maxtemp:=maxtemp-target_os.size_of_pointer;
  299. new(tl);
  300. tl^.pos:=ofs;
  301. tl^.size:=target_os.size_of_pointer;
  302. tl^.next:=tempansilist;
  303. tl^.persistant:=false;
  304. tl^.is_ansistring:=true;
  305. tl^.is_freeansistring:=false;
  306. tempansilist:=tl;
  307. end;
  308. gettempansioffset:=ofs;
  309. exprasmlist^.concat(new(paitempalloc,alloc(tl^.pos,tl^.size)));
  310. end;
  311. procedure gettempansistringreference(var ref : treference);
  312. begin
  313. { do a reset, because the reference isn't used }
  314. reset_reference(ref);
  315. ref.offset:=gettempansioffset;
  316. ref.base:=procinfo.framepointer;
  317. end;
  318. function ungetiftempansi(const ref : treference) : boolean;
  319. var
  320. tl : pfreerecord;
  321. begin
  322. ungetiftempansi:=false;
  323. tl:=tempansilist;
  324. while assigned(tl) do
  325. begin
  326. if tl^.pos=ref.offset then
  327. if tl^.is_ansistring and not tl^.is_freeansistring then
  328. begin
  329. tl^.is_freeansistring:=true;
  330. ungetiftempansi:=true;
  331. exprasmlist^.concat(new(paitempalloc,dealloc(tl^.pos,tl^.size)));
  332. exit;
  333. {$ifdef EXTDEBUG}
  334. end
  335. else
  336. begin
  337. Comment(V_Debug,'temp ansi managment problem : ungetiftempansi()'+
  338. ' at pos '+tostr(ref.offset)+ ' already free !');
  339. {$endif}
  340. end;
  341. tl:=tl^.next;
  342. end;
  343. end;
  344. procedure gettempslotreference(slottype : ttemptype;var ref : treference);
  345. begin
  346. { do a reset, because the reference isn't used }
  347. reset_reference(ref);
  348. { this is not enough in my opinion PM }
  349. { because it still can mix different types !! }
  350. ref.offset:=gettempofsize(4);
  351. ref.base:=procinfo.framepointer;
  352. templist^.temptype:=slottype;
  353. end;
  354. function istemp(const ref : treference) : boolean;
  355. begin
  356. { ref.index = R_NO was missing
  357. led to problems with local arrays
  358. with lower bound > 0 (PM) }
  359. istemp:=((ref.base=procinfo.framepointer) and
  360. (ref.offset<firsttemp) and (ref.index=R_NO));
  361. end;
  362. procedure persistanttemptonormal(pos : longint);
  363. var hp : pfreerecord;
  364. begin
  365. hp:=templist;
  366. while assigned(hp) do
  367. if (hp^.persistant) and (hp^.pos=pos) then
  368. begin
  369. {$ifdef EXTDEBUG}
  370. Comment(V_Debug,'temp managment : persistanttemptonormal()'+
  371. ' at pos '+tostr(pos)+ ' found !');
  372. {$endif}
  373. hp^.persistant:=false;
  374. exit;
  375. end
  376. else
  377. hp:=hp^.next;
  378. {$ifdef EXTDEBUG}
  379. Comment(V_Debug,'temp managment problem : persistanttemptonormal()'+
  380. ' at pos '+tostr(pos)+ ' not found !');
  381. {$endif}
  382. end;
  383. procedure ungettemp(pos : longint;size : longint);
  384. var
  385. hp,newhp : pfreerecord;
  386. begin
  387. if (size mod 4)<>0 then
  388. size:=size+(4-(size mod 4));
  389. if size = 0 then
  390. exit;
  391. exprasmlist^.concat(new(paitempalloc,dealloc(pos,size)));
  392. if pos<=lastoccupied then
  393. if pos=lastoccupied then
  394. begin
  395. lastoccupied:=pos+size;
  396. hp:=tmpfreelist;
  397. newhp:=nil;
  398. while assigned(hp) do
  399. begin
  400. { conneting a free block }
  401. if hp^.pos=lastoccupied then
  402. begin
  403. if assigned(newhp) then newhp^.next:=nil
  404. else tmpfreelist:=nil;
  405. lastoccupied:=lastoccupied+hp^.size;
  406. dispose(hp);
  407. break;
  408. end;
  409. newhp:=hp;
  410. hp:=hp^.next;
  411. end;
  412. end
  413. else
  414. begin
  415. {$ifdef EXTDEBUG}
  416. Comment(V_Warning,'temp managment problem : ungettemp()'+
  417. 'pos '+tostr(pos)+ '< lastoccupied '+tostr(lastoccupied)+' !');
  418. {$endif}
  419. end
  420. else
  421. begin
  422. new(newhp);
  423. { size can be allways set }
  424. newhp^.size:=size;
  425. newhp^.pos := pos;
  426. { if there is no free list }
  427. if not assigned(tmpfreelist) then
  428. begin
  429. { then generate one }
  430. tmpfreelist:=newhp;
  431. newhp^.next:=nil;
  432. exit;
  433. end;
  434. { search the position to insert }
  435. hp:=tmpfreelist;
  436. while assigned(hp) do
  437. begin
  438. { conneting two blocks ? }
  439. if hp^.pos+hp^.size=pos then
  440. begin
  441. inc(hp^.size,size);
  442. dispose(newhp);
  443. break;
  444. end
  445. { if the end is reached, then concat }
  446. else if hp^.next=nil then
  447. begin
  448. hp^.next:=newhp;
  449. newhp^.next:=nil;
  450. break;
  451. end
  452. { falls der n„chste Zeiger gr”áer ist, dann }
  453. { Einh„ngen }
  454. else if hp^.next^.pos<=pos+size then
  455. begin
  456. { concat two blocks ? }
  457. if pos+size=hp^.next^.pos then
  458. begin
  459. newhp^.next:=hp^.next^.next;
  460. inc(newhp^.size,hp^.next^.size);
  461. dispose(hp^.next);
  462. hp^.next:=newhp;
  463. end
  464. else
  465. begin
  466. newhp^.next:=hp^.next;
  467. hp^.next:=newhp;
  468. end;
  469. break;
  470. end;
  471. hp:=hp^.next;
  472. end;
  473. end;
  474. end;
  475. procedure ungetpersistanttemp(pos : longint;size : longint);
  476. var
  477. prev,hp : pfreerecord;
  478. begin
  479. ungettemp(pos,size);
  480. prev:=nil;
  481. hp:=templist;
  482. while assigned(hp) do
  483. begin
  484. if (hp^.persistant) and (hp^.pos=pos) and (hp^.size=size) then
  485. begin
  486. if assigned(prev) then
  487. prev^.next:=hp^.next
  488. else
  489. templist:=hp^.next;
  490. {$ifdef EXTDEBUG}
  491. Comment(V_Debug,'temp managment : ungetpersistanttemp()'+
  492. ' at pos '+tostr(pos)+ ' found !');
  493. hp^.next:=tempfreedlist;
  494. tempfreedlist:=hp;
  495. hp^.releaseposinfo:=aktfilepos;
  496. {$else}
  497. dispose(hp);
  498. {$endif}
  499. exit;
  500. end;
  501. prev:=hp;
  502. hp:=hp^.next;
  503. end;
  504. {$ifdef EXTDEBUG}
  505. Comment(V_Warning,'temp managment problem : ungetpersistanttemp()'+
  506. ' at pos '+tostr(pos)+ ' not found !');
  507. {$endif}
  508. end;
  509. procedure ungetiftemp(const ref : treference);
  510. var
  511. tl,prev : pfreerecord;
  512. begin
  513. if istemp(ref) then
  514. begin
  515. { first check if ansistring }
  516. if ungetiftempansi(ref) then
  517. exit;
  518. prev:=nil;
  519. tl:=templist;
  520. while assigned(tl) do
  521. begin
  522. { no release of persistant blocks this way!! }
  523. if (tl^.persistant) or (tl^.temptype<>tt_normal) then
  524. if (ref.offset>=tl^.pos) and
  525. (ref.offset<tl^.pos+tl^.size) then
  526. begin
  527. {$ifdef EXTDEBUG}
  528. Comment(V_Debug,'temp '+
  529. ' at pos '+tostr(ref.offset)+ ' not released because persistant or slot!');
  530. {$endif}
  531. exit;
  532. end;
  533. if (ref.offset=tl^.pos) then
  534. begin
  535. ungettemp(ref.offset,tl^.size);
  536. {$ifdef TEMPDEBUG}
  537. Comment(V_Debug,'temp managment : ungettemp()'+
  538. ' at pos '+tostr(tl^.pos)+ ' found !');
  539. {$endif}
  540. if assigned(prev) then
  541. prev^.next:=tl^.next
  542. else
  543. templist:=tl^.next;
  544. {$ifdef EXTDEBUG}
  545. tl^.next:=tempfreedlist;
  546. tempfreedlist:=tl;
  547. tl^.releaseposinfo:=aktfilepos;
  548. {$else}
  549. dispose(tl);
  550. {$endif}
  551. exit;
  552. end
  553. else
  554. begin
  555. prev:=tl;
  556. tl:=tl^.next;
  557. end;
  558. end;
  559. {$ifdef EXTDEBUG}
  560. Comment(V_Warning,'Internal: temp managment problem : '+
  561. 'temp not found for release at offset '+tostr(ref.offset));
  562. tl:=tempfreedlist;
  563. while assigned(tl) do
  564. begin
  565. if (ref.offset=tl^.pos) then
  566. begin
  567. Comment(V_Warning,'Last temporary assignment of size '
  568. +tostr(tl^.size)+' from pos '+tostr(tl^.posinfo.line)
  569. +':'+tostr(tl^.posinfo.column)
  570. +' at pos '+tostr(tl^.pos)+
  571. ' has been already freed at '
  572. +tostr(tl^.releaseposinfo.line)
  573. +':'+tostr(tl^.releaseposinfo.column)
  574. );
  575. Exit;
  576. end;
  577. tl:=tl^.next;
  578. end;
  579. {$endIf}
  580. end;
  581. end;
  582. procedure inittemps;
  583. begin
  584. { hp:=temp }
  585. end;
  586. begin
  587. tmpfreelist:=nil;
  588. templist:=nil;
  589. reftempslots:=nil;
  590. { just to be sure }
  591. tempansilist:=nil;
  592. end.
  593. {
  594. $Log$
  595. Revision 1.21 1999-05-01 13:24:59 peter
  596. * merged nasm compiler
  597. * old asm moved to oldasm/
  598. Revision 1.20 1999/04/19 09:30:48 pierre
  599. + added warning for unreleased ANSI temp
  600. Revision 1.19 1999/04/16 20:44:38 florian
  601. * the boolean operators =;<>;xor with LOC_JUMP and LOC_FLAGS
  602. operands fixed, small things for new ansistring management
  603. Revision 1.18 1999/04/16 14:03:39 pierre
  604. * added paitempalloc for tempansi
  605. Revision 1.17 1999/04/16 11:49:45 peter
  606. + tempalloc
  607. + -at to show temp alloc info in .s file
  608. Revision 1.16 1999/04/14 09:10:46 peter
  609. * fixed tempansi which set wrong pos in free temp
  610. Revision 1.15 1999/04/09 13:05:45 pierre
  611. * Minenumsize=1 under TEST_ENUMSIZE cond because buggy
  612. Revision 1.14 1999/04/09 09:55:20 peter
  613. * typo fixed
  614. Revision 1.13 1999/04/09 08:39:20 peter
  615. * fixed reuse position
  616. Revision 1.12 1999/04/08 23:52:59 pierre
  617. + tempansilist and gettempansistringreference
  618. Revision 1.11 1999/04/08 20:59:44 florian
  619. * fixed problem with default properties which are a class
  620. * case bug (from the mailing list with -O2) fixed, the
  621. distance of the case labels can be greater than the positive
  622. range of a longint => it is now a dword for fpc
  623. Revision 1.10 1999/04/06 11:19:49 peter
  624. * fixed temp reuse
  625. Revision 1.9 1999/02/22 02:15:56 peter
  626. * updates for ag386bin
  627. Revision 1.8 1999/02/11 09:35:19 pierre
  628. * ExtDebug conditionnal infinite loop on temp problem removed
  629. Revision 1.7 1999/02/02 23:52:33 florian
  630. * problem with calls to method pointers in methods fixed
  631. - double ansistrings temp management removed
  632. Revision 1.6 1999/01/15 11:34:23 pierre
  633. + better info for temp allocation debugging
  634. Revision 1.5 1998/11/30 09:43:24 pierre
  635. * some range check bugs fixed (still not working !)
  636. + added DLL writing support for win32 (also accepts variables)
  637. + TempAnsi for code that could be used for Temporary ansi strings
  638. handling
  639. Revision 1.4 1998/10/09 08:56:32 pierre
  640. * several memory leaks fixed
  641. Revision 1.3 1998/07/16 08:01:42 pierre
  642. * small bug correction due to newinput
  643. (only with tempdebug conditionnal)
  644. Revision 1.2 1998/07/10 10:51:05 peter
  645. * m68k updates
  646. Revision 1.1 1998/06/08 16:07:41 pierre
  647. * temp_gen contains all temporary var functions
  648. (processor independent)
  649. }