cgi386.pas 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693
  1. {
  2. $Id$
  3. Copyright (c) 1993-98 by Florian Klaempfl
  4. This unit generates i386 (or better) assembler from the parse tree
  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. {$ifdef TP}
  19. {$E+,F+,N+,D+,L+,Y+}
  20. {$endif}
  21. unit cgi386;
  22. interface
  23. uses
  24. tree;
  25. { produces assembler for the expression in variable p }
  26. { and produces an assembler node at the end }
  27. procedure generatecode(var p : ptree);
  28. { produces the actual code }
  29. function do_secondpass(var p : ptree) : boolean;
  30. procedure secondpass(var p : ptree);
  31. {$ifdef test_dest_loc}
  32. const
  33. { used to avoid temporary assignments }
  34. dest_loc_known : boolean = false;
  35. in_dest_loc : boolean = false;
  36. dest_loc_tree : ptree = nil;
  37. var
  38. dest_loc : tlocation;
  39. procedure mov_reg_to_dest(p : ptree; s : topsize; reg : tregister);
  40. {$endif test_dest_loc}
  41. implementation
  42. uses
  43. verbose,cobjects,systems,globals,files,
  44. symtable,types,aasm,
  45. pass_1,hcodegen,temp_gen
  46. {$ifdef GDB}
  47. ,gdb
  48. {$endif}
  49. {$ifdef i386}
  50. ,i386,tgeni386,cgai386
  51. ,cg386con,cg386mat,cg386cnv,cg386set,cg386add
  52. ,cg386mem,cg386cal,cg386ld,cg386flw
  53. {$endif}
  54. ;
  55. {$ifdef test_dest_loc}
  56. procedure mov_reg_to_dest(p : ptree; s : topsize; reg : tregister);
  57. begin
  58. if (dest_loc.loc=LOC_CREGISTER) or (dest_loc.loc=LOC_REGISTER) then
  59. begin
  60. emit_reg_reg(A_MOV,s,reg,dest_loc.register);
  61. p^.location:=dest_loc;
  62. in_dest_loc:=true;
  63. end
  64. else
  65. if (dest_loc.loc=LOC_REFERENCE) or (dest_loc.loc=LOC_MEM) then
  66. begin
  67. exprasmlist^.concat(new(pai386,op_reg_ref(A_MOV,s,reg,newreference(dest_loc.reference))));
  68. p^.location:=dest_loc;
  69. in_dest_loc:=true;
  70. end
  71. else
  72. internalerror(20080);
  73. end;
  74. {$endif test_dest_loc}
  75. procedure message(const t : tmsgconst);
  76. var
  77. olderrorcount : longint;
  78. begin
  79. if not(codegenerror) then
  80. begin
  81. olderrorcount:=status.errorcount;
  82. verbose.Message(t);
  83. codegenerror:=olderrorcount<>status.errorcount;
  84. end;
  85. end;
  86. procedure message1(const t : tmsgconst;const s : string);
  87. var
  88. olderrorcount : longint;
  89. begin
  90. if not(codegenerror) then
  91. begin
  92. olderrorcount:=status.errorcount;
  93. verbose.Message1(t,s);
  94. codegenerror:=olderrorcount<>status.errorcount;
  95. end;
  96. end;
  97. procedure message2(const t : tmsgconst;const s1,s2 : string);
  98. var
  99. olderrorcount : longint;
  100. begin
  101. if not(codegenerror) then
  102. begin
  103. olderrorcount:=status.errorcount;
  104. verbose.Message2(t,s1,s2);
  105. codegenerror:=olderrorcount<>status.errorcount;
  106. end;
  107. end;
  108. procedure message3(const t : tmsgconst;const s1,s2,s3 : string);
  109. var
  110. olderrorcount : longint;
  111. begin
  112. if not(codegenerror) then
  113. begin
  114. olderrorcount:=status.errorcount;
  115. verbose.Message3(t,s1,s2,s3);
  116. codegenerror:=olderrorcount<>status.errorcount;
  117. end;
  118. end;
  119. {*****************************************************************************
  120. SecondPass
  121. *****************************************************************************}
  122. type
  123. secondpassproc = procedure(var p : ptree);
  124. procedure secondnothing(var p : ptree);
  125. begin
  126. end;
  127. procedure seconderror(var p : ptree);
  128. begin
  129. p^.error:=true;
  130. codegenerror:=true;
  131. end;
  132. procedure secondstatement(var p : ptree);
  133. var
  134. hp : ptree;
  135. begin
  136. hp:=p;
  137. while assigned(hp) do
  138. begin
  139. if assigned(hp^.right) then
  140. begin
  141. cleartempgen;
  142. secondpass(hp^.right);
  143. end;
  144. hp:=hp^.left;
  145. end;
  146. end;
  147. procedure secondblockn(var p : ptree);
  148. begin
  149. { do second pass on left node }
  150. if assigned(p^.left) then
  151. secondpass(p^.left);
  152. end;
  153. procedure secondasm(var p : ptree);
  154. begin
  155. exprasmlist^.concatlist(p^.p_asm);
  156. if not p^.object_preserved then
  157. maybe_loadesi;
  158. end;
  159. procedure secondpass(var p : ptree);
  160. const
  161. procedures : array[ttreetyp] of secondpassproc =
  162. (secondadd,secondadd,secondadd,secondmoddiv,secondadd,
  163. secondmoddiv,secondassignment,secondload,secondnothing,
  164. secondadd,secondadd,secondadd,secondadd,
  165. secondadd,secondadd,secondin,secondadd,
  166. secondadd,secondshlshr,secondshlshr,secondadd,
  167. secondadd,secondsubscriptn,secondderef,secondaddr,
  168. seconddoubleaddr,
  169. secondordconst,secondtypeconv,secondcalln,secondnothing,
  170. secondrealconst,secondfixconst,secondumminus,
  171. secondasm,secondvecn,
  172. secondstringconst,secondfuncret,secondselfn,
  173. secondnot,secondinline,secondniln,seconderror,
  174. secondnothing,secondhnewn,secondhdisposen,secondnewn,
  175. secondsimplenewdispose,secondnothing,secondsetcons,secondblockn,
  176. secondstatement,secondnothing,secondifn,secondbreakn,
  177. secondcontinuen,second_while_repeatn,second_while_repeatn,secondfor,
  178. secondexitn,secondwith,secondcase,secondlabel,
  179. secondgoto,secondsimplenewdispose,secondtryexcept,secondraise,
  180. secondnothing,secondtryfinally,secondis,secondas,seconderror,
  181. secondfail,secondadd,secondprocinline,
  182. secondnothing,secondloadvmt);
  183. var
  184. oldcodegenerror : boolean;
  185. oldswitches : Tcswitches;
  186. oldis : pinputfile;
  187. oldnr : longint;
  188. begin
  189. oldcodegenerror:=codegenerror;
  190. oldswitches:=aktswitches;
  191. oldis:=current_module^.current_inputfile;
  192. oldnr:=current_module^.current_inputfile^.line_no;
  193. codegenerror:=false;
  194. current_module^.current_inputfile:=
  195. pinputfile(current_module^.sourcefiles.get_file(p^.fileinfo.fileindex));
  196. current_module^.current_inputfile^.line_no:=p^.fileinfo.line;
  197. aktswitches:=p^.pragmas;
  198. if not(p^.error) then
  199. begin
  200. procedures[p^.treetype](p);
  201. p^.error:=codegenerror;
  202. codegenerror:=codegenerror or oldcodegenerror;
  203. end
  204. else
  205. codegenerror:=true;
  206. aktswitches:=oldswitches;
  207. current_module^.current_inputfile:=oldis;
  208. current_module^.current_inputfile^.line_no:=oldnr;
  209. end;
  210. function do_secondpass(var p : ptree) : boolean;
  211. begin
  212. codegenerror:=false;
  213. if not(p^.error) then
  214. secondpass(p);
  215. do_secondpass:=codegenerror;
  216. end;
  217. var
  218. regvars : array[1..maxvarregs] of pvarsym;
  219. regvars_para : array[1..maxvarregs] of boolean;
  220. regvars_refs : array[1..maxvarregs] of longint;
  221. parasym : boolean;
  222. procedure searchregvars(p : psym);
  223. var
  224. i,j,k : longint;
  225. begin
  226. if (p^.typ=varsym) and (pvarsym(p)^.regable) then
  227. begin
  228. { walk through all momentary register variables }
  229. for i:=1 to maxvarregs do
  230. begin
  231. { free register ? }
  232. if regvars[i]=nil then
  233. begin
  234. regvars[i]:=pvarsym(p);
  235. regvars_para[i]:=parasym;
  236. break;
  237. end;
  238. { else throw out a variable ? }
  239. j:=pvarsym(p)^.refs;
  240. { parameter get a less value }
  241. if parasym then
  242. begin
  243. if cs_littlesize in aktswitches then
  244. dec(j,1)
  245. else
  246. dec(j,100);
  247. end;
  248. if (j>regvars_refs[i]) and (j>0) then
  249. begin
  250. for k:=maxvarregs-1 downto i do
  251. begin
  252. regvars[k+1]:=regvars[k];
  253. regvars_para[k+1]:=regvars_para[k];
  254. end;
  255. { calc the new refs
  256. pvarsym(p)^.refs:=j; }
  257. regvars[i]:=pvarsym(p);
  258. regvars_para[i]:=parasym;
  259. regvars_refs[i]:=j;
  260. break;
  261. end;
  262. end;
  263. end;
  264. end;
  265. procedure generatecode(var p : ptree);
  266. var
  267. { *pass modifies with every node aktlinenr and current_module^.current_inputfile, }
  268. { to constantly contain the right line numbers }
  269. oldis : pinputfile;
  270. oldnr,i : longint;
  271. regsize : topsize;
  272. regi : tregister;
  273. hr : preference;
  274. label
  275. nextreg;
  276. begin
  277. cleartempgen;
  278. oldis:=current_module^.current_inputfile;
  279. oldnr:=current_module^.current_inputfile^.line_no;
  280. { when size optimization only count occurrence }
  281. if cs_littlesize in aktswitches then
  282. t_times:=1
  283. else
  284. { reference for repetition is 100 }
  285. t_times:=100;
  286. { clear register count }
  287. {$ifdef SUPPORT_MMX}
  288. for regi:=R_EAX to R_MM6 do
  289. begin
  290. reg_pushes[regi]:=0;
  291. is_reg_var[regi]:=false;
  292. end;
  293. {$else SUPPORT_MMX}
  294. for regi:=R_EAX to R_EDI do
  295. begin
  296. reg_pushes[regi]:=0;
  297. is_reg_var[regi]:=false;
  298. end;
  299. {$endif SUPPORT_MMX}
  300. use_esp_stackframe:=false;
  301. if not(do_firstpass(p)) then
  302. begin
  303. { max. optimizations }
  304. { only if no asm is used }
  305. if (cs_maxoptimieren in aktswitches) and
  306. ((procinfo.flags and pi_uses_asm)=0) then
  307. begin
  308. { can we omit the stack frame ? }
  309. { conditions:
  310. 1. procedure (not main block)
  311. 2. no constructor or destructor
  312. 3. no call to other procedures
  313. 4. no interrupt handler
  314. }
  315. if assigned(aktprocsym) then
  316. begin
  317. if (aktprocsym^.definition^.options and
  318. poconstructor+podestructor{+poinline}+pointerrupt=0) and
  319. ((procinfo.flags and pi_do_call)=0) and (lexlevel>1) then
  320. begin
  321. { use ESP as frame pointer }
  322. procinfo.framepointer:=R_ESP;
  323. use_esp_stackframe:=true;
  324. { calc parameter distance new }
  325. dec(procinfo.framepointer_offset,4);
  326. dec(procinfo.ESI_offset,4);
  327. { is this correct ???}
  328. { retoffset can be negativ for results in eax !! }
  329. { the value should be decreased only if positive }
  330. if procinfo.retoffset>=0 then
  331. dec(procinfo.retoffset,4);
  332. dec(procinfo.call_offset,4);
  333. aktprocsym^.definition^.parast^.call_offset:=procinfo.call_offset;
  334. end;
  335. end;
  336. if (p^.registers32<4) then
  337. begin
  338. for i:=1 to maxvarregs do
  339. regvars[i]:=nil;
  340. parasym:=false;
  341. {$ifdef tp}
  342. symtablestack^.foreach(searchregvars);
  343. {$else}
  344. symtablestack^.foreach(@searchregvars);
  345. {$endif}
  346. { copy parameter into a register ? }
  347. parasym:=true;
  348. {$ifdef tp}
  349. symtablestack^.next^.foreach(searchregvars);
  350. {$else}
  351. symtablestack^.next^.foreach(@searchregvars);
  352. {$endif}
  353. { hold needed registers free }
  354. for i:=maxvarregs downto maxvarregs-p^.registers32+1 do
  355. regvars[i]:=nil;
  356. { now assign register }
  357. for i:=1 to maxvarregs-p^.registers32 do
  358. begin
  359. if assigned(regvars[i]) then
  360. begin
  361. { it is nonsens, to copy the variable to }
  362. { a register because we need then much }
  363. { pushes ? }
  364. if reg_pushes[varregs[i]]>=regvars[i]^.refs then
  365. begin
  366. regvars[i]:=nil;
  367. goto nextreg;
  368. end;
  369. { register is no longer available for }
  370. { expressions }
  371. { search the register which is the most }
  372. { unused }
  373. usableregs:=usableregs-[varregs[i]];
  374. is_reg_var[varregs[i]]:=true;
  375. dec(c_usableregs);
  376. { possibly no 32 bit register are needed }
  377. if (regvars[i]^.definition^.deftype=orddef) and
  378. (porddef(regvars[i]^.definition)^.typ in [bool8bit,uchar,u8bit,s8bit]) then
  379. begin
  380. regvars[i]^.reg:=reg32toreg8(varregs[i]);
  381. regsize:=S_B;
  382. end
  383. else if (regvars[i]^.definition^.deftype=orddef) and
  384. (porddef(regvars[i]^.definition)^.typ in [bool16bit,u16bit,s16bit]) then
  385. begin
  386. regvars[i]^.reg:=reg32toreg16(varregs[i]);
  387. regsize:=S_W;
  388. end
  389. else
  390. begin
  391. regvars[i]^.reg:=varregs[i];
  392. regsize:=S_L;
  393. end;
  394. { parameter must be load }
  395. if regvars_para[i] then
  396. begin
  397. { procinfo is there actual, }
  398. { because we can't never be in a }
  399. { nested procedure }
  400. { when loading parameter to reg }
  401. new(hr);
  402. reset_reference(hr^);
  403. hr^.offset:=pvarsym(regvars[i])^.address+procinfo.call_offset;
  404. hr^.base:=procinfo.framepointer;
  405. procinfo.aktentrycode^.concat(new(pai386,op_ref_reg(A_MOV,regsize,
  406. hr,regvars[i]^.reg)));
  407. unused:=unused - [regvars[i]^.reg];
  408. end;
  409. { procedure uses this register }
  410. usedinproc:=usedinproc or ($80 shr byte(varregs[i]));
  411. end;
  412. nextreg:
  413. { dummy }
  414. regsize:=S_W;
  415. end;
  416. if (verbosity and v_debug)=v_debug then
  417. begin
  418. for i:=1 to maxvarregs do
  419. begin
  420. if assigned(regvars[i]) then
  421. Message3(cg_d_register_weight,reg2str(regvars[i]^.reg),
  422. tostr(regvars[i]^.refs),regvars[i]^.name);
  423. end;
  424. end;
  425. end;
  426. end;
  427. if assigned(aktprocsym) and
  428. ((aktprocsym^.definition^.options and poinline)<>0) then
  429. make_const_global:=true;
  430. do_secondpass(p);
  431. {$ifdef StoreFPULevel}
  432. procinfo.def^.fpu_used:=p^.registersfpu;
  433. {$endif StoreFPULevel}
  434. { all registers can be used again }
  435. usableregs:=[R_EAX,R_EBX,R_ECX,R_EDX];
  436. {$ifdef SUPPORT_MMX}
  437. usableregs:=usableregs+[R_MM0..R_MM6];
  438. {$endif SUPPORT_MMX}
  439. c_usableregs:=4;
  440. end;
  441. procinfo.aktproccode^.concatlist(exprasmlist);
  442. make_const_global:=false;
  443. current_module^.current_inputfile:=oldis;
  444. current_module^.current_inputfile^.line_no:=oldnr;
  445. end;
  446. end.
  447. {
  448. $Log$
  449. Revision 1.37 1998-06-08 13:13:41 pierre
  450. + temporary variables now in temp_gen.pas unit
  451. because it is processor independent
  452. * mppc68k.bat modified to undefine i386 and support_mmx
  453. (which are defaults for i386)
  454. Revision 1.36 1998/06/05 17:49:54 peter
  455. * cleanup of cgai386
  456. Revision 1.35 1998/06/05 16:13:32 pierre
  457. * fix for real and string consts inside inlined procs
  458. Revision 1.34 1998/06/05 14:37:27 pierre
  459. * fixes for inline for operators
  460. * inline procedure more correctly restricted
  461. Revision 1.33 1998/06/04 23:51:37 peter
  462. * m68k compiles
  463. + .def file creation moved to gendef.pas so it could also be used
  464. for win32
  465. Revision 1.32 1998/06/04 09:55:35 pierre
  466. * demangled name of procsym reworked to become independant of the mangling scheme
  467. Come test_funcret improvements (not yet working)S: ----------------------------------------------------------------------
  468. Revision 1.31 1998/06/03 22:48:52 peter
  469. + wordbool,longbool
  470. * rename bis,von -> high,low
  471. * moved some systemunit loading/creating to psystem.pas
  472. Revision 1.30 1998/06/02 17:03:00 pierre
  473. * with node corrected for objects
  474. * small bugs for SUPPORT_MMX fixed
  475. Revision 1.29 1998/06/01 16:50:18 peter
  476. + boolean -> ord conversion
  477. * fixed ord -> boolean conversion
  478. Revision 1.28 1998/05/28 17:26:47 peter
  479. * fixed -R switch, it didn't work after my previous akt/init patch
  480. * fixed bugs 110,130,136
  481. Revision 1.27 1998/05/25 17:11:38 pierre
  482. * firstpasscount bug fixed
  483. now all is already set correctly the first time
  484. under EXTDEBUG try -gp to skip all other firstpasses
  485. it works !!
  486. * small bug fixes
  487. - for smallsets with -dTESTSMALLSET
  488. - some warnings removed (by correcting code !)
  489. Revision 1.26 1998/05/23 01:21:03 peter
  490. + aktasmmode, aktoptprocessor, aktoutputformat
  491. + smartlink per module $SMARTLINK-/+ (like MMX) and moved to aktswitches
  492. + $LIBNAME to set the library name where the unit will be put in
  493. * splitted cgi386 a bit (codeseg to large for bp7)
  494. * nasm, tasm works again. nasm moved to ag386nsm.pas
  495. Revision 1.25 1998/05/21 19:33:31 peter
  496. + better procedure directive handling and only one table
  497. Revision 1.24 1998/05/20 09:42:33 pierre
  498. + UseTokenInfo now default
  499. * unit in interface uses and implementation uses gives error now
  500. * only one error for unknown symbol (uses lastsymknown boolean)
  501. the problem came from the label code !
  502. + first inlined procedures and function work
  503. (warning there might be allowed cases were the result is still wrong !!)
  504. * UseBrower updated gives a global list of all position of all used symbols
  505. with switch -gb
  506. Revision 1.23 1998/05/12 10:46:58 peter
  507. * moved printstatus to verb_def
  508. + V_Normal which is between V_Error and V_Warning and doesn't have a
  509. prefix like error: warning: and is included in V_Default
  510. * fixed some messages
  511. * first time parameter scan is only for -v and -T
  512. - removed old style messages
  513. Revision 1.22 1998/05/07 00:17:00 peter
  514. * smartlinking for sets
  515. + consts labels are now concated/generated in hcodegen
  516. * moved some cpu code to cga and some none cpu depended code from cga
  517. to tree and hcodegen and cleanup of hcodegen
  518. * assembling .. output reduced for smartlinking ;)
  519. Revision 1.21 1998/05/06 08:38:36 pierre
  520. * better position info with UseTokenInfo
  521. UseTokenInfo greatly simplified
  522. + added check for changed tree after first time firstpass
  523. (if we could remove all the cases were it happen
  524. we could skip all firstpass if firstpasscount > 1)
  525. Only with ExtDebug
  526. Revision 1.20 1998/05/01 16:38:44 florian
  527. * handling of private and protected fixed
  528. + change_keywords_to_tp implemented to remove
  529. keywords which aren't supported by tp
  530. * break and continue are now symbols of the system unit
  531. + widestring, longstring and ansistring type released
  532. Revision 1.19 1998/04/30 15:59:39 pierre
  533. * GDB works again better :
  534. correct type info in one pass
  535. + UseTokenInfo for better source position
  536. * fixed one remaining bug in scanner for line counts
  537. * several little fixes
  538. Revision 1.18 1998/04/29 10:33:48 pierre
  539. + added some code for ansistring (not complete nor working yet)
  540. * corrected operator overloading
  541. * corrected nasm output
  542. + started inline procedures
  543. + added starstarn : use ** for exponentiation (^ gave problems)
  544. + started UseTokenInfo cond to get accurate positions
  545. Revision 1.17 1998/04/27 23:10:27 peter
  546. + new scanner
  547. * $makelib -> if smartlink
  548. * small filename fixes pmodule.setfilename
  549. * moved import from files.pas -> import.pas
  550. Revision 1.16 1998/04/23 21:52:08 florian
  551. * fixes of Jonas applied
  552. Revision 1.15 1998/04/22 21:06:49 florian
  553. * last fixes before the release:
  554. - veryyyy slow firstcall fixed
  555. Revision 1.14 1998/04/21 10:16:47 peter
  556. * patches from strasbourg
  557. * objects is not used anymore in the fpc compiled version
  558. Revision 1.13 1998/04/14 23:27:02 florian
  559. + exclude/include with constant second parameter added
  560. Revision 1.12 1998/04/13 21:15:41 florian
  561. * error handling of pass_1 and cgi386 fixed
  562. * the following bugs fixed: 0117, 0118, 0119 and 0129, 0122 was already
  563. fixed, verified
  564. Revision 1.11 1998/04/13 08:42:51 florian
  565. * call by reference and call by value open arrays fixed
  566. Revision 1.10 1998/04/12 22:39:43 florian
  567. * problem with read access to properties solved
  568. * correct handling of hidding methods via virtual (COM)
  569. * correct result type of constructor calls (COM), the resulttype
  570. depends now on the type of the class reference
  571. Revision 1.9 1998/04/10 21:36:55 florian
  572. + some stuff to support method pointers (procedure of object) added
  573. (declaration, parameter handling)
  574. Revision 1.8 1998/04/09 22:16:33 florian
  575. * problem with previous REGALLOC solved
  576. * improved property support
  577. Revision 1.7 1998/04/09 14:28:05 jonas
  578. + basic k6 and 6x86 optimizing support (-O7 and -O8)
  579. Revision 1.6 1998/04/08 11:34:20 peter
  580. * nasm works (linux only tested)
  581. Revision 1.5 1998/04/07 22:45:04 florian
  582. * bug0092, bug0115 and bug0121 fixed
  583. + packed object/class/array
  584. Revision 1.4 1998/04/07 13:19:42 pierre
  585. * bugfixes for reset_gdb_info
  586. in MEM parsing for go32v2
  587. better external symbol creation
  588. support for rhgdb.exe (lowercase file names)
  589. }