Searched refs:insn32 (Results 1 – 5 of 5) sorted by relevance
/external/capstone/arch/ARM/ |
D | ARMDisassembler.c | 691 uint32_t NEONLdStInsn, insn32, NEONDataInsn, NEONCryptoInsn, NEONv8Insn; in _Thumb_getInstruction() local 761 insn32 = (bytes[3] << 0) | in _Thumb_getInstruction() 766 insn32 = (bytes[3] << 8) | in _Thumb_getInstruction() 772 result = decodeInstruction_4(DecoderTableThumb32, MI, insn32, Address, NULL, ud->mode); in _Thumb_getInstruction() 782 result = decodeInstruction_4(DecoderTableThumb232, MI, insn32, Address, NULL, ud->mode); in _Thumb_getInstruction() 790 result = decodeInstruction_4(DecoderTableVFP32, MI, insn32, Address, NULL, ud->mode); in _Thumb_getInstruction() 797 if (fieldFromInstruction_4(insn32, 28, 4) == 0xE) { in _Thumb_getInstruction() 799 result = decodeInstruction_4(DecoderTableVFP32, MI, insn32, Address, NULL, ud->mode); in _Thumb_getInstruction() 808 result = decodeInstruction_4(DecoderTableVFPV832, MI, insn32, Address, NULL, ud->mode); in _Thumb_getInstruction() 814 if (fieldFromInstruction_4(insn32, 28, 4) == 0xE) { in _Thumb_getInstruction() [all …]
|
/external/capstone/arch/XCore/ |
D | XCoreDisassembler.c | 733 uint32_t insn32; in XCore_getInstruction() local 751 if (!readInstruction32(code, code_len, &insn32)) { in XCore_getInstruction() 756 Result = decodeInstruction_4(DecoderTable32, MI, insn32, address, info, 0); in XCore_getInstruction()
|
/external/llvm/lib/Target/XCore/Disassembler/ |
D | XCoreDisassembler.cpp | 755 uint32_t insn32; in getInstruction() local 757 if (!readInstruction32(Bytes, Address, Size, insn32)) { in getInstruction() 762 Result = decodeInstruction(DecoderTable32, instr, insn32, Address, this, STI); in getInstruction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/XCore/Disassembler/ |
D | XCoreDisassembler.cpp | 755 uint32_t insn32; in getInstruction() local 757 if (!readInstruction32(Bytes, Address, Size, insn32)) { in getInstruction() 762 Result = decodeInstruction(DecoderTable32, instr, insn32, Address, this, STI); in getInstruction()
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/Disassembler/ |
D | ARMDisassembler.cpp | 767 uint32_t insn32 = (bytes[3] << 8) | in getInstruction() local 772 result = decodeThumbInstruction32(MI, insn32, Address, this, STI); in getInstruction() 782 result = decodeThumb2Instruction32(MI, insn32, Address, this, STI); in getInstruction() 790 result = decodeVFPInstruction32(MI, insn32, Address, this, STI); in getInstruction() 798 result = decodeNEONDupInstruction32(MI, insn32, Address, this, STI); in getInstruction() 805 if (fieldFromInstruction32(insn32, 24, 8) == 0xF9) { in getInstruction() 807 uint32_t NEONLdStInsn = insn32; in getInstruction() 818 if (fieldFromInstruction32(insn32, 24, 4) == 0xF) { in getInstruction() 820 uint32_t NEONDataInsn = insn32; in getInstruction()
|