2002-11-17 21:03:35 +00:00
|
|
|
//===-- X86InstrBuilder.h - Functions to aid building x86 insts -*- C++ -*-===//
|
2003-10-21 15:17:13 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2002-11-17 21:03:35 +00:00
|
|
|
//
|
|
|
|
// 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 09:28:50 +00:00
|
|
|
// For reference, the order of operands for memory references is:
|
|
|
|
// (Operand), Base, Scale, Index, Displacement.
|
|
|
|
//
|
2002-11-17 21:03:35 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86INSTRBUILDER_H
|
|
|
|
#define X86INSTRBUILDER_H
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2002-11-17 21:03:35 +00:00
|
|
|
/// addDirectMem - This function is used to add a direct memory reference to the
|
2002-12-28 20:26:58 +00: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-17 21:03:35 +00:00
|
|
|
inline const MachineInstrBuilder &addDirectMem(const MachineInstrBuilder &MIB,
|
|
|
|
unsigned Reg) {
|
2002-12-13 09:28:50 +00:00
|
|
|
// Because memory references are always represented with four
|
|
|
|
// values, this adds: Reg, [1, NoReg, 0] to the instruction.
|
2003-01-15 00:04:14 +00:00
|
|
|
return MIB.addReg(Reg).addZImm(1).addReg(0).addSImm(0);
|
2002-11-17 21:03:35 +00:00
|
|
|
}
|
|
|
|
|
2002-11-22 22:42:12 +00:00
|
|
|
|
2002-12-28 20:26:58 +00: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-22 22:42:12 +00:00
|
|
|
inline const MachineInstrBuilder &addRegOffset(const MachineInstrBuilder &MIB,
|
2002-12-28 20:26:58 +00:00
|
|
|
unsigned Reg, int Offset) {
|
2003-01-15 00:04:14 +00:00
|
|
|
return MIB.addReg(Reg).addZImm(1).addReg(0).addSImm(Offset);
|
2002-11-22 22:42:12 +00:00
|
|
|
}
|
|
|
|
|
2002-12-28 20:26:58 +00:00
|
|
|
/// addFrameReference - This function is used to add a reference to the base of
|
|
|
|
/// an abstract object on the stack frame of the current function. This
|
2003-01-13 00:45:53 +00:00
|
|
|
/// reference has base register as the FrameIndex offset until it is resolved.
|
|
|
|
/// This allows a constant offset to be specified as well...
|
2002-12-28 20:26:58 +00:00
|
|
|
///
|
|
|
|
inline const MachineInstrBuilder &
|
2003-01-13 00:45:53 +00:00
|
|
|
addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0) {
|
2003-01-15 00:04:14 +00:00
|
|
|
return MIB.addFrameIndex(FI).addZImm(1).addReg(0).addSImm(Offset);
|
2003-01-13 00:45:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// addConstantPoolReference - This function is used to add a reference to the
|
|
|
|
/// base of a constant value spilled to the per-function constant pool. The
|
|
|
|
/// reference has base register ConstantPoolIndex offset which is retained until
|
|
|
|
/// either machine code emission or assembly output. This allows an optional
|
|
|
|
/// offset to be added as well.
|
|
|
|
///
|
|
|
|
inline const MachineInstrBuilder &
|
|
|
|
addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI,
|
2003-10-22 03:10:26 +00:00
|
|
|
int Offset = 0) {
|
2003-01-15 00:04:14 +00:00
|
|
|
return MIB.addConstantPoolIndex(CPI).addZImm(1).addReg(0).addSImm(Offset);
|
2002-12-28 20:26:58 +00:00
|
|
|
}
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-11-17 21:03:35 +00:00
|
|
|
#endif
|