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

  /external/chromium_org/courgette/
disassembler_elf_32_arm.cc 20 CheckBool DisassemblerElf32ARM::Compress(ARM_RVA type, uint32 arm_op, RVA rva,
34 uint32 temp = (arm_op & 0x00FF) << 1;
41 (*c_op) = (arm_op >> 8) | 0x1000;
47 uint32 temp = (arm_op & 0x07FF) << 1;
53 (*c_op) = (arm_op >> 11) | 0x2000;
59 uint32 temp = (arm_op & 0x00FFFFFF) << 2;
65 (*c_op) = (arm_op >> 24) | 0x3000;
70 temp |= (arm_op & 0x000007FF) << 1; // imm11
71 temp |= (arm_op & 0x03FF0000) >> 4; // imm10
73 uint32 S = (arm_op & (1 << 26)) >> 26
    [all...]
disassembler_elf_32_arm.h 55 static CheckBool Compress(ARM_RVA type, uint32 arm_op, RVA rva,
59 uint32* arm_op /* out */);
assembly_program.cc 122 const uint8* arm_op, uint16 op_size)
124 arm_op_(arm_op), op_size_(op_size) {
128 const uint8* arm_op() const { return arm_op_; } function in class:courgette::__anon10551::InstructionWithLabelARM
191 const uint8* arm_op, uint16 op_size) {
193 arm_op, op_size));
529 const uint8* arm_op = local
530 static_cast<InstructionWithLabelARM*>(instruction)->arm_op();
537 new(std::nothrow) BytesInstruction(arm_op, op_size);
assembly_program.h 98 CheckBool EmitRel32ARM(uint16 op, Label* label, const uint8* arm_op,

Completed in 412 milliseconds