cpubase.pas 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636
  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. const
  68. { Super registers: }
  69. RS_NONE=$00;
  70. RS_R0 = $01; RS_R1 = $02; RS_R2 = $03;
  71. RS_R3 = $04; RS_R4 = $05; RS_R5 = $06;
  72. RS_R6 = $07; RS_R7 = $08; RS_R8 = $09;
  73. RS_R9 = $0A; RS_R10 = $0B; RS_R11 = $0C;
  74. RS_R12 = $0D; RS_R13 = $0E; RS_R14 = $0F;
  75. RS_R15 = $10;
  76. RS_PC = RS_R15;
  77. RS_F0=$00;
  78. RS_F1=$01;
  79. RS_F2=$02;
  80. RS_F3=$03;
  81. RS_F4=$04;
  82. RS_F5=$05;
  83. RS_F6=$06;
  84. RS_F7=$07;
  85. RS_D0 = $01; RS_D1 = $02; RS_D2 = $03;
  86. RS_D3 = $04; RS_D4 = $05; RS_D5 = $06;
  87. RS_D6 = $07; RS_D7 = $08; RS_D8 = $09;
  88. RS_D9 = $0A; RS_D10 = $0B; RS_D11 = $0C;
  89. RS_D12 = $0D; RS_D13 = $0E; RS_D14 = $0F;
  90. RS_D15 = $10;
  91. { No Subregisters }
  92. R_SUBWHOLE = R_SUBNONE;
  93. { Available Registers }
  94. {$i rarmcon.inc}
  95. type
  96. { Number of registers used for indexing in tables }
  97. tregisterindex=0..{$i rarmnor.inc}-1;
  98. const
  99. regnumber_table : array[tregisterindex] of tregister = (
  100. {$i rarmnum.inc}
  101. );
  102. regstabs_table : array[tregisterindex] of tregister = (
  103. {$i rarmsta.inc}
  104. );
  105. { registers which may be destroyed by calls }
  106. VOLATILE_INTREGISTERS = [RS_R0..RS_R3,RS_R12..RS_R15];
  107. VOLATILE_FPUREGISTERS = [RS_F0..RS_F3];
  108. type
  109. totherregisterset = set of tregisterindex;
  110. {*****************************************************************************
  111. Instruction post fixes
  112. *****************************************************************************}
  113. type
  114. { ARM instructions load/store and arithmetic instructions
  115. can have several instruction post fixes which are collected
  116. in this enumeration
  117. }
  118. TOpPostfix = (PF_None,
  119. { update condition flags
  120. or floating point single }
  121. PF_S,
  122. { floating point size }
  123. PF_D,PF_E,PF_P,FP_EP,
  124. { load/store }
  125. PF_B,PF_SB,PF_BT,PF_H,PF_SH,PF_T,
  126. { multiple load/store address modes }
  127. PF_IA,PF_IB,PF_DA,PF_DB,PF_FD,PF_FA,PF_ED,PF_EA
  128. );
  129. TRoundingMode = (RM_None,RM_P,RM_M,RM_Z);
  130. const
  131. cgsize2fpuoppostfix : array[OS_NO..OS_F128] of toppostfix = (
  132. PF_E,
  133. PF_None,PF_None,PF_None,PF_None,PF_None,PF_None,PF_None,PF_None,
  134. PF_S,PF_D,PF_E,PF_None,PF_None);
  135. oppostfix2str : array[TOpPostfix] of string[2] = ('',
  136. 's',
  137. 'd','e','p','ep',
  138. 'b','sb','bt','h','sh','t',
  139. 'ia','ib','da','db','fd','fa','ed','ea');
  140. roundingmode2str : array[TRoundingMode] of string[1] = ('',
  141. 'p','m','z');
  142. {*****************************************************************************
  143. Conditions
  144. *****************************************************************************}
  145. type
  146. TAsmCond=(C_None,
  147. C_EQ,C_NE,C_CS,C_CC,C_MI,C_PL,C_VS,C_VC,C_HI,C_LS,
  148. C_GE,C_LT,C_GT,C_LE,C_AL,C_NV
  149. );
  150. const
  151. cond2str : array[TAsmCond] of string[2]=('',
  152. 'eq','ne','cs','cc','mi','pl','vs','vc','hi','ls',
  153. 'ge','lt','gt','le','al','nv'
  154. );
  155. inverse_cond : array[TAsmCond] of TAsmCond=(C_None,
  156. C_NE,C_EQ,C_CC,C_CS,C_PL,C_MI,C_VC,C_VS,C_LS,C_HI,
  157. C_LT,C_GE,C_LE,C_GT,C_None,C_None
  158. );
  159. {*****************************************************************************
  160. Flags
  161. *****************************************************************************}
  162. type
  163. TResFlags = (F_EQ,F_NE,F_CS,F_CC,F_MI,F_PL,F_VS,F_VC,F_HI,F_LS,
  164. F_GE,F_LT,F_GT,F_LE);
  165. {*****************************************************************************
  166. Reference
  167. *****************************************************************************}
  168. type
  169. trefoptions=(ref_none,ref_parafixup,ref_localfixup,ref_selffixup);
  170. taddressmode = (AM_OFFSET,AM_PREINDEXED,AM_POSTINDEXED);
  171. tshiftmode = (SM_None,SM_LSL,SM_LSR,SM_ASR,SM_ROR,SM_RRX);
  172. { reference record }
  173. preference = ^treference;
  174. treference = packed record
  175. base,
  176. index : tregister;
  177. shiftimm : byte;
  178. signindex : shortint;
  179. offset : longint;
  180. symbol : tasmsymbol;
  181. offsetfixup : longint;
  182. options : trefoptions;
  183. addressmode : taddressmode;
  184. shiftmode : tshiftmode;
  185. end;
  186. { reference record }
  187. pparareference = ^tparareference;
  188. tparareference = packed record
  189. index : tregister;
  190. offset : longint;
  191. end;
  192. {*****************************************************************************
  193. Operands
  194. *****************************************************************************}
  195. { Types of operand }
  196. toptype=(top_none,top_reg,top_ref,top_const,top_symbol,top_regset,top_shifterop);
  197. tupdatereg = (UR_None,UR_Update);
  198. pshifterop = ^tshifterop;
  199. tshifterop = record
  200. shiftmode : tshiftmode;
  201. rs : tregister;
  202. shiftimm : byte;
  203. end;
  204. toper = record
  205. case typ : toptype of
  206. top_none : ();
  207. top_reg : (reg:tregister;update:tupdatereg);
  208. top_ref : (ref:preference);
  209. top_const : (val:aword);
  210. top_symbol : (sym:tasmsymbol;symofs:longint);
  211. top_regset : (regset:set of RS_R0..RS_R15);
  212. top_shifterop : (shifterop : pshifterop);
  213. end;
  214. {*****************************************************************************
  215. Generic Location
  216. *****************************************************************************}
  217. type
  218. { tparamlocation describes where a parameter for a procedure is stored.
  219. References are given from the caller's point of view. The usual
  220. TLocation isn't used, because contains a lot of unnessary fields.
  221. }
  222. tparalocation = packed record
  223. size : TCGSize;
  224. loc : TCGLoc;
  225. sp_fixup : longint;
  226. case TCGLoc of
  227. LOC_REFERENCE : (reference : tparareference);
  228. { segment in reference at the same place as in loc_register }
  229. LOC_REGISTER,LOC_CREGISTER : (
  230. case longint of
  231. 1 : (register,registerhigh : tregister);
  232. { overlay a registerlow }
  233. 2 : (registerlow : tregister);
  234. { overlay a 64 Bit register type }
  235. 3 : (reg64 : tregister64);
  236. 4 : (register64 : tregister64);
  237. );
  238. { it's only for better handling }
  239. LOC_MMXREGISTER,LOC_CMMXREGISTER : (mmxreg : tregister);
  240. end;
  241. tlocation = packed record
  242. loc : TCGLoc;
  243. size : TCGSize;
  244. case TCGLoc of
  245. LOC_FLAGS : (resflags : tresflags);
  246. LOC_CONSTANT : (
  247. case longint of
  248. 1 : (value : AWord);
  249. { can't do this, this layout depends on the host cpu. Use }
  250. { lo(valueqword)/hi(valueqword) instead (JM) }
  251. { 2 : (valuelow, valuehigh:AWord); }
  252. { overlay a complete 64 Bit value }
  253. 3 : (valueqword : qword);
  254. );
  255. LOC_CREFERENCE,
  256. LOC_REFERENCE : (reference : treference);
  257. { segment in reference at the same place as in loc_register }
  258. LOC_REGISTER,LOC_CREGISTER : (
  259. case longint of
  260. 1 : (register,registerhigh,segment : tregister);
  261. { overlay a registerlow }
  262. 2 : (registerlow : tregister);
  263. { overlay a 64 Bit register type }
  264. 3 : (reg64 : tregister64);
  265. 4 : (register64 : tregister64);
  266. );
  267. { it's only for better handling }
  268. LOC_MMXREGISTER,LOC_CMMXREGISTER : (mmxreg : tregister);
  269. end;
  270. {*****************************************************************************
  271. Constants
  272. *****************************************************************************}
  273. const
  274. { declare aliases }
  275. LOC_MMREGISTER = LOC_SSEREGISTER;
  276. LOC_CMMREGISTER = LOC_CSSEREGISTER;
  277. max_operands = 3;
  278. {# Constant defining possibly all registers which might require saving }
  279. ALL_OTHERREGISTERS = [];
  280. general_superregisters = [RS_R0..RS_PC];
  281. {# Table of registers which can be allocated by the code generator
  282. internally, when generating the code.
  283. }
  284. { legend: }
  285. { xxxregs = set of all possibly used registers of that type in the code }
  286. { generator }
  287. { usableregsxxx = set of all 32bit components of registers that can be }
  288. { possible allocated to a regvar or using getregisterxxx (this }
  289. { excludes registers which can be only used for parameter }
  290. { passing on ABI's that define this) }
  291. { c_countusableregsxxx = amount of registers in the usableregsxxx set }
  292. maxintregs = 15;
  293. usableregsint = [RS_R4..RS_R10];
  294. c_countusableregsint = 7;
  295. maxfpuregs = 8;
  296. fpuregs = [RS_F0..RS_F7];
  297. usableregsfpu = [RS_F4..RS_F7];
  298. c_countusableregsfpu = 4;
  299. mmregs = [RS_D0..RS_D15];
  300. usableregsmm = [RS_D8..RS_D15];
  301. c_countusableregsmm = 8;
  302. maxaddrregs = 0;
  303. addrregs = [];
  304. usableregsaddr = [];
  305. c_countusableregsaddr = 0;
  306. {*****************************************************************************
  307. Operand Sizes
  308. *****************************************************************************}
  309. type
  310. topsize = (S_NO,
  311. S_B,S_W,S_L,S_BW,S_BL,S_WL,
  312. S_IS,S_IL,S_IQ,
  313. S_FS,S_FL,S_FX,S_D,S_Q,S_FV,S_FXX
  314. );
  315. {*****************************************************************************
  316. Registers
  317. *****************************************************************************}
  318. const
  319. { Standard opcode string table (for each tasmop enumeration). The
  320. opcode strings should conform to the names as defined by the
  321. processor manufacturer.
  322. }
  323. std_op2str : op2strtable = (
  324. '','adc','add','and','n','bic','bkpt','b','bl','blx','bx',
  325. 'cdp','cdp2','clz','cmn','cmp','eor','ldc','ldc2',
  326. 'ldm','ldr','ldrb','ldrd','ldrbt','ldrh','ldrsb',
  327. 'ldrsh','ldrt','mcr','mcr2','mcrr','mla','mov',
  328. 'mrc','mrc2','mrrc','rs','msr','mul','mvn',
  329. 'orr','pld','qadd','qdadd','qdsub','qsub','rsb','rsc',
  330. 'sbc','smlal','smull','smul',
  331. 'smulw','stc','stc2','stm','str','strb','strbt','strd',
  332. 'strh','strt','sub','swi','swp','swpb','teq','tst',
  333. 'umlal','umull',
  334. { FPA coprocessor codes }
  335. 'ldf','stf','lfm','sfm','flt','fix','wfs','rfs','rfc',
  336. 'adf','dvf','fdv','fml','frd','muf','pol','pw','rdf',
  337. 'rmf','rpw','rsf','suf','abs','acs','asn','atn','cos',
  338. 'exp','log','lgn','mvf','mnf','nrm','rnd','sin','sqt','tan','urd',
  339. 'cmf','cnf'
  340. { VPA coprocessor codes }
  341. );
  342. {*****************************************************************************
  343. Constants
  344. *****************************************************************************}
  345. firstsaveintreg = RS_R4;
  346. lastsaveintreg = RS_R10;
  347. firstsavefpureg = RS_F4;
  348. lastsavefpureg = RS_F7;
  349. firstsavemmreg = RS_D8;
  350. lastsavemmreg = RS_D15;
  351. maxvarregs = 7;
  352. varregs : Array [1..maxvarregs] of tsuperregister =
  353. (RS_R4,RS_R5,RS_R6,RS_R7,RS_R8,RS_R9,RS_R10);
  354. maxfpuvarregs = 4;
  355. fpuvarregs : Array [1..maxfpuvarregs] of tsuperregister =
  356. (RS_F4,RS_F5,RS_F6,RS_F7);
  357. {*****************************************************************************
  358. Default generic sizes
  359. *****************************************************************************}
  360. { Defines the default address size for a processor, }
  361. OS_ADDR = OS_32;
  362. { the natural int size for a processor, }
  363. OS_INT = OS_32;
  364. { the maximum float size for a processor, }
  365. OS_FLOAT = OS_F64;
  366. { the size of a vector register for a processor }
  367. OS_VECTOR = OS_M32;
  368. {*****************************************************************************
  369. Generic Register names
  370. *****************************************************************************}
  371. { Stack pointer register }
  372. NR_STACK_POINTER_REG = NR_R13;
  373. RS_STACK_POINTER_REG = RS_R13;
  374. { Frame pointer register }
  375. RS_FRAME_POINTER_REG = RS_R11;
  376. NR_FRAME_POINTER_REG = NR_R11;
  377. { Register for addressing absolute data in a position independant way,
  378. such as in PIC code. The exact meaning is ABI specific. For
  379. further information look at GCC source : PIC_OFFSET_TABLE_REGNUM
  380. }
  381. NR_PIC_OFFSET_REG = NR_R9;
  382. { Results are returned in this register (32-bit values) }
  383. NR_FUNCTION_RETURN_REG = NR_R0;
  384. RS_FUNCTION_RETURN_REG = RS_R0;
  385. { Low part of 64bit return value }
  386. NR_FUNCTION_RETURN64_LOW_REG = NR_R0;
  387. RS_FUNCTION_RETURN64_LOW_REG = RS_R0;
  388. { High part of 64bit return value }
  389. NR_FUNCTION_RETURN64_HIGH_REG = NR_R1;
  390. RS_FUNCTION_RETURN64_HIGH_REG = RS_R1;
  391. { The value returned from a function is available in this register }
  392. NR_FUNCTION_RESULT_REG = NR_FUNCTION_RETURN_REG;
  393. RS_FUNCTION_RESULT_REG = RS_FUNCTION_RETURN_REG;
  394. { The lowh part of 64bit value returned from a function }
  395. NR_FUNCTION_RESULT64_LOW_REG = NR_FUNCTION_RETURN64_LOW_REG;
  396. RS_FUNCTION_RESULT64_LOW_REG = RS_FUNCTION_RETURN64_LOW_REG;
  397. { The high part of 64bit value returned from a function }
  398. NR_FUNCTION_RESULT64_HIGH_REG = NR_FUNCTION_RETURN64_HIGH_REG;
  399. RS_FUNCTION_RESULT64_HIGH_REG = RS_FUNCTION_RETURN64_HIGH_REG;
  400. NR_FPU_RESULT_REG = NR_F0;
  401. NR_MM_RESULT_REG = NR_NO;
  402. { Offset where the parent framepointer is pushed }
  403. PARENT_FRAMEPOINTER_OFFSET = 0;
  404. {*****************************************************************************
  405. GCC /ABI linking information
  406. *****************************************************************************}
  407. const
  408. { Registers which must be saved when calling a routine declared as
  409. cppdecl, cdecl, stdcall, safecall, palmossyscall. The registers
  410. saved should be the ones as defined in the target ABI and / or GCC.
  411. This value can be deduced from the CALLED_USED_REGISTERS array in the
  412. GCC source.
  413. }
  414. std_saved_registers = [RS_R4..RS_R10];
  415. { Required parameter alignment when calling a routine declared as
  416. stdcall and cdecl. The alignment value should be the one defined
  417. by GCC or the target ABI.
  418. The value of this constant is equal to the constant
  419. PARM_BOUNDARY / BITS_PER_UNIT in the GCC source.
  420. }
  421. std_param_align = 4;
  422. {*****************************************************************************
  423. Helpers
  424. *****************************************************************************}
  425. procedure convert_register_to_enum(var r:Tregister);
  426. function cgsize2subreg(s:Tcgsize):Tsubregister;
  427. function reg2opsize(r:tregister):topsize;
  428. function is_calljmp(o:tasmop):boolean;
  429. procedure inverse_flags(var f: TResFlags);
  430. function flags_to_cond(const f: TResFlags) : TAsmCond;
  431. function supreg_name(r:Tsuperregister):string;
  432. procedure shifterop_reset(var so : tshifterop);
  433. function is_pc(const r : tregister) : boolean;
  434. implementation
  435. uses
  436. verbose;
  437. procedure convert_register_to_enum(var r:Tregister);
  438. begin
  439. if r.enum = R_INTREGISTER then
  440. r.enum := toldregister(r.number shr 8)
  441. else
  442. internalerror(200308271);
  443. end;
  444. function cgsize2subreg(s:Tcgsize):Tsubregister;
  445. begin
  446. end;
  447. function reg2opsize(r:tregister):topsize;
  448. begin
  449. end;
  450. function is_calljmp(o:tasmop):boolean;
  451. begin
  452. { This isn't 100% perfect because the arm allows jumps also by writing to PC=R15.
  453. To overcome this problem we simply forbid that FPC generates jumps by loading R15 }
  454. is_calljmp:= o in [A_B,A_BL,A_BX,A_BLX];
  455. end;
  456. procedure inverse_flags(var f: TResFlags);
  457. begin
  458. end;
  459. function flags_to_cond(const f: TResFlags) : TAsmCond;
  460. const
  461. flag_2_cond: array[F_EQ..F_LE] of TAsmCond =
  462. (C_EQ,C_NE,C_CS,C_CC,C_MI,C_PL,C_VS,C_VC,C_HI,C_LS,
  463. C_GE,C_LT,C_GT,C_LE);
  464. begin
  465. if f>high(flag_2_cond) then
  466. internalerror(200112301);
  467. result:=flag_2_cond[f];
  468. end;
  469. function supreg_name(r:Tsuperregister):string;
  470. const
  471. supreg_names:array[0..last_supreg] of string[3]=
  472. ('inv',
  473. 'r0' ,'r2', 'r3','r4','r5','r6','r7','r8',
  474. 'r8' ,'r9', 'r10','r11','r12','r13','r14','pc'
  475. );
  476. var
  477. s : string[4];
  478. begin
  479. if r in [0..last_supreg] then
  480. supreg_name:=supreg_names[r]
  481. else
  482. begin
  483. str(r,s);
  484. supreg_name:='reg'+s;
  485. end;
  486. end;
  487. procedure shifterop_reset(var so : tshifterop);
  488. begin
  489. FillChar(so,sizeof(so),0);
  490. end;
  491. function is_pc(const r : tregister) : boolean;
  492. begin
  493. is_pc:=((r.enum=R_INTREGISTER) and (r.number=NR_R15))
  494. or (r.enum=R_PC);
  495. end;
  496. end.
  497. {
  498. $Log$
  499. Revision 1.11 2003-09-03 19:10:30 florian
  500. * initial revision of new register naming
  501. Revision 1.10 2003/09/01 15:11:16 florian
  502. * fixed reference handling
  503. * fixed operand postfix for floating point instructions
  504. * fixed wrong shifter constant handling
  505. Revision 1.9 2003/08/29 21:36:28 florian
  506. * fixed procedure entry/exit code
  507. * started to fix reference handling
  508. Revision 1.8 2003/08/28 00:05:29 florian
  509. * today's arm patches
  510. Revision 1.7 2003/08/25 23:20:38 florian
  511. + started to implement FPU support for the ARM
  512. * fixed a lot of other things
  513. Revision 1.6 2003/08/24 12:27:26 florian
  514. * continued to work on the arm port
  515. Revision 1.5 2003/08/21 03:14:00 florian
  516. * arm compiler can be compiled; far from being working
  517. Revision 1.4 2003/08/20 15:50:13 florian
  518. * more arm stuff
  519. Revision 1.3 2003/08/16 13:23:01 florian
  520. * several arm related stuff fixed
  521. Revision 1.2 2003/07/26 00:55:57 florian
  522. * basic stuff fixed
  523. Revision 1.1 2003/07/21 16:35:30 florian
  524. * very basic stuff for the arm
  525. }