Home
last modified time | relevance | path

Searched refs:MODE_64BIT (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp209 return insn->mode == MODE_64BIT && prefix >= 0x40 && prefix <= 0x4f; in isREX()
213 return insn->mode == MODE_64BIT && prefix == 0xd5; in isREX2()
350 if ((insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0)) { in readPrefixes()
369 if (insn->mode == MODE_64BIT) { in readPrefixes()
397 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) in readPrefixes()
409 if (insn->mode == MODE_64BIT) in readPrefixes()
428 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) in readPrefixes()
437 if (insn->mode == MODE_64BIT) in readPrefixes()
472 if (insn->mode == MODE_64BIT) in readPrefixes()
527 } else if (insn->mode == MODE_64BIT) { in readPrefixes()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DX86DisassemblerDecoderCommon.h500 enum DisassemblerMode { MODE_16BIT, MODE_32BIT, MODE_64BIT }; enumerator