Make 'Insert' set the name for Loads, instead of passing the name into the
[oota-llvm.git] / include / llvm / CodeGen / MachineInstrBuilder.h
1 //===-- CodeGen/MachineInstBuilder.h - Simplify creation of MIs -*- 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 a function named BuildMI, which is useful for dramatically
11 // simplifying how MachineInstr's are created.  It allows use of code like this:
12 //
13 //   M = BuildMI(X86::ADDrr8, 2).addReg(argVal1).addReg(argVal2);
14 //
15 //===----------------------------------------------------------------------===//
16
17 #ifndef LLVM_CODEGEN_MACHINEINSTRBUILDER_H
18 #define LLVM_CODEGEN_MACHINEINSTRBUILDER_H
19
20 #include "llvm/CodeGen/MachineBasicBlock.h"
21 #include "llvm/CodeGen/MachineFunction.h"
22
23 namespace llvm {
24
25 class TargetInstrDesc;
26
27 class MachineInstrBuilder {
28   MachineInstr *MI;
29 public:
30   explicit MachineInstrBuilder(MachineInstr *mi) : MI(mi) {}
31
32   /// Allow automatic conversion to the machine instruction we are working on.
33   ///
34   operator MachineInstr*() const { return MI; }
35   operator MachineBasicBlock::iterator() const { return MI; }
36
37   /// addReg - Add a new virtual register operand...
38   ///
39   const
40   MachineInstrBuilder &addReg(unsigned RegNo, bool isDef = false, 
41                               bool isImp = false, bool isKill = false, 
42                               bool isDead = false, unsigned SubReg = 0) const {
43     MI->addOperand(MachineOperand::CreateReg(RegNo, isDef, isImp, isKill,
44                                              isDead, SubReg));
45     return *this;
46   }
47
48   /// addImm - Add a new immediate operand.
49   ///
50   const MachineInstrBuilder &addImm(int64_t Val) const {
51     MI->addOperand(MachineOperand::CreateImm(Val));
52     return *this;
53   }
54
55   const MachineInstrBuilder &addMBB(MachineBasicBlock *MBB) const {
56     MI->addOperand(MachineOperand::CreateMBB(MBB));
57     return *this;
58   }
59
60   const MachineInstrBuilder &addFrameIndex(unsigned Idx) const {
61     MI->addOperand(MachineOperand::CreateFI(Idx));
62     return *this;
63   }
64
65   const MachineInstrBuilder &addConstantPoolIndex(unsigned Idx,
66                                                   int Offset = 0) const {
67     MI->addOperand(MachineOperand::CreateCPI(Idx, Offset));
68     return *this;
69   }
70
71   const MachineInstrBuilder &addJumpTableIndex(unsigned Idx) const {
72     MI->addOperand(MachineOperand::CreateJTI(Idx));
73     return *this;
74   }
75
76   const MachineInstrBuilder &addGlobalAddress(GlobalValue *GV,
77                                               int Offset = 0) const {
78     MI->addOperand(MachineOperand::CreateGA(GV, Offset));
79     return *this;
80   }
81
82   const MachineInstrBuilder &addExternalSymbol(const char *FnName) const{
83     MI->addOperand(MachineOperand::CreateES(FnName, 0));
84     return *this;
85   }
86 };
87
88 /// BuildMI - Builder interface.  Specify how to create the initial instruction
89 /// itself.
90 ///
91 inline MachineInstrBuilder BuildMI(MachineFunction &MF,
92                                    const TargetInstrDesc &TID) {
93   return MachineInstrBuilder(MF.CreateMachineInstr(TID));
94 }
95
96 /// BuildMI - This version of the builder sets up the first operand as a
97 /// destination virtual register.
98 ///
99 inline MachineInstrBuilder  BuildMI(MachineFunction &MF,
100                                     const TargetInstrDesc &TID,
101                                     unsigned DestReg) {
102   return MachineInstrBuilder(MF.CreateMachineInstr(TID)).addReg(DestReg, true);
103 }
104
105 /// BuildMI - This version of the builder inserts the newly-built
106 /// instruction before the given position in the given MachineBasicBlock, and
107 /// sets up the first operand as a destination virtual register.
108 ///
109 inline MachineInstrBuilder BuildMI(MachineBasicBlock &BB,
110                                    MachineBasicBlock::iterator I,
111                                    const TargetInstrDesc &TID,
112                                    unsigned DestReg) {
113   MachineInstr *MI = BB.getParent()->CreateMachineInstr(TID);
114   BB.insert(I, MI);
115   return MachineInstrBuilder(MI).addReg(DestReg, true);
116 }
117
118 /// BuildMI - This version of the builder inserts the newly-built
119 /// instruction before the given position in the given MachineBasicBlock, and
120 /// does NOT take a destination register.
121 ///
122 inline MachineInstrBuilder BuildMI(MachineBasicBlock &BB,
123                                    MachineBasicBlock::iterator I,
124                                    const TargetInstrDesc &TID) {
125   MachineInstr *MI = BB.getParent()->CreateMachineInstr(TID);
126   BB.insert(I, MI);
127   return MachineInstrBuilder(MI);
128 }
129
130 /// BuildMI - This version of the builder inserts the newly-built
131 /// instruction at the end of the given MachineBasicBlock, and does NOT take a
132 /// destination register.
133 ///
134 inline MachineInstrBuilder BuildMI(MachineBasicBlock *BB,
135                                    const TargetInstrDesc &TID) {
136   return BuildMI(*BB, BB->end(), TID);
137 }
138
139 /// BuildMI - This version of the builder inserts the newly-built
140 /// instruction at the end of the given MachineBasicBlock, and sets up the first
141 /// operand as a destination virtual register. 
142 ///
143 inline MachineInstrBuilder BuildMI(MachineBasicBlock *BB,
144                                    const TargetInstrDesc &TID,
145                                    unsigned DestReg) {
146   return BuildMI(*BB, BB->end(), TID, DestReg);
147 }
148
149 } // End llvm namespace
150
151 #endif