Lines Matching refs:insn
10 int probe_is_prohibited_opcode(u16 *insn) in probe_is_prohibited_opcode() argument
12 if (!is_known_insn((unsigned char *)insn)) in probe_is_prohibited_opcode()
14 switch (insn[0] >> 8) { in probe_is_prohibited_opcode()
23 switch (insn[0] & 0x0f) { in probe_is_prohibited_opcode()
28 switch (insn[0]) { in probe_is_prohibited_opcode()
44 int probe_get_fixup_type(u16 *insn) in probe_get_fixup_type() argument
49 switch (insn[0] >> 8) { in probe_get_fixup_type()
54 if ((insn[0] & 0x0f) == 0) in probe_get_fixup_type()
75 if ((insn[0] & 0xff) == 0xb2) in probe_get_fixup_type()
79 if ((insn[0] & 0x0f) == 0x05) in probe_get_fixup_type()
83 if ((insn[0] & 0x0f) == 0x05) /* brasl */ in probe_get_fixup_type()
87 switch (insn[2] & 0xff) { in probe_get_fixup_type()
95 if ((insn[2] & 0xff) == 0x46) in probe_get_fixup_type()
99 switch (insn[2] & 0xff) { in probe_get_fixup_type()
116 int probe_is_insn_relative_long(u16 *insn) in probe_is_insn_relative_long() argument
120 switch (insn[0] >> 8) { in probe_is_insn_relative_long()
122 if ((insn[0] & 0x0f) == 0x00) /* larl */ in probe_is_insn_relative_long()
126 switch (insn[0] & 0x0f) { in probe_is_insn_relative_long()
142 switch (insn[0] & 0x0f) { in probe_is_insn_relative_long()