blob: cc34d5196976f54ccab398ac3a21e8d599f156c6 [file] [log] [blame]
Chris Lattner7a60d912005-01-07 07:47:53 +00001//===-- SelectionDAGISel.cpp - Implement the SelectionDAGISel class -------===//
Misha Brukman835702a2005-04-21 22:36:52 +00002//
Chris Lattner7a60d912005-01-07 07:47:53 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukman835702a2005-04-21 22:36:52 +00007//
Chris Lattner7a60d912005-01-07 07:47:53 +00008//===----------------------------------------------------------------------===//
9//
10// This implements the SelectionDAGISel class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
15#include "llvm/CodeGen/SelectionDAGISel.h"
Evan Cheng739a6a42006-01-21 02:32:06 +000016#include "llvm/CodeGen/ScheduleDAG.h"
Chris Lattner2e77db62005-05-13 18:50:42 +000017#include "llvm/CallingConv.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000018#include "llvm/Constants.h"
19#include "llvm/DerivedTypes.h"
20#include "llvm/Function.h"
Chris Lattner435b4022005-11-29 06:21:05 +000021#include "llvm/GlobalVariable.h"
Chris Lattner476e67b2006-01-26 22:24:51 +000022#include "llvm/InlineAsm.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000023#include "llvm/Instructions.h"
24#include "llvm/Intrinsics.h"
Jim Laskeya8bdac82006-03-23 18:06:46 +000025#include "llvm/IntrinsicInst.h"
Chris Lattnerf2b62f32005-11-16 07:22:30 +000026#include "llvm/CodeGen/IntrinsicLowering.h"
Jim Laskey219d5592006-01-04 22:28:25 +000027#include "llvm/CodeGen/MachineDebugInfo.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000028#include "llvm/CodeGen/MachineFunction.h"
29#include "llvm/CodeGen/MachineFrameInfo.h"
Nate Begeman4ca2ea52006-04-22 18:53:45 +000030#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000031#include "llvm/CodeGen/MachineInstrBuilder.h"
32#include "llvm/CodeGen/SelectionDAG.h"
33#include "llvm/CodeGen/SSARegMap.h"
Chris Lattnerd4382f02005-09-13 19:30:54 +000034#include "llvm/Target/MRegisterInfo.h"
Chris Lattner7a60d912005-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 Lattnerc9950c12005-08-17 06:37:43 +000040#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattnere05a4612005-01-12 03:41:21 +000041#include "llvm/Support/CommandLine.h"
Chris Lattner43535a12005-11-09 04:45:33 +000042#include "llvm/Support/MathExtras.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000043#include "llvm/Support/Debug.h"
44#include <map>
Chris Lattner1558fc62006-02-01 18:59:47 +000045#include <set>
Chris Lattner7a60d912005-01-07 07:47:53 +000046#include <iostream>
Jeff Cohen83c22e02006-02-24 02:52:40 +000047#include <algorithm>
Chris Lattner7a60d912005-01-07 07:47:53 +000048using namespace llvm;
49
Chris Lattner975f5c92005-09-01 18:44:10 +000050#ifndef NDEBUG
Chris Lattnere05a4612005-01-12 03:41:21 +000051static cl::opt<bool>
Evan Cheng739a6a42006-01-21 02:32:06 +000052ViewISelDAGs("view-isel-dags", cl::Hidden,
53 cl::desc("Pop up a window to show isel dags as they are selected"));
54static cl::opt<bool>
55ViewSchedDAGs("view-sched-dags", cl::Hidden,
56 cl::desc("Pop up a window to show sched dags as they are processed"));
Chris Lattnere05a4612005-01-12 03:41:21 +000057#else
Chris Lattneref598052006-04-02 03:07:27 +000058static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0;
Chris Lattnere05a4612005-01-12 03:41:21 +000059#endif
60
Evan Chengd1915cf2006-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 Chengc1e1d972006-01-23 07:01:07 +000072namespace {
Evan Chengd1915cf2006-05-13 05:53:47 +000073 cl::opt<SchedHeuristics>
Evan Chengc1e1d972006-01-23 07:01:07 +000074 ISHeuristic(
75 "sched",
76 cl::desc("Choose scheduling style"),
Evan Chengd1915cf2006-05-13 05:53:47 +000077 cl::init(defaultScheduling),
Evan Chengc1e1d972006-01-23 07:01:07 +000078 cl::values(
Evan Chengd1915cf2006-05-13 05:53:47 +000079 clEnumValN(defaultScheduling, "default",
Evan Chenga6eff8a2006-01-25 09:12:57 +000080 "Target preferred scheduling style"),
Evan Chengd1915cf2006-05-13 05:53:47 +000081 clEnumValN(noScheduling, "none",
Jim Laskeyb8566fa2006-01-23 13:34:04 +000082 "No scheduling: breadth first sequencing"),
Evan Chengd1915cf2006-05-13 05:53:47 +000083 clEnumValN(simpleScheduling, "simple",
Evan Chengc1e1d972006-01-23 07:01:07 +000084 "Simple two pass scheduling: minimize critical path "
85 "and maximize processor utilization"),
Evan Chengd1915cf2006-05-13 05:53:47 +000086 clEnumValN(simpleNoItinScheduling, "simple-noitin",
Evan Chengc1e1d972006-01-23 07:01:07 +000087 "Simple two pass scheduling: Same as simple "
88 "except using generic latency"),
Evan Chengd1915cf2006-05-13 05:53:47 +000089 clEnumValN(listSchedulingBURR, "list-burr",
Evan Chengd38c22b2006-05-11 23:55:42 +000090 "Bottom-up register reduction list scheduling"),
Evan Chengd1915cf2006-05-13 05:53:47 +000091 clEnumValN(listSchedulingTDRR, "list-tdrr",
Evan Chengd38c22b2006-05-11 23:55:42 +000092 "Top-down register reduction list scheduling"),
Evan Chengd1915cf2006-05-13 05:53:47 +000093 clEnumValN(listSchedulingTD, "list-td",
Chris Lattner47639db2006-03-06 00:22:00 +000094 "Top-down list scheduler"),
Evan Chengc1e1d972006-01-23 07:01:07 +000095 clEnumValEnd));
96} // namespace
97
Chris Lattner6f87d182006-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 Lattnere7c0ffb2006-02-23 20:06:57 +0000132 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattner571d9642006-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 Lattnere7c0ffb2006-02-23 20:06:57 +0000138 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattner571d9642006-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 Lattnere7c0ffb2006-02-23 20:06:57 +0000144 std::vector<SDOperand> &Ops) const;
Chris Lattner6f87d182006-02-22 22:37:12 +0000145 };
146}
Evan Chengc1e1d972006-01-23 07:01:07 +0000147
Chris Lattner7a60d912005-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 Lattnerd0061952005-01-08 19:52:31 +0000152 class FunctionLoweringInfo {
153 public:
Chris Lattner7a60d912005-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 Brukman835702a2005-04-21 22:36:52 +0000177
Chris Lattner49409cb2006-03-16 19:51:18 +0000178 unsigned CreateRegForValue(const Value *V);
179
Chris Lattner7a60d912005-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 Begemaned728c12006-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 Lattner7a60d912005-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 Begemaned728c12006-03-27 01:32:24 +0000195 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
196 isa<SwitchInst>(*UI))
Chris Lattner7a60d912005-01-07 07:47:53 +0000197 return true;
198 return false;
199}
200
Chris Lattner6871b232005-10-30 19:42:35 +0000201/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemaned728c12006-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 Lattner6871b232005-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 Begemaned728c12006-03-27 01:32:24 +0000207 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattner6871b232005-10-30 19:42:35 +0000208 return false; // Use not in entry block.
209 return true;
210}
211
Chris Lattner7a60d912005-01-07 07:47:53 +0000212FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukman835702a2005-04-21 22:36:52 +0000213 Function &fn, MachineFunction &mf)
Chris Lattner7a60d912005-01-07 07:47:53 +0000214 : TLI(tli), Fn(fn), MF(mf), RegMap(MF.getSSARegMap()) {
215
Chris Lattner6871b232005-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 Lattner7a60d912005-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 Cohenf8a5e5ae2005-10-01 03:57:14 +0000226 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner7a60d912005-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 Anderson20a631f2006-05-03 01:29:57 +0000231 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
Nate Begeman3ee3e692005-11-06 09:00:38 +0000232 unsigned Align =
Owen Anderson20a631f2006-05-03 01:29:57 +0000233 std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begeman3ee3e692005-11-06 09:00:38 +0000234 AI->getAlignment());
Chris Lattnercbefe722005-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 Lattner8396a302005-10-18 22:11:42 +0000243 TySize *= CUI->getValue(); // Get total allocated size.
Chris Lattner0a71a9a2005-10-18 22:14:06 +0000244 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner7a60d912005-01-07 07:47:53 +0000245 StaticAllocaMap[AI] =
Chris Lattnerd0061952005-01-08 19:52:31 +0000246 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
Chris Lattner7a60d912005-01-07 07:47:53 +0000247 }
248
Jeff Cohenf8a5e5ae2005-10-01 03:57:14 +0000249 for (; BB != EB; ++BB)
250 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner7a60d912005-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 Cohenf8a5e5ae2005-10-01 03:57:14 +0000259 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Chris Lattner7a60d912005-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 Lattner8ea875f2005-01-07 21:34:19 +0000268 (PN = dyn_cast<PHINode>(I)); ++I)
269 if (!PN->use_empty()) {
Chris Lattner5fe1f542006-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 Lattner8ea875f2005-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 Lattner7a60d912005-01-07 07:47:53 +0000285 }
286}
287
Chris Lattner49409cb2006-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 Lattner7ececaa2006-03-16 23:05:19 +0000311 if (NumElts == 1)
312 VT = EltTy;
313 else
314 VT = getVectorType(EltTy, NumElts);
Chris Lattner49409cb2006-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 Lattner7a60d912005-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 Lattner4d9651c2005-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 Begemaned728c12006-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 Lattner7a60d912005-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 Anderson20a631f2006-05-03 01:29:57 +0000400 const TargetData *TD;
Chris Lattner7a60d912005-01-07 07:47:53 +0000401
Nate Begemaned728c12006-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 Begeman4ca2ea52006-04-22 18:53:45 +0000405 SelectionDAGISel::JumpTable JT;
Nate Begemaned728c12006-03-27 01:32:24 +0000406
Chris Lattner7a60d912005-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 Brukman835702a2005-04-21 22:36:52 +0000412 FunctionLoweringInfo &funcinfo)
Chris Lattner7a60d912005-01-07 07:47:53 +0000413 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()),
Nate Begeman866b4b42006-04-23 06:26:20 +0000414 JT(0,0,0,0), FuncInfo(funcinfo) {
Chris Lattner7a60d912005-01-07 07:47:53 +0000415 }
416
Chris Lattner4108bb02005-01-17 19:43:36 +0000417 /// getRoot - Return the current virtual root of the Selection DAG.
418 ///
419 SDOperand getRoot() {
Chris Lattner4d9651c2005-01-17 22:19:26 +0000420 if (PendingLoads.empty())
421 return DAG.getRoot();
Misha Brukman835702a2005-04-21 22:36:52 +0000422
Chris Lattner4d9651c2005-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 Lattner4108bb02005-01-17 19:43:36 +0000435 }
436
Chris Lattner7a60d912005-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 Lattner4024c002006-03-15 22:19:46 +0000452 SDOperand getLoadFrom(const Type *Ty, SDOperand Ptr,
453 SDOperand SrcValue, SDOperand Root,
454 bool isVolatile);
Chris Lattner7a60d912005-01-07 07:47:53 +0000455
456 SDOperand getIntPtrConstant(uint64_t Val) {
457 return DAG.getConstant(Val, TLI.getPointerTy());
458 }
459
Chris Lattner8471b152006-03-16 19:57:50 +0000460 SDOperand getValue(const Value *V);
Chris Lattner7a60d912005-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 Lattner1558fc62006-02-01 18:59:47 +0000467
Chris Lattner6f87d182006-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 Begemaned728c12006-03-27 01:32:24 +0000473
Chris Lattner7a60d912005-01-07 07:47:53 +0000474 // Terminator instructions.
475 void visitRet(ReturnInst &I);
476 void visitBr(BranchInst &I);
Nate Begemaned728c12006-03-27 01:32:24 +0000477 void visitSwitch(SwitchInst &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000478 void visitUnreachable(UnreachableInst &I) { /* noop */ }
479
Nate Begemaned728c12006-03-27 01:32:24 +0000480 // Helper for visitSwitch
481 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000482 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Nate Begemaned728c12006-03-27 01:32:24 +0000483
Chris Lattner7a60d912005-01-07 07:47:53 +0000484 // These all get lowered before this pass.
Chris Lattner7a60d912005-01-07 07:47:53 +0000485 void visitInvoke(InvokeInst &I) { assert(0 && "TODO"); }
486 void visitUnwind(UnwindInst &I) { assert(0 && "TODO"); }
487
Nate Begemanb2e089c2005-11-19 00:36:38 +0000488 void visitBinary(User &I, unsigned IntOp, unsigned FPOp, unsigned VecOp);
Nate Begeman127321b2005-11-18 07:42:56 +0000489 void visitShift(User &I, unsigned Opcode);
Nate Begemanb2e089c2005-11-19 00:36:38 +0000490 void visitAdd(User &I) {
491 visitBinary(I, ISD::ADD, ISD::FADD, ISD::VADD);
Chris Lattner6f3b5772005-09-28 22:28:18 +0000492 }
Chris Lattnerf68fd0b2005-04-02 05:04:50 +0000493 void visitSub(User &I);
Nate Begemanb2e089c2005-11-19 00:36:38 +0000494 void visitMul(User &I) {
495 visitBinary(I, ISD::MUL, ISD::FMUL, ISD::VMUL);
Chris Lattner6f3b5772005-09-28 22:28:18 +0000496 }
Chris Lattner7a60d912005-01-07 07:47:53 +0000497 void visitDiv(User &I) {
Chris Lattner6f3b5772005-09-28 22:28:18 +0000498 const Type *Ty = I.getType();
Evan Cheng3bf916d2006-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 Lattner7a60d912005-01-07 07:47:53 +0000502 }
503 void visitRem(User &I) {
Chris Lattner6f3b5772005-09-28 22:28:18 +0000504 const Type *Ty = I.getType();
Nate Begemanb2e089c2005-11-19 00:36:38 +0000505 visitBinary(I, Ty->isSigned() ? ISD::SREM : ISD::UREM, ISD::FREM, 0);
Chris Lattner7a60d912005-01-07 07:47:53 +0000506 }
Evan Cheng3bf916d2006-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 Begeman127321b2005-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 Lattner7a60d912005-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 Lattner67271862006-03-29 00:11:43 +0000523 void visitExtractElement(User &I);
524 void visitInsertElement(User &I);
Chris Lattner098c01e2006-04-08 04:15:24 +0000525 void visitShuffleVector(User &I);
Chris Lattner32206f52006-03-18 01:44:44 +0000526
Chris Lattner7a60d912005-01-07 07:47:53 +0000527 void visitGetElementPtr(User &I);
528 void visitCast(User &I);
529 void visitSelect(User &I);
Chris Lattner7a60d912005-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 Lattner476e67b2006-01-26 22:24:51 +0000538 void visitInlineAsm(CallInst &I);
Chris Lattnercd6f0f42005-11-09 19:44:01 +0000539 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattnerd96b09a2006-03-24 02:22:33 +0000540 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner7a60d912005-01-07 07:47:53 +0000541
Chris Lattner7a60d912005-01-07 07:47:53 +0000542 void visitVAStart(CallInst &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000543 void visitVAArg(VAArgInst &I);
544 void visitVAEnd(CallInst &I);
545 void visitVACopy(CallInst &I);
Chris Lattner58cfd792005-01-09 00:00:49 +0000546 void visitFrameReturnAddress(CallInst &I, bool isFrameAddress);
Chris Lattner7a60d912005-01-07 07:47:53 +0000547
Chris Lattner875def92005-01-11 05:56:49 +0000548 void visitMemIntrinsic(CallInst &I, unsigned Op);
Chris Lattner7a60d912005-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 Lattner8471b152006-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 Lattnerc16b05e2006-03-19 00:20:20 +0000577 if (!isa<PackedType>(VTy))
578 return N = DAG.getNode(ISD::UNDEF, VT);
579
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000580 // Create a VBUILD_VECTOR of undef nodes.
Chris Lattnerc16b05e2006-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 Lattnerf4e1a532006-03-19 00:52:58 +0000591 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner8471b152006-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 Lattner8471b152006-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 Lattner67271862006-03-29 00:11:43 +0000603 for (unsigned i = 0; i != NumElements; ++i)
604 Ops.push_back(getValue(CP->getOperand(i)));
Chris Lattner8471b152006-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 Lattnerf4e1a532006-03-19 00:52:58 +0000615 // Create a VBUILD_VECTOR node with generic Vector type.
Chris Lattnerc16b05e2006-03-19 00:20:20 +0000616 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
617 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000618 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner8471b152006-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 Lattner5fe1f542006-03-31 02:06:56 +0000639 if (VT != MVT::Vector) {
640 MVT::ValueType DestVT = TLI.getTypeToTransformTo(VT);
Chris Lattner8471b152006-03-16 19:57:50 +0000641
Chris Lattner5fe1f542006-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 Lattner8471b152006-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 Lattner5fe1f542006-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 Lattner4a2413a2006-04-05 06:54:42 +0000658 const PackedType *PTy = cast<PackedType>(VTy);
659 unsigned NE = TLI.getPackedTypeBreakdown(PTy, PTyElementVT,
Chris Lattner5fe1f542006-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 Lattner4a2413a2006-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 Lattner8471b152006-03-16 19:57:50 +0000702 }
703
704 return N;
705}
706
707
Chris Lattner7a60d912005-01-07 07:47:53 +0000708void SelectionDAGLowering::visitRet(ReturnInst &I) {
709 if (I.getNumOperands() == 0) {
Chris Lattner4108bb02005-01-17 19:43:36 +0000710 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getRoot()));
Chris Lattner7a60d912005-01-07 07:47:53 +0000711 return;
712 }
Nate Begeman8c47c3a2006-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 Lattner7a60d912005-01-07 07:47:53 +0000728
Nate Begeman8c47c3a2006-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 Lattner7a60d912005-01-07 07:47:53 +0000735 }
Nate Begeman8c47c3a2006-01-27 21:09:22 +0000736 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, NewValues));
Chris Lattner7a60d912005-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 Begemaned728c12006-03-27 01:32:24 +0000742 CurMBB->addSuccessor(Succ0MBB);
Chris Lattner7a60d912005-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 Lattner4108bb02005-01-17 19:43:36 +0000753 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
Misha Brukman77451162005-04-22 04:01:18 +0000754 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +0000755 } else {
756 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Nate Begemaned728c12006-03-27 01:32:24 +0000757 CurMBB->addSuccessor(Succ1MBB);
Chris Lattner7a60d912005-01-07 07:47:53 +0000758
759 SDOperand Cond = getValue(I.getCondition());
Chris Lattner7a60d912005-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 Lattner4108bb02005-01-17 19:43:36 +0000763 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukman77451162005-04-22 04:01:18 +0000764 Cond, DAG.getBasicBlock(Succ0MBB)));
Chris Lattner7a60d912005-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 Lattner4108bb02005-01-17 19:43:36 +0000770 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukman77451162005-04-22 04:01:18 +0000771 Cond, DAG.getBasicBlock(Succ1MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +0000772 } else {
Chris Lattner8a98c7f2005-04-09 03:30:29 +0000773 std::vector<SDOperand> Ops;
774 Ops.push_back(getRoot());
Evan Cheng42c01c82006-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 Begemanbb01d4f2006-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 Lattner7a60d912005-01-07 07:47:53 +0000788 }
789 }
790}
791
Nate Begemaned728c12006-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 Begeman4ca2ea52006-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 Begeman4ca2ea52006-04-22 18:53:45 +0000842}
843
Nate Begemaned728c12006-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 Begeman4ca2ea52006-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 Begemaned728c12006-03-27 01:32:24 +0000882 MachineFunction *CurMF = CurMBB->getParent();
883 const BasicBlock *LLVMBB = CurMBB->getBasicBlock();
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000884 Reloc::Model Relocs = TLI.getTargetMachine().getRelocationModel();
885
Nate Begemand7a19102006-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 Begeman4ca2ea52006-04-22 18:53:45 +0000889 // FIXME: Make this work with PIC code
Nate Begeman866b4b42006-04-23 06:26:20 +0000890 if (TLI.isOperationLegal(ISD::BRIND, TLI.getPointerTy()) &&
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000891 (Relocs == Reloc::Static || Relocs == Reloc::DynamicNoPIC) &&
Nate Begemandf488392006-05-03 03:48:02 +0000892 Cases.size() > 5) {
Nate Begeman4ca2ea52006-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 Begemandf488392006-05-03 03:48:02 +0000895 double Density = (double)Cases.size() / (double)((Last - First) + 1ULL);
896
Nate Begemand7a19102006-05-08 16:51:36 +0000897 if (Density >= 0.3125) {
Nate Begeman4ca2ea52006-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 Begemandf488392006-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 Begeman4ca2ea52006-04-22 18:53:45 +0000939 std::set<MachineBasicBlock*> UniqueBBs;
940 std::vector<MachineBasicBlock*> DestBBs;
Nate Begemandf488392006-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 Begeman4ca2ea52006-04-22 18:53:45 +0000951 }
Nate Begemandf488392006-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 Begeman4ca2ea52006-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 Begeman866b4b42006-04-23 06:26:20 +0000967 JT.Default = Default;
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000968 return;
969 }
970 }
Nate Begemaned728c12006-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 Lattnerf68fd0b2005-04-02 05:04:50 +00001054void SelectionDAGLowering::visitSub(User &I) {
1055 // -0.0 - X --> fneg
Chris Lattner6f3b5772005-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 Lattner6f3b5772005-09-28 22:28:18 +00001063 }
Nate Begemanb2e089c2005-11-19 00:36:38 +00001064 visitBinary(I, ISD::SUB, ISD::FSUB, ISD::VSUB);
Chris Lattnerf68fd0b2005-04-02 05:04:50 +00001065}
1066
Nate Begemanb2e089c2005-11-19 00:36:38 +00001067void SelectionDAGLowering::visitBinary(User &I, unsigned IntOp, unsigned FPOp,
1068 unsigned VecOp) {
1069 const Type *Ty = I.getType();
Chris Lattner7a60d912005-01-07 07:47:53 +00001070 SDOperand Op1 = getValue(I.getOperand(0));
1071 SDOperand Op2 = getValue(I.getOperand(1));
Chris Lattner96c26752005-01-19 22:31:21 +00001072
Chris Lattner19baba62005-11-19 18:40:42 +00001073 if (Ty->isIntegral()) {
Nate Begemanb2e089c2005-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 Lattner32206f52006-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 Begemanb2e089c2005-11-19 00:36:38 +00001082 }
Nate Begeman127321b2005-11-18 07:42:56 +00001083}
Chris Lattner96c26752005-01-19 22:31:21 +00001084
Nate Begeman127321b2005-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 Lattner7a60d912005-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 Lattnerd47675e2005-08-09 20:20:18 +00001101 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
Chris Lattner7a60d912005-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 Lattner02274a52006-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 Lattner7a60d912005-01-07 07:47:53 +00001116}
1117
1118void SelectionDAGLowering::visitCast(User &I) {
1119 SDOperand N = getValue(I.getOperand(0));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001120 MVT::ValueType SrcVT = N.getValueType();
Chris Lattner4024c002006-03-15 22:19:46 +00001121 MVT::ValueType DestVT = TLI.getValueType(I.getType());
Chris Lattner7a60d912005-01-07 07:47:53 +00001122
Chris Lattner2f4119a2006-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 Lattner7a60d912005-01-07 07:47:53 +00001132 setValue(&I, N); // noop cast.
Chris Lattner4024c002006-03-15 22:19:46 +00001133 } else if (DestVT == MVT::i1) {
Chris Lattner2d8b55c2005-05-09 22:17:13 +00001134 // Cast to bool is a comparison against zero, not truncation to zero.
Chris Lattner4024c002006-03-15 22:19:46 +00001135 SDOperand Zero = isInteger(SrcVT) ? DAG.getConstant(0, N.getValueType()) :
Chris Lattner2d8b55c2005-05-09 22:17:13 +00001136 DAG.getConstantFP(0.0, N.getValueType());
Chris Lattnerd47675e2005-08-09 20:20:18 +00001137 setValue(&I, DAG.getSetCC(MVT::i1, N, Zero, ISD::SETNE));
Chris Lattner4024c002006-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 Lattner2a6db3c2005-01-08 08:08:56 +00001142 else if (I.getOperand(0)->getType()->isSigned())
Chris Lattner4024c002006-03-15 22:19:46 +00001143 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001144 else
Chris Lattner4024c002006-03-15 22:19:46 +00001145 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
Chris Lattnerb893d042006-03-22 22:20:49 +00001146 } else if (isFloatingPoint(DestVT)) { // Int -> FP cast
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001147 if (I.getOperand(0)->getType()->isSigned())
Chris Lattner4024c002006-03-15 22:19:46 +00001148 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001149 else
Chris Lattner4024c002006-03-15 22:19:46 +00001150 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001151 } else {
1152 assert(0 && "Unknown cast!");
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001153 }
Chris Lattner4024c002006-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 Lattner2a6db3c2005-01-08 08:08:56 +00001158 else
Chris Lattner4024c002006-03-15 22:19:46 +00001159 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001160 } else if (isInteger(DestVT)) { // FP -> Int cast.
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001161 if (I.getType()->isSigned())
Chris Lattner4024c002006-03-15 22:19:46 +00001162 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001163 else
Chris Lattner4024c002006-03-15 22:19:46 +00001164 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001165 } else {
1166 assert(0 && "Unknown cast!");
Chris Lattner4024c002006-03-15 22:19:46 +00001167 }
1168 } else {
Chris Lattner2f4119a2006-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 Lattner7a60d912005-01-07 07:47:53 +00001174 }
1175}
1176
Chris Lattner67271862006-03-29 00:11:43 +00001177void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattner32206f52006-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 Lattner29b23012006-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 Lattner32206f52006-03-18 01:44:44 +00001187}
1188
Chris Lattner67271862006-03-29 00:11:43 +00001189void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner7c0cd8c2006-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 Lattner32206f52006-03-18 01:44:44 +00001197
Chris Lattner098c01e2006-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 Lattner7a60d912005-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 Lattner7a60d912005-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 Lattner35397782005-12-05 07:10:48 +00001217 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Chris Lattner7a60d912005-01-07 07:47:53 +00001218 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
1219 if (Field) {
1220 // N = N + Offset
Owen Anderson20a631f2006-05-03 01:29:57 +00001221 uint64_t Offset = TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattner7a60d912005-01-07 07:47:53 +00001222 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Misha Brukman77451162005-04-22 04:01:18 +00001223 getIntPtrConstant(Offset));
Chris Lattner7a60d912005-01-07 07:47:53 +00001224 }
1225 Ty = StTy->getElementType(Field);
1226 } else {
1227 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner19a83992005-01-07 21:56:57 +00001228
Chris Lattner43535a12005-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 Lattner19a83992005-01-07 21:56:57 +00001232
Chris Lattner43535a12005-11-09 04:45:33 +00001233 uint64_t Offs;
1234 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Anderson20a631f2006-05-03 01:29:57 +00001235 Offs = (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattner43535a12005-11-09 04:45:33 +00001236 else
Owen Anderson20a631f2006-05-03 01:29:57 +00001237 Offs = TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattner43535a12005-11-09 04:45:33 +00001238 N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs));
1239 continue;
Chris Lattner7a60d912005-01-07 07:47:53 +00001240 }
Chris Lattner43535a12005-11-09 04:45:33 +00001241
1242 // N = N + Idx * ElementSize;
Owen Anderson20a631f2006-05-03 01:29:57 +00001243 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattner43535a12005-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 Lattner41fd6d52005-11-09 16:50:40 +00001261 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner43535a12005-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 Lattner7a60d912005-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 Anderson20a631f2006-05-03 01:29:57 +00001281 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
1282 unsigned Align = std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begeman3ee3e692005-11-06 09:00:38 +00001283 I.getAlignment());
Chris Lattner7a60d912005-01-07 07:47:53 +00001284
1285 SDOperand AllocSize = getValue(I.getArraySize());
Chris Lattnereccb73d2005-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 Lattner7a60d912005-01-07 07:47:53 +00001291
Chris Lattnereccb73d2005-01-22 23:04:37 +00001292 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner7a60d912005-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 Lattner96c262e2005-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 Lattner7a60d912005-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 Lattner7a60d912005-01-07 07:47:53 +00001326void SelectionDAGLowering::visitLoad(LoadInst &I) {
1327 SDOperand Ptr = getValue(I.getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00001328
Chris Lattner4d9651c2005-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 Lattner4024c002006-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 Begemanb2e089c2005-11-19 00:36:38 +00001344 SDOperand L;
Nate Begeman41b1cdc2005-12-06 06:18:55 +00001345 if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
Nate Begeman07890bb2005-11-22 01:29:36 +00001346 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattner32206f52006-03-18 01:44:44 +00001347 L = DAG.getVecLoad(PTy->getNumElements(), PVT, Root, Ptr, SrcValue);
Nate Begemanb2e089c2005-11-19 00:36:38 +00001348 } else {
Chris Lattner4024c002006-03-15 22:19:46 +00001349 L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SrcValue);
Nate Begemanb2e089c2005-11-19 00:36:38 +00001350 }
Chris Lattner4d9651c2005-01-17 22:19:26 +00001351
Chris Lattner4024c002006-03-15 22:19:46 +00001352 if (isVolatile)
Chris Lattner4d9651c2005-01-17 22:19:26 +00001353 DAG.setRoot(L.getValue(1));
1354 else
1355 PendingLoads.push_back(L.getValue(1));
Chris Lattner4024c002006-03-15 22:19:46 +00001356
1357 return L;
Chris Lattner7a60d912005-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 Lattnerf5675a02005-05-09 04:08:33 +00001365 DAG.setRoot(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Src, Ptr,
Andrew Lenharth2edc1882005-06-29 18:54:02 +00001366 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner7a60d912005-01-07 07:47:53 +00001367}
1368
Chris Lattnerd96b09a2006-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 Lattnera9c59156b2006-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 Lattnerd96b09a2006-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 Lattner313229c2006-03-24 22:49:42 +00001391 bool HasChain = !IntrinsicCannotAccessMemory(Intrinsic);
Chris Lattnera9c59156b2006-04-02 03:41:14 +00001392 bool OnlyLoad = HasChain && IntrinsicOnlyReadsMemory(Intrinsic);
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001393
1394 // Build the operand list.
1395 std::vector<SDOperand> Ops;
Chris Lattnera9c59156b2006-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 Lattnerd96b09a2006-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 Lattnere55d1712006-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 Lattnera9c59156b2006-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 Lattnerd96b09a2006-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 Lattnercd6f0f42005-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 Lattnerd96b09a2006-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 Lattnercd6f0f42005-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 Lattner093c1592006-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 Lattnercd6f0f42005-11-09 19:44:01 +00001504
Chris Lattner5d4e61d2005-12-13 17:40:33 +00001505 case Intrinsic::dbg_stoppoint: {
Jim Laskey5995d012006-02-11 01:01:30 +00001506 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskeya8bdac82006-03-23 18:06:46 +00001507 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001508 if (DebugInfo && SPI.getContext() && DebugInfo->Verify(SPI.getContext())) {
Jim Laskey5995d012006-02-11 01:01:30 +00001509 std::vector<SDOperand> Ops;
Chris Lattner435b4022005-11-29 06:21:05 +00001510
Jim Laskey5995d012006-02-11 01:01:30 +00001511 Ops.push_back(getRoot());
Jim Laskeya8bdac82006-03-23 18:06:46 +00001512 Ops.push_back(getValue(SPI.getLineValue()));
1513 Ops.push_back(getValue(SPI.getColumnValue()));
Chris Lattner435b4022005-11-29 06:21:05 +00001514
Jim Laskeya8bdac82006-03-23 18:06:46 +00001515 DebugInfoDesc *DD = DebugInfo->getDescFor(SPI.getContext());
Jim Laskey5995d012006-02-11 01:01:30 +00001516 assert(DD && "Not a debug information descriptor");
Jim Laskeya8bdac82006-03-23 18:06:46 +00001517 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
1518
Jim Laskey5995d012006-02-11 01:01:30 +00001519 Ops.push_back(DAG.getString(CompileUnit->getFileName()));
1520 Ops.push_back(DAG.getString(CompileUnit->getDirectory()));
1521
Jim Laskeya8bdac82006-03-23 18:06:46 +00001522 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops));
Chris Lattner5d4e61d2005-12-13 17:40:33 +00001523 }
Jim Laskeya8bdac82006-03-23 18:06:46 +00001524
Chris Lattnerf2b62f32005-11-16 07:22:30 +00001525 return 0;
Chris Lattner435b4022005-11-29 06:21:05 +00001526 }
Jim Laskeya8bdac82006-03-23 18:06:46 +00001527 case Intrinsic::dbg_region_start: {
1528 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1529 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001530 if (DebugInfo && RSI.getContext() && DebugInfo->Verify(RSI.getContext())) {
Jim Laskeya8bdac82006-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 Lattnerf2b62f32005-11-16 07:22:30 +00001541 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00001542 }
1543 case Intrinsic::dbg_region_end: {
1544 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1545 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001546 if (DebugInfo && REI.getContext() && DebugInfo->Verify(REI.getContext())) {
Jim Laskeya8bdac82006-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 Lattnerf2b62f32005-11-16 07:22:30 +00001557 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00001558 }
1559 case Intrinsic::dbg_func_start: {
1560 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1561 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001562 if (DebugInfo && FSI.getSubprogram() &&
1563 DebugInfo->Verify(FSI.getSubprogram())) {
Jim Laskeya8bdac82006-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 Lattnerf2b62f32005-11-16 07:22:30 +00001574 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00001575 }
1576 case Intrinsic::dbg_declare: {
1577 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1578 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Jim Laskey67a636c2006-03-28 13:45:20 +00001579 if (DebugInfo && DI.getVariable() && DebugInfo->Verify(DI.getVariable())) {
Jim Laskeya8bdac82006-03-23 18:06:46 +00001580 std::vector<SDOperand> Ops;
1581
Jim Laskey53f1ecc2006-03-24 09:50:27 +00001582 SDOperand AddressOp = getValue(DI.getAddress());
1583 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(AddressOp)) {
Jim Laskeya8bdac82006-03-23 18:06:46 +00001584 DebugInfo->RecordVariable(DI.getVariable(), FI->getIndex());
1585 }
1586 }
1587
1588 return 0;
1589 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001590
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001591 case Intrinsic::isunordered_f32:
1592 case Intrinsic::isunordered_f64:
Chris Lattnercd6f0f42005-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 Spencerb4f9a6f2006-01-16 21:12:35 +00001597 case Intrinsic::sqrt_f32:
1598 case Intrinsic::sqrt_f64:
Chris Lattnercd6f0f42005-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 Lenharthde1b5d62005-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 Lenharth01aa5632005-11-11 16:47:30 +00001617 return 0;
Andrew Lenharthde1b5d62005-11-11 22:48:54 +00001618 }
Nate Begeman2fba8a32006-01-14 03:14:10 +00001619 case Intrinsic::bswap_i16:
Nate Begeman2fba8a32006-01-14 03:14:10 +00001620 case Intrinsic::bswap_i32:
Nate Begeman2fba8a32006-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 Spencerb4f9a6f2006-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 Lattnercd6f0f42005-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 Spencerb4f9a6f2006-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 Lattnercd6f0f42005-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 Spencerb4f9a6f2006-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 Lattnercd6f0f42005-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 Lattnerb3266452006-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 Lattnerdeda32a2006-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 Lattnerb3266452006-01-13 02:50:02 +00001664 return 0;
Chris Lattnerdeda32a2006-01-23 05:22:07 +00001665 }
Chris Lattner9e8b6332005-12-12 22:51:16 +00001666 case Intrinsic::prefetch:
1667 // FIXME: Currently discarding prefetches.
1668 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001669 }
1670}
1671
1672
Chris Lattner7a60d912005-01-07 07:47:53 +00001673void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner18d2b342005-01-08 22:48:57 +00001674 const char *RenameFn = 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001675 if (Function *F = I.getCalledFunction()) {
Chris Lattner0c140002005-04-02 05:26:53 +00001676 if (F->isExternal())
Chris Lattnercd6f0f42005-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 Lattner5c1ba2a2006-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 Lattner0c140002005-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 Lattnercd6f0f42005-11-09 19:44:01 +00001698 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner0c140002005-04-02 05:26:53 +00001699 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
1700 return;
1701 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001702 } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) {
Chris Lattner80026402005-04-30 04:43:14 +00001703 if (I.getNumOperands() == 2 && // Basic sanity checks.
1704 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner1784a9d22006-02-14 05:39:35 +00001705 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001706 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner80026402005-04-30 04:43:14 +00001707 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
1708 return;
1709 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001710 } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) {
Chris Lattner80026402005-04-30 04:43:14 +00001711 if (I.getNumOperands() == 2 && // Basic sanity checks.
1712 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner1784a9d22006-02-14 05:39:35 +00001713 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001714 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner80026402005-04-30 04:43:14 +00001715 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
1716 return;
1717 }
1718 }
Chris Lattnere4f71d02005-05-14 13:56:55 +00001719 }
Chris Lattner476e67b2006-01-26 22:24:51 +00001720 } else if (isa<InlineAsm>(I.getOperand(0))) {
1721 visitInlineAsm(I);
1722 return;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001723 }
Misha Brukman835702a2005-04-21 22:36:52 +00001724
Chris Lattner18d2b342005-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 Lattner7a60d912005-01-07 07:47:53 +00001730 std::vector<std::pair<SDOperand, const Type*> > Args;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001731 Args.reserve(I.getNumOperands());
Chris Lattner7a60d912005-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 Brukman835702a2005-04-21 22:36:52 +00001737
Nate Begemanf6565252005-03-26 01:29:23 +00001738 const PointerType *PT = cast<PointerType>(I.getCalledValue()->getType());
1739 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Misha Brukman835702a2005-04-21 22:36:52 +00001740
Chris Lattner1f45cd72005-01-08 19:26:18 +00001741 std::pair<SDOperand,SDOperand> Result =
Chris Lattner111778e2005-05-12 19:56:57 +00001742 TLI.LowerCallTo(getRoot(), I.getType(), FTy->isVarArg(), I.getCallingConv(),
Chris Lattner2e77db62005-05-13 18:50:42 +00001743 I.isTailCall(), Callee, Args, DAG);
Chris Lattner7a60d912005-01-07 07:47:53 +00001744 if (I.getType() != Type::VoidTy)
Chris Lattner1f45cd72005-01-08 19:26:18 +00001745 setValue(&I, Result.first);
1746 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00001747}
1748
Chris Lattner6f87d182006-02-22 22:37:12 +00001749SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001750 SDOperand &Chain, SDOperand &Flag)const{
Chris Lattner6f87d182006-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 Lattnere7c0ffb2006-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 Lattner6f87d182006-02-22 22:37:12 +00001766 }
Chris Lattner1558fc62006-02-01 18:59:47 +00001767
Chris Lattner6f87d182006-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 Lattner571d9642006-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 Lattnere7c0ffb2006-02-23 20:06:57 +00001783 SDOperand &Chain, SDOperand &Flag) const {
Chris Lattner571d9642006-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 Lattnere7c0ffb2006-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 Lattner571d9642006-02-23 19:21:04 +00001801 SDOperand Part = DAG.getNode(ISD::EXTRACT_ELEMENT, RegVT, Val,
1802 DAG.getConstant(i, MVT::i32));
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001803 Chain = DAG.getCopyToReg(Chain, R[i], Part, Flag);
Chris Lattner571d9642006-02-23 19:21:04 +00001804 Flag = Chain.getValue(1);
1805 }
1806 }
1807}
Chris Lattner6f87d182006-02-22 22:37:12 +00001808
Chris Lattner571d9642006-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 Lattnere7c0ffb2006-02-23 20:06:57 +00001813 std::vector<SDOperand> &Ops) const {
Chris Lattner571d9642006-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 Lattner6f87d182006-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 Lattnerb1124f32006-02-22 23:09:03 +00001823isAllocatableRegister(unsigned Reg, MachineFunction &MF,
1824 const TargetLowering &TLI, const MRegisterInfo *MRI) {
Chris Lattnerbec582f2006-04-02 00:24:45 +00001825 MVT::ValueType FoundVT = MVT::Other;
1826 const TargetRegisterClass *FoundRC = 0;
Chris Lattnerb1124f32006-02-22 23:09:03 +00001827 for (MRegisterInfo::regclass_iterator RCI = MRI->regclass_begin(),
1828 E = MRI->regclass_end(); RCI != E; ++RCI) {
Chris Lattnerbec582f2006-04-02 00:24:45 +00001829 MVT::ValueType ThisVT = MVT::Other;
1830
Chris Lattnerb1124f32006-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 Lattnerb1124f32006-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 Lattnerbec582f2006-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 Lattnerb1124f32006-02-22 23:09:03 +00001845 }
1846 }
1847
Chris Lattnerbec582f2006-04-02 00:24:45 +00001848 if (ThisVT == MVT::Other) continue;
Chris Lattnerb1124f32006-02-22 23:09:03 +00001849
Chris Lattner6f87d182006-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 Lattnerb1124f32006-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 Lattnerbec582f2006-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 Lattner1558fc62006-02-01 18:59:47 +00001863 }
Chris Lattnerbec582f2006-04-02 00:24:45 +00001864 return FoundRC;
Chris Lattner6f87d182006-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 Lattnerb1124f32006-02-22 23:09:03 +00001926 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, MRI);
Chris Lattner6f87d182006-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 Lattner1558fc62006-02-01 18:59:47 +00001954}
1955
Chris Lattner6f87d182006-02-22 22:37:12 +00001956
Chris Lattner476e67b2006-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 Lattner3a5ed552006-02-01 01:28:23 +00001970 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
Chris Lattner7ad77df2006-02-22 00:56:39 +00001971 std::vector<MVT::ValueType> ConstraintVTs;
Chris Lattner476e67b2006-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 Lattner1558fc62006-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 Lattner7ad77df2006-02-22 00:56:39 +00001988 unsigned OpNum = 1;
Chris Lattner1558fc62006-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 Lattner7f5880b2006-02-02 00:25:23 +00001992
Chris Lattner7ad77df2006-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 Lattner9fed5b62006-02-27 23:45:39 +00002002 const Type *OpTy = I.getOperand(OpNum)->getType();
Chris Lattner7ad77df2006-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 Lattner6f87d182006-02-22 22:37:12 +00002018 if (TLI.getRegForInlineAsmConstraint(ConstraintCode, OpVT).first == 0)
2019 continue; // Not assigned a fixed reg.
Chris Lattner7ad77df2006-02-22 00:56:39 +00002020
Chris Lattner6f87d182006-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 Lattner1558fc62006-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 Lattner6f87d182006-02-22 22:37:12 +00002030 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1558fc62006-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 Lattner7f5880b2006-02-02 00:25:23 +00002033 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
Chris Lattner6f87d182006-02-22 22:37:12 +00002034 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1558fc62006-02-01 18:59:47 +00002035 break;
Chris Lattner7ad77df2006-02-22 00:56:39 +00002036 case InlineAsm::isInput:
2037 // We can't assign any other input to this register.
Chris Lattner6f87d182006-02-22 22:37:12 +00002038 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner7ad77df2006-02-22 00:56:39 +00002039 break;
Chris Lattner1558fc62006-02-01 18:59:47 +00002040 case InlineAsm::isClobber:
2041 // Clobbered regs cannot be used as inputs or outputs.
Chris Lattner6f87d182006-02-22 22:37:12 +00002042 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2043 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1558fc62006-02-01 18:59:47 +00002044 break;
Chris Lattner1558fc62006-02-01 18:59:47 +00002045 }
2046 }
Chris Lattner3a5ed552006-02-01 01:28:23 +00002047
Chris Lattner5c79f982006-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 Lattner6f87d182006-02-22 22:37:12 +00002050 RegsForValue RetValRegs;
2051 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Chris Lattner7ad77df2006-02-22 00:56:39 +00002052 OpNum = 1;
Chris Lattner5c79f982006-02-21 23:12:12 +00002053
Chris Lattner2e56e892006-01-31 02:03:41 +00002054 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
Chris Lattner3a5ed552006-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 Lattner7ad77df2006-02-22 00:56:39 +00002057
Chris Lattner3a5ed552006-02-01 01:28:23 +00002058 switch (Constraints[i].Type) {
2059 case InlineAsm::isOutput: {
Chris Lattner9fed5b62006-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 Lattner6f87d182006-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 Lattner7ad77df2006-02-22 00:56:39 +00002102 // we can use.
Chris Lattner6f87d182006-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 Lattner7ad77df2006-02-22 00:56:39 +00002108
Chris Lattner3a5ed552006-02-01 01:28:23 +00002109 if (!Constraints[i].isIndirectOutput) {
Chris Lattner6f87d182006-02-22 22:37:12 +00002110 assert(RetValRegs.Regs.empty() &&
Chris Lattner3a5ed552006-02-01 01:28:23 +00002111 "Cannot have multiple output constraints yet!");
Chris Lattner3a5ed552006-02-01 01:28:23 +00002112 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
Chris Lattner6f87d182006-02-22 22:37:12 +00002113 RetValRegs = Regs;
Chris Lattner3a5ed552006-02-01 01:28:23 +00002114 } else {
Chris Lattner9fed5b62006-02-27 23:45:39 +00002115 IndirectStoresToEmit.push_back(std::make_pair(Regs,
2116 I.getOperand(OpNum)));
Chris Lattner3a5ed552006-02-01 01:28:23 +00002117 OpNum++; // Consumes a call operand.
2118 }
Chris Lattner2e56e892006-01-31 02:03:41 +00002119
2120 // Add information to the INLINEASM node to know that this register is
2121 // set.
Chris Lattner571d9642006-02-23 19:21:04 +00002122 Regs.AddInlineAsmOperands(2 /*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner2e56e892006-01-31 02:03:41 +00002123 break;
2124 }
2125 case InlineAsm::isInput: {
Chris Lattner9fed5b62006-02-27 23:45:39 +00002126 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
Chris Lattner1558fc62006-02-01 18:59:47 +00002127 OpNum++; // Consumes a call operand.
Chris Lattner65ad53f2006-02-04 02:16:44 +00002128
Chris Lattner7f5880b2006-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 Lattner65ad53f2006-02-04 02:16:44 +00002133
Chris Lattner571d9642006-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 Lattner571d9642006-02-23 19:21:04 +00002163 break;
Chris Lattner7f5880b2006-02-02 00:25:23 +00002164 }
Chris Lattner7ef7a642006-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 Lattner2e56e892006-01-31 02:03:41 +00002212 break;
2213 }
Chris Lattner571d9642006-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 Lattner2e56e892006-01-31 02:03:41 +00002222 break;
2223 }
Chris Lattner571d9642006-02-23 19:21:04 +00002224 }
Chris Lattner2e56e892006-01-31 02:03:41 +00002225 }
Chris Lattner476e67b2006-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 Lattner2e56e892006-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 Lattner6f87d182006-02-22 22:37:12 +00002239 if (!RetValRegs.Regs.empty())
2240 setValue(&I, RetValRegs.getCopyFromRegs(DAG, Chain, Flag));
Chris Lattner476e67b2006-01-26 22:24:51 +00002241
Chris Lattner2e56e892006-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 Lattner6f87d182006-02-22 22:37:12 +00002247 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner2e56e892006-01-31 02:03:41 +00002248 Value *Ptr = IndirectStoresToEmit[i].second;
Chris Lattner6f87d182006-02-22 22:37:12 +00002249 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, Flag);
2250 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner2e56e892006-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 Lattner476e67b2006-01-26 22:24:51 +00002262 DAG.setRoot(Chain);
2263}
2264
2265
Chris Lattner7a60d912005-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 Lattnereccb73d2005-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 Lattner7a60d912005-01-07 07:47:53 +00002275
2276 // Scale the source by the type size.
Owen Anderson20a631f2006-05-03 01:29:57 +00002277 uint64_t ElementSize = TD->getTypeSize(I.getType()->getElementType());
Chris Lattner7a60d912005-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 Anderson20a631f2006-05-03 01:29:57 +00002282 Args.push_back(std::make_pair(Src, TLI.getTargetData()->getIntPtrType()));
Chris Lattner1f45cd72005-01-08 19:26:18 +00002283
2284 std::pair<SDOperand,SDOperand> Result =
Chris Lattner2e77db62005-05-13 18:50:42 +00002285 TLI.LowerCallTo(getRoot(), I.getType(), false, CallingConv::C, true,
Chris Lattner1f45cd72005-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 Lattner7a60d912005-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 Anderson20a631f2006-05-03 01:29:57 +00002295 TLI.getTargetData()->getIntPtrType()));
Chris Lattner7a60d912005-01-07 07:47:53 +00002296 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattner1f45cd72005-01-08 19:26:18 +00002297 std::pair<SDOperand,SDOperand> Result =
Chris Lattner2e77db62005-05-13 18:50:42 +00002298 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, CallingConv::C, true,
Chris Lattner1f45cd72005-01-08 19:26:18 +00002299 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
2300 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00002301}
2302
Chris Lattner13d7c252005-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 Lattner58cfd792005-01-09 00:00:49 +00002317void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemane74795c2006-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 Lattner58cfd792005-01-09 00:00:49 +00002321}
2322
2323void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemane74795c2006-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 Lattner7a60d912005-01-07 07:47:53 +00002329}
2330
2331void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemane74795c2006-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 Lattner7a60d912005-01-07 07:47:53 +00002335}
2336
2337void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemane74795c2006-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 Lattner7a60d912005-01-07 07:47:53 +00002343}
2344
Chris Lattnerd3b504a2006-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
2347/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be removed.
2348std::vector<SDOperand>
2349TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
2350 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
2351 std::vector<SDOperand> Ops;
2352 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
2353 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
2354
2355 // Add one result value for each formal argument.
2356 std::vector<MVT::ValueType> RetVals;
2357 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2358 MVT::ValueType VT = getValueType(I->getType());
2359
2360 switch (getTypeAction(VT)) {
2361 default: assert(0 && "Unknown type action!");
2362 case Legal:
2363 RetVals.push_back(VT);
2364 break;
2365 case Promote:
2366 RetVals.push_back(getTypeToTransformTo(VT));
2367 break;
2368 case Expand:
2369 if (VT != MVT::Vector) {
2370 // If this is a large integer, it needs to be broken up into small
2371 // integers. Figure out what the destination type is and how many small
2372 // integers it turns into.
2373 MVT::ValueType NVT = getTypeToTransformTo(VT);
2374 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2375 for (unsigned i = 0; i != NumVals; ++i)
2376 RetVals.push_back(NVT);
2377 } else {
2378 // Otherwise, this is a vector type. We only support legal vectors
2379 // right now.
2380 unsigned NumElems = cast<PackedType>(I->getType())->getNumElements();
2381 const Type *EltTy = cast<PackedType>(I->getType())->getElementType();
Evan Cheng3784f3c52006-04-27 08:29:42 +00002382
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002383 // Figure out if there is a Packed type corresponding to this Vector
2384 // type. If so, convert to the packed type.
2385 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2386 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2387 RetVals.push_back(TVT);
2388 } else {
2389 assert(0 && "Don't support illegal by-val vector arguments yet!");
2390 }
2391 }
2392 break;
2393 }
2394 }
Evan Cheng9618df12006-04-25 23:03:35 +00002395
2396 if (RetVals.size() == 0)
2397 RetVals.push_back(MVT::isVoid);
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002398
2399 // Create the node.
2400 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, RetVals, Ops).Val;
2401
2402 // Set up the return result vector.
2403 Ops.clear();
2404 unsigned i = 0;
2405 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2406 MVT::ValueType VT = getValueType(I->getType());
2407
2408 switch (getTypeAction(VT)) {
2409 default: assert(0 && "Unknown type action!");
2410 case Legal:
2411 Ops.push_back(SDOperand(Result, i++));
2412 break;
2413 case Promote: {
2414 SDOperand Op(Result, i++);
2415 if (MVT::isInteger(VT)) {
2416 unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext
2417 : ISD::AssertZext;
2418 Op = DAG.getNode(AssertOp, Op.getValueType(), Op, DAG.getValueType(VT));
2419 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2420 } else {
2421 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2422 Op = DAG.getNode(ISD::FP_ROUND, VT, Op);
2423 }
2424 Ops.push_back(Op);
2425 break;
2426 }
2427 case Expand:
2428 if (VT != MVT::Vector) {
2429 // If this is a large integer, it needs to be reassembled from small
2430 // integers. Figure out what the source elt type is and how many small
2431 // integers it is.
2432 MVT::ValueType NVT = getTypeToTransformTo(VT);
2433 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2434 if (NumVals == 2) {
2435 SDOperand Lo = SDOperand(Result, i++);
2436 SDOperand Hi = SDOperand(Result, i++);
2437
2438 if (!isLittleEndian())
2439 std::swap(Lo, Hi);
2440
2441 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi));
2442 } else {
2443 // Value scalarized into many values. Unimp for now.
2444 assert(0 && "Cannot expand i64 -> i16 yet!");
2445 }
2446 } else {
2447 // Otherwise, this is a vector type. We only support legal vectors
2448 // right now.
Evan Chengd43c5c62006-04-28 05:25:15 +00002449 const PackedType *PTy = cast<PackedType>(I->getType());
2450 unsigned NumElems = PTy->getNumElements();
2451 const Type *EltTy = PTy->getElementType();
Evan Cheng3784f3c52006-04-27 08:29:42 +00002452
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002453 // Figure out if there is a Packed type corresponding to this Vector
2454 // type. If so, convert to the packed type.
2455 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2456 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Evan Chengd43c5c62006-04-28 05:25:15 +00002457 SDOperand N = SDOperand(Result, i++);
2458 // Handle copies from generic vectors to registers.
2459 MVT::ValueType PTyElementVT, PTyLegalElementVT;
2460 unsigned NE = getPackedTypeBreakdown(PTy, PTyElementVT,
2461 PTyLegalElementVT);
2462 // Insert a VBIT_CONVERT of the FORMAL_ARGUMENTS to a
2463 // "N x PTyElementVT" MVT::Vector type.
2464 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
2465 DAG.getConstant(NE, MVT::i32),
2466 DAG.getValueType(PTyElementVT));
2467 Ops.push_back(N);
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002468 } else {
2469 assert(0 && "Don't support illegal by-val vector arguments yet!");
2470 }
2471 }
2472 break;
2473 }
2474 }
2475 return Ops;
2476}
2477
Chris Lattner58cfd792005-01-09 00:00:49 +00002478// It is always conservatively correct for llvm.returnaddress and
2479// llvm.frameaddress to return 0.
2480std::pair<SDOperand, SDOperand>
2481TargetLowering::LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain,
2482 unsigned Depth, SelectionDAG &DAG) {
2483 return std::make_pair(DAG.getConstant(0, getPointerTy()), Chain);
Chris Lattner7a60d912005-01-07 07:47:53 +00002484}
2485
Chris Lattner29dcc712005-05-14 05:50:48 +00002486SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner897cd7d2005-01-16 07:28:41 +00002487 assert(0 && "LowerOperation not implemented for this target!");
2488 abort();
Misha Brukman73e929f2005-02-17 21:39:27 +00002489 return SDOperand();
Chris Lattner897cd7d2005-01-16 07:28:41 +00002490}
2491
Nate Begeman595ec732006-01-28 03:14:31 +00002492SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
2493 SelectionDAG &DAG) {
2494 assert(0 && "CustomPromoteOperation not implemented for this target!");
2495 abort();
2496 return SDOperand();
2497}
2498
Chris Lattner58cfd792005-01-09 00:00:49 +00002499void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) {
2500 unsigned Depth = (unsigned)cast<ConstantUInt>(I.getOperand(1))->getValue();
2501 std::pair<SDOperand,SDOperand> Result =
Chris Lattner4108bb02005-01-17 19:43:36 +00002502 TLI.LowerFrameReturnAddress(isFrame, getRoot(), Depth, DAG);
Chris Lattner58cfd792005-01-09 00:00:49 +00002503 setValue(&I, Result.first);
2504 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00002505}
2506
Evan Cheng6781b6e2006-02-15 21:59:04 +00002507/// getMemsetValue - Vectorized representation of the memset value
Evan Cheng81fcea82006-02-14 08:22:34 +00002508/// operand.
2509static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT,
Evan Cheng93e48652006-02-15 22:12:35 +00002510 SelectionDAG &DAG) {
Evan Cheng81fcea82006-02-14 08:22:34 +00002511 MVT::ValueType CurVT = VT;
2512 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
2513 uint64_t Val = C->getValue() & 255;
2514 unsigned Shift = 8;
2515 while (CurVT != MVT::i8) {
2516 Val = (Val << Shift) | Val;
2517 Shift <<= 1;
2518 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00002519 }
2520 return DAG.getConstant(Val, VT);
2521 } else {
2522 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2523 unsigned Shift = 8;
2524 while (CurVT != MVT::i8) {
2525 Value =
2526 DAG.getNode(ISD::OR, VT,
2527 DAG.getNode(ISD::SHL, VT, Value,
2528 DAG.getConstant(Shift, MVT::i8)), Value);
2529 Shift <<= 1;
2530 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00002531 }
2532
2533 return Value;
2534 }
2535}
2536
Evan Cheng6781b6e2006-02-15 21:59:04 +00002537/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2538/// used when a memcpy is turned into a memset when the source is a constant
2539/// string ptr.
2540static SDOperand getMemsetStringVal(MVT::ValueType VT,
2541 SelectionDAG &DAG, TargetLowering &TLI,
2542 std::string &Str, unsigned Offset) {
2543 MVT::ValueType CurVT = VT;
2544 uint64_t Val = 0;
2545 unsigned MSB = getSizeInBits(VT) / 8;
2546 if (TLI.isLittleEndian())
2547 Offset = Offset + MSB - 1;
2548 for (unsigned i = 0; i != MSB; ++i) {
2549 Val = (Val << 8) | Str[Offset];
2550 Offset += TLI.isLittleEndian() ? -1 : 1;
2551 }
2552 return DAG.getConstant(Val, VT);
2553}
2554
Evan Cheng81fcea82006-02-14 08:22:34 +00002555/// getMemBasePlusOffset - Returns base and offset node for the
2556static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
2557 SelectionDAG &DAG, TargetLowering &TLI) {
2558 MVT::ValueType VT = Base.getValueType();
2559 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2560}
2561
Evan Chengdb2a7a72006-02-14 20:12:38 +00002562/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
Evan Chengd5026102006-02-14 09:11:59 +00002563/// to replace the memset / memcpy is below the threshold. It also returns the
2564/// types of the sequence of memory ops to perform memset / memcpy.
Evan Chengdb2a7a72006-02-14 20:12:38 +00002565static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps,
2566 unsigned Limit, uint64_t Size,
2567 unsigned Align, TargetLowering &TLI) {
Evan Cheng81fcea82006-02-14 08:22:34 +00002568 MVT::ValueType VT;
2569
2570 if (TLI.allowsUnalignedMemoryAccesses()) {
2571 VT = MVT::i64;
2572 } else {
2573 switch (Align & 7) {
2574 case 0:
2575 VT = MVT::i64;
2576 break;
2577 case 4:
2578 VT = MVT::i32;
2579 break;
2580 case 2:
2581 VT = MVT::i16;
2582 break;
2583 default:
2584 VT = MVT::i8;
2585 break;
2586 }
2587 }
2588
Evan Chengd5026102006-02-14 09:11:59 +00002589 MVT::ValueType LVT = MVT::i64;
2590 while (!TLI.isTypeLegal(LVT))
2591 LVT = (MVT::ValueType)((unsigned)LVT - 1);
2592 assert(MVT::isInteger(LVT));
Evan Cheng81fcea82006-02-14 08:22:34 +00002593
Evan Chengd5026102006-02-14 09:11:59 +00002594 if (VT > LVT)
2595 VT = LVT;
2596
Evan Cheng04514992006-02-14 23:05:54 +00002597 unsigned NumMemOps = 0;
Evan Cheng81fcea82006-02-14 08:22:34 +00002598 while (Size != 0) {
2599 unsigned VTSize = getSizeInBits(VT) / 8;
2600 while (VTSize > Size) {
2601 VT = (MVT::ValueType)((unsigned)VT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00002602 VTSize >>= 1;
2603 }
Evan Chengd5026102006-02-14 09:11:59 +00002604 assert(MVT::isInteger(VT));
2605
2606 if (++NumMemOps > Limit)
2607 return false;
Evan Cheng81fcea82006-02-14 08:22:34 +00002608 MemOps.push_back(VT);
2609 Size -= VTSize;
2610 }
Evan Chengd5026102006-02-14 09:11:59 +00002611
2612 return true;
Evan Cheng81fcea82006-02-14 08:22:34 +00002613}
2614
Chris Lattner875def92005-01-11 05:56:49 +00002615void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) {
Evan Cheng81fcea82006-02-14 08:22:34 +00002616 SDOperand Op1 = getValue(I.getOperand(1));
2617 SDOperand Op2 = getValue(I.getOperand(2));
2618 SDOperand Op3 = getValue(I.getOperand(3));
2619 SDOperand Op4 = getValue(I.getOperand(4));
2620 unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue();
2621 if (Align == 0) Align = 1;
2622
2623 if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) {
2624 std::vector<MVT::ValueType> MemOps;
Evan Cheng81fcea82006-02-14 08:22:34 +00002625
2626 // Expand memset / memcpy to a series of load / store ops
2627 // if the size operand falls below a certain threshold.
2628 std::vector<SDOperand> OutChains;
2629 switch (Op) {
Evan Cheng038521e2006-02-14 19:45:56 +00002630 default: break; // Do nothing for now.
Evan Cheng81fcea82006-02-14 08:22:34 +00002631 case ISD::MEMSET: {
Evan Chengdb2a7a72006-02-14 20:12:38 +00002632 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
2633 Size->getValue(), Align, TLI)) {
Evan Chengd5026102006-02-14 09:11:59 +00002634 unsigned NumMemOps = MemOps.size();
Evan Cheng81fcea82006-02-14 08:22:34 +00002635 unsigned Offset = 0;
2636 for (unsigned i = 0; i < NumMemOps; i++) {
2637 MVT::ValueType VT = MemOps[i];
2638 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Cheng93e48652006-02-15 22:12:35 +00002639 SDOperand Value = getMemsetValue(Op2, VT, DAG);
Evan Chenge2038bd2006-02-15 01:54:51 +00002640 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, getRoot(),
2641 Value,
Chris Lattner6f87d182006-02-22 22:37:12 +00002642 getMemBasePlusOffset(Op1, Offset, DAG, TLI),
2643 DAG.getSrcValue(I.getOperand(1), Offset));
Evan Chenge2038bd2006-02-15 01:54:51 +00002644 OutChains.push_back(Store);
Evan Cheng81fcea82006-02-14 08:22:34 +00002645 Offset += VTSize;
2646 }
Evan Cheng81fcea82006-02-14 08:22:34 +00002647 }
Evan Chenge2038bd2006-02-15 01:54:51 +00002648 break;
Evan Cheng81fcea82006-02-14 08:22:34 +00002649 }
Evan Chenge2038bd2006-02-15 01:54:51 +00002650 case ISD::MEMCPY: {
2651 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemcpy(),
2652 Size->getValue(), Align, TLI)) {
2653 unsigned NumMemOps = MemOps.size();
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002654 unsigned SrcOff = 0, DstOff = 0, SrcDelta = 0;
Evan Cheng6781b6e2006-02-15 21:59:04 +00002655 GlobalAddressSDNode *G = NULL;
2656 std::string Str;
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002657 bool CopyFromStr = false;
Evan Cheng6781b6e2006-02-15 21:59:04 +00002658
2659 if (Op2.getOpcode() == ISD::GlobalAddress)
2660 G = cast<GlobalAddressSDNode>(Op2);
2661 else if (Op2.getOpcode() == ISD::ADD &&
2662 Op2.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2663 Op2.getOperand(1).getOpcode() == ISD::Constant) {
2664 G = cast<GlobalAddressSDNode>(Op2.getOperand(0));
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002665 SrcDelta = cast<ConstantSDNode>(Op2.getOperand(1))->getValue();
Evan Cheng6781b6e2006-02-15 21:59:04 +00002666 }
2667 if (G) {
2668 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002669 if (GV) {
Evan Cheng38280c02006-03-10 23:52:03 +00002670 Str = GV->getStringValue(false);
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002671 if (!Str.empty()) {
2672 CopyFromStr = true;
2673 SrcOff += SrcDelta;
2674 }
2675 }
Evan Cheng6781b6e2006-02-15 21:59:04 +00002676 }
2677
Evan Chenge2038bd2006-02-15 01:54:51 +00002678 for (unsigned i = 0; i < NumMemOps; i++) {
2679 MVT::ValueType VT = MemOps[i];
2680 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Cheng6781b6e2006-02-15 21:59:04 +00002681 SDOperand Value, Chain, Store;
2682
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002683 if (CopyFromStr) {
Evan Cheng6781b6e2006-02-15 21:59:04 +00002684 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
2685 Chain = getRoot();
2686 Store =
2687 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2688 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2689 DAG.getSrcValue(I.getOperand(1), DstOff));
2690 } else {
2691 Value = DAG.getLoad(VT, getRoot(),
2692 getMemBasePlusOffset(Op2, SrcOff, DAG, TLI),
2693 DAG.getSrcValue(I.getOperand(2), SrcOff));
2694 Chain = Value.getValue(1);
2695 Store =
2696 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2697 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2698 DAG.getSrcValue(I.getOperand(1), DstOff));
2699 }
Evan Chenge2038bd2006-02-15 01:54:51 +00002700 OutChains.push_back(Store);
Evan Cheng6781b6e2006-02-15 21:59:04 +00002701 SrcOff += VTSize;
2702 DstOff += VTSize;
Evan Chenge2038bd2006-02-15 01:54:51 +00002703 }
2704 }
2705 break;
2706 }
2707 }
2708
2709 if (!OutChains.empty()) {
2710 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains));
2711 return;
Evan Cheng81fcea82006-02-14 08:22:34 +00002712 }
2713 }
2714
Chris Lattner875def92005-01-11 05:56:49 +00002715 std::vector<SDOperand> Ops;
Chris Lattner4108bb02005-01-17 19:43:36 +00002716 Ops.push_back(getRoot());
Evan Cheng81fcea82006-02-14 08:22:34 +00002717 Ops.push_back(Op1);
2718 Ops.push_back(Op2);
2719 Ops.push_back(Op3);
2720 Ops.push_back(Op4);
Chris Lattner875def92005-01-11 05:56:49 +00002721 DAG.setRoot(DAG.getNode(Op, MVT::Other, Ops));
Chris Lattner7a60d912005-01-07 07:47:53 +00002722}
2723
Chris Lattner875def92005-01-11 05:56:49 +00002724//===----------------------------------------------------------------------===//
2725// SelectionDAGISel code
2726//===----------------------------------------------------------------------===//
Chris Lattner7a60d912005-01-07 07:47:53 +00002727
2728unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) {
2729 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
2730}
2731
Chris Lattnerc9950c12005-08-17 06:37:43 +00002732void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner1a908c82005-08-18 17:35:14 +00002733 // FIXME: we only modify the CFG to split critical edges. This
2734 // updates dom and loop info.
Chris Lattnerc9950c12005-08-17 06:37:43 +00002735}
Chris Lattner7a60d912005-01-07 07:47:53 +00002736
Chris Lattner35397782005-12-05 07:10:48 +00002737
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002738/// OptimizeNoopCopyExpression - We have determined that the specified cast
2739/// instruction is a noop copy (e.g. it's casting from one pointer type to
2740/// another, int->uint, or int->sbyte on PPC.
2741///
2742/// Return true if any changes are made.
2743static bool OptimizeNoopCopyExpression(CastInst *CI) {
2744 BasicBlock *DefBB = CI->getParent();
2745
2746 /// InsertedCasts - Only insert a cast in each block once.
2747 std::map<BasicBlock*, CastInst*> InsertedCasts;
2748
2749 bool MadeChange = false;
2750 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
2751 UI != E; ) {
2752 Use &TheUse = UI.getUse();
2753 Instruction *User = cast<Instruction>(*UI);
2754
2755 // Figure out which BB this cast is used in. For PHI's this is the
2756 // appropriate predecessor block.
2757 BasicBlock *UserBB = User->getParent();
2758 if (PHINode *PN = dyn_cast<PHINode>(User)) {
2759 unsigned OpVal = UI.getOperandNo()/2;
2760 UserBB = PN->getIncomingBlock(OpVal);
2761 }
2762
2763 // Preincrement use iterator so we don't invalidate it.
2764 ++UI;
2765
2766 // If this user is in the same block as the cast, don't change the cast.
2767 if (UserBB == DefBB) continue;
2768
2769 // If we have already inserted a cast into this block, use it.
2770 CastInst *&InsertedCast = InsertedCasts[UserBB];
2771
2772 if (!InsertedCast) {
2773 BasicBlock::iterator InsertPt = UserBB->begin();
2774 while (isa<PHINode>(InsertPt)) ++InsertPt;
2775
2776 InsertedCast =
2777 new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
2778 MadeChange = true;
2779 }
2780
2781 // Replace a use of the cast with a use of the new casat.
2782 TheUse = InsertedCast;
2783 }
2784
2785 // If we removed all uses, nuke the cast.
2786 if (CI->use_empty())
2787 CI->eraseFromParent();
2788
2789 return MadeChange;
2790}
2791
Chris Lattner35397782005-12-05 07:10:48 +00002792/// InsertGEPComputeCode - Insert code into BB to compute Ptr+PtrOffset,
2793/// casting to the type of GEPI.
Chris Lattner21cd9902006-05-06 09:10:37 +00002794static Instruction *InsertGEPComputeCode(Instruction *&V, BasicBlock *BB,
2795 Instruction *GEPI, Value *Ptr,
2796 Value *PtrOffset) {
Chris Lattner35397782005-12-05 07:10:48 +00002797 if (V) return V; // Already computed.
2798
2799 BasicBlock::iterator InsertPt;
2800 if (BB == GEPI->getParent()) {
2801 // If insert into the GEP's block, insert right after the GEP.
2802 InsertPt = GEPI;
2803 ++InsertPt;
2804 } else {
2805 // Otherwise, insert at the top of BB, after any PHI nodes
2806 InsertPt = BB->begin();
2807 while (isa<PHINode>(InsertPt)) ++InsertPt;
2808 }
2809
Chris Lattnerbe73d6e2005-12-08 08:00:12 +00002810 // If Ptr is itself a cast, but in some other BB, emit a copy of the cast into
2811 // BB so that there is only one value live across basic blocks (the cast
2812 // operand).
2813 if (CastInst *CI = dyn_cast<CastInst>(Ptr))
2814 if (CI->getParent() != BB && isa<PointerType>(CI->getOperand(0)->getType()))
2815 Ptr = new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
2816
Chris Lattner35397782005-12-05 07:10:48 +00002817 // Add the offset, cast it to the right type.
2818 Ptr = BinaryOperator::createAdd(Ptr, PtrOffset, "", InsertPt);
Chris Lattner21cd9902006-05-06 09:10:37 +00002819 return V = new CastInst(Ptr, GEPI->getType(), "", InsertPt);
Chris Lattner35397782005-12-05 07:10:48 +00002820}
2821
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002822/// ReplaceUsesOfGEPInst - Replace all uses of RepPtr with inserted code to
2823/// compute its value. The RepPtr value can be computed with Ptr+PtrOffset. One
2824/// trivial way of doing this would be to evaluate Ptr+PtrOffset in RepPtr's
2825/// block, then ReplaceAllUsesWith'ing everything. However, we would prefer to
2826/// sink PtrOffset into user blocks where doing so will likely allow us to fold
2827/// the constant add into a load or store instruction. Additionally, if a user
2828/// is a pointer-pointer cast, we look through it to find its users.
2829static void ReplaceUsesOfGEPInst(Instruction *RepPtr, Value *Ptr,
2830 Constant *PtrOffset, BasicBlock *DefBB,
2831 GetElementPtrInst *GEPI,
Chris Lattner21cd9902006-05-06 09:10:37 +00002832 std::map<BasicBlock*,Instruction*> &InsertedExprs) {
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002833 while (!RepPtr->use_empty()) {
2834 Instruction *User = cast<Instruction>(RepPtr->use_back());
Chris Lattner7a3ecf72006-05-05 01:04:50 +00002835
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002836 // If the user is a Pointer-Pointer cast, recurse.
2837 if (isa<CastInst>(User) && isa<PointerType>(User->getType())) {
2838 ReplaceUsesOfGEPInst(User, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattner7a3ecf72006-05-05 01:04:50 +00002839
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002840 // Drop the use of RepPtr. The cast is dead. Don't delete it now, else we
2841 // could invalidate an iterator.
2842 User->setOperand(0, UndefValue::get(RepPtr->getType()));
2843 continue;
Chris Lattner7a3ecf72006-05-05 01:04:50 +00002844 }
2845
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002846 // If this is a load of the pointer, or a store through the pointer, emit
2847 // the increment into the load/store block.
Chris Lattner21cd9902006-05-06 09:10:37 +00002848 Instruction *NewVal;
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002849 if (isa<LoadInst>(User) ||
2850 (isa<StoreInst>(User) && User->getOperand(0) != RepPtr)) {
2851 NewVal = InsertGEPComputeCode(InsertedExprs[User->getParent()],
2852 User->getParent(), GEPI,
2853 Ptr, PtrOffset);
2854 } else {
2855 // If this use is not foldable into the addressing mode, use a version
2856 // emitted in the GEP block.
2857 NewVal = InsertGEPComputeCode(InsertedExprs[DefBB], DefBB, GEPI,
2858 Ptr, PtrOffset);
2859 }
2860
Chris Lattner21cd9902006-05-06 09:10:37 +00002861 if (GEPI->getType() != RepPtr->getType()) {
2862 BasicBlock::iterator IP = NewVal;
2863 ++IP;
2864 NewVal = new CastInst(NewVal, RepPtr->getType(), "", IP);
2865 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002866 User->replaceUsesOfWith(RepPtr, NewVal);
Chris Lattner7a3ecf72006-05-05 01:04:50 +00002867 }
2868}
Chris Lattner35397782005-12-05 07:10:48 +00002869
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002870
Chris Lattner35397782005-12-05 07:10:48 +00002871/// OptimizeGEPExpression - Since we are doing basic-block-at-a-time instruction
2872/// selection, we want to be a bit careful about some things. In particular, if
2873/// we have a GEP instruction that is used in a different block than it is
2874/// defined, the addressing expression of the GEP cannot be folded into loads or
2875/// stores that use it. In this case, decompose the GEP and move constant
2876/// indices into blocks that use it.
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002877static bool OptimizeGEPExpression(GetElementPtrInst *GEPI,
Owen Anderson20a631f2006-05-03 01:29:57 +00002878 const TargetData *TD) {
Chris Lattner35397782005-12-05 07:10:48 +00002879 // If this GEP is only used inside the block it is defined in, there is no
2880 // need to rewrite it.
2881 bool isUsedOutsideDefBB = false;
2882 BasicBlock *DefBB = GEPI->getParent();
2883 for (Value::use_iterator UI = GEPI->use_begin(), E = GEPI->use_end();
2884 UI != E; ++UI) {
2885 if (cast<Instruction>(*UI)->getParent() != DefBB) {
2886 isUsedOutsideDefBB = true;
2887 break;
2888 }
2889 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002890 if (!isUsedOutsideDefBB) return false;
Chris Lattner35397782005-12-05 07:10:48 +00002891
2892 // If this GEP has no non-zero constant indices, there is nothing we can do,
2893 // ignore it.
2894 bool hasConstantIndex = false;
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002895 bool hasVariableIndex = false;
Chris Lattner35397782005-12-05 07:10:48 +00002896 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
2897 E = GEPI->op_end(); OI != E; ++OI) {
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002898 if (ConstantInt *CI = dyn_cast<ConstantInt>(*OI)) {
Chris Lattner35397782005-12-05 07:10:48 +00002899 if (CI->getRawValue()) {
2900 hasConstantIndex = true;
2901 break;
2902 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002903 } else {
2904 hasVariableIndex = true;
2905 }
Chris Lattner35397782005-12-05 07:10:48 +00002906 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002907
2908 // If this is a "GEP X, 0, 0, 0", turn this into a cast.
2909 if (!hasConstantIndex && !hasVariableIndex) {
2910 Value *NC = new CastInst(GEPI->getOperand(0), GEPI->getType(),
2911 GEPI->getName(), GEPI);
2912 GEPI->replaceAllUsesWith(NC);
2913 GEPI->eraseFromParent();
2914 return true;
2915 }
2916
Chris Lattnerf1a54c02005-12-11 09:05:13 +00002917 // If this is a GEP &Alloca, 0, 0, forward subst the frame index into uses.
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002918 if (!hasConstantIndex && !isa<AllocaInst>(GEPI->getOperand(0)))
2919 return false;
Chris Lattner35397782005-12-05 07:10:48 +00002920
2921 // Otherwise, decompose the GEP instruction into multiplies and adds. Sum the
2922 // constant offset (which we now know is non-zero) and deal with it later.
2923 uint64_t ConstantOffset = 0;
Owen Anderson20a631f2006-05-03 01:29:57 +00002924 const Type *UIntPtrTy = TD->getIntPtrType();
Chris Lattner35397782005-12-05 07:10:48 +00002925 Value *Ptr = new CastInst(GEPI->getOperand(0), UIntPtrTy, "", GEPI);
2926 const Type *Ty = GEPI->getOperand(0)->getType();
2927
2928 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
2929 E = GEPI->op_end(); OI != E; ++OI) {
2930 Value *Idx = *OI;
2931 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2932 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
2933 if (Field)
Owen Anderson20a631f2006-05-03 01:29:57 +00002934 ConstantOffset += TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattner35397782005-12-05 07:10:48 +00002935 Ty = StTy->getElementType(Field);
2936 } else {
2937 Ty = cast<SequentialType>(Ty)->getElementType();
2938
2939 // Handle constant subscripts.
2940 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2941 if (CI->getRawValue() == 0) continue;
2942
2943 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Anderson20a631f2006-05-03 01:29:57 +00002944 ConstantOffset += (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattner35397782005-12-05 07:10:48 +00002945 else
Owen Anderson20a631f2006-05-03 01:29:57 +00002946 ConstantOffset+=TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattner35397782005-12-05 07:10:48 +00002947 continue;
2948 }
2949
2950 // Ptr = Ptr + Idx * ElementSize;
2951
2952 // Cast Idx to UIntPtrTy if needed.
2953 Idx = new CastInst(Idx, UIntPtrTy, "", GEPI);
2954
Owen Anderson20a631f2006-05-03 01:29:57 +00002955 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattner35397782005-12-05 07:10:48 +00002956 // Mask off bits that should not be set.
2957 ElementSize &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
2958 Constant *SizeCst = ConstantUInt::get(UIntPtrTy, ElementSize);
2959
2960 // Multiply by the element size and add to the base.
2961 Idx = BinaryOperator::createMul(Idx, SizeCst, "", GEPI);
2962 Ptr = BinaryOperator::createAdd(Ptr, Idx, "", GEPI);
2963 }
2964 }
2965
2966 // Make sure that the offset fits in uintptr_t.
2967 ConstantOffset &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
2968 Constant *PtrOffset = ConstantUInt::get(UIntPtrTy, ConstantOffset);
2969
2970 // Okay, we have now emitted all of the variable index parts to the BB that
2971 // the GEP is defined in. Loop over all of the using instructions, inserting
2972 // an "add Ptr, ConstantOffset" into each block that uses it and update the
Chris Lattnerbe73d6e2005-12-08 08:00:12 +00002973 // instruction to use the newly computed value, making GEPI dead. When the
2974 // user is a load or store instruction address, we emit the add into the user
2975 // block, otherwise we use a canonical version right next to the gep (these
2976 // won't be foldable as addresses, so we might as well share the computation).
2977
Chris Lattner21cd9902006-05-06 09:10:37 +00002978 std::map<BasicBlock*,Instruction*> InsertedExprs;
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002979 ReplaceUsesOfGEPInst(GEPI, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattner35397782005-12-05 07:10:48 +00002980
2981 // Finally, the GEP is dead, remove it.
2982 GEPI->eraseFromParent();
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002983
2984 return true;
Chris Lattner35397782005-12-05 07:10:48 +00002985}
2986
Chris Lattner7a60d912005-01-07 07:47:53 +00002987bool SelectionDAGISel::runOnFunction(Function &Fn) {
2988 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
2989 RegMap = MF.getSSARegMap();
2990 DEBUG(std::cerr << "\n\n\n=== " << Fn.getName() << "\n");
2991
Chris Lattner35397782005-12-05 07:10:48 +00002992 // First, split all critical edges for PHI nodes with incoming values that are
2993 // constants, this way the load of the constant into a vreg will not be placed
2994 // into MBBs that are used some other way.
2995 //
Chris Lattner7a3ecf72006-05-05 01:04:50 +00002996 // In this pass we also look for GEP and cast instructions that are used
2997 // across basic blocks and rewrite them to improve basic-block-at-a-time
2998 // selection.
2999 //
Chris Lattner35397782005-12-05 07:10:48 +00003000 //
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003001 bool MadeChange = true;
3002 while (MadeChange) {
3003 MadeChange = false;
Chris Lattner1a908c82005-08-18 17:35:14 +00003004 for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
3005 PHINode *PN;
Chris Lattner35397782005-12-05 07:10:48 +00003006 BasicBlock::iterator BBI;
3007 for (BBI = BB->begin(); (PN = dyn_cast<PHINode>(BBI)); ++BBI)
Chris Lattner1a908c82005-08-18 17:35:14 +00003008 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3009 if (isa<Constant>(PN->getIncomingValue(i)))
3010 SplitCriticalEdge(PN->getIncomingBlock(i), BB);
Chris Lattner35397782005-12-05 07:10:48 +00003011
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003012 for (BasicBlock::iterator E = BB->end(); BBI != E; ) {
3013 Instruction *I = BBI++;
3014 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003015 MadeChange |= OptimizeGEPExpression(GEPI, TLI.getTargetData());
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003016 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
3017 // If this is a noop copy, sink it into user blocks to reduce the number
3018 // of virtual registers that must be created and coallesced.
3019 MVT::ValueType SrcVT = TLI.getValueType(CI->getOperand(0)->getType());
3020 MVT::ValueType DstVT = TLI.getValueType(CI->getType());
3021
3022 // This is an fp<->int conversion?
3023 if (MVT::isInteger(SrcVT) != MVT::isInteger(DstVT))
3024 continue;
3025
3026 // If this is an extension, it will be a zero or sign extension, which
3027 // isn't a noop.
3028 if (SrcVT < DstVT) continue;
3029
3030 // If these values will be promoted, find out what they will be promoted
3031 // to. This helps us consider truncates on PPC as noop copies when they
3032 // are.
3033 if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote)
3034 SrcVT = TLI.getTypeToTransformTo(SrcVT);
3035 if (TLI.getTypeAction(DstVT) == TargetLowering::Promote)
3036 DstVT = TLI.getTypeToTransformTo(DstVT);
3037
3038 // If, after promotion, these are the same types, this is a noop copy.
3039 if (SrcVT == DstVT)
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003040 MadeChange |= OptimizeNoopCopyExpression(CI);
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003041 }
3042 }
Chris Lattner1a908c82005-08-18 17:35:14 +00003043 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003044 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00003045
Chris Lattner7a60d912005-01-07 07:47:53 +00003046 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
3047
3048 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
3049 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukman835702a2005-04-21 22:36:52 +00003050
Chris Lattner7a60d912005-01-07 07:47:53 +00003051 return true;
3052}
3053
3054
Chris Lattner718b5c22005-01-13 17:59:43 +00003055SDOperand SelectionDAGISel::
3056CopyValueToVirtualRegister(SelectionDAGLowering &SDL, Value *V, unsigned Reg) {
Chris Lattner613f79f2005-01-11 22:03:46 +00003057 SDOperand Op = SDL.getValue(V);
Chris Lattnere727af02005-01-13 20:50:02 +00003058 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattner33182322005-08-16 21:55:35 +00003059 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattnere727af02005-01-13 20:50:02 +00003060 "Copy from a reg to the same reg!");
Chris Lattner33182322005-08-16 21:55:35 +00003061
3062 // If this type is not legal, we must make sure to not create an invalid
3063 // register use.
3064 MVT::ValueType SrcVT = Op.getValueType();
3065 MVT::ValueType DestVT = TLI.getTypeToTransformTo(SrcVT);
3066 SelectionDAG &DAG = SDL.DAG;
3067 if (SrcVT == DestVT) {
3068 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
Chris Lattner672a42d2006-03-21 19:20:37 +00003069 } else if (SrcVT == MVT::Vector) {
Chris Lattner5fe1f542006-03-31 02:06:56 +00003070 // Handle copies from generic vectors to registers.
3071 MVT::ValueType PTyElementVT, PTyLegalElementVT;
3072 unsigned NE = TLI.getPackedTypeBreakdown(cast<PackedType>(V->getType()),
3073 PTyElementVT, PTyLegalElementVT);
Chris Lattner672a42d2006-03-21 19:20:37 +00003074
Chris Lattner5fe1f542006-03-31 02:06:56 +00003075 // Insert a VBIT_CONVERT of the input vector to a "N x PTyElementVT"
3076 // MVT::Vector type.
3077 Op = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Op,
3078 DAG.getConstant(NE, MVT::i32),
3079 DAG.getValueType(PTyElementVT));
Chris Lattner672a42d2006-03-21 19:20:37 +00003080
Chris Lattner5fe1f542006-03-31 02:06:56 +00003081 // Loop over all of the elements of the resultant vector,
3082 // VEXTRACT_VECTOR_ELT'ing them, converting them to PTyLegalElementVT, then
3083 // copying them into output registers.
3084 std::vector<SDOperand> OutChains;
3085 SDOperand Root = SDL.getRoot();
3086 for (unsigned i = 0; i != NE; ++i) {
3087 SDOperand Elt = DAG.getNode(ISD::VEXTRACT_VECTOR_ELT, PTyElementVT,
3088 Op, DAG.getConstant(i, MVT::i32));
3089 if (PTyElementVT == PTyLegalElementVT) {
3090 // Elements are legal.
3091 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3092 } else if (PTyLegalElementVT > PTyElementVT) {
3093 // Elements are promoted.
3094 if (MVT::isFloatingPoint(PTyLegalElementVT))
3095 Elt = DAG.getNode(ISD::FP_EXTEND, PTyLegalElementVT, Elt);
3096 else
3097 Elt = DAG.getNode(ISD::ANY_EXTEND, PTyLegalElementVT, Elt);
3098 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3099 } else {
3100 // Elements are expanded.
3101 // The src value is expanded into multiple registers.
3102 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
3103 Elt, DAG.getConstant(0, MVT::i32));
3104 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
3105 Elt, DAG.getConstant(1, MVT::i32));
3106 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Lo));
3107 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Hi));
3108 }
Chris Lattner672a42d2006-03-21 19:20:37 +00003109 }
Chris Lattner5fe1f542006-03-31 02:06:56 +00003110 return DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattner33182322005-08-16 21:55:35 +00003111 } else if (SrcVT < DestVT) {
3112 // The src value is promoted to the register.
Chris Lattnerba28c272005-08-17 06:06:25 +00003113 if (MVT::isFloatingPoint(SrcVT))
3114 Op = DAG.getNode(ISD::FP_EXTEND, DestVT, Op);
3115 else
Chris Lattnera66403d2005-09-02 00:19:37 +00003116 Op = DAG.getNode(ISD::ANY_EXTEND, DestVT, Op);
Chris Lattner33182322005-08-16 21:55:35 +00003117 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
3118 } else {
3119 // The src value is expanded into multiple registers.
3120 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
3121 Op, DAG.getConstant(0, MVT::i32));
3122 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
3123 Op, DAG.getConstant(1, MVT::i32));
3124 Op = DAG.getCopyToReg(SDL.getRoot(), Reg, Lo);
3125 return DAG.getCopyToReg(Op, Reg+1, Hi);
3126 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003127}
3128
Chris Lattner16f64df2005-01-17 17:15:02 +00003129void SelectionDAGISel::
3130LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL,
3131 std::vector<SDOperand> &UnorderedChains) {
3132 // If this is the entry block, emit arguments.
3133 Function &F = *BB->getParent();
Chris Lattnere3c2cf42005-01-17 17:55:19 +00003134 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattner6871b232005-10-30 19:42:35 +00003135 SDOperand OldRoot = SDL.DAG.getRoot();
3136 std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
Chris Lattner16f64df2005-01-17 17:15:02 +00003137
Chris Lattner6871b232005-10-30 19:42:35 +00003138 unsigned a = 0;
3139 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
3140 AI != E; ++AI, ++a)
3141 if (!AI->use_empty()) {
3142 SDL.setValue(AI, Args[a]);
Evan Cheng3784f3c52006-04-27 08:29:42 +00003143
Chris Lattner6871b232005-10-30 19:42:35 +00003144 // If this argument is live outside of the entry block, insert a copy from
3145 // whereever we got it to the vreg that other BB's will reference it as.
3146 if (FuncInfo.ValueMap.count(AI)) {
3147 SDOperand Copy =
3148 CopyValueToVirtualRegister(SDL, AI, FuncInfo.ValueMap[AI]);
3149 UnorderedChains.push_back(Copy);
3150 }
Chris Lattnere3c2cf42005-01-17 17:55:19 +00003151 }
Chris Lattner6871b232005-10-30 19:42:35 +00003152
3153 // Next, if the function has live ins that need to be copied into vregs,
3154 // emit the copies now, into the top of the block.
3155 MachineFunction &MF = SDL.DAG.getMachineFunction();
3156 if (MF.livein_begin() != MF.livein_end()) {
3157 SSARegMap *RegMap = MF.getSSARegMap();
3158 const MRegisterInfo &MRI = *MF.getTarget().getRegisterInfo();
3159 for (MachineFunction::livein_iterator LI = MF.livein_begin(),
3160 E = MF.livein_end(); LI != E; ++LI)
3161 if (LI->second)
3162 MRI.copyRegToReg(*MF.begin(), MF.begin()->end(), LI->second,
3163 LI->first, RegMap->getRegClass(LI->second));
Chris Lattner16f64df2005-01-17 17:15:02 +00003164 }
Chris Lattner6871b232005-10-30 19:42:35 +00003165
3166 // Finally, if the target has anything special to do, allow it to do so.
3167 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner16f64df2005-01-17 17:15:02 +00003168}
3169
3170
Chris Lattner7a60d912005-01-07 07:47:53 +00003171void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
3172 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemaned728c12006-03-27 01:32:24 +00003173 FunctionLoweringInfo &FuncInfo) {
Chris Lattner7a60d912005-01-07 07:47:53 +00003174 SelectionDAGLowering SDL(DAG, TLI, FuncInfo);
Chris Lattner718b5c22005-01-13 17:59:43 +00003175
3176 std::vector<SDOperand> UnorderedChains;
Misha Brukman835702a2005-04-21 22:36:52 +00003177
Chris Lattner6871b232005-10-30 19:42:35 +00003178 // Lower any arguments needed in this block if this is the entry block.
3179 if (LLVMBB == &LLVMBB->getParent()->front())
3180 LowerArguments(LLVMBB, SDL, UnorderedChains);
Chris Lattner7a60d912005-01-07 07:47:53 +00003181
3182 BB = FuncInfo.MBBMap[LLVMBB];
3183 SDL.setCurrentBasicBlock(BB);
3184
3185 // Lower all of the non-terminator instructions.
3186 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
3187 I != E; ++I)
3188 SDL.visit(*I);
Nate Begemaned728c12006-03-27 01:32:24 +00003189
Chris Lattner7a60d912005-01-07 07:47:53 +00003190 // Ensure that all instructions which are used outside of their defining
3191 // blocks are available as virtual registers.
3192 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Chris Lattner613f79f2005-01-11 22:03:46 +00003193 if (!I->use_empty() && !isa<PHINode>(I)) {
Chris Lattnera2c5d912005-01-09 01:16:24 +00003194 std::map<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner7a60d912005-01-07 07:47:53 +00003195 if (VMI != FuncInfo.ValueMap.end())
Chris Lattner718b5c22005-01-13 17:59:43 +00003196 UnorderedChains.push_back(
3197 CopyValueToVirtualRegister(SDL, I, VMI->second));
Chris Lattner7a60d912005-01-07 07:47:53 +00003198 }
3199
3200 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
3201 // ensure constants are generated when needed. Remember the virtual registers
3202 // that need to be added to the Machine PHI nodes as input. We cannot just
3203 // directly add them, because expansion might result in multiple MBB's for one
3204 // BB. As such, the start of the BB might correspond to a different MBB than
3205 // the end.
Misha Brukman835702a2005-04-21 22:36:52 +00003206 //
Chris Lattner7a60d912005-01-07 07:47:53 +00003207
3208 // Emit constants only once even if used by multiple PHI nodes.
3209 std::map<Constant*, unsigned> ConstantsOut;
3210
3211 // Check successor nodes PHI nodes that expect a constant to be available from
3212 // this block.
3213 TerminatorInst *TI = LLVMBB->getTerminator();
3214 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
3215 BasicBlock *SuccBB = TI->getSuccessor(succ);
3216 MachineBasicBlock::iterator MBBI = FuncInfo.MBBMap[SuccBB]->begin();
3217 PHINode *PN;
3218
3219 // At this point we know that there is a 1-1 correspondence between LLVM PHI
3220 // nodes and Machine PHI nodes, but the incoming operands have not been
3221 // emitted yet.
3222 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattner8ea875f2005-01-07 21:34:19 +00003223 (PN = dyn_cast<PHINode>(I)); ++I)
3224 if (!PN->use_empty()) {
3225 unsigned Reg;
3226 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
3227 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
3228 unsigned &RegOut = ConstantsOut[C];
3229 if (RegOut == 0) {
3230 RegOut = FuncInfo.CreateRegForValue(C);
Chris Lattner718b5c22005-01-13 17:59:43 +00003231 UnorderedChains.push_back(
3232 CopyValueToVirtualRegister(SDL, C, RegOut));
Chris Lattner8ea875f2005-01-07 21:34:19 +00003233 }
3234 Reg = RegOut;
3235 } else {
3236 Reg = FuncInfo.ValueMap[PHIOp];
Chris Lattnera2c5d912005-01-09 01:16:24 +00003237 if (Reg == 0) {
Misha Brukman835702a2005-04-21 22:36:52 +00003238 assert(isa<AllocaInst>(PHIOp) &&
Chris Lattnera2c5d912005-01-09 01:16:24 +00003239 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
3240 "Didn't codegen value into a register!??");
3241 Reg = FuncInfo.CreateRegForValue(PHIOp);
Chris Lattner718b5c22005-01-13 17:59:43 +00003242 UnorderedChains.push_back(
3243 CopyValueToVirtualRegister(SDL, PHIOp, Reg));
Chris Lattnera2c5d912005-01-09 01:16:24 +00003244 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003245 }
Misha Brukman835702a2005-04-21 22:36:52 +00003246
Chris Lattner8ea875f2005-01-07 21:34:19 +00003247 // Remember that this register needs to added to the machine PHI node as
3248 // the input for this MBB.
Chris Lattnerba380352006-03-31 02:12:18 +00003249 MVT::ValueType VT = TLI.getValueType(PN->getType());
3250 unsigned NumElements;
3251 if (VT != MVT::Vector)
3252 NumElements = TLI.getNumElements(VT);
3253 else {
3254 MVT::ValueType VT1,VT2;
3255 NumElements =
3256 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
3257 VT1, VT2);
3258 }
Chris Lattner8ea875f2005-01-07 21:34:19 +00003259 for (unsigned i = 0, e = NumElements; i != e; ++i)
3260 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
Chris Lattner7a60d912005-01-07 07:47:53 +00003261 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003262 }
3263 ConstantsOut.clear();
3264
Chris Lattner718b5c22005-01-13 17:59:43 +00003265 // Turn all of the unordered chains into one factored node.
Chris Lattner24516842005-01-13 19:53:14 +00003266 if (!UnorderedChains.empty()) {
Chris Lattnerb7cad902005-11-09 05:03:03 +00003267 SDOperand Root = SDL.getRoot();
3268 if (Root.getOpcode() != ISD::EntryToken) {
3269 unsigned i = 0, e = UnorderedChains.size();
3270 for (; i != e; ++i) {
3271 assert(UnorderedChains[i].Val->getNumOperands() > 1);
3272 if (UnorderedChains[i].Val->getOperand(0) == Root)
3273 break; // Don't add the root if we already indirectly depend on it.
3274 }
3275
3276 if (i == e)
3277 UnorderedChains.push_back(Root);
3278 }
Chris Lattner718b5c22005-01-13 17:59:43 +00003279 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, UnorderedChains));
3280 }
3281
Chris Lattner7a60d912005-01-07 07:47:53 +00003282 // Lower the terminator after the copies are emitted.
3283 SDL.visit(*LLVMBB->getTerminator());
Chris Lattner4108bb02005-01-17 19:43:36 +00003284
Nate Begemaned728c12006-03-27 01:32:24 +00003285 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003286 // lowering, as well as any jump table information.
Nate Begemaned728c12006-03-27 01:32:24 +00003287 SwitchCases.clear();
3288 SwitchCases = SDL.SwitchCases;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003289 JT = SDL.JT;
Nate Begemaned728c12006-03-27 01:32:24 +00003290
Chris Lattner4108bb02005-01-17 19:43:36 +00003291 // Make sure the root of the DAG is up-to-date.
3292 DAG.setRoot(SDL.getRoot());
Chris Lattner7a60d912005-01-07 07:47:53 +00003293}
3294
Nate Begemaned728c12006-03-27 01:32:24 +00003295void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Chris Lattnerbcfebeb2005-10-10 16:47:10 +00003296 // Run the DAG combiner in pre-legalize mode.
3297 DAG.Combine(false);
Nate Begeman007c6502005-09-07 00:15:36 +00003298
Chris Lattner7a60d912005-01-07 07:47:53 +00003299 DEBUG(std::cerr << "Lowered selection DAG:\n");
3300 DEBUG(DAG.dump());
Nate Begemaned728c12006-03-27 01:32:24 +00003301
Chris Lattner7a60d912005-01-07 07:47:53 +00003302 // Second step, hack on the DAG until it only uses operations and types that
3303 // the target supports.
Chris Lattnerffcb0ae2005-01-23 04:36:26 +00003304 DAG.Legalize();
Nate Begemaned728c12006-03-27 01:32:24 +00003305
Chris Lattner7a60d912005-01-07 07:47:53 +00003306 DEBUG(std::cerr << "Legalized selection DAG:\n");
3307 DEBUG(DAG.dump());
Nate Begemaned728c12006-03-27 01:32:24 +00003308
Chris Lattnerbcfebeb2005-10-10 16:47:10 +00003309 // Run the DAG combiner in post-legalize mode.
3310 DAG.Combine(true);
Nate Begeman007c6502005-09-07 00:15:36 +00003311
Evan Cheng739a6a42006-01-21 02:32:06 +00003312 if (ViewISelDAGs) DAG.viewGraph();
Evan Cheng51ab4492006-04-28 02:09:19 +00003313
Chris Lattner5ca31d92005-03-30 01:10:47 +00003314 // Third, instruction select all of the operations to machine code, adding the
3315 // code to the MachineBasicBlock.
Chris Lattner7a60d912005-01-07 07:47:53 +00003316 InstructionSelectBasicBlock(DAG);
Nate Begemaned728c12006-03-27 01:32:24 +00003317
Chris Lattner7a60d912005-01-07 07:47:53 +00003318 DEBUG(std::cerr << "Selected machine code:\n");
3319 DEBUG(BB->dump());
Nate Begemaned728c12006-03-27 01:32:24 +00003320}
Chris Lattner7a60d912005-01-07 07:47:53 +00003321
Nate Begemaned728c12006-03-27 01:32:24 +00003322void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
3323 FunctionLoweringInfo &FuncInfo) {
3324 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
3325 {
3326 SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3327 CurDAG = &DAG;
3328
3329 // First step, lower LLVM code to some DAG. This DAG may use operations and
3330 // types that are not supported by the target.
3331 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
3332
3333 // Second step, emit the lowered DAG as machine code.
3334 CodeGenAndEmitDAG(DAG);
3335 }
3336
Chris Lattner5ca31d92005-03-30 01:10:47 +00003337 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner7a60d912005-01-07 07:47:53 +00003338 // PHI nodes in successors.
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003339 if (SwitchCases.empty() && JT.Reg == 0) {
Nate Begemaned728c12006-03-27 01:32:24 +00003340 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
3341 MachineInstr *PHI = PHINodesToUpdate[i].first;
3342 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3343 "This is not a machine PHI node that we are updating!");
3344 PHI->addRegOperand(PHINodesToUpdate[i].second);
3345 PHI->addMachineBasicBlockOperand(BB);
3346 }
3347 return;
Chris Lattner7a60d912005-01-07 07:47:53 +00003348 }
Nate Begemaned728c12006-03-27 01:32:24 +00003349
Nate Begeman866b4b42006-04-23 06:26:20 +00003350 // If the JumpTable record is filled in, then we need to emit a jump table.
3351 // Updating the PHI nodes is tricky in this case, since we need to determine
3352 // whether the PHI is a successor of the range check MBB or the jump table MBB
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003353 if (JT.Reg) {
3354 assert(SwitchCases.empty() && "Cannot have jump table and lowered switch");
3355 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3356 CurDAG = &SDAG;
3357 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
Nate Begeman866b4b42006-04-23 06:26:20 +00003358 MachineBasicBlock *RangeBB = BB;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003359 // Set the current basic block to the mbb we wish to insert the code into
3360 BB = JT.MBB;
3361 SDL.setCurrentBasicBlock(BB);
3362 // Emit the code
3363 SDL.visitJumpTable(JT);
3364 SDAG.setRoot(SDL.getRoot());
3365 CodeGenAndEmitDAG(SDAG);
3366 // Update PHI Nodes
3367 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3368 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3369 MachineBasicBlock *PHIBB = PHI->getParent();
3370 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3371 "This is not a machine PHI node that we are updating!");
Nate Begemandf488392006-05-03 03:48:02 +00003372 if (PHIBB == JT.Default) {
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003373 PHI->addRegOperand(PHINodesToUpdate[pi].second);
Nate Begemandf488392006-05-03 03:48:02 +00003374 PHI->addMachineBasicBlockOperand(RangeBB);
3375 }
3376 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
3377 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3378 PHI->addMachineBasicBlockOperand(BB);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003379 }
3380 }
3381 return;
3382 }
3383
Nate Begemaned728c12006-03-27 01:32:24 +00003384 // If we generated any switch lowering information, build and codegen any
3385 // additional DAGs necessary.
3386 for(unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
3387 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3388 CurDAG = &SDAG;
3389 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
3390 // Set the current basic block to the mbb we wish to insert the code into
3391 BB = SwitchCases[i].ThisBB;
3392 SDL.setCurrentBasicBlock(BB);
3393 // Emit the code
3394 SDL.visitSwitchCase(SwitchCases[i]);
3395 SDAG.setRoot(SDL.getRoot());
3396 CodeGenAndEmitDAG(SDAG);
3397 // Iterate over the phi nodes, if there is a phi node in a successor of this
3398 // block (for instance, the default block), then add a pair of operands to
3399 // the phi node for this block, as if we were coming from the original
3400 // BB before switch expansion.
3401 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3402 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3403 MachineBasicBlock *PHIBB = PHI->getParent();
3404 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3405 "This is not a machine PHI node that we are updating!");
3406 if (PHIBB == SwitchCases[i].LHSBB || PHIBB == SwitchCases[i].RHSBB) {
3407 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3408 PHI->addMachineBasicBlockOperand(BB);
3409 }
3410 }
Chris Lattner5ca31d92005-03-30 01:10:47 +00003411 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003412}
Evan Cheng739a6a42006-01-21 02:32:06 +00003413
3414//===----------------------------------------------------------------------===//
3415/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
3416/// target node in the graph.
3417void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
3418 if (ViewSchedDAGs) DAG.viewGraph();
Evan Chengc1e1d972006-01-23 07:01:07 +00003419 ScheduleDAG *SL = NULL;
3420
3421 switch (ISHeuristic) {
3422 default: assert(0 && "Unrecognized scheduling heuristic");
Evan Chengd1915cf2006-05-13 05:53:47 +00003423 case defaultScheduling:
Evan Chenga6eff8a2006-01-25 09:12:57 +00003424 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency)
Chris Lattnerb21d3bf2006-04-21 17:16:16 +00003425 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
3426 else {
3427 assert(TLI.getSchedulingPreference() ==
3428 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Evan Chenga6eff8a2006-01-25 09:12:57 +00003429 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattnerb21d3bf2006-04-21 17:16:16 +00003430 }
Evan Chenga6eff8a2006-01-25 09:12:57 +00003431 break;
Evan Chengd1915cf2006-05-13 05:53:47 +00003432 case noScheduling:
Chris Lattner5255d042006-03-10 07:49:12 +00003433 SL = createBFS_DAGScheduler(DAG, BB);
3434 break;
Evan Chengd1915cf2006-05-13 05:53:47 +00003435 case simpleScheduling:
Chris Lattner5255d042006-03-10 07:49:12 +00003436 SL = createSimpleDAGScheduler(false, DAG, BB);
3437 break;
Evan Chengd1915cf2006-05-13 05:53:47 +00003438 case simpleNoItinScheduling:
Chris Lattner5255d042006-03-10 07:49:12 +00003439 SL = createSimpleDAGScheduler(true, DAG, BB);
Evan Chengc1e1d972006-01-23 07:01:07 +00003440 break;
Evan Chengd1915cf2006-05-13 05:53:47 +00003441 case listSchedulingBURR:
Evan Cheng31272342006-01-23 08:26:10 +00003442 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattner98ecb8e2006-03-05 21:10:33 +00003443 break;
Evan Chengd1915cf2006-05-13 05:53:47 +00003444 case listSchedulingTDRR:
Evan Chengd38c22b2006-05-11 23:55:42 +00003445 SL = createTDRRListDAGScheduler(DAG, BB);
3446 break;
Evan Chengd1915cf2006-05-13 05:53:47 +00003447 case listSchedulingTD:
Chris Lattner543832d2006-03-08 04:25:59 +00003448 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
Chris Lattner98ecb8e2006-03-05 21:10:33 +00003449 break;
Evan Chengc1e1d972006-01-23 07:01:07 +00003450 }
Chris Lattnere23928c2006-01-21 19:12:11 +00003451 BB = SL->Run();
Evan Chengf9adce92006-02-04 06:49:00 +00003452 delete SL;
Evan Cheng739a6a42006-01-21 02:32:06 +00003453}
Chris Lattnerdcf785b2006-02-24 02:13:54 +00003454
Chris Lattner543832d2006-03-08 04:25:59 +00003455HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
3456 return new HazardRecognizer();
Chris Lattner47639db2006-03-06 00:22:00 +00003457}
3458
Chris Lattnerdcf785b2006-02-24 02:13:54 +00003459/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
3460/// by tblgen. Others should not call it.
3461void SelectionDAGISel::
3462SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
3463 std::vector<SDOperand> InOps;
3464 std::swap(InOps, Ops);
3465
3466 Ops.push_back(InOps[0]); // input chain.
3467 Ops.push_back(InOps[1]); // input asm string.
3468
Chris Lattnerdcf785b2006-02-24 02:13:54 +00003469 unsigned i = 2, e = InOps.size();
3470 if (InOps[e-1].getValueType() == MVT::Flag)
3471 --e; // Don't process a flag operand if it is here.
3472
3473 while (i != e) {
3474 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
3475 if ((Flags & 7) != 4 /*MEM*/) {
3476 // Just skip over this operand, copying the operands verbatim.
3477 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
3478 i += (Flags >> 3) + 1;
3479 } else {
3480 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
3481 // Otherwise, this is a memory operand. Ask the target to select it.
3482 std::vector<SDOperand> SelOps;
3483 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
3484 std::cerr << "Could not match memory address. Inline asm failure!\n";
3485 exit(1);
3486 }
3487
3488 // Add this to the output node.
3489 Ops.push_back(DAG.getConstant(4/*MEM*/ | (SelOps.size() << 3), MVT::i32));
3490 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
3491 i += 2;
3492 }
3493 }
3494
3495 // Add the flag input back if present.
3496 if (e != InOps.size())
3497 Ops.push_back(InOps.back());
3498}