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

References

tools/llvm-exegesis/lib/X86/Target.cpp
  510   for (; Bytes - ByteOffset >= 4; ByteOffset += 4)
  510   for (; Bytes - ByteOffset >= 4; ByteOffset += 4)
  512         X86::MOV32mi, ByteOffset,
  513         WideConstant.extractBits(32, ByteOffset * 8).getZExtValue()));
  514   if (Bytes - ByteOffset >= 2) {
  516         X86::MOV16mi, ByteOffset,
  517         WideConstant.extractBits(16, ByteOffset * 8).getZExtValue()));
  518     ByteOffset += 2;
  520   if (Bytes - ByteOffset >= 1)
  522         X86::MOV8mi, ByteOffset,
  523         WideConstant.extractBits(8, ByteOffset * 8).getZExtValue()));