ra386.pas 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703
  1. {
  2. $Id$
  3. Copyright (c) 1998-2000 by Carl Eric Codere and Peter Vreman
  4. Handles the common i386 assembler reader routines
  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 Ra386;
  19. {$i defines.inc}
  20. interface
  21. uses
  22. aasm,cpubase,RAUtils;
  23. { Parser helpers }
  24. function is_prefix(t:tasmop):boolean;
  25. function is_override(t:tasmop):boolean;
  26. Function CheckPrefix(prefixop,op:tasmop): Boolean;
  27. Function CheckOverride(overrideop,op:tasmop): Boolean;
  28. Procedure FWaitWarning;
  29. type
  30. T386Operand=class(TOperand)
  31. Procedure SetCorrectSize(opcode:tasmop);override;
  32. end;
  33. T386Instruction=class(TInstruction)
  34. { Operand sizes }
  35. procedure AddReferenceSizes;
  36. procedure SetInstructionOpsize;
  37. procedure CheckOperandSizes;
  38. procedure CheckNonCommutativeOpcodes;
  39. { opcode adding }
  40. procedure ConcatInstruction(p : taasmoutput);override;
  41. end;
  42. implementation
  43. uses
  44. globtype,globals,systems,verbose,
  45. symconst,symdef,symsym,
  46. cgbase,
  47. types,cpuasm;
  48. {$define ATTOP}
  49. {$define INTELOP}
  50. {$ifdef NORA386INT}
  51. {$ifdef NOAG386NSM}
  52. {$ifdef NOAG386INT}
  53. {$undef INTELOP}
  54. {$endif}
  55. {$endif}
  56. {$endif}
  57. {$ifdef NORA386ATT}
  58. {$ifdef NOAG386ATT}
  59. {$undef ATTOP}
  60. {$endif}
  61. {$endif}
  62. {*****************************************************************************
  63. Parser Helpers
  64. *****************************************************************************}
  65. function is_prefix(t:tasmop):boolean;
  66. var
  67. i : longint;
  68. Begin
  69. is_prefix:=false;
  70. for i:=1 to AsmPrefixes do
  71. if t=AsmPrefix[i-1] then
  72. begin
  73. is_prefix:=true;
  74. exit;
  75. end;
  76. end;
  77. function is_override(t:tasmop):boolean;
  78. var
  79. i : longint;
  80. Begin
  81. is_override:=false;
  82. for i:=1 to AsmOverrides do
  83. if t=AsmOverride[i-1] then
  84. begin
  85. is_override:=true;
  86. exit;
  87. end;
  88. end;
  89. Function CheckPrefix(prefixop,op:tasmop): Boolean;
  90. { Checks if the prefix is valid with the following opcode }
  91. { return false if not, otherwise true }
  92. Begin
  93. CheckPrefix := TRUE;
  94. (* Case prefix of
  95. A_REP,A_REPNE,A_REPE:
  96. Case opcode Of
  97. A_SCASB,A_SCASW,A_SCASD,
  98. A_INS,A_OUTS,A_MOVS,A_CMPS,A_LODS,A_STOS:;
  99. Else
  100. Begin
  101. CheckPrefix := FALSE;
  102. exit;
  103. end;
  104. end; { case }
  105. A_LOCK:
  106. Case opcode Of
  107. A_BT,A_BTS,A_BTR,A_BTC,A_XCHG,A_ADD,A_OR,A_ADC,A_SBB,A_AND,A_SUB,
  108. A_XOR,A_NOT,A_NEG,A_INC,A_DEC:;
  109. Else
  110. Begin
  111. CheckPrefix := FALSE;
  112. Exit;
  113. end;
  114. end; { case }
  115. A_NONE: exit; { no prefix here }
  116. else
  117. CheckPrefix := FALSE;
  118. end; { end case } *)
  119. end;
  120. Function CheckOverride(overrideop,op:tasmop): Boolean;
  121. { Check if the override is valid, and if so then }
  122. { update the instr variable accordingly. }
  123. Begin
  124. CheckOverride := true;
  125. { Case instr.getinstruction of
  126. A_MOVS,A_XLAT,A_CMPS:
  127. Begin
  128. CheckOverride := TRUE;
  129. Message(assem_e_segment_override_not_supported);
  130. end
  131. end }
  132. end;
  133. Procedure FWaitWarning;
  134. begin
  135. if (target_info.target=target_i386_GO32V2) and (cs_fp_emulation in aktmoduleswitches) then
  136. Message(asmr_w_fwait_emu_prob);
  137. end;
  138. {*****************************************************************************
  139. T386Operand
  140. *****************************************************************************}
  141. Procedure T386Operand.SetCorrectSize(opcode:tasmop);
  142. begin
  143. if att_needsuffix[opcode]=attsufFPU then
  144. begin
  145. case size of
  146. S_L : size:=S_FS;
  147. S_IQ : size:=S_FL;
  148. end;
  149. end
  150. else if att_needsuffix[opcode]=attsufFPUint then
  151. begin
  152. case size of
  153. S_W : size:=S_IS;
  154. S_L : size:=S_IL;
  155. end;
  156. end;
  157. end;
  158. {*****************************************************************************
  159. T386Instruction
  160. *****************************************************************************}
  161. procedure T386Instruction.AddReferenceSizes;
  162. { this will add the sizes for references like [esi] which do not
  163. have the size set yet, it will take only the size if the other
  164. operand is a register }
  165. var
  166. operand2,i : longint;
  167. s : tasmsymbol;
  168. so : longint;
  169. begin
  170. for i:=1to ops do
  171. begin
  172. operands[i].SetCorrectSize(opcode);
  173. if (operands[i].size=S_NO) then
  174. begin
  175. case operands[i].Opr.Typ of
  176. OPR_REFERENCE :
  177. begin
  178. if i=2 then
  179. operand2:=1
  180. else
  181. operand2:=2;
  182. if operand2<ops then
  183. begin
  184. { Only allow register as operand to take the size from }
  185. if operands[operand2].opr.typ=OPR_REGISTER then
  186. begin
  187. if ((opcode<>A_MOVD) and
  188. (opcode<>A_CVTSI2SS)) then
  189. operands[i].size:=operands[operand2].size;
  190. end
  191. else
  192. begin
  193. { if no register then take the opsize (which is available with ATT),
  194. if not availble then give an error }
  195. if opsize<>S_NO then
  196. operands[i].size:=opsize
  197. else
  198. begin
  199. Message(asmr_e_unable_to_determine_reference_size);
  200. { recovery }
  201. operands[i].size:=S_L;
  202. end;
  203. end;
  204. end
  205. else
  206. begin
  207. if opsize<>S_NO then
  208. operands[i].size:=opsize
  209. end;
  210. end;
  211. OPR_SYMBOL :
  212. begin
  213. { Fix lea which need a reference }
  214. if opcode=A_LEA then
  215. begin
  216. s:=operands[i].opr.symbol;
  217. so:=operands[i].opr.symofs;
  218. operands[i].opr.typ:=OPR_REFERENCE;
  219. reset_reference(operands[i].opr.ref);
  220. operands[i].opr.ref.symbol:=s;
  221. operands[i].opr.ref.offset:=so;
  222. end;
  223. operands[i].size:=S_L;
  224. end;
  225. end;
  226. end;
  227. end;
  228. end;
  229. procedure T386Instruction.SetInstructionOpsize;
  230. begin
  231. if opsize<>S_NO then
  232. exit;
  233. case ops of
  234. 0 : ;
  235. 1 :
  236. { "push es" must be stored as a long PM }
  237. if ((opcode=A_PUSH) or
  238. (opcode=A_POP)) and
  239. (operands[1].opr.typ=OPR_REGISTER) and
  240. ((operands[1].opr.reg>=firstsreg) and
  241. (operands[1].opr.reg<=lastsreg)) then
  242. opsize:=S_L
  243. else
  244. opsize:=operands[1].size;
  245. 2 :
  246. begin
  247. case opcode of
  248. A_MOVZX,A_MOVSX :
  249. begin
  250. case operands[1].size of
  251. S_W :
  252. case operands[2].size of
  253. S_L :
  254. opsize:=S_WL;
  255. end;
  256. S_B :
  257. case operands[2].size of
  258. S_W :
  259. opsize:=S_BW;
  260. S_L :
  261. opsize:=S_BL;
  262. end;
  263. end;
  264. end;
  265. A_MOVD : { movd is a move from a mmx register to a
  266. 32 bit register or memory, so no opsize is correct here PM }
  267. exit;
  268. A_OUT :
  269. opsize:=operands[1].size;
  270. else
  271. opsize:=operands[2].size;
  272. end;
  273. end;
  274. 3 :
  275. opsize:=operands[3].size;
  276. end;
  277. end;
  278. procedure T386Instruction.CheckOperandSizes;
  279. var
  280. sizeerr : boolean;
  281. i : longint;
  282. begin
  283. { Check only the most common opcodes here, the others are done in
  284. the assembler pass }
  285. case opcode of
  286. A_PUSH,A_POP,A_DEC,A_INC,A_NOT,A_NEG,
  287. A_CMP,A_MOV,
  288. A_ADD,A_SUB,A_ADC,A_SBB,
  289. A_AND,A_OR,A_TEST,A_XOR: ;
  290. else
  291. exit;
  292. end;
  293. { Handle the BW,BL,WL separatly }
  294. sizeerr:=false;
  295. { special push/pop selector case }
  296. if ((opcode=A_PUSH) or
  297. (opcode=A_POP)) and
  298. (operands[1].opr.typ=OPR_REGISTER) and
  299. ((operands[1].opr.reg>=firstsreg) and
  300. (operands[1].opr.reg<=lastsreg)) then
  301. exit;
  302. if opsize in [S_BW,S_BL,S_WL] then
  303. begin
  304. if ops<>2 then
  305. sizeerr:=true
  306. else
  307. begin
  308. case opsize of
  309. S_BW :
  310. sizeerr:=(operands[1].size<>S_B) or (operands[2].size<>S_W);
  311. S_BL :
  312. sizeerr:=(operands[1].size<>S_B) or (operands[2].size<>S_L);
  313. S_WL :
  314. sizeerr:=(operands[1].size<>S_W) or (operands[2].size<>S_L);
  315. end;
  316. end;
  317. end
  318. else
  319. begin
  320. for i:=1 to ops do
  321. begin
  322. if (operands[i].opr.typ<>OPR_CONSTANT) and
  323. (operands[i].size in [S_B,S_W,S_L]) and
  324. (operands[i].size<>opsize) then
  325. sizeerr:=true;
  326. end;
  327. end;
  328. if sizeerr then
  329. begin
  330. { if range checks are on then generate an error }
  331. if (cs_compilesystem in aktmoduleswitches) or
  332. not (cs_check_range in aktlocalswitches) then
  333. Message(asmr_w_size_suffix_and_dest_dont_match)
  334. else
  335. Message(asmr_e_size_suffix_and_dest_dont_match);
  336. end;
  337. end;
  338. { This check must be done with the operand in ATT order
  339. i.e.after swapping in the intel reader
  340. but before swapping in the NASM and TASM writers PM }
  341. procedure T386Instruction.CheckNonCommutativeOpcodes;
  342. begin
  343. if ((ops=2) and
  344. (operands[1].opr.typ=OPR_REGISTER) and
  345. (operands[2].opr.typ=OPR_REGISTER) and
  346. { if the first is ST and the second is also a register
  347. it is necessarily ST1 .. ST7 }
  348. (operands[1].opr.reg=R_ST)) or
  349. (ops=0) then
  350. if opcode=A_FSUBR then
  351. opcode:=A_FSUB
  352. else if opcode=A_FSUB then
  353. opcode:=A_FSUBR
  354. else if opcode=A_FDIVR then
  355. opcode:=A_FDIV
  356. else if opcode=A_FDIV then
  357. opcode:=A_FDIVR
  358. else if opcode=A_FSUBRP then
  359. opcode:=A_FSUBP
  360. else if opcode=A_FSUBP then
  361. opcode:=A_FSUBRP
  362. else if opcode=A_FDIVRP then
  363. opcode:=A_FDIVP
  364. else if opcode=A_FDIVP then
  365. opcode:=A_FDIVRP;
  366. if ((ops=1) and
  367. (operands[1].opr.typ=OPR_REGISTER) and
  368. (operands[1].opr.reg in [R_ST1..R_ST7])) then
  369. if opcode=A_FSUBRP then
  370. opcode:=A_FSUBP
  371. else if opcode=A_FSUBP then
  372. opcode:=A_FSUBRP
  373. else if opcode=A_FDIVRP then
  374. opcode:=A_FDIVP
  375. else if opcode=A_FDIVP then
  376. opcode:=A_FDIVRP;
  377. end;
  378. {*****************************************************************************
  379. opcode Adding
  380. *****************************************************************************}
  381. procedure T386Instruction.ConcatInstruction(p : taasmoutput);
  382. var
  383. siz : topsize;
  384. i,asize : longint;
  385. ai : taicpu;
  386. begin
  387. { Get Opsize }
  388. if (opsize<>S_NO) or (Ops=0) then
  389. siz:=opsize
  390. else
  391. begin
  392. if (Ops=2) and (operands[1].opr.typ=OPR_REGISTER) then
  393. siz:=operands[1].size
  394. else
  395. siz:=operands[Ops].size;
  396. { MOVD should be of size S_LQ or S_QL, but these do not exist PM }
  397. if (ops=2) and (operands[1].size<>S_NO) and
  398. (operands[2].size<>S_NO) and (operands[1].size<>operands[2].size) then
  399. siz:=S_NO;
  400. end;
  401. if ((opcode=A_MOVD)or
  402. (opcode=A_CVTSI2SS)) and
  403. ((operands[1].size=S_NO) or
  404. (operands[2].size=S_NO)) then
  405. siz:=S_NO;
  406. { NASM does not support FADD without args
  407. as alias of FADDP
  408. and GNU AS interprets FADD without operand differently
  409. for version 2.9.1 and 2.9.5 !! }
  410. if (ops=0) and
  411. ((opcode=A_FADD) or
  412. (opcode=A_FMUL) or
  413. (opcode=A_FSUB) or
  414. (opcode=A_FSUBR) or
  415. (opcode=A_FDIV) or
  416. (opcode=A_FDIVR)) then
  417. begin
  418. if opcode=A_FADD then
  419. opcode:=A_FADDP
  420. else if opcode=A_FMUL then
  421. opcode:=A_FMULP
  422. else if opcode=A_FSUB then
  423. opcode:=A_FSUBP
  424. else if opcode=A_FSUBR then
  425. opcode:=A_FSUBRP
  426. else if opcode=A_FDIV then
  427. opcode:=A_FDIVP
  428. else if opcode=A_FDIVR then
  429. opcode:=A_FDIVRP;
  430. {$ifdef ATTOP}
  431. message1(asmr_w_fadd_to_faddp,att_op2str[opcode]);
  432. {$else}
  433. {$ifdef INTELOP}
  434. message1(asmr_w_fadd_to_faddp,int_op2str[opcode]);
  435. {$else}
  436. message1(asmr_w_fadd_to_faddp,'fXX');
  437. {$endif INTELOP}
  438. {$endif ATTOP}
  439. end;
  440. { GNU AS interprets FDIV without operand differently
  441. for version 2.9.1 and 2.10
  442. we add explicit args to it !! }
  443. if (ops=0) and
  444. ((opcode=A_FSUBP) or
  445. (opcode=A_FSUBRP) or
  446. (opcode=A_FDIVP) or
  447. (opcode=A_FDIVRP) or
  448. (opcode=A_FSUB) or
  449. (opcode=A_FSUBR) or
  450. (opcode=A_FDIV) or
  451. (opcode=A_FDIVR)) then
  452. begin
  453. {$ifdef ATTOP}
  454. message1(asmr_w_adding_explicit_args_fXX,att_op2str[opcode]);
  455. {$else}
  456. {$ifdef INTELOP}
  457. message1(asmr_w_adding_explicit_args_fXX,int_op2str[opcode]);
  458. {$else}
  459. message1(asmr_w_adding_explicit_args_fXX,'fXX');
  460. {$endif INTELOP}
  461. {$endif ATTOP}
  462. ops:=2;
  463. operands[1].opr.typ:=OPR_REGISTER;
  464. operands[2].opr.typ:=OPR_REGISTER;
  465. operands[1].opr.reg:=R_ST;
  466. operands[2].opr.reg:=R_ST1;
  467. end;
  468. if (ops=1) and
  469. ((operands[1].opr.typ=OPR_REGISTER) and
  470. (operands[1].opr.reg in [R_ST1..R_ST7])) and
  471. ((opcode=A_FSUBP) or
  472. (opcode=A_FSUBRP) or
  473. (opcode=A_FDIVP) or
  474. (opcode=A_FDIVRP) or
  475. (opcode=A_FADDP) or
  476. (opcode=A_FMULP)) then
  477. begin
  478. {$ifdef ATTOP}
  479. message1(asmr_w_adding_explicit_first_arg_fXX,att_op2str[opcode]);
  480. {$else}
  481. {$ifdef INTELOP}
  482. message1(asmr_w_adding_explicit_first_arg_fXX,int_op2str[opcode]);
  483. {$else}
  484. message1(asmr_w_adding_explicit_first_arg_fXX,'fXX');
  485. {$endif INTELOP}
  486. {$endif ATTOP}
  487. ops:=2;
  488. operands[2].opr.typ:=OPR_REGISTER;
  489. operands[2].opr.reg:=operands[1].opr.reg;
  490. operands[1].opr.reg:=R_ST;
  491. end;
  492. if (ops=1) and
  493. ((operands[1].opr.typ=OPR_REGISTER) and
  494. (operands[1].opr.reg in [R_ST1..R_ST7])) and
  495. ((opcode=A_FSUB) or
  496. (opcode=A_FSUBR) or
  497. (opcode=A_FDIV) or
  498. (opcode=A_FDIVR) or
  499. (opcode=A_FADD) or
  500. (opcode=A_FMUL)) then
  501. begin
  502. {$ifdef ATTOP}
  503. message1(asmr_w_adding_explicit_second_arg_fXX,att_op2str[opcode]);
  504. {$else}
  505. {$ifdef INTELOP}
  506. message1(asmr_w_adding_explicit_second_arg_fXX,int_op2str[opcode]);
  507. {$else}
  508. message1(asmr_w_adding_explicit_second_arg_fXX,'fXX');
  509. {$endif INTELOP}
  510. {$endif ATTOP}
  511. ops:=2;
  512. operands[2].opr.typ:=OPR_REGISTER;
  513. operands[2].opr.reg:=R_ST;
  514. end;
  515. { I tried to convince Linus Torwald to add
  516. code to support ENTER instruction
  517. (when raising a stack page fault)
  518. but he replied that ENTER is a bad instruction and
  519. Linux does not need to support it
  520. So I think its at least a good idea to add a warning
  521. if someone uses this in assembler code
  522. FPC itself does not use it at all PM }
  523. if (opcode=A_ENTER) and ((target_info.target=target_i386_linux) or
  524. (target_info.target=target_i386_FreeBSD)) then
  525. begin
  526. message(asmr_w_enter_not_supported_by_linux);
  527. end;
  528. ai:=taicpu.op_none(opcode,siz);
  529. ai.Ops:=Ops;
  530. for i:=1to Ops do
  531. begin
  532. case operands[i].opr.typ of
  533. OPR_CONSTANT :
  534. ai.loadconst(i-1,operands[i].opr.val);
  535. OPR_REGISTER:
  536. ai.loadreg(i-1,operands[i].opr.reg);
  537. OPR_SYMBOL:
  538. ai.loadsymbol(i-1,operands[i].opr.symbol,operands[i].opr.symofs);
  539. OPR_REFERENCE:
  540. begin
  541. ai.loadref(i-1,newreference(operands[i].opr.ref));
  542. if operands[i].size<>S_NO then
  543. begin
  544. asize:=0;
  545. case operands[i].size of
  546. S_B :
  547. asize:=OT_BITS8;
  548. S_W, S_IS :
  549. asize:=OT_BITS16;
  550. S_L, S_IL, S_FS:
  551. asize:=OT_BITS32;
  552. S_Q, S_D, S_FL, S_FV :
  553. asize:=OT_BITS64;
  554. S_FX :
  555. asize:=OT_BITS80;
  556. end;
  557. if asize<>0 then
  558. ai.oper[i-1].ot:=(ai.oper[i-1].ot and not OT_SIZE_MASK) or asize;
  559. end;
  560. end;
  561. end;
  562. end;
  563. if (opcode=A_CALL) and (opsize=S_FAR) then
  564. opcode:=A_LCALL;
  565. if (opcode=A_JMP) and (opsize=S_FAR) then
  566. opcode:=A_LJMP;
  567. if (opcode=A_LCALL) or (opcode=A_LJMP) then
  568. opsize:=S_FAR;
  569. { Condition ? }
  570. if condition<>C_None then
  571. ai.SetCondition(condition);
  572. { Concat the opcode or give an error }
  573. if assigned(ai) then
  574. begin
  575. { Check the instruction if it's valid }
  576. {$ifndef NOAG386BIN}
  577. ai.CheckIfValid;
  578. {$endif NOAG386BIN}
  579. p.concat(ai);
  580. end
  581. else
  582. Message(asmr_e_invalid_opcode_and_operand);
  583. end;
  584. end.
  585. {
  586. $Log$
  587. Revision 1.14 2002-01-24 18:25:53 peter
  588. * implicit result variable generation for assembler routines
  589. * removed m_tp modeswitch, use m_tp7 or not(m_fpc) instead
  590. Revision 1.13 2001/11/02 22:58:11 peter
  591. * procsym definition rewrite
  592. Revision 1.12 2001/08/26 13:37:01 florian
  593. * some cg reorganisation
  594. * some PPC updates
  595. Revision 1.11 2001/08/07 18:47:14 peter
  596. * merged netbsd start
  597. * profile for win32
  598. Revision 1.10 2001/08/06 21:40:50 peter
  599. * funcret moved from tprocinfo to tprocdef
  600. Revision 1.9 2001/04/13 01:22:19 peter
  601. * symtable change to classes
  602. * range check generation and errors fixed, make cycle DEBUG=1 works
  603. * memory leaks fixed
  604. Revision 1.8 2001/04/05 21:33:45 peter
  605. * movd and opsize fix merged
  606. Revision 1.7 2001/03/05 21:49:44 peter
  607. * noag386bin fix
  608. Revision 1.6 2001/02/20 21:51:36 peter
  609. * fpu fixes (merged)
  610. Revision 1.5 2001/01/12 19:18:42 peter
  611. * check for valid asm instructions
  612. Revision 1.4 2000/12/25 00:07:34 peter
  613. + new tlinkedlist class (merge of old tstringqueue,tcontainer and
  614. tlinkedlist objects)
  615. Revision 1.3 2000/11/29 00:30:50 florian
  616. * unused units removed from uses clause
  617. * some changes for widestrings
  618. Revision 1.2 2000/10/31 22:30:14 peter
  619. * merged asm result patch part 2
  620. Revision 1.1 2000/10/15 09:47:43 peter
  621. * moved to i386/
  622. Revision 1.7 2000/10/08 10:26:33 peter
  623. * merged @result fix from Pierre
  624. Revision 1.6 2000/09/24 21:33:47 peter
  625. * message updates merges
  626. Revision 1.5 2000/09/24 15:06:25 peter
  627. * use defines.inc
  628. Revision 1.4 2000/09/16 12:22:52 peter
  629. * freebsd support merged
  630. Revision 1.3 2000/09/03 11:44:00 peter
  631. * error for not specified operand size, which is now required for
  632. newer binutils (merged)
  633. * previous commit fix for tcflw (merged)
  634. Revision 1.2 2000/07/13 11:32:47 michael
  635. + removed logs
  636. }