cpubase.pas 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl
  4. Contains the base types for the m68k
  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. { This Unit contains the base types for the m68k
  19. }
  20. unit cpubase;
  21. {$i fpcdefs.inc}
  22. interface
  23. uses
  24. globtype,
  25. strings,cutils,cclasses,aasmbase,cpuinfo,cgbase;
  26. {*****************************************************************************
  27. Assembler Opcodes
  28. *****************************************************************************}
  29. type
  30. { warning: CPU32 opcodes are not fully compatible with the MC68020. }
  31. { 68000 only opcodes }
  32. tasmop = (a_abcd,
  33. a_add,a_adda,a_addi,a_addq,a_addx,a_and,a_andi,
  34. a_asl,a_asr,a_bcc,a_bcs,a_beq,a_bge,a_bgt,a_bhi,
  35. a_ble,a_bls,a_blt,a_bmi,a_bne,a_bpl,a_bvc,a_bvs,
  36. a_bchg,a_bclr,a_bra,a_bset,a_bsr,a_btst,a_chk,
  37. a_clr,a_cmp,a_cmpa,a_cmpi,a_cmpm,a_dbcc,a_dbcs,a_dbeq,a_dbge,
  38. a_dbgt,a_dbhi,a_dble,a_dbls,a_dblt,a_dbmi,a_dbne,a_dbra,
  39. a_dbpl,a_dbt,a_dbvc,a_dbvs,a_dbf,a_divs,a_divu,
  40. a_eor,a_eori,a_exg,a_illegal,a_ext,a_jmp,a_jsr,
  41. a_lea,a_link,a_lsl,a_lsr,a_move,a_movea,a_movei,a_moveq,
  42. a_movem,a_movep,a_muls,a_mulu,a_nbcd,a_neg,a_negx,
  43. a_nop,a_not,a_or,a_ori,a_pea,a_rol,a_ror,a_roxl,
  44. a_roxr,a_rtr,a_rts,a_sbcd,a_scc,a_scs,a_seq,a_sge,
  45. a_sgt,a_shi,a_sle,a_sls,a_slt,a_smi,a_sne,
  46. a_spl,a_st,a_svc,a_svs,a_sf,a_sub,a_suba,a_subi,a_subq,
  47. a_subx,a_swap,a_tas,a_trap,a_trapv,a_tst,a_unlk,
  48. a_rte,a_reset,a_stop,
  49. { mc68010 instructions }
  50. a_bkpt,a_movec,a_moves,a_rtd,
  51. { mc68020 instructions }
  52. a_bfchg,a_bfclr,a_bfexts,a_bfextu,a_bfffo,
  53. a_bfins,a_bfset,a_bftst,a_callm,a_cas,a_cas2,
  54. a_chk2,a_cmp2,a_divsl,a_divul,a_extb,a_pack,a_rtm,
  55. a_trapcc,a_tracs,a_trapeq,a_trapf,a_trapge,a_trapgt,
  56. a_traphi,a_traple,a_trapls,a_traplt,a_trapmi,a_trapne,
  57. a_trappl,a_trapt,a_trapvc,a_trapvs,a_unpk,
  58. { fpu processor instructions - directly supported only. }
  59. { ieee aware and misc. condition codes not supported }
  60. a_fabs,a_fadd,
  61. a_fbeq,a_fbne,a_fbngt,a_fbgt,a_fbge,a_fbnge,
  62. a_fblt,a_fbnlt,a_fble,a_fbgl,a_fbngl,a_fbgle,a_fbngle,
  63. a_fdbeq,a_fdbne,a_fdbgt,a_fdbngt,a_fdbge,a_fdbnge,
  64. a_fdblt,a_fdbnlt,a_fdble,a_fdbgl,a_fdbngl,a_fdbgle,a_fdbngle,
  65. a_fseq,a_fsne,a_fsgt,a_fsngt,a_fsge,a_fsnge,
  66. a_fslt,a_fsnlt,a_fsle,a_fsgl,a_fsngl,a_fsgle,a_fsngle,
  67. a_fcmp,a_fdiv,a_fmove,a_fmovem,
  68. a_fmul,a_fneg,a_fnop,a_fsqrt,a_fsub,a_fsgldiv,
  69. a_fsflmul,a_ftst,
  70. a_ftrapeq,a_ftrapne,a_ftrapgt,a_ftrapngt,a_ftrapge,a_ftrapnge,
  71. a_ftraplt,a_ftrapnlt,a_ftraple,a_ftrapgl,a_ftrapngl,a_ftrapgle,a_ftrapngle,
  72. { protected instructions }
  73. a_cprestore,a_cpsave,
  74. { fpu unit protected instructions }
  75. { and 68030/68851 common mmu instructions }
  76. { (this may include 68040 mmu instructions) }
  77. a_frestore,a_fsave,a_pflush,a_pflusha,a_pload,a_pmove,a_ptest,
  78. { useful for assembly language output }
  79. a_label,a_none,a_dbxx,a_sxx,a_bxx,a_fbxx);
  80. {# This should define the array of instructions as string }
  81. op2strtable=array[tasmop] of string[11];
  82. Const
  83. {# First value of opcode enumeration }
  84. firstop = low(tasmop);
  85. {# Last value of opcode enumeration }
  86. lastop = high(tasmop);
  87. {*****************************************************************************
  88. Registers
  89. *****************************************************************************}
  90. type
  91. { Number of registers used for indexing in tables }
  92. tregisterindex=0..{$i r68knor.inc}-1;
  93. const
  94. { Available Superregisters }
  95. {$i r68ksup.inc}
  96. { No Subregisters }
  97. R_SUBWHOLE = R_SUBNONE;
  98. { Available Registers }
  99. {$i r68kcon.inc}
  100. { Integer Super registers first and last }
  101. first_int_imreg = RS_D7+1;
  102. { Float Super register first and last }
  103. first_fpu_imreg = RS_FP7+1;
  104. { Integer Super registers first and last }
  105. first_addr_imreg = RS_SP+1;
  106. { MM Super register first and last }
  107. first_mm_supreg = 0;
  108. first_mm_imreg = 0;
  109. {$WARNING TODO FIX BSSTART}
  110. regnumber_count_bsstart = 16;
  111. regnumber_table : array[tregisterindex] of tregister = (
  112. {$i r68knum.inc}
  113. );
  114. regstabs_table : array[tregisterindex] of shortint = (
  115. {$i r68ksta.inc}
  116. );
  117. regdwarf_table : array[tregisterindex] of shortint = (
  118. {$warning TODO reused stabs values!}
  119. {$i r68ksta.inc}
  120. );
  121. { registers which may be destroyed by calls }
  122. VOLATILE_INTREGISTERS = [];
  123. VOLATILE_FPUREGISTERS = [];
  124. type
  125. totherregisterset = set of tregisterindex;
  126. {*****************************************************************************
  127. Conditions
  128. *****************************************************************************}
  129. type
  130. TAsmCond=(C_None,
  131. C_CC,C_LS,C_CS,C_LT,C_EQ,C_MI,C_F,C_NE,
  132. C_GE,C_PL,C_GT,C_T,C_HI,C_VC,C_LE,C_VS
  133. );
  134. const
  135. cond2str:array[TAsmCond] of string[3]=('',
  136. 'cc','ls','cs','lt','eq','mi','f','ne',
  137. 'ge','pl','gt','t','hi','vc','le','vs'
  138. );
  139. inverse_cond:array[TAsmCond] of TAsmCond=(C_None,
  140. {$warning TODO, this is just a copy!}
  141. C_CC,C_LS,C_CS,C_LT,C_EQ,C_MI,C_F,C_NE,
  142. C_GE,C_PL,C_GT,C_T,C_HI,C_VC,C_LE,C_VS
  143. );
  144. {*****************************************************************************
  145. Flags
  146. *****************************************************************************}
  147. type
  148. TResFlags = (
  149. F_E,F_NE,
  150. F_G,F_L,F_GE,F_LE,F_C,F_NC,F_A,F_AE,F_B,F_BE);
  151. {*****************************************************************************
  152. Reference
  153. *****************************************************************************}
  154. type
  155. { direction of address register : }
  156. { (An) (An)+ -(An) }
  157. tdirection = (dir_none,dir_inc,dir_dec);
  158. {*****************************************************************************
  159. Operand Sizes
  160. *****************************************************************************}
  161. { S_NO = No Size of operand }
  162. { S_B = 8-bit size operand }
  163. { S_W = 16-bit size operand }
  164. { S_L = 32-bit size operand }
  165. { Floating point types }
  166. { S_FS = single type (32 bit) }
  167. { S_FD = double/64bit integer }
  168. { S_FX = Extended type }
  169. topsize = (S_NO,S_B,S_W,S_L,S_FS,S_FD,S_FX,S_IQ);
  170. {*****************************************************************************
  171. Constants
  172. *****************************************************************************}
  173. const
  174. {# maximum number of operands in assembler instruction }
  175. max_operands = 4;
  176. {*****************************************************************************
  177. Default generic sizes
  178. *****************************************************************************}
  179. {# Defines the default address size for a processor, }
  180. OS_ADDR = OS_32;
  181. {# the natural int size for a processor, }
  182. OS_INT = OS_32;
  183. {# the maximum float size for a processor, }
  184. OS_FLOAT = OS_F64;
  185. {# the size of a vector register for a processor }
  186. OS_VECTOR = OS_M128;
  187. {*****************************************************************************
  188. GDB Information
  189. *****************************************************************************}
  190. {# Register indexes for stabs information, when some
  191. parameters or variables are stored in registers.
  192. Taken from m68kelf.h (DBX_REGISTER_NUMBER)
  193. from GCC 3.x source code.
  194. This is not compatible with the m68k-sun
  195. implementation.
  196. }
  197. stab_regindex : array[tregisterindex] of shortint =
  198. (
  199. {$i r68ksta.inc}
  200. );
  201. {*****************************************************************************
  202. Generic Register names
  203. *****************************************************************************}
  204. {# Stack pointer register }
  205. NR_STACK_POINTER_REG = NR_SP;
  206. RS_STACK_POINTER_REG = RS_SP;
  207. {# Frame pointer register }
  208. NR_FRAME_POINTER_REG = NR_A6;
  209. RS_FRAME_POINTER_REG = RS_A6;
  210. {# Register for addressing absolute data in a position independant way,
  211. such as in PIC code. The exact meaning is ABI specific. For
  212. further information look at GCC source : PIC_OFFSET_TABLE_REGNUM
  213. }
  214. NR_PIC_OFFSET_REG = NR_A5;
  215. { Return address for DWARF }
  216. {$warning TODO just a guess!}
  217. NR_RETURN_ADDRESS_REG = NR_A0;
  218. { Results are returned in this register (32-bit values) }
  219. NR_FUNCTION_RETURN_REG = NR_D0;
  220. RS_FUNCTION_RETURN_REG = NR_D0;
  221. { Low part of 64bit return value }
  222. NR_FUNCTION_RETURN64_LOW_REG = NR_D0;
  223. RS_FUNCTION_RETURN64_LOW_REG = RS_D0;
  224. { High part of 64bit return value }
  225. NR_FUNCTION_RETURN64_HIGH_REG = NR_D1;
  226. RS_FUNCTION_RETURN64_HIGH_REG = RS_D1;
  227. { The value returned from a function is available in this register }
  228. NR_FUNCTION_RESULT_REG = NR_FUNCTION_RETURN_REG;
  229. RS_FUNCTION_RESULT_REG = RS_FUNCTION_RETURN_REG;
  230. { The lowh part of 64bit value returned from a function }
  231. NR_FUNCTION_RESULT64_LOW_REG = NR_FUNCTION_RETURN64_LOW_REG;
  232. RS_FUNCTION_RESULT64_LOW_REG = RS_FUNCTION_RETURN64_LOW_REG;
  233. { The high part of 64bit value returned from a function }
  234. NR_FUNCTION_RESULT64_HIGH_REG = NR_FUNCTION_RETURN64_HIGH_REG;
  235. RS_FUNCTION_RESULT64_HIGH_REG = RS_FUNCTION_RETURN64_HIGH_REG;
  236. {# Floating point results will be placed into this register }
  237. NR_FPU_RESULT_REG = NR_FP0;
  238. {*****************************************************************************
  239. GCC /ABI linking information
  240. *****************************************************************************}
  241. {# Registers which must be saved when calling a routine declared as
  242. cppdecl, cdecl, stdcall, safecall, palmossyscall. The registers
  243. saved should be the ones as defined in the target ABI and / or GCC.
  244. This value can be deduced from CALLED_USED_REGISTERS array in the
  245. GCC source.
  246. }
  247. saved_standard_registers : array[0..5] of tsuperregister = (RS_D2,RS_D3,RS_D4,RS_D5,RS_D6,RS_D7);
  248. saved_standard_address_registers : array[0..3] of tsuperregister = (RS_A2,RS_A3,RS_A4,RS_A5);
  249. {# Required parameter alignment when calling a routine declared as
  250. stdcall and cdecl. The alignment value should be the one defined
  251. by GCC or the target ABI.
  252. The value of this constant is equal to the constant
  253. PARM_BOUNDARY / BITS_PER_UNIT in the GCC source.
  254. }
  255. std_param_align = 4; { for 32-bit version only }
  256. {*****************************************************************************
  257. CPU Dependent Constants
  258. *****************************************************************************}
  259. {*****************************************************************************
  260. Helpers
  261. *****************************************************************************}
  262. function is_calljmp(o:tasmop):boolean;
  263. procedure inverse_flags(var r : TResFlags);
  264. function flags_to_cond(const f: TResFlags) : TAsmCond;
  265. function cgsize2subreg(s:Tcgsize):Tsubregister;
  266. function reg_cgsize(const reg: tregister): tcgsize;
  267. function findreg_by_number(r:Tregister):tregisterindex;
  268. function std_regnum_search(const s:string):Tregister;
  269. function std_regname(r:Tregister):string;
  270. function isaddressregister(reg : tregister) : boolean;
  271. implementation
  272. uses
  273. verbose,
  274. rgbase;
  275. const
  276. std_regname_table : array[tregisterindex] of string[7] = (
  277. {$i r68kstd.inc}
  278. );
  279. regnumber_index : array[tregisterindex] of tregisterindex = (
  280. {$i r68krni.inc}
  281. );
  282. std_regname_index : array[tregisterindex] of tregisterindex = (
  283. {$i r68ksri.inc}
  284. );
  285. {*****************************************************************************
  286. Helpers
  287. *****************************************************************************}
  288. function is_calljmp(o:tasmop):boolean;
  289. begin
  290. is_calljmp := false;
  291. if o in [A_BXX,A_FBXX,A_DBXX,A_BCC..A_BVS,A_DBCC..A_DBVS,A_FBEQ..A_FSNGLE,
  292. A_JSR,A_BSR,A_JMP] then
  293. is_calljmp := true;
  294. end;
  295. procedure inverse_flags(var r: TResFlags);
  296. const flagsinvers : array[F_E..F_BE] of tresflags =
  297. (F_NE,F_E,
  298. F_LE,F_GE,
  299. F_L,F_G,
  300. F_NC,F_C,
  301. F_BE,F_B,
  302. F_AE,F_A);
  303. begin
  304. r:=flagsinvers[r];
  305. end;
  306. function flags_to_cond(const f: TResFlags) : TAsmCond;
  307. const flags2cond: array[tresflags] of tasmcond = (
  308. C_EQ,{F_E equal}
  309. C_NE,{F_NE not equal}
  310. C_GT,{F_G gt signed}
  311. C_LT,{F_L lt signed}
  312. C_GE,{F_GE ge signed}
  313. C_LE,{F_LE le signed}
  314. C_CS,{F_C carry set}
  315. C_CC,{F_NC carry clear}
  316. C_HI,{F_A gt unsigned}
  317. C_CC,{F_AE ge unsigned}
  318. C_CS,{F_B lt unsigned}
  319. C_LS);{F_BE le unsigned}
  320. begin
  321. flags_to_cond := flags2cond[f];
  322. end;
  323. function cgsize2subreg(s:Tcgsize):Tsubregister;
  324. begin
  325. case s of
  326. OS_8,OS_S8:
  327. cgsize2subreg:=R_SUBL;
  328. OS_16,OS_S16:
  329. cgsize2subreg:=R_SUBW;
  330. OS_32,OS_S32:
  331. cgsize2subreg:=R_SUBD;
  332. else
  333. internalerror(200301231);
  334. end;
  335. end;
  336. function reg_cgsize(const reg: tregister): tcgsize;
  337. begin
  338. case getregtype(reg) of
  339. R_ADDRESSREGISTER,
  340. R_INTREGISTER :
  341. result:=OS_32;
  342. R_FPUREGISTER :
  343. result:=OS_F32;
  344. else
  345. internalerror(200303181);
  346. end;
  347. end;
  348. function findreg_by_number(r:Tregister):tregisterindex;
  349. begin
  350. result:=findreg_by_number_table(r,regnumber_index);
  351. end;
  352. function std_regnum_search(const s:string):Tregister;
  353. begin
  354. result:=regnumber_table[findreg_by_name_table(s,std_regname_table,std_regname_index)];
  355. end;
  356. function std_regname(r:Tregister):string;
  357. var
  358. p : tregisterindex;
  359. begin
  360. p:=findreg_by_number_table(r,regnumber_index);
  361. if p<>0 then
  362. result:=std_regname_table[p]
  363. else
  364. result:=generic_regname(r);
  365. end;
  366. function isaddressregister(reg : tregister) : boolean;
  367. begin
  368. result:=getregtype(reg)=R_ADDRESSREGISTER;
  369. end;
  370. end.
  371. {
  372. $Log$
  373. Revision 1.35 2005-01-20 16:38:45 peter
  374. * load jmp_buf_size from system unit
  375. Revision 1.34 2005/01/08 04:10:36 karoly
  376. * made m68k to compile again
  377. Revision 1.33 2004/11/09 22:32:59 peter
  378. * small m68k updates to bring it up2date
  379. * give better error for external local variable
  380. Revision 1.32 2004/10/31 21:45:03 peter
  381. * generic tlocation
  382. * move tlocation to cgutils
  383. Revision 1.31 2004/06/20 08:55:31 florian
  384. * logs truncated
  385. Revision 1.30 2004/06/20 08:47:33 florian
  386. * spilling of doubles on sparc fixed
  387. Revision 1.29 2004/06/16 20:07:10 florian
  388. * dwarf branch merged
  389. Revision 1.28 2004/05/06 22:01:54 florian
  390. * register numbers for address registers fixed
  391. Revision 1.27 2004/05/06 20:30:51 florian
  392. * m68k compiler compilation fixed
  393. Revision 1.26 2004/04/25 21:26:16 florian
  394. * some m68k stuff fixed
  395. }