blob: 3064285876ff7c5a45a6bd7d0306fcef8a4c1cb2 [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"
Jim Laskeydcb2b832006-10-16 20:52:31 +000015#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000016#include "llvm/CodeGen/SelectionDAGISel.h"
Evan Cheng739a6a42006-01-21 02:32:06 +000017#include "llvm/CodeGen/ScheduleDAG.h"
Chris Lattner2e77db62005-05-13 18:50:42 +000018#include "llvm/CallingConv.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000019#include "llvm/Constants.h"
20#include "llvm/DerivedTypes.h"
21#include "llvm/Function.h"
Chris Lattner435b4022005-11-29 06:21:05 +000022#include "llvm/GlobalVariable.h"
Chris Lattner476e67b2006-01-26 22:24:51 +000023#include "llvm/InlineAsm.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000024#include "llvm/Instructions.h"
25#include "llvm/Intrinsics.h"
Jim Laskeya8bdac82006-03-23 18:06:46 +000026#include "llvm/IntrinsicInst.h"
Chris Lattnerf2b62f32005-11-16 07:22:30 +000027#include "llvm/CodeGen/IntrinsicLowering.h"
Jim Laskey219d5592006-01-04 22:28:25 +000028#include "llvm/CodeGen/MachineDebugInfo.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000029#include "llvm/CodeGen/MachineFunction.h"
30#include "llvm/CodeGen/MachineFrameInfo.h"
Nate Begeman4ca2ea52006-04-22 18:53:45 +000031#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000032#include "llvm/CodeGen/MachineInstrBuilder.h"
Jim Laskey29e635d2006-08-02 12:30:23 +000033#include "llvm/CodeGen/SchedulerRegistry.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000034#include "llvm/CodeGen/SelectionDAG.h"
35#include "llvm/CodeGen/SSARegMap.h"
Chris Lattnerd4382f02005-09-13 19:30:54 +000036#include "llvm/Target/MRegisterInfo.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000037#include "llvm/Target/TargetData.h"
38#include "llvm/Target/TargetFrameInfo.h"
39#include "llvm/Target/TargetInstrInfo.h"
40#include "llvm/Target/TargetLowering.h"
41#include "llvm/Target/TargetMachine.h"
Vladimir Prusdf1d4392006-05-23 13:43:15 +000042#include "llvm/Target/TargetOptions.h"
Chris Lattnerc9950c12005-08-17 06:37:43 +000043#include "llvm/Transforms/Utils/BasicBlockUtils.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"
Chris Lattner7a60d912005-01-07 07:47:53 +000047#include <map>
Chris Lattner1558fc62006-02-01 18:59:47 +000048#include <set>
Chris Lattner7a60d912005-01-07 07:47:53 +000049#include <iostream>
Jeff Cohen83c22e02006-02-24 02:52:40 +000050#include <algorithm>
Chris Lattner7a60d912005-01-07 07:47:53 +000051using namespace llvm;
52
Chris Lattner975f5c92005-09-01 18:44:10 +000053#ifndef NDEBUG
Chris Lattnere05a4612005-01-12 03:41:21 +000054static cl::opt<bool>
Evan Cheng739a6a42006-01-21 02:32:06 +000055ViewISelDAGs("view-isel-dags", cl::Hidden,
56 cl::desc("Pop up a window to show isel dags as they are selected"));
57static cl::opt<bool>
58ViewSchedDAGs("view-sched-dags", cl::Hidden,
59 cl::desc("Pop up a window to show sched dags as they are processed"));
Chris Lattnere05a4612005-01-12 03:41:21 +000060#else
Chris Lattneref598052006-04-02 03:07:27 +000061static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0;
Chris Lattnere05a4612005-01-12 03:41:21 +000062#endif
63
Jim Laskey29e635d2006-08-02 12:30:23 +000064
65//===---------------------------------------------------------------------===//
66///
67/// RegisterScheduler class - Track the registration of instruction schedulers.
68///
69//===---------------------------------------------------------------------===//
70MachinePassRegistry RegisterScheduler::Registry;
71
72//===---------------------------------------------------------------------===//
73///
74/// ISHeuristic command line option for instruction schedulers.
75///
76//===---------------------------------------------------------------------===//
Evan Chengc1e1d972006-01-23 07:01:07 +000077namespace {
Jim Laskey29e635d2006-08-02 12:30:23 +000078 cl::opt<RegisterScheduler::FunctionPassCtor, false,
79 RegisterPassParser<RegisterScheduler> >
Jim Laskey95eda5b2006-08-01 14:21:23 +000080 ISHeuristic("sched",
Chris Lattner524c1a22006-08-03 00:18:59 +000081 cl::init(&createDefaultScheduler),
Jim Laskey95eda5b2006-08-01 14:21:23 +000082 cl::desc("Instruction schedulers available:"));
83
Jim Laskey03593f72006-08-01 18:29:48 +000084 static RegisterScheduler
Jim Laskey17c67ef2006-08-01 19:14:14 +000085 defaultListDAGScheduler("default", " Best scheduler for the target",
86 createDefaultScheduler);
Evan Chengc1e1d972006-01-23 07:01:07 +000087} // namespace
88
Chris Lattner6f87d182006-02-22 22:37:12 +000089namespace {
90 /// RegsForValue - This struct represents the physical registers that a
91 /// particular value is assigned and the type information about the value.
92 /// This is needed because values can be promoted into larger registers and
93 /// expanded into multiple smaller registers than the value.
Chris Lattner996795b2006-06-28 23:17:24 +000094 struct VISIBILITY_HIDDEN RegsForValue {
Chris Lattner6f87d182006-02-22 22:37:12 +000095 /// Regs - This list hold the register (for legal and promoted values)
96 /// or register set (for expanded values) that the value should be assigned
97 /// to.
98 std::vector<unsigned> Regs;
99
100 /// RegVT - The value type of each register.
101 ///
102 MVT::ValueType RegVT;
103
104 /// ValueVT - The value type of the LLVM value, which may be promoted from
105 /// RegVT or made from merging the two expanded parts.
106 MVT::ValueType ValueVT;
107
108 RegsForValue() : RegVT(MVT::Other), ValueVT(MVT::Other) {}
109
110 RegsForValue(unsigned Reg, MVT::ValueType regvt, MVT::ValueType valuevt)
111 : RegVT(regvt), ValueVT(valuevt) {
112 Regs.push_back(Reg);
113 }
114 RegsForValue(const std::vector<unsigned> &regs,
115 MVT::ValueType regvt, MVT::ValueType valuevt)
116 : Regs(regs), RegVT(regvt), ValueVT(valuevt) {
117 }
118
119 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
120 /// this value and returns the result as a ValueVT value. This uses
121 /// Chain/Flag as the input and updates them for the output Chain/Flag.
122 SDOperand getCopyFromRegs(SelectionDAG &DAG,
Chris Lattnere7c0ffb2006-02-23 20:06:57 +0000123 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattner571d9642006-02-23 19:21:04 +0000124
125 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
126 /// specified value into the registers specified by this object. This uses
127 /// Chain/Flag as the input and updates them for the output Chain/Flag.
128 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Evan Chengef9e07d2006-06-15 08:11:54 +0000129 SDOperand &Chain, SDOperand &Flag,
130 MVT::ValueType PtrVT) const;
Chris Lattner571d9642006-02-23 19:21:04 +0000131
132 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
133 /// operand list. This adds the code marker and includes the number of
134 /// values added into it.
135 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattnere7c0ffb2006-02-23 20:06:57 +0000136 std::vector<SDOperand> &Ops) const;
Chris Lattner6f87d182006-02-22 22:37:12 +0000137 };
138}
Evan Chengc1e1d972006-01-23 07:01:07 +0000139
Chris Lattner7a60d912005-01-07 07:47:53 +0000140namespace llvm {
141 //===--------------------------------------------------------------------===//
Jim Laskey17c67ef2006-08-01 19:14:14 +0000142 /// createDefaultScheduler - This creates an instruction scheduler appropriate
143 /// for the target.
144 ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
145 SelectionDAG *DAG,
146 MachineBasicBlock *BB) {
147 TargetLowering &TLI = IS->getTargetLowering();
148
149 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
150 return createTDListDAGScheduler(IS, DAG, BB);
151 } else {
152 assert(TLI.getSchedulingPreference() ==
153 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
154 return createBURRListDAGScheduler(IS, DAG, BB);
155 }
156 }
157
158
159 //===--------------------------------------------------------------------===//
Chris Lattner7a60d912005-01-07 07:47:53 +0000160 /// FunctionLoweringInfo - This contains information that is global to a
161 /// function that is used when lowering a region of the function.
Chris Lattnerd0061952005-01-08 19:52:31 +0000162 class FunctionLoweringInfo {
163 public:
Chris Lattner7a60d912005-01-07 07:47:53 +0000164 TargetLowering &TLI;
165 Function &Fn;
166 MachineFunction &MF;
167 SSARegMap *RegMap;
168
169 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
170
171 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
172 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
173
174 /// ValueMap - Since we emit code for the function a basic block at a time,
175 /// we must remember which virtual registers hold the values for
176 /// cross-basic-block values.
177 std::map<const Value*, unsigned> ValueMap;
178
179 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
180 /// the entry block. This allows the allocas to be efficiently referenced
181 /// anywhere in the function.
182 std::map<const AllocaInst*, int> StaticAllocaMap;
183
184 unsigned MakeReg(MVT::ValueType VT) {
185 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
186 }
Misha Brukman835702a2005-04-21 22:36:52 +0000187
Chris Lattner49409cb2006-03-16 19:51:18 +0000188 unsigned CreateRegForValue(const Value *V);
189
Chris Lattner7a60d912005-01-07 07:47:53 +0000190 unsigned InitializeRegForValue(const Value *V) {
191 unsigned &R = ValueMap[V];
192 assert(R == 0 && "Already initialized this value register!");
193 return R = CreateRegForValue(V);
194 }
195 };
196}
197
198/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemaned728c12006-03-27 01:32:24 +0000199/// PHI nodes or outside of the basic block that defines it, or used by a
200/// switch instruction, which may expand to multiple basic blocks.
Chris Lattner7a60d912005-01-07 07:47:53 +0000201static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
202 if (isa<PHINode>(I)) return true;
203 BasicBlock *BB = I->getParent();
204 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemaned728c12006-03-27 01:32:24 +0000205 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
206 isa<SwitchInst>(*UI))
Chris Lattner7a60d912005-01-07 07:47:53 +0000207 return true;
208 return false;
209}
210
Chris Lattner6871b232005-10-30 19:42:35 +0000211/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemaned728c12006-03-27 01:32:24 +0000212/// entry block, return true. This includes arguments used by switches, since
213/// the switch may expand into multiple basic blocks.
Chris Lattner6871b232005-10-30 19:42:35 +0000214static bool isOnlyUsedInEntryBlock(Argument *A) {
215 BasicBlock *Entry = A->getParent()->begin();
216 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemaned728c12006-03-27 01:32:24 +0000217 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattner6871b232005-10-30 19:42:35 +0000218 return false; // Use not in entry block.
219 return true;
220}
221
Chris Lattner7a60d912005-01-07 07:47:53 +0000222FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukman835702a2005-04-21 22:36:52 +0000223 Function &fn, MachineFunction &mf)
Chris Lattner7a60d912005-01-07 07:47:53 +0000224 : TLI(tli), Fn(fn), MF(mf), RegMap(MF.getSSARegMap()) {
225
Chris Lattner6871b232005-10-30 19:42:35 +0000226 // Create a vreg for each argument register that is not dead and is used
227 // outside of the entry block for the function.
228 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
229 AI != E; ++AI)
230 if (!isOnlyUsedInEntryBlock(AI))
231 InitializeRegForValue(AI);
232
Chris Lattner7a60d912005-01-07 07:47:53 +0000233 // Initialize the mapping of values to registers. This is only set up for
234 // instruction values that are used outside of the block that defines
235 // them.
Jeff Cohenf8a5e5ae2005-10-01 03:57:14 +0000236 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner7a60d912005-01-07 07:47:53 +0000237 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
238 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
239 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(AI->getArraySize())) {
240 const Type *Ty = AI->getAllocatedType();
Owen Anderson20a631f2006-05-03 01:29:57 +0000241 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
Nate Begeman3ee3e692005-11-06 09:00:38 +0000242 unsigned Align =
Owen Anderson20a631f2006-05-03 01:29:57 +0000243 std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begeman3ee3e692005-11-06 09:00:38 +0000244 AI->getAlignment());
Chris Lattnercbefe722005-05-13 23:14:17 +0000245
246 // If the alignment of the value is smaller than the size of the value,
247 // and if the size of the value is particularly small (<= 8 bytes),
248 // round up to the size of the value for potentially better performance.
249 //
250 // FIXME: This could be made better with a preferred alignment hook in
251 // TargetData. It serves primarily to 8-byte align doubles for X86.
252 if (Align < TySize && TySize <= 8) Align = TySize;
Chris Lattner8396a302005-10-18 22:11:42 +0000253 TySize *= CUI->getValue(); // Get total allocated size.
Chris Lattner0a71a9a2005-10-18 22:14:06 +0000254 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner7a60d912005-01-07 07:47:53 +0000255 StaticAllocaMap[AI] =
Chris Lattnerd0061952005-01-08 19:52:31 +0000256 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
Chris Lattner7a60d912005-01-07 07:47:53 +0000257 }
258
Jeff Cohenf8a5e5ae2005-10-01 03:57:14 +0000259 for (; BB != EB; ++BB)
260 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner7a60d912005-01-07 07:47:53 +0000261 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
262 if (!isa<AllocaInst>(I) ||
263 !StaticAllocaMap.count(cast<AllocaInst>(I)))
264 InitializeRegForValue(I);
265
266 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
267 // also creates the initial PHI MachineInstrs, though none of the input
268 // operands are populated.
Jeff Cohenf8a5e5ae2005-10-01 03:57:14 +0000269 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Chris Lattner7a60d912005-01-07 07:47:53 +0000270 MachineBasicBlock *MBB = new MachineBasicBlock(BB);
271 MBBMap[BB] = MBB;
272 MF.getBasicBlockList().push_back(MBB);
273
274 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
275 // appropriate.
276 PHINode *PN;
277 for (BasicBlock::iterator I = BB->begin();
Chris Lattner8ea875f2005-01-07 21:34:19 +0000278 (PN = dyn_cast<PHINode>(I)); ++I)
279 if (!PN->use_empty()) {
Chris Lattner5fe1f542006-03-31 02:06:56 +0000280 MVT::ValueType VT = TLI.getValueType(PN->getType());
281 unsigned NumElements;
282 if (VT != MVT::Vector)
283 NumElements = TLI.getNumElements(VT);
284 else {
285 MVT::ValueType VT1,VT2;
286 NumElements =
287 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
288 VT1, VT2);
289 }
Chris Lattner8ea875f2005-01-07 21:34:19 +0000290 unsigned PHIReg = ValueMap[PN];
291 assert(PHIReg &&"PHI node does not have an assigned virtual register!");
292 for (unsigned i = 0; i != NumElements; ++i)
293 BuildMI(MBB, TargetInstrInfo::PHI, PN->getNumOperands(), PHIReg+i);
294 }
Chris Lattner7a60d912005-01-07 07:47:53 +0000295 }
296}
297
Chris Lattner49409cb2006-03-16 19:51:18 +0000298/// CreateRegForValue - Allocate the appropriate number of virtual registers of
299/// the correctly promoted or expanded types. Assign these registers
300/// consecutive vreg numbers and return the first assigned number.
301unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
302 MVT::ValueType VT = TLI.getValueType(V->getType());
303
304 // The number of multiples of registers that we need, to, e.g., split up
305 // a <2 x int64> -> 4 x i32 registers.
306 unsigned NumVectorRegs = 1;
307
308 // If this is a packed type, figure out what type it will decompose into
309 // and how many of the elements it will use.
310 if (VT == MVT::Vector) {
311 const PackedType *PTy = cast<PackedType>(V->getType());
312 unsigned NumElts = PTy->getNumElements();
313 MVT::ValueType EltTy = TLI.getValueType(PTy->getElementType());
314
315 // Divide the input until we get to a supported size. This will always
316 // end with a scalar if the target doesn't support vectors.
317 while (NumElts > 1 && !TLI.isTypeLegal(getVectorType(EltTy, NumElts))) {
318 NumElts >>= 1;
319 NumVectorRegs <<= 1;
320 }
Chris Lattner7ececaa2006-03-16 23:05:19 +0000321 if (NumElts == 1)
322 VT = EltTy;
323 else
324 VT = getVectorType(EltTy, NumElts);
Chris Lattner49409cb2006-03-16 19:51:18 +0000325 }
326
327 // The common case is that we will only create one register for this
328 // value. If we have that case, create and return the virtual register.
329 unsigned NV = TLI.getNumElements(VT);
330 if (NV == 1) {
331 // If we are promoting this value, pick the next largest supported type.
332 MVT::ValueType PromotedType = TLI.getTypeToTransformTo(VT);
333 unsigned Reg = MakeReg(PromotedType);
334 // If this is a vector of supported or promoted types (e.g. 4 x i16),
335 // create all of the registers.
336 for (unsigned i = 1; i != NumVectorRegs; ++i)
337 MakeReg(PromotedType);
338 return Reg;
339 }
340
341 // If this value is represented with multiple target registers, make sure
342 // to create enough consecutive registers of the right (smaller) type.
343 unsigned NT = VT-1; // Find the type to use.
344 while (TLI.getNumElements((MVT::ValueType)NT) != 1)
345 --NT;
346
347 unsigned R = MakeReg((MVT::ValueType)NT);
348 for (unsigned i = 1; i != NV*NumVectorRegs; ++i)
349 MakeReg((MVT::ValueType)NT);
350 return R;
351}
Chris Lattner7a60d912005-01-07 07:47:53 +0000352
353//===----------------------------------------------------------------------===//
354/// SelectionDAGLowering - This is the common target-independent lowering
355/// implementation that is parameterized by a TargetLowering object.
356/// Also, targets can overload any lowering method.
357///
358namespace llvm {
359class SelectionDAGLowering {
360 MachineBasicBlock *CurMBB;
361
362 std::map<const Value*, SDOperand> NodeMap;
363
Chris Lattner4d9651c2005-01-17 22:19:26 +0000364 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
365 /// them up and then emit token factor nodes when possible. This allows us to
366 /// get simple disambiguation between loads without worrying about alias
367 /// analysis.
368 std::vector<SDOperand> PendingLoads;
369
Nate Begemaned728c12006-03-27 01:32:24 +0000370 /// Case - A pair of values to record the Value for a switch case, and the
371 /// case's target basic block.
372 typedef std::pair<Constant*, MachineBasicBlock*> Case;
373 typedef std::vector<Case>::iterator CaseItr;
374 typedef std::pair<CaseItr, CaseItr> CaseRange;
375
376 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
377 /// of conditional branches.
378 struct CaseRec {
379 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
380 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
381
382 /// CaseBB - The MBB in which to emit the compare and branch
383 MachineBasicBlock *CaseBB;
384 /// LT, GE - If nonzero, we know the current case value must be less-than or
385 /// greater-than-or-equal-to these Constants.
386 Constant *LT;
387 Constant *GE;
388 /// Range - A pair of iterators representing the range of case values to be
389 /// processed at this point in the binary search tree.
390 CaseRange Range;
391 };
392
393 /// The comparison function for sorting Case values.
394 struct CaseCmp {
395 bool operator () (const Case& C1, const Case& C2) {
396 if (const ConstantUInt* U1 = dyn_cast<const ConstantUInt>(C1.first))
397 return U1->getValue() < cast<const ConstantUInt>(C2.first)->getValue();
398
399 const ConstantSInt* S1 = dyn_cast<const ConstantSInt>(C1.first);
400 return S1->getValue() < cast<const ConstantSInt>(C2.first)->getValue();
401 }
402 };
403
Chris Lattner7a60d912005-01-07 07:47:53 +0000404public:
405 // TLI - This is information that describes the available target features we
406 // need for lowering. This indicates when operations are unavailable,
407 // implemented with a libcall, etc.
408 TargetLowering &TLI;
409 SelectionDAG &DAG;
Owen Anderson20a631f2006-05-03 01:29:57 +0000410 const TargetData *TD;
Chris Lattner7a60d912005-01-07 07:47:53 +0000411
Nate Begemaned728c12006-03-27 01:32:24 +0000412 /// SwitchCases - Vector of CaseBlock structures used to communicate
413 /// SwitchInst code generation information.
414 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000415 SelectionDAGISel::JumpTable JT;
Nate Begemaned728c12006-03-27 01:32:24 +0000416
Chris Lattner7a60d912005-01-07 07:47:53 +0000417 /// FuncInfo - Information about the function as a whole.
418 ///
419 FunctionLoweringInfo &FuncInfo;
420
421 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Misha Brukman835702a2005-04-21 22:36:52 +0000422 FunctionLoweringInfo &funcinfo)
Chris Lattner7a60d912005-01-07 07:47:53 +0000423 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()),
Nate Begeman866b4b42006-04-23 06:26:20 +0000424 JT(0,0,0,0), FuncInfo(funcinfo) {
Chris Lattner7a60d912005-01-07 07:47:53 +0000425 }
426
Chris Lattner4108bb02005-01-17 19:43:36 +0000427 /// getRoot - Return the current virtual root of the Selection DAG.
428 ///
429 SDOperand getRoot() {
Chris Lattner4d9651c2005-01-17 22:19:26 +0000430 if (PendingLoads.empty())
431 return DAG.getRoot();
Misha Brukman835702a2005-04-21 22:36:52 +0000432
Chris Lattner4d9651c2005-01-17 22:19:26 +0000433 if (PendingLoads.size() == 1) {
434 SDOperand Root = PendingLoads[0];
435 DAG.setRoot(Root);
436 PendingLoads.clear();
437 return Root;
438 }
439
440 // Otherwise, we have to make a token factor node.
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000441 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
442 &PendingLoads[0], PendingLoads.size());
Chris Lattner4d9651c2005-01-17 22:19:26 +0000443 PendingLoads.clear();
444 DAG.setRoot(Root);
445 return Root;
Chris Lattner4108bb02005-01-17 19:43:36 +0000446 }
447
Chris Lattner7a60d912005-01-07 07:47:53 +0000448 void visit(Instruction &I) { visit(I.getOpcode(), I); }
449
450 void visit(unsigned Opcode, User &I) {
451 switch (Opcode) {
452 default: assert(0 && "Unknown instruction type encountered!");
453 abort();
454 // Build the switch statement using the Instruction.def file.
455#define HANDLE_INST(NUM, OPCODE, CLASS) \
456 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
457#include "llvm/Instruction.def"
458 }
459 }
460
461 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
462
Chris Lattner4024c002006-03-15 22:19:46 +0000463 SDOperand getLoadFrom(const Type *Ty, SDOperand Ptr,
Evan Chenge71fe34d2006-10-09 20:57:25 +0000464 const Value *SV, SDOperand Root,
Chris Lattner4024c002006-03-15 22:19:46 +0000465 bool isVolatile);
Chris Lattner7a60d912005-01-07 07:47:53 +0000466
467 SDOperand getIntPtrConstant(uint64_t Val) {
468 return DAG.getConstant(Val, TLI.getPointerTy());
469 }
470
Chris Lattner8471b152006-03-16 19:57:50 +0000471 SDOperand getValue(const Value *V);
Chris Lattner7a60d912005-01-07 07:47:53 +0000472
473 const SDOperand &setValue(const Value *V, SDOperand NewN) {
474 SDOperand &N = NodeMap[V];
475 assert(N.Val == 0 && "Already set a value for this node!");
476 return N = NewN;
477 }
Chris Lattner1558fc62006-02-01 18:59:47 +0000478
Chris Lattner6f87d182006-02-22 22:37:12 +0000479 RegsForValue GetRegistersForValue(const std::string &ConstrCode,
480 MVT::ValueType VT,
481 bool OutReg, bool InReg,
482 std::set<unsigned> &OutputRegs,
483 std::set<unsigned> &InputRegs);
Nate Begemaned728c12006-03-27 01:32:24 +0000484
Chris Lattner7a60d912005-01-07 07:47:53 +0000485 // Terminator instructions.
486 void visitRet(ReturnInst &I);
487 void visitBr(BranchInst &I);
Nate Begemaned728c12006-03-27 01:32:24 +0000488 void visitSwitch(SwitchInst &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000489 void visitUnreachable(UnreachableInst &I) { /* noop */ }
490
Nate Begemaned728c12006-03-27 01:32:24 +0000491 // Helper for visitSwitch
492 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000493 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Nate Begemaned728c12006-03-27 01:32:24 +0000494
Chris Lattner7a60d912005-01-07 07:47:53 +0000495 // These all get lowered before this pass.
Chris Lattner7a60d912005-01-07 07:47:53 +0000496 void visitInvoke(InvokeInst &I) { assert(0 && "TODO"); }
497 void visitUnwind(UnwindInst &I) { assert(0 && "TODO"); }
498
Nate Begemanb2e089c2005-11-19 00:36:38 +0000499 void visitBinary(User &I, unsigned IntOp, unsigned FPOp, unsigned VecOp);
Nate Begeman127321b2005-11-18 07:42:56 +0000500 void visitShift(User &I, unsigned Opcode);
Nate Begemanb2e089c2005-11-19 00:36:38 +0000501 void visitAdd(User &I) {
502 visitBinary(I, ISD::ADD, ISD::FADD, ISD::VADD);
Chris Lattner6f3b5772005-09-28 22:28:18 +0000503 }
Chris Lattnerf68fd0b2005-04-02 05:04:50 +0000504 void visitSub(User &I);
Nate Begemanb2e089c2005-11-19 00:36:38 +0000505 void visitMul(User &I) {
506 visitBinary(I, ISD::MUL, ISD::FMUL, ISD::VMUL);
Chris Lattner6f3b5772005-09-28 22:28:18 +0000507 }
Chris Lattner7a60d912005-01-07 07:47:53 +0000508 void visitDiv(User &I) {
Chris Lattner6f3b5772005-09-28 22:28:18 +0000509 const Type *Ty = I.getType();
Evan Cheng3bf916d2006-03-03 07:01:07 +0000510 visitBinary(I,
511 Ty->isSigned() ? ISD::SDIV : ISD::UDIV, ISD::FDIV,
512 Ty->isSigned() ? ISD::VSDIV : ISD::VUDIV);
Chris Lattner7a60d912005-01-07 07:47:53 +0000513 }
514 void visitRem(User &I) {
Chris Lattner6f3b5772005-09-28 22:28:18 +0000515 const Type *Ty = I.getType();
Nate Begemanb2e089c2005-11-19 00:36:38 +0000516 visitBinary(I, Ty->isSigned() ? ISD::SREM : ISD::UREM, ISD::FREM, 0);
Chris Lattner7a60d912005-01-07 07:47:53 +0000517 }
Evan Cheng3bf916d2006-03-03 07:01:07 +0000518 void visitAnd(User &I) { visitBinary(I, ISD::AND, 0, ISD::VAND); }
519 void visitOr (User &I) { visitBinary(I, ISD::OR, 0, ISD::VOR); }
520 void visitXor(User &I) { visitBinary(I, ISD::XOR, 0, ISD::VXOR); }
Nate Begeman127321b2005-11-18 07:42:56 +0000521 void visitShl(User &I) { visitShift(I, ISD::SHL); }
522 void visitShr(User &I) {
523 visitShift(I, I.getType()->isUnsigned() ? ISD::SRL : ISD::SRA);
Chris Lattner7a60d912005-01-07 07:47:53 +0000524 }
525
Evan Cheng1c5b7d12006-05-23 06:40:47 +0000526 void visitSetCC(User &I, ISD::CondCode SignedOpc, ISD::CondCode UnsignedOpc,
527 ISD::CondCode FPOpc);
528 void visitSetEQ(User &I) { visitSetCC(I, ISD::SETEQ, ISD::SETEQ,
529 ISD::SETOEQ); }
530 void visitSetNE(User &I) { visitSetCC(I, ISD::SETNE, ISD::SETNE,
531 ISD::SETUNE); }
532 void visitSetLE(User &I) { visitSetCC(I, ISD::SETLE, ISD::SETULE,
533 ISD::SETOLE); }
534 void visitSetGE(User &I) { visitSetCC(I, ISD::SETGE, ISD::SETUGE,
535 ISD::SETOGE); }
536 void visitSetLT(User &I) { visitSetCC(I, ISD::SETLT, ISD::SETULT,
537 ISD::SETOLT); }
538 void visitSetGT(User &I) { visitSetCC(I, ISD::SETGT, ISD::SETUGT,
539 ISD::SETOGT); }
Chris Lattner7a60d912005-01-07 07:47:53 +0000540
Chris Lattner67271862006-03-29 00:11:43 +0000541 void visitExtractElement(User &I);
542 void visitInsertElement(User &I);
Chris Lattner098c01e2006-04-08 04:15:24 +0000543 void visitShuffleVector(User &I);
Chris Lattner32206f52006-03-18 01:44:44 +0000544
Chris Lattner7a60d912005-01-07 07:47:53 +0000545 void visitGetElementPtr(User &I);
546 void visitCast(User &I);
547 void visitSelect(User &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000548
549 void visitMalloc(MallocInst &I);
550 void visitFree(FreeInst &I);
551 void visitAlloca(AllocaInst &I);
552 void visitLoad(LoadInst &I);
553 void visitStore(StoreInst &I);
554 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
555 void visitCall(CallInst &I);
Chris Lattner476e67b2006-01-26 22:24:51 +0000556 void visitInlineAsm(CallInst &I);
Chris Lattnercd6f0f42005-11-09 19:44:01 +0000557 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattnerd96b09a2006-03-24 02:22:33 +0000558 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner7a60d912005-01-07 07:47:53 +0000559
Chris Lattner7a60d912005-01-07 07:47:53 +0000560 void visitVAStart(CallInst &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000561 void visitVAArg(VAArgInst &I);
562 void visitVAEnd(CallInst &I);
563 void visitVACopy(CallInst &I);
Chris Lattner58cfd792005-01-09 00:00:49 +0000564 void visitFrameReturnAddress(CallInst &I, bool isFrameAddress);
Chris Lattner7a60d912005-01-07 07:47:53 +0000565
Chris Lattner875def92005-01-11 05:56:49 +0000566 void visitMemIntrinsic(CallInst &I, unsigned Op);
Chris Lattner7a60d912005-01-07 07:47:53 +0000567
568 void visitUserOp1(Instruction &I) {
569 assert(0 && "UserOp1 should not exist at instruction selection time!");
570 abort();
571 }
572 void visitUserOp2(Instruction &I) {
573 assert(0 && "UserOp2 should not exist at instruction selection time!");
574 abort();
575 }
576};
577} // end namespace llvm
578
Chris Lattner8471b152006-03-16 19:57:50 +0000579SDOperand SelectionDAGLowering::getValue(const Value *V) {
580 SDOperand &N = NodeMap[V];
581 if (N.Val) return N;
582
583 const Type *VTy = V->getType();
584 MVT::ValueType VT = TLI.getValueType(VTy);
585 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
586 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
587 visit(CE->getOpcode(), *CE);
588 assert(N.Val && "visit didn't populate the ValueMap!");
589 return N;
590 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) {
591 return N = DAG.getGlobalAddress(GV, VT);
592 } else if (isa<ConstantPointerNull>(C)) {
593 return N = DAG.getConstant(0, TLI.getPointerTy());
594 } else if (isa<UndefValue>(C)) {
Chris Lattnerc16b05e2006-03-19 00:20:20 +0000595 if (!isa<PackedType>(VTy))
596 return N = DAG.getNode(ISD::UNDEF, VT);
597
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000598 // Create a VBUILD_VECTOR of undef nodes.
Chris Lattnerc16b05e2006-03-19 00:20:20 +0000599 const PackedType *PTy = cast<PackedType>(VTy);
600 unsigned NumElements = PTy->getNumElements();
601 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
602
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000603 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc16b05e2006-03-19 00:20:20 +0000604 Ops.assign(NumElements, DAG.getNode(ISD::UNDEF, PVT));
605
606 // Create a VConstant node with generic Vector type.
607 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
608 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000609 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector,
610 &Ops[0], Ops.size());
Chris Lattner8471b152006-03-16 19:57:50 +0000611 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
612 return N = DAG.getConstantFP(CFP->getValue(), VT);
613 } else if (const PackedType *PTy = dyn_cast<PackedType>(VTy)) {
614 unsigned NumElements = PTy->getNumElements();
615 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattner8471b152006-03-16 19:57:50 +0000616
617 // Now that we know the number and type of the elements, push a
618 // Constant or ConstantFP node onto the ops list for each element of
619 // the packed constant.
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000620 SmallVector<SDOperand, 8> Ops;
Chris Lattner8471b152006-03-16 19:57:50 +0000621 if (ConstantPacked *CP = dyn_cast<ConstantPacked>(C)) {
Chris Lattner67271862006-03-29 00:11:43 +0000622 for (unsigned i = 0; i != NumElements; ++i)
623 Ops.push_back(getValue(CP->getOperand(i)));
Chris Lattner8471b152006-03-16 19:57:50 +0000624 } else {
625 assert(isa<ConstantAggregateZero>(C) && "Unknown packed constant!");
626 SDOperand Op;
627 if (MVT::isFloatingPoint(PVT))
628 Op = DAG.getConstantFP(0, PVT);
629 else
630 Op = DAG.getConstant(0, PVT);
631 Ops.assign(NumElements, Op);
632 }
633
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000634 // Create a VBUILD_VECTOR node with generic Vector type.
Chris Lattnerc16b05e2006-03-19 00:20:20 +0000635 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
636 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000637 return N = DAG.getNode(ISD::VBUILD_VECTOR,MVT::Vector,&Ops[0],Ops.size());
Chris Lattner8471b152006-03-16 19:57:50 +0000638 } else {
639 // Canonicalize all constant ints to be unsigned.
640 return N = DAG.getConstant(cast<ConstantIntegral>(C)->getRawValue(),VT);
641 }
642 }
643
644 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
645 std::map<const AllocaInst*, int>::iterator SI =
646 FuncInfo.StaticAllocaMap.find(AI);
647 if (SI != FuncInfo.StaticAllocaMap.end())
648 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
649 }
650
651 std::map<const Value*, unsigned>::const_iterator VMI =
652 FuncInfo.ValueMap.find(V);
653 assert(VMI != FuncInfo.ValueMap.end() && "Value not in map!");
654
655 unsigned InReg = VMI->second;
656
657 // If this type is not legal, make it so now.
Chris Lattner5fe1f542006-03-31 02:06:56 +0000658 if (VT != MVT::Vector) {
659 MVT::ValueType DestVT = TLI.getTypeToTransformTo(VT);
Chris Lattner8471b152006-03-16 19:57:50 +0000660
Chris Lattner5fe1f542006-03-31 02:06:56 +0000661 N = DAG.getCopyFromReg(DAG.getEntryNode(), InReg, DestVT);
662 if (DestVT < VT) {
663 // Source must be expanded. This input value is actually coming from the
664 // register pair VMI->second and VMI->second+1.
665 N = DAG.getNode(ISD::BUILD_PAIR, VT, N,
666 DAG.getCopyFromReg(DAG.getEntryNode(), InReg+1, DestVT));
667 } else if (DestVT > VT) { // Promotion case
Chris Lattner8471b152006-03-16 19:57:50 +0000668 if (MVT::isFloatingPoint(VT))
669 N = DAG.getNode(ISD::FP_ROUND, VT, N);
670 else
671 N = DAG.getNode(ISD::TRUNCATE, VT, N);
672 }
Chris Lattner5fe1f542006-03-31 02:06:56 +0000673 } else {
674 // Otherwise, if this is a vector, make it available as a generic vector
675 // here.
676 MVT::ValueType PTyElementVT, PTyLegalElementVT;
Chris Lattner4a2413a2006-04-05 06:54:42 +0000677 const PackedType *PTy = cast<PackedType>(VTy);
678 unsigned NE = TLI.getPackedTypeBreakdown(PTy, PTyElementVT,
Chris Lattner5fe1f542006-03-31 02:06:56 +0000679 PTyLegalElementVT);
680
681 // Build a VBUILD_VECTOR with the input registers.
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000682 SmallVector<SDOperand, 8> Ops;
Chris Lattner5fe1f542006-03-31 02:06:56 +0000683 if (PTyElementVT == PTyLegalElementVT) {
684 // If the value types are legal, just VBUILD the CopyFromReg nodes.
685 for (unsigned i = 0; i != NE; ++i)
686 Ops.push_back(DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
687 PTyElementVT));
688 } else if (PTyElementVT < PTyLegalElementVT) {
689 // If the register was promoted, use TRUNCATE of FP_ROUND as appropriate.
690 for (unsigned i = 0; i != NE; ++i) {
691 SDOperand Op = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
692 PTyElementVT);
693 if (MVT::isFloatingPoint(PTyElementVT))
694 Op = DAG.getNode(ISD::FP_ROUND, PTyElementVT, Op);
695 else
696 Op = DAG.getNode(ISD::TRUNCATE, PTyElementVT, Op);
697 Ops.push_back(Op);
698 }
699 } else {
700 // If the register was expanded, use BUILD_PAIR.
701 assert((NE & 1) == 0 && "Must expand into a multiple of 2 elements!");
702 for (unsigned i = 0; i != NE/2; ++i) {
703 SDOperand Op0 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
704 PTyElementVT);
705 SDOperand Op1 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
706 PTyElementVT);
707 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Op0, Op1));
708 }
709 }
710
711 Ops.push_back(DAG.getConstant(NE, MVT::i32));
712 Ops.push_back(DAG.getValueType(PTyLegalElementVT));
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000713 N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &Ops[0], Ops.size());
Chris Lattner4a2413a2006-04-05 06:54:42 +0000714
715 // Finally, use a VBIT_CONVERT to make this available as the appropriate
716 // vector type.
717 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
718 DAG.getConstant(PTy->getNumElements(),
719 MVT::i32),
720 DAG.getValueType(TLI.getValueType(PTy->getElementType())));
Chris Lattner8471b152006-03-16 19:57:50 +0000721 }
722
723 return N;
724}
725
726
Chris Lattner7a60d912005-01-07 07:47:53 +0000727void SelectionDAGLowering::visitRet(ReturnInst &I) {
728 if (I.getNumOperands() == 0) {
Chris Lattner4108bb02005-01-17 19:43:36 +0000729 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getRoot()));
Chris Lattner7a60d912005-01-07 07:47:53 +0000730 return;
731 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000732 SmallVector<SDOperand, 8> NewValues;
Nate Begeman8c47c3a2006-01-27 21:09:22 +0000733 NewValues.push_back(getRoot());
734 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
735 SDOperand RetOp = getValue(I.getOperand(i));
Evan Chenga2e99532006-05-26 23:09:09 +0000736 bool isSigned = I.getOperand(i)->getType()->isSigned();
Nate Begeman8c47c3a2006-01-27 21:09:22 +0000737
738 // If this is an integer return value, we need to promote it ourselves to
739 // the full width of a register, since LegalizeOp will use ANY_EXTEND rather
740 // than sign/zero.
Evan Chenga2e99532006-05-26 23:09:09 +0000741 // FIXME: C calling convention requires the return type to be promoted to
742 // at least 32-bit. But this is not necessary for non-C calling conventions.
Nate Begeman8c47c3a2006-01-27 21:09:22 +0000743 if (MVT::isInteger(RetOp.getValueType()) &&
744 RetOp.getValueType() < MVT::i64) {
745 MVT::ValueType TmpVT;
746 if (TLI.getTypeAction(MVT::i32) == TargetLowering::Promote)
747 TmpVT = TLI.getTypeToTransformTo(MVT::i32);
748 else
749 TmpVT = MVT::i32;
Chris Lattner7a60d912005-01-07 07:47:53 +0000750
Evan Chenga2e99532006-05-26 23:09:09 +0000751 if (isSigned)
Nate Begeman8c47c3a2006-01-27 21:09:22 +0000752 RetOp = DAG.getNode(ISD::SIGN_EXTEND, TmpVT, RetOp);
753 else
754 RetOp = DAG.getNode(ISD::ZERO_EXTEND, TmpVT, RetOp);
755 }
756 NewValues.push_back(RetOp);
Evan Chenga2e99532006-05-26 23:09:09 +0000757 NewValues.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattner7a60d912005-01-07 07:47:53 +0000758 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000759 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
760 &NewValues[0], NewValues.size()));
Chris Lattner7a60d912005-01-07 07:47:53 +0000761}
762
763void SelectionDAGLowering::visitBr(BranchInst &I) {
764 // Update machine-CFG edges.
765 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Nate Begemaned728c12006-03-27 01:32:24 +0000766 CurMBB->addSuccessor(Succ0MBB);
Chris Lattner7a60d912005-01-07 07:47:53 +0000767
768 // Figure out which block is immediately after the current one.
769 MachineBasicBlock *NextBlock = 0;
770 MachineFunction::iterator BBI = CurMBB;
771 if (++BBI != CurMBB->getParent()->end())
772 NextBlock = BBI;
773
774 if (I.isUnconditional()) {
775 // If this is not a fall-through branch, emit the branch.
776 if (Succ0MBB != NextBlock)
Chris Lattner4108bb02005-01-17 19:43:36 +0000777 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
Misha Brukman77451162005-04-22 04:01:18 +0000778 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +0000779 } else {
780 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Nate Begemaned728c12006-03-27 01:32:24 +0000781 CurMBB->addSuccessor(Succ1MBB);
Chris Lattner7a60d912005-01-07 07:47:53 +0000782
783 SDOperand Cond = getValue(I.getCondition());
Chris Lattner7a60d912005-01-07 07:47:53 +0000784 if (Succ1MBB == NextBlock) {
785 // If the condition is false, fall through. This means we should branch
786 // if the condition is true to Succ #0.
Chris Lattner4108bb02005-01-17 19:43:36 +0000787 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukman77451162005-04-22 04:01:18 +0000788 Cond, DAG.getBasicBlock(Succ0MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +0000789 } else if (Succ0MBB == NextBlock) {
790 // If the condition is true, fall through. This means we should branch if
791 // the condition is false to Succ #1. Invert the condition first.
792 SDOperand True = DAG.getConstant(1, Cond.getValueType());
793 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
Chris Lattner4108bb02005-01-17 19:43:36 +0000794 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukman77451162005-04-22 04:01:18 +0000795 Cond, DAG.getBasicBlock(Succ1MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +0000796 } else {
Chris Lattner8a98c7f2005-04-09 03:30:29 +0000797 std::vector<SDOperand> Ops;
798 Ops.push_back(getRoot());
Evan Cheng42c01c82006-02-16 08:27:56 +0000799 // If the false case is the current basic block, then this is a self
800 // loop. We do not want to emit "Loop: ... brcond Out; br Loop", as it
801 // adds an extra instruction in the loop. Instead, invert the
802 // condition and emit "Loop: ... br!cond Loop; br Out.
803 if (CurMBB == Succ1MBB) {
804 std::swap(Succ0MBB, Succ1MBB);
805 SDOperand True = DAG.getConstant(1, Cond.getValueType());
806 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
807 }
Nate Begemanbb01d4f2006-03-17 01:40:33 +0000808 SDOperand True = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
809 DAG.getBasicBlock(Succ0MBB));
810 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, True,
811 DAG.getBasicBlock(Succ1MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +0000812 }
813 }
814}
815
Nate Begemaned728c12006-03-27 01:32:24 +0000816/// visitSwitchCase - Emits the necessary code to represent a single node in
817/// the binary search tree resulting from lowering a switch instruction.
818void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
819 SDOperand SwitchOp = getValue(CB.SwitchV);
820 SDOperand CaseOp = getValue(CB.CaseC);
821 SDOperand Cond = DAG.getSetCC(MVT::i1, SwitchOp, CaseOp, CB.CC);
822
823 // Set NextBlock to be the MBB immediately after the current one, if any.
824 // This is used to avoid emitting unnecessary branches to the next block.
825 MachineBasicBlock *NextBlock = 0;
826 MachineFunction::iterator BBI = CurMBB;
827 if (++BBI != CurMBB->getParent()->end())
828 NextBlock = BBI;
829
830 // If the lhs block is the next block, invert the condition so that we can
831 // fall through to the lhs instead of the rhs block.
832 if (CB.LHSBB == NextBlock) {
833 std::swap(CB.LHSBB, CB.RHSBB);
834 SDOperand True = DAG.getConstant(1, Cond.getValueType());
835 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
836 }
837 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
838 DAG.getBasicBlock(CB.LHSBB));
839 if (CB.RHSBB == NextBlock)
840 DAG.setRoot(BrCond);
841 else
842 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
843 DAG.getBasicBlock(CB.RHSBB)));
844 // Update successor info
845 CurMBB->addSuccessor(CB.LHSBB);
846 CurMBB->addSuccessor(CB.RHSBB);
847}
848
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000849void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000850 // Emit the code for the jump table
851 MVT::ValueType PTy = TLI.getPointerTy();
Evan Cheng6ae6ac12006-08-01 01:03:13 +0000852 assert((PTy == MVT::i32 || PTy == MVT::i64) &&
853 "Jump table entries are 32-bit values");
Evan Cheng77c07572006-09-24 05:22:38 +0000854 bool isPIC = TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_;
Evan Cheng6ae6ac12006-08-01 01:03:13 +0000855 // PIC jump table entries are 32-bit values.
Evan Cheng77c07572006-09-24 05:22:38 +0000856 unsigned EntrySize = isPIC ? 4 : MVT::getSizeInBits(PTy)/8;
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000857 SDOperand Copy = DAG.getCopyFromReg(getRoot(), JT.Reg, PTy);
858 SDOperand IDX = DAG.getNode(ISD::MUL, PTy, Copy,
Evan Cheng6ae6ac12006-08-01 01:03:13 +0000859 DAG.getConstant(EntrySize, PTy));
Nate Begeman78756502006-07-27 01:13:04 +0000860 SDOperand TAB = DAG.getJumpTable(JT.JTI,PTy);
861 SDOperand ADD = DAG.getNode(ISD::ADD, PTy, IDX, TAB);
Evan Cheng77c07572006-09-24 05:22:38 +0000862 SDOperand LD = DAG.getLoad(isPIC ? MVT::i32 : PTy, Copy.getValue(1), ADD,
Evan Chenge71fe34d2006-10-09 20:57:25 +0000863 NULL, 0);
Evan Cheng77c07572006-09-24 05:22:38 +0000864 if (isPIC) {
Andrew Lenharthc19ef922006-09-26 20:02:30 +0000865 // For Pic, the sequence is:
866 // BRIND(load(Jumptable + index) + RelocBase)
867 // RelocBase is the JumpTable on PPC and X86, GOT on Alpha
Andrew Lenhartha6bbf332006-10-11 04:29:42 +0000868 SDOperand Reloc;
869 if (TLI.usesGlobalOffsetTable())
870 Reloc = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, PTy);
871 else
872 Reloc = TAB;
Evan Cheng6ae6ac12006-08-01 01:03:13 +0000873 ADD = DAG.getNode(ISD::ADD, PTy,
Andrew Lenharth783a4a92006-09-24 19:45:58 +0000874 ((PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD), Reloc);
Nate Begeman78756502006-07-27 01:13:04 +0000875 DAG.setRoot(DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), ADD));
876 } else {
877 DAG.setRoot(DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD));
878 }
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000879}
880
Nate Begemaned728c12006-03-27 01:32:24 +0000881void SelectionDAGLowering::visitSwitch(SwitchInst &I) {
882 // Figure out which block is immediately after the current one.
883 MachineBasicBlock *NextBlock = 0;
884 MachineFunction::iterator BBI = CurMBB;
885 if (++BBI != CurMBB->getParent()->end())
886 NextBlock = BBI;
887
888 // If there is only the default destination, branch to it if it is not the
889 // next basic block. Otherwise, just fall through.
890 if (I.getNumOperands() == 2) {
891 // Update machine-CFG edges.
892 MachineBasicBlock *DefaultMBB = FuncInfo.MBBMap[I.getDefaultDest()];
893 // If this is not a fall-through branch, emit the branch.
894 if (DefaultMBB != NextBlock)
895 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
896 DAG.getBasicBlock(DefaultMBB)));
Chris Lattner32d92e02006-06-12 18:25:29 +0000897 CurMBB->addSuccessor(DefaultMBB);
Nate Begemaned728c12006-03-27 01:32:24 +0000898 return;
899 }
900
901 // If there are any non-default case statements, create a vector of Cases
902 // representing each one, and sort the vector so that we can efficiently
903 // create a binary search tree from them.
904 std::vector<Case> Cases;
905 for (unsigned i = 1; i < I.getNumSuccessors(); ++i) {
906 MachineBasicBlock *SMBB = FuncInfo.MBBMap[I.getSuccessor(i)];
907 Cases.push_back(Case(I.getSuccessorValue(i), SMBB));
908 }
909 std::sort(Cases.begin(), Cases.end(), CaseCmp());
910
911 // Get the Value to be switched on and default basic blocks, which will be
912 // inserted into CaseBlock records, representing basic blocks in the binary
913 // search tree.
914 Value *SV = I.getOperand(0);
915 MachineBasicBlock *Default = FuncInfo.MBBMap[I.getDefaultDest()];
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000916
917 // Get the MachineFunction which holds the current MBB. This is used during
918 // emission of jump tables, and when inserting any additional MBBs necessary
919 // to represent the switch.
Nate Begemaned728c12006-03-27 01:32:24 +0000920 MachineFunction *CurMF = CurMBB->getParent();
921 const BasicBlock *LLVMBB = CurMBB->getBasicBlock();
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000922
Nate Begemand7a19102006-05-08 16:51:36 +0000923 // If the switch has more than 5 blocks, and at least 31.25% dense, and the
924 // target supports indirect branches, then emit a jump table rather than
925 // lowering the switch to a binary tree of conditional branches.
Nate Begeman866b4b42006-04-23 06:26:20 +0000926 if (TLI.isOperationLegal(ISD::BRIND, TLI.getPointerTy()) &&
Nate Begemandf488392006-05-03 03:48:02 +0000927 Cases.size() > 5) {
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000928 uint64_t First = cast<ConstantIntegral>(Cases.front().first)->getRawValue();
929 uint64_t Last = cast<ConstantIntegral>(Cases.back().first)->getRawValue();
Nate Begemandf488392006-05-03 03:48:02 +0000930 double Density = (double)Cases.size() / (double)((Last - First) + 1ULL);
931
Nate Begemand7a19102006-05-08 16:51:36 +0000932 if (Density >= 0.3125) {
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000933 // Create a new basic block to hold the code for loading the address
934 // of the jump table, and jumping to it. Update successor information;
935 // we will either branch to the default case for the switch, or the jump
936 // table.
937 MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
938 CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
939 CurMBB->addSuccessor(Default);
940 CurMBB->addSuccessor(JumpTableBB);
941
942 // Subtract the lowest switch case value from the value being switched on
943 // and conditional branch to default mbb if the result is greater than the
944 // difference between smallest and largest cases.
945 SDOperand SwitchOp = getValue(SV);
946 MVT::ValueType VT = SwitchOp.getValueType();
947 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
948 DAG.getConstant(First, VT));
949
950 // The SDNode we just created, which holds the value being switched on
951 // minus the the smallest case value, needs to be copied to a virtual
952 // register so it can be used as an index into the jump table in a
953 // subsequent basic block. This value may be smaller or larger than the
954 // target's pointer type, and therefore require extension or truncating.
955 if (VT > TLI.getPointerTy())
956 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
957 else
958 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
959 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
960 SDOperand CopyTo = DAG.getCopyToReg(getRoot(), JumpTableReg, SwitchOp);
961
962 // Emit the range check for the jump table, and branch to the default
963 // block for the switch statement if the value being switched on exceeds
964 // the largest case in the switch.
965 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultTy(), SUB,
966 DAG.getConstant(Last-First,VT), ISD::SETUGT);
967 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
968 DAG.getBasicBlock(Default)));
969
Nate Begemandf488392006-05-03 03:48:02 +0000970 // Build a vector of destination BBs, corresponding to each target
971 // of the jump table. If the value of the jump table slot corresponds to
972 // a case statement, push the case's BB onto the vector, otherwise, push
973 // the default BB.
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000974 std::vector<MachineBasicBlock*> DestBBs;
Nate Begemandf488392006-05-03 03:48:02 +0000975 uint64_t TEI = First;
976 for (CaseItr ii = Cases.begin(), ee = Cases.end(); ii != ee; ++TEI) {
977 if (cast<ConstantIntegral>(ii->first)->getRawValue() == TEI) {
978 DestBBs.push_back(ii->second);
Nate Begemandf488392006-05-03 03:48:02 +0000979 ++ii;
980 } else {
981 DestBBs.push_back(Default);
Nate Begemandf488392006-05-03 03:48:02 +0000982 }
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000983 }
Nate Begemandf488392006-05-03 03:48:02 +0000984
985 // Update successor info
Chris Lattner2e0dfb02006-09-10 06:36:57 +0000986 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
987 E = DestBBs.end(); I != E; ++I)
988 JumpTableBB->addSuccessor(*I);
Nate Begemandf488392006-05-03 03:48:02 +0000989
990 // Create a jump table index for this jump table, or return an existing
991 // one.
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000992 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
993
994 // Set the jump table information so that we can codegen it as a second
995 // MachineBasicBlock
996 JT.Reg = JumpTableReg;
997 JT.JTI = JTI;
998 JT.MBB = JumpTableBB;
Nate Begeman866b4b42006-04-23 06:26:20 +0000999 JT.Default = Default;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001000 return;
1001 }
1002 }
Nate Begemaned728c12006-03-27 01:32:24 +00001003
1004 // Push the initial CaseRec onto the worklist
1005 std::vector<CaseRec> CaseVec;
1006 CaseVec.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
1007
1008 while (!CaseVec.empty()) {
1009 // Grab a record representing a case range to process off the worklist
1010 CaseRec CR = CaseVec.back();
1011 CaseVec.pop_back();
1012
1013 // Size is the number of Cases represented by this range. If Size is 1,
1014 // then we are processing a leaf of the binary search tree. Otherwise,
1015 // we need to pick a pivot, and push left and right ranges onto the
1016 // worklist.
1017 unsigned Size = CR.Range.second - CR.Range.first;
1018
1019 if (Size == 1) {
1020 // Create a CaseBlock record representing a conditional branch to
1021 // the Case's target mbb if the value being switched on SV is equal
1022 // to C. Otherwise, branch to default.
1023 Constant *C = CR.Range.first->first;
1024 MachineBasicBlock *Target = CR.Range.first->second;
1025 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, SV, C, Target, Default,
1026 CR.CaseBB);
1027 // If the MBB representing the leaf node is the current MBB, then just
1028 // call visitSwitchCase to emit the code into the current block.
1029 // Otherwise, push the CaseBlock onto the vector to be later processed
1030 // by SDISel, and insert the node's MBB before the next MBB.
1031 if (CR.CaseBB == CurMBB)
1032 visitSwitchCase(CB);
1033 else {
1034 SwitchCases.push_back(CB);
1035 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1036 }
1037 } else {
1038 // split case range at pivot
1039 CaseItr Pivot = CR.Range.first + (Size / 2);
1040 CaseRange LHSR(CR.Range.first, Pivot);
1041 CaseRange RHSR(Pivot, CR.Range.second);
1042 Constant *C = Pivot->first;
1043 MachineBasicBlock *RHSBB = 0, *LHSBB = 0;
1044 // We know that we branch to the LHS if the Value being switched on is
1045 // less than the Pivot value, C. We use this to optimize our binary
1046 // tree a bit, by recognizing that if SV is greater than or equal to the
1047 // LHS's Case Value, and that Case Value is exactly one less than the
1048 // Pivot's Value, then we can branch directly to the LHS's Target,
1049 // rather than creating a leaf node for it.
1050 if ((LHSR.second - LHSR.first) == 1 &&
1051 LHSR.first->first == CR.GE &&
1052 cast<ConstantIntegral>(C)->getRawValue() ==
1053 (cast<ConstantIntegral>(CR.GE)->getRawValue() + 1ULL)) {
1054 LHSBB = LHSR.first->second;
1055 } else {
1056 LHSBB = new MachineBasicBlock(LLVMBB);
1057 CaseVec.push_back(CaseRec(LHSBB,C,CR.GE,LHSR));
1058 }
1059 // Similar to the optimization above, if the Value being switched on is
1060 // known to be less than the Constant CR.LT, and the current Case Value
1061 // is CR.LT - 1, then we can branch directly to the target block for
1062 // the current Case Value, rather than emitting a RHS leaf node for it.
1063 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
1064 cast<ConstantIntegral>(RHSR.first->first)->getRawValue() ==
1065 (cast<ConstantIntegral>(CR.LT)->getRawValue() - 1ULL)) {
1066 RHSBB = RHSR.first->second;
1067 } else {
1068 RHSBB = new MachineBasicBlock(LLVMBB);
1069 CaseVec.push_back(CaseRec(RHSBB,CR.LT,C,RHSR));
1070 }
1071 // Create a CaseBlock record representing a conditional branch to
1072 // the LHS node if the value being switched on SV is less than C.
1073 // Otherwise, branch to LHS.
1074 ISD::CondCode CC = C->getType()->isSigned() ? ISD::SETLT : ISD::SETULT;
1075 SelectionDAGISel::CaseBlock CB(CC, SV, C, LHSBB, RHSBB, CR.CaseBB);
1076 if (CR.CaseBB == CurMBB)
1077 visitSwitchCase(CB);
1078 else {
1079 SwitchCases.push_back(CB);
1080 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1081 }
1082 }
1083 }
1084}
1085
Chris Lattnerf68fd0b2005-04-02 05:04:50 +00001086void SelectionDAGLowering::visitSub(User &I) {
1087 // -0.0 - X --> fneg
Chris Lattner6f3b5772005-09-28 22:28:18 +00001088 if (I.getType()->isFloatingPoint()) {
1089 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
1090 if (CFP->isExactlyValue(-0.0)) {
1091 SDOperand Op2 = getValue(I.getOperand(1));
1092 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
1093 return;
1094 }
Chris Lattner6f3b5772005-09-28 22:28:18 +00001095 }
Nate Begemanb2e089c2005-11-19 00:36:38 +00001096 visitBinary(I, ISD::SUB, ISD::FSUB, ISD::VSUB);
Chris Lattnerf68fd0b2005-04-02 05:04:50 +00001097}
1098
Nate Begemanb2e089c2005-11-19 00:36:38 +00001099void SelectionDAGLowering::visitBinary(User &I, unsigned IntOp, unsigned FPOp,
1100 unsigned VecOp) {
1101 const Type *Ty = I.getType();
Chris Lattner7a60d912005-01-07 07:47:53 +00001102 SDOperand Op1 = getValue(I.getOperand(0));
1103 SDOperand Op2 = getValue(I.getOperand(1));
Chris Lattner96c26752005-01-19 22:31:21 +00001104
Chris Lattner19baba62005-11-19 18:40:42 +00001105 if (Ty->isIntegral()) {
Nate Begemanb2e089c2005-11-19 00:36:38 +00001106 setValue(&I, DAG.getNode(IntOp, Op1.getValueType(), Op1, Op2));
1107 } else if (Ty->isFloatingPoint()) {
1108 setValue(&I, DAG.getNode(FPOp, Op1.getValueType(), Op1, Op2));
1109 } else {
1110 const PackedType *PTy = cast<PackedType>(Ty);
Chris Lattner32206f52006-03-18 01:44:44 +00001111 SDOperand Num = DAG.getConstant(PTy->getNumElements(), MVT::i32);
1112 SDOperand Typ = DAG.getValueType(TLI.getValueType(PTy->getElementType()));
1113 setValue(&I, DAG.getNode(VecOp, MVT::Vector, Op1, Op2, Num, Typ));
Nate Begemanb2e089c2005-11-19 00:36:38 +00001114 }
Nate Begeman127321b2005-11-18 07:42:56 +00001115}
Chris Lattner96c26752005-01-19 22:31:21 +00001116
Nate Begeman127321b2005-11-18 07:42:56 +00001117void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
1118 SDOperand Op1 = getValue(I.getOperand(0));
1119 SDOperand Op2 = getValue(I.getOperand(1));
1120
1121 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
1122
Chris Lattner7a60d912005-01-07 07:47:53 +00001123 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
1124}
1125
1126void SelectionDAGLowering::visitSetCC(User &I,ISD::CondCode SignedOpcode,
Evan Cheng1c5b7d12006-05-23 06:40:47 +00001127 ISD::CondCode UnsignedOpcode,
1128 ISD::CondCode FPOpcode) {
Chris Lattner7a60d912005-01-07 07:47:53 +00001129 SDOperand Op1 = getValue(I.getOperand(0));
1130 SDOperand Op2 = getValue(I.getOperand(1));
1131 ISD::CondCode Opcode = SignedOpcode;
Evan Chengac4f66f2006-05-23 18:18:46 +00001132 if (!FiniteOnlyFPMath() && I.getOperand(0)->getType()->isFloatingPoint())
Evan Cheng1c5b7d12006-05-23 06:40:47 +00001133 Opcode = FPOpcode;
1134 else if (I.getOperand(0)->getType()->isUnsigned())
Chris Lattner7a60d912005-01-07 07:47:53 +00001135 Opcode = UnsignedOpcode;
Chris Lattnerd47675e2005-08-09 20:20:18 +00001136 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
Chris Lattner7a60d912005-01-07 07:47:53 +00001137}
1138
1139void SelectionDAGLowering::visitSelect(User &I) {
1140 SDOperand Cond = getValue(I.getOperand(0));
1141 SDOperand TrueVal = getValue(I.getOperand(1));
1142 SDOperand FalseVal = getValue(I.getOperand(2));
Chris Lattner02274a52006-04-08 22:22:57 +00001143 if (!isa<PackedType>(I.getType())) {
1144 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
1145 TrueVal, FalseVal));
1146 } else {
1147 setValue(&I, DAG.getNode(ISD::VSELECT, MVT::Vector, Cond, TrueVal, FalseVal,
1148 *(TrueVal.Val->op_end()-2),
1149 *(TrueVal.Val->op_end()-1)));
1150 }
Chris Lattner7a60d912005-01-07 07:47:53 +00001151}
1152
1153void SelectionDAGLowering::visitCast(User &I) {
1154 SDOperand N = getValue(I.getOperand(0));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001155 MVT::ValueType SrcVT = N.getValueType();
Chris Lattner4024c002006-03-15 22:19:46 +00001156 MVT::ValueType DestVT = TLI.getValueType(I.getType());
Chris Lattner7a60d912005-01-07 07:47:53 +00001157
Chris Lattner2f4119a2006-03-22 20:09:35 +00001158 if (DestVT == MVT::Vector) {
1159 // This is a cast to a vector from something else. This is always a bit
1160 // convert. Get information about the input vector.
1161 const PackedType *DestTy = cast<PackedType>(I.getType());
1162 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1163 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N,
1164 DAG.getConstant(DestTy->getNumElements(),MVT::i32),
1165 DAG.getValueType(EltVT)));
1166 } else if (SrcVT == DestVT) {
Chris Lattner7a60d912005-01-07 07:47:53 +00001167 setValue(&I, N); // noop cast.
Chris Lattner4024c002006-03-15 22:19:46 +00001168 } else if (DestVT == MVT::i1) {
Chris Lattner2d8b55c2005-05-09 22:17:13 +00001169 // Cast to bool is a comparison against zero, not truncation to zero.
Chris Lattner4024c002006-03-15 22:19:46 +00001170 SDOperand Zero = isInteger(SrcVT) ? DAG.getConstant(0, N.getValueType()) :
Chris Lattner2d8b55c2005-05-09 22:17:13 +00001171 DAG.getConstantFP(0.0, N.getValueType());
Chris Lattnerd47675e2005-08-09 20:20:18 +00001172 setValue(&I, DAG.getSetCC(MVT::i1, N, Zero, ISD::SETNE));
Chris Lattner4024c002006-03-15 22:19:46 +00001173 } else if (isInteger(SrcVT)) {
1174 if (isInteger(DestVT)) { // Int -> Int cast
1175 if (DestVT < SrcVT) // Truncating cast?
1176 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001177 else if (I.getOperand(0)->getType()->isSigned())
Chris Lattner4024c002006-03-15 22:19:46 +00001178 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001179 else
Chris Lattner4024c002006-03-15 22:19:46 +00001180 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
Chris Lattnerb893d042006-03-22 22:20:49 +00001181 } else if (isFloatingPoint(DestVT)) { // Int -> FP cast
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001182 if (I.getOperand(0)->getType()->isSigned())
Chris Lattner4024c002006-03-15 22:19:46 +00001183 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001184 else
Chris Lattner4024c002006-03-15 22:19:46 +00001185 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001186 } else {
1187 assert(0 && "Unknown cast!");
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001188 }
Chris Lattner4024c002006-03-15 22:19:46 +00001189 } else if (isFloatingPoint(SrcVT)) {
1190 if (isFloatingPoint(DestVT)) { // FP -> FP cast
1191 if (DestVT < SrcVT) // Rounding cast?
1192 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001193 else
Chris Lattner4024c002006-03-15 22:19:46 +00001194 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001195 } else if (isInteger(DestVT)) { // FP -> Int cast.
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001196 if (I.getType()->isSigned())
Chris Lattner4024c002006-03-15 22:19:46 +00001197 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001198 else
Chris Lattner4024c002006-03-15 22:19:46 +00001199 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001200 } else {
1201 assert(0 && "Unknown cast!");
Chris Lattner4024c002006-03-15 22:19:46 +00001202 }
1203 } else {
Chris Lattner2f4119a2006-03-22 20:09:35 +00001204 assert(SrcVT == MVT::Vector && "Unknown cast!");
1205 assert(DestVT != MVT::Vector && "Casts to vector already handled!");
1206 // This is a cast from a vector to something else. This is always a bit
1207 // convert. Get information about the input vector.
1208 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N));
Chris Lattner7a60d912005-01-07 07:47:53 +00001209 }
1210}
1211
Chris Lattner67271862006-03-29 00:11:43 +00001212void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattner32206f52006-03-18 01:44:44 +00001213 SDOperand InVec = getValue(I.getOperand(0));
1214 SDOperand InVal = getValue(I.getOperand(1));
1215 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1216 getValue(I.getOperand(2)));
1217
Chris Lattner29b23012006-03-19 01:17:20 +00001218 SDOperand Num = *(InVec.Val->op_end()-2);
1219 SDOperand Typ = *(InVec.Val->op_end()-1);
1220 setValue(&I, DAG.getNode(ISD::VINSERT_VECTOR_ELT, MVT::Vector,
1221 InVec, InVal, InIdx, Num, Typ));
Chris Lattner32206f52006-03-18 01:44:44 +00001222}
1223
Chris Lattner67271862006-03-29 00:11:43 +00001224void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001225 SDOperand InVec = getValue(I.getOperand(0));
1226 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1227 getValue(I.getOperand(1)));
1228 SDOperand Typ = *(InVec.Val->op_end()-1);
1229 setValue(&I, DAG.getNode(ISD::VEXTRACT_VECTOR_ELT,
1230 TLI.getValueType(I.getType()), InVec, InIdx));
1231}
Chris Lattner32206f52006-03-18 01:44:44 +00001232
Chris Lattner098c01e2006-04-08 04:15:24 +00001233void SelectionDAGLowering::visitShuffleVector(User &I) {
1234 SDOperand V1 = getValue(I.getOperand(0));
1235 SDOperand V2 = getValue(I.getOperand(1));
1236 SDOperand Mask = getValue(I.getOperand(2));
1237
1238 SDOperand Num = *(V1.Val->op_end()-2);
1239 SDOperand Typ = *(V2.Val->op_end()-1);
1240 setValue(&I, DAG.getNode(ISD::VVECTOR_SHUFFLE, MVT::Vector,
1241 V1, V2, Mask, Num, Typ));
1242}
1243
1244
Chris Lattner7a60d912005-01-07 07:47:53 +00001245void SelectionDAGLowering::visitGetElementPtr(User &I) {
1246 SDOperand N = getValue(I.getOperand(0));
1247 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner7a60d912005-01-07 07:47:53 +00001248
1249 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
1250 OI != E; ++OI) {
1251 Value *Idx = *OI;
Chris Lattner35397782005-12-05 07:10:48 +00001252 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Chris Lattner7a60d912005-01-07 07:47:53 +00001253 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
1254 if (Field) {
1255 // N = N + Offset
Owen Anderson20a631f2006-05-03 01:29:57 +00001256 uint64_t Offset = TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattner7a60d912005-01-07 07:47:53 +00001257 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Misha Brukman77451162005-04-22 04:01:18 +00001258 getIntPtrConstant(Offset));
Chris Lattner7a60d912005-01-07 07:47:53 +00001259 }
1260 Ty = StTy->getElementType(Field);
1261 } else {
1262 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner19a83992005-01-07 21:56:57 +00001263
Chris Lattner43535a12005-11-09 04:45:33 +00001264 // If this is a constant subscript, handle it quickly.
1265 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
1266 if (CI->getRawValue() == 0) continue;
Chris Lattner19a83992005-01-07 21:56:57 +00001267
Chris Lattner43535a12005-11-09 04:45:33 +00001268 uint64_t Offs;
1269 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Anderson20a631f2006-05-03 01:29:57 +00001270 Offs = (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattner43535a12005-11-09 04:45:33 +00001271 else
Owen Anderson20a631f2006-05-03 01:29:57 +00001272 Offs = TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattner43535a12005-11-09 04:45:33 +00001273 N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs));
1274 continue;
Chris Lattner7a60d912005-01-07 07:47:53 +00001275 }
Chris Lattner43535a12005-11-09 04:45:33 +00001276
1277 // N = N + Idx * ElementSize;
Owen Anderson20a631f2006-05-03 01:29:57 +00001278 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattner43535a12005-11-09 04:45:33 +00001279 SDOperand IdxN = getValue(Idx);
1280
1281 // If the index is smaller or larger than intptr_t, truncate or extend
1282 // it.
1283 if (IdxN.getValueType() < N.getValueType()) {
1284 if (Idx->getType()->isSigned())
1285 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
1286 else
1287 IdxN = DAG.getNode(ISD::ZERO_EXTEND, N.getValueType(), IdxN);
1288 } else if (IdxN.getValueType() > N.getValueType())
1289 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
1290
1291 // If this is a multiply by a power of two, turn it into a shl
1292 // immediately. This is a very common case.
1293 if (isPowerOf2_64(ElementSize)) {
1294 unsigned Amt = Log2_64(ElementSize);
1295 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner41fd6d52005-11-09 16:50:40 +00001296 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner43535a12005-11-09 04:45:33 +00001297 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
1298 continue;
1299 }
1300
1301 SDOperand Scale = getIntPtrConstant(ElementSize);
1302 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
1303 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner7a60d912005-01-07 07:47:53 +00001304 }
1305 }
1306 setValue(&I, N);
1307}
1308
1309void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
1310 // If this is a fixed sized alloca in the entry block of the function,
1311 // allocate it statically on the stack.
1312 if (FuncInfo.StaticAllocaMap.count(&I))
1313 return; // getValue will auto-populate this.
1314
1315 const Type *Ty = I.getAllocatedType();
Owen Anderson20a631f2006-05-03 01:29:57 +00001316 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
1317 unsigned Align = std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begeman3ee3e692005-11-06 09:00:38 +00001318 I.getAlignment());
Chris Lattner7a60d912005-01-07 07:47:53 +00001319
1320 SDOperand AllocSize = getValue(I.getArraySize());
Chris Lattnereccb73d2005-01-22 23:04:37 +00001321 MVT::ValueType IntPtr = TLI.getPointerTy();
1322 if (IntPtr < AllocSize.getValueType())
1323 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
1324 else if (IntPtr > AllocSize.getValueType())
1325 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner7a60d912005-01-07 07:47:53 +00001326
Chris Lattnereccb73d2005-01-22 23:04:37 +00001327 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner7a60d912005-01-07 07:47:53 +00001328 getIntPtrConstant(TySize));
1329
1330 // Handle alignment. If the requested alignment is less than or equal to the
1331 // stack alignment, ignore it and round the size of the allocation up to the
1332 // stack alignment size. If the size is greater than the stack alignment, we
1333 // note this in the DYNAMIC_STACKALLOC node.
1334 unsigned StackAlign =
1335 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1336 if (Align <= StackAlign) {
1337 Align = 0;
1338 // Add SA-1 to the size.
1339 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
1340 getIntPtrConstant(StackAlign-1));
1341 // Mask out the low bits for alignment purposes.
1342 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
1343 getIntPtrConstant(~(uint64_t)(StackAlign-1)));
1344 }
1345
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001346 SDOperand Ops[] = { getRoot(), AllocSize, getIntPtrConstant(Align) };
Chris Lattnerbd887772006-08-14 23:53:35 +00001347 const MVT::ValueType *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
1348 MVT::Other);
1349 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
Chris Lattner7a60d912005-01-07 07:47:53 +00001350 DAG.setRoot(setValue(&I, DSA).getValue(1));
1351
1352 // Inform the Frame Information that we have just allocated a variable-sized
1353 // object.
1354 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
1355}
1356
Chris Lattner7a60d912005-01-07 07:47:53 +00001357void SelectionDAGLowering::visitLoad(LoadInst &I) {
1358 SDOperand Ptr = getValue(I.getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00001359
Chris Lattner4d9651c2005-01-17 22:19:26 +00001360 SDOperand Root;
1361 if (I.isVolatile())
1362 Root = getRoot();
1363 else {
1364 // Do not serialize non-volatile loads against each other.
1365 Root = DAG.getRoot();
1366 }
Chris Lattner4024c002006-03-15 22:19:46 +00001367
Evan Chenge71fe34d2006-10-09 20:57:25 +00001368 setValue(&I, getLoadFrom(I.getType(), Ptr, I.getOperand(0),
Chris Lattner4024c002006-03-15 22:19:46 +00001369 Root, I.isVolatile()));
1370}
1371
1372SDOperand SelectionDAGLowering::getLoadFrom(const Type *Ty, SDOperand Ptr,
Evan Chenge71fe34d2006-10-09 20:57:25 +00001373 const Value *SV, SDOperand Root,
Chris Lattner4024c002006-03-15 22:19:46 +00001374 bool isVolatile) {
Nate Begemanb2e089c2005-11-19 00:36:38 +00001375 SDOperand L;
Nate Begeman41b1cdc2005-12-06 06:18:55 +00001376 if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
Nate Begeman07890bb2005-11-22 01:29:36 +00001377 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Evan Chenge71fe34d2006-10-09 20:57:25 +00001378 L = DAG.getVecLoad(PTy->getNumElements(), PVT, Root, Ptr,
1379 DAG.getSrcValue(SV));
Nate Begemanb2e089c2005-11-19 00:36:38 +00001380 } else {
Evan Chenge71fe34d2006-10-09 20:57:25 +00001381 L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SV, isVolatile);
Nate Begemanb2e089c2005-11-19 00:36:38 +00001382 }
Chris Lattner4d9651c2005-01-17 22:19:26 +00001383
Chris Lattner4024c002006-03-15 22:19:46 +00001384 if (isVolatile)
Chris Lattner4d9651c2005-01-17 22:19:26 +00001385 DAG.setRoot(L.getValue(1));
1386 else
1387 PendingLoads.push_back(L.getValue(1));
Chris Lattner4024c002006-03-15 22:19:46 +00001388
1389 return L;
Chris Lattner7a60d912005-01-07 07:47:53 +00001390}
1391
1392
1393void SelectionDAGLowering::visitStore(StoreInst &I) {
1394 Value *SrcV = I.getOperand(0);
1395 SDOperand Src = getValue(SrcV);
1396 SDOperand Ptr = getValue(I.getOperand(1));
Evan Chengab51cf22006-10-13 21:14:26 +00001397 DAG.setRoot(DAG.getStore(getRoot(), Src, Ptr, I.getOperand(1),
1398 I.isVolatile()));
Chris Lattner7a60d912005-01-07 07:47:53 +00001399}
1400
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001401/// IntrinsicCannotAccessMemory - Return true if the specified intrinsic cannot
1402/// access memory and has no other side effects at all.
1403static bool IntrinsicCannotAccessMemory(unsigned IntrinsicID) {
1404#define GET_NO_MEMORY_INTRINSICS
1405#include "llvm/Intrinsics.gen"
1406#undef GET_NO_MEMORY_INTRINSICS
1407 return false;
1408}
1409
Chris Lattnera9c59156b2006-04-02 03:41:14 +00001410// IntrinsicOnlyReadsMemory - Return true if the specified intrinsic doesn't
1411// have any side-effects or if it only reads memory.
1412static bool IntrinsicOnlyReadsMemory(unsigned IntrinsicID) {
1413#define GET_SIDE_EFFECT_INFO
1414#include "llvm/Intrinsics.gen"
1415#undef GET_SIDE_EFFECT_INFO
1416 return false;
1417}
1418
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001419/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
1420/// node.
1421void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
1422 unsigned Intrinsic) {
Chris Lattner313229c2006-03-24 22:49:42 +00001423 bool HasChain = !IntrinsicCannotAccessMemory(Intrinsic);
Chris Lattnera9c59156b2006-04-02 03:41:14 +00001424 bool OnlyLoad = HasChain && IntrinsicOnlyReadsMemory(Intrinsic);
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001425
1426 // Build the operand list.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001427 SmallVector<SDOperand, 8> Ops;
Chris Lattnera9c59156b2006-04-02 03:41:14 +00001428 if (HasChain) { // If this intrinsic has side-effects, chainify it.
1429 if (OnlyLoad) {
1430 // We don't need to serialize loads against other loads.
1431 Ops.push_back(DAG.getRoot());
1432 } else {
1433 Ops.push_back(getRoot());
1434 }
1435 }
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001436
1437 // Add the intrinsic ID as an integer operand.
1438 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
1439
1440 // Add all operands of the call to the operand list.
1441 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1442 SDOperand Op = getValue(I.getOperand(i));
1443
1444 // If this is a vector type, force it to the right packed type.
1445 if (Op.getValueType() == MVT::Vector) {
1446 const PackedType *OpTy = cast<PackedType>(I.getOperand(i)->getType());
1447 MVT::ValueType EltVT = TLI.getValueType(OpTy->getElementType());
1448
1449 MVT::ValueType VVT = MVT::getVectorType(EltVT, OpTy->getNumElements());
1450 assert(VVT != MVT::Other && "Intrinsic uses a non-legal type?");
1451 Op = DAG.getNode(ISD::VBIT_CONVERT, VVT, Op);
1452 }
1453
1454 assert(TLI.isTypeLegal(Op.getValueType()) &&
1455 "Intrinsic uses a non-legal type?");
1456 Ops.push_back(Op);
1457 }
1458
1459 std::vector<MVT::ValueType> VTs;
1460 if (I.getType() != Type::VoidTy) {
1461 MVT::ValueType VT = TLI.getValueType(I.getType());
1462 if (VT == MVT::Vector) {
1463 const PackedType *DestTy = cast<PackedType>(I.getType());
1464 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1465
1466 VT = MVT::getVectorType(EltVT, DestTy->getNumElements());
1467 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
1468 }
1469
1470 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
1471 VTs.push_back(VT);
1472 }
1473 if (HasChain)
1474 VTs.push_back(MVT::Other);
1475
Chris Lattnerbd887772006-08-14 23:53:35 +00001476 const MVT::ValueType *VTList = DAG.getNodeValueTypes(VTs);
1477
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001478 // Create the node.
Chris Lattnere55d1712006-03-28 00:40:33 +00001479 SDOperand Result;
1480 if (!HasChain)
Chris Lattnerbd887772006-08-14 23:53:35 +00001481 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
1482 &Ops[0], Ops.size());
Chris Lattnere55d1712006-03-28 00:40:33 +00001483 else if (I.getType() != Type::VoidTy)
Chris Lattnerbd887772006-08-14 23:53:35 +00001484 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
1485 &Ops[0], Ops.size());
Chris Lattnere55d1712006-03-28 00:40:33 +00001486 else
Chris Lattnerbd887772006-08-14 23:53:35 +00001487 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
1488 &Ops[0], Ops.size());
Chris Lattnere55d1712006-03-28 00:40:33 +00001489
Chris Lattnera9c59156b2006-04-02 03:41:14 +00001490 if (HasChain) {
1491 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
1492 if (OnlyLoad)
1493 PendingLoads.push_back(Chain);
1494 else
1495 DAG.setRoot(Chain);
1496 }
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001497 if (I.getType() != Type::VoidTy) {
1498 if (const PackedType *PTy = dyn_cast<PackedType>(I.getType())) {
1499 MVT::ValueType EVT = TLI.getValueType(PTy->getElementType());
1500 Result = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Result,
1501 DAG.getConstant(PTy->getNumElements(), MVT::i32),
1502 DAG.getValueType(EVT));
1503 }
1504 setValue(&I, Result);
1505 }
1506}
1507
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001508/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
1509/// we want to emit this as a call to a named external function, return the name
1510/// otherwise lower it and return null.
1511const char *
1512SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
1513 switch (Intrinsic) {
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001514 default:
1515 // By default, turn this into a target intrinsic node.
1516 visitTargetIntrinsic(I, Intrinsic);
1517 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001518 case Intrinsic::vastart: visitVAStart(I); return 0;
1519 case Intrinsic::vaend: visitVAEnd(I); return 0;
1520 case Intrinsic::vacopy: visitVACopy(I); return 0;
1521 case Intrinsic::returnaddress: visitFrameReturnAddress(I, false); return 0;
1522 case Intrinsic::frameaddress: visitFrameReturnAddress(I, true); return 0;
1523 case Intrinsic::setjmp:
1524 return "_setjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1525 break;
1526 case Intrinsic::longjmp:
1527 return "_longjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1528 break;
Chris Lattner093c1592006-03-03 00:00:25 +00001529 case Intrinsic::memcpy_i32:
1530 case Intrinsic::memcpy_i64:
1531 visitMemIntrinsic(I, ISD::MEMCPY);
1532 return 0;
1533 case Intrinsic::memset_i32:
1534 case Intrinsic::memset_i64:
1535 visitMemIntrinsic(I, ISD::MEMSET);
1536 return 0;
1537 case Intrinsic::memmove_i32:
1538 case Intrinsic::memmove_i64:
1539 visitMemIntrinsic(I, ISD::MEMMOVE);
1540 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001541
Chris Lattner5d4e61d2005-12-13 17:40:33 +00001542 case Intrinsic::dbg_stoppoint: {
Jim Laskey5995d012006-02-11 01:01:30 +00001543 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskeya8bdac82006-03-23 18:06:46 +00001544 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001545 if (DebugInfo && SPI.getContext() && DebugInfo->Verify(SPI.getContext())) {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001546 SDOperand Ops[5];
Chris Lattner435b4022005-11-29 06:21:05 +00001547
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001548 Ops[0] = getRoot();
1549 Ops[1] = getValue(SPI.getLineValue());
1550 Ops[2] = getValue(SPI.getColumnValue());
Chris Lattner435b4022005-11-29 06:21:05 +00001551
Jim Laskeya8bdac82006-03-23 18:06:46 +00001552 DebugInfoDesc *DD = DebugInfo->getDescFor(SPI.getContext());
Jim Laskey5995d012006-02-11 01:01:30 +00001553 assert(DD && "Not a debug information descriptor");
Jim Laskeya8bdac82006-03-23 18:06:46 +00001554 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
1555
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001556 Ops[3] = DAG.getString(CompileUnit->getFileName());
1557 Ops[4] = DAG.getString(CompileUnit->getDirectory());
Jim Laskey5995d012006-02-11 01:01:30 +00001558
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001559 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops, 5));
Chris Lattner5d4e61d2005-12-13 17:40:33 +00001560 }
Jim Laskeya8bdac82006-03-23 18:06:46 +00001561
Chris Lattnerf2b62f32005-11-16 07:22:30 +00001562 return 0;
Chris Lattner435b4022005-11-29 06:21:05 +00001563 }
Jim Laskeya8bdac82006-03-23 18:06:46 +00001564 case Intrinsic::dbg_region_start: {
1565 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1566 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001567 if (DebugInfo && RSI.getContext() && DebugInfo->Verify(RSI.getContext())) {
Jim Laskeya8bdac82006-03-23 18:06:46 +00001568 unsigned LabelID = DebugInfo->RecordRegionStart(RSI.getContext());
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001569 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, getRoot(),
1570 DAG.getConstant(LabelID, MVT::i32)));
Jim Laskeya8bdac82006-03-23 18:06:46 +00001571 }
1572
Chris Lattnerf2b62f32005-11-16 07:22:30 +00001573 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00001574 }
1575 case Intrinsic::dbg_region_end: {
1576 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1577 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001578 if (DebugInfo && REI.getContext() && DebugInfo->Verify(REI.getContext())) {
Jim Laskeya8bdac82006-03-23 18:06:46 +00001579 unsigned LabelID = DebugInfo->RecordRegionEnd(REI.getContext());
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001580 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other,
1581 getRoot(), DAG.getConstant(LabelID, MVT::i32)));
Jim Laskeya8bdac82006-03-23 18:06:46 +00001582 }
1583
Chris Lattnerf2b62f32005-11-16 07:22:30 +00001584 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00001585 }
1586 case Intrinsic::dbg_func_start: {
1587 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1588 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001589 if (DebugInfo && FSI.getSubprogram() &&
1590 DebugInfo->Verify(FSI.getSubprogram())) {
Jim Laskeya8bdac82006-03-23 18:06:46 +00001591 unsigned LabelID = DebugInfo->RecordRegionStart(FSI.getSubprogram());
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001592 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other,
1593 getRoot(), DAG.getConstant(LabelID, MVT::i32)));
Jim Laskeya8bdac82006-03-23 18:06:46 +00001594 }
1595
Chris Lattnerf2b62f32005-11-16 07:22:30 +00001596 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00001597 }
1598 case Intrinsic::dbg_declare: {
1599 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1600 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Jim Laskey67a636c2006-03-28 13:45:20 +00001601 if (DebugInfo && DI.getVariable() && DebugInfo->Verify(DI.getVariable())) {
Jim Laskey53f1ecc2006-03-24 09:50:27 +00001602 SDOperand AddressOp = getValue(DI.getAddress());
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001603 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(AddressOp))
Jim Laskeya8bdac82006-03-23 18:06:46 +00001604 DebugInfo->RecordVariable(DI.getVariable(), FI->getIndex());
Jim Laskeya8bdac82006-03-23 18:06:46 +00001605 }
1606
1607 return 0;
1608 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001609
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001610 case Intrinsic::isunordered_f32:
1611 case Intrinsic::isunordered_f64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001612 setValue(&I, DAG.getSetCC(MVT::i1,getValue(I.getOperand(1)),
1613 getValue(I.getOperand(2)), ISD::SETUO));
1614 return 0;
1615
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001616 case Intrinsic::sqrt_f32:
1617 case Intrinsic::sqrt_f64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001618 setValue(&I, DAG.getNode(ISD::FSQRT,
1619 getValue(I.getOperand(1)).getValueType(),
1620 getValue(I.getOperand(1))));
1621 return 0;
Chris Lattnerf0359b32006-09-09 06:03:30 +00001622 case Intrinsic::powi_f32:
1623 case Intrinsic::powi_f64:
1624 setValue(&I, DAG.getNode(ISD::FPOWI,
1625 getValue(I.getOperand(1)).getValueType(),
1626 getValue(I.getOperand(1)),
1627 getValue(I.getOperand(2))));
1628 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001629 case Intrinsic::pcmarker: {
1630 SDOperand Tmp = getValue(I.getOperand(1));
1631 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
1632 return 0;
1633 }
Andrew Lenharthde1b5d62005-11-11 22:48:54 +00001634 case Intrinsic::readcyclecounter: {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001635 SDOperand Op = getRoot();
Chris Lattnerbd887772006-08-14 23:53:35 +00001636 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
1637 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
1638 &Op, 1);
Andrew Lenharthde1b5d62005-11-11 22:48:54 +00001639 setValue(&I, Tmp);
1640 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth01aa5632005-11-11 16:47:30 +00001641 return 0;
Andrew Lenharthde1b5d62005-11-11 22:48:54 +00001642 }
Nate Begeman2fba8a32006-01-14 03:14:10 +00001643 case Intrinsic::bswap_i16:
Nate Begeman2fba8a32006-01-14 03:14:10 +00001644 case Intrinsic::bswap_i32:
Nate Begeman2fba8a32006-01-14 03:14:10 +00001645 case Intrinsic::bswap_i64:
1646 setValue(&I, DAG.getNode(ISD::BSWAP,
1647 getValue(I.getOperand(1)).getValueType(),
1648 getValue(I.getOperand(1))));
1649 return 0;
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001650 case Intrinsic::cttz_i8:
1651 case Intrinsic::cttz_i16:
1652 case Intrinsic::cttz_i32:
1653 case Intrinsic::cttz_i64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001654 setValue(&I, DAG.getNode(ISD::CTTZ,
1655 getValue(I.getOperand(1)).getValueType(),
1656 getValue(I.getOperand(1))));
1657 return 0;
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001658 case Intrinsic::ctlz_i8:
1659 case Intrinsic::ctlz_i16:
1660 case Intrinsic::ctlz_i32:
1661 case Intrinsic::ctlz_i64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001662 setValue(&I, DAG.getNode(ISD::CTLZ,
1663 getValue(I.getOperand(1)).getValueType(),
1664 getValue(I.getOperand(1))));
1665 return 0;
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001666 case Intrinsic::ctpop_i8:
1667 case Intrinsic::ctpop_i16:
1668 case Intrinsic::ctpop_i32:
1669 case Intrinsic::ctpop_i64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001670 setValue(&I, DAG.getNode(ISD::CTPOP,
1671 getValue(I.getOperand(1)).getValueType(),
1672 getValue(I.getOperand(1))));
1673 return 0;
Chris Lattnerb3266452006-01-13 02:50:02 +00001674 case Intrinsic::stacksave: {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001675 SDOperand Op = getRoot();
Chris Lattnerbd887772006-08-14 23:53:35 +00001676 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE,
1677 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
Chris Lattnerb3266452006-01-13 02:50:02 +00001678 setValue(&I, Tmp);
1679 DAG.setRoot(Tmp.getValue(1));
1680 return 0;
1681 }
Chris Lattnerdeda32a2006-01-23 05:22:07 +00001682 case Intrinsic::stackrestore: {
1683 SDOperand Tmp = getValue(I.getOperand(1));
1684 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattnerb3266452006-01-13 02:50:02 +00001685 return 0;
Chris Lattnerdeda32a2006-01-23 05:22:07 +00001686 }
Chris Lattner9e8b6332005-12-12 22:51:16 +00001687 case Intrinsic::prefetch:
1688 // FIXME: Currently discarding prefetches.
1689 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001690 }
1691}
1692
1693
Chris Lattner7a60d912005-01-07 07:47:53 +00001694void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner18d2b342005-01-08 22:48:57 +00001695 const char *RenameFn = 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001696 if (Function *F = I.getCalledFunction()) {
Chris Lattner0c140002005-04-02 05:26:53 +00001697 if (F->isExternal())
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001698 if (unsigned IID = F->getIntrinsicID()) {
1699 RenameFn = visitIntrinsicCall(I, IID);
1700 if (!RenameFn)
1701 return;
1702 } else { // Not an LLVM intrinsic.
1703 const std::string &Name = F->getName();
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00001704 if (Name[0] == 'c' && (Name == "copysign" || Name == "copysignf")) {
1705 if (I.getNumOperands() == 3 && // Basic sanity checks.
1706 I.getOperand(1)->getType()->isFloatingPoint() &&
1707 I.getType() == I.getOperand(1)->getType() &&
1708 I.getType() == I.getOperand(2)->getType()) {
1709 SDOperand LHS = getValue(I.getOperand(1));
1710 SDOperand RHS = getValue(I.getOperand(2));
1711 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
1712 LHS, RHS));
1713 return;
1714 }
1715 } else if (Name[0] == 'f' && (Name == "fabs" || Name == "fabsf")) {
Chris Lattner0c140002005-04-02 05:26:53 +00001716 if (I.getNumOperands() == 2 && // Basic sanity checks.
1717 I.getOperand(1)->getType()->isFloatingPoint() &&
1718 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001719 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner0c140002005-04-02 05:26:53 +00001720 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
1721 return;
1722 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001723 } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) {
Chris Lattner80026402005-04-30 04:43:14 +00001724 if (I.getNumOperands() == 2 && // Basic sanity checks.
1725 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner1784a9d22006-02-14 05:39:35 +00001726 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001727 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner80026402005-04-30 04:43:14 +00001728 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
1729 return;
1730 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001731 } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) {
Chris Lattner80026402005-04-30 04:43:14 +00001732 if (I.getNumOperands() == 2 && // Basic sanity checks.
1733 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner1784a9d22006-02-14 05:39:35 +00001734 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001735 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner80026402005-04-30 04:43:14 +00001736 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
1737 return;
1738 }
1739 }
Chris Lattnere4f71d02005-05-14 13:56:55 +00001740 }
Chris Lattner476e67b2006-01-26 22:24:51 +00001741 } else if (isa<InlineAsm>(I.getOperand(0))) {
1742 visitInlineAsm(I);
1743 return;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001744 }
Misha Brukman835702a2005-04-21 22:36:52 +00001745
Chris Lattner18d2b342005-01-08 22:48:57 +00001746 SDOperand Callee;
1747 if (!RenameFn)
1748 Callee = getValue(I.getOperand(0));
1749 else
1750 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Chris Lattner7a60d912005-01-07 07:47:53 +00001751 std::vector<std::pair<SDOperand, const Type*> > Args;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001752 Args.reserve(I.getNumOperands());
Chris Lattner7a60d912005-01-07 07:47:53 +00001753 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1754 Value *Arg = I.getOperand(i);
1755 SDOperand ArgNode = getValue(Arg);
1756 Args.push_back(std::make_pair(ArgNode, Arg->getType()));
1757 }
Misha Brukman835702a2005-04-21 22:36:52 +00001758
Nate Begemanf6565252005-03-26 01:29:23 +00001759 const PointerType *PT = cast<PointerType>(I.getCalledValue()->getType());
1760 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Misha Brukman835702a2005-04-21 22:36:52 +00001761
Chris Lattner1f45cd72005-01-08 19:26:18 +00001762 std::pair<SDOperand,SDOperand> Result =
Chris Lattner111778e2005-05-12 19:56:57 +00001763 TLI.LowerCallTo(getRoot(), I.getType(), FTy->isVarArg(), I.getCallingConv(),
Chris Lattner2e77db62005-05-13 18:50:42 +00001764 I.isTailCall(), Callee, Args, DAG);
Chris Lattner7a60d912005-01-07 07:47:53 +00001765 if (I.getType() != Type::VoidTy)
Chris Lattner1f45cd72005-01-08 19:26:18 +00001766 setValue(&I, Result.first);
1767 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00001768}
1769
Chris Lattner6f87d182006-02-22 22:37:12 +00001770SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001771 SDOperand &Chain, SDOperand &Flag)const{
Chris Lattner6f87d182006-02-22 22:37:12 +00001772 SDOperand Val = DAG.getCopyFromReg(Chain, Regs[0], RegVT, Flag);
1773 Chain = Val.getValue(1);
1774 Flag = Val.getValue(2);
1775
1776 // If the result was expanded, copy from the top part.
1777 if (Regs.size() > 1) {
1778 assert(Regs.size() == 2 &&
1779 "Cannot expand to more than 2 elts yet!");
1780 SDOperand Hi = DAG.getCopyFromReg(Chain, Regs[1], RegVT, Flag);
Evan Chengf80dfa82006-10-04 22:23:53 +00001781 Chain = Hi.getValue(1);
1782 Flag = Hi.getValue(2);
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001783 if (DAG.getTargetLoweringInfo().isLittleEndian())
1784 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Val, Hi);
1785 else
1786 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Hi, Val);
Chris Lattner6f87d182006-02-22 22:37:12 +00001787 }
Chris Lattner1558fc62006-02-01 18:59:47 +00001788
Chris Lattner705948d2006-06-08 18:22:48 +00001789 // Otherwise, if the return value was promoted or extended, truncate it to the
Chris Lattner6f87d182006-02-22 22:37:12 +00001790 // appropriate type.
1791 if (RegVT == ValueVT)
1792 return Val;
1793
Chris Lattner705948d2006-06-08 18:22:48 +00001794 if (MVT::isInteger(RegVT)) {
1795 if (ValueVT < RegVT)
1796 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1797 else
1798 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
1799 } else {
Chris Lattner6f87d182006-02-22 22:37:12 +00001800 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val);
Chris Lattner705948d2006-06-08 18:22:48 +00001801 }
Chris Lattner6f87d182006-02-22 22:37:12 +00001802}
1803
Chris Lattner571d9642006-02-23 19:21:04 +00001804/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
1805/// specified value into the registers specified by this object. This uses
1806/// Chain/Flag as the input and updates them for the output Chain/Flag.
1807void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Evan Chengef9e07d2006-06-15 08:11:54 +00001808 SDOperand &Chain, SDOperand &Flag,
1809 MVT::ValueType PtrVT) const {
Chris Lattner571d9642006-02-23 19:21:04 +00001810 if (Regs.size() == 1) {
1811 // If there is a single register and the types differ, this must be
1812 // a promotion.
1813 if (RegVT != ValueVT) {
Chris Lattnerc03a9252006-06-08 18:27:11 +00001814 if (MVT::isInteger(RegVT)) {
1815 if (RegVT < ValueVT)
1816 Val = DAG.getNode(ISD::TRUNCATE, RegVT, Val);
1817 else
1818 Val = DAG.getNode(ISD::ANY_EXTEND, RegVT, Val);
1819 } else
Chris Lattner571d9642006-02-23 19:21:04 +00001820 Val = DAG.getNode(ISD::FP_EXTEND, RegVT, Val);
1821 }
1822 Chain = DAG.getCopyToReg(Chain, Regs[0], Val, Flag);
1823 Flag = Chain.getValue(1);
1824 } else {
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001825 std::vector<unsigned> R(Regs);
1826 if (!DAG.getTargetLoweringInfo().isLittleEndian())
1827 std::reverse(R.begin(), R.end());
1828
1829 for (unsigned i = 0, e = R.size(); i != e; ++i) {
Chris Lattner571d9642006-02-23 19:21:04 +00001830 SDOperand Part = DAG.getNode(ISD::EXTRACT_ELEMENT, RegVT, Val,
Evan Chengef9e07d2006-06-15 08:11:54 +00001831 DAG.getConstant(i, PtrVT));
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001832 Chain = DAG.getCopyToReg(Chain, R[i], Part, Flag);
Chris Lattner571d9642006-02-23 19:21:04 +00001833 Flag = Chain.getValue(1);
1834 }
1835 }
1836}
Chris Lattner6f87d182006-02-22 22:37:12 +00001837
Chris Lattner571d9642006-02-23 19:21:04 +00001838/// AddInlineAsmOperands - Add this value to the specified inlineasm node
1839/// operand list. This adds the code marker and includes the number of
1840/// values added into it.
1841void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001842 std::vector<SDOperand> &Ops) const {
Chris Lattner571d9642006-02-23 19:21:04 +00001843 Ops.push_back(DAG.getConstant(Code | (Regs.size() << 3), MVT::i32));
1844 for (unsigned i = 0, e = Regs.size(); i != e; ++i)
1845 Ops.push_back(DAG.getRegister(Regs[i], RegVT));
1846}
Chris Lattner6f87d182006-02-22 22:37:12 +00001847
1848/// isAllocatableRegister - If the specified register is safe to allocate,
1849/// i.e. it isn't a stack pointer or some other special register, return the
1850/// register class for the register. Otherwise, return null.
1851static const TargetRegisterClass *
Chris Lattnerb1124f32006-02-22 23:09:03 +00001852isAllocatableRegister(unsigned Reg, MachineFunction &MF,
1853 const TargetLowering &TLI, const MRegisterInfo *MRI) {
Chris Lattnerbec582f2006-04-02 00:24:45 +00001854 MVT::ValueType FoundVT = MVT::Other;
1855 const TargetRegisterClass *FoundRC = 0;
Chris Lattnerb1124f32006-02-22 23:09:03 +00001856 for (MRegisterInfo::regclass_iterator RCI = MRI->regclass_begin(),
1857 E = MRI->regclass_end(); RCI != E; ++RCI) {
Chris Lattnerbec582f2006-04-02 00:24:45 +00001858 MVT::ValueType ThisVT = MVT::Other;
1859
Chris Lattnerb1124f32006-02-22 23:09:03 +00001860 const TargetRegisterClass *RC = *RCI;
1861 // If none of the the value types for this register class are valid, we
1862 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattnerb1124f32006-02-22 23:09:03 +00001863 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
1864 I != E; ++I) {
1865 if (TLI.isTypeLegal(*I)) {
Chris Lattnerbec582f2006-04-02 00:24:45 +00001866 // If we have already found this register in a different register class,
1867 // choose the one with the largest VT specified. For example, on
1868 // PowerPC, we favor f64 register classes over f32.
1869 if (FoundVT == MVT::Other ||
1870 MVT::getSizeInBits(FoundVT) < MVT::getSizeInBits(*I)) {
1871 ThisVT = *I;
1872 break;
1873 }
Chris Lattnerb1124f32006-02-22 23:09:03 +00001874 }
1875 }
1876
Chris Lattnerbec582f2006-04-02 00:24:45 +00001877 if (ThisVT == MVT::Other) continue;
Chris Lattnerb1124f32006-02-22 23:09:03 +00001878
Chris Lattner6f87d182006-02-22 22:37:12 +00001879 // NOTE: This isn't ideal. In particular, this might allocate the
1880 // frame pointer in functions that need it (due to them not being taken
1881 // out of allocation, because a variable sized allocation hasn't been seen
1882 // yet). This is a slight code pessimization, but should still work.
Chris Lattnerb1124f32006-02-22 23:09:03 +00001883 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
1884 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerbec582f2006-04-02 00:24:45 +00001885 if (*I == Reg) {
1886 // We found a matching register class. Keep looking at others in case
1887 // we find one with larger registers that this physreg is also in.
1888 FoundRC = RC;
1889 FoundVT = ThisVT;
1890 break;
1891 }
Chris Lattner1558fc62006-02-01 18:59:47 +00001892 }
Chris Lattnerbec582f2006-04-02 00:24:45 +00001893 return FoundRC;
Chris Lattner6f87d182006-02-22 22:37:12 +00001894}
1895
1896RegsForValue SelectionDAGLowering::
1897GetRegistersForValue(const std::string &ConstrCode,
1898 MVT::ValueType VT, bool isOutReg, bool isInReg,
1899 std::set<unsigned> &OutputRegs,
1900 std::set<unsigned> &InputRegs) {
1901 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
1902 TLI.getRegForInlineAsmConstraint(ConstrCode, VT);
1903 std::vector<unsigned> Regs;
1904
1905 unsigned NumRegs = VT != MVT::Other ? TLI.getNumElements(VT) : 1;
1906 MVT::ValueType RegVT;
1907 MVT::ValueType ValueVT = VT;
1908
1909 if (PhysReg.first) {
1910 if (VT == MVT::Other)
1911 ValueVT = *PhysReg.second->vt_begin();
Chris Lattner705948d2006-06-08 18:22:48 +00001912
1913 // Get the actual register value type. This is important, because the user
1914 // may have asked for (e.g.) the AX register in i32 type. We need to
1915 // remember that AX is actually i16 to get the right extension.
1916 RegVT = *PhysReg.second->vt_begin();
Chris Lattner6f87d182006-02-22 22:37:12 +00001917
1918 // This is a explicit reference to a physical register.
1919 Regs.push_back(PhysReg.first);
1920
1921 // If this is an expanded reference, add the rest of the regs to Regs.
1922 if (NumRegs != 1) {
Chris Lattner6f87d182006-02-22 22:37:12 +00001923 TargetRegisterClass::iterator I = PhysReg.second->begin();
1924 TargetRegisterClass::iterator E = PhysReg.second->end();
1925 for (; *I != PhysReg.first; ++I)
1926 assert(I != E && "Didn't find reg!");
1927
1928 // Already added the first reg.
1929 --NumRegs; ++I;
1930 for (; NumRegs; --NumRegs, ++I) {
1931 assert(I != E && "Ran out of registers to allocate!");
1932 Regs.push_back(*I);
1933 }
1934 }
1935 return RegsForValue(Regs, RegVT, ValueVT);
1936 }
1937
1938 // This is a reference to a register class. Allocate NumRegs consecutive,
1939 // available, registers from the class.
1940 std::vector<unsigned> RegClassRegs =
1941 TLI.getRegClassForInlineAsmConstraint(ConstrCode, VT);
1942
1943 const MRegisterInfo *MRI = DAG.getTarget().getRegisterInfo();
1944 MachineFunction &MF = *CurMBB->getParent();
1945 unsigned NumAllocated = 0;
1946 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
1947 unsigned Reg = RegClassRegs[i];
1948 // See if this register is available.
1949 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
1950 (isInReg && InputRegs.count(Reg))) { // Already used.
1951 // Make sure we find consecutive registers.
1952 NumAllocated = 0;
1953 continue;
1954 }
1955
1956 // Check to see if this register is allocatable (i.e. don't give out the
1957 // stack pointer).
Chris Lattnerb1124f32006-02-22 23:09:03 +00001958 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, MRI);
Chris Lattner6f87d182006-02-22 22:37:12 +00001959 if (!RC) {
1960 // Make sure we find consecutive registers.
1961 NumAllocated = 0;
1962 continue;
1963 }
1964
1965 // Okay, this register is good, we can use it.
1966 ++NumAllocated;
1967
1968 // If we allocated enough consecutive
1969 if (NumAllocated == NumRegs) {
1970 unsigned RegStart = (i-NumAllocated)+1;
1971 unsigned RegEnd = i+1;
1972 // Mark all of the allocated registers used.
1973 for (unsigned i = RegStart; i != RegEnd; ++i) {
1974 unsigned Reg = RegClassRegs[i];
1975 Regs.push_back(Reg);
1976 if (isOutReg) OutputRegs.insert(Reg); // Mark reg used.
1977 if (isInReg) InputRegs.insert(Reg); // Mark reg used.
1978 }
1979
1980 return RegsForValue(Regs, *RC->vt_begin(), VT);
1981 }
1982 }
1983
1984 // Otherwise, we couldn't allocate enough registers for this.
1985 return RegsForValue();
Chris Lattner1558fc62006-02-01 18:59:47 +00001986}
1987
Chris Lattner6f87d182006-02-22 22:37:12 +00001988
Chris Lattner476e67b2006-01-26 22:24:51 +00001989/// visitInlineAsm - Handle a call to an InlineAsm object.
1990///
1991void SelectionDAGLowering::visitInlineAsm(CallInst &I) {
1992 InlineAsm *IA = cast<InlineAsm>(I.getOperand(0));
1993
1994 SDOperand AsmStr = DAG.getTargetExternalSymbol(IA->getAsmString().c_str(),
1995 MVT::Other);
1996
1997 // Note, we treat inline asms both with and without side-effects as the same.
1998 // If an inline asm doesn't have side effects and doesn't access memory, we
1999 // could not choose to not chain it.
2000 bool hasSideEffects = IA->hasSideEffects();
2001
Chris Lattner3a5ed552006-02-01 01:28:23 +00002002 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
Chris Lattner7ad77df2006-02-22 00:56:39 +00002003 std::vector<MVT::ValueType> ConstraintVTs;
Chris Lattner476e67b2006-01-26 22:24:51 +00002004
2005 /// AsmNodeOperands - A list of pairs. The first element is a register, the
2006 /// second is a bitfield where bit #0 is set if it is a use and bit #1 is set
2007 /// if it is a def of that register.
2008 std::vector<SDOperand> AsmNodeOperands;
2009 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
2010 AsmNodeOperands.push_back(AsmStr);
2011
2012 SDOperand Chain = getRoot();
2013 SDOperand Flag;
2014
Chris Lattner1558fc62006-02-01 18:59:47 +00002015 // We fully assign registers here at isel time. This is not optimal, but
2016 // should work. For register classes that correspond to LLVM classes, we
2017 // could let the LLVM RA do its thing, but we currently don't. Do a prepass
2018 // over the constraints, collecting fixed registers that we know we can't use.
2019 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner7ad77df2006-02-22 00:56:39 +00002020 unsigned OpNum = 1;
Chris Lattner1558fc62006-02-01 18:59:47 +00002021 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
2022 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2023 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner7f5880b2006-02-02 00:25:23 +00002024
Chris Lattner7ad77df2006-02-22 00:56:39 +00002025 MVT::ValueType OpVT;
2026
2027 // Compute the value type for each operand and add it to ConstraintVTs.
2028 switch (Constraints[i].Type) {
2029 case InlineAsm::isOutput:
2030 if (!Constraints[i].isIndirectOutput) {
2031 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
2032 OpVT = TLI.getValueType(I.getType());
2033 } else {
Chris Lattner9fed5b62006-02-27 23:45:39 +00002034 const Type *OpTy = I.getOperand(OpNum)->getType();
Chris Lattner7ad77df2006-02-22 00:56:39 +00002035 OpVT = TLI.getValueType(cast<PointerType>(OpTy)->getElementType());
2036 OpNum++; // Consumes a call operand.
2037 }
2038 break;
2039 case InlineAsm::isInput:
2040 OpVT = TLI.getValueType(I.getOperand(OpNum)->getType());
2041 OpNum++; // Consumes a call operand.
2042 break;
2043 case InlineAsm::isClobber:
2044 OpVT = MVT::Other;
2045 break;
2046 }
2047
2048 ConstraintVTs.push_back(OpVT);
2049
Chris Lattner6f87d182006-02-22 22:37:12 +00002050 if (TLI.getRegForInlineAsmConstraint(ConstraintCode, OpVT).first == 0)
2051 continue; // Not assigned a fixed reg.
Chris Lattner7ad77df2006-02-22 00:56:39 +00002052
Chris Lattner6f87d182006-02-22 22:37:12 +00002053 // Build a list of regs that this operand uses. This always has a single
2054 // element for promoted/expanded operands.
2055 RegsForValue Regs = GetRegistersForValue(ConstraintCode, OpVT,
2056 false, false,
2057 OutputRegs, InputRegs);
Chris Lattner1558fc62006-02-01 18:59:47 +00002058
2059 switch (Constraints[i].Type) {
2060 case InlineAsm::isOutput:
2061 // We can't assign any other output to this register.
Chris Lattner6f87d182006-02-22 22:37:12 +00002062 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1558fc62006-02-01 18:59:47 +00002063 // If this is an early-clobber output, it cannot be assigned to the same
2064 // value as the input reg.
Chris Lattner7f5880b2006-02-02 00:25:23 +00002065 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
Chris Lattner6f87d182006-02-22 22:37:12 +00002066 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1558fc62006-02-01 18:59:47 +00002067 break;
Chris Lattner7ad77df2006-02-22 00:56:39 +00002068 case InlineAsm::isInput:
2069 // We can't assign any other input to this register.
Chris Lattner6f87d182006-02-22 22:37:12 +00002070 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner7ad77df2006-02-22 00:56:39 +00002071 break;
Chris Lattner1558fc62006-02-01 18:59:47 +00002072 case InlineAsm::isClobber:
2073 // Clobbered regs cannot be used as inputs or outputs.
Chris Lattner6f87d182006-02-22 22:37:12 +00002074 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2075 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1558fc62006-02-01 18:59:47 +00002076 break;
Chris Lattner1558fc62006-02-01 18:59:47 +00002077 }
2078 }
Chris Lattner3a5ed552006-02-01 01:28:23 +00002079
Chris Lattner5c79f982006-02-21 23:12:12 +00002080 // Loop over all of the inputs, copying the operand values into the
2081 // appropriate registers and processing the output regs.
Chris Lattner6f87d182006-02-22 22:37:12 +00002082 RegsForValue RetValRegs;
2083 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Chris Lattner7ad77df2006-02-22 00:56:39 +00002084 OpNum = 1;
Chris Lattner5c79f982006-02-21 23:12:12 +00002085
Chris Lattner2e56e892006-01-31 02:03:41 +00002086 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
Chris Lattner3a5ed552006-02-01 01:28:23 +00002087 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2088 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner7ad77df2006-02-22 00:56:39 +00002089
Chris Lattner3a5ed552006-02-01 01:28:23 +00002090 switch (Constraints[i].Type) {
2091 case InlineAsm::isOutput: {
Chris Lattner9fed5b62006-02-27 23:45:39 +00002092 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2093 if (ConstraintCode.size() == 1) // not a physreg name.
2094 CTy = TLI.getConstraintType(ConstraintCode[0]);
2095
2096 if (CTy == TargetLowering::C_Memory) {
2097 // Memory output.
2098 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
2099
2100 // Check that the operand (the address to store to) isn't a float.
2101 if (!MVT::isInteger(InOperandVal.getValueType()))
2102 assert(0 && "MATCH FAIL!");
2103
2104 if (!Constraints[i].isIndirectOutput)
2105 assert(0 && "MATCH FAIL!");
2106
2107 OpNum++; // Consumes a call operand.
2108
2109 // Extend/truncate to the right pointer type if needed.
2110 MVT::ValueType PtrType = TLI.getPointerTy();
2111 if (InOperandVal.getValueType() < PtrType)
2112 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2113 else if (InOperandVal.getValueType() > PtrType)
2114 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2115
2116 // Add information to the INLINEASM node to know about this output.
2117 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2118 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2119 AsmNodeOperands.push_back(InOperandVal);
2120 break;
2121 }
2122
2123 // Otherwise, this is a register output.
2124 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2125
Chris Lattner6f87d182006-02-22 22:37:12 +00002126 // If this is an early-clobber output, or if there is an input
2127 // constraint that matches this, we need to reserve the input register
2128 // so no other inputs allocate to it.
2129 bool UsesInputRegister = false;
2130 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
2131 UsesInputRegister = true;
2132
2133 // Copy the output from the appropriate register. Find a register that
Chris Lattner7ad77df2006-02-22 00:56:39 +00002134 // we can use.
Chris Lattner6f87d182006-02-22 22:37:12 +00002135 RegsForValue Regs =
2136 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2137 true, UsesInputRegister,
2138 OutputRegs, InputRegs);
2139 assert(!Regs.Regs.empty() && "Couldn't allocate output reg!");
Chris Lattner7ad77df2006-02-22 00:56:39 +00002140
Chris Lattner3a5ed552006-02-01 01:28:23 +00002141 if (!Constraints[i].isIndirectOutput) {
Chris Lattner6f87d182006-02-22 22:37:12 +00002142 assert(RetValRegs.Regs.empty() &&
Chris Lattner3a5ed552006-02-01 01:28:23 +00002143 "Cannot have multiple output constraints yet!");
Chris Lattner3a5ed552006-02-01 01:28:23 +00002144 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
Chris Lattner6f87d182006-02-22 22:37:12 +00002145 RetValRegs = Regs;
Chris Lattner3a5ed552006-02-01 01:28:23 +00002146 } else {
Chris Lattner9fed5b62006-02-27 23:45:39 +00002147 IndirectStoresToEmit.push_back(std::make_pair(Regs,
2148 I.getOperand(OpNum)));
Chris Lattner3a5ed552006-02-01 01:28:23 +00002149 OpNum++; // Consumes a call operand.
2150 }
Chris Lattner2e56e892006-01-31 02:03:41 +00002151
2152 // Add information to the INLINEASM node to know that this register is
2153 // set.
Chris Lattner571d9642006-02-23 19:21:04 +00002154 Regs.AddInlineAsmOperands(2 /*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner2e56e892006-01-31 02:03:41 +00002155 break;
2156 }
2157 case InlineAsm::isInput: {
Chris Lattner9fed5b62006-02-27 23:45:39 +00002158 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
Chris Lattner1558fc62006-02-01 18:59:47 +00002159 OpNum++; // Consumes a call operand.
Chris Lattner65ad53f2006-02-04 02:16:44 +00002160
Chris Lattner7f5880b2006-02-02 00:25:23 +00002161 if (isdigit(ConstraintCode[0])) { // Matching constraint?
2162 // If this is required to match an output register we have already set,
2163 // just use its register.
2164 unsigned OperandNo = atoi(ConstraintCode.c_str());
Chris Lattner65ad53f2006-02-04 02:16:44 +00002165
Chris Lattner571d9642006-02-23 19:21:04 +00002166 // Scan until we find the definition we already emitted of this operand.
2167 // When we find it, create a RegsForValue operand.
2168 unsigned CurOp = 2; // The first operand.
2169 for (; OperandNo; --OperandNo) {
2170 // Advance to the next operand.
2171 unsigned NumOps =
2172 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattnerb0305322006-07-20 19:02:21 +00002173 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
2174 (NumOps & 7) == 4 /*MEM*/) &&
Chris Lattner571d9642006-02-23 19:21:04 +00002175 "Skipped past definitions?");
2176 CurOp += (NumOps>>3)+1;
2177 }
2178
2179 unsigned NumOps =
2180 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2181 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2182 "Skipped past definitions?");
2183
2184 // Add NumOps>>3 registers to MatchedRegs.
2185 RegsForValue MatchedRegs;
2186 MatchedRegs.ValueVT = InOperandVal.getValueType();
2187 MatchedRegs.RegVT = AsmNodeOperands[CurOp+1].getValueType();
2188 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
2189 unsigned Reg=cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
2190 MatchedRegs.Regs.push_back(Reg);
2191 }
2192
2193 // Use the produced MatchedRegs object to
Evan Chengef9e07d2006-06-15 08:11:54 +00002194 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag,
2195 TLI.getPointerTy());
Chris Lattner571d9642006-02-23 19:21:04 +00002196 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattner571d9642006-02-23 19:21:04 +00002197 break;
Chris Lattner7f5880b2006-02-02 00:25:23 +00002198 }
Chris Lattner7ef7a642006-02-24 01:11:24 +00002199
2200 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2201 if (ConstraintCode.size() == 1) // not a physreg name.
2202 CTy = TLI.getConstraintType(ConstraintCode[0]);
2203
2204 if (CTy == TargetLowering::C_Other) {
2205 if (!TLI.isOperandValidForConstraint(InOperandVal, ConstraintCode[0]))
2206 assert(0 && "MATCH FAIL!");
2207
2208 // Add information to the INLINEASM node to know about this input.
2209 unsigned ResOpType = 3 /*IMM*/ | (1 << 3);
2210 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2211 AsmNodeOperands.push_back(InOperandVal);
2212 break;
2213 } else if (CTy == TargetLowering::C_Memory) {
2214 // Memory input.
2215
2216 // Check that the operand isn't a float.
2217 if (!MVT::isInteger(InOperandVal.getValueType()))
2218 assert(0 && "MATCH FAIL!");
2219
2220 // Extend/truncate to the right pointer type if needed.
2221 MVT::ValueType PtrType = TLI.getPointerTy();
2222 if (InOperandVal.getValueType() < PtrType)
2223 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2224 else if (InOperandVal.getValueType() > PtrType)
2225 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2226
2227 // Add information to the INLINEASM node to know about this input.
2228 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2229 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2230 AsmNodeOperands.push_back(InOperandVal);
2231 break;
2232 }
2233
2234 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2235
2236 // Copy the input into the appropriate registers.
2237 RegsForValue InRegs =
2238 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2239 false, true, OutputRegs, InputRegs);
2240 // FIXME: should be match fail.
2241 assert(!InRegs.Regs.empty() && "Couldn't allocate input reg!");
2242
Evan Chengef9e07d2006-06-15 08:11:54 +00002243 InRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag, TLI.getPointerTy());
Chris Lattner7ef7a642006-02-24 01:11:24 +00002244
2245 InRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattner2e56e892006-01-31 02:03:41 +00002246 break;
2247 }
Chris Lattner571d9642006-02-23 19:21:04 +00002248 case InlineAsm::isClobber: {
2249 RegsForValue ClobberedRegs =
2250 GetRegistersForValue(ConstraintCode, MVT::Other, false, false,
2251 OutputRegs, InputRegs);
2252 // Add the clobbered value to the operand list, so that the register
2253 // allocator is aware that the physreg got clobbered.
2254 if (!ClobberedRegs.Regs.empty())
2255 ClobberedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner2e56e892006-01-31 02:03:41 +00002256 break;
2257 }
Chris Lattner571d9642006-02-23 19:21:04 +00002258 }
Chris Lattner2e56e892006-01-31 02:03:41 +00002259 }
Chris Lattner476e67b2006-01-26 22:24:51 +00002260
2261 // Finish up input operands.
2262 AsmNodeOperands[0] = Chain;
2263 if (Flag.Val) AsmNodeOperands.push_back(Flag);
2264
Chris Lattnerbd887772006-08-14 23:53:35 +00002265 Chain = DAG.getNode(ISD::INLINEASM,
2266 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002267 &AsmNodeOperands[0], AsmNodeOperands.size());
Chris Lattner476e67b2006-01-26 22:24:51 +00002268 Flag = Chain.getValue(1);
2269
Chris Lattner2e56e892006-01-31 02:03:41 +00002270 // If this asm returns a register value, copy the result from that register
2271 // and set it as the value of the call.
Chris Lattner6f87d182006-02-22 22:37:12 +00002272 if (!RetValRegs.Regs.empty())
2273 setValue(&I, RetValRegs.getCopyFromRegs(DAG, Chain, Flag));
Chris Lattner476e67b2006-01-26 22:24:51 +00002274
Chris Lattner2e56e892006-01-31 02:03:41 +00002275 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
2276
2277 // Process indirect outputs, first output all of the flagged copies out of
2278 // physregs.
2279 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner6f87d182006-02-22 22:37:12 +00002280 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner2e56e892006-01-31 02:03:41 +00002281 Value *Ptr = IndirectStoresToEmit[i].second;
Chris Lattner6f87d182006-02-22 22:37:12 +00002282 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, Flag);
2283 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner2e56e892006-01-31 02:03:41 +00002284 }
2285
2286 // Emit the non-flagged stores from the physregs.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002287 SmallVector<SDOperand, 8> OutChains;
Chris Lattner2e56e892006-01-31 02:03:41 +00002288 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Evan Chengdf9ac472006-10-05 23:01:46 +00002289 OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
Chris Lattner2e56e892006-01-31 02:03:41 +00002290 getValue(StoresToEmit[i].second),
Evan Chengab51cf22006-10-13 21:14:26 +00002291 StoresToEmit[i].second, 0));
Chris Lattner2e56e892006-01-31 02:03:41 +00002292 if (!OutChains.empty())
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002293 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
2294 &OutChains[0], OutChains.size());
Chris Lattner476e67b2006-01-26 22:24:51 +00002295 DAG.setRoot(Chain);
2296}
2297
2298
Chris Lattner7a60d912005-01-07 07:47:53 +00002299void SelectionDAGLowering::visitMalloc(MallocInst &I) {
2300 SDOperand Src = getValue(I.getOperand(0));
2301
2302 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattnereccb73d2005-01-22 23:04:37 +00002303
2304 if (IntPtr < Src.getValueType())
2305 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
2306 else if (IntPtr > Src.getValueType())
2307 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner7a60d912005-01-07 07:47:53 +00002308
2309 // Scale the source by the type size.
Owen Anderson20a631f2006-05-03 01:29:57 +00002310 uint64_t ElementSize = TD->getTypeSize(I.getType()->getElementType());
Chris Lattner7a60d912005-01-07 07:47:53 +00002311 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
2312 Src, getIntPtrConstant(ElementSize));
2313
2314 std::vector<std::pair<SDOperand, const Type*> > Args;
Owen Anderson20a631f2006-05-03 01:29:57 +00002315 Args.push_back(std::make_pair(Src, TLI.getTargetData()->getIntPtrType()));
Chris Lattner1f45cd72005-01-08 19:26:18 +00002316
2317 std::pair<SDOperand,SDOperand> Result =
Chris Lattner2e77db62005-05-13 18:50:42 +00002318 TLI.LowerCallTo(getRoot(), I.getType(), false, CallingConv::C, true,
Chris Lattner1f45cd72005-01-08 19:26:18 +00002319 DAG.getExternalSymbol("malloc", IntPtr),
2320 Args, DAG);
2321 setValue(&I, Result.first); // Pointers always fit in registers
2322 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00002323}
2324
2325void SelectionDAGLowering::visitFree(FreeInst &I) {
2326 std::vector<std::pair<SDOperand, const Type*> > Args;
2327 Args.push_back(std::make_pair(getValue(I.getOperand(0)),
Owen Anderson20a631f2006-05-03 01:29:57 +00002328 TLI.getTargetData()->getIntPtrType()));
Chris Lattner7a60d912005-01-07 07:47:53 +00002329 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattner1f45cd72005-01-08 19:26:18 +00002330 std::pair<SDOperand,SDOperand> Result =
Chris Lattner2e77db62005-05-13 18:50:42 +00002331 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, CallingConv::C, true,
Chris Lattner1f45cd72005-01-08 19:26:18 +00002332 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
2333 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00002334}
2335
Chris Lattner13d7c252005-08-26 20:54:47 +00002336// InsertAtEndOfBasicBlock - This method should be implemented by targets that
2337// mark instructions with the 'usesCustomDAGSchedInserter' flag. These
2338// instructions are special in various ways, which require special support to
2339// insert. The specified MachineInstr is created but not inserted into any
2340// basic blocks, and the scheduler passes ownership of it to this method.
2341MachineBasicBlock *TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
2342 MachineBasicBlock *MBB) {
2343 std::cerr << "If a target marks an instruction with "
2344 "'usesCustomDAGSchedInserter', it must implement "
2345 "TargetLowering::InsertAtEndOfBasicBlock!\n";
2346 abort();
2347 return 0;
2348}
2349
Chris Lattner58cfd792005-01-09 00:00:49 +00002350void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00002351 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
2352 getValue(I.getOperand(1)),
2353 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner58cfd792005-01-09 00:00:49 +00002354}
2355
2356void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00002357 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
2358 getValue(I.getOperand(0)),
2359 DAG.getSrcValue(I.getOperand(0)));
2360 setValue(&I, V);
2361 DAG.setRoot(V.getValue(1));
Chris Lattner7a60d912005-01-07 07:47:53 +00002362}
2363
2364void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00002365 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
2366 getValue(I.getOperand(1)),
2367 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner7a60d912005-01-07 07:47:53 +00002368}
2369
2370void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00002371 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
2372 getValue(I.getOperand(1)),
2373 getValue(I.getOperand(2)),
2374 DAG.getSrcValue(I.getOperand(1)),
2375 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner7a60d912005-01-07 07:47:53 +00002376}
2377
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002378/// TargetLowering::LowerArguments - This is the default LowerArguments
2379/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattneraaa23d92006-05-16 22:53:20 +00002380/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
2381/// integrated into SDISel.
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002382std::vector<SDOperand>
2383TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
2384 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
2385 std::vector<SDOperand> Ops;
Chris Lattner3d826992006-05-16 06:45:34 +00002386 Ops.push_back(DAG.getRoot());
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002387 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
2388 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
2389
2390 // Add one result value for each formal argument.
2391 std::vector<MVT::ValueType> RetVals;
2392 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2393 MVT::ValueType VT = getValueType(I->getType());
2394
2395 switch (getTypeAction(VT)) {
2396 default: assert(0 && "Unknown type action!");
2397 case Legal:
2398 RetVals.push_back(VT);
2399 break;
2400 case Promote:
2401 RetVals.push_back(getTypeToTransformTo(VT));
2402 break;
2403 case Expand:
2404 if (VT != MVT::Vector) {
2405 // If this is a large integer, it needs to be broken up into small
2406 // integers. Figure out what the destination type is and how many small
2407 // integers it turns into.
2408 MVT::ValueType NVT = getTypeToTransformTo(VT);
2409 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2410 for (unsigned i = 0; i != NumVals; ++i)
2411 RetVals.push_back(NVT);
2412 } else {
2413 // Otherwise, this is a vector type. We only support legal vectors
2414 // right now.
2415 unsigned NumElems = cast<PackedType>(I->getType())->getNumElements();
2416 const Type *EltTy = cast<PackedType>(I->getType())->getElementType();
Evan Cheng3784f3c52006-04-27 08:29:42 +00002417
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002418 // Figure out if there is a Packed type corresponding to this Vector
2419 // type. If so, convert to the packed type.
2420 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2421 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2422 RetVals.push_back(TVT);
2423 } else {
2424 assert(0 && "Don't support illegal by-val vector arguments yet!");
2425 }
2426 }
2427 break;
2428 }
2429 }
Evan Cheng9618df12006-04-25 23:03:35 +00002430
Chris Lattner3d826992006-05-16 06:45:34 +00002431 RetVals.push_back(MVT::Other);
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002432
2433 // Create the node.
Chris Lattnerbd887772006-08-14 23:53:35 +00002434 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
2435 DAG.getNodeValueTypes(RetVals), RetVals.size(),
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002436 &Ops[0], Ops.size()).Val;
Chris Lattner3d826992006-05-16 06:45:34 +00002437
2438 DAG.setRoot(SDOperand(Result, Result->getNumValues()-1));
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002439
2440 // Set up the return result vector.
2441 Ops.clear();
2442 unsigned i = 0;
2443 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2444 MVT::ValueType VT = getValueType(I->getType());
2445
2446 switch (getTypeAction(VT)) {
2447 default: assert(0 && "Unknown type action!");
2448 case Legal:
2449 Ops.push_back(SDOperand(Result, i++));
2450 break;
2451 case Promote: {
2452 SDOperand Op(Result, i++);
2453 if (MVT::isInteger(VT)) {
2454 unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext
2455 : ISD::AssertZext;
2456 Op = DAG.getNode(AssertOp, Op.getValueType(), Op, DAG.getValueType(VT));
2457 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2458 } else {
2459 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2460 Op = DAG.getNode(ISD::FP_ROUND, VT, Op);
2461 }
2462 Ops.push_back(Op);
2463 break;
2464 }
2465 case Expand:
2466 if (VT != MVT::Vector) {
2467 // If this is a large integer, it needs to be reassembled from small
2468 // integers. Figure out what the source elt type is and how many small
2469 // integers it is.
2470 MVT::ValueType NVT = getTypeToTransformTo(VT);
2471 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2472 if (NumVals == 2) {
2473 SDOperand Lo = SDOperand(Result, i++);
2474 SDOperand Hi = SDOperand(Result, i++);
2475
2476 if (!isLittleEndian())
2477 std::swap(Lo, Hi);
2478
2479 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi));
2480 } else {
2481 // Value scalarized into many values. Unimp for now.
2482 assert(0 && "Cannot expand i64 -> i16 yet!");
2483 }
2484 } else {
2485 // Otherwise, this is a vector type. We only support legal vectors
2486 // right now.
Evan Chengd43c5c62006-04-28 05:25:15 +00002487 const PackedType *PTy = cast<PackedType>(I->getType());
2488 unsigned NumElems = PTy->getNumElements();
2489 const Type *EltTy = PTy->getElementType();
Evan Cheng3784f3c52006-04-27 08:29:42 +00002490
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002491 // Figure out if there is a Packed type corresponding to this Vector
2492 // type. If so, convert to the packed type.
2493 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
Chris Lattner7949c2e2006-05-17 20:49:36 +00002494 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Evan Chengd43c5c62006-04-28 05:25:15 +00002495 SDOperand N = SDOperand(Result, i++);
2496 // Handle copies from generic vectors to registers.
Chris Lattner7949c2e2006-05-17 20:49:36 +00002497 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
2498 DAG.getConstant(NumElems, MVT::i32),
2499 DAG.getValueType(getValueType(EltTy)));
2500 Ops.push_back(N);
2501 } else {
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002502 assert(0 && "Don't support illegal by-val vector arguments yet!");
Chris Lattnerb77ba732006-05-16 23:39:44 +00002503 abort();
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002504 }
2505 }
2506 break;
2507 }
2508 }
2509 return Ops;
2510}
2511
Chris Lattneraaa23d92006-05-16 22:53:20 +00002512
2513/// TargetLowering::LowerCallTo - This is the default LowerCallTo
2514/// implementation, which just inserts an ISD::CALL node, which is later custom
2515/// lowered by the target to something concrete. FIXME: When all targets are
2516/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
2517std::pair<SDOperand, SDOperand>
2518TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
2519 unsigned CallingConv, bool isTailCall,
2520 SDOperand Callee,
2521 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattner65879ca2006-08-16 22:57:46 +00002522 SmallVector<SDOperand, 32> Ops;
Chris Lattneraaa23d92006-05-16 22:53:20 +00002523 Ops.push_back(Chain); // Op#0 - Chain
2524 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
2525 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
2526 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
2527 Ops.push_back(Callee);
2528
2529 // Handle all of the outgoing arguments.
2530 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
2531 MVT::ValueType VT = getValueType(Args[i].second);
2532 SDOperand Op = Args[i].first;
Evan Cheng45827712006-05-25 00:55:32 +00002533 bool isSigned = Args[i].second->isSigned();
Chris Lattneraaa23d92006-05-16 22:53:20 +00002534 switch (getTypeAction(VT)) {
2535 default: assert(0 && "Unknown type action!");
2536 case Legal:
2537 Ops.push_back(Op);
Evan Cheng21dee4e2006-05-26 23:13:20 +00002538 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattneraaa23d92006-05-16 22:53:20 +00002539 break;
2540 case Promote:
2541 if (MVT::isInteger(VT)) {
Evan Cheng45827712006-05-25 00:55:32 +00002542 unsigned ExtOp = isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Chris Lattneraaa23d92006-05-16 22:53:20 +00002543 Op = DAG.getNode(ExtOp, getTypeToTransformTo(VT), Op);
2544 } else {
2545 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2546 Op = DAG.getNode(ISD::FP_EXTEND, getTypeToTransformTo(VT), Op);
2547 }
2548 Ops.push_back(Op);
Evan Cheng21dee4e2006-05-26 23:13:20 +00002549 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattneraaa23d92006-05-16 22:53:20 +00002550 break;
2551 case Expand:
2552 if (VT != MVT::Vector) {
2553 // If this is a large integer, it needs to be broken down into small
2554 // integers. Figure out what the source elt type is and how many small
2555 // integers it is.
2556 MVT::ValueType NVT = getTypeToTransformTo(VT);
2557 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2558 if (NumVals == 2) {
2559 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2560 DAG.getConstant(0, getPointerTy()));
2561 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2562 DAG.getConstant(1, getPointerTy()));
2563 if (!isLittleEndian())
2564 std::swap(Lo, Hi);
2565
2566 Ops.push_back(Lo);
Evan Cheng21dee4e2006-05-26 23:13:20 +00002567 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattneraaa23d92006-05-16 22:53:20 +00002568 Ops.push_back(Hi);
Evan Cheng21dee4e2006-05-26 23:13:20 +00002569 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattneraaa23d92006-05-16 22:53:20 +00002570 } else {
2571 // Value scalarized into many values. Unimp for now.
2572 assert(0 && "Cannot expand i64 -> i16 yet!");
2573 }
2574 } else {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002575 // Otherwise, this is a vector type. We only support legal vectors
2576 // right now.
2577 const PackedType *PTy = cast<PackedType>(Args[i].second);
2578 unsigned NumElems = PTy->getNumElements();
2579 const Type *EltTy = PTy->getElementType();
2580
2581 // Figure out if there is a Packed type corresponding to this Vector
2582 // type. If so, convert to the packed type.
2583 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
Chris Lattner938155c2006-05-17 20:43:21 +00002584 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2585 // Insert a VBIT_CONVERT of the MVT::Vector type to the packed type.
2586 Op = DAG.getNode(ISD::VBIT_CONVERT, TVT, Op);
2587 Ops.push_back(Op);
Evan Cheng21dee4e2006-05-26 23:13:20 +00002588 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattner938155c2006-05-17 20:43:21 +00002589 } else {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002590 assert(0 && "Don't support illegal by-val vector call args yet!");
2591 abort();
2592 }
Chris Lattneraaa23d92006-05-16 22:53:20 +00002593 }
2594 break;
2595 }
2596 }
2597
2598 // Figure out the result value types.
Chris Lattner65879ca2006-08-16 22:57:46 +00002599 SmallVector<MVT::ValueType, 4> RetTys;
Chris Lattneraaa23d92006-05-16 22:53:20 +00002600
2601 if (RetTy != Type::VoidTy) {
2602 MVT::ValueType VT = getValueType(RetTy);
2603 switch (getTypeAction(VT)) {
2604 default: assert(0 && "Unknown type action!");
2605 case Legal:
2606 RetTys.push_back(VT);
2607 break;
2608 case Promote:
2609 RetTys.push_back(getTypeToTransformTo(VT));
2610 break;
2611 case Expand:
2612 if (VT != MVT::Vector) {
2613 // If this is a large integer, it needs to be reassembled from small
2614 // integers. Figure out what the source elt type is and how many small
2615 // integers it is.
2616 MVT::ValueType NVT = getTypeToTransformTo(VT);
2617 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2618 for (unsigned i = 0; i != NumVals; ++i)
2619 RetTys.push_back(NVT);
2620 } else {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002621 // Otherwise, this is a vector type. We only support legal vectors
2622 // right now.
2623 const PackedType *PTy = cast<PackedType>(RetTy);
2624 unsigned NumElems = PTy->getNumElements();
2625 const Type *EltTy = PTy->getElementType();
2626
2627 // Figure out if there is a Packed type corresponding to this Vector
2628 // type. If so, convert to the packed type.
2629 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2630 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2631 RetTys.push_back(TVT);
2632 } else {
2633 assert(0 && "Don't support illegal by-val vector call results yet!");
2634 abort();
2635 }
Chris Lattneraaa23d92006-05-16 22:53:20 +00002636 }
2637 }
2638 }
2639
2640 RetTys.push_back(MVT::Other); // Always has a chain.
2641
2642 // Finally, create the CALL node.
Chris Lattner65879ca2006-08-16 22:57:46 +00002643 SDOperand Res = DAG.getNode(ISD::CALL,
2644 DAG.getVTList(&RetTys[0], RetTys.size()),
2645 &Ops[0], Ops.size());
Chris Lattneraaa23d92006-05-16 22:53:20 +00002646
2647 // This returns a pair of operands. The first element is the
2648 // return value for the function (if RetTy is not VoidTy). The second
2649 // element is the outgoing token chain.
2650 SDOperand ResVal;
2651 if (RetTys.size() != 1) {
2652 MVT::ValueType VT = getValueType(RetTy);
2653 if (RetTys.size() == 2) {
2654 ResVal = Res;
2655
2656 // If this value was promoted, truncate it down.
2657 if (ResVal.getValueType() != VT) {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002658 if (VT == MVT::Vector) {
2659 // Insert a VBITCONVERT to convert from the packed result type to the
2660 // MVT::Vector type.
2661 unsigned NumElems = cast<PackedType>(RetTy)->getNumElements();
2662 const Type *EltTy = cast<PackedType>(RetTy)->getElementType();
2663
2664 // Figure out if there is a Packed type corresponding to this Vector
2665 // type. If so, convert to the packed type.
2666 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2667 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002668 // Insert a VBIT_CONVERT of the FORMAL_ARGUMENTS to a
2669 // "N x PTyElementVT" MVT::Vector type.
2670 ResVal = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, ResVal,
Chris Lattner7949c2e2006-05-17 20:49:36 +00002671 DAG.getConstant(NumElems, MVT::i32),
2672 DAG.getValueType(getValueType(EltTy)));
Chris Lattnerb77ba732006-05-16 23:39:44 +00002673 } else {
2674 abort();
2675 }
2676 } else if (MVT::isInteger(VT)) {
Chris Lattneraaa23d92006-05-16 22:53:20 +00002677 unsigned AssertOp = RetTy->isSigned() ?
2678 ISD::AssertSext : ISD::AssertZext;
2679 ResVal = DAG.getNode(AssertOp, ResVal.getValueType(), ResVal,
2680 DAG.getValueType(VT));
2681 ResVal = DAG.getNode(ISD::TRUNCATE, VT, ResVal);
2682 } else {
2683 assert(MVT::isFloatingPoint(VT));
2684 ResVal = DAG.getNode(ISD::FP_ROUND, VT, ResVal);
2685 }
2686 }
2687 } else if (RetTys.size() == 3) {
2688 ResVal = DAG.getNode(ISD::BUILD_PAIR, VT,
2689 Res.getValue(0), Res.getValue(1));
2690
2691 } else {
2692 assert(0 && "Case not handled yet!");
2693 }
2694 }
2695
2696 return std::make_pair(ResVal, Res.getValue(Res.Val->getNumValues()-1));
2697}
2698
2699
2700
Chris Lattner58cfd792005-01-09 00:00:49 +00002701// It is always conservatively correct for llvm.returnaddress and
2702// llvm.frameaddress to return 0.
Chris Lattneraaa23d92006-05-16 22:53:20 +00002703//
2704// FIXME: Change this to insert a FRAMEADDR/RETURNADDR node, and have that be
2705// expanded to 0 if the target wants.
Chris Lattner58cfd792005-01-09 00:00:49 +00002706std::pair<SDOperand, SDOperand>
2707TargetLowering::LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain,
2708 unsigned Depth, SelectionDAG &DAG) {
2709 return std::make_pair(DAG.getConstant(0, getPointerTy()), Chain);
Chris Lattner7a60d912005-01-07 07:47:53 +00002710}
2711
Chris Lattner29dcc712005-05-14 05:50:48 +00002712SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner897cd7d2005-01-16 07:28:41 +00002713 assert(0 && "LowerOperation not implemented for this target!");
2714 abort();
Misha Brukman73e929f2005-02-17 21:39:27 +00002715 return SDOperand();
Chris Lattner897cd7d2005-01-16 07:28:41 +00002716}
2717
Nate Begeman595ec732006-01-28 03:14:31 +00002718SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
2719 SelectionDAG &DAG) {
2720 assert(0 && "CustomPromoteOperation not implemented for this target!");
2721 abort();
2722 return SDOperand();
2723}
2724
Chris Lattner58cfd792005-01-09 00:00:49 +00002725void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) {
2726 unsigned Depth = (unsigned)cast<ConstantUInt>(I.getOperand(1))->getValue();
2727 std::pair<SDOperand,SDOperand> Result =
Chris Lattner4108bb02005-01-17 19:43:36 +00002728 TLI.LowerFrameReturnAddress(isFrame, getRoot(), Depth, DAG);
Chris Lattner58cfd792005-01-09 00:00:49 +00002729 setValue(&I, Result.first);
2730 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00002731}
2732
Evan Cheng6781b6e2006-02-15 21:59:04 +00002733/// getMemsetValue - Vectorized representation of the memset value
Evan Cheng81fcea82006-02-14 08:22:34 +00002734/// operand.
2735static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT,
Evan Cheng93e48652006-02-15 22:12:35 +00002736 SelectionDAG &DAG) {
Evan Cheng81fcea82006-02-14 08:22:34 +00002737 MVT::ValueType CurVT = VT;
2738 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
2739 uint64_t Val = C->getValue() & 255;
2740 unsigned Shift = 8;
2741 while (CurVT != MVT::i8) {
2742 Val = (Val << Shift) | Val;
2743 Shift <<= 1;
2744 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00002745 }
2746 return DAG.getConstant(Val, VT);
2747 } else {
2748 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2749 unsigned Shift = 8;
2750 while (CurVT != MVT::i8) {
2751 Value =
2752 DAG.getNode(ISD::OR, VT,
2753 DAG.getNode(ISD::SHL, VT, Value,
2754 DAG.getConstant(Shift, MVT::i8)), Value);
2755 Shift <<= 1;
2756 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00002757 }
2758
2759 return Value;
2760 }
2761}
2762
Evan Cheng6781b6e2006-02-15 21:59:04 +00002763/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2764/// used when a memcpy is turned into a memset when the source is a constant
2765/// string ptr.
2766static SDOperand getMemsetStringVal(MVT::ValueType VT,
2767 SelectionDAG &DAG, TargetLowering &TLI,
2768 std::string &Str, unsigned Offset) {
2769 MVT::ValueType CurVT = VT;
2770 uint64_t Val = 0;
2771 unsigned MSB = getSizeInBits(VT) / 8;
2772 if (TLI.isLittleEndian())
2773 Offset = Offset + MSB - 1;
2774 for (unsigned i = 0; i != MSB; ++i) {
2775 Val = (Val << 8) | Str[Offset];
2776 Offset += TLI.isLittleEndian() ? -1 : 1;
2777 }
2778 return DAG.getConstant(Val, VT);
2779}
2780
Evan Cheng81fcea82006-02-14 08:22:34 +00002781/// getMemBasePlusOffset - Returns base and offset node for the
2782static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
2783 SelectionDAG &DAG, TargetLowering &TLI) {
2784 MVT::ValueType VT = Base.getValueType();
2785 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2786}
2787
Evan Chengdb2a7a72006-02-14 20:12:38 +00002788/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
Evan Chengd5026102006-02-14 09:11:59 +00002789/// to replace the memset / memcpy is below the threshold. It also returns the
2790/// types of the sequence of memory ops to perform memset / memcpy.
Evan Chengdb2a7a72006-02-14 20:12:38 +00002791static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps,
2792 unsigned Limit, uint64_t Size,
2793 unsigned Align, TargetLowering &TLI) {
Evan Cheng81fcea82006-02-14 08:22:34 +00002794 MVT::ValueType VT;
2795
2796 if (TLI.allowsUnalignedMemoryAccesses()) {
2797 VT = MVT::i64;
2798 } else {
2799 switch (Align & 7) {
2800 case 0:
2801 VT = MVT::i64;
2802 break;
2803 case 4:
2804 VT = MVT::i32;
2805 break;
2806 case 2:
2807 VT = MVT::i16;
2808 break;
2809 default:
2810 VT = MVT::i8;
2811 break;
2812 }
2813 }
2814
Evan Chengd5026102006-02-14 09:11:59 +00002815 MVT::ValueType LVT = MVT::i64;
2816 while (!TLI.isTypeLegal(LVT))
2817 LVT = (MVT::ValueType)((unsigned)LVT - 1);
2818 assert(MVT::isInteger(LVT));
Evan Cheng81fcea82006-02-14 08:22:34 +00002819
Evan Chengd5026102006-02-14 09:11:59 +00002820 if (VT > LVT)
2821 VT = LVT;
2822
Evan Cheng04514992006-02-14 23:05:54 +00002823 unsigned NumMemOps = 0;
Evan Cheng81fcea82006-02-14 08:22:34 +00002824 while (Size != 0) {
2825 unsigned VTSize = getSizeInBits(VT) / 8;
2826 while (VTSize > Size) {
2827 VT = (MVT::ValueType)((unsigned)VT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00002828 VTSize >>= 1;
2829 }
Evan Chengd5026102006-02-14 09:11:59 +00002830 assert(MVT::isInteger(VT));
2831
2832 if (++NumMemOps > Limit)
2833 return false;
Evan Cheng81fcea82006-02-14 08:22:34 +00002834 MemOps.push_back(VT);
2835 Size -= VTSize;
2836 }
Evan Chengd5026102006-02-14 09:11:59 +00002837
2838 return true;
Evan Cheng81fcea82006-02-14 08:22:34 +00002839}
2840
Chris Lattner875def92005-01-11 05:56:49 +00002841void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) {
Evan Cheng81fcea82006-02-14 08:22:34 +00002842 SDOperand Op1 = getValue(I.getOperand(1));
2843 SDOperand Op2 = getValue(I.getOperand(2));
2844 SDOperand Op3 = getValue(I.getOperand(3));
2845 SDOperand Op4 = getValue(I.getOperand(4));
2846 unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue();
2847 if (Align == 0) Align = 1;
2848
2849 if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) {
2850 std::vector<MVT::ValueType> MemOps;
Evan Cheng81fcea82006-02-14 08:22:34 +00002851
2852 // Expand memset / memcpy to a series of load / store ops
2853 // if the size operand falls below a certain threshold.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002854 SmallVector<SDOperand, 8> OutChains;
Evan Cheng81fcea82006-02-14 08:22:34 +00002855 switch (Op) {
Evan Cheng038521e2006-02-14 19:45:56 +00002856 default: break; // Do nothing for now.
Evan Cheng81fcea82006-02-14 08:22:34 +00002857 case ISD::MEMSET: {
Evan Chengdb2a7a72006-02-14 20:12:38 +00002858 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
2859 Size->getValue(), Align, TLI)) {
Evan Chengd5026102006-02-14 09:11:59 +00002860 unsigned NumMemOps = MemOps.size();
Evan Cheng81fcea82006-02-14 08:22:34 +00002861 unsigned Offset = 0;
2862 for (unsigned i = 0; i < NumMemOps; i++) {
2863 MVT::ValueType VT = MemOps[i];
2864 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Cheng93e48652006-02-15 22:12:35 +00002865 SDOperand Value = getMemsetValue(Op2, VT, DAG);
Evan Chengdf9ac472006-10-05 23:01:46 +00002866 SDOperand Store = DAG.getStore(getRoot(), Value,
Chris Lattner6f87d182006-02-22 22:37:12 +00002867 getMemBasePlusOffset(Op1, Offset, DAG, TLI),
Evan Chengab51cf22006-10-13 21:14:26 +00002868 I.getOperand(1), Offset);
Evan Chenge2038bd2006-02-15 01:54:51 +00002869 OutChains.push_back(Store);
Evan Cheng81fcea82006-02-14 08:22:34 +00002870 Offset += VTSize;
2871 }
Evan Cheng81fcea82006-02-14 08:22:34 +00002872 }
Evan Chenge2038bd2006-02-15 01:54:51 +00002873 break;
Evan Cheng81fcea82006-02-14 08:22:34 +00002874 }
Evan Chenge2038bd2006-02-15 01:54:51 +00002875 case ISD::MEMCPY: {
2876 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemcpy(),
2877 Size->getValue(), Align, TLI)) {
2878 unsigned NumMemOps = MemOps.size();
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002879 unsigned SrcOff = 0, DstOff = 0, SrcDelta = 0;
Evan Cheng6781b6e2006-02-15 21:59:04 +00002880 GlobalAddressSDNode *G = NULL;
2881 std::string Str;
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002882 bool CopyFromStr = false;
Evan Cheng6781b6e2006-02-15 21:59:04 +00002883
2884 if (Op2.getOpcode() == ISD::GlobalAddress)
2885 G = cast<GlobalAddressSDNode>(Op2);
2886 else if (Op2.getOpcode() == ISD::ADD &&
2887 Op2.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2888 Op2.getOperand(1).getOpcode() == ISD::Constant) {
2889 G = cast<GlobalAddressSDNode>(Op2.getOperand(0));
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002890 SrcDelta = cast<ConstantSDNode>(Op2.getOperand(1))->getValue();
Evan Cheng6781b6e2006-02-15 21:59:04 +00002891 }
2892 if (G) {
2893 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002894 if (GV) {
Evan Cheng38280c02006-03-10 23:52:03 +00002895 Str = GV->getStringValue(false);
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002896 if (!Str.empty()) {
2897 CopyFromStr = true;
2898 SrcOff += SrcDelta;
2899 }
2900 }
Evan Cheng6781b6e2006-02-15 21:59:04 +00002901 }
2902
Evan Chenge2038bd2006-02-15 01:54:51 +00002903 for (unsigned i = 0; i < NumMemOps; i++) {
2904 MVT::ValueType VT = MemOps[i];
2905 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Cheng6781b6e2006-02-15 21:59:04 +00002906 SDOperand Value, Chain, Store;
2907
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002908 if (CopyFromStr) {
Evan Cheng6781b6e2006-02-15 21:59:04 +00002909 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
2910 Chain = getRoot();
2911 Store =
Evan Chengdf9ac472006-10-05 23:01:46 +00002912 DAG.getStore(Chain, Value,
2913 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
Evan Chengab51cf22006-10-13 21:14:26 +00002914 I.getOperand(1), DstOff);
Evan Cheng6781b6e2006-02-15 21:59:04 +00002915 } else {
2916 Value = DAG.getLoad(VT, getRoot(),
2917 getMemBasePlusOffset(Op2, SrcOff, DAG, TLI),
Evan Chenge71fe34d2006-10-09 20:57:25 +00002918 I.getOperand(2), SrcOff);
Evan Cheng6781b6e2006-02-15 21:59:04 +00002919 Chain = Value.getValue(1);
2920 Store =
Evan Chengdf9ac472006-10-05 23:01:46 +00002921 DAG.getStore(Chain, Value,
2922 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
Evan Chengab51cf22006-10-13 21:14:26 +00002923 I.getOperand(1), DstOff);
Evan Cheng6781b6e2006-02-15 21:59:04 +00002924 }
Evan Chenge2038bd2006-02-15 01:54:51 +00002925 OutChains.push_back(Store);
Evan Cheng6781b6e2006-02-15 21:59:04 +00002926 SrcOff += VTSize;
2927 DstOff += VTSize;
Evan Chenge2038bd2006-02-15 01:54:51 +00002928 }
2929 }
2930 break;
2931 }
2932 }
2933
2934 if (!OutChains.empty()) {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002935 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other,
2936 &OutChains[0], OutChains.size()));
Evan Chenge2038bd2006-02-15 01:54:51 +00002937 return;
Evan Cheng81fcea82006-02-14 08:22:34 +00002938 }
2939 }
2940
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002941 DAG.setRoot(DAG.getNode(Op, MVT::Other, getRoot(), Op1, Op2, Op3, Op4));
Chris Lattner7a60d912005-01-07 07:47:53 +00002942}
2943
Chris Lattner875def92005-01-11 05:56:49 +00002944//===----------------------------------------------------------------------===//
2945// SelectionDAGISel code
2946//===----------------------------------------------------------------------===//
Chris Lattner7a60d912005-01-07 07:47:53 +00002947
2948unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) {
2949 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
2950}
2951
Chris Lattnerc9950c12005-08-17 06:37:43 +00002952void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner1a908c82005-08-18 17:35:14 +00002953 // FIXME: we only modify the CFG to split critical edges. This
2954 // updates dom and loop info.
Jim Laskeydcb2b832006-10-16 20:52:31 +00002955 AU.addRequired<AliasAnalysis>();
Chris Lattnerc9950c12005-08-17 06:37:43 +00002956}
Chris Lattner7a60d912005-01-07 07:47:53 +00002957
Chris Lattner35397782005-12-05 07:10:48 +00002958
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002959/// OptimizeNoopCopyExpression - We have determined that the specified cast
2960/// instruction is a noop copy (e.g. it's casting from one pointer type to
2961/// another, int->uint, or int->sbyte on PPC.
2962///
2963/// Return true if any changes are made.
2964static bool OptimizeNoopCopyExpression(CastInst *CI) {
2965 BasicBlock *DefBB = CI->getParent();
2966
2967 /// InsertedCasts - Only insert a cast in each block once.
2968 std::map<BasicBlock*, CastInst*> InsertedCasts;
2969
2970 bool MadeChange = false;
2971 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
2972 UI != E; ) {
2973 Use &TheUse = UI.getUse();
2974 Instruction *User = cast<Instruction>(*UI);
2975
2976 // Figure out which BB this cast is used in. For PHI's this is the
2977 // appropriate predecessor block.
2978 BasicBlock *UserBB = User->getParent();
2979 if (PHINode *PN = dyn_cast<PHINode>(User)) {
2980 unsigned OpVal = UI.getOperandNo()/2;
2981 UserBB = PN->getIncomingBlock(OpVal);
2982 }
2983
2984 // Preincrement use iterator so we don't invalidate it.
2985 ++UI;
2986
2987 // If this user is in the same block as the cast, don't change the cast.
2988 if (UserBB == DefBB) continue;
2989
2990 // If we have already inserted a cast into this block, use it.
2991 CastInst *&InsertedCast = InsertedCasts[UserBB];
2992
2993 if (!InsertedCast) {
2994 BasicBlock::iterator InsertPt = UserBB->begin();
2995 while (isa<PHINode>(InsertPt)) ++InsertPt;
2996
2997 InsertedCast =
2998 new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
2999 MadeChange = true;
3000 }
3001
3002 // Replace a use of the cast with a use of the new casat.
3003 TheUse = InsertedCast;
3004 }
3005
3006 // If we removed all uses, nuke the cast.
3007 if (CI->use_empty())
3008 CI->eraseFromParent();
3009
3010 return MadeChange;
3011}
3012
Chris Lattner35397782005-12-05 07:10:48 +00003013/// InsertGEPComputeCode - Insert code into BB to compute Ptr+PtrOffset,
3014/// casting to the type of GEPI.
Chris Lattner21cd9902006-05-06 09:10:37 +00003015static Instruction *InsertGEPComputeCode(Instruction *&V, BasicBlock *BB,
3016 Instruction *GEPI, Value *Ptr,
3017 Value *PtrOffset) {
Chris Lattner35397782005-12-05 07:10:48 +00003018 if (V) return V; // Already computed.
3019
3020 BasicBlock::iterator InsertPt;
3021 if (BB == GEPI->getParent()) {
3022 // If insert into the GEP's block, insert right after the GEP.
3023 InsertPt = GEPI;
3024 ++InsertPt;
3025 } else {
3026 // Otherwise, insert at the top of BB, after any PHI nodes
3027 InsertPt = BB->begin();
3028 while (isa<PHINode>(InsertPt)) ++InsertPt;
3029 }
3030
Chris Lattnerbe73d6e2005-12-08 08:00:12 +00003031 // If Ptr is itself a cast, but in some other BB, emit a copy of the cast into
3032 // BB so that there is only one value live across basic blocks (the cast
3033 // operand).
3034 if (CastInst *CI = dyn_cast<CastInst>(Ptr))
3035 if (CI->getParent() != BB && isa<PointerType>(CI->getOperand(0)->getType()))
3036 Ptr = new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
3037
Chris Lattner35397782005-12-05 07:10:48 +00003038 // Add the offset, cast it to the right type.
3039 Ptr = BinaryOperator::createAdd(Ptr, PtrOffset, "", InsertPt);
Chris Lattner21cd9902006-05-06 09:10:37 +00003040 return V = new CastInst(Ptr, GEPI->getType(), "", InsertPt);
Chris Lattner35397782005-12-05 07:10:48 +00003041}
3042
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003043/// ReplaceUsesOfGEPInst - Replace all uses of RepPtr with inserted code to
3044/// compute its value. The RepPtr value can be computed with Ptr+PtrOffset. One
3045/// trivial way of doing this would be to evaluate Ptr+PtrOffset in RepPtr's
3046/// block, then ReplaceAllUsesWith'ing everything. However, we would prefer to
3047/// sink PtrOffset into user blocks where doing so will likely allow us to fold
3048/// the constant add into a load or store instruction. Additionally, if a user
3049/// is a pointer-pointer cast, we look through it to find its users.
3050static void ReplaceUsesOfGEPInst(Instruction *RepPtr, Value *Ptr,
3051 Constant *PtrOffset, BasicBlock *DefBB,
3052 GetElementPtrInst *GEPI,
Chris Lattner21cd9902006-05-06 09:10:37 +00003053 std::map<BasicBlock*,Instruction*> &InsertedExprs) {
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003054 while (!RepPtr->use_empty()) {
3055 Instruction *User = cast<Instruction>(RepPtr->use_back());
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003056
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003057 // If the user is a Pointer-Pointer cast, recurse.
3058 if (isa<CastInst>(User) && isa<PointerType>(User->getType())) {
3059 ReplaceUsesOfGEPInst(User, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003060
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003061 // Drop the use of RepPtr. The cast is dead. Don't delete it now, else we
3062 // could invalidate an iterator.
3063 User->setOperand(0, UndefValue::get(RepPtr->getType()));
3064 continue;
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003065 }
3066
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003067 // If this is a load of the pointer, or a store through the pointer, emit
3068 // the increment into the load/store block.
Chris Lattner21cd9902006-05-06 09:10:37 +00003069 Instruction *NewVal;
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003070 if (isa<LoadInst>(User) ||
3071 (isa<StoreInst>(User) && User->getOperand(0) != RepPtr)) {
3072 NewVal = InsertGEPComputeCode(InsertedExprs[User->getParent()],
3073 User->getParent(), GEPI,
3074 Ptr, PtrOffset);
3075 } else {
3076 // If this use is not foldable into the addressing mode, use a version
3077 // emitted in the GEP block.
3078 NewVal = InsertGEPComputeCode(InsertedExprs[DefBB], DefBB, GEPI,
3079 Ptr, PtrOffset);
3080 }
3081
Chris Lattner21cd9902006-05-06 09:10:37 +00003082 if (GEPI->getType() != RepPtr->getType()) {
3083 BasicBlock::iterator IP = NewVal;
3084 ++IP;
3085 NewVal = new CastInst(NewVal, RepPtr->getType(), "", IP);
3086 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003087 User->replaceUsesOfWith(RepPtr, NewVal);
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003088 }
3089}
Chris Lattner35397782005-12-05 07:10:48 +00003090
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003091
Chris Lattner35397782005-12-05 07:10:48 +00003092/// OptimizeGEPExpression - Since we are doing basic-block-at-a-time instruction
3093/// selection, we want to be a bit careful about some things. In particular, if
3094/// we have a GEP instruction that is used in a different block than it is
3095/// defined, the addressing expression of the GEP cannot be folded into loads or
3096/// stores that use it. In this case, decompose the GEP and move constant
3097/// indices into blocks that use it.
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003098static bool OptimizeGEPExpression(GetElementPtrInst *GEPI,
Owen Anderson20a631f2006-05-03 01:29:57 +00003099 const TargetData *TD) {
Chris Lattner35397782005-12-05 07:10:48 +00003100 // If this GEP is only used inside the block it is defined in, there is no
3101 // need to rewrite it.
3102 bool isUsedOutsideDefBB = false;
3103 BasicBlock *DefBB = GEPI->getParent();
3104 for (Value::use_iterator UI = GEPI->use_begin(), E = GEPI->use_end();
3105 UI != E; ++UI) {
3106 if (cast<Instruction>(*UI)->getParent() != DefBB) {
3107 isUsedOutsideDefBB = true;
3108 break;
3109 }
3110 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003111 if (!isUsedOutsideDefBB) return false;
Chris Lattner35397782005-12-05 07:10:48 +00003112
3113 // If this GEP has no non-zero constant indices, there is nothing we can do,
3114 // ignore it.
3115 bool hasConstantIndex = false;
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003116 bool hasVariableIndex = false;
Chris Lattner35397782005-12-05 07:10:48 +00003117 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3118 E = GEPI->op_end(); OI != E; ++OI) {
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003119 if (ConstantInt *CI = dyn_cast<ConstantInt>(*OI)) {
Chris Lattner35397782005-12-05 07:10:48 +00003120 if (CI->getRawValue()) {
3121 hasConstantIndex = true;
3122 break;
3123 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003124 } else {
3125 hasVariableIndex = true;
3126 }
Chris Lattner35397782005-12-05 07:10:48 +00003127 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003128
3129 // If this is a "GEP X, 0, 0, 0", turn this into a cast.
3130 if (!hasConstantIndex && !hasVariableIndex) {
3131 Value *NC = new CastInst(GEPI->getOperand(0), GEPI->getType(),
3132 GEPI->getName(), GEPI);
3133 GEPI->replaceAllUsesWith(NC);
3134 GEPI->eraseFromParent();
3135 return true;
3136 }
3137
Chris Lattnerf1a54c02005-12-11 09:05:13 +00003138 // If this is a GEP &Alloca, 0, 0, forward subst the frame index into uses.
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003139 if (!hasConstantIndex && !isa<AllocaInst>(GEPI->getOperand(0)))
3140 return false;
Chris Lattner35397782005-12-05 07:10:48 +00003141
3142 // Otherwise, decompose the GEP instruction into multiplies and adds. Sum the
3143 // constant offset (which we now know is non-zero) and deal with it later.
3144 uint64_t ConstantOffset = 0;
Owen Anderson20a631f2006-05-03 01:29:57 +00003145 const Type *UIntPtrTy = TD->getIntPtrType();
Chris Lattner35397782005-12-05 07:10:48 +00003146 Value *Ptr = new CastInst(GEPI->getOperand(0), UIntPtrTy, "", GEPI);
3147 const Type *Ty = GEPI->getOperand(0)->getType();
3148
3149 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3150 E = GEPI->op_end(); OI != E; ++OI) {
3151 Value *Idx = *OI;
3152 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
3153 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
3154 if (Field)
Owen Anderson20a631f2006-05-03 01:29:57 +00003155 ConstantOffset += TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattner35397782005-12-05 07:10:48 +00003156 Ty = StTy->getElementType(Field);
3157 } else {
3158 Ty = cast<SequentialType>(Ty)->getElementType();
3159
3160 // Handle constant subscripts.
3161 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
3162 if (CI->getRawValue() == 0) continue;
3163
3164 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Anderson20a631f2006-05-03 01:29:57 +00003165 ConstantOffset += (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattner35397782005-12-05 07:10:48 +00003166 else
Owen Anderson20a631f2006-05-03 01:29:57 +00003167 ConstantOffset+=TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattner35397782005-12-05 07:10:48 +00003168 continue;
3169 }
3170
3171 // Ptr = Ptr + Idx * ElementSize;
3172
3173 // Cast Idx to UIntPtrTy if needed.
3174 Idx = new CastInst(Idx, UIntPtrTy, "", GEPI);
3175
Owen Anderson20a631f2006-05-03 01:29:57 +00003176 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattner35397782005-12-05 07:10:48 +00003177 // Mask off bits that should not be set.
3178 ElementSize &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3179 Constant *SizeCst = ConstantUInt::get(UIntPtrTy, ElementSize);
3180
3181 // Multiply by the element size and add to the base.
3182 Idx = BinaryOperator::createMul(Idx, SizeCst, "", GEPI);
3183 Ptr = BinaryOperator::createAdd(Ptr, Idx, "", GEPI);
3184 }
3185 }
3186
3187 // Make sure that the offset fits in uintptr_t.
3188 ConstantOffset &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3189 Constant *PtrOffset = ConstantUInt::get(UIntPtrTy, ConstantOffset);
3190
3191 // Okay, we have now emitted all of the variable index parts to the BB that
3192 // the GEP is defined in. Loop over all of the using instructions, inserting
3193 // an "add Ptr, ConstantOffset" into each block that uses it and update the
Chris Lattnerbe73d6e2005-12-08 08:00:12 +00003194 // instruction to use the newly computed value, making GEPI dead. When the
3195 // user is a load or store instruction address, we emit the add into the user
3196 // block, otherwise we use a canonical version right next to the gep (these
3197 // won't be foldable as addresses, so we might as well share the computation).
3198
Chris Lattner21cd9902006-05-06 09:10:37 +00003199 std::map<BasicBlock*,Instruction*> InsertedExprs;
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003200 ReplaceUsesOfGEPInst(GEPI, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattner35397782005-12-05 07:10:48 +00003201
3202 // Finally, the GEP is dead, remove it.
3203 GEPI->eraseFromParent();
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003204
3205 return true;
Chris Lattner35397782005-12-05 07:10:48 +00003206}
3207
Chris Lattnera9caf952006-09-28 06:17:10 +00003208/// SplitCritEdgesForPHIConstants - If this block has any PHI nodes with
3209/// constant operands, and if any of the edges feeding the PHI node are
3210/// critical, split them so that the assignments of a constant to a register
3211/// will not be executed on a path that isn't relevant.
3212void SelectionDAGISel::SplitCritEdgesForPHIConstants(BasicBlock *BB) {
Chris Lattner6df34962006-10-11 03:58:02 +00003213 // The most common case is that this is a PHI node with two incoming
3214 // successors handle this case efficiently, because it is simple.
3215 PHINode *PN = cast<PHINode>(BB->begin());
3216 if (PN->getNumIncomingValues() == 2) {
3217 // If neither edge is critical, we never need to split.
3218 if (PN->getIncomingBlock(0)->getTerminator()->getNumSuccessors() == 1 &&
3219 PN->getIncomingBlock(1)->getTerminator()->getNumSuccessors() == 1)
3220 return;
3221
3222 BasicBlock::iterator BBI = BB->begin();
3223 while ((PN = dyn_cast<PHINode>(BBI++))) {
3224 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3225 if (isa<Constant>(PN->getIncomingValue(i)))
3226 SplitCriticalEdge(PN->getIncomingBlock(i), BB);
3227 }
3228 return;
3229 }
3230
3231 // Otherwise, things are a bit trickier.
3232
3233 // BE SMART HERE.
3234
Chris Lattnera9caf952006-09-28 06:17:10 +00003235 BasicBlock::iterator BBI = BB->begin();
3236 while ((PN = dyn_cast<PHINode>(BBI++))) {
3237 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3238 if (isa<Constant>(PN->getIncomingValue(i)))
3239 SplitCriticalEdge(PN->getIncomingBlock(i), BB);
3240 }
3241}
3242
3243
Chris Lattner7a60d912005-01-07 07:47:53 +00003244bool SelectionDAGISel::runOnFunction(Function &Fn) {
3245 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
3246 RegMap = MF.getSSARegMap();
3247 DEBUG(std::cerr << "\n\n\n=== " << Fn.getName() << "\n");
3248
Chris Lattner35397782005-12-05 07:10:48 +00003249 // First, split all critical edges for PHI nodes with incoming values that are
3250 // constants, this way the load of the constant into a vreg will not be placed
3251 // into MBBs that are used some other way.
3252 //
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003253 // In this pass we also look for GEP and cast instructions that are used
3254 // across basic blocks and rewrite them to improve basic-block-at-a-time
3255 // selection.
3256 //
Chris Lattner35397782005-12-05 07:10:48 +00003257 //
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003258 bool MadeChange = true;
3259 while (MadeChange) {
3260 MadeChange = false;
Chris Lattner1a908c82005-08-18 17:35:14 +00003261 for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Chris Lattnera9caf952006-09-28 06:17:10 +00003262 // If this block has any PHI nodes with constant operands, and if any of the
3263 // edges feeding the PHI node are critical, split them.
3264 if (isa<PHINode>(BB->begin()))
3265 SplitCritEdgesForPHIConstants(BB);
Chris Lattner35397782005-12-05 07:10:48 +00003266
Chris Lattnera9caf952006-09-28 06:17:10 +00003267 for (BasicBlock::iterator BBI = BB->begin(), E = BB->end(); BBI != E; ) {
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003268 Instruction *I = BBI++;
3269 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003270 MadeChange |= OptimizeGEPExpression(GEPI, TLI.getTargetData());
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003271 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
Chris Lattner84cc1f72006-09-13 06:02:42 +00003272 // If the source of the cast is a constant, then this should have
3273 // already been constant folded. The only reason NOT to constant fold
3274 // it is if something (e.g. LSR) was careful to place the constant
3275 // evaluation in a block other than then one that uses it (e.g. to hoist
3276 // the address of globals out of a loop). If this is the case, we don't
3277 // want to forward-subst the cast.
3278 if (isa<Constant>(CI->getOperand(0)))
3279 continue;
3280
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003281 // If this is a noop copy, sink it into user blocks to reduce the number
3282 // of virtual registers that must be created and coallesced.
3283 MVT::ValueType SrcVT = TLI.getValueType(CI->getOperand(0)->getType());
3284 MVT::ValueType DstVT = TLI.getValueType(CI->getType());
3285
3286 // This is an fp<->int conversion?
3287 if (MVT::isInteger(SrcVT) != MVT::isInteger(DstVT))
3288 continue;
3289
3290 // If this is an extension, it will be a zero or sign extension, which
3291 // isn't a noop.
3292 if (SrcVT < DstVT) continue;
3293
3294 // If these values will be promoted, find out what they will be promoted
3295 // to. This helps us consider truncates on PPC as noop copies when they
3296 // are.
3297 if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote)
3298 SrcVT = TLI.getTypeToTransformTo(SrcVT);
3299 if (TLI.getTypeAction(DstVT) == TargetLowering::Promote)
3300 DstVT = TLI.getTypeToTransformTo(DstVT);
3301
3302 // If, after promotion, these are the same types, this is a noop copy.
3303 if (SrcVT == DstVT)
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003304 MadeChange |= OptimizeNoopCopyExpression(CI);
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003305 }
3306 }
Chris Lattner1a908c82005-08-18 17:35:14 +00003307 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003308 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00003309
Chris Lattner7a60d912005-01-07 07:47:53 +00003310 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
3311
3312 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
3313 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukman835702a2005-04-21 22:36:52 +00003314
Chris Lattner7a60d912005-01-07 07:47:53 +00003315 return true;
3316}
3317
3318
Chris Lattner718b5c22005-01-13 17:59:43 +00003319SDOperand SelectionDAGISel::
3320CopyValueToVirtualRegister(SelectionDAGLowering &SDL, Value *V, unsigned Reg) {
Chris Lattner613f79f2005-01-11 22:03:46 +00003321 SDOperand Op = SDL.getValue(V);
Chris Lattnere727af02005-01-13 20:50:02 +00003322 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattner33182322005-08-16 21:55:35 +00003323 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattnere727af02005-01-13 20:50:02 +00003324 "Copy from a reg to the same reg!");
Chris Lattner33182322005-08-16 21:55:35 +00003325
3326 // If this type is not legal, we must make sure to not create an invalid
3327 // register use.
3328 MVT::ValueType SrcVT = Op.getValueType();
3329 MVT::ValueType DestVT = TLI.getTypeToTransformTo(SrcVT);
3330 SelectionDAG &DAG = SDL.DAG;
3331 if (SrcVT == DestVT) {
3332 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
Chris Lattner672a42d2006-03-21 19:20:37 +00003333 } else if (SrcVT == MVT::Vector) {
Chris Lattner5fe1f542006-03-31 02:06:56 +00003334 // Handle copies from generic vectors to registers.
3335 MVT::ValueType PTyElementVT, PTyLegalElementVT;
3336 unsigned NE = TLI.getPackedTypeBreakdown(cast<PackedType>(V->getType()),
3337 PTyElementVT, PTyLegalElementVT);
Chris Lattner672a42d2006-03-21 19:20:37 +00003338
Chris Lattner5fe1f542006-03-31 02:06:56 +00003339 // Insert a VBIT_CONVERT of the input vector to a "N x PTyElementVT"
3340 // MVT::Vector type.
3341 Op = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Op,
3342 DAG.getConstant(NE, MVT::i32),
3343 DAG.getValueType(PTyElementVT));
Chris Lattner672a42d2006-03-21 19:20:37 +00003344
Chris Lattner5fe1f542006-03-31 02:06:56 +00003345 // Loop over all of the elements of the resultant vector,
3346 // VEXTRACT_VECTOR_ELT'ing them, converting them to PTyLegalElementVT, then
3347 // copying them into output registers.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003348 SmallVector<SDOperand, 8> OutChains;
Chris Lattner5fe1f542006-03-31 02:06:56 +00003349 SDOperand Root = SDL.getRoot();
3350 for (unsigned i = 0; i != NE; ++i) {
3351 SDOperand Elt = DAG.getNode(ISD::VEXTRACT_VECTOR_ELT, PTyElementVT,
Evan Chengef9e07d2006-06-15 08:11:54 +00003352 Op, DAG.getConstant(i, TLI.getPointerTy()));
Chris Lattner5fe1f542006-03-31 02:06:56 +00003353 if (PTyElementVT == PTyLegalElementVT) {
3354 // Elements are legal.
3355 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3356 } else if (PTyLegalElementVT > PTyElementVT) {
3357 // Elements are promoted.
3358 if (MVT::isFloatingPoint(PTyLegalElementVT))
3359 Elt = DAG.getNode(ISD::FP_EXTEND, PTyLegalElementVT, Elt);
3360 else
3361 Elt = DAG.getNode(ISD::ANY_EXTEND, PTyLegalElementVT, Elt);
3362 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3363 } else {
3364 // Elements are expanded.
3365 // The src value is expanded into multiple registers.
3366 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
Evan Chengef9e07d2006-06-15 08:11:54 +00003367 Elt, DAG.getConstant(0, TLI.getPointerTy()));
Chris Lattner5fe1f542006-03-31 02:06:56 +00003368 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
Evan Chengef9e07d2006-06-15 08:11:54 +00003369 Elt, DAG.getConstant(1, TLI.getPointerTy()));
Chris Lattner5fe1f542006-03-31 02:06:56 +00003370 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Lo));
3371 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Hi));
3372 }
Chris Lattner672a42d2006-03-21 19:20:37 +00003373 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003374 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3375 &OutChains[0], OutChains.size());
Chris Lattner33182322005-08-16 21:55:35 +00003376 } else if (SrcVT < DestVT) {
3377 // The src value is promoted to the register.
Chris Lattnerba28c272005-08-17 06:06:25 +00003378 if (MVT::isFloatingPoint(SrcVT))
3379 Op = DAG.getNode(ISD::FP_EXTEND, DestVT, Op);
3380 else
Chris Lattnera66403d2005-09-02 00:19:37 +00003381 Op = DAG.getNode(ISD::ANY_EXTEND, DestVT, Op);
Chris Lattner33182322005-08-16 21:55:35 +00003382 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
3383 } else {
3384 // The src value is expanded into multiple registers.
3385 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
Evan Chengef9e07d2006-06-15 08:11:54 +00003386 Op, DAG.getConstant(0, TLI.getPointerTy()));
Chris Lattner33182322005-08-16 21:55:35 +00003387 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
Evan Chengef9e07d2006-06-15 08:11:54 +00003388 Op, DAG.getConstant(1, TLI.getPointerTy()));
Chris Lattner33182322005-08-16 21:55:35 +00003389 Op = DAG.getCopyToReg(SDL.getRoot(), Reg, Lo);
3390 return DAG.getCopyToReg(Op, Reg+1, Hi);
3391 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003392}
3393
Chris Lattner16f64df2005-01-17 17:15:02 +00003394void SelectionDAGISel::
3395LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL,
3396 std::vector<SDOperand> &UnorderedChains) {
3397 // If this is the entry block, emit arguments.
3398 Function &F = *BB->getParent();
Chris Lattnere3c2cf42005-01-17 17:55:19 +00003399 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattner6871b232005-10-30 19:42:35 +00003400 SDOperand OldRoot = SDL.DAG.getRoot();
3401 std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
Chris Lattner16f64df2005-01-17 17:15:02 +00003402
Chris Lattner6871b232005-10-30 19:42:35 +00003403 unsigned a = 0;
3404 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
3405 AI != E; ++AI, ++a)
3406 if (!AI->use_empty()) {
3407 SDL.setValue(AI, Args[a]);
Evan Cheng3784f3c52006-04-27 08:29:42 +00003408
Chris Lattner6871b232005-10-30 19:42:35 +00003409 // If this argument is live outside of the entry block, insert a copy from
3410 // whereever we got it to the vreg that other BB's will reference it as.
3411 if (FuncInfo.ValueMap.count(AI)) {
3412 SDOperand Copy =
3413 CopyValueToVirtualRegister(SDL, AI, FuncInfo.ValueMap[AI]);
3414 UnorderedChains.push_back(Copy);
3415 }
Chris Lattnere3c2cf42005-01-17 17:55:19 +00003416 }
Chris Lattner6871b232005-10-30 19:42:35 +00003417
Chris Lattner6871b232005-10-30 19:42:35 +00003418 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner957cb672006-05-16 06:10:58 +00003419 // FIXME: this should insert code into the DAG!
Chris Lattner6871b232005-10-30 19:42:35 +00003420 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner16f64df2005-01-17 17:15:02 +00003421}
3422
Chris Lattner7a60d912005-01-07 07:47:53 +00003423void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
3424 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemaned728c12006-03-27 01:32:24 +00003425 FunctionLoweringInfo &FuncInfo) {
Chris Lattner7a60d912005-01-07 07:47:53 +00003426 SelectionDAGLowering SDL(DAG, TLI, FuncInfo);
Chris Lattner718b5c22005-01-13 17:59:43 +00003427
3428 std::vector<SDOperand> UnorderedChains;
Misha Brukman835702a2005-04-21 22:36:52 +00003429
Chris Lattner6871b232005-10-30 19:42:35 +00003430 // Lower any arguments needed in this block if this is the entry block.
3431 if (LLVMBB == &LLVMBB->getParent()->front())
3432 LowerArguments(LLVMBB, SDL, UnorderedChains);
Chris Lattner7a60d912005-01-07 07:47:53 +00003433
3434 BB = FuncInfo.MBBMap[LLVMBB];
3435 SDL.setCurrentBasicBlock(BB);
3436
3437 // Lower all of the non-terminator instructions.
3438 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
3439 I != E; ++I)
3440 SDL.visit(*I);
Nate Begemaned728c12006-03-27 01:32:24 +00003441
Chris Lattner7a60d912005-01-07 07:47:53 +00003442 // Ensure that all instructions which are used outside of their defining
3443 // blocks are available as virtual registers.
3444 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Chris Lattner613f79f2005-01-11 22:03:46 +00003445 if (!I->use_empty() && !isa<PHINode>(I)) {
Chris Lattnera2c5d912005-01-09 01:16:24 +00003446 std::map<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner7a60d912005-01-07 07:47:53 +00003447 if (VMI != FuncInfo.ValueMap.end())
Chris Lattner718b5c22005-01-13 17:59:43 +00003448 UnorderedChains.push_back(
3449 CopyValueToVirtualRegister(SDL, I, VMI->second));
Chris Lattner7a60d912005-01-07 07:47:53 +00003450 }
3451
3452 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
3453 // ensure constants are generated when needed. Remember the virtual registers
3454 // that need to be added to the Machine PHI nodes as input. We cannot just
3455 // directly add them, because expansion might result in multiple MBB's for one
3456 // BB. As such, the start of the BB might correspond to a different MBB than
3457 // the end.
Misha Brukman835702a2005-04-21 22:36:52 +00003458 //
Chris Lattner7a60d912005-01-07 07:47:53 +00003459
3460 // Emit constants only once even if used by multiple PHI nodes.
3461 std::map<Constant*, unsigned> ConstantsOut;
Chris Lattner707339a52006-09-07 01:59:34 +00003462
Chris Lattner7a60d912005-01-07 07:47:53 +00003463 // Check successor nodes PHI nodes that expect a constant to be available from
3464 // this block.
3465 TerminatorInst *TI = LLVMBB->getTerminator();
3466 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
3467 BasicBlock *SuccBB = TI->getSuccessor(succ);
Chris Lattner707339a52006-09-07 01:59:34 +00003468 if (!isa<PHINode>(SuccBB->begin())) continue;
3469
Chris Lattner7a60d912005-01-07 07:47:53 +00003470 MachineBasicBlock::iterator MBBI = FuncInfo.MBBMap[SuccBB]->begin();
3471 PHINode *PN;
3472
3473 // At this point we know that there is a 1-1 correspondence between LLVM PHI
3474 // nodes and Machine PHI nodes, but the incoming operands have not been
3475 // emitted yet.
3476 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattner8ea875f2005-01-07 21:34:19 +00003477 (PN = dyn_cast<PHINode>(I)); ++I)
3478 if (!PN->use_empty()) {
3479 unsigned Reg;
3480 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
3481 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
3482 unsigned &RegOut = ConstantsOut[C];
3483 if (RegOut == 0) {
3484 RegOut = FuncInfo.CreateRegForValue(C);
Chris Lattner718b5c22005-01-13 17:59:43 +00003485 UnorderedChains.push_back(
3486 CopyValueToVirtualRegister(SDL, C, RegOut));
Chris Lattner8ea875f2005-01-07 21:34:19 +00003487 }
3488 Reg = RegOut;
3489 } else {
3490 Reg = FuncInfo.ValueMap[PHIOp];
Chris Lattnera2c5d912005-01-09 01:16:24 +00003491 if (Reg == 0) {
Misha Brukman835702a2005-04-21 22:36:52 +00003492 assert(isa<AllocaInst>(PHIOp) &&
Chris Lattnera2c5d912005-01-09 01:16:24 +00003493 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
3494 "Didn't codegen value into a register!??");
3495 Reg = FuncInfo.CreateRegForValue(PHIOp);
Chris Lattner718b5c22005-01-13 17:59:43 +00003496 UnorderedChains.push_back(
3497 CopyValueToVirtualRegister(SDL, PHIOp, Reg));
Chris Lattnera2c5d912005-01-09 01:16:24 +00003498 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003499 }
Misha Brukman835702a2005-04-21 22:36:52 +00003500
Chris Lattner8ea875f2005-01-07 21:34:19 +00003501 // Remember that this register needs to added to the machine PHI node as
3502 // the input for this MBB.
Chris Lattnerba380352006-03-31 02:12:18 +00003503 MVT::ValueType VT = TLI.getValueType(PN->getType());
3504 unsigned NumElements;
3505 if (VT != MVT::Vector)
3506 NumElements = TLI.getNumElements(VT);
3507 else {
3508 MVT::ValueType VT1,VT2;
3509 NumElements =
3510 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
3511 VT1, VT2);
3512 }
Chris Lattner8ea875f2005-01-07 21:34:19 +00003513 for (unsigned i = 0, e = NumElements; i != e; ++i)
3514 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
Chris Lattner7a60d912005-01-07 07:47:53 +00003515 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003516 }
3517 ConstantsOut.clear();
3518
Chris Lattner718b5c22005-01-13 17:59:43 +00003519 // Turn all of the unordered chains into one factored node.
Chris Lattner24516842005-01-13 19:53:14 +00003520 if (!UnorderedChains.empty()) {
Chris Lattnerb7cad902005-11-09 05:03:03 +00003521 SDOperand Root = SDL.getRoot();
3522 if (Root.getOpcode() != ISD::EntryToken) {
3523 unsigned i = 0, e = UnorderedChains.size();
3524 for (; i != e; ++i) {
3525 assert(UnorderedChains[i].Val->getNumOperands() > 1);
3526 if (UnorderedChains[i].Val->getOperand(0) == Root)
3527 break; // Don't add the root if we already indirectly depend on it.
3528 }
3529
3530 if (i == e)
3531 UnorderedChains.push_back(Root);
3532 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003533 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other,
3534 &UnorderedChains[0], UnorderedChains.size()));
Chris Lattner718b5c22005-01-13 17:59:43 +00003535 }
3536
Chris Lattner7a60d912005-01-07 07:47:53 +00003537 // Lower the terminator after the copies are emitted.
3538 SDL.visit(*LLVMBB->getTerminator());
Chris Lattner4108bb02005-01-17 19:43:36 +00003539
Nate Begemaned728c12006-03-27 01:32:24 +00003540 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003541 // lowering, as well as any jump table information.
Nate Begemaned728c12006-03-27 01:32:24 +00003542 SwitchCases.clear();
3543 SwitchCases = SDL.SwitchCases;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003544 JT = SDL.JT;
Nate Begemaned728c12006-03-27 01:32:24 +00003545
Chris Lattner4108bb02005-01-17 19:43:36 +00003546 // Make sure the root of the DAG is up-to-date.
3547 DAG.setRoot(SDL.getRoot());
Chris Lattner7a60d912005-01-07 07:47:53 +00003548}
3549
Nate Begemaned728c12006-03-27 01:32:24 +00003550void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Jim Laskeydcb2b832006-10-16 20:52:31 +00003551 // Get alias analysis for load/store combining.
3552 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
3553
Chris Lattnerbcfebeb2005-10-10 16:47:10 +00003554 // Run the DAG combiner in pre-legalize mode.
Jim Laskeydcb2b832006-10-16 20:52:31 +00003555 DAG.Combine(false, AA);
Nate Begeman007c6502005-09-07 00:15:36 +00003556
Chris Lattner7a60d912005-01-07 07:47:53 +00003557 DEBUG(std::cerr << "Lowered selection DAG:\n");
3558 DEBUG(DAG.dump());
Nate Begemaned728c12006-03-27 01:32:24 +00003559
Chris Lattner7a60d912005-01-07 07:47:53 +00003560 // Second step, hack on the DAG until it only uses operations and types that
3561 // the target supports.
Chris Lattnerffcb0ae2005-01-23 04:36:26 +00003562 DAG.Legalize();
Nate Begemaned728c12006-03-27 01:32:24 +00003563
Chris Lattner7a60d912005-01-07 07:47:53 +00003564 DEBUG(std::cerr << "Legalized selection DAG:\n");
3565 DEBUG(DAG.dump());
Nate Begemaned728c12006-03-27 01:32:24 +00003566
Chris Lattnerbcfebeb2005-10-10 16:47:10 +00003567 // Run the DAG combiner in post-legalize mode.
Jim Laskeydcb2b832006-10-16 20:52:31 +00003568 DAG.Combine(true, AA);
Nate Begeman007c6502005-09-07 00:15:36 +00003569
Evan Cheng739a6a42006-01-21 02:32:06 +00003570 if (ViewISelDAGs) DAG.viewGraph();
Evan Cheng51ab4492006-04-28 02:09:19 +00003571
Chris Lattner5ca31d92005-03-30 01:10:47 +00003572 // Third, instruction select all of the operations to machine code, adding the
3573 // code to the MachineBasicBlock.
Chris Lattner7a60d912005-01-07 07:47:53 +00003574 InstructionSelectBasicBlock(DAG);
Nate Begemaned728c12006-03-27 01:32:24 +00003575
Chris Lattner7a60d912005-01-07 07:47:53 +00003576 DEBUG(std::cerr << "Selected machine code:\n");
3577 DEBUG(BB->dump());
Nate Begemaned728c12006-03-27 01:32:24 +00003578}
Chris Lattner7a60d912005-01-07 07:47:53 +00003579
Nate Begemaned728c12006-03-27 01:32:24 +00003580void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
3581 FunctionLoweringInfo &FuncInfo) {
3582 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
3583 {
3584 SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3585 CurDAG = &DAG;
3586
3587 // First step, lower LLVM code to some DAG. This DAG may use operations and
3588 // types that are not supported by the target.
3589 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
3590
3591 // Second step, emit the lowered DAG as machine code.
3592 CodeGenAndEmitDAG(DAG);
3593 }
3594
Chris Lattner5ca31d92005-03-30 01:10:47 +00003595 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner7a60d912005-01-07 07:47:53 +00003596 // PHI nodes in successors.
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003597 if (SwitchCases.empty() && JT.Reg == 0) {
Nate Begemaned728c12006-03-27 01:32:24 +00003598 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
3599 MachineInstr *PHI = PHINodesToUpdate[i].first;
3600 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3601 "This is not a machine PHI node that we are updating!");
Chris Lattneraf23f9b2006-09-05 02:31:13 +00003602 PHI->addRegOperand(PHINodesToUpdate[i].second, false);
Nate Begemaned728c12006-03-27 01:32:24 +00003603 PHI->addMachineBasicBlockOperand(BB);
3604 }
3605 return;
Chris Lattner7a60d912005-01-07 07:47:53 +00003606 }
Nate Begemaned728c12006-03-27 01:32:24 +00003607
Nate Begeman866b4b42006-04-23 06:26:20 +00003608 // If the JumpTable record is filled in, then we need to emit a jump table.
3609 // Updating the PHI nodes is tricky in this case, since we need to determine
3610 // whether the PHI is a successor of the range check MBB or the jump table MBB
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003611 if (JT.Reg) {
3612 assert(SwitchCases.empty() && "Cannot have jump table and lowered switch");
3613 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3614 CurDAG = &SDAG;
3615 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
Nate Begeman866b4b42006-04-23 06:26:20 +00003616 MachineBasicBlock *RangeBB = BB;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003617 // Set the current basic block to the mbb we wish to insert the code into
3618 BB = JT.MBB;
3619 SDL.setCurrentBasicBlock(BB);
3620 // Emit the code
3621 SDL.visitJumpTable(JT);
3622 SDAG.setRoot(SDL.getRoot());
3623 CodeGenAndEmitDAG(SDAG);
3624 // Update PHI Nodes
3625 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3626 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3627 MachineBasicBlock *PHIBB = PHI->getParent();
3628 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3629 "This is not a machine PHI node that we are updating!");
Nate Begemandf488392006-05-03 03:48:02 +00003630 if (PHIBB == JT.Default) {
Chris Lattneraf23f9b2006-09-05 02:31:13 +00003631 PHI->addRegOperand(PHINodesToUpdate[pi].second, false);
Nate Begemandf488392006-05-03 03:48:02 +00003632 PHI->addMachineBasicBlockOperand(RangeBB);
3633 }
3634 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Chris Lattneraf23f9b2006-09-05 02:31:13 +00003635 PHI->addRegOperand(PHINodesToUpdate[pi].second, false);
Nate Begemandf488392006-05-03 03:48:02 +00003636 PHI->addMachineBasicBlockOperand(BB);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003637 }
3638 }
3639 return;
3640 }
3641
Nate Begemaned728c12006-03-27 01:32:24 +00003642 // If we generated any switch lowering information, build and codegen any
3643 // additional DAGs necessary.
Chris Lattner707339a52006-09-07 01:59:34 +00003644 for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
Nate Begemaned728c12006-03-27 01:32:24 +00003645 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3646 CurDAG = &SDAG;
3647 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
Chris Lattner707339a52006-09-07 01:59:34 +00003648
Nate Begemaned728c12006-03-27 01:32:24 +00003649 // Set the current basic block to the mbb we wish to insert the code into
3650 BB = SwitchCases[i].ThisBB;
3651 SDL.setCurrentBasicBlock(BB);
Chris Lattner707339a52006-09-07 01:59:34 +00003652
Nate Begemaned728c12006-03-27 01:32:24 +00003653 // Emit the code
3654 SDL.visitSwitchCase(SwitchCases[i]);
3655 SDAG.setRoot(SDL.getRoot());
3656 CodeGenAndEmitDAG(SDAG);
Chris Lattner707339a52006-09-07 01:59:34 +00003657
3658 // Handle any PHI nodes in successors of this chunk, as if we were coming
3659 // from the original BB before switch expansion. Note that PHI nodes can
3660 // occur multiple times in PHINodesToUpdate. We have to be very careful to
3661 // handle them the right number of times.
3662 while ((BB = SwitchCases[i].LHSBB)) { // Handle LHS and RHS.
3663 for (MachineBasicBlock::iterator Phi = BB->begin();
3664 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
3665 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
3666 for (unsigned pn = 0; ; ++pn) {
3667 assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
3668 if (PHINodesToUpdate[pn].first == Phi) {
3669 Phi->addRegOperand(PHINodesToUpdate[pn].second, false);
3670 Phi->addMachineBasicBlockOperand(SwitchCases[i].ThisBB);
3671 break;
3672 }
3673 }
Nate Begemaned728c12006-03-27 01:32:24 +00003674 }
Chris Lattner707339a52006-09-07 01:59:34 +00003675
3676 // Don't process RHS if same block as LHS.
3677 if (BB == SwitchCases[i].RHSBB)
3678 SwitchCases[i].RHSBB = 0;
3679
3680 // If we haven't handled the RHS, do so now. Otherwise, we're done.
3681 SwitchCases[i].LHSBB = SwitchCases[i].RHSBB;
3682 SwitchCases[i].RHSBB = 0;
Nate Begemaned728c12006-03-27 01:32:24 +00003683 }
Chris Lattner707339a52006-09-07 01:59:34 +00003684 assert(SwitchCases[i].LHSBB == 0 && SwitchCases[i].RHSBB == 0);
Chris Lattner5ca31d92005-03-30 01:10:47 +00003685 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003686}
Evan Cheng739a6a42006-01-21 02:32:06 +00003687
Jim Laskey95eda5b2006-08-01 14:21:23 +00003688
Evan Cheng739a6a42006-01-21 02:32:06 +00003689//===----------------------------------------------------------------------===//
3690/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
3691/// target node in the graph.
3692void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
3693 if (ViewSchedDAGs) DAG.viewGraph();
Evan Chengc1e1d972006-01-23 07:01:07 +00003694
Jim Laskey29e635d2006-08-02 12:30:23 +00003695 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Jim Laskey95eda5b2006-08-01 14:21:23 +00003696
3697 if (!Ctor) {
Jim Laskey29e635d2006-08-02 12:30:23 +00003698 Ctor = ISHeuristic;
Jim Laskey17c67ef2006-08-01 19:14:14 +00003699 RegisterScheduler::setDefault(Ctor);
Evan Chengc1e1d972006-01-23 07:01:07 +00003700 }
Jim Laskey95eda5b2006-08-01 14:21:23 +00003701
Jim Laskey03593f72006-08-01 18:29:48 +00003702 ScheduleDAG *SL = Ctor(this, &DAG, BB);
Chris Lattnere23928c2006-01-21 19:12:11 +00003703 BB = SL->Run();
Evan Chengf9adce92006-02-04 06:49:00 +00003704 delete SL;
Evan Cheng739a6a42006-01-21 02:32:06 +00003705}
Chris Lattnerdcf785b2006-02-24 02:13:54 +00003706
Chris Lattner47639db2006-03-06 00:22:00 +00003707
Jim Laskey03593f72006-08-01 18:29:48 +00003708HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
3709 return new HazardRecognizer();
3710}
3711
Chris Lattner6df34962006-10-11 03:58:02 +00003712//===----------------------------------------------------------------------===//
3713// Helper functions used by the generated instruction selector.
3714//===----------------------------------------------------------------------===//
3715// Calls to these methods are generated by tblgen.
3716
3717/// CheckAndMask - The isel is trying to match something like (and X, 255). If
3718/// the dag combiner simplified the 255, we still want to match. RHS is the
3719/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
3720/// specified in the .td file (e.g. 255).
3721bool SelectionDAGISel::CheckAndMask(SDOperand LHS, ConstantSDNode *RHS,
3722 int64_t DesiredMaskS) {
3723 uint64_t ActualMask = RHS->getValue();
3724 uint64_t DesiredMask =DesiredMaskS & MVT::getIntVTBitMask(LHS.getValueType());
3725
3726 // If the actual mask exactly matches, success!
3727 if (ActualMask == DesiredMask)
3728 return true;
3729
3730 // If the actual AND mask is allowing unallowed bits, this doesn't match.
3731 if (ActualMask & ~DesiredMask)
3732 return false;
3733
3734 // Otherwise, the DAG Combiner may have proven that the value coming in is
3735 // either already zero or is not demanded. Check for known zero input bits.
3736 uint64_t NeededMask = DesiredMask & ~ActualMask;
3737 if (getTargetLowering().MaskedValueIsZero(LHS, NeededMask))
3738 return true;
3739
3740 // TODO: check to see if missing bits are just not demanded.
3741
3742 // Otherwise, this pattern doesn't match.
3743 return false;
3744}
3745
3746/// CheckOrMask - The isel is trying to match something like (or X, 255). If
3747/// the dag combiner simplified the 255, we still want to match. RHS is the
3748/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
3749/// specified in the .td file (e.g. 255).
3750bool SelectionDAGISel::CheckOrMask(SDOperand LHS, ConstantSDNode *RHS,
3751 int64_t DesiredMaskS) {
3752 uint64_t ActualMask = RHS->getValue();
3753 uint64_t DesiredMask =DesiredMaskS & MVT::getIntVTBitMask(LHS.getValueType());
3754
3755 // If the actual mask exactly matches, success!
3756 if (ActualMask == DesiredMask)
3757 return true;
3758
3759 // If the actual AND mask is allowing unallowed bits, this doesn't match.
3760 if (ActualMask & ~DesiredMask)
3761 return false;
3762
3763 // Otherwise, the DAG Combiner may have proven that the value coming in is
3764 // either already zero or is not demanded. Check for known zero input bits.
3765 uint64_t NeededMask = DesiredMask & ~ActualMask;
3766
3767 uint64_t KnownZero, KnownOne;
3768 getTargetLowering().ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
3769
3770 // If all the missing bits in the or are already known to be set, match!
3771 if ((NeededMask & KnownOne) == NeededMask)
3772 return true;
3773
3774 // TODO: check to see if missing bits are just not demanded.
3775
3776 // Otherwise, this pattern doesn't match.
3777 return false;
3778}
3779
Jim Laskey03593f72006-08-01 18:29:48 +00003780
Chris Lattnerdcf785b2006-02-24 02:13:54 +00003781/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
3782/// by tblgen. Others should not call it.
3783void SelectionDAGISel::
3784SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
3785 std::vector<SDOperand> InOps;
3786 std::swap(InOps, Ops);
3787
3788 Ops.push_back(InOps[0]); // input chain.
3789 Ops.push_back(InOps[1]); // input asm string.
3790
Chris Lattnerdcf785b2006-02-24 02:13:54 +00003791 unsigned i = 2, e = InOps.size();
3792 if (InOps[e-1].getValueType() == MVT::Flag)
3793 --e; // Don't process a flag operand if it is here.
3794
3795 while (i != e) {
3796 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
3797 if ((Flags & 7) != 4 /*MEM*/) {
3798 // Just skip over this operand, copying the operands verbatim.
3799 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
3800 i += (Flags >> 3) + 1;
3801 } else {
3802 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
3803 // Otherwise, this is a memory operand. Ask the target to select it.
3804 std::vector<SDOperand> SelOps;
3805 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
3806 std::cerr << "Could not match memory address. Inline asm failure!\n";
3807 exit(1);
3808 }
3809
3810 // Add this to the output node.
3811 Ops.push_back(DAG.getConstant(4/*MEM*/ | (SelOps.size() << 3), MVT::i32));
3812 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
3813 i += 2;
3814 }
3815 }
3816
3817 // Add the flag input back if present.
3818 if (e != InOps.size())
3819 Ops.push_back(InOps.back());
3820}