Searched refs:thumb_opcode (Results 1 – 2 of 2) sorted by relevance
496 uint32_t thumb_opcode = data.GetU16(&data_offset); in Decode() local497 if ((thumb_opcode & 0xe000) != 0xe000 || in Decode()498 ((thumb_opcode & 0x1800u) == 0)) { in Decode()499 m_opcode.SetOpcode16(thumb_opcode, byte_order); in Decode()502 thumb_opcode <<= 16; in Decode()503 thumb_opcode |= data.GetU16(&data_offset); in Decode()504 m_opcode.SetOpcode16_2(thumb_opcode, byte_order); in Decode()
13836 uint32_t thumb_opcode = MemARead(read_inst_context, pc, 2, 0, &success); in ReadInstruction() local13839 if ((thumb_opcode & 0xe000) != 0xe000 || in ReadInstruction()13840 ((thumb_opcode & 0x1800u) == 0)) { in ReadInstruction()13841 m_opcode.SetOpcode16(thumb_opcode, GetByteOrder()); in ReadInstruction()13844 (thumb_opcode << 16) | in ReadInstruction()