blob: 3a54a9ccd917663af399ecbef3ca6fd23e12cd23 [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"
Chris Lattner75c478a2009-10-27 17:02:08 +000029#include "llvm/LLVMContext.h"
Dan Gohman78eca172008-08-19 22:33:34 +000030#include "llvm/CodeGen/FastISel.h"
Gordon Henriksen5a29c9e2008-08-17 12:56:54 +000031#include "llvm/CodeGen/GCStrategy.h"
Gordon Henriksen5eca0752008-08-17 18:44:35 +000032#include "llvm/CodeGen/GCMetadata.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000033#include "llvm/CodeGen/MachineFunction.h"
Dan Gohmanad2afc22009-07-31 18:16:33 +000034#include "llvm/CodeGen/MachineFunctionAnalysis.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000035#include "llvm/CodeGen/MachineFrameInfo.h"
36#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000037#include "llvm/CodeGen/MachineJumpTableInfo.h"
38#include "llvm/CodeGen/MachineModuleInfo.h"
39#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohmanfc54c552009-01-15 22:18:12 +000040#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000041#include "llvm/CodeGen/SchedulerRegistry.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000042#include "llvm/CodeGen/SelectionDAG.h"
Devang Patel6e7a1612009-01-09 19:11:50 +000043#include "llvm/CodeGen/DwarfWriter.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000044#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000045#include "llvm/Target/TargetData.h"
46#include "llvm/Target/TargetFrameInfo.h"
Dan Gohmane1f188f2009-10-29 22:30:23 +000047#include "llvm/Target/TargetIntrinsicInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000048#include "llvm/Target/TargetInstrInfo.h"
49#include "llvm/Target/TargetLowering.h"
50#include "llvm/Target/TargetMachine.h"
Vladimir Prus12472912006-05-23 13:43:15 +000051#include "llvm/Target/TargetOptions.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000052#include "llvm/Support/Compiler.h"
Evan Chengdb8d56b2008-06-30 20:45:06 +000053#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000054#include "llvm/Support/ErrorHandling.h"
Evan Chengdb8d56b2008-06-30 20:45:06 +000055#include "llvm/Support/MathExtras.h"
56#include "llvm/Support/Timer.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000057#include "llvm/Support/raw_ostream.h"
Jeff Cohen7e881032006-02-24 02:52:40 +000058#include <algorithm>
Chris Lattner1c08c712005-01-07 07:47:53 +000059using namespace llvm;
60
Chris Lattneread0d882008-06-17 06:09:18 +000061static cl::opt<bool>
Duncan Sands7cb07872008-10-27 08:42:46 +000062DisableLegalizeTypes("disable-legalize-types", cl::Hidden);
Dan Gohman78eca172008-08-19 22:33:34 +000063static cl::opt<bool>
Dan Gohman293d5f82008-09-09 22:06:46 +000064EnableFastISelVerbose("fast-isel-verbose", cl::Hidden,
Dan Gohmand659d502008-10-20 21:30:12 +000065 cl::desc("Enable verbose messages in the \"fast\" "
Dan Gohman293d5f82008-09-09 22:06:46 +000066 "instruction selector"));
67static cl::opt<bool>
Dan Gohman4344a5d2008-09-09 23:05:00 +000068EnableFastISelAbort("fast-isel-abort", cl::Hidden,
69 cl::desc("Enable abort calls when \"fast\" instruction fails"));
Dan Gohman8a110532008-09-05 22:59:21 +000070static cl::opt<bool>
Evan Chengdf8ed022009-11-09 06:49:37 +000071SchedLiveInCopies("schedule-livein-copies", cl::Hidden,
Dan Gohman8a110532008-09-05 22:59:21 +000072 cl::desc("Schedule copies of livein registers"),
73 cl::init(false));
Chris Lattneread0d882008-06-17 06:09:18 +000074
Chris Lattnerda8abb02005-09-01 18:44:10 +000075#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000076static cl::opt<bool>
Dan Gohman462dc7f2008-07-21 20:00:07 +000077ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden,
78 cl::desc("Pop up a window to show dags before the first "
79 "dag combine pass"));
80static cl::opt<bool>
81ViewLegalizeTypesDAGs("view-legalize-types-dags", cl::Hidden,
82 cl::desc("Pop up a window to show dags before legalize types"));
83static cl::opt<bool>
84ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
85 cl::desc("Pop up a window to show dags before legalize"));
86static cl::opt<bool>
87ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden,
88 cl::desc("Pop up a window to show dags before the second "
89 "dag combine pass"));
90static cl::opt<bool>
Duncan Sands25cf2272008-11-24 14:53:14 +000091ViewDAGCombineLT("view-dag-combine-lt-dags", cl::Hidden,
92 cl::desc("Pop up a window to show dags before the post legalize types"
93 " dag combine pass"));
94static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000095ViewISelDAGs("view-isel-dags", cl::Hidden,
96 cl::desc("Pop up a window to show isel dags as they are selected"));
97static cl::opt<bool>
98ViewSchedDAGs("view-sched-dags", cl::Hidden,
99 cl::desc("Pop up a window to show sched dags as they are processed"));
Dan Gohman3e1a7ae2007-08-28 20:32:58 +0000100static cl::opt<bool>
101ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
Chris Lattner5bab7852008-01-25 17:24:52 +0000102 cl::desc("Pop up a window to show SUnit dags after they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +0000103#else
Dan Gohman462dc7f2008-07-21 20:00:07 +0000104static const bool ViewDAGCombine1 = false,
105 ViewLegalizeTypesDAGs = false, ViewLegalizeDAGs = false,
106 ViewDAGCombine2 = false,
Duncan Sands25cf2272008-11-24 14:53:14 +0000107 ViewDAGCombineLT = false,
Dan Gohman462dc7f2008-07-21 20:00:07 +0000108 ViewISelDAGs = false, ViewSchedDAGs = false,
109 ViewSUnitDAGs = false;
Chris Lattner7944d9d2005-01-12 03:41:21 +0000110#endif
111
Jim Laskeyeb577ba2006-08-02 12:30:23 +0000112//===---------------------------------------------------------------------===//
113///
114/// RegisterScheduler class - Track the registration of instruction schedulers.
115///
116//===---------------------------------------------------------------------===//
117MachinePassRegistry RegisterScheduler::Registry;
118
119//===---------------------------------------------------------------------===//
120///
121/// ISHeuristic command line option for instruction schedulers.
122///
123//===---------------------------------------------------------------------===//
Dan Gohman844731a2008-05-13 00:00:25 +0000124static cl::opt<RegisterScheduler::FunctionPassCtor, false,
125 RegisterPassParser<RegisterScheduler> >
126ISHeuristic("pre-RA-sched",
127 cl::init(&createDefaultScheduler),
128 cl::desc("Instruction schedulers available (before register"
129 " allocation):"));
Jim Laskey13ec7022006-08-01 14:21:23 +0000130
Dan Gohman844731a2008-05-13 00:00:25 +0000131static RegisterScheduler
Dan Gohmanb8cab922008-10-14 20:25:08 +0000132defaultListDAGScheduler("default", "Best scheduler for the target",
Dan Gohman844731a2008-05-13 00:00:25 +0000133 createDefaultScheduler);
Evan Cheng4ef10862006-01-23 07:01:07 +0000134
Chris Lattner1c08c712005-01-07 07:47:53 +0000135namespace llvm {
136 //===--------------------------------------------------------------------===//
Jim Laskey9373beb2006-08-01 19:14:14 +0000137 /// createDefaultScheduler - This creates an instruction scheduler appropriate
138 /// for the target.
Dan Gohman47ac0f02009-02-11 04:27:20 +0000139 ScheduleDAGSDNodes* createDefaultScheduler(SelectionDAGISel *IS,
Bill Wendling98a366d2009-04-29 23:29:43 +0000140 CodeGenOpt::Level OptLevel) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000141 const TargetLowering &TLI = IS->getTargetLowering();
142
Bill Wendling98a366d2009-04-29 23:29:43 +0000143 if (OptLevel == CodeGenOpt::None)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000144 return createFastDAGScheduler(IS, OptLevel);
Dan Gohman9e76fea2008-11-20 03:11:19 +0000145 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000146 return createTDListDAGScheduler(IS, OptLevel);
Dan Gohman9e76fea2008-11-20 03:11:19 +0000147 assert(TLI.getSchedulingPreference() ==
148 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000149 return createBURRListDAGScheduler(IS, OptLevel);
Jim Laskey9373beb2006-08-01 19:14:14 +0000150 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000151}
152
Evan Chengff9b3732008-01-30 18:18:23 +0000153// EmitInstrWithCustomInserter - This method should be implemented by targets
Dan Gohman533297b2009-10-29 18:10:34 +0000154// that mark instructions with the 'usesCustomInserter' flag. These
Chris Lattner025c39b2005-08-26 20:54:47 +0000155// instructions are special in various ways, which require special support to
156// insert. The specified MachineInstr is created but not inserted into any
Dan Gohman533297b2009-10-29 18:10:34 +0000157// basic blocks, and this method is called to expand it into a sequence of
158// instructions, potentially also creating new basic blocks and control flow.
159// When new basic blocks are inserted and the edges from MBB to its successors
160// are modified, the method should insert pairs of <OldSucc, NewSucc> into the
161// DenseMap.
Evan Chengff9b3732008-01-30 18:18:23 +0000162MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Evan Chengfb2e7522009-09-18 21:02:19 +0000163 MachineBasicBlock *MBB,
164 DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM) const {
Torok Edwinf3689232009-07-12 20:07:01 +0000165#ifndef NDEBUG
Chris Lattner4437ae22009-08-23 07:05:07 +0000166 errs() << "If a target marks an instruction with "
Dan Gohman533297b2009-10-29 18:10:34 +0000167 "'usesCustomInserter', it must implement "
Torok Edwinf3689232009-07-12 20:07:01 +0000168 "TargetLowering::EmitInstrWithCustomInserter!";
169#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000170 llvm_unreachable(0);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000171 return 0;
Chris Lattner025c39b2005-08-26 20:54:47 +0000172}
173
Dan Gohman8a110532008-09-05 22:59:21 +0000174/// EmitLiveInCopy - Emit a copy for a live in physical register. If the
175/// physical register has only a single copy use, then coalesced the copy
176/// if possible.
177static void EmitLiveInCopy(MachineBasicBlock *MBB,
178 MachineBasicBlock::iterator &InsertPos,
179 unsigned VirtReg, unsigned PhysReg,
180 const TargetRegisterClass *RC,
181 DenseMap<MachineInstr*, unsigned> &CopyRegMap,
182 const MachineRegisterInfo &MRI,
183 const TargetRegisterInfo &TRI,
184 const TargetInstrInfo &TII) {
185 unsigned NumUses = 0;
186 MachineInstr *UseMI = NULL;
187 for (MachineRegisterInfo::use_iterator UI = MRI.use_begin(VirtReg),
188 UE = MRI.use_end(); UI != UE; ++UI) {
189 UseMI = &*UI;
190 if (++NumUses > 1)
191 break;
192 }
193
194 // If the number of uses is not one, or the use is not a move instruction,
195 // don't coalesce. Also, only coalesce away a virtual register to virtual
196 // register copy.
197 bool Coalesced = false;
Evan Cheng04ee5a12009-01-20 19:12:24 +0000198 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
Dan Gohman8a110532008-09-05 22:59:21 +0000199 if (NumUses == 1 &&
Evan Cheng04ee5a12009-01-20 19:12:24 +0000200 TII.isMoveInstr(*UseMI, SrcReg, DstReg, SrcSubReg, DstSubReg) &&
Dan Gohman8a110532008-09-05 22:59:21 +0000201 TargetRegisterInfo::isVirtualRegister(DstReg)) {
202 VirtReg = DstReg;
203 Coalesced = true;
204 }
205
206 // Now find an ideal location to insert the copy.
207 MachineBasicBlock::iterator Pos = InsertPos;
208 while (Pos != MBB->begin()) {
209 MachineInstr *PrevMI = prior(Pos);
210 DenseMap<MachineInstr*, unsigned>::iterator RI = CopyRegMap.find(PrevMI);
211 // copyRegToReg might emit multiple instructions to do a copy.
212 unsigned CopyDstReg = (RI == CopyRegMap.end()) ? 0 : RI->second;
213 if (CopyDstReg && !TRI.regsOverlap(CopyDstReg, PhysReg))
214 // This is what the BB looks like right now:
215 // r1024 = mov r0
216 // ...
217 // r1 = mov r1024
218 //
219 // We want to insert "r1025 = mov r1". Inserting this copy below the
220 // move to r1024 makes it impossible for that move to be coalesced.
221 //
222 // r1025 = mov r1
223 // r1024 = mov r0
224 // ...
225 // r1 = mov 1024
226 // r2 = mov 1025
227 break; // Woot! Found a good location.
228 --Pos;
229 }
230
David Goodwinf1daf7d2009-07-08 23:10:31 +0000231 bool Emitted = TII.copyRegToReg(*MBB, Pos, VirtReg, PhysReg, RC, RC);
232 assert(Emitted && "Unable to issue a live-in copy instruction!\n");
233 (void) Emitted;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000234
Zhongxing Xu931424a2009-10-16 05:42:28 +0000235 CopyRegMap.insert(std::make_pair(prior(Pos), VirtReg));
Dan Gohman8a110532008-09-05 22:59:21 +0000236 if (Coalesced) {
237 if (&*InsertPos == UseMI) ++InsertPos;
238 MBB->erase(UseMI);
239 }
240}
241
242/// EmitLiveInCopies - If this is the first basic block in the function,
243/// and if it has live ins that need to be copied into vregs, emit the
244/// copies into the block.
245static void EmitLiveInCopies(MachineBasicBlock *EntryMBB,
246 const MachineRegisterInfo &MRI,
247 const TargetRegisterInfo &TRI,
248 const TargetInstrInfo &TII) {
249 if (SchedLiveInCopies) {
250 // Emit the copies at a heuristically-determined location in the block.
251 DenseMap<MachineInstr*, unsigned> CopyRegMap;
252 MachineBasicBlock::iterator InsertPos = EntryMBB->begin();
253 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
254 E = MRI.livein_end(); LI != E; ++LI)
255 if (LI->second) {
256 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
257 EmitLiveInCopy(EntryMBB, InsertPos, LI->second, LI->first,
258 RC, CopyRegMap, MRI, TRI, TII);
259 }
260 } else {
261 // Emit the copies into the top of the block.
262 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
263 E = MRI.livein_end(); LI != E; ++LI)
264 if (LI->second) {
265 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
David Goodwinf1daf7d2009-07-08 23:10:31 +0000266 bool Emitted = TII.copyRegToReg(*EntryMBB, EntryMBB->begin(),
267 LI->second, LI->first, RC, RC);
268 assert(Emitted && "Unable to issue a live-in copy instruction!\n");
269 (void) Emitted;
Dan Gohman8a110532008-09-05 22:59:21 +0000270 }
271 }
272}
273
Chris Lattner7041ee32005-01-11 05:56:49 +0000274//===----------------------------------------------------------------------===//
275// SelectionDAGISel code
276//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +0000277
Bill Wendling98a366d2009-04-29 23:29:43 +0000278SelectionDAGISel::SelectionDAGISel(TargetMachine &tm, CodeGenOpt::Level OL) :
Dan Gohmanad2afc22009-07-31 18:16:33 +0000279 MachineFunctionPass(&ID), TM(tm), TLI(*tm.getTargetLowering()),
Dan Gohman7c3234c2008-08-27 23:52:12 +0000280 FuncInfo(new FunctionLoweringInfo(TLI)),
281 CurDAG(new SelectionDAG(TLI, *FuncInfo)),
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000282 SDL(new SelectionDAGLowering(*CurDAG, TLI, *FuncInfo, OL)),
Dan Gohman7c3234c2008-08-27 23:52:12 +0000283 GFI(),
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000284 OptLevel(OL),
Dan Gohman7c3234c2008-08-27 23:52:12 +0000285 DAGSize(0)
286{}
287
288SelectionDAGISel::~SelectionDAGISel() {
289 delete SDL;
290 delete CurDAG;
291 delete FuncInfo;
292}
293
Owen Andersone50ed302009-08-10 22:56:29 +0000294unsigned SelectionDAGISel::MakeReg(EVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000295 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +0000296}
297
Chris Lattner495a0b52005-08-17 06:37:43 +0000298void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyc7c3f112006-10-16 20:52:31 +0000299 AU.addRequired<AliasAnalysis>();
Dan Gohmana3477fe2009-07-31 23:36:22 +0000300 AU.addPreserved<AliasAnalysis>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000301 AU.addRequired<GCModuleInfo>();
Dan Gohmana3477fe2009-07-31 23:36:22 +0000302 AU.addPreserved<GCModuleInfo>();
Devang Patel6e7a1612009-01-09 19:11:50 +0000303 AU.addRequired<DwarfWriter>();
Dan Gohmana3477fe2009-07-31 23:36:22 +0000304 AU.addPreserved<DwarfWriter>();
Dan Gohmanad2afc22009-07-31 18:16:33 +0000305 MachineFunctionPass::getAnalysisUsage(AU);
Chris Lattner495a0b52005-08-17 06:37:43 +0000306}
Chris Lattner1c08c712005-01-07 07:47:53 +0000307
Dan Gohmanad2afc22009-07-31 18:16:33 +0000308bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
309 Function &Fn = *mf.getFunction();
310
Dan Gohman4344a5d2008-09-09 23:05:00 +0000311 // Do some sanity-checking on the command-line options.
312 assert((!EnableFastISelVerbose || EnableFastISel) &&
313 "-fast-isel-verbose requires -fast-isel");
314 assert((!EnableFastISelAbort || EnableFastISel) &&
315 "-fast-isel-abort requires -fast-isel");
316
Dan Gohman5f43f922007-08-27 16:26:13 +0000317 // Get alias analysis for load/store combining.
318 AA = &getAnalysis<AliasAnalysis>();
319
Dan Gohmanad2afc22009-07-31 18:16:33 +0000320 MF = &mf;
Dan Gohman8a110532008-09-05 22:59:21 +0000321 const TargetInstrInfo &TII = *TM.getInstrInfo();
322 const TargetRegisterInfo &TRI = *TM.getRegisterInfo();
323
Dan Gohmanf7d6cd42009-08-01 03:51:09 +0000324 if (Fn.hasGC())
325 GFI = &getAnalysis<GCModuleInfo>().getFunctionInfo(Fn);
Gordon Henriksence224772008-01-07 01:30:38 +0000326 else
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000327 GFI = 0;
Dan Gohman79ce2762009-01-15 19:20:50 +0000328 RegInfo = &MF->getRegInfo();
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000329 DEBUG(errs() << "\n\n\n=== " << Fn.getName() << "\n");
Chris Lattner1c08c712005-01-07 07:47:53 +0000330
Duncan Sands1465d612009-01-28 13:14:17 +0000331 MachineModuleInfo *MMI = getAnalysisIfAvailable<MachineModuleInfo>();
332 DwarfWriter *DW = getAnalysisIfAvailable<DwarfWriter>();
Owen Anderson5dcaceb2009-07-09 18:44:09 +0000333 CurDAG->init(*MF, MMI, DW);
Devang Patelb51d40c2009-02-03 18:46:32 +0000334 FuncInfo->set(Fn, *MF, *CurDAG, EnableFastISel);
Dan Gohman7c3234c2008-08-27 23:52:12 +0000335 SDL->init(GFI, *AA);
Chris Lattner1c08c712005-01-07 07:47:53 +0000336
Dale Johannesen1532f3d2008-04-02 00:25:04 +0000337 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
338 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
339 // Mark landing pad.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000340 FuncInfo->MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Duncan Sands9fac0b52007-06-06 10:05:18 +0000341
Dan Gohman79ce2762009-01-15 19:20:50 +0000342 SelectAllBasicBlocks(Fn, *MF, MMI, DW, TII);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000343
Dan Gohman8a110532008-09-05 22:59:21 +0000344 // If the first basic block in the function has live ins that need to be
345 // copied into vregs, emit the copies into the top of the block before
346 // emitting the code for the block.
Dan Gohman79ce2762009-01-15 19:20:50 +0000347 EmitLiveInCopies(MF->begin(), *RegInfo, TRI, TII);
Dan Gohman8a110532008-09-05 22:59:21 +0000348
Evan Chengad2070c2007-02-10 02:43:39 +0000349 // Add function live-ins to entry block live-in set.
Dan Gohman8a110532008-09-05 22:59:21 +0000350 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
351 E = RegInfo->livein_end(); I != E; ++I)
Dan Gohman79ce2762009-01-15 19:20:50 +0000352 MF->begin()->addLiveIn(I->first);
Evan Chengad2070c2007-02-10 02:43:39 +0000353
Duncan Sandsf4070822007-06-15 19:04:19 +0000354#ifndef NDEBUG
Dan Gohman7c3234c2008-08-27 23:52:12 +0000355 assert(FuncInfo->CatchInfoFound.size() == FuncInfo->CatchInfoLost.size() &&
Duncan Sandsf4070822007-06-15 19:04:19 +0000356 "Not all catch info was assigned to a landing pad!");
357#endif
358
Dan Gohman7c3234c2008-08-27 23:52:12 +0000359 FuncInfo->clear();
360
Chris Lattner1c08c712005-01-07 07:47:53 +0000361 return true;
362}
363
Duncan Sandsf4070822007-06-15 19:04:19 +0000364static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
365 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000366 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000367 if (EHSelectorInst *EHSel = dyn_cast<EHSelectorInst>(I)) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000368 // Apply the catch info to DestBB.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000369 AddCatchInfo(*EHSel, MMI, FLI.MBBMap[DestBB]);
Duncan Sandsf4070822007-06-15 19:04:19 +0000370#ifndef NDEBUG
Duncan Sands560a7372007-11-15 09:54:37 +0000371 if (!FLI.MBBMap[SrcBB]->isLandingPad())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000372 FLI.CatchInfoFound.insert(EHSel);
Duncan Sandsf4070822007-06-15 19:04:19 +0000373#endif
374 }
375}
376
Dan Gohmanf350b272008-08-23 02:25:05 +0000377void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB,
378 BasicBlock::iterator Begin,
Dan Gohmanb4afb132009-11-20 02:51:26 +0000379 BasicBlock::iterator End,
380 bool &HadTailCall) {
Dan Gohman7c3234c2008-08-27 23:52:12 +0000381 SDL->setCurrentBasicBlock(BB);
Devang Patele30e6782009-09-28 21:41:20 +0000382 MetadataContext &TheMetadata = LLVMBB->getParent()->getContext().getMetadata();
Devang Patela2148402009-09-28 21:14:55 +0000383 unsigned MDDbgKind = TheMetadata.getMDKind("dbg");
Dan Gohmanf350b272008-08-23 02:25:05 +0000384
Dan Gohman98ca4f22009-08-05 01:29:28 +0000385 // Lower all of the non-terminator instructions. If a call is emitted
386 // as a tail call, cease emitting nodes for this block.
Devang Patel123eaa72009-09-16 20:39:11 +0000387 for (BasicBlock::iterator I = Begin; I != End && !SDL->HasTailCall; ++I) {
388 if (MDDbgKind) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000389 // Update DebugLoc if debug information is attached with this
Devang Patel123eaa72009-09-16 20:39:11 +0000390 // instruction.
Devang Patel53bb5c92009-11-10 23:06:00 +0000391 if (!isa<DbgInfoIntrinsic>(I))
392 if (MDNode *Dbg = TheMetadata.getMD(MDDbgKind, I)) {
393 DILocation DILoc(Dbg);
394 DebugLoc Loc = ExtractDebugLocation(DILoc, MF->getDebugLocInfo());
395 SDL->setCurDebugLoc(Loc);
396 if (MF->getDefaultDebugLoc().isUnknown())
397 MF->setDefaultDebugLoc(Loc);
398 }
Devang Patel123eaa72009-09-16 20:39:11 +0000399 }
Dan Gohmanf350b272008-08-23 02:25:05 +0000400 if (!isa<TerminatorInst>(I))
Dan Gohman7c3234c2008-08-27 23:52:12 +0000401 SDL->visit(*I);
Devang Patel123eaa72009-09-16 20:39:11 +0000402 }
Dan Gohmanf350b272008-08-23 02:25:05 +0000403
Dan Gohman98ca4f22009-08-05 01:29:28 +0000404 if (!SDL->HasTailCall) {
405 // Ensure that all instructions which are used outside of their defining
406 // blocks are available as virtual registers. Invoke is handled elsewhere.
407 for (BasicBlock::iterator I = Begin; I != End; ++I)
408 if (!isa<PHINode>(I) && !isa<InvokeInst>(I))
409 SDL->CopyToExportRegsIfNeeded(I);
Dan Gohmanf350b272008-08-23 02:25:05 +0000410
Dan Gohman98ca4f22009-08-05 01:29:28 +0000411 // Handle PHI nodes in successor blocks.
412 if (End == LLVMBB->end()) {
413 HandlePHINodesInSuccessorBlocks(LLVMBB);
Dan Gohman3df24e62008-09-03 23:12:08 +0000414
Dan Gohman98ca4f22009-08-05 01:29:28 +0000415 // Lower the terminator after the copies are emitted.
416 SDL->visit(*LLVMBB->getTerminator());
417 }
Dan Gohman3df24e62008-09-03 23:12:08 +0000418 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000419
Chris Lattnera651cf62005-01-17 19:43:36 +0000420 // Make sure the root of the DAG is up-to-date.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000421 CurDAG->setRoot(SDL->getControlRoot());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000422
Dan Gohmanf350b272008-08-23 02:25:05 +0000423 // Final step, emit the lowered DAG as machine code.
424 CodeGenAndEmitDAG();
Dan Gohmanb4afb132009-11-20 02:51:26 +0000425 HadTailCall = SDL->HasTailCall;
Dan Gohman7c3234c2008-08-27 23:52:12 +0000426 SDL->clear();
Chris Lattner1c08c712005-01-07 07:47:53 +0000427}
428
Dan Gohmanf350b272008-08-23 02:25:05 +0000429void SelectionDAGISel::ComputeLiveOutVRegInfo() {
Chris Lattneread0d882008-06-17 06:09:18 +0000430 SmallPtrSet<SDNode*, 128> VisitedNodes;
431 SmallVector<SDNode*, 128> Worklist;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000432
Gabor Greifba36cb52008-08-28 21:40:38 +0000433 Worklist.push_back(CurDAG->getRoot().getNode());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000434
Chris Lattneread0d882008-06-17 06:09:18 +0000435 APInt Mask;
436 APInt KnownZero;
437 APInt KnownOne;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000438
Chris Lattneread0d882008-06-17 06:09:18 +0000439 while (!Worklist.empty()) {
440 SDNode *N = Worklist.back();
441 Worklist.pop_back();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000442
Chris Lattneread0d882008-06-17 06:09:18 +0000443 // If we've already seen this node, ignore it.
444 if (!VisitedNodes.insert(N))
445 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000446
Chris Lattneread0d882008-06-17 06:09:18 +0000447 // Otherwise, add all chain operands to the worklist.
448 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +0000449 if (N->getOperand(i).getValueType() == MVT::Other)
Gabor Greifba36cb52008-08-28 21:40:38 +0000450 Worklist.push_back(N->getOperand(i).getNode());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000451
Chris Lattneread0d882008-06-17 06:09:18 +0000452 // If this is a CopyToReg with a vreg dest, process it.
453 if (N->getOpcode() != ISD::CopyToReg)
454 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000455
Chris Lattneread0d882008-06-17 06:09:18 +0000456 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
457 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
458 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000459
Chris Lattneread0d882008-06-17 06:09:18 +0000460 // Ignore non-scalar or non-integer values.
Dan Gohman475871a2008-07-27 21:46:04 +0000461 SDValue Src = N->getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +0000462 EVT SrcVT = Src.getValueType();
Chris Lattneread0d882008-06-17 06:09:18 +0000463 if (!SrcVT.isInteger() || SrcVT.isVector())
464 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000465
Dan Gohmanf350b272008-08-23 02:25:05 +0000466 unsigned NumSignBits = CurDAG->ComputeNumSignBits(Src);
Chris Lattneread0d882008-06-17 06:09:18 +0000467 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
Dan Gohmanf350b272008-08-23 02:25:05 +0000468 CurDAG->ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000469
Chris Lattneread0d882008-06-17 06:09:18 +0000470 // Only install this information if it tells us something.
471 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
472 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
Dan Gohmanf7d6cd42009-08-01 03:51:09 +0000473 if (DestReg >= FuncInfo->LiveOutRegInfo.size())
474 FuncInfo->LiveOutRegInfo.resize(DestReg+1);
475 FunctionLoweringInfo::LiveOutInfo &LOI =
476 FuncInfo->LiveOutRegInfo[DestReg];
Chris Lattneread0d882008-06-17 06:09:18 +0000477 LOI.NumSignBits = NumSignBits;
Dan Gohmana80efce2009-03-27 23:55:04 +0000478 LOI.KnownOne = KnownOne;
479 LOI.KnownZero = KnownZero;
Chris Lattneread0d882008-06-17 06:09:18 +0000480 }
481 }
482}
483
Dan Gohmanf350b272008-08-23 02:25:05 +0000484void SelectionDAGISel::CodeGenAndEmitDAG() {
Dan Gohman462dc7f2008-07-21 20:00:07 +0000485 std::string GroupName;
486 if (TimePassesIsEnabled)
487 GroupName = "Instruction Selection and Scheduling";
488 std::string BlockName;
489 if (ViewDAGCombine1 || ViewLegalizeTypesDAGs || ViewLegalizeDAGs ||
Duncan Sands25cf2272008-11-24 14:53:14 +0000490 ViewDAGCombine2 || ViewDAGCombineLT || ViewISelDAGs || ViewSchedDAGs ||
491 ViewSUnitDAGs)
Dan Gohmanf7d6cd42009-08-01 03:51:09 +0000492 BlockName = MF->getFunction()->getNameStr() + ":" +
Daniel Dunbarf6ccee52009-07-24 08:24:36 +0000493 BB->getBasicBlock()->getNameStr();
Dan Gohman462dc7f2008-07-21 20:00:07 +0000494
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000495 DEBUG(errs() << "Initial selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000496 DEBUG(CurDAG->dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +0000497
Dan Gohmanf350b272008-08-23 02:25:05 +0000498 if (ViewDAGCombine1) CurDAG->viewGraph("dag-combine1 input for " + BlockName);
Dan Gohman417e11b2007-10-08 15:12:17 +0000499
Chris Lattneraf21d552005-10-10 16:47:10 +0000500 // Run the DAG combiner in pre-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +0000501 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000502 NamedRegionTimer T("DAG Combining 1", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000503 CurDAG->Combine(Unrestricted, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000504 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000505 CurDAG->Combine(Unrestricted, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000506 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000507
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000508 DEBUG(errs() << "Optimized lowered selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000509 DEBUG(CurDAG->dump());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000510
Chris Lattner1c08c712005-01-07 07:47:53 +0000511 // Second step, hack on the DAG until it only uses operations and types that
512 // the target supports.
Duncan Sands7cb07872008-10-27 08:42:46 +0000513 if (!DisableLegalizeTypes) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000514 if (ViewLegalizeTypesDAGs) CurDAG->viewGraph("legalize-types input for " +
515 BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000516
Duncan Sands25cf2272008-11-24 14:53:14 +0000517 bool Changed;
Dan Gohman462dc7f2008-07-21 20:00:07 +0000518 if (TimePassesIsEnabled) {
519 NamedRegionTimer T("Type Legalization", GroupName);
Duncan Sands25cf2272008-11-24 14:53:14 +0000520 Changed = CurDAG->LegalizeTypes();
Dan Gohman462dc7f2008-07-21 20:00:07 +0000521 } else {
Duncan Sands25cf2272008-11-24 14:53:14 +0000522 Changed = CurDAG->LegalizeTypes();
Dan Gohman462dc7f2008-07-21 20:00:07 +0000523 }
524
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000525 DEBUG(errs() << "Type-legalized selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000526 DEBUG(CurDAG->dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +0000527
Duncan Sands25cf2272008-11-24 14:53:14 +0000528 if (Changed) {
529 if (ViewDAGCombineLT)
530 CurDAG->viewGraph("dag-combine-lt input for " + BlockName);
531
532 // Run the DAG combiner in post-type-legalize mode.
533 if (TimePassesIsEnabled) {
534 NamedRegionTimer T("DAG Combining after legalize types", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000535 CurDAG->Combine(NoIllegalTypes, *AA, OptLevel);
Duncan Sands25cf2272008-11-24 14:53:14 +0000536 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000537 CurDAG->Combine(NoIllegalTypes, *AA, OptLevel);
Duncan Sands25cf2272008-11-24 14:53:14 +0000538 }
539
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000540 DEBUG(errs() << "Optimized type-legalized selection DAG:\n");
Duncan Sands25cf2272008-11-24 14:53:14 +0000541 DEBUG(CurDAG->dump());
542 }
Eli Friedman5c22c802009-05-23 12:35:30 +0000543
544 if (TimePassesIsEnabled) {
545 NamedRegionTimer T("Vector Legalization", GroupName);
546 Changed = CurDAG->LegalizeVectors();
547 } else {
548 Changed = CurDAG->LegalizeVectors();
549 }
550
551 if (Changed) {
552 if (TimePassesIsEnabled) {
553 NamedRegionTimer T("Type Legalization 2", GroupName);
554 Changed = CurDAG->LegalizeTypes();
555 } else {
556 Changed = CurDAG->LegalizeTypes();
557 }
558
559 if (ViewDAGCombineLT)
560 CurDAG->viewGraph("dag-combine-lv input for " + BlockName);
561
562 // Run the DAG combiner in post-type-legalize mode.
563 if (TimePassesIsEnabled) {
564 NamedRegionTimer T("DAG Combining after legalize vectors", GroupName);
565 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
566 } else {
567 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
568 }
569
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000570 DEBUG(errs() << "Optimized vector-legalized selection DAG:\n");
Eli Friedman5c22c802009-05-23 12:35:30 +0000571 DEBUG(CurDAG->dump());
572 }
Chris Lattner70587ea2008-07-10 23:37:50 +0000573 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000574
Dan Gohmanf350b272008-08-23 02:25:05 +0000575 if (ViewLegalizeDAGs) CurDAG->viewGraph("legalize input for " + BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000576
Evan Chengebffb662008-07-01 17:59:20 +0000577 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000578 NamedRegionTimer T("DAG Legalization", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000579 CurDAG->Legalize(DisableLegalizeTypes, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000580 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000581 CurDAG->Legalize(DisableLegalizeTypes, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000582 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000583
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000584 DEBUG(errs() << "Legalized selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000585 DEBUG(CurDAG->dump());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000586
Dan Gohmanf350b272008-08-23 02:25:05 +0000587 if (ViewDAGCombine2) CurDAG->viewGraph("dag-combine2 input for " + BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000588
Chris Lattneraf21d552005-10-10 16:47:10 +0000589 // Run the DAG combiner in post-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +0000590 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000591 NamedRegionTimer T("DAG Combining 2", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000592 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000593 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000594 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000595 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000596
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000597 DEBUG(errs() << "Optimized legalized selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000598 DEBUG(CurDAG->dump());
Dan Gohman417e11b2007-10-08 15:12:17 +0000599
Dan Gohmanf350b272008-08-23 02:25:05 +0000600 if (ViewISelDAGs) CurDAG->viewGraph("isel input for " + BlockName);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000601
Bill Wendling98a366d2009-04-29 23:29:43 +0000602 if (OptLevel != CodeGenOpt::None)
Dan Gohmanf350b272008-08-23 02:25:05 +0000603 ComputeLiveOutVRegInfo();
Evan Cheng552c4a82006-04-28 02:09:19 +0000604
Chris Lattnera33ef482005-03-30 01:10:47 +0000605 // Third, instruction select all of the operations to machine code, adding the
606 // code to the MachineBasicBlock.
Evan Chengebffb662008-07-01 17:59:20 +0000607 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000608 NamedRegionTimer T("Instruction Selection", GroupName);
Dan Gohmanf350b272008-08-23 02:25:05 +0000609 InstructionSelect();
Evan Chengebffb662008-07-01 17:59:20 +0000610 } else {
Dan Gohmanf350b272008-08-23 02:25:05 +0000611 InstructionSelect();
Evan Chengebffb662008-07-01 17:59:20 +0000612 }
Evan Chengdb8d56b2008-06-30 20:45:06 +0000613
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000614 DEBUG(errs() << "Selected selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000615 DEBUG(CurDAG->dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +0000616
Dan Gohmanf350b272008-08-23 02:25:05 +0000617 if (ViewSchedDAGs) CurDAG->viewGraph("scheduler input for " + BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000618
Dan Gohman5e843682008-07-14 18:19:29 +0000619 // Schedule machine code.
Dan Gohman47ac0f02009-02-11 04:27:20 +0000620 ScheduleDAGSDNodes *Scheduler = CreateScheduler();
Dan Gohman5e843682008-07-14 18:19:29 +0000621 if (TimePassesIsEnabled) {
622 NamedRegionTimer T("Instruction Scheduling", GroupName);
Dan Gohman47ac0f02009-02-11 04:27:20 +0000623 Scheduler->Run(CurDAG, BB, BB->end());
Dan Gohman5e843682008-07-14 18:19:29 +0000624 } else {
Dan Gohman47ac0f02009-02-11 04:27:20 +0000625 Scheduler->Run(CurDAG, BB, BB->end());
Dan Gohman5e843682008-07-14 18:19:29 +0000626 }
627
Dan Gohman462dc7f2008-07-21 20:00:07 +0000628 if (ViewSUnitDAGs) Scheduler->viewGraph();
629
Daniel Dunbara279bc32009-09-20 02:20:51 +0000630 // Emit machine code to BB. This can change 'BB' to the last block being
Evan Chengdb8d56b2008-06-30 20:45:06 +0000631 // inserted into.
Evan Chengebffb662008-07-01 17:59:20 +0000632 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000633 NamedRegionTimer T("Instruction Creation", GroupName);
Evan Chengfb2e7522009-09-18 21:02:19 +0000634 BB = Scheduler->EmitSchedule(&SDL->EdgeMapping);
Evan Chengebffb662008-07-01 17:59:20 +0000635 } else {
Evan Chengfb2e7522009-09-18 21:02:19 +0000636 BB = Scheduler->EmitSchedule(&SDL->EdgeMapping);
Dan Gohman5e843682008-07-14 18:19:29 +0000637 }
638
639 // Free the scheduler state.
640 if (TimePassesIsEnabled) {
641 NamedRegionTimer T("Instruction Scheduling Cleanup", GroupName);
642 delete Scheduler;
643 } else {
644 delete Scheduler;
Evan Chengebffb662008-07-01 17:59:20 +0000645 }
Evan Chengdb8d56b2008-06-30 20:45:06 +0000646
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000647 DEBUG(errs() << "Selected machine code:\n");
Chris Lattner1c08c712005-01-07 07:47:53 +0000648 DEBUG(BB->dump());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000649}
Chris Lattner1c08c712005-01-07 07:47:53 +0000650
Dan Gohman79ce2762009-01-15 19:20:50 +0000651void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn,
652 MachineFunction &MF,
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000653 MachineModuleInfo *MMI,
Devang Patel83489bb2009-01-13 00:35:13 +0000654 DwarfWriter *DW,
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000655 const TargetInstrInfo &TII) {
Dan Gohmana43abd12008-09-29 21:55:50 +0000656 // Initialize the Fast-ISel state, if needed.
657 FastISel *FastIS = 0;
658 if (EnableFastISel)
Dan Gohman79ce2762009-01-15 19:20:50 +0000659 FastIS = TLI.createFastISel(MF, MMI, DW,
Dan Gohmana43abd12008-09-29 21:55:50 +0000660 FuncInfo->ValueMap,
661 FuncInfo->MBBMap,
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000662 FuncInfo->StaticAllocaMap
663#ifndef NDEBUG
664 , FuncInfo->CatchInfoLost
665#endif
666 );
Dan Gohmana43abd12008-09-29 21:55:50 +0000667
Devang Patele30e6782009-09-28 21:41:20 +0000668 MetadataContext &TheMetadata = Fn.getContext().getMetadata();
Devang Patela2148402009-09-28 21:14:55 +0000669 unsigned MDDbgKind = TheMetadata.getMDKind("dbg");
Devang Patel123eaa72009-09-16 20:39:11 +0000670
Dan Gohmana43abd12008-09-29 21:55:50 +0000671 // Iterate over all basic blocks in the function.
Evan Cheng39fd6e82008-08-07 00:43:25 +0000672 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) {
673 BasicBlock *LLVMBB = &*I;
Dan Gohman7c3234c2008-08-27 23:52:12 +0000674 BB = FuncInfo->MBBMap[LLVMBB];
Dan Gohmanf350b272008-08-23 02:25:05 +0000675
Dan Gohman3df24e62008-09-03 23:12:08 +0000676 BasicBlock::iterator const Begin = LLVMBB->begin();
677 BasicBlock::iterator const End = LLVMBB->end();
Evan Cheng9f118502008-09-08 16:01:27 +0000678 BasicBlock::iterator BI = Begin;
Dan Gohman5edd3612008-08-28 20:28:56 +0000679
680 // Lower any arguments needed in this block if this is the entry block.
Dan Gohman33134c42008-09-25 17:05:24 +0000681 bool SuppressFastISel = false;
682 if (LLVMBB == &Fn.getEntryBlock()) {
Dan Gohman5edd3612008-08-28 20:28:56 +0000683 LowerArguments(LLVMBB);
Dan Gohmanf350b272008-08-23 02:25:05 +0000684
Dan Gohman33134c42008-09-25 17:05:24 +0000685 // If any of the arguments has the byval attribute, forgo
686 // fast-isel in the entry block.
Dan Gohmana43abd12008-09-29 21:55:50 +0000687 if (FastIS) {
Dan Gohman33134c42008-09-25 17:05:24 +0000688 unsigned j = 1;
689 for (Function::arg_iterator I = Fn.arg_begin(), E = Fn.arg_end();
690 I != E; ++I, ++j)
Devang Patel05988662008-09-25 21:00:45 +0000691 if (Fn.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohman77ca41e2008-09-25 17:21:42 +0000692 if (EnableFastISelVerbose || EnableFastISelAbort)
Chris Lattner4437ae22009-08-23 07:05:07 +0000693 errs() << "FastISel skips entry block due to byval argument\n";
Dan Gohman33134c42008-09-25 17:05:24 +0000694 SuppressFastISel = true;
695 break;
696 }
697 }
698 }
699
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000700 if (MMI && BB->isLandingPad()) {
701 // Add a label to mark the beginning of the landing pad. Deletion of the
702 // landing pad can thus be detected via the MachineModuleInfo.
703 unsigned LabelID = MMI->addLandingPad(BB);
704
705 const TargetInstrDesc &II = TII.get(TargetInstrInfo::EH_LABEL);
Bill Wendlingb2884872009-02-03 01:55:42 +0000706 BuildMI(BB, SDL->getCurDebugLoc(), II).addImm(LabelID);
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000707
708 // Mark exception register as live in.
709 unsigned Reg = TLI.getExceptionAddressRegister();
710 if (Reg) BB->addLiveIn(Reg);
711
712 // Mark exception selector register as live in.
713 Reg = TLI.getExceptionSelectorRegister();
714 if (Reg) BB->addLiveIn(Reg);
715
716 // FIXME: Hack around an exception handling flaw (PR1508): the personality
717 // function and list of typeids logically belong to the invoke (or, if you
718 // like, the basic block containing the invoke), and need to be associated
719 // with it in the dwarf exception handling tables. Currently however the
720 // information is provided by an intrinsic (eh.selector) that can be moved
721 // to unexpected places by the optimizers: if the unwind edge is critical,
722 // then breaking it can result in the intrinsics being in the successor of
723 // the landing pad, not the landing pad itself. This results in exceptions
724 // not being caught because no typeids are associated with the invoke.
725 // This may not be the only way things can go wrong, but it is the only way
726 // we try to work around for the moment.
727 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
728
729 if (Br && Br->isUnconditional()) { // Critical edge?
730 BasicBlock::iterator I, E;
731 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
732 if (isa<EHSelectorInst>(I))
733 break;
734
735 if (I == E)
736 // No catch info found - try to extract some from the successor.
737 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, *FuncInfo);
738 }
739 }
740
Dan Gohmanf350b272008-08-23 02:25:05 +0000741 // Before doing SelectionDAG ISel, see if FastISel has been requested.
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000742 if (FastIS && !SuppressFastISel) {
Dan Gohmana43abd12008-09-29 21:55:50 +0000743 // Emit code for any incoming arguments. This must happen before
744 // beginning FastISel on the entry block.
745 if (LLVMBB == &Fn.getEntryBlock()) {
746 CurDAG->setRoot(SDL->getControlRoot());
747 CodeGenAndEmitDAG();
748 SDL->clear();
749 }
Dan Gohman241f4642008-10-04 00:56:36 +0000750 FastIS->startNewBlock(BB);
Dan Gohmana43abd12008-09-29 21:55:50 +0000751 // Do FastISel on as many instructions as possible.
752 for (; BI != End; ++BI) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000753 if (MDDbgKind) {
754 // Update DebugLoc if debug information is attached with this
755 // instruction.
Devang Patel53bb5c92009-11-10 23:06:00 +0000756 if (!isa<DbgInfoIntrinsic>(BI))
757 if (MDNode *Dbg = TheMetadata.getMD(MDDbgKind, BI)) {
758 DILocation DILoc(Dbg);
759 DebugLoc Loc = ExtractDebugLocation(DILoc,
760 MF.getDebugLocInfo());
761 FastIS->setCurDebugLoc(Loc);
762 if (MF.getDefaultDebugLoc().isUnknown())
763 MF.setDefaultDebugLoc(Loc);
764 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000765 }
Devang Patel123eaa72009-09-16 20:39:11 +0000766
Dan Gohmana43abd12008-09-29 21:55:50 +0000767 // Just before the terminator instruction, insert instructions to
768 // feed PHI nodes in successor blocks.
769 if (isa<TerminatorInst>(BI))
770 if (!HandlePHINodesInSuccessorBlocksFast(LLVMBB, FastIS)) {
Dan Gohman4344a5d2008-09-09 23:05:00 +0000771 if (EnableFastISelVerbose || EnableFastISelAbort) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000772 errs() << "FastISel miss: ";
Dan Gohman293d5f82008-09-09 22:06:46 +0000773 BI->dump();
774 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000775 assert(!EnableFastISelAbort &&
Torok Edwinf3689232009-07-12 20:07:01 +0000776 "FastISel didn't handle a PHI in a successor");
Dan Gohmana43abd12008-09-29 21:55:50 +0000777 break;
Dan Gohmanf350b272008-08-23 02:25:05 +0000778 }
Dan Gohmana43abd12008-09-29 21:55:50 +0000779
780 // First try normal tablegen-generated "fast" selection.
781 if (FastIS->SelectInstruction(BI))
782 continue;
783
784 // Next, try calling the target to attempt to handle the instruction.
785 if (FastIS->TargetSelectInstruction(BI))
786 continue;
787
788 // Then handle certain instructions as single-LLVM-Instruction blocks.
789 if (isa<CallInst>(BI)) {
790 if (EnableFastISelVerbose || EnableFastISelAbort) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000791 errs() << "FastISel missed call: ";
Dan Gohmana43abd12008-09-29 21:55:50 +0000792 BI->dump();
793 }
794
Owen Anderson1d0be152009-08-13 21:58:54 +0000795 if (BI->getType() != Type::getVoidTy(*CurDAG->getContext())) {
Dan Gohmana43abd12008-09-29 21:55:50 +0000796 unsigned &R = FuncInfo->ValueMap[BI];
797 if (!R)
798 R = FuncInfo->CreateRegForValue(BI);
799 }
800
Devang Patel390f3ac2009-04-16 01:33:10 +0000801 SDL->setCurDebugLoc(FastIS->getCurDebugLoc());
Dan Gohmanb4afb132009-11-20 02:51:26 +0000802
803 bool HadTailCall = false;
804 SelectBasicBlock(LLVMBB, BI, next(BI), HadTailCall);
805
806 // If the call was emitted as a tail call, we're done with the block.
807 if (HadTailCall) {
808 BI = End;
809 break;
810 }
811
Dan Gohman241f4642008-10-04 00:56:36 +0000812 // If the instruction was codegen'd with multiple blocks,
813 // inform the FastISel object where to resume inserting.
814 FastIS->setCurrentBlock(BB);
Dan Gohmana43abd12008-09-29 21:55:50 +0000815 continue;
Dan Gohmanf350b272008-08-23 02:25:05 +0000816 }
Dan Gohmana43abd12008-09-29 21:55:50 +0000817
818 // Otherwise, give up on FastISel for the rest of the block.
819 // For now, be a little lenient about non-branch terminators.
820 if (!isa<TerminatorInst>(BI) || isa<BranchInst>(BI)) {
821 if (EnableFastISelVerbose || EnableFastISelAbort) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000822 errs() << "FastISel miss: ";
Dan Gohmana43abd12008-09-29 21:55:50 +0000823 BI->dump();
824 }
825 if (EnableFastISelAbort)
826 // The "fast" selector couldn't handle something and bailed.
827 // For the purpose of debugging, just abort.
Torok Edwinc23197a2009-07-14 16:55:14 +0000828 llvm_unreachable("FastISel didn't select the entire block");
Dan Gohmana43abd12008-09-29 21:55:50 +0000829 }
830 break;
Dan Gohmanf350b272008-08-23 02:25:05 +0000831 }
832 }
833
Dan Gohmand2ff6472008-09-02 20:17:56 +0000834 // Run SelectionDAG instruction selection on the remainder of the block
835 // not handled by FastISel. If FastISel is not run, this is the entire
Dan Gohman3df24e62008-09-03 23:12:08 +0000836 // block.
Devang Patel390f3ac2009-04-16 01:33:10 +0000837 if (BI != End) {
838 // If FastISel is run and it has known DebugLoc then use it.
839 if (FastIS && !FastIS->getCurDebugLoc().isUnknown())
840 SDL->setCurDebugLoc(FastIS->getCurDebugLoc());
Dan Gohmanb4afb132009-11-20 02:51:26 +0000841 bool HadTailCall;
842 SelectBasicBlock(LLVMBB, BI, End, HadTailCall);
Devang Patel390f3ac2009-04-16 01:33:10 +0000843 }
Dan Gohmanf350b272008-08-23 02:25:05 +0000844
Dan Gohman7c3234c2008-08-27 23:52:12 +0000845 FinishBasicBlock();
Evan Cheng39fd6e82008-08-07 00:43:25 +0000846 }
Dan Gohmana43abd12008-09-29 21:55:50 +0000847
848 delete FastIS;
Dan Gohman0e5f1302008-07-07 23:02:41 +0000849}
850
Dan Gohmanfed90b62008-07-28 21:51:04 +0000851void
Dan Gohman7c3234c2008-08-27 23:52:12 +0000852SelectionDAGISel::FinishBasicBlock() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000853
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000854 DEBUG(errs() << "Target-post-processed machine code:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000855 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +0000856
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000857 DEBUG(errs() << "Total amount of phi nodes to update: "
858 << SDL->PHINodesToUpdate.size() << "\n");
Dan Gohman7c3234c2008-08-27 23:52:12 +0000859 DEBUG(for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i)
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000860 errs() << "Node " << i << " : ("
861 << SDL->PHINodesToUpdate[i].first
862 << ", " << SDL->PHINodesToUpdate[i].second << ")\n");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000863
Chris Lattnera33ef482005-03-30 01:10:47 +0000864 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +0000865 // PHI nodes in successors.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000866 if (SDL->SwitchCases.empty() &&
867 SDL->JTCases.empty() &&
868 SDL->BitTestCases.empty()) {
869 for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i) {
870 MachineInstr *PHI = SDL->PHINodesToUpdate[i].first;
Nate Begemanf15485a2006-03-27 01:32:24 +0000871 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
872 "This is not a machine PHI node that we are updating!");
Dan Gohman7c3234c2008-08-27 23:52:12 +0000873 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[i].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000874 false));
875 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begemanf15485a2006-03-27 01:32:24 +0000876 }
Dan Gohman7c3234c2008-08-27 23:52:12 +0000877 SDL->PHINodesToUpdate.clear();
Nate Begemanf15485a2006-03-27 01:32:24 +0000878 return;
Chris Lattner1c08c712005-01-07 07:47:53 +0000879 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000880
Dan Gohman7c3234c2008-08-27 23:52:12 +0000881 for (unsigned i = 0, e = SDL->BitTestCases.size(); i != e; ++i) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000882 // Lower header first, if it wasn't already lowered
Dan Gohman7c3234c2008-08-27 23:52:12 +0000883 if (!SDL->BitTestCases[i].Emitted) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000884 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000885 BB = SDL->BitTestCases[i].Parent;
886 SDL->setCurrentBasicBlock(BB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000887 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +0000888 SDL->visitBitTestHeader(SDL->BitTestCases[i]);
889 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000890 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000891 SDL->clear();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000892 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000893
Dan Gohman7c3234c2008-08-27 23:52:12 +0000894 for (unsigned j = 0, ej = SDL->BitTestCases[i].Cases.size(); j != ej; ++j) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000895 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000896 BB = SDL->BitTestCases[i].Cases[j].ThisBB;
897 SDL->setCurrentBasicBlock(BB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000898 // Emit the code
899 if (j+1 != ej)
Dan Gohman7c3234c2008-08-27 23:52:12 +0000900 SDL->visitBitTestCase(SDL->BitTestCases[i].Cases[j+1].ThisBB,
901 SDL->BitTestCases[i].Reg,
902 SDL->BitTestCases[i].Cases[j]);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000903 else
Dan Gohman7c3234c2008-08-27 23:52:12 +0000904 SDL->visitBitTestCase(SDL->BitTestCases[i].Default,
905 SDL->BitTestCases[i].Reg,
906 SDL->BitTestCases[i].Cases[j]);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000907
908
Dan Gohman7c3234c2008-08-27 23:52:12 +0000909 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000910 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000911 SDL->clear();
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000912 }
913
914 // Update PHI Nodes
Dan Gohman7c3234c2008-08-27 23:52:12 +0000915 for (unsigned pi = 0, pe = SDL->PHINodesToUpdate.size(); pi != pe; ++pi) {
916 MachineInstr *PHI = SDL->PHINodesToUpdate[pi].first;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000917 MachineBasicBlock *PHIBB = PHI->getParent();
918 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
919 "This is not a machine PHI node that we are updating!");
920 // This is "default" BB. We have two jumps to it. From "header" BB and
921 // from last "case" BB.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000922 if (PHIBB == SDL->BitTestCases[i].Default) {
923 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000924 false));
Dan Gohman7c3234c2008-08-27 23:52:12 +0000925 PHI->addOperand(MachineOperand::CreateMBB(SDL->BitTestCases[i].Parent));
926 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000927 false));
Dan Gohman7c3234c2008-08-27 23:52:12 +0000928 PHI->addOperand(MachineOperand::CreateMBB(SDL->BitTestCases[i].Cases.
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000929 back().ThisBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000930 }
931 // One of "cases" BB.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000932 for (unsigned j = 0, ej = SDL->BitTestCases[i].Cases.size();
933 j != ej; ++j) {
934 MachineBasicBlock* cBB = SDL->BitTestCases[i].Cases[j].ThisBB;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000935 if (cBB->succ_end() !=
936 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Dan Gohman7c3234c2008-08-27 23:52:12 +0000937 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000938 false));
939 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000940 }
941 }
942 }
943 }
Dan Gohman7c3234c2008-08-27 23:52:12 +0000944 SDL->BitTestCases.clear();
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000945
Nate Begeman9453eea2006-04-23 06:26:20 +0000946 // If the JumpTable record is filled in, then we need to emit a jump table.
947 // Updating the PHI nodes is tricky in this case, since we need to determine
948 // whether the PHI is a successor of the range check MBB or the jump table MBB
Dan Gohman7c3234c2008-08-27 23:52:12 +0000949 for (unsigned i = 0, e = SDL->JTCases.size(); i != e; ++i) {
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000950 // Lower header first, if it wasn't already lowered
Dan Gohman7c3234c2008-08-27 23:52:12 +0000951 if (!SDL->JTCases[i].first.Emitted) {
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000952 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000953 BB = SDL->JTCases[i].first.HeaderBB;
954 SDL->setCurrentBasicBlock(BB);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000955 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +0000956 SDL->visitJumpTableHeader(SDL->JTCases[i].second, SDL->JTCases[i].first);
957 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000958 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000959 SDL->clear();
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000960 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000961
Nate Begeman37efe672006-04-22 18:53:45 +0000962 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000963 BB = SDL->JTCases[i].second.MBB;
964 SDL->setCurrentBasicBlock(BB);
Nate Begeman37efe672006-04-22 18:53:45 +0000965 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +0000966 SDL->visitJumpTable(SDL->JTCases[i].second);
967 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000968 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000969 SDL->clear();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000970
Nate Begeman37efe672006-04-22 18:53:45 +0000971 // Update PHI Nodes
Dan Gohman7c3234c2008-08-27 23:52:12 +0000972 for (unsigned pi = 0, pe = SDL->PHINodesToUpdate.size(); pi != pe; ++pi) {
973 MachineInstr *PHI = SDL->PHINodesToUpdate[pi].first;
Nate Begeman37efe672006-04-22 18:53:45 +0000974 MachineBasicBlock *PHIBB = PHI->getParent();
975 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
976 "This is not a machine PHI node that we are updating!");
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000977 // "default" BB. We can go there only from header BB.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000978 if (PHIBB == SDL->JTCases[i].second.Default) {
Evan Chengce319102009-09-19 09:51:03 +0000979 PHI->addOperand
980 (MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second, false));
981 PHI->addOperand
982 (MachineOperand::CreateMBB(SDL->JTCases[i].first.HeaderBB));
Nate Begemanf4360a42006-05-03 03:48:02 +0000983 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000984 // JT BB. Just iterate over successors here
Nate Begemanf4360a42006-05-03 03:48:02 +0000985 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Evan Chengce319102009-09-19 09:51:03 +0000986 PHI->addOperand
987 (MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second, false));
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000988 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begeman37efe672006-04-22 18:53:45 +0000989 }
990 }
Nate Begeman37efe672006-04-22 18:53:45 +0000991 }
Dan Gohman7c3234c2008-08-27 23:52:12 +0000992 SDL->JTCases.clear();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000993
Chris Lattnerb2e806e2006-10-22 23:00:53 +0000994 // If the switch block involved a branch to one of the actual successors, we
995 // need to update PHI nodes in that block.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000996 for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i) {
997 MachineInstr *PHI = SDL->PHINodesToUpdate[i].first;
Chris Lattnerb2e806e2006-10-22 23:00:53 +0000998 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
999 "This is not a machine PHI node that we are updating!");
1000 if (BB->isSuccessor(PHI->getParent())) {
Dan Gohman7c3234c2008-08-27 23:52:12 +00001001 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[i].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00001002 false));
1003 PHI->addOperand(MachineOperand::CreateMBB(BB));
Chris Lattnerb2e806e2006-10-22 23:00:53 +00001004 }
1005 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001006
Nate Begemanf15485a2006-03-27 01:32:24 +00001007 // If we generated any switch lowering information, build and codegen any
1008 // additional DAGs necessary.
Dan Gohman7c3234c2008-08-27 23:52:12 +00001009 for (unsigned i = 0, e = SDL->SwitchCases.size(); i != e; ++i) {
Nate Begemanf15485a2006-03-27 01:32:24 +00001010 // Set the current basic block to the mbb we wish to insert the code into
Evan Chengfb2e7522009-09-18 21:02:19 +00001011 MachineBasicBlock *ThisBB = BB = SDL->SwitchCases[i].ThisBB;
Dan Gohman7c3234c2008-08-27 23:52:12 +00001012 SDL->setCurrentBasicBlock(BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001013
Nate Begemanf15485a2006-03-27 01:32:24 +00001014 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +00001015 SDL->visitSwitchCase(SDL->SwitchCases[i]);
1016 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +00001017 CodeGenAndEmitDAG();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001018
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001019 // Handle any PHI nodes in successors of this chunk, as if we were coming
1020 // from the original BB before switch expansion. Note that PHI nodes can
1021 // occur multiple times in PHINodesToUpdate. We have to be very careful to
1022 // handle them the right number of times.
Dan Gohman7c3234c2008-08-27 23:52:12 +00001023 while ((BB = SDL->SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
Evan Chengfb2e7522009-09-18 21:02:19 +00001024 // If new BB's are created during scheduling, the edges may have been
Evan Chengce319102009-09-19 09:51:03 +00001025 // updated. That is, the edge from ThisBB to BB may have been split and
1026 // BB's predecessor is now another block.
Evan Chengfb2e7522009-09-18 21:02:19 +00001027 DenseMap<MachineBasicBlock*, MachineBasicBlock*>::iterator EI =
1028 SDL->EdgeMapping.find(BB);
1029 if (EI != SDL->EdgeMapping.end())
1030 ThisBB = EI->second;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001031 for (MachineBasicBlock::iterator Phi = BB->begin();
1032 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
1033 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
1034 for (unsigned pn = 0; ; ++pn) {
Dan Gohman7c3234c2008-08-27 23:52:12 +00001035 assert(pn != SDL->PHINodesToUpdate.size() &&
1036 "Didn't find PHI entry!");
Evan Cheng8be58a12009-09-18 08:26:06 +00001037 if (SDL->PHINodesToUpdate[pn].first == Phi) {
1038 Phi->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pn].
1039 second, false));
Evan Chengfb2e7522009-09-18 21:02:19 +00001040 Phi->addOperand(MachineOperand::CreateMBB(ThisBB));
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001041 break;
Evan Cheng8be58a12009-09-18 08:26:06 +00001042 }
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001043 }
Nate Begemanf15485a2006-03-27 01:32:24 +00001044 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001045
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001046 // Don't process RHS if same block as LHS.
Dan Gohman7c3234c2008-08-27 23:52:12 +00001047 if (BB == SDL->SwitchCases[i].FalseBB)
1048 SDL->SwitchCases[i].FalseBB = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001049
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001050 // If we haven't handled the RHS, do so now. Otherwise, we're done.
Dan Gohman7c3234c2008-08-27 23:52:12 +00001051 SDL->SwitchCases[i].TrueBB = SDL->SwitchCases[i].FalseBB;
1052 SDL->SwitchCases[i].FalseBB = 0;
Nate Begemanf15485a2006-03-27 01:32:24 +00001053 }
Dan Gohman7c3234c2008-08-27 23:52:12 +00001054 assert(SDL->SwitchCases[i].TrueBB == 0 && SDL->SwitchCases[i].FalseBB == 0);
Evan Chengfb2e7522009-09-18 21:02:19 +00001055 SDL->clear();
Chris Lattnera33ef482005-03-30 01:10:47 +00001056 }
Dan Gohman7c3234c2008-08-27 23:52:12 +00001057 SDL->SwitchCases.clear();
1058
1059 SDL->PHINodesToUpdate.clear();
Chris Lattner1c08c712005-01-07 07:47:53 +00001060}
Evan Chenga9c20912006-01-21 02:32:06 +00001061
Jim Laskey13ec7022006-08-01 14:21:23 +00001062
Dan Gohman0a3776d2009-02-06 18:26:51 +00001063/// Create the scheduler. If a specific scheduler was specified
1064/// via the SchedulerRegistry, use it, otherwise select the
1065/// one preferred by the target.
Dan Gohman5e843682008-07-14 18:19:29 +00001066///
Dan Gohman47ac0f02009-02-11 04:27:20 +00001067ScheduleDAGSDNodes *SelectionDAGISel::CreateScheduler() {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00001068 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001069
Jim Laskey13ec7022006-08-01 14:21:23 +00001070 if (!Ctor) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00001071 Ctor = ISHeuristic;
Jim Laskey9373beb2006-08-01 19:14:14 +00001072 RegisterScheduler::setDefault(Ctor);
Evan Cheng4ef10862006-01-23 07:01:07 +00001073 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001074
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00001075 return Ctor(this, OptLevel);
Evan Chenga9c20912006-01-21 02:32:06 +00001076}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001077
Dan Gohmanfc54c552009-01-15 22:18:12 +00001078ScheduleHazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
1079 return new ScheduleHazardRecognizer();
Jim Laskey9ff542f2006-08-01 18:29:48 +00001080}
1081
Chris Lattner75548062006-10-11 03:58:02 +00001082//===----------------------------------------------------------------------===//
1083// Helper functions used by the generated instruction selector.
1084//===----------------------------------------------------------------------===//
1085// Calls to these methods are generated by tblgen.
1086
1087/// CheckAndMask - The isel is trying to match something like (and X, 255). If
1088/// the dag combiner simplified the 255, we still want to match. RHS is the
1089/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
1090/// specified in the .td file (e.g. 255).
Daniel Dunbara279bc32009-09-20 02:20:51 +00001091bool SelectionDAGISel::CheckAndMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohmandc9b3d02007-07-24 23:00:27 +00001092 int64_t DesiredMaskS) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001093 const APInt &ActualMask = RHS->getAPIntValue();
1094 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001095
Chris Lattner75548062006-10-11 03:58:02 +00001096 // If the actual mask exactly matches, success!
1097 if (ActualMask == DesiredMask)
1098 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001099
Chris Lattner75548062006-10-11 03:58:02 +00001100 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001101 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00001102 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001103
Chris Lattner75548062006-10-11 03:58:02 +00001104 // Otherwise, the DAG Combiner may have proven that the value coming in is
1105 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001106 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001107 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
Chris Lattner75548062006-10-11 03:58:02 +00001108 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001109
Chris Lattner75548062006-10-11 03:58:02 +00001110 // TODO: check to see if missing bits are just not demanded.
1111
1112 // Otherwise, this pattern doesn't match.
1113 return false;
1114}
1115
1116/// CheckOrMask - The isel is trying to match something like (or X, 255). If
1117/// the dag combiner simplified the 255, we still want to match. RHS is the
1118/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
1119/// specified in the .td file (e.g. 255).
Daniel Dunbara279bc32009-09-20 02:20:51 +00001120bool SelectionDAGISel::CheckOrMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001121 int64_t DesiredMaskS) const {
1122 const APInt &ActualMask = RHS->getAPIntValue();
1123 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001124
Chris Lattner75548062006-10-11 03:58:02 +00001125 // If the actual mask exactly matches, success!
1126 if (ActualMask == DesiredMask)
1127 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001128
Chris Lattner75548062006-10-11 03:58:02 +00001129 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001130 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00001131 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001132
Chris Lattner75548062006-10-11 03:58:02 +00001133 // Otherwise, the DAG Combiner may have proven that the value coming in is
1134 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001135 APInt NeededMask = DesiredMask & ~ActualMask;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001136
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001137 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001138 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001139
Chris Lattner75548062006-10-11 03:58:02 +00001140 // If all the missing bits in the or are already known to be set, match!
1141 if ((NeededMask & KnownOne) == NeededMask)
1142 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001143
Chris Lattner75548062006-10-11 03:58:02 +00001144 // TODO: check to see if missing bits are just not demanded.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001145
Chris Lattner75548062006-10-11 03:58:02 +00001146 // Otherwise, this pattern doesn't match.
1147 return false;
1148}
1149
Jim Laskey9ff542f2006-08-01 18:29:48 +00001150
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001151/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
1152/// by tblgen. Others should not call it.
1153void SelectionDAGISel::
Dan Gohmanf350b272008-08-23 02:25:05 +00001154SelectInlineAsmMemoryOperands(std::vector<SDValue> &Ops) {
Dan Gohman475871a2008-07-27 21:46:04 +00001155 std::vector<SDValue> InOps;
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001156 std::swap(InOps, Ops);
1157
1158 Ops.push_back(InOps[0]); // input chain.
1159 Ops.push_back(InOps[1]); // input asm string.
1160
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001161 unsigned i = 2, e = InOps.size();
Owen Anderson825b72b2009-08-11 20:47:22 +00001162 if (InOps[e-1].getValueType() == MVT::Flag)
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001163 --e; // Don't process a flag operand if it is here.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001164
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001165 while (i != e) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001166 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getZExtValue();
Dale Johannesen86b49f82008-09-24 01:07:17 +00001167 if ((Flags & 7) != 4 /*MEM*/) {
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001168 // Just skip over this operand, copying the operands verbatim.
Evan Cheng697cbbf2009-03-20 18:03:34 +00001169 Ops.insert(Ops.end(), InOps.begin()+i,
1170 InOps.begin()+i+InlineAsm::getNumOperandRegisters(Flags) + 1);
1171 i += InlineAsm::getNumOperandRegisters(Flags) + 1;
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001172 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00001173 assert(InlineAsm::getNumOperandRegisters(Flags) == 1 &&
1174 "Memory operand with multiple values?");
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001175 // Otherwise, this is a memory operand. Ask the target to select it.
Dan Gohman475871a2008-07-27 21:46:04 +00001176 std::vector<SDValue> SelOps;
Dan Gohmanf350b272008-08-23 02:25:05 +00001177 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps)) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001178 llvm_report_error("Could not match memory address. Inline asm"
1179 " failure!");
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001180 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001181
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001182 // Add this to the output node.
Owen Andersone50ed302009-08-10 22:56:29 +00001183 EVT IntPtrTy = TLI.getPointerTy();
Dale Johannesen86b49f82008-09-24 01:07:17 +00001184 Ops.push_back(CurDAG->getTargetConstant(4/*MEM*/ | (SelOps.size()<< 3),
Dan Gohmanf350b272008-08-23 02:25:05 +00001185 IntPtrTy));
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001186 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
1187 i += 2;
1188 }
1189 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001190
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001191 // Add the flag input back if present.
1192 if (e != InOps.size())
1193 Ops.push_back(InOps.back());
1194}
Devang Patel794fd752007-05-01 21:15:47 +00001195
Owen Andersone50ed302009-08-10 22:56:29 +00001196/// findFlagUse - Return use of EVT::Flag value produced by the specified
Anton Korobeynikovc1c6ef82009-05-08 18:51:58 +00001197/// SDNode.
1198///
1199static SDNode *findFlagUse(SDNode *N) {
1200 unsigned FlagResNo = N->getNumValues()-1;
1201 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
1202 SDUse &Use = I.getUse();
1203 if (Use.getResNo() == FlagResNo)
1204 return Use.getUser();
1205 }
1206 return NULL;
1207}
1208
1209/// findNonImmUse - Return true if "Use" is a non-immediate use of "Def".
1210/// This function recursively traverses up the operand chain, ignoring
1211/// certain nodes.
1212static bool findNonImmUse(SDNode *Use, SDNode* Def, SDNode *ImmedUse,
1213 SDNode *Root,
1214 SmallPtrSet<SDNode*, 16> &Visited) {
1215 if (Use->getNodeId() < Def->getNodeId() ||
1216 !Visited.insert(Use))
1217 return false;
1218
1219 for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
1220 SDNode *N = Use->getOperand(i).getNode();
1221 if (N == Def) {
1222 if (Use == ImmedUse || Use == Root)
1223 continue; // We are not looking for immediate use.
1224 assert(N != Root);
1225 return true;
1226 }
1227
1228 // Traverse up the operand chain.
1229 if (findNonImmUse(N, Def, ImmedUse, Root, Visited))
1230 return true;
1231 }
1232 return false;
1233}
1234
1235/// isNonImmUse - Start searching from Root up the DAG to check is Def can
1236/// be reached. Return true if that's the case. However, ignore direct uses
1237/// by ImmedUse (which would be U in the example illustrated in
1238/// IsLegalAndProfitableToFold) and by Root (which can happen in the store
1239/// case).
1240/// FIXME: to be really generic, we should allow direct use by any node
1241/// that is being folded. But realisticly since we only fold loads which
1242/// have one non-chain use, we only need to watch out for load/op/store
1243/// and load/op/cmp case where the root (store / cmp) may reach the load via
1244/// its chain operand.
1245static inline bool isNonImmUse(SDNode *Root, SDNode *Def, SDNode *ImmedUse) {
1246 SmallPtrSet<SDNode*, 16> Visited;
1247 return findNonImmUse(Root, Def, ImmedUse, Root, Visited);
1248}
1249
1250/// IsLegalAndProfitableToFold - Returns true if the specific operand node N of
1251/// U can be folded during instruction selection that starts at Root and
1252/// folding N is profitable.
1253bool SelectionDAGISel::IsLegalAndProfitableToFold(SDNode *N, SDNode *U,
1254 SDNode *Root) const {
1255 if (OptLevel == CodeGenOpt::None) return false;
1256
1257 // If Root use can somehow reach N through a path that that doesn't contain
1258 // U then folding N would create a cycle. e.g. In the following
1259 // diagram, Root can reach N through X. If N is folded into into Root, then
1260 // X is both a predecessor and a successor of U.
1261 //
1262 // [N*] //
1263 // ^ ^ //
1264 // / \ //
1265 // [U*] [X]? //
1266 // ^ ^ //
1267 // \ / //
1268 // \ / //
1269 // [Root*] //
1270 //
1271 // * indicates nodes to be folded together.
1272 //
1273 // If Root produces a flag, then it gets (even more) interesting. Since it
1274 // will be "glued" together with its flag use in the scheduler, we need to
1275 // check if it might reach N.
1276 //
1277 // [N*] //
1278 // ^ ^ //
1279 // / \ //
1280 // [U*] [X]? //
1281 // ^ ^ //
1282 // \ \ //
1283 // \ | //
1284 // [Root*] | //
1285 // ^ | //
1286 // f | //
1287 // | / //
1288 // [Y] / //
1289 // ^ / //
1290 // f / //
1291 // | / //
1292 // [FU] //
1293 //
1294 // If FU (flag use) indirectly reaches N (the load), and Root folds N
1295 // (call it Fold), then X is a predecessor of FU and a successor of
1296 // Fold. But since Fold and FU are flagged together, this will create
1297 // a cycle in the scheduling graph.
1298
Owen Andersone50ed302009-08-10 22:56:29 +00001299 EVT VT = Root->getValueType(Root->getNumValues()-1);
Owen Anderson825b72b2009-08-11 20:47:22 +00001300 while (VT == MVT::Flag) {
Anton Korobeynikovc1c6ef82009-05-08 18:51:58 +00001301 SDNode *FU = findFlagUse(Root);
1302 if (FU == NULL)
1303 break;
1304 Root = FU;
1305 VT = Root->getValueType(Root->getNumValues()-1);
1306 }
1307
1308 return !isNonImmUse(Root, N, U);
1309}
1310
Dan Gohmane1f188f2009-10-29 22:30:23 +00001311SDNode *SelectionDAGISel::Select_INLINEASM(SDValue N) {
1312 std::vector<SDValue> Ops(N.getNode()->op_begin(), N.getNode()->op_end());
1313 SelectInlineAsmMemoryOperands(Ops);
1314
1315 std::vector<EVT> VTs;
1316 VTs.push_back(MVT::Other);
1317 VTs.push_back(MVT::Flag);
1318 SDValue New = CurDAG->getNode(ISD::INLINEASM, N.getDebugLoc(),
1319 VTs, &Ops[0], Ops.size());
1320 return New.getNode();
1321}
1322
1323SDNode *SelectionDAGISel::Select_UNDEF(const SDValue &N) {
1324 return CurDAG->SelectNodeTo(N.getNode(), TargetInstrInfo::IMPLICIT_DEF,
1325 N.getValueType());
1326}
1327
1328SDNode *SelectionDAGISel::Select_DBG_LABEL(const SDValue &N) {
1329 SDValue Chain = N.getOperand(0);
1330 unsigned C = cast<LabelSDNode>(N)->getLabelID();
1331 SDValue Tmp = CurDAG->getTargetConstant(C, MVT::i32);
1332 return CurDAG->SelectNodeTo(N.getNode(), TargetInstrInfo::DBG_LABEL,
1333 MVT::Other, Tmp, Chain);
1334}
1335
1336SDNode *SelectionDAGISel::Select_EH_LABEL(const SDValue &N) {
1337 SDValue Chain = N.getOperand(0);
1338 unsigned C = cast<LabelSDNode>(N)->getLabelID();
1339 SDValue Tmp = CurDAG->getTargetConstant(C, MVT::i32);
1340 return CurDAG->SelectNodeTo(N.getNode(), TargetInstrInfo::EH_LABEL,
1341 MVT::Other, Tmp, Chain);
1342}
1343
1344void SelectionDAGISel::CannotYetSelect(SDValue N) {
1345 std::string msg;
1346 raw_string_ostream Msg(msg);
1347 Msg << "Cannot yet select: ";
1348 N.getNode()->print(Msg, CurDAG);
1349 llvm_report_error(Msg.str());
1350}
1351
1352void SelectionDAGISel::CannotYetSelectIntrinsic(SDValue N) {
1353 errs() << "Cannot yet select: ";
1354 unsigned iid =
1355 cast<ConstantSDNode>(N.getOperand(N.getOperand(0).getValueType() == MVT::Other))->getZExtValue();
1356 if (iid < Intrinsic::num_intrinsics)
1357 llvm_report_error("Cannot yet select: intrinsic %" + Intrinsic::getName((Intrinsic::ID)iid));
1358 else if (const TargetIntrinsicInfo *tii = TM.getIntrinsicInfo())
1359 llvm_report_error(Twine("Cannot yet select: target intrinsic %") +
1360 tii->getName(iid));
1361}
Anton Korobeynikovc1c6ef82009-05-08 18:51:58 +00001362
Devang Patel19974732007-05-03 01:11:54 +00001363char SelectionDAGISel::ID = 0;