blob: ae98da5ef8b81aa24f1400da36234282b5bb6d26 [file] [log] [blame]
Chris Lattner1c08c712005-01-07 07:47:53 +00001//===-- SelectionDAGISel.cpp - Implement the SelectionDAGISel class -------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner1c08c712005-01-07 07:47:53 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner1c08c712005-01-07 07:47:53 +00008//===----------------------------------------------------------------------===//
9//
10// This implements the SelectionDAGISel class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
Dan Gohman84fbac52009-02-06 17:22:58 +000015#include "ScheduleDAGSDNodes.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000016#include "SelectionDAGBuild.h"
Dan Gohman84fbac52009-02-06 17:22:58 +000017#include "llvm/CodeGen/SelectionDAGISel.h"
Jim Laskeyc7c3f112006-10-16 20:52:31 +000018#include "llvm/Analysis/AliasAnalysis.h"
Devang Patel713f0432009-09-16 21:09:07 +000019#include "llvm/Analysis/DebugInfo.h"
Anton Korobeynikov5502bf62007-04-04 21:14:49 +000020#include "llvm/Constants.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000021#include "llvm/CallingConv.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000022#include "llvm/DerivedTypes.h"
23#include "llvm/Function.h"
Chris Lattner36ce6912005-11-29 06:21:05 +000024#include "llvm/GlobalVariable.h"
Chris Lattnerce7518c2006-01-26 22:24:51 +000025#include "llvm/InlineAsm.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000026#include "llvm/Instructions.h"
27#include "llvm/Intrinsics.h"
Jim Laskey43970fe2006-03-23 18:06:46 +000028#include "llvm/IntrinsicInst.h"
Dan Gohman78eca172008-08-19 22:33:34 +000029#include "llvm/CodeGen/FastISel.h"
Gordon Henriksen5a29c9e2008-08-17 12:56:54 +000030#include "llvm/CodeGen/GCStrategy.h"
Gordon Henriksen5eca0752008-08-17 18:44:35 +000031#include "llvm/CodeGen/GCMetadata.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000032#include "llvm/CodeGen/MachineFunction.h"
Dan Gohmanad2afc22009-07-31 18:16:33 +000033#include "llvm/CodeGen/MachineFunctionAnalysis.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000034#include "llvm/CodeGen/MachineFrameInfo.h"
35#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000036#include "llvm/CodeGen/MachineJumpTableInfo.h"
37#include "llvm/CodeGen/MachineModuleInfo.h"
38#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohmanfc54c552009-01-15 22:18:12 +000039#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000040#include "llvm/CodeGen/SchedulerRegistry.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000041#include "llvm/CodeGen/SelectionDAG.h"
Devang Patel6e7a1612009-01-09 19:11:50 +000042#include "llvm/CodeGen/DwarfWriter.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000043#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000044#include "llvm/Target/TargetData.h"
45#include "llvm/Target/TargetFrameInfo.h"
46#include "llvm/Target/TargetInstrInfo.h"
47#include "llvm/Target/TargetLowering.h"
48#include "llvm/Target/TargetMachine.h"
Vladimir Prus12472912006-05-23 13:43:15 +000049#include "llvm/Target/TargetOptions.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000050#include "llvm/Support/Compiler.h"
Evan Chengdb8d56b2008-06-30 20:45:06 +000051#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000052#include "llvm/Support/ErrorHandling.h"
Evan Chengdb8d56b2008-06-30 20:45:06 +000053#include "llvm/Support/MathExtras.h"
54#include "llvm/Support/Timer.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000055#include "llvm/Support/raw_ostream.h"
Jeff Cohen7e881032006-02-24 02:52:40 +000056#include <algorithm>
Chris Lattner1c08c712005-01-07 07:47:53 +000057using namespace llvm;
58
Chris Lattneread0d882008-06-17 06:09:18 +000059static cl::opt<bool>
Duncan Sands7cb07872008-10-27 08:42:46 +000060DisableLegalizeTypes("disable-legalize-types", cl::Hidden);
Dan Gohman78eca172008-08-19 22:33:34 +000061static cl::opt<bool>
Dan Gohman293d5f82008-09-09 22:06:46 +000062EnableFastISelVerbose("fast-isel-verbose", cl::Hidden,
Dan Gohmand659d502008-10-20 21:30:12 +000063 cl::desc("Enable verbose messages in the \"fast\" "
Dan Gohman293d5f82008-09-09 22:06:46 +000064 "instruction selector"));
65static cl::opt<bool>
Dan Gohman4344a5d2008-09-09 23:05:00 +000066EnableFastISelAbort("fast-isel-abort", cl::Hidden,
67 cl::desc("Enable abort calls when \"fast\" instruction fails"));
Dan Gohman8a110532008-09-05 22:59:21 +000068static cl::opt<bool>
69SchedLiveInCopies("schedule-livein-copies",
70 cl::desc("Schedule copies of livein registers"),
71 cl::init(false));
Chris Lattneread0d882008-06-17 06:09:18 +000072
Chris Lattnerda8abb02005-09-01 18:44:10 +000073#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000074static cl::opt<bool>
Dan Gohman462dc7f2008-07-21 20:00:07 +000075ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden,
76 cl::desc("Pop up a window to show dags before the first "
77 "dag combine pass"));
78static cl::opt<bool>
79ViewLegalizeTypesDAGs("view-legalize-types-dags", cl::Hidden,
80 cl::desc("Pop up a window to show dags before legalize types"));
81static cl::opt<bool>
82ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
83 cl::desc("Pop up a window to show dags before legalize"));
84static cl::opt<bool>
85ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden,
86 cl::desc("Pop up a window to show dags before the second "
87 "dag combine pass"));
88static cl::opt<bool>
Duncan Sands25cf2272008-11-24 14:53:14 +000089ViewDAGCombineLT("view-dag-combine-lt-dags", cl::Hidden,
90 cl::desc("Pop up a window to show dags before the post legalize types"
91 " dag combine pass"));
92static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000093ViewISelDAGs("view-isel-dags", cl::Hidden,
94 cl::desc("Pop up a window to show isel dags as they are selected"));
95static cl::opt<bool>
96ViewSchedDAGs("view-sched-dags", cl::Hidden,
97 cl::desc("Pop up a window to show sched dags as they are processed"));
Dan Gohman3e1a7ae2007-08-28 20:32:58 +000098static cl::opt<bool>
99ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
Chris Lattner5bab7852008-01-25 17:24:52 +0000100 cl::desc("Pop up a window to show SUnit dags after they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +0000101#else
Dan Gohman462dc7f2008-07-21 20:00:07 +0000102static const bool ViewDAGCombine1 = false,
103 ViewLegalizeTypesDAGs = false, ViewLegalizeDAGs = false,
104 ViewDAGCombine2 = false,
Duncan Sands25cf2272008-11-24 14:53:14 +0000105 ViewDAGCombineLT = false,
Dan Gohman462dc7f2008-07-21 20:00:07 +0000106 ViewISelDAGs = false, ViewSchedDAGs = false,
107 ViewSUnitDAGs = false;
Chris Lattner7944d9d2005-01-12 03:41:21 +0000108#endif
109
Jim Laskeyeb577ba2006-08-02 12:30:23 +0000110//===---------------------------------------------------------------------===//
111///
112/// RegisterScheduler class - Track the registration of instruction schedulers.
113///
114//===---------------------------------------------------------------------===//
115MachinePassRegistry RegisterScheduler::Registry;
116
117//===---------------------------------------------------------------------===//
118///
119/// ISHeuristic command line option for instruction schedulers.
120///
121//===---------------------------------------------------------------------===//
Dan Gohman844731a2008-05-13 00:00:25 +0000122static cl::opt<RegisterScheduler::FunctionPassCtor, false,
123 RegisterPassParser<RegisterScheduler> >
124ISHeuristic("pre-RA-sched",
125 cl::init(&createDefaultScheduler),
126 cl::desc("Instruction schedulers available (before register"
127 " allocation):"));
Jim Laskey13ec7022006-08-01 14:21:23 +0000128
Dan Gohman844731a2008-05-13 00:00:25 +0000129static RegisterScheduler
Dan Gohmanb8cab922008-10-14 20:25:08 +0000130defaultListDAGScheduler("default", "Best scheduler for the target",
Dan Gohman844731a2008-05-13 00:00:25 +0000131 createDefaultScheduler);
Evan Cheng4ef10862006-01-23 07:01:07 +0000132
Chris Lattner1c08c712005-01-07 07:47:53 +0000133namespace llvm {
134 //===--------------------------------------------------------------------===//
Jim Laskey9373beb2006-08-01 19:14:14 +0000135 /// createDefaultScheduler - This creates an instruction scheduler appropriate
136 /// for the target.
Dan Gohman47ac0f02009-02-11 04:27:20 +0000137 ScheduleDAGSDNodes* createDefaultScheduler(SelectionDAGISel *IS,
Bill Wendling98a366d2009-04-29 23:29:43 +0000138 CodeGenOpt::Level OptLevel) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000139 const TargetLowering &TLI = IS->getTargetLowering();
140
Bill Wendling98a366d2009-04-29 23:29:43 +0000141 if (OptLevel == CodeGenOpt::None)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000142 return createFastDAGScheduler(IS, OptLevel);
Dan Gohman9e76fea2008-11-20 03:11:19 +0000143 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000144 return createTDListDAGScheduler(IS, OptLevel);
Dan Gohman9e76fea2008-11-20 03:11:19 +0000145 assert(TLI.getSchedulingPreference() ==
146 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000147 return createBURRListDAGScheduler(IS, OptLevel);
Jim Laskey9373beb2006-08-01 19:14:14 +0000148 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000149}
150
Evan Chengff9b3732008-01-30 18:18:23 +0000151// EmitInstrWithCustomInserter - This method should be implemented by targets
152// that mark instructions with the 'usesCustomDAGSchedInserter' flag. These
Chris Lattner025c39b2005-08-26 20:54:47 +0000153// instructions are special in various ways, which require special support to
154// insert. The specified MachineInstr is created but not inserted into any
155// basic blocks, and the scheduler passes ownership of it to this method.
Evan Chengff9b3732008-01-30 18:18:23 +0000156MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Evan Chengfb2e7522009-09-18 21:02:19 +0000157 MachineBasicBlock *MBB,
158 DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM) const {
Torok Edwinf3689232009-07-12 20:07:01 +0000159#ifndef NDEBUG
Chris Lattner4437ae22009-08-23 07:05:07 +0000160 errs() << "If a target marks an instruction with "
Torok Edwinf3689232009-07-12 20:07:01 +0000161 "'usesCustomDAGSchedInserter', it must implement "
162 "TargetLowering::EmitInstrWithCustomInserter!";
163#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000164 llvm_unreachable(0);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000165 return 0;
Chris Lattner025c39b2005-08-26 20:54:47 +0000166}
167
Dan Gohman8a110532008-09-05 22:59:21 +0000168/// EmitLiveInCopy - Emit a copy for a live in physical register. If the
169/// physical register has only a single copy use, then coalesced the copy
170/// if possible.
171static void EmitLiveInCopy(MachineBasicBlock *MBB,
172 MachineBasicBlock::iterator &InsertPos,
173 unsigned VirtReg, unsigned PhysReg,
174 const TargetRegisterClass *RC,
175 DenseMap<MachineInstr*, unsigned> &CopyRegMap,
176 const MachineRegisterInfo &MRI,
177 const TargetRegisterInfo &TRI,
178 const TargetInstrInfo &TII) {
179 unsigned NumUses = 0;
180 MachineInstr *UseMI = NULL;
181 for (MachineRegisterInfo::use_iterator UI = MRI.use_begin(VirtReg),
182 UE = MRI.use_end(); UI != UE; ++UI) {
183 UseMI = &*UI;
184 if (++NumUses > 1)
185 break;
186 }
187
188 // If the number of uses is not one, or the use is not a move instruction,
189 // don't coalesce. Also, only coalesce away a virtual register to virtual
190 // register copy.
191 bool Coalesced = false;
Evan Cheng04ee5a12009-01-20 19:12:24 +0000192 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
Dan Gohman8a110532008-09-05 22:59:21 +0000193 if (NumUses == 1 &&
Evan Cheng04ee5a12009-01-20 19:12:24 +0000194 TII.isMoveInstr(*UseMI, SrcReg, DstReg, SrcSubReg, DstSubReg) &&
Dan Gohman8a110532008-09-05 22:59:21 +0000195 TargetRegisterInfo::isVirtualRegister(DstReg)) {
196 VirtReg = DstReg;
197 Coalesced = true;
198 }
199
200 // Now find an ideal location to insert the copy.
201 MachineBasicBlock::iterator Pos = InsertPos;
202 while (Pos != MBB->begin()) {
203 MachineInstr *PrevMI = prior(Pos);
204 DenseMap<MachineInstr*, unsigned>::iterator RI = CopyRegMap.find(PrevMI);
205 // copyRegToReg might emit multiple instructions to do a copy.
206 unsigned CopyDstReg = (RI == CopyRegMap.end()) ? 0 : RI->second;
207 if (CopyDstReg && !TRI.regsOverlap(CopyDstReg, PhysReg))
208 // This is what the BB looks like right now:
209 // r1024 = mov r0
210 // ...
211 // r1 = mov r1024
212 //
213 // We want to insert "r1025 = mov r1". Inserting this copy below the
214 // move to r1024 makes it impossible for that move to be coalesced.
215 //
216 // r1025 = mov r1
217 // r1024 = mov r0
218 // ...
219 // r1 = mov 1024
220 // r2 = mov 1025
221 break; // Woot! Found a good location.
222 --Pos;
223 }
224
David Goodwinf1daf7d2009-07-08 23:10:31 +0000225 bool Emitted = TII.copyRegToReg(*MBB, Pos, VirtReg, PhysReg, RC, RC);
226 assert(Emitted && "Unable to issue a live-in copy instruction!\n");
227 (void) Emitted;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000228
David Goodwinf1daf7d2009-07-08 23:10:31 +0000229CopyRegMap.insert(std::make_pair(prior(Pos), VirtReg));
Dan Gohman8a110532008-09-05 22:59:21 +0000230 if (Coalesced) {
231 if (&*InsertPos == UseMI) ++InsertPos;
232 MBB->erase(UseMI);
233 }
234}
235
236/// EmitLiveInCopies - If this is the first basic block in the function,
237/// and if it has live ins that need to be copied into vregs, emit the
238/// copies into the block.
239static void EmitLiveInCopies(MachineBasicBlock *EntryMBB,
240 const MachineRegisterInfo &MRI,
241 const TargetRegisterInfo &TRI,
242 const TargetInstrInfo &TII) {
243 if (SchedLiveInCopies) {
244 // Emit the copies at a heuristically-determined location in the block.
245 DenseMap<MachineInstr*, unsigned> CopyRegMap;
246 MachineBasicBlock::iterator InsertPos = EntryMBB->begin();
247 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
248 E = MRI.livein_end(); LI != E; ++LI)
249 if (LI->second) {
250 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
251 EmitLiveInCopy(EntryMBB, InsertPos, LI->second, LI->first,
252 RC, CopyRegMap, MRI, TRI, TII);
253 }
254 } else {
255 // Emit the copies into the top of the block.
256 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
257 E = MRI.livein_end(); LI != E; ++LI)
258 if (LI->second) {
259 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
David Goodwinf1daf7d2009-07-08 23:10:31 +0000260 bool Emitted = TII.copyRegToReg(*EntryMBB, EntryMBB->begin(),
261 LI->second, LI->first, RC, RC);
262 assert(Emitted && "Unable to issue a live-in copy instruction!\n");
263 (void) Emitted;
Dan Gohman8a110532008-09-05 22:59:21 +0000264 }
265 }
266}
267
Chris Lattner7041ee32005-01-11 05:56:49 +0000268//===----------------------------------------------------------------------===//
269// SelectionDAGISel code
270//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +0000271
Bill Wendling98a366d2009-04-29 23:29:43 +0000272SelectionDAGISel::SelectionDAGISel(TargetMachine &tm, CodeGenOpt::Level OL) :
Dan Gohmanad2afc22009-07-31 18:16:33 +0000273 MachineFunctionPass(&ID), TM(tm), TLI(*tm.getTargetLowering()),
Dan Gohman7c3234c2008-08-27 23:52:12 +0000274 FuncInfo(new FunctionLoweringInfo(TLI)),
275 CurDAG(new SelectionDAG(TLI, *FuncInfo)),
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000276 SDL(new SelectionDAGLowering(*CurDAG, TLI, *FuncInfo, OL)),
Dan Gohman7c3234c2008-08-27 23:52:12 +0000277 GFI(),
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000278 OptLevel(OL),
Dan Gohman7c3234c2008-08-27 23:52:12 +0000279 DAGSize(0)
280{}
281
282SelectionDAGISel::~SelectionDAGISel() {
283 delete SDL;
284 delete CurDAG;
285 delete FuncInfo;
286}
287
Owen Andersone50ed302009-08-10 22:56:29 +0000288unsigned SelectionDAGISel::MakeReg(EVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000289 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +0000290}
291
Chris Lattner495a0b52005-08-17 06:37:43 +0000292void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyc7c3f112006-10-16 20:52:31 +0000293 AU.addRequired<AliasAnalysis>();
Dan Gohmana3477fe2009-07-31 23:36:22 +0000294 AU.addPreserved<AliasAnalysis>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000295 AU.addRequired<GCModuleInfo>();
Dan Gohmana3477fe2009-07-31 23:36:22 +0000296 AU.addPreserved<GCModuleInfo>();
Devang Patel6e7a1612009-01-09 19:11:50 +0000297 AU.addRequired<DwarfWriter>();
Dan Gohmana3477fe2009-07-31 23:36:22 +0000298 AU.addPreserved<DwarfWriter>();
Dan Gohmanad2afc22009-07-31 18:16:33 +0000299 MachineFunctionPass::getAnalysisUsage(AU);
Chris Lattner495a0b52005-08-17 06:37:43 +0000300}
Chris Lattner1c08c712005-01-07 07:47:53 +0000301
Dan Gohmanad2afc22009-07-31 18:16:33 +0000302bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
303 Function &Fn = *mf.getFunction();
304
Dan Gohman4344a5d2008-09-09 23:05:00 +0000305 // Do some sanity-checking on the command-line options.
306 assert((!EnableFastISelVerbose || EnableFastISel) &&
307 "-fast-isel-verbose requires -fast-isel");
308 assert((!EnableFastISelAbort || EnableFastISel) &&
309 "-fast-isel-abort requires -fast-isel");
310
Dan Gohman5f43f922007-08-27 16:26:13 +0000311 // Get alias analysis for load/store combining.
312 AA = &getAnalysis<AliasAnalysis>();
313
Dan Gohmanad2afc22009-07-31 18:16:33 +0000314 MF = &mf;
Dan Gohman8a110532008-09-05 22:59:21 +0000315 const TargetInstrInfo &TII = *TM.getInstrInfo();
316 const TargetRegisterInfo &TRI = *TM.getRegisterInfo();
317
Dan Gohmanf7d6cd42009-08-01 03:51:09 +0000318 if (Fn.hasGC())
319 GFI = &getAnalysis<GCModuleInfo>().getFunctionInfo(Fn);
Gordon Henriksence224772008-01-07 01:30:38 +0000320 else
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000321 GFI = 0;
Dan Gohman79ce2762009-01-15 19:20:50 +0000322 RegInfo = &MF->getRegInfo();
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000323 DEBUG(errs() << "\n\n\n=== " << Fn.getName() << "\n");
Chris Lattner1c08c712005-01-07 07:47:53 +0000324
Duncan Sands1465d612009-01-28 13:14:17 +0000325 MachineModuleInfo *MMI = getAnalysisIfAvailable<MachineModuleInfo>();
326 DwarfWriter *DW = getAnalysisIfAvailable<DwarfWriter>();
Owen Anderson5dcaceb2009-07-09 18:44:09 +0000327 CurDAG->init(*MF, MMI, DW);
Devang Patelb51d40c2009-02-03 18:46:32 +0000328 FuncInfo->set(Fn, *MF, *CurDAG, EnableFastISel);
Dan Gohman7c3234c2008-08-27 23:52:12 +0000329 SDL->init(GFI, *AA);
Chris Lattner1c08c712005-01-07 07:47:53 +0000330
Dale Johannesen1532f3d2008-04-02 00:25:04 +0000331 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
332 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
333 // Mark landing pad.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000334 FuncInfo->MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Duncan Sands9fac0b52007-06-06 10:05:18 +0000335
Dan Gohman79ce2762009-01-15 19:20:50 +0000336 SelectAllBasicBlocks(Fn, *MF, MMI, DW, TII);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000337
Dan Gohman8a110532008-09-05 22:59:21 +0000338 // If the first basic block in the function has live ins that need to be
339 // copied into vregs, emit the copies into the top of the block before
340 // emitting the code for the block.
Dan Gohman79ce2762009-01-15 19:20:50 +0000341 EmitLiveInCopies(MF->begin(), *RegInfo, TRI, TII);
Dan Gohman8a110532008-09-05 22:59:21 +0000342
Evan Chengad2070c2007-02-10 02:43:39 +0000343 // Add function live-ins to entry block live-in set.
Dan Gohman8a110532008-09-05 22:59:21 +0000344 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
345 E = RegInfo->livein_end(); I != E; ++I)
Dan Gohman79ce2762009-01-15 19:20:50 +0000346 MF->begin()->addLiveIn(I->first);
Evan Chengad2070c2007-02-10 02:43:39 +0000347
Duncan Sandsf4070822007-06-15 19:04:19 +0000348#ifndef NDEBUG
Dan Gohman7c3234c2008-08-27 23:52:12 +0000349 assert(FuncInfo->CatchInfoFound.size() == FuncInfo->CatchInfoLost.size() &&
Duncan Sandsf4070822007-06-15 19:04:19 +0000350 "Not all catch info was assigned to a landing pad!");
351#endif
352
Dan Gohman7c3234c2008-08-27 23:52:12 +0000353 FuncInfo->clear();
354
Chris Lattner1c08c712005-01-07 07:47:53 +0000355 return true;
356}
357
Duncan Sandsf4070822007-06-15 19:04:19 +0000358static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
359 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000360 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000361 if (EHSelectorInst *EHSel = dyn_cast<EHSelectorInst>(I)) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000362 // Apply the catch info to DestBB.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000363 AddCatchInfo(*EHSel, MMI, FLI.MBBMap[DestBB]);
Duncan Sandsf4070822007-06-15 19:04:19 +0000364#ifndef NDEBUG
Duncan Sands560a7372007-11-15 09:54:37 +0000365 if (!FLI.MBBMap[SrcBB]->isLandingPad())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000366 FLI.CatchInfoFound.insert(EHSel);
Duncan Sandsf4070822007-06-15 19:04:19 +0000367#endif
368 }
369}
370
Dan Gohmanf350b272008-08-23 02:25:05 +0000371void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB,
372 BasicBlock::iterator Begin,
Dan Gohman5edd3612008-08-28 20:28:56 +0000373 BasicBlock::iterator End) {
Dan Gohman7c3234c2008-08-27 23:52:12 +0000374 SDL->setCurrentBasicBlock(BB);
Devang Patele30e6782009-09-28 21:41:20 +0000375 MetadataContext &TheMetadata = LLVMBB->getParent()->getContext().getMetadata();
Devang Patela2148402009-09-28 21:14:55 +0000376 unsigned MDDbgKind = TheMetadata.getMDKind("dbg");
Dan Gohmanf350b272008-08-23 02:25:05 +0000377
Dan Gohman98ca4f22009-08-05 01:29:28 +0000378 // Lower all of the non-terminator instructions. If a call is emitted
379 // as a tail call, cease emitting nodes for this block.
Devang Patel123eaa72009-09-16 20:39:11 +0000380 for (BasicBlock::iterator I = Begin; I != End && !SDL->HasTailCall; ++I) {
381 if (MDDbgKind) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000382 // Update DebugLoc if debug information is attached with this
Devang Patel123eaa72009-09-16 20:39:11 +0000383 // instruction.
Devang Patel9dddf972009-09-29 19:56:13 +0000384 if (MDNode *Dbg = TheMetadata.getMD(MDDbgKind, I)) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000385 DILocation DILoc(Dbg);
386 DebugLoc Loc = ExtractDebugLocation(DILoc, MF->getDebugLocInfo());
387 SDL->setCurDebugLoc(Loc);
Devang Patel1f034712009-10-12 23:10:55 +0000388 if (MF->getDefaultDebugLoc().isUnknown())
389 MF->setDefaultDebugLoc(Loc);
Devang Patel123eaa72009-09-16 20:39:11 +0000390 }
391 }
Dan Gohmanf350b272008-08-23 02:25:05 +0000392 if (!isa<TerminatorInst>(I))
Dan Gohman7c3234c2008-08-27 23:52:12 +0000393 SDL->visit(*I);
Devang Patel123eaa72009-09-16 20:39:11 +0000394 }
Dan Gohmanf350b272008-08-23 02:25:05 +0000395
Dan Gohman98ca4f22009-08-05 01:29:28 +0000396 if (!SDL->HasTailCall) {
397 // Ensure that all instructions which are used outside of their defining
398 // blocks are available as virtual registers. Invoke is handled elsewhere.
399 for (BasicBlock::iterator I = Begin; I != End; ++I)
400 if (!isa<PHINode>(I) && !isa<InvokeInst>(I))
401 SDL->CopyToExportRegsIfNeeded(I);
Dan Gohmanf350b272008-08-23 02:25:05 +0000402
Dan Gohman98ca4f22009-08-05 01:29:28 +0000403 // Handle PHI nodes in successor blocks.
404 if (End == LLVMBB->end()) {
405 HandlePHINodesInSuccessorBlocks(LLVMBB);
Dan Gohman3df24e62008-09-03 23:12:08 +0000406
Dan Gohman98ca4f22009-08-05 01:29:28 +0000407 // Lower the terminator after the copies are emitted.
408 SDL->visit(*LLVMBB->getTerminator());
409 }
Dan Gohman3df24e62008-09-03 23:12:08 +0000410 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000411
Chris Lattnera651cf62005-01-17 19:43:36 +0000412 // Make sure the root of the DAG is up-to-date.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000413 CurDAG->setRoot(SDL->getControlRoot());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000414
Dan Gohmanf350b272008-08-23 02:25:05 +0000415 // Final step, emit the lowered DAG as machine code.
416 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000417 SDL->clear();
Chris Lattner1c08c712005-01-07 07:47:53 +0000418}
419
Dan Gohmanf350b272008-08-23 02:25:05 +0000420void SelectionDAGISel::ComputeLiveOutVRegInfo() {
Chris Lattneread0d882008-06-17 06:09:18 +0000421 SmallPtrSet<SDNode*, 128> VisitedNodes;
422 SmallVector<SDNode*, 128> Worklist;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000423
Gabor Greifba36cb52008-08-28 21:40:38 +0000424 Worklist.push_back(CurDAG->getRoot().getNode());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000425
Chris Lattneread0d882008-06-17 06:09:18 +0000426 APInt Mask;
427 APInt KnownZero;
428 APInt KnownOne;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000429
Chris Lattneread0d882008-06-17 06:09:18 +0000430 while (!Worklist.empty()) {
431 SDNode *N = Worklist.back();
432 Worklist.pop_back();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000433
Chris Lattneread0d882008-06-17 06:09:18 +0000434 // If we've already seen this node, ignore it.
435 if (!VisitedNodes.insert(N))
436 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000437
Chris Lattneread0d882008-06-17 06:09:18 +0000438 // Otherwise, add all chain operands to the worklist.
439 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +0000440 if (N->getOperand(i).getValueType() == MVT::Other)
Gabor Greifba36cb52008-08-28 21:40:38 +0000441 Worklist.push_back(N->getOperand(i).getNode());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000442
Chris Lattneread0d882008-06-17 06:09:18 +0000443 // If this is a CopyToReg with a vreg dest, process it.
444 if (N->getOpcode() != ISD::CopyToReg)
445 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000446
Chris Lattneread0d882008-06-17 06:09:18 +0000447 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
448 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
449 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000450
Chris Lattneread0d882008-06-17 06:09:18 +0000451 // Ignore non-scalar or non-integer values.
Dan Gohman475871a2008-07-27 21:46:04 +0000452 SDValue Src = N->getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +0000453 EVT SrcVT = Src.getValueType();
Chris Lattneread0d882008-06-17 06:09:18 +0000454 if (!SrcVT.isInteger() || SrcVT.isVector())
455 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000456
Dan Gohmanf350b272008-08-23 02:25:05 +0000457 unsigned NumSignBits = CurDAG->ComputeNumSignBits(Src);
Chris Lattneread0d882008-06-17 06:09:18 +0000458 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
Dan Gohmanf350b272008-08-23 02:25:05 +0000459 CurDAG->ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000460
Chris Lattneread0d882008-06-17 06:09:18 +0000461 // Only install this information if it tells us something.
462 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
463 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
Dan Gohmanf7d6cd42009-08-01 03:51:09 +0000464 if (DestReg >= FuncInfo->LiveOutRegInfo.size())
465 FuncInfo->LiveOutRegInfo.resize(DestReg+1);
466 FunctionLoweringInfo::LiveOutInfo &LOI =
467 FuncInfo->LiveOutRegInfo[DestReg];
Chris Lattneread0d882008-06-17 06:09:18 +0000468 LOI.NumSignBits = NumSignBits;
Dan Gohmana80efce2009-03-27 23:55:04 +0000469 LOI.KnownOne = KnownOne;
470 LOI.KnownZero = KnownZero;
Chris Lattneread0d882008-06-17 06:09:18 +0000471 }
472 }
473}
474
Dan Gohmanf350b272008-08-23 02:25:05 +0000475void SelectionDAGISel::CodeGenAndEmitDAG() {
Dan Gohman462dc7f2008-07-21 20:00:07 +0000476 std::string GroupName;
477 if (TimePassesIsEnabled)
478 GroupName = "Instruction Selection and Scheduling";
479 std::string BlockName;
480 if (ViewDAGCombine1 || ViewLegalizeTypesDAGs || ViewLegalizeDAGs ||
Duncan Sands25cf2272008-11-24 14:53:14 +0000481 ViewDAGCombine2 || ViewDAGCombineLT || ViewISelDAGs || ViewSchedDAGs ||
482 ViewSUnitDAGs)
Dan Gohmanf7d6cd42009-08-01 03:51:09 +0000483 BlockName = MF->getFunction()->getNameStr() + ":" +
Daniel Dunbarf6ccee52009-07-24 08:24:36 +0000484 BB->getBasicBlock()->getNameStr();
Dan Gohman462dc7f2008-07-21 20:00:07 +0000485
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000486 DEBUG(errs() << "Initial selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000487 DEBUG(CurDAG->dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +0000488
Dan Gohmanf350b272008-08-23 02:25:05 +0000489 if (ViewDAGCombine1) CurDAG->viewGraph("dag-combine1 input for " + BlockName);
Dan Gohman417e11b2007-10-08 15:12:17 +0000490
Chris Lattneraf21d552005-10-10 16:47:10 +0000491 // Run the DAG combiner in pre-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +0000492 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000493 NamedRegionTimer T("DAG Combining 1", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000494 CurDAG->Combine(Unrestricted, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000495 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000496 CurDAG->Combine(Unrestricted, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000497 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000498
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000499 DEBUG(errs() << "Optimized lowered selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000500 DEBUG(CurDAG->dump());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000501
Chris Lattner1c08c712005-01-07 07:47:53 +0000502 // Second step, hack on the DAG until it only uses operations and types that
503 // the target supports.
Duncan Sands7cb07872008-10-27 08:42:46 +0000504 if (!DisableLegalizeTypes) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000505 if (ViewLegalizeTypesDAGs) CurDAG->viewGraph("legalize-types input for " +
506 BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000507
Duncan Sands25cf2272008-11-24 14:53:14 +0000508 bool Changed;
Dan Gohman462dc7f2008-07-21 20:00:07 +0000509 if (TimePassesIsEnabled) {
510 NamedRegionTimer T("Type Legalization", GroupName);
Duncan Sands25cf2272008-11-24 14:53:14 +0000511 Changed = CurDAG->LegalizeTypes();
Dan Gohman462dc7f2008-07-21 20:00:07 +0000512 } else {
Duncan Sands25cf2272008-11-24 14:53:14 +0000513 Changed = CurDAG->LegalizeTypes();
Dan Gohman462dc7f2008-07-21 20:00:07 +0000514 }
515
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000516 DEBUG(errs() << "Type-legalized selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000517 DEBUG(CurDAG->dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +0000518
Duncan Sands25cf2272008-11-24 14:53:14 +0000519 if (Changed) {
520 if (ViewDAGCombineLT)
521 CurDAG->viewGraph("dag-combine-lt input for " + BlockName);
522
523 // Run the DAG combiner in post-type-legalize mode.
524 if (TimePassesIsEnabled) {
525 NamedRegionTimer T("DAG Combining after legalize types", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000526 CurDAG->Combine(NoIllegalTypes, *AA, OptLevel);
Duncan Sands25cf2272008-11-24 14:53:14 +0000527 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000528 CurDAG->Combine(NoIllegalTypes, *AA, OptLevel);
Duncan Sands25cf2272008-11-24 14:53:14 +0000529 }
530
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000531 DEBUG(errs() << "Optimized type-legalized selection DAG:\n");
Duncan Sands25cf2272008-11-24 14:53:14 +0000532 DEBUG(CurDAG->dump());
533 }
Eli Friedman5c22c802009-05-23 12:35:30 +0000534
535 if (TimePassesIsEnabled) {
536 NamedRegionTimer T("Vector Legalization", GroupName);
537 Changed = CurDAG->LegalizeVectors();
538 } else {
539 Changed = CurDAG->LegalizeVectors();
540 }
541
542 if (Changed) {
543 if (TimePassesIsEnabled) {
544 NamedRegionTimer T("Type Legalization 2", GroupName);
545 Changed = CurDAG->LegalizeTypes();
546 } else {
547 Changed = CurDAG->LegalizeTypes();
548 }
549
550 if (ViewDAGCombineLT)
551 CurDAG->viewGraph("dag-combine-lv input for " + BlockName);
552
553 // Run the DAG combiner in post-type-legalize mode.
554 if (TimePassesIsEnabled) {
555 NamedRegionTimer T("DAG Combining after legalize vectors", GroupName);
556 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
557 } else {
558 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
559 }
560
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000561 DEBUG(errs() << "Optimized vector-legalized selection DAG:\n");
Eli Friedman5c22c802009-05-23 12:35:30 +0000562 DEBUG(CurDAG->dump());
563 }
Chris Lattner70587ea2008-07-10 23:37:50 +0000564 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000565
Dan Gohmanf350b272008-08-23 02:25:05 +0000566 if (ViewLegalizeDAGs) CurDAG->viewGraph("legalize input for " + BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000567
Evan Chengebffb662008-07-01 17:59:20 +0000568 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000569 NamedRegionTimer T("DAG Legalization", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000570 CurDAG->Legalize(DisableLegalizeTypes, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000571 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000572 CurDAG->Legalize(DisableLegalizeTypes, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000573 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000574
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000575 DEBUG(errs() << "Legalized selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000576 DEBUG(CurDAG->dump());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000577
Dan Gohmanf350b272008-08-23 02:25:05 +0000578 if (ViewDAGCombine2) CurDAG->viewGraph("dag-combine2 input for " + BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000579
Chris Lattneraf21d552005-10-10 16:47:10 +0000580 // Run the DAG combiner in post-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +0000581 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000582 NamedRegionTimer T("DAG Combining 2", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000583 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000584 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000585 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000586 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000587
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000588 DEBUG(errs() << "Optimized legalized selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000589 DEBUG(CurDAG->dump());
Dan Gohman417e11b2007-10-08 15:12:17 +0000590
Dan Gohmanf350b272008-08-23 02:25:05 +0000591 if (ViewISelDAGs) CurDAG->viewGraph("isel input for " + BlockName);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000592
Bill Wendling98a366d2009-04-29 23:29:43 +0000593 if (OptLevel != CodeGenOpt::None)
Dan Gohmanf350b272008-08-23 02:25:05 +0000594 ComputeLiveOutVRegInfo();
Evan Cheng552c4a82006-04-28 02:09:19 +0000595
Chris Lattnera33ef482005-03-30 01:10:47 +0000596 // Third, instruction select all of the operations to machine code, adding the
597 // code to the MachineBasicBlock.
Evan Chengebffb662008-07-01 17:59:20 +0000598 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000599 NamedRegionTimer T("Instruction Selection", GroupName);
Dan Gohmanf350b272008-08-23 02:25:05 +0000600 InstructionSelect();
Evan Chengebffb662008-07-01 17:59:20 +0000601 } else {
Dan Gohmanf350b272008-08-23 02:25:05 +0000602 InstructionSelect();
Evan Chengebffb662008-07-01 17:59:20 +0000603 }
Evan Chengdb8d56b2008-06-30 20:45:06 +0000604
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000605 DEBUG(errs() << "Selected selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000606 DEBUG(CurDAG->dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +0000607
Dan Gohmanf350b272008-08-23 02:25:05 +0000608 if (ViewSchedDAGs) CurDAG->viewGraph("scheduler input for " + BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000609
Dan Gohman5e843682008-07-14 18:19:29 +0000610 // Schedule machine code.
Dan Gohman47ac0f02009-02-11 04:27:20 +0000611 ScheduleDAGSDNodes *Scheduler = CreateScheduler();
Dan Gohman5e843682008-07-14 18:19:29 +0000612 if (TimePassesIsEnabled) {
613 NamedRegionTimer T("Instruction Scheduling", GroupName);
Dan Gohman47ac0f02009-02-11 04:27:20 +0000614 Scheduler->Run(CurDAG, BB, BB->end());
Dan Gohman5e843682008-07-14 18:19:29 +0000615 } else {
Dan Gohman47ac0f02009-02-11 04:27:20 +0000616 Scheduler->Run(CurDAG, BB, BB->end());
Dan Gohman5e843682008-07-14 18:19:29 +0000617 }
618
Dan Gohman462dc7f2008-07-21 20:00:07 +0000619 if (ViewSUnitDAGs) Scheduler->viewGraph();
620
Daniel Dunbara279bc32009-09-20 02:20:51 +0000621 // Emit machine code to BB. This can change 'BB' to the last block being
Evan Chengdb8d56b2008-06-30 20:45:06 +0000622 // inserted into.
Evan Chengebffb662008-07-01 17:59:20 +0000623 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000624 NamedRegionTimer T("Instruction Creation", GroupName);
Evan Chengfb2e7522009-09-18 21:02:19 +0000625 BB = Scheduler->EmitSchedule(&SDL->EdgeMapping);
Evan Chengebffb662008-07-01 17:59:20 +0000626 } else {
Evan Chengfb2e7522009-09-18 21:02:19 +0000627 BB = Scheduler->EmitSchedule(&SDL->EdgeMapping);
Dan Gohman5e843682008-07-14 18:19:29 +0000628 }
629
630 // Free the scheduler state.
631 if (TimePassesIsEnabled) {
632 NamedRegionTimer T("Instruction Scheduling Cleanup", GroupName);
633 delete Scheduler;
634 } else {
635 delete Scheduler;
Evan Chengebffb662008-07-01 17:59:20 +0000636 }
Evan Chengdb8d56b2008-06-30 20:45:06 +0000637
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000638 DEBUG(errs() << "Selected machine code:\n");
Chris Lattner1c08c712005-01-07 07:47:53 +0000639 DEBUG(BB->dump());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000640}
Chris Lattner1c08c712005-01-07 07:47:53 +0000641
Dan Gohman79ce2762009-01-15 19:20:50 +0000642void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn,
643 MachineFunction &MF,
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000644 MachineModuleInfo *MMI,
Devang Patel83489bb2009-01-13 00:35:13 +0000645 DwarfWriter *DW,
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000646 const TargetInstrInfo &TII) {
Dan Gohmana43abd12008-09-29 21:55:50 +0000647 // Initialize the Fast-ISel state, if needed.
648 FastISel *FastIS = 0;
649 if (EnableFastISel)
Dan Gohman79ce2762009-01-15 19:20:50 +0000650 FastIS = TLI.createFastISel(MF, MMI, DW,
Dan Gohmana43abd12008-09-29 21:55:50 +0000651 FuncInfo->ValueMap,
652 FuncInfo->MBBMap,
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000653 FuncInfo->StaticAllocaMap
654#ifndef NDEBUG
655 , FuncInfo->CatchInfoLost
656#endif
657 );
Dan Gohmana43abd12008-09-29 21:55:50 +0000658
Devang Patele30e6782009-09-28 21:41:20 +0000659 MetadataContext &TheMetadata = Fn.getContext().getMetadata();
Devang Patela2148402009-09-28 21:14:55 +0000660 unsigned MDDbgKind = TheMetadata.getMDKind("dbg");
Devang Patel123eaa72009-09-16 20:39:11 +0000661
Dan Gohmana43abd12008-09-29 21:55:50 +0000662 // Iterate over all basic blocks in the function.
Evan Cheng39fd6e82008-08-07 00:43:25 +0000663 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) {
664 BasicBlock *LLVMBB = &*I;
Dan Gohman7c3234c2008-08-27 23:52:12 +0000665 BB = FuncInfo->MBBMap[LLVMBB];
Dan Gohmanf350b272008-08-23 02:25:05 +0000666
Dan Gohman3df24e62008-09-03 23:12:08 +0000667 BasicBlock::iterator const Begin = LLVMBB->begin();
668 BasicBlock::iterator const End = LLVMBB->end();
Evan Cheng9f118502008-09-08 16:01:27 +0000669 BasicBlock::iterator BI = Begin;
Dan Gohman5edd3612008-08-28 20:28:56 +0000670
671 // Lower any arguments needed in this block if this is the entry block.
Dan Gohman33134c42008-09-25 17:05:24 +0000672 bool SuppressFastISel = false;
673 if (LLVMBB == &Fn.getEntryBlock()) {
Dan Gohman5edd3612008-08-28 20:28:56 +0000674 LowerArguments(LLVMBB);
Dan Gohmanf350b272008-08-23 02:25:05 +0000675
Dan Gohman33134c42008-09-25 17:05:24 +0000676 // If any of the arguments has the byval attribute, forgo
677 // fast-isel in the entry block.
Dan Gohmana43abd12008-09-29 21:55:50 +0000678 if (FastIS) {
Dan Gohman33134c42008-09-25 17:05:24 +0000679 unsigned j = 1;
680 for (Function::arg_iterator I = Fn.arg_begin(), E = Fn.arg_end();
681 I != E; ++I, ++j)
Devang Patel05988662008-09-25 21:00:45 +0000682 if (Fn.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohman77ca41e2008-09-25 17:21:42 +0000683 if (EnableFastISelVerbose || EnableFastISelAbort)
Chris Lattner4437ae22009-08-23 07:05:07 +0000684 errs() << "FastISel skips entry block due to byval argument\n";
Dan Gohman33134c42008-09-25 17:05:24 +0000685 SuppressFastISel = true;
686 break;
687 }
688 }
689 }
690
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000691 if (MMI && BB->isLandingPad()) {
692 // Add a label to mark the beginning of the landing pad. Deletion of the
693 // landing pad can thus be detected via the MachineModuleInfo.
694 unsigned LabelID = MMI->addLandingPad(BB);
695
696 const TargetInstrDesc &II = TII.get(TargetInstrInfo::EH_LABEL);
Bill Wendlingb2884872009-02-03 01:55:42 +0000697 BuildMI(BB, SDL->getCurDebugLoc(), II).addImm(LabelID);
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000698
699 // Mark exception register as live in.
700 unsigned Reg = TLI.getExceptionAddressRegister();
701 if (Reg) BB->addLiveIn(Reg);
702
703 // Mark exception selector register as live in.
704 Reg = TLI.getExceptionSelectorRegister();
705 if (Reg) BB->addLiveIn(Reg);
706
707 // FIXME: Hack around an exception handling flaw (PR1508): the personality
708 // function and list of typeids logically belong to the invoke (or, if you
709 // like, the basic block containing the invoke), and need to be associated
710 // with it in the dwarf exception handling tables. Currently however the
711 // information is provided by an intrinsic (eh.selector) that can be moved
712 // to unexpected places by the optimizers: if the unwind edge is critical,
713 // then breaking it can result in the intrinsics being in the successor of
714 // the landing pad, not the landing pad itself. This results in exceptions
715 // not being caught because no typeids are associated with the invoke.
716 // This may not be the only way things can go wrong, but it is the only way
717 // we try to work around for the moment.
718 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
719
720 if (Br && Br->isUnconditional()) { // Critical edge?
721 BasicBlock::iterator I, E;
722 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
723 if (isa<EHSelectorInst>(I))
724 break;
725
726 if (I == E)
727 // No catch info found - try to extract some from the successor.
728 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, *FuncInfo);
729 }
730 }
731
Dan Gohmanf350b272008-08-23 02:25:05 +0000732 // Before doing SelectionDAG ISel, see if FastISel has been requested.
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000733 if (FastIS && !SuppressFastISel) {
Dan Gohmana43abd12008-09-29 21:55:50 +0000734 // Emit code for any incoming arguments. This must happen before
735 // beginning FastISel on the entry block.
736 if (LLVMBB == &Fn.getEntryBlock()) {
737 CurDAG->setRoot(SDL->getControlRoot());
738 CodeGenAndEmitDAG();
739 SDL->clear();
740 }
Dan Gohman241f4642008-10-04 00:56:36 +0000741 FastIS->startNewBlock(BB);
Dan Gohmana43abd12008-09-29 21:55:50 +0000742 // Do FastISel on as many instructions as possible.
743 for (; BI != End; ++BI) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000744 if (MDDbgKind) {
745 // Update DebugLoc if debug information is attached with this
746 // instruction.
Devang Patel9dddf972009-09-29 19:56:13 +0000747 if (MDNode *Dbg = TheMetadata.getMD(MDDbgKind, BI)) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000748 DILocation DILoc(Dbg);
749 DebugLoc Loc = ExtractDebugLocation(DILoc,
750 MF.getDebugLocInfo());
751 FastIS->setCurDebugLoc(Loc);
Devang Patel454e9572009-10-06 00:09:08 +0000752 if (MF.getDefaultDebugLoc().isUnknown())
753 MF.setDefaultDebugLoc(Loc);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000754 }
755 }
Devang Patel123eaa72009-09-16 20:39:11 +0000756
Dan Gohmana43abd12008-09-29 21:55:50 +0000757 // Just before the terminator instruction, insert instructions to
758 // feed PHI nodes in successor blocks.
759 if (isa<TerminatorInst>(BI))
760 if (!HandlePHINodesInSuccessorBlocksFast(LLVMBB, FastIS)) {
Dan Gohman4344a5d2008-09-09 23:05:00 +0000761 if (EnableFastISelVerbose || EnableFastISelAbort) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000762 errs() << "FastISel miss: ";
Dan Gohman293d5f82008-09-09 22:06:46 +0000763 BI->dump();
764 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000765 assert(!EnableFastISelAbort &&
Torok Edwinf3689232009-07-12 20:07:01 +0000766 "FastISel didn't handle a PHI in a successor");
Dan Gohmana43abd12008-09-29 21:55:50 +0000767 break;
Dan Gohmanf350b272008-08-23 02:25:05 +0000768 }
Dan Gohmana43abd12008-09-29 21:55:50 +0000769
770 // First try normal tablegen-generated "fast" selection.
771 if (FastIS->SelectInstruction(BI))
772 continue;
773
774 // Next, try calling the target to attempt to handle the instruction.
775 if (FastIS->TargetSelectInstruction(BI))
776 continue;
777
778 // Then handle certain instructions as single-LLVM-Instruction blocks.
779 if (isa<CallInst>(BI)) {
780 if (EnableFastISelVerbose || EnableFastISelAbort) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000781 errs() << "FastISel missed call: ";
Dan Gohmana43abd12008-09-29 21:55:50 +0000782 BI->dump();
783 }
784
Owen Anderson1d0be152009-08-13 21:58:54 +0000785 if (BI->getType() != Type::getVoidTy(*CurDAG->getContext())) {
Dan Gohmana43abd12008-09-29 21:55:50 +0000786 unsigned &R = FuncInfo->ValueMap[BI];
787 if (!R)
788 R = FuncInfo->CreateRegForValue(BI);
789 }
790
Devang Patel390f3ac2009-04-16 01:33:10 +0000791 SDL->setCurDebugLoc(FastIS->getCurDebugLoc());
Dan Gohmana43abd12008-09-29 21:55:50 +0000792 SelectBasicBlock(LLVMBB, BI, next(BI));
Dan Gohman241f4642008-10-04 00:56:36 +0000793 // If the instruction was codegen'd with multiple blocks,
794 // inform the FastISel object where to resume inserting.
795 FastIS->setCurrentBlock(BB);
Dan Gohmana43abd12008-09-29 21:55:50 +0000796 continue;
Dan Gohmanf350b272008-08-23 02:25:05 +0000797 }
Dan Gohmana43abd12008-09-29 21:55:50 +0000798
799 // Otherwise, give up on FastISel for the rest of the block.
800 // For now, be a little lenient about non-branch terminators.
801 if (!isa<TerminatorInst>(BI) || isa<BranchInst>(BI)) {
802 if (EnableFastISelVerbose || EnableFastISelAbort) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000803 errs() << "FastISel miss: ";
Dan Gohmana43abd12008-09-29 21:55:50 +0000804 BI->dump();
805 }
806 if (EnableFastISelAbort)
807 // The "fast" selector couldn't handle something and bailed.
808 // For the purpose of debugging, just abort.
Torok Edwinc23197a2009-07-14 16:55:14 +0000809 llvm_unreachable("FastISel didn't select the entire block");
Dan Gohmana43abd12008-09-29 21:55:50 +0000810 }
811 break;
Dan Gohmanf350b272008-08-23 02:25:05 +0000812 }
813 }
814
Dan Gohmand2ff6472008-09-02 20:17:56 +0000815 // Run SelectionDAG instruction selection on the remainder of the block
816 // not handled by FastISel. If FastISel is not run, this is the entire
Dan Gohman3df24e62008-09-03 23:12:08 +0000817 // block.
Devang Patel390f3ac2009-04-16 01:33:10 +0000818 if (BI != End) {
819 // If FastISel is run and it has known DebugLoc then use it.
820 if (FastIS && !FastIS->getCurDebugLoc().isUnknown())
821 SDL->setCurDebugLoc(FastIS->getCurDebugLoc());
Evan Cheng9f118502008-09-08 16:01:27 +0000822 SelectBasicBlock(LLVMBB, BI, End);
Devang Patel390f3ac2009-04-16 01:33:10 +0000823 }
Dan Gohmanf350b272008-08-23 02:25:05 +0000824
Dan Gohman7c3234c2008-08-27 23:52:12 +0000825 FinishBasicBlock();
Evan Cheng39fd6e82008-08-07 00:43:25 +0000826 }
Dan Gohmana43abd12008-09-29 21:55:50 +0000827
828 delete FastIS;
Dan Gohman0e5f1302008-07-07 23:02:41 +0000829}
830
Dan Gohmanfed90b62008-07-28 21:51:04 +0000831void
Dan Gohman7c3234c2008-08-27 23:52:12 +0000832SelectionDAGISel::FinishBasicBlock() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000833
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000834 DEBUG(errs() << "Target-post-processed machine code:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000835 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +0000836
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000837 DEBUG(errs() << "Total amount of phi nodes to update: "
838 << SDL->PHINodesToUpdate.size() << "\n");
Dan Gohman7c3234c2008-08-27 23:52:12 +0000839 DEBUG(for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i)
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000840 errs() << "Node " << i << " : ("
841 << SDL->PHINodesToUpdate[i].first
842 << ", " << SDL->PHINodesToUpdate[i].second << ")\n");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000843
Chris Lattnera33ef482005-03-30 01:10:47 +0000844 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +0000845 // PHI nodes in successors.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000846 if (SDL->SwitchCases.empty() &&
847 SDL->JTCases.empty() &&
848 SDL->BitTestCases.empty()) {
849 for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i) {
850 MachineInstr *PHI = SDL->PHINodesToUpdate[i].first;
Nate Begemanf15485a2006-03-27 01:32:24 +0000851 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
852 "This is not a machine PHI node that we are updating!");
Dan Gohman7c3234c2008-08-27 23:52:12 +0000853 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[i].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000854 false));
855 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begemanf15485a2006-03-27 01:32:24 +0000856 }
Dan Gohman7c3234c2008-08-27 23:52:12 +0000857 SDL->PHINodesToUpdate.clear();
Nate Begemanf15485a2006-03-27 01:32:24 +0000858 return;
Chris Lattner1c08c712005-01-07 07:47:53 +0000859 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000860
Dan Gohman7c3234c2008-08-27 23:52:12 +0000861 for (unsigned i = 0, e = SDL->BitTestCases.size(); i != e; ++i) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000862 // Lower header first, if it wasn't already lowered
Dan Gohman7c3234c2008-08-27 23:52:12 +0000863 if (!SDL->BitTestCases[i].Emitted) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000864 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000865 BB = SDL->BitTestCases[i].Parent;
866 SDL->setCurrentBasicBlock(BB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000867 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +0000868 SDL->visitBitTestHeader(SDL->BitTestCases[i]);
869 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000870 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000871 SDL->clear();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000872 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000873
Dan Gohman7c3234c2008-08-27 23:52:12 +0000874 for (unsigned j = 0, ej = SDL->BitTestCases[i].Cases.size(); j != ej; ++j) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000875 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000876 BB = SDL->BitTestCases[i].Cases[j].ThisBB;
877 SDL->setCurrentBasicBlock(BB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000878 // Emit the code
879 if (j+1 != ej)
Dan Gohman7c3234c2008-08-27 23:52:12 +0000880 SDL->visitBitTestCase(SDL->BitTestCases[i].Cases[j+1].ThisBB,
881 SDL->BitTestCases[i].Reg,
882 SDL->BitTestCases[i].Cases[j]);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000883 else
Dan Gohman7c3234c2008-08-27 23:52:12 +0000884 SDL->visitBitTestCase(SDL->BitTestCases[i].Default,
885 SDL->BitTestCases[i].Reg,
886 SDL->BitTestCases[i].Cases[j]);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000887
888
Dan Gohman7c3234c2008-08-27 23:52:12 +0000889 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000890 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000891 SDL->clear();
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000892 }
893
894 // Update PHI Nodes
Dan Gohman7c3234c2008-08-27 23:52:12 +0000895 for (unsigned pi = 0, pe = SDL->PHINodesToUpdate.size(); pi != pe; ++pi) {
896 MachineInstr *PHI = SDL->PHINodesToUpdate[pi].first;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000897 MachineBasicBlock *PHIBB = PHI->getParent();
898 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
899 "This is not a machine PHI node that we are updating!");
900 // This is "default" BB. We have two jumps to it. From "header" BB and
901 // from last "case" BB.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000902 if (PHIBB == SDL->BitTestCases[i].Default) {
903 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000904 false));
Dan Gohman7c3234c2008-08-27 23:52:12 +0000905 PHI->addOperand(MachineOperand::CreateMBB(SDL->BitTestCases[i].Parent));
906 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000907 false));
Dan Gohman7c3234c2008-08-27 23:52:12 +0000908 PHI->addOperand(MachineOperand::CreateMBB(SDL->BitTestCases[i].Cases.
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000909 back().ThisBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000910 }
911 // One of "cases" BB.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000912 for (unsigned j = 0, ej = SDL->BitTestCases[i].Cases.size();
913 j != ej; ++j) {
914 MachineBasicBlock* cBB = SDL->BitTestCases[i].Cases[j].ThisBB;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000915 if (cBB->succ_end() !=
916 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Dan Gohman7c3234c2008-08-27 23:52:12 +0000917 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000918 false));
919 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000920 }
921 }
922 }
923 }
Dan Gohman7c3234c2008-08-27 23:52:12 +0000924 SDL->BitTestCases.clear();
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000925
Nate Begeman9453eea2006-04-23 06:26:20 +0000926 // If the JumpTable record is filled in, then we need to emit a jump table.
927 // Updating the PHI nodes is tricky in this case, since we need to determine
928 // whether the PHI is a successor of the range check MBB or the jump table MBB
Dan Gohman7c3234c2008-08-27 23:52:12 +0000929 for (unsigned i = 0, e = SDL->JTCases.size(); i != e; ++i) {
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000930 // Lower header first, if it wasn't already lowered
Dan Gohman7c3234c2008-08-27 23:52:12 +0000931 if (!SDL->JTCases[i].first.Emitted) {
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000932 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000933 BB = SDL->JTCases[i].first.HeaderBB;
934 SDL->setCurrentBasicBlock(BB);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000935 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +0000936 SDL->visitJumpTableHeader(SDL->JTCases[i].second, SDL->JTCases[i].first);
937 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000938 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000939 SDL->clear();
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000940 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000941
Nate Begeman37efe672006-04-22 18:53:45 +0000942 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000943 BB = SDL->JTCases[i].second.MBB;
944 SDL->setCurrentBasicBlock(BB);
Nate Begeman37efe672006-04-22 18:53:45 +0000945 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +0000946 SDL->visitJumpTable(SDL->JTCases[i].second);
947 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000948 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000949 SDL->clear();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000950
Nate Begeman37efe672006-04-22 18:53:45 +0000951 // Update PHI Nodes
Dan Gohman7c3234c2008-08-27 23:52:12 +0000952 for (unsigned pi = 0, pe = SDL->PHINodesToUpdate.size(); pi != pe; ++pi) {
953 MachineInstr *PHI = SDL->PHINodesToUpdate[pi].first;
Nate Begeman37efe672006-04-22 18:53:45 +0000954 MachineBasicBlock *PHIBB = PHI->getParent();
955 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
956 "This is not a machine PHI node that we are updating!");
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000957 // "default" BB. We can go there only from header BB.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000958 if (PHIBB == SDL->JTCases[i].second.Default) {
Evan Chengce319102009-09-19 09:51:03 +0000959 PHI->addOperand
960 (MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second, false));
961 PHI->addOperand
962 (MachineOperand::CreateMBB(SDL->JTCases[i].first.HeaderBB));
Nate Begemanf4360a42006-05-03 03:48:02 +0000963 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000964 // JT BB. Just iterate over successors here
Nate Begemanf4360a42006-05-03 03:48:02 +0000965 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Evan Chengce319102009-09-19 09:51:03 +0000966 PHI->addOperand
967 (MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second, false));
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000968 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begeman37efe672006-04-22 18:53:45 +0000969 }
970 }
Nate Begeman37efe672006-04-22 18:53:45 +0000971 }
Dan Gohman7c3234c2008-08-27 23:52:12 +0000972 SDL->JTCases.clear();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000973
Chris Lattnerb2e806e2006-10-22 23:00:53 +0000974 // If the switch block involved a branch to one of the actual successors, we
975 // need to update PHI nodes in that block.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000976 for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i) {
977 MachineInstr *PHI = SDL->PHINodesToUpdate[i].first;
Chris Lattnerb2e806e2006-10-22 23:00:53 +0000978 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
979 "This is not a machine PHI node that we are updating!");
980 if (BB->isSuccessor(PHI->getParent())) {
Dan Gohman7c3234c2008-08-27 23:52:12 +0000981 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[i].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000982 false));
983 PHI->addOperand(MachineOperand::CreateMBB(BB));
Chris Lattnerb2e806e2006-10-22 23:00:53 +0000984 }
985 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000986
Nate Begemanf15485a2006-03-27 01:32:24 +0000987 // If we generated any switch lowering information, build and codegen any
988 // additional DAGs necessary.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000989 for (unsigned i = 0, e = SDL->SwitchCases.size(); i != e; ++i) {
Nate Begemanf15485a2006-03-27 01:32:24 +0000990 // Set the current basic block to the mbb we wish to insert the code into
Evan Chengfb2e7522009-09-18 21:02:19 +0000991 MachineBasicBlock *ThisBB = BB = SDL->SwitchCases[i].ThisBB;
Dan Gohman7c3234c2008-08-27 23:52:12 +0000992 SDL->setCurrentBasicBlock(BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000993
Nate Begemanf15485a2006-03-27 01:32:24 +0000994 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +0000995 SDL->visitSwitchCase(SDL->SwitchCases[i]);
996 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000997 CodeGenAndEmitDAG();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000998
Chris Lattnerd5e93c02006-09-07 01:59:34 +0000999 // Handle any PHI nodes in successors of this chunk, as if we were coming
1000 // from the original BB before switch expansion. Note that PHI nodes can
1001 // occur multiple times in PHINodesToUpdate. We have to be very careful to
1002 // handle them the right number of times.
Dan Gohman7c3234c2008-08-27 23:52:12 +00001003 while ((BB = SDL->SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
Evan Chengfb2e7522009-09-18 21:02:19 +00001004 // If new BB's are created during scheduling, the edges may have been
Evan Chengce319102009-09-19 09:51:03 +00001005 // updated. That is, the edge from ThisBB to BB may have been split and
1006 // BB's predecessor is now another block.
Evan Chengfb2e7522009-09-18 21:02:19 +00001007 DenseMap<MachineBasicBlock*, MachineBasicBlock*>::iterator EI =
1008 SDL->EdgeMapping.find(BB);
1009 if (EI != SDL->EdgeMapping.end())
1010 ThisBB = EI->second;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001011 for (MachineBasicBlock::iterator Phi = BB->begin();
1012 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
1013 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
1014 for (unsigned pn = 0; ; ++pn) {
Dan Gohman7c3234c2008-08-27 23:52:12 +00001015 assert(pn != SDL->PHINodesToUpdate.size() &&
1016 "Didn't find PHI entry!");
Evan Cheng8be58a12009-09-18 08:26:06 +00001017 if (SDL->PHINodesToUpdate[pn].first == Phi) {
1018 Phi->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pn].
1019 second, false));
Evan Chengfb2e7522009-09-18 21:02:19 +00001020 Phi->addOperand(MachineOperand::CreateMBB(ThisBB));
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001021 break;
Evan Cheng8be58a12009-09-18 08:26:06 +00001022 }
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001023 }
Nate Begemanf15485a2006-03-27 01:32:24 +00001024 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001025
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001026 // Don't process RHS if same block as LHS.
Dan Gohman7c3234c2008-08-27 23:52:12 +00001027 if (BB == SDL->SwitchCases[i].FalseBB)
1028 SDL->SwitchCases[i].FalseBB = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001029
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001030 // If we haven't handled the RHS, do so now. Otherwise, we're done.
Dan Gohman7c3234c2008-08-27 23:52:12 +00001031 SDL->SwitchCases[i].TrueBB = SDL->SwitchCases[i].FalseBB;
1032 SDL->SwitchCases[i].FalseBB = 0;
Nate Begemanf15485a2006-03-27 01:32:24 +00001033 }
Dan Gohman7c3234c2008-08-27 23:52:12 +00001034 assert(SDL->SwitchCases[i].TrueBB == 0 && SDL->SwitchCases[i].FalseBB == 0);
Evan Chengfb2e7522009-09-18 21:02:19 +00001035 SDL->clear();
Chris Lattnera33ef482005-03-30 01:10:47 +00001036 }
Dan Gohman7c3234c2008-08-27 23:52:12 +00001037 SDL->SwitchCases.clear();
1038
1039 SDL->PHINodesToUpdate.clear();
Chris Lattner1c08c712005-01-07 07:47:53 +00001040}
Evan Chenga9c20912006-01-21 02:32:06 +00001041
Jim Laskey13ec7022006-08-01 14:21:23 +00001042
Dan Gohman0a3776d2009-02-06 18:26:51 +00001043/// Create the scheduler. If a specific scheduler was specified
1044/// via the SchedulerRegistry, use it, otherwise select the
1045/// one preferred by the target.
Dan Gohman5e843682008-07-14 18:19:29 +00001046///
Dan Gohman47ac0f02009-02-11 04:27:20 +00001047ScheduleDAGSDNodes *SelectionDAGISel::CreateScheduler() {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00001048 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001049
Jim Laskey13ec7022006-08-01 14:21:23 +00001050 if (!Ctor) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00001051 Ctor = ISHeuristic;
Jim Laskey9373beb2006-08-01 19:14:14 +00001052 RegisterScheduler::setDefault(Ctor);
Evan Cheng4ef10862006-01-23 07:01:07 +00001053 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001054
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00001055 return Ctor(this, OptLevel);
Evan Chenga9c20912006-01-21 02:32:06 +00001056}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001057
Dan Gohmanfc54c552009-01-15 22:18:12 +00001058ScheduleHazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
1059 return new ScheduleHazardRecognizer();
Jim Laskey9ff542f2006-08-01 18:29:48 +00001060}
1061
Chris Lattner75548062006-10-11 03:58:02 +00001062//===----------------------------------------------------------------------===//
1063// Helper functions used by the generated instruction selector.
1064//===----------------------------------------------------------------------===//
1065// Calls to these methods are generated by tblgen.
1066
1067/// CheckAndMask - The isel is trying to match something like (and X, 255). If
1068/// the dag combiner simplified the 255, we still want to match. RHS is the
1069/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
1070/// specified in the .td file (e.g. 255).
Daniel Dunbara279bc32009-09-20 02:20:51 +00001071bool SelectionDAGISel::CheckAndMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohmandc9b3d02007-07-24 23:00:27 +00001072 int64_t DesiredMaskS) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001073 const APInt &ActualMask = RHS->getAPIntValue();
1074 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001075
Chris Lattner75548062006-10-11 03:58:02 +00001076 // If the actual mask exactly matches, success!
1077 if (ActualMask == DesiredMask)
1078 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001079
Chris Lattner75548062006-10-11 03:58:02 +00001080 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001081 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00001082 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001083
Chris Lattner75548062006-10-11 03:58:02 +00001084 // Otherwise, the DAG Combiner may have proven that the value coming in is
1085 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001086 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001087 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
Chris Lattner75548062006-10-11 03:58:02 +00001088 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001089
Chris Lattner75548062006-10-11 03:58:02 +00001090 // TODO: check to see if missing bits are just not demanded.
1091
1092 // Otherwise, this pattern doesn't match.
1093 return false;
1094}
1095
1096/// CheckOrMask - The isel is trying to match something like (or X, 255). If
1097/// the dag combiner simplified the 255, we still want to match. RHS is the
1098/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
1099/// specified in the .td file (e.g. 255).
Daniel Dunbara279bc32009-09-20 02:20:51 +00001100bool SelectionDAGISel::CheckOrMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001101 int64_t DesiredMaskS) const {
1102 const APInt &ActualMask = RHS->getAPIntValue();
1103 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001104
Chris Lattner75548062006-10-11 03:58:02 +00001105 // If the actual mask exactly matches, success!
1106 if (ActualMask == DesiredMask)
1107 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001108
Chris Lattner75548062006-10-11 03:58:02 +00001109 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001110 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00001111 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001112
Chris Lattner75548062006-10-11 03:58:02 +00001113 // Otherwise, the DAG Combiner may have proven that the value coming in is
1114 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001115 APInt NeededMask = DesiredMask & ~ActualMask;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001116
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001117 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001118 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001119
Chris Lattner75548062006-10-11 03:58:02 +00001120 // If all the missing bits in the or are already known to be set, match!
1121 if ((NeededMask & KnownOne) == NeededMask)
1122 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001123
Chris Lattner75548062006-10-11 03:58:02 +00001124 // TODO: check to see if missing bits are just not demanded.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001125
Chris Lattner75548062006-10-11 03:58:02 +00001126 // Otherwise, this pattern doesn't match.
1127 return false;
1128}
1129
Jim Laskey9ff542f2006-08-01 18:29:48 +00001130
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001131/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
1132/// by tblgen. Others should not call it.
1133void SelectionDAGISel::
Dan Gohmanf350b272008-08-23 02:25:05 +00001134SelectInlineAsmMemoryOperands(std::vector<SDValue> &Ops) {
Dan Gohman475871a2008-07-27 21:46:04 +00001135 std::vector<SDValue> InOps;
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001136 std::swap(InOps, Ops);
1137
1138 Ops.push_back(InOps[0]); // input chain.
1139 Ops.push_back(InOps[1]); // input asm string.
1140
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001141 unsigned i = 2, e = InOps.size();
Owen Anderson825b72b2009-08-11 20:47:22 +00001142 if (InOps[e-1].getValueType() == MVT::Flag)
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001143 --e; // Don't process a flag operand if it is here.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001144
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001145 while (i != e) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001146 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getZExtValue();
Dale Johannesen86b49f82008-09-24 01:07:17 +00001147 if ((Flags & 7) != 4 /*MEM*/) {
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001148 // Just skip over this operand, copying the operands verbatim.
Evan Cheng697cbbf2009-03-20 18:03:34 +00001149 Ops.insert(Ops.end(), InOps.begin()+i,
1150 InOps.begin()+i+InlineAsm::getNumOperandRegisters(Flags) + 1);
1151 i += InlineAsm::getNumOperandRegisters(Flags) + 1;
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001152 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00001153 assert(InlineAsm::getNumOperandRegisters(Flags) == 1 &&
1154 "Memory operand with multiple values?");
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001155 // Otherwise, this is a memory operand. Ask the target to select it.
Dan Gohman475871a2008-07-27 21:46:04 +00001156 std::vector<SDValue> SelOps;
Dan Gohmanf350b272008-08-23 02:25:05 +00001157 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps)) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001158 llvm_report_error("Could not match memory address. Inline asm"
1159 " failure!");
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001160 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001161
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001162 // Add this to the output node.
Owen Andersone50ed302009-08-10 22:56:29 +00001163 EVT IntPtrTy = TLI.getPointerTy();
Dale Johannesen86b49f82008-09-24 01:07:17 +00001164 Ops.push_back(CurDAG->getTargetConstant(4/*MEM*/ | (SelOps.size()<< 3),
Dan Gohmanf350b272008-08-23 02:25:05 +00001165 IntPtrTy));
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001166 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
1167 i += 2;
1168 }
1169 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001170
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001171 // Add the flag input back if present.
1172 if (e != InOps.size())
1173 Ops.push_back(InOps.back());
1174}
Devang Patel794fd752007-05-01 21:15:47 +00001175
Owen Andersone50ed302009-08-10 22:56:29 +00001176/// findFlagUse - Return use of EVT::Flag value produced by the specified
Anton Korobeynikovc1c6ef82009-05-08 18:51:58 +00001177/// SDNode.
1178///
1179static SDNode *findFlagUse(SDNode *N) {
1180 unsigned FlagResNo = N->getNumValues()-1;
1181 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
1182 SDUse &Use = I.getUse();
1183 if (Use.getResNo() == FlagResNo)
1184 return Use.getUser();
1185 }
1186 return NULL;
1187}
1188
1189/// findNonImmUse - Return true if "Use" is a non-immediate use of "Def".
1190/// This function recursively traverses up the operand chain, ignoring
1191/// certain nodes.
1192static bool findNonImmUse(SDNode *Use, SDNode* Def, SDNode *ImmedUse,
1193 SDNode *Root,
1194 SmallPtrSet<SDNode*, 16> &Visited) {
1195 if (Use->getNodeId() < Def->getNodeId() ||
1196 !Visited.insert(Use))
1197 return false;
1198
1199 for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
1200 SDNode *N = Use->getOperand(i).getNode();
1201 if (N == Def) {
1202 if (Use == ImmedUse || Use == Root)
1203 continue; // We are not looking for immediate use.
1204 assert(N != Root);
1205 return true;
1206 }
1207
1208 // Traverse up the operand chain.
1209 if (findNonImmUse(N, Def, ImmedUse, Root, Visited))
1210 return true;
1211 }
1212 return false;
1213}
1214
1215/// isNonImmUse - Start searching from Root up the DAG to check is Def can
1216/// be reached. Return true if that's the case. However, ignore direct uses
1217/// by ImmedUse (which would be U in the example illustrated in
1218/// IsLegalAndProfitableToFold) and by Root (which can happen in the store
1219/// case).
1220/// FIXME: to be really generic, we should allow direct use by any node
1221/// that is being folded. But realisticly since we only fold loads which
1222/// have one non-chain use, we only need to watch out for load/op/store
1223/// and load/op/cmp case where the root (store / cmp) may reach the load via
1224/// its chain operand.
1225static inline bool isNonImmUse(SDNode *Root, SDNode *Def, SDNode *ImmedUse) {
1226 SmallPtrSet<SDNode*, 16> Visited;
1227 return findNonImmUse(Root, Def, ImmedUse, Root, Visited);
1228}
1229
1230/// IsLegalAndProfitableToFold - Returns true if the specific operand node N of
1231/// U can be folded during instruction selection that starts at Root and
1232/// folding N is profitable.
1233bool SelectionDAGISel::IsLegalAndProfitableToFold(SDNode *N, SDNode *U,
1234 SDNode *Root) const {
1235 if (OptLevel == CodeGenOpt::None) return false;
1236
1237 // If Root use can somehow reach N through a path that that doesn't contain
1238 // U then folding N would create a cycle. e.g. In the following
1239 // diagram, Root can reach N through X. If N is folded into into Root, then
1240 // X is both a predecessor and a successor of U.
1241 //
1242 // [N*] //
1243 // ^ ^ //
1244 // / \ //
1245 // [U*] [X]? //
1246 // ^ ^ //
1247 // \ / //
1248 // \ / //
1249 // [Root*] //
1250 //
1251 // * indicates nodes to be folded together.
1252 //
1253 // If Root produces a flag, then it gets (even more) interesting. Since it
1254 // will be "glued" together with its flag use in the scheduler, we need to
1255 // check if it might reach N.
1256 //
1257 // [N*] //
1258 // ^ ^ //
1259 // / \ //
1260 // [U*] [X]? //
1261 // ^ ^ //
1262 // \ \ //
1263 // \ | //
1264 // [Root*] | //
1265 // ^ | //
1266 // f | //
1267 // | / //
1268 // [Y] / //
1269 // ^ / //
1270 // f / //
1271 // | / //
1272 // [FU] //
1273 //
1274 // If FU (flag use) indirectly reaches N (the load), and Root folds N
1275 // (call it Fold), then X is a predecessor of FU and a successor of
1276 // Fold. But since Fold and FU are flagged together, this will create
1277 // a cycle in the scheduling graph.
1278
Owen Andersone50ed302009-08-10 22:56:29 +00001279 EVT VT = Root->getValueType(Root->getNumValues()-1);
Owen Anderson825b72b2009-08-11 20:47:22 +00001280 while (VT == MVT::Flag) {
Anton Korobeynikovc1c6ef82009-05-08 18:51:58 +00001281 SDNode *FU = findFlagUse(Root);
1282 if (FU == NULL)
1283 break;
1284 Root = FU;
1285 VT = Root->getValueType(Root->getNumValues()-1);
1286 }
1287
1288 return !isNonImmUse(Root, N, U);
1289}
1290
1291
Devang Patel19974732007-05-03 01:11:54 +00001292char SelectionDAGISel::ID = 0;