reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
  302     insn->hasLockPrefix = true;
  306     if (lookAtByte(insn, &nextByte))
  314     if (isREX(insn, nextByte) || nextByte == 0x0f || nextByte == 0x66)
  316       insn->mandatoryPrefix = prefix;
  317     insn->repeatPrefix = prefix;
  320     if (lookAtByte(insn, &nextByte))
  323     if (!insn->mandatoryPrefix && (nextByte == 0x0f || isREX(insn, nextByte)))
  323     if (!insn->mandatoryPrefix && (nextByte == 0x0f || isREX(insn, nextByte)))
  324       insn->mandatoryPrefix = prefix;