2002-11-17 21:03:35 +00:00
|
|
|
//===-- X86InstrBuilder.h - Functions to aid building x86 insts -*- C++ -*-===//
|
2005-04-21 23:38:14 +00:00
|
|
|
//
|
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.
|
2005-04-21 23:38:14 +00:00
|
|
|
//
|
2003-10-21 15:17:13 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
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 {
|
|
|
|
|
2004-08-30 00:13:26 +00:00
|
|
|
/// X86AddressMode - This struct holds a generalized full x86 address mode.
|
|
|
|
/// The base register can be a frame index, which will eventually be replaced
|
2004-10-15 04:43:20 +00:00
|
|
|
/// with BP or SP and Disp being offsetted accordingly. The displacement may
|
|
|
|
/// also include the offset of a global value.
|
2004-08-30 00:13:26 +00:00
|
|
|
struct X86AddressMode {
|
2005-01-17 23:25:45 +00:00
|
|
|
enum {
|
|
|
|
RegBase,
|
2006-05-24 17:04:05 +00:00
|
|
|
FrameIndexBase
|
2005-01-17 23:25:45 +00:00
|
|
|
} BaseType;
|
2005-04-21 23:38:14 +00:00
|
|
|
|
2005-01-17 23:25:45 +00:00
|
|
|
union {
|
|
|
|
unsigned Reg;
|
|
|
|
int FrameIndex;
|
|
|
|
} Base;
|
2005-04-21 23:38:14 +00:00
|
|
|
|
2005-01-17 23:25:45 +00:00
|
|
|
unsigned Scale;
|
|
|
|
unsigned IndexReg;
|
|
|
|
unsigned Disp;
|
|
|
|
GlobalValue *GV;
|
2005-04-21 23:38:14 +00:00
|
|
|
|
2005-01-17 23:25:45 +00:00
|
|
|
X86AddressMode() : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(0) {
|
|
|
|
Base.Reg = 0;
|
|
|
|
}
|
2004-08-30 00:13:26 +00:00
|
|
|
};
|
|
|
|
|
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.
|
2006-05-04 18:16:01 +00:00
|
|
|
return MIB.addReg(Reg).addImm(1).addReg(0).addImm(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) {
|
2006-05-04 18:16:01 +00:00
|
|
|
return MIB.addReg(Reg).addImm(1).addReg(0).addImm(Offset);
|
2002-11-22 22:42:12 +00:00
|
|
|
}
|
|
|
|
|
2005-01-02 02:38:18 +00:00
|
|
|
/// addRegReg - This function is used to add a memory reference of the form:
|
|
|
|
/// [Reg + Reg].
|
|
|
|
inline const MachineInstrBuilder &addRegReg(const MachineInstrBuilder &MIB,
|
|
|
|
unsigned Reg1, unsigned Reg2) {
|
2006-05-04 18:16:01 +00:00
|
|
|
return MIB.addReg(Reg1).addImm(1).addReg(Reg2).addImm(0);
|
2005-01-02 02:38:18 +00:00
|
|
|
}
|
|
|
|
|
2004-02-25 06:01:07 +00:00
|
|
|
inline const MachineInstrBuilder &addFullAddress(const MachineInstrBuilder &MIB,
|
2004-08-30 00:13:26 +00:00
|
|
|
const X86AddressMode &AM) {
|
|
|
|
assert (AM.Scale == 1 || AM.Scale == 2 || AM.Scale == 4 || AM.Scale == 8);
|
|
|
|
|
|
|
|
if (AM.BaseType == X86AddressMode::RegBase)
|
|
|
|
MIB.addReg(AM.Base.Reg);
|
|
|
|
else if (AM.BaseType == X86AddressMode::FrameIndexBase)
|
|
|
|
MIB.addFrameIndex(AM.Base.FrameIndex);
|
|
|
|
else
|
|
|
|
assert (0);
|
2006-05-04 18:16:01 +00:00
|
|
|
MIB.addImm(AM.Scale).addReg(AM.IndexReg);
|
2004-10-15 04:43:20 +00:00
|
|
|
if (AM.GV)
|
2006-05-04 01:15:02 +00:00
|
|
|
return MIB.addGlobalAddress(AM.GV, AM.Disp);
|
2004-10-15 04:43:20 +00:00
|
|
|
else
|
2006-05-04 17:21:20 +00:00
|
|
|
return MIB.addImm(AM.Disp);
|
2004-02-25 06:01:07 +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) {
|
2006-05-04 18:16:01 +00:00
|
|
|
return MIB.addFrameIndex(FI).addImm(1).addReg(0).addImm(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) {
|
2006-05-04 18:16:01 +00:00
|
|
|
return MIB.addConstantPoolIndex(CPI).addImm(1).addReg(0).addImm(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
|