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

References

lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
  357     if ((byte == 0xf2 || byte == 0xf3) && !lookAtByte(insn, &nextByte)) {
  365       if (((nextByte == 0xf0) ||
  366            ((nextByte & 0xfe) == 0x86 || (nextByte & 0xf8) == 0x90))) {
  366            ((nextByte & 0xfe) == 0x86 || (nextByte & 0xf8) == 0x90))) {
  368         if (!(byte == 0xf3 && nextByte == 0x90)) // PAUSE instruction support
  377       if (byte == 0xf3 && (nextByte == 0x88 || nextByte == 0x89 ||
  377       if (byte == 0xf3 && (nextByte == 0x88 || nextByte == 0x89 ||
  378                            nextByte == 0xc6 || nextByte == 0xc7)) {
  378                            nextByte == 0xc6 || nextByte == 0xc7)) {
  382       if (isREX(insn, nextByte)) {
  600     if (lookAtByte(insn, &nextByte))