Lines Matching refs:insn
12 int probe_is_prohibited_opcode(u16 *insn) in probe_is_prohibited_opcode() argument
14 if (!is_known_insn((unsigned char *)insn)) in probe_is_prohibited_opcode()
16 switch (insn[0] >> 8) { in probe_is_prohibited_opcode()
25 switch (insn[0] & 0x0f) { in probe_is_prohibited_opcode()
30 switch (insn[0]) { in probe_is_prohibited_opcode()
46 int probe_get_fixup_type(u16 *insn) in probe_get_fixup_type() argument
51 switch (insn[0] >> 8) { in probe_get_fixup_type()
56 if ((insn[0] & 0x0f) == 0) in probe_get_fixup_type()
77 if ((insn[0] & 0xff) == 0xb2) in probe_get_fixup_type()
81 if ((insn[0] & 0x0f) == 0x05) in probe_get_fixup_type()
85 if ((insn[0] & 0x0f) == 0x05) /* brasl */ in probe_get_fixup_type()
89 switch (insn[2] & 0xff) { in probe_get_fixup_type()
97 if ((insn[2] & 0xff) == 0x46) in probe_get_fixup_type()
101 switch (insn[2] & 0xff) { in probe_get_fixup_type()
118 int probe_is_insn_relative_long(u16 *insn) in probe_is_insn_relative_long() argument
122 switch (insn[0] >> 8) { in probe_is_insn_relative_long()
124 if ((insn[0] & 0x0f) == 0x00) /* larl */ in probe_is_insn_relative_long()
128 switch (insn[0] & 0x0f) { in probe_is_insn_relative_long()
144 switch (insn[0] & 0x0f) { in probe_is_insn_relative_long()