113dcc7c78ad661bf1f392b8e6ca0169c85424a5
[oota-llvm.git] / include / llvm / CodeGen / FastISel.h
1 //===-- FastISel.h - Definition of the FastISel class ---------------------===//
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 defines the FastISel class.
11 //  
12 //===----------------------------------------------------------------------===//
13   
14 #ifndef LLVM_CODEGEN_FASTISEL_H
15 #define LLVM_CODEGEN_FASTISEL_H
16
17 #include "llvm/ADT/DenseMap.h"
18 #ifndef NDEBUG
19 #include "llvm/ADT/SmallSet.h"
20 #endif
21 #include "llvm/CodeGen/ValueTypes.h"
22
23 namespace llvm {
24
25 class AllocaInst;
26 class ConstantFP;
27 class Instruction;
28 class MachineBasicBlock;
29 class MachineConstantPool;
30 class MachineFunction;
31 class MachineInstr;
32 class MachineFrameInfo;
33 class MachineRegisterInfo;
34 class TargetData;
35 class TargetInstrInfo;
36 class TargetLowering;
37 class TargetMachine;
38 class TargetRegisterClass;
39 class TargetRegisterInfo;
40
41 /// FastISel - This is a fast-path instruction selection class that
42 /// generates poor code and doesn't support illegal types or non-trivial
43 /// lowering, but runs quickly.
44 class FastISel {
45 protected:
46   MachineBasicBlock *MBB;
47   DenseMap<const Value *, unsigned> LocalValueMap;
48   DenseMap<const Value *, unsigned> &ValueMap;
49   DenseMap<const BasicBlock *, MachineBasicBlock *> &MBBMap;
50   DenseMap<const AllocaInst *, int> &StaticAllocaMap;
51   std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate;
52 #ifndef NDEBUG
53   SmallSet<const Instruction *, 8> &CatchInfoLost;
54 #endif
55   MachineFunction &MF;
56   MachineRegisterInfo &MRI;
57   MachineFrameInfo &MFI;
58   MachineConstantPool &MCP;
59   DebugLoc DL;
60   const TargetMachine &TM;
61   const TargetData &TD;
62   const TargetInstrInfo &TII;
63   const TargetLowering &TLI;
64   const TargetRegisterInfo &TRI;
65   bool IsBottomUp;
66
67 public:
68   /// startNewBlock - Set the current block to which generated machine
69   /// instructions will be appended, and clear the local CSE map.
70   ///
71   void startNewBlock(MachineBasicBlock *mbb) {
72     setCurrentBlock(mbb);
73     LocalValueMap.clear();
74   }
75
76   /// setCurrentBlock - Set the current block to which generated machine
77   /// instructions will be appended.
78   ///
79   void setCurrentBlock(MachineBasicBlock *mbb) {
80     MBB = mbb;
81   }
82
83   /// getCurDebugLoc() - Return current debug location information.
84   DebugLoc getCurDebugLoc() const { return DL; }
85
86   /// SelectInstruction - Do "fast" instruction selection for the given
87   /// LLVM IR instruction, and append generated machine instructions to
88   /// the current block. Return true if selection was successful.
89   ///
90   bool SelectInstruction(const Instruction *I);
91
92   /// SelectOperator - Do "fast" instruction selection for the given
93   /// LLVM IR operator (Instruction or ConstantExpr), and append
94   /// generated machine instructions to the current block. Return true
95   /// if selection was successful.
96   ///
97   bool SelectOperator(const User *I, unsigned Opcode);
98
99   /// getRegForValue - Create a virtual register and arrange for it to
100   /// be assigned the value for the given LLVM value.
101   unsigned getRegForValue(const Value *V);
102
103   /// lookUpRegForValue - Look up the value to see if its value is already
104   /// cached in a register. It may be defined by instructions across blocks or
105   /// defined locally.
106   unsigned lookUpRegForValue(const Value *V);
107
108   /// getRegForGEPIndex - This is a wrapper around getRegForValue that also
109   /// takes care of truncating or sign-extending the given getelementptr
110   /// index value.
111   std::pair<unsigned, bool> getRegForGEPIndex(const Value *V);
112
113   virtual ~FastISel();
114
115 protected:
116   FastISel(MachineFunction &mf,
117            DenseMap<const Value *, unsigned> &vm,
118            DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
119            DenseMap<const AllocaInst *, int> &am,
120            std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate
121 #ifndef NDEBUG
122            , SmallSet<const Instruction *, 8> &cil
123 #endif
124            );
125
126   /// TargetSelectInstruction - This method is called by target-independent
127   /// code when the normal FastISel process fails to select an instruction.
128   /// This gives targets a chance to emit code for anything that doesn't
129   /// fit into FastISel's framework. It returns true if it was successful.
130   ///
131   virtual bool
132   TargetSelectInstruction(const Instruction *I) = 0;
133
134   /// FastEmit_r - This method is called by target-independent code
135   /// to request that an instruction with the given type and opcode
136   /// be emitted.
137   virtual unsigned FastEmit_(MVT VT,
138                              MVT RetVT,
139                              unsigned Opcode);
140
141   /// FastEmit_r - This method is called by target-independent code
142   /// to request that an instruction with the given type, opcode, and
143   /// register operand be emitted.
144   ///
145   virtual unsigned FastEmit_r(MVT VT,
146                               MVT RetVT,
147                               unsigned Opcode,
148                               unsigned Op0, bool Op0IsKill);
149
150   /// FastEmit_rr - This method is called by target-independent code
151   /// to request that an instruction with the given type, opcode, and
152   /// register operands be emitted.
153   ///
154   virtual unsigned FastEmit_rr(MVT VT,
155                                MVT RetVT,
156                                unsigned Opcode,
157                                unsigned Op0, bool Op0IsKill,
158                                unsigned Op1, bool Op1IsKill);
159
160   /// FastEmit_ri - This method is called by target-independent code
161   /// to request that an instruction with the given type, opcode, and
162   /// register and immediate operands be emitted.
163   ///
164   virtual unsigned FastEmit_ri(MVT VT,
165                                MVT RetVT,
166                                unsigned Opcode,
167                                unsigned Op0, bool Op0IsKill,
168                                uint64_t Imm);
169
170   /// FastEmit_rf - This method is called by target-independent code
171   /// to request that an instruction with the given type, opcode, and
172   /// register and floating-point immediate operands be emitted.
173   ///
174   virtual unsigned FastEmit_rf(MVT VT,
175                                MVT RetVT,
176                                unsigned Opcode,
177                                unsigned Op0, bool Op0IsKill,
178                                const ConstantFP *FPImm);
179
180   /// FastEmit_rri - This method is called by target-independent code
181   /// to request that an instruction with the given type, opcode, and
182   /// register and immediate operands be emitted.
183   ///
184   virtual unsigned FastEmit_rri(MVT VT,
185                                 MVT RetVT,
186                                 unsigned Opcode,
187                                 unsigned Op0, bool Op0IsKill,
188                                 unsigned Op1, bool Op1IsKill,
189                                 uint64_t Imm);
190
191   /// FastEmit_ri_ - This method is a wrapper of FastEmit_ri. It first tries
192   /// to emit an instruction with an immediate operand using FastEmit_ri.
193   /// If that fails, it materializes the immediate into a register and try
194   /// FastEmit_rr instead.
195   unsigned FastEmit_ri_(MVT VT,
196                         unsigned Opcode,
197                         unsigned Op0, bool Op0IsKill,
198                         uint64_t Imm, MVT ImmType);
199   
200   /// FastEmit_rf_ - This method is a wrapper of FastEmit_rf. It first tries
201   /// to emit an instruction with an immediate operand using FastEmit_rf.
202   /// If that fails, it materializes the immediate into a register and try
203   /// FastEmit_rr instead.
204   unsigned FastEmit_rf_(MVT VT,
205                         unsigned Opcode,
206                         unsigned Op0, bool Op0IsKill,
207                         const ConstantFP *FPImm, MVT ImmType);
208   
209   /// FastEmit_i - This method is called by target-independent code
210   /// to request that an instruction with the given type, opcode, and
211   /// immediate operand be emitted.
212   virtual unsigned FastEmit_i(MVT VT,
213                               MVT RetVT,
214                               unsigned Opcode,
215                               uint64_t Imm);
216
217   /// FastEmit_f - This method is called by target-independent code
218   /// to request that an instruction with the given type, opcode, and
219   /// floating-point immediate operand be emitted.
220   virtual unsigned FastEmit_f(MVT VT,
221                               MVT RetVT,
222                               unsigned Opcode,
223                               const ConstantFP *FPImm);
224
225   /// FastEmitInst_ - Emit a MachineInstr with no operands and a
226   /// result register in the given register class.
227   ///
228   unsigned FastEmitInst_(unsigned MachineInstOpcode,
229                          const TargetRegisterClass *RC);
230
231   /// FastEmitInst_r - Emit a MachineInstr with one register operand
232   /// and a result register in the given register class.
233   ///
234   unsigned FastEmitInst_r(unsigned MachineInstOpcode,
235                           const TargetRegisterClass *RC,
236                           unsigned Op0, bool Op0IsKill);
237
238   /// FastEmitInst_rr - Emit a MachineInstr with two register operands
239   /// and a result register in the given register class.
240   ///
241   unsigned FastEmitInst_rr(unsigned MachineInstOpcode,
242                            const TargetRegisterClass *RC,
243                            unsigned Op0, bool Op0IsKill,
244                            unsigned Op1, bool Op1IsKill);
245
246   /// FastEmitInst_ri - Emit a MachineInstr with two register operands
247   /// and a result register in the given register class.
248   ///
249   unsigned FastEmitInst_ri(unsigned MachineInstOpcode,
250                            const TargetRegisterClass *RC,
251                            unsigned Op0, bool Op0IsKill,
252                            uint64_t Imm);
253
254   /// FastEmitInst_rf - Emit a MachineInstr with two register operands
255   /// and a result register in the given register class.
256   ///
257   unsigned FastEmitInst_rf(unsigned MachineInstOpcode,
258                            const TargetRegisterClass *RC,
259                            unsigned Op0, bool Op0IsKill,
260                            const ConstantFP *FPImm);
261
262   /// FastEmitInst_rri - Emit a MachineInstr with two register operands,
263   /// an immediate, and a result register in the given register class.
264   ///
265   unsigned FastEmitInst_rri(unsigned MachineInstOpcode,
266                             const TargetRegisterClass *RC,
267                             unsigned Op0, bool Op0IsKill,
268                             unsigned Op1, bool Op1IsKill,
269                             uint64_t Imm);
270   
271   /// FastEmitInst_i - Emit a MachineInstr with a single immediate
272   /// operand, and a result register in the given register class.
273   unsigned FastEmitInst_i(unsigned MachineInstrOpcode,
274                           const TargetRegisterClass *RC,
275                           uint64_t Imm);
276
277   /// FastEmitInst_extractsubreg - Emit a MachineInstr for an extract_subreg
278   /// from a specified index of a superregister to a specified type.
279   unsigned FastEmitInst_extractsubreg(MVT RetVT,
280                                       unsigned Op0, bool Op0IsKill,
281                                       uint32_t Idx);
282
283   /// FastEmitZExtFromI1 - Emit MachineInstrs to compute the value of Op
284   /// with all but the least significant bit set to zero.
285   unsigned FastEmitZExtFromI1(MVT VT,
286                               unsigned Op0, bool Op0IsKill);
287
288   /// FastEmitBranch - Emit an unconditional branch to the given block,
289   /// unless it is the immediate (fall-through) successor, and update
290   /// the CFG.
291   void FastEmitBranch(MachineBasicBlock *MBB, DebugLoc DL);
292
293   unsigned UpdateValueMap(const Value* I, unsigned Reg);
294
295   unsigned createResultReg(const TargetRegisterClass *RC);
296   
297   /// TargetMaterializeConstant - Emit a constant in a register using 
298   /// target-specific logic, such as constant pool loads.
299   virtual unsigned TargetMaterializeConstant(const Constant* C) {
300     return 0;
301   }
302
303   /// TargetMaterializeAlloca - Emit an alloca address in a register using
304   /// target-specific logic.
305   virtual unsigned TargetMaterializeAlloca(const AllocaInst* C) {
306     return 0;
307   }
308
309 private:
310   bool SelectBinaryOp(const User *I, unsigned ISDOpcode);
311
312   bool SelectFNeg(const User *I);
313
314   bool SelectGetElementPtr(const User *I);
315
316   bool SelectCall(const User *I);
317
318   bool SelectBitCast(const User *I);
319   
320   bool SelectCast(const User *I, unsigned Opcode);
321
322   /// HandlePHINodesInSuccessorBlocks - Handle PHI nodes in successor blocks.
323   /// Emit code to ensure constants are copied into registers when needed.
324   /// Remember the virtual registers that need to be added to the Machine PHI
325   /// nodes as input.  We cannot just directly add them, because expansion
326   /// might result in multiple MBB's for one BB.  As such, the start of the
327   /// BB might correspond to a different MBB than the end.
328   bool HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB);
329
330   /// materializeRegForValue - Helper for getRegForVale. This function is
331   /// called when the value isn't already available in a register and must
332   /// be materialized with new instructions.
333   unsigned materializeRegForValue(const Value *V, MVT VT);
334
335   /// hasTrivialKill - Test whether the given value has exactly one use.
336   bool hasTrivialKill(const Value *V) const;
337 };
338
339 }
340
341 #endif