Home
last modified time | relevance | path

Searched refs:thumb_opcode (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.cpp220 uint32_t thumb_opcode = data.GetU16(&data_offset); in Decode() local
221 if ((thumb_opcode & 0xe000) != 0xe000 || in Decode()
222 ((thumb_opcode & 0x1800u) == 0)) { in Decode()
223 m_opcode.SetOpcode16(thumb_opcode, byte_order); in Decode()
226 thumb_opcode <<= 16; in Decode()
227 thumb_opcode |= data.GetU16(&data_offset); in Decode()
228 m_opcode.SetOpcode16_2(thumb_opcode, byte_order); in Decode()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp13887 uint32_t thumb_opcode = MemARead(read_inst_context, pc, 2, 0, &success); in ReadInstruction() local
13890 if ((thumb_opcode & 0xe000) != 0xe000 || in ReadInstruction()
13891 ((thumb_opcode & 0x1800u) == 0)) { in ReadInstruction()
13892 m_opcode.SetOpcode16(thumb_opcode, GetByteOrder()); in ReadInstruction()
13895 (thumb_opcode << 16) | in ReadInstruction()
/freebsd-12.1/contrib/binutils/gas/
H A DChangeLog-9899170 * config/tc-arm.c (thumb_opcode): Add "variants" field.
H A DChangeLog-96971341 (struct thumb_opcode ): Likewise.
H A DChangeLog-0001147 (struct thumb_opcode): Rename variants->variant.