Lines Matching refs:insn
21 enum probes_insn checker_stack_use_none(probes_opcode_t insn, in checker_stack_use_none() argument
29 enum probes_insn checker_stack_use_unknown(probes_opcode_t insn, in checker_stack_use_unknown() argument
38 enum probes_insn checker_stack_use_imm_0xx(probes_opcode_t insn, in checker_stack_use_imm_0xx() argument
42 int imm = insn & 0xff; in checker_stack_use_imm_0xx()
51 enum probes_insn checker_stack_use_t32strd(probes_opcode_t insn, in checker_stack_use_t32strd() argument
55 int imm = insn & 0xff; in checker_stack_use_t32strd()
60 enum probes_insn checker_stack_use_imm_x0x(probes_opcode_t insn, in checker_stack_use_imm_x0x() argument
64 int imm = ((insn & 0xf00) >> 4) + (insn & 0xf); in checker_stack_use_imm_x0x()
70 enum probes_insn checker_stack_use_imm_xxx(probes_opcode_t insn, in checker_stack_use_imm_xxx() argument
74 int imm = insn & 0xfff; in checker_stack_use_imm_xxx()
79 enum probes_insn checker_stack_use_stmdx(probes_opcode_t insn, in checker_stack_use_stmdx() argument
83 unsigned int reglist = insn & 0xffff; in checker_stack_use_stmdx()
84 int pbit = insn & (1 << 24); in checker_stack_use_stmdx()