2002-11-18 05:03:35 +08:00
|
|
|
//===-- X86InstrBuilder.h - Functions to aid building x86 insts -*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// This file exposes functions that may be used with BuildMI from the
|
|
|
|
// MachineInstrBuilder.h file to handle X86'isms in a clean way.
|
|
|
|
//
|
|
|
|
// The BuildMem function may be used with the BuildMI function to add entire
|
|
|
|
// memory references in a single, typed, function call. X86 memory references
|
|
|
|
// can be very complex expressions (described in the README), so wrapping them
|
|
|
|
// up behind an easier to use interface makes sense. Descriptions of the
|
|
|
|
// functions are included below.
|
|
|
|
//
|
2002-12-13 17:28:50 +08:00
|
|
|
// For reference, the order of operands for memory references is:
|
|
|
|
// (Operand), Base, Scale, Index, Displacement.
|
|
|
|
//
|
2002-11-18 05:03:35 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86INSTRBUILDER_H
|
|
|
|
#define X86INSTRBUILDER_H
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
|
|
|
|
|
|
|
/// addDirectMem - This function is used to add a direct memory reference to the
|
2002-12-13 17:28:50 +08:00
|
|
|
/// current instruction -- that is, a dereference of an address in a register, with
|
|
|
|
/// no scale, index or displacement. An example is: DWORD PTR [EAX].
|
2002-11-18 05:03:35 +08:00
|
|
|
inline const MachineInstrBuilder &addDirectMem(const MachineInstrBuilder &MIB,
|
|
|
|
unsigned Reg) {
|
2002-12-13 17:28:50 +08:00
|
|
|
// Because memory references are always represented with four
|
|
|
|
// values, this adds: Reg, [1, NoReg, 0] to the instruction.
|
2002-11-18 05:03:35 +08:00
|
|
|
return MIB.addReg(Reg).addZImm(1).addMReg(0).addSImm(0);
|
|
|
|
}
|
|
|
|
|
2002-11-23 06:42:12 +08:00
|
|
|
|
2002-12-13 17:28:50 +08:00
|
|
|
/// addRegOffset - This function is used to add a memory reference of
|
|
|
|
/// the form [Reg + Offset], i.e., one with no scale or index, but
|
|
|
|
/// with a displacement. An example is: DWORD PTR [EAX + 4].
|
2002-11-23 06:42:12 +08:00
|
|
|
inline const MachineInstrBuilder &addRegOffset(const MachineInstrBuilder &MIB,
|
|
|
|
unsigned Reg, unsigned Offset) {
|
|
|
|
return MIB.addReg(Reg).addZImm(1).addMReg(0).addSImm(Offset);
|
|
|
|
}
|
|
|
|
|
2002-11-18 05:03:35 +08:00
|
|
|
#endif
|