blob: 19ea647311519d464d4a99407209a16d2fa35475 [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,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +0000157 MachineBasicBlock *MBB) const {
Torok Edwinf3689232009-07-12 20:07:01 +0000158#ifndef NDEBUG
Chris Lattner4437ae22009-08-23 07:05:07 +0000159 errs() << "If a target marks an instruction with "
Torok Edwinf3689232009-07-12 20:07:01 +0000160 "'usesCustomDAGSchedInserter', it must implement "
161 "TargetLowering::EmitInstrWithCustomInserter!";
162#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000163 llvm_unreachable(0);
Chris Lattner025c39b2005-08-26 20:54:47 +0000164 return 0;
165}
166
Dan Gohman8a110532008-09-05 22:59:21 +0000167/// EmitLiveInCopy - Emit a copy for a live in physical register. If the
168/// physical register has only a single copy use, then coalesced the copy
169/// if possible.
170static void EmitLiveInCopy(MachineBasicBlock *MBB,
171 MachineBasicBlock::iterator &InsertPos,
172 unsigned VirtReg, unsigned PhysReg,
173 const TargetRegisterClass *RC,
174 DenseMap<MachineInstr*, unsigned> &CopyRegMap,
175 const MachineRegisterInfo &MRI,
176 const TargetRegisterInfo &TRI,
177 const TargetInstrInfo &TII) {
178 unsigned NumUses = 0;
179 MachineInstr *UseMI = NULL;
180 for (MachineRegisterInfo::use_iterator UI = MRI.use_begin(VirtReg),
181 UE = MRI.use_end(); UI != UE; ++UI) {
182 UseMI = &*UI;
183 if (++NumUses > 1)
184 break;
185 }
186
187 // If the number of uses is not one, or the use is not a move instruction,
188 // don't coalesce. Also, only coalesce away a virtual register to virtual
189 // register copy.
190 bool Coalesced = false;
Evan Cheng04ee5a12009-01-20 19:12:24 +0000191 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
Dan Gohman8a110532008-09-05 22:59:21 +0000192 if (NumUses == 1 &&
Evan Cheng04ee5a12009-01-20 19:12:24 +0000193 TII.isMoveInstr(*UseMI, SrcReg, DstReg, SrcSubReg, DstSubReg) &&
Dan Gohman8a110532008-09-05 22:59:21 +0000194 TargetRegisterInfo::isVirtualRegister(DstReg)) {
195 VirtReg = DstReg;
196 Coalesced = true;
197 }
198
199 // Now find an ideal location to insert the copy.
200 MachineBasicBlock::iterator Pos = InsertPos;
201 while (Pos != MBB->begin()) {
202 MachineInstr *PrevMI = prior(Pos);
203 DenseMap<MachineInstr*, unsigned>::iterator RI = CopyRegMap.find(PrevMI);
204 // copyRegToReg might emit multiple instructions to do a copy.
205 unsigned CopyDstReg = (RI == CopyRegMap.end()) ? 0 : RI->second;
206 if (CopyDstReg && !TRI.regsOverlap(CopyDstReg, PhysReg))
207 // This is what the BB looks like right now:
208 // r1024 = mov r0
209 // ...
210 // r1 = mov r1024
211 //
212 // We want to insert "r1025 = mov r1". Inserting this copy below the
213 // move to r1024 makes it impossible for that move to be coalesced.
214 //
215 // r1025 = mov r1
216 // r1024 = mov r0
217 // ...
218 // r1 = mov 1024
219 // r2 = mov 1025
220 break; // Woot! Found a good location.
221 --Pos;
222 }
223
David Goodwinf1daf7d2009-07-08 23:10:31 +0000224 bool Emitted = TII.copyRegToReg(*MBB, Pos, VirtReg, PhysReg, RC, RC);
225 assert(Emitted && "Unable to issue a live-in copy instruction!\n");
226 (void) Emitted;
227
228CopyRegMap.insert(std::make_pair(prior(Pos), VirtReg));
Dan Gohman8a110532008-09-05 22:59:21 +0000229 if (Coalesced) {
230 if (&*InsertPos == UseMI) ++InsertPos;
231 MBB->erase(UseMI);
232 }
233}
234
235/// EmitLiveInCopies - If this is the first basic block in the function,
236/// and if it has live ins that need to be copied into vregs, emit the
237/// copies into the block.
238static void EmitLiveInCopies(MachineBasicBlock *EntryMBB,
239 const MachineRegisterInfo &MRI,
240 const TargetRegisterInfo &TRI,
241 const TargetInstrInfo &TII) {
242 if (SchedLiveInCopies) {
243 // Emit the copies at a heuristically-determined location in the block.
244 DenseMap<MachineInstr*, unsigned> CopyRegMap;
245 MachineBasicBlock::iterator InsertPos = EntryMBB->begin();
246 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
247 E = MRI.livein_end(); LI != E; ++LI)
248 if (LI->second) {
249 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
250 EmitLiveInCopy(EntryMBB, InsertPos, LI->second, LI->first,
251 RC, CopyRegMap, MRI, TRI, TII);
252 }
253 } else {
254 // Emit the copies into the top of the block.
255 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
256 E = MRI.livein_end(); LI != E; ++LI)
257 if (LI->second) {
258 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
David Goodwinf1daf7d2009-07-08 23:10:31 +0000259 bool Emitted = TII.copyRegToReg(*EntryMBB, EntryMBB->begin(),
260 LI->second, LI->first, RC, RC);
261 assert(Emitted && "Unable to issue a live-in copy instruction!\n");
262 (void) Emitted;
Dan Gohman8a110532008-09-05 22:59:21 +0000263 }
264 }
265}
266
Chris Lattner7041ee32005-01-11 05:56:49 +0000267//===----------------------------------------------------------------------===//
268// SelectionDAGISel code
269//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +0000270
Bill Wendling98a366d2009-04-29 23:29:43 +0000271SelectionDAGISel::SelectionDAGISel(TargetMachine &tm, CodeGenOpt::Level OL) :
Dan Gohmanad2afc22009-07-31 18:16:33 +0000272 MachineFunctionPass(&ID), TM(tm), TLI(*tm.getTargetLowering()),
Dan Gohman7c3234c2008-08-27 23:52:12 +0000273 FuncInfo(new FunctionLoweringInfo(TLI)),
274 CurDAG(new SelectionDAG(TLI, *FuncInfo)),
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000275 SDL(new SelectionDAGLowering(*CurDAG, TLI, *FuncInfo, OL)),
Dan Gohman7c3234c2008-08-27 23:52:12 +0000276 GFI(),
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000277 OptLevel(OL),
Dan Gohman7c3234c2008-08-27 23:52:12 +0000278 DAGSize(0)
279{}
280
281SelectionDAGISel::~SelectionDAGISel() {
282 delete SDL;
283 delete CurDAG;
284 delete FuncInfo;
285}
286
Owen Andersone50ed302009-08-10 22:56:29 +0000287unsigned SelectionDAGISel::MakeReg(EVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000288 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +0000289}
290
Chris Lattner495a0b52005-08-17 06:37:43 +0000291void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyc7c3f112006-10-16 20:52:31 +0000292 AU.addRequired<AliasAnalysis>();
Dan Gohmana3477fe2009-07-31 23:36:22 +0000293 AU.addPreserved<AliasAnalysis>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000294 AU.addRequired<GCModuleInfo>();
Dan Gohmana3477fe2009-07-31 23:36:22 +0000295 AU.addPreserved<GCModuleInfo>();
Devang Patel6e7a1612009-01-09 19:11:50 +0000296 AU.addRequired<DwarfWriter>();
Dan Gohmana3477fe2009-07-31 23:36:22 +0000297 AU.addPreserved<DwarfWriter>();
Dan Gohmanad2afc22009-07-31 18:16:33 +0000298 MachineFunctionPass::getAnalysisUsage(AU);
Chris Lattner495a0b52005-08-17 06:37:43 +0000299}
Chris Lattner1c08c712005-01-07 07:47:53 +0000300
Dan Gohmanad2afc22009-07-31 18:16:33 +0000301bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
302 Function &Fn = *mf.getFunction();
303
Dan Gohman4344a5d2008-09-09 23:05:00 +0000304 // Do some sanity-checking on the command-line options.
305 assert((!EnableFastISelVerbose || EnableFastISel) &&
306 "-fast-isel-verbose requires -fast-isel");
307 assert((!EnableFastISelAbort || EnableFastISel) &&
308 "-fast-isel-abort requires -fast-isel");
309
Dan Gohman5f43f922007-08-27 16:26:13 +0000310 // Get alias analysis for load/store combining.
311 AA = &getAnalysis<AliasAnalysis>();
312
Dan Gohmanad2afc22009-07-31 18:16:33 +0000313 MF = &mf;
Dan Gohman8a110532008-09-05 22:59:21 +0000314 const TargetInstrInfo &TII = *TM.getInstrInfo();
315 const TargetRegisterInfo &TRI = *TM.getRegisterInfo();
316
Dan Gohmanf7d6cd42009-08-01 03:51:09 +0000317 if (Fn.hasGC())
318 GFI = &getAnalysis<GCModuleInfo>().getFunctionInfo(Fn);
Gordon Henriksence224772008-01-07 01:30:38 +0000319 else
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000320 GFI = 0;
Dan Gohman79ce2762009-01-15 19:20:50 +0000321 RegInfo = &MF->getRegInfo();
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000322 DEBUG(errs() << "\n\n\n=== " << Fn.getName() << "\n");
Chris Lattner1c08c712005-01-07 07:47:53 +0000323
Duncan Sands1465d612009-01-28 13:14:17 +0000324 MachineModuleInfo *MMI = getAnalysisIfAvailable<MachineModuleInfo>();
325 DwarfWriter *DW = getAnalysisIfAvailable<DwarfWriter>();
Owen Anderson5dcaceb2009-07-09 18:44:09 +0000326 CurDAG->init(*MF, MMI, DW);
Devang Patelb51d40c2009-02-03 18:46:32 +0000327 FuncInfo->set(Fn, *MF, *CurDAG, EnableFastISel);
Dan Gohman7c3234c2008-08-27 23:52:12 +0000328 SDL->init(GFI, *AA);
Chris Lattner1c08c712005-01-07 07:47:53 +0000329
Dale Johannesen1532f3d2008-04-02 00:25:04 +0000330 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
331 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
332 // Mark landing pad.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000333 FuncInfo->MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Duncan Sands9fac0b52007-06-06 10:05:18 +0000334
Dan Gohman79ce2762009-01-15 19:20:50 +0000335 SelectAllBasicBlocks(Fn, *MF, MMI, DW, TII);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000336
Dan Gohman8a110532008-09-05 22:59:21 +0000337 // If the first basic block in the function has live ins that need to be
338 // copied into vregs, emit the copies into the top of the block before
339 // emitting the code for the block.
Dan Gohman79ce2762009-01-15 19:20:50 +0000340 EmitLiveInCopies(MF->begin(), *RegInfo, TRI, TII);
Dan Gohman8a110532008-09-05 22:59:21 +0000341
Evan Chengad2070c2007-02-10 02:43:39 +0000342 // Add function live-ins to entry block live-in set.
Dan Gohman8a110532008-09-05 22:59:21 +0000343 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
344 E = RegInfo->livein_end(); I != E; ++I)
Dan Gohman79ce2762009-01-15 19:20:50 +0000345 MF->begin()->addLiveIn(I->first);
Evan Chengad2070c2007-02-10 02:43:39 +0000346
Duncan Sandsf4070822007-06-15 19:04:19 +0000347#ifndef NDEBUG
Dan Gohman7c3234c2008-08-27 23:52:12 +0000348 assert(FuncInfo->CatchInfoFound.size() == FuncInfo->CatchInfoLost.size() &&
Duncan Sandsf4070822007-06-15 19:04:19 +0000349 "Not all catch info was assigned to a landing pad!");
350#endif
351
Dan Gohman7c3234c2008-08-27 23:52:12 +0000352 FuncInfo->clear();
353
Chris Lattner1c08c712005-01-07 07:47:53 +0000354 return true;
355}
356
Duncan Sandsf4070822007-06-15 19:04:19 +0000357static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
358 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000359 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000360 if (EHSelectorInst *EHSel = dyn_cast<EHSelectorInst>(I)) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000361 // Apply the catch info to DestBB.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000362 AddCatchInfo(*EHSel, MMI, FLI.MBBMap[DestBB]);
Duncan Sandsf4070822007-06-15 19:04:19 +0000363#ifndef NDEBUG
Duncan Sands560a7372007-11-15 09:54:37 +0000364 if (!FLI.MBBMap[SrcBB]->isLandingPad())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000365 FLI.CatchInfoFound.insert(EHSel);
Duncan Sandsf4070822007-06-15 19:04:19 +0000366#endif
367 }
368}
369
Dan Gohmanf350b272008-08-23 02:25:05 +0000370void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB,
371 BasicBlock::iterator Begin,
Dan Gohman5edd3612008-08-28 20:28:56 +0000372 BasicBlock::iterator End) {
Dan Gohman7c3234c2008-08-27 23:52:12 +0000373 SDL->setCurrentBasicBlock(BB);
Devang Patel123eaa72009-09-16 20:39:11 +0000374 Metadata &TheMetadata = LLVMBB->getParent()->getContext().getMetadata();
375 MDKindID MDDbgKind = TheMetadata.getMDKind("dbg");
Dan Gohmanf350b272008-08-23 02:25:05 +0000376
Dan Gohman98ca4f22009-08-05 01:29:28 +0000377 // Lower all of the non-terminator instructions. If a call is emitted
378 // as a tail call, cease emitting nodes for this block.
Devang Patel123eaa72009-09-16 20:39:11 +0000379 for (BasicBlock::iterator I = Begin; I != End && !SDL->HasTailCall; ++I) {
380 if (MDDbgKind) {
381 // Update DebugLoc if debug information is attached with this
382 // instruction.
383 if (MDNode *Dbg =
384 dyn_cast_or_null<MDNode>(TheMetadata.getMD(MDDbgKind, I))) {
385 DILocation DILoc(Dbg);
386 DebugLoc Loc = ExtractDebugLocation(DILoc, MF->getDebugLocInfo());
387 SDL->setCurDebugLoc(Loc);
388 }
389 }
Dan Gohmanf350b272008-08-23 02:25:05 +0000390 if (!isa<TerminatorInst>(I))
Dan Gohman7c3234c2008-08-27 23:52:12 +0000391 SDL->visit(*I);
Devang Patel123eaa72009-09-16 20:39:11 +0000392 }
Dan Gohmanf350b272008-08-23 02:25:05 +0000393
Dan Gohman98ca4f22009-08-05 01:29:28 +0000394 if (!SDL->HasTailCall) {
395 // Ensure that all instructions which are used outside of their defining
396 // blocks are available as virtual registers. Invoke is handled elsewhere.
397 for (BasicBlock::iterator I = Begin; I != End; ++I)
398 if (!isa<PHINode>(I) && !isa<InvokeInst>(I))
399 SDL->CopyToExportRegsIfNeeded(I);
Dan Gohmanf350b272008-08-23 02:25:05 +0000400
Dan Gohman98ca4f22009-08-05 01:29:28 +0000401 // Handle PHI nodes in successor blocks.
402 if (End == LLVMBB->end()) {
403 HandlePHINodesInSuccessorBlocks(LLVMBB);
Dan Gohman3df24e62008-09-03 23:12:08 +0000404
Dan Gohman98ca4f22009-08-05 01:29:28 +0000405 // Lower the terminator after the copies are emitted.
406 SDL->visit(*LLVMBB->getTerminator());
407 }
Dan Gohman3df24e62008-09-03 23:12:08 +0000408 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000409
Chris Lattnera651cf62005-01-17 19:43:36 +0000410 // Make sure the root of the DAG is up-to-date.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000411 CurDAG->setRoot(SDL->getControlRoot());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000412
Dan Gohmanf350b272008-08-23 02:25:05 +0000413 // Final step, emit the lowered DAG as machine code.
414 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000415 SDL->clear();
Chris Lattner1c08c712005-01-07 07:47:53 +0000416}
417
Dan Gohmanf350b272008-08-23 02:25:05 +0000418void SelectionDAGISel::ComputeLiveOutVRegInfo() {
Chris Lattneread0d882008-06-17 06:09:18 +0000419 SmallPtrSet<SDNode*, 128> VisitedNodes;
420 SmallVector<SDNode*, 128> Worklist;
421
Gabor Greifba36cb52008-08-28 21:40:38 +0000422 Worklist.push_back(CurDAG->getRoot().getNode());
Chris Lattneread0d882008-06-17 06:09:18 +0000423
424 APInt Mask;
425 APInt KnownZero;
426 APInt KnownOne;
427
428 while (!Worklist.empty()) {
429 SDNode *N = Worklist.back();
430 Worklist.pop_back();
431
432 // If we've already seen this node, ignore it.
433 if (!VisitedNodes.insert(N))
434 continue;
435
436 // Otherwise, add all chain operands to the worklist.
437 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +0000438 if (N->getOperand(i).getValueType() == MVT::Other)
Gabor Greifba36cb52008-08-28 21:40:38 +0000439 Worklist.push_back(N->getOperand(i).getNode());
Chris Lattneread0d882008-06-17 06:09:18 +0000440
441 // If this is a CopyToReg with a vreg dest, process it.
442 if (N->getOpcode() != ISD::CopyToReg)
443 continue;
444
445 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
446 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
447 continue;
448
449 // Ignore non-scalar or non-integer values.
Dan Gohman475871a2008-07-27 21:46:04 +0000450 SDValue Src = N->getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +0000451 EVT SrcVT = Src.getValueType();
Chris Lattneread0d882008-06-17 06:09:18 +0000452 if (!SrcVT.isInteger() || SrcVT.isVector())
453 continue;
454
Dan Gohmanf350b272008-08-23 02:25:05 +0000455 unsigned NumSignBits = CurDAG->ComputeNumSignBits(Src);
Chris Lattneread0d882008-06-17 06:09:18 +0000456 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
Dan Gohmanf350b272008-08-23 02:25:05 +0000457 CurDAG->ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
Chris Lattneread0d882008-06-17 06:09:18 +0000458
459 // Only install this information if it tells us something.
460 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
461 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
Dan Gohmanf7d6cd42009-08-01 03:51:09 +0000462 if (DestReg >= FuncInfo->LiveOutRegInfo.size())
463 FuncInfo->LiveOutRegInfo.resize(DestReg+1);
464 FunctionLoweringInfo::LiveOutInfo &LOI =
465 FuncInfo->LiveOutRegInfo[DestReg];
Chris Lattneread0d882008-06-17 06:09:18 +0000466 LOI.NumSignBits = NumSignBits;
Dan Gohmana80efce2009-03-27 23:55:04 +0000467 LOI.KnownOne = KnownOne;
468 LOI.KnownZero = KnownZero;
Chris Lattneread0d882008-06-17 06:09:18 +0000469 }
470 }
471}
472
Dan Gohmanf350b272008-08-23 02:25:05 +0000473void SelectionDAGISel::CodeGenAndEmitDAG() {
Dan Gohman462dc7f2008-07-21 20:00:07 +0000474 std::string GroupName;
475 if (TimePassesIsEnabled)
476 GroupName = "Instruction Selection and Scheduling";
477 std::string BlockName;
478 if (ViewDAGCombine1 || ViewLegalizeTypesDAGs || ViewLegalizeDAGs ||
Duncan Sands25cf2272008-11-24 14:53:14 +0000479 ViewDAGCombine2 || ViewDAGCombineLT || ViewISelDAGs || ViewSchedDAGs ||
480 ViewSUnitDAGs)
Dan Gohmanf7d6cd42009-08-01 03:51:09 +0000481 BlockName = MF->getFunction()->getNameStr() + ":" +
Daniel Dunbarf6ccee52009-07-24 08:24:36 +0000482 BB->getBasicBlock()->getNameStr();
Dan Gohman462dc7f2008-07-21 20:00:07 +0000483
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000484 DEBUG(errs() << "Initial selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000485 DEBUG(CurDAG->dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +0000486
Dan Gohmanf350b272008-08-23 02:25:05 +0000487 if (ViewDAGCombine1) CurDAG->viewGraph("dag-combine1 input for " + BlockName);
Dan Gohman417e11b2007-10-08 15:12:17 +0000488
Chris Lattneraf21d552005-10-10 16:47:10 +0000489 // Run the DAG combiner in pre-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +0000490 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000491 NamedRegionTimer T("DAG Combining 1", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000492 CurDAG->Combine(Unrestricted, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000493 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000494 CurDAG->Combine(Unrestricted, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000495 }
Nate Begeman2300f552005-09-07 00:15:36 +0000496
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000497 DEBUG(errs() << "Optimized lowered selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000498 DEBUG(CurDAG->dump());
Duncan Sandsf00e74f2008-07-17 17:06:03 +0000499
Chris Lattner1c08c712005-01-07 07:47:53 +0000500 // Second step, hack on the DAG until it only uses operations and types that
501 // the target supports.
Duncan Sands7cb07872008-10-27 08:42:46 +0000502 if (!DisableLegalizeTypes) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000503 if (ViewLegalizeTypesDAGs) CurDAG->viewGraph("legalize-types input for " +
504 BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000505
Duncan Sands25cf2272008-11-24 14:53:14 +0000506 bool Changed;
Dan Gohman462dc7f2008-07-21 20:00:07 +0000507 if (TimePassesIsEnabled) {
508 NamedRegionTimer T("Type Legalization", GroupName);
Duncan Sands25cf2272008-11-24 14:53:14 +0000509 Changed = CurDAG->LegalizeTypes();
Dan Gohman462dc7f2008-07-21 20:00:07 +0000510 } else {
Duncan Sands25cf2272008-11-24 14:53:14 +0000511 Changed = CurDAG->LegalizeTypes();
Dan Gohman462dc7f2008-07-21 20:00:07 +0000512 }
513
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000514 DEBUG(errs() << "Type-legalized selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000515 DEBUG(CurDAG->dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +0000516
Duncan Sands25cf2272008-11-24 14:53:14 +0000517 if (Changed) {
518 if (ViewDAGCombineLT)
519 CurDAG->viewGraph("dag-combine-lt input for " + BlockName);
520
521 // Run the DAG combiner in post-type-legalize mode.
522 if (TimePassesIsEnabled) {
523 NamedRegionTimer T("DAG Combining after legalize types", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000524 CurDAG->Combine(NoIllegalTypes, *AA, OptLevel);
Duncan Sands25cf2272008-11-24 14:53:14 +0000525 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000526 CurDAG->Combine(NoIllegalTypes, *AA, OptLevel);
Duncan Sands25cf2272008-11-24 14:53:14 +0000527 }
528
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000529 DEBUG(errs() << "Optimized type-legalized selection DAG:\n");
Duncan Sands25cf2272008-11-24 14:53:14 +0000530 DEBUG(CurDAG->dump());
531 }
Eli Friedman5c22c802009-05-23 12:35:30 +0000532
533 if (TimePassesIsEnabled) {
534 NamedRegionTimer T("Vector Legalization", GroupName);
535 Changed = CurDAG->LegalizeVectors();
536 } else {
537 Changed = CurDAG->LegalizeVectors();
538 }
539
540 if (Changed) {
541 if (TimePassesIsEnabled) {
542 NamedRegionTimer T("Type Legalization 2", GroupName);
543 Changed = CurDAG->LegalizeTypes();
544 } else {
545 Changed = CurDAG->LegalizeTypes();
546 }
547
548 if (ViewDAGCombineLT)
549 CurDAG->viewGraph("dag-combine-lv input for " + BlockName);
550
551 // Run the DAG combiner in post-type-legalize mode.
552 if (TimePassesIsEnabled) {
553 NamedRegionTimer T("DAG Combining after legalize vectors", GroupName);
554 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
555 } else {
556 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
557 }
558
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000559 DEBUG(errs() << "Optimized vector-legalized selection DAG:\n");
Eli Friedman5c22c802009-05-23 12:35:30 +0000560 DEBUG(CurDAG->dump());
561 }
Chris Lattner70587ea2008-07-10 23:37:50 +0000562 }
Duncan Sandsf00e74f2008-07-17 17:06:03 +0000563
Dan Gohmanf350b272008-08-23 02:25:05 +0000564 if (ViewLegalizeDAGs) CurDAG->viewGraph("legalize input for " + BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000565
Evan Chengebffb662008-07-01 17:59:20 +0000566 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000567 NamedRegionTimer T("DAG Legalization", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000568 CurDAG->Legalize(DisableLegalizeTypes, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000569 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000570 CurDAG->Legalize(DisableLegalizeTypes, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000571 }
Nate Begemanf15485a2006-03-27 01:32:24 +0000572
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000573 DEBUG(errs() << "Legalized selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000574 DEBUG(CurDAG->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +0000575
Dan Gohmanf350b272008-08-23 02:25:05 +0000576 if (ViewDAGCombine2) CurDAG->viewGraph("dag-combine2 input for " + BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000577
Chris Lattneraf21d552005-10-10 16:47:10 +0000578 // Run the DAG combiner in post-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +0000579 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000580 NamedRegionTimer T("DAG Combining 2", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000581 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000582 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000583 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000584 }
Nate Begeman2300f552005-09-07 00:15:36 +0000585
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000586 DEBUG(errs() << "Optimized legalized selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000587 DEBUG(CurDAG->dump());
Dan Gohman417e11b2007-10-08 15:12:17 +0000588
Dan Gohmanf350b272008-08-23 02:25:05 +0000589 if (ViewISelDAGs) CurDAG->viewGraph("isel input for " + BlockName);
Chris Lattneread0d882008-06-17 06:09:18 +0000590
Bill Wendling98a366d2009-04-29 23:29:43 +0000591 if (OptLevel != CodeGenOpt::None)
Dan Gohmanf350b272008-08-23 02:25:05 +0000592 ComputeLiveOutVRegInfo();
Evan Cheng552c4a82006-04-28 02:09:19 +0000593
Chris Lattnera33ef482005-03-30 01:10:47 +0000594 // Third, instruction select all of the operations to machine code, adding the
595 // code to the MachineBasicBlock.
Evan Chengebffb662008-07-01 17:59:20 +0000596 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000597 NamedRegionTimer T("Instruction Selection", GroupName);
Dan Gohmanf350b272008-08-23 02:25:05 +0000598 InstructionSelect();
Evan Chengebffb662008-07-01 17:59:20 +0000599 } else {
Dan Gohmanf350b272008-08-23 02:25:05 +0000600 InstructionSelect();
Evan Chengebffb662008-07-01 17:59:20 +0000601 }
Evan Chengdb8d56b2008-06-30 20:45:06 +0000602
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000603 DEBUG(errs() << "Selected selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000604 DEBUG(CurDAG->dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +0000605
Dan Gohmanf350b272008-08-23 02:25:05 +0000606 if (ViewSchedDAGs) CurDAG->viewGraph("scheduler input for " + BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000607
Dan Gohman5e843682008-07-14 18:19:29 +0000608 // Schedule machine code.
Dan Gohman47ac0f02009-02-11 04:27:20 +0000609 ScheduleDAGSDNodes *Scheduler = CreateScheduler();
Dan Gohman5e843682008-07-14 18:19:29 +0000610 if (TimePassesIsEnabled) {
611 NamedRegionTimer T("Instruction Scheduling", GroupName);
Dan Gohman47ac0f02009-02-11 04:27:20 +0000612 Scheduler->Run(CurDAG, BB, BB->end());
Dan Gohman5e843682008-07-14 18:19:29 +0000613 } else {
Dan Gohman47ac0f02009-02-11 04:27:20 +0000614 Scheduler->Run(CurDAG, BB, BB->end());
Dan Gohman5e843682008-07-14 18:19:29 +0000615 }
616
Dan Gohman462dc7f2008-07-21 20:00:07 +0000617 if (ViewSUnitDAGs) Scheduler->viewGraph();
618
Evan Chengdb8d56b2008-06-30 20:45:06 +0000619 // Emit machine code to BB. This can change 'BB' to the last block being
620 // inserted into.
Evan Chengebffb662008-07-01 17:59:20 +0000621 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000622 NamedRegionTimer T("Instruction Creation", GroupName);
623 BB = Scheduler->EmitSchedule();
Evan Chengebffb662008-07-01 17:59:20 +0000624 } else {
Dan Gohman5e843682008-07-14 18:19:29 +0000625 BB = Scheduler->EmitSchedule();
626 }
627
628 // Free the scheduler state.
629 if (TimePassesIsEnabled) {
630 NamedRegionTimer T("Instruction Scheduling Cleanup", GroupName);
631 delete Scheduler;
632 } else {
633 delete Scheduler;
Evan Chengebffb662008-07-01 17:59:20 +0000634 }
Evan Chengdb8d56b2008-06-30 20:45:06 +0000635
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000636 DEBUG(errs() << "Selected machine code:\n");
Chris Lattner1c08c712005-01-07 07:47:53 +0000637 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +0000638}
Chris Lattner1c08c712005-01-07 07:47:53 +0000639
Dan Gohman79ce2762009-01-15 19:20:50 +0000640void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn,
641 MachineFunction &MF,
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000642 MachineModuleInfo *MMI,
Devang Patel83489bb2009-01-13 00:35:13 +0000643 DwarfWriter *DW,
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000644 const TargetInstrInfo &TII) {
Dan Gohmana43abd12008-09-29 21:55:50 +0000645 // Initialize the Fast-ISel state, if needed.
646 FastISel *FastIS = 0;
647 if (EnableFastISel)
Dan Gohman79ce2762009-01-15 19:20:50 +0000648 FastIS = TLI.createFastISel(MF, MMI, DW,
Dan Gohmana43abd12008-09-29 21:55:50 +0000649 FuncInfo->ValueMap,
650 FuncInfo->MBBMap,
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000651 FuncInfo->StaticAllocaMap
652#ifndef NDEBUG
653 , FuncInfo->CatchInfoLost
654#endif
655 );
Dan Gohmana43abd12008-09-29 21:55:50 +0000656
Devang Patel123eaa72009-09-16 20:39:11 +0000657 Metadata &TheMetadata = Fn.getContext().getMetadata();
658 MDKindID MDDbgKind = TheMetadata.getMDKind("dbg");
659
Dan Gohmana43abd12008-09-29 21:55:50 +0000660 // Iterate over all basic blocks in the function.
Evan Cheng39fd6e82008-08-07 00:43:25 +0000661 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) {
662 BasicBlock *LLVMBB = &*I;
Dan Gohman7c3234c2008-08-27 23:52:12 +0000663 BB = FuncInfo->MBBMap[LLVMBB];
Dan Gohmanf350b272008-08-23 02:25:05 +0000664
Dan Gohman3df24e62008-09-03 23:12:08 +0000665 BasicBlock::iterator const Begin = LLVMBB->begin();
666 BasicBlock::iterator const End = LLVMBB->end();
Evan Cheng9f118502008-09-08 16:01:27 +0000667 BasicBlock::iterator BI = Begin;
Dan Gohman5edd3612008-08-28 20:28:56 +0000668
669 // Lower any arguments needed in this block if this is the entry block.
Dan Gohman33134c42008-09-25 17:05:24 +0000670 bool SuppressFastISel = false;
671 if (LLVMBB == &Fn.getEntryBlock()) {
Dan Gohman5edd3612008-08-28 20:28:56 +0000672 LowerArguments(LLVMBB);
Dan Gohmanf350b272008-08-23 02:25:05 +0000673
Dan Gohman33134c42008-09-25 17:05:24 +0000674 // If any of the arguments has the byval attribute, forgo
675 // fast-isel in the entry block.
Dan Gohmana43abd12008-09-29 21:55:50 +0000676 if (FastIS) {
Dan Gohman33134c42008-09-25 17:05:24 +0000677 unsigned j = 1;
678 for (Function::arg_iterator I = Fn.arg_begin(), E = Fn.arg_end();
679 I != E; ++I, ++j)
Devang Patel05988662008-09-25 21:00:45 +0000680 if (Fn.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohman77ca41e2008-09-25 17:21:42 +0000681 if (EnableFastISelVerbose || EnableFastISelAbort)
Chris Lattner4437ae22009-08-23 07:05:07 +0000682 errs() << "FastISel skips entry block due to byval argument\n";
Dan Gohman33134c42008-09-25 17:05:24 +0000683 SuppressFastISel = true;
684 break;
685 }
686 }
687 }
688
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000689 if (MMI && BB->isLandingPad()) {
690 // Add a label to mark the beginning of the landing pad. Deletion of the
691 // landing pad can thus be detected via the MachineModuleInfo.
692 unsigned LabelID = MMI->addLandingPad(BB);
693
694 const TargetInstrDesc &II = TII.get(TargetInstrInfo::EH_LABEL);
Bill Wendlingb2884872009-02-03 01:55:42 +0000695 BuildMI(BB, SDL->getCurDebugLoc(), II).addImm(LabelID);
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000696
697 // Mark exception register as live in.
698 unsigned Reg = TLI.getExceptionAddressRegister();
699 if (Reg) BB->addLiveIn(Reg);
700
701 // Mark exception selector register as live in.
702 Reg = TLI.getExceptionSelectorRegister();
703 if (Reg) BB->addLiveIn(Reg);
704
705 // FIXME: Hack around an exception handling flaw (PR1508): the personality
706 // function and list of typeids logically belong to the invoke (or, if you
707 // like, the basic block containing the invoke), and need to be associated
708 // with it in the dwarf exception handling tables. Currently however the
709 // information is provided by an intrinsic (eh.selector) that can be moved
710 // to unexpected places by the optimizers: if the unwind edge is critical,
711 // then breaking it can result in the intrinsics being in the successor of
712 // the landing pad, not the landing pad itself. This results in exceptions
713 // not being caught because no typeids are associated with the invoke.
714 // This may not be the only way things can go wrong, but it is the only way
715 // we try to work around for the moment.
716 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
717
718 if (Br && Br->isUnconditional()) { // Critical edge?
719 BasicBlock::iterator I, E;
720 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
721 if (isa<EHSelectorInst>(I))
722 break;
723
724 if (I == E)
725 // No catch info found - try to extract some from the successor.
726 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, *FuncInfo);
727 }
728 }
729
Dan Gohmanf350b272008-08-23 02:25:05 +0000730 // Before doing SelectionDAG ISel, see if FastISel has been requested.
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000731 if (FastIS && !SuppressFastISel) {
Dan Gohmana43abd12008-09-29 21:55:50 +0000732 // Emit code for any incoming arguments. This must happen before
733 // beginning FastISel on the entry block.
734 if (LLVMBB == &Fn.getEntryBlock()) {
735 CurDAG->setRoot(SDL->getControlRoot());
736 CodeGenAndEmitDAG();
737 SDL->clear();
738 }
Dan Gohman241f4642008-10-04 00:56:36 +0000739 FastIS->startNewBlock(BB);
Dan Gohmana43abd12008-09-29 21:55:50 +0000740 // Do FastISel on as many instructions as possible.
741 for (; BI != End; ++BI) {
Devang Patel123eaa72009-09-16 20:39:11 +0000742 if (MDDbgKind) {
743 // Update DebugLoc if debug information is attached with this
744 // instruction.
745 if (MDNode *Dbg =
746 dyn_cast_or_null<MDNode>(TheMetadata.getMD(MDDbgKind, BI))) {
747 DILocation DILoc(Dbg);
748 DebugLoc Loc = ExtractDebugLocation(DILoc,
749 MF.getDebugLocInfo());
750 FastIS->setCurDebugLoc(Loc);
751 }
752 }
753
Dan Gohmana43abd12008-09-29 21:55:50 +0000754 // Just before the terminator instruction, insert instructions to
755 // feed PHI nodes in successor blocks.
756 if (isa<TerminatorInst>(BI))
757 if (!HandlePHINodesInSuccessorBlocksFast(LLVMBB, FastIS)) {
Dan Gohman4344a5d2008-09-09 23:05:00 +0000758 if (EnableFastISelVerbose || EnableFastISelAbort) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000759 errs() << "FastISel miss: ";
Dan Gohman293d5f82008-09-09 22:06:46 +0000760 BI->dump();
761 }
Torok Edwinf3689232009-07-12 20:07:01 +0000762 assert(!EnableFastISelAbort &&
763 "FastISel didn't handle a PHI in a successor");
Dan Gohmana43abd12008-09-29 21:55:50 +0000764 break;
Dan Gohmanf350b272008-08-23 02:25:05 +0000765 }
Dan Gohmana43abd12008-09-29 21:55:50 +0000766
767 // First try normal tablegen-generated "fast" selection.
768 if (FastIS->SelectInstruction(BI))
769 continue;
770
771 // Next, try calling the target to attempt to handle the instruction.
772 if (FastIS->TargetSelectInstruction(BI))
773 continue;
774
775 // Then handle certain instructions as single-LLVM-Instruction blocks.
776 if (isa<CallInst>(BI)) {
777 if (EnableFastISelVerbose || EnableFastISelAbort) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000778 errs() << "FastISel missed call: ";
Dan Gohmana43abd12008-09-29 21:55:50 +0000779 BI->dump();
780 }
781
Owen Anderson1d0be152009-08-13 21:58:54 +0000782 if (BI->getType() != Type::getVoidTy(*CurDAG->getContext())) {
Dan Gohmana43abd12008-09-29 21:55:50 +0000783 unsigned &R = FuncInfo->ValueMap[BI];
784 if (!R)
785 R = FuncInfo->CreateRegForValue(BI);
786 }
787
Devang Patel390f3ac2009-04-16 01:33:10 +0000788 SDL->setCurDebugLoc(FastIS->getCurDebugLoc());
Dan Gohmana43abd12008-09-29 21:55:50 +0000789 SelectBasicBlock(LLVMBB, BI, next(BI));
Dan Gohman241f4642008-10-04 00:56:36 +0000790 // If the instruction was codegen'd with multiple blocks,
791 // inform the FastISel object where to resume inserting.
792 FastIS->setCurrentBlock(BB);
Dan Gohmana43abd12008-09-29 21:55:50 +0000793 continue;
Dan Gohmanf350b272008-08-23 02:25:05 +0000794 }
Dan Gohmana43abd12008-09-29 21:55:50 +0000795
796 // Otherwise, give up on FastISel for the rest of the block.
797 // For now, be a little lenient about non-branch terminators.
798 if (!isa<TerminatorInst>(BI) || isa<BranchInst>(BI)) {
799 if (EnableFastISelVerbose || EnableFastISelAbort) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000800 errs() << "FastISel miss: ";
Dan Gohmana43abd12008-09-29 21:55:50 +0000801 BI->dump();
802 }
803 if (EnableFastISelAbort)
804 // The "fast" selector couldn't handle something and bailed.
805 // For the purpose of debugging, just abort.
Torok Edwinc23197a2009-07-14 16:55:14 +0000806 llvm_unreachable("FastISel didn't select the entire block");
Dan Gohmana43abd12008-09-29 21:55:50 +0000807 }
808 break;
Dan Gohmanf350b272008-08-23 02:25:05 +0000809 }
810 }
811
Dan Gohmand2ff6472008-09-02 20:17:56 +0000812 // Run SelectionDAG instruction selection on the remainder of the block
813 // not handled by FastISel. If FastISel is not run, this is the entire
Dan Gohman3df24e62008-09-03 23:12:08 +0000814 // block.
Devang Patel390f3ac2009-04-16 01:33:10 +0000815 if (BI != End) {
816 // If FastISel is run and it has known DebugLoc then use it.
817 if (FastIS && !FastIS->getCurDebugLoc().isUnknown())
818 SDL->setCurDebugLoc(FastIS->getCurDebugLoc());
Evan Cheng9f118502008-09-08 16:01:27 +0000819 SelectBasicBlock(LLVMBB, BI, End);
Devang Patel390f3ac2009-04-16 01:33:10 +0000820 }
Dan Gohmanf350b272008-08-23 02:25:05 +0000821
Dan Gohman7c3234c2008-08-27 23:52:12 +0000822 FinishBasicBlock();
Evan Cheng39fd6e82008-08-07 00:43:25 +0000823 }
Dan Gohmana43abd12008-09-29 21:55:50 +0000824
825 delete FastIS;
Dan Gohman0e5f1302008-07-07 23:02:41 +0000826}
827
Dan Gohmanfed90b62008-07-28 21:51:04 +0000828void
Dan Gohman7c3234c2008-08-27 23:52:12 +0000829SelectionDAGISel::FinishBasicBlock() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000830
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000831 DEBUG(errs() << "Target-post-processed machine code:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000832 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +0000833
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000834 DEBUG(errs() << "Total amount of phi nodes to update: "
835 << SDL->PHINodesToUpdate.size() << "\n");
Dan Gohman7c3234c2008-08-27 23:52:12 +0000836 DEBUG(for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i)
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000837 errs() << "Node " << i << " : ("
838 << SDL->PHINodesToUpdate[i].first
839 << ", " << SDL->PHINodesToUpdate[i].second << ")\n");
Nate Begemanf15485a2006-03-27 01:32:24 +0000840
Chris Lattnera33ef482005-03-30 01:10:47 +0000841 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +0000842 // PHI nodes in successors.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000843 if (SDL->SwitchCases.empty() &&
844 SDL->JTCases.empty() &&
845 SDL->BitTestCases.empty()) {
846 for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i) {
847 MachineInstr *PHI = SDL->PHINodesToUpdate[i].first;
Nate Begemanf15485a2006-03-27 01:32:24 +0000848 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
849 "This is not a machine PHI node that we are updating!");
Dan Gohman7c3234c2008-08-27 23:52:12 +0000850 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[i].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000851 false));
852 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begemanf15485a2006-03-27 01:32:24 +0000853 }
Dan Gohman7c3234c2008-08-27 23:52:12 +0000854 SDL->PHINodesToUpdate.clear();
Nate Begemanf15485a2006-03-27 01:32:24 +0000855 return;
Chris Lattner1c08c712005-01-07 07:47:53 +0000856 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000857
Dan Gohman7c3234c2008-08-27 23:52:12 +0000858 for (unsigned i = 0, e = SDL->BitTestCases.size(); i != e; ++i) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000859 // Lower header first, if it wasn't already lowered
Dan Gohman7c3234c2008-08-27 23:52:12 +0000860 if (!SDL->BitTestCases[i].Emitted) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000861 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000862 BB = SDL->BitTestCases[i].Parent;
863 SDL->setCurrentBasicBlock(BB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000864 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +0000865 SDL->visitBitTestHeader(SDL->BitTestCases[i]);
866 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000867 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000868 SDL->clear();
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000869 }
870
Dan Gohman7c3234c2008-08-27 23:52:12 +0000871 for (unsigned j = 0, ej = SDL->BitTestCases[i].Cases.size(); j != ej; ++j) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000872 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000873 BB = SDL->BitTestCases[i].Cases[j].ThisBB;
874 SDL->setCurrentBasicBlock(BB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000875 // Emit the code
876 if (j+1 != ej)
Dan Gohman7c3234c2008-08-27 23:52:12 +0000877 SDL->visitBitTestCase(SDL->BitTestCases[i].Cases[j+1].ThisBB,
878 SDL->BitTestCases[i].Reg,
879 SDL->BitTestCases[i].Cases[j]);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000880 else
Dan Gohman7c3234c2008-08-27 23:52:12 +0000881 SDL->visitBitTestCase(SDL->BitTestCases[i].Default,
882 SDL->BitTestCases[i].Reg,
883 SDL->BitTestCases[i].Cases[j]);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000884
885
Dan Gohman7c3234c2008-08-27 23:52:12 +0000886 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000887 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000888 SDL->clear();
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000889 }
890
891 // Update PHI Nodes
Dan Gohman7c3234c2008-08-27 23:52:12 +0000892 for (unsigned pi = 0, pe = SDL->PHINodesToUpdate.size(); pi != pe; ++pi) {
893 MachineInstr *PHI = SDL->PHINodesToUpdate[pi].first;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000894 MachineBasicBlock *PHIBB = PHI->getParent();
895 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
896 "This is not a machine PHI node that we are updating!");
897 // This is "default" BB. We have two jumps to it. From "header" BB and
898 // from last "case" BB.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000899 if (PHIBB == SDL->BitTestCases[i].Default) {
900 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000901 false));
Dan Gohman7c3234c2008-08-27 23:52:12 +0000902 PHI->addOperand(MachineOperand::CreateMBB(SDL->BitTestCases[i].Parent));
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].Cases.
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000906 back().ThisBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000907 }
908 // One of "cases" BB.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000909 for (unsigned j = 0, ej = SDL->BitTestCases[i].Cases.size();
910 j != ej; ++j) {
911 MachineBasicBlock* cBB = SDL->BitTestCases[i].Cases[j].ThisBB;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000912 if (cBB->succ_end() !=
913 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Dan Gohman7c3234c2008-08-27 23:52:12 +0000914 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000915 false));
916 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000917 }
918 }
919 }
920 }
Dan Gohman7c3234c2008-08-27 23:52:12 +0000921 SDL->BitTestCases.clear();
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000922
Nate Begeman9453eea2006-04-23 06:26:20 +0000923 // If the JumpTable record is filled in, then we need to emit a jump table.
924 // Updating the PHI nodes is tricky in this case, since we need to determine
925 // whether the PHI is a successor of the range check MBB or the jump table MBB
Dan Gohman7c3234c2008-08-27 23:52:12 +0000926 for (unsigned i = 0, e = SDL->JTCases.size(); i != e; ++i) {
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000927 // Lower header first, if it wasn't already lowered
Dan Gohman7c3234c2008-08-27 23:52:12 +0000928 if (!SDL->JTCases[i].first.Emitted) {
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000929 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000930 BB = SDL->JTCases[i].first.HeaderBB;
931 SDL->setCurrentBasicBlock(BB);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000932 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +0000933 SDL->visitJumpTableHeader(SDL->JTCases[i].second, SDL->JTCases[i].first);
934 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000935 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000936 SDL->clear();
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000937 }
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000938
Nate Begeman37efe672006-04-22 18:53:45 +0000939 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000940 BB = SDL->JTCases[i].second.MBB;
941 SDL->setCurrentBasicBlock(BB);
Nate Begeman37efe672006-04-22 18:53:45 +0000942 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +0000943 SDL->visitJumpTable(SDL->JTCases[i].second);
944 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000945 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000946 SDL->clear();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000947
Nate Begeman37efe672006-04-22 18:53:45 +0000948 // Update PHI Nodes
Dan Gohman7c3234c2008-08-27 23:52:12 +0000949 for (unsigned pi = 0, pe = SDL->PHINodesToUpdate.size(); pi != pe; ++pi) {
950 MachineInstr *PHI = SDL->PHINodesToUpdate[pi].first;
Nate Begeman37efe672006-04-22 18:53:45 +0000951 MachineBasicBlock *PHIBB = PHI->getParent();
952 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
953 "This is not a machine PHI node that we are updating!");
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000954 // "default" BB. We can go there only from header BB.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000955 if (PHIBB == SDL->JTCases[i].second.Default) {
956 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000957 false));
Dan Gohman7c3234c2008-08-27 23:52:12 +0000958 PHI->addOperand(MachineOperand::CreateMBB(SDL->JTCases[i].first.HeaderBB));
Nate Begemanf4360a42006-05-03 03:48:02 +0000959 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000960 // JT BB. Just iterate over successors here
Nate Begemanf4360a42006-05-03 03:48:02 +0000961 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Dan Gohman7c3234c2008-08-27 23:52:12 +0000962 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000963 false));
964 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begeman37efe672006-04-22 18:53:45 +0000965 }
966 }
Nate Begeman37efe672006-04-22 18:53:45 +0000967 }
Dan Gohman7c3234c2008-08-27 23:52:12 +0000968 SDL->JTCases.clear();
Nate Begeman37efe672006-04-22 18:53:45 +0000969
Chris Lattnerb2e806e2006-10-22 23:00:53 +0000970 // If the switch block involved a branch to one of the actual successors, we
971 // need to update PHI nodes in that block.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000972 for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i) {
973 MachineInstr *PHI = SDL->PHINodesToUpdate[i].first;
Chris Lattnerb2e806e2006-10-22 23:00:53 +0000974 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
975 "This is not a machine PHI node that we are updating!");
976 if (BB->isSuccessor(PHI->getParent())) {
Dan Gohman7c3234c2008-08-27 23:52:12 +0000977 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[i].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000978 false));
979 PHI->addOperand(MachineOperand::CreateMBB(BB));
Chris Lattnerb2e806e2006-10-22 23:00:53 +0000980 }
981 }
982
Nate Begemanf15485a2006-03-27 01:32:24 +0000983 // If we generated any switch lowering information, build and codegen any
984 // additional DAGs necessary.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000985 for (unsigned i = 0, e = SDL->SwitchCases.size(); i != e; ++i) {
Nate Begemanf15485a2006-03-27 01:32:24 +0000986 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000987 BB = SDL->SwitchCases[i].ThisBB;
988 SDL->setCurrentBasicBlock(BB);
Chris Lattnerd5e93c02006-09-07 01:59:34 +0000989
Nate Begemanf15485a2006-03-27 01:32:24 +0000990 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +0000991 SDL->visitSwitchCase(SDL->SwitchCases[i]);
992 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000993 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000994 SDL->clear();
Chris Lattnerd5e93c02006-09-07 01:59:34 +0000995
996 // Handle any PHI nodes in successors of this chunk, as if we were coming
997 // from the original BB before switch expansion. Note that PHI nodes can
998 // occur multiple times in PHINodesToUpdate. We have to be very careful to
999 // handle them the right number of times.
Dan Gohman7c3234c2008-08-27 23:52:12 +00001000 while ((BB = SDL->SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001001 for (MachineBasicBlock::iterator Phi = BB->begin();
1002 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
1003 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
1004 for (unsigned pn = 0; ; ++pn) {
Dan Gohman7c3234c2008-08-27 23:52:12 +00001005 assert(pn != SDL->PHINodesToUpdate.size() &&
1006 "Didn't find PHI entry!");
1007 if (SDL->PHINodesToUpdate[pn].first == Phi) {
1008 Phi->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pn].
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00001009 second, false));
Dan Gohman7c3234c2008-08-27 23:52:12 +00001010 Phi->addOperand(MachineOperand::CreateMBB(SDL->SwitchCases[i].ThisBB));
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001011 break;
1012 }
1013 }
Nate Begemanf15485a2006-03-27 01:32:24 +00001014 }
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001015
1016 // Don't process RHS if same block as LHS.
Dan Gohman7c3234c2008-08-27 23:52:12 +00001017 if (BB == SDL->SwitchCases[i].FalseBB)
1018 SDL->SwitchCases[i].FalseBB = 0;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001019
1020 // If we haven't handled the RHS, do so now. Otherwise, we're done.
Dan Gohman7c3234c2008-08-27 23:52:12 +00001021 SDL->SwitchCases[i].TrueBB = SDL->SwitchCases[i].FalseBB;
1022 SDL->SwitchCases[i].FalseBB = 0;
Nate Begemanf15485a2006-03-27 01:32:24 +00001023 }
Dan Gohman7c3234c2008-08-27 23:52:12 +00001024 assert(SDL->SwitchCases[i].TrueBB == 0 && SDL->SwitchCases[i].FalseBB == 0);
Chris Lattnera33ef482005-03-30 01:10:47 +00001025 }
Dan Gohman7c3234c2008-08-27 23:52:12 +00001026 SDL->SwitchCases.clear();
1027
1028 SDL->PHINodesToUpdate.clear();
Chris Lattner1c08c712005-01-07 07:47:53 +00001029}
Evan Chenga9c20912006-01-21 02:32:06 +00001030
Jim Laskey13ec7022006-08-01 14:21:23 +00001031
Dan Gohman0a3776d2009-02-06 18:26:51 +00001032/// Create the scheduler. If a specific scheduler was specified
1033/// via the SchedulerRegistry, use it, otherwise select the
1034/// one preferred by the target.
Dan Gohman5e843682008-07-14 18:19:29 +00001035///
Dan Gohman47ac0f02009-02-11 04:27:20 +00001036ScheduleDAGSDNodes *SelectionDAGISel::CreateScheduler() {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00001037 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Jim Laskey13ec7022006-08-01 14:21:23 +00001038
1039 if (!Ctor) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00001040 Ctor = ISHeuristic;
Jim Laskey9373beb2006-08-01 19:14:14 +00001041 RegisterScheduler::setDefault(Ctor);
Evan Cheng4ef10862006-01-23 07:01:07 +00001042 }
Jim Laskey13ec7022006-08-01 14:21:23 +00001043
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00001044 return Ctor(this, OptLevel);
Evan Chenga9c20912006-01-21 02:32:06 +00001045}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001046
Dan Gohmanfc54c552009-01-15 22:18:12 +00001047ScheduleHazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
1048 return new ScheduleHazardRecognizer();
Jim Laskey9ff542f2006-08-01 18:29:48 +00001049}
1050
Chris Lattner75548062006-10-11 03:58:02 +00001051//===----------------------------------------------------------------------===//
1052// Helper functions used by the generated instruction selector.
1053//===----------------------------------------------------------------------===//
1054// Calls to these methods are generated by tblgen.
1055
1056/// CheckAndMask - The isel is trying to match something like (and X, 255). If
1057/// the dag combiner simplified the 255, we still want to match. RHS is the
1058/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
1059/// specified in the .td file (e.g. 255).
Dan Gohman475871a2008-07-27 21:46:04 +00001060bool SelectionDAGISel::CheckAndMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohmandc9b3d02007-07-24 23:00:27 +00001061 int64_t DesiredMaskS) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001062 const APInt &ActualMask = RHS->getAPIntValue();
1063 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00001064
1065 // If the actual mask exactly matches, success!
1066 if (ActualMask == DesiredMask)
1067 return true;
1068
1069 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001070 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00001071 return false;
1072
1073 // Otherwise, the DAG Combiner may have proven that the value coming in is
1074 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001075 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001076 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
Chris Lattner75548062006-10-11 03:58:02 +00001077 return true;
1078
1079 // TODO: check to see if missing bits are just not demanded.
1080
1081 // Otherwise, this pattern doesn't match.
1082 return false;
1083}
1084
1085/// CheckOrMask - The isel is trying to match something like (or X, 255). If
1086/// the dag combiner simplified the 255, we still want to match. RHS is the
1087/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
1088/// specified in the .td file (e.g. 255).
Dan Gohman475871a2008-07-27 21:46:04 +00001089bool SelectionDAGISel::CheckOrMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001090 int64_t DesiredMaskS) const {
1091 const APInt &ActualMask = RHS->getAPIntValue();
1092 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00001093
1094 // If the actual mask exactly matches, success!
1095 if (ActualMask == DesiredMask)
1096 return true;
1097
1098 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001099 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00001100 return false;
1101
1102 // Otherwise, the DAG Combiner may have proven that the value coming in is
1103 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001104 APInt NeededMask = DesiredMask & ~ActualMask;
Chris Lattner75548062006-10-11 03:58:02 +00001105
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001106 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001107 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
Chris Lattner75548062006-10-11 03:58:02 +00001108
1109 // If all the missing bits in the or are already known to be set, match!
1110 if ((NeededMask & KnownOne) == NeededMask)
1111 return true;
1112
1113 // TODO: check to see if missing bits are just not demanded.
1114
1115 // Otherwise, this pattern doesn't match.
1116 return false;
1117}
1118
Jim Laskey9ff542f2006-08-01 18:29:48 +00001119
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001120/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
1121/// by tblgen. Others should not call it.
1122void SelectionDAGISel::
Dan Gohmanf350b272008-08-23 02:25:05 +00001123SelectInlineAsmMemoryOperands(std::vector<SDValue> &Ops) {
Dan Gohman475871a2008-07-27 21:46:04 +00001124 std::vector<SDValue> InOps;
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001125 std::swap(InOps, Ops);
1126
1127 Ops.push_back(InOps[0]); // input chain.
1128 Ops.push_back(InOps[1]); // input asm string.
1129
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001130 unsigned i = 2, e = InOps.size();
Owen Anderson825b72b2009-08-11 20:47:22 +00001131 if (InOps[e-1].getValueType() == MVT::Flag)
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001132 --e; // Don't process a flag operand if it is here.
1133
1134 while (i != e) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001135 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getZExtValue();
Dale Johannesen86b49f82008-09-24 01:07:17 +00001136 if ((Flags & 7) != 4 /*MEM*/) {
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001137 // Just skip over this operand, copying the operands verbatim.
Evan Cheng697cbbf2009-03-20 18:03:34 +00001138 Ops.insert(Ops.end(), InOps.begin()+i,
1139 InOps.begin()+i+InlineAsm::getNumOperandRegisters(Flags) + 1);
1140 i += InlineAsm::getNumOperandRegisters(Flags) + 1;
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001141 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00001142 assert(InlineAsm::getNumOperandRegisters(Flags) == 1 &&
1143 "Memory operand with multiple values?");
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001144 // Otherwise, this is a memory operand. Ask the target to select it.
Dan Gohman475871a2008-07-27 21:46:04 +00001145 std::vector<SDValue> SelOps;
Dan Gohmanf350b272008-08-23 02:25:05 +00001146 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps)) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001147 llvm_report_error("Could not match memory address. Inline asm"
1148 " failure!");
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001149 }
1150
1151 // Add this to the output node.
Owen Andersone50ed302009-08-10 22:56:29 +00001152 EVT IntPtrTy = TLI.getPointerTy();
Dale Johannesen86b49f82008-09-24 01:07:17 +00001153 Ops.push_back(CurDAG->getTargetConstant(4/*MEM*/ | (SelOps.size()<< 3),
Dan Gohmanf350b272008-08-23 02:25:05 +00001154 IntPtrTy));
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001155 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
1156 i += 2;
1157 }
1158 }
1159
1160 // Add the flag input back if present.
1161 if (e != InOps.size())
1162 Ops.push_back(InOps.back());
1163}
Devang Patel794fd752007-05-01 21:15:47 +00001164
Owen Andersone50ed302009-08-10 22:56:29 +00001165/// findFlagUse - Return use of EVT::Flag value produced by the specified
Anton Korobeynikovc1c6ef82009-05-08 18:51:58 +00001166/// SDNode.
1167///
1168static SDNode *findFlagUse(SDNode *N) {
1169 unsigned FlagResNo = N->getNumValues()-1;
1170 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
1171 SDUse &Use = I.getUse();
1172 if (Use.getResNo() == FlagResNo)
1173 return Use.getUser();
1174 }
1175 return NULL;
1176}
1177
1178/// findNonImmUse - Return true if "Use" is a non-immediate use of "Def".
1179/// This function recursively traverses up the operand chain, ignoring
1180/// certain nodes.
1181static bool findNonImmUse(SDNode *Use, SDNode* Def, SDNode *ImmedUse,
1182 SDNode *Root,
1183 SmallPtrSet<SDNode*, 16> &Visited) {
1184 if (Use->getNodeId() < Def->getNodeId() ||
1185 !Visited.insert(Use))
1186 return false;
1187
1188 for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
1189 SDNode *N = Use->getOperand(i).getNode();
1190 if (N == Def) {
1191 if (Use == ImmedUse || Use == Root)
1192 continue; // We are not looking for immediate use.
1193 assert(N != Root);
1194 return true;
1195 }
1196
1197 // Traverse up the operand chain.
1198 if (findNonImmUse(N, Def, ImmedUse, Root, Visited))
1199 return true;
1200 }
1201 return false;
1202}
1203
1204/// isNonImmUse - Start searching from Root up the DAG to check is Def can
1205/// be reached. Return true if that's the case. However, ignore direct uses
1206/// by ImmedUse (which would be U in the example illustrated in
1207/// IsLegalAndProfitableToFold) and by Root (which can happen in the store
1208/// case).
1209/// FIXME: to be really generic, we should allow direct use by any node
1210/// that is being folded. But realisticly since we only fold loads which
1211/// have one non-chain use, we only need to watch out for load/op/store
1212/// and load/op/cmp case where the root (store / cmp) may reach the load via
1213/// its chain operand.
1214static inline bool isNonImmUse(SDNode *Root, SDNode *Def, SDNode *ImmedUse) {
1215 SmallPtrSet<SDNode*, 16> Visited;
1216 return findNonImmUse(Root, Def, ImmedUse, Root, Visited);
1217}
1218
1219/// IsLegalAndProfitableToFold - Returns true if the specific operand node N of
1220/// U can be folded during instruction selection that starts at Root and
1221/// folding N is profitable.
1222bool SelectionDAGISel::IsLegalAndProfitableToFold(SDNode *N, SDNode *U,
1223 SDNode *Root) const {
1224 if (OptLevel == CodeGenOpt::None) return false;
1225
1226 // If Root use can somehow reach N through a path that that doesn't contain
1227 // U then folding N would create a cycle. e.g. In the following
1228 // diagram, Root can reach N through X. If N is folded into into Root, then
1229 // X is both a predecessor and a successor of U.
1230 //
1231 // [N*] //
1232 // ^ ^ //
1233 // / \ //
1234 // [U*] [X]? //
1235 // ^ ^ //
1236 // \ / //
1237 // \ / //
1238 // [Root*] //
1239 //
1240 // * indicates nodes to be folded together.
1241 //
1242 // If Root produces a flag, then it gets (even more) interesting. Since it
1243 // will be "glued" together with its flag use in the scheduler, we need to
1244 // check if it might reach N.
1245 //
1246 // [N*] //
1247 // ^ ^ //
1248 // / \ //
1249 // [U*] [X]? //
1250 // ^ ^ //
1251 // \ \ //
1252 // \ | //
1253 // [Root*] | //
1254 // ^ | //
1255 // f | //
1256 // | / //
1257 // [Y] / //
1258 // ^ / //
1259 // f / //
1260 // | / //
1261 // [FU] //
1262 //
1263 // If FU (flag use) indirectly reaches N (the load), and Root folds N
1264 // (call it Fold), then X is a predecessor of FU and a successor of
1265 // Fold. But since Fold and FU are flagged together, this will create
1266 // a cycle in the scheduling graph.
1267
Owen Andersone50ed302009-08-10 22:56:29 +00001268 EVT VT = Root->getValueType(Root->getNumValues()-1);
Owen Anderson825b72b2009-08-11 20:47:22 +00001269 while (VT == MVT::Flag) {
Anton Korobeynikovc1c6ef82009-05-08 18:51:58 +00001270 SDNode *FU = findFlagUse(Root);
1271 if (FU == NULL)
1272 break;
1273 Root = FU;
1274 VT = Root->getValueType(Root->getNumValues()-1);
1275 }
1276
1277 return !isNonImmUse(Root, N, U);
1278}
1279
1280
Devang Patel19974732007-05-03 01:11:54 +00001281char SelectionDAGISel::ID = 0;