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 736 uint8_t thumb_opcode = 0b11111111; local
738 case AND: thumb_opcode = 0b0000; break;
739 case EOR: thumb_opcode = 0b0100; break;
740 case SUB: thumb_opcode = 0b1101; break;
741 case RSB: thumb_opcode = 0b1110; break;
742 case ADD: thumb_opcode = 0b1000; break;
743 case ADC: thumb_opcode = 0b1010; break;
744 case SBC: thumb_opcode = 0b1011; break;
746 case TST: thumb_opcode = 0b0000; set_cc = true; rd = PC; break;
747 case TEQ: thumb_opcode = 0b0100; set_cc = true; rd = PC; break
820 uint8_t thumb_opcode = 0b11111111; local
952 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 802 milliseconds