inst.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Format of an instruction in memory.
  7.  *
  8.  * Copyright (C) 1996 by Ralf Baechle
  9.  */
  10. #ifndef _ASM_INST_H
  11. #define _ASM_INST_H
  12. /*
  13.  * Major opcodes; before MIPS IV cop1x was called cop3.
  14.  */
  15. enum major_op {
  16. spec_op, bcond_op, j_op, jal_op,
  17. beq_op, bne_op, blez_op, bgtz_op,
  18. addi_op, addiu_op, slti_op, sltiu_op,
  19. andi_op, ori_op, xori_op, lui_op,
  20. cop0_op, cop1_op, cop2_op, cop1x_op,
  21. beql_op, bnel_op, blezl_op, bgtzl_op,
  22. daddi_op, daddiu_op, ldl_op, ldr_op,
  23. major_1c_op, major_1d_op, major_1e_op, major_1f_op,
  24. lb_op, lh_op, lwl_op, lw_op,
  25. lbu_op, lhu_op, lwr_op, lwu_op,
  26. sb_op, sh_op, swl_op, sw_op,
  27. sdl_op, sdr_op, swr_op, cache_op,
  28. ll_op, lwc1_op, lwc2_op, pref_op,
  29. lld_op, ldc1_op, ldc2_op, ld_op,
  30. sc_op, swc1_op, swc2_op, major_3b_op, /* Opcode 0x3b is unused */
  31. scd_op, sdc1_op, sdc2_op, sd_op
  32. };
  33. /*
  34.  * func field of spec opcode.
  35.  */
  36. enum spec_op {
  37. sll_op, movc_op, srl_op, sra_op,
  38. sllv_op, srlv_op, srav_op, spec1_unused_op, /* Opcode 0x07 is unused */
  39. jr_op, jalr_op, movz_op, movn_op,
  40. syscall_op, break_op, spim_op, sync_op,
  41. mfhi_op, mthi_op, mflo_op, mtlo_op,
  42. dsllv_op, spec2_unused_op, dsrlv_op, dsrav_op,
  43. mult_op, multu_op, div_op, divu_op,
  44. dmult_op, dmultu_op, ddiv_op, ddivu_op,
  45. add_op, addu_op, sub_op, subu_op,
  46. and_op, or_op, xor_op, nor_op,
  47. spec3_unused_op, spec4_unused_op, slt_op, sltu_op,
  48. dadd_op, daddu_op, dsub_op, dsubu_op,
  49. tge_op, tgeu_op, tlt_op, tltu_op,
  50. teq_op, spec5_unused_op, tne_op, spec6_unused_op,
  51. dsll_op, spec7_unused_op, dsrl_op, dsra_op,
  52. dsll32_op, spec8_unused_op, dsrl32_op, dsra32_op
  53. };
  54. /*
  55.  * rt field of bcond opcodes.
  56.  */
  57. enum rt_op {
  58. bltz_op, bgez_op, bltzl_op, bgezl_op,
  59. spimi_op, unused_rt_op_0x05, unused_rt_op_0x06, unused_rt_op_0x07,
  60. tgei_op, tgeiu_op, tlti_op, tltiu_op,
  61. teqi_op, unused_0x0d_rt_op, tnei_op, unused_0x0f_rt_op,
  62. bltzal_op, bgezal_op, bltzall_op, bgezall_op
  63. /*
  64.  * The others (0x14 - 0x1f) are unused.
  65.    */
  66. };
  67. /*
  68.  * rs field of cop opcodes.
  69.  */
  70. enum cop_op {
  71. mfc_op        = 0x00, dmfc_op       = 0x01,
  72. cfc_op        = 0x02, mtc_op        = 0x04,
  73. dmtc_op       = 0x05, ctc_op        = 0x06,
  74. bc_op         = 0x08, cop_op        = 0x10,
  75. copm_op       = 0x18
  76. };
  77. /*
  78.  * func field of cop0 coi opcodes.
  79.  */
  80. enum cop0_coi_func {
  81. tlbr_op       = 0x01, tlbwi_op      = 0x02,
  82. tlbwr_op      = 0x06, tlbp_op       = 0x08,
  83. rfe_op        = 0x10, eret_op       = 0x18
  84. };
  85. /*
  86.  * func field of cop0 com opcodes.
  87.  */
  88. enum cop0_com_func {
  89. tlbr1_op      = 0x01, tlbw_op       = 0x02,
  90. tlbp1_op      = 0x08, dctr_op       = 0x09,
  91. dctw_op       = 0x0a
  92. };
  93. /*
  94.  * fmt field of cop1 opcodes.
  95.  */
  96. enum cop1_fmt {
  97. s_fmt, d_fmt, e_fmt, q_fmt,
  98. w_fmt, l_fmt
  99. };
  100. /*
  101.  * func field of cop1 instructions using d, s or w format.
  102.  */
  103. enum cop1_sdw_func {
  104. fadd_op      =  0x00, fsub_op      =  0x01,
  105. fmul_op      =  0x02, fdiv_op      =  0x03,
  106. fsqrt_op     =  0x04, fabs_op      =  0x05,
  107. fmov_op      =  0x06, fneg_op      =  0x07,
  108. froundl_op   =  0x08, ftruncl_op   =  0x09,
  109. fceill_op    =  0x0a, ffloorl_op   =  0x0b,
  110. fround_op    =  0x0c, ftrunc_op    =  0x0d,
  111. fceil_op     =  0x0e, ffloor_op    =  0x0f,
  112. fmovc_op     =  0x11, fmovz_op     =  0x12,
  113. fmovn_op     =  0x13, frecip_op    =  0x15,
  114. frsqrt_op    =  0x16, fcvts_op     =  0x20,
  115. fcvtd_op     =  0x21, fcvte_op     =  0x22,
  116. fcvtw_op     =  0x24, fcvtl_op     =  0x25,
  117. fcmp_op      =  0x30
  118. };
  119. /*
  120.  * func field of cop1x opcodes (MIPS IV).
  121.  */
  122. enum cop1x_func {
  123. lwxc1_op     =  0x00, ldxc1_op     =  0x01,
  124. pfetch_op    =  0x07, swxc1_op     =  0x08,
  125. sdxc1_op     =  0x09, madd_s_op    =  0x20,
  126. madd_d_op    =  0x21, madd_e_op    =  0x22,
  127. msub_s_op    =  0x28, msub_d_op    =  0x29,
  128. msub_e_op    =  0x2a, nmadd_s_op   =  0x30,
  129. nmadd_d_op   =  0x31, nmadd_e_op   =  0x32,
  130. nmsub_s_op   =  0x38, nmsub_d_op   =  0x39,
  131. nmsub_e_op   =  0x3a
  132. };
  133. /*
  134.  * func field for mad opcodes (MIPS IV).
  135.  */
  136. enum mad_func {
  137. madd_op      = 0x08, msub_op      = 0x0a,
  138. nmadd_op     = 0x0c, nmsub_op     = 0x0e
  139. };
  140. /*
  141.  * Damn ...  bitfields depend from byteorder :-(
  142.  */
  143. #ifdef __MIPSEB__
  144. struct j_format { /* Jump format */
  145. unsigned int opcode : 6;
  146. unsigned int target : 26;
  147. };
  148. struct i_format { /* Immediate format (addi, lw, ...) */
  149. unsigned int opcode : 6;
  150. unsigned int rs : 5;
  151. unsigned int rt : 5;
  152. signed int simmediate : 16;
  153. };
  154. struct u_format { /* Unsigned immediate format (ori, xori, ...) */
  155. unsigned int opcode : 6;
  156. unsigned int rs : 5;
  157. unsigned int rt : 5;
  158. unsigned int uimmediate : 16;
  159. };
  160. struct c_format { /* Cache (>= R6000) format */
  161. unsigned int opcode : 6;
  162. unsigned int rs : 5;
  163. unsigned int c_op : 3;
  164. unsigned int cache : 2;
  165. unsigned int simmediate : 16;
  166. };
  167. struct r_format { /* Register format */
  168. unsigned int opcode : 6;
  169. unsigned int rs : 5;
  170. unsigned int rt : 5;
  171. unsigned int rd : 5;
  172. unsigned int re : 5;
  173. unsigned int func : 6;
  174. };
  175. struct p_format { /* Performance counter format (R10000) */
  176. unsigned int opcode : 6;
  177. unsigned int rs : 5;
  178. unsigned int rt : 5;
  179. unsigned int rd : 5;
  180. unsigned int re : 5;
  181. unsigned int func : 6;
  182. };
  183. struct f_format { /* FPU register format */
  184. unsigned int opcode : 6;
  185. unsigned int : 1;
  186. unsigned int fmt : 4;
  187. unsigned int rt : 5;
  188. unsigned int rd : 5;
  189. unsigned int re : 5;
  190. unsigned int func : 6;
  191. };
  192. struct ma_format { /* FPU multipy and add format (MIPS IV) */
  193. unsigned int opcode : 6;
  194. unsigned int fr : 5;
  195. unsigned int ft : 5;
  196. unsigned int fs : 5;
  197. unsigned int fd : 5;
  198. unsigned int func : 4;
  199. unsigned int fmt : 2;
  200. };
  201. #elif defined(__MIPSEL__)
  202. struct j_format { /* Jump format */
  203. unsigned int target : 26;
  204. unsigned int opcode : 6;
  205. };
  206. struct i_format { /* Immediate format */
  207. signed int simmediate : 16;
  208. unsigned int rt : 5;
  209. unsigned int rs : 5;
  210. unsigned int opcode : 6;
  211. };
  212. struct u_format { /* Unsigned immediate format */
  213. unsigned int uimmediate : 16;
  214. unsigned int rt : 5;
  215. unsigned int rs : 5;
  216. unsigned int opcode : 6;
  217. };
  218. struct c_format { /* Cache (>= R6000) format */
  219. unsigned int simmediate : 16;
  220. unsigned int cache : 2;
  221. unsigned int c_op : 3;
  222. unsigned int rs : 5;
  223. unsigned int opcode : 6;
  224. };
  225. struct r_format { /* Register format */
  226. unsigned int func : 6;
  227. unsigned int re : 5;
  228. unsigned int rd : 5;
  229. unsigned int rt : 5;
  230. unsigned int rs : 5;
  231. unsigned int opcode : 6;
  232. };
  233. struct p_format { /* Performance counter format (R10000) */
  234. unsigned int func : 6;
  235. unsigned int re : 5;
  236. unsigned int rd : 5;
  237. unsigned int rt : 5;
  238. unsigned int rs : 5;
  239. unsigned int opcode : 6;
  240. };
  241. struct f_format { /* FPU register format */
  242. unsigned int func : 6;
  243. unsigned int re : 5;
  244. unsigned int rd : 5;
  245. unsigned int rt : 5;
  246. unsigned int fmt : 4;
  247. unsigned int : 1;
  248. unsigned int opcode : 6;
  249. };
  250. struct ma_format { /* FPU multipy and add format (MIPS IV) */
  251. unsigned int fmt : 2;
  252. unsigned int func : 4;
  253. unsigned int fd : 5;
  254. unsigned int fs : 5;
  255. unsigned int ft : 5;
  256. unsigned int fr : 5;
  257. unsigned int opcode : 6;
  258. };
  259. #else /* !defined (__MIPSEB__) && !defined (__MIPSEL__) */
  260. #error "MIPS but neither __MIPSEL__ nor __MIPSEB__?"
  261. #endif
  262. union mips_instruction {
  263. unsigned int word;
  264. unsigned short halfword[2];
  265. unsigned char byte[4];
  266. struct j_format j_format;
  267. struct i_format i_format;
  268. struct u_format u_format;
  269. struct c_format c_format;
  270. struct r_format r_format;
  271. struct f_format f_format;
  272.         struct ma_format ma_format;
  273. };
  274. #endif /* _ASM_INST_H */