cpubase.pas 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl and Peter Vreman
  4. Contains the base types for the ARM
  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. {# Base unit for processor information. This unit contains
  19. enumerations of registers, opcodes, sizes, and other
  20. such things which are processor specific.
  21. }
  22. unit cpubase;
  23. {$i fpcdefs.inc}
  24. interface
  25. uses
  26. cutils,cclasses,
  27. globtype,globals,
  28. cpuinfo,
  29. aasmbase,
  30. cginfo
  31. {$ifdef delphi}
  32. ,dmisc
  33. {$endif}
  34. ;
  35. {*****************************************************************************
  36. Assembler Opcodes
  37. *****************************************************************************}
  38. type
  39. TAsmOp=(A_None,A_ADC,A_ADD,A_AND,A_N,A_BIC,A_BKPT,A_B,A_BL,A_BLX,A_BX,
  40. A_CDP,A_CDP2,A_CLZ,A_CMN,A_CMP,A_EOR,A_LDC,_A_LDC2,
  41. A_LDM,A_LDR,A_LDRB,A_LDRD,A_LDRBT,A_LDRH,A_LDRSB,
  42. A_LDRSH,A_LDRT,A_MCR,A_MCR2,A_MCRR,A_MLA,A_MOV,
  43. A_MRC,A_MRC2,A_MRRC,A_RS,A_MSR,A_MUL,A_MVN,
  44. A_ORR,A_PLD,A_QADD,A_QDADD,A_QDSUB,A_QSUB,A_RSB,A_RSC,
  45. A_SBC,A_SMLAL,A_SMULL,A_SMUL,
  46. A_SMULW,A_STC,A_STC2,A_STM,A_STR,A_STRB,A_STRBT,A_STRD,
  47. A_STRH,A_STRT,A_SUB,A_SWI,A_SWP,A_SWPB,A_TEQ,A_TST,
  48. A_UMLAL,A_UMULL,
  49. { FPA coprocessor instructions }
  50. A_LDF,A_STF,A_LFM,A_SFM,A_FLT,A_FIX,A_WFS,A_RFS,A_RFC,
  51. A_ADF,A_DVF,A_FDV,A_FML,A_FRD,A_MUF,A_POL,A_PW,A_RDF,
  52. A_RMF,A_RPW,A_RSF,A_SUF,A_ABS,A_ACS,A_ASN,A_ATN,A_COS,
  53. A_EXP,A_LOG,A_LGN,A_MVF,A_MNF,A_NRM,A_RND,A_SIN,A_SQT,A_TAN,A_URD,
  54. A_CMF,A_CNF
  55. { VPA coprocessor codes }
  56. );
  57. { This should define the array of instructions as string }
  58. op2strtable=array[tasmop] of string[11];
  59. const
  60. { First value of opcode enumeration }
  61. firstop = low(tasmop);
  62. { Last value of opcode enumeration }
  63. lastop = high(tasmop);
  64. {*****************************************************************************
  65. Registers
  66. *****************************************************************************}
  67. type
  68. { Number of registers used for indexing in tables }
  69. tregisterindex=0..{$i rarmnor.inc}-1;
  70. const
  71. { Available Superregisters }
  72. {$i rarmsup.inc}
  73. RS_PC = RS_R15;
  74. { No Subregisters }
  75. R_SUBWHOLE = R_SUBNONE;
  76. { Available Registers }
  77. {$i rarmcon.inc}
  78. { aliases }
  79. NR_PC = NR_R15;
  80. { Integer Super registers first and last }
  81. {$warning Supreg shall be $00-$1f}
  82. first_int_supreg = RS_R0;
  83. last_int_supreg = RS_R15;
  84. first_int_imreg = $20;
  85. last_int_imreg = $fe;
  86. { Float Super register first and last }
  87. first_fpu_supreg = $00;
  88. last_fpu_supreg = $07;
  89. first_fpu_imreg = $20;
  90. last_fpu_imreg = $fe;
  91. { MM Super register first and last }
  92. first_mmx_supreg = RS_INVALID;
  93. last_mmx_supreg = RS_INVALID;
  94. first_mmx_imreg = RS_INVALID;
  95. last_mmx_imreg = RS_INVALID;
  96. {$warning TODO Calculate bsstart}
  97. regnumber_count_bsstart = 64;
  98. regnumber_table : array[tregisterindex] of tregister = (
  99. {$i rarmnum.inc}
  100. );
  101. regstabs_table : array[tregisterindex] of tregister = (
  102. {$i rarmsta.inc}
  103. );
  104. { registers which may be destroyed by calls }
  105. VOLATILE_INTREGISTERS = [RS_R0..RS_R3,RS_R12..RS_R15];
  106. VOLATILE_FPUREGISTERS = [RS_F0..RS_F3];
  107. type
  108. totherregisterset = set of tregisterindex;
  109. {*****************************************************************************
  110. Instruction post fixes
  111. *****************************************************************************}
  112. type
  113. { ARM instructions load/store and arithmetic instructions
  114. can have several instruction post fixes which are collected
  115. in this enumeration
  116. }
  117. TOpPostfix = (PF_None,
  118. { update condition flags
  119. or floating point single }
  120. PF_S,
  121. { floating point size }
  122. PF_D,PF_E,PF_P,FP_EP,
  123. { load/store }
  124. PF_B,PF_SB,PF_BT,PF_H,PF_SH,PF_T,
  125. { multiple load/store address modes }
  126. PF_IA,PF_IB,PF_DA,PF_DB,PF_FD,PF_FA,PF_ED,PF_EA
  127. );
  128. TRoundingMode = (RM_None,RM_P,RM_M,RM_Z);
  129. const
  130. cgsize2fpuoppostfix : array[OS_NO..OS_F128] of toppostfix = (
  131. PF_E,
  132. PF_None,PF_None,PF_None,PF_None,PF_None,PF_None,PF_None,PF_None,
  133. PF_S,PF_D,PF_E,PF_None,PF_None);
  134. oppostfix2str : array[TOpPostfix] of string[2] = ('',
  135. 's',
  136. 'd','e','p','ep',
  137. 'b','sb','bt','h','sh','t',
  138. 'ia','ib','da','db','fd','fa','ed','ea');
  139. roundingmode2str : array[TRoundingMode] of string[1] = ('',
  140. 'p','m','z');
  141. {*****************************************************************************
  142. Conditions
  143. *****************************************************************************}
  144. type
  145. TAsmCond=(C_None,
  146. C_EQ,C_NE,C_CS,C_CC,C_MI,C_PL,C_VS,C_VC,C_HI,C_LS,
  147. C_GE,C_LT,C_GT,C_LE,C_AL,C_NV
  148. );
  149. const
  150. cond2str : array[TAsmCond] of string[2]=('',
  151. 'eq','ne','cs','cc','mi','pl','vs','vc','hi','ls',
  152. 'ge','lt','gt','le','al','nv'
  153. );
  154. inverse_cond : array[TAsmCond] of TAsmCond=(C_None,
  155. C_NE,C_EQ,C_CC,C_CS,C_PL,C_MI,C_VC,C_VS,C_LS,C_HI,
  156. C_LT,C_GE,C_LE,C_GT,C_None,C_None
  157. );
  158. {*****************************************************************************
  159. Flags
  160. *****************************************************************************}
  161. type
  162. TResFlags = (F_EQ,F_NE,F_CS,F_CC,F_MI,F_PL,F_VS,F_VC,F_HI,F_LS,
  163. F_GE,F_LT,F_GT,F_LE);
  164. {*****************************************************************************
  165. Reference
  166. *****************************************************************************}
  167. type
  168. trefoptions=(ref_none,ref_parafixup,ref_localfixup,ref_selffixup);
  169. taddressmode = (AM_OFFSET,AM_PREINDEXED,AM_POSTINDEXED);
  170. tshiftmode = (SM_None,SM_LSL,SM_LSR,SM_ASR,SM_ROR,SM_RRX);
  171. { reference record }
  172. preference = ^treference;
  173. treference = packed record
  174. base,
  175. index : tregister;
  176. shiftimm : byte;
  177. signindex : shortint;
  178. offset : longint;
  179. symbol : tasmsymbol;
  180. offsetfixup : longint;
  181. options : trefoptions;
  182. addressmode : taddressmode;
  183. shiftmode : tshiftmode;
  184. end;
  185. { reference record }
  186. pparareference = ^tparareference;
  187. tparareference = packed record
  188. index : tregister;
  189. offset : longint;
  190. end;
  191. {*****************************************************************************
  192. Operands
  193. *****************************************************************************}
  194. { Types of operand }
  195. toptype=(top_none,top_reg,top_ref,top_const,top_symbol,top_regset,top_shifterop);
  196. tupdatereg = (UR_None,UR_Update);
  197. pshifterop = ^tshifterop;
  198. tshifterop = record
  199. shiftmode : tshiftmode;
  200. rs : tregister;
  201. shiftimm : byte;
  202. end;
  203. toper = record
  204. case typ : toptype of
  205. top_none : ();
  206. top_reg : (reg:tregister;update:tupdatereg);
  207. top_ref : (ref:preference);
  208. top_const : (val:aword);
  209. top_symbol : (sym:tasmsymbol;symofs:longint);
  210. top_regset : (regset:tsuperregisterset);
  211. top_shifterop : (shifterop : pshifterop);
  212. end;
  213. {*****************************************************************************
  214. Generic Location
  215. *****************************************************************************}
  216. type
  217. { tparamlocation describes where a parameter for a procedure is stored.
  218. References are given from the caller's point of view. The usual
  219. TLocation isn't used, because contains a lot of unnessary fields.
  220. }
  221. tparalocation = packed record
  222. size : TCGSize;
  223. loc : TCGLoc;
  224. sp_fixup : longint;
  225. case TCGLoc of
  226. LOC_REFERENCE : (reference : tparareference);
  227. { segment in reference at the same place as in loc_register }
  228. LOC_REGISTER,LOC_CREGISTER : (
  229. case longint of
  230. 1 : (register,registerhigh : tregister);
  231. { overlay a registerlow }
  232. 2 : (registerlow : tregister);
  233. { overlay a 64 Bit register type }
  234. 3 : (reg64 : tregister64);
  235. 4 : (register64 : tregister64);
  236. );
  237. { it's only for better handling }
  238. LOC_MMXREGISTER,LOC_CMMXREGISTER : (mmxreg : tregister);
  239. end;
  240. tlocation = packed record
  241. loc : TCGLoc;
  242. size : TCGSize;
  243. case TCGLoc of
  244. LOC_FLAGS : (resflags : tresflags);
  245. LOC_CONSTANT : (
  246. case longint of
  247. 1 : (value : AWord);
  248. { can't do this, this layout depends on the host cpu. Use }
  249. { lo(valueqword)/hi(valueqword) instead (JM) }
  250. { 2 : (valuelow, valuehigh:AWord); }
  251. { overlay a complete 64 Bit value }
  252. 3 : (valueqword : qword);
  253. );
  254. LOC_CREFERENCE,
  255. LOC_REFERENCE : (reference : treference);
  256. { segment in reference at the same place as in loc_register }
  257. LOC_REGISTER,LOC_CREGISTER : (
  258. case longint of
  259. 1 : (register,registerhigh,segment : tregister);
  260. { overlay a registerlow }
  261. 2 : (registerlow : tregister);
  262. { overlay a 64 Bit register type }
  263. 3 : (reg64 : tregister64);
  264. 4 : (register64 : tregister64);
  265. );
  266. { it's only for better handling }
  267. LOC_MMXREGISTER,LOC_CMMXREGISTER : (mmxreg : tregister);
  268. end;
  269. {*****************************************************************************
  270. Constants
  271. *****************************************************************************}
  272. const
  273. { declare aliases }
  274. LOC_MMREGISTER = LOC_SSEREGISTER;
  275. LOC_CMMREGISTER = LOC_CSSEREGISTER;
  276. max_operands = 3;
  277. {# Constant defining possibly all registers which might require saving }
  278. ALL_OTHERREGISTERS = [];
  279. general_superregisters = [RS_R0..RS_PC];
  280. {# Table of registers which can be allocated by the code generator
  281. internally, when generating the code.
  282. }
  283. { legend: }
  284. { xxxregs = set of all possibly used registers of that type in the code }
  285. { generator }
  286. { usableregsxxx = set of all 32bit components of registers that can be }
  287. { possible allocated to a regvar or using getregisterxxx (this }
  288. { excludes registers which can be only used for parameter }
  289. { passing on ABI's that define this) }
  290. { c_countusableregsxxx = amount of registers in the usableregsxxx set }
  291. maxintregs = 15;
  292. { to determine how many registers to use for regvars }
  293. maxintscratchregs = 3;
  294. usableregsint = [RS_R4..RS_R10];
  295. c_countusableregsint = 7;
  296. maxfpuregs = 8;
  297. fpuregs = [RS_F0..RS_F7];
  298. usableregsfpu = [RS_F4..RS_F7];
  299. c_countusableregsfpu = 4;
  300. mmregs = [RS_D0..RS_D15];
  301. usableregsmm = [RS_D8..RS_D15];
  302. c_countusableregsmm = 8;
  303. maxaddrregs = 0;
  304. addrregs = [];
  305. usableregsaddr = [];
  306. c_countusableregsaddr = 0;
  307. {*****************************************************************************
  308. Operand Sizes
  309. *****************************************************************************}
  310. type
  311. topsize = (S_NO,
  312. S_B,S_W,S_L,S_BW,S_BL,S_WL,
  313. S_IS,S_IL,S_IQ,
  314. S_FS,S_FL,S_FX,S_D,S_Q,S_FV,S_FXX
  315. );
  316. {*****************************************************************************
  317. Constants
  318. *****************************************************************************}
  319. const
  320. firstsaveintreg = RS_R4;
  321. lastsaveintreg = RS_R10;
  322. firstsavefpureg = RS_F4;
  323. lastsavefpureg = RS_F7;
  324. firstsavemmreg = RS_D8;
  325. lastsavemmreg = RS_D15;
  326. maxvarregs = 7;
  327. varregs : Array [1..maxvarregs] of tsuperregister =
  328. (RS_R4,RS_R5,RS_R6,RS_R7,RS_R8,RS_R9,RS_R10);
  329. maxfpuvarregs = 4;
  330. fpuvarregs : Array [1..maxfpuvarregs] of tsuperregister =
  331. (RS_F4,RS_F5,RS_F6,RS_F7);
  332. {*****************************************************************************
  333. Default generic sizes
  334. *****************************************************************************}
  335. { Defines the default address size for a processor, }
  336. OS_ADDR = OS_32;
  337. { the natural int size for a processor, }
  338. OS_INT = OS_32;
  339. { the maximum float size for a processor, }
  340. OS_FLOAT = OS_F64;
  341. { the size of a vector register for a processor }
  342. OS_VECTOR = OS_M32;
  343. {*****************************************************************************
  344. Generic Register names
  345. *****************************************************************************}
  346. { Stack pointer register }
  347. NR_STACK_POINTER_REG = NR_R13;
  348. RS_STACK_POINTER_REG = RS_R13;
  349. { Frame pointer register }
  350. RS_FRAME_POINTER_REG = RS_R11;
  351. NR_FRAME_POINTER_REG = NR_R11;
  352. { Register for addressing absolute data in a position independant way,
  353. such as in PIC code. The exact meaning is ABI specific. For
  354. further information look at GCC source : PIC_OFFSET_TABLE_REGNUM
  355. }
  356. NR_PIC_OFFSET_REG = NR_R9;
  357. { Results are returned in this register (32-bit values) }
  358. NR_FUNCTION_RETURN_REG = NR_R0;
  359. RS_FUNCTION_RETURN_REG = RS_R0;
  360. { Low part of 64bit return value }
  361. NR_FUNCTION_RETURN64_LOW_REG = NR_R0;
  362. RS_FUNCTION_RETURN64_LOW_REG = RS_R0;
  363. { High part of 64bit return value }
  364. NR_FUNCTION_RETURN64_HIGH_REG = NR_R1;
  365. RS_FUNCTION_RETURN64_HIGH_REG = RS_R1;
  366. { The value returned from a function is available in this register }
  367. NR_FUNCTION_RESULT_REG = NR_FUNCTION_RETURN_REG;
  368. RS_FUNCTION_RESULT_REG = RS_FUNCTION_RETURN_REG;
  369. { The lowh part of 64bit value returned from a function }
  370. NR_FUNCTION_RESULT64_LOW_REG = NR_FUNCTION_RETURN64_LOW_REG;
  371. RS_FUNCTION_RESULT64_LOW_REG = RS_FUNCTION_RETURN64_LOW_REG;
  372. { The high part of 64bit value returned from a function }
  373. NR_FUNCTION_RESULT64_HIGH_REG = NR_FUNCTION_RETURN64_HIGH_REG;
  374. RS_FUNCTION_RESULT64_HIGH_REG = RS_FUNCTION_RETURN64_HIGH_REG;
  375. NR_FPU_RESULT_REG = NR_F0;
  376. NR_MM_RESULT_REG = NR_NO;
  377. { Offset where the parent framepointer is pushed }
  378. PARENT_FRAMEPOINTER_OFFSET = 0;
  379. {*****************************************************************************
  380. GCC /ABI linking information
  381. *****************************************************************************}
  382. const
  383. { Registers which must be saved when calling a routine declared as
  384. cppdecl, cdecl, stdcall, safecall, palmossyscall. The registers
  385. saved should be the ones as defined in the target ABI and / or GCC.
  386. This value can be deduced from the CALLED_USED_REGISTERS array in the
  387. GCC source.
  388. }
  389. std_saved_registers = [RS_R4..RS_R10];
  390. { Required parameter alignment when calling a routine declared as
  391. stdcall and cdecl. The alignment value should be the one defined
  392. by GCC or the target ABI.
  393. The value of this constant is equal to the constant
  394. PARM_BOUNDARY / BITS_PER_UNIT in the GCC source.
  395. }
  396. std_param_align = 4;
  397. {*****************************************************************************
  398. Helpers
  399. *****************************************************************************}
  400. function cgsize2subreg(s:Tcgsize):Tsubregister;
  401. function is_calljmp(o:tasmop):boolean;
  402. procedure inverse_flags(var f: TResFlags);
  403. function flags_to_cond(const f: TResFlags) : TAsmCond;
  404. function findreg_by_number(r:Tregister):tregisterindex;
  405. function findreg_by_stdname(const s:string):byte;
  406. function std_regnum_search(const s:string):Tregister;
  407. function std_regname(r:Tregister):string;
  408. procedure shifterop_reset(var so : tshifterop);
  409. function is_pc(const r : tregister) : boolean;
  410. implementation
  411. uses
  412. verbose;
  413. const
  414. std_regname_table : array[tregisterindex] of string[7] = (
  415. {$i rarmstd.inc}
  416. );
  417. regnumber_index : array[tregisterindex] of tregisterindex = (
  418. {$i rarmrni.inc}
  419. );
  420. std_regname_index : array[tregisterindex] of tregisterindex = (
  421. {$i rarmsri.inc}
  422. );
  423. function cgsize2subreg(s:Tcgsize):Tsubregister;
  424. begin
  425. cgsize2subreg:=R_SUBWHOLE;
  426. end;
  427. function is_calljmp(o:tasmop):boolean;
  428. begin
  429. { This isn't 100% perfect because the arm allows jumps also by writing to PC=R15.
  430. To overcome this problem we simply forbid that FPC generates jumps by loading R15 }
  431. is_calljmp:= o in [A_B,A_BL,A_BX,A_BLX];
  432. end;
  433. procedure inverse_flags(var f: TResFlags);
  434. const
  435. inv_flags: array[TResFlags] of TResFlags =
  436. (F_NE,F_NE,F_CC,F_CS,F_PL,F_MI,F_VC,F_VS,F_LS,F_HI,
  437. F_LT,F_GE,F_LE,F_GT);
  438. begin
  439. f:=inv_flags[f];
  440. end;
  441. function flags_to_cond(const f: TResFlags) : TAsmCond;
  442. const
  443. flag_2_cond: array[F_EQ..F_LE] of TAsmCond =
  444. (C_EQ,C_NE,C_CS,C_CC,C_MI,C_PL,C_VS,C_VC,C_HI,C_LS,
  445. C_GE,C_LT,C_GT,C_LE);
  446. begin
  447. if f>high(flag_2_cond) then
  448. internalerror(200112301);
  449. result:=flag_2_cond[f];
  450. end;
  451. function findreg_by_stdname(const s:string):byte;
  452. var
  453. i,p : tregisterindex;
  454. begin
  455. {Binary search.}
  456. p:=0;
  457. i:=regnumber_count_bsstart;
  458. repeat
  459. if (p+i<=high(tregisterindex)) and (std_regname_table[std_regname_index[p+i]]<=s) then
  460. p:=p+i;
  461. i:=i shr 1;
  462. until i=0;
  463. if std_regname_table[std_regname_index[p]]=s then
  464. result:=std_regname_index[p]
  465. else
  466. result:=0;
  467. end;
  468. function findreg_by_number(r:Tregister):tregisterindex;
  469. var
  470. i,p : tregisterindex;
  471. begin
  472. {Binary search.}
  473. p:=0;
  474. i:=regnumber_count_bsstart;
  475. repeat
  476. if (p+i<=high(tregisterindex)) and (regnumber_table[regnumber_index[p+i]]<=r) then
  477. p:=p+i;
  478. i:=i shr 1;
  479. until i=0;
  480. if regnumber_table[regnumber_index[p]]=r then
  481. result:=regnumber_index[p]
  482. else
  483. result:=0;
  484. end;
  485. function std_regnum_search(const s:string):Tregister;
  486. begin
  487. result:=regnumber_table[findreg_by_stdname(s)];
  488. end;
  489. function std_regname(r:Tregister):string;
  490. var
  491. p : tregisterindex;
  492. begin
  493. p:=findreg_by_number(r);
  494. if p<>0 then
  495. result:=std_regname_table[p]
  496. else
  497. result:=generic_regname(r);
  498. end;
  499. procedure shifterop_reset(var so : tshifterop);
  500. begin
  501. FillChar(so,sizeof(so),0);
  502. end;
  503. function is_pc(const r : tregister) : boolean;
  504. begin
  505. is_pc:=(r=NR_R15);
  506. end;
  507. end.
  508. {
  509. $Log$
  510. Revision 1.14 2003-09-05 23:57:01 florian
  511. * arm is working again as before the new register naming scheme was implemented
  512. Revision 1.13 2003/09/04 21:07:03 florian
  513. * ARM compiler compiles again
  514. Revision 1.12 2003/09/04 00:15:29 florian
  515. * first bunch of adaptions of arm compiler for new register type
  516. Revision 1.11 2003/09/03 19:10:30 florian
  517. * initial revision of new register naming
  518. Revision 1.10 2003/09/01 15:11:16 florian
  519. * fixed reference handling
  520. * fixed operand postfix for floating point instructions
  521. * fixed wrong shifter constant handling
  522. Revision 1.9 2003/08/29 21:36:28 florian
  523. * fixed procedure entry/exit code
  524. * started to fix reference handling
  525. Revision 1.8 2003/08/28 00:05:29 florian
  526. * today's arm patches
  527. Revision 1.7 2003/08/25 23:20:38 florian
  528. + started to implement FPU support for the ARM
  529. * fixed a lot of other things
  530. Revision 1.6 2003/08/24 12:27:26 florian
  531. * continued to work on the arm port
  532. Revision 1.5 2003/08/21 03:14:00 florian
  533. * arm compiler can be compiled; far from being working
  534. Revision 1.4 2003/08/20 15:50:13 florian
  535. * more arm stuff
  536. Revision 1.3 2003/08/16 13:23:01 florian
  537. * several arm related stuff fixed
  538. Revision 1.2 2003/07/26 00:55:57 florian
  539. * basic stuff fixed
  540. Revision 1.1 2003/07/21 16:35:30 florian
  541. * very basic stuff for the arm
  542. }