Temporarily revert r68552. This was causing a failure in the self-hosting LLVM
[oota-llvm.git] / lib / Target / X86 / X86InstrBuilder.h
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
27 #include "llvm/CodeGen/MachineFrameInfo.h"
28 #include "llvm/CodeGen/MachineInstrBuilder.h"
29 #include "llvm/CodeGen/PseudoSourceValue.h"
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.
37 struct X86AddressMode {
38   enum {
39     RegBase,
40     FrameIndexBase
41   } BaseType;
42
43   union {
44     unsigned Reg;
45     int FrameIndex;
46   } Base;
47
48   unsigned Scale;
49   unsigned IndexReg;
50   unsigned Disp;
51   GlobalValue *GV;
52
53   X86AddressMode() : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(0) {
54     Base.Reg = 0;
55   }
56 };
57
58 /// addDirectMem - This function is used to add a direct memory reference to the
59 /// current instruction -- that is, a dereference of an address in a register,
60 /// with no scale, index or displacement. An example is: DWORD PTR [EAX].
61 ///
62 inline const MachineInstrBuilder &addDirectMem(const MachineInstrBuilder &MIB,
63                                                unsigned Reg) {
64   // Because memory references are always represented with four
65   // values, this adds: Reg, [1, NoReg, 0] to the instruction.
66   return MIB.addReg(Reg).addImm(1).addReg(0).addImm(0);
67 }
68
69
70 /// addRegOffset - This function is used to add a memory reference of the form
71 /// [Reg + Offset], i.e., one with no scale or index, but with a
72 /// displacement. An example is: DWORD PTR [EAX + 4].
73 ///
74 inline const MachineInstrBuilder &addRegOffset(const MachineInstrBuilder &MIB,
75                                                unsigned Reg, bool isKill,
76                                                int Offset) {
77   return MIB.addReg(Reg, false, false, isKill)
78     .addImm(1).addReg(0).addImm(Offset);
79 }
80
81 /// addRegReg - This function is used to add a memory reference of the form:
82 /// [Reg + Reg].
83 inline const MachineInstrBuilder &addRegReg(const MachineInstrBuilder &MIB,
84                                             unsigned Reg1, bool isKill1,
85                                             unsigned Reg2, bool isKill2) {
86   return MIB.addReg(Reg1, false, false, isKill1).addImm(1)
87     .addReg(Reg2, false, false, isKill2).addImm(0);
88 }
89
90 inline const MachineInstrBuilder &addFullAddress(const MachineInstrBuilder &MIB,
91                                                  const X86AddressMode &AM) {
92   assert (AM.Scale == 1 || AM.Scale == 2 || AM.Scale == 4 || AM.Scale == 8);
93
94   if (AM.BaseType == X86AddressMode::RegBase)
95     MIB.addReg(AM.Base.Reg);
96   else if (AM.BaseType == X86AddressMode::FrameIndexBase)
97     MIB.addFrameIndex(AM.Base.FrameIndex);
98   else
99     assert (0);
100   MIB.addImm(AM.Scale).addReg(AM.IndexReg);
101   if (AM.GV)
102     return MIB.addGlobalAddress(AM.GV, AM.Disp);
103   else
104     return MIB.addImm(AM.Disp);
105 }
106
107 /// addFrameReference - This function is used to add a reference to the base of
108 /// an abstract object on the stack frame of the current function.  This
109 /// reference has base register as the FrameIndex offset until it is resolved.
110 /// This allows a constant offset to be specified as well...
111 ///
112 inline const MachineInstrBuilder &
113 addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0) {
114   MachineInstr *MI = MIB;
115   MachineFunction &MF = *MI->getParent()->getParent();
116   MachineFrameInfo &MFI = *MF.getFrameInfo();
117   const TargetInstrDesc &TID = MI->getDesc();
118   unsigned Flags = 0;
119   if (TID.mayLoad())
120     Flags |= MachineMemOperand::MOLoad;
121   if (TID.mayStore())
122     Flags |= MachineMemOperand::MOStore;
123   MachineMemOperand MMO(PseudoSourceValue::getFixedStack(FI),
124                         Flags,
125                         MFI.getObjectOffset(FI) + Offset,
126                         MFI.getObjectSize(FI),
127                         MFI.getObjectAlignment(FI));
128   return MIB.addFrameIndex(FI).addImm(1).addReg(0).addImm(Offset)
129             .addMemOperand(MMO);
130 }
131
132 /// addConstantPoolReference - This function is used to add a reference to the
133 /// base of a constant value spilled to the per-function constant pool.  The
134 /// reference uses the abstract ConstantPoolIndex which is retained until
135 /// either machine code emission or assembly output. In PIC mode on x86-32,
136 /// the GlobalBaseReg parameter can be used to make this a
137 /// GlobalBaseReg-relative reference.
138 ///
139 inline const MachineInstrBuilder &
140 addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI,
141                          unsigned GlobalBaseReg = 0) {
142   return MIB.addReg(GlobalBaseReg).addImm(1).addReg(0).addConstantPoolIndex(CPI);
143 }
144
145 } // End llvm namespace
146
147 #endif