blob: e88b371bafafb979b66d45fbf79516000f17e79f [file] [log] [blame]
Chris Lattner1c08c712005-01-07 07:47:53 +00001//===-- SelectionDAGISel.cpp - Implement the SelectionDAGISel class -------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner1c08c712005-01-07 07:47:53 +00003// The LLVM Compiler Infrastructure
4//
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 Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner1c08c712005-01-07 07:47:53 +00008//===----------------------------------------------------------------------===//
9//
10// This implements the SelectionDAGISel class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
15#include "llvm/CodeGen/SelectionDAGISel.h"
Evan Chenga9c20912006-01-21 02:32:06 +000016#include "llvm/CodeGen/ScheduleDAG.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000017#include "llvm/CallingConv.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000018#include "llvm/Constants.h"
19#include "llvm/DerivedTypes.h"
20#include "llvm/Function.h"
Chris Lattner36ce6912005-11-29 06:21:05 +000021#include "llvm/GlobalVariable.h"
Chris Lattnerce7518c2006-01-26 22:24:51 +000022#include "llvm/InlineAsm.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000023#include "llvm/Instructions.h"
24#include "llvm/Intrinsics.h"
Jim Laskey43970fe2006-03-23 18:06:46 +000025#include "llvm/IntrinsicInst.h"
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +000026#include "llvm/CodeGen/IntrinsicLowering.h"
Jim Laskeyb2efb852006-01-04 22:28:25 +000027#include "llvm/CodeGen/MachineDebugInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000028#include "llvm/CodeGen/MachineFunction.h"
29#include "llvm/CodeGen/MachineFrameInfo.h"
Nate Begeman37efe672006-04-22 18:53:45 +000030#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000031#include "llvm/CodeGen/MachineInstrBuilder.h"
32#include "llvm/CodeGen/SelectionDAG.h"
33#include "llvm/CodeGen/SSARegMap.h"
Chris Lattnerfa577022005-09-13 19:30:54 +000034#include "llvm/Target/MRegisterInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000035#include "llvm/Target/TargetData.h"
36#include "llvm/Target/TargetFrameInfo.h"
37#include "llvm/Target/TargetInstrInfo.h"
38#include "llvm/Target/TargetLowering.h"
39#include "llvm/Target/TargetMachine.h"
Chris Lattner495a0b52005-08-17 06:37:43 +000040#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattner7944d9d2005-01-12 03:41:21 +000041#include "llvm/Support/CommandLine.h"
Chris Lattner7c0104b2005-11-09 04:45:33 +000042#include "llvm/Support/MathExtras.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000043#include "llvm/Support/Debug.h"
44#include <map>
Chris Lattner4e4b5762006-02-01 18:59:47 +000045#include <set>
Chris Lattner1c08c712005-01-07 07:47:53 +000046#include <iostream>
Jeff Cohen7e881032006-02-24 02:52:40 +000047#include <algorithm>
Chris Lattner1c08c712005-01-07 07:47:53 +000048using namespace llvm;
49
Chris Lattnerda8abb02005-09-01 18:44:10 +000050#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000051static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000052ViewISelDAGs("view-isel-dags", cl::Hidden,
53 cl::desc("Pop up a window to show isel dags as they are selected"));
54static cl::opt<bool>
55ViewSchedDAGs("view-sched-dags", cl::Hidden,
56 cl::desc("Pop up a window to show sched dags as they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +000057#else
Chris Lattner5e46a192006-04-02 03:07:27 +000058static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0;
Chris Lattner7944d9d2005-01-12 03:41:21 +000059#endif
60
Evan Chengee00a1d2006-05-13 05:53:47 +000061// Scheduling heuristics
62enum SchedHeuristics {
63 defaultScheduling, // Let the target specify its preference.
64 noScheduling, // No scheduling, emit breadth first sequence.
65 simpleScheduling, // Two pass, min. critical path, max. utilization.
66 simpleNoItinScheduling, // Same as above exact using generic latency.
67 listSchedulingBURR, // Bottom-up reg reduction list scheduling.
68 listSchedulingTDRR, // Top-down reg reduction list scheduling.
69 listSchedulingTD // Top-down list scheduler.
70};
71
Evan Cheng4ef10862006-01-23 07:01:07 +000072namespace {
Evan Chengee00a1d2006-05-13 05:53:47 +000073 cl::opt<SchedHeuristics>
Evan Cheng4ef10862006-01-23 07:01:07 +000074 ISHeuristic(
75 "sched",
76 cl::desc("Choose scheduling style"),
Evan Chengee00a1d2006-05-13 05:53:47 +000077 cl::init(defaultScheduling),
Evan Cheng4ef10862006-01-23 07:01:07 +000078 cl::values(
Evan Chengee00a1d2006-05-13 05:53:47 +000079 clEnumValN(defaultScheduling, "default",
Evan Cheng3f239522006-01-25 09:12:57 +000080 "Target preferred scheduling style"),
Evan Chengee00a1d2006-05-13 05:53:47 +000081 clEnumValN(noScheduling, "none",
Jim Laskey17d52f72006-01-23 13:34:04 +000082 "No scheduling: breadth first sequencing"),
Evan Chengee00a1d2006-05-13 05:53:47 +000083 clEnumValN(simpleScheduling, "simple",
Evan Cheng4ef10862006-01-23 07:01:07 +000084 "Simple two pass scheduling: minimize critical path "
85 "and maximize processor utilization"),
Evan Chengee00a1d2006-05-13 05:53:47 +000086 clEnumValN(simpleNoItinScheduling, "simple-noitin",
Evan Cheng4ef10862006-01-23 07:01:07 +000087 "Simple two pass scheduling: Same as simple "
88 "except using generic latency"),
Evan Chengee00a1d2006-05-13 05:53:47 +000089 clEnumValN(listSchedulingBURR, "list-burr",
Evan Chenge165a782006-05-11 23:55:42 +000090 "Bottom-up register reduction list scheduling"),
Evan Chengee00a1d2006-05-13 05:53:47 +000091 clEnumValN(listSchedulingTDRR, "list-tdrr",
Evan Chenge165a782006-05-11 23:55:42 +000092 "Top-down register reduction list scheduling"),
Evan Chengee00a1d2006-05-13 05:53:47 +000093 clEnumValN(listSchedulingTD, "list-td",
Chris Lattner03fc53c2006-03-06 00:22:00 +000094 "Top-down list scheduler"),
Evan Cheng4ef10862006-01-23 07:01:07 +000095 clEnumValEnd));
96} // namespace
97
Chris Lattner864635a2006-02-22 22:37:12 +000098namespace {
99 /// RegsForValue - This struct represents the physical registers that a
100 /// particular value is assigned and the type information about the value.
101 /// This is needed because values can be promoted into larger registers and
102 /// expanded into multiple smaller registers than the value.
103 struct RegsForValue {
104 /// Regs - This list hold the register (for legal and promoted values)
105 /// or register set (for expanded values) that the value should be assigned
106 /// to.
107 std::vector<unsigned> Regs;
108
109 /// RegVT - The value type of each register.
110 ///
111 MVT::ValueType RegVT;
112
113 /// ValueVT - The value type of the LLVM value, which may be promoted from
114 /// RegVT or made from merging the two expanded parts.
115 MVT::ValueType ValueVT;
116
117 RegsForValue() : RegVT(MVT::Other), ValueVT(MVT::Other) {}
118
119 RegsForValue(unsigned Reg, MVT::ValueType regvt, MVT::ValueType valuevt)
120 : RegVT(regvt), ValueVT(valuevt) {
121 Regs.push_back(Reg);
122 }
123 RegsForValue(const std::vector<unsigned> &regs,
124 MVT::ValueType regvt, MVT::ValueType valuevt)
125 : Regs(regs), RegVT(regvt), ValueVT(valuevt) {
126 }
127
128 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
129 /// this value and returns the result as a ValueVT value. This uses
130 /// Chain/Flag as the input and updates them for the output Chain/Flag.
131 SDOperand getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000132 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000133
134 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
135 /// specified value into the registers specified by this object. This uses
136 /// Chain/Flag as the input and updates them for the output Chain/Flag.
137 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000138 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000139
140 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
141 /// operand list. This adds the code marker and includes the number of
142 /// values added into it.
143 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000144 std::vector<SDOperand> &Ops) const;
Chris Lattner864635a2006-02-22 22:37:12 +0000145 };
146}
Evan Cheng4ef10862006-01-23 07:01:07 +0000147
Chris Lattner1c08c712005-01-07 07:47:53 +0000148namespace llvm {
149 //===--------------------------------------------------------------------===//
150 /// FunctionLoweringInfo - This contains information that is global to a
151 /// function that is used when lowering a region of the function.
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000152 class FunctionLoweringInfo {
153 public:
Chris Lattner1c08c712005-01-07 07:47:53 +0000154 TargetLowering &TLI;
155 Function &Fn;
156 MachineFunction &MF;
157 SSARegMap *RegMap;
158
159 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
160
161 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
162 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
163
164 /// ValueMap - Since we emit code for the function a basic block at a time,
165 /// we must remember which virtual registers hold the values for
166 /// cross-basic-block values.
167 std::map<const Value*, unsigned> ValueMap;
168
169 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
170 /// the entry block. This allows the allocas to be efficiently referenced
171 /// anywhere in the function.
172 std::map<const AllocaInst*, int> StaticAllocaMap;
173
174 unsigned MakeReg(MVT::ValueType VT) {
175 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
176 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000177
Chris Lattner3c384492006-03-16 19:51:18 +0000178 unsigned CreateRegForValue(const Value *V);
179
Chris Lattner1c08c712005-01-07 07:47:53 +0000180 unsigned InitializeRegForValue(const Value *V) {
181 unsigned &R = ValueMap[V];
182 assert(R == 0 && "Already initialized this value register!");
183 return R = CreateRegForValue(V);
184 }
185 };
186}
187
188/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemanf15485a2006-03-27 01:32:24 +0000189/// PHI nodes or outside of the basic block that defines it, or used by a
190/// switch instruction, which may expand to multiple basic blocks.
Chris Lattner1c08c712005-01-07 07:47:53 +0000191static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
192 if (isa<PHINode>(I)) return true;
193 BasicBlock *BB = I->getParent();
194 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000195 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
196 isa<SwitchInst>(*UI))
Chris Lattner1c08c712005-01-07 07:47:53 +0000197 return true;
198 return false;
199}
200
Chris Lattnerbf209482005-10-30 19:42:35 +0000201/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemanf15485a2006-03-27 01:32:24 +0000202/// entry block, return true. This includes arguments used by switches, since
203/// the switch may expand into multiple basic blocks.
Chris Lattnerbf209482005-10-30 19:42:35 +0000204static bool isOnlyUsedInEntryBlock(Argument *A) {
205 BasicBlock *Entry = A->getParent()->begin();
206 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000207 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattnerbf209482005-10-30 19:42:35 +0000208 return false; // Use not in entry block.
209 return true;
210}
211
Chris Lattner1c08c712005-01-07 07:47:53 +0000212FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000213 Function &fn, MachineFunction &mf)
Chris Lattner1c08c712005-01-07 07:47:53 +0000214 : TLI(tli), Fn(fn), MF(mf), RegMap(MF.getSSARegMap()) {
215
Chris Lattnerbf209482005-10-30 19:42:35 +0000216 // Create a vreg for each argument register that is not dead and is used
217 // outside of the entry block for the function.
218 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
219 AI != E; ++AI)
220 if (!isOnlyUsedInEntryBlock(AI))
221 InitializeRegForValue(AI);
222
Chris Lattner1c08c712005-01-07 07:47:53 +0000223 // Initialize the mapping of values to registers. This is only set up for
224 // instruction values that are used outside of the block that defines
225 // them.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000226 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner1c08c712005-01-07 07:47:53 +0000227 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
228 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
229 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(AI->getArraySize())) {
230 const Type *Ty = AI->getAllocatedType();
Owen Andersona69571c2006-05-03 01:29:57 +0000231 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +0000232 unsigned Align =
Owen Andersona69571c2006-05-03 01:29:57 +0000233 std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +0000234 AI->getAlignment());
Chris Lattnera8217e32005-05-13 23:14:17 +0000235
236 // If the alignment of the value is smaller than the size of the value,
237 // and if the size of the value is particularly small (<= 8 bytes),
238 // round up to the size of the value for potentially better performance.
239 //
240 // FIXME: This could be made better with a preferred alignment hook in
241 // TargetData. It serves primarily to 8-byte align doubles for X86.
242 if (Align < TySize && TySize <= 8) Align = TySize;
Chris Lattner2dfa8192005-10-18 22:11:42 +0000243 TySize *= CUI->getValue(); // Get total allocated size.
Chris Lattnerd222f6a2005-10-18 22:14:06 +0000244 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner1c08c712005-01-07 07:47:53 +0000245 StaticAllocaMap[AI] =
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000246 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
Chris Lattner1c08c712005-01-07 07:47:53 +0000247 }
248
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000249 for (; BB != EB; ++BB)
250 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +0000251 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
252 if (!isa<AllocaInst>(I) ||
253 !StaticAllocaMap.count(cast<AllocaInst>(I)))
254 InitializeRegForValue(I);
255
256 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
257 // also creates the initial PHI MachineInstrs, though none of the input
258 // operands are populated.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000259 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000260 MachineBasicBlock *MBB = new MachineBasicBlock(BB);
261 MBBMap[BB] = MBB;
262 MF.getBasicBlockList().push_back(MBB);
263
264 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
265 // appropriate.
266 PHINode *PN;
267 for (BasicBlock::iterator I = BB->begin();
Chris Lattnerf44fd882005-01-07 21:34:19 +0000268 (PN = dyn_cast<PHINode>(I)); ++I)
269 if (!PN->use_empty()) {
Chris Lattner70c2a612006-03-31 02:06:56 +0000270 MVT::ValueType VT = TLI.getValueType(PN->getType());
271 unsigned NumElements;
272 if (VT != MVT::Vector)
273 NumElements = TLI.getNumElements(VT);
274 else {
275 MVT::ValueType VT1,VT2;
276 NumElements =
277 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
278 VT1, VT2);
279 }
Chris Lattnerf44fd882005-01-07 21:34:19 +0000280 unsigned PHIReg = ValueMap[PN];
281 assert(PHIReg &&"PHI node does not have an assigned virtual register!");
282 for (unsigned i = 0; i != NumElements; ++i)
283 BuildMI(MBB, TargetInstrInfo::PHI, PN->getNumOperands(), PHIReg+i);
284 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000285 }
286}
287
Chris Lattner3c384492006-03-16 19:51:18 +0000288/// CreateRegForValue - Allocate the appropriate number of virtual registers of
289/// the correctly promoted or expanded types. Assign these registers
290/// consecutive vreg numbers and return the first assigned number.
291unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
292 MVT::ValueType VT = TLI.getValueType(V->getType());
293
294 // The number of multiples of registers that we need, to, e.g., split up
295 // a <2 x int64> -> 4 x i32 registers.
296 unsigned NumVectorRegs = 1;
297
298 // If this is a packed type, figure out what type it will decompose into
299 // and how many of the elements it will use.
300 if (VT == MVT::Vector) {
301 const PackedType *PTy = cast<PackedType>(V->getType());
302 unsigned NumElts = PTy->getNumElements();
303 MVT::ValueType EltTy = TLI.getValueType(PTy->getElementType());
304
305 // Divide the input until we get to a supported size. This will always
306 // end with a scalar if the target doesn't support vectors.
307 while (NumElts > 1 && !TLI.isTypeLegal(getVectorType(EltTy, NumElts))) {
308 NumElts >>= 1;
309 NumVectorRegs <<= 1;
310 }
Chris Lattner6cb70042006-03-16 23:05:19 +0000311 if (NumElts == 1)
312 VT = EltTy;
313 else
314 VT = getVectorType(EltTy, NumElts);
Chris Lattner3c384492006-03-16 19:51:18 +0000315 }
316
317 // The common case is that we will only create one register for this
318 // value. If we have that case, create and return the virtual register.
319 unsigned NV = TLI.getNumElements(VT);
320 if (NV == 1) {
321 // If we are promoting this value, pick the next largest supported type.
322 MVT::ValueType PromotedType = TLI.getTypeToTransformTo(VT);
323 unsigned Reg = MakeReg(PromotedType);
324 // If this is a vector of supported or promoted types (e.g. 4 x i16),
325 // create all of the registers.
326 for (unsigned i = 1; i != NumVectorRegs; ++i)
327 MakeReg(PromotedType);
328 return Reg;
329 }
330
331 // If this value is represented with multiple target registers, make sure
332 // to create enough consecutive registers of the right (smaller) type.
333 unsigned NT = VT-1; // Find the type to use.
334 while (TLI.getNumElements((MVT::ValueType)NT) != 1)
335 --NT;
336
337 unsigned R = MakeReg((MVT::ValueType)NT);
338 for (unsigned i = 1; i != NV*NumVectorRegs; ++i)
339 MakeReg((MVT::ValueType)NT);
340 return R;
341}
Chris Lattner1c08c712005-01-07 07:47:53 +0000342
343//===----------------------------------------------------------------------===//
344/// SelectionDAGLowering - This is the common target-independent lowering
345/// implementation that is parameterized by a TargetLowering object.
346/// Also, targets can overload any lowering method.
347///
348namespace llvm {
349class SelectionDAGLowering {
350 MachineBasicBlock *CurMBB;
351
352 std::map<const Value*, SDOperand> NodeMap;
353
Chris Lattnerd3948112005-01-17 22:19:26 +0000354 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
355 /// them up and then emit token factor nodes when possible. This allows us to
356 /// get simple disambiguation between loads without worrying about alias
357 /// analysis.
358 std::vector<SDOperand> PendingLoads;
359
Nate Begemanf15485a2006-03-27 01:32:24 +0000360 /// Case - A pair of values to record the Value for a switch case, and the
361 /// case's target basic block.
362 typedef std::pair<Constant*, MachineBasicBlock*> Case;
363 typedef std::vector<Case>::iterator CaseItr;
364 typedef std::pair<CaseItr, CaseItr> CaseRange;
365
366 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
367 /// of conditional branches.
368 struct CaseRec {
369 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
370 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
371
372 /// CaseBB - The MBB in which to emit the compare and branch
373 MachineBasicBlock *CaseBB;
374 /// LT, GE - If nonzero, we know the current case value must be less-than or
375 /// greater-than-or-equal-to these Constants.
376 Constant *LT;
377 Constant *GE;
378 /// Range - A pair of iterators representing the range of case values to be
379 /// processed at this point in the binary search tree.
380 CaseRange Range;
381 };
382
383 /// The comparison function for sorting Case values.
384 struct CaseCmp {
385 bool operator () (const Case& C1, const Case& C2) {
386 if (const ConstantUInt* U1 = dyn_cast<const ConstantUInt>(C1.first))
387 return U1->getValue() < cast<const ConstantUInt>(C2.first)->getValue();
388
389 const ConstantSInt* S1 = dyn_cast<const ConstantSInt>(C1.first);
390 return S1->getValue() < cast<const ConstantSInt>(C2.first)->getValue();
391 }
392 };
393
Chris Lattner1c08c712005-01-07 07:47:53 +0000394public:
395 // TLI - This is information that describes the available target features we
396 // need for lowering. This indicates when operations are unavailable,
397 // implemented with a libcall, etc.
398 TargetLowering &TLI;
399 SelectionDAG &DAG;
Owen Andersona69571c2006-05-03 01:29:57 +0000400 const TargetData *TD;
Chris Lattner1c08c712005-01-07 07:47:53 +0000401
Nate Begemanf15485a2006-03-27 01:32:24 +0000402 /// SwitchCases - Vector of CaseBlock structures used to communicate
403 /// SwitchInst code generation information.
404 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Nate Begeman37efe672006-04-22 18:53:45 +0000405 SelectionDAGISel::JumpTable JT;
Nate Begemanf15485a2006-03-27 01:32:24 +0000406
Chris Lattner1c08c712005-01-07 07:47:53 +0000407 /// FuncInfo - Information about the function as a whole.
408 ///
409 FunctionLoweringInfo &FuncInfo;
410
411 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000412 FunctionLoweringInfo &funcinfo)
Chris Lattner1c08c712005-01-07 07:47:53 +0000413 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()),
Nate Begeman9453eea2006-04-23 06:26:20 +0000414 JT(0,0,0,0), FuncInfo(funcinfo) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000415 }
416
Chris Lattnera651cf62005-01-17 19:43:36 +0000417 /// getRoot - Return the current virtual root of the Selection DAG.
418 ///
419 SDOperand getRoot() {
Chris Lattnerd3948112005-01-17 22:19:26 +0000420 if (PendingLoads.empty())
421 return DAG.getRoot();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000422
Chris Lattnerd3948112005-01-17 22:19:26 +0000423 if (PendingLoads.size() == 1) {
424 SDOperand Root = PendingLoads[0];
425 DAG.setRoot(Root);
426 PendingLoads.clear();
427 return Root;
428 }
429
430 // Otherwise, we have to make a token factor node.
431 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other, PendingLoads);
432 PendingLoads.clear();
433 DAG.setRoot(Root);
434 return Root;
Chris Lattnera651cf62005-01-17 19:43:36 +0000435 }
436
Chris Lattner1c08c712005-01-07 07:47:53 +0000437 void visit(Instruction &I) { visit(I.getOpcode(), I); }
438
439 void visit(unsigned Opcode, User &I) {
440 switch (Opcode) {
441 default: assert(0 && "Unknown instruction type encountered!");
442 abort();
443 // Build the switch statement using the Instruction.def file.
444#define HANDLE_INST(NUM, OPCODE, CLASS) \
445 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
446#include "llvm/Instruction.def"
447 }
448 }
449
450 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
451
Chris Lattner28b5b1c2006-03-15 22:19:46 +0000452 SDOperand getLoadFrom(const Type *Ty, SDOperand Ptr,
453 SDOperand SrcValue, SDOperand Root,
454 bool isVolatile);
Chris Lattner1c08c712005-01-07 07:47:53 +0000455
456 SDOperand getIntPtrConstant(uint64_t Val) {
457 return DAG.getConstant(Val, TLI.getPointerTy());
458 }
459
Chris Lattner199862b2006-03-16 19:57:50 +0000460 SDOperand getValue(const Value *V);
Chris Lattner1c08c712005-01-07 07:47:53 +0000461
462 const SDOperand &setValue(const Value *V, SDOperand NewN) {
463 SDOperand &N = NodeMap[V];
464 assert(N.Val == 0 && "Already set a value for this node!");
465 return N = NewN;
466 }
Chris Lattner4e4b5762006-02-01 18:59:47 +0000467
Chris Lattner864635a2006-02-22 22:37:12 +0000468 RegsForValue GetRegistersForValue(const std::string &ConstrCode,
469 MVT::ValueType VT,
470 bool OutReg, bool InReg,
471 std::set<unsigned> &OutputRegs,
472 std::set<unsigned> &InputRegs);
Nate Begemanf15485a2006-03-27 01:32:24 +0000473
Chris Lattner1c08c712005-01-07 07:47:53 +0000474 // Terminator instructions.
475 void visitRet(ReturnInst &I);
476 void visitBr(BranchInst &I);
Nate Begemanf15485a2006-03-27 01:32:24 +0000477 void visitSwitch(SwitchInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000478 void visitUnreachable(UnreachableInst &I) { /* noop */ }
479
Nate Begemanf15485a2006-03-27 01:32:24 +0000480 // Helper for visitSwitch
481 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Nate Begeman37efe672006-04-22 18:53:45 +0000482 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Nate Begemanf15485a2006-03-27 01:32:24 +0000483
Chris Lattner1c08c712005-01-07 07:47:53 +0000484 // These all get lowered before this pass.
Chris Lattner1c08c712005-01-07 07:47:53 +0000485 void visitInvoke(InvokeInst &I) { assert(0 && "TODO"); }
486 void visitUnwind(UnwindInst &I) { assert(0 && "TODO"); }
487
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000488 void visitBinary(User &I, unsigned IntOp, unsigned FPOp, unsigned VecOp);
Nate Begemane21ea612005-11-18 07:42:56 +0000489 void visitShift(User &I, unsigned Opcode);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000490 void visitAdd(User &I) {
491 visitBinary(I, ISD::ADD, ISD::FADD, ISD::VADD);
Chris Lattner01b3d732005-09-28 22:28:18 +0000492 }
Chris Lattnerb9fccc42005-04-02 05:04:50 +0000493 void visitSub(User &I);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000494 void visitMul(User &I) {
495 visitBinary(I, ISD::MUL, ISD::FMUL, ISD::VMUL);
Chris Lattner01b3d732005-09-28 22:28:18 +0000496 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000497 void visitDiv(User &I) {
Chris Lattner01b3d732005-09-28 22:28:18 +0000498 const Type *Ty = I.getType();
Evan Cheng3e1ce5a2006-03-03 07:01:07 +0000499 visitBinary(I,
500 Ty->isSigned() ? ISD::SDIV : ISD::UDIV, ISD::FDIV,
501 Ty->isSigned() ? ISD::VSDIV : ISD::VUDIV);
Chris Lattner1c08c712005-01-07 07:47:53 +0000502 }
503 void visitRem(User &I) {
Chris Lattner01b3d732005-09-28 22:28:18 +0000504 const Type *Ty = I.getType();
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000505 visitBinary(I, Ty->isSigned() ? ISD::SREM : ISD::UREM, ISD::FREM, 0);
Chris Lattner1c08c712005-01-07 07:47:53 +0000506 }
Evan Cheng3e1ce5a2006-03-03 07:01:07 +0000507 void visitAnd(User &I) { visitBinary(I, ISD::AND, 0, ISD::VAND); }
508 void visitOr (User &I) { visitBinary(I, ISD::OR, 0, ISD::VOR); }
509 void visitXor(User &I) { visitBinary(I, ISD::XOR, 0, ISD::VXOR); }
Nate Begemane21ea612005-11-18 07:42:56 +0000510 void visitShl(User &I) { visitShift(I, ISD::SHL); }
511 void visitShr(User &I) {
512 visitShift(I, I.getType()->isUnsigned() ? ISD::SRL : ISD::SRA);
Chris Lattner1c08c712005-01-07 07:47:53 +0000513 }
514
515 void visitSetCC(User &I, ISD::CondCode SignedOpc, ISD::CondCode UnsignedOpc);
516 void visitSetEQ(User &I) { visitSetCC(I, ISD::SETEQ, ISD::SETEQ); }
517 void visitSetNE(User &I) { visitSetCC(I, ISD::SETNE, ISD::SETNE); }
518 void visitSetLE(User &I) { visitSetCC(I, ISD::SETLE, ISD::SETULE); }
519 void visitSetGE(User &I) { visitSetCC(I, ISD::SETGE, ISD::SETUGE); }
520 void visitSetLT(User &I) { visitSetCC(I, ISD::SETLT, ISD::SETULT); }
521 void visitSetGT(User &I) { visitSetCC(I, ISD::SETGT, ISD::SETUGT); }
522
Chris Lattner2bbd8102006-03-29 00:11:43 +0000523 void visitExtractElement(User &I);
524 void visitInsertElement(User &I);
Chris Lattner3e104b12006-04-08 04:15:24 +0000525 void visitShuffleVector(User &I);
Chris Lattnerc7029802006-03-18 01:44:44 +0000526
Chris Lattner1c08c712005-01-07 07:47:53 +0000527 void visitGetElementPtr(User &I);
528 void visitCast(User &I);
529 void visitSelect(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000530
531 void visitMalloc(MallocInst &I);
532 void visitFree(FreeInst &I);
533 void visitAlloca(AllocaInst &I);
534 void visitLoad(LoadInst &I);
535 void visitStore(StoreInst &I);
536 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
537 void visitCall(CallInst &I);
Chris Lattnerce7518c2006-01-26 22:24:51 +0000538 void visitInlineAsm(CallInst &I);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +0000539 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +0000540 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner1c08c712005-01-07 07:47:53 +0000541
Chris Lattner1c08c712005-01-07 07:47:53 +0000542 void visitVAStart(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000543 void visitVAArg(VAArgInst &I);
544 void visitVAEnd(CallInst &I);
545 void visitVACopy(CallInst &I);
Chris Lattner39ae3622005-01-09 00:00:49 +0000546 void visitFrameReturnAddress(CallInst &I, bool isFrameAddress);
Chris Lattner1c08c712005-01-07 07:47:53 +0000547
Chris Lattner7041ee32005-01-11 05:56:49 +0000548 void visitMemIntrinsic(CallInst &I, unsigned Op);
Chris Lattner1c08c712005-01-07 07:47:53 +0000549
550 void visitUserOp1(Instruction &I) {
551 assert(0 && "UserOp1 should not exist at instruction selection time!");
552 abort();
553 }
554 void visitUserOp2(Instruction &I) {
555 assert(0 && "UserOp2 should not exist at instruction selection time!");
556 abort();
557 }
558};
559} // end namespace llvm
560
Chris Lattner199862b2006-03-16 19:57:50 +0000561SDOperand SelectionDAGLowering::getValue(const Value *V) {
562 SDOperand &N = NodeMap[V];
563 if (N.Val) return N;
564
565 const Type *VTy = V->getType();
566 MVT::ValueType VT = TLI.getValueType(VTy);
567 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
568 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
569 visit(CE->getOpcode(), *CE);
570 assert(N.Val && "visit didn't populate the ValueMap!");
571 return N;
572 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) {
573 return N = DAG.getGlobalAddress(GV, VT);
574 } else if (isa<ConstantPointerNull>(C)) {
575 return N = DAG.getConstant(0, TLI.getPointerTy());
576 } else if (isa<UndefValue>(C)) {
Chris Lattner23d564c2006-03-19 00:20:20 +0000577 if (!isa<PackedType>(VTy))
578 return N = DAG.getNode(ISD::UNDEF, VT);
579
Chris Lattnerb2827b02006-03-19 00:52:58 +0000580 // Create a VBUILD_VECTOR of undef nodes.
Chris Lattner23d564c2006-03-19 00:20:20 +0000581 const PackedType *PTy = cast<PackedType>(VTy);
582 unsigned NumElements = PTy->getNumElements();
583 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
584
585 std::vector<SDOperand> Ops;
586 Ops.assign(NumElements, DAG.getNode(ISD::UNDEF, PVT));
587
588 // Create a VConstant node with generic Vector type.
589 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
590 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerb2827b02006-03-19 00:52:58 +0000591 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner199862b2006-03-16 19:57:50 +0000592 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
593 return N = DAG.getConstantFP(CFP->getValue(), VT);
594 } else if (const PackedType *PTy = dyn_cast<PackedType>(VTy)) {
595 unsigned NumElements = PTy->getNumElements();
596 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattner199862b2006-03-16 19:57:50 +0000597
598 // Now that we know the number and type of the elements, push a
599 // Constant or ConstantFP node onto the ops list for each element of
600 // the packed constant.
601 std::vector<SDOperand> Ops;
602 if (ConstantPacked *CP = dyn_cast<ConstantPacked>(C)) {
Chris Lattner2bbd8102006-03-29 00:11:43 +0000603 for (unsigned i = 0; i != NumElements; ++i)
604 Ops.push_back(getValue(CP->getOperand(i)));
Chris Lattner199862b2006-03-16 19:57:50 +0000605 } else {
606 assert(isa<ConstantAggregateZero>(C) && "Unknown packed constant!");
607 SDOperand Op;
608 if (MVT::isFloatingPoint(PVT))
609 Op = DAG.getConstantFP(0, PVT);
610 else
611 Op = DAG.getConstant(0, PVT);
612 Ops.assign(NumElements, Op);
613 }
614
Chris Lattnerb2827b02006-03-19 00:52:58 +0000615 // Create a VBUILD_VECTOR node with generic Vector type.
Chris Lattner23d564c2006-03-19 00:20:20 +0000616 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
617 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerb2827b02006-03-19 00:52:58 +0000618 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner199862b2006-03-16 19:57:50 +0000619 } else {
620 // Canonicalize all constant ints to be unsigned.
621 return N = DAG.getConstant(cast<ConstantIntegral>(C)->getRawValue(),VT);
622 }
623 }
624
625 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
626 std::map<const AllocaInst*, int>::iterator SI =
627 FuncInfo.StaticAllocaMap.find(AI);
628 if (SI != FuncInfo.StaticAllocaMap.end())
629 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
630 }
631
632 std::map<const Value*, unsigned>::const_iterator VMI =
633 FuncInfo.ValueMap.find(V);
634 assert(VMI != FuncInfo.ValueMap.end() && "Value not in map!");
635
636 unsigned InReg = VMI->second;
637
638 // If this type is not legal, make it so now.
Chris Lattner70c2a612006-03-31 02:06:56 +0000639 if (VT != MVT::Vector) {
640 MVT::ValueType DestVT = TLI.getTypeToTransformTo(VT);
Chris Lattner199862b2006-03-16 19:57:50 +0000641
Chris Lattner70c2a612006-03-31 02:06:56 +0000642 N = DAG.getCopyFromReg(DAG.getEntryNode(), InReg, DestVT);
643 if (DestVT < VT) {
644 // Source must be expanded. This input value is actually coming from the
645 // register pair VMI->second and VMI->second+1.
646 N = DAG.getNode(ISD::BUILD_PAIR, VT, N,
647 DAG.getCopyFromReg(DAG.getEntryNode(), InReg+1, DestVT));
648 } else if (DestVT > VT) { // Promotion case
Chris Lattner199862b2006-03-16 19:57:50 +0000649 if (MVT::isFloatingPoint(VT))
650 N = DAG.getNode(ISD::FP_ROUND, VT, N);
651 else
652 N = DAG.getNode(ISD::TRUNCATE, VT, N);
653 }
Chris Lattner70c2a612006-03-31 02:06:56 +0000654 } else {
655 // Otherwise, if this is a vector, make it available as a generic vector
656 // here.
657 MVT::ValueType PTyElementVT, PTyLegalElementVT;
Chris Lattner2e2ef952006-04-05 06:54:42 +0000658 const PackedType *PTy = cast<PackedType>(VTy);
659 unsigned NE = TLI.getPackedTypeBreakdown(PTy, PTyElementVT,
Chris Lattner70c2a612006-03-31 02:06:56 +0000660 PTyLegalElementVT);
661
662 // Build a VBUILD_VECTOR with the input registers.
663 std::vector<SDOperand> Ops;
664 if (PTyElementVT == PTyLegalElementVT) {
665 // If the value types are legal, just VBUILD the CopyFromReg nodes.
666 for (unsigned i = 0; i != NE; ++i)
667 Ops.push_back(DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
668 PTyElementVT));
669 } else if (PTyElementVT < PTyLegalElementVT) {
670 // If the register was promoted, use TRUNCATE of FP_ROUND as appropriate.
671 for (unsigned i = 0; i != NE; ++i) {
672 SDOperand Op = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
673 PTyElementVT);
674 if (MVT::isFloatingPoint(PTyElementVT))
675 Op = DAG.getNode(ISD::FP_ROUND, PTyElementVT, Op);
676 else
677 Op = DAG.getNode(ISD::TRUNCATE, PTyElementVT, Op);
678 Ops.push_back(Op);
679 }
680 } else {
681 // If the register was expanded, use BUILD_PAIR.
682 assert((NE & 1) == 0 && "Must expand into a multiple of 2 elements!");
683 for (unsigned i = 0; i != NE/2; ++i) {
684 SDOperand Op0 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
685 PTyElementVT);
686 SDOperand Op1 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
687 PTyElementVT);
688 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Op0, Op1));
689 }
690 }
691
692 Ops.push_back(DAG.getConstant(NE, MVT::i32));
693 Ops.push_back(DAG.getValueType(PTyLegalElementVT));
694 N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner2e2ef952006-04-05 06:54:42 +0000695
696 // Finally, use a VBIT_CONVERT to make this available as the appropriate
697 // vector type.
698 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
699 DAG.getConstant(PTy->getNumElements(),
700 MVT::i32),
701 DAG.getValueType(TLI.getValueType(PTy->getElementType())));
Chris Lattner199862b2006-03-16 19:57:50 +0000702 }
703
704 return N;
705}
706
707
Chris Lattner1c08c712005-01-07 07:47:53 +0000708void SelectionDAGLowering::visitRet(ReturnInst &I) {
709 if (I.getNumOperands() == 0) {
Chris Lattnera651cf62005-01-17 19:43:36 +0000710 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getRoot()));
Chris Lattner1c08c712005-01-07 07:47:53 +0000711 return;
712 }
Nate Begemanee625572006-01-27 21:09:22 +0000713 std::vector<SDOperand> NewValues;
714 NewValues.push_back(getRoot());
715 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
716 SDOperand RetOp = getValue(I.getOperand(i));
717
718 // If this is an integer return value, we need to promote it ourselves to
719 // the full width of a register, since LegalizeOp will use ANY_EXTEND rather
720 // than sign/zero.
721 if (MVT::isInteger(RetOp.getValueType()) &&
722 RetOp.getValueType() < MVT::i64) {
723 MVT::ValueType TmpVT;
724 if (TLI.getTypeAction(MVT::i32) == TargetLowering::Promote)
725 TmpVT = TLI.getTypeToTransformTo(MVT::i32);
726 else
727 TmpVT = MVT::i32;
Chris Lattner1c08c712005-01-07 07:47:53 +0000728
Nate Begemanee625572006-01-27 21:09:22 +0000729 if (I.getOperand(i)->getType()->isSigned())
730 RetOp = DAG.getNode(ISD::SIGN_EXTEND, TmpVT, RetOp);
731 else
732 RetOp = DAG.getNode(ISD::ZERO_EXTEND, TmpVT, RetOp);
733 }
734 NewValues.push_back(RetOp);
Chris Lattner1c08c712005-01-07 07:47:53 +0000735 }
Nate Begemanee625572006-01-27 21:09:22 +0000736 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, NewValues));
Chris Lattner1c08c712005-01-07 07:47:53 +0000737}
738
739void SelectionDAGLowering::visitBr(BranchInst &I) {
740 // Update machine-CFG edges.
741 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Nate Begemanf15485a2006-03-27 01:32:24 +0000742 CurMBB->addSuccessor(Succ0MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000743
744 // Figure out which block is immediately after the current one.
745 MachineBasicBlock *NextBlock = 0;
746 MachineFunction::iterator BBI = CurMBB;
747 if (++BBI != CurMBB->getParent()->end())
748 NextBlock = BBI;
749
750 if (I.isUnconditional()) {
751 // If this is not a fall-through branch, emit the branch.
752 if (Succ0MBB != NextBlock)
Chris Lattnera651cf62005-01-17 19:43:36 +0000753 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000754 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000755 } else {
756 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Nate Begemanf15485a2006-03-27 01:32:24 +0000757 CurMBB->addSuccessor(Succ1MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000758
759 SDOperand Cond = getValue(I.getCondition());
Chris Lattner1c08c712005-01-07 07:47:53 +0000760 if (Succ1MBB == NextBlock) {
761 // If the condition is false, fall through. This means we should branch
762 // if the condition is true to Succ #0.
Chris Lattnera651cf62005-01-17 19:43:36 +0000763 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000764 Cond, DAG.getBasicBlock(Succ0MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000765 } else if (Succ0MBB == NextBlock) {
766 // If the condition is true, fall through. This means we should branch if
767 // the condition is false to Succ #1. Invert the condition first.
768 SDOperand True = DAG.getConstant(1, Cond.getValueType());
769 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
Chris Lattnera651cf62005-01-17 19:43:36 +0000770 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000771 Cond, DAG.getBasicBlock(Succ1MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000772 } else {
Chris Lattnere7ccd4a2005-04-09 03:30:29 +0000773 std::vector<SDOperand> Ops;
774 Ops.push_back(getRoot());
Evan Cheng298ebf22006-02-16 08:27:56 +0000775 // If the false case is the current basic block, then this is a self
776 // loop. We do not want to emit "Loop: ... brcond Out; br Loop", as it
777 // adds an extra instruction in the loop. Instead, invert the
778 // condition and emit "Loop: ... br!cond Loop; br Out.
779 if (CurMBB == Succ1MBB) {
780 std::swap(Succ0MBB, Succ1MBB);
781 SDOperand True = DAG.getConstant(1, Cond.getValueType());
782 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
783 }
Nate Begeman81e80972006-03-17 01:40:33 +0000784 SDOperand True = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
785 DAG.getBasicBlock(Succ0MBB));
786 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, True,
787 DAG.getBasicBlock(Succ1MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000788 }
789 }
790}
791
Nate Begemanf15485a2006-03-27 01:32:24 +0000792/// visitSwitchCase - Emits the necessary code to represent a single node in
793/// the binary search tree resulting from lowering a switch instruction.
794void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
795 SDOperand SwitchOp = getValue(CB.SwitchV);
796 SDOperand CaseOp = getValue(CB.CaseC);
797 SDOperand Cond = DAG.getSetCC(MVT::i1, SwitchOp, CaseOp, CB.CC);
798
799 // Set NextBlock to be the MBB immediately after the current one, if any.
800 // This is used to avoid emitting unnecessary branches to the next block.
801 MachineBasicBlock *NextBlock = 0;
802 MachineFunction::iterator BBI = CurMBB;
803 if (++BBI != CurMBB->getParent()->end())
804 NextBlock = BBI;
805
806 // If the lhs block is the next block, invert the condition so that we can
807 // fall through to the lhs instead of the rhs block.
808 if (CB.LHSBB == NextBlock) {
809 std::swap(CB.LHSBB, CB.RHSBB);
810 SDOperand True = DAG.getConstant(1, Cond.getValueType());
811 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
812 }
813 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
814 DAG.getBasicBlock(CB.LHSBB));
815 if (CB.RHSBB == NextBlock)
816 DAG.setRoot(BrCond);
817 else
818 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
819 DAG.getBasicBlock(CB.RHSBB)));
820 // Update successor info
821 CurMBB->addSuccessor(CB.LHSBB);
822 CurMBB->addSuccessor(CB.RHSBB);
823}
824
Nate Begeman37efe672006-04-22 18:53:45 +0000825/// visitSwitchCase - Emits the necessary code to represent a single node in
826/// the binary search tree resulting from lowering a switch instruction.
827void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
828 // FIXME: Need to emit different code for PIC vs. Non-PIC, specifically,
829 // we need to add the address of the jump table to the value loaded, since
830 // the entries in the jump table will be differences rather than absolute
831 // addresses.
832
833 // Emit the code for the jump table
834 MVT::ValueType PTy = TLI.getPointerTy();
835 unsigned PTyBytes = MVT::getSizeInBits(PTy)/8;
836 SDOperand Copy = DAG.getCopyFromReg(getRoot(), JT.Reg, PTy);
837 SDOperand IDX = DAG.getNode(ISD::MUL, PTy, Copy,
838 DAG.getConstant(PTyBytes, PTy));
839 SDOperand ADD = DAG.getNode(ISD::ADD, PTy, IDX, DAG.getJumpTable(JT.JTI,PTy));
840 SDOperand LD = DAG.getLoad(PTy, Copy.getValue(1), ADD, DAG.getSrcValue(0));
841 DAG.setRoot(DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD));
Nate Begeman37efe672006-04-22 18:53:45 +0000842}
843
Nate Begemanf15485a2006-03-27 01:32:24 +0000844void SelectionDAGLowering::visitSwitch(SwitchInst &I) {
845 // Figure out which block is immediately after the current one.
846 MachineBasicBlock *NextBlock = 0;
847 MachineFunction::iterator BBI = CurMBB;
848 if (++BBI != CurMBB->getParent()->end())
849 NextBlock = BBI;
850
851 // If there is only the default destination, branch to it if it is not the
852 // next basic block. Otherwise, just fall through.
853 if (I.getNumOperands() == 2) {
854 // Update machine-CFG edges.
855 MachineBasicBlock *DefaultMBB = FuncInfo.MBBMap[I.getDefaultDest()];
856 // If this is not a fall-through branch, emit the branch.
857 if (DefaultMBB != NextBlock)
858 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
859 DAG.getBasicBlock(DefaultMBB)));
860 return;
861 }
862
863 // If there are any non-default case statements, create a vector of Cases
864 // representing each one, and sort the vector so that we can efficiently
865 // create a binary search tree from them.
866 std::vector<Case> Cases;
867 for (unsigned i = 1; i < I.getNumSuccessors(); ++i) {
868 MachineBasicBlock *SMBB = FuncInfo.MBBMap[I.getSuccessor(i)];
869 Cases.push_back(Case(I.getSuccessorValue(i), SMBB));
870 }
871 std::sort(Cases.begin(), Cases.end(), CaseCmp());
872
873 // Get the Value to be switched on and default basic blocks, which will be
874 // inserted into CaseBlock records, representing basic blocks in the binary
875 // search tree.
876 Value *SV = I.getOperand(0);
877 MachineBasicBlock *Default = FuncInfo.MBBMap[I.getDefaultDest()];
Nate Begeman37efe672006-04-22 18:53:45 +0000878
879 // Get the MachineFunction which holds the current MBB. This is used during
880 // emission of jump tables, and when inserting any additional MBBs necessary
881 // to represent the switch.
Nate Begemanf15485a2006-03-27 01:32:24 +0000882 MachineFunction *CurMF = CurMBB->getParent();
883 const BasicBlock *LLVMBB = CurMBB->getBasicBlock();
Nate Begeman37efe672006-04-22 18:53:45 +0000884 Reloc::Model Relocs = TLI.getTargetMachine().getRelocationModel();
885
Nate Begeman17c275f2006-05-08 16:51:36 +0000886 // If the switch has more than 5 blocks, and at least 31.25% dense, and the
887 // target supports indirect branches, then emit a jump table rather than
888 // lowering the switch to a binary tree of conditional branches.
Nate Begeman37efe672006-04-22 18:53:45 +0000889 // FIXME: Make this work with PIC code
Nate Begeman9453eea2006-04-23 06:26:20 +0000890 if (TLI.isOperationLegal(ISD::BRIND, TLI.getPointerTy()) &&
Nate Begeman37efe672006-04-22 18:53:45 +0000891 (Relocs == Reloc::Static || Relocs == Reloc::DynamicNoPIC) &&
Nate Begemanf4360a42006-05-03 03:48:02 +0000892 Cases.size() > 5) {
Nate Begeman37efe672006-04-22 18:53:45 +0000893 uint64_t First = cast<ConstantIntegral>(Cases.front().first)->getRawValue();
894 uint64_t Last = cast<ConstantIntegral>(Cases.back().first)->getRawValue();
Nate Begemanf4360a42006-05-03 03:48:02 +0000895 double Density = (double)Cases.size() / (double)((Last - First) + 1ULL);
896
Nate Begeman17c275f2006-05-08 16:51:36 +0000897 if (Density >= 0.3125) {
Nate Begeman37efe672006-04-22 18:53:45 +0000898 // Create a new basic block to hold the code for loading the address
899 // of the jump table, and jumping to it. Update successor information;
900 // we will either branch to the default case for the switch, or the jump
901 // table.
902 MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
903 CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
904 CurMBB->addSuccessor(Default);
905 CurMBB->addSuccessor(JumpTableBB);
906
907 // Subtract the lowest switch case value from the value being switched on
908 // and conditional branch to default mbb if the result is greater than the
909 // difference between smallest and largest cases.
910 SDOperand SwitchOp = getValue(SV);
911 MVT::ValueType VT = SwitchOp.getValueType();
912 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
913 DAG.getConstant(First, VT));
914
915 // The SDNode we just created, which holds the value being switched on
916 // minus the the smallest case value, needs to be copied to a virtual
917 // register so it can be used as an index into the jump table in a
918 // subsequent basic block. This value may be smaller or larger than the
919 // target's pointer type, and therefore require extension or truncating.
920 if (VT > TLI.getPointerTy())
921 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
922 else
923 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
924 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
925 SDOperand CopyTo = DAG.getCopyToReg(getRoot(), JumpTableReg, SwitchOp);
926
927 // Emit the range check for the jump table, and branch to the default
928 // block for the switch statement if the value being switched on exceeds
929 // the largest case in the switch.
930 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultTy(), SUB,
931 DAG.getConstant(Last-First,VT), ISD::SETUGT);
932 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
933 DAG.getBasicBlock(Default)));
934
Nate Begemanf4360a42006-05-03 03:48:02 +0000935 // Build a vector of destination BBs, corresponding to each target
936 // of the jump table. If the value of the jump table slot corresponds to
937 // a case statement, push the case's BB onto the vector, otherwise, push
938 // the default BB.
Nate Begeman37efe672006-04-22 18:53:45 +0000939 std::set<MachineBasicBlock*> UniqueBBs;
940 std::vector<MachineBasicBlock*> DestBBs;
Nate Begemanf4360a42006-05-03 03:48:02 +0000941 uint64_t TEI = First;
942 for (CaseItr ii = Cases.begin(), ee = Cases.end(); ii != ee; ++TEI) {
943 if (cast<ConstantIntegral>(ii->first)->getRawValue() == TEI) {
944 DestBBs.push_back(ii->second);
945 UniqueBBs.insert(ii->second);
946 ++ii;
947 } else {
948 DestBBs.push_back(Default);
949 UniqueBBs.insert(Default);
950 }
Nate Begeman37efe672006-04-22 18:53:45 +0000951 }
Nate Begemanf4360a42006-05-03 03:48:02 +0000952
953 // Update successor info
954 for (std::set<MachineBasicBlock*>::iterator ii = UniqueBBs.begin(),
955 ee = UniqueBBs.end(); ii != ee; ++ii)
956 JumpTableBB->addSuccessor(*ii);
957
958 // Create a jump table index for this jump table, or return an existing
959 // one.
Nate Begeman37efe672006-04-22 18:53:45 +0000960 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
961
962 // Set the jump table information so that we can codegen it as a second
963 // MachineBasicBlock
964 JT.Reg = JumpTableReg;
965 JT.JTI = JTI;
966 JT.MBB = JumpTableBB;
Nate Begeman9453eea2006-04-23 06:26:20 +0000967 JT.Default = Default;
Nate Begeman37efe672006-04-22 18:53:45 +0000968 return;
969 }
970 }
Nate Begemanf15485a2006-03-27 01:32:24 +0000971
972 // Push the initial CaseRec onto the worklist
973 std::vector<CaseRec> CaseVec;
974 CaseVec.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
975
976 while (!CaseVec.empty()) {
977 // Grab a record representing a case range to process off the worklist
978 CaseRec CR = CaseVec.back();
979 CaseVec.pop_back();
980
981 // Size is the number of Cases represented by this range. If Size is 1,
982 // then we are processing a leaf of the binary search tree. Otherwise,
983 // we need to pick a pivot, and push left and right ranges onto the
984 // worklist.
985 unsigned Size = CR.Range.second - CR.Range.first;
986
987 if (Size == 1) {
988 // Create a CaseBlock record representing a conditional branch to
989 // the Case's target mbb if the value being switched on SV is equal
990 // to C. Otherwise, branch to default.
991 Constant *C = CR.Range.first->first;
992 MachineBasicBlock *Target = CR.Range.first->second;
993 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, SV, C, Target, Default,
994 CR.CaseBB);
995 // If the MBB representing the leaf node is the current MBB, then just
996 // call visitSwitchCase to emit the code into the current block.
997 // Otherwise, push the CaseBlock onto the vector to be later processed
998 // by SDISel, and insert the node's MBB before the next MBB.
999 if (CR.CaseBB == CurMBB)
1000 visitSwitchCase(CB);
1001 else {
1002 SwitchCases.push_back(CB);
1003 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1004 }
1005 } else {
1006 // split case range at pivot
1007 CaseItr Pivot = CR.Range.first + (Size / 2);
1008 CaseRange LHSR(CR.Range.first, Pivot);
1009 CaseRange RHSR(Pivot, CR.Range.second);
1010 Constant *C = Pivot->first;
1011 MachineBasicBlock *RHSBB = 0, *LHSBB = 0;
1012 // We know that we branch to the LHS if the Value being switched on is
1013 // less than the Pivot value, C. We use this to optimize our binary
1014 // tree a bit, by recognizing that if SV is greater than or equal to the
1015 // LHS's Case Value, and that Case Value is exactly one less than the
1016 // Pivot's Value, then we can branch directly to the LHS's Target,
1017 // rather than creating a leaf node for it.
1018 if ((LHSR.second - LHSR.first) == 1 &&
1019 LHSR.first->first == CR.GE &&
1020 cast<ConstantIntegral>(C)->getRawValue() ==
1021 (cast<ConstantIntegral>(CR.GE)->getRawValue() + 1ULL)) {
1022 LHSBB = LHSR.first->second;
1023 } else {
1024 LHSBB = new MachineBasicBlock(LLVMBB);
1025 CaseVec.push_back(CaseRec(LHSBB,C,CR.GE,LHSR));
1026 }
1027 // Similar to the optimization above, if the Value being switched on is
1028 // known to be less than the Constant CR.LT, and the current Case Value
1029 // is CR.LT - 1, then we can branch directly to the target block for
1030 // the current Case Value, rather than emitting a RHS leaf node for it.
1031 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
1032 cast<ConstantIntegral>(RHSR.first->first)->getRawValue() ==
1033 (cast<ConstantIntegral>(CR.LT)->getRawValue() - 1ULL)) {
1034 RHSBB = RHSR.first->second;
1035 } else {
1036 RHSBB = new MachineBasicBlock(LLVMBB);
1037 CaseVec.push_back(CaseRec(RHSBB,CR.LT,C,RHSR));
1038 }
1039 // Create a CaseBlock record representing a conditional branch to
1040 // the LHS node if the value being switched on SV is less than C.
1041 // Otherwise, branch to LHS.
1042 ISD::CondCode CC = C->getType()->isSigned() ? ISD::SETLT : ISD::SETULT;
1043 SelectionDAGISel::CaseBlock CB(CC, SV, C, LHSBB, RHSBB, CR.CaseBB);
1044 if (CR.CaseBB == CurMBB)
1045 visitSwitchCase(CB);
1046 else {
1047 SwitchCases.push_back(CB);
1048 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1049 }
1050 }
1051 }
1052}
1053
Chris Lattnerb9fccc42005-04-02 05:04:50 +00001054void SelectionDAGLowering::visitSub(User &I) {
1055 // -0.0 - X --> fneg
Chris Lattner01b3d732005-09-28 22:28:18 +00001056 if (I.getType()->isFloatingPoint()) {
1057 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
1058 if (CFP->isExactlyValue(-0.0)) {
1059 SDOperand Op2 = getValue(I.getOperand(1));
1060 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
1061 return;
1062 }
Chris Lattner01b3d732005-09-28 22:28:18 +00001063 }
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001064 visitBinary(I, ISD::SUB, ISD::FSUB, ISD::VSUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00001065}
1066
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001067void SelectionDAGLowering::visitBinary(User &I, unsigned IntOp, unsigned FPOp,
1068 unsigned VecOp) {
1069 const Type *Ty = I.getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00001070 SDOperand Op1 = getValue(I.getOperand(0));
1071 SDOperand Op2 = getValue(I.getOperand(1));
Chris Lattner2c49f272005-01-19 22:31:21 +00001072
Chris Lattnerb67eb912005-11-19 18:40:42 +00001073 if (Ty->isIntegral()) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001074 setValue(&I, DAG.getNode(IntOp, Op1.getValueType(), Op1, Op2));
1075 } else if (Ty->isFloatingPoint()) {
1076 setValue(&I, DAG.getNode(FPOp, Op1.getValueType(), Op1, Op2));
1077 } else {
1078 const PackedType *PTy = cast<PackedType>(Ty);
Chris Lattnerc7029802006-03-18 01:44:44 +00001079 SDOperand Num = DAG.getConstant(PTy->getNumElements(), MVT::i32);
1080 SDOperand Typ = DAG.getValueType(TLI.getValueType(PTy->getElementType()));
1081 setValue(&I, DAG.getNode(VecOp, MVT::Vector, Op1, Op2, Num, Typ));
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001082 }
Nate Begemane21ea612005-11-18 07:42:56 +00001083}
Chris Lattner2c49f272005-01-19 22:31:21 +00001084
Nate Begemane21ea612005-11-18 07:42:56 +00001085void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
1086 SDOperand Op1 = getValue(I.getOperand(0));
1087 SDOperand Op2 = getValue(I.getOperand(1));
1088
1089 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
1090
Chris Lattner1c08c712005-01-07 07:47:53 +00001091 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
1092}
1093
1094void SelectionDAGLowering::visitSetCC(User &I,ISD::CondCode SignedOpcode,
1095 ISD::CondCode UnsignedOpcode) {
1096 SDOperand Op1 = getValue(I.getOperand(0));
1097 SDOperand Op2 = getValue(I.getOperand(1));
1098 ISD::CondCode Opcode = SignedOpcode;
1099 if (I.getOperand(0)->getType()->isUnsigned())
1100 Opcode = UnsignedOpcode;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001101 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
Chris Lattner1c08c712005-01-07 07:47:53 +00001102}
1103
1104void SelectionDAGLowering::visitSelect(User &I) {
1105 SDOperand Cond = getValue(I.getOperand(0));
1106 SDOperand TrueVal = getValue(I.getOperand(1));
1107 SDOperand FalseVal = getValue(I.getOperand(2));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00001108 if (!isa<PackedType>(I.getType())) {
1109 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
1110 TrueVal, FalseVal));
1111 } else {
1112 setValue(&I, DAG.getNode(ISD::VSELECT, MVT::Vector, Cond, TrueVal, FalseVal,
1113 *(TrueVal.Val->op_end()-2),
1114 *(TrueVal.Val->op_end()-1)));
1115 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001116}
1117
1118void SelectionDAGLowering::visitCast(User &I) {
1119 SDOperand N = getValue(I.getOperand(0));
Chris Lattnere25ca692006-03-22 20:09:35 +00001120 MVT::ValueType SrcVT = N.getValueType();
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001121 MVT::ValueType DestVT = TLI.getValueType(I.getType());
Chris Lattner1c08c712005-01-07 07:47:53 +00001122
Chris Lattnere25ca692006-03-22 20:09:35 +00001123 if (DestVT == MVT::Vector) {
1124 // This is a cast to a vector from something else. This is always a bit
1125 // convert. Get information about the input vector.
1126 const PackedType *DestTy = cast<PackedType>(I.getType());
1127 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1128 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N,
1129 DAG.getConstant(DestTy->getNumElements(),MVT::i32),
1130 DAG.getValueType(EltVT)));
1131 } else if (SrcVT == DestVT) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001132 setValue(&I, N); // noop cast.
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001133 } else if (DestVT == MVT::i1) {
Chris Lattneref311aa2005-05-09 22:17:13 +00001134 // Cast to bool is a comparison against zero, not truncation to zero.
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001135 SDOperand Zero = isInteger(SrcVT) ? DAG.getConstant(0, N.getValueType()) :
Chris Lattneref311aa2005-05-09 22:17:13 +00001136 DAG.getConstantFP(0.0, N.getValueType());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001137 setValue(&I, DAG.getSetCC(MVT::i1, N, Zero, ISD::SETNE));
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001138 } else if (isInteger(SrcVT)) {
1139 if (isInteger(DestVT)) { // Int -> Int cast
1140 if (DestVT < SrcVT) // Truncating cast?
1141 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001142 else if (I.getOperand(0)->getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001143 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001144 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001145 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
Chris Lattner7e358902006-03-22 22:20:49 +00001146 } else if (isFloatingPoint(DestVT)) { // Int -> FP cast
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001147 if (I.getOperand(0)->getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001148 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001149 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001150 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001151 } else {
1152 assert(0 && "Unknown cast!");
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001153 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001154 } else if (isFloatingPoint(SrcVT)) {
1155 if (isFloatingPoint(DestVT)) { // FP -> FP cast
1156 if (DestVT < SrcVT) // Rounding cast?
1157 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001158 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001159 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001160 } else if (isInteger(DestVT)) { // FP -> Int cast.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001161 if (I.getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001162 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001163 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001164 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001165 } else {
1166 assert(0 && "Unknown cast!");
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001167 }
1168 } else {
Chris Lattnere25ca692006-03-22 20:09:35 +00001169 assert(SrcVT == MVT::Vector && "Unknown cast!");
1170 assert(DestVT != MVT::Vector && "Casts to vector already handled!");
1171 // This is a cast from a vector to something else. This is always a bit
1172 // convert. Get information about the input vector.
1173 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N));
Chris Lattner1c08c712005-01-07 07:47:53 +00001174 }
1175}
1176
Chris Lattner2bbd8102006-03-29 00:11:43 +00001177void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattnerc7029802006-03-18 01:44:44 +00001178 SDOperand InVec = getValue(I.getOperand(0));
1179 SDOperand InVal = getValue(I.getOperand(1));
1180 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1181 getValue(I.getOperand(2)));
1182
Chris Lattner2332b9f2006-03-19 01:17:20 +00001183 SDOperand Num = *(InVec.Val->op_end()-2);
1184 SDOperand Typ = *(InVec.Val->op_end()-1);
1185 setValue(&I, DAG.getNode(ISD::VINSERT_VECTOR_ELT, MVT::Vector,
1186 InVec, InVal, InIdx, Num, Typ));
Chris Lattnerc7029802006-03-18 01:44:44 +00001187}
1188
Chris Lattner2bbd8102006-03-29 00:11:43 +00001189void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner384504c2006-03-21 20:44:12 +00001190 SDOperand InVec = getValue(I.getOperand(0));
1191 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1192 getValue(I.getOperand(1)));
1193 SDOperand Typ = *(InVec.Val->op_end()-1);
1194 setValue(&I, DAG.getNode(ISD::VEXTRACT_VECTOR_ELT,
1195 TLI.getValueType(I.getType()), InVec, InIdx));
1196}
Chris Lattnerc7029802006-03-18 01:44:44 +00001197
Chris Lattner3e104b12006-04-08 04:15:24 +00001198void SelectionDAGLowering::visitShuffleVector(User &I) {
1199 SDOperand V1 = getValue(I.getOperand(0));
1200 SDOperand V2 = getValue(I.getOperand(1));
1201 SDOperand Mask = getValue(I.getOperand(2));
1202
1203 SDOperand Num = *(V1.Val->op_end()-2);
1204 SDOperand Typ = *(V2.Val->op_end()-1);
1205 setValue(&I, DAG.getNode(ISD::VVECTOR_SHUFFLE, MVT::Vector,
1206 V1, V2, Mask, Num, Typ));
1207}
1208
1209
Chris Lattner1c08c712005-01-07 07:47:53 +00001210void SelectionDAGLowering::visitGetElementPtr(User &I) {
1211 SDOperand N = getValue(I.getOperand(0));
1212 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00001213
1214 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
1215 OI != E; ++OI) {
1216 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00001217 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001218 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
1219 if (Field) {
1220 // N = N + Offset
Owen Andersona69571c2006-05-03 01:29:57 +00001221 uint64_t Offset = TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattner1c08c712005-01-07 07:47:53 +00001222 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001223 getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00001224 }
1225 Ty = StTy->getElementType(Field);
1226 } else {
1227 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00001228
Chris Lattner7c0104b2005-11-09 04:45:33 +00001229 // If this is a constant subscript, handle it quickly.
1230 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
1231 if (CI->getRawValue() == 0) continue;
Chris Lattner7cc47772005-01-07 21:56:57 +00001232
Chris Lattner7c0104b2005-11-09 04:45:33 +00001233 uint64_t Offs;
1234 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Andersona69571c2006-05-03 01:29:57 +00001235 Offs = (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattner7c0104b2005-11-09 04:45:33 +00001236 else
Owen Andersona69571c2006-05-03 01:29:57 +00001237 Offs = TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattner7c0104b2005-11-09 04:45:33 +00001238 N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs));
1239 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00001240 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00001241
1242 // N = N + Idx * ElementSize;
Owen Andersona69571c2006-05-03 01:29:57 +00001243 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattner7c0104b2005-11-09 04:45:33 +00001244 SDOperand IdxN = getValue(Idx);
1245
1246 // If the index is smaller or larger than intptr_t, truncate or extend
1247 // it.
1248 if (IdxN.getValueType() < N.getValueType()) {
1249 if (Idx->getType()->isSigned())
1250 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
1251 else
1252 IdxN = DAG.getNode(ISD::ZERO_EXTEND, N.getValueType(), IdxN);
1253 } else if (IdxN.getValueType() > N.getValueType())
1254 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
1255
1256 // If this is a multiply by a power of two, turn it into a shl
1257 // immediately. This is a very common case.
1258 if (isPowerOf2_64(ElementSize)) {
1259 unsigned Amt = Log2_64(ElementSize);
1260 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00001261 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00001262 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
1263 continue;
1264 }
1265
1266 SDOperand Scale = getIntPtrConstant(ElementSize);
1267 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
1268 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00001269 }
1270 }
1271 setValue(&I, N);
1272}
1273
1274void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
1275 // If this is a fixed sized alloca in the entry block of the function,
1276 // allocate it statically on the stack.
1277 if (FuncInfo.StaticAllocaMap.count(&I))
1278 return; // getValue will auto-populate this.
1279
1280 const Type *Ty = I.getAllocatedType();
Owen Andersona69571c2006-05-03 01:29:57 +00001281 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
1282 unsigned Align = std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +00001283 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00001284
1285 SDOperand AllocSize = getValue(I.getArraySize());
Chris Lattner68cd65e2005-01-22 23:04:37 +00001286 MVT::ValueType IntPtr = TLI.getPointerTy();
1287 if (IntPtr < AllocSize.getValueType())
1288 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
1289 else if (IntPtr > AllocSize.getValueType())
1290 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00001291
Chris Lattner68cd65e2005-01-22 23:04:37 +00001292 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner1c08c712005-01-07 07:47:53 +00001293 getIntPtrConstant(TySize));
1294
1295 // Handle alignment. If the requested alignment is less than or equal to the
1296 // stack alignment, ignore it and round the size of the allocation up to the
1297 // stack alignment size. If the size is greater than the stack alignment, we
1298 // note this in the DYNAMIC_STACKALLOC node.
1299 unsigned StackAlign =
1300 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1301 if (Align <= StackAlign) {
1302 Align = 0;
1303 // Add SA-1 to the size.
1304 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
1305 getIntPtrConstant(StackAlign-1));
1306 // Mask out the low bits for alignment purposes.
1307 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
1308 getIntPtrConstant(~(uint64_t)(StackAlign-1)));
1309 }
1310
Chris Lattneradf6c2a2005-05-14 07:29:57 +00001311 std::vector<MVT::ValueType> VTs;
1312 VTs.push_back(AllocSize.getValueType());
1313 VTs.push_back(MVT::Other);
1314 std::vector<SDOperand> Ops;
1315 Ops.push_back(getRoot());
1316 Ops.push_back(AllocSize);
1317 Ops.push_back(getIntPtrConstant(Align));
1318 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, Ops);
Chris Lattner1c08c712005-01-07 07:47:53 +00001319 DAG.setRoot(setValue(&I, DSA).getValue(1));
1320
1321 // Inform the Frame Information that we have just allocated a variable-sized
1322 // object.
1323 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
1324}
1325
Chris Lattner1c08c712005-01-07 07:47:53 +00001326void SelectionDAGLowering::visitLoad(LoadInst &I) {
1327 SDOperand Ptr = getValue(I.getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00001328
Chris Lattnerd3948112005-01-17 22:19:26 +00001329 SDOperand Root;
1330 if (I.isVolatile())
1331 Root = getRoot();
1332 else {
1333 // Do not serialize non-volatile loads against each other.
1334 Root = DAG.getRoot();
1335 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001336
1337 setValue(&I, getLoadFrom(I.getType(), Ptr, DAG.getSrcValue(I.getOperand(0)),
1338 Root, I.isVolatile()));
1339}
1340
1341SDOperand SelectionDAGLowering::getLoadFrom(const Type *Ty, SDOperand Ptr,
1342 SDOperand SrcValue, SDOperand Root,
1343 bool isVolatile) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001344 SDOperand L;
Nate Begeman8cfa57b2005-12-06 06:18:55 +00001345 if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
Nate Begeman4ef3b812005-11-22 01:29:36 +00001346 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattnerc7029802006-03-18 01:44:44 +00001347 L = DAG.getVecLoad(PTy->getNumElements(), PVT, Root, Ptr, SrcValue);
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001348 } else {
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001349 L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SrcValue);
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001350 }
Chris Lattnerd3948112005-01-17 22:19:26 +00001351
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001352 if (isVolatile)
Chris Lattnerd3948112005-01-17 22:19:26 +00001353 DAG.setRoot(L.getValue(1));
1354 else
1355 PendingLoads.push_back(L.getValue(1));
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001356
1357 return L;
Chris Lattner1c08c712005-01-07 07:47:53 +00001358}
1359
1360
1361void SelectionDAGLowering::visitStore(StoreInst &I) {
1362 Value *SrcV = I.getOperand(0);
1363 SDOperand Src = getValue(SrcV);
1364 SDOperand Ptr = getValue(I.getOperand(1));
Chris Lattner369e6db2005-05-09 04:08:33 +00001365 DAG.setRoot(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Src, Ptr,
Andrew Lenharth06ef8842005-06-29 18:54:02 +00001366 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00001367}
1368
Chris Lattner0eade312006-03-24 02:22:33 +00001369/// IntrinsicCannotAccessMemory - Return true if the specified intrinsic cannot
1370/// access memory and has no other side effects at all.
1371static bool IntrinsicCannotAccessMemory(unsigned IntrinsicID) {
1372#define GET_NO_MEMORY_INTRINSICS
1373#include "llvm/Intrinsics.gen"
1374#undef GET_NO_MEMORY_INTRINSICS
1375 return false;
1376}
1377
Chris Lattnere58a7802006-04-02 03:41:14 +00001378// IntrinsicOnlyReadsMemory - Return true if the specified intrinsic doesn't
1379// have any side-effects or if it only reads memory.
1380static bool IntrinsicOnlyReadsMemory(unsigned IntrinsicID) {
1381#define GET_SIDE_EFFECT_INFO
1382#include "llvm/Intrinsics.gen"
1383#undef GET_SIDE_EFFECT_INFO
1384 return false;
1385}
1386
Chris Lattner0eade312006-03-24 02:22:33 +00001387/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
1388/// node.
1389void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
1390 unsigned Intrinsic) {
Chris Lattner7255a542006-03-24 22:49:42 +00001391 bool HasChain = !IntrinsicCannotAccessMemory(Intrinsic);
Chris Lattnere58a7802006-04-02 03:41:14 +00001392 bool OnlyLoad = HasChain && IntrinsicOnlyReadsMemory(Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +00001393
1394 // Build the operand list.
1395 std::vector<SDOperand> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00001396 if (HasChain) { // If this intrinsic has side-effects, chainify it.
1397 if (OnlyLoad) {
1398 // We don't need to serialize loads against other loads.
1399 Ops.push_back(DAG.getRoot());
1400 } else {
1401 Ops.push_back(getRoot());
1402 }
1403 }
Chris Lattner0eade312006-03-24 02:22:33 +00001404
1405 // Add the intrinsic ID as an integer operand.
1406 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
1407
1408 // Add all operands of the call to the operand list.
1409 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1410 SDOperand Op = getValue(I.getOperand(i));
1411
1412 // If this is a vector type, force it to the right packed type.
1413 if (Op.getValueType() == MVT::Vector) {
1414 const PackedType *OpTy = cast<PackedType>(I.getOperand(i)->getType());
1415 MVT::ValueType EltVT = TLI.getValueType(OpTy->getElementType());
1416
1417 MVT::ValueType VVT = MVT::getVectorType(EltVT, OpTy->getNumElements());
1418 assert(VVT != MVT::Other && "Intrinsic uses a non-legal type?");
1419 Op = DAG.getNode(ISD::VBIT_CONVERT, VVT, Op);
1420 }
1421
1422 assert(TLI.isTypeLegal(Op.getValueType()) &&
1423 "Intrinsic uses a non-legal type?");
1424 Ops.push_back(Op);
1425 }
1426
1427 std::vector<MVT::ValueType> VTs;
1428 if (I.getType() != Type::VoidTy) {
1429 MVT::ValueType VT = TLI.getValueType(I.getType());
1430 if (VT == MVT::Vector) {
1431 const PackedType *DestTy = cast<PackedType>(I.getType());
1432 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1433
1434 VT = MVT::getVectorType(EltVT, DestTy->getNumElements());
1435 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
1436 }
1437
1438 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
1439 VTs.push_back(VT);
1440 }
1441 if (HasChain)
1442 VTs.push_back(MVT::Other);
1443
1444 // Create the node.
Chris Lattner48b61a72006-03-28 00:40:33 +00001445 SDOperand Result;
1446 if (!HasChain)
1447 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTs, Ops);
1448 else if (I.getType() != Type::VoidTy)
1449 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTs, Ops);
1450 else
1451 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTs, Ops);
1452
Chris Lattnere58a7802006-04-02 03:41:14 +00001453 if (HasChain) {
1454 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
1455 if (OnlyLoad)
1456 PendingLoads.push_back(Chain);
1457 else
1458 DAG.setRoot(Chain);
1459 }
Chris Lattner0eade312006-03-24 02:22:33 +00001460 if (I.getType() != Type::VoidTy) {
1461 if (const PackedType *PTy = dyn_cast<PackedType>(I.getType())) {
1462 MVT::ValueType EVT = TLI.getValueType(PTy->getElementType());
1463 Result = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Result,
1464 DAG.getConstant(PTy->getNumElements(), MVT::i32),
1465 DAG.getValueType(EVT));
1466 }
1467 setValue(&I, Result);
1468 }
1469}
1470
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001471/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
1472/// we want to emit this as a call to a named external function, return the name
1473/// otherwise lower it and return null.
1474const char *
1475SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
1476 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00001477 default:
1478 // By default, turn this into a target intrinsic node.
1479 visitTargetIntrinsic(I, Intrinsic);
1480 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001481 case Intrinsic::vastart: visitVAStart(I); return 0;
1482 case Intrinsic::vaend: visitVAEnd(I); return 0;
1483 case Intrinsic::vacopy: visitVACopy(I); return 0;
1484 case Intrinsic::returnaddress: visitFrameReturnAddress(I, false); return 0;
1485 case Intrinsic::frameaddress: visitFrameReturnAddress(I, true); return 0;
1486 case Intrinsic::setjmp:
1487 return "_setjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1488 break;
1489 case Intrinsic::longjmp:
1490 return "_longjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1491 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00001492 case Intrinsic::memcpy_i32:
1493 case Intrinsic::memcpy_i64:
1494 visitMemIntrinsic(I, ISD::MEMCPY);
1495 return 0;
1496 case Intrinsic::memset_i32:
1497 case Intrinsic::memset_i64:
1498 visitMemIntrinsic(I, ISD::MEMSET);
1499 return 0;
1500 case Intrinsic::memmove_i32:
1501 case Intrinsic::memmove_i64:
1502 visitMemIntrinsic(I, ISD::MEMMOVE);
1503 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001504
Chris Lattner86cb6432005-12-13 17:40:33 +00001505 case Intrinsic::dbg_stoppoint: {
Jim Laskeyce72b172006-02-11 01:01:30 +00001506 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00001507 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001508 if (DebugInfo && SPI.getContext() && DebugInfo->Verify(SPI.getContext())) {
Jim Laskeyce72b172006-02-11 01:01:30 +00001509 std::vector<SDOperand> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001510
Jim Laskeyce72b172006-02-11 01:01:30 +00001511 Ops.push_back(getRoot());
Jim Laskey43970fe2006-03-23 18:06:46 +00001512 Ops.push_back(getValue(SPI.getLineValue()));
1513 Ops.push_back(getValue(SPI.getColumnValue()));
Chris Lattner36ce6912005-11-29 06:21:05 +00001514
Jim Laskey43970fe2006-03-23 18:06:46 +00001515 DebugInfoDesc *DD = DebugInfo->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00001516 assert(DD && "Not a debug information descriptor");
Jim Laskey43970fe2006-03-23 18:06:46 +00001517 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
1518
Jim Laskeyce72b172006-02-11 01:01:30 +00001519 Ops.push_back(DAG.getString(CompileUnit->getFileName()));
1520 Ops.push_back(DAG.getString(CompileUnit->getDirectory()));
1521
Jim Laskey43970fe2006-03-23 18:06:46 +00001522 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops));
Chris Lattner86cb6432005-12-13 17:40:33 +00001523 }
Jim Laskey43970fe2006-03-23 18:06:46 +00001524
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001525 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00001526 }
Jim Laskey43970fe2006-03-23 18:06:46 +00001527 case Intrinsic::dbg_region_start: {
1528 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1529 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001530 if (DebugInfo && RSI.getContext() && DebugInfo->Verify(RSI.getContext())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001531 std::vector<SDOperand> Ops;
1532
1533 unsigned LabelID = DebugInfo->RecordRegionStart(RSI.getContext());
1534
1535 Ops.push_back(getRoot());
1536 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1537
1538 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1539 }
1540
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001541 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001542 }
1543 case Intrinsic::dbg_region_end: {
1544 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1545 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001546 if (DebugInfo && REI.getContext() && DebugInfo->Verify(REI.getContext())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001547 std::vector<SDOperand> Ops;
1548
1549 unsigned LabelID = DebugInfo->RecordRegionEnd(REI.getContext());
1550
1551 Ops.push_back(getRoot());
1552 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1553
1554 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1555 }
1556
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001557 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001558 }
1559 case Intrinsic::dbg_func_start: {
1560 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1561 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001562 if (DebugInfo && FSI.getSubprogram() &&
1563 DebugInfo->Verify(FSI.getSubprogram())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001564 std::vector<SDOperand> Ops;
1565
1566 unsigned LabelID = DebugInfo->RecordRegionStart(FSI.getSubprogram());
1567
1568 Ops.push_back(getRoot());
1569 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1570
1571 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1572 }
1573
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001574 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001575 }
1576 case Intrinsic::dbg_declare: {
1577 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1578 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Jim Laskeybf7637d2006-03-28 13:45:20 +00001579 if (DebugInfo && DI.getVariable() && DebugInfo->Verify(DI.getVariable())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001580 std::vector<SDOperand> Ops;
1581
Jim Laskey0892cee2006-03-24 09:50:27 +00001582 SDOperand AddressOp = getValue(DI.getAddress());
1583 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(AddressOp)) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001584 DebugInfo->RecordVariable(DI.getVariable(), FI->getIndex());
1585 }
1586 }
1587
1588 return 0;
1589 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001590
Reid Spencer0b118202006-01-16 21:12:35 +00001591 case Intrinsic::isunordered_f32:
1592 case Intrinsic::isunordered_f64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001593 setValue(&I, DAG.getSetCC(MVT::i1,getValue(I.getOperand(1)),
1594 getValue(I.getOperand(2)), ISD::SETUO));
1595 return 0;
1596
Reid Spencer0b118202006-01-16 21:12:35 +00001597 case Intrinsic::sqrt_f32:
1598 case Intrinsic::sqrt_f64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001599 setValue(&I, DAG.getNode(ISD::FSQRT,
1600 getValue(I.getOperand(1)).getValueType(),
1601 getValue(I.getOperand(1))));
1602 return 0;
1603 case Intrinsic::pcmarker: {
1604 SDOperand Tmp = getValue(I.getOperand(1));
1605 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
1606 return 0;
1607 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00001608 case Intrinsic::readcyclecounter: {
1609 std::vector<MVT::ValueType> VTs;
1610 VTs.push_back(MVT::i64);
1611 VTs.push_back(MVT::Other);
1612 std::vector<SDOperand> Ops;
1613 Ops.push_back(getRoot());
1614 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER, VTs, Ops);
1615 setValue(&I, Tmp);
1616 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00001617 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00001618 }
Nate Begemand88fc032006-01-14 03:14:10 +00001619 case Intrinsic::bswap_i16:
Nate Begemand88fc032006-01-14 03:14:10 +00001620 case Intrinsic::bswap_i32:
Nate Begemand88fc032006-01-14 03:14:10 +00001621 case Intrinsic::bswap_i64:
1622 setValue(&I, DAG.getNode(ISD::BSWAP,
1623 getValue(I.getOperand(1)).getValueType(),
1624 getValue(I.getOperand(1))));
1625 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001626 case Intrinsic::cttz_i8:
1627 case Intrinsic::cttz_i16:
1628 case Intrinsic::cttz_i32:
1629 case Intrinsic::cttz_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001630 setValue(&I, DAG.getNode(ISD::CTTZ,
1631 getValue(I.getOperand(1)).getValueType(),
1632 getValue(I.getOperand(1))));
1633 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001634 case Intrinsic::ctlz_i8:
1635 case Intrinsic::ctlz_i16:
1636 case Intrinsic::ctlz_i32:
1637 case Intrinsic::ctlz_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001638 setValue(&I, DAG.getNode(ISD::CTLZ,
1639 getValue(I.getOperand(1)).getValueType(),
1640 getValue(I.getOperand(1))));
1641 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001642 case Intrinsic::ctpop_i8:
1643 case Intrinsic::ctpop_i16:
1644 case Intrinsic::ctpop_i32:
1645 case Intrinsic::ctpop_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001646 setValue(&I, DAG.getNode(ISD::CTPOP,
1647 getValue(I.getOperand(1)).getValueType(),
1648 getValue(I.getOperand(1))));
1649 return 0;
Chris Lattner140d53c2006-01-13 02:50:02 +00001650 case Intrinsic::stacksave: {
1651 std::vector<MVT::ValueType> VTs;
1652 VTs.push_back(TLI.getPointerTy());
1653 VTs.push_back(MVT::Other);
1654 std::vector<SDOperand> Ops;
1655 Ops.push_back(getRoot());
1656 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE, VTs, Ops);
1657 setValue(&I, Tmp);
1658 DAG.setRoot(Tmp.getValue(1));
1659 return 0;
1660 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00001661 case Intrinsic::stackrestore: {
1662 SDOperand Tmp = getValue(I.getOperand(1));
1663 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00001664 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00001665 }
Chris Lattnerac22c832005-12-12 22:51:16 +00001666 case Intrinsic::prefetch:
1667 // FIXME: Currently discarding prefetches.
1668 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001669 }
1670}
1671
1672
Chris Lattner1c08c712005-01-07 07:47:53 +00001673void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00001674 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001675 if (Function *F = I.getCalledFunction()) {
Chris Lattnerc0f18152005-04-02 05:26:53 +00001676 if (F->isExternal())
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001677 if (unsigned IID = F->getIntrinsicID()) {
1678 RenameFn = visitIntrinsicCall(I, IID);
1679 if (!RenameFn)
1680 return;
1681 } else { // Not an LLVM intrinsic.
1682 const std::string &Name = F->getName();
Chris Lattnera09f8482006-03-05 05:09:38 +00001683 if (Name[0] == 'c' && (Name == "copysign" || Name == "copysignf")) {
1684 if (I.getNumOperands() == 3 && // Basic sanity checks.
1685 I.getOperand(1)->getType()->isFloatingPoint() &&
1686 I.getType() == I.getOperand(1)->getType() &&
1687 I.getType() == I.getOperand(2)->getType()) {
1688 SDOperand LHS = getValue(I.getOperand(1));
1689 SDOperand RHS = getValue(I.getOperand(2));
1690 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
1691 LHS, RHS));
1692 return;
1693 }
1694 } else if (Name[0] == 'f' && (Name == "fabs" || Name == "fabsf")) {
Chris Lattnerc0f18152005-04-02 05:26:53 +00001695 if (I.getNumOperands() == 2 && // Basic sanity checks.
1696 I.getOperand(1)->getType()->isFloatingPoint() &&
1697 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001698 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerc0f18152005-04-02 05:26:53 +00001699 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
1700 return;
1701 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001702 } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) {
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001703 if (I.getNumOperands() == 2 && // Basic sanity checks.
1704 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner06a248c92006-02-14 05:39:35 +00001705 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001706 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001707 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
1708 return;
1709 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001710 } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) {
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001711 if (I.getNumOperands() == 2 && // Basic sanity checks.
1712 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner06a248c92006-02-14 05:39:35 +00001713 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001714 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001715 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
1716 return;
1717 }
1718 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00001719 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001720 } else if (isa<InlineAsm>(I.getOperand(0))) {
1721 visitInlineAsm(I);
1722 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001723 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001724
Chris Lattner64e14b12005-01-08 22:48:57 +00001725 SDOperand Callee;
1726 if (!RenameFn)
1727 Callee = getValue(I.getOperand(0));
1728 else
1729 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Chris Lattner1c08c712005-01-07 07:47:53 +00001730 std::vector<std::pair<SDOperand, const Type*> > Args;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001731 Args.reserve(I.getNumOperands());
Chris Lattner1c08c712005-01-07 07:47:53 +00001732 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1733 Value *Arg = I.getOperand(i);
1734 SDOperand ArgNode = getValue(Arg);
1735 Args.push_back(std::make_pair(ArgNode, Arg->getType()));
1736 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001737
Nate Begeman8e21e712005-03-26 01:29:23 +00001738 const PointerType *PT = cast<PointerType>(I.getCalledValue()->getType());
1739 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001740
Chris Lattnercf5734d2005-01-08 19:26:18 +00001741 std::pair<SDOperand,SDOperand> Result =
Chris Lattner9092fa32005-05-12 19:56:57 +00001742 TLI.LowerCallTo(getRoot(), I.getType(), FTy->isVarArg(), I.getCallingConv(),
Chris Lattneradf6a962005-05-13 18:50:42 +00001743 I.isTailCall(), Callee, Args, DAG);
Chris Lattner1c08c712005-01-07 07:47:53 +00001744 if (I.getType() != Type::VoidTy)
Chris Lattnercf5734d2005-01-08 19:26:18 +00001745 setValue(&I, Result.first);
1746 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00001747}
1748
Chris Lattner864635a2006-02-22 22:37:12 +00001749SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001750 SDOperand &Chain, SDOperand &Flag)const{
Chris Lattner864635a2006-02-22 22:37:12 +00001751 SDOperand Val = DAG.getCopyFromReg(Chain, Regs[0], RegVT, Flag);
1752 Chain = Val.getValue(1);
1753 Flag = Val.getValue(2);
1754
1755 // If the result was expanded, copy from the top part.
1756 if (Regs.size() > 1) {
1757 assert(Regs.size() == 2 &&
1758 "Cannot expand to more than 2 elts yet!");
1759 SDOperand Hi = DAG.getCopyFromReg(Chain, Regs[1], RegVT, Flag);
1760 Chain = Val.getValue(1);
1761 Flag = Val.getValue(2);
Chris Lattner9f6637d2006-02-23 20:06:57 +00001762 if (DAG.getTargetLoweringInfo().isLittleEndian())
1763 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Val, Hi);
1764 else
1765 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Hi, Val);
Chris Lattner864635a2006-02-22 22:37:12 +00001766 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00001767
Chris Lattner864635a2006-02-22 22:37:12 +00001768 // Otherwise, if the return value was promoted, truncate it to the
1769 // appropriate type.
1770 if (RegVT == ValueVT)
1771 return Val;
1772
1773 if (MVT::isInteger(RegVT))
1774 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1775 else
1776 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val);
1777}
1778
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001779/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
1780/// specified value into the registers specified by this object. This uses
1781/// Chain/Flag as the input and updates them for the output Chain/Flag.
1782void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001783 SDOperand &Chain, SDOperand &Flag) const {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001784 if (Regs.size() == 1) {
1785 // If there is a single register and the types differ, this must be
1786 // a promotion.
1787 if (RegVT != ValueVT) {
1788 if (MVT::isInteger(RegVT))
1789 Val = DAG.getNode(ISD::ANY_EXTEND, RegVT, Val);
1790 else
1791 Val = DAG.getNode(ISD::FP_EXTEND, RegVT, Val);
1792 }
1793 Chain = DAG.getCopyToReg(Chain, Regs[0], Val, Flag);
1794 Flag = Chain.getValue(1);
1795 } else {
Chris Lattner9f6637d2006-02-23 20:06:57 +00001796 std::vector<unsigned> R(Regs);
1797 if (!DAG.getTargetLoweringInfo().isLittleEndian())
1798 std::reverse(R.begin(), R.end());
1799
1800 for (unsigned i = 0, e = R.size(); i != e; ++i) {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001801 SDOperand Part = DAG.getNode(ISD::EXTRACT_ELEMENT, RegVT, Val,
1802 DAG.getConstant(i, MVT::i32));
Chris Lattner9f6637d2006-02-23 20:06:57 +00001803 Chain = DAG.getCopyToReg(Chain, R[i], Part, Flag);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001804 Flag = Chain.getValue(1);
1805 }
1806 }
1807}
Chris Lattner864635a2006-02-22 22:37:12 +00001808
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001809/// AddInlineAsmOperands - Add this value to the specified inlineasm node
1810/// operand list. This adds the code marker and includes the number of
1811/// values added into it.
1812void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001813 std::vector<SDOperand> &Ops) const {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001814 Ops.push_back(DAG.getConstant(Code | (Regs.size() << 3), MVT::i32));
1815 for (unsigned i = 0, e = Regs.size(); i != e; ++i)
1816 Ops.push_back(DAG.getRegister(Regs[i], RegVT));
1817}
Chris Lattner864635a2006-02-22 22:37:12 +00001818
1819/// isAllocatableRegister - If the specified register is safe to allocate,
1820/// i.e. it isn't a stack pointer or some other special register, return the
1821/// register class for the register. Otherwise, return null.
1822static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001823isAllocatableRegister(unsigned Reg, MachineFunction &MF,
1824 const TargetLowering &TLI, const MRegisterInfo *MRI) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001825 MVT::ValueType FoundVT = MVT::Other;
1826 const TargetRegisterClass *FoundRC = 0;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001827 for (MRegisterInfo::regclass_iterator RCI = MRI->regclass_begin(),
1828 E = MRI->regclass_end(); RCI != E; ++RCI) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001829 MVT::ValueType ThisVT = MVT::Other;
1830
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001831 const TargetRegisterClass *RC = *RCI;
1832 // If none of the the value types for this register class are valid, we
1833 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001834 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
1835 I != E; ++I) {
1836 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001837 // If we have already found this register in a different register class,
1838 // choose the one with the largest VT specified. For example, on
1839 // PowerPC, we favor f64 register classes over f32.
1840 if (FoundVT == MVT::Other ||
1841 MVT::getSizeInBits(FoundVT) < MVT::getSizeInBits(*I)) {
1842 ThisVT = *I;
1843 break;
1844 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001845 }
1846 }
1847
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001848 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001849
Chris Lattner864635a2006-02-22 22:37:12 +00001850 // NOTE: This isn't ideal. In particular, this might allocate the
1851 // frame pointer in functions that need it (due to them not being taken
1852 // out of allocation, because a variable sized allocation hasn't been seen
1853 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001854 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
1855 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001856 if (*I == Reg) {
1857 // We found a matching register class. Keep looking at others in case
1858 // we find one with larger registers that this physreg is also in.
1859 FoundRC = RC;
1860 FoundVT = ThisVT;
1861 break;
1862 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00001863 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001864 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00001865}
1866
1867RegsForValue SelectionDAGLowering::
1868GetRegistersForValue(const std::string &ConstrCode,
1869 MVT::ValueType VT, bool isOutReg, bool isInReg,
1870 std::set<unsigned> &OutputRegs,
1871 std::set<unsigned> &InputRegs) {
1872 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
1873 TLI.getRegForInlineAsmConstraint(ConstrCode, VT);
1874 std::vector<unsigned> Regs;
1875
1876 unsigned NumRegs = VT != MVT::Other ? TLI.getNumElements(VT) : 1;
1877 MVT::ValueType RegVT;
1878 MVT::ValueType ValueVT = VT;
1879
1880 if (PhysReg.first) {
1881 if (VT == MVT::Other)
1882 ValueVT = *PhysReg.second->vt_begin();
1883 RegVT = VT;
1884
1885 // This is a explicit reference to a physical register.
1886 Regs.push_back(PhysReg.first);
1887
1888 // If this is an expanded reference, add the rest of the regs to Regs.
1889 if (NumRegs != 1) {
1890 RegVT = *PhysReg.second->vt_begin();
1891 TargetRegisterClass::iterator I = PhysReg.second->begin();
1892 TargetRegisterClass::iterator E = PhysReg.second->end();
1893 for (; *I != PhysReg.first; ++I)
1894 assert(I != E && "Didn't find reg!");
1895
1896 // Already added the first reg.
1897 --NumRegs; ++I;
1898 for (; NumRegs; --NumRegs, ++I) {
1899 assert(I != E && "Ran out of registers to allocate!");
1900 Regs.push_back(*I);
1901 }
1902 }
1903 return RegsForValue(Regs, RegVT, ValueVT);
1904 }
1905
1906 // This is a reference to a register class. Allocate NumRegs consecutive,
1907 // available, registers from the class.
1908 std::vector<unsigned> RegClassRegs =
1909 TLI.getRegClassForInlineAsmConstraint(ConstrCode, VT);
1910
1911 const MRegisterInfo *MRI = DAG.getTarget().getRegisterInfo();
1912 MachineFunction &MF = *CurMBB->getParent();
1913 unsigned NumAllocated = 0;
1914 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
1915 unsigned Reg = RegClassRegs[i];
1916 // See if this register is available.
1917 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
1918 (isInReg && InputRegs.count(Reg))) { // Already used.
1919 // Make sure we find consecutive registers.
1920 NumAllocated = 0;
1921 continue;
1922 }
1923
1924 // Check to see if this register is allocatable (i.e. don't give out the
1925 // stack pointer).
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001926 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, MRI);
Chris Lattner864635a2006-02-22 22:37:12 +00001927 if (!RC) {
1928 // Make sure we find consecutive registers.
1929 NumAllocated = 0;
1930 continue;
1931 }
1932
1933 // Okay, this register is good, we can use it.
1934 ++NumAllocated;
1935
1936 // If we allocated enough consecutive
1937 if (NumAllocated == NumRegs) {
1938 unsigned RegStart = (i-NumAllocated)+1;
1939 unsigned RegEnd = i+1;
1940 // Mark all of the allocated registers used.
1941 for (unsigned i = RegStart; i != RegEnd; ++i) {
1942 unsigned Reg = RegClassRegs[i];
1943 Regs.push_back(Reg);
1944 if (isOutReg) OutputRegs.insert(Reg); // Mark reg used.
1945 if (isInReg) InputRegs.insert(Reg); // Mark reg used.
1946 }
1947
1948 return RegsForValue(Regs, *RC->vt_begin(), VT);
1949 }
1950 }
1951
1952 // Otherwise, we couldn't allocate enough registers for this.
1953 return RegsForValue();
Chris Lattner4e4b5762006-02-01 18:59:47 +00001954}
1955
Chris Lattner864635a2006-02-22 22:37:12 +00001956
Chris Lattnerce7518c2006-01-26 22:24:51 +00001957/// visitInlineAsm - Handle a call to an InlineAsm object.
1958///
1959void SelectionDAGLowering::visitInlineAsm(CallInst &I) {
1960 InlineAsm *IA = cast<InlineAsm>(I.getOperand(0));
1961
1962 SDOperand AsmStr = DAG.getTargetExternalSymbol(IA->getAsmString().c_str(),
1963 MVT::Other);
1964
1965 // Note, we treat inline asms both with and without side-effects as the same.
1966 // If an inline asm doesn't have side effects and doesn't access memory, we
1967 // could not choose to not chain it.
1968 bool hasSideEffects = IA->hasSideEffects();
1969
Chris Lattner2cc2f662006-02-01 01:28:23 +00001970 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
Chris Lattner1efa40f2006-02-22 00:56:39 +00001971 std::vector<MVT::ValueType> ConstraintVTs;
Chris Lattnerce7518c2006-01-26 22:24:51 +00001972
1973 /// AsmNodeOperands - A list of pairs. The first element is a register, the
1974 /// second is a bitfield where bit #0 is set if it is a use and bit #1 is set
1975 /// if it is a def of that register.
1976 std::vector<SDOperand> AsmNodeOperands;
1977 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
1978 AsmNodeOperands.push_back(AsmStr);
1979
1980 SDOperand Chain = getRoot();
1981 SDOperand Flag;
1982
Chris Lattner4e4b5762006-02-01 18:59:47 +00001983 // We fully assign registers here at isel time. This is not optimal, but
1984 // should work. For register classes that correspond to LLVM classes, we
1985 // could let the LLVM RA do its thing, but we currently don't. Do a prepass
1986 // over the constraints, collecting fixed registers that we know we can't use.
1987 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00001988 unsigned OpNum = 1;
Chris Lattner4e4b5762006-02-01 18:59:47 +00001989 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
1990 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
1991 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner2223aea2006-02-02 00:25:23 +00001992
Chris Lattner1efa40f2006-02-22 00:56:39 +00001993 MVT::ValueType OpVT;
1994
1995 // Compute the value type for each operand and add it to ConstraintVTs.
1996 switch (Constraints[i].Type) {
1997 case InlineAsm::isOutput:
1998 if (!Constraints[i].isIndirectOutput) {
1999 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
2000 OpVT = TLI.getValueType(I.getType());
2001 } else {
Chris Lattner22873462006-02-27 23:45:39 +00002002 const Type *OpTy = I.getOperand(OpNum)->getType();
Chris Lattner1efa40f2006-02-22 00:56:39 +00002003 OpVT = TLI.getValueType(cast<PointerType>(OpTy)->getElementType());
2004 OpNum++; // Consumes a call operand.
2005 }
2006 break;
2007 case InlineAsm::isInput:
2008 OpVT = TLI.getValueType(I.getOperand(OpNum)->getType());
2009 OpNum++; // Consumes a call operand.
2010 break;
2011 case InlineAsm::isClobber:
2012 OpVT = MVT::Other;
2013 break;
2014 }
2015
2016 ConstraintVTs.push_back(OpVT);
2017
Chris Lattner864635a2006-02-22 22:37:12 +00002018 if (TLI.getRegForInlineAsmConstraint(ConstraintCode, OpVT).first == 0)
2019 continue; // Not assigned a fixed reg.
Chris Lattner1efa40f2006-02-22 00:56:39 +00002020
Chris Lattner864635a2006-02-22 22:37:12 +00002021 // Build a list of regs that this operand uses. This always has a single
2022 // element for promoted/expanded operands.
2023 RegsForValue Regs = GetRegistersForValue(ConstraintCode, OpVT,
2024 false, false,
2025 OutputRegs, InputRegs);
Chris Lattner4e4b5762006-02-01 18:59:47 +00002026
2027 switch (Constraints[i].Type) {
2028 case InlineAsm::isOutput:
2029 // We can't assign any other output to this register.
Chris Lattner864635a2006-02-22 22:37:12 +00002030 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002031 // If this is an early-clobber output, it cannot be assigned to the same
2032 // value as the input reg.
Chris Lattner2223aea2006-02-02 00:25:23 +00002033 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
Chris Lattner864635a2006-02-22 22:37:12 +00002034 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002035 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002036 case InlineAsm::isInput:
2037 // We can't assign any other input to this register.
Chris Lattner864635a2006-02-22 22:37:12 +00002038 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1efa40f2006-02-22 00:56:39 +00002039 break;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002040 case InlineAsm::isClobber:
2041 // Clobbered regs cannot be used as inputs or outputs.
Chris Lattner864635a2006-02-22 22:37:12 +00002042 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2043 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002044 break;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002045 }
2046 }
Chris Lattner2cc2f662006-02-01 01:28:23 +00002047
Chris Lattner0f0b7d42006-02-21 23:12:12 +00002048 // Loop over all of the inputs, copying the operand values into the
2049 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00002050 RegsForValue RetValRegs;
2051 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002052 OpNum = 1;
Chris Lattner0f0b7d42006-02-21 23:12:12 +00002053
Chris Lattner6656dd12006-01-31 02:03:41 +00002054 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00002055 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2056 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner1efa40f2006-02-22 00:56:39 +00002057
Chris Lattner2cc2f662006-02-01 01:28:23 +00002058 switch (Constraints[i].Type) {
2059 case InlineAsm::isOutput: {
Chris Lattner22873462006-02-27 23:45:39 +00002060 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2061 if (ConstraintCode.size() == 1) // not a physreg name.
2062 CTy = TLI.getConstraintType(ConstraintCode[0]);
2063
2064 if (CTy == TargetLowering::C_Memory) {
2065 // Memory output.
2066 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
2067
2068 // Check that the operand (the address to store to) isn't a float.
2069 if (!MVT::isInteger(InOperandVal.getValueType()))
2070 assert(0 && "MATCH FAIL!");
2071
2072 if (!Constraints[i].isIndirectOutput)
2073 assert(0 && "MATCH FAIL!");
2074
2075 OpNum++; // Consumes a call operand.
2076
2077 // Extend/truncate to the right pointer type if needed.
2078 MVT::ValueType PtrType = TLI.getPointerTy();
2079 if (InOperandVal.getValueType() < PtrType)
2080 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2081 else if (InOperandVal.getValueType() > PtrType)
2082 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2083
2084 // Add information to the INLINEASM node to know about this output.
2085 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2086 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2087 AsmNodeOperands.push_back(InOperandVal);
2088 break;
2089 }
2090
2091 // Otherwise, this is a register output.
2092 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2093
Chris Lattner864635a2006-02-22 22:37:12 +00002094 // If this is an early-clobber output, or if there is an input
2095 // constraint that matches this, we need to reserve the input register
2096 // so no other inputs allocate to it.
2097 bool UsesInputRegister = false;
2098 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
2099 UsesInputRegister = true;
2100
2101 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00002102 // we can use.
Chris Lattner864635a2006-02-22 22:37:12 +00002103 RegsForValue Regs =
2104 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2105 true, UsesInputRegister,
2106 OutputRegs, InputRegs);
2107 assert(!Regs.Regs.empty() && "Couldn't allocate output reg!");
Chris Lattner1efa40f2006-02-22 00:56:39 +00002108
Chris Lattner2cc2f662006-02-01 01:28:23 +00002109 if (!Constraints[i].isIndirectOutput) {
Chris Lattner864635a2006-02-22 22:37:12 +00002110 assert(RetValRegs.Regs.empty() &&
Chris Lattner2cc2f662006-02-01 01:28:23 +00002111 "Cannot have multiple output constraints yet!");
Chris Lattner2cc2f662006-02-01 01:28:23 +00002112 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
Chris Lattner864635a2006-02-22 22:37:12 +00002113 RetValRegs = Regs;
Chris Lattner2cc2f662006-02-01 01:28:23 +00002114 } else {
Chris Lattner22873462006-02-27 23:45:39 +00002115 IndirectStoresToEmit.push_back(std::make_pair(Regs,
2116 I.getOperand(OpNum)));
Chris Lattner2cc2f662006-02-01 01:28:23 +00002117 OpNum++; // Consumes a call operand.
2118 }
Chris Lattner6656dd12006-01-31 02:03:41 +00002119
2120 // Add information to the INLINEASM node to know that this register is
2121 // set.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002122 Regs.AddInlineAsmOperands(2 /*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002123 break;
2124 }
2125 case InlineAsm::isInput: {
Chris Lattner22873462006-02-27 23:45:39 +00002126 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
Chris Lattner4e4b5762006-02-01 18:59:47 +00002127 OpNum++; // Consumes a call operand.
Chris Lattner3d81fee2006-02-04 02:16:44 +00002128
Chris Lattner2223aea2006-02-02 00:25:23 +00002129 if (isdigit(ConstraintCode[0])) { // Matching constraint?
2130 // If this is required to match an output register we have already set,
2131 // just use its register.
2132 unsigned OperandNo = atoi(ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00002133
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002134 // Scan until we find the definition we already emitted of this operand.
2135 // When we find it, create a RegsForValue operand.
2136 unsigned CurOp = 2; // The first operand.
2137 for (; OperandNo; --OperandNo) {
2138 // Advance to the next operand.
2139 unsigned NumOps =
2140 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2141 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2142 "Skipped past definitions?");
2143 CurOp += (NumOps>>3)+1;
2144 }
2145
2146 unsigned NumOps =
2147 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2148 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2149 "Skipped past definitions?");
2150
2151 // Add NumOps>>3 registers to MatchedRegs.
2152 RegsForValue MatchedRegs;
2153 MatchedRegs.ValueVT = InOperandVal.getValueType();
2154 MatchedRegs.RegVT = AsmNodeOperands[CurOp+1].getValueType();
2155 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
2156 unsigned Reg=cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
2157 MatchedRegs.Regs.push_back(Reg);
2158 }
2159
2160 // Use the produced MatchedRegs object to
2161 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag);
2162 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002163 break;
Chris Lattner2223aea2006-02-02 00:25:23 +00002164 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00002165
2166 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2167 if (ConstraintCode.size() == 1) // not a physreg name.
2168 CTy = TLI.getConstraintType(ConstraintCode[0]);
2169
2170 if (CTy == TargetLowering::C_Other) {
2171 if (!TLI.isOperandValidForConstraint(InOperandVal, ConstraintCode[0]))
2172 assert(0 && "MATCH FAIL!");
2173
2174 // Add information to the INLINEASM node to know about this input.
2175 unsigned ResOpType = 3 /*IMM*/ | (1 << 3);
2176 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2177 AsmNodeOperands.push_back(InOperandVal);
2178 break;
2179 } else if (CTy == TargetLowering::C_Memory) {
2180 // Memory input.
2181
2182 // Check that the operand isn't a float.
2183 if (!MVT::isInteger(InOperandVal.getValueType()))
2184 assert(0 && "MATCH FAIL!");
2185
2186 // Extend/truncate to the right pointer type if needed.
2187 MVT::ValueType PtrType = TLI.getPointerTy();
2188 if (InOperandVal.getValueType() < PtrType)
2189 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2190 else if (InOperandVal.getValueType() > PtrType)
2191 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2192
2193 // Add information to the INLINEASM node to know about this input.
2194 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2195 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2196 AsmNodeOperands.push_back(InOperandVal);
2197 break;
2198 }
2199
2200 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2201
2202 // Copy the input into the appropriate registers.
2203 RegsForValue InRegs =
2204 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2205 false, true, OutputRegs, InputRegs);
2206 // FIXME: should be match fail.
2207 assert(!InRegs.Regs.empty() && "Couldn't allocate input reg!");
2208
2209 InRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag);
2210
2211 InRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002212 break;
2213 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002214 case InlineAsm::isClobber: {
2215 RegsForValue ClobberedRegs =
2216 GetRegistersForValue(ConstraintCode, MVT::Other, false, false,
2217 OutputRegs, InputRegs);
2218 // Add the clobbered value to the operand list, so that the register
2219 // allocator is aware that the physreg got clobbered.
2220 if (!ClobberedRegs.Regs.empty())
2221 ClobberedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002222 break;
2223 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002224 }
Chris Lattner6656dd12006-01-31 02:03:41 +00002225 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00002226
2227 // Finish up input operands.
2228 AsmNodeOperands[0] = Chain;
2229 if (Flag.Val) AsmNodeOperands.push_back(Flag);
2230
2231 std::vector<MVT::ValueType> VTs;
2232 VTs.push_back(MVT::Other);
2233 VTs.push_back(MVT::Flag);
2234 Chain = DAG.getNode(ISD::INLINEASM, VTs, AsmNodeOperands);
2235 Flag = Chain.getValue(1);
2236
Chris Lattner6656dd12006-01-31 02:03:41 +00002237 // If this asm returns a register value, copy the result from that register
2238 // and set it as the value of the call.
Chris Lattner864635a2006-02-22 22:37:12 +00002239 if (!RetValRegs.Regs.empty())
2240 setValue(&I, RetValRegs.getCopyFromRegs(DAG, Chain, Flag));
Chris Lattnerce7518c2006-01-26 22:24:51 +00002241
Chris Lattner6656dd12006-01-31 02:03:41 +00002242 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
2243
2244 // Process indirect outputs, first output all of the flagged copies out of
2245 // physregs.
2246 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00002247 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00002248 Value *Ptr = IndirectStoresToEmit[i].second;
Chris Lattner864635a2006-02-22 22:37:12 +00002249 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, Flag);
2250 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00002251 }
2252
2253 // Emit the non-flagged stores from the physregs.
2254 std::vector<SDOperand> OutChains;
2255 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
2256 OutChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
2257 StoresToEmit[i].first,
2258 getValue(StoresToEmit[i].second),
2259 DAG.getSrcValue(StoresToEmit[i].second)));
2260 if (!OutChains.empty())
2261 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattnerce7518c2006-01-26 22:24:51 +00002262 DAG.setRoot(Chain);
2263}
2264
2265
Chris Lattner1c08c712005-01-07 07:47:53 +00002266void SelectionDAGLowering::visitMalloc(MallocInst &I) {
2267 SDOperand Src = getValue(I.getOperand(0));
2268
2269 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00002270
2271 if (IntPtr < Src.getValueType())
2272 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
2273 else if (IntPtr > Src.getValueType())
2274 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00002275
2276 // Scale the source by the type size.
Owen Andersona69571c2006-05-03 01:29:57 +00002277 uint64_t ElementSize = TD->getTypeSize(I.getType()->getElementType());
Chris Lattner1c08c712005-01-07 07:47:53 +00002278 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
2279 Src, getIntPtrConstant(ElementSize));
2280
2281 std::vector<std::pair<SDOperand, const Type*> > Args;
Owen Andersona69571c2006-05-03 01:29:57 +00002282 Args.push_back(std::make_pair(Src, TLI.getTargetData()->getIntPtrType()));
Chris Lattnercf5734d2005-01-08 19:26:18 +00002283
2284 std::pair<SDOperand,SDOperand> Result =
Chris Lattneradf6a962005-05-13 18:50:42 +00002285 TLI.LowerCallTo(getRoot(), I.getType(), false, CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00002286 DAG.getExternalSymbol("malloc", IntPtr),
2287 Args, DAG);
2288 setValue(&I, Result.first); // Pointers always fit in registers
2289 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002290}
2291
2292void SelectionDAGLowering::visitFree(FreeInst &I) {
2293 std::vector<std::pair<SDOperand, const Type*> > Args;
2294 Args.push_back(std::make_pair(getValue(I.getOperand(0)),
Owen Andersona69571c2006-05-03 01:29:57 +00002295 TLI.getTargetData()->getIntPtrType()));
Chris Lattner1c08c712005-01-07 07:47:53 +00002296 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattnercf5734d2005-01-08 19:26:18 +00002297 std::pair<SDOperand,SDOperand> Result =
Chris Lattneradf6a962005-05-13 18:50:42 +00002298 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00002299 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
2300 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002301}
2302
Chris Lattner025c39b2005-08-26 20:54:47 +00002303// InsertAtEndOfBasicBlock - This method should be implemented by targets that
2304// mark instructions with the 'usesCustomDAGSchedInserter' flag. These
2305// instructions are special in various ways, which require special support to
2306// insert. The specified MachineInstr is created but not inserted into any
2307// basic blocks, and the scheduler passes ownership of it to this method.
2308MachineBasicBlock *TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
2309 MachineBasicBlock *MBB) {
2310 std::cerr << "If a target marks an instruction with "
2311 "'usesCustomDAGSchedInserter', it must implement "
2312 "TargetLowering::InsertAtEndOfBasicBlock!\n";
2313 abort();
2314 return 0;
2315}
2316
Chris Lattner39ae3622005-01-09 00:00:49 +00002317void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002318 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
2319 getValue(I.getOperand(1)),
2320 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00002321}
2322
2323void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002324 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
2325 getValue(I.getOperand(0)),
2326 DAG.getSrcValue(I.getOperand(0)));
2327 setValue(&I, V);
2328 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002329}
2330
2331void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002332 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
2333 getValue(I.getOperand(1)),
2334 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00002335}
2336
2337void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002338 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
2339 getValue(I.getOperand(1)),
2340 getValue(I.getOperand(2)),
2341 DAG.getSrcValue(I.getOperand(1)),
2342 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00002343}
2344
Chris Lattnerfdfded52006-04-12 16:20:43 +00002345/// TargetLowering::LowerArguments - This is the default LowerArguments
2346/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002347/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
2348/// integrated into SDISel.
Chris Lattnerfdfded52006-04-12 16:20:43 +00002349std::vector<SDOperand>
2350TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
2351 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
2352 std::vector<SDOperand> Ops;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00002353 Ops.push_back(DAG.getRoot());
Chris Lattnerfdfded52006-04-12 16:20:43 +00002354 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
2355 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
2356
2357 // Add one result value for each formal argument.
2358 std::vector<MVT::ValueType> RetVals;
2359 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2360 MVT::ValueType VT = getValueType(I->getType());
2361
2362 switch (getTypeAction(VT)) {
2363 default: assert(0 && "Unknown type action!");
2364 case Legal:
2365 RetVals.push_back(VT);
2366 break;
2367 case Promote:
2368 RetVals.push_back(getTypeToTransformTo(VT));
2369 break;
2370 case Expand:
2371 if (VT != MVT::Vector) {
2372 // If this is a large integer, it needs to be broken up into small
2373 // integers. Figure out what the destination type is and how many small
2374 // integers it turns into.
2375 MVT::ValueType NVT = getTypeToTransformTo(VT);
2376 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2377 for (unsigned i = 0; i != NumVals; ++i)
2378 RetVals.push_back(NVT);
2379 } else {
2380 // Otherwise, this is a vector type. We only support legal vectors
2381 // right now.
2382 unsigned NumElems = cast<PackedType>(I->getType())->getNumElements();
2383 const Type *EltTy = cast<PackedType>(I->getType())->getElementType();
Evan Chengf7179bb2006-04-27 08:29:42 +00002384
Chris Lattnerfdfded52006-04-12 16:20:43 +00002385 // Figure out if there is a Packed type corresponding to this Vector
2386 // type. If so, convert to the packed type.
2387 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2388 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2389 RetVals.push_back(TVT);
2390 } else {
2391 assert(0 && "Don't support illegal by-val vector arguments yet!");
2392 }
2393 }
2394 break;
2395 }
2396 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00002397
Chris Lattner8c0c10c2006-05-16 06:45:34 +00002398 RetVals.push_back(MVT::Other);
Chris Lattnerfdfded52006-04-12 16:20:43 +00002399
2400 // Create the node.
2401 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, RetVals, Ops).Val;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00002402
2403 DAG.setRoot(SDOperand(Result, Result->getNumValues()-1));
Chris Lattnerfdfded52006-04-12 16:20:43 +00002404
2405 // Set up the return result vector.
2406 Ops.clear();
2407 unsigned i = 0;
2408 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2409 MVT::ValueType VT = getValueType(I->getType());
2410
2411 switch (getTypeAction(VT)) {
2412 default: assert(0 && "Unknown type action!");
2413 case Legal:
2414 Ops.push_back(SDOperand(Result, i++));
2415 break;
2416 case Promote: {
2417 SDOperand Op(Result, i++);
2418 if (MVT::isInteger(VT)) {
2419 unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext
2420 : ISD::AssertZext;
2421 Op = DAG.getNode(AssertOp, Op.getValueType(), Op, DAG.getValueType(VT));
2422 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2423 } else {
2424 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2425 Op = DAG.getNode(ISD::FP_ROUND, VT, Op);
2426 }
2427 Ops.push_back(Op);
2428 break;
2429 }
2430 case Expand:
2431 if (VT != MVT::Vector) {
2432 // If this is a large integer, it needs to be reassembled from small
2433 // integers. Figure out what the source elt type is and how many small
2434 // integers it is.
2435 MVT::ValueType NVT = getTypeToTransformTo(VT);
2436 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2437 if (NumVals == 2) {
2438 SDOperand Lo = SDOperand(Result, i++);
2439 SDOperand Hi = SDOperand(Result, i++);
2440
2441 if (!isLittleEndian())
2442 std::swap(Lo, Hi);
2443
2444 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi));
2445 } else {
2446 // Value scalarized into many values. Unimp for now.
2447 assert(0 && "Cannot expand i64 -> i16 yet!");
2448 }
2449 } else {
2450 // Otherwise, this is a vector type. We only support legal vectors
2451 // right now.
Evan Cheng020c41f2006-04-28 05:25:15 +00002452 const PackedType *PTy = cast<PackedType>(I->getType());
2453 unsigned NumElems = PTy->getNumElements();
2454 const Type *EltTy = PTy->getElementType();
Evan Chengf7179bb2006-04-27 08:29:42 +00002455
Chris Lattnerfdfded52006-04-12 16:20:43 +00002456 // Figure out if there is a Packed type corresponding to this Vector
2457 // type. If so, convert to the packed type.
2458 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
Chris Lattnerd202ca42006-05-17 20:49:36 +00002459 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Evan Cheng020c41f2006-04-28 05:25:15 +00002460 SDOperand N = SDOperand(Result, i++);
2461 // Handle copies from generic vectors to registers.
Chris Lattnerd202ca42006-05-17 20:49:36 +00002462 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
2463 DAG.getConstant(NumElems, MVT::i32),
2464 DAG.getValueType(getValueType(EltTy)));
2465 Ops.push_back(N);
2466 } else {
Chris Lattnerfdfded52006-04-12 16:20:43 +00002467 assert(0 && "Don't support illegal by-val vector arguments yet!");
Chris Lattnerda098e72006-05-16 23:39:44 +00002468 abort();
Chris Lattnerfdfded52006-04-12 16:20:43 +00002469 }
2470 }
2471 break;
2472 }
2473 }
2474 return Ops;
2475}
2476
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002477
2478/// TargetLowering::LowerCallTo - This is the default LowerCallTo
2479/// implementation, which just inserts an ISD::CALL node, which is later custom
2480/// lowered by the target to something concrete. FIXME: When all targets are
2481/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
2482std::pair<SDOperand, SDOperand>
2483TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
2484 unsigned CallingConv, bool isTailCall,
2485 SDOperand Callee,
2486 ArgListTy &Args, SelectionDAG &DAG) {
2487 std::vector<SDOperand> Ops;
2488 Ops.push_back(Chain); // Op#0 - Chain
2489 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
2490 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
2491 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
2492 Ops.push_back(Callee);
2493
2494 // Handle all of the outgoing arguments.
2495 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
2496 MVT::ValueType VT = getValueType(Args[i].second);
2497 SDOperand Op = Args[i].first;
2498 switch (getTypeAction(VT)) {
2499 default: assert(0 && "Unknown type action!");
2500 case Legal:
2501 Ops.push_back(Op);
2502 break;
2503 case Promote:
2504 if (MVT::isInteger(VT)) {
2505 unsigned ExtOp = Args[i].second->isSigned() ?
2506 ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
2507 Op = DAG.getNode(ExtOp, getTypeToTransformTo(VT), Op);
2508 } else {
2509 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2510 Op = DAG.getNode(ISD::FP_EXTEND, getTypeToTransformTo(VT), Op);
2511 }
2512 Ops.push_back(Op);
2513 break;
2514 case Expand:
2515 if (VT != MVT::Vector) {
2516 // If this is a large integer, it needs to be broken down into small
2517 // integers. Figure out what the source elt type is and how many small
2518 // integers it is.
2519 MVT::ValueType NVT = getTypeToTransformTo(VT);
2520 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2521 if (NumVals == 2) {
2522 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2523 DAG.getConstant(0, getPointerTy()));
2524 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2525 DAG.getConstant(1, getPointerTy()));
2526 if (!isLittleEndian())
2527 std::swap(Lo, Hi);
2528
2529 Ops.push_back(Lo);
2530 Ops.push_back(Hi);
2531 } else {
2532 // Value scalarized into many values. Unimp for now.
2533 assert(0 && "Cannot expand i64 -> i16 yet!");
2534 }
2535 } else {
Chris Lattnerda098e72006-05-16 23:39:44 +00002536 // Otherwise, this is a vector type. We only support legal vectors
2537 // right now.
2538 const PackedType *PTy = cast<PackedType>(Args[i].second);
2539 unsigned NumElems = PTy->getNumElements();
2540 const Type *EltTy = PTy->getElementType();
2541
2542 // Figure out if there is a Packed type corresponding to this Vector
2543 // type. If so, convert to the packed type.
2544 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
Chris Lattner1b8daae2006-05-17 20:43:21 +00002545 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2546 // Insert a VBIT_CONVERT of the MVT::Vector type to the packed type.
2547 Op = DAG.getNode(ISD::VBIT_CONVERT, TVT, Op);
2548 Ops.push_back(Op);
2549 } else {
Chris Lattnerda098e72006-05-16 23:39:44 +00002550 assert(0 && "Don't support illegal by-val vector call args yet!");
2551 abort();
2552 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002553 }
2554 break;
2555 }
2556 }
2557
2558 // Figure out the result value types.
2559 std::vector<MVT::ValueType> RetTys;
2560
2561 if (RetTy != Type::VoidTy) {
2562 MVT::ValueType VT = getValueType(RetTy);
2563 switch (getTypeAction(VT)) {
2564 default: assert(0 && "Unknown type action!");
2565 case Legal:
2566 RetTys.push_back(VT);
2567 break;
2568 case Promote:
2569 RetTys.push_back(getTypeToTransformTo(VT));
2570 break;
2571 case Expand:
2572 if (VT != MVT::Vector) {
2573 // If this is a large integer, it needs to be reassembled from small
2574 // integers. Figure out what the source elt type is and how many small
2575 // integers it is.
2576 MVT::ValueType NVT = getTypeToTransformTo(VT);
2577 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2578 for (unsigned i = 0; i != NumVals; ++i)
2579 RetTys.push_back(NVT);
2580 } else {
Chris Lattnerda098e72006-05-16 23:39:44 +00002581 // Otherwise, this is a vector type. We only support legal vectors
2582 // right now.
2583 const PackedType *PTy = cast<PackedType>(RetTy);
2584 unsigned NumElems = PTy->getNumElements();
2585 const Type *EltTy = PTy->getElementType();
2586
2587 // Figure out if there is a Packed type corresponding to this Vector
2588 // type. If so, convert to the packed type.
2589 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2590 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2591 RetTys.push_back(TVT);
2592 } else {
2593 assert(0 && "Don't support illegal by-val vector call results yet!");
2594 abort();
2595 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002596 }
2597 }
2598 }
2599
2600 RetTys.push_back(MVT::Other); // Always has a chain.
2601
2602 // Finally, create the CALL node.
2603 SDOperand Res = DAG.getNode(ISD::CALL, RetTys, Ops);
2604
2605 // This returns a pair of operands. The first element is the
2606 // return value for the function (if RetTy is not VoidTy). The second
2607 // element is the outgoing token chain.
2608 SDOperand ResVal;
2609 if (RetTys.size() != 1) {
2610 MVT::ValueType VT = getValueType(RetTy);
2611 if (RetTys.size() == 2) {
2612 ResVal = Res;
2613
2614 // If this value was promoted, truncate it down.
2615 if (ResVal.getValueType() != VT) {
Chris Lattnerda098e72006-05-16 23:39:44 +00002616 if (VT == MVT::Vector) {
2617 // Insert a VBITCONVERT to convert from the packed result type to the
2618 // MVT::Vector type.
2619 unsigned NumElems = cast<PackedType>(RetTy)->getNumElements();
2620 const Type *EltTy = cast<PackedType>(RetTy)->getElementType();
2621
2622 // Figure out if there is a Packed type corresponding to this Vector
2623 // type. If so, convert to the packed type.
2624 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2625 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Chris Lattnerda098e72006-05-16 23:39:44 +00002626 // Insert a VBIT_CONVERT of the FORMAL_ARGUMENTS to a
2627 // "N x PTyElementVT" MVT::Vector type.
2628 ResVal = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, ResVal,
Chris Lattnerd202ca42006-05-17 20:49:36 +00002629 DAG.getConstant(NumElems, MVT::i32),
2630 DAG.getValueType(getValueType(EltTy)));
Chris Lattnerda098e72006-05-16 23:39:44 +00002631 } else {
2632 abort();
2633 }
2634 } else if (MVT::isInteger(VT)) {
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002635 unsigned AssertOp = RetTy->isSigned() ?
2636 ISD::AssertSext : ISD::AssertZext;
2637 ResVal = DAG.getNode(AssertOp, ResVal.getValueType(), ResVal,
2638 DAG.getValueType(VT));
2639 ResVal = DAG.getNode(ISD::TRUNCATE, VT, ResVal);
2640 } else {
2641 assert(MVT::isFloatingPoint(VT));
2642 ResVal = DAG.getNode(ISD::FP_ROUND, VT, ResVal);
2643 }
2644 }
2645 } else if (RetTys.size() == 3) {
2646 ResVal = DAG.getNode(ISD::BUILD_PAIR, VT,
2647 Res.getValue(0), Res.getValue(1));
2648
2649 } else {
2650 assert(0 && "Case not handled yet!");
2651 }
2652 }
2653
2654 return std::make_pair(ResVal, Res.getValue(Res.Val->getNumValues()-1));
2655}
2656
2657
2658
Chris Lattner39ae3622005-01-09 00:00:49 +00002659// It is always conservatively correct for llvm.returnaddress and
2660// llvm.frameaddress to return 0.
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002661//
2662// FIXME: Change this to insert a FRAMEADDR/RETURNADDR node, and have that be
2663// expanded to 0 if the target wants.
Chris Lattner39ae3622005-01-09 00:00:49 +00002664std::pair<SDOperand, SDOperand>
2665TargetLowering::LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain,
2666 unsigned Depth, SelectionDAG &DAG) {
2667 return std::make_pair(DAG.getConstant(0, getPointerTy()), Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00002668}
2669
Chris Lattner50381b62005-05-14 05:50:48 +00002670SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00002671 assert(0 && "LowerOperation not implemented for this target!");
2672 abort();
Misha Brukmand3f03e42005-02-17 21:39:27 +00002673 return SDOperand();
Chris Lattner171453a2005-01-16 07:28:41 +00002674}
2675
Nate Begeman0aed7842006-01-28 03:14:31 +00002676SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
2677 SelectionDAG &DAG) {
2678 assert(0 && "CustomPromoteOperation not implemented for this target!");
2679 abort();
2680 return SDOperand();
2681}
2682
Chris Lattner39ae3622005-01-09 00:00:49 +00002683void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) {
2684 unsigned Depth = (unsigned)cast<ConstantUInt>(I.getOperand(1))->getValue();
2685 std::pair<SDOperand,SDOperand> Result =
Chris Lattnera651cf62005-01-17 19:43:36 +00002686 TLI.LowerFrameReturnAddress(isFrame, getRoot(), Depth, DAG);
Chris Lattner39ae3622005-01-09 00:00:49 +00002687 setValue(&I, Result.first);
2688 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002689}
2690
Evan Cheng74d0aa92006-02-15 21:59:04 +00002691/// getMemsetValue - Vectorized representation of the memset value
Evan Cheng1db92f92006-02-14 08:22:34 +00002692/// operand.
2693static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT,
Evan Chenga47876d2006-02-15 22:12:35 +00002694 SelectionDAG &DAG) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002695 MVT::ValueType CurVT = VT;
2696 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
2697 uint64_t Val = C->getValue() & 255;
2698 unsigned Shift = 8;
2699 while (CurVT != MVT::i8) {
2700 Val = (Val << Shift) | Val;
2701 Shift <<= 1;
2702 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002703 }
2704 return DAG.getConstant(Val, VT);
2705 } else {
2706 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2707 unsigned Shift = 8;
2708 while (CurVT != MVT::i8) {
2709 Value =
2710 DAG.getNode(ISD::OR, VT,
2711 DAG.getNode(ISD::SHL, VT, Value,
2712 DAG.getConstant(Shift, MVT::i8)), Value);
2713 Shift <<= 1;
2714 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002715 }
2716
2717 return Value;
2718 }
2719}
2720
Evan Cheng74d0aa92006-02-15 21:59:04 +00002721/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2722/// used when a memcpy is turned into a memset when the source is a constant
2723/// string ptr.
2724static SDOperand getMemsetStringVal(MVT::ValueType VT,
2725 SelectionDAG &DAG, TargetLowering &TLI,
2726 std::string &Str, unsigned Offset) {
2727 MVT::ValueType CurVT = VT;
2728 uint64_t Val = 0;
2729 unsigned MSB = getSizeInBits(VT) / 8;
2730 if (TLI.isLittleEndian())
2731 Offset = Offset + MSB - 1;
2732 for (unsigned i = 0; i != MSB; ++i) {
2733 Val = (Val << 8) | Str[Offset];
2734 Offset += TLI.isLittleEndian() ? -1 : 1;
2735 }
2736 return DAG.getConstant(Val, VT);
2737}
2738
Evan Cheng1db92f92006-02-14 08:22:34 +00002739/// getMemBasePlusOffset - Returns base and offset node for the
2740static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
2741 SelectionDAG &DAG, TargetLowering &TLI) {
2742 MVT::ValueType VT = Base.getValueType();
2743 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2744}
2745
Evan Chengc4f8eee2006-02-14 20:12:38 +00002746/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
Evan Cheng80e89d72006-02-14 09:11:59 +00002747/// to replace the memset / memcpy is below the threshold. It also returns the
2748/// types of the sequence of memory ops to perform memset / memcpy.
Evan Chengc4f8eee2006-02-14 20:12:38 +00002749static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps,
2750 unsigned Limit, uint64_t Size,
2751 unsigned Align, TargetLowering &TLI) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002752 MVT::ValueType VT;
2753
2754 if (TLI.allowsUnalignedMemoryAccesses()) {
2755 VT = MVT::i64;
2756 } else {
2757 switch (Align & 7) {
2758 case 0:
2759 VT = MVT::i64;
2760 break;
2761 case 4:
2762 VT = MVT::i32;
2763 break;
2764 case 2:
2765 VT = MVT::i16;
2766 break;
2767 default:
2768 VT = MVT::i8;
2769 break;
2770 }
2771 }
2772
Evan Cheng80e89d72006-02-14 09:11:59 +00002773 MVT::ValueType LVT = MVT::i64;
2774 while (!TLI.isTypeLegal(LVT))
2775 LVT = (MVT::ValueType)((unsigned)LVT - 1);
2776 assert(MVT::isInteger(LVT));
Evan Cheng1db92f92006-02-14 08:22:34 +00002777
Evan Cheng80e89d72006-02-14 09:11:59 +00002778 if (VT > LVT)
2779 VT = LVT;
2780
Evan Chengdea72452006-02-14 23:05:54 +00002781 unsigned NumMemOps = 0;
Evan Cheng1db92f92006-02-14 08:22:34 +00002782 while (Size != 0) {
2783 unsigned VTSize = getSizeInBits(VT) / 8;
2784 while (VTSize > Size) {
2785 VT = (MVT::ValueType)((unsigned)VT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002786 VTSize >>= 1;
2787 }
Evan Cheng80e89d72006-02-14 09:11:59 +00002788 assert(MVT::isInteger(VT));
2789
2790 if (++NumMemOps > Limit)
2791 return false;
Evan Cheng1db92f92006-02-14 08:22:34 +00002792 MemOps.push_back(VT);
2793 Size -= VTSize;
2794 }
Evan Cheng80e89d72006-02-14 09:11:59 +00002795
2796 return true;
Evan Cheng1db92f92006-02-14 08:22:34 +00002797}
2798
Chris Lattner7041ee32005-01-11 05:56:49 +00002799void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002800 SDOperand Op1 = getValue(I.getOperand(1));
2801 SDOperand Op2 = getValue(I.getOperand(2));
2802 SDOperand Op3 = getValue(I.getOperand(3));
2803 SDOperand Op4 = getValue(I.getOperand(4));
2804 unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue();
2805 if (Align == 0) Align = 1;
2806
2807 if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) {
2808 std::vector<MVT::ValueType> MemOps;
Evan Cheng1db92f92006-02-14 08:22:34 +00002809
2810 // Expand memset / memcpy to a series of load / store ops
2811 // if the size operand falls below a certain threshold.
2812 std::vector<SDOperand> OutChains;
2813 switch (Op) {
Evan Chengac940ab2006-02-14 19:45:56 +00002814 default: break; // Do nothing for now.
Evan Cheng1db92f92006-02-14 08:22:34 +00002815 case ISD::MEMSET: {
Evan Chengc4f8eee2006-02-14 20:12:38 +00002816 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
2817 Size->getValue(), Align, TLI)) {
Evan Cheng80e89d72006-02-14 09:11:59 +00002818 unsigned NumMemOps = MemOps.size();
Evan Cheng1db92f92006-02-14 08:22:34 +00002819 unsigned Offset = 0;
2820 for (unsigned i = 0; i < NumMemOps; i++) {
2821 MVT::ValueType VT = MemOps[i];
2822 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Chenga47876d2006-02-15 22:12:35 +00002823 SDOperand Value = getMemsetValue(Op2, VT, DAG);
Evan Chengc080d6f2006-02-15 01:54:51 +00002824 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, getRoot(),
2825 Value,
Chris Lattner864635a2006-02-22 22:37:12 +00002826 getMemBasePlusOffset(Op1, Offset, DAG, TLI),
2827 DAG.getSrcValue(I.getOperand(1), Offset));
Evan Chengc080d6f2006-02-15 01:54:51 +00002828 OutChains.push_back(Store);
Evan Cheng1db92f92006-02-14 08:22:34 +00002829 Offset += VTSize;
2830 }
Evan Cheng1db92f92006-02-14 08:22:34 +00002831 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002832 break;
Evan Cheng1db92f92006-02-14 08:22:34 +00002833 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002834 case ISD::MEMCPY: {
2835 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemcpy(),
2836 Size->getValue(), Align, TLI)) {
2837 unsigned NumMemOps = MemOps.size();
Evan Chengcffbb512006-02-16 23:11:42 +00002838 unsigned SrcOff = 0, DstOff = 0, SrcDelta = 0;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002839 GlobalAddressSDNode *G = NULL;
2840 std::string Str;
Evan Chengcffbb512006-02-16 23:11:42 +00002841 bool CopyFromStr = false;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002842
2843 if (Op2.getOpcode() == ISD::GlobalAddress)
2844 G = cast<GlobalAddressSDNode>(Op2);
2845 else if (Op2.getOpcode() == ISD::ADD &&
2846 Op2.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2847 Op2.getOperand(1).getOpcode() == ISD::Constant) {
2848 G = cast<GlobalAddressSDNode>(Op2.getOperand(0));
Evan Chengcffbb512006-02-16 23:11:42 +00002849 SrcDelta = cast<ConstantSDNode>(Op2.getOperand(1))->getValue();
Evan Cheng74d0aa92006-02-15 21:59:04 +00002850 }
2851 if (G) {
2852 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Chengcffbb512006-02-16 23:11:42 +00002853 if (GV) {
Evan Cheng09371032006-03-10 23:52:03 +00002854 Str = GV->getStringValue(false);
Evan Chengcffbb512006-02-16 23:11:42 +00002855 if (!Str.empty()) {
2856 CopyFromStr = true;
2857 SrcOff += SrcDelta;
2858 }
2859 }
Evan Cheng74d0aa92006-02-15 21:59:04 +00002860 }
2861
Evan Chengc080d6f2006-02-15 01:54:51 +00002862 for (unsigned i = 0; i < NumMemOps; i++) {
2863 MVT::ValueType VT = MemOps[i];
2864 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002865 SDOperand Value, Chain, Store;
2866
Evan Chengcffbb512006-02-16 23:11:42 +00002867 if (CopyFromStr) {
Evan Cheng74d0aa92006-02-15 21:59:04 +00002868 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
2869 Chain = getRoot();
2870 Store =
2871 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2872 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2873 DAG.getSrcValue(I.getOperand(1), DstOff));
2874 } else {
2875 Value = DAG.getLoad(VT, getRoot(),
2876 getMemBasePlusOffset(Op2, SrcOff, DAG, TLI),
2877 DAG.getSrcValue(I.getOperand(2), SrcOff));
2878 Chain = Value.getValue(1);
2879 Store =
2880 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2881 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2882 DAG.getSrcValue(I.getOperand(1), DstOff));
2883 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002884 OutChains.push_back(Store);
Evan Cheng74d0aa92006-02-15 21:59:04 +00002885 SrcOff += VTSize;
2886 DstOff += VTSize;
Evan Chengc080d6f2006-02-15 01:54:51 +00002887 }
2888 }
2889 break;
2890 }
2891 }
2892
2893 if (!OutChains.empty()) {
2894 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains));
2895 return;
Evan Cheng1db92f92006-02-14 08:22:34 +00002896 }
2897 }
2898
Chris Lattner7041ee32005-01-11 05:56:49 +00002899 std::vector<SDOperand> Ops;
Chris Lattnera651cf62005-01-17 19:43:36 +00002900 Ops.push_back(getRoot());
Evan Cheng1db92f92006-02-14 08:22:34 +00002901 Ops.push_back(Op1);
2902 Ops.push_back(Op2);
2903 Ops.push_back(Op3);
2904 Ops.push_back(Op4);
Chris Lattner7041ee32005-01-11 05:56:49 +00002905 DAG.setRoot(DAG.getNode(Op, MVT::Other, Ops));
Chris Lattner1c08c712005-01-07 07:47:53 +00002906}
2907
Chris Lattner7041ee32005-01-11 05:56:49 +00002908//===----------------------------------------------------------------------===//
2909// SelectionDAGISel code
2910//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00002911
2912unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) {
2913 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
2914}
2915
Chris Lattner495a0b52005-08-17 06:37:43 +00002916void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner36b708f2005-08-18 17:35:14 +00002917 // FIXME: we only modify the CFG to split critical edges. This
2918 // updates dom and loop info.
Chris Lattner495a0b52005-08-17 06:37:43 +00002919}
Chris Lattner1c08c712005-01-07 07:47:53 +00002920
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002921
Chris Lattner90323642006-05-05 21:17:49 +00002922/// OptimizeNoopCopyExpression - We have determined that the specified cast
2923/// instruction is a noop copy (e.g. it's casting from one pointer type to
2924/// another, int->uint, or int->sbyte on PPC.
2925///
2926/// Return true if any changes are made.
2927static bool OptimizeNoopCopyExpression(CastInst *CI) {
2928 BasicBlock *DefBB = CI->getParent();
2929
2930 /// InsertedCasts - Only insert a cast in each block once.
2931 std::map<BasicBlock*, CastInst*> InsertedCasts;
2932
2933 bool MadeChange = false;
2934 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
2935 UI != E; ) {
2936 Use &TheUse = UI.getUse();
2937 Instruction *User = cast<Instruction>(*UI);
2938
2939 // Figure out which BB this cast is used in. For PHI's this is the
2940 // appropriate predecessor block.
2941 BasicBlock *UserBB = User->getParent();
2942 if (PHINode *PN = dyn_cast<PHINode>(User)) {
2943 unsigned OpVal = UI.getOperandNo()/2;
2944 UserBB = PN->getIncomingBlock(OpVal);
2945 }
2946
2947 // Preincrement use iterator so we don't invalidate it.
2948 ++UI;
2949
2950 // If this user is in the same block as the cast, don't change the cast.
2951 if (UserBB == DefBB) continue;
2952
2953 // If we have already inserted a cast into this block, use it.
2954 CastInst *&InsertedCast = InsertedCasts[UserBB];
2955
2956 if (!InsertedCast) {
2957 BasicBlock::iterator InsertPt = UserBB->begin();
2958 while (isa<PHINode>(InsertPt)) ++InsertPt;
2959
2960 InsertedCast =
2961 new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
2962 MadeChange = true;
2963 }
2964
2965 // Replace a use of the cast with a use of the new casat.
2966 TheUse = InsertedCast;
2967 }
2968
2969 // If we removed all uses, nuke the cast.
2970 if (CI->use_empty())
2971 CI->eraseFromParent();
2972
2973 return MadeChange;
2974}
2975
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002976/// InsertGEPComputeCode - Insert code into BB to compute Ptr+PtrOffset,
2977/// casting to the type of GEPI.
Chris Lattnerf0df8822006-05-06 09:10:37 +00002978static Instruction *InsertGEPComputeCode(Instruction *&V, BasicBlock *BB,
2979 Instruction *GEPI, Value *Ptr,
2980 Value *PtrOffset) {
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002981 if (V) return V; // Already computed.
2982
2983 BasicBlock::iterator InsertPt;
2984 if (BB == GEPI->getParent()) {
2985 // If insert into the GEP's block, insert right after the GEP.
2986 InsertPt = GEPI;
2987 ++InsertPt;
2988 } else {
2989 // Otherwise, insert at the top of BB, after any PHI nodes
2990 InsertPt = BB->begin();
2991 while (isa<PHINode>(InsertPt)) ++InsertPt;
2992 }
2993
Chris Lattnerc78b0b72005-12-08 08:00:12 +00002994 // If Ptr is itself a cast, but in some other BB, emit a copy of the cast into
2995 // BB so that there is only one value live across basic blocks (the cast
2996 // operand).
2997 if (CastInst *CI = dyn_cast<CastInst>(Ptr))
2998 if (CI->getParent() != BB && isa<PointerType>(CI->getOperand(0)->getType()))
2999 Ptr = new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
3000
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003001 // Add the offset, cast it to the right type.
3002 Ptr = BinaryOperator::createAdd(Ptr, PtrOffset, "", InsertPt);
Chris Lattnerf0df8822006-05-06 09:10:37 +00003003 return V = new CastInst(Ptr, GEPI->getType(), "", InsertPt);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003004}
3005
Chris Lattner90323642006-05-05 21:17:49 +00003006/// ReplaceUsesOfGEPInst - Replace all uses of RepPtr with inserted code to
3007/// compute its value. The RepPtr value can be computed with Ptr+PtrOffset. One
3008/// trivial way of doing this would be to evaluate Ptr+PtrOffset in RepPtr's
3009/// block, then ReplaceAllUsesWith'ing everything. However, we would prefer to
3010/// sink PtrOffset into user blocks where doing so will likely allow us to fold
3011/// the constant add into a load or store instruction. Additionally, if a user
3012/// is a pointer-pointer cast, we look through it to find its users.
3013static void ReplaceUsesOfGEPInst(Instruction *RepPtr, Value *Ptr,
3014 Constant *PtrOffset, BasicBlock *DefBB,
3015 GetElementPtrInst *GEPI,
Chris Lattnerf0df8822006-05-06 09:10:37 +00003016 std::map<BasicBlock*,Instruction*> &InsertedExprs) {
Chris Lattner90323642006-05-05 21:17:49 +00003017 while (!RepPtr->use_empty()) {
3018 Instruction *User = cast<Instruction>(RepPtr->use_back());
Chris Lattner7e598092006-05-05 01:04:50 +00003019
Chris Lattner90323642006-05-05 21:17:49 +00003020 // If the user is a Pointer-Pointer cast, recurse.
3021 if (isa<CastInst>(User) && isa<PointerType>(User->getType())) {
3022 ReplaceUsesOfGEPInst(User, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattner7e598092006-05-05 01:04:50 +00003023
Chris Lattner90323642006-05-05 21:17:49 +00003024 // Drop the use of RepPtr. The cast is dead. Don't delete it now, else we
3025 // could invalidate an iterator.
3026 User->setOperand(0, UndefValue::get(RepPtr->getType()));
3027 continue;
Chris Lattner7e598092006-05-05 01:04:50 +00003028 }
3029
Chris Lattner90323642006-05-05 21:17:49 +00003030 // If this is a load of the pointer, or a store through the pointer, emit
3031 // the increment into the load/store block.
Chris Lattnerf0df8822006-05-06 09:10:37 +00003032 Instruction *NewVal;
Chris Lattner90323642006-05-05 21:17:49 +00003033 if (isa<LoadInst>(User) ||
3034 (isa<StoreInst>(User) && User->getOperand(0) != RepPtr)) {
3035 NewVal = InsertGEPComputeCode(InsertedExprs[User->getParent()],
3036 User->getParent(), GEPI,
3037 Ptr, PtrOffset);
3038 } else {
3039 // If this use is not foldable into the addressing mode, use a version
3040 // emitted in the GEP block.
3041 NewVal = InsertGEPComputeCode(InsertedExprs[DefBB], DefBB, GEPI,
3042 Ptr, PtrOffset);
3043 }
3044
Chris Lattnerf0df8822006-05-06 09:10:37 +00003045 if (GEPI->getType() != RepPtr->getType()) {
3046 BasicBlock::iterator IP = NewVal;
3047 ++IP;
3048 NewVal = new CastInst(NewVal, RepPtr->getType(), "", IP);
3049 }
Chris Lattner90323642006-05-05 21:17:49 +00003050 User->replaceUsesOfWith(RepPtr, NewVal);
Chris Lattner7e598092006-05-05 01:04:50 +00003051 }
3052}
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003053
Chris Lattner90323642006-05-05 21:17:49 +00003054
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003055/// OptimizeGEPExpression - Since we are doing basic-block-at-a-time instruction
3056/// selection, we want to be a bit careful about some things. In particular, if
3057/// we have a GEP instruction that is used in a different block than it is
3058/// defined, the addressing expression of the GEP cannot be folded into loads or
3059/// stores that use it. In this case, decompose the GEP and move constant
3060/// indices into blocks that use it.
Chris Lattner90323642006-05-05 21:17:49 +00003061static bool OptimizeGEPExpression(GetElementPtrInst *GEPI,
Owen Andersona69571c2006-05-03 01:29:57 +00003062 const TargetData *TD) {
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003063 // If this GEP is only used inside the block it is defined in, there is no
3064 // need to rewrite it.
3065 bool isUsedOutsideDefBB = false;
3066 BasicBlock *DefBB = GEPI->getParent();
3067 for (Value::use_iterator UI = GEPI->use_begin(), E = GEPI->use_end();
3068 UI != E; ++UI) {
3069 if (cast<Instruction>(*UI)->getParent() != DefBB) {
3070 isUsedOutsideDefBB = true;
3071 break;
3072 }
3073 }
Chris Lattner90323642006-05-05 21:17:49 +00003074 if (!isUsedOutsideDefBB) return false;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003075
3076 // If this GEP has no non-zero constant indices, there is nothing we can do,
3077 // ignore it.
3078 bool hasConstantIndex = false;
Chris Lattner90323642006-05-05 21:17:49 +00003079 bool hasVariableIndex = false;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003080 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3081 E = GEPI->op_end(); OI != E; ++OI) {
Chris Lattner90323642006-05-05 21:17:49 +00003082 if (ConstantInt *CI = dyn_cast<ConstantInt>(*OI)) {
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003083 if (CI->getRawValue()) {
3084 hasConstantIndex = true;
3085 break;
3086 }
Chris Lattner90323642006-05-05 21:17:49 +00003087 } else {
3088 hasVariableIndex = true;
3089 }
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003090 }
Chris Lattner90323642006-05-05 21:17:49 +00003091
3092 // If this is a "GEP X, 0, 0, 0", turn this into a cast.
3093 if (!hasConstantIndex && !hasVariableIndex) {
3094 Value *NC = new CastInst(GEPI->getOperand(0), GEPI->getType(),
3095 GEPI->getName(), GEPI);
3096 GEPI->replaceAllUsesWith(NC);
3097 GEPI->eraseFromParent();
3098 return true;
3099 }
3100
Chris Lattner3802c252005-12-11 09:05:13 +00003101 // If this is a GEP &Alloca, 0, 0, forward subst the frame index into uses.
Chris Lattner90323642006-05-05 21:17:49 +00003102 if (!hasConstantIndex && !isa<AllocaInst>(GEPI->getOperand(0)))
3103 return false;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003104
3105 // Otherwise, decompose the GEP instruction into multiplies and adds. Sum the
3106 // constant offset (which we now know is non-zero) and deal with it later.
3107 uint64_t ConstantOffset = 0;
Owen Andersona69571c2006-05-03 01:29:57 +00003108 const Type *UIntPtrTy = TD->getIntPtrType();
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003109 Value *Ptr = new CastInst(GEPI->getOperand(0), UIntPtrTy, "", GEPI);
3110 const Type *Ty = GEPI->getOperand(0)->getType();
3111
3112 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3113 E = GEPI->op_end(); OI != E; ++OI) {
3114 Value *Idx = *OI;
3115 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
3116 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
3117 if (Field)
Owen Andersona69571c2006-05-03 01:29:57 +00003118 ConstantOffset += TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003119 Ty = StTy->getElementType(Field);
3120 } else {
3121 Ty = cast<SequentialType>(Ty)->getElementType();
3122
3123 // Handle constant subscripts.
3124 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
3125 if (CI->getRawValue() == 0) continue;
3126
3127 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Andersona69571c2006-05-03 01:29:57 +00003128 ConstantOffset += (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003129 else
Owen Andersona69571c2006-05-03 01:29:57 +00003130 ConstantOffset+=TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003131 continue;
3132 }
3133
3134 // Ptr = Ptr + Idx * ElementSize;
3135
3136 // Cast Idx to UIntPtrTy if needed.
3137 Idx = new CastInst(Idx, UIntPtrTy, "", GEPI);
3138
Owen Andersona69571c2006-05-03 01:29:57 +00003139 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003140 // Mask off bits that should not be set.
3141 ElementSize &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3142 Constant *SizeCst = ConstantUInt::get(UIntPtrTy, ElementSize);
3143
3144 // Multiply by the element size and add to the base.
3145 Idx = BinaryOperator::createMul(Idx, SizeCst, "", GEPI);
3146 Ptr = BinaryOperator::createAdd(Ptr, Idx, "", GEPI);
3147 }
3148 }
3149
3150 // Make sure that the offset fits in uintptr_t.
3151 ConstantOffset &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3152 Constant *PtrOffset = ConstantUInt::get(UIntPtrTy, ConstantOffset);
3153
3154 // Okay, we have now emitted all of the variable index parts to the BB that
3155 // the GEP is defined in. Loop over all of the using instructions, inserting
3156 // an "add Ptr, ConstantOffset" into each block that uses it and update the
Chris Lattnerc78b0b72005-12-08 08:00:12 +00003157 // instruction to use the newly computed value, making GEPI dead. When the
3158 // user is a load or store instruction address, we emit the add into the user
3159 // block, otherwise we use a canonical version right next to the gep (these
3160 // won't be foldable as addresses, so we might as well share the computation).
3161
Chris Lattnerf0df8822006-05-06 09:10:37 +00003162 std::map<BasicBlock*,Instruction*> InsertedExprs;
Chris Lattner90323642006-05-05 21:17:49 +00003163 ReplaceUsesOfGEPInst(GEPI, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003164
3165 // Finally, the GEP is dead, remove it.
3166 GEPI->eraseFromParent();
Chris Lattner90323642006-05-05 21:17:49 +00003167
3168 return true;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003169}
3170
Chris Lattner1c08c712005-01-07 07:47:53 +00003171bool SelectionDAGISel::runOnFunction(Function &Fn) {
3172 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
3173 RegMap = MF.getSSARegMap();
3174 DEBUG(std::cerr << "\n\n\n=== " << Fn.getName() << "\n");
3175
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003176 // First, split all critical edges for PHI nodes with incoming values that are
3177 // constants, this way the load of the constant into a vreg will not be placed
3178 // into MBBs that are used some other way.
3179 //
Chris Lattner7e598092006-05-05 01:04:50 +00003180 // In this pass we also look for GEP and cast instructions that are used
3181 // across basic blocks and rewrite them to improve basic-block-at-a-time
3182 // selection.
3183 //
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003184 //
Chris Lattner90323642006-05-05 21:17:49 +00003185 bool MadeChange = true;
3186 while (MadeChange) {
3187 MadeChange = false;
Chris Lattner36b708f2005-08-18 17:35:14 +00003188 for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
3189 PHINode *PN;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003190 BasicBlock::iterator BBI;
3191 for (BBI = BB->begin(); (PN = dyn_cast<PHINode>(BBI)); ++BBI)
Chris Lattner36b708f2005-08-18 17:35:14 +00003192 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3193 if (isa<Constant>(PN->getIncomingValue(i)))
3194 SplitCriticalEdge(PN->getIncomingBlock(i), BB);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003195
Chris Lattner7e598092006-05-05 01:04:50 +00003196 for (BasicBlock::iterator E = BB->end(); BBI != E; ) {
3197 Instruction *I = BBI++;
3198 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
Chris Lattner90323642006-05-05 21:17:49 +00003199 MadeChange |= OptimizeGEPExpression(GEPI, TLI.getTargetData());
Chris Lattner7e598092006-05-05 01:04:50 +00003200 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
3201 // If this is a noop copy, sink it into user blocks to reduce the number
3202 // of virtual registers that must be created and coallesced.
3203 MVT::ValueType SrcVT = TLI.getValueType(CI->getOperand(0)->getType());
3204 MVT::ValueType DstVT = TLI.getValueType(CI->getType());
3205
3206 // This is an fp<->int conversion?
3207 if (MVT::isInteger(SrcVT) != MVT::isInteger(DstVT))
3208 continue;
3209
3210 // If this is an extension, it will be a zero or sign extension, which
3211 // isn't a noop.
3212 if (SrcVT < DstVT) continue;
3213
3214 // If these values will be promoted, find out what they will be promoted
3215 // to. This helps us consider truncates on PPC as noop copies when they
3216 // are.
3217 if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote)
3218 SrcVT = TLI.getTypeToTransformTo(SrcVT);
3219 if (TLI.getTypeAction(DstVT) == TargetLowering::Promote)
3220 DstVT = TLI.getTypeToTransformTo(DstVT);
3221
3222 // If, after promotion, these are the same types, this is a noop copy.
3223 if (SrcVT == DstVT)
Chris Lattner90323642006-05-05 21:17:49 +00003224 MadeChange |= OptimizeNoopCopyExpression(CI);
Chris Lattner7e598092006-05-05 01:04:50 +00003225 }
3226 }
Chris Lattner36b708f2005-08-18 17:35:14 +00003227 }
Chris Lattner90323642006-05-05 21:17:49 +00003228 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003229
Chris Lattner1c08c712005-01-07 07:47:53 +00003230 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
3231
3232 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
3233 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00003234
Chris Lattner1c08c712005-01-07 07:47:53 +00003235 return true;
3236}
3237
3238
Chris Lattnerddb870b2005-01-13 17:59:43 +00003239SDOperand SelectionDAGISel::
3240CopyValueToVirtualRegister(SelectionDAGLowering &SDL, Value *V, unsigned Reg) {
Chris Lattnerf1fdaca2005-01-11 22:03:46 +00003241 SDOperand Op = SDL.getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00003242 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003243 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00003244 "Copy from a reg to the same reg!");
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003245
3246 // If this type is not legal, we must make sure to not create an invalid
3247 // register use.
3248 MVT::ValueType SrcVT = Op.getValueType();
3249 MVT::ValueType DestVT = TLI.getTypeToTransformTo(SrcVT);
3250 SelectionDAG &DAG = SDL.DAG;
3251 if (SrcVT == DestVT) {
3252 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
Chris Lattner1c6191f2006-03-21 19:20:37 +00003253 } else if (SrcVT == MVT::Vector) {
Chris Lattner70c2a612006-03-31 02:06:56 +00003254 // Handle copies from generic vectors to registers.
3255 MVT::ValueType PTyElementVT, PTyLegalElementVT;
3256 unsigned NE = TLI.getPackedTypeBreakdown(cast<PackedType>(V->getType()),
3257 PTyElementVT, PTyLegalElementVT);
Chris Lattner1c6191f2006-03-21 19:20:37 +00003258
Chris Lattner70c2a612006-03-31 02:06:56 +00003259 // Insert a VBIT_CONVERT of the input vector to a "N x PTyElementVT"
3260 // MVT::Vector type.
3261 Op = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Op,
3262 DAG.getConstant(NE, MVT::i32),
3263 DAG.getValueType(PTyElementVT));
Chris Lattner1c6191f2006-03-21 19:20:37 +00003264
Chris Lattner70c2a612006-03-31 02:06:56 +00003265 // Loop over all of the elements of the resultant vector,
3266 // VEXTRACT_VECTOR_ELT'ing them, converting them to PTyLegalElementVT, then
3267 // copying them into output registers.
3268 std::vector<SDOperand> OutChains;
3269 SDOperand Root = SDL.getRoot();
3270 for (unsigned i = 0; i != NE; ++i) {
3271 SDOperand Elt = DAG.getNode(ISD::VEXTRACT_VECTOR_ELT, PTyElementVT,
3272 Op, DAG.getConstant(i, MVT::i32));
3273 if (PTyElementVT == PTyLegalElementVT) {
3274 // Elements are legal.
3275 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3276 } else if (PTyLegalElementVT > PTyElementVT) {
3277 // Elements are promoted.
3278 if (MVT::isFloatingPoint(PTyLegalElementVT))
3279 Elt = DAG.getNode(ISD::FP_EXTEND, PTyLegalElementVT, Elt);
3280 else
3281 Elt = DAG.getNode(ISD::ANY_EXTEND, PTyLegalElementVT, Elt);
3282 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3283 } else {
3284 // Elements are expanded.
3285 // The src value is expanded into multiple registers.
3286 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
3287 Elt, DAG.getConstant(0, MVT::i32));
3288 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
3289 Elt, DAG.getConstant(1, MVT::i32));
3290 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Lo));
3291 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Hi));
3292 }
Chris Lattner1c6191f2006-03-21 19:20:37 +00003293 }
Chris Lattner70c2a612006-03-31 02:06:56 +00003294 return DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003295 } else if (SrcVT < DestVT) {
3296 // The src value is promoted to the register.
Chris Lattnerfae59b92005-08-17 06:06:25 +00003297 if (MVT::isFloatingPoint(SrcVT))
3298 Op = DAG.getNode(ISD::FP_EXTEND, DestVT, Op);
3299 else
Chris Lattnerfab08872005-09-02 00:19:37 +00003300 Op = DAG.getNode(ISD::ANY_EXTEND, DestVT, Op);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003301 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
3302 } else {
3303 // The src value is expanded into multiple registers.
3304 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
3305 Op, DAG.getConstant(0, MVT::i32));
3306 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
3307 Op, DAG.getConstant(1, MVT::i32));
3308 Op = DAG.getCopyToReg(SDL.getRoot(), Reg, Lo);
3309 return DAG.getCopyToReg(Op, Reg+1, Hi);
3310 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003311}
3312
Chris Lattner068a81e2005-01-17 17:15:02 +00003313void SelectionDAGISel::
3314LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL,
3315 std::vector<SDOperand> &UnorderedChains) {
3316 // If this is the entry block, emit arguments.
3317 Function &F = *BB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00003318 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattnerbf209482005-10-30 19:42:35 +00003319 SDOperand OldRoot = SDL.DAG.getRoot();
3320 std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
Chris Lattner068a81e2005-01-17 17:15:02 +00003321
Chris Lattnerbf209482005-10-30 19:42:35 +00003322 unsigned a = 0;
3323 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
3324 AI != E; ++AI, ++a)
3325 if (!AI->use_empty()) {
3326 SDL.setValue(AI, Args[a]);
Evan Chengf7179bb2006-04-27 08:29:42 +00003327
Chris Lattnerbf209482005-10-30 19:42:35 +00003328 // If this argument is live outside of the entry block, insert a copy from
3329 // whereever we got it to the vreg that other BB's will reference it as.
3330 if (FuncInfo.ValueMap.count(AI)) {
3331 SDOperand Copy =
3332 CopyValueToVirtualRegister(SDL, AI, FuncInfo.ValueMap[AI]);
3333 UnorderedChains.push_back(Copy);
3334 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00003335 }
Chris Lattnerbf209482005-10-30 19:42:35 +00003336
Chris Lattnerbf209482005-10-30 19:42:35 +00003337 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner96645412006-05-16 06:10:58 +00003338 // FIXME: this should insert code into the DAG!
Chris Lattnerbf209482005-10-30 19:42:35 +00003339 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00003340}
3341
Chris Lattner1c08c712005-01-07 07:47:53 +00003342void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
3343 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00003344 FunctionLoweringInfo &FuncInfo) {
Chris Lattner1c08c712005-01-07 07:47:53 +00003345 SelectionDAGLowering SDL(DAG, TLI, FuncInfo);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003346
3347 std::vector<SDOperand> UnorderedChains;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003348
Chris Lattnerbf209482005-10-30 19:42:35 +00003349 // Lower any arguments needed in this block if this is the entry block.
3350 if (LLVMBB == &LLVMBB->getParent()->front())
3351 LowerArguments(LLVMBB, SDL, UnorderedChains);
Chris Lattner1c08c712005-01-07 07:47:53 +00003352
3353 BB = FuncInfo.MBBMap[LLVMBB];
3354 SDL.setCurrentBasicBlock(BB);
3355
3356 // Lower all of the non-terminator instructions.
3357 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
3358 I != E; ++I)
3359 SDL.visit(*I);
Nate Begemanf15485a2006-03-27 01:32:24 +00003360
Chris Lattner1c08c712005-01-07 07:47:53 +00003361 // Ensure that all instructions which are used outside of their defining
3362 // blocks are available as virtual registers.
3363 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Chris Lattnerf1fdaca2005-01-11 22:03:46 +00003364 if (!I->use_empty() && !isa<PHINode>(I)) {
Chris Lattneree749d72005-01-09 01:16:24 +00003365 std::map<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00003366 if (VMI != FuncInfo.ValueMap.end())
Chris Lattnerddb870b2005-01-13 17:59:43 +00003367 UnorderedChains.push_back(
3368 CopyValueToVirtualRegister(SDL, I, VMI->second));
Chris Lattner1c08c712005-01-07 07:47:53 +00003369 }
3370
3371 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
3372 // ensure constants are generated when needed. Remember the virtual registers
3373 // that need to be added to the Machine PHI nodes as input. We cannot just
3374 // directly add them, because expansion might result in multiple MBB's for one
3375 // BB. As such, the start of the BB might correspond to a different MBB than
3376 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00003377 //
Chris Lattner1c08c712005-01-07 07:47:53 +00003378
3379 // Emit constants only once even if used by multiple PHI nodes.
3380 std::map<Constant*, unsigned> ConstantsOut;
3381
3382 // Check successor nodes PHI nodes that expect a constant to be available from
3383 // this block.
3384 TerminatorInst *TI = LLVMBB->getTerminator();
3385 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
3386 BasicBlock *SuccBB = TI->getSuccessor(succ);
3387 MachineBasicBlock::iterator MBBI = FuncInfo.MBBMap[SuccBB]->begin();
3388 PHINode *PN;
3389
3390 // At this point we know that there is a 1-1 correspondence between LLVM PHI
3391 // nodes and Machine PHI nodes, but the incoming operands have not been
3392 // emitted yet.
3393 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattnerf44fd882005-01-07 21:34:19 +00003394 (PN = dyn_cast<PHINode>(I)); ++I)
3395 if (!PN->use_empty()) {
3396 unsigned Reg;
3397 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
3398 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
3399 unsigned &RegOut = ConstantsOut[C];
3400 if (RegOut == 0) {
3401 RegOut = FuncInfo.CreateRegForValue(C);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003402 UnorderedChains.push_back(
3403 CopyValueToVirtualRegister(SDL, C, RegOut));
Chris Lattnerf44fd882005-01-07 21:34:19 +00003404 }
3405 Reg = RegOut;
3406 } else {
3407 Reg = FuncInfo.ValueMap[PHIOp];
Chris Lattneree749d72005-01-09 01:16:24 +00003408 if (Reg == 0) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003409 assert(isa<AllocaInst>(PHIOp) &&
Chris Lattneree749d72005-01-09 01:16:24 +00003410 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
3411 "Didn't codegen value into a register!??");
3412 Reg = FuncInfo.CreateRegForValue(PHIOp);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003413 UnorderedChains.push_back(
3414 CopyValueToVirtualRegister(SDL, PHIOp, Reg));
Chris Lattneree749d72005-01-09 01:16:24 +00003415 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003416 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003417
Chris Lattnerf44fd882005-01-07 21:34:19 +00003418 // Remember that this register needs to added to the machine PHI node as
3419 // the input for this MBB.
Chris Lattner7e021512006-03-31 02:12:18 +00003420 MVT::ValueType VT = TLI.getValueType(PN->getType());
3421 unsigned NumElements;
3422 if (VT != MVT::Vector)
3423 NumElements = TLI.getNumElements(VT);
3424 else {
3425 MVT::ValueType VT1,VT2;
3426 NumElements =
3427 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
3428 VT1, VT2);
3429 }
Chris Lattnerf44fd882005-01-07 21:34:19 +00003430 for (unsigned i = 0, e = NumElements; i != e; ++i)
3431 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
Chris Lattner1c08c712005-01-07 07:47:53 +00003432 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003433 }
3434 ConstantsOut.clear();
3435
Chris Lattnerddb870b2005-01-13 17:59:43 +00003436 // Turn all of the unordered chains into one factored node.
Chris Lattner5a6c6d92005-01-13 19:53:14 +00003437 if (!UnorderedChains.empty()) {
Chris Lattner7436b572005-11-09 05:03:03 +00003438 SDOperand Root = SDL.getRoot();
3439 if (Root.getOpcode() != ISD::EntryToken) {
3440 unsigned i = 0, e = UnorderedChains.size();
3441 for (; i != e; ++i) {
3442 assert(UnorderedChains[i].Val->getNumOperands() > 1);
3443 if (UnorderedChains[i].Val->getOperand(0) == Root)
3444 break; // Don't add the root if we already indirectly depend on it.
3445 }
3446
3447 if (i == e)
3448 UnorderedChains.push_back(Root);
3449 }
Chris Lattnerddb870b2005-01-13 17:59:43 +00003450 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, UnorderedChains));
3451 }
3452
Chris Lattner1c08c712005-01-07 07:47:53 +00003453 // Lower the terminator after the copies are emitted.
3454 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00003455
Nate Begemanf15485a2006-03-27 01:32:24 +00003456 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00003457 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00003458 SwitchCases.clear();
3459 SwitchCases = SDL.SwitchCases;
Nate Begeman37efe672006-04-22 18:53:45 +00003460 JT = SDL.JT;
Nate Begemanf15485a2006-03-27 01:32:24 +00003461
Chris Lattnera651cf62005-01-17 19:43:36 +00003462 // Make sure the root of the DAG is up-to-date.
3463 DAG.setRoot(SDL.getRoot());
Chris Lattner1c08c712005-01-07 07:47:53 +00003464}
3465
Nate Begemanf15485a2006-03-27 01:32:24 +00003466void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Chris Lattneraf21d552005-10-10 16:47:10 +00003467 // Run the DAG combiner in pre-legalize mode.
3468 DAG.Combine(false);
Nate Begeman2300f552005-09-07 00:15:36 +00003469
Chris Lattner1c08c712005-01-07 07:47:53 +00003470 DEBUG(std::cerr << "Lowered selection DAG:\n");
3471 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003472
Chris Lattner1c08c712005-01-07 07:47:53 +00003473 // Second step, hack on the DAG until it only uses operations and types that
3474 // the target supports.
Chris Lattnerac9dc082005-01-23 04:36:26 +00003475 DAG.Legalize();
Nate Begemanf15485a2006-03-27 01:32:24 +00003476
Chris Lattner1c08c712005-01-07 07:47:53 +00003477 DEBUG(std::cerr << "Legalized selection DAG:\n");
3478 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003479
Chris Lattneraf21d552005-10-10 16:47:10 +00003480 // Run the DAG combiner in post-legalize mode.
3481 DAG.Combine(true);
Nate Begeman2300f552005-09-07 00:15:36 +00003482
Evan Chenga9c20912006-01-21 02:32:06 +00003483 if (ViewISelDAGs) DAG.viewGraph();
Evan Cheng552c4a82006-04-28 02:09:19 +00003484
Chris Lattnera33ef482005-03-30 01:10:47 +00003485 // Third, instruction select all of the operations to machine code, adding the
3486 // code to the MachineBasicBlock.
Chris Lattner1c08c712005-01-07 07:47:53 +00003487 InstructionSelectBasicBlock(DAG);
Nate Begemanf15485a2006-03-27 01:32:24 +00003488
Chris Lattner1c08c712005-01-07 07:47:53 +00003489 DEBUG(std::cerr << "Selected machine code:\n");
3490 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003491}
Chris Lattner1c08c712005-01-07 07:47:53 +00003492
Nate Begemanf15485a2006-03-27 01:32:24 +00003493void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
3494 FunctionLoweringInfo &FuncInfo) {
3495 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
3496 {
3497 SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3498 CurDAG = &DAG;
3499
3500 // First step, lower LLVM code to some DAG. This DAG may use operations and
3501 // types that are not supported by the target.
3502 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
3503
3504 // Second step, emit the lowered DAG as machine code.
3505 CodeGenAndEmitDAG(DAG);
3506 }
3507
Chris Lattnera33ef482005-03-30 01:10:47 +00003508 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +00003509 // PHI nodes in successors.
Nate Begeman37efe672006-04-22 18:53:45 +00003510 if (SwitchCases.empty() && JT.Reg == 0) {
Nate Begemanf15485a2006-03-27 01:32:24 +00003511 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
3512 MachineInstr *PHI = PHINodesToUpdate[i].first;
3513 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3514 "This is not a machine PHI node that we are updating!");
3515 PHI->addRegOperand(PHINodesToUpdate[i].second);
3516 PHI->addMachineBasicBlockOperand(BB);
3517 }
3518 return;
Chris Lattner1c08c712005-01-07 07:47:53 +00003519 }
Nate Begemanf15485a2006-03-27 01:32:24 +00003520
Nate Begeman9453eea2006-04-23 06:26:20 +00003521 // If the JumpTable record is filled in, then we need to emit a jump table.
3522 // Updating the PHI nodes is tricky in this case, since we need to determine
3523 // whether the PHI is a successor of the range check MBB or the jump table MBB
Nate Begeman37efe672006-04-22 18:53:45 +00003524 if (JT.Reg) {
3525 assert(SwitchCases.empty() && "Cannot have jump table and lowered switch");
3526 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3527 CurDAG = &SDAG;
3528 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
Nate Begeman9453eea2006-04-23 06:26:20 +00003529 MachineBasicBlock *RangeBB = BB;
Nate Begeman37efe672006-04-22 18:53:45 +00003530 // Set the current basic block to the mbb we wish to insert the code into
3531 BB = JT.MBB;
3532 SDL.setCurrentBasicBlock(BB);
3533 // Emit the code
3534 SDL.visitJumpTable(JT);
3535 SDAG.setRoot(SDL.getRoot());
3536 CodeGenAndEmitDAG(SDAG);
3537 // Update PHI Nodes
3538 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3539 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3540 MachineBasicBlock *PHIBB = PHI->getParent();
3541 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3542 "This is not a machine PHI node that we are updating!");
Nate Begemanf4360a42006-05-03 03:48:02 +00003543 if (PHIBB == JT.Default) {
Nate Begeman37efe672006-04-22 18:53:45 +00003544 PHI->addRegOperand(PHINodesToUpdate[pi].second);
Nate Begemanf4360a42006-05-03 03:48:02 +00003545 PHI->addMachineBasicBlockOperand(RangeBB);
3546 }
3547 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
3548 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3549 PHI->addMachineBasicBlockOperand(BB);
Nate Begeman37efe672006-04-22 18:53:45 +00003550 }
3551 }
3552 return;
3553 }
3554
Nate Begemanf15485a2006-03-27 01:32:24 +00003555 // If we generated any switch lowering information, build and codegen any
3556 // additional DAGs necessary.
3557 for(unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
3558 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3559 CurDAG = &SDAG;
3560 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
3561 // Set the current basic block to the mbb we wish to insert the code into
3562 BB = SwitchCases[i].ThisBB;
3563 SDL.setCurrentBasicBlock(BB);
3564 // Emit the code
3565 SDL.visitSwitchCase(SwitchCases[i]);
3566 SDAG.setRoot(SDL.getRoot());
3567 CodeGenAndEmitDAG(SDAG);
3568 // Iterate over the phi nodes, if there is a phi node in a successor of this
3569 // block (for instance, the default block), then add a pair of operands to
3570 // the phi node for this block, as if we were coming from the original
3571 // BB before switch expansion.
3572 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3573 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3574 MachineBasicBlock *PHIBB = PHI->getParent();
3575 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3576 "This is not a machine PHI node that we are updating!");
3577 if (PHIBB == SwitchCases[i].LHSBB || PHIBB == SwitchCases[i].RHSBB) {
3578 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3579 PHI->addMachineBasicBlockOperand(BB);
3580 }
3581 }
Chris Lattnera33ef482005-03-30 01:10:47 +00003582 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003583}
Evan Chenga9c20912006-01-21 02:32:06 +00003584
3585//===----------------------------------------------------------------------===//
3586/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
3587/// target node in the graph.
3588void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
3589 if (ViewSchedDAGs) DAG.viewGraph();
Evan Cheng4ef10862006-01-23 07:01:07 +00003590 ScheduleDAG *SL = NULL;
3591
3592 switch (ISHeuristic) {
3593 default: assert(0 && "Unrecognized scheduling heuristic");
Evan Chengee00a1d2006-05-13 05:53:47 +00003594 case defaultScheduling:
Evan Cheng3f239522006-01-25 09:12:57 +00003595 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency)
Chris Lattner4a1cd9c2006-04-21 17:16:16 +00003596 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
3597 else {
3598 assert(TLI.getSchedulingPreference() ==
3599 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Evan Cheng3f239522006-01-25 09:12:57 +00003600 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattner4a1cd9c2006-04-21 17:16:16 +00003601 }
Evan Cheng3f239522006-01-25 09:12:57 +00003602 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003603 case noScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003604 SL = createBFS_DAGScheduler(DAG, BB);
3605 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003606 case simpleScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003607 SL = createSimpleDAGScheduler(false, DAG, BB);
3608 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003609 case simpleNoItinScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003610 SL = createSimpleDAGScheduler(true, DAG, BB);
Evan Cheng4ef10862006-01-23 07:01:07 +00003611 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003612 case listSchedulingBURR:
Evan Chengf0f9c902006-01-23 08:26:10 +00003613 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattnera5de4842006-03-05 21:10:33 +00003614 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003615 case listSchedulingTDRR:
Evan Chenge165a782006-05-11 23:55:42 +00003616 SL = createTDRRListDAGScheduler(DAG, BB);
3617 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003618 case listSchedulingTD:
Chris Lattnerb0d21ef2006-03-08 04:25:59 +00003619 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
Chris Lattnera5de4842006-03-05 21:10:33 +00003620 break;
Evan Cheng4ef10862006-01-23 07:01:07 +00003621 }
Chris Lattnera3818e62006-01-21 19:12:11 +00003622 BB = SL->Run();
Evan Chengcccf1232006-02-04 06:49:00 +00003623 delete SL;
Evan Chenga9c20912006-01-21 02:32:06 +00003624}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003625
Chris Lattnerb0d21ef2006-03-08 04:25:59 +00003626HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
3627 return new HazardRecognizer();
Chris Lattner03fc53c2006-03-06 00:22:00 +00003628}
3629
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003630/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
3631/// by tblgen. Others should not call it.
3632void SelectionDAGISel::
3633SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
3634 std::vector<SDOperand> InOps;
3635 std::swap(InOps, Ops);
3636
3637 Ops.push_back(InOps[0]); // input chain.
3638 Ops.push_back(InOps[1]); // input asm string.
3639
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003640 unsigned i = 2, e = InOps.size();
3641 if (InOps[e-1].getValueType() == MVT::Flag)
3642 --e; // Don't process a flag operand if it is here.
3643
3644 while (i != e) {
3645 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
3646 if ((Flags & 7) != 4 /*MEM*/) {
3647 // Just skip over this operand, copying the operands verbatim.
3648 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
3649 i += (Flags >> 3) + 1;
3650 } else {
3651 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
3652 // Otherwise, this is a memory operand. Ask the target to select it.
3653 std::vector<SDOperand> SelOps;
3654 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
3655 std::cerr << "Could not match memory address. Inline asm failure!\n";
3656 exit(1);
3657 }
3658
3659 // Add this to the output node.
3660 Ops.push_back(DAG.getConstant(4/*MEM*/ | (SelOps.size() << 3), MVT::i32));
3661 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
3662 i += 2;
3663 }
3664 }
3665
3666 // Add the flag input back if present.
3667 if (e != InOps.size())
3668 Ops.push_back(InOps.back());
3669}