blob: 70bbb112c44e9fb03525b89503e3f94f67f99b87 [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 Gohman6277eb22009-11-23 17:16:22 +000017#include "FunctionLoweringInfo.h"
Dan Gohman84fbac52009-02-06 17:22:58 +000018#include "llvm/CodeGen/SelectionDAGISel.h"
Jim Laskeyc7c3f112006-10-16 20:52:31 +000019#include "llvm/Analysis/AliasAnalysis.h"
Devang Patel713f0432009-09-16 21:09:07 +000020#include "llvm/Analysis/DebugInfo.h"
Anton Korobeynikov5502bf62007-04-04 21:14:49 +000021#include "llvm/Constants.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000022#include "llvm/CallingConv.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000023#include "llvm/DerivedTypes.h"
24#include "llvm/Function.h"
Chris Lattner36ce6912005-11-29 06:21:05 +000025#include "llvm/GlobalVariable.h"
Chris Lattnerce7518c2006-01-26 22:24:51 +000026#include "llvm/InlineAsm.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000027#include "llvm/Instructions.h"
28#include "llvm/Intrinsics.h"
Jim Laskey43970fe2006-03-23 18:06:46 +000029#include "llvm/IntrinsicInst.h"
Chris Lattner75c478a2009-10-27 17:02:08 +000030#include "llvm/LLVMContext.h"
Dan Gohman78eca172008-08-19 22:33:34 +000031#include "llvm/CodeGen/FastISel.h"
Gordon Henriksen5a29c9e2008-08-17 12:56:54 +000032#include "llvm/CodeGen/GCStrategy.h"
Gordon Henriksen5eca0752008-08-17 18:44:35 +000033#include "llvm/CodeGen/GCMetadata.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000034#include "llvm/CodeGen/MachineFunction.h"
Dan Gohmanad2afc22009-07-31 18:16:33 +000035#include "llvm/CodeGen/MachineFunctionAnalysis.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000036#include "llvm/CodeGen/MachineFrameInfo.h"
37#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000038#include "llvm/CodeGen/MachineJumpTableInfo.h"
39#include "llvm/CodeGen/MachineModuleInfo.h"
40#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohmanfc54c552009-01-15 22:18:12 +000041#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000042#include "llvm/CodeGen/SchedulerRegistry.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000043#include "llvm/CodeGen/SelectionDAG.h"
Devang Patel6e7a1612009-01-09 19:11:50 +000044#include "llvm/CodeGen/DwarfWriter.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000045#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000046#include "llvm/Target/TargetData.h"
47#include "llvm/Target/TargetFrameInfo.h"
Dan Gohmane1f188f2009-10-29 22:30:23 +000048#include "llvm/Target/TargetIntrinsicInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000049#include "llvm/Target/TargetInstrInfo.h"
50#include "llvm/Target/TargetLowering.h"
51#include "llvm/Target/TargetMachine.h"
Vladimir Prus12472912006-05-23 13:43:15 +000052#include "llvm/Target/TargetOptions.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000053#include "llvm/Support/Compiler.h"
Evan Chengdb8d56b2008-06-30 20:45:06 +000054#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000055#include "llvm/Support/ErrorHandling.h"
Evan Chengdb8d56b2008-06-30 20:45:06 +000056#include "llvm/Support/MathExtras.h"
57#include "llvm/Support/Timer.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000058#include "llvm/Support/raw_ostream.h"
Jeff Cohen7e881032006-02-24 02:52:40 +000059#include <algorithm>
Chris Lattner1c08c712005-01-07 07:47:53 +000060using namespace llvm;
61
Chris Lattneread0d882008-06-17 06:09:18 +000062static cl::opt<bool>
Duncan Sands7cb07872008-10-27 08:42:46 +000063DisableLegalizeTypes("disable-legalize-types", cl::Hidden);
Dan Gohman78eca172008-08-19 22:33:34 +000064static cl::opt<bool>
Dan Gohman293d5f82008-09-09 22:06:46 +000065EnableFastISelVerbose("fast-isel-verbose", cl::Hidden,
Dan Gohmand659d502008-10-20 21:30:12 +000066 cl::desc("Enable verbose messages in the \"fast\" "
Dan Gohman293d5f82008-09-09 22:06:46 +000067 "instruction selector"));
68static cl::opt<bool>
Dan Gohman4344a5d2008-09-09 23:05:00 +000069EnableFastISelAbort("fast-isel-abort", cl::Hidden,
70 cl::desc("Enable abort calls when \"fast\" instruction fails"));
Dan Gohman8a110532008-09-05 22:59:21 +000071static cl::opt<bool>
Evan Chengdf8ed022009-11-09 06:49:37 +000072SchedLiveInCopies("schedule-livein-copies", cl::Hidden,
Dan Gohman8a110532008-09-05 22:59:21 +000073 cl::desc("Schedule copies of livein registers"),
74 cl::init(false));
Chris Lattneread0d882008-06-17 06:09:18 +000075
Chris Lattnerda8abb02005-09-01 18:44:10 +000076#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000077static cl::opt<bool>
Dan Gohman462dc7f2008-07-21 20:00:07 +000078ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden,
79 cl::desc("Pop up a window to show dags before the first "
80 "dag combine pass"));
81static cl::opt<bool>
82ViewLegalizeTypesDAGs("view-legalize-types-dags", cl::Hidden,
83 cl::desc("Pop up a window to show dags before legalize types"));
84static cl::opt<bool>
85ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
86 cl::desc("Pop up a window to show dags before legalize"));
87static cl::opt<bool>
88ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden,
89 cl::desc("Pop up a window to show dags before the second "
90 "dag combine pass"));
91static cl::opt<bool>
Duncan Sands25cf2272008-11-24 14:53:14 +000092ViewDAGCombineLT("view-dag-combine-lt-dags", cl::Hidden,
93 cl::desc("Pop up a window to show dags before the post legalize types"
94 " dag combine pass"));
95static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000096ViewISelDAGs("view-isel-dags", cl::Hidden,
97 cl::desc("Pop up a window to show isel dags as they are selected"));
98static cl::opt<bool>
99ViewSchedDAGs("view-sched-dags", cl::Hidden,
100 cl::desc("Pop up a window to show sched dags as they are processed"));
Dan Gohman3e1a7ae2007-08-28 20:32:58 +0000101static cl::opt<bool>
102ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
Chris Lattner5bab7852008-01-25 17:24:52 +0000103 cl::desc("Pop up a window to show SUnit dags after they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +0000104#else
Dan Gohman462dc7f2008-07-21 20:00:07 +0000105static const bool ViewDAGCombine1 = false,
106 ViewLegalizeTypesDAGs = false, ViewLegalizeDAGs = false,
107 ViewDAGCombine2 = false,
Duncan Sands25cf2272008-11-24 14:53:14 +0000108 ViewDAGCombineLT = false,
Dan Gohman462dc7f2008-07-21 20:00:07 +0000109 ViewISelDAGs = false, ViewSchedDAGs = false,
110 ViewSUnitDAGs = false;
Chris Lattner7944d9d2005-01-12 03:41:21 +0000111#endif
112
Jim Laskeyeb577ba2006-08-02 12:30:23 +0000113//===---------------------------------------------------------------------===//
114///
115/// RegisterScheduler class - Track the registration of instruction schedulers.
116///
117//===---------------------------------------------------------------------===//
118MachinePassRegistry RegisterScheduler::Registry;
119
120//===---------------------------------------------------------------------===//
121///
122/// ISHeuristic command line option for instruction schedulers.
123///
124//===---------------------------------------------------------------------===//
Dan Gohman844731a2008-05-13 00:00:25 +0000125static cl::opt<RegisterScheduler::FunctionPassCtor, false,
126 RegisterPassParser<RegisterScheduler> >
127ISHeuristic("pre-RA-sched",
128 cl::init(&createDefaultScheduler),
129 cl::desc("Instruction schedulers available (before register"
130 " allocation):"));
Jim Laskey13ec7022006-08-01 14:21:23 +0000131
Dan Gohman844731a2008-05-13 00:00:25 +0000132static RegisterScheduler
Dan Gohmanb8cab922008-10-14 20:25:08 +0000133defaultListDAGScheduler("default", "Best scheduler for the target",
Dan Gohman844731a2008-05-13 00:00:25 +0000134 createDefaultScheduler);
Evan Cheng4ef10862006-01-23 07:01:07 +0000135
Chris Lattner1c08c712005-01-07 07:47:53 +0000136namespace llvm {
137 //===--------------------------------------------------------------------===//
Jim Laskey9373beb2006-08-01 19:14:14 +0000138 /// createDefaultScheduler - This creates an instruction scheduler appropriate
139 /// for the target.
Dan Gohman47ac0f02009-02-11 04:27:20 +0000140 ScheduleDAGSDNodes* createDefaultScheduler(SelectionDAGISel *IS,
Bill Wendling98a366d2009-04-29 23:29:43 +0000141 CodeGenOpt::Level OptLevel) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000142 const TargetLowering &TLI = IS->getTargetLowering();
143
Bill Wendling98a366d2009-04-29 23:29:43 +0000144 if (OptLevel == CodeGenOpt::None)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000145 return createFastDAGScheduler(IS, OptLevel);
Dan Gohman9e76fea2008-11-20 03:11:19 +0000146 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000147 return createTDListDAGScheduler(IS, OptLevel);
Dan Gohman9e76fea2008-11-20 03:11:19 +0000148 assert(TLI.getSchedulingPreference() ==
149 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000150 return createBURRListDAGScheduler(IS, OptLevel);
Jim Laskey9373beb2006-08-01 19:14:14 +0000151 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000152}
153
Evan Chengff9b3732008-01-30 18:18:23 +0000154// EmitInstrWithCustomInserter - This method should be implemented by targets
Dan Gohman533297b2009-10-29 18:10:34 +0000155// that mark instructions with the 'usesCustomInserter' flag. These
Chris Lattner025c39b2005-08-26 20:54:47 +0000156// instructions are special in various ways, which require special support to
157// insert. The specified MachineInstr is created but not inserted into any
Dan Gohman533297b2009-10-29 18:10:34 +0000158// basic blocks, and this method is called to expand it into a sequence of
159// instructions, potentially also creating new basic blocks and control flow.
160// When new basic blocks are inserted and the edges from MBB to its successors
161// are modified, the method should insert pairs of <OldSucc, NewSucc> into the
162// DenseMap.
Evan Chengff9b3732008-01-30 18:18:23 +0000163MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Evan Chengfb2e7522009-09-18 21:02:19 +0000164 MachineBasicBlock *MBB,
165 DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM) const {
Torok Edwinf3689232009-07-12 20:07:01 +0000166#ifndef NDEBUG
Chris Lattner4437ae22009-08-23 07:05:07 +0000167 errs() << "If a target marks an instruction with "
Dan Gohman533297b2009-10-29 18:10:34 +0000168 "'usesCustomInserter', it must implement "
Torok Edwinf3689232009-07-12 20:07:01 +0000169 "TargetLowering::EmitInstrWithCustomInserter!";
170#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000171 llvm_unreachable(0);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000172 return 0;
Chris Lattner025c39b2005-08-26 20:54:47 +0000173}
174
Dan Gohman8a110532008-09-05 22:59:21 +0000175/// EmitLiveInCopy - Emit a copy for a live in physical register. If the
176/// physical register has only a single copy use, then coalesced the copy
177/// if possible.
178static void EmitLiveInCopy(MachineBasicBlock *MBB,
179 MachineBasicBlock::iterator &InsertPos,
180 unsigned VirtReg, unsigned PhysReg,
181 const TargetRegisterClass *RC,
182 DenseMap<MachineInstr*, unsigned> &CopyRegMap,
183 const MachineRegisterInfo &MRI,
184 const TargetRegisterInfo &TRI,
185 const TargetInstrInfo &TII) {
186 unsigned NumUses = 0;
187 MachineInstr *UseMI = NULL;
188 for (MachineRegisterInfo::use_iterator UI = MRI.use_begin(VirtReg),
189 UE = MRI.use_end(); UI != UE; ++UI) {
190 UseMI = &*UI;
191 if (++NumUses > 1)
192 break;
193 }
194
195 // If the number of uses is not one, or the use is not a move instruction,
196 // don't coalesce. Also, only coalesce away a virtual register to virtual
197 // register copy.
198 bool Coalesced = false;
Evan Cheng04ee5a12009-01-20 19:12:24 +0000199 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
Dan Gohman8a110532008-09-05 22:59:21 +0000200 if (NumUses == 1 &&
Evan Cheng04ee5a12009-01-20 19:12:24 +0000201 TII.isMoveInstr(*UseMI, SrcReg, DstReg, SrcSubReg, DstSubReg) &&
Dan Gohman8a110532008-09-05 22:59:21 +0000202 TargetRegisterInfo::isVirtualRegister(DstReg)) {
203 VirtReg = DstReg;
204 Coalesced = true;
205 }
206
207 // Now find an ideal location to insert the copy.
208 MachineBasicBlock::iterator Pos = InsertPos;
209 while (Pos != MBB->begin()) {
210 MachineInstr *PrevMI = prior(Pos);
211 DenseMap<MachineInstr*, unsigned>::iterator RI = CopyRegMap.find(PrevMI);
212 // copyRegToReg might emit multiple instructions to do a copy.
213 unsigned CopyDstReg = (RI == CopyRegMap.end()) ? 0 : RI->second;
214 if (CopyDstReg && !TRI.regsOverlap(CopyDstReg, PhysReg))
215 // This is what the BB looks like right now:
216 // r1024 = mov r0
217 // ...
218 // r1 = mov r1024
219 //
220 // We want to insert "r1025 = mov r1". Inserting this copy below the
221 // move to r1024 makes it impossible for that move to be coalesced.
222 //
223 // r1025 = mov r1
224 // r1024 = mov r0
225 // ...
226 // r1 = mov 1024
227 // r2 = mov 1025
228 break; // Woot! Found a good location.
229 --Pos;
230 }
231
David Goodwinf1daf7d2009-07-08 23:10:31 +0000232 bool Emitted = TII.copyRegToReg(*MBB, Pos, VirtReg, PhysReg, RC, RC);
233 assert(Emitted && "Unable to issue a live-in copy instruction!\n");
234 (void) Emitted;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000235
Zhongxing Xu931424a2009-10-16 05:42:28 +0000236 CopyRegMap.insert(std::make_pair(prior(Pos), VirtReg));
Dan Gohman8a110532008-09-05 22:59:21 +0000237 if (Coalesced) {
238 if (&*InsertPos == UseMI) ++InsertPos;
239 MBB->erase(UseMI);
240 }
241}
242
243/// EmitLiveInCopies - If this is the first basic block in the function,
244/// and if it has live ins that need to be copied into vregs, emit the
245/// copies into the block.
246static void EmitLiveInCopies(MachineBasicBlock *EntryMBB,
247 const MachineRegisterInfo &MRI,
248 const TargetRegisterInfo &TRI,
249 const TargetInstrInfo &TII) {
250 if (SchedLiveInCopies) {
251 // Emit the copies at a heuristically-determined location in the block.
252 DenseMap<MachineInstr*, unsigned> CopyRegMap;
253 MachineBasicBlock::iterator InsertPos = EntryMBB->begin();
254 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
255 E = MRI.livein_end(); LI != E; ++LI)
256 if (LI->second) {
257 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
258 EmitLiveInCopy(EntryMBB, InsertPos, LI->second, LI->first,
259 RC, CopyRegMap, MRI, TRI, TII);
260 }
261 } else {
262 // Emit the copies into the top of the block.
263 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
264 E = MRI.livein_end(); LI != E; ++LI)
265 if (LI->second) {
266 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
David Goodwinf1daf7d2009-07-08 23:10:31 +0000267 bool Emitted = TII.copyRegToReg(*EntryMBB, EntryMBB->begin(),
268 LI->second, LI->first, RC, RC);
269 assert(Emitted && "Unable to issue a live-in copy instruction!\n");
270 (void) Emitted;
Dan Gohman8a110532008-09-05 22:59:21 +0000271 }
272 }
273}
274
Chris Lattner7041ee32005-01-11 05:56:49 +0000275//===----------------------------------------------------------------------===//
276// SelectionDAGISel code
277//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +0000278
Bill Wendling98a366d2009-04-29 23:29:43 +0000279SelectionDAGISel::SelectionDAGISel(TargetMachine &tm, CodeGenOpt::Level OL) :
Dan Gohmanad2afc22009-07-31 18:16:33 +0000280 MachineFunctionPass(&ID), TM(tm), TLI(*tm.getTargetLowering()),
Dan Gohman7c3234c2008-08-27 23:52:12 +0000281 FuncInfo(new FunctionLoweringInfo(TLI)),
282 CurDAG(new SelectionDAG(TLI, *FuncInfo)),
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000283 SDL(new SelectionDAGLowering(*CurDAG, TLI, *FuncInfo, OL)),
Dan Gohman7c3234c2008-08-27 23:52:12 +0000284 GFI(),
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000285 OptLevel(OL),
Dan Gohman7c3234c2008-08-27 23:52:12 +0000286 DAGSize(0)
287{}
288
289SelectionDAGISel::~SelectionDAGISel() {
290 delete SDL;
291 delete CurDAG;
292 delete FuncInfo;
293}
294
Owen Andersone50ed302009-08-10 22:56:29 +0000295unsigned SelectionDAGISel::MakeReg(EVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000296 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +0000297}
298
Chris Lattner495a0b52005-08-17 06:37:43 +0000299void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyc7c3f112006-10-16 20:52:31 +0000300 AU.addRequired<AliasAnalysis>();
Dan Gohmana3477fe2009-07-31 23:36:22 +0000301 AU.addPreserved<AliasAnalysis>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000302 AU.addRequired<GCModuleInfo>();
Dan Gohmana3477fe2009-07-31 23:36:22 +0000303 AU.addPreserved<GCModuleInfo>();
Devang Patel6e7a1612009-01-09 19:11:50 +0000304 AU.addRequired<DwarfWriter>();
Dan Gohmana3477fe2009-07-31 23:36:22 +0000305 AU.addPreserved<DwarfWriter>();
Dan Gohmanad2afc22009-07-31 18:16:33 +0000306 MachineFunctionPass::getAnalysisUsage(AU);
Chris Lattner495a0b52005-08-17 06:37:43 +0000307}
Chris Lattner1c08c712005-01-07 07:47:53 +0000308
Dan Gohmanad2afc22009-07-31 18:16:33 +0000309bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
310 Function &Fn = *mf.getFunction();
311
Dan Gohman4344a5d2008-09-09 23:05:00 +0000312 // Do some sanity-checking on the command-line options.
313 assert((!EnableFastISelVerbose || EnableFastISel) &&
314 "-fast-isel-verbose requires -fast-isel");
315 assert((!EnableFastISelAbort || EnableFastISel) &&
316 "-fast-isel-abort requires -fast-isel");
317
Dan Gohman5f43f922007-08-27 16:26:13 +0000318 // Get alias analysis for load/store combining.
319 AA = &getAnalysis<AliasAnalysis>();
320
Dan Gohmanad2afc22009-07-31 18:16:33 +0000321 MF = &mf;
Dan Gohman8a110532008-09-05 22:59:21 +0000322 const TargetInstrInfo &TII = *TM.getInstrInfo();
323 const TargetRegisterInfo &TRI = *TM.getRegisterInfo();
324
Dan Gohmanf7d6cd42009-08-01 03:51:09 +0000325 if (Fn.hasGC())
326 GFI = &getAnalysis<GCModuleInfo>().getFunctionInfo(Fn);
Gordon Henriksence224772008-01-07 01:30:38 +0000327 else
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000328 GFI = 0;
Dan Gohman79ce2762009-01-15 19:20:50 +0000329 RegInfo = &MF->getRegInfo();
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000330 DEBUG(errs() << "\n\n\n=== " << Fn.getName() << "\n");
Chris Lattner1c08c712005-01-07 07:47:53 +0000331
Duncan Sands1465d612009-01-28 13:14:17 +0000332 MachineModuleInfo *MMI = getAnalysisIfAvailable<MachineModuleInfo>();
333 DwarfWriter *DW = getAnalysisIfAvailable<DwarfWriter>();
Owen Anderson5dcaceb2009-07-09 18:44:09 +0000334 CurDAG->init(*MF, MMI, DW);
Dan Gohman6277eb22009-11-23 17:16:22 +0000335 FuncInfo->set(Fn, *MF, EnableFastISel);
Dan Gohman7c3234c2008-08-27 23:52:12 +0000336 SDL->init(GFI, *AA);
Chris Lattner1c08c712005-01-07 07:47:53 +0000337
Dale Johannesen1532f3d2008-04-02 00:25:04 +0000338 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
339 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
340 // Mark landing pad.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000341 FuncInfo->MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Duncan Sands9fac0b52007-06-06 10:05:18 +0000342
Dan Gohman79ce2762009-01-15 19:20:50 +0000343 SelectAllBasicBlocks(Fn, *MF, MMI, DW, TII);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000344
Dan Gohman8a110532008-09-05 22:59:21 +0000345 // If the first basic block in the function has live ins that need to be
346 // copied into vregs, emit the copies into the top of the block before
347 // emitting the code for the block.
Dan Gohman79ce2762009-01-15 19:20:50 +0000348 EmitLiveInCopies(MF->begin(), *RegInfo, TRI, TII);
Dan Gohman8a110532008-09-05 22:59:21 +0000349
Evan Chengad2070c2007-02-10 02:43:39 +0000350 // Add function live-ins to entry block live-in set.
Dan Gohman8a110532008-09-05 22:59:21 +0000351 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
352 E = RegInfo->livein_end(); I != E; ++I)
Dan Gohman79ce2762009-01-15 19:20:50 +0000353 MF->begin()->addLiveIn(I->first);
Evan Chengad2070c2007-02-10 02:43:39 +0000354
Duncan Sandsf4070822007-06-15 19:04:19 +0000355#ifndef NDEBUG
Dan Gohman7c3234c2008-08-27 23:52:12 +0000356 assert(FuncInfo->CatchInfoFound.size() == FuncInfo->CatchInfoLost.size() &&
Duncan Sandsf4070822007-06-15 19:04:19 +0000357 "Not all catch info was assigned to a landing pad!");
358#endif
359
Dan Gohman7c3234c2008-08-27 23:52:12 +0000360 FuncInfo->clear();
361
Chris Lattner1c08c712005-01-07 07:47:53 +0000362 return true;
363}
364
Duncan Sandsf4070822007-06-15 19:04:19 +0000365static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
366 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000367 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000368 if (EHSelectorInst *EHSel = dyn_cast<EHSelectorInst>(I)) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000369 // Apply the catch info to DestBB.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000370 AddCatchInfo(*EHSel, MMI, FLI.MBBMap[DestBB]);
Duncan Sandsf4070822007-06-15 19:04:19 +0000371#ifndef NDEBUG
Duncan Sands560a7372007-11-15 09:54:37 +0000372 if (!FLI.MBBMap[SrcBB]->isLandingPad())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000373 FLI.CatchInfoFound.insert(EHSel);
Duncan Sandsf4070822007-06-15 19:04:19 +0000374#endif
375 }
376}
377
Dan Gohmanf350b272008-08-23 02:25:05 +0000378void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB,
379 BasicBlock::iterator Begin,
Dan Gohmanb4afb132009-11-20 02:51:26 +0000380 BasicBlock::iterator End,
381 bool &HadTailCall) {
Dan Gohman7c3234c2008-08-27 23:52:12 +0000382 SDL->setCurrentBasicBlock(BB);
Devang Patele30e6782009-09-28 21:41:20 +0000383 MetadataContext &TheMetadata = LLVMBB->getParent()->getContext().getMetadata();
Devang Patela2148402009-09-28 21:14:55 +0000384 unsigned MDDbgKind = TheMetadata.getMDKind("dbg");
Dan Gohmanf350b272008-08-23 02:25:05 +0000385
Dan Gohman98ca4f22009-08-05 01:29:28 +0000386 // Lower all of the non-terminator instructions. If a call is emitted
387 // as a tail call, cease emitting nodes for this block.
Devang Patel123eaa72009-09-16 20:39:11 +0000388 for (BasicBlock::iterator I = Begin; I != End && !SDL->HasTailCall; ++I) {
389 if (MDDbgKind) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000390 // Update DebugLoc if debug information is attached with this
Devang Patel123eaa72009-09-16 20:39:11 +0000391 // instruction.
Devang Patel53bb5c92009-11-10 23:06:00 +0000392 if (!isa<DbgInfoIntrinsic>(I))
393 if (MDNode *Dbg = TheMetadata.getMD(MDDbgKind, I)) {
394 DILocation DILoc(Dbg);
395 DebugLoc Loc = ExtractDebugLocation(DILoc, MF->getDebugLocInfo());
396 SDL->setCurDebugLoc(Loc);
397 if (MF->getDefaultDebugLoc().isUnknown())
398 MF->setDefaultDebugLoc(Loc);
399 }
Devang Patel123eaa72009-09-16 20:39:11 +0000400 }
Dan Gohmanf350b272008-08-23 02:25:05 +0000401 if (!isa<TerminatorInst>(I))
Dan Gohman7c3234c2008-08-27 23:52:12 +0000402 SDL->visit(*I);
Devang Patel123eaa72009-09-16 20:39:11 +0000403 }
Dan Gohmanf350b272008-08-23 02:25:05 +0000404
Dan Gohman98ca4f22009-08-05 01:29:28 +0000405 if (!SDL->HasTailCall) {
406 // Ensure that all instructions which are used outside of their defining
407 // blocks are available as virtual registers. Invoke is handled elsewhere.
408 for (BasicBlock::iterator I = Begin; I != End; ++I)
409 if (!isa<PHINode>(I) && !isa<InvokeInst>(I))
410 SDL->CopyToExportRegsIfNeeded(I);
Dan Gohmanf350b272008-08-23 02:25:05 +0000411
Dan Gohman98ca4f22009-08-05 01:29:28 +0000412 // Handle PHI nodes in successor blocks.
413 if (End == LLVMBB->end()) {
414 HandlePHINodesInSuccessorBlocks(LLVMBB);
Dan Gohman3df24e62008-09-03 23:12:08 +0000415
Dan Gohman98ca4f22009-08-05 01:29:28 +0000416 // Lower the terminator after the copies are emitted.
417 SDL->visit(*LLVMBB->getTerminator());
418 }
Dan Gohman3df24e62008-09-03 23:12:08 +0000419 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000420
Chris Lattnera651cf62005-01-17 19:43:36 +0000421 // Make sure the root of the DAG is up-to-date.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000422 CurDAG->setRoot(SDL->getControlRoot());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000423
Dan Gohmanf350b272008-08-23 02:25:05 +0000424 // Final step, emit the lowered DAG as machine code.
425 CodeGenAndEmitDAG();
Dan Gohmanb4afb132009-11-20 02:51:26 +0000426 HadTailCall = SDL->HasTailCall;
Dan Gohman7c3234c2008-08-27 23:52:12 +0000427 SDL->clear();
Chris Lattner1c08c712005-01-07 07:47:53 +0000428}
429
Dan Gohmanf350b272008-08-23 02:25:05 +0000430void SelectionDAGISel::ComputeLiveOutVRegInfo() {
Chris Lattneread0d882008-06-17 06:09:18 +0000431 SmallPtrSet<SDNode*, 128> VisitedNodes;
432 SmallVector<SDNode*, 128> Worklist;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000433
Gabor Greifba36cb52008-08-28 21:40:38 +0000434 Worklist.push_back(CurDAG->getRoot().getNode());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000435
Chris Lattneread0d882008-06-17 06:09:18 +0000436 APInt Mask;
437 APInt KnownZero;
438 APInt KnownOne;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000439
Chris Lattneread0d882008-06-17 06:09:18 +0000440 while (!Worklist.empty()) {
441 SDNode *N = Worklist.back();
442 Worklist.pop_back();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000443
Chris Lattneread0d882008-06-17 06:09:18 +0000444 // If we've already seen this node, ignore it.
445 if (!VisitedNodes.insert(N))
446 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000447
Chris Lattneread0d882008-06-17 06:09:18 +0000448 // Otherwise, add all chain operands to the worklist.
449 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +0000450 if (N->getOperand(i).getValueType() == MVT::Other)
Gabor Greifba36cb52008-08-28 21:40:38 +0000451 Worklist.push_back(N->getOperand(i).getNode());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000452
Chris Lattneread0d882008-06-17 06:09:18 +0000453 // If this is a CopyToReg with a vreg dest, process it.
454 if (N->getOpcode() != ISD::CopyToReg)
455 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000456
Chris Lattneread0d882008-06-17 06:09:18 +0000457 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
458 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
459 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000460
Chris Lattneread0d882008-06-17 06:09:18 +0000461 // Ignore non-scalar or non-integer values.
Dan Gohman475871a2008-07-27 21:46:04 +0000462 SDValue Src = N->getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +0000463 EVT SrcVT = Src.getValueType();
Chris Lattneread0d882008-06-17 06:09:18 +0000464 if (!SrcVT.isInteger() || SrcVT.isVector())
465 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000466
Dan Gohmanf350b272008-08-23 02:25:05 +0000467 unsigned NumSignBits = CurDAG->ComputeNumSignBits(Src);
Chris Lattneread0d882008-06-17 06:09:18 +0000468 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
Dan Gohmanf350b272008-08-23 02:25:05 +0000469 CurDAG->ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000470
Chris Lattneread0d882008-06-17 06:09:18 +0000471 // Only install this information if it tells us something.
472 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
473 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
Dan Gohmanf7d6cd42009-08-01 03:51:09 +0000474 if (DestReg >= FuncInfo->LiveOutRegInfo.size())
475 FuncInfo->LiveOutRegInfo.resize(DestReg+1);
476 FunctionLoweringInfo::LiveOutInfo &LOI =
477 FuncInfo->LiveOutRegInfo[DestReg];
Chris Lattneread0d882008-06-17 06:09:18 +0000478 LOI.NumSignBits = NumSignBits;
Dan Gohmana80efce2009-03-27 23:55:04 +0000479 LOI.KnownOne = KnownOne;
480 LOI.KnownZero = KnownZero;
Chris Lattneread0d882008-06-17 06:09:18 +0000481 }
482 }
483}
484
Dan Gohmanf350b272008-08-23 02:25:05 +0000485void SelectionDAGISel::CodeGenAndEmitDAG() {
Dan Gohman462dc7f2008-07-21 20:00:07 +0000486 std::string GroupName;
487 if (TimePassesIsEnabled)
488 GroupName = "Instruction Selection and Scheduling";
489 std::string BlockName;
490 if (ViewDAGCombine1 || ViewLegalizeTypesDAGs || ViewLegalizeDAGs ||
Duncan Sands25cf2272008-11-24 14:53:14 +0000491 ViewDAGCombine2 || ViewDAGCombineLT || ViewISelDAGs || ViewSchedDAGs ||
492 ViewSUnitDAGs)
Dan Gohmanf7d6cd42009-08-01 03:51:09 +0000493 BlockName = MF->getFunction()->getNameStr() + ":" +
Daniel Dunbarf6ccee52009-07-24 08:24:36 +0000494 BB->getBasicBlock()->getNameStr();
Dan Gohman462dc7f2008-07-21 20:00:07 +0000495
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000496 DEBUG(errs() << "Initial selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000497 DEBUG(CurDAG->dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +0000498
Dan Gohmanf350b272008-08-23 02:25:05 +0000499 if (ViewDAGCombine1) CurDAG->viewGraph("dag-combine1 input for " + BlockName);
Dan Gohman417e11b2007-10-08 15:12:17 +0000500
Chris Lattneraf21d552005-10-10 16:47:10 +0000501 // Run the DAG combiner in pre-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +0000502 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000503 NamedRegionTimer T("DAG Combining 1", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000504 CurDAG->Combine(Unrestricted, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000505 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000506 CurDAG->Combine(Unrestricted, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000507 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000508
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000509 DEBUG(errs() << "Optimized lowered selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000510 DEBUG(CurDAG->dump());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000511
Chris Lattner1c08c712005-01-07 07:47:53 +0000512 // Second step, hack on the DAG until it only uses operations and types that
513 // the target supports.
Duncan Sands7cb07872008-10-27 08:42:46 +0000514 if (!DisableLegalizeTypes) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000515 if (ViewLegalizeTypesDAGs) CurDAG->viewGraph("legalize-types input for " +
516 BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000517
Duncan Sands25cf2272008-11-24 14:53:14 +0000518 bool Changed;
Dan Gohman462dc7f2008-07-21 20:00:07 +0000519 if (TimePassesIsEnabled) {
520 NamedRegionTimer T("Type Legalization", GroupName);
Duncan Sands25cf2272008-11-24 14:53:14 +0000521 Changed = CurDAG->LegalizeTypes();
Dan Gohman462dc7f2008-07-21 20:00:07 +0000522 } else {
Duncan Sands25cf2272008-11-24 14:53:14 +0000523 Changed = CurDAG->LegalizeTypes();
Dan Gohman462dc7f2008-07-21 20:00:07 +0000524 }
525
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000526 DEBUG(errs() << "Type-legalized selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000527 DEBUG(CurDAG->dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +0000528
Duncan Sands25cf2272008-11-24 14:53:14 +0000529 if (Changed) {
530 if (ViewDAGCombineLT)
531 CurDAG->viewGraph("dag-combine-lt input for " + BlockName);
532
533 // Run the DAG combiner in post-type-legalize mode.
534 if (TimePassesIsEnabled) {
535 NamedRegionTimer T("DAG Combining after legalize types", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000536 CurDAG->Combine(NoIllegalTypes, *AA, OptLevel);
Duncan Sands25cf2272008-11-24 14:53:14 +0000537 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000538 CurDAG->Combine(NoIllegalTypes, *AA, OptLevel);
Duncan Sands25cf2272008-11-24 14:53:14 +0000539 }
540
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000541 DEBUG(errs() << "Optimized type-legalized selection DAG:\n");
Duncan Sands25cf2272008-11-24 14:53:14 +0000542 DEBUG(CurDAG->dump());
543 }
Eli Friedman5c22c802009-05-23 12:35:30 +0000544
545 if (TimePassesIsEnabled) {
546 NamedRegionTimer T("Vector Legalization", GroupName);
547 Changed = CurDAG->LegalizeVectors();
548 } else {
549 Changed = CurDAG->LegalizeVectors();
550 }
551
552 if (Changed) {
553 if (TimePassesIsEnabled) {
554 NamedRegionTimer T("Type Legalization 2", GroupName);
555 Changed = CurDAG->LegalizeTypes();
556 } else {
557 Changed = CurDAG->LegalizeTypes();
558 }
559
560 if (ViewDAGCombineLT)
561 CurDAG->viewGraph("dag-combine-lv input for " + BlockName);
562
563 // Run the DAG combiner in post-type-legalize mode.
564 if (TimePassesIsEnabled) {
565 NamedRegionTimer T("DAG Combining after legalize vectors", GroupName);
566 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
567 } else {
568 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
569 }
570
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000571 DEBUG(errs() << "Optimized vector-legalized selection DAG:\n");
Eli Friedman5c22c802009-05-23 12:35:30 +0000572 DEBUG(CurDAG->dump());
573 }
Chris Lattner70587ea2008-07-10 23:37:50 +0000574 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000575
Dan Gohmanf350b272008-08-23 02:25:05 +0000576 if (ViewLegalizeDAGs) CurDAG->viewGraph("legalize input for " + BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000577
Evan Chengebffb662008-07-01 17:59:20 +0000578 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000579 NamedRegionTimer T("DAG Legalization", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000580 CurDAG->Legalize(DisableLegalizeTypes, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000581 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000582 CurDAG->Legalize(DisableLegalizeTypes, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000583 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000584
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000585 DEBUG(errs() << "Legalized selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000586 DEBUG(CurDAG->dump());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000587
Dan Gohmanf350b272008-08-23 02:25:05 +0000588 if (ViewDAGCombine2) CurDAG->viewGraph("dag-combine2 input for " + BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000589
Chris Lattneraf21d552005-10-10 16:47:10 +0000590 // Run the DAG combiner in post-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +0000591 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000592 NamedRegionTimer T("DAG Combining 2", GroupName);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000593 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000594 } else {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000595 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
Evan Chengebffb662008-07-01 17:59:20 +0000596 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000597
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000598 DEBUG(errs() << "Optimized legalized selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000599 DEBUG(CurDAG->dump());
Dan Gohman417e11b2007-10-08 15:12:17 +0000600
Dan Gohmanf350b272008-08-23 02:25:05 +0000601 if (ViewISelDAGs) CurDAG->viewGraph("isel input for " + BlockName);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000602
Bill Wendling98a366d2009-04-29 23:29:43 +0000603 if (OptLevel != CodeGenOpt::None)
Dan Gohmanf350b272008-08-23 02:25:05 +0000604 ComputeLiveOutVRegInfo();
Evan Cheng552c4a82006-04-28 02:09:19 +0000605
Chris Lattnera33ef482005-03-30 01:10:47 +0000606 // Third, instruction select all of the operations to machine code, adding the
607 // code to the MachineBasicBlock.
Evan Chengebffb662008-07-01 17:59:20 +0000608 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000609 NamedRegionTimer T("Instruction Selection", GroupName);
Dan Gohmanf350b272008-08-23 02:25:05 +0000610 InstructionSelect();
Evan Chengebffb662008-07-01 17:59:20 +0000611 } else {
Dan Gohmanf350b272008-08-23 02:25:05 +0000612 InstructionSelect();
Evan Chengebffb662008-07-01 17:59:20 +0000613 }
Evan Chengdb8d56b2008-06-30 20:45:06 +0000614
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000615 DEBUG(errs() << "Selected selection DAG:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000616 DEBUG(CurDAG->dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +0000617
Dan Gohmanf350b272008-08-23 02:25:05 +0000618 if (ViewSchedDAGs) CurDAG->viewGraph("scheduler input for " + BlockName);
Dan Gohman462dc7f2008-07-21 20:00:07 +0000619
Dan Gohman5e843682008-07-14 18:19:29 +0000620 // Schedule machine code.
Dan Gohman47ac0f02009-02-11 04:27:20 +0000621 ScheduleDAGSDNodes *Scheduler = CreateScheduler();
Dan Gohman5e843682008-07-14 18:19:29 +0000622 if (TimePassesIsEnabled) {
623 NamedRegionTimer T("Instruction Scheduling", GroupName);
Dan Gohman47ac0f02009-02-11 04:27:20 +0000624 Scheduler->Run(CurDAG, BB, BB->end());
Dan Gohman5e843682008-07-14 18:19:29 +0000625 } else {
Dan Gohman47ac0f02009-02-11 04:27:20 +0000626 Scheduler->Run(CurDAG, BB, BB->end());
Dan Gohman5e843682008-07-14 18:19:29 +0000627 }
628
Dan Gohman462dc7f2008-07-21 20:00:07 +0000629 if (ViewSUnitDAGs) Scheduler->viewGraph();
630
Daniel Dunbara279bc32009-09-20 02:20:51 +0000631 // Emit machine code to BB. This can change 'BB' to the last block being
Evan Chengdb8d56b2008-06-30 20:45:06 +0000632 // inserted into.
Evan Chengebffb662008-07-01 17:59:20 +0000633 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +0000634 NamedRegionTimer T("Instruction Creation", GroupName);
Evan Chengfb2e7522009-09-18 21:02:19 +0000635 BB = Scheduler->EmitSchedule(&SDL->EdgeMapping);
Evan Chengebffb662008-07-01 17:59:20 +0000636 } else {
Evan Chengfb2e7522009-09-18 21:02:19 +0000637 BB = Scheduler->EmitSchedule(&SDL->EdgeMapping);
Dan Gohman5e843682008-07-14 18:19:29 +0000638 }
639
640 // Free the scheduler state.
641 if (TimePassesIsEnabled) {
642 NamedRegionTimer T("Instruction Scheduling Cleanup", GroupName);
643 delete Scheduler;
644 } else {
645 delete Scheduler;
Evan Chengebffb662008-07-01 17:59:20 +0000646 }
Evan Chengdb8d56b2008-06-30 20:45:06 +0000647
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000648 DEBUG(errs() << "Selected machine code:\n");
Chris Lattner1c08c712005-01-07 07:47:53 +0000649 DEBUG(BB->dump());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000650}
Chris Lattner1c08c712005-01-07 07:47:53 +0000651
Dan Gohman79ce2762009-01-15 19:20:50 +0000652void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn,
653 MachineFunction &MF,
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000654 MachineModuleInfo *MMI,
Devang Patel83489bb2009-01-13 00:35:13 +0000655 DwarfWriter *DW,
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000656 const TargetInstrInfo &TII) {
Dan Gohmana43abd12008-09-29 21:55:50 +0000657 // Initialize the Fast-ISel state, if needed.
658 FastISel *FastIS = 0;
659 if (EnableFastISel)
Dan Gohman79ce2762009-01-15 19:20:50 +0000660 FastIS = TLI.createFastISel(MF, MMI, DW,
Dan Gohmana43abd12008-09-29 21:55:50 +0000661 FuncInfo->ValueMap,
662 FuncInfo->MBBMap,
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000663 FuncInfo->StaticAllocaMap
664#ifndef NDEBUG
665 , FuncInfo->CatchInfoLost
666#endif
667 );
Dan Gohmana43abd12008-09-29 21:55:50 +0000668
Devang Patele30e6782009-09-28 21:41:20 +0000669 MetadataContext &TheMetadata = Fn.getContext().getMetadata();
Devang Patela2148402009-09-28 21:14:55 +0000670 unsigned MDDbgKind = TheMetadata.getMDKind("dbg");
Devang Patel123eaa72009-09-16 20:39:11 +0000671
Dan Gohmana43abd12008-09-29 21:55:50 +0000672 // Iterate over all basic blocks in the function.
Evan Cheng39fd6e82008-08-07 00:43:25 +0000673 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) {
674 BasicBlock *LLVMBB = &*I;
Dan Gohman7c3234c2008-08-27 23:52:12 +0000675 BB = FuncInfo->MBBMap[LLVMBB];
Dan Gohmanf350b272008-08-23 02:25:05 +0000676
Dan Gohman3df24e62008-09-03 23:12:08 +0000677 BasicBlock::iterator const Begin = LLVMBB->begin();
678 BasicBlock::iterator const End = LLVMBB->end();
Evan Cheng9f118502008-09-08 16:01:27 +0000679 BasicBlock::iterator BI = Begin;
Dan Gohman5edd3612008-08-28 20:28:56 +0000680
681 // Lower any arguments needed in this block if this is the entry block.
Dan Gohman33134c42008-09-25 17:05:24 +0000682 bool SuppressFastISel = false;
683 if (LLVMBB == &Fn.getEntryBlock()) {
Dan Gohman5edd3612008-08-28 20:28:56 +0000684 LowerArguments(LLVMBB);
Dan Gohmanf350b272008-08-23 02:25:05 +0000685
Dan Gohman33134c42008-09-25 17:05:24 +0000686 // If any of the arguments has the byval attribute, forgo
687 // fast-isel in the entry block.
Dan Gohmana43abd12008-09-29 21:55:50 +0000688 if (FastIS) {
Dan Gohman33134c42008-09-25 17:05:24 +0000689 unsigned j = 1;
690 for (Function::arg_iterator I = Fn.arg_begin(), E = Fn.arg_end();
691 I != E; ++I, ++j)
Devang Patel05988662008-09-25 21:00:45 +0000692 if (Fn.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohman77ca41e2008-09-25 17:21:42 +0000693 if (EnableFastISelVerbose || EnableFastISelAbort)
Chris Lattner4437ae22009-08-23 07:05:07 +0000694 errs() << "FastISel skips entry block due to byval argument\n";
Dan Gohman33134c42008-09-25 17:05:24 +0000695 SuppressFastISel = true;
696 break;
697 }
698 }
699 }
700
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000701 if (MMI && BB->isLandingPad()) {
702 // Add a label to mark the beginning of the landing pad. Deletion of the
703 // landing pad can thus be detected via the MachineModuleInfo.
704 unsigned LabelID = MMI->addLandingPad(BB);
705
706 const TargetInstrDesc &II = TII.get(TargetInstrInfo::EH_LABEL);
Bill Wendlingb2884872009-02-03 01:55:42 +0000707 BuildMI(BB, SDL->getCurDebugLoc(), II).addImm(LabelID);
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000708
709 // Mark exception register as live in.
710 unsigned Reg = TLI.getExceptionAddressRegister();
711 if (Reg) BB->addLiveIn(Reg);
712
713 // Mark exception selector register as live in.
714 Reg = TLI.getExceptionSelectorRegister();
715 if (Reg) BB->addLiveIn(Reg);
716
717 // FIXME: Hack around an exception handling flaw (PR1508): the personality
718 // function and list of typeids logically belong to the invoke (or, if you
719 // like, the basic block containing the invoke), and need to be associated
720 // with it in the dwarf exception handling tables. Currently however the
721 // information is provided by an intrinsic (eh.selector) that can be moved
722 // to unexpected places by the optimizers: if the unwind edge is critical,
723 // then breaking it can result in the intrinsics being in the successor of
724 // the landing pad, not the landing pad itself. This results in exceptions
725 // not being caught because no typeids are associated with the invoke.
726 // This may not be the only way things can go wrong, but it is the only way
727 // we try to work around for the moment.
728 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
729
730 if (Br && Br->isUnconditional()) { // Critical edge?
731 BasicBlock::iterator I, E;
732 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
733 if (isa<EHSelectorInst>(I))
734 break;
735
736 if (I == E)
737 // No catch info found - try to extract some from the successor.
738 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, *FuncInfo);
739 }
740 }
741
Dan Gohmanf350b272008-08-23 02:25:05 +0000742 // Before doing SelectionDAG ISel, see if FastISel has been requested.
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000743 if (FastIS && !SuppressFastISel) {
Dan Gohmana43abd12008-09-29 21:55:50 +0000744 // Emit code for any incoming arguments. This must happen before
745 // beginning FastISel on the entry block.
746 if (LLVMBB == &Fn.getEntryBlock()) {
747 CurDAG->setRoot(SDL->getControlRoot());
748 CodeGenAndEmitDAG();
749 SDL->clear();
750 }
Dan Gohman241f4642008-10-04 00:56:36 +0000751 FastIS->startNewBlock(BB);
Dan Gohmana43abd12008-09-29 21:55:50 +0000752 // Do FastISel on as many instructions as possible.
753 for (; BI != End; ++BI) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000754 if (MDDbgKind) {
755 // Update DebugLoc if debug information is attached with this
756 // instruction.
Devang Patel53bb5c92009-11-10 23:06:00 +0000757 if (!isa<DbgInfoIntrinsic>(BI))
758 if (MDNode *Dbg = TheMetadata.getMD(MDDbgKind, BI)) {
759 DILocation DILoc(Dbg);
760 DebugLoc Loc = ExtractDebugLocation(DILoc,
761 MF.getDebugLocInfo());
762 FastIS->setCurDebugLoc(Loc);
763 if (MF.getDefaultDebugLoc().isUnknown())
764 MF.setDefaultDebugLoc(Loc);
765 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000766 }
Devang Patel123eaa72009-09-16 20:39:11 +0000767
Dan Gohmana43abd12008-09-29 21:55:50 +0000768 // Just before the terminator instruction, insert instructions to
769 // feed PHI nodes in successor blocks.
770 if (isa<TerminatorInst>(BI))
771 if (!HandlePHINodesInSuccessorBlocksFast(LLVMBB, FastIS)) {
Dan Gohman4344a5d2008-09-09 23:05:00 +0000772 if (EnableFastISelVerbose || EnableFastISelAbort) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000773 errs() << "FastISel miss: ";
Dan Gohman293d5f82008-09-09 22:06:46 +0000774 BI->dump();
775 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000776 assert(!EnableFastISelAbort &&
Torok Edwinf3689232009-07-12 20:07:01 +0000777 "FastISel didn't handle a PHI in a successor");
Dan Gohmana43abd12008-09-29 21:55:50 +0000778 break;
Dan Gohmanf350b272008-08-23 02:25:05 +0000779 }
Dan Gohmana43abd12008-09-29 21:55:50 +0000780
781 // First try normal tablegen-generated "fast" selection.
782 if (FastIS->SelectInstruction(BI))
783 continue;
784
785 // Next, try calling the target to attempt to handle the instruction.
786 if (FastIS->TargetSelectInstruction(BI))
787 continue;
788
789 // Then handle certain instructions as single-LLVM-Instruction blocks.
790 if (isa<CallInst>(BI)) {
791 if (EnableFastISelVerbose || EnableFastISelAbort) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000792 errs() << "FastISel missed call: ";
Dan Gohmana43abd12008-09-29 21:55:50 +0000793 BI->dump();
794 }
795
Owen Anderson1d0be152009-08-13 21:58:54 +0000796 if (BI->getType() != Type::getVoidTy(*CurDAG->getContext())) {
Dan Gohmana43abd12008-09-29 21:55:50 +0000797 unsigned &R = FuncInfo->ValueMap[BI];
798 if (!R)
799 R = FuncInfo->CreateRegForValue(BI);
800 }
801
Devang Patel390f3ac2009-04-16 01:33:10 +0000802 SDL->setCurDebugLoc(FastIS->getCurDebugLoc());
Dan Gohmanb4afb132009-11-20 02:51:26 +0000803
804 bool HadTailCall = false;
805 SelectBasicBlock(LLVMBB, BI, next(BI), HadTailCall);
806
807 // If the call was emitted as a tail call, we're done with the block.
808 if (HadTailCall) {
809 BI = End;
810 break;
811 }
812
Dan Gohman241f4642008-10-04 00:56:36 +0000813 // If the instruction was codegen'd with multiple blocks,
814 // inform the FastISel object where to resume inserting.
815 FastIS->setCurrentBlock(BB);
Dan Gohmana43abd12008-09-29 21:55:50 +0000816 continue;
Dan Gohmanf350b272008-08-23 02:25:05 +0000817 }
Dan Gohmana43abd12008-09-29 21:55:50 +0000818
819 // Otherwise, give up on FastISel for the rest of the block.
820 // For now, be a little lenient about non-branch terminators.
821 if (!isa<TerminatorInst>(BI) || isa<BranchInst>(BI)) {
822 if (EnableFastISelVerbose || EnableFastISelAbort) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000823 errs() << "FastISel miss: ";
Dan Gohmana43abd12008-09-29 21:55:50 +0000824 BI->dump();
825 }
826 if (EnableFastISelAbort)
827 // The "fast" selector couldn't handle something and bailed.
828 // For the purpose of debugging, just abort.
Torok Edwinc23197a2009-07-14 16:55:14 +0000829 llvm_unreachable("FastISel didn't select the entire block");
Dan Gohmana43abd12008-09-29 21:55:50 +0000830 }
831 break;
Dan Gohmanf350b272008-08-23 02:25:05 +0000832 }
833 }
834
Dan Gohmand2ff6472008-09-02 20:17:56 +0000835 // Run SelectionDAG instruction selection on the remainder of the block
836 // not handled by FastISel. If FastISel is not run, this is the entire
Dan Gohman3df24e62008-09-03 23:12:08 +0000837 // block.
Devang Patel390f3ac2009-04-16 01:33:10 +0000838 if (BI != End) {
839 // If FastISel is run and it has known DebugLoc then use it.
840 if (FastIS && !FastIS->getCurDebugLoc().isUnknown())
841 SDL->setCurDebugLoc(FastIS->getCurDebugLoc());
Dan Gohmanb4afb132009-11-20 02:51:26 +0000842 bool HadTailCall;
843 SelectBasicBlock(LLVMBB, BI, End, HadTailCall);
Devang Patel390f3ac2009-04-16 01:33:10 +0000844 }
Dan Gohmanf350b272008-08-23 02:25:05 +0000845
Dan Gohman7c3234c2008-08-27 23:52:12 +0000846 FinishBasicBlock();
Evan Cheng39fd6e82008-08-07 00:43:25 +0000847 }
Dan Gohmana43abd12008-09-29 21:55:50 +0000848
849 delete FastIS;
Dan Gohman0e5f1302008-07-07 23:02:41 +0000850}
851
Dan Gohmanfed90b62008-07-28 21:51:04 +0000852void
Dan Gohman7c3234c2008-08-27 23:52:12 +0000853SelectionDAGISel::FinishBasicBlock() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000854
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000855 DEBUG(errs() << "Target-post-processed machine code:\n");
Dan Gohmanf350b272008-08-23 02:25:05 +0000856 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +0000857
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000858 DEBUG(errs() << "Total amount of phi nodes to update: "
859 << SDL->PHINodesToUpdate.size() << "\n");
Dan Gohman7c3234c2008-08-27 23:52:12 +0000860 DEBUG(for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i)
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000861 errs() << "Node " << i << " : ("
862 << SDL->PHINodesToUpdate[i].first
863 << ", " << SDL->PHINodesToUpdate[i].second << ")\n");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000864
Chris Lattnera33ef482005-03-30 01:10:47 +0000865 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +0000866 // PHI nodes in successors.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000867 if (SDL->SwitchCases.empty() &&
868 SDL->JTCases.empty() &&
869 SDL->BitTestCases.empty()) {
870 for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i) {
871 MachineInstr *PHI = SDL->PHINodesToUpdate[i].first;
Nate Begemanf15485a2006-03-27 01:32:24 +0000872 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
873 "This is not a machine PHI node that we are updating!");
Dan Gohman7c3234c2008-08-27 23:52:12 +0000874 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[i].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000875 false));
876 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begemanf15485a2006-03-27 01:32:24 +0000877 }
Dan Gohman7c3234c2008-08-27 23:52:12 +0000878 SDL->PHINodesToUpdate.clear();
Nate Begemanf15485a2006-03-27 01:32:24 +0000879 return;
Chris Lattner1c08c712005-01-07 07:47:53 +0000880 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000881
Dan Gohman7c3234c2008-08-27 23:52:12 +0000882 for (unsigned i = 0, e = SDL->BitTestCases.size(); i != e; ++i) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000883 // Lower header first, if it wasn't already lowered
Dan Gohman7c3234c2008-08-27 23:52:12 +0000884 if (!SDL->BitTestCases[i].Emitted) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000885 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000886 BB = SDL->BitTestCases[i].Parent;
887 SDL->setCurrentBasicBlock(BB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000888 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +0000889 SDL->visitBitTestHeader(SDL->BitTestCases[i]);
890 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000891 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000892 SDL->clear();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000893 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000894
Dan Gohman7c3234c2008-08-27 23:52:12 +0000895 for (unsigned j = 0, ej = SDL->BitTestCases[i].Cases.size(); j != ej; ++j) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000896 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000897 BB = SDL->BitTestCases[i].Cases[j].ThisBB;
898 SDL->setCurrentBasicBlock(BB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000899 // Emit the code
900 if (j+1 != ej)
Dan Gohman7c3234c2008-08-27 23:52:12 +0000901 SDL->visitBitTestCase(SDL->BitTestCases[i].Cases[j+1].ThisBB,
902 SDL->BitTestCases[i].Reg,
903 SDL->BitTestCases[i].Cases[j]);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000904 else
Dan Gohman7c3234c2008-08-27 23:52:12 +0000905 SDL->visitBitTestCase(SDL->BitTestCases[i].Default,
906 SDL->BitTestCases[i].Reg,
907 SDL->BitTestCases[i].Cases[j]);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000908
909
Dan Gohman7c3234c2008-08-27 23:52:12 +0000910 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000911 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000912 SDL->clear();
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000913 }
914
915 // Update PHI Nodes
Dan Gohman7c3234c2008-08-27 23:52:12 +0000916 for (unsigned pi = 0, pe = SDL->PHINodesToUpdate.size(); pi != pe; ++pi) {
917 MachineInstr *PHI = SDL->PHINodesToUpdate[pi].first;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000918 MachineBasicBlock *PHIBB = PHI->getParent();
919 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
920 "This is not a machine PHI node that we are updating!");
921 // This is "default" BB. We have two jumps to it. From "header" BB and
922 // from last "case" BB.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000923 if (PHIBB == SDL->BitTestCases[i].Default) {
924 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000925 false));
Dan Gohman7c3234c2008-08-27 23:52:12 +0000926 PHI->addOperand(MachineOperand::CreateMBB(SDL->BitTestCases[i].Parent));
927 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000928 false));
Dan Gohman7c3234c2008-08-27 23:52:12 +0000929 PHI->addOperand(MachineOperand::CreateMBB(SDL->BitTestCases[i].Cases.
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000930 back().ThisBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000931 }
932 // One of "cases" BB.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000933 for (unsigned j = 0, ej = SDL->BitTestCases[i].Cases.size();
934 j != ej; ++j) {
935 MachineBasicBlock* cBB = SDL->BitTestCases[i].Cases[j].ThisBB;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000936 if (cBB->succ_end() !=
937 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Dan Gohman7c3234c2008-08-27 23:52:12 +0000938 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000939 false));
940 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000941 }
942 }
943 }
944 }
Dan Gohman7c3234c2008-08-27 23:52:12 +0000945 SDL->BitTestCases.clear();
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000946
Nate Begeman9453eea2006-04-23 06:26:20 +0000947 // If the JumpTable record is filled in, then we need to emit a jump table.
948 // Updating the PHI nodes is tricky in this case, since we need to determine
949 // whether the PHI is a successor of the range check MBB or the jump table MBB
Dan Gohman7c3234c2008-08-27 23:52:12 +0000950 for (unsigned i = 0, e = SDL->JTCases.size(); i != e; ++i) {
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000951 // Lower header first, if it wasn't already lowered
Dan Gohman7c3234c2008-08-27 23:52:12 +0000952 if (!SDL->JTCases[i].first.Emitted) {
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000953 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000954 BB = SDL->JTCases[i].first.HeaderBB;
955 SDL->setCurrentBasicBlock(BB);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000956 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +0000957 SDL->visitJumpTableHeader(SDL->JTCases[i].second, SDL->JTCases[i].first);
958 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000959 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000960 SDL->clear();
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000961 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000962
Nate Begeman37efe672006-04-22 18:53:45 +0000963 // Set the current basic block to the mbb we wish to insert the code into
Dan Gohman7c3234c2008-08-27 23:52:12 +0000964 BB = SDL->JTCases[i].second.MBB;
965 SDL->setCurrentBasicBlock(BB);
Nate Begeman37efe672006-04-22 18:53:45 +0000966 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +0000967 SDL->visitJumpTable(SDL->JTCases[i].second);
968 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +0000969 CodeGenAndEmitDAG();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000970 SDL->clear();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000971
Nate Begeman37efe672006-04-22 18:53:45 +0000972 // Update PHI Nodes
Dan Gohman7c3234c2008-08-27 23:52:12 +0000973 for (unsigned pi = 0, pe = SDL->PHINodesToUpdate.size(); pi != pe; ++pi) {
974 MachineInstr *PHI = SDL->PHINodesToUpdate[pi].first;
Nate Begeman37efe672006-04-22 18:53:45 +0000975 MachineBasicBlock *PHIBB = PHI->getParent();
976 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
977 "This is not a machine PHI node that we are updating!");
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000978 // "default" BB. We can go there only from header BB.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000979 if (PHIBB == SDL->JTCases[i].second.Default) {
Evan Chengce319102009-09-19 09:51:03 +0000980 PHI->addOperand
981 (MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second, false));
982 PHI->addOperand
983 (MachineOperand::CreateMBB(SDL->JTCases[i].first.HeaderBB));
Nate Begemanf4360a42006-05-03 03:48:02 +0000984 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000985 // JT BB. Just iterate over successors here
Nate Begemanf4360a42006-05-03 03:48:02 +0000986 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Evan Chengce319102009-09-19 09:51:03 +0000987 PHI->addOperand
988 (MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second, false));
Chris Lattner9ce2e9d2007-12-30 00:57:42 +0000989 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begeman37efe672006-04-22 18:53:45 +0000990 }
991 }
Nate Begeman37efe672006-04-22 18:53:45 +0000992 }
Dan Gohman7c3234c2008-08-27 23:52:12 +0000993 SDL->JTCases.clear();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000994
Chris Lattnerb2e806e2006-10-22 23:00:53 +0000995 // If the switch block involved a branch to one of the actual successors, we
996 // need to update PHI nodes in that block.
Dan Gohman7c3234c2008-08-27 23:52:12 +0000997 for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i) {
998 MachineInstr *PHI = SDL->PHINodesToUpdate[i].first;
Chris Lattnerb2e806e2006-10-22 23:00:53 +0000999 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
1000 "This is not a machine PHI node that we are updating!");
1001 if (BB->isSuccessor(PHI->getParent())) {
Dan Gohman7c3234c2008-08-27 23:52:12 +00001002 PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[i].second,
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00001003 false));
1004 PHI->addOperand(MachineOperand::CreateMBB(BB));
Chris Lattnerb2e806e2006-10-22 23:00:53 +00001005 }
1006 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001007
Nate Begemanf15485a2006-03-27 01:32:24 +00001008 // If we generated any switch lowering information, build and codegen any
1009 // additional DAGs necessary.
Dan Gohman7c3234c2008-08-27 23:52:12 +00001010 for (unsigned i = 0, e = SDL->SwitchCases.size(); i != e; ++i) {
Nate Begemanf15485a2006-03-27 01:32:24 +00001011 // Set the current basic block to the mbb we wish to insert the code into
Evan Chengfb2e7522009-09-18 21:02:19 +00001012 MachineBasicBlock *ThisBB = BB = SDL->SwitchCases[i].ThisBB;
Dan Gohman7c3234c2008-08-27 23:52:12 +00001013 SDL->setCurrentBasicBlock(BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001014
Nate Begemanf15485a2006-03-27 01:32:24 +00001015 // Emit the code
Dan Gohman7c3234c2008-08-27 23:52:12 +00001016 SDL->visitSwitchCase(SDL->SwitchCases[i]);
1017 CurDAG->setRoot(SDL->getRoot());
Dan Gohmanf350b272008-08-23 02:25:05 +00001018 CodeGenAndEmitDAG();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001019
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001020 // Handle any PHI nodes in successors of this chunk, as if we were coming
1021 // from the original BB before switch expansion. Note that PHI nodes can
1022 // occur multiple times in PHINodesToUpdate. We have to be very careful to
1023 // handle them the right number of times.
Dan Gohman7c3234c2008-08-27 23:52:12 +00001024 while ((BB = SDL->SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
Evan Chengfb2e7522009-09-18 21:02:19 +00001025 // If new BB's are created during scheduling, the edges may have been
Evan Chengce319102009-09-19 09:51:03 +00001026 // updated. That is, the edge from ThisBB to BB may have been split and
1027 // BB's predecessor is now another block.
Evan Chengfb2e7522009-09-18 21:02:19 +00001028 DenseMap<MachineBasicBlock*, MachineBasicBlock*>::iterator EI =
1029 SDL->EdgeMapping.find(BB);
1030 if (EI != SDL->EdgeMapping.end())
1031 ThisBB = EI->second;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001032 for (MachineBasicBlock::iterator Phi = BB->begin();
1033 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
1034 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
1035 for (unsigned pn = 0; ; ++pn) {
Dan Gohman7c3234c2008-08-27 23:52:12 +00001036 assert(pn != SDL->PHINodesToUpdate.size() &&
1037 "Didn't find PHI entry!");
Evan Cheng8be58a12009-09-18 08:26:06 +00001038 if (SDL->PHINodesToUpdate[pn].first == Phi) {
1039 Phi->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pn].
1040 second, false));
Evan Chengfb2e7522009-09-18 21:02:19 +00001041 Phi->addOperand(MachineOperand::CreateMBB(ThisBB));
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001042 break;
Evan Cheng8be58a12009-09-18 08:26:06 +00001043 }
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001044 }
Nate Begemanf15485a2006-03-27 01:32:24 +00001045 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001046
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001047 // Don't process RHS if same block as LHS.
Dan Gohman7c3234c2008-08-27 23:52:12 +00001048 if (BB == SDL->SwitchCases[i].FalseBB)
1049 SDL->SwitchCases[i].FalseBB = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001050
Chris Lattnerd5e93c02006-09-07 01:59:34 +00001051 // If we haven't handled the RHS, do so now. Otherwise, we're done.
Dan Gohman7c3234c2008-08-27 23:52:12 +00001052 SDL->SwitchCases[i].TrueBB = SDL->SwitchCases[i].FalseBB;
1053 SDL->SwitchCases[i].FalseBB = 0;
Nate Begemanf15485a2006-03-27 01:32:24 +00001054 }
Dan Gohman7c3234c2008-08-27 23:52:12 +00001055 assert(SDL->SwitchCases[i].TrueBB == 0 && SDL->SwitchCases[i].FalseBB == 0);
Evan Chengfb2e7522009-09-18 21:02:19 +00001056 SDL->clear();
Chris Lattnera33ef482005-03-30 01:10:47 +00001057 }
Dan Gohman7c3234c2008-08-27 23:52:12 +00001058 SDL->SwitchCases.clear();
1059
1060 SDL->PHINodesToUpdate.clear();
Chris Lattner1c08c712005-01-07 07:47:53 +00001061}
Evan Chenga9c20912006-01-21 02:32:06 +00001062
Jim Laskey13ec7022006-08-01 14:21:23 +00001063
Dan Gohman0a3776d2009-02-06 18:26:51 +00001064/// Create the scheduler. If a specific scheduler was specified
1065/// via the SchedulerRegistry, use it, otherwise select the
1066/// one preferred by the target.
Dan Gohman5e843682008-07-14 18:19:29 +00001067///
Dan Gohman47ac0f02009-02-11 04:27:20 +00001068ScheduleDAGSDNodes *SelectionDAGISel::CreateScheduler() {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00001069 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001070
Jim Laskey13ec7022006-08-01 14:21:23 +00001071 if (!Ctor) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00001072 Ctor = ISHeuristic;
Jim Laskey9373beb2006-08-01 19:14:14 +00001073 RegisterScheduler::setDefault(Ctor);
Evan Cheng4ef10862006-01-23 07:01:07 +00001074 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001075
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00001076 return Ctor(this, OptLevel);
Evan Chenga9c20912006-01-21 02:32:06 +00001077}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001078
Dan Gohmanfc54c552009-01-15 22:18:12 +00001079ScheduleHazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
1080 return new ScheduleHazardRecognizer();
Jim Laskey9ff542f2006-08-01 18:29:48 +00001081}
1082
Chris Lattner75548062006-10-11 03:58:02 +00001083//===----------------------------------------------------------------------===//
1084// Helper functions used by the generated instruction selector.
1085//===----------------------------------------------------------------------===//
1086// Calls to these methods are generated by tblgen.
1087
1088/// CheckAndMask - The isel is trying to match something like (and X, 255). If
1089/// the dag combiner simplified the 255, we still want to match. RHS is the
1090/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
1091/// specified in the .td file (e.g. 255).
Daniel Dunbara279bc32009-09-20 02:20:51 +00001092bool SelectionDAGISel::CheckAndMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohmandc9b3d02007-07-24 23:00:27 +00001093 int64_t DesiredMaskS) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001094 const APInt &ActualMask = RHS->getAPIntValue();
1095 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001096
Chris Lattner75548062006-10-11 03:58:02 +00001097 // If the actual mask exactly matches, success!
1098 if (ActualMask == DesiredMask)
1099 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001100
Chris Lattner75548062006-10-11 03:58:02 +00001101 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001102 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00001103 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001104
Chris Lattner75548062006-10-11 03:58:02 +00001105 // Otherwise, the DAG Combiner may have proven that the value coming in is
1106 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001107 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001108 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
Chris Lattner75548062006-10-11 03:58:02 +00001109 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001110
Chris Lattner75548062006-10-11 03:58:02 +00001111 // TODO: check to see if missing bits are just not demanded.
1112
1113 // Otherwise, this pattern doesn't match.
1114 return false;
1115}
1116
1117/// CheckOrMask - The isel is trying to match something like (or X, 255). If
1118/// the dag combiner simplified the 255, we still want to match. RHS is the
1119/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
1120/// specified in the .td file (e.g. 255).
Daniel Dunbara279bc32009-09-20 02:20:51 +00001121bool SelectionDAGISel::CheckOrMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001122 int64_t DesiredMaskS) const {
1123 const APInt &ActualMask = RHS->getAPIntValue();
1124 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001125
Chris Lattner75548062006-10-11 03:58:02 +00001126 // If the actual mask exactly matches, success!
1127 if (ActualMask == DesiredMask)
1128 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001129
Chris Lattner75548062006-10-11 03:58:02 +00001130 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001131 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00001132 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001133
Chris Lattner75548062006-10-11 03:58:02 +00001134 // Otherwise, the DAG Combiner may have proven that the value coming in is
1135 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001136 APInt NeededMask = DesiredMask & ~ActualMask;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001137
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001138 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001139 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001140
Chris Lattner75548062006-10-11 03:58:02 +00001141 // If all the missing bits in the or are already known to be set, match!
1142 if ((NeededMask & KnownOne) == NeededMask)
1143 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001144
Chris Lattner75548062006-10-11 03:58:02 +00001145 // TODO: check to see if missing bits are just not demanded.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001146
Chris Lattner75548062006-10-11 03:58:02 +00001147 // Otherwise, this pattern doesn't match.
1148 return false;
1149}
1150
Jim Laskey9ff542f2006-08-01 18:29:48 +00001151
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001152/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
1153/// by tblgen. Others should not call it.
1154void SelectionDAGISel::
Dan Gohmanf350b272008-08-23 02:25:05 +00001155SelectInlineAsmMemoryOperands(std::vector<SDValue> &Ops) {
Dan Gohman475871a2008-07-27 21:46:04 +00001156 std::vector<SDValue> InOps;
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001157 std::swap(InOps, Ops);
1158
1159 Ops.push_back(InOps[0]); // input chain.
1160 Ops.push_back(InOps[1]); // input asm string.
1161
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001162 unsigned i = 2, e = InOps.size();
Owen Anderson825b72b2009-08-11 20:47:22 +00001163 if (InOps[e-1].getValueType() == MVT::Flag)
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001164 --e; // Don't process a flag operand if it is here.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001165
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001166 while (i != e) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001167 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getZExtValue();
Dale Johannesen86b49f82008-09-24 01:07:17 +00001168 if ((Flags & 7) != 4 /*MEM*/) {
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001169 // Just skip over this operand, copying the operands verbatim.
Evan Cheng697cbbf2009-03-20 18:03:34 +00001170 Ops.insert(Ops.end(), InOps.begin()+i,
1171 InOps.begin()+i+InlineAsm::getNumOperandRegisters(Flags) + 1);
1172 i += InlineAsm::getNumOperandRegisters(Flags) + 1;
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001173 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00001174 assert(InlineAsm::getNumOperandRegisters(Flags) == 1 &&
1175 "Memory operand with multiple values?");
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001176 // Otherwise, this is a memory operand. Ask the target to select it.
Dan Gohman475871a2008-07-27 21:46:04 +00001177 std::vector<SDValue> SelOps;
Dan Gohmanf350b272008-08-23 02:25:05 +00001178 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps)) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001179 llvm_report_error("Could not match memory address. Inline asm"
1180 " failure!");
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001181 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001182
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001183 // Add this to the output node.
Owen Andersone50ed302009-08-10 22:56:29 +00001184 EVT IntPtrTy = TLI.getPointerTy();
Dale Johannesen86b49f82008-09-24 01:07:17 +00001185 Ops.push_back(CurDAG->getTargetConstant(4/*MEM*/ | (SelOps.size()<< 3),
Dan Gohmanf350b272008-08-23 02:25:05 +00001186 IntPtrTy));
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001187 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
1188 i += 2;
1189 }
1190 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001191
Chris Lattner0e43f2b2006-02-24 02:13:54 +00001192 // Add the flag input back if present.
1193 if (e != InOps.size())
1194 Ops.push_back(InOps.back());
1195}
Devang Patel794fd752007-05-01 21:15:47 +00001196
Owen Andersone50ed302009-08-10 22:56:29 +00001197/// findFlagUse - Return use of EVT::Flag value produced by the specified
Anton Korobeynikovc1c6ef82009-05-08 18:51:58 +00001198/// SDNode.
1199///
1200static SDNode *findFlagUse(SDNode *N) {
1201 unsigned FlagResNo = N->getNumValues()-1;
1202 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
1203 SDUse &Use = I.getUse();
1204 if (Use.getResNo() == FlagResNo)
1205 return Use.getUser();
1206 }
1207 return NULL;
1208}
1209
1210/// findNonImmUse - Return true if "Use" is a non-immediate use of "Def".
1211/// This function recursively traverses up the operand chain, ignoring
1212/// certain nodes.
1213static bool findNonImmUse(SDNode *Use, SDNode* Def, SDNode *ImmedUse,
1214 SDNode *Root,
1215 SmallPtrSet<SDNode*, 16> &Visited) {
1216 if (Use->getNodeId() < Def->getNodeId() ||
1217 !Visited.insert(Use))
1218 return false;
1219
1220 for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
1221 SDNode *N = Use->getOperand(i).getNode();
1222 if (N == Def) {
1223 if (Use == ImmedUse || Use == Root)
1224 continue; // We are not looking for immediate use.
1225 assert(N != Root);
1226 return true;
1227 }
1228
1229 // Traverse up the operand chain.
1230 if (findNonImmUse(N, Def, ImmedUse, Root, Visited))
1231 return true;
1232 }
1233 return false;
1234}
1235
1236/// isNonImmUse - Start searching from Root up the DAG to check is Def can
1237/// be reached. Return true if that's the case. However, ignore direct uses
1238/// by ImmedUse (which would be U in the example illustrated in
1239/// IsLegalAndProfitableToFold) and by Root (which can happen in the store
1240/// case).
1241/// FIXME: to be really generic, we should allow direct use by any node
1242/// that is being folded. But realisticly since we only fold loads which
1243/// have one non-chain use, we only need to watch out for load/op/store
1244/// and load/op/cmp case where the root (store / cmp) may reach the load via
1245/// its chain operand.
1246static inline bool isNonImmUse(SDNode *Root, SDNode *Def, SDNode *ImmedUse) {
1247 SmallPtrSet<SDNode*, 16> Visited;
1248 return findNonImmUse(Root, Def, ImmedUse, Root, Visited);
1249}
1250
1251/// IsLegalAndProfitableToFold - Returns true if the specific operand node N of
1252/// U can be folded during instruction selection that starts at Root and
1253/// folding N is profitable.
1254bool SelectionDAGISel::IsLegalAndProfitableToFold(SDNode *N, SDNode *U,
1255 SDNode *Root) const {
1256 if (OptLevel == CodeGenOpt::None) return false;
1257
1258 // If Root use can somehow reach N through a path that that doesn't contain
1259 // U then folding N would create a cycle. e.g. In the following
1260 // diagram, Root can reach N through X. If N is folded into into Root, then
1261 // X is both a predecessor and a successor of U.
1262 //
1263 // [N*] //
1264 // ^ ^ //
1265 // / \ //
1266 // [U*] [X]? //
1267 // ^ ^ //
1268 // \ / //
1269 // \ / //
1270 // [Root*] //
1271 //
1272 // * indicates nodes to be folded together.
1273 //
1274 // If Root produces a flag, then it gets (even more) interesting. Since it
1275 // will be "glued" together with its flag use in the scheduler, we need to
1276 // check if it might reach N.
1277 //
1278 // [N*] //
1279 // ^ ^ //
1280 // / \ //
1281 // [U*] [X]? //
1282 // ^ ^ //
1283 // \ \ //
1284 // \ | //
1285 // [Root*] | //
1286 // ^ | //
1287 // f | //
1288 // | / //
1289 // [Y] / //
1290 // ^ / //
1291 // f / //
1292 // | / //
1293 // [FU] //
1294 //
1295 // If FU (flag use) indirectly reaches N (the load), and Root folds N
1296 // (call it Fold), then X is a predecessor of FU and a successor of
1297 // Fold. But since Fold and FU are flagged together, this will create
1298 // a cycle in the scheduling graph.
1299
Owen Andersone50ed302009-08-10 22:56:29 +00001300 EVT VT = Root->getValueType(Root->getNumValues()-1);
Owen Anderson825b72b2009-08-11 20:47:22 +00001301 while (VT == MVT::Flag) {
Anton Korobeynikovc1c6ef82009-05-08 18:51:58 +00001302 SDNode *FU = findFlagUse(Root);
1303 if (FU == NULL)
1304 break;
1305 Root = FU;
1306 VT = Root->getValueType(Root->getNumValues()-1);
1307 }
1308
1309 return !isNonImmUse(Root, N, U);
1310}
1311
Dan Gohmane1f188f2009-10-29 22:30:23 +00001312SDNode *SelectionDAGISel::Select_INLINEASM(SDValue N) {
1313 std::vector<SDValue> Ops(N.getNode()->op_begin(), N.getNode()->op_end());
1314 SelectInlineAsmMemoryOperands(Ops);
1315
1316 std::vector<EVT> VTs;
1317 VTs.push_back(MVT::Other);
1318 VTs.push_back(MVT::Flag);
1319 SDValue New = CurDAG->getNode(ISD::INLINEASM, N.getDebugLoc(),
1320 VTs, &Ops[0], Ops.size());
1321 return New.getNode();
1322}
1323
1324SDNode *SelectionDAGISel::Select_UNDEF(const SDValue &N) {
1325 return CurDAG->SelectNodeTo(N.getNode(), TargetInstrInfo::IMPLICIT_DEF,
1326 N.getValueType());
1327}
1328
1329SDNode *SelectionDAGISel::Select_DBG_LABEL(const SDValue &N) {
1330 SDValue Chain = N.getOperand(0);
1331 unsigned C = cast<LabelSDNode>(N)->getLabelID();
1332 SDValue Tmp = CurDAG->getTargetConstant(C, MVT::i32);
1333 return CurDAG->SelectNodeTo(N.getNode(), TargetInstrInfo::DBG_LABEL,
1334 MVT::Other, Tmp, Chain);
1335}
1336
1337SDNode *SelectionDAGISel::Select_EH_LABEL(const SDValue &N) {
1338 SDValue Chain = N.getOperand(0);
1339 unsigned C = cast<LabelSDNode>(N)->getLabelID();
1340 SDValue Tmp = CurDAG->getTargetConstant(C, MVT::i32);
1341 return CurDAG->SelectNodeTo(N.getNode(), TargetInstrInfo::EH_LABEL,
1342 MVT::Other, Tmp, Chain);
1343}
1344
1345void SelectionDAGISel::CannotYetSelect(SDValue N) {
1346 std::string msg;
1347 raw_string_ostream Msg(msg);
1348 Msg << "Cannot yet select: ";
1349 N.getNode()->print(Msg, CurDAG);
1350 llvm_report_error(Msg.str());
1351}
1352
1353void SelectionDAGISel::CannotYetSelectIntrinsic(SDValue N) {
1354 errs() << "Cannot yet select: ";
1355 unsigned iid =
1356 cast<ConstantSDNode>(N.getOperand(N.getOperand(0).getValueType() == MVT::Other))->getZExtValue();
1357 if (iid < Intrinsic::num_intrinsics)
1358 llvm_report_error("Cannot yet select: intrinsic %" + Intrinsic::getName((Intrinsic::ID)iid));
1359 else if (const TargetIntrinsicInfo *tii = TM.getIntrinsicInfo())
1360 llvm_report_error(Twine("Cannot yet select: target intrinsic %") +
1361 tii->getName(iid));
1362}
Anton Korobeynikovc1c6ef82009-05-08 18:51:58 +00001363
Devang Patel19974732007-05-03 01:11:54 +00001364char SelectionDAGISel::ID = 0;