blob: d1e9365274a0b652eec5cc64787c3264d488da19 [file] [log] [blame]
Chris Lattner7a60d912005-01-07 07:47:53 +00001//===-- SelectionDAGISel.cpp - Implement the SelectionDAGISel class -------===//
Misha Brukman835702a2005-04-21 22:36:52 +00002//
Chris Lattner7a60d912005-01-07 07:47:53 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukman835702a2005-04-21 22:36:52 +00007//
Chris Lattner7a60d912005-01-07 07:47:53 +00008//===----------------------------------------------------------------------===//
9//
10// This implements the SelectionDAGISel class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
Anton Korobeynikov915e6172007-04-04 21:14:49 +000015#include "llvm/ADT/BitVector.h"
Jim Laskeydcb2b832006-10-16 20:52:31 +000016#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000017#include "llvm/CodeGen/SelectionDAGISel.h"
Evan Cheng739a6a42006-01-21 02:32:06 +000018#include "llvm/CodeGen/ScheduleDAG.h"
Anton Korobeynikov915e6172007-04-04 21:14:49 +000019#include "llvm/Constants.h"
Chris Lattner2e77db62005-05-13 18:50:42 +000020#include "llvm/CallingConv.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000021#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
Chris Lattner435b4022005-11-29 06:21:05 +000023#include "llvm/GlobalVariable.h"
Chris Lattner476e67b2006-01-26 22:24:51 +000024#include "llvm/InlineAsm.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000025#include "llvm/Instructions.h"
26#include "llvm/Intrinsics.h"
Jim Laskeya8bdac82006-03-23 18:06:46 +000027#include "llvm/IntrinsicInst.h"
Reid Spencer71b79e32007-04-09 06:17:21 +000028#include "llvm/ParameterAttributes.h"
Jim Laskeyc56315c2007-01-26 21:22:28 +000029#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000030#include "llvm/CodeGen/MachineFunction.h"
31#include "llvm/CodeGen/MachineFrameInfo.h"
Nate Begeman4ca2ea52006-04-22 18:53:45 +000032#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000033#include "llvm/CodeGen/MachineInstrBuilder.h"
Jim Laskey29e635d2006-08-02 12:30:23 +000034#include "llvm/CodeGen/SchedulerRegistry.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000035#include "llvm/CodeGen/SelectionDAG.h"
36#include "llvm/CodeGen/SSARegMap.h"
Chris Lattnerd4382f02005-09-13 19:30:54 +000037#include "llvm/Target/MRegisterInfo.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000038#include "llvm/Target/TargetData.h"
39#include "llvm/Target/TargetFrameInfo.h"
40#include "llvm/Target/TargetInstrInfo.h"
41#include "llvm/Target/TargetLowering.h"
42#include "llvm/Target/TargetMachine.h"
Vladimir Prusdf1d4392006-05-23 13:43:15 +000043#include "llvm/Target/TargetOptions.h"
Chris Lattner43535a12005-11-09 04:45:33 +000044#include "llvm/Support/MathExtras.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000045#include "llvm/Support/Debug.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000046#include "llvm/Support/Compiler.h"
Jeff Cohen83c22e02006-02-24 02:52:40 +000047#include <algorithm>
Chris Lattner7a60d912005-01-07 07:47:53 +000048using namespace llvm;
49
Chris Lattner975f5c92005-09-01 18:44:10 +000050#ifndef NDEBUG
Chris Lattnere05a4612005-01-12 03:41:21 +000051static cl::opt<bool>
Evan Cheng739a6a42006-01-21 02:32:06 +000052ViewISelDAGs("view-isel-dags", cl::Hidden,
53 cl::desc("Pop up a window to show isel dags as they are selected"));
54static cl::opt<bool>
55ViewSchedDAGs("view-sched-dags", cl::Hidden,
56 cl::desc("Pop up a window to show sched dags as they are processed"));
Dan Gohman81b62e12007-08-28 20:32:58 +000057static cl::opt<bool>
58ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
59 cl::desc("Pop up a window to show SUnit dags after they are processed"));
Chris Lattnere05a4612005-01-12 03:41:21 +000060#else
Dan Gohman81b62e12007-08-28 20:32:58 +000061static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0, ViewSUnitDAGs = 0;
Chris Lattnere05a4612005-01-12 03:41:21 +000062#endif
63
Jim Laskey29e635d2006-08-02 12:30:23 +000064//===---------------------------------------------------------------------===//
65///
66/// RegisterScheduler class - Track the registration of instruction schedulers.
67///
68//===---------------------------------------------------------------------===//
69MachinePassRegistry RegisterScheduler::Registry;
70
71//===---------------------------------------------------------------------===//
72///
73/// ISHeuristic command line option for instruction schedulers.
74///
75//===---------------------------------------------------------------------===//
Evan Chengc1e1d972006-01-23 07:01:07 +000076namespace {
Jim Laskey29e635d2006-08-02 12:30:23 +000077 cl::opt<RegisterScheduler::FunctionPassCtor, false,
78 RegisterPassParser<RegisterScheduler> >
Dale Johannesen2182f062007-07-13 17:13:54 +000079 ISHeuristic("pre-RA-sched",
Chris Lattner524c1a22006-08-03 00:18:59 +000080 cl::init(&createDefaultScheduler),
Dale Johannesen2182f062007-07-13 17:13:54 +000081 cl::desc("Instruction schedulers available (before register allocation):"));
Jim Laskey95eda5b2006-08-01 14:21:23 +000082
Jim Laskey03593f72006-08-01 18:29:48 +000083 static RegisterScheduler
Jim Laskey17c67ef2006-08-01 19:14:14 +000084 defaultListDAGScheduler("default", " Best scheduler for the target",
85 createDefaultScheduler);
Evan Chengc1e1d972006-01-23 07:01:07 +000086} // namespace
87
Chris Lattner4333f8b2007-04-30 17:29:31 +000088namespace { struct AsmOperandInfo; }
89
Chris Lattner6f87d182006-02-22 22:37:12 +000090namespace {
91 /// RegsForValue - This struct represents the physical registers that a
92 /// particular value is assigned and the type information about the value.
93 /// This is needed because values can be promoted into larger registers and
94 /// expanded into multiple smaller registers than the value.
Chris Lattner996795b2006-06-28 23:17:24 +000095 struct VISIBILITY_HIDDEN RegsForValue {
Dan Gohman78677932007-06-28 23:29:44 +000096 /// Regs - This list holds the register (for legal and promoted values)
Chris Lattner6f87d182006-02-22 22:37:12 +000097 /// or register set (for expanded values) that the value should be assigned
98 /// to.
99 std::vector<unsigned> Regs;
100
101 /// RegVT - The value type of each register.
102 ///
103 MVT::ValueType RegVT;
104
105 /// ValueVT - The value type of the LLVM value, which may be promoted from
106 /// RegVT or made from merging the two expanded parts.
107 MVT::ValueType ValueVT;
108
109 RegsForValue() : RegVT(MVT::Other), ValueVT(MVT::Other) {}
110
111 RegsForValue(unsigned Reg, MVT::ValueType regvt, MVT::ValueType valuevt)
112 : RegVT(regvt), ValueVT(valuevt) {
113 Regs.push_back(Reg);
114 }
115 RegsForValue(const std::vector<unsigned> &regs,
116 MVT::ValueType regvt, MVT::ValueType valuevt)
117 : Regs(regs), RegVT(regvt), ValueVT(valuevt) {
118 }
119
120 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
121 /// this value and returns the result as a ValueVT value. This uses
122 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohman78677932007-06-28 23:29:44 +0000123 /// If the Flag pointer is NULL, no flag is used.
Chris Lattner6f87d182006-02-22 22:37:12 +0000124 SDOperand getCopyFromRegs(SelectionDAG &DAG,
Dan Gohman78677932007-06-28 23:29:44 +0000125 SDOperand &Chain, SDOperand *Flag) const;
Chris Lattner571d9642006-02-23 19:21:04 +0000126
127 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
128 /// specified value into the registers specified by this object. This uses
129 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohman78677932007-06-28 23:29:44 +0000130 /// If the Flag pointer is NULL, no flag is used.
Chris Lattner571d9642006-02-23 19:21:04 +0000131 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohman78677932007-06-28 23:29:44 +0000132 SDOperand &Chain, SDOperand *Flag) const;
Chris Lattner571d9642006-02-23 19:21:04 +0000133
134 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
135 /// operand list. This adds the code marker and includes the number of
136 /// values added into it.
137 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattnere7c0ffb2006-02-23 20:06:57 +0000138 std::vector<SDOperand> &Ops) const;
Chris Lattner6f87d182006-02-22 22:37:12 +0000139 };
140}
Evan Chengc1e1d972006-01-23 07:01:07 +0000141
Chris Lattner7a60d912005-01-07 07:47:53 +0000142namespace llvm {
143 //===--------------------------------------------------------------------===//
Jim Laskey17c67ef2006-08-01 19:14:14 +0000144 /// createDefaultScheduler - This creates an instruction scheduler appropriate
145 /// for the target.
146 ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
147 SelectionDAG *DAG,
148 MachineBasicBlock *BB) {
149 TargetLowering &TLI = IS->getTargetLowering();
150
151 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
152 return createTDListDAGScheduler(IS, DAG, BB);
153 } else {
154 assert(TLI.getSchedulingPreference() ==
155 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
156 return createBURRListDAGScheduler(IS, DAG, BB);
157 }
158 }
159
160
161 //===--------------------------------------------------------------------===//
Chris Lattner7a60d912005-01-07 07:47:53 +0000162 /// FunctionLoweringInfo - This contains information that is global to a
163 /// function that is used when lowering a region of the function.
Chris Lattnerd0061952005-01-08 19:52:31 +0000164 class FunctionLoweringInfo {
165 public:
Chris Lattner7a60d912005-01-07 07:47:53 +0000166 TargetLowering &TLI;
167 Function &Fn;
168 MachineFunction &MF;
169 SSARegMap *RegMap;
170
171 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
172
173 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
174 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
175
176 /// ValueMap - Since we emit code for the function a basic block at a time,
177 /// we must remember which virtual registers hold the values for
178 /// cross-basic-block values.
Chris Lattner289aa442007-02-04 01:35:11 +0000179 DenseMap<const Value*, unsigned> ValueMap;
Chris Lattner7a60d912005-01-07 07:47:53 +0000180
181 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
182 /// the entry block. This allows the allocas to be efficiently referenced
183 /// anywhere in the function.
184 std::map<const AllocaInst*, int> StaticAllocaMap;
185
Duncan Sands92bf2c62007-06-15 19:04:19 +0000186#ifndef NDEBUG
187 SmallSet<Instruction*, 8> CatchInfoLost;
188 SmallSet<Instruction*, 8> CatchInfoFound;
189#endif
190
Chris Lattner7a60d912005-01-07 07:47:53 +0000191 unsigned MakeReg(MVT::ValueType VT) {
192 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
193 }
Chris Lattnered0110b2006-10-27 21:36:01 +0000194
195 /// isExportedInst - Return true if the specified value is an instruction
196 /// exported from its block.
197 bool isExportedInst(const Value *V) {
198 return ValueMap.count(V);
199 }
Misha Brukman835702a2005-04-21 22:36:52 +0000200
Chris Lattner49409cb2006-03-16 19:51:18 +0000201 unsigned CreateRegForValue(const Value *V);
202
Chris Lattner7a60d912005-01-07 07:47:53 +0000203 unsigned InitializeRegForValue(const Value *V) {
204 unsigned &R = ValueMap[V];
205 assert(R == 0 && "Already initialized this value register!");
206 return R = CreateRegForValue(V);
207 }
208 };
209}
210
Duncan Sandsfe806382007-07-04 20:52:51 +0000211/// isSelector - Return true if this instruction is a call to the
212/// eh.selector intrinsic.
213static bool isSelector(Instruction *I) {
Duncan Sands92bf2c62007-06-15 19:04:19 +0000214 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
Duncan Sandsfe806382007-07-04 20:52:51 +0000215 return II->getIntrinsicID() == Intrinsic::eh_selector;
Duncan Sands92bf2c62007-06-15 19:04:19 +0000216 return false;
217}
218
Chris Lattner7a60d912005-01-07 07:47:53 +0000219/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemaned728c12006-03-27 01:32:24 +0000220/// PHI nodes or outside of the basic block that defines it, or used by a
221/// switch instruction, which may expand to multiple basic blocks.
Chris Lattner7a60d912005-01-07 07:47:53 +0000222static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
223 if (isa<PHINode>(I)) return true;
224 BasicBlock *BB = I->getParent();
225 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemaned728c12006-03-27 01:32:24 +0000226 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
Chris Lattnered0110b2006-10-27 21:36:01 +0000227 // FIXME: Remove switchinst special case.
Nate Begemaned728c12006-03-27 01:32:24 +0000228 isa<SwitchInst>(*UI))
Chris Lattner7a60d912005-01-07 07:47:53 +0000229 return true;
230 return false;
231}
232
Chris Lattner6871b232005-10-30 19:42:35 +0000233/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemaned728c12006-03-27 01:32:24 +0000234/// entry block, return true. This includes arguments used by switches, since
235/// the switch may expand into multiple basic blocks.
Chris Lattner6871b232005-10-30 19:42:35 +0000236static bool isOnlyUsedInEntryBlock(Argument *A) {
237 BasicBlock *Entry = A->getParent()->begin();
238 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemaned728c12006-03-27 01:32:24 +0000239 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattner6871b232005-10-30 19:42:35 +0000240 return false; // Use not in entry block.
241 return true;
242}
243
Chris Lattner7a60d912005-01-07 07:47:53 +0000244FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukman835702a2005-04-21 22:36:52 +0000245 Function &fn, MachineFunction &mf)
Chris Lattner7a60d912005-01-07 07:47:53 +0000246 : TLI(tli), Fn(fn), MF(mf), RegMap(MF.getSSARegMap()) {
247
Chris Lattner6871b232005-10-30 19:42:35 +0000248 // Create a vreg for each argument register that is not dead and is used
249 // outside of the entry block for the function.
250 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
251 AI != E; ++AI)
252 if (!isOnlyUsedInEntryBlock(AI))
253 InitializeRegForValue(AI);
254
Chris Lattner7a60d912005-01-07 07:47:53 +0000255 // Initialize the mapping of values to registers. This is only set up for
256 // instruction values that are used outside of the block that defines
257 // them.
Jeff Cohenf8a5e5ae2005-10-01 03:57:14 +0000258 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner7a60d912005-01-07 07:47:53 +0000259 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
260 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
Reid Spencere0fc4df2006-10-20 07:07:24 +0000261 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
Chris Lattner7a60d912005-01-07 07:47:53 +0000262 const Type *Ty = AI->getAllocatedType();
Owen Anderson20a631f2006-05-03 01:29:57 +0000263 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
Nate Begeman3ee3e692005-11-06 09:00:38 +0000264 unsigned Align =
Chris Lattner945e4372007-02-14 05:52:17 +0000265 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Nate Begeman3ee3e692005-11-06 09:00:38 +0000266 AI->getAlignment());
Chris Lattnercbefe722005-05-13 23:14:17 +0000267
Reid Spencere0fc4df2006-10-20 07:07:24 +0000268 TySize *= CUI->getZExtValue(); // Get total allocated size.
Chris Lattner0a71a9a2005-10-18 22:14:06 +0000269 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner7a60d912005-01-07 07:47:53 +0000270 StaticAllocaMap[AI] =
Chris Lattnercb0ed0c2007-04-25 04:08:28 +0000271 MF.getFrameInfo()->CreateStackObject(TySize, Align);
Chris Lattner7a60d912005-01-07 07:47:53 +0000272 }
273
Jeff Cohenf8a5e5ae2005-10-01 03:57:14 +0000274 for (; BB != EB; ++BB)
275 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner7a60d912005-01-07 07:47:53 +0000276 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
277 if (!isa<AllocaInst>(I) ||
278 !StaticAllocaMap.count(cast<AllocaInst>(I)))
279 InitializeRegForValue(I);
280
281 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
282 // also creates the initial PHI MachineInstrs, though none of the input
283 // operands are populated.
Jeff Cohenf8a5e5ae2005-10-01 03:57:14 +0000284 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Chris Lattner7a60d912005-01-07 07:47:53 +0000285 MachineBasicBlock *MBB = new MachineBasicBlock(BB);
286 MBBMap[BB] = MBB;
287 MF.getBasicBlockList().push_back(MBB);
288
289 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
290 // appropriate.
291 PHINode *PN;
Chris Lattner84a03502006-10-27 23:50:33 +0000292 for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
293 if (PN->use_empty()) continue;
294
295 MVT::ValueType VT = TLI.getValueType(PN->getType());
Dan Gohmana8665142007-06-25 16:23:39 +0000296 unsigned NumRegisters = TLI.getNumRegisters(VT);
Chris Lattner84a03502006-10-27 23:50:33 +0000297 unsigned PHIReg = ValueMap[PN];
298 assert(PHIReg && "PHI node does not have an assigned virtual register!");
Evan Cheng20350c42006-11-27 23:37:22 +0000299 const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
Dan Gohman04deef32007-06-21 14:42:22 +0000300 for (unsigned i = 0; i != NumRegisters; ++i)
Evan Cheng20350c42006-11-27 23:37:22 +0000301 BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
Chris Lattner84a03502006-10-27 23:50:33 +0000302 }
Chris Lattner7a60d912005-01-07 07:47:53 +0000303 }
304}
305
Chris Lattner49409cb2006-03-16 19:51:18 +0000306/// CreateRegForValue - Allocate the appropriate number of virtual registers of
307/// the correctly promoted or expanded types. Assign these registers
308/// consecutive vreg numbers and return the first assigned number.
309unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
310 MVT::ValueType VT = TLI.getValueType(V->getType());
311
Dan Gohman78677932007-06-28 23:29:44 +0000312 unsigned NumRegisters = TLI.getNumRegisters(VT);
313 MVT::ValueType RegisterVT = TLI.getRegisterType(VT);
Bill Wendling47917b62007-04-24 21:13:23 +0000314
Dan Gohman7139a482007-06-27 14:34:07 +0000315 unsigned R = MakeReg(RegisterVT);
316 for (unsigned i = 1; i != NumRegisters; ++i)
317 MakeReg(RegisterVT);
318
Chris Lattner49409cb2006-03-16 19:51:18 +0000319 return R;
320}
Chris Lattner7a60d912005-01-07 07:47:53 +0000321
322//===----------------------------------------------------------------------===//
323/// SelectionDAGLowering - This is the common target-independent lowering
324/// implementation that is parameterized by a TargetLowering object.
325/// Also, targets can overload any lowering method.
326///
327namespace llvm {
328class SelectionDAGLowering {
329 MachineBasicBlock *CurMBB;
330
Chris Lattner79084302007-02-04 01:31:47 +0000331 DenseMap<const Value*, SDOperand> NodeMap;
Chris Lattner7a60d912005-01-07 07:47:53 +0000332
Chris Lattner4d9651c2005-01-17 22:19:26 +0000333 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
334 /// them up and then emit token factor nodes when possible. This allows us to
335 /// get simple disambiguation between loads without worrying about alias
336 /// analysis.
337 std::vector<SDOperand> PendingLoads;
338
Anton Korobeynikov915e6172007-04-04 21:14:49 +0000339 /// Case - A struct to record the Value for a switch case, and the
340 /// case's target basic block.
341 struct Case {
342 Constant* Low;
343 Constant* High;
344 MachineBasicBlock* BB;
345
346 Case() : Low(0), High(0), BB(0) { }
347 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
348 Low(low), High(high), BB(bb) { }
349 uint64_t size() const {
350 uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
351 uint64_t rLow = cast<ConstantInt>(Low)->getSExtValue();
352 return (rHigh - rLow + 1ULL);
353 }
354 };
355
Anton Korobeynikov506eaf72007-04-09 12:31:58 +0000356 struct CaseBits {
357 uint64_t Mask;
358 MachineBasicBlock* BB;
359 unsigned Bits;
360
361 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
362 Mask(mask), BB(bb), Bits(bits) { }
363 };
364
Anton Korobeynikov915e6172007-04-04 21:14:49 +0000365 typedef std::vector<Case> CaseVector;
Anton Korobeynikov506eaf72007-04-09 12:31:58 +0000366 typedef std::vector<CaseBits> CaseBitsVector;
Anton Korobeynikov915e6172007-04-04 21:14:49 +0000367 typedef CaseVector::iterator CaseItr;
368 typedef std::pair<CaseItr, CaseItr> CaseRange;
Nate Begemaned728c12006-03-27 01:32:24 +0000369
370 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
371 /// of conditional branches.
372 struct CaseRec {
373 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
374 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
375
376 /// CaseBB - The MBB in which to emit the compare and branch
377 MachineBasicBlock *CaseBB;
378 /// LT, GE - If nonzero, we know the current case value must be less-than or
379 /// greater-than-or-equal-to these Constants.
380 Constant *LT;
381 Constant *GE;
382 /// Range - A pair of iterators representing the range of case values to be
383 /// processed at this point in the binary search tree.
384 CaseRange Range;
385 };
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +0000386
387 typedef std::vector<CaseRec> CaseRecVector;
Anton Korobeynikov915e6172007-04-04 21:14:49 +0000388
389 /// The comparison function for sorting the switch case values in the vector.
390 /// WARNING: Case ranges should be disjoint!
Nate Begemaned728c12006-03-27 01:32:24 +0000391 struct CaseCmp {
Anton Korobeynikov506eaf72007-04-09 12:31:58 +0000392 bool operator () (const Case& C1, const Case& C2) {
Anton Korobeynikov915e6172007-04-04 21:14:49 +0000393 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
394 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
395 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
396 return CI1->getValue().slt(CI2->getValue());
Nate Begemaned728c12006-03-27 01:32:24 +0000397 }
398 };
Anton Korobeynikov915e6172007-04-04 21:14:49 +0000399
Anton Korobeynikov506eaf72007-04-09 12:31:58 +0000400 struct CaseBitsCmp {
401 bool operator () (const CaseBits& C1, const CaseBits& C2) {
402 return C1.Bits > C2.Bits;
403 }
404 };
405
Anton Korobeynikov915e6172007-04-04 21:14:49 +0000406 unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
Nate Begemaned728c12006-03-27 01:32:24 +0000407
Chris Lattner7a60d912005-01-07 07:47:53 +0000408public:
409 // TLI - This is information that describes the available target features we
410 // need for lowering. This indicates when operations are unavailable,
411 // implemented with a libcall, etc.
412 TargetLowering &TLI;
413 SelectionDAG &DAG;
Owen Anderson20a631f2006-05-03 01:29:57 +0000414 const TargetData *TD;
Dan Gohman8dc0b932007-08-27 16:26:13 +0000415 AliasAnalysis &AA;
Chris Lattner7a60d912005-01-07 07:47:53 +0000416
Nate Begemaned728c12006-03-27 01:32:24 +0000417 /// SwitchCases - Vector of CaseBlock structures used to communicate
418 /// SwitchInst code generation information.
419 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Anton Korobeynikov70378262007-03-25 15:07:15 +0000420 /// JTCases - Vector of JumpTable structures used to communicate
421 /// SwitchInst code generation information.
422 std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
Anton Korobeynikov506eaf72007-04-09 12:31:58 +0000423 std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
Nate Begemaned728c12006-03-27 01:32:24 +0000424
Chris Lattner7a60d912005-01-07 07:47:53 +0000425 /// FuncInfo - Information about the function as a whole.
426 ///
427 FunctionLoweringInfo &FuncInfo;
428
429 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Dan Gohman8dc0b932007-08-27 16:26:13 +0000430 AliasAnalysis &aa,
Misha Brukman835702a2005-04-21 22:36:52 +0000431 FunctionLoweringInfo &funcinfo)
Dan Gohman8dc0b932007-08-27 16:26:13 +0000432 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
Anton Korobeynikov70378262007-03-25 15:07:15 +0000433 FuncInfo(funcinfo) {
Chris Lattner7a60d912005-01-07 07:47:53 +0000434 }
435
Chris Lattner4108bb02005-01-17 19:43:36 +0000436 /// getRoot - Return the current virtual root of the Selection DAG.
437 ///
438 SDOperand getRoot() {
Chris Lattner4d9651c2005-01-17 22:19:26 +0000439 if (PendingLoads.empty())
440 return DAG.getRoot();
Misha Brukman835702a2005-04-21 22:36:52 +0000441
Chris Lattner4d9651c2005-01-17 22:19:26 +0000442 if (PendingLoads.size() == 1) {
443 SDOperand Root = PendingLoads[0];
444 DAG.setRoot(Root);
445 PendingLoads.clear();
446 return Root;
447 }
448
449 // Otherwise, we have to make a token factor node.
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000450 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
451 &PendingLoads[0], PendingLoads.size());
Chris Lattner4d9651c2005-01-17 22:19:26 +0000452 PendingLoads.clear();
453 DAG.setRoot(Root);
454 return Root;
Chris Lattner4108bb02005-01-17 19:43:36 +0000455 }
456
Chris Lattnered0110b2006-10-27 21:36:01 +0000457 SDOperand CopyValueToVirtualRegister(Value *V, unsigned Reg);
458
Chris Lattner7a60d912005-01-07 07:47:53 +0000459 void visit(Instruction &I) { visit(I.getOpcode(), I); }
460
461 void visit(unsigned Opcode, User &I) {
Chris Lattnerd5e604d2006-11-10 04:41:34 +0000462 // Note: this doesn't use InstVisitor, because it has to work with
463 // ConstantExpr's in addition to instructions.
Chris Lattner7a60d912005-01-07 07:47:53 +0000464 switch (Opcode) {
465 default: assert(0 && "Unknown instruction type encountered!");
466 abort();
467 // Build the switch statement using the Instruction.def file.
468#define HANDLE_INST(NUM, OPCODE, CLASS) \
469 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
470#include "llvm/Instruction.def"
471 }
472 }
473
474 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
475
Chris Lattner4024c002006-03-15 22:19:46 +0000476 SDOperand getLoadFrom(const Type *Ty, SDOperand Ptr,
Evan Chenge71fe34d2006-10-09 20:57:25 +0000477 const Value *SV, SDOperand Root,
Christopher Lamb8af6d582007-04-22 23:15:30 +0000478 bool isVolatile, unsigned Alignment);
Chris Lattner7a60d912005-01-07 07:47:53 +0000479
480 SDOperand getIntPtrConstant(uint64_t Val) {
481 return DAG.getConstant(Val, TLI.getPointerTy());
482 }
483
Chris Lattner8471b152006-03-16 19:57:50 +0000484 SDOperand getValue(const Value *V);
Chris Lattner7a60d912005-01-07 07:47:53 +0000485
Chris Lattner79084302007-02-04 01:31:47 +0000486 void setValue(const Value *V, SDOperand NewN) {
Chris Lattner7a60d912005-01-07 07:47:53 +0000487 SDOperand &N = NodeMap[V];
488 assert(N.Val == 0 && "Already set a value for this node!");
Chris Lattner79084302007-02-04 01:31:47 +0000489 N = NewN;
Chris Lattner7a60d912005-01-07 07:47:53 +0000490 }
Chris Lattner1558fc62006-02-01 18:59:47 +0000491
Chris Lattner8cfd33b2007-04-30 21:11:17 +0000492 void GetRegistersForValue(AsmOperandInfo &OpInfo, bool HasEarlyClobber,
493 std::set<unsigned> &OutputRegs,
494 std::set<unsigned> &InputRegs);
Nate Begemaned728c12006-03-27 01:32:24 +0000495
Chris Lattnered0110b2006-10-27 21:36:01 +0000496 void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
497 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
498 unsigned Opc);
Chris Lattner84a03502006-10-27 23:50:33 +0000499 bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
Chris Lattnered0110b2006-10-27 21:36:01 +0000500 void ExportFromCurrentBlock(Value *V);
Jim Laskey31fef782007-02-23 21:45:01 +0000501 void LowerCallTo(Instruction &I,
502 const Type *CalledValueTy, unsigned CallingConv,
Anton Korobeynikov3b327822007-05-23 11:08:31 +0000503 bool IsTailCall, SDOperand Callee, unsigned OpIdx,
504 MachineBasicBlock *LandingPad = NULL);
505
Chris Lattner7a60d912005-01-07 07:47:53 +0000506 // Terminator instructions.
507 void visitRet(ReturnInst &I);
508 void visitBr(BranchInst &I);
Nate Begemaned728c12006-03-27 01:32:24 +0000509 void visitSwitch(SwitchInst &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000510 void visitUnreachable(UnreachableInst &I) { /* noop */ }
511
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +0000512 // Helpers for visitSwitch
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +0000513 bool handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +0000514 CaseRecVector& WorkList,
515 Value* SV,
516 MachineBasicBlock* Default);
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +0000517 bool handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +0000518 CaseRecVector& WorkList,
519 Value* SV,
520 MachineBasicBlock* Default);
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +0000521 bool handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +0000522 CaseRecVector& WorkList,
523 Value* SV,
524 MachineBasicBlock* Default);
Anton Korobeynikov506eaf72007-04-09 12:31:58 +0000525 bool handleBitTestsSwitchCase(CaseRec& CR,
526 CaseRecVector& WorkList,
527 Value* SV,
528 MachineBasicBlock* Default);
Nate Begemaned728c12006-03-27 01:32:24 +0000529 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Anton Korobeynikov506eaf72007-04-09 12:31:58 +0000530 void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
531 void visitBitTestCase(MachineBasicBlock* NextMBB,
532 unsigned Reg,
533 SelectionDAGISel::BitTestCase &B);
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000534 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Anton Korobeynikov70378262007-03-25 15:07:15 +0000535 void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
536 SelectionDAGISel::JumpTableHeader &JTH);
Nate Begemaned728c12006-03-27 01:32:24 +0000537
Chris Lattner7a60d912005-01-07 07:47:53 +0000538 // These all get lowered before this pass.
Jim Laskey4b37a4c2007-02-21 22:53:45 +0000539 void visitInvoke(InvokeInst &I);
540 void visitUnwind(UnwindInst &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000541
Dan Gohmana8665142007-06-25 16:23:39 +0000542 void visitBinary(User &I, unsigned OpCode);
Nate Begeman127321b2005-11-18 07:42:56 +0000543 void visitShift(User &I, unsigned Opcode);
Nate Begemanb2e089c2005-11-19 00:36:38 +0000544 void visitAdd(User &I) {
Dan Gohmana8665142007-06-25 16:23:39 +0000545 if (I.getType()->isFPOrFPVector())
546 visitBinary(I, ISD::FADD);
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000547 else
Dan Gohmana8665142007-06-25 16:23:39 +0000548 visitBinary(I, ISD::ADD);
Chris Lattner6f3b5772005-09-28 22:28:18 +0000549 }
Chris Lattnerf68fd0b2005-04-02 05:04:50 +0000550 void visitSub(User &I);
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000551 void visitMul(User &I) {
Dan Gohmana8665142007-06-25 16:23:39 +0000552 if (I.getType()->isFPOrFPVector())
553 visitBinary(I, ISD::FMUL);
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000554 else
Dan Gohmana8665142007-06-25 16:23:39 +0000555 visitBinary(I, ISD::MUL);
Chris Lattner6f3b5772005-09-28 22:28:18 +0000556 }
Dan Gohmana8665142007-06-25 16:23:39 +0000557 void visitURem(User &I) { visitBinary(I, ISD::UREM); }
558 void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
559 void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
560 void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
561 void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
562 void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
563 void visitAnd (User &I) { visitBinary(I, ISD::AND); }
564 void visitOr (User &I) { visitBinary(I, ISD::OR); }
565 void visitXor (User &I) { visitBinary(I, ISD::XOR); }
Reid Spencer2eadb532007-01-21 00:29:26 +0000566 void visitShl (User &I) { visitShift(I, ISD::SHL); }
Reid Spencerfdff9382006-11-08 06:47:33 +0000567 void visitLShr(User &I) { visitShift(I, ISD::SRL); }
568 void visitAShr(User &I) { visitShift(I, ISD::SRA); }
Reid Spencerd9436b62006-11-20 01:22:35 +0000569 void visitICmp(User &I);
570 void visitFCmp(User &I);
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000571 // Visit the conversion instructions
572 void visitTrunc(User &I);
573 void visitZExt(User &I);
574 void visitSExt(User &I);
575 void visitFPTrunc(User &I);
576 void visitFPExt(User &I);
577 void visitFPToUI(User &I);
578 void visitFPToSI(User &I);
579 void visitUIToFP(User &I);
580 void visitSIToFP(User &I);
581 void visitPtrToInt(User &I);
582 void visitIntToPtr(User &I);
583 void visitBitCast(User &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000584
Chris Lattner67271862006-03-29 00:11:43 +0000585 void visitExtractElement(User &I);
586 void visitInsertElement(User &I);
Chris Lattner098c01e2006-04-08 04:15:24 +0000587 void visitShuffleVector(User &I);
Chris Lattner32206f52006-03-18 01:44:44 +0000588
Chris Lattner7a60d912005-01-07 07:47:53 +0000589 void visitGetElementPtr(User &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000590 void visitSelect(User &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000591
592 void visitMalloc(MallocInst &I);
593 void visitFree(FreeInst &I);
594 void visitAlloca(AllocaInst &I);
595 void visitLoad(LoadInst &I);
596 void visitStore(StoreInst &I);
597 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
598 void visitCall(CallInst &I);
Chris Lattner476e67b2006-01-26 22:24:51 +0000599 void visitInlineAsm(CallInst &I);
Chris Lattnercd6f0f42005-11-09 19:44:01 +0000600 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattnerd96b09a2006-03-24 02:22:33 +0000601 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner7a60d912005-01-07 07:47:53 +0000602
Chris Lattner7a60d912005-01-07 07:47:53 +0000603 void visitVAStart(CallInst &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000604 void visitVAArg(VAArgInst &I);
605 void visitVAEnd(CallInst &I);
606 void visitVACopy(CallInst &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000607
Chris Lattner875def92005-01-11 05:56:49 +0000608 void visitMemIntrinsic(CallInst &I, unsigned Op);
Chris Lattner7a60d912005-01-07 07:47:53 +0000609
610 void visitUserOp1(Instruction &I) {
611 assert(0 && "UserOp1 should not exist at instruction selection time!");
612 abort();
613 }
614 void visitUserOp2(Instruction &I) {
615 assert(0 && "UserOp2 should not exist at instruction selection time!");
616 abort();
617 }
618};
619} // end namespace llvm
620
Dan Gohmand258e802007-07-05 20:12:34 +0000621
622/// getCopyFromParts - Create a value that contains the
623/// specified legal parts combined into the value they represent.
624static SDOperand getCopyFromParts(SelectionDAG &DAG,
625 const SDOperand *Parts,
626 unsigned NumParts,
627 MVT::ValueType PartVT,
628 MVT::ValueType ValueVT,
Dan Gohmand258e802007-07-05 20:12:34 +0000629 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
630 if (!MVT::isVector(ValueVT) || NumParts == 1) {
631 SDOperand Val = Parts[0];
632
633 // If the value was expanded, copy from the top part.
634 if (NumParts > 1) {
635 assert(NumParts == 2 &&
636 "Cannot expand to more than 2 elts yet!");
637 SDOperand Hi = Parts[1];
Dan Gohmanf8f531b2007-07-09 20:59:04 +0000638 if (!DAG.getTargetLoweringInfo().isLittleEndian())
Dan Gohmand258e802007-07-05 20:12:34 +0000639 std::swap(Val, Hi);
640 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Val, Hi);
641 }
642
643 // Otherwise, if the value was promoted or extended, truncate it to the
644 // appropriate type.
645 if (PartVT == ValueVT)
646 return Val;
647
648 if (MVT::isVector(PartVT)) {
649 assert(MVT::isVector(ValueVT) && "Unknown vector conversion!");
650 return DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
651 }
652
653 if (MVT::isInteger(PartVT) &&
654 MVT::isInteger(ValueVT)) {
655 if (ValueVT < PartVT) {
656 // For a truncate, see if we have any information to
657 // indicate whether the truncated bits will always be
658 // zero or sign-extension.
659 if (AssertOp != ISD::DELETED_NODE)
660 Val = DAG.getNode(AssertOp, PartVT, Val,
661 DAG.getValueType(ValueVT));
662 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
663 } else {
664 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
665 }
666 }
667
668 if (MVT::isFloatingPoint(PartVT) &&
669 MVT::isFloatingPoint(ValueVT))
670 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val);
671
672 if (MVT::getSizeInBits(PartVT) ==
673 MVT::getSizeInBits(ValueVT))
674 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
675
676 assert(0 && "Unknown mismatch!");
677 }
678
679 // Handle a multi-element vector.
680 MVT::ValueType IntermediateVT, RegisterVT;
681 unsigned NumIntermediates;
682 unsigned NumRegs =
683 DAG.getTargetLoweringInfo()
684 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
685 RegisterVT);
686
687 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
688 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
689 assert(RegisterVT == Parts[0].getValueType() &&
690 "Part type doesn't match part!");
691
692 // Assemble the parts into intermediate operands.
693 SmallVector<SDOperand, 8> Ops(NumIntermediates);
694 if (NumIntermediates == NumParts) {
695 // If the register was not expanded, truncate or copy the value,
696 // as appropriate.
697 for (unsigned i = 0; i != NumParts; ++i)
698 Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
Dan Gohmanf8f531b2007-07-09 20:59:04 +0000699 PartVT, IntermediateVT);
Dan Gohmand258e802007-07-05 20:12:34 +0000700 } else if (NumParts > 0) {
701 // If the intermediate type was expanded, build the intermediate operands
702 // from the parts.
Dan Gohman4ff9fb12007-07-30 19:09:17 +0000703 assert(NumParts % NumIntermediates == 0 &&
Dan Gohmand258e802007-07-05 20:12:34 +0000704 "Must expand into a divisible number of parts!");
Dan Gohman4ff9fb12007-07-30 19:09:17 +0000705 unsigned Factor = NumParts / NumIntermediates;
Dan Gohmand258e802007-07-05 20:12:34 +0000706 for (unsigned i = 0; i != NumIntermediates; ++i)
707 Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
Dan Gohmanf8f531b2007-07-09 20:59:04 +0000708 PartVT, IntermediateVT);
Dan Gohmand258e802007-07-05 20:12:34 +0000709 }
710
711 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
712 // operands.
713 return DAG.getNode(MVT::isVector(IntermediateVT) ?
714 ISD::CONCAT_VECTORS :
715 ISD::BUILD_VECTOR,
Dan Gohman4ff9fb12007-07-30 19:09:17 +0000716 ValueVT, &Ops[0], NumIntermediates);
Dan Gohmand258e802007-07-05 20:12:34 +0000717}
718
719/// getCopyToParts - Create a series of nodes that contain the
720/// specified value split into legal parts.
721static void getCopyToParts(SelectionDAG &DAG,
722 SDOperand Val,
723 SDOperand *Parts,
724 unsigned NumParts,
Dan Gohmanf8f531b2007-07-09 20:59:04 +0000725 MVT::ValueType PartVT) {
Dan Gohmana17799a2007-08-10 14:59:38 +0000726 TargetLowering &TLI = DAG.getTargetLoweringInfo();
727 MVT::ValueType PtrVT = TLI.getPointerTy();
Dan Gohmand258e802007-07-05 20:12:34 +0000728 MVT::ValueType ValueVT = Val.getValueType();
729
730 if (!MVT::isVector(ValueVT) || NumParts == 1) {
731 // If the value was expanded, copy from the parts.
732 if (NumParts > 1) {
733 for (unsigned i = 0; i != NumParts; ++i)
734 Parts[i] = DAG.getNode(ISD::EXTRACT_ELEMENT, PartVT, Val,
Dan Gohmana17799a2007-08-10 14:59:38 +0000735 DAG.getConstant(i, PtrVT));
Dan Gohmanf8f531b2007-07-09 20:59:04 +0000736 if (!DAG.getTargetLoweringInfo().isLittleEndian())
Dan Gohmand258e802007-07-05 20:12:34 +0000737 std::reverse(Parts, Parts + NumParts);
738 return;
739 }
740
741 // If there is a single part and the types differ, this must be
742 // a promotion.
743 if (PartVT != ValueVT) {
744 if (MVT::isVector(PartVT)) {
745 assert(MVT::isVector(ValueVT) &&
746 "Not a vector-vector cast?");
747 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
748 } else if (MVT::isInteger(PartVT) && MVT::isInteger(ValueVT)) {
749 if (PartVT < ValueVT)
750 Val = DAG.getNode(ISD::TRUNCATE, PartVT, Val);
751 else
752 Val = DAG.getNode(ISD::ANY_EXTEND, PartVT, Val);
753 } else if (MVT::isFloatingPoint(PartVT) &&
754 MVT::isFloatingPoint(ValueVT)) {
755 Val = DAG.getNode(ISD::FP_EXTEND, PartVT, Val);
756 } else if (MVT::getSizeInBits(PartVT) ==
757 MVT::getSizeInBits(ValueVT)) {
758 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
759 } else {
760 assert(0 && "Unknown mismatch!");
761 }
762 }
763 Parts[0] = Val;
764 return;
765 }
766
767 // Handle a multi-element vector.
768 MVT::ValueType IntermediateVT, RegisterVT;
769 unsigned NumIntermediates;
770 unsigned NumRegs =
771 DAG.getTargetLoweringInfo()
772 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
773 RegisterVT);
774 unsigned NumElements = MVT::getVectorNumElements(ValueVT);
775
776 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
777 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
778
779 // Split the vector into intermediate operands.
780 SmallVector<SDOperand, 8> Ops(NumIntermediates);
781 for (unsigned i = 0; i != NumIntermediates; ++i)
782 if (MVT::isVector(IntermediateVT))
783 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR,
784 IntermediateVT, Val,
785 DAG.getConstant(i * (NumElements / NumIntermediates),
Dan Gohmana17799a2007-08-10 14:59:38 +0000786 PtrVT));
Dan Gohmand258e802007-07-05 20:12:34 +0000787 else
788 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
789 IntermediateVT, Val,
Dan Gohmana17799a2007-08-10 14:59:38 +0000790 DAG.getConstant(i, PtrVT));
Dan Gohmand258e802007-07-05 20:12:34 +0000791
792 // Split the intermediate operands into legal parts.
793 if (NumParts == NumIntermediates) {
794 // If the register was not expanded, promote or copy the value,
795 // as appropriate.
796 for (unsigned i = 0; i != NumParts; ++i)
Dan Gohmanf8f531b2007-07-09 20:59:04 +0000797 getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmand258e802007-07-05 20:12:34 +0000798 } else if (NumParts > 0) {
799 // If the intermediate type was expanded, split each the value into
800 // legal parts.
801 assert(NumParts % NumIntermediates == 0 &&
802 "Must expand into a divisible number of parts!");
803 unsigned Factor = NumParts / NumIntermediates;
804 for (unsigned i = 0; i != NumIntermediates; ++i)
Dan Gohmanf8f531b2007-07-09 20:59:04 +0000805 getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohmand258e802007-07-05 20:12:34 +0000806 }
807}
808
809
Chris Lattner8471b152006-03-16 19:57:50 +0000810SDOperand SelectionDAGLowering::getValue(const Value *V) {
811 SDOperand &N = NodeMap[V];
812 if (N.Val) return N;
813
814 const Type *VTy = V->getType();
815 MVT::ValueType VT = TLI.getValueType(VTy);
816 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
817 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
818 visit(CE->getOpcode(), *CE);
Chris Lattner79084302007-02-04 01:31:47 +0000819 SDOperand N1 = NodeMap[V];
820 assert(N1.Val && "visit didn't populate the ValueMap!");
821 return N1;
Chris Lattner8471b152006-03-16 19:57:50 +0000822 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) {
823 return N = DAG.getGlobalAddress(GV, VT);
824 } else if (isa<ConstantPointerNull>(C)) {
825 return N = DAG.getConstant(0, TLI.getPointerTy());
826 } else if (isa<UndefValue>(C)) {
Reid Spencerd84d35b2007-02-15 02:26:10 +0000827 if (!isa<VectorType>(VTy))
Chris Lattnerc16b05e2006-03-19 00:20:20 +0000828 return N = DAG.getNode(ISD::UNDEF, VT);
829
Dan Gohmana8665142007-06-25 16:23:39 +0000830 // Create a BUILD_VECTOR of undef nodes.
Reid Spencerd84d35b2007-02-15 02:26:10 +0000831 const VectorType *PTy = cast<VectorType>(VTy);
Chris Lattnerc16b05e2006-03-19 00:20:20 +0000832 unsigned NumElements = PTy->getNumElements();
833 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
834
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000835 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc16b05e2006-03-19 00:20:20 +0000836 Ops.assign(NumElements, DAG.getNode(ISD::UNDEF, PVT));
837
838 // Create a VConstant node with generic Vector type.
Dan Gohmana8665142007-06-25 16:23:39 +0000839 MVT::ValueType VT = MVT::getVectorType(PVT, NumElements);
840 return N = DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000841 &Ops[0], Ops.size());
Chris Lattner8471b152006-03-16 19:57:50 +0000842 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
Dale Johannesenbed9dc42007-09-06 18:13:44 +0000843 return N = DAG.getConstantFP(CFP->getValueAPF(), VT);
Reid Spencerd84d35b2007-02-15 02:26:10 +0000844 } else if (const VectorType *PTy = dyn_cast<VectorType>(VTy)) {
Chris Lattner8471b152006-03-16 19:57:50 +0000845 unsigned NumElements = PTy->getNumElements();
846 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattner8471b152006-03-16 19:57:50 +0000847
848 // Now that we know the number and type of the elements, push a
849 // Constant or ConstantFP node onto the ops list for each element of
Dan Gohman06c60b62007-07-16 14:29:03 +0000850 // the vector constant.
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000851 SmallVector<SDOperand, 8> Ops;
Reid Spencerd84d35b2007-02-15 02:26:10 +0000852 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
Chris Lattner67271862006-03-29 00:11:43 +0000853 for (unsigned i = 0; i != NumElements; ++i)
854 Ops.push_back(getValue(CP->getOperand(i)));
Chris Lattner8471b152006-03-16 19:57:50 +0000855 } else {
Dan Gohman06c60b62007-07-16 14:29:03 +0000856 assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!");
Chris Lattner8471b152006-03-16 19:57:50 +0000857 SDOperand Op;
858 if (MVT::isFloatingPoint(PVT))
859 Op = DAG.getConstantFP(0, PVT);
860 else
861 Op = DAG.getConstant(0, PVT);
862 Ops.assign(NumElements, Op);
863 }
864
Dan Gohmana8665142007-06-25 16:23:39 +0000865 // Create a BUILD_VECTOR node.
866 MVT::ValueType VT = MVT::getVectorType(PVT, NumElements);
867 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0],
Chris Lattner79084302007-02-04 01:31:47 +0000868 Ops.size());
Chris Lattner8471b152006-03-16 19:57:50 +0000869 } else {
870 // Canonicalize all constant ints to be unsigned.
Zhou Sheng75b871f2007-01-11 12:24:14 +0000871 return N = DAG.getConstant(cast<ConstantInt>(C)->getZExtValue(),VT);
Chris Lattner8471b152006-03-16 19:57:50 +0000872 }
873 }
874
875 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
876 std::map<const AllocaInst*, int>::iterator SI =
877 FuncInfo.StaticAllocaMap.find(AI);
878 if (SI != FuncInfo.StaticAllocaMap.end())
879 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
880 }
881
Chris Lattner8c504cf2007-02-25 18:40:32 +0000882 unsigned InReg = FuncInfo.ValueMap[V];
883 assert(InReg && "Value not in map!");
Chris Lattner8471b152006-03-16 19:57:50 +0000884
Dan Gohman78677932007-06-28 23:29:44 +0000885 MVT::ValueType RegisterVT = TLI.getRegisterType(VT);
886 unsigned NumRegs = TLI.getNumRegisters(VT);
Chris Lattner5fe1f542006-03-31 02:06:56 +0000887
Dan Gohman78677932007-06-28 23:29:44 +0000888 std::vector<unsigned> Regs(NumRegs);
889 for (unsigned i = 0; i != NumRegs; ++i)
890 Regs[i] = InReg + i;
891
892 RegsForValue RFV(Regs, RegisterVT, VT);
893 SDOperand Chain = DAG.getEntryNode();
894
895 return RFV.getCopyFromRegs(DAG, Chain, NULL);
Chris Lattner8471b152006-03-16 19:57:50 +0000896}
897
898
Chris Lattner7a60d912005-01-07 07:47:53 +0000899void SelectionDAGLowering::visitRet(ReturnInst &I) {
900 if (I.getNumOperands() == 0) {
Chris Lattner4108bb02005-01-17 19:43:36 +0000901 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getRoot()));
Chris Lattner7a60d912005-01-07 07:47:53 +0000902 return;
903 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000904 SmallVector<SDOperand, 8> NewValues;
Nate Begeman8c47c3a2006-01-27 21:09:22 +0000905 NewValues.push_back(getRoot());
906 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
907 SDOperand RetOp = getValue(I.getOperand(i));
908
909 // If this is an integer return value, we need to promote it ourselves to
Dan Gohmand258e802007-07-05 20:12:34 +0000910 // the full width of a register, since getCopyToParts and Legalize will use
911 // ANY_EXTEND rather than sign/zero.
Evan Chenga2e99532006-05-26 23:09:09 +0000912 // FIXME: C calling convention requires the return type to be promoted to
913 // at least 32-bit. But this is not necessary for non-C calling conventions.
Nate Begeman8c47c3a2006-01-27 21:09:22 +0000914 if (MVT::isInteger(RetOp.getValueType()) &&
915 RetOp.getValueType() < MVT::i64) {
916 MVT::ValueType TmpVT;
917 if (TLI.getTypeAction(MVT::i32) == TargetLowering::Promote)
918 TmpVT = TLI.getTypeToTransformTo(MVT::i32);
919 else
920 TmpVT = MVT::i32;
Reid Spencere63b6512006-12-31 05:55:36 +0000921 const FunctionType *FTy = I.getParent()->getParent()->getFunctionType();
Reid Spencer71b79e32007-04-09 06:17:21 +0000922 const ParamAttrsList *Attrs = FTy->getParamAttrs();
Reid Spencere6f81872007-01-03 16:49:33 +0000923 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Reid Spencera472f662007-04-11 02:44:20 +0000924 if (Attrs && Attrs->paramHasAttr(0, ParamAttr::SExt))
Reid Spencer0917adf2007-01-03 04:25:33 +0000925 ExtendKind = ISD::SIGN_EXTEND;
Reid Spencera472f662007-04-11 02:44:20 +0000926 if (Attrs && Attrs->paramHasAttr(0, ParamAttr::ZExt))
Reid Spencere63b6512006-12-31 05:55:36 +0000927 ExtendKind = ISD::ZERO_EXTEND;
Reid Spencer2a34b912007-01-03 05:03:05 +0000928 RetOp = DAG.getNode(ExtendKind, TmpVT, RetOp);
Dan Gohmand258e802007-07-05 20:12:34 +0000929 NewValues.push_back(RetOp);
930 NewValues.push_back(DAG.getConstant(false, MVT::i32));
931 } else {
932 MVT::ValueType VT = RetOp.getValueType();
933 unsigned NumParts = TLI.getNumRegisters(VT);
934 MVT::ValueType PartVT = TLI.getRegisterType(VT);
935 SmallVector<SDOperand, 4> Parts(NumParts);
Dan Gohmanf8f531b2007-07-09 20:59:04 +0000936 getCopyToParts(DAG, RetOp, &Parts[0], NumParts, PartVT);
Dan Gohmand258e802007-07-05 20:12:34 +0000937 for (unsigned i = 0; i < NumParts; ++i) {
938 NewValues.push_back(Parts[i]);
939 NewValues.push_back(DAG.getConstant(false, MVT::i32));
940 }
Nate Begeman8c47c3a2006-01-27 21:09:22 +0000941 }
Chris Lattner7a60d912005-01-07 07:47:53 +0000942 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000943 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
944 &NewValues[0], NewValues.size()));
Chris Lattner7a60d912005-01-07 07:47:53 +0000945}
946
Chris Lattnered0110b2006-10-27 21:36:01 +0000947/// ExportFromCurrentBlock - If this condition isn't known to be exported from
948/// the current basic block, add it to ValueMap now so that we'll get a
949/// CopyTo/FromReg.
950void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
951 // No need to export constants.
952 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
953
954 // Already exported?
955 if (FuncInfo.isExportedInst(V)) return;
956
957 unsigned Reg = FuncInfo.InitializeRegForValue(V);
958 PendingLoads.push_back(CopyValueToVirtualRegister(V, Reg));
959}
960
Chris Lattner84a03502006-10-27 23:50:33 +0000961bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
962 const BasicBlock *FromBB) {
963 // The operands of the setcc have to be in this block. We don't know
964 // how to export them from some other block.
965 if (Instruction *VI = dyn_cast<Instruction>(V)) {
966 // Can export from current BB.
967 if (VI->getParent() == FromBB)
968 return true;
969
970 // Is already exported, noop.
971 return FuncInfo.isExportedInst(V);
972 }
973
974 // If this is an argument, we can export it if the BB is the entry block or
975 // if it is already exported.
976 if (isa<Argument>(V)) {
977 if (FromBB == &FromBB->getParent()->getEntryBlock())
978 return true;
979
980 // Otherwise, can only export this if it is already exported.
981 return FuncInfo.isExportedInst(V);
982 }
983
984 // Otherwise, constants can always be exported.
985 return true;
986}
987
Chris Lattnere60ae822006-10-29 21:01:20 +0000988static bool InBlock(const Value *V, const BasicBlock *BB) {
989 if (const Instruction *I = dyn_cast<Instruction>(V))
990 return I->getParent() == BB;
991 return true;
992}
993
Chris Lattnered0110b2006-10-27 21:36:01 +0000994/// FindMergedConditions - If Cond is an expression like
995void SelectionDAGLowering::FindMergedConditions(Value *Cond,
996 MachineBasicBlock *TBB,
997 MachineBasicBlock *FBB,
998 MachineBasicBlock *CurBB,
999 unsigned Opc) {
Chris Lattnered0110b2006-10-27 21:36:01 +00001000 // If this node is not part of the or/and tree, emit it as a branch.
Reid Spencer266e42b2006-12-23 06:05:41 +00001001 Instruction *BOp = dyn_cast<Instruction>(Cond);
Chris Lattnered0110b2006-10-27 21:36:01 +00001002
Reid Spencer266e42b2006-12-23 06:05:41 +00001003 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1004 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
Chris Lattnere60ae822006-10-29 21:01:20 +00001005 BOp->getParent() != CurBB->getBasicBlock() ||
1006 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1007 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
Chris Lattnered0110b2006-10-27 21:36:01 +00001008 const BasicBlock *BB = CurBB->getBasicBlock();
1009
Reid Spencer266e42b2006-12-23 06:05:41 +00001010 // If the leaf of the tree is a comparison, merge the condition into
1011 // the caseblock.
1012 if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
1013 // The operands of the cmp have to be in this block. We don't know
Chris Lattnerf31b9ef2006-10-29 18:23:37 +00001014 // how to export them from some other block. If this is the first block
1015 // of the sequence, no exporting is needed.
1016 (CurBB == CurMBB ||
1017 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1018 isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
Reid Spencer266e42b2006-12-23 06:05:41 +00001019 BOp = cast<Instruction>(Cond);
1020 ISD::CondCode Condition;
1021 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1022 switch (IC->getPredicate()) {
1023 default: assert(0 && "Unknown icmp predicate opcode!");
1024 case ICmpInst::ICMP_EQ: Condition = ISD::SETEQ; break;
1025 case ICmpInst::ICMP_NE: Condition = ISD::SETNE; break;
1026 case ICmpInst::ICMP_SLE: Condition = ISD::SETLE; break;
1027 case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
1028 case ICmpInst::ICMP_SGE: Condition = ISD::SETGE; break;
1029 case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
1030 case ICmpInst::ICMP_SLT: Condition = ISD::SETLT; break;
1031 case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
1032 case ICmpInst::ICMP_SGT: Condition = ISD::SETGT; break;
1033 case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
1034 }
1035 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
1036 ISD::CondCode FPC, FOC;
1037 switch (FC->getPredicate()) {
1038 default: assert(0 && "Unknown fcmp predicate opcode!");
1039 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1040 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1041 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1042 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1043 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1044 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1045 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1046 case FCmpInst::FCMP_ORD: FOC = ISD::SETEQ; FPC = ISD::SETO; break;
1047 case FCmpInst::FCMP_UNO: FOC = ISD::SETNE; FPC = ISD::SETUO; break;
1048 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1049 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1050 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1051 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1052 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1053 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1054 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1055 }
1056 if (FiniteOnlyFPMath())
1057 Condition = FOC;
1058 else
1059 Condition = FPC;
1060 } else {
Chris Lattner79084302007-02-04 01:31:47 +00001061 Condition = ISD::SETEQ; // silence warning.
Reid Spencer266e42b2006-12-23 06:05:41 +00001062 assert(0 && "Unknown compare instruction");
Chris Lattnered0110b2006-10-27 21:36:01 +00001063 }
1064
Chris Lattnered0110b2006-10-27 21:36:01 +00001065 SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0),
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001066 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
Chris Lattnered0110b2006-10-27 21:36:01 +00001067 SwitchCases.push_back(CB);
1068 return;
1069 }
1070
1071 // Create a CaseBlock record representing this branch.
Zhou Sheng75b871f2007-01-11 12:24:14 +00001072 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001073 NULL, TBB, FBB, CurBB);
Chris Lattnered0110b2006-10-27 21:36:01 +00001074 SwitchCases.push_back(CB);
Chris Lattnered0110b2006-10-27 21:36:01 +00001075 return;
1076 }
1077
Chris Lattnerf1b54fd2006-10-27 21:54:23 +00001078
1079 // Create TmpBB after CurBB.
Chris Lattnered0110b2006-10-27 21:36:01 +00001080 MachineFunction::iterator BBI = CurBB;
1081 MachineBasicBlock *TmpBB = new MachineBasicBlock(CurBB->getBasicBlock());
1082 CurBB->getParent()->getBasicBlockList().insert(++BBI, TmpBB);
1083
Chris Lattnerf1b54fd2006-10-27 21:54:23 +00001084 if (Opc == Instruction::Or) {
1085 // Codegen X | Y as:
1086 // jmp_if_X TBB
1087 // jmp TmpBB
1088 // TmpBB:
1089 // jmp_if_Y TBB
1090 // jmp FBB
1091 //
Chris Lattnered0110b2006-10-27 21:36:01 +00001092
Chris Lattnerf1b54fd2006-10-27 21:54:23 +00001093 // Emit the LHS condition.
1094 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
1095
1096 // Emit the RHS condition into TmpBB.
1097 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1098 } else {
1099 assert(Opc == Instruction::And && "Unknown merge op!");
1100 // Codegen X & Y as:
1101 // jmp_if_X TmpBB
1102 // jmp FBB
1103 // TmpBB:
1104 // jmp_if_Y TBB
1105 // jmp FBB
1106 //
1107 // This requires creation of TmpBB after CurBB.
1108
1109 // Emit the LHS condition.
1110 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
1111
1112 // Emit the RHS condition into TmpBB.
1113 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1114 }
Chris Lattnered0110b2006-10-27 21:36:01 +00001115}
1116
Chris Lattner427301f2006-10-31 22:37:42 +00001117/// If the set of cases should be emitted as a series of branches, return true.
1118/// If we should emit this as a bunch of and/or'd together conditions, return
1119/// false.
1120static bool
1121ShouldEmitAsBranches(const std::vector<SelectionDAGISel::CaseBlock> &Cases) {
1122 if (Cases.size() != 2) return true;
1123
Chris Lattnerfe43bef2006-10-31 23:06:00 +00001124 // If this is two comparisons of the same values or'd or and'd together, they
1125 // will get folded into a single comparison, so don't emit two blocks.
1126 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1127 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1128 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1129 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1130 return false;
1131 }
1132
Chris Lattner427301f2006-10-31 22:37:42 +00001133 return true;
1134}
1135
Chris Lattner7a60d912005-01-07 07:47:53 +00001136void SelectionDAGLowering::visitBr(BranchInst &I) {
1137 // Update machine-CFG edges.
1138 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Chris Lattner7a60d912005-01-07 07:47:53 +00001139
1140 // Figure out which block is immediately after the current one.
1141 MachineBasicBlock *NextBlock = 0;
1142 MachineFunction::iterator BBI = CurMBB;
1143 if (++BBI != CurMBB->getParent()->end())
1144 NextBlock = BBI;
1145
1146 if (I.isUnconditional()) {
1147 // If this is not a fall-through branch, emit the branch.
1148 if (Succ0MBB != NextBlock)
Chris Lattner4108bb02005-01-17 19:43:36 +00001149 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
Misha Brukman77451162005-04-22 04:01:18 +00001150 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +00001151
Chris Lattner963ddad2006-10-24 17:57:59 +00001152 // Update machine-CFG edges.
1153 CurMBB->addSuccessor(Succ0MBB);
1154
1155 return;
1156 }
1157
1158 // If this condition is one of the special cases we handle, do special stuff
1159 // now.
1160 Value *CondVal = I.getCondition();
Chris Lattner963ddad2006-10-24 17:57:59 +00001161 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Chris Lattnered0110b2006-10-27 21:36:01 +00001162
1163 // If this is a series of conditions that are or'd or and'd together, emit
1164 // this as a sequence of branches instead of setcc's with and/or operations.
1165 // For example, instead of something like:
1166 // cmp A, B
1167 // C = seteq
1168 // cmp D, E
1169 // F = setle
1170 // or C, F
1171 // jnz foo
1172 // Emit:
1173 // cmp A, B
1174 // je foo
1175 // cmp D, E
1176 // jle foo
1177 //
1178 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1179 if (BOp->hasOneUse() &&
Chris Lattnerf1b54fd2006-10-27 21:54:23 +00001180 (BOp->getOpcode() == Instruction::And ||
Chris Lattnered0110b2006-10-27 21:36:01 +00001181 BOp->getOpcode() == Instruction::Or)) {
1182 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
Chris Lattnerfe43bef2006-10-31 23:06:00 +00001183 // If the compares in later blocks need to use values not currently
1184 // exported from this block, export them now. This block should always
1185 // be the first entry.
1186 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
1187
Chris Lattner427301f2006-10-31 22:37:42 +00001188 // Allow some cases to be rejected.
1189 if (ShouldEmitAsBranches(SwitchCases)) {
Chris Lattner427301f2006-10-31 22:37:42 +00001190 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1191 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1192 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1193 }
1194
1195 // Emit the branch for this block.
1196 visitSwitchCase(SwitchCases[0]);
1197 SwitchCases.erase(SwitchCases.begin());
1198 return;
Chris Lattnerf31b9ef2006-10-29 18:23:37 +00001199 }
1200
Chris Lattnerfe43bef2006-10-31 23:06:00 +00001201 // Okay, we decided not to do this, remove any inserted MBB's and clear
1202 // SwitchCases.
1203 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1204 CurMBB->getParent()->getBasicBlockList().erase(SwitchCases[i].ThisBB);
1205
Chris Lattner427301f2006-10-31 22:37:42 +00001206 SwitchCases.clear();
Chris Lattnered0110b2006-10-27 21:36:01 +00001207 }
1208 }
Chris Lattner61bcf912006-10-24 18:07:37 +00001209
1210 // Create a CaseBlock record representing this branch.
Zhou Sheng75b871f2007-01-11 12:24:14 +00001211 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001212 NULL, Succ0MBB, Succ1MBB, CurMBB);
Chris Lattner61bcf912006-10-24 18:07:37 +00001213 // Use visitSwitchCase to actually insert the fast branch sequence for this
1214 // cond branch.
1215 visitSwitchCase(CB);
Chris Lattner7a60d912005-01-07 07:47:53 +00001216}
1217
Nate Begemaned728c12006-03-27 01:32:24 +00001218/// visitSwitchCase - Emits the necessary code to represent a single node in
1219/// the binary search tree resulting from lowering a switch instruction.
1220void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
Chris Lattner963ddad2006-10-24 17:57:59 +00001221 SDOperand Cond;
1222 SDOperand CondLHS = getValue(CB.CmpLHS);
1223
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001224 // Build the setcc now.
1225 if (CB.CmpMHS == NULL) {
1226 // Fold "(X == true)" to X and "(X == false)" to !X to
1227 // handle common cases produced by branch lowering.
1228 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1229 Cond = CondLHS;
1230 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1231 SDOperand True = DAG.getConstant(1, CondLHS.getValueType());
1232 Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1233 } else
1234 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1235 } else {
1236 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
Anton Korobeynikov70378262007-03-25 15:07:15 +00001237
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001238 uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1239 uint64_t High = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1240
1241 SDOperand CmpOp = getValue(CB.CmpMHS);
1242 MVT::ValueType VT = CmpOp.getValueType();
1243
1244 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1245 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1246 } else {
1247 SDOperand SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
1248 Cond = DAG.getSetCC(MVT::i1, SUB,
1249 DAG.getConstant(High-Low, VT), ISD::SETULE);
1250 }
1251
1252 }
1253
Nate Begemaned728c12006-03-27 01:32:24 +00001254 // Set NextBlock to be the MBB immediately after the current one, if any.
1255 // This is used to avoid emitting unnecessary branches to the next block.
1256 MachineBasicBlock *NextBlock = 0;
1257 MachineFunction::iterator BBI = CurMBB;
1258 if (++BBI != CurMBB->getParent()->end())
1259 NextBlock = BBI;
1260
1261 // If the lhs block is the next block, invert the condition so that we can
1262 // fall through to the lhs instead of the rhs block.
Chris Lattner963ddad2006-10-24 17:57:59 +00001263 if (CB.TrueBB == NextBlock) {
1264 std::swap(CB.TrueBB, CB.FalseBB);
Nate Begemaned728c12006-03-27 01:32:24 +00001265 SDOperand True = DAG.getConstant(1, Cond.getValueType());
1266 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1267 }
1268 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
Chris Lattner963ddad2006-10-24 17:57:59 +00001269 DAG.getBasicBlock(CB.TrueBB));
1270 if (CB.FalseBB == NextBlock)
Nate Begemaned728c12006-03-27 01:32:24 +00001271 DAG.setRoot(BrCond);
1272 else
1273 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Chris Lattner963ddad2006-10-24 17:57:59 +00001274 DAG.getBasicBlock(CB.FalseBB)));
Nate Begemaned728c12006-03-27 01:32:24 +00001275 // Update successor info
Chris Lattner963ddad2006-10-24 17:57:59 +00001276 CurMBB->addSuccessor(CB.TrueBB);
1277 CurMBB->addSuccessor(CB.FalseBB);
Nate Begemaned728c12006-03-27 01:32:24 +00001278}
1279
Anton Korobeynikov70378262007-03-25 15:07:15 +00001280/// visitJumpTable - Emit JumpTable node in the current MBB
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001281void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001282 // Emit the code for the jump table
Scott Michel4cfa6162007-04-24 01:24:20 +00001283 assert(JT.Reg != -1U && "Should lower JT Header first!");
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001284 MVT::ValueType PTy = TLI.getPointerTy();
Evan Cheng84a28d42006-10-30 08:00:44 +00001285 SDOperand Index = DAG.getCopyFromReg(getRoot(), JT.Reg, PTy);
1286 SDOperand Table = DAG.getJumpTable(JT.JTI, PTy);
1287 DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1288 Table, Index));
1289 return;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001290}
1291
Anton Korobeynikov70378262007-03-25 15:07:15 +00001292/// visitJumpTableHeader - This function emits necessary code to produce index
1293/// in the JumpTable from switch case.
1294void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1295 SelectionDAGISel::JumpTableHeader &JTH) {
1296 // Subtract the lowest switch case value from the value being switched on
1297 // and conditional branch to default mbb if the result is greater than the
1298 // difference between smallest and largest cases.
1299 SDOperand SwitchOp = getValue(JTH.SValue);
1300 MVT::ValueType VT = SwitchOp.getValueType();
1301 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1302 DAG.getConstant(JTH.First, VT));
1303
1304 // The SDNode we just created, which holds the value being switched on
1305 // minus the the smallest case value, needs to be copied to a virtual
1306 // register so it can be used as an index into the jump table in a
1307 // subsequent basic block. This value may be smaller or larger than the
1308 // target's pointer type, and therefore require extension or truncating.
Dan Gohmana8665142007-06-25 16:23:39 +00001309 if (MVT::getSizeInBits(VT) > MVT::getSizeInBits(TLI.getPointerTy()))
Anton Korobeynikov70378262007-03-25 15:07:15 +00001310 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1311 else
1312 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1313
1314 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
1315 SDOperand CopyTo = DAG.getCopyToReg(getRoot(), JumpTableReg, SwitchOp);
1316 JT.Reg = JumpTableReg;
1317
1318 // Emit the range check for the jump table, and branch to the default
1319 // block for the switch statement if the value being switched on exceeds
1320 // the largest case in the switch.
1321 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultTy(), SUB,
1322 DAG.getConstant(JTH.Last-JTH.First,VT),
1323 ISD::SETUGT);
1324
1325 // Set NextBlock to be the MBB immediately after the current one, if any.
1326 // This is used to avoid emitting unnecessary branches to the next block.
1327 MachineBasicBlock *NextBlock = 0;
1328 MachineFunction::iterator BBI = CurMBB;
1329 if (++BBI != CurMBB->getParent()->end())
1330 NextBlock = BBI;
1331
1332 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
1333 DAG.getBasicBlock(JT.Default));
1334
1335 if (JT.MBB == NextBlock)
1336 DAG.setRoot(BrCond);
1337 else
1338 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001339 DAG.getBasicBlock(JT.MBB)));
1340
1341 return;
Anton Korobeynikov70378262007-03-25 15:07:15 +00001342}
1343
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001344/// visitBitTestHeader - This function emits necessary code to produce value
1345/// suitable for "bit tests"
1346void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1347 // Subtract the minimum value
1348 SDOperand SwitchOp = getValue(B.SValue);
1349 MVT::ValueType VT = SwitchOp.getValueType();
1350 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1351 DAG.getConstant(B.First, VT));
1352
1353 // Check range
1354 SDOperand RangeCmp = DAG.getSetCC(TLI.getSetCCResultTy(), SUB,
1355 DAG.getConstant(B.Range, VT),
1356 ISD::SETUGT);
1357
1358 SDOperand ShiftOp;
Dan Gohmana8665142007-06-25 16:23:39 +00001359 if (MVT::getSizeInBits(VT) > MVT::getSizeInBits(TLI.getShiftAmountTy()))
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001360 ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1361 else
1362 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1363
1364 // Make desired shift
1365 SDOperand SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
1366 DAG.getConstant(1, TLI.getPointerTy()),
1367 ShiftOp);
1368
1369 unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
1370 SDOperand CopyTo = DAG.getCopyToReg(getRoot(), SwitchReg, SwitchVal);
1371 B.Reg = SwitchReg;
1372
1373 SDOperand BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
1374 DAG.getBasicBlock(B.Default));
1375
1376 // Set NextBlock to be the MBB immediately after the current one, if any.
1377 // This is used to avoid emitting unnecessary branches to the next block.
1378 MachineBasicBlock *NextBlock = 0;
1379 MachineFunction::iterator BBI = CurMBB;
1380 if (++BBI != CurMBB->getParent()->end())
1381 NextBlock = BBI;
1382
1383 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1384 if (MBB == NextBlock)
1385 DAG.setRoot(BrRange);
1386 else
1387 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1388 DAG.getBasicBlock(MBB)));
1389
1390 CurMBB->addSuccessor(B.Default);
1391 CurMBB->addSuccessor(MBB);
1392
1393 return;
1394}
1395
1396/// visitBitTestCase - this function produces one "bit test"
1397void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1398 unsigned Reg,
1399 SelectionDAGISel::BitTestCase &B) {
1400 // Emit bit tests and jumps
1401 SDOperand SwitchVal = DAG.getCopyFromReg(getRoot(), Reg, TLI.getPointerTy());
1402
1403 SDOperand AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(),
1404 SwitchVal,
1405 DAG.getConstant(B.Mask,
1406 TLI.getPointerTy()));
1407 SDOperand AndCmp = DAG.getSetCC(TLI.getSetCCResultTy(), AndOp,
1408 DAG.getConstant(0, TLI.getPointerTy()),
1409 ISD::SETNE);
1410 SDOperand BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
1411 AndCmp, DAG.getBasicBlock(B.TargetBB));
1412
1413 // Set NextBlock to be the MBB immediately after the current one, if any.
1414 // This is used to avoid emitting unnecessary branches to the next block.
1415 MachineBasicBlock *NextBlock = 0;
1416 MachineFunction::iterator BBI = CurMBB;
1417 if (++BBI != CurMBB->getParent()->end())
1418 NextBlock = BBI;
1419
1420 if (NextMBB == NextBlock)
1421 DAG.setRoot(BrAnd);
1422 else
1423 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1424 DAG.getBasicBlock(NextMBB)));
1425
1426 CurMBB->addSuccessor(B.TargetBB);
1427 CurMBB->addSuccessor(NextMBB);
1428
1429 return;
1430}
Anton Korobeynikov70378262007-03-25 15:07:15 +00001431
Jim Laskey4b37a4c2007-02-21 22:53:45 +00001432void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1433 // Retrieve successors.
1434 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
Duncan Sands97f72362007-06-13 05:51:31 +00001435 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
Duncan Sands61166502007-06-06 10:05:18 +00001436
Duncan Sands97f72362007-06-13 05:51:31 +00001437 LowerCallTo(I, I.getCalledValue()->getType(),
1438 I.getCallingConv(),
1439 false,
1440 getValue(I.getOperand(0)),
1441 3, LandingPad);
Duncan Sands61166502007-06-06 10:05:18 +00001442
Duncan Sands97f72362007-06-13 05:51:31 +00001443 // If the value of the invoke is used outside of its defining block, make it
1444 // available as a virtual register.
1445 if (!I.use_empty()) {
1446 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1447 if (VMI != FuncInfo.ValueMap.end())
1448 DAG.setRoot(CopyValueToVirtualRegister(&I, VMI->second));
Jim Laskey14059d92007-02-25 21:43:59 +00001449 }
Duncan Sands97f72362007-06-13 05:51:31 +00001450
1451 // Drop into normal successor.
1452 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
1453 DAG.getBasicBlock(Return)));
1454
1455 // Update successor info
1456 CurMBB->addSuccessor(Return);
1457 CurMBB->addSuccessor(LandingPad);
Jim Laskey4b37a4c2007-02-21 22:53:45 +00001458}
1459
1460void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1461}
1462
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001463/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001464/// small case ranges).
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001465bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001466 CaseRecVector& WorkList,
1467 Value* SV,
1468 MachineBasicBlock* Default) {
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001469 Case& BackCase = *(CR.Range.second-1);
1470
1471 // Size is the number of Cases represented by this range.
1472 unsigned Size = CR.Range.second - CR.Range.first;
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001473 if (Size > 3)
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001474 return false;
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001475
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001476 // Get the MachineFunction which holds the current MBB. This is used when
1477 // inserting any additional MBBs necessary to represent the switch.
1478 MachineFunction *CurMF = CurMBB->getParent();
1479
1480 // Figure out which block is immediately after the current one.
1481 MachineBasicBlock *NextBlock = 0;
1482 MachineFunction::iterator BBI = CR.CaseBB;
1483
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001484 if (++BBI != CurMBB->getParent()->end())
1485 NextBlock = BBI;
1486
1487 // TODO: If any two of the cases has the same destination, and if one value
1488 // is the same as the other, but has one bit unset that the other has set,
1489 // use bit manipulation to do two compares at once. For example:
1490 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1491
1492 // Rearrange the case blocks so that the last one falls through if possible.
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001493 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001494 // The last case block won't fall through into 'NextBlock' if we emit the
1495 // branches in this order. See if rearranging a case value would help.
1496 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001497 if (I->BB == NextBlock) {
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001498 std::swap(*I, BackCase);
1499 break;
1500 }
1501 }
1502 }
1503
1504 // Create a CaseBlock record representing a conditional branch to
1505 // the Case's target mbb if the value being switched on SV is equal
1506 // to C.
1507 MachineBasicBlock *CurBlock = CR.CaseBB;
1508 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1509 MachineBasicBlock *FallThrough;
1510 if (I != E-1) {
1511 FallThrough = new MachineBasicBlock(CurBlock->getBasicBlock());
1512 CurMF->getBasicBlockList().insert(BBI, FallThrough);
1513 } else {
1514 // If the last case doesn't match, go to the default block.
1515 FallThrough = Default;
1516 }
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001517
1518 Value *RHS, *LHS, *MHS;
1519 ISD::CondCode CC;
1520 if (I->High == I->Low) {
1521 // This is just small small case range :) containing exactly 1 case
1522 CC = ISD::SETEQ;
1523 LHS = SV; RHS = I->High; MHS = NULL;
1524 } else {
1525 CC = ISD::SETLE;
1526 LHS = I->Low; MHS = SV; RHS = I->High;
1527 }
1528 SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1529 I->BB, FallThrough, CurBlock);
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001530
1531 // If emitting the first comparison, just call visitSwitchCase to emit the
1532 // code into the current block. Otherwise, push the CaseBlock onto the
1533 // vector to be later processed by SDISel, and insert the node's MBB
1534 // before the next MBB.
1535 if (CurBlock == CurMBB)
1536 visitSwitchCase(CB);
1537 else
1538 SwitchCases.push_back(CB);
1539
1540 CurBlock = FallThrough;
1541 }
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001542
1543 return true;
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001544}
1545
Anton Korobeynikov192d09c2007-05-09 20:07:08 +00001546static inline bool areJTsAllowed(const TargetLowering &TLI) {
1547 return (TLI.isOperationLegal(ISD::BR_JT, MVT::Other) ||
1548 TLI.isOperationLegal(ISD::BRIND, MVT::Other));
1549}
1550
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001551/// handleJTSwitchCase - Emit jumptable for current switch case range
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001552bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001553 CaseRecVector& WorkList,
1554 Value* SV,
1555 MachineBasicBlock* Default) {
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001556 Case& FrontCase = *CR.Range.first;
1557 Case& BackCase = *(CR.Range.second-1);
1558
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001559 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1560 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
1561
1562 uint64_t TSize = 0;
1563 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1564 I!=E; ++I)
1565 TSize += I->size();
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001566
Anton Korobeynikov192d09c2007-05-09 20:07:08 +00001567 if (!areJTsAllowed(TLI) || TSize <= 3)
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001568 return false;
1569
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001570 double Density = (double)TSize / (double)((Last - First) + 1ULL);
1571 if (Density < 0.4)
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001572 return false;
1573
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001574 DOUT << "Lowering jump table\n"
1575 << "First entry: " << First << ". Last entry: " << Last << "\n"
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001576 << "Size: " << TSize << ". Density: " << Density << "\n\n";
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001577
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001578 // Get the MachineFunction which holds the current MBB. This is used when
1579 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001580 MachineFunction *CurMF = CurMBB->getParent();
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001581
1582 // Figure out which block is immediately after the current one.
1583 MachineBasicBlock *NextBlock = 0;
1584 MachineFunction::iterator BBI = CR.CaseBB;
1585
1586 if (++BBI != CurMBB->getParent()->end())
1587 NextBlock = BBI;
1588
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001589 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1590
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001591 // Create a new basic block to hold the code for loading the address
1592 // of the jump table, and jumping to it. Update successor information;
1593 // we will either branch to the default case for the switch, or the jump
1594 // table.
1595 MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
1596 CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
1597 CR.CaseBB->addSuccessor(Default);
1598 CR.CaseBB->addSuccessor(JumpTableBB);
1599
1600 // Build a vector of destination BBs, corresponding to each target
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001601 // of the jump table. If the value of the jump table slot corresponds to
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001602 // a case statement, push the case's BB onto the vector, otherwise, push
1603 // the default BB.
1604 std::vector<MachineBasicBlock*> DestBBs;
1605 int64_t TEI = First;
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001606 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1607 int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1608 int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1609
1610 if ((Low <= TEI) && (TEI <= High)) {
1611 DestBBs.push_back(I->BB);
1612 if (TEI==High)
1613 ++I;
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001614 } else {
1615 DestBBs.push_back(Default);
1616 }
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001617 }
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001618
1619 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001620 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001621 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
1622 E = DestBBs.end(); I != E; ++I) {
1623 if (!SuccsHandled[(*I)->getNumber()]) {
1624 SuccsHandled[(*I)->getNumber()] = true;
1625 JumpTableBB->addSuccessor(*I);
1626 }
1627 }
1628
1629 // Create a jump table index for this jump table, or return an existing
1630 // one.
1631 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
1632
1633 // Set the jump table information so that we can codegen it as a second
1634 // MachineBasicBlock
Scott Michel4cfa6162007-04-24 01:24:20 +00001635 SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001636 SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
1637 (CR.CaseBB == CurMBB));
1638 if (CR.CaseBB == CurMBB)
1639 visitJumpTableHeader(JT, JTH);
1640
1641 JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001642
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001643 return true;
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001644}
1645
1646/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1647/// 2 subtrees.
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001648bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001649 CaseRecVector& WorkList,
1650 Value* SV,
1651 MachineBasicBlock* Default) {
1652 // Get the MachineFunction which holds the current MBB. This is used when
1653 // inserting any additional MBBs necessary to represent the switch.
1654 MachineFunction *CurMF = CurMBB->getParent();
1655
1656 // Figure out which block is immediately after the current one.
1657 MachineBasicBlock *NextBlock = 0;
1658 MachineFunction::iterator BBI = CR.CaseBB;
1659
1660 if (++BBI != CurMBB->getParent()->end())
1661 NextBlock = BBI;
1662
1663 Case& FrontCase = *CR.Range.first;
1664 Case& BackCase = *(CR.Range.second-1);
1665 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1666
1667 // Size is the number of Cases represented by this range.
1668 unsigned Size = CR.Range.second - CR.Range.first;
1669
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001670 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1671 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001672 double FMetric = 0;
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001673 CaseItr Pivot = CR.Range.first + Size/2;
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001674
1675 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1676 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001677 uint64_t TSize = 0;
1678 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1679 I!=E; ++I)
1680 TSize += I->size();
1681
1682 uint64_t LSize = FrontCase.size();
1683 uint64_t RSize = TSize-LSize;
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001684 DOUT << "Selecting best pivot: \n"
1685 << "First: " << First << ", Last: " << Last <<"\n"
1686 << "LSize: " << LSize << ", RSize: " << RSize << "\n";
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001687 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001688 J!=E; ++I, ++J) {
1689 int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
1690 int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001691 assert((RBegin-LEnd>=1) && "Invalid case distance");
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001692 double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
1693 double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
Anton Korobeynikovda964a22007-04-09 21:57:03 +00001694 double Metric = Log2_64(RBegin-LEnd)*(LDensity+RDensity);
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001695 // Should always split in some non-trivial place
1696 DOUT <<"=>Step\n"
1697 << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
1698 << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
1699 << "Metric: " << Metric << "\n";
1700 if (FMetric < Metric) {
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001701 Pivot = J;
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001702 FMetric = Metric;
1703 DOUT << "Current metric set to: " << FMetric << "\n";
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001704 }
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001705
1706 LSize += J->size();
1707 RSize -= J->size();
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001708 }
Anton Korobeynikov192d09c2007-05-09 20:07:08 +00001709 if (areJTsAllowed(TLI)) {
1710 // If our case is dense we *really* should handle it earlier!
1711 assert((FMetric > 0) && "Should handle dense range earlier!");
1712 } else {
1713 Pivot = CR.Range.first + Size/2;
1714 }
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001715
1716 CaseRange LHSR(CR.Range.first, Pivot);
1717 CaseRange RHSR(Pivot, CR.Range.second);
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001718 Constant *C = Pivot->Low;
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001719 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
1720
1721 // We know that we branch to the LHS if the Value being switched on is
1722 // less than the Pivot value, C. We use this to optimize our binary
1723 // tree a bit, by recognizing that if SV is greater than or equal to the
1724 // LHS's Case Value, and that Case Value is exactly one less than the
1725 // Pivot's Value, then we can branch directly to the LHS's Target,
1726 // rather than creating a leaf node for it.
1727 if ((LHSR.second - LHSR.first) == 1 &&
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001728 LHSR.first->High == CR.GE &&
1729 cast<ConstantInt>(C)->getSExtValue() ==
1730 (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
1731 TrueBB = LHSR.first->BB;
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001732 } else {
1733 TrueBB = new MachineBasicBlock(LLVMBB);
1734 CurMF->getBasicBlockList().insert(BBI, TrueBB);
1735 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
1736 }
1737
1738 // Similar to the optimization above, if the Value being switched on is
1739 // known to be less than the Constant CR.LT, and the current Case Value
1740 // is CR.LT - 1, then we can branch directly to the target block for
1741 // the current Case Value, rather than emitting a RHS leaf node for it.
1742 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001743 cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
1744 (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
1745 FalseBB = RHSR.first->BB;
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001746 } else {
1747 FalseBB = new MachineBasicBlock(LLVMBB);
1748 CurMF->getBasicBlockList().insert(BBI, FalseBB);
1749 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
1750 }
1751
1752 // Create a CaseBlock record representing a conditional branch to
1753 // the LHS node if the value being switched on SV is less than C.
1754 // Otherwise, branch to LHS.
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001755 SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
1756 TrueBB, FalseBB, CR.CaseBB);
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001757
1758 if (CR.CaseBB == CurMBB)
1759 visitSwitchCase(CB);
1760 else
1761 SwitchCases.push_back(CB);
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001762
1763 return true;
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001764}
1765
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001766/// handleBitTestsSwitchCase - if current case range has few destination and
1767/// range span less, than machine word bitwidth, encode case range into series
1768/// of masks and emit bit tests with these masks.
1769bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1770 CaseRecVector& WorkList,
1771 Value* SV,
Chris Lattner7196f092007-04-14 02:26:56 +00001772 MachineBasicBlock* Default){
Dan Gohman1796f1f2007-05-18 17:52:13 +00001773 unsigned IntPtrBits = MVT::getSizeInBits(TLI.getPointerTy());
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001774
1775 Case& FrontCase = *CR.Range.first;
1776 Case& BackCase = *(CR.Range.second-1);
1777
1778 // Get the MachineFunction which holds the current MBB. This is used when
1779 // inserting any additional MBBs necessary to represent the switch.
1780 MachineFunction *CurMF = CurMBB->getParent();
1781
1782 unsigned numCmps = 0;
1783 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1784 I!=E; ++I) {
1785 // Single case counts one, case range - two.
1786 if (I->Low == I->High)
1787 numCmps +=1;
1788 else
1789 numCmps +=2;
1790 }
1791
1792 // Count unique destinations
1793 SmallSet<MachineBasicBlock*, 4> Dests;
1794 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1795 Dests.insert(I->BB);
1796 if (Dests.size() > 3)
1797 // Don't bother the code below, if there are too much unique destinations
1798 return false;
1799 }
1800 DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
1801 << "Total number of comparisons: " << numCmps << "\n";
1802
1803 // Compute span of values.
1804 Constant* minValue = FrontCase.Low;
1805 Constant* maxValue = BackCase.High;
1806 uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
1807 cast<ConstantInt>(minValue)->getSExtValue();
1808 DOUT << "Compare range: " << range << "\n"
1809 << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
1810 << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
1811
Anton Korobeynikovd7ae7f12007-04-26 20:44:04 +00001812 if (range>=IntPtrBits ||
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001813 (!(Dests.size() == 1 && numCmps >= 3) &&
1814 !(Dests.size() == 2 && numCmps >= 5) &&
1815 !(Dests.size() >= 3 && numCmps >= 6)))
1816 return false;
1817
1818 DOUT << "Emitting bit tests\n";
1819 int64_t lowBound = 0;
1820
1821 // Optimize the case where all the case values fit in a
1822 // word without having to subtract minValue. In this case,
1823 // we can optimize away the subtraction.
1824 if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
Anton Korobeynikov8a1a84f2007-04-14 13:25:55 +00001825 cast<ConstantInt>(maxValue)->getSExtValue() < IntPtrBits) {
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001826 range = cast<ConstantInt>(maxValue)->getSExtValue();
1827 } else {
1828 lowBound = cast<ConstantInt>(minValue)->getSExtValue();
1829 }
1830
1831 CaseBitsVector CasesBits;
1832 unsigned i, count = 0;
1833
1834 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1835 MachineBasicBlock* Dest = I->BB;
1836 for (i = 0; i < count; ++i)
1837 if (Dest == CasesBits[i].BB)
1838 break;
1839
1840 if (i == count) {
1841 assert((count < 3) && "Too much destinations to test!");
1842 CasesBits.push_back(CaseBits(0, Dest, 0));
1843 count++;
1844 }
1845
1846 uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
1847 uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
1848
1849 for (uint64_t j = lo; j <= hi; j++) {
Anton Korobeynikov8a1a84f2007-04-14 13:25:55 +00001850 CasesBits[i].Mask |= 1ULL << j;
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001851 CasesBits[i].Bits++;
1852 }
1853
1854 }
1855 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
1856
1857 SelectionDAGISel::BitTestInfo BTC;
1858
1859 // Figure out which block is immediately after the current one.
1860 MachineFunction::iterator BBI = CR.CaseBB;
1861 ++BBI;
1862
1863 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1864
1865 DOUT << "Cases:\n";
1866 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
1867 DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
1868 << ", BB: " << CasesBits[i].BB << "\n";
1869
1870 MachineBasicBlock *CaseBB = new MachineBasicBlock(LLVMBB);
1871 CurMF->getBasicBlockList().insert(BBI, CaseBB);
1872 BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
1873 CaseBB,
1874 CasesBits[i].BB));
1875 }
1876
1877 SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
Jeff Cohen0475f3b2007-04-09 14:32:59 +00001878 -1U, (CR.CaseBB == CurMBB),
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001879 CR.CaseBB, Default, BTC);
1880
1881 if (CR.CaseBB == CurMBB)
1882 visitBitTestHeader(BTB);
1883
1884 BitTestCases.push_back(BTB);
1885
1886 return true;
1887}
1888
1889
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001890// Clusterify - Transform simple list of Cases into list of CaseRange's
1891unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
1892 const SwitchInst& SI) {
1893 unsigned numCmps = 0;
1894
1895 // Start with "simple" cases
1896 for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
1897 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
1898 Cases.push_back(Case(SI.getSuccessorValue(i),
1899 SI.getSuccessorValue(i),
1900 SMBB));
1901 }
1902 sort(Cases.begin(), Cases.end(), CaseCmp());
1903
1904 // Merge case into clusters
1905 if (Cases.size()>=2)
David Greene4c1e6f32007-06-29 03:42:23 +00001906 // Must recompute end() each iteration because it may be
1907 // invalidated by erase if we hold on to it
David Greene9468bfd2007-06-29 02:49:11 +00001908 for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001909 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
1910 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
1911 MachineBasicBlock* nextBB = J->BB;
1912 MachineBasicBlock* currentBB = I->BB;
1913
1914 // If the two neighboring cases go to the same destination, merge them
1915 // into a single case.
1916 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
1917 I->High = J->High;
1918 J = Cases.erase(J);
1919 } else {
1920 I = J++;
1921 }
1922 }
1923
1924 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
1925 if (I->Low != I->High)
1926 // A range counts double, since it requires two compares.
1927 ++numCmps;
1928 }
1929
1930 return numCmps;
1931}
1932
1933void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Nate Begemaned728c12006-03-27 01:32:24 +00001934 // Figure out which block is immediately after the current one.
1935 MachineBasicBlock *NextBlock = 0;
1936 MachineFunction::iterator BBI = CurMBB;
Bill Wendlingbe96e1c2006-10-19 21:46:38 +00001937
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001938 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
Chris Lattner6d6fc262006-10-22 21:36:53 +00001939
Nate Begemaned728c12006-03-27 01:32:24 +00001940 // If there is only the default destination, branch to it if it is not the
1941 // next basic block. Otherwise, just fall through.
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001942 if (SI.getNumOperands() == 2) {
Nate Begemaned728c12006-03-27 01:32:24 +00001943 // Update machine-CFG edges.
Bill Wendlingbe96e1c2006-10-19 21:46:38 +00001944
Nate Begemaned728c12006-03-27 01:32:24 +00001945 // If this is not a fall-through branch, emit the branch.
Chris Lattner6d6fc262006-10-22 21:36:53 +00001946 if (Default != NextBlock)
Nate Begemaned728c12006-03-27 01:32:24 +00001947 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
Chris Lattner6d6fc262006-10-22 21:36:53 +00001948 DAG.getBasicBlock(Default)));
Bill Wendlingbe96e1c2006-10-19 21:46:38 +00001949
Chris Lattner6d6fc262006-10-22 21:36:53 +00001950 CurMBB->addSuccessor(Default);
Nate Begemaned728c12006-03-27 01:32:24 +00001951 return;
1952 }
1953
1954 // If there are any non-default case statements, create a vector of Cases
1955 // representing each one, and sort the vector so that we can efficiently
1956 // create a binary search tree from them.
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001957 CaseVector Cases;
1958 unsigned numCmps = Clusterify(Cases, SI);
1959 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
1960 << ". Total compares: " << numCmps << "\n";
Bill Wendlingbe96e1c2006-10-19 21:46:38 +00001961
Nate Begemaned728c12006-03-27 01:32:24 +00001962 // Get the Value to be switched on and default basic blocks, which will be
1963 // inserted into CaseBlock records, representing basic blocks in the binary
1964 // search tree.
Anton Korobeynikov915e6172007-04-04 21:14:49 +00001965 Value *SV = SI.getOperand(0);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001966
Nate Begemaned728c12006-03-27 01:32:24 +00001967 // Push the initial CaseRec onto the worklist
Anton Korobeynikov3a9d6812007-03-27 11:29:11 +00001968 CaseRecVector WorkList;
Anton Korobeynikov70378262007-03-25 15:07:15 +00001969 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
1970
1971 while (!WorkList.empty()) {
Nate Begemaned728c12006-03-27 01:32:24 +00001972 // Grab a record representing a case range to process off the worklist
Anton Korobeynikov70378262007-03-25 15:07:15 +00001973 CaseRec CR = WorkList.back();
1974 WorkList.pop_back();
Anton Korobeynikov70378262007-03-25 15:07:15 +00001975
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001976 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
1977 continue;
1978
Anton Korobeynikov70378262007-03-25 15:07:15 +00001979 // If the range has few cases (two or less) emit a series of specific
1980 // tests.
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001981 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
1982 continue;
1983
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00001984 // If the switch has more than 5 blocks, and at least 40% dense, and the
Anton Korobeynikov70378262007-03-25 15:07:15 +00001985 // target supports indirect branches, then emit a jump table rather than
1986 // lowering the switch to a binary tree of conditional branches.
Anton Korobeynikov37a0bfe2007-03-27 12:05:48 +00001987 if (handleJTSwitchCase(CR, WorkList, SV, Default))
1988 continue;
1989
1990 // Emit binary tree. We need to pick a pivot, and push left and right ranges
1991 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
1992 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
Nate Begemaned728c12006-03-27 01:32:24 +00001993 }
1994}
1995
Anton Korobeynikov70378262007-03-25 15:07:15 +00001996
Chris Lattnerf68fd0b2005-04-02 05:04:50 +00001997void SelectionDAGLowering::visitSub(User &I) {
1998 // -0.0 - X --> fneg
Reid Spencer2eadb532007-01-21 00:29:26 +00001999 const Type *Ty = I.getType();
Reid Spencerd84d35b2007-02-15 02:26:10 +00002000 if (isa<VectorType>(Ty)) {
Dan Gohmana8665142007-06-25 16:23:39 +00002001 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2002 const VectorType *DestTy = cast<VectorType>(I.getType());
2003 const Type *ElTy = DestTy->getElementType();
Evan Chengfa68d062007-06-29 21:44:35 +00002004 if (ElTy->isFloatingPoint()) {
2005 unsigned VL = DestTy->getNumElements();
Dale Johannesenbed9dc42007-09-06 18:13:44 +00002006 std::vector<Constant*> NZ(VL, ConstantFP::get(ElTy,
2007 ElTy==Type::FloatTy ? APFloat(-0.0f) : APFloat(-0.0)));
Evan Chengfa68d062007-06-29 21:44:35 +00002008 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2009 if (CV == CNZ) {
2010 SDOperand Op2 = getValue(I.getOperand(1));
2011 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2012 return;
2013 }
Dan Gohmana8665142007-06-25 16:23:39 +00002014 }
2015 }
2016 }
2017 if (Ty->isFloatingPoint()) {
Chris Lattner6f3b5772005-09-28 22:28:18 +00002018 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
2019 if (CFP->isExactlyValue(-0.0)) {
2020 SDOperand Op2 = getValue(I.getOperand(1));
2021 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2022 return;
2023 }
Dan Gohmana8665142007-06-25 16:23:39 +00002024 }
2025
2026 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
Chris Lattnerf68fd0b2005-04-02 05:04:50 +00002027}
2028
Dan Gohmana8665142007-06-25 16:23:39 +00002029void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
Chris Lattner7a60d912005-01-07 07:47:53 +00002030 SDOperand Op1 = getValue(I.getOperand(0));
2031 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer2eadb532007-01-21 00:29:26 +00002032
2033 setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002034}
2035
Nate Begeman127321b2005-11-18 07:42:56 +00002036void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2037 SDOperand Op1 = getValue(I.getOperand(0));
2038 SDOperand Op2 = getValue(I.getOperand(1));
2039
Dan Gohmana8665142007-06-25 16:23:39 +00002040 if (MVT::getSizeInBits(TLI.getShiftAmountTy()) <
2041 MVT::getSizeInBits(Op2.getValueType()))
Reid Spencer2341c222007-02-02 02:16:23 +00002042 Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
2043 else if (TLI.getShiftAmountTy() > Op2.getValueType())
2044 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
Nate Begeman127321b2005-11-18 07:42:56 +00002045
Chris Lattner7a60d912005-01-07 07:47:53 +00002046 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
2047}
2048
Reid Spencerd9436b62006-11-20 01:22:35 +00002049void SelectionDAGLowering::visitICmp(User &I) {
Reid Spencer266e42b2006-12-23 06:05:41 +00002050 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2051 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2052 predicate = IC->getPredicate();
2053 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2054 predicate = ICmpInst::Predicate(IC->getPredicate());
2055 SDOperand Op1 = getValue(I.getOperand(0));
2056 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencerd9436b62006-11-20 01:22:35 +00002057 ISD::CondCode Opcode;
Reid Spencer266e42b2006-12-23 06:05:41 +00002058 switch (predicate) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002059 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2060 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2061 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2062 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2063 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2064 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2065 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2066 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2067 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2068 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2069 default:
2070 assert(!"Invalid ICmp predicate value");
2071 Opcode = ISD::SETEQ;
2072 break;
2073 }
2074 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2075}
2076
2077void SelectionDAGLowering::visitFCmp(User &I) {
Reid Spencer266e42b2006-12-23 06:05:41 +00002078 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2079 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2080 predicate = FC->getPredicate();
2081 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2082 predicate = FCmpInst::Predicate(FC->getPredicate());
Chris Lattner7a60d912005-01-07 07:47:53 +00002083 SDOperand Op1 = getValue(I.getOperand(0));
2084 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer266e42b2006-12-23 06:05:41 +00002085 ISD::CondCode Condition, FOC, FPC;
2086 switch (predicate) {
2087 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2088 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2089 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2090 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2091 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2092 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2093 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2094 case FCmpInst::FCMP_ORD: FOC = ISD::SETEQ; FPC = ISD::SETO; break;
2095 case FCmpInst::FCMP_UNO: FOC = ISD::SETNE; FPC = ISD::SETUO; break;
2096 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2097 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2098 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2099 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2100 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2101 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2102 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2103 default:
2104 assert(!"Invalid FCmp predicate value");
2105 FOC = FPC = ISD::SETFALSE;
2106 break;
2107 }
2108 if (FiniteOnlyFPMath())
2109 Condition = FOC;
2110 else
2111 Condition = FPC;
2112 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
Chris Lattner7a60d912005-01-07 07:47:53 +00002113}
2114
2115void SelectionDAGLowering::visitSelect(User &I) {
2116 SDOperand Cond = getValue(I.getOperand(0));
2117 SDOperand TrueVal = getValue(I.getOperand(1));
2118 SDOperand FalseVal = getValue(I.getOperand(2));
Dan Gohmana8665142007-06-25 16:23:39 +00002119 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2120 TrueVal, FalseVal));
Chris Lattner7a60d912005-01-07 07:47:53 +00002121}
2122
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002123
2124void SelectionDAGLowering::visitTrunc(User &I) {
2125 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2126 SDOperand N = getValue(I.getOperand(0));
2127 MVT::ValueType DestVT = TLI.getValueType(I.getType());
2128 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2129}
2130
2131void SelectionDAGLowering::visitZExt(User &I) {
2132 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2133 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2134 SDOperand N = getValue(I.getOperand(0));
2135 MVT::ValueType DestVT = TLI.getValueType(I.getType());
2136 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2137}
2138
2139void SelectionDAGLowering::visitSExt(User &I) {
2140 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2141 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2142 SDOperand N = getValue(I.getOperand(0));
2143 MVT::ValueType DestVT = TLI.getValueType(I.getType());
2144 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
2145}
2146
2147void SelectionDAGLowering::visitFPTrunc(User &I) {
2148 // FPTrunc is never a no-op cast, no need to check
2149 SDOperand N = getValue(I.getOperand(0));
2150 MVT::ValueType DestVT = TLI.getValueType(I.getType());
2151 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N));
2152}
2153
2154void SelectionDAGLowering::visitFPExt(User &I){
2155 // FPTrunc is never a no-op cast, no need to check
2156 SDOperand N = getValue(I.getOperand(0));
2157 MVT::ValueType DestVT = TLI.getValueType(I.getType());
2158 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2159}
2160
2161void SelectionDAGLowering::visitFPToUI(User &I) {
2162 // FPToUI is never a no-op cast, no need to check
2163 SDOperand N = getValue(I.getOperand(0));
2164 MVT::ValueType DestVT = TLI.getValueType(I.getType());
2165 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2166}
2167
2168void SelectionDAGLowering::visitFPToSI(User &I) {
2169 // FPToSI is never a no-op cast, no need to check
2170 SDOperand N = getValue(I.getOperand(0));
2171 MVT::ValueType DestVT = TLI.getValueType(I.getType());
2172 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2173}
2174
2175void SelectionDAGLowering::visitUIToFP(User &I) {
2176 // UIToFP is never a no-op cast, no need to check
2177 SDOperand N = getValue(I.getOperand(0));
2178 MVT::ValueType DestVT = TLI.getValueType(I.getType());
2179 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2180}
2181
2182void SelectionDAGLowering::visitSIToFP(User &I){
2183 // UIToFP is never a no-op cast, no need to check
2184 SDOperand N = getValue(I.getOperand(0));
2185 MVT::ValueType DestVT = TLI.getValueType(I.getType());
2186 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2187}
2188
2189void SelectionDAGLowering::visitPtrToInt(User &I) {
2190 // What to do depends on the size of the integer and the size of the pointer.
2191 // We can either truncate, zero extend, or no-op, accordingly.
Chris Lattner7a60d912005-01-07 07:47:53 +00002192 SDOperand N = getValue(I.getOperand(0));
Chris Lattner2f4119a2006-03-22 20:09:35 +00002193 MVT::ValueType SrcVT = N.getValueType();
Chris Lattner4024c002006-03-15 22:19:46 +00002194 MVT::ValueType DestVT = TLI.getValueType(I.getType());
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002195 SDOperand Result;
2196 if (MVT::getSizeInBits(DestVT) < MVT::getSizeInBits(SrcVT))
2197 Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2198 else
2199 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2200 Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2201 setValue(&I, Result);
2202}
Chris Lattner7a60d912005-01-07 07:47:53 +00002203
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002204void SelectionDAGLowering::visitIntToPtr(User &I) {
2205 // What to do depends on the size of the integer and the size of the pointer.
2206 // We can either truncate, zero extend, or no-op, accordingly.
2207 SDOperand N = getValue(I.getOperand(0));
2208 MVT::ValueType SrcVT = N.getValueType();
2209 MVT::ValueType DestVT = TLI.getValueType(I.getType());
2210 if (MVT::getSizeInBits(DestVT) < MVT::getSizeInBits(SrcVT))
2211 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2212 else
2213 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2214 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2215}
2216
2217void SelectionDAGLowering::visitBitCast(User &I) {
2218 SDOperand N = getValue(I.getOperand(0));
2219 MVT::ValueType DestVT = TLI.getValueType(I.getType());
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002220
2221 // BitCast assures us that source and destination are the same size so this
2222 // is either a BIT_CONVERT or a no-op.
2223 if (DestVT != N.getValueType())
2224 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2225 else
2226 setValue(&I, N); // noop cast.
Chris Lattner7a60d912005-01-07 07:47:53 +00002227}
2228
Chris Lattner67271862006-03-29 00:11:43 +00002229void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattner32206f52006-03-18 01:44:44 +00002230 SDOperand InVec = getValue(I.getOperand(0));
2231 SDOperand InVal = getValue(I.getOperand(1));
2232 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2233 getValue(I.getOperand(2)));
2234
Dan Gohmana8665142007-06-25 16:23:39 +00002235 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT,
2236 TLI.getValueType(I.getType()),
2237 InVec, InVal, InIdx));
Chris Lattner32206f52006-03-18 01:44:44 +00002238}
2239
Chris Lattner67271862006-03-29 00:11:43 +00002240void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00002241 SDOperand InVec = getValue(I.getOperand(0));
2242 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2243 getValue(I.getOperand(1)));
Dan Gohmana8665142007-06-25 16:23:39 +00002244 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00002245 TLI.getValueType(I.getType()), InVec, InIdx));
2246}
Chris Lattner32206f52006-03-18 01:44:44 +00002247
Chris Lattner098c01e2006-04-08 04:15:24 +00002248void SelectionDAGLowering::visitShuffleVector(User &I) {
2249 SDOperand V1 = getValue(I.getOperand(0));
2250 SDOperand V2 = getValue(I.getOperand(1));
2251 SDOperand Mask = getValue(I.getOperand(2));
2252
Dan Gohmana8665142007-06-25 16:23:39 +00002253 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE,
2254 TLI.getValueType(I.getType()),
2255 V1, V2, Mask));
Chris Lattner098c01e2006-04-08 04:15:24 +00002256}
2257
2258
Chris Lattner7a60d912005-01-07 07:47:53 +00002259void SelectionDAGLowering::visitGetElementPtr(User &I) {
2260 SDOperand N = getValue(I.getOperand(0));
2261 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner7a60d912005-01-07 07:47:53 +00002262
2263 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2264 OI != E; ++OI) {
2265 Value *Idx = *OI;
Chris Lattner35397782005-12-05 07:10:48 +00002266 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Reid Spencere0fc4df2006-10-20 07:07:24 +00002267 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
Chris Lattner7a60d912005-01-07 07:47:53 +00002268 if (Field) {
2269 // N = N + Offset
Chris Lattnerc473d8e2007-02-10 19:55:17 +00002270 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Chris Lattner7a60d912005-01-07 07:47:53 +00002271 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Misha Brukman77451162005-04-22 04:01:18 +00002272 getIntPtrConstant(Offset));
Chris Lattner7a60d912005-01-07 07:47:53 +00002273 }
2274 Ty = StTy->getElementType(Field);
2275 } else {
2276 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner19a83992005-01-07 21:56:57 +00002277
Chris Lattner43535a12005-11-09 04:45:33 +00002278 // If this is a constant subscript, handle it quickly.
2279 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
Reid Spencere0fc4df2006-10-20 07:07:24 +00002280 if (CI->getZExtValue() == 0) continue;
Reid Spencere63b6512006-12-31 05:55:36 +00002281 uint64_t Offs =
Evan Cheng8ec52832007-01-05 01:46:20 +00002282 TD->getTypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Chris Lattner43535a12005-11-09 04:45:33 +00002283 N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs));
2284 continue;
Chris Lattner7a60d912005-01-07 07:47:53 +00002285 }
Chris Lattner43535a12005-11-09 04:45:33 +00002286
2287 // N = N + Idx * ElementSize;
Owen Anderson20a631f2006-05-03 01:29:57 +00002288 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattner43535a12005-11-09 04:45:33 +00002289 SDOperand IdxN = getValue(Idx);
2290
2291 // If the index is smaller or larger than intptr_t, truncate or extend
2292 // it.
2293 if (IdxN.getValueType() < N.getValueType()) {
Reid Spencere63b6512006-12-31 05:55:36 +00002294 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
Chris Lattner43535a12005-11-09 04:45:33 +00002295 } else if (IdxN.getValueType() > N.getValueType())
2296 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2297
2298 // If this is a multiply by a power of two, turn it into a shl
2299 // immediately. This is a very common case.
2300 if (isPowerOf2_64(ElementSize)) {
2301 unsigned Amt = Log2_64(ElementSize);
2302 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner41fd6d52005-11-09 16:50:40 +00002303 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner43535a12005-11-09 04:45:33 +00002304 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2305 continue;
2306 }
2307
2308 SDOperand Scale = getIntPtrConstant(ElementSize);
2309 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2310 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner7a60d912005-01-07 07:47:53 +00002311 }
2312 }
2313 setValue(&I, N);
2314}
2315
2316void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2317 // If this is a fixed sized alloca in the entry block of the function,
2318 // allocate it statically on the stack.
2319 if (FuncInfo.StaticAllocaMap.count(&I))
2320 return; // getValue will auto-populate this.
2321
2322 const Type *Ty = I.getAllocatedType();
Owen Anderson20a631f2006-05-03 01:29:57 +00002323 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
Chris Lattner50ee0e42007-01-20 22:35:55 +00002324 unsigned Align =
Chris Lattner945e4372007-02-14 05:52:17 +00002325 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Chris Lattner50ee0e42007-01-20 22:35:55 +00002326 I.getAlignment());
Chris Lattner7a60d912005-01-07 07:47:53 +00002327
2328 SDOperand AllocSize = getValue(I.getArraySize());
Chris Lattnereccb73d2005-01-22 23:04:37 +00002329 MVT::ValueType IntPtr = TLI.getPointerTy();
2330 if (IntPtr < AllocSize.getValueType())
2331 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
2332 else if (IntPtr > AllocSize.getValueType())
2333 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner7a60d912005-01-07 07:47:53 +00002334
Chris Lattnereccb73d2005-01-22 23:04:37 +00002335 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner7a60d912005-01-07 07:47:53 +00002336 getIntPtrConstant(TySize));
2337
Evan Cheng95667c52007-08-16 23:46:29 +00002338 // Handle alignment. If the requested alignment is less than or equal to
2339 // the stack alignment, ignore it. If the size is greater than or equal to
2340 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
Chris Lattner7a60d912005-01-07 07:47:53 +00002341 unsigned StackAlign =
2342 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
Evan Cheng95667c52007-08-16 23:46:29 +00002343 if (Align <= StackAlign)
Chris Lattner7a60d912005-01-07 07:47:53 +00002344 Align = 0;
Evan Cheng95667c52007-08-16 23:46:29 +00002345
2346 // Round the size of the allocation up to the stack alignment size
2347 // by add SA-1 to the size.
2348 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
2349 getIntPtrConstant(StackAlign-1));
2350 // Mask out the low bits for alignment purposes.
2351 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
2352 getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Chris Lattner7a60d912005-01-07 07:47:53 +00002353
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002354 SDOperand Ops[] = { getRoot(), AllocSize, getIntPtrConstant(Align) };
Chris Lattnerbd887772006-08-14 23:53:35 +00002355 const MVT::ValueType *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
2356 MVT::Other);
2357 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
Chris Lattner79084302007-02-04 01:31:47 +00002358 setValue(&I, DSA);
2359 DAG.setRoot(DSA.getValue(1));
Chris Lattner7a60d912005-01-07 07:47:53 +00002360
2361 // Inform the Frame Information that we have just allocated a variable-sized
2362 // object.
2363 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2364}
2365
Chris Lattner7a60d912005-01-07 07:47:53 +00002366void SelectionDAGLowering::visitLoad(LoadInst &I) {
2367 SDOperand Ptr = getValue(I.getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00002368
Chris Lattner4d9651c2005-01-17 22:19:26 +00002369 SDOperand Root;
2370 if (I.isVolatile())
2371 Root = getRoot();
2372 else {
2373 // Do not serialize non-volatile loads against each other.
2374 Root = DAG.getRoot();
2375 }
Chris Lattner4024c002006-03-15 22:19:46 +00002376
Evan Chenge71fe34d2006-10-09 20:57:25 +00002377 setValue(&I, getLoadFrom(I.getType(), Ptr, I.getOperand(0),
Christopher Lamb8af6d582007-04-22 23:15:30 +00002378 Root, I.isVolatile(), I.getAlignment()));
Chris Lattner4024c002006-03-15 22:19:46 +00002379}
2380
2381SDOperand SelectionDAGLowering::getLoadFrom(const Type *Ty, SDOperand Ptr,
Evan Chenge71fe34d2006-10-09 20:57:25 +00002382 const Value *SV, SDOperand Root,
Christopher Lamb8af6d582007-04-22 23:15:30 +00002383 bool isVolatile,
2384 unsigned Alignment) {
Dan Gohmana8665142007-06-25 16:23:39 +00002385 SDOperand L =
2386 DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SV, 0,
2387 isVolatile, Alignment);
Chris Lattner4d9651c2005-01-17 22:19:26 +00002388
Chris Lattner4024c002006-03-15 22:19:46 +00002389 if (isVolatile)
Chris Lattner4d9651c2005-01-17 22:19:26 +00002390 DAG.setRoot(L.getValue(1));
2391 else
2392 PendingLoads.push_back(L.getValue(1));
Chris Lattner4024c002006-03-15 22:19:46 +00002393
2394 return L;
Chris Lattner7a60d912005-01-07 07:47:53 +00002395}
2396
2397
2398void SelectionDAGLowering::visitStore(StoreInst &I) {
2399 Value *SrcV = I.getOperand(0);
2400 SDOperand Src = getValue(SrcV);
2401 SDOperand Ptr = getValue(I.getOperand(1));
Evan Cheng258657e2006-12-20 01:27:29 +00002402 DAG.setRoot(DAG.getStore(getRoot(), Src, Ptr, I.getOperand(1), 0,
Christopher Lamb8af6d582007-04-22 23:15:30 +00002403 I.isVolatile(), I.getAlignment()));
Chris Lattner7a60d912005-01-07 07:47:53 +00002404}
2405
Chris Lattnerd96b09a2006-03-24 02:22:33 +00002406/// IntrinsicCannotAccessMemory - Return true if the specified intrinsic cannot
2407/// access memory and has no other side effects at all.
2408static bool IntrinsicCannotAccessMemory(unsigned IntrinsicID) {
2409#define GET_NO_MEMORY_INTRINSICS
2410#include "llvm/Intrinsics.gen"
2411#undef GET_NO_MEMORY_INTRINSICS
2412 return false;
2413}
2414
Chris Lattnera9c59156b2006-04-02 03:41:14 +00002415// IntrinsicOnlyReadsMemory - Return true if the specified intrinsic doesn't
2416// have any side-effects or if it only reads memory.
2417static bool IntrinsicOnlyReadsMemory(unsigned IntrinsicID) {
2418#define GET_SIDE_EFFECT_INFO
2419#include "llvm/Intrinsics.gen"
2420#undef GET_SIDE_EFFECT_INFO
2421 return false;
2422}
2423
Chris Lattnerd96b09a2006-03-24 02:22:33 +00002424/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2425/// node.
2426void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
2427 unsigned Intrinsic) {
Chris Lattner313229c2006-03-24 22:49:42 +00002428 bool HasChain = !IntrinsicCannotAccessMemory(Intrinsic);
Chris Lattnera9c59156b2006-04-02 03:41:14 +00002429 bool OnlyLoad = HasChain && IntrinsicOnlyReadsMemory(Intrinsic);
Chris Lattnerd96b09a2006-03-24 02:22:33 +00002430
2431 // Build the operand list.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002432 SmallVector<SDOperand, 8> Ops;
Chris Lattnera9c59156b2006-04-02 03:41:14 +00002433 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2434 if (OnlyLoad) {
2435 // We don't need to serialize loads against other loads.
2436 Ops.push_back(DAG.getRoot());
2437 } else {
2438 Ops.push_back(getRoot());
2439 }
2440 }
Chris Lattnerd96b09a2006-03-24 02:22:33 +00002441
2442 // Add the intrinsic ID as an integer operand.
2443 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2444
2445 // Add all operands of the call to the operand list.
2446 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2447 SDOperand Op = getValue(I.getOperand(i));
Chris Lattnerd96b09a2006-03-24 02:22:33 +00002448 assert(TLI.isTypeLegal(Op.getValueType()) &&
2449 "Intrinsic uses a non-legal type?");
2450 Ops.push_back(Op);
2451 }
2452
2453 std::vector<MVT::ValueType> VTs;
2454 if (I.getType() != Type::VoidTy) {
2455 MVT::ValueType VT = TLI.getValueType(I.getType());
Dan Gohmana8665142007-06-25 16:23:39 +00002456 if (MVT::isVector(VT)) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00002457 const VectorType *DestTy = cast<VectorType>(I.getType());
Chris Lattnerd96b09a2006-03-24 02:22:33 +00002458 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
2459
2460 VT = MVT::getVectorType(EltVT, DestTy->getNumElements());
2461 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2462 }
2463
2464 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2465 VTs.push_back(VT);
2466 }
2467 if (HasChain)
2468 VTs.push_back(MVT::Other);
2469
Chris Lattnerbd887772006-08-14 23:53:35 +00002470 const MVT::ValueType *VTList = DAG.getNodeValueTypes(VTs);
2471
Chris Lattnerd96b09a2006-03-24 02:22:33 +00002472 // Create the node.
Chris Lattnere55d1712006-03-28 00:40:33 +00002473 SDOperand Result;
2474 if (!HasChain)
Chris Lattnerbd887772006-08-14 23:53:35 +00002475 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
2476 &Ops[0], Ops.size());
Chris Lattnere55d1712006-03-28 00:40:33 +00002477 else if (I.getType() != Type::VoidTy)
Chris Lattnerbd887772006-08-14 23:53:35 +00002478 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
2479 &Ops[0], Ops.size());
Chris Lattnere55d1712006-03-28 00:40:33 +00002480 else
Chris Lattnerbd887772006-08-14 23:53:35 +00002481 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
2482 &Ops[0], Ops.size());
Chris Lattnere55d1712006-03-28 00:40:33 +00002483
Chris Lattnera9c59156b2006-04-02 03:41:14 +00002484 if (HasChain) {
2485 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
2486 if (OnlyLoad)
2487 PendingLoads.push_back(Chain);
2488 else
2489 DAG.setRoot(Chain);
2490 }
Chris Lattnerd96b09a2006-03-24 02:22:33 +00002491 if (I.getType() != Type::VoidTy) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00002492 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Dan Gohmana8665142007-06-25 16:23:39 +00002493 MVT::ValueType VT = TLI.getValueType(PTy);
2494 Result = DAG.getNode(ISD::BIT_CONVERT, VT, Result);
Chris Lattnerd96b09a2006-03-24 02:22:33 +00002495 }
2496 setValue(&I, Result);
2497 }
2498}
2499
Duncan Sands81df18a2007-07-06 09:10:03 +00002500/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
Duncan Sandsfe806382007-07-04 20:52:51 +00002501static GlobalVariable *ExtractTypeInfo (Value *V) {
Duncan Sands81df18a2007-07-06 09:10:03 +00002502 V = IntrinsicInst::StripPointerCasts(V);
2503 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
Duncan Sandsfe806382007-07-04 20:52:51 +00002504 assert (GV || isa<ConstantPointerNull>(V) &&
2505 "TypeInfo must be a global variable or NULL");
2506 return GV;
2507}
2508
Duncan Sands92bf2c62007-06-15 19:04:19 +00002509/// addCatchInfo - Extract the personality and type infos from an eh.selector
Duncan Sandsfe806382007-07-04 20:52:51 +00002510/// call, and add them to the specified machine basic block.
Duncan Sands92bf2c62007-06-15 19:04:19 +00002511static void addCatchInfo(CallInst &I, MachineModuleInfo *MMI,
2512 MachineBasicBlock *MBB) {
2513 // Inform the MachineModuleInfo of the personality for this landing pad.
2514 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
2515 assert(CE->getOpcode() == Instruction::BitCast &&
2516 isa<Function>(CE->getOperand(0)) &&
2517 "Personality should be a function");
2518 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
2519
2520 // Gather all the type infos for this landing pad and pass them along to
2521 // MachineModuleInfo.
2522 std::vector<GlobalVariable *> TyInfo;
Duncan Sandsfe806382007-07-04 20:52:51 +00002523 unsigned N = I.getNumOperands();
2524
2525 for (unsigned i = N - 1; i > 2; --i) {
2526 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
2527 unsigned FilterLength = CI->getZExtValue();
Duncan Sandsef5a6542007-08-27 15:47:50 +00002528 unsigned FirstCatch = i + FilterLength + !FilterLength;
Duncan Sandsfe806382007-07-04 20:52:51 +00002529 assert (FirstCatch <= N && "Invalid filter length");
2530
2531 if (FirstCatch < N) {
2532 TyInfo.reserve(N - FirstCatch);
2533 for (unsigned j = FirstCatch; j < N; ++j)
2534 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2535 MMI->addCatchTypeInfo(MBB, TyInfo);
2536 TyInfo.clear();
2537 }
2538
Duncan Sandsef5a6542007-08-27 15:47:50 +00002539 if (!FilterLength) {
2540 // Cleanup.
2541 MMI->addCleanup(MBB);
2542 } else {
2543 // Filter.
2544 TyInfo.reserve(FilterLength - 1);
2545 for (unsigned j = i + 1; j < FirstCatch; ++j)
2546 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2547 MMI->addFilterTypeInfo(MBB, TyInfo);
2548 TyInfo.clear();
2549 }
Duncan Sandsfe806382007-07-04 20:52:51 +00002550
2551 N = i;
2552 }
Duncan Sands92bf2c62007-06-15 19:04:19 +00002553 }
Duncan Sandsfe806382007-07-04 20:52:51 +00002554
2555 if (N > 3) {
2556 TyInfo.reserve(N - 3);
2557 for (unsigned j = 3; j < N; ++j)
2558 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
Duncan Sands92bf2c62007-06-15 19:04:19 +00002559 MMI->addCatchTypeInfo(MBB, TyInfo);
Duncan Sandsfe806382007-07-04 20:52:51 +00002560 }
Duncan Sands92bf2c62007-06-15 19:04:19 +00002561}
2562
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002563/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
2564/// we want to emit this as a call to a named external function, return the name
2565/// otherwise lower it and return null.
2566const char *
2567SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
2568 switch (Intrinsic) {
Chris Lattnerd96b09a2006-03-24 02:22:33 +00002569 default:
2570 // By default, turn this into a target intrinsic node.
2571 visitTargetIntrinsic(I, Intrinsic);
2572 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002573 case Intrinsic::vastart: visitVAStart(I); return 0;
2574 case Intrinsic::vaend: visitVAEnd(I); return 0;
2575 case Intrinsic::vacopy: visitVACopy(I); return 0;
Nate Begemaneda59972007-01-29 22:58:52 +00002576 case Intrinsic::returnaddress:
2577 setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
2578 getValue(I.getOperand(1))));
2579 return 0;
2580 case Intrinsic::frameaddress:
2581 setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
2582 getValue(I.getOperand(1))));
2583 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002584 case Intrinsic::setjmp:
Anton Korobeynikov3b7c2572006-12-10 23:12:42 +00002585 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002586 break;
2587 case Intrinsic::longjmp:
Anton Korobeynikov3b7c2572006-12-10 23:12:42 +00002588 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002589 break;
Chris Lattner093c1592006-03-03 00:00:25 +00002590 case Intrinsic::memcpy_i32:
2591 case Intrinsic::memcpy_i64:
2592 visitMemIntrinsic(I, ISD::MEMCPY);
2593 return 0;
2594 case Intrinsic::memset_i32:
2595 case Intrinsic::memset_i64:
2596 visitMemIntrinsic(I, ISD::MEMSET);
2597 return 0;
2598 case Intrinsic::memmove_i32:
2599 case Intrinsic::memmove_i64:
2600 visitMemIntrinsic(I, ISD::MEMMOVE);
2601 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002602
Chris Lattner5d4e61d2005-12-13 17:40:33 +00002603 case Intrinsic::dbg_stoppoint: {
Jim Laskeyc56315c2007-01-26 21:22:28 +00002604 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeya8bdac82006-03-23 18:06:46 +00002605 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskeyc56315c2007-01-26 21:22:28 +00002606 if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002607 SDOperand Ops[5];
Chris Lattner435b4022005-11-29 06:21:05 +00002608
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002609 Ops[0] = getRoot();
2610 Ops[1] = getValue(SPI.getLineValue());
2611 Ops[2] = getValue(SPI.getColumnValue());
Chris Lattner435b4022005-11-29 06:21:05 +00002612
Jim Laskeyc56315c2007-01-26 21:22:28 +00002613 DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
Jim Laskey5995d012006-02-11 01:01:30 +00002614 assert(DD && "Not a debug information descriptor");
Jim Laskeya8bdac82006-03-23 18:06:46 +00002615 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
2616
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002617 Ops[3] = DAG.getString(CompileUnit->getFileName());
2618 Ops[4] = DAG.getString(CompileUnit->getDirectory());
Jim Laskey5995d012006-02-11 01:01:30 +00002619
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002620 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops, 5));
Chris Lattner5d4e61d2005-12-13 17:40:33 +00002621 }
Jim Laskeya8bdac82006-03-23 18:06:46 +00002622
Chris Lattnerf2b62f32005-11-16 07:22:30 +00002623 return 0;
Chris Lattner435b4022005-11-29 06:21:05 +00002624 }
Jim Laskeya8bdac82006-03-23 18:06:46 +00002625 case Intrinsic::dbg_region_start: {
Jim Laskeyc56315c2007-01-26 21:22:28 +00002626 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeya8bdac82006-03-23 18:06:46 +00002627 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskeyc56315c2007-01-26 21:22:28 +00002628 if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
2629 unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
Jim Laskeyf9e54452007-01-26 14:34:52 +00002630 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002631 DAG.getConstant(LabelID, MVT::i32)));
Jim Laskeya8bdac82006-03-23 18:06:46 +00002632 }
2633
Chris Lattnerf2b62f32005-11-16 07:22:30 +00002634 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00002635 }
2636 case Intrinsic::dbg_region_end: {
Jim Laskeyc56315c2007-01-26 21:22:28 +00002637 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeya8bdac82006-03-23 18:06:46 +00002638 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskeyc56315c2007-01-26 21:22:28 +00002639 if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
2640 unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
Jim Laskeyf9e54452007-01-26 14:34:52 +00002641 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other,
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002642 getRoot(), DAG.getConstant(LabelID, MVT::i32)));
Jim Laskeya8bdac82006-03-23 18:06:46 +00002643 }
2644
Chris Lattnerf2b62f32005-11-16 07:22:30 +00002645 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00002646 }
2647 case Intrinsic::dbg_func_start: {
Jim Laskeyc56315c2007-01-26 21:22:28 +00002648 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeya8bdac82006-03-23 18:06:46 +00002649 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jim Laskeyc56315c2007-01-26 21:22:28 +00002650 if (MMI && FSI.getSubprogram() &&
2651 MMI->Verify(FSI.getSubprogram())) {
2652 unsigned LabelID = MMI->RecordRegionStart(FSI.getSubprogram());
Jim Laskeyf9e54452007-01-26 14:34:52 +00002653 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other,
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002654 getRoot(), DAG.getConstant(LabelID, MVT::i32)));
Jim Laskeya8bdac82006-03-23 18:06:46 +00002655 }
2656
Chris Lattnerf2b62f32005-11-16 07:22:30 +00002657 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00002658 }
2659 case Intrinsic::dbg_declare: {
Jim Laskeyc56315c2007-01-26 21:22:28 +00002660 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeya8bdac82006-03-23 18:06:46 +00002661 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Jim Laskeyc56315c2007-01-26 21:22:28 +00002662 if (MMI && DI.getVariable() && MMI->Verify(DI.getVariable())) {
Jim Laskey53f1ecc2006-03-24 09:50:27 +00002663 SDOperand AddressOp = getValue(DI.getAddress());
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002664 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(AddressOp))
Jim Laskeyc56315c2007-01-26 21:22:28 +00002665 MMI->RecordVariable(DI.getVariable(), FI->getIndex());
Jim Laskeya8bdac82006-03-23 18:06:46 +00002666 }
2667
2668 return 0;
2669 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002670
Jim Laskey4b37a4c2007-02-21 22:53:45 +00002671 case Intrinsic::eh_exception: {
Evan Cheng77f541d2007-06-27 18:45:32 +00002672 if (ExceptionHandling) {
Duncan Sands003c0b12007-07-06 09:18:59 +00002673 if (!CurMBB->isLandingPad()) {
2674 // FIXME: Mark exception register as live in. Hack for PR1508.
2675 unsigned Reg = TLI.getExceptionAddressRegister();
2676 if (Reg) CurMBB->addLiveIn(Reg);
2677 }
Jim Laskey504e9942007-02-22 15:38:06 +00002678 // Insert the EXCEPTIONADDR instruction.
2679 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
2680 SDOperand Ops[1];
2681 Ops[0] = DAG.getRoot();
2682 SDOperand Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
2683 setValue(&I, Op);
2684 DAG.setRoot(Op.getValue(1));
Jim Laskeye1d1c052007-02-24 09:45:44 +00002685 } else {
Jim Laskeycf465fc2007-02-28 18:37:04 +00002686 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
Jim Laskey504e9942007-02-22 15:38:06 +00002687 }
Jim Laskey4b37a4c2007-02-21 22:53:45 +00002688 return 0;
2689 }
2690
Duncan Sandsfe806382007-07-04 20:52:51 +00002691 case Intrinsic::eh_selector:{
Jim Laskey4b37a4c2007-02-21 22:53:45 +00002692 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey4b37a4c2007-02-21 22:53:45 +00002693
Duncan Sands92bf2c62007-06-15 19:04:19 +00002694 if (ExceptionHandling && MMI) {
2695 if (CurMBB->isLandingPad())
2696 addCatchInfo(I, MMI, CurMBB);
Evan Cheng77f541d2007-06-27 18:45:32 +00002697 else {
Duncan Sands92bf2c62007-06-15 19:04:19 +00002698#ifndef NDEBUG
Duncan Sands92bf2c62007-06-15 19:04:19 +00002699 FuncInfo.CatchInfoLost.insert(&I);
2700#endif
Duncan Sands003c0b12007-07-06 09:18:59 +00002701 // FIXME: Mark exception selector register as live in. Hack for PR1508.
2702 unsigned Reg = TLI.getExceptionSelectorRegister();
2703 if (Reg) CurMBB->addLiveIn(Reg);
Evan Cheng77f541d2007-06-27 18:45:32 +00002704 }
Jim Laskey504e9942007-02-22 15:38:06 +00002705
2706 // Insert the EHSELECTION instruction.
Evan Chenge0cb6bb2007-09-04 20:39:26 +00002707 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::Other);
Jim Laskey504e9942007-02-22 15:38:06 +00002708 SDOperand Ops[2];
2709 Ops[0] = getValue(I.getOperand(1));
2710 Ops[1] = getRoot();
2711 SDOperand Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
2712 setValue(&I, Op);
2713 DAG.setRoot(Op.getValue(1));
Jim Laskeye1d1c052007-02-24 09:45:44 +00002714 } else {
Anton Korobeynikov11940fb2007-05-02 22:15:48 +00002715 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
Jim Laskey504e9942007-02-22 15:38:06 +00002716 }
Jim Laskey4b37a4c2007-02-21 22:53:45 +00002717
2718 return 0;
2719 }
2720
2721 case Intrinsic::eh_typeid_for: {
Jim Laskey4b37a4c2007-02-21 22:53:45 +00002722 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey4b37a4c2007-02-21 22:53:45 +00002723
Jim Laskey504e9942007-02-22 15:38:06 +00002724 if (MMI) {
2725 // Find the type id for the given typeinfo.
Duncan Sandsfe806382007-07-04 20:52:51 +00002726 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
Duncan Sands4cb9eb82007-05-04 17:12:26 +00002727
Jim Laskey504e9942007-02-22 15:38:06 +00002728 unsigned TypeID = MMI->getTypeIDFor(GV);
2729 setValue(&I, DAG.getConstant(TypeID, MVT::i32));
Jim Laskeye1d1c052007-02-24 09:45:44 +00002730 } else {
Duncan Sands9d974202007-07-06 14:46:23 +00002731 // Return something different to eh_selector.
2732 setValue(&I, DAG.getConstant(1, MVT::i32));
Jim Laskey504e9942007-02-22 15:38:06 +00002733 }
Jim Laskey4b37a4c2007-02-21 22:53:45 +00002734
2735 return 0;
2736 }
2737
Anton Korobeynikov383a3242007-07-14 14:06:15 +00002738 case Intrinsic::eh_return: {
2739 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
2740
2741 if (MMI && ExceptionHandling) {
2742 MMI->setCallsEHReturn(true);
2743 DAG.setRoot(DAG.getNode(ISD::EH_RETURN,
2744 MVT::Other,
2745 getRoot(),
2746 getValue(I.getOperand(1)),
2747 getValue(I.getOperand(2))));
2748 } else {
2749 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
2750 }
2751
2752 return 0;
2753 }
2754
2755 case Intrinsic::eh_unwind_init: {
2756 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
2757 MMI->setCallsUnwindInit(true);
2758 }
2759
2760 return 0;
2761 }
2762
2763 case Intrinsic::eh_dwarf_cfa: {
2764 if (ExceptionHandling) {
2765 MVT::ValueType VT = getValue(I.getOperand(1)).getValueType();
Anton Korobeynikov97cdac82007-08-23 07:21:06 +00002766 SDOperand CfaArg;
2767 if (MVT::getSizeInBits(VT) > MVT::getSizeInBits(TLI.getPointerTy()))
2768 CfaArg = DAG.getNode(ISD::TRUNCATE,
2769 TLI.getPointerTy(), getValue(I.getOperand(1)));
2770 else
2771 CfaArg = DAG.getNode(ISD::SIGN_EXTEND,
2772 TLI.getPointerTy(), getValue(I.getOperand(1)));
2773
Anton Korobeynikov383a3242007-07-14 14:06:15 +00002774 SDOperand Offset = DAG.getNode(ISD::ADD,
2775 TLI.getPointerTy(),
2776 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET,
Anton Korobeynikov97cdac82007-08-23 07:21:06 +00002777 TLI.getPointerTy()),
2778 CfaArg);
Anton Korobeynikov383a3242007-07-14 14:06:15 +00002779 setValue(&I, DAG.getNode(ISD::ADD,
2780 TLI.getPointerTy(),
2781 DAG.getNode(ISD::FRAMEADDR,
2782 TLI.getPointerTy(),
2783 DAG.getConstant(0,
2784 TLI.getPointerTy())),
2785 Offset));
2786 } else {
2787 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
2788 }
2789
2790 return 0;
2791 }
2792
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00002793 case Intrinsic::sqrt_f32:
2794 case Intrinsic::sqrt_f64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002795 setValue(&I, DAG.getNode(ISD::FSQRT,
2796 getValue(I.getOperand(1)).getValueType(),
2797 getValue(I.getOperand(1))));
2798 return 0;
Chris Lattnerf0359b32006-09-09 06:03:30 +00002799 case Intrinsic::powi_f32:
2800 case Intrinsic::powi_f64:
2801 setValue(&I, DAG.getNode(ISD::FPOWI,
2802 getValue(I.getOperand(1)).getValueType(),
2803 getValue(I.getOperand(1)),
2804 getValue(I.getOperand(2))));
2805 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002806 case Intrinsic::pcmarker: {
2807 SDOperand Tmp = getValue(I.getOperand(1));
2808 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
2809 return 0;
2810 }
Andrew Lenharthde1b5d62005-11-11 22:48:54 +00002811 case Intrinsic::readcyclecounter: {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002812 SDOperand Op = getRoot();
Chris Lattnerbd887772006-08-14 23:53:35 +00002813 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
2814 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
2815 &Op, 1);
Andrew Lenharthde1b5d62005-11-11 22:48:54 +00002816 setValue(&I, Tmp);
2817 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth01aa5632005-11-11 16:47:30 +00002818 return 0;
Andrew Lenharthde1b5d62005-11-11 22:48:54 +00002819 }
Chris Lattnerf269d842007-04-10 03:20:39 +00002820 case Intrinsic::part_select: {
Reid Spencer85460ac2007-04-05 01:20:18 +00002821 // Currently not implemented: just abort
Reid Spencerc6251a72007-04-12 02:48:46 +00002822 assert(0 && "part_select intrinsic not implemented");
2823 abort();
2824 }
2825 case Intrinsic::part_set: {
2826 // Currently not implemented: just abort
2827 assert(0 && "part_set intrinsic not implemented");
Reid Spencer85460ac2007-04-05 01:20:18 +00002828 abort();
Reid Spencercce90f52007-04-04 23:48:25 +00002829 }
Reid Spencer3a0843e2007-04-01 07:34:11 +00002830 case Intrinsic::bswap:
Nate Begeman2fba8a32006-01-14 03:14:10 +00002831 setValue(&I, DAG.getNode(ISD::BSWAP,
2832 getValue(I.getOperand(1)).getValueType(),
2833 getValue(I.getOperand(1))));
2834 return 0;
Reid Spencer3a0843e2007-04-01 07:34:11 +00002835 case Intrinsic::cttz: {
2836 SDOperand Arg = getValue(I.getOperand(1));
2837 MVT::ValueType Ty = Arg.getValueType();
2838 SDOperand result = DAG.getNode(ISD::CTTZ, Ty, Arg);
Reid Spencer3a0843e2007-04-01 07:34:11 +00002839 setValue(&I, result);
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002840 return 0;
Reid Spencer3a0843e2007-04-01 07:34:11 +00002841 }
2842 case Intrinsic::ctlz: {
2843 SDOperand Arg = getValue(I.getOperand(1));
2844 MVT::ValueType Ty = Arg.getValueType();
2845 SDOperand result = DAG.getNode(ISD::CTLZ, Ty, Arg);
Reid Spencer3a0843e2007-04-01 07:34:11 +00002846 setValue(&I, result);
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002847 return 0;
Reid Spencer3a0843e2007-04-01 07:34:11 +00002848 }
2849 case Intrinsic::ctpop: {
2850 SDOperand Arg = getValue(I.getOperand(1));
2851 MVT::ValueType Ty = Arg.getValueType();
2852 SDOperand result = DAG.getNode(ISD::CTPOP, Ty, Arg);
Reid Spencer3a0843e2007-04-01 07:34:11 +00002853 setValue(&I, result);
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002854 return 0;
Reid Spencer3a0843e2007-04-01 07:34:11 +00002855 }
Chris Lattnerb3266452006-01-13 02:50:02 +00002856 case Intrinsic::stacksave: {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002857 SDOperand Op = getRoot();
Chris Lattnerbd887772006-08-14 23:53:35 +00002858 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE,
2859 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
Chris Lattnerb3266452006-01-13 02:50:02 +00002860 setValue(&I, Tmp);
2861 DAG.setRoot(Tmp.getValue(1));
2862 return 0;
2863 }
Chris Lattnerdeda32a2006-01-23 05:22:07 +00002864 case Intrinsic::stackrestore: {
2865 SDOperand Tmp = getValue(I.getOperand(1));
2866 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattnerb3266452006-01-13 02:50:02 +00002867 return 0;
Chris Lattnerdeda32a2006-01-23 05:22:07 +00002868 }
Chris Lattner9e8b6332005-12-12 22:51:16 +00002869 case Intrinsic::prefetch:
2870 // FIXME: Currently discarding prefetches.
2871 return 0;
Tanya Lattnere199f972007-06-15 22:26:58 +00002872
2873 case Intrinsic::var_annotation:
2874 // Discard annotate attributes
2875 return 0;
Duncan Sands644f9172007-07-27 12:58:54 +00002876
2877 case Intrinsic::adjust_trampoline: {
2878 SDOperand Arg = getValue(I.getOperand(1));
2879 setValue(&I, DAG.getNode(ISD::ADJUST_TRAMP, TLI.getPointerTy(), Arg));
2880 return 0;
2881 }
2882
2883 case Intrinsic::init_trampoline: {
2884 const Function *F =
2885 cast<Function>(IntrinsicInst::StripPointerCasts(I.getOperand(2)));
2886
2887 SDOperand Ops[6];
2888 Ops[0] = getRoot();
2889 Ops[1] = getValue(I.getOperand(1));
2890 Ops[2] = getValue(I.getOperand(2));
2891 Ops[3] = getValue(I.getOperand(3));
2892 Ops[4] = DAG.getSrcValue(I.getOperand(1));
2893 Ops[5] = DAG.getSrcValue(F);
2894
2895 DAG.setRoot(DAG.getNode(ISD::TRAMPOLINE, MVT::Other, Ops, 6));
2896 return 0;
2897 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002898 }
2899}
2900
2901
Jim Laskey31fef782007-02-23 21:45:01 +00002902void SelectionDAGLowering::LowerCallTo(Instruction &I,
2903 const Type *CalledValueTy,
2904 unsigned CallingConv,
2905 bool IsTailCall,
Anton Korobeynikov3b327822007-05-23 11:08:31 +00002906 SDOperand Callee, unsigned OpIdx,
2907 MachineBasicBlock *LandingPad) {
Jim Laskey31fef782007-02-23 21:45:01 +00002908 const PointerType *PT = cast<PointerType>(CalledValueTy);
Jim Laskey504e9942007-02-22 15:38:06 +00002909 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Reid Spencer71b79e32007-04-09 06:17:21 +00002910 const ParamAttrsList *Attrs = FTy->getParamAttrs();
Anton Korobeynikov3b327822007-05-23 11:08:31 +00002911 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
2912 unsigned BeginLabel = 0, EndLabel = 0;
2913
Jim Laskey504e9942007-02-22 15:38:06 +00002914 TargetLowering::ArgListTy Args;
2915 TargetLowering::ArgListEntry Entry;
2916 Args.reserve(I.getNumOperands());
2917 for (unsigned i = OpIdx, e = I.getNumOperands(); i != e; ++i) {
2918 Value *Arg = I.getOperand(i);
2919 SDOperand ArgNode = getValue(Arg);
2920 Entry.Node = ArgNode; Entry.Ty = Arg->getType();
Duncan Sands671e8c42007-05-07 20:49:28 +00002921
2922 unsigned attrInd = i - OpIdx + 1;
2923 Entry.isSExt = Attrs && Attrs->paramHasAttr(attrInd, ParamAttr::SExt);
2924 Entry.isZExt = Attrs && Attrs->paramHasAttr(attrInd, ParamAttr::ZExt);
2925 Entry.isInReg = Attrs && Attrs->paramHasAttr(attrInd, ParamAttr::InReg);
2926 Entry.isSRet = Attrs && Attrs->paramHasAttr(attrInd, ParamAttr::StructRet);
Duncan Sands644f9172007-07-27 12:58:54 +00002927 Entry.isNest = Attrs && Attrs->paramHasAttr(attrInd, ParamAttr::Nest);
Rafael Espindola9c3d20d2007-08-20 15:18:24 +00002928 Entry.isByVal = Attrs && Attrs->paramHasAttr(attrInd, ParamAttr::ByVal);
Jim Laskey504e9942007-02-22 15:38:06 +00002929 Args.push_back(Entry);
2930 }
2931
Duncan Sands3c1b7fc2007-09-05 11:27:52 +00002932 if (ExceptionHandling && MMI && LandingPad) {
Anton Korobeynikov3b327822007-05-23 11:08:31 +00002933 // Insert a label before the invoke call to mark the try range. This can be
2934 // used to detect deletion of the invoke via the MachineModuleInfo.
2935 BeginLabel = MMI->NextLabelID();
2936 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
2937 DAG.getConstant(BeginLabel, MVT::i32)));
2938 }
2939
Jim Laskey504e9942007-02-22 15:38:06 +00002940 std::pair<SDOperand,SDOperand> Result =
2941 TLI.LowerCallTo(getRoot(), I.getType(),
Reid Spencera472f662007-04-11 02:44:20 +00002942 Attrs && Attrs->paramHasAttr(0, ParamAttr::SExt),
Jim Laskey31fef782007-02-23 21:45:01 +00002943 FTy->isVarArg(), CallingConv, IsTailCall,
Jim Laskey504e9942007-02-22 15:38:06 +00002944 Callee, Args, DAG);
2945 if (I.getType() != Type::VoidTy)
2946 setValue(&I, Result.first);
2947 DAG.setRoot(Result.second);
Anton Korobeynikov3b327822007-05-23 11:08:31 +00002948
Duncan Sands3c1b7fc2007-09-05 11:27:52 +00002949 if (ExceptionHandling && MMI && LandingPad) {
Anton Korobeynikov3b327822007-05-23 11:08:31 +00002950 // Insert a label at the end of the invoke call to mark the try range. This
2951 // can be used to detect deletion of the invoke via the MachineModuleInfo.
2952 EndLabel = MMI->NextLabelID();
2953 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
2954 DAG.getConstant(EndLabel, MVT::i32)));
2955
2956 // Inform MachineModuleInfo of range.
2957 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
2958 }
Jim Laskey504e9942007-02-22 15:38:06 +00002959}
2960
2961
Chris Lattner7a60d912005-01-07 07:47:53 +00002962void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner18d2b342005-01-08 22:48:57 +00002963 const char *RenameFn = 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002964 if (Function *F = I.getCalledFunction()) {
Reid Spencer5301e7c2007-01-30 20:08:39 +00002965 if (F->isDeclaration())
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002966 if (unsigned IID = F->getIntrinsicID()) {
2967 RenameFn = visitIntrinsicCall(I, IID);
2968 if (!RenameFn)
2969 return;
2970 } else { // Not an LLVM intrinsic.
2971 const std::string &Name = F->getName();
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00002972 if (Name[0] == 'c' && (Name == "copysign" || Name == "copysignf")) {
2973 if (I.getNumOperands() == 3 && // Basic sanity checks.
2974 I.getOperand(1)->getType()->isFloatingPoint() &&
2975 I.getType() == I.getOperand(1)->getType() &&
2976 I.getType() == I.getOperand(2)->getType()) {
2977 SDOperand LHS = getValue(I.getOperand(1));
2978 SDOperand RHS = getValue(I.getOperand(2));
2979 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
2980 LHS, RHS));
2981 return;
2982 }
2983 } else if (Name[0] == 'f' && (Name == "fabs" || Name == "fabsf")) {
Chris Lattner0c140002005-04-02 05:26:53 +00002984 if (I.getNumOperands() == 2 && // Basic sanity checks.
2985 I.getOperand(1)->getType()->isFloatingPoint() &&
2986 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002987 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner0c140002005-04-02 05:26:53 +00002988 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
2989 return;
2990 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002991 } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) {
Chris Lattner80026402005-04-30 04:43:14 +00002992 if (I.getNumOperands() == 2 && // Basic sanity checks.
2993 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner1784a9d22006-02-14 05:39:35 +00002994 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002995 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner80026402005-04-30 04:43:14 +00002996 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
2997 return;
2998 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00002999 } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) {
Chris Lattner80026402005-04-30 04:43:14 +00003000 if (I.getNumOperands() == 2 && // Basic sanity checks.
3001 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner1784a9d22006-02-14 05:39:35 +00003002 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnercd6f0f42005-11-09 19:44:01 +00003003 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner80026402005-04-30 04:43:14 +00003004 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
3005 return;
3006 }
3007 }
Chris Lattnere4f71d02005-05-14 13:56:55 +00003008 }
Chris Lattner476e67b2006-01-26 22:24:51 +00003009 } else if (isa<InlineAsm>(I.getOperand(0))) {
3010 visitInlineAsm(I);
3011 return;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00003012 }
Misha Brukman835702a2005-04-21 22:36:52 +00003013
Chris Lattner18d2b342005-01-08 22:48:57 +00003014 SDOperand Callee;
3015 if (!RenameFn)
3016 Callee = getValue(I.getOperand(0));
3017 else
3018 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Anton Korobeynikov3b327822007-05-23 11:08:31 +00003019
Jim Laskey31fef782007-02-23 21:45:01 +00003020 LowerCallTo(I, I.getCalledValue()->getType(),
Anton Korobeynikov3b327822007-05-23 11:08:31 +00003021 I.getCallingConv(),
3022 I.isTailCall(),
3023 Callee,
3024 1);
Chris Lattner7a60d912005-01-07 07:47:53 +00003025}
3026
Jim Laskey504e9942007-02-22 15:38:06 +00003027
Dan Gohman78677932007-06-28 23:29:44 +00003028/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
3029/// this value and returns the result as a ValueVT value. This uses
3030/// Chain/Flag as the input and updates them for the output Chain/Flag.
3031/// If the Flag pointer is NULL, no flag is used.
3032SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
3033 SDOperand &Chain, SDOperand *Flag)const{
Dan Gohman78677932007-06-28 23:29:44 +00003034 // Copy the legal parts from the registers.
3035 unsigned NumParts = Regs.size();
3036 SmallVector<SDOperand, 8> Parts(NumParts);
Dan Gohman533dd162007-07-02 16:18:06 +00003037 for (unsigned i = 0; i != NumParts; ++i) {
Dan Gohman78677932007-06-28 23:29:44 +00003038 SDOperand Part = Flag ?
3039 DAG.getCopyFromReg(Chain, Regs[i], RegVT, *Flag) :
3040 DAG.getCopyFromReg(Chain, Regs[i], RegVT);
3041 Chain = Part.getValue(1);
3042 if (Flag)
3043 *Flag = Part.getValue(2);
3044 Parts[i] = Part;
Chris Lattner705948d2006-06-08 18:22:48 +00003045 }
Chris Lattner77f04792007-03-25 05:00:54 +00003046
Dan Gohman78677932007-06-28 23:29:44 +00003047 // Assemble the legal parts into the final value.
Dan Gohmanf8f531b2007-07-09 20:59:04 +00003048 return getCopyFromParts(DAG, &Parts[0], NumParts, RegVT, ValueVT);
Chris Lattner6f87d182006-02-22 22:37:12 +00003049}
3050
Chris Lattner571d9642006-02-23 19:21:04 +00003051/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
3052/// specified value into the registers specified by this object. This uses
3053/// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohman78677932007-06-28 23:29:44 +00003054/// If the Flag pointer is NULL, no flag is used.
Chris Lattner571d9642006-02-23 19:21:04 +00003055void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohman78677932007-06-28 23:29:44 +00003056 SDOperand &Chain, SDOperand *Flag) const {
Dan Gohman78677932007-06-28 23:29:44 +00003057 // Get the list of the values's legal parts.
3058 unsigned NumParts = Regs.size();
3059 SmallVector<SDOperand, 8> Parts(NumParts);
Dan Gohmanf8f531b2007-07-09 20:59:04 +00003060 getCopyToParts(DAG, Val, &Parts[0], NumParts, RegVT);
Dan Gohman78677932007-06-28 23:29:44 +00003061
3062 // Copy the parts into the registers.
Dan Gohman533dd162007-07-02 16:18:06 +00003063 for (unsigned i = 0; i != NumParts; ++i) {
Dan Gohman78677932007-06-28 23:29:44 +00003064 SDOperand Part = Flag ?
Dan Gohmanf8f531b2007-07-09 20:59:04 +00003065 DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag) :
3066 DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
Dan Gohman78677932007-06-28 23:29:44 +00003067 Chain = Part.getValue(0);
3068 if (Flag)
3069 *Flag = Part.getValue(1);
Chris Lattner571d9642006-02-23 19:21:04 +00003070 }
3071}
Chris Lattner6f87d182006-02-22 22:37:12 +00003072
Chris Lattner571d9642006-02-23 19:21:04 +00003073/// AddInlineAsmOperands - Add this value to the specified inlineasm node
3074/// operand list. This adds the code marker and includes the number of
3075/// values added into it.
3076void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00003077 std::vector<SDOperand> &Ops) const {
Chris Lattnerb49917d2007-04-09 00:33:58 +00003078 MVT::ValueType IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
3079 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
Chris Lattner571d9642006-02-23 19:21:04 +00003080 for (unsigned i = 0, e = Regs.size(); i != e; ++i)
3081 Ops.push_back(DAG.getRegister(Regs[i], RegVT));
3082}
Chris Lattner6f87d182006-02-22 22:37:12 +00003083
3084/// isAllocatableRegister - If the specified register is safe to allocate,
3085/// i.e. it isn't a stack pointer or some other special register, return the
3086/// register class for the register. Otherwise, return null.
3087static const TargetRegisterClass *
Chris Lattnerb1124f32006-02-22 23:09:03 +00003088isAllocatableRegister(unsigned Reg, MachineFunction &MF,
3089 const TargetLowering &TLI, const MRegisterInfo *MRI) {
Chris Lattnerbec582f2006-04-02 00:24:45 +00003090 MVT::ValueType FoundVT = MVT::Other;
3091 const TargetRegisterClass *FoundRC = 0;
Chris Lattnerb1124f32006-02-22 23:09:03 +00003092 for (MRegisterInfo::regclass_iterator RCI = MRI->regclass_begin(),
3093 E = MRI->regclass_end(); RCI != E; ++RCI) {
Chris Lattnerbec582f2006-04-02 00:24:45 +00003094 MVT::ValueType ThisVT = MVT::Other;
3095
Chris Lattnerb1124f32006-02-22 23:09:03 +00003096 const TargetRegisterClass *RC = *RCI;
3097 // If none of the the value types for this register class are valid, we
3098 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattnerb1124f32006-02-22 23:09:03 +00003099 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
3100 I != E; ++I) {
3101 if (TLI.isTypeLegal(*I)) {
Chris Lattnerbec582f2006-04-02 00:24:45 +00003102 // If we have already found this register in a different register class,
3103 // choose the one with the largest VT specified. For example, on
3104 // PowerPC, we favor f64 register classes over f32.
3105 if (FoundVT == MVT::Other ||
3106 MVT::getSizeInBits(FoundVT) < MVT::getSizeInBits(*I)) {
3107 ThisVT = *I;
3108 break;
3109 }
Chris Lattnerb1124f32006-02-22 23:09:03 +00003110 }
3111 }
3112
Chris Lattnerbec582f2006-04-02 00:24:45 +00003113 if (ThisVT == MVT::Other) continue;
Chris Lattnerb1124f32006-02-22 23:09:03 +00003114
Chris Lattner6f87d182006-02-22 22:37:12 +00003115 // NOTE: This isn't ideal. In particular, this might allocate the
3116 // frame pointer in functions that need it (due to them not being taken
3117 // out of allocation, because a variable sized allocation hasn't been seen
3118 // yet). This is a slight code pessimization, but should still work.
Chris Lattnerb1124f32006-02-22 23:09:03 +00003119 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
3120 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerbec582f2006-04-02 00:24:45 +00003121 if (*I == Reg) {
3122 // We found a matching register class. Keep looking at others in case
3123 // we find one with larger registers that this physreg is also in.
3124 FoundRC = RC;
3125 FoundVT = ThisVT;
3126 break;
3127 }
Chris Lattner1558fc62006-02-01 18:59:47 +00003128 }
Chris Lattnerbec582f2006-04-02 00:24:45 +00003129 return FoundRC;
Chris Lattner6f87d182006-02-22 22:37:12 +00003130}
3131
Chris Lattner1558fc62006-02-01 18:59:47 +00003132
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003133namespace {
3134/// AsmOperandInfo - This contains information for each constraint that we are
3135/// lowering.
3136struct AsmOperandInfo : public InlineAsm::ConstraintInfo {
3137 /// ConstraintCode - This contains the actual string for the code, like "m".
3138 std::string ConstraintCode;
Chris Lattnerb2e55562007-04-28 21:01:43 +00003139
3140 /// ConstraintType - Information about the constraint code, e.g. Register,
3141 /// RegisterClass, Memory, Other, Unknown.
3142 TargetLowering::ConstraintType ConstraintType;
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003143
3144 /// CallOperand/CallOperandval - If this is the result output operand or a
3145 /// clobber, this is null, otherwise it is the incoming operand to the
3146 /// CallInst. This gets modified as the asm is processed.
3147 SDOperand CallOperand;
3148 Value *CallOperandVal;
3149
3150 /// ConstraintVT - The ValueType for the operand value.
3151 MVT::ValueType ConstraintVT;
3152
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003153 /// AssignedRegs - If this is a register or register class operand, this
3154 /// contains the set of register corresponding to the operand.
3155 RegsForValue AssignedRegs;
3156
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003157 AsmOperandInfo(const InlineAsm::ConstraintInfo &info)
Chris Lattnerb2e55562007-04-28 21:01:43 +00003158 : InlineAsm::ConstraintInfo(info),
3159 ConstraintType(TargetLowering::C_Unknown),
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003160 CallOperand(0,0), CallOperandVal(0), ConstraintVT(MVT::Other) {
3161 }
Chris Lattneref073322007-04-30 17:16:27 +00003162
3163 void ComputeConstraintToUse(const TargetLowering &TLI);
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003164
3165 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
3166 /// busy in OutputRegs/InputRegs.
3167 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
3168 std::set<unsigned> &OutputRegs,
3169 std::set<unsigned> &InputRegs) const {
3170 if (isOutReg)
3171 OutputRegs.insert(AssignedRegs.Regs.begin(), AssignedRegs.Regs.end());
3172 if (isInReg)
3173 InputRegs.insert(AssignedRegs.Regs.begin(), AssignedRegs.Regs.end());
3174 }
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003175};
3176} // end anon namespace.
Chris Lattner6f87d182006-02-22 22:37:12 +00003177
Chris Lattneref073322007-04-30 17:16:27 +00003178/// getConstraintGenerality - Return an integer indicating how general CT is.
3179static unsigned getConstraintGenerality(TargetLowering::ConstraintType CT) {
3180 switch (CT) {
3181 default: assert(0 && "Unknown constraint type!");
3182 case TargetLowering::C_Other:
3183 case TargetLowering::C_Unknown:
3184 return 0;
3185 case TargetLowering::C_Register:
3186 return 1;
3187 case TargetLowering::C_RegisterClass:
3188 return 2;
3189 case TargetLowering::C_Memory:
3190 return 3;
3191 }
3192}
3193
3194void AsmOperandInfo::ComputeConstraintToUse(const TargetLowering &TLI) {
3195 assert(!Codes.empty() && "Must have at least one constraint");
3196
3197 std::string *Current = &Codes[0];
3198 TargetLowering::ConstraintType CurType = TLI.getConstraintType(*Current);
3199 if (Codes.size() == 1) { // Single-letter constraints ('r') are very common.
3200 ConstraintCode = *Current;
3201 ConstraintType = CurType;
3202 return;
3203 }
3204
3205 unsigned CurGenerality = getConstraintGenerality(CurType);
3206
3207 // If we have multiple constraints, try to pick the most general one ahead
3208 // of time. This isn't a wonderful solution, but handles common cases.
3209 for (unsigned j = 1, e = Codes.size(); j != e; ++j) {
3210 TargetLowering::ConstraintType ThisType = TLI.getConstraintType(Codes[j]);
3211 unsigned ThisGenerality = getConstraintGenerality(ThisType);
3212 if (ThisGenerality > CurGenerality) {
3213 // This constraint letter is more general than the previous one,
3214 // use it.
3215 CurType = ThisType;
3216 Current = &Codes[j];
3217 CurGenerality = ThisGenerality;
3218 }
3219 }
3220
3221 ConstraintCode = *Current;
3222 ConstraintType = CurType;
3223}
3224
3225
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003226void SelectionDAGLowering::
3227GetRegistersForValue(AsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattner4333f8b2007-04-30 17:29:31 +00003228 std::set<unsigned> &OutputRegs,
3229 std::set<unsigned> &InputRegs) {
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003230 // Compute whether this value requires an input register, an output register,
3231 // or both.
3232 bool isOutReg = false;
3233 bool isInReg = false;
3234 switch (OpInfo.Type) {
3235 case InlineAsm::isOutput:
3236 isOutReg = true;
3237
3238 // If this is an early-clobber output, or if there is an input
3239 // constraint that matches this, we need to reserve the input register
3240 // so no other inputs allocate to it.
3241 isInReg = OpInfo.isEarlyClobber || OpInfo.hasMatchingInput;
3242 break;
3243 case InlineAsm::isInput:
3244 isInReg = true;
3245 isOutReg = false;
3246 break;
3247 case InlineAsm::isClobber:
3248 isOutReg = true;
3249 isInReg = true;
3250 break;
3251 }
3252
3253
3254 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattner4333f8b2007-04-30 17:29:31 +00003255 std::vector<unsigned> Regs;
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003256
3257 // If this is a constraint for a single physreg, or a constraint for a
3258 // register class, find it.
3259 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
3260 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
3261 OpInfo.ConstraintVT);
Chris Lattner4333f8b2007-04-30 17:29:31 +00003262
3263 unsigned NumRegs = 1;
3264 if (OpInfo.ConstraintVT != MVT::Other)
Dan Gohman04deef32007-06-21 14:42:22 +00003265 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner4333f8b2007-04-30 17:29:31 +00003266 MVT::ValueType RegVT;
3267 MVT::ValueType ValueVT = OpInfo.ConstraintVT;
3268
Chris Lattner4333f8b2007-04-30 17:29:31 +00003269
3270 // If this is a constraint for a specific physical register, like {r17},
3271 // assign it now.
3272 if (PhysReg.first) {
3273 if (OpInfo.ConstraintVT == MVT::Other)
3274 ValueVT = *PhysReg.second->vt_begin();
3275
3276 // Get the actual register value type. This is important, because the user
3277 // may have asked for (e.g.) the AX register in i32 type. We need to
3278 // remember that AX is actually i16 to get the right extension.
3279 RegVT = *PhysReg.second->vt_begin();
3280
3281 // This is a explicit reference to a physical register.
3282 Regs.push_back(PhysReg.first);
3283
3284 // If this is an expanded reference, add the rest of the regs to Regs.
3285 if (NumRegs != 1) {
3286 TargetRegisterClass::iterator I = PhysReg.second->begin();
3287 TargetRegisterClass::iterator E = PhysReg.second->end();
3288 for (; *I != PhysReg.first; ++I)
3289 assert(I != E && "Didn't find reg!");
3290
3291 // Already added the first reg.
3292 --NumRegs; ++I;
3293 for (; NumRegs; --NumRegs, ++I) {
3294 assert(I != E && "Ran out of registers to allocate!");
3295 Regs.push_back(*I);
3296 }
3297 }
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003298 OpInfo.AssignedRegs = RegsForValue(Regs, RegVT, ValueVT);
3299 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs);
3300 return;
Chris Lattner4333f8b2007-04-30 17:29:31 +00003301 }
3302
3303 // Otherwise, if this was a reference to an LLVM register class, create vregs
3304 // for this reference.
3305 std::vector<unsigned> RegClassRegs;
Chris Lattnerf852e332007-06-15 19:11:01 +00003306 const TargetRegisterClass *RC = PhysReg.second;
3307 if (RC) {
Chris Lattner4333f8b2007-04-30 17:29:31 +00003308 // If this is an early clobber or tied register, our regalloc doesn't know
3309 // how to maintain the constraint. If it isn't, go ahead and create vreg
3310 // and let the regalloc do the right thing.
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003311 if (!OpInfo.hasMatchingInput && !OpInfo.isEarlyClobber &&
3312 // If there is some other early clobber and this is an input register,
3313 // then we are forced to pre-allocate the input reg so it doesn't
3314 // conflict with the earlyclobber.
3315 !(OpInfo.Type == InlineAsm::isInput && HasEarlyClobber)) {
Chris Lattner4333f8b2007-04-30 17:29:31 +00003316 RegVT = *PhysReg.second->vt_begin();
3317
3318 if (OpInfo.ConstraintVT == MVT::Other)
3319 ValueVT = RegVT;
3320
3321 // Create the appropriate number of virtual registers.
3322 SSARegMap *RegMap = MF.getSSARegMap();
3323 for (; NumRegs; --NumRegs)
3324 Regs.push_back(RegMap->createVirtualRegister(PhysReg.second));
3325
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003326 OpInfo.AssignedRegs = RegsForValue(Regs, RegVT, ValueVT);
3327 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs);
3328 return;
Chris Lattner4333f8b2007-04-30 17:29:31 +00003329 }
3330
3331 // Otherwise, we can't allocate it. Let the code below figure out how to
3332 // maintain these constraints.
3333 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
3334
3335 } else {
3336 // This is a reference to a register class that doesn't directly correspond
3337 // to an LLVM register class. Allocate NumRegs consecutive, available,
3338 // registers from the class.
3339 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
3340 OpInfo.ConstraintVT);
3341 }
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003342
Chris Lattner4333f8b2007-04-30 17:29:31 +00003343 const MRegisterInfo *MRI = DAG.getTarget().getRegisterInfo();
3344 unsigned NumAllocated = 0;
3345 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
3346 unsigned Reg = RegClassRegs[i];
3347 // See if this register is available.
3348 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
3349 (isInReg && InputRegs.count(Reg))) { // Already used.
3350 // Make sure we find consecutive registers.
3351 NumAllocated = 0;
3352 continue;
3353 }
3354
3355 // Check to see if this register is allocatable (i.e. don't give out the
3356 // stack pointer).
Chris Lattnerf852e332007-06-15 19:11:01 +00003357 if (RC == 0) {
3358 RC = isAllocatableRegister(Reg, MF, TLI, MRI);
3359 if (!RC) { // Couldn't allocate this register.
3360 // Reset NumAllocated to make sure we return consecutive registers.
3361 NumAllocated = 0;
3362 continue;
3363 }
Chris Lattner4333f8b2007-04-30 17:29:31 +00003364 }
3365
3366 // Okay, this register is good, we can use it.
3367 ++NumAllocated;
3368
3369 // If we allocated enough consecutive registers, succeed.
3370 if (NumAllocated == NumRegs) {
3371 unsigned RegStart = (i-NumAllocated)+1;
3372 unsigned RegEnd = i+1;
3373 // Mark all of the allocated registers used.
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003374 for (unsigned i = RegStart; i != RegEnd; ++i)
3375 Regs.push_back(RegClassRegs[i]);
Chris Lattner4333f8b2007-04-30 17:29:31 +00003376
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003377 OpInfo.AssignedRegs = RegsForValue(Regs, *RC->vt_begin(),
3378 OpInfo.ConstraintVT);
3379 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs);
3380 return;
Chris Lattner4333f8b2007-04-30 17:29:31 +00003381 }
3382 }
3383
3384 // Otherwise, we couldn't allocate enough registers for this.
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003385 return;
Chris Lattner4333f8b2007-04-30 17:29:31 +00003386}
3387
3388
Chris Lattner476e67b2006-01-26 22:24:51 +00003389/// visitInlineAsm - Handle a call to an InlineAsm object.
3390///
3391void SelectionDAGLowering::visitInlineAsm(CallInst &I) {
3392 InlineAsm *IA = cast<InlineAsm>(I.getOperand(0));
Chris Lattner476e67b2006-01-26 22:24:51 +00003393
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003394 /// ConstraintOperands - Information about all of the constraints.
3395 std::vector<AsmOperandInfo> ConstraintOperands;
Chris Lattner476e67b2006-01-26 22:24:51 +00003396
3397 SDOperand Chain = getRoot();
3398 SDOperand Flag;
3399
Chris Lattner1558fc62006-02-01 18:59:47 +00003400 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner7ad77df2006-02-22 00:56:39 +00003401
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003402 // Do a prepass over the constraints, canonicalizing them, and building up the
3403 // ConstraintOperands list.
3404 std::vector<InlineAsm::ConstraintInfo>
3405 ConstraintInfos = IA->ParseConstraints();
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003406
3407 // SawEarlyClobber - Keep track of whether we saw an earlyclobber output
3408 // constraint. If so, we can't let the register allocator allocate any input
3409 // registers, because it will not know to avoid the earlyclobbered output reg.
3410 bool SawEarlyClobber = false;
3411
3412 unsigned OpNo = 1; // OpNo - The operand of the CallInst.
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003413 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
3414 ConstraintOperands.push_back(AsmOperandInfo(ConstraintInfos[i]));
3415 AsmOperandInfo &OpInfo = ConstraintOperands.back();
3416
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003417 MVT::ValueType OpVT = MVT::Other;
3418
3419 // Compute the value type for each operand.
3420 switch (OpInfo.Type) {
Chris Lattner7ad77df2006-02-22 00:56:39 +00003421 case InlineAsm::isOutput:
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003422 if (!OpInfo.isIndirect) {
3423 // The return value of the call is this value. As such, there is no
3424 // corresponding argument.
Chris Lattner7ad77df2006-02-22 00:56:39 +00003425 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
3426 OpVT = TLI.getValueType(I.getType());
3427 } else {
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003428 OpInfo.CallOperandVal = I.getOperand(OpNo++);
Chris Lattner7ad77df2006-02-22 00:56:39 +00003429 }
3430 break;
3431 case InlineAsm::isInput:
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003432 OpInfo.CallOperandVal = I.getOperand(OpNo++);
Chris Lattner7ad77df2006-02-22 00:56:39 +00003433 break;
3434 case InlineAsm::isClobber:
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003435 // Nothing to do.
Chris Lattner7ad77df2006-02-22 00:56:39 +00003436 break;
3437 }
Chris Lattner7ad77df2006-02-22 00:56:39 +00003438
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003439 // If this is an input or an indirect output, process the call argument.
3440 if (OpInfo.CallOperandVal) {
3441 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
3442 const Type *OpTy = OpInfo.CallOperandVal->getType();
Chris Lattner412d61a2007-04-29 18:58:03 +00003443 // If this is an indirect operand, the operand is a pointer to the
3444 // accessed type.
3445 if (OpInfo.isIndirect)
3446 OpTy = cast<PointerType>(OpTy)->getElementType();
3447
3448 // If OpTy is not a first-class value, it may be a struct/union that we
3449 // can tile with integers.
3450 if (!OpTy->isFirstClassType() && OpTy->isSized()) {
3451 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
3452 switch (BitSize) {
3453 default: break;
3454 case 1:
3455 case 8:
3456 case 16:
3457 case 32:
3458 case 64:
3459 OpTy = IntegerType::get(BitSize);
3460 break;
3461 }
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003462 }
Chris Lattner412d61a2007-04-29 18:58:03 +00003463
3464 OpVT = TLI.getValueType(OpTy, true);
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003465 }
3466
3467 OpInfo.ConstraintVT = OpVT;
Chris Lattnerb2e55562007-04-28 21:01:43 +00003468
Chris Lattneref073322007-04-30 17:16:27 +00003469 // Compute the constraint code and ConstraintType to use.
3470 OpInfo.ComputeConstraintToUse(TLI);
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003471
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003472 // Keep track of whether we see an earlyclobber.
3473 SawEarlyClobber |= OpInfo.isEarlyClobber;
Chris Lattner401d8db2007-04-28 21:12:06 +00003474
3475 // If this is a memory input, and if the operand is not indirect, do what we
3476 // need to to provide an address for the memory input.
3477 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
3478 !OpInfo.isIndirect) {
3479 assert(OpInfo.Type == InlineAsm::isInput &&
3480 "Can only indirectify direct input operands!");
3481
3482 // Memory operands really want the address of the value. If we don't have
3483 // an indirect input, put it in the constpool if we can, otherwise spill
3484 // it to a stack slot.
3485
3486 // If the operand is a float, integer, or vector constant, spill to a
3487 // constant pool entry to get its address.
3488 Value *OpVal = OpInfo.CallOperandVal;
3489 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
3490 isa<ConstantVector>(OpVal)) {
3491 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
3492 TLI.getPointerTy());
3493 } else {
3494 // Otherwise, create a stack slot and emit a store to it before the
3495 // asm.
3496 const Type *Ty = OpVal->getType();
3497 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
3498 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
3499 MachineFunction &MF = DAG.getMachineFunction();
3500 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
3501 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
3502 Chain = DAG.getStore(Chain, OpInfo.CallOperand, StackSlot, NULL, 0);
3503 OpInfo.CallOperand = StackSlot;
3504 }
3505
3506 // There is no longer a Value* corresponding to this operand.
3507 OpInfo.CallOperandVal = 0;
3508 // It is now an indirect operand.
3509 OpInfo.isIndirect = true;
3510 }
3511
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003512 // If this constraint is for a specific register, allocate it before
3513 // anything else.
3514 if (OpInfo.ConstraintType == TargetLowering::C_Register)
3515 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003516 }
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003517 ConstraintInfos.clear();
3518
3519
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003520 // Second pass - Loop over all of the operands, assigning virtual or physregs
3521 // to registerclass operands.
3522 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
3523 AsmOperandInfo &OpInfo = ConstraintOperands[i];
3524
3525 // C_Register operands have already been allocated, Other/Memory don't need
3526 // to be.
3527 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
3528 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
3529 }
3530
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003531 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
3532 std::vector<SDOperand> AsmNodeOperands;
3533 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
3534 AsmNodeOperands.push_back(
3535 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
3536
Chris Lattner3a5ed552006-02-01 01:28:23 +00003537
Chris Lattner5c79f982006-02-21 23:12:12 +00003538 // Loop over all of the inputs, copying the operand values into the
3539 // appropriate registers and processing the output regs.
Chris Lattner6f87d182006-02-22 22:37:12 +00003540 RegsForValue RetValRegs;
Chris Lattner5c79f982006-02-21 23:12:12 +00003541
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003542 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
3543 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
3544
3545 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
3546 AsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattner7ad77df2006-02-22 00:56:39 +00003547
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003548 switch (OpInfo.Type) {
Chris Lattner3a5ed552006-02-01 01:28:23 +00003549 case InlineAsm::isOutput: {
Chris Lattnerde339fa2007-04-28 21:03:16 +00003550 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
3551 OpInfo.ConstraintType != TargetLowering::C_Register) {
Chris Lattnerd102ed02007-04-28 06:08:13 +00003552 // Memory output, or 'other' output (e.g. 'X' constraint).
Chris Lattner401d8db2007-04-28 21:12:06 +00003553 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
Chris Lattner9fed5b62006-02-27 23:45:39 +00003554
Chris Lattner9fed5b62006-02-27 23:45:39 +00003555 // Add information to the INLINEASM node to know about this output.
3556 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc7596ef2007-05-15 01:33:58 +00003557 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
3558 TLI.getPointerTy()));
Chris Lattner401d8db2007-04-28 21:12:06 +00003559 AsmNodeOperands.push_back(OpInfo.CallOperand);
Chris Lattner9fed5b62006-02-27 23:45:39 +00003560 break;
3561 }
3562
Chris Lattnerb2e55562007-04-28 21:01:43 +00003563 // Otherwise, this is a register or register class output.
Chris Lattner9fed5b62006-02-27 23:45:39 +00003564
Chris Lattner6f87d182006-02-22 22:37:12 +00003565 // Copy the output from the appropriate register. Find a register that
Chris Lattner7ad77df2006-02-22 00:56:39 +00003566 // we can use.
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003567 if (OpInfo.AssignedRegs.Regs.empty()) {
Bill Wendling22e978a2006-12-07 20:04:42 +00003568 cerr << "Couldn't allocate output reg for contraint '"
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003569 << OpInfo.ConstraintCode << "'!\n";
Chris Lattner968f8032006-10-31 07:33:13 +00003570 exit(1);
3571 }
Chris Lattner7ad77df2006-02-22 00:56:39 +00003572
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003573 if (!OpInfo.isIndirect) {
3574 // This is the result value of the call.
Chris Lattner6f87d182006-02-22 22:37:12 +00003575 assert(RetValRegs.Regs.empty() &&
Chris Lattner3a5ed552006-02-01 01:28:23 +00003576 "Cannot have multiple output constraints yet!");
Chris Lattner3a5ed552006-02-01 01:28:23 +00003577 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003578 RetValRegs = OpInfo.AssignedRegs;
Chris Lattner3a5ed552006-02-01 01:28:23 +00003579 } else {
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003580 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003581 OpInfo.CallOperandVal));
Chris Lattner3a5ed552006-02-01 01:28:23 +00003582 }
Chris Lattner2e56e892006-01-31 02:03:41 +00003583
3584 // Add information to the INLINEASM node to know that this register is
3585 // set.
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003586 OpInfo.AssignedRegs.AddInlineAsmOperands(2 /*REGDEF*/, DAG,
3587 AsmNodeOperands);
Chris Lattner2e56e892006-01-31 02:03:41 +00003588 break;
3589 }
3590 case InlineAsm::isInput: {
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003591 SDOperand InOperandVal = OpInfo.CallOperand;
Chris Lattner65ad53f2006-02-04 02:16:44 +00003592
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003593 if (isdigit(OpInfo.ConstraintCode[0])) { // Matching constraint?
Chris Lattner7f5880b2006-02-02 00:25:23 +00003594 // If this is required to match an output register we have already set,
3595 // just use its register.
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003596 unsigned OperandNo = atoi(OpInfo.ConstraintCode.c_str());
Chris Lattner65ad53f2006-02-04 02:16:44 +00003597
Chris Lattner571d9642006-02-23 19:21:04 +00003598 // Scan until we find the definition we already emitted of this operand.
3599 // When we find it, create a RegsForValue operand.
3600 unsigned CurOp = 2; // The first operand.
3601 for (; OperandNo; --OperandNo) {
3602 // Advance to the next operand.
3603 unsigned NumOps =
3604 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattnerb0305322006-07-20 19:02:21 +00003605 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
3606 (NumOps & 7) == 4 /*MEM*/) &&
Chris Lattner571d9642006-02-23 19:21:04 +00003607 "Skipped past definitions?");
3608 CurOp += (NumOps>>3)+1;
3609 }
3610
3611 unsigned NumOps =
3612 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattnere3eeb242007-02-01 01:21:12 +00003613 if ((NumOps & 7) == 2 /*REGDEF*/) {
3614 // Add NumOps>>3 registers to MatchedRegs.
3615 RegsForValue MatchedRegs;
3616 MatchedRegs.ValueVT = InOperandVal.getValueType();
3617 MatchedRegs.RegVT = AsmNodeOperands[CurOp+1].getValueType();
3618 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
3619 unsigned Reg =
3620 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
3621 MatchedRegs.Regs.push_back(Reg);
3622 }
Chris Lattner571d9642006-02-23 19:21:04 +00003623
Chris Lattnere3eeb242007-02-01 01:21:12 +00003624 // Use the produced MatchedRegs object to
Dan Gohman78677932007-06-28 23:29:44 +00003625 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattnere3eeb242007-02-01 01:21:12 +00003626 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
3627 break;
3628 } else {
3629 assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
3630 assert(0 && "matching constraints for memory operands unimp");
Chris Lattner571d9642006-02-23 19:21:04 +00003631 }
Chris Lattner7f5880b2006-02-02 00:25:23 +00003632 }
Chris Lattner7ef7a642006-02-24 01:11:24 +00003633
Chris Lattnerb2e55562007-04-28 21:01:43 +00003634 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003635 assert(!OpInfo.isIndirect &&
Chris Lattner1deacd62007-04-28 06:42:38 +00003636 "Don't know how to handle indirect other inputs yet!");
3637
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00003638 std::vector<SDOperand> Ops;
3639 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
3640 Ops, DAG);
3641 if (Ops.empty()) {
Bill Wendling22e978a2006-12-07 20:04:42 +00003642 cerr << "Invalid operand for inline asm constraint '"
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003643 << OpInfo.ConstraintCode << "'!\n";
Chris Lattner6f043b92006-10-31 19:41:18 +00003644 exit(1);
3645 }
Chris Lattner7ef7a642006-02-24 01:11:24 +00003646
3647 // Add information to the INLINEASM node to know about this input.
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00003648 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Chris Lattnerc7596ef2007-05-15 01:33:58 +00003649 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
3650 TLI.getPointerTy()));
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00003651 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
Chris Lattner7ef7a642006-02-24 01:11:24 +00003652 break;
Chris Lattnerb2e55562007-04-28 21:01:43 +00003653 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
Chris Lattner401d8db2007-04-28 21:12:06 +00003654 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
Chris Lattner1deacd62007-04-28 06:42:38 +00003655 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
3656 "Memory operands expect pointer values");
3657
Chris Lattner7ef7a642006-02-24 01:11:24 +00003658 // Add information to the INLINEASM node to know about this input.
3659 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc7596ef2007-05-15 01:33:58 +00003660 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
3661 TLI.getPointerTy()));
Chris Lattner7ef7a642006-02-24 01:11:24 +00003662 AsmNodeOperands.push_back(InOperandVal);
3663 break;
3664 }
3665
Chris Lattnerb2e55562007-04-28 21:01:43 +00003666 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
3667 OpInfo.ConstraintType == TargetLowering::C_Register) &&
3668 "Unknown constraint type!");
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003669 assert(!OpInfo.isIndirect &&
Chris Lattner1deacd62007-04-28 06:42:38 +00003670 "Don't know how to handle indirect register inputs yet!");
Chris Lattner7ef7a642006-02-24 01:11:24 +00003671
3672 // Copy the input into the appropriate registers.
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003673 assert(!OpInfo.AssignedRegs.Regs.empty() &&
3674 "Couldn't allocate input reg!");
Chris Lattner7ef7a642006-02-24 01:11:24 +00003675
Dan Gohman78677932007-06-28 23:29:44 +00003676 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner7ef7a642006-02-24 01:11:24 +00003677
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003678 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG,
3679 AsmNodeOperands);
Chris Lattner2e56e892006-01-31 02:03:41 +00003680 break;
3681 }
Chris Lattner571d9642006-02-23 19:21:04 +00003682 case InlineAsm::isClobber: {
Chris Lattner571d9642006-02-23 19:21:04 +00003683 // Add the clobbered value to the operand list, so that the register
3684 // allocator is aware that the physreg got clobbered.
Chris Lattner8cfd33b2007-04-30 21:11:17 +00003685 if (!OpInfo.AssignedRegs.Regs.empty())
3686 OpInfo.AssignedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG,
3687 AsmNodeOperands);
Chris Lattner2e56e892006-01-31 02:03:41 +00003688 break;
3689 }
Chris Lattner571d9642006-02-23 19:21:04 +00003690 }
Chris Lattner2e56e892006-01-31 02:03:41 +00003691 }
Chris Lattner476e67b2006-01-26 22:24:51 +00003692
3693 // Finish up input operands.
3694 AsmNodeOperands[0] = Chain;
3695 if (Flag.Val) AsmNodeOperands.push_back(Flag);
3696
Chris Lattnerbd887772006-08-14 23:53:35 +00003697 Chain = DAG.getNode(ISD::INLINEASM,
3698 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003699 &AsmNodeOperands[0], AsmNodeOperands.size());
Chris Lattner476e67b2006-01-26 22:24:51 +00003700 Flag = Chain.getValue(1);
3701
Chris Lattner2e56e892006-01-31 02:03:41 +00003702 // If this asm returns a register value, copy the result from that register
3703 // and set it as the value of the call.
Chris Lattner51114992007-04-12 06:00:20 +00003704 if (!RetValRegs.Regs.empty()) {
Dan Gohman78677932007-06-28 23:29:44 +00003705 SDOperand Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner51114992007-04-12 06:00:20 +00003706
3707 // If the result of the inline asm is a vector, it may have the wrong
3708 // width/num elts. Make sure to convert it to the right type with
Dan Gohmana8665142007-06-25 16:23:39 +00003709 // bit_convert.
3710 if (MVT::isVector(Val.getValueType())) {
Chris Lattner51114992007-04-12 06:00:20 +00003711 const VectorType *VTy = cast<VectorType>(I.getType());
Dan Gohmana8665142007-06-25 16:23:39 +00003712 MVT::ValueType DesiredVT = TLI.getValueType(VTy);
Chris Lattner51114992007-04-12 06:00:20 +00003713
Dan Gohmana8665142007-06-25 16:23:39 +00003714 Val = DAG.getNode(ISD::BIT_CONVERT, DesiredVT, Val);
Chris Lattner51114992007-04-12 06:00:20 +00003715 }
3716
3717 setValue(&I, Val);
3718 }
Chris Lattner476e67b2006-01-26 22:24:51 +00003719
Chris Lattner2e56e892006-01-31 02:03:41 +00003720 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
3721
3722 // Process indirect outputs, first output all of the flagged copies out of
3723 // physregs.
3724 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner6f87d182006-02-22 22:37:12 +00003725 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner2e56e892006-01-31 02:03:41 +00003726 Value *Ptr = IndirectStoresToEmit[i].second;
Dan Gohman78677932007-06-28 23:29:44 +00003727 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner6f87d182006-02-22 22:37:12 +00003728 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner2e56e892006-01-31 02:03:41 +00003729 }
3730
3731 // Emit the non-flagged stores from the physregs.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003732 SmallVector<SDOperand, 8> OutChains;
Chris Lattner2e56e892006-01-31 02:03:41 +00003733 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Chris Lattnerd7e3b6c2007-04-28 20:49:53 +00003734 OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
Chris Lattner2e56e892006-01-31 02:03:41 +00003735 getValue(StoresToEmit[i].second),
Evan Chengab51cf22006-10-13 21:14:26 +00003736 StoresToEmit[i].second, 0));
Chris Lattner2e56e892006-01-31 02:03:41 +00003737 if (!OutChains.empty())
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003738 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3739 &OutChains[0], OutChains.size());
Chris Lattner476e67b2006-01-26 22:24:51 +00003740 DAG.setRoot(Chain);
3741}
3742
3743
Chris Lattner7a60d912005-01-07 07:47:53 +00003744void SelectionDAGLowering::visitMalloc(MallocInst &I) {
3745 SDOperand Src = getValue(I.getOperand(0));
3746
3747 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattnereccb73d2005-01-22 23:04:37 +00003748
3749 if (IntPtr < Src.getValueType())
3750 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
3751 else if (IntPtr > Src.getValueType())
3752 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner7a60d912005-01-07 07:47:53 +00003753
3754 // Scale the source by the type size.
Owen Anderson20a631f2006-05-03 01:29:57 +00003755 uint64_t ElementSize = TD->getTypeSize(I.getType()->getElementType());
Chris Lattner7a60d912005-01-07 07:47:53 +00003756 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
3757 Src, getIntPtrConstant(ElementSize));
3758
Reid Spencere63b6512006-12-31 05:55:36 +00003759 TargetLowering::ArgListTy Args;
3760 TargetLowering::ArgListEntry Entry;
3761 Entry.Node = Src;
3762 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencere63b6512006-12-31 05:55:36 +00003763 Args.push_back(Entry);
Chris Lattner1f45cd72005-01-08 19:26:18 +00003764
3765 std::pair<SDOperand,SDOperand> Result =
Reid Spencere63b6512006-12-31 05:55:36 +00003766 TLI.LowerCallTo(getRoot(), I.getType(), false, false, CallingConv::C, true,
Chris Lattner1f45cd72005-01-08 19:26:18 +00003767 DAG.getExternalSymbol("malloc", IntPtr),
3768 Args, DAG);
3769 setValue(&I, Result.first); // Pointers always fit in registers
3770 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00003771}
3772
3773void SelectionDAGLowering::visitFree(FreeInst &I) {
Reid Spencere63b6512006-12-31 05:55:36 +00003774 TargetLowering::ArgListTy Args;
3775 TargetLowering::ArgListEntry Entry;
3776 Entry.Node = getValue(I.getOperand(0));
3777 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencere63b6512006-12-31 05:55:36 +00003778 Args.push_back(Entry);
Chris Lattner7a60d912005-01-07 07:47:53 +00003779 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattner1f45cd72005-01-08 19:26:18 +00003780 std::pair<SDOperand,SDOperand> Result =
Reid Spencere63b6512006-12-31 05:55:36 +00003781 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, CallingConv::C, true,
Chris Lattner1f45cd72005-01-08 19:26:18 +00003782 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
3783 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00003784}
3785
Chris Lattner13d7c252005-08-26 20:54:47 +00003786// InsertAtEndOfBasicBlock - This method should be implemented by targets that
3787// mark instructions with the 'usesCustomDAGSchedInserter' flag. These
3788// instructions are special in various ways, which require special support to
3789// insert. The specified MachineInstr is created but not inserted into any
3790// basic blocks, and the scheduler passes ownership of it to this method.
3791MachineBasicBlock *TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
3792 MachineBasicBlock *MBB) {
Bill Wendling22e978a2006-12-07 20:04:42 +00003793 cerr << "If a target marks an instruction with "
3794 << "'usesCustomDAGSchedInserter', it must implement "
3795 << "TargetLowering::InsertAtEndOfBasicBlock!\n";
Chris Lattner13d7c252005-08-26 20:54:47 +00003796 abort();
3797 return 0;
3798}
3799
Chris Lattner58cfd792005-01-09 00:00:49 +00003800void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00003801 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
3802 getValue(I.getOperand(1)),
3803 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner58cfd792005-01-09 00:00:49 +00003804}
3805
3806void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00003807 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
3808 getValue(I.getOperand(0)),
3809 DAG.getSrcValue(I.getOperand(0)));
3810 setValue(&I, V);
3811 DAG.setRoot(V.getValue(1));
Chris Lattner7a60d912005-01-07 07:47:53 +00003812}
3813
3814void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00003815 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
3816 getValue(I.getOperand(1)),
3817 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner7a60d912005-01-07 07:47:53 +00003818}
3819
3820void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00003821 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
3822 getValue(I.getOperand(1)),
3823 getValue(I.getOperand(2)),
3824 DAG.getSrcValue(I.getOperand(1)),
3825 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner7a60d912005-01-07 07:47:53 +00003826}
3827
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003828/// TargetLowering::LowerArguments - This is the default LowerArguments
3829/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattneraaa23d92006-05-16 22:53:20 +00003830/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
3831/// integrated into SDISel.
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003832std::vector<SDOperand>
3833TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
Anton Korobeynikov037c8672007-01-28 13:31:35 +00003834 const FunctionType *FTy = F.getFunctionType();
Reid Spencer71b79e32007-04-09 06:17:21 +00003835 const ParamAttrsList *Attrs = FTy->getParamAttrs();
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003836 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
3837 std::vector<SDOperand> Ops;
Chris Lattner3d826992006-05-16 06:45:34 +00003838 Ops.push_back(DAG.getRoot());
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003839 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
3840 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
3841
3842 // Add one result value for each formal argument.
3843 std::vector<MVT::ValueType> RetVals;
Anton Korobeynikov06f7d4b2007-01-28 18:01:49 +00003844 unsigned j = 1;
Anton Korobeynikov9fa38392007-01-28 16:04:40 +00003845 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
3846 I != E; ++I, ++j) {
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003847 MVT::ValueType VT = getValueType(I->getType());
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00003848 unsigned Flags = ISD::ParamFlags::NoFlagSet;
Lauro Ramos Venancio9956dcf2007-02-13 13:50:08 +00003849 unsigned OriginalAlignment =
Chris Lattner945e4372007-02-14 05:52:17 +00003850 getTargetData()->getABITypeAlignment(I->getType());
Lauro Ramos Venancio9956dcf2007-02-13 13:50:08 +00003851
Chris Lattnerab5d0ac2007-02-26 02:56:58 +00003852 // FIXME: Distinguish between a formal with no [sz]ext attribute from one
3853 // that is zero extended!
Reid Spencera472f662007-04-11 02:44:20 +00003854 if (Attrs && Attrs->paramHasAttr(j, ParamAttr::ZExt))
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00003855 Flags &= ~(ISD::ParamFlags::SExt);
Reid Spencera472f662007-04-11 02:44:20 +00003856 if (Attrs && Attrs->paramHasAttr(j, ParamAttr::SExt))
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00003857 Flags |= ISD::ParamFlags::SExt;
Reid Spencera472f662007-04-11 02:44:20 +00003858 if (Attrs && Attrs->paramHasAttr(j, ParamAttr::InReg))
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00003859 Flags |= ISD::ParamFlags::InReg;
Reid Spencera472f662007-04-11 02:44:20 +00003860 if (Attrs && Attrs->paramHasAttr(j, ParamAttr::StructRet))
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00003861 Flags |= ISD::ParamFlags::StructReturn;
Rafael Espindola66011c12007-08-10 14:44:42 +00003862 if (Attrs && Attrs->paramHasAttr(j, ParamAttr::ByVal)) {
Rafael Espindolab567e3f2007-07-06 10:57:03 +00003863 Flags |= ISD::ParamFlags::ByVal;
Rafael Espindola66011c12007-08-10 14:44:42 +00003864 const PointerType *Ty = cast<PointerType>(I->getType());
3865 const StructType *STy = cast<StructType>(Ty->getElementType());
3866 unsigned StructAlign = Log2_32(getTargetData()->getABITypeAlignment(STy));
3867 unsigned StructSize = getTargetData()->getTypeSize(STy);
3868 Flags |= (StructAlign << ISD::ParamFlags::ByValAlignOffs);
3869 Flags |= (StructSize << ISD::ParamFlags::ByValSizeOffs);
3870 }
Duncan Sands644f9172007-07-27 12:58:54 +00003871 if (Attrs && Attrs->paramHasAttr(j, ParamAttr::Nest))
3872 Flags |= ISD::ParamFlags::Nest;
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00003873 Flags |= (OriginalAlignment << ISD::ParamFlags::OrigAlignmentOffs);
Chris Lattnerab5d0ac2007-02-26 02:56:58 +00003874
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003875 switch (getTypeAction(VT)) {
3876 default: assert(0 && "Unknown type action!");
3877 case Legal:
3878 RetVals.push_back(VT);
Anton Korobeynikov037c8672007-01-28 13:31:35 +00003879 Ops.push_back(DAG.getConstant(Flags, MVT::i32));
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003880 break;
3881 case Promote:
3882 RetVals.push_back(getTypeToTransformTo(VT));
Anton Korobeynikov037c8672007-01-28 13:31:35 +00003883 Ops.push_back(DAG.getConstant(Flags, MVT::i32));
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003884 break;
Dan Gohman78677932007-06-28 23:29:44 +00003885 case Expand: {
3886 // If this is an illegal type, it needs to be broken up to fit into
3887 // registers.
3888 MVT::ValueType RegisterVT = getRegisterType(VT);
3889 unsigned NumRegs = getNumRegisters(VT);
3890 for (unsigned i = 0; i != NumRegs; ++i) {
3891 RetVals.push_back(RegisterVT);
3892 // if it isn't first piece, alignment must be 1
3893 if (i > 0)
3894 Flags = (Flags & (~ISD::ParamFlags::OrigAlignment)) |
3895 (1 << ISD::ParamFlags::OrigAlignmentOffs);
3896 Ops.push_back(DAG.getConstant(Flags, MVT::i32));
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003897 }
3898 break;
3899 }
Dan Gohman78677932007-06-28 23:29:44 +00003900 }
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003901 }
Evan Cheng9618df12006-04-25 23:03:35 +00003902
Chris Lattner3d826992006-05-16 06:45:34 +00003903 RetVals.push_back(MVT::Other);
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003904
3905 // Create the node.
Chris Lattnerbd887772006-08-14 23:53:35 +00003906 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
3907 DAG.getNodeValueTypes(RetVals), RetVals.size(),
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003908 &Ops[0], Ops.size()).Val;
Dan Gohman533dd162007-07-02 16:18:06 +00003909 unsigned NumArgRegs = Result->getNumValues() - 1;
3910 DAG.setRoot(SDOperand(Result, NumArgRegs));
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003911
3912 // Set up the return result vector.
3913 Ops.clear();
3914 unsigned i = 0;
Reid Spencere63b6512006-12-31 05:55:36 +00003915 unsigned Idx = 1;
3916 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
3917 ++I, ++Idx) {
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003918 MVT::ValueType VT = getValueType(I->getType());
3919
3920 switch (getTypeAction(VT)) {
3921 default: assert(0 && "Unknown type action!");
3922 case Legal:
3923 Ops.push_back(SDOperand(Result, i++));
3924 break;
3925 case Promote: {
3926 SDOperand Op(Result, i++);
3927 if (MVT::isInteger(VT)) {
Reid Spencera472f662007-04-11 02:44:20 +00003928 if (Attrs && Attrs->paramHasAttr(Idx, ParamAttr::SExt))
Chris Lattner96035be2007-01-04 22:22:37 +00003929 Op = DAG.getNode(ISD::AssertSext, Op.getValueType(), Op,
3930 DAG.getValueType(VT));
Reid Spencera472f662007-04-11 02:44:20 +00003931 else if (Attrs && Attrs->paramHasAttr(Idx, ParamAttr::ZExt))
Chris Lattner96035be2007-01-04 22:22:37 +00003932 Op = DAG.getNode(ISD::AssertZext, Op.getValueType(), Op,
3933 DAG.getValueType(VT));
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003934 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
3935 } else {
3936 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
3937 Op = DAG.getNode(ISD::FP_ROUND, VT, Op);
3938 }
3939 Ops.push_back(Op);
3940 break;
3941 }
Dan Gohman533dd162007-07-02 16:18:06 +00003942 case Expand: {
3943 MVT::ValueType PartVT = getRegisterType(VT);
3944 unsigned NumParts = getNumRegisters(VT);
3945 SmallVector<SDOperand, 4> Parts(NumParts);
3946 for (unsigned j = 0; j != NumParts; ++j)
3947 Parts[j] = SDOperand(Result, i++);
Dan Gohmanf8f531b2007-07-09 20:59:04 +00003948 Ops.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT));
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003949 break;
3950 }
Dan Gohman533dd162007-07-02 16:18:06 +00003951 }
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003952 }
Dan Gohman533dd162007-07-02 16:18:06 +00003953 assert(i == NumArgRegs && "Argument register count mismatch!");
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003954 return Ops;
3955}
3956
Chris Lattneraaa23d92006-05-16 22:53:20 +00003957
3958/// TargetLowering::LowerCallTo - This is the default LowerCallTo
3959/// implementation, which just inserts an ISD::CALL node, which is later custom
3960/// lowered by the target to something concrete. FIXME: When all targets are
3961/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
3962std::pair<SDOperand, SDOperand>
Reid Spencere63b6512006-12-31 05:55:36 +00003963TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
3964 bool RetTyIsSigned, bool isVarArg,
Chris Lattneraaa23d92006-05-16 22:53:20 +00003965 unsigned CallingConv, bool isTailCall,
3966 SDOperand Callee,
3967 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattner65879ca2006-08-16 22:57:46 +00003968 SmallVector<SDOperand, 32> Ops;
Chris Lattneraaa23d92006-05-16 22:53:20 +00003969 Ops.push_back(Chain); // Op#0 - Chain
3970 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
3971 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
3972 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
3973 Ops.push_back(Callee);
3974
3975 // Handle all of the outgoing arguments.
3976 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Reid Spencere63b6512006-12-31 05:55:36 +00003977 MVT::ValueType VT = getValueType(Args[i].Ty);
3978 SDOperand Op = Args[i].Node;
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00003979 unsigned Flags = ISD::ParamFlags::NoFlagSet;
Lauro Ramos Venancio9956dcf2007-02-13 13:50:08 +00003980 unsigned OriginalAlignment =
Chris Lattner945e4372007-02-14 05:52:17 +00003981 getTargetData()->getABITypeAlignment(Args[i].Ty);
Anton Korobeynikovf0b93162007-03-06 06:10:33 +00003982
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00003983 if (Args[i].isSExt)
3984 Flags |= ISD::ParamFlags::SExt;
3985 if (Args[i].isZExt)
3986 Flags |= ISD::ParamFlags::ZExt;
Anton Korobeynikovf0b93162007-03-06 06:10:33 +00003987 if (Args[i].isInReg)
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00003988 Flags |= ISD::ParamFlags::InReg;
Anton Korobeynikovf0b93162007-03-06 06:10:33 +00003989 if (Args[i].isSRet)
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00003990 Flags |= ISD::ParamFlags::StructReturn;
Rafael Espindola9c3d20d2007-08-20 15:18:24 +00003991 if (Args[i].isByVal) {
3992 Flags |= ISD::ParamFlags::ByVal;
3993 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
3994 const StructType *STy = cast<StructType>(Ty->getElementType());
3995 unsigned StructAlign = Log2_32(getTargetData()->getABITypeAlignment(STy));
3996 unsigned StructSize = getTargetData()->getTypeSize(STy);
3997 Flags |= (StructAlign << ISD::ParamFlags::ByValAlignOffs);
3998 Flags |= (StructSize << ISD::ParamFlags::ByValSizeOffs);
3999 }
Duncan Sands644f9172007-07-27 12:58:54 +00004000 if (Args[i].isNest)
4001 Flags |= ISD::ParamFlags::Nest;
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00004002 Flags |= OriginalAlignment << ISD::ParamFlags::OrigAlignmentOffs;
Anton Korobeynikovf0b93162007-03-06 06:10:33 +00004003
Chris Lattneraaa23d92006-05-16 22:53:20 +00004004 switch (getTypeAction(VT)) {
4005 default: assert(0 && "Unknown type action!");
Lauro Ramos Venancio9956dcf2007-02-13 13:50:08 +00004006 case Legal:
Chris Lattneraaa23d92006-05-16 22:53:20 +00004007 Ops.push_back(Op);
Anton Korobeynikov037c8672007-01-28 13:31:35 +00004008 Ops.push_back(DAG.getConstant(Flags, MVT::i32));
Chris Lattneraaa23d92006-05-16 22:53:20 +00004009 break;
4010 case Promote:
4011 if (MVT::isInteger(VT)) {
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00004012 unsigned ExtOp;
4013 if (Args[i].isSExt)
4014 ExtOp = ISD::SIGN_EXTEND;
4015 else if (Args[i].isZExt)
4016 ExtOp = ISD::ZERO_EXTEND;
4017 else
4018 ExtOp = ISD::ANY_EXTEND;
Chris Lattneraaa23d92006-05-16 22:53:20 +00004019 Op = DAG.getNode(ExtOp, getTypeToTransformTo(VT), Op);
4020 } else {
4021 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
Dale Johannesena2b3c172007-07-03 00:53:03 +00004022 Op = DAG.getNode(ISD::FP_EXTEND, getTypeToTransformTo(VT), Op);
Chris Lattneraaa23d92006-05-16 22:53:20 +00004023 }
4024 Ops.push_back(Op);
Anton Korobeynikov037c8672007-01-28 13:31:35 +00004025 Ops.push_back(DAG.getConstant(Flags, MVT::i32));
Chris Lattneraaa23d92006-05-16 22:53:20 +00004026 break;
Dan Gohman533dd162007-07-02 16:18:06 +00004027 case Expand: {
4028 MVT::ValueType PartVT = getRegisterType(VT);
4029 unsigned NumParts = getNumRegisters(VT);
4030 SmallVector<SDOperand, 4> Parts(NumParts);
Dan Gohmanf8f531b2007-07-09 20:59:04 +00004031 getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT);
Dan Gohman533dd162007-07-02 16:18:06 +00004032 for (unsigned i = 0; i != NumParts; ++i) {
4033 // if it isn't first piece, alignment must be 1
4034 unsigned MyFlags = Flags;
4035 if (i != 0)
4036 MyFlags = (MyFlags & (~ISD::ParamFlags::OrigAlignment)) |
4037 (1 << ISD::ParamFlags::OrigAlignmentOffs);
4038
4039 Ops.push_back(Parts[i]);
4040 Ops.push_back(DAG.getConstant(MyFlags, MVT::i32));
Chris Lattneraaa23d92006-05-16 22:53:20 +00004041 }
4042 break;
4043 }
Dan Gohman533dd162007-07-02 16:18:06 +00004044 }
Chris Lattneraaa23d92006-05-16 22:53:20 +00004045 }
4046
4047 // Figure out the result value types.
Dan Gohman78677932007-06-28 23:29:44 +00004048 MVT::ValueType VT = getValueType(RetTy);
4049 MVT::ValueType RegisterVT = getRegisterType(VT);
4050 unsigned NumRegs = getNumRegisters(VT);
4051 SmallVector<MVT::ValueType, 4> RetTys(NumRegs);
4052 for (unsigned i = 0; i != NumRegs; ++i)
4053 RetTys[i] = RegisterVT;
Chris Lattneraaa23d92006-05-16 22:53:20 +00004054
4055 RetTys.push_back(MVT::Other); // Always has a chain.
4056
Dan Gohman78677932007-06-28 23:29:44 +00004057 // Create the CALL node.
Chris Lattner65879ca2006-08-16 22:57:46 +00004058 SDOperand Res = DAG.getNode(ISD::CALL,
Dan Gohman78677932007-06-28 23:29:44 +00004059 DAG.getVTList(&RetTys[0], NumRegs + 1),
Chris Lattner65879ca2006-08-16 22:57:46 +00004060 &Ops[0], Ops.size());
Chris Lattner3ffe7182007-08-02 18:08:16 +00004061 Chain = Res.getValue(NumRegs);
Dan Gohman78677932007-06-28 23:29:44 +00004062
4063 // Gather up the call result into a single value.
4064 if (RetTy != Type::VoidTy) {
4065 ISD::NodeType AssertOp = ISD::AssertSext;
4066 if (!RetTyIsSigned)
4067 AssertOp = ISD::AssertZext;
4068 SmallVector<SDOperand, 4> Results(NumRegs);
4069 for (unsigned i = 0; i != NumRegs; ++i)
4070 Results[i] = Res.getValue(i);
Dan Gohmanf8f531b2007-07-09 20:59:04 +00004071 Res = getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT, AssertOp);
Chris Lattneraaa23d92006-05-16 22:53:20 +00004072 }
Dan Gohman78677932007-06-28 23:29:44 +00004073
4074 return std::make_pair(Res, Chain);
Chris Lattneraaa23d92006-05-16 22:53:20 +00004075}
4076
Chris Lattner29dcc712005-05-14 05:50:48 +00004077SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner897cd7d2005-01-16 07:28:41 +00004078 assert(0 && "LowerOperation not implemented for this target!");
4079 abort();
Misha Brukman73e929f2005-02-17 21:39:27 +00004080 return SDOperand();
Chris Lattner897cd7d2005-01-16 07:28:41 +00004081}
4082
Nate Begeman595ec732006-01-28 03:14:31 +00004083SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
4084 SelectionDAG &DAG) {
4085 assert(0 && "CustomPromoteOperation not implemented for this target!");
4086 abort();
4087 return SDOperand();
4088}
4089
Evan Cheng6781b6e2006-02-15 21:59:04 +00004090/// getMemsetValue - Vectorized representation of the memset value
Evan Cheng81fcea82006-02-14 08:22:34 +00004091/// operand.
4092static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT,
Evan Cheng93e48652006-02-15 22:12:35 +00004093 SelectionDAG &DAG) {
Evan Cheng81fcea82006-02-14 08:22:34 +00004094 MVT::ValueType CurVT = VT;
4095 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
4096 uint64_t Val = C->getValue() & 255;
4097 unsigned Shift = 8;
4098 while (CurVT != MVT::i8) {
4099 Val = (Val << Shift) | Val;
4100 Shift <<= 1;
4101 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00004102 }
4103 return DAG.getConstant(Val, VT);
4104 } else {
4105 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
4106 unsigned Shift = 8;
4107 while (CurVT != MVT::i8) {
4108 Value =
4109 DAG.getNode(ISD::OR, VT,
4110 DAG.getNode(ISD::SHL, VT, Value,
4111 DAG.getConstant(Shift, MVT::i8)), Value);
4112 Shift <<= 1;
4113 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00004114 }
4115
4116 return Value;
4117 }
4118}
4119
Evan Cheng6781b6e2006-02-15 21:59:04 +00004120/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
4121/// used when a memcpy is turned into a memset when the source is a constant
4122/// string ptr.
4123static SDOperand getMemsetStringVal(MVT::ValueType VT,
4124 SelectionDAG &DAG, TargetLowering &TLI,
4125 std::string &Str, unsigned Offset) {
Evan Cheng6781b6e2006-02-15 21:59:04 +00004126 uint64_t Val = 0;
Dan Gohman1796f1f2007-05-18 17:52:13 +00004127 unsigned MSB = MVT::getSizeInBits(VT) / 8;
Evan Cheng6781b6e2006-02-15 21:59:04 +00004128 if (TLI.isLittleEndian())
4129 Offset = Offset + MSB - 1;
4130 for (unsigned i = 0; i != MSB; ++i) {
Evan Cheng6e12a052006-11-29 01:38:07 +00004131 Val = (Val << 8) | (unsigned char)Str[Offset];
Evan Cheng6781b6e2006-02-15 21:59:04 +00004132 Offset += TLI.isLittleEndian() ? -1 : 1;
4133 }
4134 return DAG.getConstant(Val, VT);
4135}
4136
Evan Cheng81fcea82006-02-14 08:22:34 +00004137/// getMemBasePlusOffset - Returns base and offset node for the
4138static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
4139 SelectionDAG &DAG, TargetLowering &TLI) {
4140 MVT::ValueType VT = Base.getValueType();
4141 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
4142}
4143
Evan Chengdb2a7a72006-02-14 20:12:38 +00004144/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
Evan Chengd5026102006-02-14 09:11:59 +00004145/// to replace the memset / memcpy is below the threshold. It also returns the
4146/// types of the sequence of memory ops to perform memset / memcpy.
Evan Chengdb2a7a72006-02-14 20:12:38 +00004147static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps,
4148 unsigned Limit, uint64_t Size,
4149 unsigned Align, TargetLowering &TLI) {
Evan Cheng81fcea82006-02-14 08:22:34 +00004150 MVT::ValueType VT;
4151
4152 if (TLI.allowsUnalignedMemoryAccesses()) {
4153 VT = MVT::i64;
4154 } else {
4155 switch (Align & 7) {
4156 case 0:
4157 VT = MVT::i64;
4158 break;
4159 case 4:
4160 VT = MVT::i32;
4161 break;
4162 case 2:
4163 VT = MVT::i16;
4164 break;
4165 default:
4166 VT = MVT::i8;
4167 break;
4168 }
4169 }
4170
Evan Chengd5026102006-02-14 09:11:59 +00004171 MVT::ValueType LVT = MVT::i64;
4172 while (!TLI.isTypeLegal(LVT))
4173 LVT = (MVT::ValueType)((unsigned)LVT - 1);
4174 assert(MVT::isInteger(LVT));
Evan Cheng81fcea82006-02-14 08:22:34 +00004175
Evan Chengd5026102006-02-14 09:11:59 +00004176 if (VT > LVT)
4177 VT = LVT;
4178
Evan Cheng04514992006-02-14 23:05:54 +00004179 unsigned NumMemOps = 0;
Evan Cheng81fcea82006-02-14 08:22:34 +00004180 while (Size != 0) {
Dan Gohman1796f1f2007-05-18 17:52:13 +00004181 unsigned VTSize = MVT::getSizeInBits(VT) / 8;
Evan Cheng81fcea82006-02-14 08:22:34 +00004182 while (VTSize > Size) {
4183 VT = (MVT::ValueType)((unsigned)VT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00004184 VTSize >>= 1;
4185 }
Evan Chengd5026102006-02-14 09:11:59 +00004186 assert(MVT::isInteger(VT));
4187
4188 if (++NumMemOps > Limit)
4189 return false;
Evan Cheng81fcea82006-02-14 08:22:34 +00004190 MemOps.push_back(VT);
4191 Size -= VTSize;
4192 }
Evan Chengd5026102006-02-14 09:11:59 +00004193
4194 return true;
Evan Cheng81fcea82006-02-14 08:22:34 +00004195}
4196
Chris Lattner875def92005-01-11 05:56:49 +00004197void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) {
Evan Cheng81fcea82006-02-14 08:22:34 +00004198 SDOperand Op1 = getValue(I.getOperand(1));
4199 SDOperand Op2 = getValue(I.getOperand(2));
4200 SDOperand Op3 = getValue(I.getOperand(3));
4201 SDOperand Op4 = getValue(I.getOperand(4));
4202 unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue();
4203 if (Align == 0) Align = 1;
4204
Dan Gohman8dc0b932007-08-27 16:26:13 +00004205 // If the source and destination are known to not be aliases, we can
4206 // lower memmove as memcpy.
4207 if (Op == ISD::MEMMOVE) {
4208 uint64_t Size = -1;
4209 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
4210 Size = C->getValue();
4211 if (AA.alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
4212 AliasAnalysis::NoAlias)
4213 Op = ISD::MEMCPY;
4214 }
4215
Evan Cheng81fcea82006-02-14 08:22:34 +00004216 if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) {
4217 std::vector<MVT::ValueType> MemOps;
Evan Cheng81fcea82006-02-14 08:22:34 +00004218
4219 // Expand memset / memcpy to a series of load / store ops
4220 // if the size operand falls below a certain threshold.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004221 SmallVector<SDOperand, 8> OutChains;
Evan Cheng81fcea82006-02-14 08:22:34 +00004222 switch (Op) {
Evan Cheng038521e2006-02-14 19:45:56 +00004223 default: break; // Do nothing for now.
Evan Cheng81fcea82006-02-14 08:22:34 +00004224 case ISD::MEMSET: {
Evan Chengdb2a7a72006-02-14 20:12:38 +00004225 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
4226 Size->getValue(), Align, TLI)) {
Evan Chengd5026102006-02-14 09:11:59 +00004227 unsigned NumMemOps = MemOps.size();
Evan Cheng81fcea82006-02-14 08:22:34 +00004228 unsigned Offset = 0;
4229 for (unsigned i = 0; i < NumMemOps; i++) {
4230 MVT::ValueType VT = MemOps[i];
Dan Gohman1796f1f2007-05-18 17:52:13 +00004231 unsigned VTSize = MVT::getSizeInBits(VT) / 8;
Evan Cheng93e48652006-02-15 22:12:35 +00004232 SDOperand Value = getMemsetValue(Op2, VT, DAG);
Evan Chengdf9ac472006-10-05 23:01:46 +00004233 SDOperand Store = DAG.getStore(getRoot(), Value,
Chris Lattner6f87d182006-02-22 22:37:12 +00004234 getMemBasePlusOffset(Op1, Offset, DAG, TLI),
Evan Chengab51cf22006-10-13 21:14:26 +00004235 I.getOperand(1), Offset);
Evan Chenge2038bd2006-02-15 01:54:51 +00004236 OutChains.push_back(Store);
Evan Cheng81fcea82006-02-14 08:22:34 +00004237 Offset += VTSize;
4238 }
Evan Cheng81fcea82006-02-14 08:22:34 +00004239 }
Evan Chenge2038bd2006-02-15 01:54:51 +00004240 break;
Evan Cheng81fcea82006-02-14 08:22:34 +00004241 }
Evan Chenge2038bd2006-02-15 01:54:51 +00004242 case ISD::MEMCPY: {
4243 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemcpy(),
4244 Size->getValue(), Align, TLI)) {
4245 unsigned NumMemOps = MemOps.size();
Evan Chengc3dcf5a2006-02-16 23:11:42 +00004246 unsigned SrcOff = 0, DstOff = 0, SrcDelta = 0;
Evan Cheng6781b6e2006-02-15 21:59:04 +00004247 GlobalAddressSDNode *G = NULL;
4248 std::string Str;
Evan Chengc3dcf5a2006-02-16 23:11:42 +00004249 bool CopyFromStr = false;
Evan Cheng6781b6e2006-02-15 21:59:04 +00004250
4251 if (Op2.getOpcode() == ISD::GlobalAddress)
4252 G = cast<GlobalAddressSDNode>(Op2);
4253 else if (Op2.getOpcode() == ISD::ADD &&
4254 Op2.getOperand(0).getOpcode() == ISD::GlobalAddress &&
4255 Op2.getOperand(1).getOpcode() == ISD::Constant) {
4256 G = cast<GlobalAddressSDNode>(Op2.getOperand(0));
Evan Chengc3dcf5a2006-02-16 23:11:42 +00004257 SrcDelta = cast<ConstantSDNode>(Op2.getOperand(1))->getValue();
Evan Cheng6781b6e2006-02-15 21:59:04 +00004258 }
4259 if (G) {
4260 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Chengfeba5072006-11-29 01:58:12 +00004261 if (GV && GV->isConstant()) {
Evan Cheng38280c02006-03-10 23:52:03 +00004262 Str = GV->getStringValue(false);
Evan Chengc3dcf5a2006-02-16 23:11:42 +00004263 if (!Str.empty()) {
4264 CopyFromStr = true;
4265 SrcOff += SrcDelta;
4266 }
4267 }
Evan Cheng6781b6e2006-02-15 21:59:04 +00004268 }
4269
Evan Chenge2038bd2006-02-15 01:54:51 +00004270 for (unsigned i = 0; i < NumMemOps; i++) {
4271 MVT::ValueType VT = MemOps[i];
Dan Gohman1796f1f2007-05-18 17:52:13 +00004272 unsigned VTSize = MVT::getSizeInBits(VT) / 8;
Evan Cheng6781b6e2006-02-15 21:59:04 +00004273 SDOperand Value, Chain, Store;
4274
Evan Chengc3dcf5a2006-02-16 23:11:42 +00004275 if (CopyFromStr) {
Evan Cheng6781b6e2006-02-15 21:59:04 +00004276 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
4277 Chain = getRoot();
4278 Store =
Evan Chengdf9ac472006-10-05 23:01:46 +00004279 DAG.getStore(Chain, Value,
4280 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
Evan Chengab51cf22006-10-13 21:14:26 +00004281 I.getOperand(1), DstOff);
Evan Cheng6781b6e2006-02-15 21:59:04 +00004282 } else {
4283 Value = DAG.getLoad(VT, getRoot(),
4284 getMemBasePlusOffset(Op2, SrcOff, DAG, TLI),
Evan Chenge71fe34d2006-10-09 20:57:25 +00004285 I.getOperand(2), SrcOff);
Evan Cheng6781b6e2006-02-15 21:59:04 +00004286 Chain = Value.getValue(1);
4287 Store =
Evan Chengdf9ac472006-10-05 23:01:46 +00004288 DAG.getStore(Chain, Value,
4289 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
Evan Chengab51cf22006-10-13 21:14:26 +00004290 I.getOperand(1), DstOff);
Evan Cheng6781b6e2006-02-15 21:59:04 +00004291 }
Evan Chenge2038bd2006-02-15 01:54:51 +00004292 OutChains.push_back(Store);
Evan Cheng6781b6e2006-02-15 21:59:04 +00004293 SrcOff += VTSize;
4294 DstOff += VTSize;
Evan Chenge2038bd2006-02-15 01:54:51 +00004295 }
4296 }
4297 break;
4298 }
4299 }
4300
4301 if (!OutChains.empty()) {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004302 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other,
4303 &OutChains[0], OutChains.size()));
Evan Chenge2038bd2006-02-15 01:54:51 +00004304 return;
Evan Cheng81fcea82006-02-14 08:22:34 +00004305 }
4306 }
4307
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004308 DAG.setRoot(DAG.getNode(Op, MVT::Other, getRoot(), Op1, Op2, Op3, Op4));
Chris Lattner7a60d912005-01-07 07:47:53 +00004309}
4310
Chris Lattner875def92005-01-11 05:56:49 +00004311//===----------------------------------------------------------------------===//
4312// SelectionDAGISel code
4313//===----------------------------------------------------------------------===//
Chris Lattner7a60d912005-01-07 07:47:53 +00004314
4315unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) {
4316 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
4317}
4318
Chris Lattnerc9950c12005-08-17 06:37:43 +00004319void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeydcb2b832006-10-16 20:52:31 +00004320 AU.addRequired<AliasAnalysis>();
Chris Lattnerf6a6d3c2007-03-31 04:18:03 +00004321 AU.setPreservesAll();
Chris Lattnerc9950c12005-08-17 06:37:43 +00004322}
Chris Lattner7a60d912005-01-07 07:47:53 +00004323
Chris Lattner35397782005-12-05 07:10:48 +00004324
Chris Lattnerbba52192006-10-28 19:22:10 +00004325
Chris Lattner7a60d912005-01-07 07:47:53 +00004326bool SelectionDAGISel::runOnFunction(Function &Fn) {
Dan Gohman8dc0b932007-08-27 16:26:13 +00004327 // Get alias analysis for load/store combining.
4328 AA = &getAnalysis<AliasAnalysis>();
4329
Chris Lattner7a60d912005-01-07 07:47:53 +00004330 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
4331 RegMap = MF.getSSARegMap();
Bill Wendling22e978a2006-12-07 20:04:42 +00004332 DOUT << "\n\n\n=== " << Fn.getName() << "\n";
Chris Lattner7a60d912005-01-07 07:47:53 +00004333
4334 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4335
Duncan Sands74137362007-06-13 16:53:21 +00004336 if (ExceptionHandling)
4337 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4338 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
4339 // Mark landing pad.
4340 FuncInfo.MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Duncan Sands61166502007-06-06 10:05:18 +00004341
4342 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
Chris Lattner7a60d912005-01-07 07:47:53 +00004343 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukman835702a2005-04-21 22:36:52 +00004344
Evan Cheng276b44b2007-02-10 02:43:39 +00004345 // Add function live-ins to entry block live-in set.
4346 BasicBlock *EntryBB = &Fn.getEntryBlock();
4347 BB = FuncInfo.MBBMap[EntryBB];
4348 if (!MF.livein_empty())
4349 for (MachineFunction::livein_iterator I = MF.livein_begin(),
4350 E = MF.livein_end(); I != E; ++I)
4351 BB->addLiveIn(I->first);
4352
Duncan Sands92bf2c62007-06-15 19:04:19 +00004353#ifndef NDEBUG
4354 assert(FuncInfo.CatchInfoFound.size() == FuncInfo.CatchInfoLost.size() &&
4355 "Not all catch info was assigned to a landing pad!");
4356#endif
4357
Chris Lattner7a60d912005-01-07 07:47:53 +00004358 return true;
4359}
4360
Chris Lattnered0110b2006-10-27 21:36:01 +00004361SDOperand SelectionDAGLowering::CopyValueToVirtualRegister(Value *V,
4362 unsigned Reg) {
4363 SDOperand Op = getValue(V);
Chris Lattnere727af02005-01-13 20:50:02 +00004364 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattner33182322005-08-16 21:55:35 +00004365 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattnere727af02005-01-13 20:50:02 +00004366 "Copy from a reg to the same reg!");
Chris Lattner33182322005-08-16 21:55:35 +00004367
Chris Lattner33182322005-08-16 21:55:35 +00004368 MVT::ValueType SrcVT = Op.getValueType();
Dan Gohman78677932007-06-28 23:29:44 +00004369 MVT::ValueType RegisterVT = TLI.getRegisterType(SrcVT);
4370 unsigned NumRegs = TLI.getNumRegisters(SrcVT);
4371 SmallVector<SDOperand, 8> Regs(NumRegs);
4372 SmallVector<SDOperand, 8> Chains(NumRegs);
4373
4374 // Copy the value by legal parts into sequential virtual registers.
Dan Gohmanf8f531b2007-07-09 20:59:04 +00004375 getCopyToParts(DAG, Op, &Regs[0], NumRegs, RegisterVT);
Dan Gohman533dd162007-07-02 16:18:06 +00004376 for (unsigned i = 0; i != NumRegs; ++i)
Dan Gohman78677932007-06-28 23:29:44 +00004377 Chains[i] = DAG.getCopyToReg(getRoot(), Reg + i, Regs[i]);
4378 return DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumRegs);
Chris Lattner7a60d912005-01-07 07:47:53 +00004379}
4380
Chris Lattner16f64df2005-01-17 17:15:02 +00004381void SelectionDAGISel::
Evan Chengde608342007-02-10 01:08:18 +00004382LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL,
Chris Lattner16f64df2005-01-17 17:15:02 +00004383 std::vector<SDOperand> &UnorderedChains) {
4384 // If this is the entry block, emit arguments.
Evan Chengde608342007-02-10 01:08:18 +00004385 Function &F = *LLVMBB->getParent();
Chris Lattnere3c2cf42005-01-17 17:55:19 +00004386 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattner6871b232005-10-30 19:42:35 +00004387 SDOperand OldRoot = SDL.DAG.getRoot();
4388 std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
Chris Lattner16f64df2005-01-17 17:15:02 +00004389
Chris Lattner6871b232005-10-30 19:42:35 +00004390 unsigned a = 0;
4391 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
4392 AI != E; ++AI, ++a)
4393 if (!AI->use_empty()) {
4394 SDL.setValue(AI, Args[a]);
Evan Cheng3784f3c52006-04-27 08:29:42 +00004395
Chris Lattner6871b232005-10-30 19:42:35 +00004396 // If this argument is live outside of the entry block, insert a copy from
4397 // whereever we got it to the vreg that other BB's will reference it as.
Chris Lattner8c504cf2007-02-25 18:40:32 +00004398 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4399 if (VMI != FuncInfo.ValueMap.end()) {
4400 SDOperand Copy = SDL.CopyValueToVirtualRegister(AI, VMI->second);
Chris Lattner6871b232005-10-30 19:42:35 +00004401 UnorderedChains.push_back(Copy);
4402 }
Chris Lattnere3c2cf42005-01-17 17:55:19 +00004403 }
Chris Lattner6871b232005-10-30 19:42:35 +00004404
Chris Lattner6871b232005-10-30 19:42:35 +00004405 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner957cb672006-05-16 06:10:58 +00004406 // FIXME: this should insert code into the DAG!
Chris Lattner6871b232005-10-30 19:42:35 +00004407 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner16f64df2005-01-17 17:15:02 +00004408}
4409
Duncan Sands92bf2c62007-06-15 19:04:19 +00004410static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
4411 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
4412 assert(!FLI.MBBMap[SrcBB]->isLandingPad() &&
4413 "Copying catch info out of a landing pad!");
4414 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
Duncan Sandsfe806382007-07-04 20:52:51 +00004415 if (isSelector(I)) {
Duncan Sands92bf2c62007-06-15 19:04:19 +00004416 // Apply the catch info to DestBB.
4417 addCatchInfo(cast<CallInst>(*I), MMI, FLI.MBBMap[DestBB]);
4418#ifndef NDEBUG
4419 FLI.CatchInfoFound.insert(I);
4420#endif
4421 }
4422}
4423
Chris Lattner7a60d912005-01-07 07:47:53 +00004424void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
4425 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemaned728c12006-03-27 01:32:24 +00004426 FunctionLoweringInfo &FuncInfo) {
Dan Gohman8dc0b932007-08-27 16:26:13 +00004427 SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo);
Chris Lattner718b5c22005-01-13 17:59:43 +00004428
4429 std::vector<SDOperand> UnorderedChains;
Misha Brukman835702a2005-04-21 22:36:52 +00004430
Chris Lattner6871b232005-10-30 19:42:35 +00004431 // Lower any arguments needed in this block if this is the entry block.
Dan Gohmandcb291f2007-03-22 16:38:57 +00004432 if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
Chris Lattner6871b232005-10-30 19:42:35 +00004433 LowerArguments(LLVMBB, SDL, UnorderedChains);
Chris Lattner7a60d912005-01-07 07:47:53 +00004434
4435 BB = FuncInfo.MBBMap[LLVMBB];
4436 SDL.setCurrentBasicBlock(BB);
4437
Duncan Sands92bf2c62007-06-15 19:04:19 +00004438 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands61166502007-06-06 10:05:18 +00004439
Duncan Sands92bf2c62007-06-15 19:04:19 +00004440 if (ExceptionHandling && MMI && BB->isLandingPad()) {
4441 // Add a label to mark the beginning of the landing pad. Deletion of the
4442 // landing pad can thus be detected via the MachineModuleInfo.
4443 unsigned LabelID = MMI->addLandingPad(BB);
4444 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, DAG.getEntryNode(),
4445 DAG.getConstant(LabelID, MVT::i32)));
4446
Evan Cheng77f541d2007-06-27 18:45:32 +00004447 // Mark exception register as live in.
4448 unsigned Reg = TLI.getExceptionAddressRegister();
4449 if (Reg) BB->addLiveIn(Reg);
4450
4451 // Mark exception selector register as live in.
4452 Reg = TLI.getExceptionSelectorRegister();
4453 if (Reg) BB->addLiveIn(Reg);
4454
Duncan Sands92bf2c62007-06-15 19:04:19 +00004455 // FIXME: Hack around an exception handling flaw (PR1508): the personality
4456 // function and list of typeids logically belong to the invoke (or, if you
4457 // like, the basic block containing the invoke), and need to be associated
4458 // with it in the dwarf exception handling tables. Currently however the
Duncan Sandsfe806382007-07-04 20:52:51 +00004459 // information is provided by an intrinsic (eh.selector) that can be moved
4460 // to unexpected places by the optimizers: if the unwind edge is critical,
4461 // then breaking it can result in the intrinsics being in the successor of
4462 // the landing pad, not the landing pad itself. This results in exceptions
4463 // not being caught because no typeids are associated with the invoke.
4464 // This may not be the only way things can go wrong, but it is the only way
4465 // we try to work around for the moment.
Duncan Sands92bf2c62007-06-15 19:04:19 +00004466 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
4467
4468 if (Br && Br->isUnconditional()) { // Critical edge?
4469 BasicBlock::iterator I, E;
4470 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
Duncan Sandsfe806382007-07-04 20:52:51 +00004471 if (isSelector(I))
Duncan Sands92bf2c62007-06-15 19:04:19 +00004472 break;
4473
4474 if (I == E)
4475 // No catch info found - try to extract some from the successor.
4476 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, FuncInfo);
Duncan Sands61166502007-06-06 10:05:18 +00004477 }
4478 }
4479
Chris Lattner7a60d912005-01-07 07:47:53 +00004480 // Lower all of the non-terminator instructions.
4481 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
4482 I != E; ++I)
4483 SDL.visit(*I);
Duncan Sands97f72362007-06-13 05:51:31 +00004484
Chris Lattner7a60d912005-01-07 07:47:53 +00004485 // Ensure that all instructions which are used outside of their defining
Duncan Sands97f72362007-06-13 05:51:31 +00004486 // blocks are available as virtual registers. Invoke is handled elsewhere.
Chris Lattner7a60d912005-01-07 07:47:53 +00004487 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Duncan Sands97f72362007-06-13 05:51:31 +00004488 if (!I->use_empty() && !isa<PHINode>(I) && !isa<InvokeInst>(I)) {
Chris Lattner289aa442007-02-04 01:35:11 +00004489 DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner7a60d912005-01-07 07:47:53 +00004490 if (VMI != FuncInfo.ValueMap.end())
Chris Lattner718b5c22005-01-13 17:59:43 +00004491 UnorderedChains.push_back(
Chris Lattnered0110b2006-10-27 21:36:01 +00004492 SDL.CopyValueToVirtualRegister(I, VMI->second));
Chris Lattner7a60d912005-01-07 07:47:53 +00004493 }
4494
4495 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
4496 // ensure constants are generated when needed. Remember the virtual registers
4497 // that need to be added to the Machine PHI nodes as input. We cannot just
4498 // directly add them, because expansion might result in multiple MBB's for one
4499 // BB. As such, the start of the BB might correspond to a different MBB than
4500 // the end.
Misha Brukman835702a2005-04-21 22:36:52 +00004501 //
Chris Lattner84a03502006-10-27 23:50:33 +00004502 TerminatorInst *TI = LLVMBB->getTerminator();
Chris Lattner7a60d912005-01-07 07:47:53 +00004503
4504 // Emit constants only once even if used by multiple PHI nodes.
4505 std::map<Constant*, unsigned> ConstantsOut;
Chris Lattner707339a52006-09-07 01:59:34 +00004506
Chris Lattner84a03502006-10-27 23:50:33 +00004507 // Vector bool would be better, but vector<bool> is really slow.
4508 std::vector<unsigned char> SuccsHandled;
4509 if (TI->getNumSuccessors())
4510 SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
4511
Dan Gohmanf8f531b2007-07-09 20:59:04 +00004512 // Check successor nodes' PHI nodes that expect a constant to be available
4513 // from this block.
Chris Lattner7a60d912005-01-07 07:47:53 +00004514 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
4515 BasicBlock *SuccBB = TI->getSuccessor(succ);
Chris Lattner707339a52006-09-07 01:59:34 +00004516 if (!isa<PHINode>(SuccBB->begin())) continue;
Chris Lattner84a03502006-10-27 23:50:33 +00004517 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
Chris Lattner707339a52006-09-07 01:59:34 +00004518
Chris Lattner84a03502006-10-27 23:50:33 +00004519 // If this terminator has multiple identical successors (common for
4520 // switches), only handle each succ once.
4521 unsigned SuccMBBNo = SuccMBB->getNumber();
4522 if (SuccsHandled[SuccMBBNo]) continue;
4523 SuccsHandled[SuccMBBNo] = true;
4524
4525 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
Chris Lattner7a60d912005-01-07 07:47:53 +00004526 PHINode *PN;
4527
4528 // At this point we know that there is a 1-1 correspondence between LLVM PHI
4529 // nodes and Machine PHI nodes, but the incoming operands have not been
4530 // emitted yet.
4531 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattner84a03502006-10-27 23:50:33 +00004532 (PN = dyn_cast<PHINode>(I)); ++I) {
4533 // Ignore dead phi's.
4534 if (PN->use_empty()) continue;
4535
4536 unsigned Reg;
4537 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
Chris Lattner90f42382006-11-29 01:12:32 +00004538
Chris Lattner84a03502006-10-27 23:50:33 +00004539 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
4540 unsigned &RegOut = ConstantsOut[C];
4541 if (RegOut == 0) {
4542 RegOut = FuncInfo.CreateRegForValue(C);
4543 UnorderedChains.push_back(
4544 SDL.CopyValueToVirtualRegister(C, RegOut));
Chris Lattner7a60d912005-01-07 07:47:53 +00004545 }
Chris Lattner84a03502006-10-27 23:50:33 +00004546 Reg = RegOut;
4547 } else {
4548 Reg = FuncInfo.ValueMap[PHIOp];
4549 if (Reg == 0) {
4550 assert(isa<AllocaInst>(PHIOp) &&
4551 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
4552 "Didn't codegen value into a register!??");
4553 Reg = FuncInfo.CreateRegForValue(PHIOp);
4554 UnorderedChains.push_back(
4555 SDL.CopyValueToVirtualRegister(PHIOp, Reg));
Chris Lattnerba380352006-03-31 02:12:18 +00004556 }
Chris Lattner7a60d912005-01-07 07:47:53 +00004557 }
Chris Lattner84a03502006-10-27 23:50:33 +00004558
4559 // Remember that this register needs to added to the machine PHI node as
4560 // the input for this MBB.
4561 MVT::ValueType VT = TLI.getValueType(PN->getType());
Dan Gohmana8665142007-06-25 16:23:39 +00004562 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohman04deef32007-06-21 14:42:22 +00004563 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
Chris Lattner84a03502006-10-27 23:50:33 +00004564 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
4565 }
Chris Lattner7a60d912005-01-07 07:47:53 +00004566 }
4567 ConstantsOut.clear();
4568
Chris Lattner718b5c22005-01-13 17:59:43 +00004569 // Turn all of the unordered chains into one factored node.
Chris Lattner24516842005-01-13 19:53:14 +00004570 if (!UnorderedChains.empty()) {
Chris Lattnerb7cad902005-11-09 05:03:03 +00004571 SDOperand Root = SDL.getRoot();
4572 if (Root.getOpcode() != ISD::EntryToken) {
4573 unsigned i = 0, e = UnorderedChains.size();
4574 for (; i != e; ++i) {
4575 assert(UnorderedChains[i].Val->getNumOperands() > 1);
4576 if (UnorderedChains[i].Val->getOperand(0) == Root)
4577 break; // Don't add the root if we already indirectly depend on it.
4578 }
4579
4580 if (i == e)
4581 UnorderedChains.push_back(Root);
4582 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004583 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other,
4584 &UnorderedChains[0], UnorderedChains.size()));
Chris Lattner718b5c22005-01-13 17:59:43 +00004585 }
4586
Chris Lattner7a60d912005-01-07 07:47:53 +00004587 // Lower the terminator after the copies are emitted.
Duncan Sands97f72362007-06-13 05:51:31 +00004588 SDL.visit(*LLVMBB->getTerminator());
Chris Lattner4108bb02005-01-17 19:43:36 +00004589
Nate Begemaned728c12006-03-27 01:32:24 +00004590 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman4ca2ea52006-04-22 18:53:45 +00004591 // lowering, as well as any jump table information.
Nate Begemaned728c12006-03-27 01:32:24 +00004592 SwitchCases.clear();
4593 SwitchCases = SDL.SwitchCases;
Anton Korobeynikov70378262007-03-25 15:07:15 +00004594 JTCases.clear();
4595 JTCases = SDL.JTCases;
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00004596 BitTestCases.clear();
4597 BitTestCases = SDL.BitTestCases;
4598
Chris Lattner4108bb02005-01-17 19:43:36 +00004599 // Make sure the root of the DAG is up-to-date.
4600 DAG.setRoot(SDL.getRoot());
Chris Lattner7a60d912005-01-07 07:47:53 +00004601}
4602
Nate Begemaned728c12006-03-27 01:32:24 +00004603void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Chris Lattnerbcfebeb2005-10-10 16:47:10 +00004604 // Run the DAG combiner in pre-legalize mode.
Dan Gohman8dc0b932007-08-27 16:26:13 +00004605 DAG.Combine(false, *AA);
Nate Begeman007c6502005-09-07 00:15:36 +00004606
Bill Wendling22e978a2006-12-07 20:04:42 +00004607 DOUT << "Lowered selection DAG:\n";
Chris Lattner7a60d912005-01-07 07:47:53 +00004608 DEBUG(DAG.dump());
Nate Begemaned728c12006-03-27 01:32:24 +00004609
Chris Lattner7a60d912005-01-07 07:47:53 +00004610 // Second step, hack on the DAG until it only uses operations and types that
4611 // the target supports.
Chris Lattnerffcb0ae2005-01-23 04:36:26 +00004612 DAG.Legalize();
Nate Begemaned728c12006-03-27 01:32:24 +00004613
Bill Wendling22e978a2006-12-07 20:04:42 +00004614 DOUT << "Legalized selection DAG:\n";
Chris Lattner7a60d912005-01-07 07:47:53 +00004615 DEBUG(DAG.dump());
Nate Begemaned728c12006-03-27 01:32:24 +00004616
Chris Lattnerbcfebeb2005-10-10 16:47:10 +00004617 // Run the DAG combiner in post-legalize mode.
Dan Gohman8dc0b932007-08-27 16:26:13 +00004618 DAG.Combine(true, *AA);
Nate Begeman007c6502005-09-07 00:15:36 +00004619
Evan Cheng739a6a42006-01-21 02:32:06 +00004620 if (ViewISelDAGs) DAG.viewGraph();
Evan Cheng51ab4492006-04-28 02:09:19 +00004621
Chris Lattner5ca31d92005-03-30 01:10:47 +00004622 // Third, instruction select all of the operations to machine code, adding the
4623 // code to the MachineBasicBlock.
Chris Lattner7a60d912005-01-07 07:47:53 +00004624 InstructionSelectBasicBlock(DAG);
Nate Begemaned728c12006-03-27 01:32:24 +00004625
Bill Wendling22e978a2006-12-07 20:04:42 +00004626 DOUT << "Selected machine code:\n";
Chris Lattner7a60d912005-01-07 07:47:53 +00004627 DEBUG(BB->dump());
Nate Begemaned728c12006-03-27 01:32:24 +00004628}
Chris Lattner7a60d912005-01-07 07:47:53 +00004629
Nate Begemaned728c12006-03-27 01:32:24 +00004630void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
4631 FunctionLoweringInfo &FuncInfo) {
4632 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
4633 {
Jim Laskeyc56315c2007-01-26 21:22:28 +00004634 SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
Nate Begemaned728c12006-03-27 01:32:24 +00004635 CurDAG = &DAG;
4636
4637 // First step, lower LLVM code to some DAG. This DAG may use operations and
4638 // types that are not supported by the target.
4639 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
4640
4641 // Second step, emit the lowered DAG as machine code.
4642 CodeGenAndEmitDAG(DAG);
4643 }
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00004644
4645 DOUT << "Total amount of phi nodes to update: "
4646 << PHINodesToUpdate.size() << "\n";
4647 DEBUG(for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i)
4648 DOUT << "Node " << i << " : (" << PHINodesToUpdate[i].first
4649 << ", " << PHINodesToUpdate[i].second << ")\n";);
Nate Begemaned728c12006-03-27 01:32:24 +00004650
Chris Lattner5ca31d92005-03-30 01:10:47 +00004651 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner7a60d912005-01-07 07:47:53 +00004652 // PHI nodes in successors.
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00004653 if (SwitchCases.empty() && JTCases.empty() && BitTestCases.empty()) {
Nate Begemaned728c12006-03-27 01:32:24 +00004654 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
4655 MachineInstr *PHI = PHINodesToUpdate[i].first;
4656 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
4657 "This is not a machine PHI node that we are updating!");
Chris Lattneraf23f9b2006-09-05 02:31:13 +00004658 PHI->addRegOperand(PHINodesToUpdate[i].second, false);
Nate Begemaned728c12006-03-27 01:32:24 +00004659 PHI->addMachineBasicBlockOperand(BB);
4660 }
4661 return;
Chris Lattner7a60d912005-01-07 07:47:53 +00004662 }
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00004663
4664 for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) {
4665 // Lower header first, if it wasn't already lowered
4666 if (!BitTestCases[i].Emitted) {
4667 SelectionDAG HSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
4668 CurDAG = &HSDAG;
Dan Gohman8dc0b932007-08-27 16:26:13 +00004669 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo);
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00004670 // Set the current basic block to the mbb we wish to insert the code into
4671 BB = BitTestCases[i].Parent;
4672 HSDL.setCurrentBasicBlock(BB);
4673 // Emit the code
4674 HSDL.visitBitTestHeader(BitTestCases[i]);
4675 HSDAG.setRoot(HSDL.getRoot());
4676 CodeGenAndEmitDAG(HSDAG);
4677 }
4678
4679 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
4680 SelectionDAG BSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
4681 CurDAG = &BSDAG;
Dan Gohman8dc0b932007-08-27 16:26:13 +00004682 SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo);
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00004683 // Set the current basic block to the mbb we wish to insert the code into
4684 BB = BitTestCases[i].Cases[j].ThisBB;
4685 BSDL.setCurrentBasicBlock(BB);
4686 // Emit the code
4687 if (j+1 != ej)
4688 BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
4689 BitTestCases[i].Reg,
4690 BitTestCases[i].Cases[j]);
4691 else
4692 BSDL.visitBitTestCase(BitTestCases[i].Default,
4693 BitTestCases[i].Reg,
4694 BitTestCases[i].Cases[j]);
4695
4696
4697 BSDAG.setRoot(BSDL.getRoot());
4698 CodeGenAndEmitDAG(BSDAG);
4699 }
4700
4701 // Update PHI Nodes
4702 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
4703 MachineInstr *PHI = PHINodesToUpdate[pi].first;
4704 MachineBasicBlock *PHIBB = PHI->getParent();
4705 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
4706 "This is not a machine PHI node that we are updating!");
4707 // This is "default" BB. We have two jumps to it. From "header" BB and
4708 // from last "case" BB.
4709 if (PHIBB == BitTestCases[i].Default) {
4710 PHI->addRegOperand(PHINodesToUpdate[pi].second, false);
4711 PHI->addMachineBasicBlockOperand(BitTestCases[i].Parent);
Anton Korobeynikove2880402007-04-13 06:53:51 +00004712 PHI->addRegOperand(PHINodesToUpdate[pi].second, false);
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00004713 PHI->addMachineBasicBlockOperand(BitTestCases[i].Cases.back().ThisBB);
4714 }
4715 // One of "cases" BB.
4716 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
4717 MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
4718 if (cBB->succ_end() !=
4719 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
4720 PHI->addRegOperand(PHINodesToUpdate[pi].second, false);
4721 PHI->addMachineBasicBlockOperand(cBB);
4722 }
4723 }
4724 }
4725 }
4726
Nate Begeman866b4b42006-04-23 06:26:20 +00004727 // If the JumpTable record is filled in, then we need to emit a jump table.
4728 // Updating the PHI nodes is tricky in this case, since we need to determine
4729 // whether the PHI is a successor of the range check MBB or the jump table MBB
Anton Korobeynikov70378262007-03-25 15:07:15 +00004730 for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
4731 // Lower header first, if it wasn't already lowered
4732 if (!JTCases[i].first.Emitted) {
4733 SelectionDAG HSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
4734 CurDAG = &HSDAG;
Dan Gohman8dc0b932007-08-27 16:26:13 +00004735 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo);
Anton Korobeynikov70378262007-03-25 15:07:15 +00004736 // Set the current basic block to the mbb we wish to insert the code into
4737 BB = JTCases[i].first.HeaderBB;
4738 HSDL.setCurrentBasicBlock(BB);
4739 // Emit the code
4740 HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
4741 HSDAG.setRoot(HSDL.getRoot());
4742 CodeGenAndEmitDAG(HSDAG);
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00004743 }
Anton Korobeynikov70378262007-03-25 15:07:15 +00004744
4745 SelectionDAG JSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
4746 CurDAG = &JSDAG;
Dan Gohman8dc0b932007-08-27 16:26:13 +00004747 SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00004748 // Set the current basic block to the mbb we wish to insert the code into
Anton Korobeynikov70378262007-03-25 15:07:15 +00004749 BB = JTCases[i].second.MBB;
4750 JSDL.setCurrentBasicBlock(BB);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00004751 // Emit the code
Anton Korobeynikov70378262007-03-25 15:07:15 +00004752 JSDL.visitJumpTable(JTCases[i].second);
4753 JSDAG.setRoot(JSDL.getRoot());
4754 CodeGenAndEmitDAG(JSDAG);
4755
Nate Begeman4ca2ea52006-04-22 18:53:45 +00004756 // Update PHI Nodes
4757 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
4758 MachineInstr *PHI = PHINodesToUpdate[pi].first;
4759 MachineBasicBlock *PHIBB = PHI->getParent();
4760 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
4761 "This is not a machine PHI node that we are updating!");
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00004762 // "default" BB. We can go there only from header BB.
Anton Korobeynikov70378262007-03-25 15:07:15 +00004763 if (PHIBB == JTCases[i].second.Default) {
Chris Lattneraf23f9b2006-09-05 02:31:13 +00004764 PHI->addRegOperand(PHINodesToUpdate[pi].second, false);
Anton Korobeynikov70378262007-03-25 15:07:15 +00004765 PHI->addMachineBasicBlockOperand(JTCases[i].first.HeaderBB);
Nate Begemandf488392006-05-03 03:48:02 +00004766 }
Anton Korobeynikov506eaf72007-04-09 12:31:58 +00004767 // JT BB. Just iterate over successors here
Nate Begemandf488392006-05-03 03:48:02 +00004768 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Chris Lattneraf23f9b2006-09-05 02:31:13 +00004769 PHI->addRegOperand(PHINodesToUpdate[pi].second, false);
Nate Begemandf488392006-05-03 03:48:02 +00004770 PHI->addMachineBasicBlockOperand(BB);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00004771 }
4772 }
Nate Begeman4ca2ea52006-04-22 18:53:45 +00004773 }
4774
Chris Lattner76a7bc82006-10-22 23:00:53 +00004775 // If the switch block involved a branch to one of the actual successors, we
4776 // need to update PHI nodes in that block.
4777 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
4778 MachineInstr *PHI = PHINodesToUpdate[i].first;
4779 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
4780 "This is not a machine PHI node that we are updating!");
4781 if (BB->isSuccessor(PHI->getParent())) {
4782 PHI->addRegOperand(PHINodesToUpdate[i].second, false);
4783 PHI->addMachineBasicBlockOperand(BB);
4784 }
4785 }
4786
Nate Begemaned728c12006-03-27 01:32:24 +00004787 // If we generated any switch lowering information, build and codegen any
4788 // additional DAGs necessary.
Chris Lattner707339a52006-09-07 01:59:34 +00004789 for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
Jim Laskeyc56315c2007-01-26 21:22:28 +00004790 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
Nate Begemaned728c12006-03-27 01:32:24 +00004791 CurDAG = &SDAG;
Dan Gohman8dc0b932007-08-27 16:26:13 +00004792 SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo);
Chris Lattner707339a52006-09-07 01:59:34 +00004793
Nate Begemaned728c12006-03-27 01:32:24 +00004794 // Set the current basic block to the mbb we wish to insert the code into
4795 BB = SwitchCases[i].ThisBB;
4796 SDL.setCurrentBasicBlock(BB);
Chris Lattner707339a52006-09-07 01:59:34 +00004797
Nate Begemaned728c12006-03-27 01:32:24 +00004798 // Emit the code
4799 SDL.visitSwitchCase(SwitchCases[i]);
4800 SDAG.setRoot(SDL.getRoot());
4801 CodeGenAndEmitDAG(SDAG);
Chris Lattner707339a52006-09-07 01:59:34 +00004802
4803 // Handle any PHI nodes in successors of this chunk, as if we were coming
4804 // from the original BB before switch expansion. Note that PHI nodes can
4805 // occur multiple times in PHINodesToUpdate. We have to be very careful to
4806 // handle them the right number of times.
Chris Lattner963ddad2006-10-24 17:57:59 +00004807 while ((BB = SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
Chris Lattner707339a52006-09-07 01:59:34 +00004808 for (MachineBasicBlock::iterator Phi = BB->begin();
4809 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
4810 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
4811 for (unsigned pn = 0; ; ++pn) {
4812 assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
4813 if (PHINodesToUpdate[pn].first == Phi) {
4814 Phi->addRegOperand(PHINodesToUpdate[pn].second, false);
4815 Phi->addMachineBasicBlockOperand(SwitchCases[i].ThisBB);
4816 break;
4817 }
4818 }
Nate Begemaned728c12006-03-27 01:32:24 +00004819 }
Chris Lattner707339a52006-09-07 01:59:34 +00004820
4821 // Don't process RHS if same block as LHS.
Chris Lattner963ddad2006-10-24 17:57:59 +00004822 if (BB == SwitchCases[i].FalseBB)
4823 SwitchCases[i].FalseBB = 0;
Chris Lattner707339a52006-09-07 01:59:34 +00004824
4825 // If we haven't handled the RHS, do so now. Otherwise, we're done.
Chris Lattner61bcf912006-10-24 18:07:37 +00004826 SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
Chris Lattner963ddad2006-10-24 17:57:59 +00004827 SwitchCases[i].FalseBB = 0;
Nate Begemaned728c12006-03-27 01:32:24 +00004828 }
Chris Lattner963ddad2006-10-24 17:57:59 +00004829 assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
Chris Lattner5ca31d92005-03-30 01:10:47 +00004830 }
Chris Lattner7a60d912005-01-07 07:47:53 +00004831}
Evan Cheng739a6a42006-01-21 02:32:06 +00004832
Jim Laskey95eda5b2006-08-01 14:21:23 +00004833
Evan Cheng739a6a42006-01-21 02:32:06 +00004834//===----------------------------------------------------------------------===//
4835/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
4836/// target node in the graph.
4837void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
4838 if (ViewSchedDAGs) DAG.viewGraph();
Evan Chengc1e1d972006-01-23 07:01:07 +00004839
Jim Laskey29e635d2006-08-02 12:30:23 +00004840 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Jim Laskey95eda5b2006-08-01 14:21:23 +00004841
4842 if (!Ctor) {
Jim Laskey29e635d2006-08-02 12:30:23 +00004843 Ctor = ISHeuristic;
Jim Laskey17c67ef2006-08-01 19:14:14 +00004844 RegisterScheduler::setDefault(Ctor);
Evan Chengc1e1d972006-01-23 07:01:07 +00004845 }
Jim Laskey95eda5b2006-08-01 14:21:23 +00004846
Jim Laskey03593f72006-08-01 18:29:48 +00004847 ScheduleDAG *SL = Ctor(this, &DAG, BB);
Chris Lattnere23928c2006-01-21 19:12:11 +00004848 BB = SL->Run();
Dan Gohman81b62e12007-08-28 20:32:58 +00004849
4850 if (ViewSUnitDAGs) SL->viewGraph();
4851
Evan Chengf9adce92006-02-04 06:49:00 +00004852 delete SL;
Evan Cheng739a6a42006-01-21 02:32:06 +00004853}
Chris Lattnerdcf785b2006-02-24 02:13:54 +00004854
Chris Lattner47639db2006-03-06 00:22:00 +00004855
Jim Laskey03593f72006-08-01 18:29:48 +00004856HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
4857 return new HazardRecognizer();
4858}
4859
Chris Lattner6df34962006-10-11 03:58:02 +00004860//===----------------------------------------------------------------------===//
4861// Helper functions used by the generated instruction selector.
4862//===----------------------------------------------------------------------===//
4863// Calls to these methods are generated by tblgen.
4864
4865/// CheckAndMask - The isel is trying to match something like (and X, 255). If
4866/// the dag combiner simplified the 255, we still want to match. RHS is the
4867/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
4868/// specified in the .td file (e.g. 255).
4869bool SelectionDAGISel::CheckAndMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohmanf0bb1282007-07-24 23:00:27 +00004870 int64_t DesiredMaskS) const {
Chris Lattner6df34962006-10-11 03:58:02 +00004871 uint64_t ActualMask = RHS->getValue();
4872 uint64_t DesiredMask =DesiredMaskS & MVT::getIntVTBitMask(LHS.getValueType());
4873
4874 // If the actual mask exactly matches, success!
4875 if (ActualMask == DesiredMask)
4876 return true;
4877
4878 // If the actual AND mask is allowing unallowed bits, this doesn't match.
4879 if (ActualMask & ~DesiredMask)
4880 return false;
4881
4882 // Otherwise, the DAG Combiner may have proven that the value coming in is
4883 // either already zero or is not demanded. Check for known zero input bits.
4884 uint64_t NeededMask = DesiredMask & ~ActualMask;
Dan Gohman309d3d52007-06-22 14:59:07 +00004885 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
Chris Lattner6df34962006-10-11 03:58:02 +00004886 return true;
4887
4888 // TODO: check to see if missing bits are just not demanded.
4889
4890 // Otherwise, this pattern doesn't match.
4891 return false;
4892}
4893
4894/// CheckOrMask - The isel is trying to match something like (or X, 255). If
4895/// the dag combiner simplified the 255, we still want to match. RHS is the
4896/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
4897/// specified in the .td file (e.g. 255).
4898bool SelectionDAGISel::CheckOrMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohmanf0bb1282007-07-24 23:00:27 +00004899 int64_t DesiredMaskS) const {
Chris Lattner6df34962006-10-11 03:58:02 +00004900 uint64_t ActualMask = RHS->getValue();
4901 uint64_t DesiredMask =DesiredMaskS & MVT::getIntVTBitMask(LHS.getValueType());
4902
4903 // If the actual mask exactly matches, success!
4904 if (ActualMask == DesiredMask)
4905 return true;
4906
4907 // If the actual AND mask is allowing unallowed bits, this doesn't match.
4908 if (ActualMask & ~DesiredMask)
4909 return false;
4910
4911 // Otherwise, the DAG Combiner may have proven that the value coming in is
4912 // either already zero or is not demanded. Check for known zero input bits.
4913 uint64_t NeededMask = DesiredMask & ~ActualMask;
4914
4915 uint64_t KnownZero, KnownOne;
Dan Gohman309d3d52007-06-22 14:59:07 +00004916 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
Chris Lattner6df34962006-10-11 03:58:02 +00004917
4918 // If all the missing bits in the or are already known to be set, match!
4919 if ((NeededMask & KnownOne) == NeededMask)
4920 return true;
4921
4922 // TODO: check to see if missing bits are just not demanded.
4923
4924 // Otherwise, this pattern doesn't match.
4925 return false;
4926}
4927
Jim Laskey03593f72006-08-01 18:29:48 +00004928
Chris Lattnerdcf785b2006-02-24 02:13:54 +00004929/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
4930/// by tblgen. Others should not call it.
4931void SelectionDAGISel::
4932SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
4933 std::vector<SDOperand> InOps;
4934 std::swap(InOps, Ops);
4935
4936 Ops.push_back(InOps[0]); // input chain.
4937 Ops.push_back(InOps[1]); // input asm string.
4938
Chris Lattnerdcf785b2006-02-24 02:13:54 +00004939 unsigned i = 2, e = InOps.size();
4940 if (InOps[e-1].getValueType() == MVT::Flag)
4941 --e; // Don't process a flag operand if it is here.
4942
4943 while (i != e) {
4944 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
4945 if ((Flags & 7) != 4 /*MEM*/) {
4946 // Just skip over this operand, copying the operands verbatim.
4947 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
4948 i += (Flags >> 3) + 1;
4949 } else {
4950 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
4951 // Otherwise, this is a memory operand. Ask the target to select it.
4952 std::vector<SDOperand> SelOps;
4953 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
Bill Wendling22e978a2006-12-07 20:04:42 +00004954 cerr << "Could not match memory address. Inline asm failure!\n";
Chris Lattnerdcf785b2006-02-24 02:13:54 +00004955 exit(1);
4956 }
4957
4958 // Add this to the output node.
Chris Lattnerb49917d2007-04-09 00:33:58 +00004959 MVT::ValueType IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner9bd5ed62006-12-16 21:14:48 +00004960 Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
Chris Lattnerb49917d2007-04-09 00:33:58 +00004961 IntPtrTy));
Chris Lattnerdcf785b2006-02-24 02:13:54 +00004962 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
4963 i += 2;
4964 }
4965 }
4966
4967 // Add the flag input back if present.
4968 if (e != InOps.size())
4969 Ops.push_back(InOps.back());
4970}
Devang Patel09f162c2007-05-01 21:15:47 +00004971
Devang Patel8c78a0b2007-05-03 01:11:54 +00004972char SelectionDAGISel::ID = 0;