Home
last modified time | relevance | path

Searched refs:insn16 (Results 1 – 4 of 4) sorted by relevance

/external/capstone/arch/XCore/
DXCoreDisassembler.c735 uint16_t insn16; in XCore_getInstruction() local
739 if (!readInstruction16(code, code_len, &insn16)) { in XCore_getInstruction()
748 Result = decodeInstruction_2(DecoderTable16, MI, insn16, address, info, 0); in XCore_getInstruction()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/Disassembler/
DXCoreDisassembler.cpp741 uint16_t insn16; in getInstruction() local
743 if (!readInstruction16(Bytes, Address, Size, insn16)) { in getInstruction()
748 DecodeStatus Result = decodeInstruction(DecoderTable16, instr, insn16, in getInstruction()
/external/llvm/lib/Target/XCore/Disassembler/
DXCoreDisassembler.cpp741 uint16_t insn16; in getInstruction() local
743 if (!readInstruction16(Bytes, Address, Size, insn16)) { in getInstruction()
748 DecodeStatus Result = decodeInstruction(DecoderTable16, instr, insn16, in getInstruction()
/external/capstone/arch/ARM/
DARMDisassembler.c708 uint16_t insn16; in _Thumb_getInstruction() local
729 insn16 = (code[0] << 8) | code[1]; in _Thumb_getInstruction()
731 insn16 = (code[1] << 8) | code[0]; in _Thumb_getInstruction()
733 result = decodeInstruction_2(DecoderTableThumb16, MI, insn16, Address, NULL, ud->mode); in _Thumb_getInstruction()
741 result = decodeInstruction_2(DecoderTableThumbSBit16, MI, insn16, Address, NULL, ud->mode); in _Thumb_getInstruction()
751 result = decodeInstruction_2(DecoderTableThumb216, MI, insn16, Address, NULL, ud->mode); in _Thumb_getInstruction()