Searched refs:thumb_opcode (Results 1 – 2 of 2) sorted by relevance
164 uint32_t thumb_opcode = data.GetU16(&data_offset); in Decode() local165 if ((thumb_opcode & 0xe000) != 0xe000 || in Decode()166 ((thumb_opcode & 0x1800u) == 0)) { in Decode()167 m_opcode.SetOpcode16(thumb_opcode, byte_order); in Decode()170 thumb_opcode <<= 16; in Decode()171 thumb_opcode |= data.GetU16(&data_offset); in Decode()172 m_opcode.SetOpcode16_2(thumb_opcode, byte_order); in Decode()
13843 uint32_t thumb_opcode = MemARead(read_inst_context, pc, 2, 0, &success); in ReadInstruction() local13846 if ((thumb_opcode & 0xe000) != 0xe000 || in ReadInstruction()13847 ((thumb_opcode & 0x1800u) == 0)) { in ReadInstruction()13848 m_opcode.SetOpcode16(thumb_opcode, GetByteOrder()); in ReadInstruction()13851 (thumb_opcode << 16) | in ReadInstruction()