HomeSort by relevance Sort by last modified time
    Searched refs:thumb_opcode (Results 1 - 3 of 3) sorted by null

  /art/compiler/utils/arm/
assembler_thumb2.cc 806 uint8_t thumb_opcode = 255U /* 0b11111111 */; local
808 case AND: thumb_opcode = 0U /* 0b0000 */; break;
809 case EOR: thumb_opcode = 4U /* 0b0100 */; break;
810 case SUB: thumb_opcode = 13U /* 0b1101 */; break;
811 case RSB: thumb_opcode = 14U /* 0b1110 */; break;
812 case ADD: thumb_opcode = 8U /* 0b1000 */; break;
813 case ADC: thumb_opcode = 10U /* 0b1010 */; break;
814 case SBC: thumb_opcode = 11U /* 0b1011 */; break;
816 case TST: thumb_opcode = 0U /* 0b0000 */; set_cc = true; rd = PC; break;
817 case TEQ: thumb_opcode = 4U /* 0b0100 */; set_cc = true; rd = PC; break
895 uint8_t thumb_opcode = 255U \/* 0b11111111 *\/; local
1062 uint8_t thumb_opcode;; local
    [all...]
  /external/lldb/source/Plugins/Disassembler/llvm/
DisassemblerLLVMC.cpp 177 uint32_t thumb_opcode = data.GetU16(&data_offset); local
178 if ((thumb_opcode & 0xe000) != 0xe000 || ((thumb_opcode & 0x1800u) == 0))
180 m_opcode.SetOpcode16 (thumb_opcode);
185 thumb_opcode <<= 16;
186 thumb_opcode |= data.GetU16(&data_offset);
187 m_opcode.SetOpcode16_2 (thumb_opcode);
  /external/lldb/source/Plugins/Instruction/ARM/
EmulateInstructionARM.cpp 12886 uint32_t thumb_opcode = MemARead(read_inst_context, pc, 2, 0, &success); local
    [all...]

Completed in 6210 milliseconds