disasm.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * several functions that help interpret ARC instructions
  3. * used for unaligned accesses, kprobes and kgdb
  4. *
  5. * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #ifndef __ARC_DISASM_H__
  12. #define __ARC_DISASM_H__
  13. enum {
  14. op_Bcc = 0, op_BLcc = 1, op_LD = 2, op_ST = 3, op_MAJOR_4 = 4,
  15. op_MAJOR_5 = 5, op_LD_ADD = 12, op_ADD_SUB_SHIFT = 13,
  16. op_ADD_MOV_CMP = 14, op_S = 15, op_LD_S = 16, op_LDB_S = 17,
  17. op_LDW_S = 18, op_LDWX_S = 19, op_ST_S = 20, op_STB_S = 21,
  18. op_STW_S = 22, op_Su5 = 23, op_SP = 24, op_GP = 25,
  19. op_Pcl = 26, op_MOV_S = 27, op_ADD_CMP = 28, op_BR_S = 29,
  20. op_B_S = 30, op_BL_S = 31
  21. };
  22. enum flow {
  23. noflow,
  24. direct_jump,
  25. direct_call,
  26. indirect_jump,
  27. indirect_call,
  28. invalid_instr
  29. };
  30. #define IS_BIT(word, n) ((word) & (1<<n))
  31. #define BITS(word, s, e) (((word) >> (s)) & (~((-2) << ((e) - (s)))))
  32. #define MAJOR_OPCODE(word) (BITS((word), 27, 31))
  33. #define MINOR_OPCODE(word) (BITS((word), 16, 21))
  34. #define FIELD_A(word) (BITS((word), 0, 5))
  35. #define FIELD_B(word) ((BITS((word), 12, 14)<<3) | \
  36. (BITS((word), 24, 26)))
  37. #define FIELD_C(word) (BITS((word), 6, 11))
  38. #define FIELD_u6(word) FIELDC(word)
  39. #define FIELD_s12(word) sign_extend(((BITS((word), 0, 5) << 6) | \
  40. BITS((word), 6, 11)), 12)
  41. /* note that for BL/BRcc these two macro's need another AND statement to mask
  42. * out bit 1 (make the result a multiple of 4) */
  43. #define FIELD_s9(word) sign_extend(((BITS(word, 15, 15) << 8) | \
  44. BITS(word, 16, 23)), 9)
  45. #define FIELD_s21(word) sign_extend(((BITS(word, 6, 15) << 11) | \
  46. (BITS(word, 17, 26) << 1)), 12)
  47. #define FIELD_s25(word) sign_extend(((BITS(word, 0, 3) << 21) | \
  48. (BITS(word, 6, 15) << 11) | \
  49. (BITS(word, 17, 26) << 1)), 12)
  50. /* note: these operate on 16 bits! */
  51. #define FIELD_S_A(word) ((BITS((word), 2, 2)<<3) | BITS((word), 0, 2))
  52. #define FIELD_S_B(word) ((BITS((word), 10, 10)<<3) | \
  53. BITS((word), 8, 10))
  54. #define FIELD_S_C(word) ((BITS((word), 7, 7)<<3) | BITS((word), 5, 7))
  55. #define FIELD_S_H(word) ((BITS((word), 0, 2)<<3) | BITS((word), 5, 8))
  56. #define FIELD_S_u5(word) (BITS((word), 0, 4))
  57. #define FIELD_S_u6(word) (BITS((word), 0, 4) << 1)
  58. #define FIELD_S_u7(word) (BITS((word), 0, 4) << 2)
  59. #define FIELD_S_u10(word) (BITS((word), 0, 7) << 2)
  60. #define FIELD_S_s7(word) sign_extend(BITS((word), 0, 5) << 1, 9)
  61. #define FIELD_S_s8(word) sign_extend(BITS((word), 0, 7) << 1, 9)
  62. #define FIELD_S_s9(word) sign_extend(BITS((word), 0, 8), 9)
  63. #define FIELD_S_s10(word) sign_extend(BITS((word), 0, 8) << 1, 10)
  64. #define FIELD_S_s11(word) sign_extend(BITS((word), 0, 8) << 2, 11)
  65. #define FIELD_S_s13(word) sign_extend(BITS((word), 0, 10) << 2, 13)
  66. #define STATUS32_L 0x00000100
  67. #define REG_LIMM 62
  68. struct disasm_state {
  69. /* generic info */
  70. unsigned long words[2];
  71. int instr_len;
  72. int major_opcode;
  73. /* info for branch/jump */
  74. int is_branch;
  75. int target;
  76. int delay_slot;
  77. enum flow flow;
  78. /* info for load/store */
  79. int src1, src2, src3, dest, wb_reg;
  80. int zz, aa, x, pref, di;
  81. int fault, write;
  82. };
  83. static inline int sign_extend(int value, int bits)
  84. {
  85. if (IS_BIT(value, (bits - 1)))
  86. value |= (0xffffffff << bits);
  87. return value;
  88. }
  89. static inline int is_short_instr(unsigned long addr)
  90. {
  91. uint16_t word = *((uint16_t *)addr);
  92. int opcode = (word >> 11) & 0x1F;
  93. return (opcode >= 0x0B);
  94. }
  95. void disasm_instr(unsigned long addr, struct disasm_state *state,
  96. int userspace, struct pt_regs *regs, struct callee_regs *cregs);
  97. int disasm_next_pc(unsigned long pc, struct pt_regs *regs, struct callee_regs
  98. *cregs, unsigned long *fall_thru, unsigned long *target);
  99. long get_reg(int reg, struct pt_regs *regs, struct callee_regs *cregs);
  100. void set_reg(int reg, long val, struct pt_regs *regs,
  101. struct callee_regs *cregs);
  102. #endif /* __ARC_DISASM_H__ */