LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
X86InstrBuilder.h
Go to the documentation of this file.
1 //===-- X86InstrBuilder.h - Functions to aid building x86 insts -*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file exposes functions that may be used with BuildMI from the
11 // MachineInstrBuilder.h file to handle X86'isms in a clean way.
12 //
13 // The BuildMem function may be used with the BuildMI function to add entire
14 // memory references in a single, typed, function call. X86 memory references
15 // can be very complex expressions (described in the README), so wrapping them
16 // up behind an easier to use interface makes sense. Descriptions of the
17 // functions are included below.
18 //
19 // For reference, the order of operands for memory references is:
20 // (Operand), Base, Scale, Index, Displacement.
21 //
22 //===----------------------------------------------------------------------===//
23 
24 #ifndef X86INSTRBUILDER_H
25 #define X86INSTRBUILDER_H
26 
30 
31 namespace llvm {
32 
33 /// X86AddressMode - This struct holds a generalized full x86 address mode.
34 /// The base register can be a frame index, which will eventually be replaced
35 /// with BP or SP and Disp being offsetted accordingly. The displacement may
36 /// also include the offset of a global value.
38  enum {
41  } BaseType;
42 
43  union {
44  unsigned Reg;
46  } Base;
47 
48  unsigned Scale;
49  unsigned IndexReg;
50  int Disp;
51  const GlobalValue *GV;
52  unsigned GVOpFlags;
53 
55  : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(0), GVOpFlags(0) {
56  Base.Reg = 0;
57  }
58 
59 
61  assert(Scale == 1 || Scale == 2 || Scale == 4 || Scale == 8);
62 
64  MO.push_back(MachineOperand::CreateReg(Base.Reg, false, false,
65  false, false, false, 0, false));
66  else {
68  MO.push_back(MachineOperand::CreateFI(Base.FrameIndex));
69  }
70 
73  false, false, false, 0, false));
74 
75  if (GV)
77  else
79 
80  MO.push_back(MachineOperand::CreateReg(0, false, false,
81  false, false, false, 0, false));
82  }
83 };
84 
85 /// addDirectMem - This function is used to add a direct memory reference to the
86 /// current instruction -- that is, a dereference of an address in a register,
87 /// with no scale, index or displacement. An example is: DWORD PTR [EAX].
88 ///
89 static inline const MachineInstrBuilder &
90 addDirectMem(const MachineInstrBuilder &MIB, unsigned Reg) {
91  // Because memory references are always represented with five
92  // values, this adds: Reg, 1, NoReg, 0, NoReg to the instruction.
93  return MIB.addReg(Reg).addImm(1).addReg(0).addImm(0).addReg(0);
94 }
95 
96 
97 static inline const MachineInstrBuilder &
98 addOffset(const MachineInstrBuilder &MIB, int Offset) {
99  return MIB.addImm(1).addReg(0).addImm(Offset).addReg(0);
100 }
101 
102 /// addRegOffset - This function is used to add a memory reference of the form
103 /// [Reg + Offset], i.e., one with no scale or index, but with a
104 /// displacement. An example is: DWORD PTR [EAX + 4].
105 ///
106 static inline const MachineInstrBuilder &
108  unsigned Reg, bool isKill, int Offset) {
109  return addOffset(MIB.addReg(Reg, getKillRegState(isKill)), Offset);
110 }
111 
112 /// addRegReg - This function is used to add a memory reference of the form:
113 /// [Reg + Reg].
114 static inline const MachineInstrBuilder &addRegReg(const MachineInstrBuilder &MIB,
115  unsigned Reg1, bool isKill1,
116  unsigned Reg2, bool isKill2) {
117  return MIB.addReg(Reg1, getKillRegState(isKill1)).addImm(1)
118  .addReg(Reg2, getKillRegState(isKill2)).addImm(0).addReg(0);
119 }
120 
121 static inline const MachineInstrBuilder &
123  const X86AddressMode &AM) {
124  assert(AM.Scale == 1 || AM.Scale == 2 || AM.Scale == 4 || AM.Scale == 8);
125 
127  MIB.addReg(AM.Base.Reg);
128  else {
130  MIB.addFrameIndex(AM.Base.FrameIndex);
131  }
132 
133  MIB.addImm(AM.Scale).addReg(AM.IndexReg);
134  if (AM.GV)
135  MIB.addGlobalAddress(AM.GV, AM.Disp, AM.GVOpFlags);
136  else
137  MIB.addImm(AM.Disp);
138 
139  return MIB.addReg(0);
140 }
141 
142 /// addFrameReference - This function is used to add a reference to the base of
143 /// an abstract object on the stack frame of the current function. This
144 /// reference has base register as the FrameIndex offset until it is resolved.
145 /// This allows a constant offset to be specified as well...
146 ///
147 static inline const MachineInstrBuilder &
148 addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0) {
149  MachineInstr *MI = MIB;
150  MachineFunction &MF = *MI->getParent()->getParent();
151  MachineFrameInfo &MFI = *MF.getFrameInfo();
152  const MCInstrDesc &MCID = MI->getDesc();
153  unsigned Flags = 0;
154  if (MCID.mayLoad())
155  Flags |= MachineMemOperand::MOLoad;
156  if (MCID.mayStore())
158  MachineMemOperand *MMO =
160  Flags, MFI.getObjectSize(FI),
161  MFI.getObjectAlignment(FI));
162  return addOffset(MIB.addFrameIndex(FI), Offset)
163  .addMemOperand(MMO);
164 }
165 
166 /// addConstantPoolReference - This function is used to add a reference to the
167 /// base of a constant value spilled to the per-function constant pool. The
168 /// reference uses the abstract ConstantPoolIndex which is retained until
169 /// either machine code emission or assembly output. In PIC mode on x86-32,
170 /// the GlobalBaseReg parameter can be used to make this a
171 /// GlobalBaseReg-relative reference.
172 ///
173 static inline const MachineInstrBuilder &
175  unsigned GlobalBaseReg, unsigned char OpFlags) {
176  //FIXME: factor this
177  return MIB.addReg(GlobalBaseReg).addImm(1).addReg(0)
178  .addConstantPoolIndex(CPI, 0, OpFlags).addReg(0);
179 }
180 
181 } // End llvm namespace
182 
183 #endif
The memory access reads data.
const MachineFunction * getParent() const
The memory access writes data.
static const MachineInstrBuilder & addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI, unsigned GlobalBaseReg, unsigned char OpFlags)
bool mayStore() const
Return true if this instruction could possibly modify memory. Instructions with this flag set are not...
Definition: MCInstrDesc.h:376
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, unsigned f, uint64_t s, unsigned base_alignment, const MDNode *TBAAInfo=0, const MDNode *Ranges=0)
const MCInstrDesc & getDesc() const
Definition: MachineInstr.h:257
const GlobalValue * GV
static MachinePointerInfo getFixedStack(int FI, int64_t offset=0)
static MachineOperand CreateReg(unsigned Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isEarlyClobber=false, unsigned SubReg=0, bool isDebug=false, bool isInternalRead=false)
Abstract Stack Frame Information.
const MachineInstrBuilder & addImm(int64_t Val) const
union llvm::X86AddressMode::@223 Base
unsigned getKillRegState(bool B)
const MachineBasicBlock * getParent() const
Definition: MachineInstr.h:119
static const MachineInstrBuilder & addRegOffset(const MachineInstrBuilder &MIB, unsigned Reg, bool isKill, int Offset)
static MachineOperand CreateGA(const GlobalValue *GV, int64_t Offset, unsigned char TargetFlags=0)
static const MachineInstrBuilder & addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset=0, bool mem=true)
unsigned getObjectAlignment(int ObjectIdx) const
getObjectAlignment - Return the alignment of the specified stack object.
static const MachineInstrBuilder & addRegReg(const MachineInstrBuilder &MIB, unsigned Reg1, bool isKill1, unsigned Reg2, bool isKill2)
void getFullAddress(SmallVectorImpl< MachineOperand > &MO)
bool mayLoad() const
Return true if this instruction could possibly read memory. Instructions with this flag set are not n...
Definition: MCInstrDesc.h:367
MachineFrameInfo * getFrameInfo()
const MachineInstrBuilder & addFrameIndex(int Idx) const
const MachineInstrBuilder & addGlobalAddress(const GlobalValue *GV, int64_t Offset=0, unsigned char TargetFlags=0) const
static const MachineInstrBuilder & addDirectMem(const MachineInstrBuilder &MIB, unsigned Reg)
static const MachineInstrBuilder & addOffset(const MachineInstrBuilder &MIB, int Offset)
const MachineInstrBuilder & addConstantPoolIndex(unsigned Idx, int Offset=0, unsigned char TargetFlags=0) const
static MachineOperand CreateImm(int64_t Val)
enum llvm::X86AddressMode::@222 BaseType
const MachineInstrBuilder & addReg(unsigned RegNo, unsigned flags=0, unsigned SubReg=0) const
static MachineOperand CreateFI(int Idx)
int64_t getObjectSize(int ObjectIdx) const
static const MachineInstrBuilder & addFullAddress(const MachineInstrBuilder &MIB, const X86AddressMode &AM)