blob: b0bda0f8c2323cd1768a55fb851e78597792df98 [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"
15#include "llvm/CodeGen/SelectionDAGISel.h"
Evan Cheng739a6a42006-01-21 02:32:06 +000016#include "llvm/CodeGen/ScheduleDAG.h"
Chris Lattner2e77db62005-05-13 18:50:42 +000017#include "llvm/CallingConv.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000018#include "llvm/Constants.h"
19#include "llvm/DerivedTypes.h"
20#include "llvm/Function.h"
Chris Lattner435b4022005-11-29 06:21:05 +000021#include "llvm/GlobalVariable.h"
Chris Lattner476e67b2006-01-26 22:24:51 +000022#include "llvm/InlineAsm.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000023#include "llvm/Instructions.h"
24#include "llvm/Intrinsics.h"
Jim Laskeya8bdac82006-03-23 18:06:46 +000025#include "llvm/IntrinsicInst.h"
Chris Lattnerf2b62f32005-11-16 07:22:30 +000026#include "llvm/CodeGen/IntrinsicLowering.h"
Jim Laskey219d5592006-01-04 22:28:25 +000027#include "llvm/CodeGen/MachineDebugInfo.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000028#include "llvm/CodeGen/MachineFunction.h"
29#include "llvm/CodeGen/MachineFrameInfo.h"
Nate Begeman4ca2ea52006-04-22 18:53:45 +000030#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000031#include "llvm/CodeGen/MachineInstrBuilder.h"
Jim Laskey29e635d2006-08-02 12:30:23 +000032#include "llvm/CodeGen/SchedulerRegistry.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000033#include "llvm/CodeGen/SelectionDAG.h"
34#include "llvm/CodeGen/SSARegMap.h"
Chris Lattnerd4382f02005-09-13 19:30:54 +000035#include "llvm/Target/MRegisterInfo.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000036#include "llvm/Target/TargetData.h"
37#include "llvm/Target/TargetFrameInfo.h"
38#include "llvm/Target/TargetInstrInfo.h"
39#include "llvm/Target/TargetLowering.h"
40#include "llvm/Target/TargetMachine.h"
Vladimir Prusdf1d4392006-05-23 13:43:15 +000041#include "llvm/Target/TargetOptions.h"
Chris Lattnerc9950c12005-08-17 06:37:43 +000042#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattner43535a12005-11-09 04:45:33 +000043#include "llvm/Support/MathExtras.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000044#include "llvm/Support/Debug.h"
Chris Lattner996795b2006-06-28 23:17:24 +000045#include "llvm/Support/Visibility.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000046#include <map>
Chris Lattner1558fc62006-02-01 18:59:47 +000047#include <set>
Chris Lattner7a60d912005-01-07 07:47:53 +000048#include <iostream>
Jeff Cohen83c22e02006-02-24 02:52:40 +000049#include <algorithm>
Chris Lattner7a60d912005-01-07 07:47:53 +000050using namespace llvm;
51
Chris Lattner975f5c92005-09-01 18:44:10 +000052#ifndef NDEBUG
Chris Lattnere05a4612005-01-12 03:41:21 +000053static cl::opt<bool>
Evan Cheng739a6a42006-01-21 02:32:06 +000054ViewISelDAGs("view-isel-dags", cl::Hidden,
55 cl::desc("Pop up a window to show isel dags as they are selected"));
56static cl::opt<bool>
57ViewSchedDAGs("view-sched-dags", cl::Hidden,
58 cl::desc("Pop up a window to show sched dags as they are processed"));
Chris Lattnere05a4612005-01-12 03:41:21 +000059#else
Chris Lattneref598052006-04-02 03:07:27 +000060static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0;
Chris Lattnere05a4612005-01-12 03:41:21 +000061#endif
62
Jim Laskey29e635d2006-08-02 12:30:23 +000063
64//===---------------------------------------------------------------------===//
65///
66/// RegisterScheduler class - Track the registration of instruction schedulers.
67///
68//===---------------------------------------------------------------------===//
69MachinePassRegistry RegisterScheduler::Registry;
70
71//===---------------------------------------------------------------------===//
72///
73/// ISHeuristic command line option for instruction schedulers.
74///
75//===---------------------------------------------------------------------===//
Evan Chengc1e1d972006-01-23 07:01:07 +000076namespace {
Jim Laskey29e635d2006-08-02 12:30:23 +000077 cl::opt<RegisterScheduler::FunctionPassCtor, false,
78 RegisterPassParser<RegisterScheduler> >
Jim Laskey95eda5b2006-08-01 14:21:23 +000079 ISHeuristic("sched",
Chris Lattner524c1a22006-08-03 00:18:59 +000080 cl::init(&createDefaultScheduler),
Jim Laskey95eda5b2006-08-01 14:21:23 +000081 cl::desc("Instruction schedulers available:"));
82
Jim Laskey03593f72006-08-01 18:29:48 +000083 static RegisterScheduler
Jim Laskey17c67ef2006-08-01 19:14:14 +000084 defaultListDAGScheduler("default", " Best scheduler for the target",
85 createDefaultScheduler);
Evan Chengc1e1d972006-01-23 07:01:07 +000086} // namespace
87
Chris Lattner6f87d182006-02-22 22:37:12 +000088namespace {
89 /// RegsForValue - This struct represents the physical registers that a
90 /// particular value is assigned and the type information about the value.
91 /// This is needed because values can be promoted into larger registers and
92 /// expanded into multiple smaller registers than the value.
Chris Lattner996795b2006-06-28 23:17:24 +000093 struct VISIBILITY_HIDDEN RegsForValue {
Chris Lattner6f87d182006-02-22 22:37:12 +000094 /// Regs - This list hold the register (for legal and promoted values)
95 /// or register set (for expanded values) that the value should be assigned
96 /// to.
97 std::vector<unsigned> Regs;
98
99 /// RegVT - The value type of each register.
100 ///
101 MVT::ValueType RegVT;
102
103 /// ValueVT - The value type of the LLVM value, which may be promoted from
104 /// RegVT or made from merging the two expanded parts.
105 MVT::ValueType ValueVT;
106
107 RegsForValue() : RegVT(MVT::Other), ValueVT(MVT::Other) {}
108
109 RegsForValue(unsigned Reg, MVT::ValueType regvt, MVT::ValueType valuevt)
110 : RegVT(regvt), ValueVT(valuevt) {
111 Regs.push_back(Reg);
112 }
113 RegsForValue(const std::vector<unsigned> &regs,
114 MVT::ValueType regvt, MVT::ValueType valuevt)
115 : Regs(regs), RegVT(regvt), ValueVT(valuevt) {
116 }
117
118 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
119 /// this value and returns the result as a ValueVT value. This uses
120 /// Chain/Flag as the input and updates them for the output Chain/Flag.
121 SDOperand getCopyFromRegs(SelectionDAG &DAG,
Chris Lattnere7c0ffb2006-02-23 20:06:57 +0000122 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattner571d9642006-02-23 19:21:04 +0000123
124 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
125 /// specified value into the registers specified by this object. This uses
126 /// Chain/Flag as the input and updates them for the output Chain/Flag.
127 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Evan Chengef9e07d2006-06-15 08:11:54 +0000128 SDOperand &Chain, SDOperand &Flag,
129 MVT::ValueType PtrVT) const;
Chris Lattner571d9642006-02-23 19:21:04 +0000130
131 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
132 /// operand list. This adds the code marker and includes the number of
133 /// values added into it.
134 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattnere7c0ffb2006-02-23 20:06:57 +0000135 std::vector<SDOperand> &Ops) const;
Chris Lattner6f87d182006-02-22 22:37:12 +0000136 };
137}
Evan Chengc1e1d972006-01-23 07:01:07 +0000138
Chris Lattner7a60d912005-01-07 07:47:53 +0000139namespace llvm {
140 //===--------------------------------------------------------------------===//
Jim Laskey17c67ef2006-08-01 19:14:14 +0000141 /// createDefaultScheduler - This creates an instruction scheduler appropriate
142 /// for the target.
143 ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
144 SelectionDAG *DAG,
145 MachineBasicBlock *BB) {
146 TargetLowering &TLI = IS->getTargetLowering();
147
148 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
149 return createTDListDAGScheduler(IS, DAG, BB);
150 } else {
151 assert(TLI.getSchedulingPreference() ==
152 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
153 return createBURRListDAGScheduler(IS, DAG, BB);
154 }
155 }
156
157
158 //===--------------------------------------------------------------------===//
Chris Lattner7a60d912005-01-07 07:47:53 +0000159 /// FunctionLoweringInfo - This contains information that is global to a
160 /// function that is used when lowering a region of the function.
Chris Lattnerd0061952005-01-08 19:52:31 +0000161 class FunctionLoweringInfo {
162 public:
Chris Lattner7a60d912005-01-07 07:47:53 +0000163 TargetLowering &TLI;
164 Function &Fn;
165 MachineFunction &MF;
166 SSARegMap *RegMap;
167
168 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
169
170 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
171 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
172
173 /// ValueMap - Since we emit code for the function a basic block at a time,
174 /// we must remember which virtual registers hold the values for
175 /// cross-basic-block values.
176 std::map<const Value*, unsigned> ValueMap;
177
178 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
179 /// the entry block. This allows the allocas to be efficiently referenced
180 /// anywhere in the function.
181 std::map<const AllocaInst*, int> StaticAllocaMap;
182
183 unsigned MakeReg(MVT::ValueType VT) {
184 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
185 }
Misha Brukman835702a2005-04-21 22:36:52 +0000186
Chris Lattner49409cb2006-03-16 19:51:18 +0000187 unsigned CreateRegForValue(const Value *V);
188
Chris Lattner7a60d912005-01-07 07:47:53 +0000189 unsigned InitializeRegForValue(const Value *V) {
190 unsigned &R = ValueMap[V];
191 assert(R == 0 && "Already initialized this value register!");
192 return R = CreateRegForValue(V);
193 }
194 };
195}
196
197/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemaned728c12006-03-27 01:32:24 +0000198/// PHI nodes or outside of the basic block that defines it, or used by a
199/// switch instruction, which may expand to multiple basic blocks.
Chris Lattner7a60d912005-01-07 07:47:53 +0000200static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
201 if (isa<PHINode>(I)) return true;
202 BasicBlock *BB = I->getParent();
203 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemaned728c12006-03-27 01:32:24 +0000204 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
205 isa<SwitchInst>(*UI))
Chris Lattner7a60d912005-01-07 07:47:53 +0000206 return true;
207 return false;
208}
209
Chris Lattner6871b232005-10-30 19:42:35 +0000210/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemaned728c12006-03-27 01:32:24 +0000211/// entry block, return true. This includes arguments used by switches, since
212/// the switch may expand into multiple basic blocks.
Chris Lattner6871b232005-10-30 19:42:35 +0000213static bool isOnlyUsedInEntryBlock(Argument *A) {
214 BasicBlock *Entry = A->getParent()->begin();
215 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemaned728c12006-03-27 01:32:24 +0000216 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattner6871b232005-10-30 19:42:35 +0000217 return false; // Use not in entry block.
218 return true;
219}
220
Chris Lattner7a60d912005-01-07 07:47:53 +0000221FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukman835702a2005-04-21 22:36:52 +0000222 Function &fn, MachineFunction &mf)
Chris Lattner7a60d912005-01-07 07:47:53 +0000223 : TLI(tli), Fn(fn), MF(mf), RegMap(MF.getSSARegMap()) {
224
Chris Lattner6871b232005-10-30 19:42:35 +0000225 // Create a vreg for each argument register that is not dead and is used
226 // outside of the entry block for the function.
227 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
228 AI != E; ++AI)
229 if (!isOnlyUsedInEntryBlock(AI))
230 InitializeRegForValue(AI);
231
Chris Lattner7a60d912005-01-07 07:47:53 +0000232 // Initialize the mapping of values to registers. This is only set up for
233 // instruction values that are used outside of the block that defines
234 // them.
Jeff Cohenf8a5e5ae2005-10-01 03:57:14 +0000235 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner7a60d912005-01-07 07:47:53 +0000236 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
237 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
238 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(AI->getArraySize())) {
239 const Type *Ty = AI->getAllocatedType();
Owen Anderson20a631f2006-05-03 01:29:57 +0000240 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
Nate Begeman3ee3e692005-11-06 09:00:38 +0000241 unsigned Align =
Owen Anderson20a631f2006-05-03 01:29:57 +0000242 std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begeman3ee3e692005-11-06 09:00:38 +0000243 AI->getAlignment());
Chris Lattnercbefe722005-05-13 23:14:17 +0000244
245 // If the alignment of the value is smaller than the size of the value,
246 // and if the size of the value is particularly small (<= 8 bytes),
247 // round up to the size of the value for potentially better performance.
248 //
249 // FIXME: This could be made better with a preferred alignment hook in
250 // TargetData. It serves primarily to 8-byte align doubles for X86.
251 if (Align < TySize && TySize <= 8) Align = TySize;
Chris Lattner8396a302005-10-18 22:11:42 +0000252 TySize *= CUI->getValue(); // Get total allocated size.
Chris Lattner0a71a9a2005-10-18 22:14:06 +0000253 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner7a60d912005-01-07 07:47:53 +0000254 StaticAllocaMap[AI] =
Chris Lattnerd0061952005-01-08 19:52:31 +0000255 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
Chris Lattner7a60d912005-01-07 07:47:53 +0000256 }
257
Jeff Cohenf8a5e5ae2005-10-01 03:57:14 +0000258 for (; BB != EB; ++BB)
259 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner7a60d912005-01-07 07:47:53 +0000260 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
261 if (!isa<AllocaInst>(I) ||
262 !StaticAllocaMap.count(cast<AllocaInst>(I)))
263 InitializeRegForValue(I);
264
265 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
266 // also creates the initial PHI MachineInstrs, though none of the input
267 // operands are populated.
Jeff Cohenf8a5e5ae2005-10-01 03:57:14 +0000268 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Chris Lattner7a60d912005-01-07 07:47:53 +0000269 MachineBasicBlock *MBB = new MachineBasicBlock(BB);
270 MBBMap[BB] = MBB;
271 MF.getBasicBlockList().push_back(MBB);
272
273 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
274 // appropriate.
275 PHINode *PN;
276 for (BasicBlock::iterator I = BB->begin();
Chris Lattner8ea875f2005-01-07 21:34:19 +0000277 (PN = dyn_cast<PHINode>(I)); ++I)
278 if (!PN->use_empty()) {
Chris Lattner5fe1f542006-03-31 02:06:56 +0000279 MVT::ValueType VT = TLI.getValueType(PN->getType());
280 unsigned NumElements;
281 if (VT != MVT::Vector)
282 NumElements = TLI.getNumElements(VT);
283 else {
284 MVT::ValueType VT1,VT2;
285 NumElements =
286 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
287 VT1, VT2);
288 }
Chris Lattner8ea875f2005-01-07 21:34:19 +0000289 unsigned PHIReg = ValueMap[PN];
290 assert(PHIReg &&"PHI node does not have an assigned virtual register!");
291 for (unsigned i = 0; i != NumElements; ++i)
292 BuildMI(MBB, TargetInstrInfo::PHI, PN->getNumOperands(), PHIReg+i);
293 }
Chris Lattner7a60d912005-01-07 07:47:53 +0000294 }
295}
296
Chris Lattner49409cb2006-03-16 19:51:18 +0000297/// CreateRegForValue - Allocate the appropriate number of virtual registers of
298/// the correctly promoted or expanded types. Assign these registers
299/// consecutive vreg numbers and return the first assigned number.
300unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
301 MVT::ValueType VT = TLI.getValueType(V->getType());
302
303 // The number of multiples of registers that we need, to, e.g., split up
304 // a <2 x int64> -> 4 x i32 registers.
305 unsigned NumVectorRegs = 1;
306
307 // If this is a packed type, figure out what type it will decompose into
308 // and how many of the elements it will use.
309 if (VT == MVT::Vector) {
310 const PackedType *PTy = cast<PackedType>(V->getType());
311 unsigned NumElts = PTy->getNumElements();
312 MVT::ValueType EltTy = TLI.getValueType(PTy->getElementType());
313
314 // Divide the input until we get to a supported size. This will always
315 // end with a scalar if the target doesn't support vectors.
316 while (NumElts > 1 && !TLI.isTypeLegal(getVectorType(EltTy, NumElts))) {
317 NumElts >>= 1;
318 NumVectorRegs <<= 1;
319 }
Chris Lattner7ececaa2006-03-16 23:05:19 +0000320 if (NumElts == 1)
321 VT = EltTy;
322 else
323 VT = getVectorType(EltTy, NumElts);
Chris Lattner49409cb2006-03-16 19:51:18 +0000324 }
325
326 // The common case is that we will only create one register for this
327 // value. If we have that case, create and return the virtual register.
328 unsigned NV = TLI.getNumElements(VT);
329 if (NV == 1) {
330 // If we are promoting this value, pick the next largest supported type.
331 MVT::ValueType PromotedType = TLI.getTypeToTransformTo(VT);
332 unsigned Reg = MakeReg(PromotedType);
333 // If this is a vector of supported or promoted types (e.g. 4 x i16),
334 // create all of the registers.
335 for (unsigned i = 1; i != NumVectorRegs; ++i)
336 MakeReg(PromotedType);
337 return Reg;
338 }
339
340 // If this value is represented with multiple target registers, make sure
341 // to create enough consecutive registers of the right (smaller) type.
342 unsigned NT = VT-1; // Find the type to use.
343 while (TLI.getNumElements((MVT::ValueType)NT) != 1)
344 --NT;
345
346 unsigned R = MakeReg((MVT::ValueType)NT);
347 for (unsigned i = 1; i != NV*NumVectorRegs; ++i)
348 MakeReg((MVT::ValueType)NT);
349 return R;
350}
Chris Lattner7a60d912005-01-07 07:47:53 +0000351
352//===----------------------------------------------------------------------===//
353/// SelectionDAGLowering - This is the common target-independent lowering
354/// implementation that is parameterized by a TargetLowering object.
355/// Also, targets can overload any lowering method.
356///
357namespace llvm {
358class SelectionDAGLowering {
359 MachineBasicBlock *CurMBB;
360
361 std::map<const Value*, SDOperand> NodeMap;
362
Chris Lattner4d9651c2005-01-17 22:19:26 +0000363 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
364 /// them up and then emit token factor nodes when possible. This allows us to
365 /// get simple disambiguation between loads without worrying about alias
366 /// analysis.
367 std::vector<SDOperand> PendingLoads;
368
Nate Begemaned728c12006-03-27 01:32:24 +0000369 /// Case - A pair of values to record the Value for a switch case, and the
370 /// case's target basic block.
371 typedef std::pair<Constant*, MachineBasicBlock*> Case;
372 typedef std::vector<Case>::iterator CaseItr;
373 typedef std::pair<CaseItr, CaseItr> CaseRange;
374
375 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
376 /// of conditional branches.
377 struct CaseRec {
378 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
379 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
380
381 /// CaseBB - The MBB in which to emit the compare and branch
382 MachineBasicBlock *CaseBB;
383 /// LT, GE - If nonzero, we know the current case value must be less-than or
384 /// greater-than-or-equal-to these Constants.
385 Constant *LT;
386 Constant *GE;
387 /// Range - A pair of iterators representing the range of case values to be
388 /// processed at this point in the binary search tree.
389 CaseRange Range;
390 };
391
392 /// The comparison function for sorting Case values.
393 struct CaseCmp {
394 bool operator () (const Case& C1, const Case& C2) {
395 if (const ConstantUInt* U1 = dyn_cast<const ConstantUInt>(C1.first))
396 return U1->getValue() < cast<const ConstantUInt>(C2.first)->getValue();
397
398 const ConstantSInt* S1 = dyn_cast<const ConstantSInt>(C1.first);
399 return S1->getValue() < cast<const ConstantSInt>(C2.first)->getValue();
400 }
401 };
402
Chris Lattner7a60d912005-01-07 07:47:53 +0000403public:
404 // TLI - This is information that describes the available target features we
405 // need for lowering. This indicates when operations are unavailable,
406 // implemented with a libcall, etc.
407 TargetLowering &TLI;
408 SelectionDAG &DAG;
Owen Anderson20a631f2006-05-03 01:29:57 +0000409 const TargetData *TD;
Chris Lattner7a60d912005-01-07 07:47:53 +0000410
Nate Begemaned728c12006-03-27 01:32:24 +0000411 /// SwitchCases - Vector of CaseBlock structures used to communicate
412 /// SwitchInst code generation information.
413 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000414 SelectionDAGISel::JumpTable JT;
Nate Begemaned728c12006-03-27 01:32:24 +0000415
Chris Lattner7a60d912005-01-07 07:47:53 +0000416 /// FuncInfo - Information about the function as a whole.
417 ///
418 FunctionLoweringInfo &FuncInfo;
419
420 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Misha Brukman835702a2005-04-21 22:36:52 +0000421 FunctionLoweringInfo &funcinfo)
Chris Lattner7a60d912005-01-07 07:47:53 +0000422 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()),
Nate Begeman866b4b42006-04-23 06:26:20 +0000423 JT(0,0,0,0), FuncInfo(funcinfo) {
Chris Lattner7a60d912005-01-07 07:47:53 +0000424 }
425
Chris Lattner4108bb02005-01-17 19:43:36 +0000426 /// getRoot - Return the current virtual root of the Selection DAG.
427 ///
428 SDOperand getRoot() {
Chris Lattner4d9651c2005-01-17 22:19:26 +0000429 if (PendingLoads.empty())
430 return DAG.getRoot();
Misha Brukman835702a2005-04-21 22:36:52 +0000431
Chris Lattner4d9651c2005-01-17 22:19:26 +0000432 if (PendingLoads.size() == 1) {
433 SDOperand Root = PendingLoads[0];
434 DAG.setRoot(Root);
435 PendingLoads.clear();
436 return Root;
437 }
438
439 // Otherwise, we have to make a token factor node.
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000440 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
441 &PendingLoads[0], PendingLoads.size());
Chris Lattner4d9651c2005-01-17 22:19:26 +0000442 PendingLoads.clear();
443 DAG.setRoot(Root);
444 return Root;
Chris Lattner4108bb02005-01-17 19:43:36 +0000445 }
446
Chris Lattner7a60d912005-01-07 07:47:53 +0000447 void visit(Instruction &I) { visit(I.getOpcode(), I); }
448
449 void visit(unsigned Opcode, User &I) {
450 switch (Opcode) {
451 default: assert(0 && "Unknown instruction type encountered!");
452 abort();
453 // Build the switch statement using the Instruction.def file.
454#define HANDLE_INST(NUM, OPCODE, CLASS) \
455 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
456#include "llvm/Instruction.def"
457 }
458 }
459
460 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
461
Chris Lattner4024c002006-03-15 22:19:46 +0000462 SDOperand getLoadFrom(const Type *Ty, SDOperand Ptr,
463 SDOperand SrcValue, SDOperand Root,
464 bool isVolatile);
Chris Lattner7a60d912005-01-07 07:47:53 +0000465
466 SDOperand getIntPtrConstant(uint64_t Val) {
467 return DAG.getConstant(Val, TLI.getPointerTy());
468 }
469
Chris Lattner8471b152006-03-16 19:57:50 +0000470 SDOperand getValue(const Value *V);
Chris Lattner7a60d912005-01-07 07:47:53 +0000471
472 const SDOperand &setValue(const Value *V, SDOperand NewN) {
473 SDOperand &N = NodeMap[V];
474 assert(N.Val == 0 && "Already set a value for this node!");
475 return N = NewN;
476 }
Chris Lattner1558fc62006-02-01 18:59:47 +0000477
Chris Lattner6f87d182006-02-22 22:37:12 +0000478 RegsForValue GetRegistersForValue(const std::string &ConstrCode,
479 MVT::ValueType VT,
480 bool OutReg, bool InReg,
481 std::set<unsigned> &OutputRegs,
482 std::set<unsigned> &InputRegs);
Nate Begemaned728c12006-03-27 01:32:24 +0000483
Chris Lattner7a60d912005-01-07 07:47:53 +0000484 // Terminator instructions.
485 void visitRet(ReturnInst &I);
486 void visitBr(BranchInst &I);
Nate Begemaned728c12006-03-27 01:32:24 +0000487 void visitSwitch(SwitchInst &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000488 void visitUnreachable(UnreachableInst &I) { /* noop */ }
489
Nate Begemaned728c12006-03-27 01:32:24 +0000490 // Helper for visitSwitch
491 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000492 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Nate Begemaned728c12006-03-27 01:32:24 +0000493
Chris Lattner7a60d912005-01-07 07:47:53 +0000494 // These all get lowered before this pass.
Chris Lattner7a60d912005-01-07 07:47:53 +0000495 void visitInvoke(InvokeInst &I) { assert(0 && "TODO"); }
496 void visitUnwind(UnwindInst &I) { assert(0 && "TODO"); }
497
Nate Begemanb2e089c2005-11-19 00:36:38 +0000498 void visitBinary(User &I, unsigned IntOp, unsigned FPOp, unsigned VecOp);
Nate Begeman127321b2005-11-18 07:42:56 +0000499 void visitShift(User &I, unsigned Opcode);
Nate Begemanb2e089c2005-11-19 00:36:38 +0000500 void visitAdd(User &I) {
501 visitBinary(I, ISD::ADD, ISD::FADD, ISD::VADD);
Chris Lattner6f3b5772005-09-28 22:28:18 +0000502 }
Chris Lattnerf68fd0b2005-04-02 05:04:50 +0000503 void visitSub(User &I);
Nate Begemanb2e089c2005-11-19 00:36:38 +0000504 void visitMul(User &I) {
505 visitBinary(I, ISD::MUL, ISD::FMUL, ISD::VMUL);
Chris Lattner6f3b5772005-09-28 22:28:18 +0000506 }
Chris Lattner7a60d912005-01-07 07:47:53 +0000507 void visitDiv(User &I) {
Chris Lattner6f3b5772005-09-28 22:28:18 +0000508 const Type *Ty = I.getType();
Evan Cheng3bf916d2006-03-03 07:01:07 +0000509 visitBinary(I,
510 Ty->isSigned() ? ISD::SDIV : ISD::UDIV, ISD::FDIV,
511 Ty->isSigned() ? ISD::VSDIV : ISD::VUDIV);
Chris Lattner7a60d912005-01-07 07:47:53 +0000512 }
513 void visitRem(User &I) {
Chris Lattner6f3b5772005-09-28 22:28:18 +0000514 const Type *Ty = I.getType();
Nate Begemanb2e089c2005-11-19 00:36:38 +0000515 visitBinary(I, Ty->isSigned() ? ISD::SREM : ISD::UREM, ISD::FREM, 0);
Chris Lattner7a60d912005-01-07 07:47:53 +0000516 }
Evan Cheng3bf916d2006-03-03 07:01:07 +0000517 void visitAnd(User &I) { visitBinary(I, ISD::AND, 0, ISD::VAND); }
518 void visitOr (User &I) { visitBinary(I, ISD::OR, 0, ISD::VOR); }
519 void visitXor(User &I) { visitBinary(I, ISD::XOR, 0, ISD::VXOR); }
Nate Begeman127321b2005-11-18 07:42:56 +0000520 void visitShl(User &I) { visitShift(I, ISD::SHL); }
521 void visitShr(User &I) {
522 visitShift(I, I.getType()->isUnsigned() ? ISD::SRL : ISD::SRA);
Chris Lattner7a60d912005-01-07 07:47:53 +0000523 }
524
Evan Cheng1c5b7d12006-05-23 06:40:47 +0000525 void visitSetCC(User &I, ISD::CondCode SignedOpc, ISD::CondCode UnsignedOpc,
526 ISD::CondCode FPOpc);
527 void visitSetEQ(User &I) { visitSetCC(I, ISD::SETEQ, ISD::SETEQ,
528 ISD::SETOEQ); }
529 void visitSetNE(User &I) { visitSetCC(I, ISD::SETNE, ISD::SETNE,
530 ISD::SETUNE); }
531 void visitSetLE(User &I) { visitSetCC(I, ISD::SETLE, ISD::SETULE,
532 ISD::SETOLE); }
533 void visitSetGE(User &I) { visitSetCC(I, ISD::SETGE, ISD::SETUGE,
534 ISD::SETOGE); }
535 void visitSetLT(User &I) { visitSetCC(I, ISD::SETLT, ISD::SETULT,
536 ISD::SETOLT); }
537 void visitSetGT(User &I) { visitSetCC(I, ISD::SETGT, ISD::SETUGT,
538 ISD::SETOGT); }
Chris Lattner7a60d912005-01-07 07:47:53 +0000539
Chris Lattner67271862006-03-29 00:11:43 +0000540 void visitExtractElement(User &I);
541 void visitInsertElement(User &I);
Chris Lattner098c01e2006-04-08 04:15:24 +0000542 void visitShuffleVector(User &I);
Chris Lattner32206f52006-03-18 01:44:44 +0000543
Chris Lattner7a60d912005-01-07 07:47:53 +0000544 void visitGetElementPtr(User &I);
545 void visitCast(User &I);
546 void visitSelect(User &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000547
548 void visitMalloc(MallocInst &I);
549 void visitFree(FreeInst &I);
550 void visitAlloca(AllocaInst &I);
551 void visitLoad(LoadInst &I);
552 void visitStore(StoreInst &I);
553 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
554 void visitCall(CallInst &I);
Chris Lattner476e67b2006-01-26 22:24:51 +0000555 void visitInlineAsm(CallInst &I);
Chris Lattnercd6f0f42005-11-09 19:44:01 +0000556 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattnerd96b09a2006-03-24 02:22:33 +0000557 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner7a60d912005-01-07 07:47:53 +0000558
Chris Lattner7a60d912005-01-07 07:47:53 +0000559 void visitVAStart(CallInst &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000560 void visitVAArg(VAArgInst &I);
561 void visitVAEnd(CallInst &I);
562 void visitVACopy(CallInst &I);
Chris Lattner58cfd792005-01-09 00:00:49 +0000563 void visitFrameReturnAddress(CallInst &I, bool isFrameAddress);
Chris Lattner7a60d912005-01-07 07:47:53 +0000564
Chris Lattner875def92005-01-11 05:56:49 +0000565 void visitMemIntrinsic(CallInst &I, unsigned Op);
Chris Lattner7a60d912005-01-07 07:47:53 +0000566
567 void visitUserOp1(Instruction &I) {
568 assert(0 && "UserOp1 should not exist at instruction selection time!");
569 abort();
570 }
571 void visitUserOp2(Instruction &I) {
572 assert(0 && "UserOp2 should not exist at instruction selection time!");
573 abort();
574 }
575};
576} // end namespace llvm
577
Chris Lattner8471b152006-03-16 19:57:50 +0000578SDOperand SelectionDAGLowering::getValue(const Value *V) {
579 SDOperand &N = NodeMap[V];
580 if (N.Val) return N;
581
582 const Type *VTy = V->getType();
583 MVT::ValueType VT = TLI.getValueType(VTy);
584 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
585 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
586 visit(CE->getOpcode(), *CE);
587 assert(N.Val && "visit didn't populate the ValueMap!");
588 return N;
589 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) {
590 return N = DAG.getGlobalAddress(GV, VT);
591 } else if (isa<ConstantPointerNull>(C)) {
592 return N = DAG.getConstant(0, TLI.getPointerTy());
593 } else if (isa<UndefValue>(C)) {
Chris Lattnerc16b05e2006-03-19 00:20:20 +0000594 if (!isa<PackedType>(VTy))
595 return N = DAG.getNode(ISD::UNDEF, VT);
596
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000597 // Create a VBUILD_VECTOR of undef nodes.
Chris Lattnerc16b05e2006-03-19 00:20:20 +0000598 const PackedType *PTy = cast<PackedType>(VTy);
599 unsigned NumElements = PTy->getNumElements();
600 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
601
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000602 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc16b05e2006-03-19 00:20:20 +0000603 Ops.assign(NumElements, DAG.getNode(ISD::UNDEF, PVT));
604
605 // Create a VConstant node with generic Vector type.
606 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
607 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000608 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector,
609 &Ops[0], Ops.size());
Chris Lattner8471b152006-03-16 19:57:50 +0000610 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
611 return N = DAG.getConstantFP(CFP->getValue(), VT);
612 } else if (const PackedType *PTy = dyn_cast<PackedType>(VTy)) {
613 unsigned NumElements = PTy->getNumElements();
614 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattner8471b152006-03-16 19:57:50 +0000615
616 // Now that we know the number and type of the elements, push a
617 // Constant or ConstantFP node onto the ops list for each element of
618 // the packed constant.
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000619 SmallVector<SDOperand, 8> Ops;
Chris Lattner8471b152006-03-16 19:57:50 +0000620 if (ConstantPacked *CP = dyn_cast<ConstantPacked>(C)) {
Chris Lattner67271862006-03-29 00:11:43 +0000621 for (unsigned i = 0; i != NumElements; ++i)
622 Ops.push_back(getValue(CP->getOperand(i)));
Chris Lattner8471b152006-03-16 19:57:50 +0000623 } else {
624 assert(isa<ConstantAggregateZero>(C) && "Unknown packed constant!");
625 SDOperand Op;
626 if (MVT::isFloatingPoint(PVT))
627 Op = DAG.getConstantFP(0, PVT);
628 else
629 Op = DAG.getConstant(0, PVT);
630 Ops.assign(NumElements, Op);
631 }
632
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000633 // Create a VBUILD_VECTOR node with generic Vector type.
Chris Lattnerc16b05e2006-03-19 00:20:20 +0000634 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
635 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000636 return N = DAG.getNode(ISD::VBUILD_VECTOR,MVT::Vector,&Ops[0],Ops.size());
Chris Lattner8471b152006-03-16 19:57:50 +0000637 } else {
638 // Canonicalize all constant ints to be unsigned.
639 return N = DAG.getConstant(cast<ConstantIntegral>(C)->getRawValue(),VT);
640 }
641 }
642
643 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
644 std::map<const AllocaInst*, int>::iterator SI =
645 FuncInfo.StaticAllocaMap.find(AI);
646 if (SI != FuncInfo.StaticAllocaMap.end())
647 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
648 }
649
650 std::map<const Value*, unsigned>::const_iterator VMI =
651 FuncInfo.ValueMap.find(V);
652 assert(VMI != FuncInfo.ValueMap.end() && "Value not in map!");
653
654 unsigned InReg = VMI->second;
655
656 // If this type is not legal, make it so now.
Chris Lattner5fe1f542006-03-31 02:06:56 +0000657 if (VT != MVT::Vector) {
658 MVT::ValueType DestVT = TLI.getTypeToTransformTo(VT);
Chris Lattner8471b152006-03-16 19:57:50 +0000659
Chris Lattner5fe1f542006-03-31 02:06:56 +0000660 N = DAG.getCopyFromReg(DAG.getEntryNode(), InReg, DestVT);
661 if (DestVT < VT) {
662 // Source must be expanded. This input value is actually coming from the
663 // register pair VMI->second and VMI->second+1.
664 N = DAG.getNode(ISD::BUILD_PAIR, VT, N,
665 DAG.getCopyFromReg(DAG.getEntryNode(), InReg+1, DestVT));
666 } else if (DestVT > VT) { // Promotion case
Chris Lattner8471b152006-03-16 19:57:50 +0000667 if (MVT::isFloatingPoint(VT))
668 N = DAG.getNode(ISD::FP_ROUND, VT, N);
669 else
670 N = DAG.getNode(ISD::TRUNCATE, VT, N);
671 }
Chris Lattner5fe1f542006-03-31 02:06:56 +0000672 } else {
673 // Otherwise, if this is a vector, make it available as a generic vector
674 // here.
675 MVT::ValueType PTyElementVT, PTyLegalElementVT;
Chris Lattner4a2413a2006-04-05 06:54:42 +0000676 const PackedType *PTy = cast<PackedType>(VTy);
677 unsigned NE = TLI.getPackedTypeBreakdown(PTy, PTyElementVT,
Chris Lattner5fe1f542006-03-31 02:06:56 +0000678 PTyLegalElementVT);
679
680 // Build a VBUILD_VECTOR with the input registers.
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000681 SmallVector<SDOperand, 8> Ops;
Chris Lattner5fe1f542006-03-31 02:06:56 +0000682 if (PTyElementVT == PTyLegalElementVT) {
683 // If the value types are legal, just VBUILD the CopyFromReg nodes.
684 for (unsigned i = 0; i != NE; ++i)
685 Ops.push_back(DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
686 PTyElementVT));
687 } else if (PTyElementVT < PTyLegalElementVT) {
688 // If the register was promoted, use TRUNCATE of FP_ROUND as appropriate.
689 for (unsigned i = 0; i != NE; ++i) {
690 SDOperand Op = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
691 PTyElementVT);
692 if (MVT::isFloatingPoint(PTyElementVT))
693 Op = DAG.getNode(ISD::FP_ROUND, PTyElementVT, Op);
694 else
695 Op = DAG.getNode(ISD::TRUNCATE, PTyElementVT, Op);
696 Ops.push_back(Op);
697 }
698 } else {
699 // If the register was expanded, use BUILD_PAIR.
700 assert((NE & 1) == 0 && "Must expand into a multiple of 2 elements!");
701 for (unsigned i = 0; i != NE/2; ++i) {
702 SDOperand Op0 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
703 PTyElementVT);
704 SDOperand Op1 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
705 PTyElementVT);
706 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Op0, Op1));
707 }
708 }
709
710 Ops.push_back(DAG.getConstant(NE, MVT::i32));
711 Ops.push_back(DAG.getValueType(PTyLegalElementVT));
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000712 N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &Ops[0], Ops.size());
Chris Lattner4a2413a2006-04-05 06:54:42 +0000713
714 // Finally, use a VBIT_CONVERT to make this available as the appropriate
715 // vector type.
716 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
717 DAG.getConstant(PTy->getNumElements(),
718 MVT::i32),
719 DAG.getValueType(TLI.getValueType(PTy->getElementType())));
Chris Lattner8471b152006-03-16 19:57:50 +0000720 }
721
722 return N;
723}
724
725
Chris Lattner7a60d912005-01-07 07:47:53 +0000726void SelectionDAGLowering::visitRet(ReturnInst &I) {
727 if (I.getNumOperands() == 0) {
Chris Lattner4108bb02005-01-17 19:43:36 +0000728 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getRoot()));
Chris Lattner7a60d912005-01-07 07:47:53 +0000729 return;
730 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000731 SmallVector<SDOperand, 8> NewValues;
Nate Begeman8c47c3a2006-01-27 21:09:22 +0000732 NewValues.push_back(getRoot());
733 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
734 SDOperand RetOp = getValue(I.getOperand(i));
Evan Chenga2e99532006-05-26 23:09:09 +0000735 bool isSigned = I.getOperand(i)->getType()->isSigned();
Nate Begeman8c47c3a2006-01-27 21:09:22 +0000736
737 // If this is an integer return value, we need to promote it ourselves to
738 // the full width of a register, since LegalizeOp will use ANY_EXTEND rather
739 // than sign/zero.
Evan Chenga2e99532006-05-26 23:09:09 +0000740 // FIXME: C calling convention requires the return type to be promoted to
741 // at least 32-bit. But this is not necessary for non-C calling conventions.
Nate Begeman8c47c3a2006-01-27 21:09:22 +0000742 if (MVT::isInteger(RetOp.getValueType()) &&
743 RetOp.getValueType() < MVT::i64) {
744 MVT::ValueType TmpVT;
745 if (TLI.getTypeAction(MVT::i32) == TargetLowering::Promote)
746 TmpVT = TLI.getTypeToTransformTo(MVT::i32);
747 else
748 TmpVT = MVT::i32;
Chris Lattner7a60d912005-01-07 07:47:53 +0000749
Evan Chenga2e99532006-05-26 23:09:09 +0000750 if (isSigned)
Nate Begeman8c47c3a2006-01-27 21:09:22 +0000751 RetOp = DAG.getNode(ISD::SIGN_EXTEND, TmpVT, RetOp);
752 else
753 RetOp = DAG.getNode(ISD::ZERO_EXTEND, TmpVT, RetOp);
754 }
755 NewValues.push_back(RetOp);
Evan Chenga2e99532006-05-26 23:09:09 +0000756 NewValues.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattner7a60d912005-01-07 07:47:53 +0000757 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000758 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
759 &NewValues[0], NewValues.size()));
Chris Lattner7a60d912005-01-07 07:47:53 +0000760}
761
762void SelectionDAGLowering::visitBr(BranchInst &I) {
763 // Update machine-CFG edges.
764 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Nate Begemaned728c12006-03-27 01:32:24 +0000765 CurMBB->addSuccessor(Succ0MBB);
Chris Lattner7a60d912005-01-07 07:47:53 +0000766
767 // Figure out which block is immediately after the current one.
768 MachineBasicBlock *NextBlock = 0;
769 MachineFunction::iterator BBI = CurMBB;
770 if (++BBI != CurMBB->getParent()->end())
771 NextBlock = BBI;
772
773 if (I.isUnconditional()) {
774 // If this is not a fall-through branch, emit the branch.
775 if (Succ0MBB != NextBlock)
Chris Lattner4108bb02005-01-17 19:43:36 +0000776 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
Misha Brukman77451162005-04-22 04:01:18 +0000777 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +0000778 } else {
779 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Nate Begemaned728c12006-03-27 01:32:24 +0000780 CurMBB->addSuccessor(Succ1MBB);
Chris Lattner7a60d912005-01-07 07:47:53 +0000781
782 SDOperand Cond = getValue(I.getCondition());
Chris Lattner7a60d912005-01-07 07:47:53 +0000783 if (Succ1MBB == NextBlock) {
784 // If the condition is false, fall through. This means we should branch
785 // if the condition is true to Succ #0.
Chris Lattner4108bb02005-01-17 19:43:36 +0000786 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukman77451162005-04-22 04:01:18 +0000787 Cond, DAG.getBasicBlock(Succ0MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +0000788 } else if (Succ0MBB == NextBlock) {
789 // If the condition is true, fall through. This means we should branch if
790 // the condition is false to Succ #1. Invert the condition first.
791 SDOperand True = DAG.getConstant(1, Cond.getValueType());
792 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
Chris Lattner4108bb02005-01-17 19:43:36 +0000793 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukman77451162005-04-22 04:01:18 +0000794 Cond, DAG.getBasicBlock(Succ1MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +0000795 } else {
Chris Lattner8a98c7f2005-04-09 03:30:29 +0000796 std::vector<SDOperand> Ops;
797 Ops.push_back(getRoot());
Evan Cheng42c01c82006-02-16 08:27:56 +0000798 // If the false case is the current basic block, then this is a self
799 // loop. We do not want to emit "Loop: ... brcond Out; br Loop", as it
800 // adds an extra instruction in the loop. Instead, invert the
801 // condition and emit "Loop: ... br!cond Loop; br Out.
802 if (CurMBB == Succ1MBB) {
803 std::swap(Succ0MBB, Succ1MBB);
804 SDOperand True = DAG.getConstant(1, Cond.getValueType());
805 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
806 }
Nate Begemanbb01d4f2006-03-17 01:40:33 +0000807 SDOperand True = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
808 DAG.getBasicBlock(Succ0MBB));
809 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, True,
810 DAG.getBasicBlock(Succ1MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +0000811 }
812 }
813}
814
Nate Begemaned728c12006-03-27 01:32:24 +0000815/// visitSwitchCase - Emits the necessary code to represent a single node in
816/// the binary search tree resulting from lowering a switch instruction.
817void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
818 SDOperand SwitchOp = getValue(CB.SwitchV);
819 SDOperand CaseOp = getValue(CB.CaseC);
820 SDOperand Cond = DAG.getSetCC(MVT::i1, SwitchOp, CaseOp, CB.CC);
821
822 // Set NextBlock to be the MBB immediately after the current one, if any.
823 // This is used to avoid emitting unnecessary branches to the next block.
824 MachineBasicBlock *NextBlock = 0;
825 MachineFunction::iterator BBI = CurMBB;
826 if (++BBI != CurMBB->getParent()->end())
827 NextBlock = BBI;
828
829 // If the lhs block is the next block, invert the condition so that we can
830 // fall through to the lhs instead of the rhs block.
831 if (CB.LHSBB == NextBlock) {
832 std::swap(CB.LHSBB, CB.RHSBB);
833 SDOperand True = DAG.getConstant(1, Cond.getValueType());
834 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
835 }
836 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
837 DAG.getBasicBlock(CB.LHSBB));
838 if (CB.RHSBB == NextBlock)
839 DAG.setRoot(BrCond);
840 else
841 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
842 DAG.getBasicBlock(CB.RHSBB)));
843 // Update successor info
844 CurMBB->addSuccessor(CB.LHSBB);
845 CurMBB->addSuccessor(CB.RHSBB);
846}
847
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000848/// visitSwitchCase - Emits the necessary code to represent a single node in
849/// the binary search tree resulting from lowering a switch instruction.
850void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
851 // FIXME: Need to emit different code for PIC vs. Non-PIC, specifically,
852 // we need to add the address of the jump table to the value loaded, since
853 // the entries in the jump table will be differences rather than absolute
854 // addresses.
855
856 // Emit the code for the jump table
857 MVT::ValueType PTy = TLI.getPointerTy();
Evan Cheng6ae6ac12006-08-01 01:03:13 +0000858 assert((PTy == MVT::i32 || PTy == MVT::i64) &&
859 "Jump table entries are 32-bit values");
860 // PIC jump table entries are 32-bit values.
861 unsigned EntrySize =
862 (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_)
863 ? 4 : MVT::getSizeInBits(PTy)/8;
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000864 SDOperand Copy = DAG.getCopyFromReg(getRoot(), JT.Reg, PTy);
865 SDOperand IDX = DAG.getNode(ISD::MUL, PTy, Copy,
Evan Cheng6ae6ac12006-08-01 01:03:13 +0000866 DAG.getConstant(EntrySize, PTy));
Nate Begeman78756502006-07-27 01:13:04 +0000867 SDOperand TAB = DAG.getJumpTable(JT.JTI,PTy);
868 SDOperand ADD = DAG.getNode(ISD::ADD, PTy, IDX, TAB);
Evan Cheng6ae6ac12006-08-01 01:03:13 +0000869 SDOperand LD = DAG.getLoad(MVT::i32, Copy.getValue(1), ADD,
870 DAG.getSrcValue(0));
Nate Begeman78756502006-07-27 01:13:04 +0000871 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng6ae6ac12006-08-01 01:03:13 +0000872 ADD = DAG.getNode(ISD::ADD, PTy,
873 ((PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD), TAB);
Nate Begeman78756502006-07-27 01:13:04 +0000874 DAG.setRoot(DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), ADD));
875 } else {
876 DAG.setRoot(DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD));
877 }
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000878}
879
Nate Begemaned728c12006-03-27 01:32:24 +0000880void SelectionDAGLowering::visitSwitch(SwitchInst &I) {
881 // Figure out which block is immediately after the current one.
882 MachineBasicBlock *NextBlock = 0;
883 MachineFunction::iterator BBI = CurMBB;
884 if (++BBI != CurMBB->getParent()->end())
885 NextBlock = BBI;
886
887 // If there is only the default destination, branch to it if it is not the
888 // next basic block. Otherwise, just fall through.
889 if (I.getNumOperands() == 2) {
890 // Update machine-CFG edges.
891 MachineBasicBlock *DefaultMBB = FuncInfo.MBBMap[I.getDefaultDest()];
892 // If this is not a fall-through branch, emit the branch.
893 if (DefaultMBB != NextBlock)
894 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
895 DAG.getBasicBlock(DefaultMBB)));
Chris Lattner32d92e02006-06-12 18:25:29 +0000896 CurMBB->addSuccessor(DefaultMBB);
Nate Begemaned728c12006-03-27 01:32:24 +0000897 return;
898 }
899
900 // If there are any non-default case statements, create a vector of Cases
901 // representing each one, and sort the vector so that we can efficiently
902 // create a binary search tree from them.
903 std::vector<Case> Cases;
904 for (unsigned i = 1; i < I.getNumSuccessors(); ++i) {
905 MachineBasicBlock *SMBB = FuncInfo.MBBMap[I.getSuccessor(i)];
906 Cases.push_back(Case(I.getSuccessorValue(i), SMBB));
907 }
908 std::sort(Cases.begin(), Cases.end(), CaseCmp());
909
910 // Get the Value to be switched on and default basic blocks, which will be
911 // inserted into CaseBlock records, representing basic blocks in the binary
912 // search tree.
913 Value *SV = I.getOperand(0);
914 MachineBasicBlock *Default = FuncInfo.MBBMap[I.getDefaultDest()];
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000915
916 // Get the MachineFunction which holds the current MBB. This is used during
917 // emission of jump tables, and when inserting any additional MBBs necessary
918 // to represent the switch.
Nate Begemaned728c12006-03-27 01:32:24 +0000919 MachineFunction *CurMF = CurMBB->getParent();
920 const BasicBlock *LLVMBB = CurMBB->getBasicBlock();
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000921
Nate Begemand7a19102006-05-08 16:51:36 +0000922 // If the switch has more than 5 blocks, and at least 31.25% dense, and the
923 // target supports indirect branches, then emit a jump table rather than
924 // lowering the switch to a binary tree of conditional branches.
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000925 // FIXME: Make this work with PIC code
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::set<MachineBasicBlock*> UniqueBBs;
975 std::vector<MachineBasicBlock*> DestBBs;
Nate Begemandf488392006-05-03 03:48:02 +0000976 uint64_t TEI = First;
977 for (CaseItr ii = Cases.begin(), ee = Cases.end(); ii != ee; ++TEI) {
978 if (cast<ConstantIntegral>(ii->first)->getRawValue() == TEI) {
979 DestBBs.push_back(ii->second);
980 UniqueBBs.insert(ii->second);
981 ++ii;
982 } else {
983 DestBBs.push_back(Default);
984 UniqueBBs.insert(Default);
985 }
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000986 }
Nate Begemandf488392006-05-03 03:48:02 +0000987
988 // Update successor info
989 for (std::set<MachineBasicBlock*>::iterator ii = UniqueBBs.begin(),
990 ee = UniqueBBs.end(); ii != ee; ++ii)
991 JumpTableBB->addSuccessor(*ii);
992
993 // Create a jump table index for this jump table, or return an existing
994 // one.
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000995 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
996
997 // Set the jump table information so that we can codegen it as a second
998 // MachineBasicBlock
999 JT.Reg = JumpTableReg;
1000 JT.JTI = JTI;
1001 JT.MBB = JumpTableBB;
Nate Begeman866b4b42006-04-23 06:26:20 +00001002 JT.Default = Default;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001003 return;
1004 }
1005 }
Nate Begemaned728c12006-03-27 01:32:24 +00001006
1007 // Push the initial CaseRec onto the worklist
1008 std::vector<CaseRec> CaseVec;
1009 CaseVec.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
1010
1011 while (!CaseVec.empty()) {
1012 // Grab a record representing a case range to process off the worklist
1013 CaseRec CR = CaseVec.back();
1014 CaseVec.pop_back();
1015
1016 // Size is the number of Cases represented by this range. If Size is 1,
1017 // then we are processing a leaf of the binary search tree. Otherwise,
1018 // we need to pick a pivot, and push left and right ranges onto the
1019 // worklist.
1020 unsigned Size = CR.Range.second - CR.Range.first;
1021
1022 if (Size == 1) {
1023 // Create a CaseBlock record representing a conditional branch to
1024 // the Case's target mbb if the value being switched on SV is equal
1025 // to C. Otherwise, branch to default.
1026 Constant *C = CR.Range.first->first;
1027 MachineBasicBlock *Target = CR.Range.first->second;
1028 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, SV, C, Target, Default,
1029 CR.CaseBB);
1030 // If the MBB representing the leaf node is the current MBB, then just
1031 // call visitSwitchCase to emit the code into the current block.
1032 // Otherwise, push the CaseBlock onto the vector to be later processed
1033 // by SDISel, and insert the node's MBB before the next MBB.
1034 if (CR.CaseBB == CurMBB)
1035 visitSwitchCase(CB);
1036 else {
1037 SwitchCases.push_back(CB);
1038 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1039 }
1040 } else {
1041 // split case range at pivot
1042 CaseItr Pivot = CR.Range.first + (Size / 2);
1043 CaseRange LHSR(CR.Range.first, Pivot);
1044 CaseRange RHSR(Pivot, CR.Range.second);
1045 Constant *C = Pivot->first;
1046 MachineBasicBlock *RHSBB = 0, *LHSBB = 0;
1047 // We know that we branch to the LHS if the Value being switched on is
1048 // less than the Pivot value, C. We use this to optimize our binary
1049 // tree a bit, by recognizing that if SV is greater than or equal to the
1050 // LHS's Case Value, and that Case Value is exactly one less than the
1051 // Pivot's Value, then we can branch directly to the LHS's Target,
1052 // rather than creating a leaf node for it.
1053 if ((LHSR.second - LHSR.first) == 1 &&
1054 LHSR.first->first == CR.GE &&
1055 cast<ConstantIntegral>(C)->getRawValue() ==
1056 (cast<ConstantIntegral>(CR.GE)->getRawValue() + 1ULL)) {
1057 LHSBB = LHSR.first->second;
1058 } else {
1059 LHSBB = new MachineBasicBlock(LLVMBB);
1060 CaseVec.push_back(CaseRec(LHSBB,C,CR.GE,LHSR));
1061 }
1062 // Similar to the optimization above, if the Value being switched on is
1063 // known to be less than the Constant CR.LT, and the current Case Value
1064 // is CR.LT - 1, then we can branch directly to the target block for
1065 // the current Case Value, rather than emitting a RHS leaf node for it.
1066 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
1067 cast<ConstantIntegral>(RHSR.first->first)->getRawValue() ==
1068 (cast<ConstantIntegral>(CR.LT)->getRawValue() - 1ULL)) {
1069 RHSBB = RHSR.first->second;
1070 } else {
1071 RHSBB = new MachineBasicBlock(LLVMBB);
1072 CaseVec.push_back(CaseRec(RHSBB,CR.LT,C,RHSR));
1073 }
1074 // Create a CaseBlock record representing a conditional branch to
1075 // the LHS node if the value being switched on SV is less than C.
1076 // Otherwise, branch to LHS.
1077 ISD::CondCode CC = C->getType()->isSigned() ? ISD::SETLT : ISD::SETULT;
1078 SelectionDAGISel::CaseBlock CB(CC, SV, C, LHSBB, RHSBB, CR.CaseBB);
1079 if (CR.CaseBB == CurMBB)
1080 visitSwitchCase(CB);
1081 else {
1082 SwitchCases.push_back(CB);
1083 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1084 }
1085 }
1086 }
1087}
1088
Chris Lattnerf68fd0b2005-04-02 05:04:50 +00001089void SelectionDAGLowering::visitSub(User &I) {
1090 // -0.0 - X --> fneg
Chris Lattner6f3b5772005-09-28 22:28:18 +00001091 if (I.getType()->isFloatingPoint()) {
1092 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
1093 if (CFP->isExactlyValue(-0.0)) {
1094 SDOperand Op2 = getValue(I.getOperand(1));
1095 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
1096 return;
1097 }
Chris Lattner6f3b5772005-09-28 22:28:18 +00001098 }
Nate Begemanb2e089c2005-11-19 00:36:38 +00001099 visitBinary(I, ISD::SUB, ISD::FSUB, ISD::VSUB);
Chris Lattnerf68fd0b2005-04-02 05:04:50 +00001100}
1101
Nate Begemanb2e089c2005-11-19 00:36:38 +00001102void SelectionDAGLowering::visitBinary(User &I, unsigned IntOp, unsigned FPOp,
1103 unsigned VecOp) {
1104 const Type *Ty = I.getType();
Chris Lattner7a60d912005-01-07 07:47:53 +00001105 SDOperand Op1 = getValue(I.getOperand(0));
1106 SDOperand Op2 = getValue(I.getOperand(1));
Chris Lattner96c26752005-01-19 22:31:21 +00001107
Chris Lattner19baba62005-11-19 18:40:42 +00001108 if (Ty->isIntegral()) {
Nate Begemanb2e089c2005-11-19 00:36:38 +00001109 setValue(&I, DAG.getNode(IntOp, Op1.getValueType(), Op1, Op2));
1110 } else if (Ty->isFloatingPoint()) {
1111 setValue(&I, DAG.getNode(FPOp, Op1.getValueType(), Op1, Op2));
1112 } else {
1113 const PackedType *PTy = cast<PackedType>(Ty);
Chris Lattner32206f52006-03-18 01:44:44 +00001114 SDOperand Num = DAG.getConstant(PTy->getNumElements(), MVT::i32);
1115 SDOperand Typ = DAG.getValueType(TLI.getValueType(PTy->getElementType()));
1116 setValue(&I, DAG.getNode(VecOp, MVT::Vector, Op1, Op2, Num, Typ));
Nate Begemanb2e089c2005-11-19 00:36:38 +00001117 }
Nate Begeman127321b2005-11-18 07:42:56 +00001118}
Chris Lattner96c26752005-01-19 22:31:21 +00001119
Nate Begeman127321b2005-11-18 07:42:56 +00001120void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
1121 SDOperand Op1 = getValue(I.getOperand(0));
1122 SDOperand Op2 = getValue(I.getOperand(1));
1123
1124 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
1125
Chris Lattner7a60d912005-01-07 07:47:53 +00001126 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
1127}
1128
1129void SelectionDAGLowering::visitSetCC(User &I,ISD::CondCode SignedOpcode,
Evan Cheng1c5b7d12006-05-23 06:40:47 +00001130 ISD::CondCode UnsignedOpcode,
1131 ISD::CondCode FPOpcode) {
Chris Lattner7a60d912005-01-07 07:47:53 +00001132 SDOperand Op1 = getValue(I.getOperand(0));
1133 SDOperand Op2 = getValue(I.getOperand(1));
1134 ISD::CondCode Opcode = SignedOpcode;
Evan Chengac4f66f2006-05-23 18:18:46 +00001135 if (!FiniteOnlyFPMath() && I.getOperand(0)->getType()->isFloatingPoint())
Evan Cheng1c5b7d12006-05-23 06:40:47 +00001136 Opcode = FPOpcode;
1137 else if (I.getOperand(0)->getType()->isUnsigned())
Chris Lattner7a60d912005-01-07 07:47:53 +00001138 Opcode = UnsignedOpcode;
Chris Lattnerd47675e2005-08-09 20:20:18 +00001139 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
Chris Lattner7a60d912005-01-07 07:47:53 +00001140}
1141
1142void SelectionDAGLowering::visitSelect(User &I) {
1143 SDOperand Cond = getValue(I.getOperand(0));
1144 SDOperand TrueVal = getValue(I.getOperand(1));
1145 SDOperand FalseVal = getValue(I.getOperand(2));
Chris Lattner02274a52006-04-08 22:22:57 +00001146 if (!isa<PackedType>(I.getType())) {
1147 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
1148 TrueVal, FalseVal));
1149 } else {
1150 setValue(&I, DAG.getNode(ISD::VSELECT, MVT::Vector, Cond, TrueVal, FalseVal,
1151 *(TrueVal.Val->op_end()-2),
1152 *(TrueVal.Val->op_end()-1)));
1153 }
Chris Lattner7a60d912005-01-07 07:47:53 +00001154}
1155
1156void SelectionDAGLowering::visitCast(User &I) {
1157 SDOperand N = getValue(I.getOperand(0));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001158 MVT::ValueType SrcVT = N.getValueType();
Chris Lattner4024c002006-03-15 22:19:46 +00001159 MVT::ValueType DestVT = TLI.getValueType(I.getType());
Chris Lattner7a60d912005-01-07 07:47:53 +00001160
Chris Lattner2f4119a2006-03-22 20:09:35 +00001161 if (DestVT == MVT::Vector) {
1162 // This is a cast to a vector from something else. This is always a bit
1163 // convert. Get information about the input vector.
1164 const PackedType *DestTy = cast<PackedType>(I.getType());
1165 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1166 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N,
1167 DAG.getConstant(DestTy->getNumElements(),MVT::i32),
1168 DAG.getValueType(EltVT)));
1169 } else if (SrcVT == DestVT) {
Chris Lattner7a60d912005-01-07 07:47:53 +00001170 setValue(&I, N); // noop cast.
Chris Lattner4024c002006-03-15 22:19:46 +00001171 } else if (DestVT == MVT::i1) {
Chris Lattner2d8b55c2005-05-09 22:17:13 +00001172 // Cast to bool is a comparison against zero, not truncation to zero.
Chris Lattner4024c002006-03-15 22:19:46 +00001173 SDOperand Zero = isInteger(SrcVT) ? DAG.getConstant(0, N.getValueType()) :
Chris Lattner2d8b55c2005-05-09 22:17:13 +00001174 DAG.getConstantFP(0.0, N.getValueType());
Chris Lattnerd47675e2005-08-09 20:20:18 +00001175 setValue(&I, DAG.getSetCC(MVT::i1, N, Zero, ISD::SETNE));
Chris Lattner4024c002006-03-15 22:19:46 +00001176 } else if (isInteger(SrcVT)) {
1177 if (isInteger(DestVT)) { // Int -> Int cast
1178 if (DestVT < SrcVT) // Truncating cast?
1179 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001180 else if (I.getOperand(0)->getType()->isSigned())
Chris Lattner4024c002006-03-15 22:19:46 +00001181 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001182 else
Chris Lattner4024c002006-03-15 22:19:46 +00001183 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
Chris Lattnerb893d042006-03-22 22:20:49 +00001184 } else if (isFloatingPoint(DestVT)) { // Int -> FP cast
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001185 if (I.getOperand(0)->getType()->isSigned())
Chris Lattner4024c002006-03-15 22:19:46 +00001186 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001187 else
Chris Lattner4024c002006-03-15 22:19:46 +00001188 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001189 } else {
1190 assert(0 && "Unknown cast!");
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001191 }
Chris Lattner4024c002006-03-15 22:19:46 +00001192 } else if (isFloatingPoint(SrcVT)) {
1193 if (isFloatingPoint(DestVT)) { // FP -> FP cast
1194 if (DestVT < SrcVT) // Rounding cast?
1195 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001196 else
Chris Lattner4024c002006-03-15 22:19:46 +00001197 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001198 } else if (isInteger(DestVT)) { // FP -> Int cast.
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001199 if (I.getType()->isSigned())
Chris Lattner4024c002006-03-15 22:19:46 +00001200 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001201 else
Chris Lattner4024c002006-03-15 22:19:46 +00001202 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001203 } else {
1204 assert(0 && "Unknown cast!");
Chris Lattner4024c002006-03-15 22:19:46 +00001205 }
1206 } else {
Chris Lattner2f4119a2006-03-22 20:09:35 +00001207 assert(SrcVT == MVT::Vector && "Unknown cast!");
1208 assert(DestVT != MVT::Vector && "Casts to vector already handled!");
1209 // This is a cast from a vector to something else. This is always a bit
1210 // convert. Get information about the input vector.
1211 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N));
Chris Lattner7a60d912005-01-07 07:47:53 +00001212 }
1213}
1214
Chris Lattner67271862006-03-29 00:11:43 +00001215void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattner32206f52006-03-18 01:44:44 +00001216 SDOperand InVec = getValue(I.getOperand(0));
1217 SDOperand InVal = getValue(I.getOperand(1));
1218 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1219 getValue(I.getOperand(2)));
1220
Chris Lattner29b23012006-03-19 01:17:20 +00001221 SDOperand Num = *(InVec.Val->op_end()-2);
1222 SDOperand Typ = *(InVec.Val->op_end()-1);
1223 setValue(&I, DAG.getNode(ISD::VINSERT_VECTOR_ELT, MVT::Vector,
1224 InVec, InVal, InIdx, Num, Typ));
Chris Lattner32206f52006-03-18 01:44:44 +00001225}
1226
Chris Lattner67271862006-03-29 00:11:43 +00001227void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001228 SDOperand InVec = getValue(I.getOperand(0));
1229 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1230 getValue(I.getOperand(1)));
1231 SDOperand Typ = *(InVec.Val->op_end()-1);
1232 setValue(&I, DAG.getNode(ISD::VEXTRACT_VECTOR_ELT,
1233 TLI.getValueType(I.getType()), InVec, InIdx));
1234}
Chris Lattner32206f52006-03-18 01:44:44 +00001235
Chris Lattner098c01e2006-04-08 04:15:24 +00001236void SelectionDAGLowering::visitShuffleVector(User &I) {
1237 SDOperand V1 = getValue(I.getOperand(0));
1238 SDOperand V2 = getValue(I.getOperand(1));
1239 SDOperand Mask = getValue(I.getOperand(2));
1240
1241 SDOperand Num = *(V1.Val->op_end()-2);
1242 SDOperand Typ = *(V2.Val->op_end()-1);
1243 setValue(&I, DAG.getNode(ISD::VVECTOR_SHUFFLE, MVT::Vector,
1244 V1, V2, Mask, Num, Typ));
1245}
1246
1247
Chris Lattner7a60d912005-01-07 07:47:53 +00001248void SelectionDAGLowering::visitGetElementPtr(User &I) {
1249 SDOperand N = getValue(I.getOperand(0));
1250 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner7a60d912005-01-07 07:47:53 +00001251
1252 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
1253 OI != E; ++OI) {
1254 Value *Idx = *OI;
Chris Lattner35397782005-12-05 07:10:48 +00001255 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Chris Lattner7a60d912005-01-07 07:47:53 +00001256 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
1257 if (Field) {
1258 // N = N + Offset
Owen Anderson20a631f2006-05-03 01:29:57 +00001259 uint64_t Offset = TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattner7a60d912005-01-07 07:47:53 +00001260 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Misha Brukman77451162005-04-22 04:01:18 +00001261 getIntPtrConstant(Offset));
Chris Lattner7a60d912005-01-07 07:47:53 +00001262 }
1263 Ty = StTy->getElementType(Field);
1264 } else {
1265 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner19a83992005-01-07 21:56:57 +00001266
Chris Lattner43535a12005-11-09 04:45:33 +00001267 // If this is a constant subscript, handle it quickly.
1268 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
1269 if (CI->getRawValue() == 0) continue;
Chris Lattner19a83992005-01-07 21:56:57 +00001270
Chris Lattner43535a12005-11-09 04:45:33 +00001271 uint64_t Offs;
1272 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Anderson20a631f2006-05-03 01:29:57 +00001273 Offs = (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattner43535a12005-11-09 04:45:33 +00001274 else
Owen Anderson20a631f2006-05-03 01:29:57 +00001275 Offs = TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattner43535a12005-11-09 04:45:33 +00001276 N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs));
1277 continue;
Chris Lattner7a60d912005-01-07 07:47:53 +00001278 }
Chris Lattner43535a12005-11-09 04:45:33 +00001279
1280 // N = N + Idx * ElementSize;
Owen Anderson20a631f2006-05-03 01:29:57 +00001281 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattner43535a12005-11-09 04:45:33 +00001282 SDOperand IdxN = getValue(Idx);
1283
1284 // If the index is smaller or larger than intptr_t, truncate or extend
1285 // it.
1286 if (IdxN.getValueType() < N.getValueType()) {
1287 if (Idx->getType()->isSigned())
1288 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
1289 else
1290 IdxN = DAG.getNode(ISD::ZERO_EXTEND, N.getValueType(), IdxN);
1291 } else if (IdxN.getValueType() > N.getValueType())
1292 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
1293
1294 // If this is a multiply by a power of two, turn it into a shl
1295 // immediately. This is a very common case.
1296 if (isPowerOf2_64(ElementSize)) {
1297 unsigned Amt = Log2_64(ElementSize);
1298 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner41fd6d52005-11-09 16:50:40 +00001299 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner43535a12005-11-09 04:45:33 +00001300 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
1301 continue;
1302 }
1303
1304 SDOperand Scale = getIntPtrConstant(ElementSize);
1305 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
1306 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner7a60d912005-01-07 07:47:53 +00001307 }
1308 }
1309 setValue(&I, N);
1310}
1311
1312void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
1313 // If this is a fixed sized alloca in the entry block of the function,
1314 // allocate it statically on the stack.
1315 if (FuncInfo.StaticAllocaMap.count(&I))
1316 return; // getValue will auto-populate this.
1317
1318 const Type *Ty = I.getAllocatedType();
Owen Anderson20a631f2006-05-03 01:29:57 +00001319 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
1320 unsigned Align = std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begeman3ee3e692005-11-06 09:00:38 +00001321 I.getAlignment());
Chris Lattner7a60d912005-01-07 07:47:53 +00001322
1323 SDOperand AllocSize = getValue(I.getArraySize());
Chris Lattnereccb73d2005-01-22 23:04:37 +00001324 MVT::ValueType IntPtr = TLI.getPointerTy();
1325 if (IntPtr < AllocSize.getValueType())
1326 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
1327 else if (IntPtr > AllocSize.getValueType())
1328 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner7a60d912005-01-07 07:47:53 +00001329
Chris Lattnereccb73d2005-01-22 23:04:37 +00001330 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner7a60d912005-01-07 07:47:53 +00001331 getIntPtrConstant(TySize));
1332
1333 // Handle alignment. If the requested alignment is less than or equal to the
1334 // stack alignment, ignore it and round the size of the allocation up to the
1335 // stack alignment size. If the size is greater than the stack alignment, we
1336 // note this in the DYNAMIC_STACKALLOC node.
1337 unsigned StackAlign =
1338 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1339 if (Align <= StackAlign) {
1340 Align = 0;
1341 // Add SA-1 to the size.
1342 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
1343 getIntPtrConstant(StackAlign-1));
1344 // Mask out the low bits for alignment purposes.
1345 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
1346 getIntPtrConstant(~(uint64_t)(StackAlign-1)));
1347 }
1348
Chris Lattner96c262e2005-05-14 07:29:57 +00001349 std::vector<MVT::ValueType> VTs;
1350 VTs.push_back(AllocSize.getValueType());
1351 VTs.push_back(MVT::Other);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001352 SDOperand Ops[] = { getRoot(), AllocSize, getIntPtrConstant(Align) };
1353 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, Ops, 3);
Chris Lattner7a60d912005-01-07 07:47:53 +00001354 DAG.setRoot(setValue(&I, DSA).getValue(1));
1355
1356 // Inform the Frame Information that we have just allocated a variable-sized
1357 // object.
1358 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
1359}
1360
Chris Lattner7a60d912005-01-07 07:47:53 +00001361void SelectionDAGLowering::visitLoad(LoadInst &I) {
1362 SDOperand Ptr = getValue(I.getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00001363
Chris Lattner4d9651c2005-01-17 22:19:26 +00001364 SDOperand Root;
1365 if (I.isVolatile())
1366 Root = getRoot();
1367 else {
1368 // Do not serialize non-volatile loads against each other.
1369 Root = DAG.getRoot();
1370 }
Chris Lattner4024c002006-03-15 22:19:46 +00001371
1372 setValue(&I, getLoadFrom(I.getType(), Ptr, DAG.getSrcValue(I.getOperand(0)),
1373 Root, I.isVolatile()));
1374}
1375
1376SDOperand SelectionDAGLowering::getLoadFrom(const Type *Ty, SDOperand Ptr,
1377 SDOperand SrcValue, SDOperand Root,
1378 bool isVolatile) {
Nate Begemanb2e089c2005-11-19 00:36:38 +00001379 SDOperand L;
Nate Begeman41b1cdc2005-12-06 06:18:55 +00001380 if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
Nate Begeman07890bb2005-11-22 01:29:36 +00001381 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattner32206f52006-03-18 01:44:44 +00001382 L = DAG.getVecLoad(PTy->getNumElements(), PVT, Root, Ptr, SrcValue);
Nate Begemanb2e089c2005-11-19 00:36:38 +00001383 } else {
Chris Lattner4024c002006-03-15 22:19:46 +00001384 L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SrcValue);
Nate Begemanb2e089c2005-11-19 00:36:38 +00001385 }
Chris Lattner4d9651c2005-01-17 22:19:26 +00001386
Chris Lattner4024c002006-03-15 22:19:46 +00001387 if (isVolatile)
Chris Lattner4d9651c2005-01-17 22:19:26 +00001388 DAG.setRoot(L.getValue(1));
1389 else
1390 PendingLoads.push_back(L.getValue(1));
Chris Lattner4024c002006-03-15 22:19:46 +00001391
1392 return L;
Chris Lattner7a60d912005-01-07 07:47:53 +00001393}
1394
1395
1396void SelectionDAGLowering::visitStore(StoreInst &I) {
1397 Value *SrcV = I.getOperand(0);
1398 SDOperand Src = getValue(SrcV);
1399 SDOperand Ptr = getValue(I.getOperand(1));
Chris Lattnerf5675a02005-05-09 04:08:33 +00001400 DAG.setRoot(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Src, Ptr,
Andrew Lenharth2edc1882005-06-29 18:54:02 +00001401 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner7a60d912005-01-07 07:47:53 +00001402}
1403
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001404/// IntrinsicCannotAccessMemory - Return true if the specified intrinsic cannot
1405/// access memory and has no other side effects at all.
1406static bool IntrinsicCannotAccessMemory(unsigned IntrinsicID) {
1407#define GET_NO_MEMORY_INTRINSICS
1408#include "llvm/Intrinsics.gen"
1409#undef GET_NO_MEMORY_INTRINSICS
1410 return false;
1411}
1412
Chris Lattnera9c59156b2006-04-02 03:41:14 +00001413// IntrinsicOnlyReadsMemory - Return true if the specified intrinsic doesn't
1414// have any side-effects or if it only reads memory.
1415static bool IntrinsicOnlyReadsMemory(unsigned IntrinsicID) {
1416#define GET_SIDE_EFFECT_INFO
1417#include "llvm/Intrinsics.gen"
1418#undef GET_SIDE_EFFECT_INFO
1419 return false;
1420}
1421
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001422/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
1423/// node.
1424void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
1425 unsigned Intrinsic) {
Chris Lattner313229c2006-03-24 22:49:42 +00001426 bool HasChain = !IntrinsicCannotAccessMemory(Intrinsic);
Chris Lattnera9c59156b2006-04-02 03:41:14 +00001427 bool OnlyLoad = HasChain && IntrinsicOnlyReadsMemory(Intrinsic);
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001428
1429 // Build the operand list.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001430 SmallVector<SDOperand, 8> Ops;
Chris Lattnera9c59156b2006-04-02 03:41:14 +00001431 if (HasChain) { // If this intrinsic has side-effects, chainify it.
1432 if (OnlyLoad) {
1433 // We don't need to serialize loads against other loads.
1434 Ops.push_back(DAG.getRoot());
1435 } else {
1436 Ops.push_back(getRoot());
1437 }
1438 }
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001439
1440 // Add the intrinsic ID as an integer operand.
1441 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
1442
1443 // Add all operands of the call to the operand list.
1444 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1445 SDOperand Op = getValue(I.getOperand(i));
1446
1447 // If this is a vector type, force it to the right packed type.
1448 if (Op.getValueType() == MVT::Vector) {
1449 const PackedType *OpTy = cast<PackedType>(I.getOperand(i)->getType());
1450 MVT::ValueType EltVT = TLI.getValueType(OpTy->getElementType());
1451
1452 MVT::ValueType VVT = MVT::getVectorType(EltVT, OpTy->getNumElements());
1453 assert(VVT != MVT::Other && "Intrinsic uses a non-legal type?");
1454 Op = DAG.getNode(ISD::VBIT_CONVERT, VVT, Op);
1455 }
1456
1457 assert(TLI.isTypeLegal(Op.getValueType()) &&
1458 "Intrinsic uses a non-legal type?");
1459 Ops.push_back(Op);
1460 }
1461
1462 std::vector<MVT::ValueType> VTs;
1463 if (I.getType() != Type::VoidTy) {
1464 MVT::ValueType VT = TLI.getValueType(I.getType());
1465 if (VT == MVT::Vector) {
1466 const PackedType *DestTy = cast<PackedType>(I.getType());
1467 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1468
1469 VT = MVT::getVectorType(EltVT, DestTy->getNumElements());
1470 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
1471 }
1472
1473 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
1474 VTs.push_back(VT);
1475 }
1476 if (HasChain)
1477 VTs.push_back(MVT::Other);
1478
1479 // Create the node.
Chris Lattnere55d1712006-03-28 00:40:33 +00001480 SDOperand Result;
1481 if (!HasChain)
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001482 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTs, &Ops[0], Ops.size());
Chris Lattnere55d1712006-03-28 00:40:33 +00001483 else if (I.getType() != Type::VoidTy)
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001484 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTs, &Ops[0], Ops.size());
Chris Lattnere55d1712006-03-28 00:40:33 +00001485 else
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001486 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTs, &Ops[0], Ops.size());
Chris Lattnere55d1712006-03-28 00:40:33 +00001487
Chris Lattnera9c59156b2006-04-02 03:41:14 +00001488 if (HasChain) {
1489 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
1490 if (OnlyLoad)
1491 PendingLoads.push_back(Chain);
1492 else
1493 DAG.setRoot(Chain);
1494 }
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001495 if (I.getType() != Type::VoidTy) {
1496 if (const PackedType *PTy = dyn_cast<PackedType>(I.getType())) {
1497 MVT::ValueType EVT = TLI.getValueType(PTy->getElementType());
1498 Result = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Result,
1499 DAG.getConstant(PTy->getNumElements(), MVT::i32),
1500 DAG.getValueType(EVT));
1501 }
1502 setValue(&I, Result);
1503 }
1504}
1505
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001506/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
1507/// we want to emit this as a call to a named external function, return the name
1508/// otherwise lower it and return null.
1509const char *
1510SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
1511 switch (Intrinsic) {
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001512 default:
1513 // By default, turn this into a target intrinsic node.
1514 visitTargetIntrinsic(I, Intrinsic);
1515 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001516 case Intrinsic::vastart: visitVAStart(I); return 0;
1517 case Intrinsic::vaend: visitVAEnd(I); return 0;
1518 case Intrinsic::vacopy: visitVACopy(I); return 0;
1519 case Intrinsic::returnaddress: visitFrameReturnAddress(I, false); return 0;
1520 case Intrinsic::frameaddress: visitFrameReturnAddress(I, true); return 0;
1521 case Intrinsic::setjmp:
1522 return "_setjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1523 break;
1524 case Intrinsic::longjmp:
1525 return "_longjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1526 break;
Chris Lattner093c1592006-03-03 00:00:25 +00001527 case Intrinsic::memcpy_i32:
1528 case Intrinsic::memcpy_i64:
1529 visitMemIntrinsic(I, ISD::MEMCPY);
1530 return 0;
1531 case Intrinsic::memset_i32:
1532 case Intrinsic::memset_i64:
1533 visitMemIntrinsic(I, ISD::MEMSET);
1534 return 0;
1535 case Intrinsic::memmove_i32:
1536 case Intrinsic::memmove_i64:
1537 visitMemIntrinsic(I, ISD::MEMMOVE);
1538 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001539
Chris Lattner5d4e61d2005-12-13 17:40:33 +00001540 case Intrinsic::dbg_stoppoint: {
Jim Laskey5995d012006-02-11 01:01:30 +00001541 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskeya8bdac82006-03-23 18:06:46 +00001542 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001543 if (DebugInfo && SPI.getContext() && DebugInfo->Verify(SPI.getContext())) {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001544 SDOperand Ops[5];
Chris Lattner435b4022005-11-29 06:21:05 +00001545
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001546 Ops[0] = getRoot();
1547 Ops[1] = getValue(SPI.getLineValue());
1548 Ops[2] = getValue(SPI.getColumnValue());
Chris Lattner435b4022005-11-29 06:21:05 +00001549
Jim Laskeya8bdac82006-03-23 18:06:46 +00001550 DebugInfoDesc *DD = DebugInfo->getDescFor(SPI.getContext());
Jim Laskey5995d012006-02-11 01:01:30 +00001551 assert(DD && "Not a debug information descriptor");
Jim Laskeya8bdac82006-03-23 18:06:46 +00001552 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
1553
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001554 Ops[3] = DAG.getString(CompileUnit->getFileName());
1555 Ops[4] = DAG.getString(CompileUnit->getDirectory());
Jim Laskey5995d012006-02-11 01:01:30 +00001556
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001557 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops, 5));
Chris Lattner5d4e61d2005-12-13 17:40:33 +00001558 }
Jim Laskeya8bdac82006-03-23 18:06:46 +00001559
Chris Lattnerf2b62f32005-11-16 07:22:30 +00001560 return 0;
Chris Lattner435b4022005-11-29 06:21:05 +00001561 }
Jim Laskeya8bdac82006-03-23 18:06:46 +00001562 case Intrinsic::dbg_region_start: {
1563 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1564 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001565 if (DebugInfo && RSI.getContext() && DebugInfo->Verify(RSI.getContext())) {
Jim Laskeya8bdac82006-03-23 18:06:46 +00001566 unsigned LabelID = DebugInfo->RecordRegionStart(RSI.getContext());
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001567 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, getRoot(),
1568 DAG.getConstant(LabelID, MVT::i32)));
Jim Laskeya8bdac82006-03-23 18:06:46 +00001569 }
1570
Chris Lattnerf2b62f32005-11-16 07:22:30 +00001571 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00001572 }
1573 case Intrinsic::dbg_region_end: {
1574 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1575 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001576 if (DebugInfo && REI.getContext() && DebugInfo->Verify(REI.getContext())) {
Jim Laskeya8bdac82006-03-23 18:06:46 +00001577 unsigned LabelID = DebugInfo->RecordRegionEnd(REI.getContext());
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001578 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other,
1579 getRoot(), DAG.getConstant(LabelID, MVT::i32)));
Jim Laskeya8bdac82006-03-23 18:06:46 +00001580 }
1581
Chris Lattnerf2b62f32005-11-16 07:22:30 +00001582 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00001583 }
1584 case Intrinsic::dbg_func_start: {
1585 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1586 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001587 if (DebugInfo && FSI.getSubprogram() &&
1588 DebugInfo->Verify(FSI.getSubprogram())) {
Jim Laskeya8bdac82006-03-23 18:06:46 +00001589 unsigned LabelID = DebugInfo->RecordRegionStart(FSI.getSubprogram());
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001590 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other,
1591 getRoot(), DAG.getConstant(LabelID, MVT::i32)));
Jim Laskeya8bdac82006-03-23 18:06:46 +00001592 }
1593
Chris Lattnerf2b62f32005-11-16 07:22:30 +00001594 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00001595 }
1596 case Intrinsic::dbg_declare: {
1597 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1598 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Jim Laskey67a636c2006-03-28 13:45:20 +00001599 if (DebugInfo && DI.getVariable() && DebugInfo->Verify(DI.getVariable())) {
Jim Laskey53f1ecc2006-03-24 09:50:27 +00001600 SDOperand AddressOp = getValue(DI.getAddress());
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001601 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(AddressOp))
Jim Laskeya8bdac82006-03-23 18:06:46 +00001602 DebugInfo->RecordVariable(DI.getVariable(), FI->getIndex());
Jim Laskeya8bdac82006-03-23 18:06:46 +00001603 }
1604
1605 return 0;
1606 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001607
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001608 case Intrinsic::isunordered_f32:
1609 case Intrinsic::isunordered_f64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001610 setValue(&I, DAG.getSetCC(MVT::i1,getValue(I.getOperand(1)),
1611 getValue(I.getOperand(2)), ISD::SETUO));
1612 return 0;
1613
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001614 case Intrinsic::sqrt_f32:
1615 case Intrinsic::sqrt_f64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001616 setValue(&I, DAG.getNode(ISD::FSQRT,
1617 getValue(I.getOperand(1)).getValueType(),
1618 getValue(I.getOperand(1))));
1619 return 0;
1620 case Intrinsic::pcmarker: {
1621 SDOperand Tmp = getValue(I.getOperand(1));
1622 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
1623 return 0;
1624 }
Andrew Lenharthde1b5d62005-11-11 22:48:54 +00001625 case Intrinsic::readcyclecounter: {
1626 std::vector<MVT::ValueType> VTs;
1627 VTs.push_back(MVT::i64);
1628 VTs.push_back(MVT::Other);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001629 SDOperand Op = getRoot();
1630 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER, VTs, &Op, 1);
Andrew Lenharthde1b5d62005-11-11 22:48:54 +00001631 setValue(&I, Tmp);
1632 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth01aa5632005-11-11 16:47:30 +00001633 return 0;
Andrew Lenharthde1b5d62005-11-11 22:48:54 +00001634 }
Nate Begeman2fba8a32006-01-14 03:14:10 +00001635 case Intrinsic::bswap_i16:
Nate Begeman2fba8a32006-01-14 03:14:10 +00001636 case Intrinsic::bswap_i32:
Nate Begeman2fba8a32006-01-14 03:14:10 +00001637 case Intrinsic::bswap_i64:
1638 setValue(&I, DAG.getNode(ISD::BSWAP,
1639 getValue(I.getOperand(1)).getValueType(),
1640 getValue(I.getOperand(1))));
1641 return 0;
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001642 case Intrinsic::cttz_i8:
1643 case Intrinsic::cttz_i16:
1644 case Intrinsic::cttz_i32:
1645 case Intrinsic::cttz_i64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001646 setValue(&I, DAG.getNode(ISD::CTTZ,
1647 getValue(I.getOperand(1)).getValueType(),
1648 getValue(I.getOperand(1))));
1649 return 0;
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001650 case Intrinsic::ctlz_i8:
1651 case Intrinsic::ctlz_i16:
1652 case Intrinsic::ctlz_i32:
1653 case Intrinsic::ctlz_i64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001654 setValue(&I, DAG.getNode(ISD::CTLZ,
1655 getValue(I.getOperand(1)).getValueType(),
1656 getValue(I.getOperand(1))));
1657 return 0;
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001658 case Intrinsic::ctpop_i8:
1659 case Intrinsic::ctpop_i16:
1660 case Intrinsic::ctpop_i32:
1661 case Intrinsic::ctpop_i64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001662 setValue(&I, DAG.getNode(ISD::CTPOP,
1663 getValue(I.getOperand(1)).getValueType(),
1664 getValue(I.getOperand(1))));
1665 return 0;
Chris Lattnerb3266452006-01-13 02:50:02 +00001666 case Intrinsic::stacksave: {
1667 std::vector<MVT::ValueType> VTs;
1668 VTs.push_back(TLI.getPointerTy());
1669 VTs.push_back(MVT::Other);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001670 SDOperand Op = getRoot();
1671 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE, VTs, &Op, 1);
Chris Lattnerb3266452006-01-13 02:50:02 +00001672 setValue(&I, Tmp);
1673 DAG.setRoot(Tmp.getValue(1));
1674 return 0;
1675 }
Chris Lattnerdeda32a2006-01-23 05:22:07 +00001676 case Intrinsic::stackrestore: {
1677 SDOperand Tmp = getValue(I.getOperand(1));
1678 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattnerb3266452006-01-13 02:50:02 +00001679 return 0;
Chris Lattnerdeda32a2006-01-23 05:22:07 +00001680 }
Chris Lattner9e8b6332005-12-12 22:51:16 +00001681 case Intrinsic::prefetch:
1682 // FIXME: Currently discarding prefetches.
1683 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001684 }
1685}
1686
1687
Chris Lattner7a60d912005-01-07 07:47:53 +00001688void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner18d2b342005-01-08 22:48:57 +00001689 const char *RenameFn = 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001690 if (Function *F = I.getCalledFunction()) {
Chris Lattner0c140002005-04-02 05:26:53 +00001691 if (F->isExternal())
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001692 if (unsigned IID = F->getIntrinsicID()) {
1693 RenameFn = visitIntrinsicCall(I, IID);
1694 if (!RenameFn)
1695 return;
1696 } else { // Not an LLVM intrinsic.
1697 const std::string &Name = F->getName();
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00001698 if (Name[0] == 'c' && (Name == "copysign" || Name == "copysignf")) {
1699 if (I.getNumOperands() == 3 && // Basic sanity checks.
1700 I.getOperand(1)->getType()->isFloatingPoint() &&
1701 I.getType() == I.getOperand(1)->getType() &&
1702 I.getType() == I.getOperand(2)->getType()) {
1703 SDOperand LHS = getValue(I.getOperand(1));
1704 SDOperand RHS = getValue(I.getOperand(2));
1705 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
1706 LHS, RHS));
1707 return;
1708 }
1709 } else if (Name[0] == 'f' && (Name == "fabs" || Name == "fabsf")) {
Chris Lattner0c140002005-04-02 05:26:53 +00001710 if (I.getNumOperands() == 2 && // Basic sanity checks.
1711 I.getOperand(1)->getType()->isFloatingPoint() &&
1712 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001713 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner0c140002005-04-02 05:26:53 +00001714 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
1715 return;
1716 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001717 } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) {
Chris Lattner80026402005-04-30 04:43:14 +00001718 if (I.getNumOperands() == 2 && // Basic sanity checks.
1719 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner1784a9d22006-02-14 05:39:35 +00001720 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001721 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner80026402005-04-30 04:43:14 +00001722 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
1723 return;
1724 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001725 } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) {
Chris Lattner80026402005-04-30 04:43:14 +00001726 if (I.getNumOperands() == 2 && // Basic sanity checks.
1727 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner1784a9d22006-02-14 05:39:35 +00001728 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001729 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner80026402005-04-30 04:43:14 +00001730 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
1731 return;
1732 }
1733 }
Chris Lattnere4f71d02005-05-14 13:56:55 +00001734 }
Chris Lattner476e67b2006-01-26 22:24:51 +00001735 } else if (isa<InlineAsm>(I.getOperand(0))) {
1736 visitInlineAsm(I);
1737 return;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001738 }
Misha Brukman835702a2005-04-21 22:36:52 +00001739
Chris Lattner18d2b342005-01-08 22:48:57 +00001740 SDOperand Callee;
1741 if (!RenameFn)
1742 Callee = getValue(I.getOperand(0));
1743 else
1744 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Chris Lattner7a60d912005-01-07 07:47:53 +00001745 std::vector<std::pair<SDOperand, const Type*> > Args;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001746 Args.reserve(I.getNumOperands());
Chris Lattner7a60d912005-01-07 07:47:53 +00001747 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1748 Value *Arg = I.getOperand(i);
1749 SDOperand ArgNode = getValue(Arg);
1750 Args.push_back(std::make_pair(ArgNode, Arg->getType()));
1751 }
Misha Brukman835702a2005-04-21 22:36:52 +00001752
Nate Begemanf6565252005-03-26 01:29:23 +00001753 const PointerType *PT = cast<PointerType>(I.getCalledValue()->getType());
1754 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Misha Brukman835702a2005-04-21 22:36:52 +00001755
Chris Lattner1f45cd72005-01-08 19:26:18 +00001756 std::pair<SDOperand,SDOperand> Result =
Chris Lattner111778e2005-05-12 19:56:57 +00001757 TLI.LowerCallTo(getRoot(), I.getType(), FTy->isVarArg(), I.getCallingConv(),
Chris Lattner2e77db62005-05-13 18:50:42 +00001758 I.isTailCall(), Callee, Args, DAG);
Chris Lattner7a60d912005-01-07 07:47:53 +00001759 if (I.getType() != Type::VoidTy)
Chris Lattner1f45cd72005-01-08 19:26:18 +00001760 setValue(&I, Result.first);
1761 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00001762}
1763
Chris Lattner6f87d182006-02-22 22:37:12 +00001764SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001765 SDOperand &Chain, SDOperand &Flag)const{
Chris Lattner6f87d182006-02-22 22:37:12 +00001766 SDOperand Val = DAG.getCopyFromReg(Chain, Regs[0], RegVT, Flag);
1767 Chain = Val.getValue(1);
1768 Flag = Val.getValue(2);
1769
1770 // If the result was expanded, copy from the top part.
1771 if (Regs.size() > 1) {
1772 assert(Regs.size() == 2 &&
1773 "Cannot expand to more than 2 elts yet!");
1774 SDOperand Hi = DAG.getCopyFromReg(Chain, Regs[1], RegVT, Flag);
1775 Chain = Val.getValue(1);
1776 Flag = Val.getValue(2);
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001777 if (DAG.getTargetLoweringInfo().isLittleEndian())
1778 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Val, Hi);
1779 else
1780 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Hi, Val);
Chris Lattner6f87d182006-02-22 22:37:12 +00001781 }
Chris Lattner1558fc62006-02-01 18:59:47 +00001782
Chris Lattner705948d2006-06-08 18:22:48 +00001783 // Otherwise, if the return value was promoted or extended, truncate it to the
Chris Lattner6f87d182006-02-22 22:37:12 +00001784 // appropriate type.
1785 if (RegVT == ValueVT)
1786 return Val;
1787
Chris Lattner705948d2006-06-08 18:22:48 +00001788 if (MVT::isInteger(RegVT)) {
1789 if (ValueVT < RegVT)
1790 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1791 else
1792 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
1793 } else {
Chris Lattner6f87d182006-02-22 22:37:12 +00001794 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val);
Chris Lattner705948d2006-06-08 18:22:48 +00001795 }
Chris Lattner6f87d182006-02-22 22:37:12 +00001796}
1797
Chris Lattner571d9642006-02-23 19:21:04 +00001798/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
1799/// specified value into the registers specified by this object. This uses
1800/// Chain/Flag as the input and updates them for the output Chain/Flag.
1801void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Evan Chengef9e07d2006-06-15 08:11:54 +00001802 SDOperand &Chain, SDOperand &Flag,
1803 MVT::ValueType PtrVT) const {
Chris Lattner571d9642006-02-23 19:21:04 +00001804 if (Regs.size() == 1) {
1805 // If there is a single register and the types differ, this must be
1806 // a promotion.
1807 if (RegVT != ValueVT) {
Chris Lattnerc03a9252006-06-08 18:27:11 +00001808 if (MVT::isInteger(RegVT)) {
1809 if (RegVT < ValueVT)
1810 Val = DAG.getNode(ISD::TRUNCATE, RegVT, Val);
1811 else
1812 Val = DAG.getNode(ISD::ANY_EXTEND, RegVT, Val);
1813 } else
Chris Lattner571d9642006-02-23 19:21:04 +00001814 Val = DAG.getNode(ISD::FP_EXTEND, RegVT, Val);
1815 }
1816 Chain = DAG.getCopyToReg(Chain, Regs[0], Val, Flag);
1817 Flag = Chain.getValue(1);
1818 } else {
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001819 std::vector<unsigned> R(Regs);
1820 if (!DAG.getTargetLoweringInfo().isLittleEndian())
1821 std::reverse(R.begin(), R.end());
1822
1823 for (unsigned i = 0, e = R.size(); i != e; ++i) {
Chris Lattner571d9642006-02-23 19:21:04 +00001824 SDOperand Part = DAG.getNode(ISD::EXTRACT_ELEMENT, RegVT, Val,
Evan Chengef9e07d2006-06-15 08:11:54 +00001825 DAG.getConstant(i, PtrVT));
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001826 Chain = DAG.getCopyToReg(Chain, R[i], Part, Flag);
Chris Lattner571d9642006-02-23 19:21:04 +00001827 Flag = Chain.getValue(1);
1828 }
1829 }
1830}
Chris Lattner6f87d182006-02-22 22:37:12 +00001831
Chris Lattner571d9642006-02-23 19:21:04 +00001832/// AddInlineAsmOperands - Add this value to the specified inlineasm node
1833/// operand list. This adds the code marker and includes the number of
1834/// values added into it.
1835void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001836 std::vector<SDOperand> &Ops) const {
Chris Lattner571d9642006-02-23 19:21:04 +00001837 Ops.push_back(DAG.getConstant(Code | (Regs.size() << 3), MVT::i32));
1838 for (unsigned i = 0, e = Regs.size(); i != e; ++i)
1839 Ops.push_back(DAG.getRegister(Regs[i], RegVT));
1840}
Chris Lattner6f87d182006-02-22 22:37:12 +00001841
1842/// isAllocatableRegister - If the specified register is safe to allocate,
1843/// i.e. it isn't a stack pointer or some other special register, return the
1844/// register class for the register. Otherwise, return null.
1845static const TargetRegisterClass *
Chris Lattnerb1124f32006-02-22 23:09:03 +00001846isAllocatableRegister(unsigned Reg, MachineFunction &MF,
1847 const TargetLowering &TLI, const MRegisterInfo *MRI) {
Chris Lattnerbec582f2006-04-02 00:24:45 +00001848 MVT::ValueType FoundVT = MVT::Other;
1849 const TargetRegisterClass *FoundRC = 0;
Chris Lattnerb1124f32006-02-22 23:09:03 +00001850 for (MRegisterInfo::regclass_iterator RCI = MRI->regclass_begin(),
1851 E = MRI->regclass_end(); RCI != E; ++RCI) {
Chris Lattnerbec582f2006-04-02 00:24:45 +00001852 MVT::ValueType ThisVT = MVT::Other;
1853
Chris Lattnerb1124f32006-02-22 23:09:03 +00001854 const TargetRegisterClass *RC = *RCI;
1855 // If none of the the value types for this register class are valid, we
1856 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattnerb1124f32006-02-22 23:09:03 +00001857 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
1858 I != E; ++I) {
1859 if (TLI.isTypeLegal(*I)) {
Chris Lattnerbec582f2006-04-02 00:24:45 +00001860 // If we have already found this register in a different register class,
1861 // choose the one with the largest VT specified. For example, on
1862 // PowerPC, we favor f64 register classes over f32.
1863 if (FoundVT == MVT::Other ||
1864 MVT::getSizeInBits(FoundVT) < MVT::getSizeInBits(*I)) {
1865 ThisVT = *I;
1866 break;
1867 }
Chris Lattnerb1124f32006-02-22 23:09:03 +00001868 }
1869 }
1870
Chris Lattnerbec582f2006-04-02 00:24:45 +00001871 if (ThisVT == MVT::Other) continue;
Chris Lattnerb1124f32006-02-22 23:09:03 +00001872
Chris Lattner6f87d182006-02-22 22:37:12 +00001873 // NOTE: This isn't ideal. In particular, this might allocate the
1874 // frame pointer in functions that need it (due to them not being taken
1875 // out of allocation, because a variable sized allocation hasn't been seen
1876 // yet). This is a slight code pessimization, but should still work.
Chris Lattnerb1124f32006-02-22 23:09:03 +00001877 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
1878 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerbec582f2006-04-02 00:24:45 +00001879 if (*I == Reg) {
1880 // We found a matching register class. Keep looking at others in case
1881 // we find one with larger registers that this physreg is also in.
1882 FoundRC = RC;
1883 FoundVT = ThisVT;
1884 break;
1885 }
Chris Lattner1558fc62006-02-01 18:59:47 +00001886 }
Chris Lattnerbec582f2006-04-02 00:24:45 +00001887 return FoundRC;
Chris Lattner6f87d182006-02-22 22:37:12 +00001888}
1889
1890RegsForValue SelectionDAGLowering::
1891GetRegistersForValue(const std::string &ConstrCode,
1892 MVT::ValueType VT, bool isOutReg, bool isInReg,
1893 std::set<unsigned> &OutputRegs,
1894 std::set<unsigned> &InputRegs) {
1895 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
1896 TLI.getRegForInlineAsmConstraint(ConstrCode, VT);
1897 std::vector<unsigned> Regs;
1898
1899 unsigned NumRegs = VT != MVT::Other ? TLI.getNumElements(VT) : 1;
1900 MVT::ValueType RegVT;
1901 MVT::ValueType ValueVT = VT;
1902
1903 if (PhysReg.first) {
1904 if (VT == MVT::Other)
1905 ValueVT = *PhysReg.second->vt_begin();
Chris Lattner705948d2006-06-08 18:22:48 +00001906
1907 // Get the actual register value type. This is important, because the user
1908 // may have asked for (e.g.) the AX register in i32 type. We need to
1909 // remember that AX is actually i16 to get the right extension.
1910 RegVT = *PhysReg.second->vt_begin();
Chris Lattner6f87d182006-02-22 22:37:12 +00001911
1912 // This is a explicit reference to a physical register.
1913 Regs.push_back(PhysReg.first);
1914
1915 // If this is an expanded reference, add the rest of the regs to Regs.
1916 if (NumRegs != 1) {
Chris Lattner6f87d182006-02-22 22:37:12 +00001917 TargetRegisterClass::iterator I = PhysReg.second->begin();
1918 TargetRegisterClass::iterator E = PhysReg.second->end();
1919 for (; *I != PhysReg.first; ++I)
1920 assert(I != E && "Didn't find reg!");
1921
1922 // Already added the first reg.
1923 --NumRegs; ++I;
1924 for (; NumRegs; --NumRegs, ++I) {
1925 assert(I != E && "Ran out of registers to allocate!");
1926 Regs.push_back(*I);
1927 }
1928 }
1929 return RegsForValue(Regs, RegVT, ValueVT);
1930 }
1931
1932 // This is a reference to a register class. Allocate NumRegs consecutive,
1933 // available, registers from the class.
1934 std::vector<unsigned> RegClassRegs =
1935 TLI.getRegClassForInlineAsmConstraint(ConstrCode, VT);
1936
1937 const MRegisterInfo *MRI = DAG.getTarget().getRegisterInfo();
1938 MachineFunction &MF = *CurMBB->getParent();
1939 unsigned NumAllocated = 0;
1940 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
1941 unsigned Reg = RegClassRegs[i];
1942 // See if this register is available.
1943 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
1944 (isInReg && InputRegs.count(Reg))) { // Already used.
1945 // Make sure we find consecutive registers.
1946 NumAllocated = 0;
1947 continue;
1948 }
1949
1950 // Check to see if this register is allocatable (i.e. don't give out the
1951 // stack pointer).
Chris Lattnerb1124f32006-02-22 23:09:03 +00001952 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, MRI);
Chris Lattner6f87d182006-02-22 22:37:12 +00001953 if (!RC) {
1954 // Make sure we find consecutive registers.
1955 NumAllocated = 0;
1956 continue;
1957 }
1958
1959 // Okay, this register is good, we can use it.
1960 ++NumAllocated;
1961
1962 // If we allocated enough consecutive
1963 if (NumAllocated == NumRegs) {
1964 unsigned RegStart = (i-NumAllocated)+1;
1965 unsigned RegEnd = i+1;
1966 // Mark all of the allocated registers used.
1967 for (unsigned i = RegStart; i != RegEnd; ++i) {
1968 unsigned Reg = RegClassRegs[i];
1969 Regs.push_back(Reg);
1970 if (isOutReg) OutputRegs.insert(Reg); // Mark reg used.
1971 if (isInReg) InputRegs.insert(Reg); // Mark reg used.
1972 }
1973
1974 return RegsForValue(Regs, *RC->vt_begin(), VT);
1975 }
1976 }
1977
1978 // Otherwise, we couldn't allocate enough registers for this.
1979 return RegsForValue();
Chris Lattner1558fc62006-02-01 18:59:47 +00001980}
1981
Chris Lattner6f87d182006-02-22 22:37:12 +00001982
Chris Lattner476e67b2006-01-26 22:24:51 +00001983/// visitInlineAsm - Handle a call to an InlineAsm object.
1984///
1985void SelectionDAGLowering::visitInlineAsm(CallInst &I) {
1986 InlineAsm *IA = cast<InlineAsm>(I.getOperand(0));
1987
1988 SDOperand AsmStr = DAG.getTargetExternalSymbol(IA->getAsmString().c_str(),
1989 MVT::Other);
1990
1991 // Note, we treat inline asms both with and without side-effects as the same.
1992 // If an inline asm doesn't have side effects and doesn't access memory, we
1993 // could not choose to not chain it.
1994 bool hasSideEffects = IA->hasSideEffects();
1995
Chris Lattner3a5ed552006-02-01 01:28:23 +00001996 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
Chris Lattner7ad77df2006-02-22 00:56:39 +00001997 std::vector<MVT::ValueType> ConstraintVTs;
Chris Lattner476e67b2006-01-26 22:24:51 +00001998
1999 /// AsmNodeOperands - A list of pairs. The first element is a register, the
2000 /// second is a bitfield where bit #0 is set if it is a use and bit #1 is set
2001 /// if it is a def of that register.
2002 std::vector<SDOperand> AsmNodeOperands;
2003 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
2004 AsmNodeOperands.push_back(AsmStr);
2005
2006 SDOperand Chain = getRoot();
2007 SDOperand Flag;
2008
Chris Lattner1558fc62006-02-01 18:59:47 +00002009 // We fully assign registers here at isel time. This is not optimal, but
2010 // should work. For register classes that correspond to LLVM classes, we
2011 // could let the LLVM RA do its thing, but we currently don't. Do a prepass
2012 // over the constraints, collecting fixed registers that we know we can't use.
2013 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner7ad77df2006-02-22 00:56:39 +00002014 unsigned OpNum = 1;
Chris Lattner1558fc62006-02-01 18:59:47 +00002015 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
2016 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2017 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner7f5880b2006-02-02 00:25:23 +00002018
Chris Lattner7ad77df2006-02-22 00:56:39 +00002019 MVT::ValueType OpVT;
2020
2021 // Compute the value type for each operand and add it to ConstraintVTs.
2022 switch (Constraints[i].Type) {
2023 case InlineAsm::isOutput:
2024 if (!Constraints[i].isIndirectOutput) {
2025 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
2026 OpVT = TLI.getValueType(I.getType());
2027 } else {
Chris Lattner9fed5b62006-02-27 23:45:39 +00002028 const Type *OpTy = I.getOperand(OpNum)->getType();
Chris Lattner7ad77df2006-02-22 00:56:39 +00002029 OpVT = TLI.getValueType(cast<PointerType>(OpTy)->getElementType());
2030 OpNum++; // Consumes a call operand.
2031 }
2032 break;
2033 case InlineAsm::isInput:
2034 OpVT = TLI.getValueType(I.getOperand(OpNum)->getType());
2035 OpNum++; // Consumes a call operand.
2036 break;
2037 case InlineAsm::isClobber:
2038 OpVT = MVT::Other;
2039 break;
2040 }
2041
2042 ConstraintVTs.push_back(OpVT);
2043
Chris Lattner6f87d182006-02-22 22:37:12 +00002044 if (TLI.getRegForInlineAsmConstraint(ConstraintCode, OpVT).first == 0)
2045 continue; // Not assigned a fixed reg.
Chris Lattner7ad77df2006-02-22 00:56:39 +00002046
Chris Lattner6f87d182006-02-22 22:37:12 +00002047 // Build a list of regs that this operand uses. This always has a single
2048 // element for promoted/expanded operands.
2049 RegsForValue Regs = GetRegistersForValue(ConstraintCode, OpVT,
2050 false, false,
2051 OutputRegs, InputRegs);
Chris Lattner1558fc62006-02-01 18:59:47 +00002052
2053 switch (Constraints[i].Type) {
2054 case InlineAsm::isOutput:
2055 // We can't assign any other output to this register.
Chris Lattner6f87d182006-02-22 22:37:12 +00002056 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1558fc62006-02-01 18:59:47 +00002057 // If this is an early-clobber output, it cannot be assigned to the same
2058 // value as the input reg.
Chris Lattner7f5880b2006-02-02 00:25:23 +00002059 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
Chris Lattner6f87d182006-02-22 22:37:12 +00002060 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1558fc62006-02-01 18:59:47 +00002061 break;
Chris Lattner7ad77df2006-02-22 00:56:39 +00002062 case InlineAsm::isInput:
2063 // We can't assign any other input to this register.
Chris Lattner6f87d182006-02-22 22:37:12 +00002064 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner7ad77df2006-02-22 00:56:39 +00002065 break;
Chris Lattner1558fc62006-02-01 18:59:47 +00002066 case InlineAsm::isClobber:
2067 // Clobbered regs cannot be used as inputs or outputs.
Chris Lattner6f87d182006-02-22 22:37:12 +00002068 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2069 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1558fc62006-02-01 18:59:47 +00002070 break;
Chris Lattner1558fc62006-02-01 18:59:47 +00002071 }
2072 }
Chris Lattner3a5ed552006-02-01 01:28:23 +00002073
Chris Lattner5c79f982006-02-21 23:12:12 +00002074 // Loop over all of the inputs, copying the operand values into the
2075 // appropriate registers and processing the output regs.
Chris Lattner6f87d182006-02-22 22:37:12 +00002076 RegsForValue RetValRegs;
2077 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Chris Lattner7ad77df2006-02-22 00:56:39 +00002078 OpNum = 1;
Chris Lattner5c79f982006-02-21 23:12:12 +00002079
Chris Lattner2e56e892006-01-31 02:03:41 +00002080 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
Chris Lattner3a5ed552006-02-01 01:28:23 +00002081 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2082 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner7ad77df2006-02-22 00:56:39 +00002083
Chris Lattner3a5ed552006-02-01 01:28:23 +00002084 switch (Constraints[i].Type) {
2085 case InlineAsm::isOutput: {
Chris Lattner9fed5b62006-02-27 23:45:39 +00002086 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2087 if (ConstraintCode.size() == 1) // not a physreg name.
2088 CTy = TLI.getConstraintType(ConstraintCode[0]);
2089
2090 if (CTy == TargetLowering::C_Memory) {
2091 // Memory output.
2092 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
2093
2094 // Check that the operand (the address to store to) isn't a float.
2095 if (!MVT::isInteger(InOperandVal.getValueType()))
2096 assert(0 && "MATCH FAIL!");
2097
2098 if (!Constraints[i].isIndirectOutput)
2099 assert(0 && "MATCH FAIL!");
2100
2101 OpNum++; // Consumes a call operand.
2102
2103 // Extend/truncate to the right pointer type if needed.
2104 MVT::ValueType PtrType = TLI.getPointerTy();
2105 if (InOperandVal.getValueType() < PtrType)
2106 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2107 else if (InOperandVal.getValueType() > PtrType)
2108 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2109
2110 // Add information to the INLINEASM node to know about this output.
2111 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2112 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2113 AsmNodeOperands.push_back(InOperandVal);
2114 break;
2115 }
2116
2117 // Otherwise, this is a register output.
2118 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2119
Chris Lattner6f87d182006-02-22 22:37:12 +00002120 // If this is an early-clobber output, or if there is an input
2121 // constraint that matches this, we need to reserve the input register
2122 // so no other inputs allocate to it.
2123 bool UsesInputRegister = false;
2124 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
2125 UsesInputRegister = true;
2126
2127 // Copy the output from the appropriate register. Find a register that
Chris Lattner7ad77df2006-02-22 00:56:39 +00002128 // we can use.
Chris Lattner6f87d182006-02-22 22:37:12 +00002129 RegsForValue Regs =
2130 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2131 true, UsesInputRegister,
2132 OutputRegs, InputRegs);
2133 assert(!Regs.Regs.empty() && "Couldn't allocate output reg!");
Chris Lattner7ad77df2006-02-22 00:56:39 +00002134
Chris Lattner3a5ed552006-02-01 01:28:23 +00002135 if (!Constraints[i].isIndirectOutput) {
Chris Lattner6f87d182006-02-22 22:37:12 +00002136 assert(RetValRegs.Regs.empty() &&
Chris Lattner3a5ed552006-02-01 01:28:23 +00002137 "Cannot have multiple output constraints yet!");
Chris Lattner3a5ed552006-02-01 01:28:23 +00002138 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
Chris Lattner6f87d182006-02-22 22:37:12 +00002139 RetValRegs = Regs;
Chris Lattner3a5ed552006-02-01 01:28:23 +00002140 } else {
Chris Lattner9fed5b62006-02-27 23:45:39 +00002141 IndirectStoresToEmit.push_back(std::make_pair(Regs,
2142 I.getOperand(OpNum)));
Chris Lattner3a5ed552006-02-01 01:28:23 +00002143 OpNum++; // Consumes a call operand.
2144 }
Chris Lattner2e56e892006-01-31 02:03:41 +00002145
2146 // Add information to the INLINEASM node to know that this register is
2147 // set.
Chris Lattner571d9642006-02-23 19:21:04 +00002148 Regs.AddInlineAsmOperands(2 /*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner2e56e892006-01-31 02:03:41 +00002149 break;
2150 }
2151 case InlineAsm::isInput: {
Chris Lattner9fed5b62006-02-27 23:45:39 +00002152 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
Chris Lattner1558fc62006-02-01 18:59:47 +00002153 OpNum++; // Consumes a call operand.
Chris Lattner65ad53f2006-02-04 02:16:44 +00002154
Chris Lattner7f5880b2006-02-02 00:25:23 +00002155 if (isdigit(ConstraintCode[0])) { // Matching constraint?
2156 // If this is required to match an output register we have already set,
2157 // just use its register.
2158 unsigned OperandNo = atoi(ConstraintCode.c_str());
Chris Lattner65ad53f2006-02-04 02:16:44 +00002159
Chris Lattner571d9642006-02-23 19:21:04 +00002160 // Scan until we find the definition we already emitted of this operand.
2161 // When we find it, create a RegsForValue operand.
2162 unsigned CurOp = 2; // The first operand.
2163 for (; OperandNo; --OperandNo) {
2164 // Advance to the next operand.
2165 unsigned NumOps =
2166 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattnerb0305322006-07-20 19:02:21 +00002167 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
2168 (NumOps & 7) == 4 /*MEM*/) &&
Chris Lattner571d9642006-02-23 19:21:04 +00002169 "Skipped past definitions?");
2170 CurOp += (NumOps>>3)+1;
2171 }
2172
2173 unsigned NumOps =
2174 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2175 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2176 "Skipped past definitions?");
2177
2178 // Add NumOps>>3 registers to MatchedRegs.
2179 RegsForValue MatchedRegs;
2180 MatchedRegs.ValueVT = InOperandVal.getValueType();
2181 MatchedRegs.RegVT = AsmNodeOperands[CurOp+1].getValueType();
2182 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
2183 unsigned Reg=cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
2184 MatchedRegs.Regs.push_back(Reg);
2185 }
2186
2187 // Use the produced MatchedRegs object to
Evan Chengef9e07d2006-06-15 08:11:54 +00002188 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag,
2189 TLI.getPointerTy());
Chris Lattner571d9642006-02-23 19:21:04 +00002190 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattner571d9642006-02-23 19:21:04 +00002191 break;
Chris Lattner7f5880b2006-02-02 00:25:23 +00002192 }
Chris Lattner7ef7a642006-02-24 01:11:24 +00002193
2194 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2195 if (ConstraintCode.size() == 1) // not a physreg name.
2196 CTy = TLI.getConstraintType(ConstraintCode[0]);
2197
2198 if (CTy == TargetLowering::C_Other) {
2199 if (!TLI.isOperandValidForConstraint(InOperandVal, ConstraintCode[0]))
2200 assert(0 && "MATCH FAIL!");
2201
2202 // Add information to the INLINEASM node to know about this input.
2203 unsigned ResOpType = 3 /*IMM*/ | (1 << 3);
2204 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2205 AsmNodeOperands.push_back(InOperandVal);
2206 break;
2207 } else if (CTy == TargetLowering::C_Memory) {
2208 // Memory input.
2209
2210 // Check that the operand isn't a float.
2211 if (!MVT::isInteger(InOperandVal.getValueType()))
2212 assert(0 && "MATCH FAIL!");
2213
2214 // Extend/truncate to the right pointer type if needed.
2215 MVT::ValueType PtrType = TLI.getPointerTy();
2216 if (InOperandVal.getValueType() < PtrType)
2217 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2218 else if (InOperandVal.getValueType() > PtrType)
2219 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2220
2221 // Add information to the INLINEASM node to know about this input.
2222 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2223 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2224 AsmNodeOperands.push_back(InOperandVal);
2225 break;
2226 }
2227
2228 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2229
2230 // Copy the input into the appropriate registers.
2231 RegsForValue InRegs =
2232 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2233 false, true, OutputRegs, InputRegs);
2234 // FIXME: should be match fail.
2235 assert(!InRegs.Regs.empty() && "Couldn't allocate input reg!");
2236
Evan Chengef9e07d2006-06-15 08:11:54 +00002237 InRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag, TLI.getPointerTy());
Chris Lattner7ef7a642006-02-24 01:11:24 +00002238
2239 InRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattner2e56e892006-01-31 02:03:41 +00002240 break;
2241 }
Chris Lattner571d9642006-02-23 19:21:04 +00002242 case InlineAsm::isClobber: {
2243 RegsForValue ClobberedRegs =
2244 GetRegistersForValue(ConstraintCode, MVT::Other, false, false,
2245 OutputRegs, InputRegs);
2246 // Add the clobbered value to the operand list, so that the register
2247 // allocator is aware that the physreg got clobbered.
2248 if (!ClobberedRegs.Regs.empty())
2249 ClobberedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner2e56e892006-01-31 02:03:41 +00002250 break;
2251 }
Chris Lattner571d9642006-02-23 19:21:04 +00002252 }
Chris Lattner2e56e892006-01-31 02:03:41 +00002253 }
Chris Lattner476e67b2006-01-26 22:24:51 +00002254
2255 // Finish up input operands.
2256 AsmNodeOperands[0] = Chain;
2257 if (Flag.Val) AsmNodeOperands.push_back(Flag);
2258
2259 std::vector<MVT::ValueType> VTs;
2260 VTs.push_back(MVT::Other);
2261 VTs.push_back(MVT::Flag);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002262 Chain = DAG.getNode(ISD::INLINEASM, VTs,
2263 &AsmNodeOperands[0], AsmNodeOperands.size());
Chris Lattner476e67b2006-01-26 22:24:51 +00002264 Flag = Chain.getValue(1);
2265
Chris Lattner2e56e892006-01-31 02:03:41 +00002266 // If this asm returns a register value, copy the result from that register
2267 // and set it as the value of the call.
Chris Lattner6f87d182006-02-22 22:37:12 +00002268 if (!RetValRegs.Regs.empty())
2269 setValue(&I, RetValRegs.getCopyFromRegs(DAG, Chain, Flag));
Chris Lattner476e67b2006-01-26 22:24:51 +00002270
Chris Lattner2e56e892006-01-31 02:03:41 +00002271 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
2272
2273 // Process indirect outputs, first output all of the flagged copies out of
2274 // physregs.
2275 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner6f87d182006-02-22 22:37:12 +00002276 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner2e56e892006-01-31 02:03:41 +00002277 Value *Ptr = IndirectStoresToEmit[i].second;
Chris Lattner6f87d182006-02-22 22:37:12 +00002278 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, Flag);
2279 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner2e56e892006-01-31 02:03:41 +00002280 }
2281
2282 // Emit the non-flagged stores from the physregs.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002283 SmallVector<SDOperand, 8> OutChains;
Chris Lattner2e56e892006-01-31 02:03:41 +00002284 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
2285 OutChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
2286 StoresToEmit[i].first,
2287 getValue(StoresToEmit[i].second),
2288 DAG.getSrcValue(StoresToEmit[i].second)));
2289 if (!OutChains.empty())
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002290 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
2291 &OutChains[0], OutChains.size());
Chris Lattner476e67b2006-01-26 22:24:51 +00002292 DAG.setRoot(Chain);
2293}
2294
2295
Chris Lattner7a60d912005-01-07 07:47:53 +00002296void SelectionDAGLowering::visitMalloc(MallocInst &I) {
2297 SDOperand Src = getValue(I.getOperand(0));
2298
2299 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattnereccb73d2005-01-22 23:04:37 +00002300
2301 if (IntPtr < Src.getValueType())
2302 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
2303 else if (IntPtr > Src.getValueType())
2304 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner7a60d912005-01-07 07:47:53 +00002305
2306 // Scale the source by the type size.
Owen Anderson20a631f2006-05-03 01:29:57 +00002307 uint64_t ElementSize = TD->getTypeSize(I.getType()->getElementType());
Chris Lattner7a60d912005-01-07 07:47:53 +00002308 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
2309 Src, getIntPtrConstant(ElementSize));
2310
2311 std::vector<std::pair<SDOperand, const Type*> > Args;
Owen Anderson20a631f2006-05-03 01:29:57 +00002312 Args.push_back(std::make_pair(Src, TLI.getTargetData()->getIntPtrType()));
Chris Lattner1f45cd72005-01-08 19:26:18 +00002313
2314 std::pair<SDOperand,SDOperand> Result =
Chris Lattner2e77db62005-05-13 18:50:42 +00002315 TLI.LowerCallTo(getRoot(), I.getType(), false, CallingConv::C, true,
Chris Lattner1f45cd72005-01-08 19:26:18 +00002316 DAG.getExternalSymbol("malloc", IntPtr),
2317 Args, DAG);
2318 setValue(&I, Result.first); // Pointers always fit in registers
2319 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00002320}
2321
2322void SelectionDAGLowering::visitFree(FreeInst &I) {
2323 std::vector<std::pair<SDOperand, const Type*> > Args;
2324 Args.push_back(std::make_pair(getValue(I.getOperand(0)),
Owen Anderson20a631f2006-05-03 01:29:57 +00002325 TLI.getTargetData()->getIntPtrType()));
Chris Lattner7a60d912005-01-07 07:47:53 +00002326 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattner1f45cd72005-01-08 19:26:18 +00002327 std::pair<SDOperand,SDOperand> Result =
Chris Lattner2e77db62005-05-13 18:50:42 +00002328 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, CallingConv::C, true,
Chris Lattner1f45cd72005-01-08 19:26:18 +00002329 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
2330 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00002331}
2332
Chris Lattner13d7c252005-08-26 20:54:47 +00002333// InsertAtEndOfBasicBlock - This method should be implemented by targets that
2334// mark instructions with the 'usesCustomDAGSchedInserter' flag. These
2335// instructions are special in various ways, which require special support to
2336// insert. The specified MachineInstr is created but not inserted into any
2337// basic blocks, and the scheduler passes ownership of it to this method.
2338MachineBasicBlock *TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
2339 MachineBasicBlock *MBB) {
2340 std::cerr << "If a target marks an instruction with "
2341 "'usesCustomDAGSchedInserter', it must implement "
2342 "TargetLowering::InsertAtEndOfBasicBlock!\n";
2343 abort();
2344 return 0;
2345}
2346
Chris Lattner58cfd792005-01-09 00:00:49 +00002347void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00002348 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
2349 getValue(I.getOperand(1)),
2350 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner58cfd792005-01-09 00:00:49 +00002351}
2352
2353void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00002354 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
2355 getValue(I.getOperand(0)),
2356 DAG.getSrcValue(I.getOperand(0)));
2357 setValue(&I, V);
2358 DAG.setRoot(V.getValue(1));
Chris Lattner7a60d912005-01-07 07:47:53 +00002359}
2360
2361void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00002362 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
2363 getValue(I.getOperand(1)),
2364 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner7a60d912005-01-07 07:47:53 +00002365}
2366
2367void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00002368 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
2369 getValue(I.getOperand(1)),
2370 getValue(I.getOperand(2)),
2371 DAG.getSrcValue(I.getOperand(1)),
2372 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner7a60d912005-01-07 07:47:53 +00002373}
2374
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002375/// TargetLowering::LowerArguments - This is the default LowerArguments
2376/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattneraaa23d92006-05-16 22:53:20 +00002377/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
2378/// integrated into SDISel.
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002379std::vector<SDOperand>
2380TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
2381 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
2382 std::vector<SDOperand> Ops;
Chris Lattner3d826992006-05-16 06:45:34 +00002383 Ops.push_back(DAG.getRoot());
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002384 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
2385 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
2386
2387 // Add one result value for each formal argument.
2388 std::vector<MVT::ValueType> RetVals;
2389 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2390 MVT::ValueType VT = getValueType(I->getType());
2391
2392 switch (getTypeAction(VT)) {
2393 default: assert(0 && "Unknown type action!");
2394 case Legal:
2395 RetVals.push_back(VT);
2396 break;
2397 case Promote:
2398 RetVals.push_back(getTypeToTransformTo(VT));
2399 break;
2400 case Expand:
2401 if (VT != MVT::Vector) {
2402 // If this is a large integer, it needs to be broken up into small
2403 // integers. Figure out what the destination type is and how many small
2404 // integers it turns into.
2405 MVT::ValueType NVT = getTypeToTransformTo(VT);
2406 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2407 for (unsigned i = 0; i != NumVals; ++i)
2408 RetVals.push_back(NVT);
2409 } else {
2410 // Otherwise, this is a vector type. We only support legal vectors
2411 // right now.
2412 unsigned NumElems = cast<PackedType>(I->getType())->getNumElements();
2413 const Type *EltTy = cast<PackedType>(I->getType())->getElementType();
Evan Cheng3784f3c52006-04-27 08:29:42 +00002414
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002415 // Figure out if there is a Packed type corresponding to this Vector
2416 // type. If so, convert to the packed type.
2417 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2418 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2419 RetVals.push_back(TVT);
2420 } else {
2421 assert(0 && "Don't support illegal by-val vector arguments yet!");
2422 }
2423 }
2424 break;
2425 }
2426 }
Evan Cheng9618df12006-04-25 23:03:35 +00002427
Chris Lattner3d826992006-05-16 06:45:34 +00002428 RetVals.push_back(MVT::Other);
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002429
2430 // Create the node.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002431 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, RetVals,
2432 &Ops[0], Ops.size()).Val;
Chris Lattner3d826992006-05-16 06:45:34 +00002433
2434 DAG.setRoot(SDOperand(Result, Result->getNumValues()-1));
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002435
2436 // Set up the return result vector.
2437 Ops.clear();
2438 unsigned i = 0;
2439 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2440 MVT::ValueType VT = getValueType(I->getType());
2441
2442 switch (getTypeAction(VT)) {
2443 default: assert(0 && "Unknown type action!");
2444 case Legal:
2445 Ops.push_back(SDOperand(Result, i++));
2446 break;
2447 case Promote: {
2448 SDOperand Op(Result, i++);
2449 if (MVT::isInteger(VT)) {
2450 unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext
2451 : ISD::AssertZext;
2452 Op = DAG.getNode(AssertOp, Op.getValueType(), Op, DAG.getValueType(VT));
2453 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2454 } else {
2455 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2456 Op = DAG.getNode(ISD::FP_ROUND, VT, Op);
2457 }
2458 Ops.push_back(Op);
2459 break;
2460 }
2461 case Expand:
2462 if (VT != MVT::Vector) {
2463 // If this is a large integer, it needs to be reassembled from small
2464 // integers. Figure out what the source elt type is and how many small
2465 // integers it is.
2466 MVT::ValueType NVT = getTypeToTransformTo(VT);
2467 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2468 if (NumVals == 2) {
2469 SDOperand Lo = SDOperand(Result, i++);
2470 SDOperand Hi = SDOperand(Result, i++);
2471
2472 if (!isLittleEndian())
2473 std::swap(Lo, Hi);
2474
2475 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi));
2476 } else {
2477 // Value scalarized into many values. Unimp for now.
2478 assert(0 && "Cannot expand i64 -> i16 yet!");
2479 }
2480 } else {
2481 // Otherwise, this is a vector type. We only support legal vectors
2482 // right now.
Evan Chengd43c5c62006-04-28 05:25:15 +00002483 const PackedType *PTy = cast<PackedType>(I->getType());
2484 unsigned NumElems = PTy->getNumElements();
2485 const Type *EltTy = PTy->getElementType();
Evan Cheng3784f3c52006-04-27 08:29:42 +00002486
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002487 // Figure out if there is a Packed type corresponding to this Vector
2488 // type. If so, convert to the packed type.
2489 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
Chris Lattner7949c2e2006-05-17 20:49:36 +00002490 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Evan Chengd43c5c62006-04-28 05:25:15 +00002491 SDOperand N = SDOperand(Result, i++);
2492 // Handle copies from generic vectors to registers.
Chris Lattner7949c2e2006-05-17 20:49:36 +00002493 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
2494 DAG.getConstant(NumElems, MVT::i32),
2495 DAG.getValueType(getValueType(EltTy)));
2496 Ops.push_back(N);
2497 } else {
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002498 assert(0 && "Don't support illegal by-val vector arguments yet!");
Chris Lattnerb77ba732006-05-16 23:39:44 +00002499 abort();
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002500 }
2501 }
2502 break;
2503 }
2504 }
2505 return Ops;
2506}
2507
Chris Lattneraaa23d92006-05-16 22:53:20 +00002508
2509/// TargetLowering::LowerCallTo - This is the default LowerCallTo
2510/// implementation, which just inserts an ISD::CALL node, which is later custom
2511/// lowered by the target to something concrete. FIXME: When all targets are
2512/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
2513std::pair<SDOperand, SDOperand>
2514TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
2515 unsigned CallingConv, bool isTailCall,
2516 SDOperand Callee,
2517 ArgListTy &Args, SelectionDAG &DAG) {
2518 std::vector<SDOperand> Ops;
2519 Ops.push_back(Chain); // Op#0 - Chain
2520 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
2521 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
2522 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
2523 Ops.push_back(Callee);
2524
2525 // Handle all of the outgoing arguments.
2526 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
2527 MVT::ValueType VT = getValueType(Args[i].second);
2528 SDOperand Op = Args[i].first;
Evan Cheng45827712006-05-25 00:55:32 +00002529 bool isSigned = Args[i].second->isSigned();
Chris Lattneraaa23d92006-05-16 22:53:20 +00002530 switch (getTypeAction(VT)) {
2531 default: assert(0 && "Unknown type action!");
2532 case Legal:
2533 Ops.push_back(Op);
Evan Cheng21dee4e2006-05-26 23:13:20 +00002534 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattneraaa23d92006-05-16 22:53:20 +00002535 break;
2536 case Promote:
2537 if (MVT::isInteger(VT)) {
Evan Cheng45827712006-05-25 00:55:32 +00002538 unsigned ExtOp = isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Chris Lattneraaa23d92006-05-16 22:53:20 +00002539 Op = DAG.getNode(ExtOp, getTypeToTransformTo(VT), Op);
2540 } else {
2541 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2542 Op = DAG.getNode(ISD::FP_EXTEND, getTypeToTransformTo(VT), Op);
2543 }
2544 Ops.push_back(Op);
Evan Cheng21dee4e2006-05-26 23:13:20 +00002545 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattneraaa23d92006-05-16 22:53:20 +00002546 break;
2547 case Expand:
2548 if (VT != MVT::Vector) {
2549 // If this is a large integer, it needs to be broken down into small
2550 // integers. Figure out what the source elt type is and how many small
2551 // integers it is.
2552 MVT::ValueType NVT = getTypeToTransformTo(VT);
2553 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2554 if (NumVals == 2) {
2555 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2556 DAG.getConstant(0, getPointerTy()));
2557 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2558 DAG.getConstant(1, getPointerTy()));
2559 if (!isLittleEndian())
2560 std::swap(Lo, Hi);
2561
2562 Ops.push_back(Lo);
Evan Cheng21dee4e2006-05-26 23:13:20 +00002563 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattneraaa23d92006-05-16 22:53:20 +00002564 Ops.push_back(Hi);
Evan Cheng21dee4e2006-05-26 23:13:20 +00002565 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattneraaa23d92006-05-16 22:53:20 +00002566 } else {
2567 // Value scalarized into many values. Unimp for now.
2568 assert(0 && "Cannot expand i64 -> i16 yet!");
2569 }
2570 } else {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002571 // Otherwise, this is a vector type. We only support legal vectors
2572 // right now.
2573 const PackedType *PTy = cast<PackedType>(Args[i].second);
2574 unsigned NumElems = PTy->getNumElements();
2575 const Type *EltTy = PTy->getElementType();
2576
2577 // Figure out if there is a Packed type corresponding to this Vector
2578 // type. If so, convert to the packed type.
2579 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
Chris Lattner938155c2006-05-17 20:43:21 +00002580 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2581 // Insert a VBIT_CONVERT of the MVT::Vector type to the packed type.
2582 Op = DAG.getNode(ISD::VBIT_CONVERT, TVT, Op);
2583 Ops.push_back(Op);
Evan Cheng21dee4e2006-05-26 23:13:20 +00002584 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattner938155c2006-05-17 20:43:21 +00002585 } else {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002586 assert(0 && "Don't support illegal by-val vector call args yet!");
2587 abort();
2588 }
Chris Lattneraaa23d92006-05-16 22:53:20 +00002589 }
2590 break;
2591 }
2592 }
2593
2594 // Figure out the result value types.
2595 std::vector<MVT::ValueType> RetTys;
2596
2597 if (RetTy != Type::VoidTy) {
2598 MVT::ValueType VT = getValueType(RetTy);
2599 switch (getTypeAction(VT)) {
2600 default: assert(0 && "Unknown type action!");
2601 case Legal:
2602 RetTys.push_back(VT);
2603 break;
2604 case Promote:
2605 RetTys.push_back(getTypeToTransformTo(VT));
2606 break;
2607 case Expand:
2608 if (VT != MVT::Vector) {
2609 // If this is a large integer, it needs to be reassembled from small
2610 // integers. Figure out what the source elt type is and how many small
2611 // integers it is.
2612 MVT::ValueType NVT = getTypeToTransformTo(VT);
2613 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2614 for (unsigned i = 0; i != NumVals; ++i)
2615 RetTys.push_back(NVT);
2616 } else {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002617 // Otherwise, this is a vector type. We only support legal vectors
2618 // right now.
2619 const PackedType *PTy = cast<PackedType>(RetTy);
2620 unsigned NumElems = PTy->getNumElements();
2621 const Type *EltTy = PTy->getElementType();
2622
2623 // Figure out if there is a Packed type corresponding to this Vector
2624 // type. If so, convert to the packed type.
2625 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2626 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2627 RetTys.push_back(TVT);
2628 } else {
2629 assert(0 && "Don't support illegal by-val vector call results yet!");
2630 abort();
2631 }
Chris Lattneraaa23d92006-05-16 22:53:20 +00002632 }
2633 }
2634 }
2635
2636 RetTys.push_back(MVT::Other); // Always has a chain.
2637
2638 // Finally, create the CALL node.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002639 SDOperand Res = DAG.getNode(ISD::CALL, RetTys, &Ops[0], Ops.size());
Chris Lattneraaa23d92006-05-16 22:53:20 +00002640
2641 // This returns a pair of operands. The first element is the
2642 // return value for the function (if RetTy is not VoidTy). The second
2643 // element is the outgoing token chain.
2644 SDOperand ResVal;
2645 if (RetTys.size() != 1) {
2646 MVT::ValueType VT = getValueType(RetTy);
2647 if (RetTys.size() == 2) {
2648 ResVal = Res;
2649
2650 // If this value was promoted, truncate it down.
2651 if (ResVal.getValueType() != VT) {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002652 if (VT == MVT::Vector) {
2653 // Insert a VBITCONVERT to convert from the packed result type to the
2654 // MVT::Vector type.
2655 unsigned NumElems = cast<PackedType>(RetTy)->getNumElements();
2656 const Type *EltTy = cast<PackedType>(RetTy)->getElementType();
2657
2658 // Figure out if there is a Packed type corresponding to this Vector
2659 // type. If so, convert to the packed type.
2660 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2661 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002662 // Insert a VBIT_CONVERT of the FORMAL_ARGUMENTS to a
2663 // "N x PTyElementVT" MVT::Vector type.
2664 ResVal = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, ResVal,
Chris Lattner7949c2e2006-05-17 20:49:36 +00002665 DAG.getConstant(NumElems, MVT::i32),
2666 DAG.getValueType(getValueType(EltTy)));
Chris Lattnerb77ba732006-05-16 23:39:44 +00002667 } else {
2668 abort();
2669 }
2670 } else if (MVT::isInteger(VT)) {
Chris Lattneraaa23d92006-05-16 22:53:20 +00002671 unsigned AssertOp = RetTy->isSigned() ?
2672 ISD::AssertSext : ISD::AssertZext;
2673 ResVal = DAG.getNode(AssertOp, ResVal.getValueType(), ResVal,
2674 DAG.getValueType(VT));
2675 ResVal = DAG.getNode(ISD::TRUNCATE, VT, ResVal);
2676 } else {
2677 assert(MVT::isFloatingPoint(VT));
2678 ResVal = DAG.getNode(ISD::FP_ROUND, VT, ResVal);
2679 }
2680 }
2681 } else if (RetTys.size() == 3) {
2682 ResVal = DAG.getNode(ISD::BUILD_PAIR, VT,
2683 Res.getValue(0), Res.getValue(1));
2684
2685 } else {
2686 assert(0 && "Case not handled yet!");
2687 }
2688 }
2689
2690 return std::make_pair(ResVal, Res.getValue(Res.Val->getNumValues()-1));
2691}
2692
2693
2694
Chris Lattner58cfd792005-01-09 00:00:49 +00002695// It is always conservatively correct for llvm.returnaddress and
2696// llvm.frameaddress to return 0.
Chris Lattneraaa23d92006-05-16 22:53:20 +00002697//
2698// FIXME: Change this to insert a FRAMEADDR/RETURNADDR node, and have that be
2699// expanded to 0 if the target wants.
Chris Lattner58cfd792005-01-09 00:00:49 +00002700std::pair<SDOperand, SDOperand>
2701TargetLowering::LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain,
2702 unsigned Depth, SelectionDAG &DAG) {
2703 return std::make_pair(DAG.getConstant(0, getPointerTy()), Chain);
Chris Lattner7a60d912005-01-07 07:47:53 +00002704}
2705
Chris Lattner29dcc712005-05-14 05:50:48 +00002706SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner897cd7d2005-01-16 07:28:41 +00002707 assert(0 && "LowerOperation not implemented for this target!");
2708 abort();
Misha Brukman73e929f2005-02-17 21:39:27 +00002709 return SDOperand();
Chris Lattner897cd7d2005-01-16 07:28:41 +00002710}
2711
Nate Begeman595ec732006-01-28 03:14:31 +00002712SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
2713 SelectionDAG &DAG) {
2714 assert(0 && "CustomPromoteOperation not implemented for this target!");
2715 abort();
2716 return SDOperand();
2717}
2718
Chris Lattner58cfd792005-01-09 00:00:49 +00002719void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) {
2720 unsigned Depth = (unsigned)cast<ConstantUInt>(I.getOperand(1))->getValue();
2721 std::pair<SDOperand,SDOperand> Result =
Chris Lattner4108bb02005-01-17 19:43:36 +00002722 TLI.LowerFrameReturnAddress(isFrame, getRoot(), Depth, DAG);
Chris Lattner58cfd792005-01-09 00:00:49 +00002723 setValue(&I, Result.first);
2724 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00002725}
2726
Evan Cheng6781b6e2006-02-15 21:59:04 +00002727/// getMemsetValue - Vectorized representation of the memset value
Evan Cheng81fcea82006-02-14 08:22:34 +00002728/// operand.
2729static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT,
Evan Cheng93e48652006-02-15 22:12:35 +00002730 SelectionDAG &DAG) {
Evan Cheng81fcea82006-02-14 08:22:34 +00002731 MVT::ValueType CurVT = VT;
2732 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
2733 uint64_t Val = C->getValue() & 255;
2734 unsigned Shift = 8;
2735 while (CurVT != MVT::i8) {
2736 Val = (Val << Shift) | Val;
2737 Shift <<= 1;
2738 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00002739 }
2740 return DAG.getConstant(Val, VT);
2741 } else {
2742 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2743 unsigned Shift = 8;
2744 while (CurVT != MVT::i8) {
2745 Value =
2746 DAG.getNode(ISD::OR, VT,
2747 DAG.getNode(ISD::SHL, VT, Value,
2748 DAG.getConstant(Shift, MVT::i8)), Value);
2749 Shift <<= 1;
2750 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00002751 }
2752
2753 return Value;
2754 }
2755}
2756
Evan Cheng6781b6e2006-02-15 21:59:04 +00002757/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2758/// used when a memcpy is turned into a memset when the source is a constant
2759/// string ptr.
2760static SDOperand getMemsetStringVal(MVT::ValueType VT,
2761 SelectionDAG &DAG, TargetLowering &TLI,
2762 std::string &Str, unsigned Offset) {
2763 MVT::ValueType CurVT = VT;
2764 uint64_t Val = 0;
2765 unsigned MSB = getSizeInBits(VT) / 8;
2766 if (TLI.isLittleEndian())
2767 Offset = Offset + MSB - 1;
2768 for (unsigned i = 0; i != MSB; ++i) {
2769 Val = (Val << 8) | Str[Offset];
2770 Offset += TLI.isLittleEndian() ? -1 : 1;
2771 }
2772 return DAG.getConstant(Val, VT);
2773}
2774
Evan Cheng81fcea82006-02-14 08:22:34 +00002775/// getMemBasePlusOffset - Returns base and offset node for the
2776static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
2777 SelectionDAG &DAG, TargetLowering &TLI) {
2778 MVT::ValueType VT = Base.getValueType();
2779 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2780}
2781
Evan Chengdb2a7a72006-02-14 20:12:38 +00002782/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
Evan Chengd5026102006-02-14 09:11:59 +00002783/// to replace the memset / memcpy is below the threshold. It also returns the
2784/// types of the sequence of memory ops to perform memset / memcpy.
Evan Chengdb2a7a72006-02-14 20:12:38 +00002785static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps,
2786 unsigned Limit, uint64_t Size,
2787 unsigned Align, TargetLowering &TLI) {
Evan Cheng81fcea82006-02-14 08:22:34 +00002788 MVT::ValueType VT;
2789
2790 if (TLI.allowsUnalignedMemoryAccesses()) {
2791 VT = MVT::i64;
2792 } else {
2793 switch (Align & 7) {
2794 case 0:
2795 VT = MVT::i64;
2796 break;
2797 case 4:
2798 VT = MVT::i32;
2799 break;
2800 case 2:
2801 VT = MVT::i16;
2802 break;
2803 default:
2804 VT = MVT::i8;
2805 break;
2806 }
2807 }
2808
Evan Chengd5026102006-02-14 09:11:59 +00002809 MVT::ValueType LVT = MVT::i64;
2810 while (!TLI.isTypeLegal(LVT))
2811 LVT = (MVT::ValueType)((unsigned)LVT - 1);
2812 assert(MVT::isInteger(LVT));
Evan Cheng81fcea82006-02-14 08:22:34 +00002813
Evan Chengd5026102006-02-14 09:11:59 +00002814 if (VT > LVT)
2815 VT = LVT;
2816
Evan Cheng04514992006-02-14 23:05:54 +00002817 unsigned NumMemOps = 0;
Evan Cheng81fcea82006-02-14 08:22:34 +00002818 while (Size != 0) {
2819 unsigned VTSize = getSizeInBits(VT) / 8;
2820 while (VTSize > Size) {
2821 VT = (MVT::ValueType)((unsigned)VT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00002822 VTSize >>= 1;
2823 }
Evan Chengd5026102006-02-14 09:11:59 +00002824 assert(MVT::isInteger(VT));
2825
2826 if (++NumMemOps > Limit)
2827 return false;
Evan Cheng81fcea82006-02-14 08:22:34 +00002828 MemOps.push_back(VT);
2829 Size -= VTSize;
2830 }
Evan Chengd5026102006-02-14 09:11:59 +00002831
2832 return true;
Evan Cheng81fcea82006-02-14 08:22:34 +00002833}
2834
Chris Lattner875def92005-01-11 05:56:49 +00002835void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) {
Evan Cheng81fcea82006-02-14 08:22:34 +00002836 SDOperand Op1 = getValue(I.getOperand(1));
2837 SDOperand Op2 = getValue(I.getOperand(2));
2838 SDOperand Op3 = getValue(I.getOperand(3));
2839 SDOperand Op4 = getValue(I.getOperand(4));
2840 unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue();
2841 if (Align == 0) Align = 1;
2842
2843 if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) {
2844 std::vector<MVT::ValueType> MemOps;
Evan Cheng81fcea82006-02-14 08:22:34 +00002845
2846 // Expand memset / memcpy to a series of load / store ops
2847 // if the size operand falls below a certain threshold.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002848 SmallVector<SDOperand, 8> OutChains;
Evan Cheng81fcea82006-02-14 08:22:34 +00002849 switch (Op) {
Evan Cheng038521e2006-02-14 19:45:56 +00002850 default: break; // Do nothing for now.
Evan Cheng81fcea82006-02-14 08:22:34 +00002851 case ISD::MEMSET: {
Evan Chengdb2a7a72006-02-14 20:12:38 +00002852 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
2853 Size->getValue(), Align, TLI)) {
Evan Chengd5026102006-02-14 09:11:59 +00002854 unsigned NumMemOps = MemOps.size();
Evan Cheng81fcea82006-02-14 08:22:34 +00002855 unsigned Offset = 0;
2856 for (unsigned i = 0; i < NumMemOps; i++) {
2857 MVT::ValueType VT = MemOps[i];
2858 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Cheng93e48652006-02-15 22:12:35 +00002859 SDOperand Value = getMemsetValue(Op2, VT, DAG);
Evan Chenge2038bd2006-02-15 01:54:51 +00002860 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, getRoot(),
2861 Value,
Chris Lattner6f87d182006-02-22 22:37:12 +00002862 getMemBasePlusOffset(Op1, Offset, DAG, TLI),
2863 DAG.getSrcValue(I.getOperand(1), Offset));
Evan Chenge2038bd2006-02-15 01:54:51 +00002864 OutChains.push_back(Store);
Evan Cheng81fcea82006-02-14 08:22:34 +00002865 Offset += VTSize;
2866 }
Evan Cheng81fcea82006-02-14 08:22:34 +00002867 }
Evan Chenge2038bd2006-02-15 01:54:51 +00002868 break;
Evan Cheng81fcea82006-02-14 08:22:34 +00002869 }
Evan Chenge2038bd2006-02-15 01:54:51 +00002870 case ISD::MEMCPY: {
2871 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemcpy(),
2872 Size->getValue(), Align, TLI)) {
2873 unsigned NumMemOps = MemOps.size();
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002874 unsigned SrcOff = 0, DstOff = 0, SrcDelta = 0;
Evan Cheng6781b6e2006-02-15 21:59:04 +00002875 GlobalAddressSDNode *G = NULL;
2876 std::string Str;
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002877 bool CopyFromStr = false;
Evan Cheng6781b6e2006-02-15 21:59:04 +00002878
2879 if (Op2.getOpcode() == ISD::GlobalAddress)
2880 G = cast<GlobalAddressSDNode>(Op2);
2881 else if (Op2.getOpcode() == ISD::ADD &&
2882 Op2.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2883 Op2.getOperand(1).getOpcode() == ISD::Constant) {
2884 G = cast<GlobalAddressSDNode>(Op2.getOperand(0));
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002885 SrcDelta = cast<ConstantSDNode>(Op2.getOperand(1))->getValue();
Evan Cheng6781b6e2006-02-15 21:59:04 +00002886 }
2887 if (G) {
2888 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002889 if (GV) {
Evan Cheng38280c02006-03-10 23:52:03 +00002890 Str = GV->getStringValue(false);
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002891 if (!Str.empty()) {
2892 CopyFromStr = true;
2893 SrcOff += SrcDelta;
2894 }
2895 }
Evan Cheng6781b6e2006-02-15 21:59:04 +00002896 }
2897
Evan Chenge2038bd2006-02-15 01:54:51 +00002898 for (unsigned i = 0; i < NumMemOps; i++) {
2899 MVT::ValueType VT = MemOps[i];
2900 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Cheng6781b6e2006-02-15 21:59:04 +00002901 SDOperand Value, Chain, Store;
2902
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002903 if (CopyFromStr) {
Evan Cheng6781b6e2006-02-15 21:59:04 +00002904 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
2905 Chain = getRoot();
2906 Store =
2907 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2908 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2909 DAG.getSrcValue(I.getOperand(1), DstOff));
2910 } else {
2911 Value = DAG.getLoad(VT, getRoot(),
2912 getMemBasePlusOffset(Op2, SrcOff, DAG, TLI),
2913 DAG.getSrcValue(I.getOperand(2), SrcOff));
2914 Chain = Value.getValue(1);
2915 Store =
2916 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2917 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2918 DAG.getSrcValue(I.getOperand(1), DstOff));
2919 }
Evan Chenge2038bd2006-02-15 01:54:51 +00002920 OutChains.push_back(Store);
Evan Cheng6781b6e2006-02-15 21:59:04 +00002921 SrcOff += VTSize;
2922 DstOff += VTSize;
Evan Chenge2038bd2006-02-15 01:54:51 +00002923 }
2924 }
2925 break;
2926 }
2927 }
2928
2929 if (!OutChains.empty()) {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002930 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other,
2931 &OutChains[0], OutChains.size()));
Evan Chenge2038bd2006-02-15 01:54:51 +00002932 return;
Evan Cheng81fcea82006-02-14 08:22:34 +00002933 }
2934 }
2935
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002936 DAG.setRoot(DAG.getNode(Op, MVT::Other, getRoot(), Op1, Op2, Op3, Op4));
Chris Lattner7a60d912005-01-07 07:47:53 +00002937}
2938
Chris Lattner875def92005-01-11 05:56:49 +00002939//===----------------------------------------------------------------------===//
2940// SelectionDAGISel code
2941//===----------------------------------------------------------------------===//
Chris Lattner7a60d912005-01-07 07:47:53 +00002942
2943unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) {
2944 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
2945}
2946
Chris Lattnerc9950c12005-08-17 06:37:43 +00002947void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner1a908c82005-08-18 17:35:14 +00002948 // FIXME: we only modify the CFG to split critical edges. This
2949 // updates dom and loop info.
Chris Lattnerc9950c12005-08-17 06:37:43 +00002950}
Chris Lattner7a60d912005-01-07 07:47:53 +00002951
Chris Lattner35397782005-12-05 07:10:48 +00002952
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002953/// OptimizeNoopCopyExpression - We have determined that the specified cast
2954/// instruction is a noop copy (e.g. it's casting from one pointer type to
2955/// another, int->uint, or int->sbyte on PPC.
2956///
2957/// Return true if any changes are made.
2958static bool OptimizeNoopCopyExpression(CastInst *CI) {
2959 BasicBlock *DefBB = CI->getParent();
2960
2961 /// InsertedCasts - Only insert a cast in each block once.
2962 std::map<BasicBlock*, CastInst*> InsertedCasts;
2963
2964 bool MadeChange = false;
2965 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
2966 UI != E; ) {
2967 Use &TheUse = UI.getUse();
2968 Instruction *User = cast<Instruction>(*UI);
2969
2970 // Figure out which BB this cast is used in. For PHI's this is the
2971 // appropriate predecessor block.
2972 BasicBlock *UserBB = User->getParent();
2973 if (PHINode *PN = dyn_cast<PHINode>(User)) {
2974 unsigned OpVal = UI.getOperandNo()/2;
2975 UserBB = PN->getIncomingBlock(OpVal);
2976 }
2977
2978 // Preincrement use iterator so we don't invalidate it.
2979 ++UI;
2980
2981 // If this user is in the same block as the cast, don't change the cast.
2982 if (UserBB == DefBB) continue;
2983
2984 // If we have already inserted a cast into this block, use it.
2985 CastInst *&InsertedCast = InsertedCasts[UserBB];
2986
2987 if (!InsertedCast) {
2988 BasicBlock::iterator InsertPt = UserBB->begin();
2989 while (isa<PHINode>(InsertPt)) ++InsertPt;
2990
2991 InsertedCast =
2992 new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
2993 MadeChange = true;
2994 }
2995
2996 // Replace a use of the cast with a use of the new casat.
2997 TheUse = InsertedCast;
2998 }
2999
3000 // If we removed all uses, nuke the cast.
3001 if (CI->use_empty())
3002 CI->eraseFromParent();
3003
3004 return MadeChange;
3005}
3006
Chris Lattner35397782005-12-05 07:10:48 +00003007/// InsertGEPComputeCode - Insert code into BB to compute Ptr+PtrOffset,
3008/// casting to the type of GEPI.
Chris Lattner21cd9902006-05-06 09:10:37 +00003009static Instruction *InsertGEPComputeCode(Instruction *&V, BasicBlock *BB,
3010 Instruction *GEPI, Value *Ptr,
3011 Value *PtrOffset) {
Chris Lattner35397782005-12-05 07:10:48 +00003012 if (V) return V; // Already computed.
3013
3014 BasicBlock::iterator InsertPt;
3015 if (BB == GEPI->getParent()) {
3016 // If insert into the GEP's block, insert right after the GEP.
3017 InsertPt = GEPI;
3018 ++InsertPt;
3019 } else {
3020 // Otherwise, insert at the top of BB, after any PHI nodes
3021 InsertPt = BB->begin();
3022 while (isa<PHINode>(InsertPt)) ++InsertPt;
3023 }
3024
Chris Lattnerbe73d6e2005-12-08 08:00:12 +00003025 // If Ptr is itself a cast, but in some other BB, emit a copy of the cast into
3026 // BB so that there is only one value live across basic blocks (the cast
3027 // operand).
3028 if (CastInst *CI = dyn_cast<CastInst>(Ptr))
3029 if (CI->getParent() != BB && isa<PointerType>(CI->getOperand(0)->getType()))
3030 Ptr = new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
3031
Chris Lattner35397782005-12-05 07:10:48 +00003032 // Add the offset, cast it to the right type.
3033 Ptr = BinaryOperator::createAdd(Ptr, PtrOffset, "", InsertPt);
Chris Lattner21cd9902006-05-06 09:10:37 +00003034 return V = new CastInst(Ptr, GEPI->getType(), "", InsertPt);
Chris Lattner35397782005-12-05 07:10:48 +00003035}
3036
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003037/// ReplaceUsesOfGEPInst - Replace all uses of RepPtr with inserted code to
3038/// compute its value. The RepPtr value can be computed with Ptr+PtrOffset. One
3039/// trivial way of doing this would be to evaluate Ptr+PtrOffset in RepPtr's
3040/// block, then ReplaceAllUsesWith'ing everything. However, we would prefer to
3041/// sink PtrOffset into user blocks where doing so will likely allow us to fold
3042/// the constant add into a load or store instruction. Additionally, if a user
3043/// is a pointer-pointer cast, we look through it to find its users.
3044static void ReplaceUsesOfGEPInst(Instruction *RepPtr, Value *Ptr,
3045 Constant *PtrOffset, BasicBlock *DefBB,
3046 GetElementPtrInst *GEPI,
Chris Lattner21cd9902006-05-06 09:10:37 +00003047 std::map<BasicBlock*,Instruction*> &InsertedExprs) {
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003048 while (!RepPtr->use_empty()) {
3049 Instruction *User = cast<Instruction>(RepPtr->use_back());
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003050
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003051 // If the user is a Pointer-Pointer cast, recurse.
3052 if (isa<CastInst>(User) && isa<PointerType>(User->getType())) {
3053 ReplaceUsesOfGEPInst(User, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003054
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003055 // Drop the use of RepPtr. The cast is dead. Don't delete it now, else we
3056 // could invalidate an iterator.
3057 User->setOperand(0, UndefValue::get(RepPtr->getType()));
3058 continue;
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003059 }
3060
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003061 // If this is a load of the pointer, or a store through the pointer, emit
3062 // the increment into the load/store block.
Chris Lattner21cd9902006-05-06 09:10:37 +00003063 Instruction *NewVal;
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003064 if (isa<LoadInst>(User) ||
3065 (isa<StoreInst>(User) && User->getOperand(0) != RepPtr)) {
3066 NewVal = InsertGEPComputeCode(InsertedExprs[User->getParent()],
3067 User->getParent(), GEPI,
3068 Ptr, PtrOffset);
3069 } else {
3070 // If this use is not foldable into the addressing mode, use a version
3071 // emitted in the GEP block.
3072 NewVal = InsertGEPComputeCode(InsertedExprs[DefBB], DefBB, GEPI,
3073 Ptr, PtrOffset);
3074 }
3075
Chris Lattner21cd9902006-05-06 09:10:37 +00003076 if (GEPI->getType() != RepPtr->getType()) {
3077 BasicBlock::iterator IP = NewVal;
3078 ++IP;
3079 NewVal = new CastInst(NewVal, RepPtr->getType(), "", IP);
3080 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003081 User->replaceUsesOfWith(RepPtr, NewVal);
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003082 }
3083}
Chris Lattner35397782005-12-05 07:10:48 +00003084
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003085
Chris Lattner35397782005-12-05 07:10:48 +00003086/// OptimizeGEPExpression - Since we are doing basic-block-at-a-time instruction
3087/// selection, we want to be a bit careful about some things. In particular, if
3088/// we have a GEP instruction that is used in a different block than it is
3089/// defined, the addressing expression of the GEP cannot be folded into loads or
3090/// stores that use it. In this case, decompose the GEP and move constant
3091/// indices into blocks that use it.
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003092static bool OptimizeGEPExpression(GetElementPtrInst *GEPI,
Owen Anderson20a631f2006-05-03 01:29:57 +00003093 const TargetData *TD) {
Chris Lattner35397782005-12-05 07:10:48 +00003094 // If this GEP is only used inside the block it is defined in, there is no
3095 // need to rewrite it.
3096 bool isUsedOutsideDefBB = false;
3097 BasicBlock *DefBB = GEPI->getParent();
3098 for (Value::use_iterator UI = GEPI->use_begin(), E = GEPI->use_end();
3099 UI != E; ++UI) {
3100 if (cast<Instruction>(*UI)->getParent() != DefBB) {
3101 isUsedOutsideDefBB = true;
3102 break;
3103 }
3104 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003105 if (!isUsedOutsideDefBB) return false;
Chris Lattner35397782005-12-05 07:10:48 +00003106
3107 // If this GEP has no non-zero constant indices, there is nothing we can do,
3108 // ignore it.
3109 bool hasConstantIndex = false;
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003110 bool hasVariableIndex = false;
Chris Lattner35397782005-12-05 07:10:48 +00003111 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3112 E = GEPI->op_end(); OI != E; ++OI) {
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003113 if (ConstantInt *CI = dyn_cast<ConstantInt>(*OI)) {
Chris Lattner35397782005-12-05 07:10:48 +00003114 if (CI->getRawValue()) {
3115 hasConstantIndex = true;
3116 break;
3117 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003118 } else {
3119 hasVariableIndex = true;
3120 }
Chris Lattner35397782005-12-05 07:10:48 +00003121 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003122
3123 // If this is a "GEP X, 0, 0, 0", turn this into a cast.
3124 if (!hasConstantIndex && !hasVariableIndex) {
3125 Value *NC = new CastInst(GEPI->getOperand(0), GEPI->getType(),
3126 GEPI->getName(), GEPI);
3127 GEPI->replaceAllUsesWith(NC);
3128 GEPI->eraseFromParent();
3129 return true;
3130 }
3131
Chris Lattnerf1a54c02005-12-11 09:05:13 +00003132 // If this is a GEP &Alloca, 0, 0, forward subst the frame index into uses.
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003133 if (!hasConstantIndex && !isa<AllocaInst>(GEPI->getOperand(0)))
3134 return false;
Chris Lattner35397782005-12-05 07:10:48 +00003135
3136 // Otherwise, decompose the GEP instruction into multiplies and adds. Sum the
3137 // constant offset (which we now know is non-zero) and deal with it later.
3138 uint64_t ConstantOffset = 0;
Owen Anderson20a631f2006-05-03 01:29:57 +00003139 const Type *UIntPtrTy = TD->getIntPtrType();
Chris Lattner35397782005-12-05 07:10:48 +00003140 Value *Ptr = new CastInst(GEPI->getOperand(0), UIntPtrTy, "", GEPI);
3141 const Type *Ty = GEPI->getOperand(0)->getType();
3142
3143 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3144 E = GEPI->op_end(); OI != E; ++OI) {
3145 Value *Idx = *OI;
3146 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
3147 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
3148 if (Field)
Owen Anderson20a631f2006-05-03 01:29:57 +00003149 ConstantOffset += TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattner35397782005-12-05 07:10:48 +00003150 Ty = StTy->getElementType(Field);
3151 } else {
3152 Ty = cast<SequentialType>(Ty)->getElementType();
3153
3154 // Handle constant subscripts.
3155 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
3156 if (CI->getRawValue() == 0) continue;
3157
3158 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Anderson20a631f2006-05-03 01:29:57 +00003159 ConstantOffset += (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattner35397782005-12-05 07:10:48 +00003160 else
Owen Anderson20a631f2006-05-03 01:29:57 +00003161 ConstantOffset+=TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattner35397782005-12-05 07:10:48 +00003162 continue;
3163 }
3164
3165 // Ptr = Ptr + Idx * ElementSize;
3166
3167 // Cast Idx to UIntPtrTy if needed.
3168 Idx = new CastInst(Idx, UIntPtrTy, "", GEPI);
3169
Owen Anderson20a631f2006-05-03 01:29:57 +00003170 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattner35397782005-12-05 07:10:48 +00003171 // Mask off bits that should not be set.
3172 ElementSize &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3173 Constant *SizeCst = ConstantUInt::get(UIntPtrTy, ElementSize);
3174
3175 // Multiply by the element size and add to the base.
3176 Idx = BinaryOperator::createMul(Idx, SizeCst, "", GEPI);
3177 Ptr = BinaryOperator::createAdd(Ptr, Idx, "", GEPI);
3178 }
3179 }
3180
3181 // Make sure that the offset fits in uintptr_t.
3182 ConstantOffset &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3183 Constant *PtrOffset = ConstantUInt::get(UIntPtrTy, ConstantOffset);
3184
3185 // Okay, we have now emitted all of the variable index parts to the BB that
3186 // the GEP is defined in. Loop over all of the using instructions, inserting
3187 // an "add Ptr, ConstantOffset" into each block that uses it and update the
Chris Lattnerbe73d6e2005-12-08 08:00:12 +00003188 // instruction to use the newly computed value, making GEPI dead. When the
3189 // user is a load or store instruction address, we emit the add into the user
3190 // block, otherwise we use a canonical version right next to the gep (these
3191 // won't be foldable as addresses, so we might as well share the computation).
3192
Chris Lattner21cd9902006-05-06 09:10:37 +00003193 std::map<BasicBlock*,Instruction*> InsertedExprs;
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003194 ReplaceUsesOfGEPInst(GEPI, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattner35397782005-12-05 07:10:48 +00003195
3196 // Finally, the GEP is dead, remove it.
3197 GEPI->eraseFromParent();
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003198
3199 return true;
Chris Lattner35397782005-12-05 07:10:48 +00003200}
3201
Chris Lattner7a60d912005-01-07 07:47:53 +00003202bool SelectionDAGISel::runOnFunction(Function &Fn) {
3203 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
3204 RegMap = MF.getSSARegMap();
3205 DEBUG(std::cerr << "\n\n\n=== " << Fn.getName() << "\n");
3206
Chris Lattner35397782005-12-05 07:10:48 +00003207 // First, split all critical edges for PHI nodes with incoming values that are
3208 // constants, this way the load of the constant into a vreg will not be placed
3209 // into MBBs that are used some other way.
3210 //
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003211 // In this pass we also look for GEP and cast instructions that are used
3212 // across basic blocks and rewrite them to improve basic-block-at-a-time
3213 // selection.
3214 //
Chris Lattner35397782005-12-05 07:10:48 +00003215 //
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003216 bool MadeChange = true;
3217 while (MadeChange) {
3218 MadeChange = false;
Chris Lattner1a908c82005-08-18 17:35:14 +00003219 for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
3220 PHINode *PN;
Chris Lattner35397782005-12-05 07:10:48 +00003221 BasicBlock::iterator BBI;
3222 for (BBI = BB->begin(); (PN = dyn_cast<PHINode>(BBI)); ++BBI)
Chris Lattner1a908c82005-08-18 17:35:14 +00003223 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3224 if (isa<Constant>(PN->getIncomingValue(i)))
3225 SplitCriticalEdge(PN->getIncomingBlock(i), BB);
Chris Lattner35397782005-12-05 07:10:48 +00003226
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003227 for (BasicBlock::iterator E = BB->end(); BBI != E; ) {
3228 Instruction *I = BBI++;
3229 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003230 MadeChange |= OptimizeGEPExpression(GEPI, TLI.getTargetData());
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003231 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
3232 // If this is a noop copy, sink it into user blocks to reduce the number
3233 // of virtual registers that must be created and coallesced.
3234 MVT::ValueType SrcVT = TLI.getValueType(CI->getOperand(0)->getType());
3235 MVT::ValueType DstVT = TLI.getValueType(CI->getType());
3236
3237 // This is an fp<->int conversion?
3238 if (MVT::isInteger(SrcVT) != MVT::isInteger(DstVT))
3239 continue;
3240
3241 // If this is an extension, it will be a zero or sign extension, which
3242 // isn't a noop.
3243 if (SrcVT < DstVT) continue;
3244
3245 // If these values will be promoted, find out what they will be promoted
3246 // to. This helps us consider truncates on PPC as noop copies when they
3247 // are.
3248 if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote)
3249 SrcVT = TLI.getTypeToTransformTo(SrcVT);
3250 if (TLI.getTypeAction(DstVT) == TargetLowering::Promote)
3251 DstVT = TLI.getTypeToTransformTo(DstVT);
3252
3253 // If, after promotion, these are the same types, this is a noop copy.
3254 if (SrcVT == DstVT)
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003255 MadeChange |= OptimizeNoopCopyExpression(CI);
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003256 }
3257 }
Chris Lattner1a908c82005-08-18 17:35:14 +00003258 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003259 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00003260
Chris Lattner7a60d912005-01-07 07:47:53 +00003261 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
3262
3263 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
3264 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukman835702a2005-04-21 22:36:52 +00003265
Chris Lattner7a60d912005-01-07 07:47:53 +00003266 return true;
3267}
3268
3269
Chris Lattner718b5c22005-01-13 17:59:43 +00003270SDOperand SelectionDAGISel::
3271CopyValueToVirtualRegister(SelectionDAGLowering &SDL, Value *V, unsigned Reg) {
Chris Lattner613f79f2005-01-11 22:03:46 +00003272 SDOperand Op = SDL.getValue(V);
Chris Lattnere727af02005-01-13 20:50:02 +00003273 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattner33182322005-08-16 21:55:35 +00003274 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattnere727af02005-01-13 20:50:02 +00003275 "Copy from a reg to the same reg!");
Chris Lattner33182322005-08-16 21:55:35 +00003276
3277 // If this type is not legal, we must make sure to not create an invalid
3278 // register use.
3279 MVT::ValueType SrcVT = Op.getValueType();
3280 MVT::ValueType DestVT = TLI.getTypeToTransformTo(SrcVT);
3281 SelectionDAG &DAG = SDL.DAG;
3282 if (SrcVT == DestVT) {
3283 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
Chris Lattner672a42d2006-03-21 19:20:37 +00003284 } else if (SrcVT == MVT::Vector) {
Chris Lattner5fe1f542006-03-31 02:06:56 +00003285 // Handle copies from generic vectors to registers.
3286 MVT::ValueType PTyElementVT, PTyLegalElementVT;
3287 unsigned NE = TLI.getPackedTypeBreakdown(cast<PackedType>(V->getType()),
3288 PTyElementVT, PTyLegalElementVT);
Chris Lattner672a42d2006-03-21 19:20:37 +00003289
Chris Lattner5fe1f542006-03-31 02:06:56 +00003290 // Insert a VBIT_CONVERT of the input vector to a "N x PTyElementVT"
3291 // MVT::Vector type.
3292 Op = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Op,
3293 DAG.getConstant(NE, MVT::i32),
3294 DAG.getValueType(PTyElementVT));
Chris Lattner672a42d2006-03-21 19:20:37 +00003295
Chris Lattner5fe1f542006-03-31 02:06:56 +00003296 // Loop over all of the elements of the resultant vector,
3297 // VEXTRACT_VECTOR_ELT'ing them, converting them to PTyLegalElementVT, then
3298 // copying them into output registers.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003299 SmallVector<SDOperand, 8> OutChains;
Chris Lattner5fe1f542006-03-31 02:06:56 +00003300 SDOperand Root = SDL.getRoot();
3301 for (unsigned i = 0; i != NE; ++i) {
3302 SDOperand Elt = DAG.getNode(ISD::VEXTRACT_VECTOR_ELT, PTyElementVT,
Evan Chengef9e07d2006-06-15 08:11:54 +00003303 Op, DAG.getConstant(i, TLI.getPointerTy()));
Chris Lattner5fe1f542006-03-31 02:06:56 +00003304 if (PTyElementVT == PTyLegalElementVT) {
3305 // Elements are legal.
3306 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3307 } else if (PTyLegalElementVT > PTyElementVT) {
3308 // Elements are promoted.
3309 if (MVT::isFloatingPoint(PTyLegalElementVT))
3310 Elt = DAG.getNode(ISD::FP_EXTEND, PTyLegalElementVT, Elt);
3311 else
3312 Elt = DAG.getNode(ISD::ANY_EXTEND, PTyLegalElementVT, Elt);
3313 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3314 } else {
3315 // Elements are expanded.
3316 // The src value is expanded into multiple registers.
3317 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
Evan Chengef9e07d2006-06-15 08:11:54 +00003318 Elt, DAG.getConstant(0, TLI.getPointerTy()));
Chris Lattner5fe1f542006-03-31 02:06:56 +00003319 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
Evan Chengef9e07d2006-06-15 08:11:54 +00003320 Elt, DAG.getConstant(1, TLI.getPointerTy()));
Chris Lattner5fe1f542006-03-31 02:06:56 +00003321 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Lo));
3322 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Hi));
3323 }
Chris Lattner672a42d2006-03-21 19:20:37 +00003324 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003325 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3326 &OutChains[0], OutChains.size());
Chris Lattner33182322005-08-16 21:55:35 +00003327 } else if (SrcVT < DestVT) {
3328 // The src value is promoted to the register.
Chris Lattnerba28c272005-08-17 06:06:25 +00003329 if (MVT::isFloatingPoint(SrcVT))
3330 Op = DAG.getNode(ISD::FP_EXTEND, DestVT, Op);
3331 else
Chris Lattnera66403d2005-09-02 00:19:37 +00003332 Op = DAG.getNode(ISD::ANY_EXTEND, DestVT, Op);
Chris Lattner33182322005-08-16 21:55:35 +00003333 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
3334 } else {
3335 // The src value is expanded into multiple registers.
3336 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
Evan Chengef9e07d2006-06-15 08:11:54 +00003337 Op, DAG.getConstant(0, TLI.getPointerTy()));
Chris Lattner33182322005-08-16 21:55:35 +00003338 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
Evan Chengef9e07d2006-06-15 08:11:54 +00003339 Op, DAG.getConstant(1, TLI.getPointerTy()));
Chris Lattner33182322005-08-16 21:55:35 +00003340 Op = DAG.getCopyToReg(SDL.getRoot(), Reg, Lo);
3341 return DAG.getCopyToReg(Op, Reg+1, Hi);
3342 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003343}
3344
Chris Lattner16f64df2005-01-17 17:15:02 +00003345void SelectionDAGISel::
3346LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL,
3347 std::vector<SDOperand> &UnorderedChains) {
3348 // If this is the entry block, emit arguments.
3349 Function &F = *BB->getParent();
Chris Lattnere3c2cf42005-01-17 17:55:19 +00003350 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattner6871b232005-10-30 19:42:35 +00003351 SDOperand OldRoot = SDL.DAG.getRoot();
3352 std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
Chris Lattner16f64df2005-01-17 17:15:02 +00003353
Chris Lattner6871b232005-10-30 19:42:35 +00003354 unsigned a = 0;
3355 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
3356 AI != E; ++AI, ++a)
3357 if (!AI->use_empty()) {
3358 SDL.setValue(AI, Args[a]);
Evan Cheng3784f3c52006-04-27 08:29:42 +00003359
Chris Lattner6871b232005-10-30 19:42:35 +00003360 // If this argument is live outside of the entry block, insert a copy from
3361 // whereever we got it to the vreg that other BB's will reference it as.
3362 if (FuncInfo.ValueMap.count(AI)) {
3363 SDOperand Copy =
3364 CopyValueToVirtualRegister(SDL, AI, FuncInfo.ValueMap[AI]);
3365 UnorderedChains.push_back(Copy);
3366 }
Chris Lattnere3c2cf42005-01-17 17:55:19 +00003367 }
Chris Lattner6871b232005-10-30 19:42:35 +00003368
Chris Lattner6871b232005-10-30 19:42:35 +00003369 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner957cb672006-05-16 06:10:58 +00003370 // FIXME: this should insert code into the DAG!
Chris Lattner6871b232005-10-30 19:42:35 +00003371 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner16f64df2005-01-17 17:15:02 +00003372}
3373
Chris Lattner7a60d912005-01-07 07:47:53 +00003374void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
3375 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemaned728c12006-03-27 01:32:24 +00003376 FunctionLoweringInfo &FuncInfo) {
Chris Lattner7a60d912005-01-07 07:47:53 +00003377 SelectionDAGLowering SDL(DAG, TLI, FuncInfo);
Chris Lattner718b5c22005-01-13 17:59:43 +00003378
3379 std::vector<SDOperand> UnorderedChains;
Misha Brukman835702a2005-04-21 22:36:52 +00003380
Chris Lattner6871b232005-10-30 19:42:35 +00003381 // Lower any arguments needed in this block if this is the entry block.
3382 if (LLVMBB == &LLVMBB->getParent()->front())
3383 LowerArguments(LLVMBB, SDL, UnorderedChains);
Chris Lattner7a60d912005-01-07 07:47:53 +00003384
3385 BB = FuncInfo.MBBMap[LLVMBB];
3386 SDL.setCurrentBasicBlock(BB);
3387
3388 // Lower all of the non-terminator instructions.
3389 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
3390 I != E; ++I)
3391 SDL.visit(*I);
Nate Begemaned728c12006-03-27 01:32:24 +00003392
Chris Lattner7a60d912005-01-07 07:47:53 +00003393 // Ensure that all instructions which are used outside of their defining
3394 // blocks are available as virtual registers.
3395 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Chris Lattner613f79f2005-01-11 22:03:46 +00003396 if (!I->use_empty() && !isa<PHINode>(I)) {
Chris Lattnera2c5d912005-01-09 01:16:24 +00003397 std::map<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner7a60d912005-01-07 07:47:53 +00003398 if (VMI != FuncInfo.ValueMap.end())
Chris Lattner718b5c22005-01-13 17:59:43 +00003399 UnorderedChains.push_back(
3400 CopyValueToVirtualRegister(SDL, I, VMI->second));
Chris Lattner7a60d912005-01-07 07:47:53 +00003401 }
3402
3403 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
3404 // ensure constants are generated when needed. Remember the virtual registers
3405 // that need to be added to the Machine PHI nodes as input. We cannot just
3406 // directly add them, because expansion might result in multiple MBB's for one
3407 // BB. As such, the start of the BB might correspond to a different MBB than
3408 // the end.
Misha Brukman835702a2005-04-21 22:36:52 +00003409 //
Chris Lattner7a60d912005-01-07 07:47:53 +00003410
3411 // Emit constants only once even if used by multiple PHI nodes.
3412 std::map<Constant*, unsigned> ConstantsOut;
3413
3414 // Check successor nodes PHI nodes that expect a constant to be available from
3415 // this block.
3416 TerminatorInst *TI = LLVMBB->getTerminator();
3417 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
3418 BasicBlock *SuccBB = TI->getSuccessor(succ);
3419 MachineBasicBlock::iterator MBBI = FuncInfo.MBBMap[SuccBB]->begin();
3420 PHINode *PN;
3421
3422 // At this point we know that there is a 1-1 correspondence between LLVM PHI
3423 // nodes and Machine PHI nodes, but the incoming operands have not been
3424 // emitted yet.
3425 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattner8ea875f2005-01-07 21:34:19 +00003426 (PN = dyn_cast<PHINode>(I)); ++I)
3427 if (!PN->use_empty()) {
3428 unsigned Reg;
3429 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
3430 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
3431 unsigned &RegOut = ConstantsOut[C];
3432 if (RegOut == 0) {
3433 RegOut = FuncInfo.CreateRegForValue(C);
Chris Lattner718b5c22005-01-13 17:59:43 +00003434 UnorderedChains.push_back(
3435 CopyValueToVirtualRegister(SDL, C, RegOut));
Chris Lattner8ea875f2005-01-07 21:34:19 +00003436 }
3437 Reg = RegOut;
3438 } else {
3439 Reg = FuncInfo.ValueMap[PHIOp];
Chris Lattnera2c5d912005-01-09 01:16:24 +00003440 if (Reg == 0) {
Misha Brukman835702a2005-04-21 22:36:52 +00003441 assert(isa<AllocaInst>(PHIOp) &&
Chris Lattnera2c5d912005-01-09 01:16:24 +00003442 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
3443 "Didn't codegen value into a register!??");
3444 Reg = FuncInfo.CreateRegForValue(PHIOp);
Chris Lattner718b5c22005-01-13 17:59:43 +00003445 UnorderedChains.push_back(
3446 CopyValueToVirtualRegister(SDL, PHIOp, Reg));
Chris Lattnera2c5d912005-01-09 01:16:24 +00003447 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003448 }
Misha Brukman835702a2005-04-21 22:36:52 +00003449
Chris Lattner8ea875f2005-01-07 21:34:19 +00003450 // Remember that this register needs to added to the machine PHI node as
3451 // the input for this MBB.
Chris Lattnerba380352006-03-31 02:12:18 +00003452 MVT::ValueType VT = TLI.getValueType(PN->getType());
3453 unsigned NumElements;
3454 if (VT != MVT::Vector)
3455 NumElements = TLI.getNumElements(VT);
3456 else {
3457 MVT::ValueType VT1,VT2;
3458 NumElements =
3459 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
3460 VT1, VT2);
3461 }
Chris Lattner8ea875f2005-01-07 21:34:19 +00003462 for (unsigned i = 0, e = NumElements; i != e; ++i)
3463 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
Chris Lattner7a60d912005-01-07 07:47:53 +00003464 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003465 }
3466 ConstantsOut.clear();
3467
Chris Lattner718b5c22005-01-13 17:59:43 +00003468 // Turn all of the unordered chains into one factored node.
Chris Lattner24516842005-01-13 19:53:14 +00003469 if (!UnorderedChains.empty()) {
Chris Lattnerb7cad902005-11-09 05:03:03 +00003470 SDOperand Root = SDL.getRoot();
3471 if (Root.getOpcode() != ISD::EntryToken) {
3472 unsigned i = 0, e = UnorderedChains.size();
3473 for (; i != e; ++i) {
3474 assert(UnorderedChains[i].Val->getNumOperands() > 1);
3475 if (UnorderedChains[i].Val->getOperand(0) == Root)
3476 break; // Don't add the root if we already indirectly depend on it.
3477 }
3478
3479 if (i == e)
3480 UnorderedChains.push_back(Root);
3481 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003482 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other,
3483 &UnorderedChains[0], UnorderedChains.size()));
Chris Lattner718b5c22005-01-13 17:59:43 +00003484 }
3485
Chris Lattner7a60d912005-01-07 07:47:53 +00003486 // Lower the terminator after the copies are emitted.
3487 SDL.visit(*LLVMBB->getTerminator());
Chris Lattner4108bb02005-01-17 19:43:36 +00003488
Nate Begemaned728c12006-03-27 01:32:24 +00003489 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003490 // lowering, as well as any jump table information.
Nate Begemaned728c12006-03-27 01:32:24 +00003491 SwitchCases.clear();
3492 SwitchCases = SDL.SwitchCases;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003493 JT = SDL.JT;
Nate Begemaned728c12006-03-27 01:32:24 +00003494
Chris Lattner4108bb02005-01-17 19:43:36 +00003495 // Make sure the root of the DAG is up-to-date.
3496 DAG.setRoot(SDL.getRoot());
Chris Lattner7a60d912005-01-07 07:47:53 +00003497}
3498
Nate Begemaned728c12006-03-27 01:32:24 +00003499void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Chris Lattnerbcfebeb2005-10-10 16:47:10 +00003500 // Run the DAG combiner in pre-legalize mode.
3501 DAG.Combine(false);
Nate Begeman007c6502005-09-07 00:15:36 +00003502
Chris Lattner7a60d912005-01-07 07:47:53 +00003503 DEBUG(std::cerr << "Lowered selection DAG:\n");
3504 DEBUG(DAG.dump());
Nate Begemaned728c12006-03-27 01:32:24 +00003505
Chris Lattner7a60d912005-01-07 07:47:53 +00003506 // Second step, hack on the DAG until it only uses operations and types that
3507 // the target supports.
Chris Lattnerffcb0ae2005-01-23 04:36:26 +00003508 DAG.Legalize();
Nate Begemaned728c12006-03-27 01:32:24 +00003509
Chris Lattner7a60d912005-01-07 07:47:53 +00003510 DEBUG(std::cerr << "Legalized selection DAG:\n");
3511 DEBUG(DAG.dump());
Nate Begemaned728c12006-03-27 01:32:24 +00003512
Chris Lattnerbcfebeb2005-10-10 16:47:10 +00003513 // Run the DAG combiner in post-legalize mode.
3514 DAG.Combine(true);
Nate Begeman007c6502005-09-07 00:15:36 +00003515
Evan Cheng739a6a42006-01-21 02:32:06 +00003516 if (ViewISelDAGs) DAG.viewGraph();
Evan Cheng51ab4492006-04-28 02:09:19 +00003517
Chris Lattner5ca31d92005-03-30 01:10:47 +00003518 // Third, instruction select all of the operations to machine code, adding the
3519 // code to the MachineBasicBlock.
Chris Lattner7a60d912005-01-07 07:47:53 +00003520 InstructionSelectBasicBlock(DAG);
Nate Begemaned728c12006-03-27 01:32:24 +00003521
Chris Lattner7a60d912005-01-07 07:47:53 +00003522 DEBUG(std::cerr << "Selected machine code:\n");
3523 DEBUG(BB->dump());
Nate Begemaned728c12006-03-27 01:32:24 +00003524}
Chris Lattner7a60d912005-01-07 07:47:53 +00003525
Nate Begemaned728c12006-03-27 01:32:24 +00003526void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
3527 FunctionLoweringInfo &FuncInfo) {
3528 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
3529 {
3530 SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3531 CurDAG = &DAG;
3532
3533 // First step, lower LLVM code to some DAG. This DAG may use operations and
3534 // types that are not supported by the target.
3535 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
3536
3537 // Second step, emit the lowered DAG as machine code.
3538 CodeGenAndEmitDAG(DAG);
3539 }
3540
Chris Lattner5ca31d92005-03-30 01:10:47 +00003541 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner7a60d912005-01-07 07:47:53 +00003542 // PHI nodes in successors.
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003543 if (SwitchCases.empty() && JT.Reg == 0) {
Nate Begemaned728c12006-03-27 01:32:24 +00003544 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
3545 MachineInstr *PHI = PHINodesToUpdate[i].first;
3546 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3547 "This is not a machine PHI node that we are updating!");
3548 PHI->addRegOperand(PHINodesToUpdate[i].second);
3549 PHI->addMachineBasicBlockOperand(BB);
3550 }
3551 return;
Chris Lattner7a60d912005-01-07 07:47:53 +00003552 }
Nate Begemaned728c12006-03-27 01:32:24 +00003553
Nate Begeman866b4b42006-04-23 06:26:20 +00003554 // If the JumpTable record is filled in, then we need to emit a jump table.
3555 // Updating the PHI nodes is tricky in this case, since we need to determine
3556 // whether the PHI is a successor of the range check MBB or the jump table MBB
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003557 if (JT.Reg) {
3558 assert(SwitchCases.empty() && "Cannot have jump table and lowered switch");
3559 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3560 CurDAG = &SDAG;
3561 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
Nate Begeman866b4b42006-04-23 06:26:20 +00003562 MachineBasicBlock *RangeBB = BB;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003563 // Set the current basic block to the mbb we wish to insert the code into
3564 BB = JT.MBB;
3565 SDL.setCurrentBasicBlock(BB);
3566 // Emit the code
3567 SDL.visitJumpTable(JT);
3568 SDAG.setRoot(SDL.getRoot());
3569 CodeGenAndEmitDAG(SDAG);
3570 // Update PHI Nodes
3571 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3572 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3573 MachineBasicBlock *PHIBB = PHI->getParent();
3574 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3575 "This is not a machine PHI node that we are updating!");
Nate Begemandf488392006-05-03 03:48:02 +00003576 if (PHIBB == JT.Default) {
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003577 PHI->addRegOperand(PHINodesToUpdate[pi].second);
Nate Begemandf488392006-05-03 03:48:02 +00003578 PHI->addMachineBasicBlockOperand(RangeBB);
3579 }
3580 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
3581 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3582 PHI->addMachineBasicBlockOperand(BB);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003583 }
3584 }
3585 return;
3586 }
3587
Nate Begemaned728c12006-03-27 01:32:24 +00003588 // If we generated any switch lowering information, build and codegen any
3589 // additional DAGs necessary.
3590 for(unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
3591 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3592 CurDAG = &SDAG;
3593 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
3594 // Set the current basic block to the mbb we wish to insert the code into
3595 BB = SwitchCases[i].ThisBB;
3596 SDL.setCurrentBasicBlock(BB);
3597 // Emit the code
3598 SDL.visitSwitchCase(SwitchCases[i]);
3599 SDAG.setRoot(SDL.getRoot());
3600 CodeGenAndEmitDAG(SDAG);
3601 // Iterate over the phi nodes, if there is a phi node in a successor of this
3602 // block (for instance, the default block), then add a pair of operands to
3603 // the phi node for this block, as if we were coming from the original
3604 // BB before switch expansion.
3605 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3606 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3607 MachineBasicBlock *PHIBB = PHI->getParent();
3608 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3609 "This is not a machine PHI node that we are updating!");
3610 if (PHIBB == SwitchCases[i].LHSBB || PHIBB == SwitchCases[i].RHSBB) {
3611 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3612 PHI->addMachineBasicBlockOperand(BB);
3613 }
3614 }
Chris Lattner5ca31d92005-03-30 01:10:47 +00003615 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003616}
Evan Cheng739a6a42006-01-21 02:32:06 +00003617
Jim Laskey95eda5b2006-08-01 14:21:23 +00003618
Evan Cheng739a6a42006-01-21 02:32:06 +00003619//===----------------------------------------------------------------------===//
3620/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
3621/// target node in the graph.
3622void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
3623 if (ViewSchedDAGs) DAG.viewGraph();
Evan Chengc1e1d972006-01-23 07:01:07 +00003624
Jim Laskey29e635d2006-08-02 12:30:23 +00003625 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Jim Laskey95eda5b2006-08-01 14:21:23 +00003626
3627 if (!Ctor) {
Jim Laskey29e635d2006-08-02 12:30:23 +00003628 Ctor = ISHeuristic;
Jim Laskey17c67ef2006-08-01 19:14:14 +00003629 RegisterScheduler::setDefault(Ctor);
Evan Chengc1e1d972006-01-23 07:01:07 +00003630 }
Jim Laskey95eda5b2006-08-01 14:21:23 +00003631
Jim Laskey03593f72006-08-01 18:29:48 +00003632 ScheduleDAG *SL = Ctor(this, &DAG, BB);
Chris Lattnere23928c2006-01-21 19:12:11 +00003633 BB = SL->Run();
Evan Chengf9adce92006-02-04 06:49:00 +00003634 delete SL;
Evan Cheng739a6a42006-01-21 02:32:06 +00003635}
Chris Lattnerdcf785b2006-02-24 02:13:54 +00003636
Chris Lattner47639db2006-03-06 00:22:00 +00003637
Jim Laskey03593f72006-08-01 18:29:48 +00003638HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
3639 return new HazardRecognizer();
3640}
3641
3642
Chris Lattnerdcf785b2006-02-24 02:13:54 +00003643/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
3644/// by tblgen. Others should not call it.
3645void SelectionDAGISel::
3646SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
3647 std::vector<SDOperand> InOps;
3648 std::swap(InOps, Ops);
3649
3650 Ops.push_back(InOps[0]); // input chain.
3651 Ops.push_back(InOps[1]); // input asm string.
3652
Chris Lattnerdcf785b2006-02-24 02:13:54 +00003653 unsigned i = 2, e = InOps.size();
3654 if (InOps[e-1].getValueType() == MVT::Flag)
3655 --e; // Don't process a flag operand if it is here.
3656
3657 while (i != e) {
3658 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
3659 if ((Flags & 7) != 4 /*MEM*/) {
3660 // Just skip over this operand, copying the operands verbatim.
3661 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
3662 i += (Flags >> 3) + 1;
3663 } else {
3664 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
3665 // Otherwise, this is a memory operand. Ask the target to select it.
3666 std::vector<SDOperand> SelOps;
3667 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
3668 std::cerr << "Could not match memory address. Inline asm failure!\n";
3669 exit(1);
3670 }
3671
3672 // Add this to the output node.
3673 Ops.push_back(DAG.getConstant(4/*MEM*/ | (SelOps.size() << 3), MVT::i32));
3674 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
3675 i += 2;
3676 }
3677 }
3678
3679 // Add the flag input back if present.
3680 if (e != InOps.size())
3681 Ops.push_back(InOps.back());
3682}