blob: 5a97aa6b399c725f77edc39db982c4b1e63ea092 [file] [log] [blame]
Chris Lattner1c08c712005-01-07 07:47:53 +00001//===-- SelectionDAGISel.cpp - Implement the SelectionDAGISel class -------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner1c08c712005-01-07 07:47:53 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner1c08c712005-01-07 07:47:53 +00008//===----------------------------------------------------------------------===//
9//
10// This implements the SelectionDAGISel class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
15#include "llvm/CodeGen/SelectionDAGISel.h"
Evan Chenga9c20912006-01-21 02:32:06 +000016#include "llvm/CodeGen/ScheduleDAG.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000017#include "llvm/CallingConv.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000018#include "llvm/Constants.h"
19#include "llvm/DerivedTypes.h"
20#include "llvm/Function.h"
Chris Lattner36ce6912005-11-29 06:21:05 +000021#include "llvm/GlobalVariable.h"
Chris Lattnerce7518c2006-01-26 22:24:51 +000022#include "llvm/InlineAsm.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000023#include "llvm/Instructions.h"
24#include "llvm/Intrinsics.h"
Jim Laskey43970fe2006-03-23 18:06:46 +000025#include "llvm/IntrinsicInst.h"
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +000026#include "llvm/CodeGen/IntrinsicLowering.h"
Jim Laskeyb2efb852006-01-04 22:28:25 +000027#include "llvm/CodeGen/MachineDebugInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000028#include "llvm/CodeGen/MachineFunction.h"
29#include "llvm/CodeGen/MachineFrameInfo.h"
Nate Begeman37efe672006-04-22 18:53:45 +000030#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000031#include "llvm/CodeGen/MachineInstrBuilder.h"
32#include "llvm/CodeGen/SelectionDAG.h"
33#include "llvm/CodeGen/SSARegMap.h"
Chris Lattnerfa577022005-09-13 19:30:54 +000034#include "llvm/Target/MRegisterInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000035#include "llvm/Target/TargetData.h"
36#include "llvm/Target/TargetFrameInfo.h"
37#include "llvm/Target/TargetInstrInfo.h"
38#include "llvm/Target/TargetLowering.h"
39#include "llvm/Target/TargetMachine.h"
Chris Lattner495a0b52005-08-17 06:37:43 +000040#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattner7944d9d2005-01-12 03:41:21 +000041#include "llvm/Support/CommandLine.h"
Chris Lattner7c0104b2005-11-09 04:45:33 +000042#include "llvm/Support/MathExtras.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000043#include "llvm/Support/Debug.h"
44#include <map>
Chris Lattner4e4b5762006-02-01 18:59:47 +000045#include <set>
Chris Lattner1c08c712005-01-07 07:47:53 +000046#include <iostream>
Jeff Cohen7e881032006-02-24 02:52:40 +000047#include <algorithm>
Chris Lattner1c08c712005-01-07 07:47:53 +000048using namespace llvm;
49
Chris Lattnerda8abb02005-09-01 18:44:10 +000050#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000051static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000052ViewISelDAGs("view-isel-dags", cl::Hidden,
53 cl::desc("Pop up a window to show isel dags as they are selected"));
54static cl::opt<bool>
55ViewSchedDAGs("view-sched-dags", cl::Hidden,
56 cl::desc("Pop up a window to show sched dags as they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +000057#else
Chris Lattner5e46a192006-04-02 03:07:27 +000058static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0;
Chris Lattner7944d9d2005-01-12 03:41:21 +000059#endif
60
Chris Lattner20a49212006-03-10 07:49:12 +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 listSchedulingTD // Top-down list scheduler.
69};
70
Evan Cheng4ef10862006-01-23 07:01:07 +000071namespace {
72 cl::opt<SchedHeuristics>
73 ISHeuristic(
74 "sched",
75 cl::desc("Choose scheduling style"),
Evan Cheng3f239522006-01-25 09:12:57 +000076 cl::init(defaultScheduling),
Evan Cheng4ef10862006-01-23 07:01:07 +000077 cl::values(
Evan Cheng3f239522006-01-25 09:12:57 +000078 clEnumValN(defaultScheduling, "default",
79 "Target preferred scheduling style"),
Evan Cheng4ef10862006-01-23 07:01:07 +000080 clEnumValN(noScheduling, "none",
Jim Laskey17d52f72006-01-23 13:34:04 +000081 "No scheduling: breadth first sequencing"),
Evan Cheng4ef10862006-01-23 07:01:07 +000082 clEnumValN(simpleScheduling, "simple",
83 "Simple two pass scheduling: minimize critical path "
84 "and maximize processor utilization"),
85 clEnumValN(simpleNoItinScheduling, "simple-noitin",
86 "Simple two pass scheduling: Same as simple "
87 "except using generic latency"),
Evan Cheng3f239522006-01-25 09:12:57 +000088 clEnumValN(listSchedulingBURR, "list-burr",
Evan Chengf0f9c902006-01-23 08:26:10 +000089 "Bottom up register reduction list scheduling"),
Chris Lattner03fc53c2006-03-06 00:22:00 +000090 clEnumValN(listSchedulingTD, "list-td",
91 "Top-down list scheduler"),
Evan Cheng4ef10862006-01-23 07:01:07 +000092 clEnumValEnd));
93} // namespace
94
Chris Lattner864635a2006-02-22 22:37:12 +000095namespace {
96 /// RegsForValue - This struct represents the physical registers that a
97 /// particular value is assigned and the type information about the value.
98 /// This is needed because values can be promoted into larger registers and
99 /// expanded into multiple smaller registers than the value.
100 struct RegsForValue {
101 /// Regs - This list hold the register (for legal and promoted values)
102 /// or register set (for expanded values) that the value should be assigned
103 /// to.
104 std::vector<unsigned> Regs;
105
106 /// RegVT - The value type of each register.
107 ///
108 MVT::ValueType RegVT;
109
110 /// ValueVT - The value type of the LLVM value, which may be promoted from
111 /// RegVT or made from merging the two expanded parts.
112 MVT::ValueType ValueVT;
113
114 RegsForValue() : RegVT(MVT::Other), ValueVT(MVT::Other) {}
115
116 RegsForValue(unsigned Reg, MVT::ValueType regvt, MVT::ValueType valuevt)
117 : RegVT(regvt), ValueVT(valuevt) {
118 Regs.push_back(Reg);
119 }
120 RegsForValue(const std::vector<unsigned> &regs,
121 MVT::ValueType regvt, MVT::ValueType valuevt)
122 : Regs(regs), RegVT(regvt), ValueVT(valuevt) {
123 }
124
125 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
126 /// this value and returns the result as a ValueVT value. This uses
127 /// Chain/Flag as the input and updates them for the output Chain/Flag.
128 SDOperand getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000129 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000130
131 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
132 /// specified value into the registers specified by this object. This uses
133 /// Chain/Flag as the input and updates them for the output Chain/Flag.
134 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000135 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000136
137 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
138 /// operand list. This adds the code marker and includes the number of
139 /// values added into it.
140 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000141 std::vector<SDOperand> &Ops) const;
Chris Lattner864635a2006-02-22 22:37:12 +0000142 };
143}
Evan Cheng4ef10862006-01-23 07:01:07 +0000144
Chris Lattner1c08c712005-01-07 07:47:53 +0000145namespace llvm {
146 //===--------------------------------------------------------------------===//
147 /// FunctionLoweringInfo - This contains information that is global to a
148 /// function that is used when lowering a region of the function.
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000149 class FunctionLoweringInfo {
150 public:
Chris Lattner1c08c712005-01-07 07:47:53 +0000151 TargetLowering &TLI;
152 Function &Fn;
153 MachineFunction &MF;
154 SSARegMap *RegMap;
155
156 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
157
158 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
159 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
160
161 /// ValueMap - Since we emit code for the function a basic block at a time,
162 /// we must remember which virtual registers hold the values for
163 /// cross-basic-block values.
164 std::map<const Value*, unsigned> ValueMap;
165
166 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
167 /// the entry block. This allows the allocas to be efficiently referenced
168 /// anywhere in the function.
169 std::map<const AllocaInst*, int> StaticAllocaMap;
170
171 unsigned MakeReg(MVT::ValueType VT) {
172 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
173 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000174
Chris Lattner3c384492006-03-16 19:51:18 +0000175 unsigned CreateRegForValue(const Value *V);
176
Chris Lattner1c08c712005-01-07 07:47:53 +0000177 unsigned InitializeRegForValue(const Value *V) {
178 unsigned &R = ValueMap[V];
179 assert(R == 0 && "Already initialized this value register!");
180 return R = CreateRegForValue(V);
181 }
182 };
183}
184
185/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemanf15485a2006-03-27 01:32:24 +0000186/// PHI nodes or outside of the basic block that defines it, or used by a
187/// switch instruction, which may expand to multiple basic blocks.
Chris Lattner1c08c712005-01-07 07:47:53 +0000188static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
189 if (isa<PHINode>(I)) return true;
190 BasicBlock *BB = I->getParent();
191 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000192 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
193 isa<SwitchInst>(*UI))
Chris Lattner1c08c712005-01-07 07:47:53 +0000194 return true;
195 return false;
196}
197
Chris Lattnerbf209482005-10-30 19:42:35 +0000198/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemanf15485a2006-03-27 01:32:24 +0000199/// entry block, return true. This includes arguments used by switches, since
200/// the switch may expand into multiple basic blocks.
Chris Lattnerbf209482005-10-30 19:42:35 +0000201static bool isOnlyUsedInEntryBlock(Argument *A) {
202 BasicBlock *Entry = A->getParent()->begin();
203 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000204 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattnerbf209482005-10-30 19:42:35 +0000205 return false; // Use not in entry block.
206 return true;
207}
208
Chris Lattner1c08c712005-01-07 07:47:53 +0000209FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000210 Function &fn, MachineFunction &mf)
Chris Lattner1c08c712005-01-07 07:47:53 +0000211 : TLI(tli), Fn(fn), MF(mf), RegMap(MF.getSSARegMap()) {
212
Chris Lattnerbf209482005-10-30 19:42:35 +0000213 // Create a vreg for each argument register that is not dead and is used
214 // outside of the entry block for the function.
215 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
216 AI != E; ++AI)
217 if (!isOnlyUsedInEntryBlock(AI))
218 InitializeRegForValue(AI);
219
Chris Lattner1c08c712005-01-07 07:47:53 +0000220 // Initialize the mapping of values to registers. This is only set up for
221 // instruction values that are used outside of the block that defines
222 // them.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000223 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner1c08c712005-01-07 07:47:53 +0000224 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
225 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
226 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(AI->getArraySize())) {
227 const Type *Ty = AI->getAllocatedType();
228 uint64_t TySize = TLI.getTargetData().getTypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +0000229 unsigned Align =
230 std::max((unsigned)TLI.getTargetData().getTypeAlignment(Ty),
231 AI->getAlignment());
Chris Lattnera8217e32005-05-13 23:14:17 +0000232
233 // If the alignment of the value is smaller than the size of the value,
234 // and if the size of the value is particularly small (<= 8 bytes),
235 // round up to the size of the value for potentially better performance.
236 //
237 // FIXME: This could be made better with a preferred alignment hook in
238 // TargetData. It serves primarily to 8-byte align doubles for X86.
239 if (Align < TySize && TySize <= 8) Align = TySize;
Chris Lattner2dfa8192005-10-18 22:11:42 +0000240 TySize *= CUI->getValue(); // Get total allocated size.
Chris Lattnerd222f6a2005-10-18 22:14:06 +0000241 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner1c08c712005-01-07 07:47:53 +0000242 StaticAllocaMap[AI] =
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000243 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
Chris Lattner1c08c712005-01-07 07:47:53 +0000244 }
245
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000246 for (; BB != EB; ++BB)
247 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +0000248 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
249 if (!isa<AllocaInst>(I) ||
250 !StaticAllocaMap.count(cast<AllocaInst>(I)))
251 InitializeRegForValue(I);
252
253 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
254 // also creates the initial PHI MachineInstrs, though none of the input
255 // operands are populated.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000256 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000257 MachineBasicBlock *MBB = new MachineBasicBlock(BB);
258 MBBMap[BB] = MBB;
259 MF.getBasicBlockList().push_back(MBB);
260
261 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
262 // appropriate.
263 PHINode *PN;
264 for (BasicBlock::iterator I = BB->begin();
Chris Lattnerf44fd882005-01-07 21:34:19 +0000265 (PN = dyn_cast<PHINode>(I)); ++I)
266 if (!PN->use_empty()) {
Chris Lattner70c2a612006-03-31 02:06:56 +0000267 MVT::ValueType VT = TLI.getValueType(PN->getType());
268 unsigned NumElements;
269 if (VT != MVT::Vector)
270 NumElements = TLI.getNumElements(VT);
271 else {
272 MVT::ValueType VT1,VT2;
273 NumElements =
274 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
275 VT1, VT2);
276 }
Chris Lattnerf44fd882005-01-07 21:34:19 +0000277 unsigned PHIReg = ValueMap[PN];
278 assert(PHIReg &&"PHI node does not have an assigned virtual register!");
279 for (unsigned i = 0; i != NumElements; ++i)
280 BuildMI(MBB, TargetInstrInfo::PHI, PN->getNumOperands(), PHIReg+i);
281 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000282 }
283}
284
Chris Lattner3c384492006-03-16 19:51:18 +0000285/// CreateRegForValue - Allocate the appropriate number of virtual registers of
286/// the correctly promoted or expanded types. Assign these registers
287/// consecutive vreg numbers and return the first assigned number.
288unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
289 MVT::ValueType VT = TLI.getValueType(V->getType());
290
291 // The number of multiples of registers that we need, to, e.g., split up
292 // a <2 x int64> -> 4 x i32 registers.
293 unsigned NumVectorRegs = 1;
294
295 // If this is a packed type, figure out what type it will decompose into
296 // and how many of the elements it will use.
297 if (VT == MVT::Vector) {
298 const PackedType *PTy = cast<PackedType>(V->getType());
299 unsigned NumElts = PTy->getNumElements();
300 MVT::ValueType EltTy = TLI.getValueType(PTy->getElementType());
301
302 // Divide the input until we get to a supported size. This will always
303 // end with a scalar if the target doesn't support vectors.
304 while (NumElts > 1 && !TLI.isTypeLegal(getVectorType(EltTy, NumElts))) {
305 NumElts >>= 1;
306 NumVectorRegs <<= 1;
307 }
Chris Lattner6cb70042006-03-16 23:05:19 +0000308 if (NumElts == 1)
309 VT = EltTy;
310 else
311 VT = getVectorType(EltTy, NumElts);
Chris Lattner3c384492006-03-16 19:51:18 +0000312 }
313
314 // The common case is that we will only create one register for this
315 // value. If we have that case, create and return the virtual register.
316 unsigned NV = TLI.getNumElements(VT);
317 if (NV == 1) {
318 // If we are promoting this value, pick the next largest supported type.
319 MVT::ValueType PromotedType = TLI.getTypeToTransformTo(VT);
320 unsigned Reg = MakeReg(PromotedType);
321 // If this is a vector of supported or promoted types (e.g. 4 x i16),
322 // create all of the registers.
323 for (unsigned i = 1; i != NumVectorRegs; ++i)
324 MakeReg(PromotedType);
325 return Reg;
326 }
327
328 // If this value is represented with multiple target registers, make sure
329 // to create enough consecutive registers of the right (smaller) type.
330 unsigned NT = VT-1; // Find the type to use.
331 while (TLI.getNumElements((MVT::ValueType)NT) != 1)
332 --NT;
333
334 unsigned R = MakeReg((MVT::ValueType)NT);
335 for (unsigned i = 1; i != NV*NumVectorRegs; ++i)
336 MakeReg((MVT::ValueType)NT);
337 return R;
338}
Chris Lattner1c08c712005-01-07 07:47:53 +0000339
340//===----------------------------------------------------------------------===//
341/// SelectionDAGLowering - This is the common target-independent lowering
342/// implementation that is parameterized by a TargetLowering object.
343/// Also, targets can overload any lowering method.
344///
345namespace llvm {
346class SelectionDAGLowering {
347 MachineBasicBlock *CurMBB;
348
349 std::map<const Value*, SDOperand> NodeMap;
350
Chris Lattnerd3948112005-01-17 22:19:26 +0000351 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
352 /// them up and then emit token factor nodes when possible. This allows us to
353 /// get simple disambiguation between loads without worrying about alias
354 /// analysis.
355 std::vector<SDOperand> PendingLoads;
356
Nate Begemanf15485a2006-03-27 01:32:24 +0000357 /// Case - A pair of values to record the Value for a switch case, and the
358 /// case's target basic block.
359 typedef std::pair<Constant*, MachineBasicBlock*> Case;
360 typedef std::vector<Case>::iterator CaseItr;
361 typedef std::pair<CaseItr, CaseItr> CaseRange;
362
363 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
364 /// of conditional branches.
365 struct CaseRec {
366 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
367 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
368
369 /// CaseBB - The MBB in which to emit the compare and branch
370 MachineBasicBlock *CaseBB;
371 /// LT, GE - If nonzero, we know the current case value must be less-than or
372 /// greater-than-or-equal-to these Constants.
373 Constant *LT;
374 Constant *GE;
375 /// Range - A pair of iterators representing the range of case values to be
376 /// processed at this point in the binary search tree.
377 CaseRange Range;
378 };
379
380 /// The comparison function for sorting Case values.
381 struct CaseCmp {
382 bool operator () (const Case& C1, const Case& C2) {
383 if (const ConstantUInt* U1 = dyn_cast<const ConstantUInt>(C1.first))
384 return U1->getValue() < cast<const ConstantUInt>(C2.first)->getValue();
385
386 const ConstantSInt* S1 = dyn_cast<const ConstantSInt>(C1.first);
387 return S1->getValue() < cast<const ConstantSInt>(C2.first)->getValue();
388 }
389 };
390
Chris Lattner1c08c712005-01-07 07:47:53 +0000391public:
392 // TLI - This is information that describes the available target features we
393 // need for lowering. This indicates when operations are unavailable,
394 // implemented with a libcall, etc.
395 TargetLowering &TLI;
396 SelectionDAG &DAG;
397 const TargetData &TD;
398
Nate Begemanf15485a2006-03-27 01:32:24 +0000399 /// SwitchCases - Vector of CaseBlock structures used to communicate
400 /// SwitchInst code generation information.
401 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Nate Begeman37efe672006-04-22 18:53:45 +0000402 SelectionDAGISel::JumpTable JT;
Nate Begemanf15485a2006-03-27 01:32:24 +0000403
Chris Lattner1c08c712005-01-07 07:47:53 +0000404 /// FuncInfo - Information about the function as a whole.
405 ///
406 FunctionLoweringInfo &FuncInfo;
407
408 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000409 FunctionLoweringInfo &funcinfo)
Chris Lattner1c08c712005-01-07 07:47:53 +0000410 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()),
Nate Begeman9453eea2006-04-23 06:26:20 +0000411 JT(0,0,0,0), FuncInfo(funcinfo) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000412 }
413
Chris Lattnera651cf62005-01-17 19:43:36 +0000414 /// getRoot - Return the current virtual root of the Selection DAG.
415 ///
416 SDOperand getRoot() {
Chris Lattnerd3948112005-01-17 22:19:26 +0000417 if (PendingLoads.empty())
418 return DAG.getRoot();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000419
Chris Lattnerd3948112005-01-17 22:19:26 +0000420 if (PendingLoads.size() == 1) {
421 SDOperand Root = PendingLoads[0];
422 DAG.setRoot(Root);
423 PendingLoads.clear();
424 return Root;
425 }
426
427 // Otherwise, we have to make a token factor node.
428 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other, PendingLoads);
429 PendingLoads.clear();
430 DAG.setRoot(Root);
431 return Root;
Chris Lattnera651cf62005-01-17 19:43:36 +0000432 }
433
Chris Lattner1c08c712005-01-07 07:47:53 +0000434 void visit(Instruction &I) { visit(I.getOpcode(), I); }
435
436 void visit(unsigned Opcode, User &I) {
437 switch (Opcode) {
438 default: assert(0 && "Unknown instruction type encountered!");
439 abort();
440 // Build the switch statement using the Instruction.def file.
441#define HANDLE_INST(NUM, OPCODE, CLASS) \
442 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
443#include "llvm/Instruction.def"
444 }
445 }
446
447 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
448
Chris Lattner28b5b1c2006-03-15 22:19:46 +0000449 SDOperand getLoadFrom(const Type *Ty, SDOperand Ptr,
450 SDOperand SrcValue, SDOperand Root,
451 bool isVolatile);
Chris Lattner1c08c712005-01-07 07:47:53 +0000452
453 SDOperand getIntPtrConstant(uint64_t Val) {
454 return DAG.getConstant(Val, TLI.getPointerTy());
455 }
456
Chris Lattner199862b2006-03-16 19:57:50 +0000457 SDOperand getValue(const Value *V);
Chris Lattner1c08c712005-01-07 07:47:53 +0000458
459 const SDOperand &setValue(const Value *V, SDOperand NewN) {
460 SDOperand &N = NodeMap[V];
461 assert(N.Val == 0 && "Already set a value for this node!");
462 return N = NewN;
463 }
Chris Lattner4e4b5762006-02-01 18:59:47 +0000464
Chris Lattner864635a2006-02-22 22:37:12 +0000465 RegsForValue GetRegistersForValue(const std::string &ConstrCode,
466 MVT::ValueType VT,
467 bool OutReg, bool InReg,
468 std::set<unsigned> &OutputRegs,
469 std::set<unsigned> &InputRegs);
Nate Begemanf15485a2006-03-27 01:32:24 +0000470
Chris Lattner1c08c712005-01-07 07:47:53 +0000471 // Terminator instructions.
472 void visitRet(ReturnInst &I);
473 void visitBr(BranchInst &I);
Nate Begemanf15485a2006-03-27 01:32:24 +0000474 void visitSwitch(SwitchInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000475 void visitUnreachable(UnreachableInst &I) { /* noop */ }
476
Nate Begemanf15485a2006-03-27 01:32:24 +0000477 // Helper for visitSwitch
478 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Nate Begeman37efe672006-04-22 18:53:45 +0000479 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Nate Begemanf15485a2006-03-27 01:32:24 +0000480
Chris Lattner1c08c712005-01-07 07:47:53 +0000481 // These all get lowered before this pass.
Chris Lattner1c08c712005-01-07 07:47:53 +0000482 void visitInvoke(InvokeInst &I) { assert(0 && "TODO"); }
483 void visitUnwind(UnwindInst &I) { assert(0 && "TODO"); }
484
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000485 void visitBinary(User &I, unsigned IntOp, unsigned FPOp, unsigned VecOp);
Nate Begemane21ea612005-11-18 07:42:56 +0000486 void visitShift(User &I, unsigned Opcode);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000487 void visitAdd(User &I) {
488 visitBinary(I, ISD::ADD, ISD::FADD, ISD::VADD);
Chris Lattner01b3d732005-09-28 22:28:18 +0000489 }
Chris Lattnerb9fccc42005-04-02 05:04:50 +0000490 void visitSub(User &I);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000491 void visitMul(User &I) {
492 visitBinary(I, ISD::MUL, ISD::FMUL, ISD::VMUL);
Chris Lattner01b3d732005-09-28 22:28:18 +0000493 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000494 void visitDiv(User &I) {
Chris Lattner01b3d732005-09-28 22:28:18 +0000495 const Type *Ty = I.getType();
Evan Cheng3e1ce5a2006-03-03 07:01:07 +0000496 visitBinary(I,
497 Ty->isSigned() ? ISD::SDIV : ISD::UDIV, ISD::FDIV,
498 Ty->isSigned() ? ISD::VSDIV : ISD::VUDIV);
Chris Lattner1c08c712005-01-07 07:47:53 +0000499 }
500 void visitRem(User &I) {
Chris Lattner01b3d732005-09-28 22:28:18 +0000501 const Type *Ty = I.getType();
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000502 visitBinary(I, Ty->isSigned() ? ISD::SREM : ISD::UREM, ISD::FREM, 0);
Chris Lattner1c08c712005-01-07 07:47:53 +0000503 }
Evan Cheng3e1ce5a2006-03-03 07:01:07 +0000504 void visitAnd(User &I) { visitBinary(I, ISD::AND, 0, ISD::VAND); }
505 void visitOr (User &I) { visitBinary(I, ISD::OR, 0, ISD::VOR); }
506 void visitXor(User &I) { visitBinary(I, ISD::XOR, 0, ISD::VXOR); }
Nate Begemane21ea612005-11-18 07:42:56 +0000507 void visitShl(User &I) { visitShift(I, ISD::SHL); }
508 void visitShr(User &I) {
509 visitShift(I, I.getType()->isUnsigned() ? ISD::SRL : ISD::SRA);
Chris Lattner1c08c712005-01-07 07:47:53 +0000510 }
511
512 void visitSetCC(User &I, ISD::CondCode SignedOpc, ISD::CondCode UnsignedOpc);
513 void visitSetEQ(User &I) { visitSetCC(I, ISD::SETEQ, ISD::SETEQ); }
514 void visitSetNE(User &I) { visitSetCC(I, ISD::SETNE, ISD::SETNE); }
515 void visitSetLE(User &I) { visitSetCC(I, ISD::SETLE, ISD::SETULE); }
516 void visitSetGE(User &I) { visitSetCC(I, ISD::SETGE, ISD::SETUGE); }
517 void visitSetLT(User &I) { visitSetCC(I, ISD::SETLT, ISD::SETULT); }
518 void visitSetGT(User &I) { visitSetCC(I, ISD::SETGT, ISD::SETUGT); }
519
Chris Lattner2bbd8102006-03-29 00:11:43 +0000520 void visitExtractElement(User &I);
521 void visitInsertElement(User &I);
Chris Lattner3e104b12006-04-08 04:15:24 +0000522 void visitShuffleVector(User &I);
Chris Lattnerc7029802006-03-18 01:44:44 +0000523
Chris Lattner1c08c712005-01-07 07:47:53 +0000524 void visitGetElementPtr(User &I);
525 void visitCast(User &I);
526 void visitSelect(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000527
528 void visitMalloc(MallocInst &I);
529 void visitFree(FreeInst &I);
530 void visitAlloca(AllocaInst &I);
531 void visitLoad(LoadInst &I);
532 void visitStore(StoreInst &I);
533 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
534 void visitCall(CallInst &I);
Chris Lattnerce7518c2006-01-26 22:24:51 +0000535 void visitInlineAsm(CallInst &I);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +0000536 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +0000537 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner1c08c712005-01-07 07:47:53 +0000538
Chris Lattner1c08c712005-01-07 07:47:53 +0000539 void visitVAStart(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000540 void visitVAArg(VAArgInst &I);
541 void visitVAEnd(CallInst &I);
542 void visitVACopy(CallInst &I);
Chris Lattner39ae3622005-01-09 00:00:49 +0000543 void visitFrameReturnAddress(CallInst &I, bool isFrameAddress);
Chris Lattner1c08c712005-01-07 07:47:53 +0000544
Chris Lattner7041ee32005-01-11 05:56:49 +0000545 void visitMemIntrinsic(CallInst &I, unsigned Op);
Chris Lattner1c08c712005-01-07 07:47:53 +0000546
547 void visitUserOp1(Instruction &I) {
548 assert(0 && "UserOp1 should not exist at instruction selection time!");
549 abort();
550 }
551 void visitUserOp2(Instruction &I) {
552 assert(0 && "UserOp2 should not exist at instruction selection time!");
553 abort();
554 }
555};
556} // end namespace llvm
557
Chris Lattner199862b2006-03-16 19:57:50 +0000558SDOperand SelectionDAGLowering::getValue(const Value *V) {
559 SDOperand &N = NodeMap[V];
560 if (N.Val) return N;
561
562 const Type *VTy = V->getType();
563 MVT::ValueType VT = TLI.getValueType(VTy);
564 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
565 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
566 visit(CE->getOpcode(), *CE);
567 assert(N.Val && "visit didn't populate the ValueMap!");
568 return N;
569 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) {
570 return N = DAG.getGlobalAddress(GV, VT);
571 } else if (isa<ConstantPointerNull>(C)) {
572 return N = DAG.getConstant(0, TLI.getPointerTy());
573 } else if (isa<UndefValue>(C)) {
Chris Lattner23d564c2006-03-19 00:20:20 +0000574 if (!isa<PackedType>(VTy))
575 return N = DAG.getNode(ISD::UNDEF, VT);
576
Chris Lattnerb2827b02006-03-19 00:52:58 +0000577 // Create a VBUILD_VECTOR of undef nodes.
Chris Lattner23d564c2006-03-19 00:20:20 +0000578 const PackedType *PTy = cast<PackedType>(VTy);
579 unsigned NumElements = PTy->getNumElements();
580 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
581
582 std::vector<SDOperand> Ops;
583 Ops.assign(NumElements, DAG.getNode(ISD::UNDEF, PVT));
584
585 // Create a VConstant node with generic Vector type.
586 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
587 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerb2827b02006-03-19 00:52:58 +0000588 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner199862b2006-03-16 19:57:50 +0000589 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
590 return N = DAG.getConstantFP(CFP->getValue(), VT);
591 } else if (const PackedType *PTy = dyn_cast<PackedType>(VTy)) {
592 unsigned NumElements = PTy->getNumElements();
593 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattner199862b2006-03-16 19:57:50 +0000594
595 // Now that we know the number and type of the elements, push a
596 // Constant or ConstantFP node onto the ops list for each element of
597 // the packed constant.
598 std::vector<SDOperand> Ops;
599 if (ConstantPacked *CP = dyn_cast<ConstantPacked>(C)) {
Chris Lattner2bbd8102006-03-29 00:11:43 +0000600 for (unsigned i = 0; i != NumElements; ++i)
601 Ops.push_back(getValue(CP->getOperand(i)));
Chris Lattner199862b2006-03-16 19:57:50 +0000602 } else {
603 assert(isa<ConstantAggregateZero>(C) && "Unknown packed constant!");
604 SDOperand Op;
605 if (MVT::isFloatingPoint(PVT))
606 Op = DAG.getConstantFP(0, PVT);
607 else
608 Op = DAG.getConstant(0, PVT);
609 Ops.assign(NumElements, Op);
610 }
611
Chris Lattnerb2827b02006-03-19 00:52:58 +0000612 // Create a VBUILD_VECTOR node with generic Vector type.
Chris Lattner23d564c2006-03-19 00:20:20 +0000613 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
614 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerb2827b02006-03-19 00:52:58 +0000615 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner199862b2006-03-16 19:57:50 +0000616 } else {
617 // Canonicalize all constant ints to be unsigned.
618 return N = DAG.getConstant(cast<ConstantIntegral>(C)->getRawValue(),VT);
619 }
620 }
621
622 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
623 std::map<const AllocaInst*, int>::iterator SI =
624 FuncInfo.StaticAllocaMap.find(AI);
625 if (SI != FuncInfo.StaticAllocaMap.end())
626 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
627 }
628
629 std::map<const Value*, unsigned>::const_iterator VMI =
630 FuncInfo.ValueMap.find(V);
631 assert(VMI != FuncInfo.ValueMap.end() && "Value not in map!");
632
633 unsigned InReg = VMI->second;
634
635 // If this type is not legal, make it so now.
Chris Lattner70c2a612006-03-31 02:06:56 +0000636 if (VT != MVT::Vector) {
637 MVT::ValueType DestVT = TLI.getTypeToTransformTo(VT);
Chris Lattner199862b2006-03-16 19:57:50 +0000638
Chris Lattner70c2a612006-03-31 02:06:56 +0000639 N = DAG.getCopyFromReg(DAG.getEntryNode(), InReg, DestVT);
640 if (DestVT < VT) {
641 // Source must be expanded. This input value is actually coming from the
642 // register pair VMI->second and VMI->second+1.
643 N = DAG.getNode(ISD::BUILD_PAIR, VT, N,
644 DAG.getCopyFromReg(DAG.getEntryNode(), InReg+1, DestVT));
645 } else if (DestVT > VT) { // Promotion case
Chris Lattner199862b2006-03-16 19:57:50 +0000646 if (MVT::isFloatingPoint(VT))
647 N = DAG.getNode(ISD::FP_ROUND, VT, N);
648 else
649 N = DAG.getNode(ISD::TRUNCATE, VT, N);
650 }
Chris Lattner70c2a612006-03-31 02:06:56 +0000651 } else {
652 // Otherwise, if this is a vector, make it available as a generic vector
653 // here.
654 MVT::ValueType PTyElementVT, PTyLegalElementVT;
Chris Lattner2e2ef952006-04-05 06:54:42 +0000655 const PackedType *PTy = cast<PackedType>(VTy);
656 unsigned NE = TLI.getPackedTypeBreakdown(PTy, PTyElementVT,
Chris Lattner70c2a612006-03-31 02:06:56 +0000657 PTyLegalElementVT);
658
659 // Build a VBUILD_VECTOR with the input registers.
660 std::vector<SDOperand> Ops;
661 if (PTyElementVT == PTyLegalElementVT) {
662 // If the value types are legal, just VBUILD the CopyFromReg nodes.
663 for (unsigned i = 0; i != NE; ++i)
664 Ops.push_back(DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
665 PTyElementVT));
666 } else if (PTyElementVT < PTyLegalElementVT) {
667 // If the register was promoted, use TRUNCATE of FP_ROUND as appropriate.
668 for (unsigned i = 0; i != NE; ++i) {
669 SDOperand Op = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
670 PTyElementVT);
671 if (MVT::isFloatingPoint(PTyElementVT))
672 Op = DAG.getNode(ISD::FP_ROUND, PTyElementVT, Op);
673 else
674 Op = DAG.getNode(ISD::TRUNCATE, PTyElementVT, Op);
675 Ops.push_back(Op);
676 }
677 } else {
678 // If the register was expanded, use BUILD_PAIR.
679 assert((NE & 1) == 0 && "Must expand into a multiple of 2 elements!");
680 for (unsigned i = 0; i != NE/2; ++i) {
681 SDOperand Op0 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
682 PTyElementVT);
683 SDOperand Op1 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
684 PTyElementVT);
685 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Op0, Op1));
686 }
687 }
688
689 Ops.push_back(DAG.getConstant(NE, MVT::i32));
690 Ops.push_back(DAG.getValueType(PTyLegalElementVT));
691 N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner2e2ef952006-04-05 06:54:42 +0000692
693 // Finally, use a VBIT_CONVERT to make this available as the appropriate
694 // vector type.
695 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
696 DAG.getConstant(PTy->getNumElements(),
697 MVT::i32),
698 DAG.getValueType(TLI.getValueType(PTy->getElementType())));
Chris Lattner199862b2006-03-16 19:57:50 +0000699 }
700
701 return N;
702}
703
704
Chris Lattner1c08c712005-01-07 07:47:53 +0000705void SelectionDAGLowering::visitRet(ReturnInst &I) {
706 if (I.getNumOperands() == 0) {
Chris Lattnera651cf62005-01-17 19:43:36 +0000707 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getRoot()));
Chris Lattner1c08c712005-01-07 07:47:53 +0000708 return;
709 }
Nate Begemanee625572006-01-27 21:09:22 +0000710 std::vector<SDOperand> NewValues;
711 NewValues.push_back(getRoot());
712 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
713 SDOperand RetOp = getValue(I.getOperand(i));
714
715 // If this is an integer return value, we need to promote it ourselves to
716 // the full width of a register, since LegalizeOp will use ANY_EXTEND rather
717 // than sign/zero.
718 if (MVT::isInteger(RetOp.getValueType()) &&
719 RetOp.getValueType() < MVT::i64) {
720 MVT::ValueType TmpVT;
721 if (TLI.getTypeAction(MVT::i32) == TargetLowering::Promote)
722 TmpVT = TLI.getTypeToTransformTo(MVT::i32);
723 else
724 TmpVT = MVT::i32;
Chris Lattner1c08c712005-01-07 07:47:53 +0000725
Nate Begemanee625572006-01-27 21:09:22 +0000726 if (I.getOperand(i)->getType()->isSigned())
727 RetOp = DAG.getNode(ISD::SIGN_EXTEND, TmpVT, RetOp);
728 else
729 RetOp = DAG.getNode(ISD::ZERO_EXTEND, TmpVT, RetOp);
730 }
731 NewValues.push_back(RetOp);
Chris Lattner1c08c712005-01-07 07:47:53 +0000732 }
Nate Begemanee625572006-01-27 21:09:22 +0000733 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, NewValues));
Chris Lattner1c08c712005-01-07 07:47:53 +0000734}
735
736void SelectionDAGLowering::visitBr(BranchInst &I) {
737 // Update machine-CFG edges.
738 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Nate Begemanf15485a2006-03-27 01:32:24 +0000739 CurMBB->addSuccessor(Succ0MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000740
741 // Figure out which block is immediately after the current one.
742 MachineBasicBlock *NextBlock = 0;
743 MachineFunction::iterator BBI = CurMBB;
744 if (++BBI != CurMBB->getParent()->end())
745 NextBlock = BBI;
746
747 if (I.isUnconditional()) {
748 // If this is not a fall-through branch, emit the branch.
749 if (Succ0MBB != NextBlock)
Chris Lattnera651cf62005-01-17 19:43:36 +0000750 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000751 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000752 } else {
753 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Nate Begemanf15485a2006-03-27 01:32:24 +0000754 CurMBB->addSuccessor(Succ1MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000755
756 SDOperand Cond = getValue(I.getCondition());
Chris Lattner1c08c712005-01-07 07:47:53 +0000757 if (Succ1MBB == NextBlock) {
758 // If the condition is false, fall through. This means we should branch
759 // if the condition is true to Succ #0.
Chris Lattnera651cf62005-01-17 19:43:36 +0000760 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000761 Cond, DAG.getBasicBlock(Succ0MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000762 } else if (Succ0MBB == NextBlock) {
763 // If the condition is true, fall through. This means we should branch if
764 // the condition is false to Succ #1. Invert the condition first.
765 SDOperand True = DAG.getConstant(1, Cond.getValueType());
766 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
Chris Lattnera651cf62005-01-17 19:43:36 +0000767 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000768 Cond, DAG.getBasicBlock(Succ1MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000769 } else {
Chris Lattnere7ccd4a2005-04-09 03:30:29 +0000770 std::vector<SDOperand> Ops;
771 Ops.push_back(getRoot());
Evan Cheng298ebf22006-02-16 08:27:56 +0000772 // If the false case is the current basic block, then this is a self
773 // loop. We do not want to emit "Loop: ... brcond Out; br Loop", as it
774 // adds an extra instruction in the loop. Instead, invert the
775 // condition and emit "Loop: ... br!cond Loop; br Out.
776 if (CurMBB == Succ1MBB) {
777 std::swap(Succ0MBB, Succ1MBB);
778 SDOperand True = DAG.getConstant(1, Cond.getValueType());
779 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
780 }
Nate Begeman81e80972006-03-17 01:40:33 +0000781 SDOperand True = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
782 DAG.getBasicBlock(Succ0MBB));
783 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, True,
784 DAG.getBasicBlock(Succ1MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000785 }
786 }
787}
788
Nate Begemanf15485a2006-03-27 01:32:24 +0000789/// visitSwitchCase - Emits the necessary code to represent a single node in
790/// the binary search tree resulting from lowering a switch instruction.
791void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
792 SDOperand SwitchOp = getValue(CB.SwitchV);
793 SDOperand CaseOp = getValue(CB.CaseC);
794 SDOperand Cond = DAG.getSetCC(MVT::i1, SwitchOp, CaseOp, CB.CC);
795
796 // Set NextBlock to be the MBB immediately after the current one, if any.
797 // This is used to avoid emitting unnecessary branches to the next block.
798 MachineBasicBlock *NextBlock = 0;
799 MachineFunction::iterator BBI = CurMBB;
800 if (++BBI != CurMBB->getParent()->end())
801 NextBlock = BBI;
802
803 // If the lhs block is the next block, invert the condition so that we can
804 // fall through to the lhs instead of the rhs block.
805 if (CB.LHSBB == NextBlock) {
806 std::swap(CB.LHSBB, CB.RHSBB);
807 SDOperand True = DAG.getConstant(1, Cond.getValueType());
808 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
809 }
810 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
811 DAG.getBasicBlock(CB.LHSBB));
812 if (CB.RHSBB == NextBlock)
813 DAG.setRoot(BrCond);
814 else
815 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
816 DAG.getBasicBlock(CB.RHSBB)));
817 // Update successor info
818 CurMBB->addSuccessor(CB.LHSBB);
819 CurMBB->addSuccessor(CB.RHSBB);
820}
821
Nate Begeman37efe672006-04-22 18:53:45 +0000822/// visitSwitchCase - Emits the necessary code to represent a single node in
823/// the binary search tree resulting from lowering a switch instruction.
824void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
825 // FIXME: Need to emit different code for PIC vs. Non-PIC, specifically,
826 // we need to add the address of the jump table to the value loaded, since
827 // the entries in the jump table will be differences rather than absolute
828 // addresses.
829
830 // Emit the code for the jump table
831 MVT::ValueType PTy = TLI.getPointerTy();
832 unsigned PTyBytes = MVT::getSizeInBits(PTy)/8;
833 SDOperand Copy = DAG.getCopyFromReg(getRoot(), JT.Reg, PTy);
834 SDOperand IDX = DAG.getNode(ISD::MUL, PTy, Copy,
835 DAG.getConstant(PTyBytes, PTy));
836 SDOperand ADD = DAG.getNode(ISD::ADD, PTy, IDX, DAG.getJumpTable(JT.JTI,PTy));
837 SDOperand LD = DAG.getLoad(PTy, Copy.getValue(1), ADD, DAG.getSrcValue(0));
838 DAG.setRoot(DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD));
839
840 // Update successor info
841 for (std::set<MachineBasicBlock*>::iterator ii = JT.SuccMBBs.begin(),
842 ee = JT.SuccMBBs.end(); ii != ee; ++ii)
843 JT.MBB->addSuccessor(*ii);
844}
845
Nate Begemanf15485a2006-03-27 01:32:24 +0000846void SelectionDAGLowering::visitSwitch(SwitchInst &I) {
847 // Figure out which block is immediately after the current one.
848 MachineBasicBlock *NextBlock = 0;
849 MachineFunction::iterator BBI = CurMBB;
850 if (++BBI != CurMBB->getParent()->end())
851 NextBlock = BBI;
852
853 // If there is only the default destination, branch to it if it is not the
854 // next basic block. Otherwise, just fall through.
855 if (I.getNumOperands() == 2) {
856 // Update machine-CFG edges.
857 MachineBasicBlock *DefaultMBB = FuncInfo.MBBMap[I.getDefaultDest()];
858 // If this is not a fall-through branch, emit the branch.
859 if (DefaultMBB != NextBlock)
860 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
861 DAG.getBasicBlock(DefaultMBB)));
862 return;
863 }
864
865 // If there are any non-default case statements, create a vector of Cases
866 // representing each one, and sort the vector so that we can efficiently
867 // create a binary search tree from them.
868 std::vector<Case> Cases;
869 for (unsigned i = 1; i < I.getNumSuccessors(); ++i) {
870 MachineBasicBlock *SMBB = FuncInfo.MBBMap[I.getSuccessor(i)];
871 Cases.push_back(Case(I.getSuccessorValue(i), SMBB));
872 }
873 std::sort(Cases.begin(), Cases.end(), CaseCmp());
874
875 // Get the Value to be switched on and default basic blocks, which will be
876 // inserted into CaseBlock records, representing basic blocks in the binary
877 // search tree.
878 Value *SV = I.getOperand(0);
879 MachineBasicBlock *Default = FuncInfo.MBBMap[I.getDefaultDest()];
Nate Begeman37efe672006-04-22 18:53:45 +0000880
881 // Get the MachineFunction which holds the current MBB. This is used during
882 // emission of jump tables, and when inserting any additional MBBs necessary
883 // to represent the switch.
Nate Begemanf15485a2006-03-27 01:32:24 +0000884 MachineFunction *CurMF = CurMBB->getParent();
885 const BasicBlock *LLVMBB = CurMBB->getBasicBlock();
Nate Begeman37efe672006-04-22 18:53:45 +0000886 Reloc::Model Relocs = TLI.getTargetMachine().getRelocationModel();
887
888 // If the switch has more than 3 blocks, and is 100% dense, then emit a jump
889 // table rather than lowering the switch to a binary tree of conditional
890 // branches.
891 // FIXME: Make this work with 64 bit targets someday, possibly by always
892 // doing differences there so that entries stay 32 bits.
893 // FIXME: Make this work with PIC code
Nate Begeman9453eea2006-04-23 06:26:20 +0000894 if (TLI.isOperationLegal(ISD::BRIND, TLI.getPointerTy()) &&
Nate Begeman37efe672006-04-22 18:53:45 +0000895 TLI.getPointerTy() == MVT::i32 &&
896 (Relocs == Reloc::Static || Relocs == Reloc::DynamicNoPIC) &&
897 Cases.size() > 3) {
898 uint64_t First = cast<ConstantIntegral>(Cases.front().first)->getRawValue();
899 uint64_t Last = cast<ConstantIntegral>(Cases.back().first)->getRawValue();
900
901 // Determine density
902 // FIXME: support sub-100% density
903 if (((Last - First) + 1ULL) == (uint64_t)Cases.size()) {
904 // Create a new basic block to hold the code for loading the address
905 // of the jump table, and jumping to it. Update successor information;
906 // we will either branch to the default case for the switch, or the jump
907 // table.
908 MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
909 CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
910 CurMBB->addSuccessor(Default);
911 CurMBB->addSuccessor(JumpTableBB);
912
913 // Subtract the lowest switch case value from the value being switched on
914 // and conditional branch to default mbb if the result is greater than the
915 // difference between smallest and largest cases.
916 SDOperand SwitchOp = getValue(SV);
917 MVT::ValueType VT = SwitchOp.getValueType();
918 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
919 DAG.getConstant(First, VT));
920
921 // The SDNode we just created, which holds the value being switched on
922 // minus the the smallest case value, needs to be copied to a virtual
923 // register so it can be used as an index into the jump table in a
924 // subsequent basic block. This value may be smaller or larger than the
925 // target's pointer type, and therefore require extension or truncating.
926 if (VT > TLI.getPointerTy())
927 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
928 else
929 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
930 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
931 SDOperand CopyTo = DAG.getCopyToReg(getRoot(), JumpTableReg, SwitchOp);
932
933 // Emit the range check for the jump table, and branch to the default
934 // block for the switch statement if the value being switched on exceeds
935 // the largest case in the switch.
936 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultTy(), SUB,
937 DAG.getConstant(Last-First,VT), ISD::SETUGT);
938 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
939 DAG.getBasicBlock(Default)));
940
941 // Build a sorted vector of destination BBs, corresponding to each target
942 // of the switch.
943 // FIXME: need to insert DefaultMBB for each "hole" in the jump table,
944 // when we support jump tables with < 100% density.
945 std::set<MachineBasicBlock*> UniqueBBs;
946 std::vector<MachineBasicBlock*> DestBBs;
947 for (CaseItr ii = Cases.begin(), ee = Cases.end(); ii != ee; ++ii) {
948 DestBBs.push_back(ii->second);
949 UniqueBBs.insert(ii->second);
950 }
951 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
952
953 // Set the jump table information so that we can codegen it as a second
954 // MachineBasicBlock
955 JT.Reg = JumpTableReg;
956 JT.JTI = JTI;
957 JT.MBB = JumpTableBB;
Nate Begeman9453eea2006-04-23 06:26:20 +0000958 JT.Default = Default;
Nate Begeman37efe672006-04-22 18:53:45 +0000959 JT.SuccMBBs = UniqueBBs;
960 return;
961 }
962 }
Nate Begemanf15485a2006-03-27 01:32:24 +0000963
964 // Push the initial CaseRec onto the worklist
965 std::vector<CaseRec> CaseVec;
966 CaseVec.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
967
968 while (!CaseVec.empty()) {
969 // Grab a record representing a case range to process off the worklist
970 CaseRec CR = CaseVec.back();
971 CaseVec.pop_back();
972
973 // Size is the number of Cases represented by this range. If Size is 1,
974 // then we are processing a leaf of the binary search tree. Otherwise,
975 // we need to pick a pivot, and push left and right ranges onto the
976 // worklist.
977 unsigned Size = CR.Range.second - CR.Range.first;
978
979 if (Size == 1) {
980 // Create a CaseBlock record representing a conditional branch to
981 // the Case's target mbb if the value being switched on SV is equal
982 // to C. Otherwise, branch to default.
983 Constant *C = CR.Range.first->first;
984 MachineBasicBlock *Target = CR.Range.first->second;
985 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, SV, C, Target, Default,
986 CR.CaseBB);
987 // If the MBB representing the leaf node is the current MBB, then just
988 // call visitSwitchCase to emit the code into the current block.
989 // Otherwise, push the CaseBlock onto the vector to be later processed
990 // by SDISel, and insert the node's MBB before the next MBB.
991 if (CR.CaseBB == CurMBB)
992 visitSwitchCase(CB);
993 else {
994 SwitchCases.push_back(CB);
995 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
996 }
997 } else {
998 // split case range at pivot
999 CaseItr Pivot = CR.Range.first + (Size / 2);
1000 CaseRange LHSR(CR.Range.first, Pivot);
1001 CaseRange RHSR(Pivot, CR.Range.second);
1002 Constant *C = Pivot->first;
1003 MachineBasicBlock *RHSBB = 0, *LHSBB = 0;
1004 // We know that we branch to the LHS if the Value being switched on is
1005 // less than the Pivot value, C. We use this to optimize our binary
1006 // tree a bit, by recognizing that if SV is greater than or equal to the
1007 // LHS's Case Value, and that Case Value is exactly one less than the
1008 // Pivot's Value, then we can branch directly to the LHS's Target,
1009 // rather than creating a leaf node for it.
1010 if ((LHSR.second - LHSR.first) == 1 &&
1011 LHSR.first->first == CR.GE &&
1012 cast<ConstantIntegral>(C)->getRawValue() ==
1013 (cast<ConstantIntegral>(CR.GE)->getRawValue() + 1ULL)) {
1014 LHSBB = LHSR.first->second;
1015 } else {
1016 LHSBB = new MachineBasicBlock(LLVMBB);
1017 CaseVec.push_back(CaseRec(LHSBB,C,CR.GE,LHSR));
1018 }
1019 // Similar to the optimization above, if the Value being switched on is
1020 // known to be less than the Constant CR.LT, and the current Case Value
1021 // is CR.LT - 1, then we can branch directly to the target block for
1022 // the current Case Value, rather than emitting a RHS leaf node for it.
1023 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
1024 cast<ConstantIntegral>(RHSR.first->first)->getRawValue() ==
1025 (cast<ConstantIntegral>(CR.LT)->getRawValue() - 1ULL)) {
1026 RHSBB = RHSR.first->second;
1027 } else {
1028 RHSBB = new MachineBasicBlock(LLVMBB);
1029 CaseVec.push_back(CaseRec(RHSBB,CR.LT,C,RHSR));
1030 }
1031 // Create a CaseBlock record representing a conditional branch to
1032 // the LHS node if the value being switched on SV is less than C.
1033 // Otherwise, branch to LHS.
1034 ISD::CondCode CC = C->getType()->isSigned() ? ISD::SETLT : ISD::SETULT;
1035 SelectionDAGISel::CaseBlock CB(CC, SV, C, LHSBB, RHSBB, CR.CaseBB);
1036 if (CR.CaseBB == CurMBB)
1037 visitSwitchCase(CB);
1038 else {
1039 SwitchCases.push_back(CB);
1040 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1041 }
1042 }
1043 }
1044}
1045
Chris Lattnerb9fccc42005-04-02 05:04:50 +00001046void SelectionDAGLowering::visitSub(User &I) {
1047 // -0.0 - X --> fneg
Chris Lattner01b3d732005-09-28 22:28:18 +00001048 if (I.getType()->isFloatingPoint()) {
1049 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
1050 if (CFP->isExactlyValue(-0.0)) {
1051 SDOperand Op2 = getValue(I.getOperand(1));
1052 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
1053 return;
1054 }
Chris Lattner01b3d732005-09-28 22:28:18 +00001055 }
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001056 visitBinary(I, ISD::SUB, ISD::FSUB, ISD::VSUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00001057}
1058
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001059void SelectionDAGLowering::visitBinary(User &I, unsigned IntOp, unsigned FPOp,
1060 unsigned VecOp) {
1061 const Type *Ty = I.getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00001062 SDOperand Op1 = getValue(I.getOperand(0));
1063 SDOperand Op2 = getValue(I.getOperand(1));
Chris Lattner2c49f272005-01-19 22:31:21 +00001064
Chris Lattnerb67eb912005-11-19 18:40:42 +00001065 if (Ty->isIntegral()) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001066 setValue(&I, DAG.getNode(IntOp, Op1.getValueType(), Op1, Op2));
1067 } else if (Ty->isFloatingPoint()) {
1068 setValue(&I, DAG.getNode(FPOp, Op1.getValueType(), Op1, Op2));
1069 } else {
1070 const PackedType *PTy = cast<PackedType>(Ty);
Chris Lattnerc7029802006-03-18 01:44:44 +00001071 SDOperand Num = DAG.getConstant(PTy->getNumElements(), MVT::i32);
1072 SDOperand Typ = DAG.getValueType(TLI.getValueType(PTy->getElementType()));
1073 setValue(&I, DAG.getNode(VecOp, MVT::Vector, Op1, Op2, Num, Typ));
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001074 }
Nate Begemane21ea612005-11-18 07:42:56 +00001075}
Chris Lattner2c49f272005-01-19 22:31:21 +00001076
Nate Begemane21ea612005-11-18 07:42:56 +00001077void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
1078 SDOperand Op1 = getValue(I.getOperand(0));
1079 SDOperand Op2 = getValue(I.getOperand(1));
1080
1081 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
1082
Chris Lattner1c08c712005-01-07 07:47:53 +00001083 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
1084}
1085
1086void SelectionDAGLowering::visitSetCC(User &I,ISD::CondCode SignedOpcode,
1087 ISD::CondCode UnsignedOpcode) {
1088 SDOperand Op1 = getValue(I.getOperand(0));
1089 SDOperand Op2 = getValue(I.getOperand(1));
1090 ISD::CondCode Opcode = SignedOpcode;
1091 if (I.getOperand(0)->getType()->isUnsigned())
1092 Opcode = UnsignedOpcode;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001093 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
Chris Lattner1c08c712005-01-07 07:47:53 +00001094}
1095
1096void SelectionDAGLowering::visitSelect(User &I) {
1097 SDOperand Cond = getValue(I.getOperand(0));
1098 SDOperand TrueVal = getValue(I.getOperand(1));
1099 SDOperand FalseVal = getValue(I.getOperand(2));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00001100 if (!isa<PackedType>(I.getType())) {
1101 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
1102 TrueVal, FalseVal));
1103 } else {
1104 setValue(&I, DAG.getNode(ISD::VSELECT, MVT::Vector, Cond, TrueVal, FalseVal,
1105 *(TrueVal.Val->op_end()-2),
1106 *(TrueVal.Val->op_end()-1)));
1107 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001108}
1109
1110void SelectionDAGLowering::visitCast(User &I) {
1111 SDOperand N = getValue(I.getOperand(0));
Chris Lattnere25ca692006-03-22 20:09:35 +00001112 MVT::ValueType SrcVT = N.getValueType();
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001113 MVT::ValueType DestVT = TLI.getValueType(I.getType());
Chris Lattner1c08c712005-01-07 07:47:53 +00001114
Chris Lattnere25ca692006-03-22 20:09:35 +00001115 if (DestVT == MVT::Vector) {
1116 // This is a cast to a vector from something else. This is always a bit
1117 // convert. Get information about the input vector.
1118 const PackedType *DestTy = cast<PackedType>(I.getType());
1119 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1120 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N,
1121 DAG.getConstant(DestTy->getNumElements(),MVT::i32),
1122 DAG.getValueType(EltVT)));
1123 } else if (SrcVT == DestVT) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001124 setValue(&I, N); // noop cast.
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001125 } else if (DestVT == MVT::i1) {
Chris Lattneref311aa2005-05-09 22:17:13 +00001126 // Cast to bool is a comparison against zero, not truncation to zero.
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001127 SDOperand Zero = isInteger(SrcVT) ? DAG.getConstant(0, N.getValueType()) :
Chris Lattneref311aa2005-05-09 22:17:13 +00001128 DAG.getConstantFP(0.0, N.getValueType());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001129 setValue(&I, DAG.getSetCC(MVT::i1, N, Zero, ISD::SETNE));
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001130 } else if (isInteger(SrcVT)) {
1131 if (isInteger(DestVT)) { // Int -> Int cast
1132 if (DestVT < SrcVT) // Truncating cast?
1133 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001134 else if (I.getOperand(0)->getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001135 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001136 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001137 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
Chris Lattner7e358902006-03-22 22:20:49 +00001138 } else if (isFloatingPoint(DestVT)) { // Int -> FP cast
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001139 if (I.getOperand(0)->getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001140 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001141 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001142 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001143 } else {
1144 assert(0 && "Unknown cast!");
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001145 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001146 } else if (isFloatingPoint(SrcVT)) {
1147 if (isFloatingPoint(DestVT)) { // FP -> FP cast
1148 if (DestVT < SrcVT) // Rounding cast?
1149 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001150 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001151 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001152 } else if (isInteger(DestVT)) { // FP -> Int cast.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001153 if (I.getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001154 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001155 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001156 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001157 } else {
1158 assert(0 && "Unknown cast!");
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001159 }
1160 } else {
Chris Lattnere25ca692006-03-22 20:09:35 +00001161 assert(SrcVT == MVT::Vector && "Unknown cast!");
1162 assert(DestVT != MVT::Vector && "Casts to vector already handled!");
1163 // This is a cast from a vector to something else. This is always a bit
1164 // convert. Get information about the input vector.
1165 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N));
Chris Lattner1c08c712005-01-07 07:47:53 +00001166 }
1167}
1168
Chris Lattner2bbd8102006-03-29 00:11:43 +00001169void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattnerc7029802006-03-18 01:44:44 +00001170 SDOperand InVec = getValue(I.getOperand(0));
1171 SDOperand InVal = getValue(I.getOperand(1));
1172 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1173 getValue(I.getOperand(2)));
1174
Chris Lattner2332b9f2006-03-19 01:17:20 +00001175 SDOperand Num = *(InVec.Val->op_end()-2);
1176 SDOperand Typ = *(InVec.Val->op_end()-1);
1177 setValue(&I, DAG.getNode(ISD::VINSERT_VECTOR_ELT, MVT::Vector,
1178 InVec, InVal, InIdx, Num, Typ));
Chris Lattnerc7029802006-03-18 01:44:44 +00001179}
1180
Chris Lattner2bbd8102006-03-29 00:11:43 +00001181void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner384504c2006-03-21 20:44:12 +00001182 SDOperand InVec = getValue(I.getOperand(0));
1183 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1184 getValue(I.getOperand(1)));
1185 SDOperand Typ = *(InVec.Val->op_end()-1);
1186 setValue(&I, DAG.getNode(ISD::VEXTRACT_VECTOR_ELT,
1187 TLI.getValueType(I.getType()), InVec, InIdx));
1188}
Chris Lattnerc7029802006-03-18 01:44:44 +00001189
Chris Lattner3e104b12006-04-08 04:15:24 +00001190void SelectionDAGLowering::visitShuffleVector(User &I) {
1191 SDOperand V1 = getValue(I.getOperand(0));
1192 SDOperand V2 = getValue(I.getOperand(1));
1193 SDOperand Mask = getValue(I.getOperand(2));
1194
1195 SDOperand Num = *(V1.Val->op_end()-2);
1196 SDOperand Typ = *(V2.Val->op_end()-1);
1197 setValue(&I, DAG.getNode(ISD::VVECTOR_SHUFFLE, MVT::Vector,
1198 V1, V2, Mask, Num, Typ));
1199}
1200
1201
Chris Lattner1c08c712005-01-07 07:47:53 +00001202void SelectionDAGLowering::visitGetElementPtr(User &I) {
1203 SDOperand N = getValue(I.getOperand(0));
1204 const Type *Ty = I.getOperand(0)->getType();
1205 const Type *UIntPtrTy = TD.getIntPtrType();
1206
1207 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
1208 OI != E; ++OI) {
1209 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00001210 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001211 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
1212 if (Field) {
1213 // N = N + Offset
1214 uint64_t Offset = TD.getStructLayout(StTy)->MemberOffsets[Field];
1215 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001216 getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00001217 }
1218 Ty = StTy->getElementType(Field);
1219 } else {
1220 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00001221
Chris Lattner7c0104b2005-11-09 04:45:33 +00001222 // If this is a constant subscript, handle it quickly.
1223 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
1224 if (CI->getRawValue() == 0) continue;
Chris Lattner7cc47772005-01-07 21:56:57 +00001225
Chris Lattner7c0104b2005-11-09 04:45:33 +00001226 uint64_t Offs;
1227 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
1228 Offs = (int64_t)TD.getTypeSize(Ty)*CSI->getValue();
1229 else
1230 Offs = TD.getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
1231 N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs));
1232 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00001233 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00001234
1235 // N = N + Idx * ElementSize;
1236 uint64_t ElementSize = TD.getTypeSize(Ty);
1237 SDOperand IdxN = getValue(Idx);
1238
1239 // If the index is smaller or larger than intptr_t, truncate or extend
1240 // it.
1241 if (IdxN.getValueType() < N.getValueType()) {
1242 if (Idx->getType()->isSigned())
1243 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
1244 else
1245 IdxN = DAG.getNode(ISD::ZERO_EXTEND, N.getValueType(), IdxN);
1246 } else if (IdxN.getValueType() > N.getValueType())
1247 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
1248
1249 // If this is a multiply by a power of two, turn it into a shl
1250 // immediately. This is a very common case.
1251 if (isPowerOf2_64(ElementSize)) {
1252 unsigned Amt = Log2_64(ElementSize);
1253 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00001254 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00001255 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
1256 continue;
1257 }
1258
1259 SDOperand Scale = getIntPtrConstant(ElementSize);
1260 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
1261 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00001262 }
1263 }
1264 setValue(&I, N);
1265}
1266
1267void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
1268 // If this is a fixed sized alloca in the entry block of the function,
1269 // allocate it statically on the stack.
1270 if (FuncInfo.StaticAllocaMap.count(&I))
1271 return; // getValue will auto-populate this.
1272
1273 const Type *Ty = I.getAllocatedType();
1274 uint64_t TySize = TLI.getTargetData().getTypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +00001275 unsigned Align = std::max((unsigned)TLI.getTargetData().getTypeAlignment(Ty),
1276 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00001277
1278 SDOperand AllocSize = getValue(I.getArraySize());
Chris Lattner68cd65e2005-01-22 23:04:37 +00001279 MVT::ValueType IntPtr = TLI.getPointerTy();
1280 if (IntPtr < AllocSize.getValueType())
1281 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
1282 else if (IntPtr > AllocSize.getValueType())
1283 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00001284
Chris Lattner68cd65e2005-01-22 23:04:37 +00001285 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner1c08c712005-01-07 07:47:53 +00001286 getIntPtrConstant(TySize));
1287
1288 // Handle alignment. If the requested alignment is less than or equal to the
1289 // stack alignment, ignore it and round the size of the allocation up to the
1290 // stack alignment size. If the size is greater than the stack alignment, we
1291 // note this in the DYNAMIC_STACKALLOC node.
1292 unsigned StackAlign =
1293 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1294 if (Align <= StackAlign) {
1295 Align = 0;
1296 // Add SA-1 to the size.
1297 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
1298 getIntPtrConstant(StackAlign-1));
1299 // Mask out the low bits for alignment purposes.
1300 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
1301 getIntPtrConstant(~(uint64_t)(StackAlign-1)));
1302 }
1303
Chris Lattneradf6c2a2005-05-14 07:29:57 +00001304 std::vector<MVT::ValueType> VTs;
1305 VTs.push_back(AllocSize.getValueType());
1306 VTs.push_back(MVT::Other);
1307 std::vector<SDOperand> Ops;
1308 Ops.push_back(getRoot());
1309 Ops.push_back(AllocSize);
1310 Ops.push_back(getIntPtrConstant(Align));
1311 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, Ops);
Chris Lattner1c08c712005-01-07 07:47:53 +00001312 DAG.setRoot(setValue(&I, DSA).getValue(1));
1313
1314 // Inform the Frame Information that we have just allocated a variable-sized
1315 // object.
1316 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
1317}
1318
Chris Lattner1c08c712005-01-07 07:47:53 +00001319void SelectionDAGLowering::visitLoad(LoadInst &I) {
1320 SDOperand Ptr = getValue(I.getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00001321
Chris Lattnerd3948112005-01-17 22:19:26 +00001322 SDOperand Root;
1323 if (I.isVolatile())
1324 Root = getRoot();
1325 else {
1326 // Do not serialize non-volatile loads against each other.
1327 Root = DAG.getRoot();
1328 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001329
1330 setValue(&I, getLoadFrom(I.getType(), Ptr, DAG.getSrcValue(I.getOperand(0)),
1331 Root, I.isVolatile()));
1332}
1333
1334SDOperand SelectionDAGLowering::getLoadFrom(const Type *Ty, SDOperand Ptr,
1335 SDOperand SrcValue, SDOperand Root,
1336 bool isVolatile) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001337 SDOperand L;
Nate Begeman8cfa57b2005-12-06 06:18:55 +00001338 if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
Nate Begeman4ef3b812005-11-22 01:29:36 +00001339 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattnerc7029802006-03-18 01:44:44 +00001340 L = DAG.getVecLoad(PTy->getNumElements(), PVT, Root, Ptr, SrcValue);
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001341 } else {
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001342 L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SrcValue);
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001343 }
Chris Lattnerd3948112005-01-17 22:19:26 +00001344
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001345 if (isVolatile)
Chris Lattnerd3948112005-01-17 22:19:26 +00001346 DAG.setRoot(L.getValue(1));
1347 else
1348 PendingLoads.push_back(L.getValue(1));
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001349
1350 return L;
Chris Lattner1c08c712005-01-07 07:47:53 +00001351}
1352
1353
1354void SelectionDAGLowering::visitStore(StoreInst &I) {
1355 Value *SrcV = I.getOperand(0);
1356 SDOperand Src = getValue(SrcV);
1357 SDOperand Ptr = getValue(I.getOperand(1));
Chris Lattner369e6db2005-05-09 04:08:33 +00001358 DAG.setRoot(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Src, Ptr,
Andrew Lenharth06ef8842005-06-29 18:54:02 +00001359 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00001360}
1361
Chris Lattner0eade312006-03-24 02:22:33 +00001362/// IntrinsicCannotAccessMemory - Return true if the specified intrinsic cannot
1363/// access memory and has no other side effects at all.
1364static bool IntrinsicCannotAccessMemory(unsigned IntrinsicID) {
1365#define GET_NO_MEMORY_INTRINSICS
1366#include "llvm/Intrinsics.gen"
1367#undef GET_NO_MEMORY_INTRINSICS
1368 return false;
1369}
1370
Chris Lattnere58a7802006-04-02 03:41:14 +00001371// IntrinsicOnlyReadsMemory - Return true if the specified intrinsic doesn't
1372// have any side-effects or if it only reads memory.
1373static bool IntrinsicOnlyReadsMemory(unsigned IntrinsicID) {
1374#define GET_SIDE_EFFECT_INFO
1375#include "llvm/Intrinsics.gen"
1376#undef GET_SIDE_EFFECT_INFO
1377 return false;
1378}
1379
Chris Lattner0eade312006-03-24 02:22:33 +00001380/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
1381/// node.
1382void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
1383 unsigned Intrinsic) {
Chris Lattner7255a542006-03-24 22:49:42 +00001384 bool HasChain = !IntrinsicCannotAccessMemory(Intrinsic);
Chris Lattnere58a7802006-04-02 03:41:14 +00001385 bool OnlyLoad = HasChain && IntrinsicOnlyReadsMemory(Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +00001386
1387 // Build the operand list.
1388 std::vector<SDOperand> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00001389 if (HasChain) { // If this intrinsic has side-effects, chainify it.
1390 if (OnlyLoad) {
1391 // We don't need to serialize loads against other loads.
1392 Ops.push_back(DAG.getRoot());
1393 } else {
1394 Ops.push_back(getRoot());
1395 }
1396 }
Chris Lattner0eade312006-03-24 02:22:33 +00001397
1398 // Add the intrinsic ID as an integer operand.
1399 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
1400
1401 // Add all operands of the call to the operand list.
1402 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1403 SDOperand Op = getValue(I.getOperand(i));
1404
1405 // If this is a vector type, force it to the right packed type.
1406 if (Op.getValueType() == MVT::Vector) {
1407 const PackedType *OpTy = cast<PackedType>(I.getOperand(i)->getType());
1408 MVT::ValueType EltVT = TLI.getValueType(OpTy->getElementType());
1409
1410 MVT::ValueType VVT = MVT::getVectorType(EltVT, OpTy->getNumElements());
1411 assert(VVT != MVT::Other && "Intrinsic uses a non-legal type?");
1412 Op = DAG.getNode(ISD::VBIT_CONVERT, VVT, Op);
1413 }
1414
1415 assert(TLI.isTypeLegal(Op.getValueType()) &&
1416 "Intrinsic uses a non-legal type?");
1417 Ops.push_back(Op);
1418 }
1419
1420 std::vector<MVT::ValueType> VTs;
1421 if (I.getType() != Type::VoidTy) {
1422 MVT::ValueType VT = TLI.getValueType(I.getType());
1423 if (VT == MVT::Vector) {
1424 const PackedType *DestTy = cast<PackedType>(I.getType());
1425 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1426
1427 VT = MVT::getVectorType(EltVT, DestTy->getNumElements());
1428 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
1429 }
1430
1431 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
1432 VTs.push_back(VT);
1433 }
1434 if (HasChain)
1435 VTs.push_back(MVT::Other);
1436
1437 // Create the node.
Chris Lattner48b61a72006-03-28 00:40:33 +00001438 SDOperand Result;
1439 if (!HasChain)
1440 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTs, Ops);
1441 else if (I.getType() != Type::VoidTy)
1442 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTs, Ops);
1443 else
1444 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTs, Ops);
1445
Chris Lattnere58a7802006-04-02 03:41:14 +00001446 if (HasChain) {
1447 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
1448 if (OnlyLoad)
1449 PendingLoads.push_back(Chain);
1450 else
1451 DAG.setRoot(Chain);
1452 }
Chris Lattner0eade312006-03-24 02:22:33 +00001453 if (I.getType() != Type::VoidTy) {
1454 if (const PackedType *PTy = dyn_cast<PackedType>(I.getType())) {
1455 MVT::ValueType EVT = TLI.getValueType(PTy->getElementType());
1456 Result = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Result,
1457 DAG.getConstant(PTy->getNumElements(), MVT::i32),
1458 DAG.getValueType(EVT));
1459 }
1460 setValue(&I, Result);
1461 }
1462}
1463
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001464/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
1465/// we want to emit this as a call to a named external function, return the name
1466/// otherwise lower it and return null.
1467const char *
1468SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
1469 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00001470 default:
1471 // By default, turn this into a target intrinsic node.
1472 visitTargetIntrinsic(I, Intrinsic);
1473 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001474 case Intrinsic::vastart: visitVAStart(I); return 0;
1475 case Intrinsic::vaend: visitVAEnd(I); return 0;
1476 case Intrinsic::vacopy: visitVACopy(I); return 0;
1477 case Intrinsic::returnaddress: visitFrameReturnAddress(I, false); return 0;
1478 case Intrinsic::frameaddress: visitFrameReturnAddress(I, true); return 0;
1479 case Intrinsic::setjmp:
1480 return "_setjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1481 break;
1482 case Intrinsic::longjmp:
1483 return "_longjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1484 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00001485 case Intrinsic::memcpy_i32:
1486 case Intrinsic::memcpy_i64:
1487 visitMemIntrinsic(I, ISD::MEMCPY);
1488 return 0;
1489 case Intrinsic::memset_i32:
1490 case Intrinsic::memset_i64:
1491 visitMemIntrinsic(I, ISD::MEMSET);
1492 return 0;
1493 case Intrinsic::memmove_i32:
1494 case Intrinsic::memmove_i64:
1495 visitMemIntrinsic(I, ISD::MEMMOVE);
1496 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001497
Chris Lattner86cb6432005-12-13 17:40:33 +00001498 case Intrinsic::dbg_stoppoint: {
Jim Laskeyce72b172006-02-11 01:01:30 +00001499 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00001500 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001501 if (DebugInfo && SPI.getContext() && DebugInfo->Verify(SPI.getContext())) {
Jim Laskeyce72b172006-02-11 01:01:30 +00001502 std::vector<SDOperand> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001503
Jim Laskeyce72b172006-02-11 01:01:30 +00001504 Ops.push_back(getRoot());
Jim Laskey43970fe2006-03-23 18:06:46 +00001505 Ops.push_back(getValue(SPI.getLineValue()));
1506 Ops.push_back(getValue(SPI.getColumnValue()));
Chris Lattner36ce6912005-11-29 06:21:05 +00001507
Jim Laskey43970fe2006-03-23 18:06:46 +00001508 DebugInfoDesc *DD = DebugInfo->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00001509 assert(DD && "Not a debug information descriptor");
Jim Laskey43970fe2006-03-23 18:06:46 +00001510 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
1511
Jim Laskeyce72b172006-02-11 01:01:30 +00001512 Ops.push_back(DAG.getString(CompileUnit->getFileName()));
1513 Ops.push_back(DAG.getString(CompileUnit->getDirectory()));
1514
Jim Laskey43970fe2006-03-23 18:06:46 +00001515 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops));
Chris Lattner86cb6432005-12-13 17:40:33 +00001516 }
Jim Laskey43970fe2006-03-23 18:06:46 +00001517
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001518 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00001519 }
Jim Laskey43970fe2006-03-23 18:06:46 +00001520 case Intrinsic::dbg_region_start: {
1521 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1522 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001523 if (DebugInfo && RSI.getContext() && DebugInfo->Verify(RSI.getContext())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001524 std::vector<SDOperand> Ops;
1525
1526 unsigned LabelID = DebugInfo->RecordRegionStart(RSI.getContext());
1527
1528 Ops.push_back(getRoot());
1529 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1530
1531 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1532 }
1533
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001534 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001535 }
1536 case Intrinsic::dbg_region_end: {
1537 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1538 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001539 if (DebugInfo && REI.getContext() && DebugInfo->Verify(REI.getContext())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001540 std::vector<SDOperand> Ops;
1541
1542 unsigned LabelID = DebugInfo->RecordRegionEnd(REI.getContext());
1543
1544 Ops.push_back(getRoot());
1545 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1546
1547 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1548 }
1549
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001550 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001551 }
1552 case Intrinsic::dbg_func_start: {
1553 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1554 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001555 if (DebugInfo && FSI.getSubprogram() &&
1556 DebugInfo->Verify(FSI.getSubprogram())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001557 std::vector<SDOperand> Ops;
1558
1559 unsigned LabelID = DebugInfo->RecordRegionStart(FSI.getSubprogram());
1560
1561 Ops.push_back(getRoot());
1562 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1563
1564 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1565 }
1566
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001567 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001568 }
1569 case Intrinsic::dbg_declare: {
1570 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1571 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Jim Laskeybf7637d2006-03-28 13:45:20 +00001572 if (DebugInfo && DI.getVariable() && DebugInfo->Verify(DI.getVariable())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001573 std::vector<SDOperand> Ops;
1574
Jim Laskey0892cee2006-03-24 09:50:27 +00001575 SDOperand AddressOp = getValue(DI.getAddress());
1576 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(AddressOp)) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001577 DebugInfo->RecordVariable(DI.getVariable(), FI->getIndex());
1578 }
1579 }
1580
1581 return 0;
1582 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001583
Reid Spencer0b118202006-01-16 21:12:35 +00001584 case Intrinsic::isunordered_f32:
1585 case Intrinsic::isunordered_f64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001586 setValue(&I, DAG.getSetCC(MVT::i1,getValue(I.getOperand(1)),
1587 getValue(I.getOperand(2)), ISD::SETUO));
1588 return 0;
1589
Reid Spencer0b118202006-01-16 21:12:35 +00001590 case Intrinsic::sqrt_f32:
1591 case Intrinsic::sqrt_f64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001592 setValue(&I, DAG.getNode(ISD::FSQRT,
1593 getValue(I.getOperand(1)).getValueType(),
1594 getValue(I.getOperand(1))));
1595 return 0;
1596 case Intrinsic::pcmarker: {
1597 SDOperand Tmp = getValue(I.getOperand(1));
1598 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
1599 return 0;
1600 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00001601 case Intrinsic::readcyclecounter: {
1602 std::vector<MVT::ValueType> VTs;
1603 VTs.push_back(MVT::i64);
1604 VTs.push_back(MVT::Other);
1605 std::vector<SDOperand> Ops;
1606 Ops.push_back(getRoot());
1607 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER, VTs, Ops);
1608 setValue(&I, Tmp);
1609 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00001610 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00001611 }
Nate Begemand88fc032006-01-14 03:14:10 +00001612 case Intrinsic::bswap_i16:
Nate Begemand88fc032006-01-14 03:14:10 +00001613 case Intrinsic::bswap_i32:
Nate Begemand88fc032006-01-14 03:14:10 +00001614 case Intrinsic::bswap_i64:
1615 setValue(&I, DAG.getNode(ISD::BSWAP,
1616 getValue(I.getOperand(1)).getValueType(),
1617 getValue(I.getOperand(1))));
1618 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001619 case Intrinsic::cttz_i8:
1620 case Intrinsic::cttz_i16:
1621 case Intrinsic::cttz_i32:
1622 case Intrinsic::cttz_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001623 setValue(&I, DAG.getNode(ISD::CTTZ,
1624 getValue(I.getOperand(1)).getValueType(),
1625 getValue(I.getOperand(1))));
1626 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001627 case Intrinsic::ctlz_i8:
1628 case Intrinsic::ctlz_i16:
1629 case Intrinsic::ctlz_i32:
1630 case Intrinsic::ctlz_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001631 setValue(&I, DAG.getNode(ISD::CTLZ,
1632 getValue(I.getOperand(1)).getValueType(),
1633 getValue(I.getOperand(1))));
1634 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001635 case Intrinsic::ctpop_i8:
1636 case Intrinsic::ctpop_i16:
1637 case Intrinsic::ctpop_i32:
1638 case Intrinsic::ctpop_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001639 setValue(&I, DAG.getNode(ISD::CTPOP,
1640 getValue(I.getOperand(1)).getValueType(),
1641 getValue(I.getOperand(1))));
1642 return 0;
Chris Lattner140d53c2006-01-13 02:50:02 +00001643 case Intrinsic::stacksave: {
1644 std::vector<MVT::ValueType> VTs;
1645 VTs.push_back(TLI.getPointerTy());
1646 VTs.push_back(MVT::Other);
1647 std::vector<SDOperand> Ops;
1648 Ops.push_back(getRoot());
1649 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE, VTs, Ops);
1650 setValue(&I, Tmp);
1651 DAG.setRoot(Tmp.getValue(1));
1652 return 0;
1653 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00001654 case Intrinsic::stackrestore: {
1655 SDOperand Tmp = getValue(I.getOperand(1));
1656 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00001657 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00001658 }
Chris Lattnerac22c832005-12-12 22:51:16 +00001659 case Intrinsic::prefetch:
1660 // FIXME: Currently discarding prefetches.
1661 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001662 }
1663}
1664
1665
Chris Lattner1c08c712005-01-07 07:47:53 +00001666void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00001667 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001668 if (Function *F = I.getCalledFunction()) {
Chris Lattnerc0f18152005-04-02 05:26:53 +00001669 if (F->isExternal())
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001670 if (unsigned IID = F->getIntrinsicID()) {
1671 RenameFn = visitIntrinsicCall(I, IID);
1672 if (!RenameFn)
1673 return;
1674 } else { // Not an LLVM intrinsic.
1675 const std::string &Name = F->getName();
Chris Lattnera09f8482006-03-05 05:09:38 +00001676 if (Name[0] == 'c' && (Name == "copysign" || Name == "copysignf")) {
1677 if (I.getNumOperands() == 3 && // Basic sanity checks.
1678 I.getOperand(1)->getType()->isFloatingPoint() &&
1679 I.getType() == I.getOperand(1)->getType() &&
1680 I.getType() == I.getOperand(2)->getType()) {
1681 SDOperand LHS = getValue(I.getOperand(1));
1682 SDOperand RHS = getValue(I.getOperand(2));
1683 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
1684 LHS, RHS));
1685 return;
1686 }
1687 } else if (Name[0] == 'f' && (Name == "fabs" || Name == "fabsf")) {
Chris Lattnerc0f18152005-04-02 05:26:53 +00001688 if (I.getNumOperands() == 2 && // Basic sanity checks.
1689 I.getOperand(1)->getType()->isFloatingPoint() &&
1690 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001691 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerc0f18152005-04-02 05:26:53 +00001692 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
1693 return;
1694 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001695 } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) {
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001696 if (I.getNumOperands() == 2 && // Basic sanity checks.
1697 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner06a248c92006-02-14 05:39:35 +00001698 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001699 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001700 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
1701 return;
1702 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001703 } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) {
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001704 if (I.getNumOperands() == 2 && // Basic sanity checks.
1705 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner06a248c92006-02-14 05:39:35 +00001706 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001707 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001708 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
1709 return;
1710 }
1711 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00001712 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001713 } else if (isa<InlineAsm>(I.getOperand(0))) {
1714 visitInlineAsm(I);
1715 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001716 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001717
Chris Lattner64e14b12005-01-08 22:48:57 +00001718 SDOperand Callee;
1719 if (!RenameFn)
1720 Callee = getValue(I.getOperand(0));
1721 else
1722 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Chris Lattner1c08c712005-01-07 07:47:53 +00001723 std::vector<std::pair<SDOperand, const Type*> > Args;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001724 Args.reserve(I.getNumOperands());
Chris Lattner1c08c712005-01-07 07:47:53 +00001725 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1726 Value *Arg = I.getOperand(i);
1727 SDOperand ArgNode = getValue(Arg);
1728 Args.push_back(std::make_pair(ArgNode, Arg->getType()));
1729 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001730
Nate Begeman8e21e712005-03-26 01:29:23 +00001731 const PointerType *PT = cast<PointerType>(I.getCalledValue()->getType());
1732 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001733
Chris Lattnercf5734d2005-01-08 19:26:18 +00001734 std::pair<SDOperand,SDOperand> Result =
Chris Lattner9092fa32005-05-12 19:56:57 +00001735 TLI.LowerCallTo(getRoot(), I.getType(), FTy->isVarArg(), I.getCallingConv(),
Chris Lattneradf6a962005-05-13 18:50:42 +00001736 I.isTailCall(), Callee, Args, DAG);
Chris Lattner1c08c712005-01-07 07:47:53 +00001737 if (I.getType() != Type::VoidTy)
Chris Lattnercf5734d2005-01-08 19:26:18 +00001738 setValue(&I, Result.first);
1739 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00001740}
1741
Chris Lattner864635a2006-02-22 22:37:12 +00001742SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001743 SDOperand &Chain, SDOperand &Flag)const{
Chris Lattner864635a2006-02-22 22:37:12 +00001744 SDOperand Val = DAG.getCopyFromReg(Chain, Regs[0], RegVT, Flag);
1745 Chain = Val.getValue(1);
1746 Flag = Val.getValue(2);
1747
1748 // If the result was expanded, copy from the top part.
1749 if (Regs.size() > 1) {
1750 assert(Regs.size() == 2 &&
1751 "Cannot expand to more than 2 elts yet!");
1752 SDOperand Hi = DAG.getCopyFromReg(Chain, Regs[1], RegVT, Flag);
1753 Chain = Val.getValue(1);
1754 Flag = Val.getValue(2);
Chris Lattner9f6637d2006-02-23 20:06:57 +00001755 if (DAG.getTargetLoweringInfo().isLittleEndian())
1756 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Val, Hi);
1757 else
1758 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Hi, Val);
Chris Lattner864635a2006-02-22 22:37:12 +00001759 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00001760
Chris Lattner864635a2006-02-22 22:37:12 +00001761 // Otherwise, if the return value was promoted, truncate it to the
1762 // appropriate type.
1763 if (RegVT == ValueVT)
1764 return Val;
1765
1766 if (MVT::isInteger(RegVT))
1767 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1768 else
1769 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val);
1770}
1771
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001772/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
1773/// specified value into the registers specified by this object. This uses
1774/// Chain/Flag as the input and updates them for the output Chain/Flag.
1775void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001776 SDOperand &Chain, SDOperand &Flag) const {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001777 if (Regs.size() == 1) {
1778 // If there is a single register and the types differ, this must be
1779 // a promotion.
1780 if (RegVT != ValueVT) {
1781 if (MVT::isInteger(RegVT))
1782 Val = DAG.getNode(ISD::ANY_EXTEND, RegVT, Val);
1783 else
1784 Val = DAG.getNode(ISD::FP_EXTEND, RegVT, Val);
1785 }
1786 Chain = DAG.getCopyToReg(Chain, Regs[0], Val, Flag);
1787 Flag = Chain.getValue(1);
1788 } else {
Chris Lattner9f6637d2006-02-23 20:06:57 +00001789 std::vector<unsigned> R(Regs);
1790 if (!DAG.getTargetLoweringInfo().isLittleEndian())
1791 std::reverse(R.begin(), R.end());
1792
1793 for (unsigned i = 0, e = R.size(); i != e; ++i) {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001794 SDOperand Part = DAG.getNode(ISD::EXTRACT_ELEMENT, RegVT, Val,
1795 DAG.getConstant(i, MVT::i32));
Chris Lattner9f6637d2006-02-23 20:06:57 +00001796 Chain = DAG.getCopyToReg(Chain, R[i], Part, Flag);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001797 Flag = Chain.getValue(1);
1798 }
1799 }
1800}
Chris Lattner864635a2006-02-22 22:37:12 +00001801
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001802/// AddInlineAsmOperands - Add this value to the specified inlineasm node
1803/// operand list. This adds the code marker and includes the number of
1804/// values added into it.
1805void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001806 std::vector<SDOperand> &Ops) const {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001807 Ops.push_back(DAG.getConstant(Code | (Regs.size() << 3), MVT::i32));
1808 for (unsigned i = 0, e = Regs.size(); i != e; ++i)
1809 Ops.push_back(DAG.getRegister(Regs[i], RegVT));
1810}
Chris Lattner864635a2006-02-22 22:37:12 +00001811
1812/// isAllocatableRegister - If the specified register is safe to allocate,
1813/// i.e. it isn't a stack pointer or some other special register, return the
1814/// register class for the register. Otherwise, return null.
1815static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001816isAllocatableRegister(unsigned Reg, MachineFunction &MF,
1817 const TargetLowering &TLI, const MRegisterInfo *MRI) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001818 MVT::ValueType FoundVT = MVT::Other;
1819 const TargetRegisterClass *FoundRC = 0;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001820 for (MRegisterInfo::regclass_iterator RCI = MRI->regclass_begin(),
1821 E = MRI->regclass_end(); RCI != E; ++RCI) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001822 MVT::ValueType ThisVT = MVT::Other;
1823
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001824 const TargetRegisterClass *RC = *RCI;
1825 // If none of the the value types for this register class are valid, we
1826 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001827 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
1828 I != E; ++I) {
1829 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001830 // If we have already found this register in a different register class,
1831 // choose the one with the largest VT specified. For example, on
1832 // PowerPC, we favor f64 register classes over f32.
1833 if (FoundVT == MVT::Other ||
1834 MVT::getSizeInBits(FoundVT) < MVT::getSizeInBits(*I)) {
1835 ThisVT = *I;
1836 break;
1837 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001838 }
1839 }
1840
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001841 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001842
Chris Lattner864635a2006-02-22 22:37:12 +00001843 // NOTE: This isn't ideal. In particular, this might allocate the
1844 // frame pointer in functions that need it (due to them not being taken
1845 // out of allocation, because a variable sized allocation hasn't been seen
1846 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001847 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
1848 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001849 if (*I == Reg) {
1850 // We found a matching register class. Keep looking at others in case
1851 // we find one with larger registers that this physreg is also in.
1852 FoundRC = RC;
1853 FoundVT = ThisVT;
1854 break;
1855 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00001856 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001857 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00001858}
1859
1860RegsForValue SelectionDAGLowering::
1861GetRegistersForValue(const std::string &ConstrCode,
1862 MVT::ValueType VT, bool isOutReg, bool isInReg,
1863 std::set<unsigned> &OutputRegs,
1864 std::set<unsigned> &InputRegs) {
1865 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
1866 TLI.getRegForInlineAsmConstraint(ConstrCode, VT);
1867 std::vector<unsigned> Regs;
1868
1869 unsigned NumRegs = VT != MVT::Other ? TLI.getNumElements(VT) : 1;
1870 MVT::ValueType RegVT;
1871 MVT::ValueType ValueVT = VT;
1872
1873 if (PhysReg.first) {
1874 if (VT == MVT::Other)
1875 ValueVT = *PhysReg.second->vt_begin();
1876 RegVT = VT;
1877
1878 // This is a explicit reference to a physical register.
1879 Regs.push_back(PhysReg.first);
1880
1881 // If this is an expanded reference, add the rest of the regs to Regs.
1882 if (NumRegs != 1) {
1883 RegVT = *PhysReg.second->vt_begin();
1884 TargetRegisterClass::iterator I = PhysReg.second->begin();
1885 TargetRegisterClass::iterator E = PhysReg.second->end();
1886 for (; *I != PhysReg.first; ++I)
1887 assert(I != E && "Didn't find reg!");
1888
1889 // Already added the first reg.
1890 --NumRegs; ++I;
1891 for (; NumRegs; --NumRegs, ++I) {
1892 assert(I != E && "Ran out of registers to allocate!");
1893 Regs.push_back(*I);
1894 }
1895 }
1896 return RegsForValue(Regs, RegVT, ValueVT);
1897 }
1898
1899 // This is a reference to a register class. Allocate NumRegs consecutive,
1900 // available, registers from the class.
1901 std::vector<unsigned> RegClassRegs =
1902 TLI.getRegClassForInlineAsmConstraint(ConstrCode, VT);
1903
1904 const MRegisterInfo *MRI = DAG.getTarget().getRegisterInfo();
1905 MachineFunction &MF = *CurMBB->getParent();
1906 unsigned NumAllocated = 0;
1907 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
1908 unsigned Reg = RegClassRegs[i];
1909 // See if this register is available.
1910 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
1911 (isInReg && InputRegs.count(Reg))) { // Already used.
1912 // Make sure we find consecutive registers.
1913 NumAllocated = 0;
1914 continue;
1915 }
1916
1917 // Check to see if this register is allocatable (i.e. don't give out the
1918 // stack pointer).
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001919 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, MRI);
Chris Lattner864635a2006-02-22 22:37:12 +00001920 if (!RC) {
1921 // Make sure we find consecutive registers.
1922 NumAllocated = 0;
1923 continue;
1924 }
1925
1926 // Okay, this register is good, we can use it.
1927 ++NumAllocated;
1928
1929 // If we allocated enough consecutive
1930 if (NumAllocated == NumRegs) {
1931 unsigned RegStart = (i-NumAllocated)+1;
1932 unsigned RegEnd = i+1;
1933 // Mark all of the allocated registers used.
1934 for (unsigned i = RegStart; i != RegEnd; ++i) {
1935 unsigned Reg = RegClassRegs[i];
1936 Regs.push_back(Reg);
1937 if (isOutReg) OutputRegs.insert(Reg); // Mark reg used.
1938 if (isInReg) InputRegs.insert(Reg); // Mark reg used.
1939 }
1940
1941 return RegsForValue(Regs, *RC->vt_begin(), VT);
1942 }
1943 }
1944
1945 // Otherwise, we couldn't allocate enough registers for this.
1946 return RegsForValue();
Chris Lattner4e4b5762006-02-01 18:59:47 +00001947}
1948
Chris Lattner864635a2006-02-22 22:37:12 +00001949
Chris Lattnerce7518c2006-01-26 22:24:51 +00001950/// visitInlineAsm - Handle a call to an InlineAsm object.
1951///
1952void SelectionDAGLowering::visitInlineAsm(CallInst &I) {
1953 InlineAsm *IA = cast<InlineAsm>(I.getOperand(0));
1954
1955 SDOperand AsmStr = DAG.getTargetExternalSymbol(IA->getAsmString().c_str(),
1956 MVT::Other);
1957
1958 // Note, we treat inline asms both with and without side-effects as the same.
1959 // If an inline asm doesn't have side effects and doesn't access memory, we
1960 // could not choose to not chain it.
1961 bool hasSideEffects = IA->hasSideEffects();
1962
Chris Lattner2cc2f662006-02-01 01:28:23 +00001963 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
Chris Lattner1efa40f2006-02-22 00:56:39 +00001964 std::vector<MVT::ValueType> ConstraintVTs;
Chris Lattnerce7518c2006-01-26 22:24:51 +00001965
1966 /// AsmNodeOperands - A list of pairs. The first element is a register, the
1967 /// second is a bitfield where bit #0 is set if it is a use and bit #1 is set
1968 /// if it is a def of that register.
1969 std::vector<SDOperand> AsmNodeOperands;
1970 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
1971 AsmNodeOperands.push_back(AsmStr);
1972
1973 SDOperand Chain = getRoot();
1974 SDOperand Flag;
1975
Chris Lattner4e4b5762006-02-01 18:59:47 +00001976 // We fully assign registers here at isel time. This is not optimal, but
1977 // should work. For register classes that correspond to LLVM classes, we
1978 // could let the LLVM RA do its thing, but we currently don't. Do a prepass
1979 // over the constraints, collecting fixed registers that we know we can't use.
1980 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00001981 unsigned OpNum = 1;
Chris Lattner4e4b5762006-02-01 18:59:47 +00001982 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
1983 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
1984 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner2223aea2006-02-02 00:25:23 +00001985
Chris Lattner1efa40f2006-02-22 00:56:39 +00001986 MVT::ValueType OpVT;
1987
1988 // Compute the value type for each operand and add it to ConstraintVTs.
1989 switch (Constraints[i].Type) {
1990 case InlineAsm::isOutput:
1991 if (!Constraints[i].isIndirectOutput) {
1992 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
1993 OpVT = TLI.getValueType(I.getType());
1994 } else {
Chris Lattner22873462006-02-27 23:45:39 +00001995 const Type *OpTy = I.getOperand(OpNum)->getType();
Chris Lattner1efa40f2006-02-22 00:56:39 +00001996 OpVT = TLI.getValueType(cast<PointerType>(OpTy)->getElementType());
1997 OpNum++; // Consumes a call operand.
1998 }
1999 break;
2000 case InlineAsm::isInput:
2001 OpVT = TLI.getValueType(I.getOperand(OpNum)->getType());
2002 OpNum++; // Consumes a call operand.
2003 break;
2004 case InlineAsm::isClobber:
2005 OpVT = MVT::Other;
2006 break;
2007 }
2008
2009 ConstraintVTs.push_back(OpVT);
2010
Chris Lattner864635a2006-02-22 22:37:12 +00002011 if (TLI.getRegForInlineAsmConstraint(ConstraintCode, OpVT).first == 0)
2012 continue; // Not assigned a fixed reg.
Chris Lattner1efa40f2006-02-22 00:56:39 +00002013
Chris Lattner864635a2006-02-22 22:37:12 +00002014 // Build a list of regs that this operand uses. This always has a single
2015 // element for promoted/expanded operands.
2016 RegsForValue Regs = GetRegistersForValue(ConstraintCode, OpVT,
2017 false, false,
2018 OutputRegs, InputRegs);
Chris Lattner4e4b5762006-02-01 18:59:47 +00002019
2020 switch (Constraints[i].Type) {
2021 case InlineAsm::isOutput:
2022 // We can't assign any other output to this register.
Chris Lattner864635a2006-02-22 22:37:12 +00002023 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002024 // If this is an early-clobber output, it cannot be assigned to the same
2025 // value as the input reg.
Chris Lattner2223aea2006-02-02 00:25:23 +00002026 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
Chris Lattner864635a2006-02-22 22:37:12 +00002027 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002028 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002029 case InlineAsm::isInput:
2030 // We can't assign any other input to this register.
Chris Lattner864635a2006-02-22 22:37:12 +00002031 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1efa40f2006-02-22 00:56:39 +00002032 break;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002033 case InlineAsm::isClobber:
2034 // Clobbered regs cannot be used as inputs or outputs.
Chris Lattner864635a2006-02-22 22:37:12 +00002035 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2036 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002037 break;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002038 }
2039 }
Chris Lattner2cc2f662006-02-01 01:28:23 +00002040
Chris Lattner0f0b7d42006-02-21 23:12:12 +00002041 // Loop over all of the inputs, copying the operand values into the
2042 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00002043 RegsForValue RetValRegs;
2044 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002045 OpNum = 1;
Chris Lattner0f0b7d42006-02-21 23:12:12 +00002046
Chris Lattner6656dd12006-01-31 02:03:41 +00002047 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00002048 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2049 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner1efa40f2006-02-22 00:56:39 +00002050
Chris Lattner2cc2f662006-02-01 01:28:23 +00002051 switch (Constraints[i].Type) {
2052 case InlineAsm::isOutput: {
Chris Lattner22873462006-02-27 23:45:39 +00002053 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2054 if (ConstraintCode.size() == 1) // not a physreg name.
2055 CTy = TLI.getConstraintType(ConstraintCode[0]);
2056
2057 if (CTy == TargetLowering::C_Memory) {
2058 // Memory output.
2059 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
2060
2061 // Check that the operand (the address to store to) isn't a float.
2062 if (!MVT::isInteger(InOperandVal.getValueType()))
2063 assert(0 && "MATCH FAIL!");
2064
2065 if (!Constraints[i].isIndirectOutput)
2066 assert(0 && "MATCH FAIL!");
2067
2068 OpNum++; // Consumes a call operand.
2069
2070 // Extend/truncate to the right pointer type if needed.
2071 MVT::ValueType PtrType = TLI.getPointerTy();
2072 if (InOperandVal.getValueType() < PtrType)
2073 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2074 else if (InOperandVal.getValueType() > PtrType)
2075 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2076
2077 // Add information to the INLINEASM node to know about this output.
2078 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2079 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2080 AsmNodeOperands.push_back(InOperandVal);
2081 break;
2082 }
2083
2084 // Otherwise, this is a register output.
2085 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2086
Chris Lattner864635a2006-02-22 22:37:12 +00002087 // If this is an early-clobber output, or if there is an input
2088 // constraint that matches this, we need to reserve the input register
2089 // so no other inputs allocate to it.
2090 bool UsesInputRegister = false;
2091 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
2092 UsesInputRegister = true;
2093
2094 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00002095 // we can use.
Chris Lattner864635a2006-02-22 22:37:12 +00002096 RegsForValue Regs =
2097 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2098 true, UsesInputRegister,
2099 OutputRegs, InputRegs);
2100 assert(!Regs.Regs.empty() && "Couldn't allocate output reg!");
Chris Lattner1efa40f2006-02-22 00:56:39 +00002101
Chris Lattner2cc2f662006-02-01 01:28:23 +00002102 if (!Constraints[i].isIndirectOutput) {
Chris Lattner864635a2006-02-22 22:37:12 +00002103 assert(RetValRegs.Regs.empty() &&
Chris Lattner2cc2f662006-02-01 01:28:23 +00002104 "Cannot have multiple output constraints yet!");
Chris Lattner2cc2f662006-02-01 01:28:23 +00002105 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
Chris Lattner864635a2006-02-22 22:37:12 +00002106 RetValRegs = Regs;
Chris Lattner2cc2f662006-02-01 01:28:23 +00002107 } else {
Chris Lattner22873462006-02-27 23:45:39 +00002108 IndirectStoresToEmit.push_back(std::make_pair(Regs,
2109 I.getOperand(OpNum)));
Chris Lattner2cc2f662006-02-01 01:28:23 +00002110 OpNum++; // Consumes a call operand.
2111 }
Chris Lattner6656dd12006-01-31 02:03:41 +00002112
2113 // Add information to the INLINEASM node to know that this register is
2114 // set.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002115 Regs.AddInlineAsmOperands(2 /*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002116 break;
2117 }
2118 case InlineAsm::isInput: {
Chris Lattner22873462006-02-27 23:45:39 +00002119 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
Chris Lattner4e4b5762006-02-01 18:59:47 +00002120 OpNum++; // Consumes a call operand.
Chris Lattner3d81fee2006-02-04 02:16:44 +00002121
Chris Lattner2223aea2006-02-02 00:25:23 +00002122 if (isdigit(ConstraintCode[0])) { // Matching constraint?
2123 // If this is required to match an output register we have already set,
2124 // just use its register.
2125 unsigned OperandNo = atoi(ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00002126
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002127 // Scan until we find the definition we already emitted of this operand.
2128 // When we find it, create a RegsForValue operand.
2129 unsigned CurOp = 2; // The first operand.
2130 for (; OperandNo; --OperandNo) {
2131 // Advance to the next operand.
2132 unsigned NumOps =
2133 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2134 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2135 "Skipped past definitions?");
2136 CurOp += (NumOps>>3)+1;
2137 }
2138
2139 unsigned NumOps =
2140 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2141 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2142 "Skipped past definitions?");
2143
2144 // Add NumOps>>3 registers to MatchedRegs.
2145 RegsForValue MatchedRegs;
2146 MatchedRegs.ValueVT = InOperandVal.getValueType();
2147 MatchedRegs.RegVT = AsmNodeOperands[CurOp+1].getValueType();
2148 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
2149 unsigned Reg=cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
2150 MatchedRegs.Regs.push_back(Reg);
2151 }
2152
2153 // Use the produced MatchedRegs object to
2154 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag);
2155 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002156 break;
Chris Lattner2223aea2006-02-02 00:25:23 +00002157 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00002158
2159 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2160 if (ConstraintCode.size() == 1) // not a physreg name.
2161 CTy = TLI.getConstraintType(ConstraintCode[0]);
2162
2163 if (CTy == TargetLowering::C_Other) {
2164 if (!TLI.isOperandValidForConstraint(InOperandVal, ConstraintCode[0]))
2165 assert(0 && "MATCH FAIL!");
2166
2167 // Add information to the INLINEASM node to know about this input.
2168 unsigned ResOpType = 3 /*IMM*/ | (1 << 3);
2169 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2170 AsmNodeOperands.push_back(InOperandVal);
2171 break;
2172 } else if (CTy == TargetLowering::C_Memory) {
2173 // Memory input.
2174
2175 // Check that the operand isn't a float.
2176 if (!MVT::isInteger(InOperandVal.getValueType()))
2177 assert(0 && "MATCH FAIL!");
2178
2179 // Extend/truncate to the right pointer type if needed.
2180 MVT::ValueType PtrType = TLI.getPointerTy();
2181 if (InOperandVal.getValueType() < PtrType)
2182 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2183 else if (InOperandVal.getValueType() > PtrType)
2184 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2185
2186 // Add information to the INLINEASM node to know about this input.
2187 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2188 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2189 AsmNodeOperands.push_back(InOperandVal);
2190 break;
2191 }
2192
2193 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2194
2195 // Copy the input into the appropriate registers.
2196 RegsForValue InRegs =
2197 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2198 false, true, OutputRegs, InputRegs);
2199 // FIXME: should be match fail.
2200 assert(!InRegs.Regs.empty() && "Couldn't allocate input reg!");
2201
2202 InRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag);
2203
2204 InRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002205 break;
2206 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002207 case InlineAsm::isClobber: {
2208 RegsForValue ClobberedRegs =
2209 GetRegistersForValue(ConstraintCode, MVT::Other, false, false,
2210 OutputRegs, InputRegs);
2211 // Add the clobbered value to the operand list, so that the register
2212 // allocator is aware that the physreg got clobbered.
2213 if (!ClobberedRegs.Regs.empty())
2214 ClobberedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002215 break;
2216 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002217 }
Chris Lattner6656dd12006-01-31 02:03:41 +00002218 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00002219
2220 // Finish up input operands.
2221 AsmNodeOperands[0] = Chain;
2222 if (Flag.Val) AsmNodeOperands.push_back(Flag);
2223
2224 std::vector<MVT::ValueType> VTs;
2225 VTs.push_back(MVT::Other);
2226 VTs.push_back(MVT::Flag);
2227 Chain = DAG.getNode(ISD::INLINEASM, VTs, AsmNodeOperands);
2228 Flag = Chain.getValue(1);
2229
Chris Lattner6656dd12006-01-31 02:03:41 +00002230 // If this asm returns a register value, copy the result from that register
2231 // and set it as the value of the call.
Chris Lattner864635a2006-02-22 22:37:12 +00002232 if (!RetValRegs.Regs.empty())
2233 setValue(&I, RetValRegs.getCopyFromRegs(DAG, Chain, Flag));
Chris Lattnerce7518c2006-01-26 22:24:51 +00002234
Chris Lattner6656dd12006-01-31 02:03:41 +00002235 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
2236
2237 // Process indirect outputs, first output all of the flagged copies out of
2238 // physregs.
2239 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00002240 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00002241 Value *Ptr = IndirectStoresToEmit[i].second;
Chris Lattner864635a2006-02-22 22:37:12 +00002242 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, Flag);
2243 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00002244 }
2245
2246 // Emit the non-flagged stores from the physregs.
2247 std::vector<SDOperand> OutChains;
2248 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
2249 OutChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
2250 StoresToEmit[i].first,
2251 getValue(StoresToEmit[i].second),
2252 DAG.getSrcValue(StoresToEmit[i].second)));
2253 if (!OutChains.empty())
2254 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattnerce7518c2006-01-26 22:24:51 +00002255 DAG.setRoot(Chain);
2256}
2257
2258
Chris Lattner1c08c712005-01-07 07:47:53 +00002259void SelectionDAGLowering::visitMalloc(MallocInst &I) {
2260 SDOperand Src = getValue(I.getOperand(0));
2261
2262 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00002263
2264 if (IntPtr < Src.getValueType())
2265 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
2266 else if (IntPtr > Src.getValueType())
2267 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00002268
2269 // Scale the source by the type size.
2270 uint64_t ElementSize = TD.getTypeSize(I.getType()->getElementType());
2271 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
2272 Src, getIntPtrConstant(ElementSize));
2273
2274 std::vector<std::pair<SDOperand, const Type*> > Args;
2275 Args.push_back(std::make_pair(Src, TLI.getTargetData().getIntPtrType()));
Chris Lattnercf5734d2005-01-08 19:26:18 +00002276
2277 std::pair<SDOperand,SDOperand> Result =
Chris Lattneradf6a962005-05-13 18:50:42 +00002278 TLI.LowerCallTo(getRoot(), I.getType(), false, CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00002279 DAG.getExternalSymbol("malloc", IntPtr),
2280 Args, DAG);
2281 setValue(&I, Result.first); // Pointers always fit in registers
2282 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002283}
2284
2285void SelectionDAGLowering::visitFree(FreeInst &I) {
2286 std::vector<std::pair<SDOperand, const Type*> > Args;
2287 Args.push_back(std::make_pair(getValue(I.getOperand(0)),
2288 TLI.getTargetData().getIntPtrType()));
2289 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattnercf5734d2005-01-08 19:26:18 +00002290 std::pair<SDOperand,SDOperand> Result =
Chris Lattneradf6a962005-05-13 18:50:42 +00002291 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00002292 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
2293 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002294}
2295
Chris Lattner025c39b2005-08-26 20:54:47 +00002296// InsertAtEndOfBasicBlock - This method should be implemented by targets that
2297// mark instructions with the 'usesCustomDAGSchedInserter' flag. These
2298// instructions are special in various ways, which require special support to
2299// insert. The specified MachineInstr is created but not inserted into any
2300// basic blocks, and the scheduler passes ownership of it to this method.
2301MachineBasicBlock *TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
2302 MachineBasicBlock *MBB) {
2303 std::cerr << "If a target marks an instruction with "
2304 "'usesCustomDAGSchedInserter', it must implement "
2305 "TargetLowering::InsertAtEndOfBasicBlock!\n";
2306 abort();
2307 return 0;
2308}
2309
Chris Lattner39ae3622005-01-09 00:00:49 +00002310void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002311 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
2312 getValue(I.getOperand(1)),
2313 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00002314}
2315
2316void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002317 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
2318 getValue(I.getOperand(0)),
2319 DAG.getSrcValue(I.getOperand(0)));
2320 setValue(&I, V);
2321 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002322}
2323
2324void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002325 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
2326 getValue(I.getOperand(1)),
2327 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00002328}
2329
2330void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002331 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
2332 getValue(I.getOperand(1)),
2333 getValue(I.getOperand(2)),
2334 DAG.getSrcValue(I.getOperand(1)),
2335 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00002336}
2337
Chris Lattnerfdfded52006-04-12 16:20:43 +00002338/// TargetLowering::LowerArguments - This is the default LowerArguments
2339/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
2340/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be removed.
2341std::vector<SDOperand>
2342TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
2343 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
2344 std::vector<SDOperand> Ops;
2345 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
2346 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
2347
2348 // Add one result value for each formal argument.
2349 std::vector<MVT::ValueType> RetVals;
2350 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2351 MVT::ValueType VT = getValueType(I->getType());
2352
2353 switch (getTypeAction(VT)) {
2354 default: assert(0 && "Unknown type action!");
2355 case Legal:
2356 RetVals.push_back(VT);
2357 break;
2358 case Promote:
2359 RetVals.push_back(getTypeToTransformTo(VT));
2360 break;
2361 case Expand:
2362 if (VT != MVT::Vector) {
2363 // If this is a large integer, it needs to be broken up into small
2364 // integers. Figure out what the destination type is and how many small
2365 // integers it turns into.
2366 MVT::ValueType NVT = getTypeToTransformTo(VT);
2367 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2368 for (unsigned i = 0; i != NumVals; ++i)
2369 RetVals.push_back(NVT);
2370 } else {
2371 // Otherwise, this is a vector type. We only support legal vectors
2372 // right now.
2373 unsigned NumElems = cast<PackedType>(I->getType())->getNumElements();
2374 const Type *EltTy = cast<PackedType>(I->getType())->getElementType();
Evan Chengf7179bb2006-04-27 08:29:42 +00002375
Chris Lattnerfdfded52006-04-12 16:20:43 +00002376 // Figure out if there is a Packed type corresponding to this Vector
2377 // type. If so, convert to the packed type.
2378 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2379 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2380 RetVals.push_back(TVT);
2381 } else {
2382 assert(0 && "Don't support illegal by-val vector arguments yet!");
2383 }
2384 }
2385 break;
2386 }
2387 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00002388
2389 if (RetVals.size() == 0)
2390 RetVals.push_back(MVT::isVoid);
Chris Lattnerfdfded52006-04-12 16:20:43 +00002391
2392 // Create the node.
2393 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, RetVals, Ops).Val;
2394
2395 // Set up the return result vector.
2396 Ops.clear();
2397 unsigned i = 0;
2398 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2399 MVT::ValueType VT = getValueType(I->getType());
2400
2401 switch (getTypeAction(VT)) {
2402 default: assert(0 && "Unknown type action!");
2403 case Legal:
2404 Ops.push_back(SDOperand(Result, i++));
2405 break;
2406 case Promote: {
2407 SDOperand Op(Result, i++);
2408 if (MVT::isInteger(VT)) {
2409 unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext
2410 : ISD::AssertZext;
2411 Op = DAG.getNode(AssertOp, Op.getValueType(), Op, DAG.getValueType(VT));
2412 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2413 } else {
2414 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2415 Op = DAG.getNode(ISD::FP_ROUND, VT, Op);
2416 }
2417 Ops.push_back(Op);
2418 break;
2419 }
2420 case Expand:
2421 if (VT != MVT::Vector) {
2422 // If this is a large integer, it needs to be reassembled from small
2423 // integers. Figure out what the source elt type is and how many small
2424 // integers it is.
2425 MVT::ValueType NVT = getTypeToTransformTo(VT);
2426 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2427 if (NumVals == 2) {
2428 SDOperand Lo = SDOperand(Result, i++);
2429 SDOperand Hi = SDOperand(Result, i++);
2430
2431 if (!isLittleEndian())
2432 std::swap(Lo, Hi);
2433
2434 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi));
2435 } else {
2436 // Value scalarized into many values. Unimp for now.
2437 assert(0 && "Cannot expand i64 -> i16 yet!");
2438 }
2439 } else {
2440 // Otherwise, this is a vector type. We only support legal vectors
2441 // right now.
2442 unsigned NumElems = cast<PackedType>(I->getType())->getNumElements();
2443 const Type *EltTy = cast<PackedType>(I->getType())->getElementType();
Evan Chengf7179bb2006-04-27 08:29:42 +00002444
Chris Lattnerfdfded52006-04-12 16:20:43 +00002445 // Figure out if there is a Packed type corresponding to this Vector
2446 // type. If so, convert to the packed type.
2447 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2448 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2449 Ops.push_back(SDOperand(Result, i++));
2450 } else {
2451 assert(0 && "Don't support illegal by-val vector arguments yet!");
2452 }
2453 }
2454 break;
2455 }
2456 }
2457 return Ops;
2458}
2459
Chris Lattner39ae3622005-01-09 00:00:49 +00002460// It is always conservatively correct for llvm.returnaddress and
2461// llvm.frameaddress to return 0.
2462std::pair<SDOperand, SDOperand>
2463TargetLowering::LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain,
2464 unsigned Depth, SelectionDAG &DAG) {
2465 return std::make_pair(DAG.getConstant(0, getPointerTy()), Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00002466}
2467
Chris Lattner50381b62005-05-14 05:50:48 +00002468SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00002469 assert(0 && "LowerOperation not implemented for this target!");
2470 abort();
Misha Brukmand3f03e42005-02-17 21:39:27 +00002471 return SDOperand();
Chris Lattner171453a2005-01-16 07:28:41 +00002472}
2473
Nate Begeman0aed7842006-01-28 03:14:31 +00002474SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
2475 SelectionDAG &DAG) {
2476 assert(0 && "CustomPromoteOperation not implemented for this target!");
2477 abort();
2478 return SDOperand();
2479}
2480
Chris Lattner39ae3622005-01-09 00:00:49 +00002481void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) {
2482 unsigned Depth = (unsigned)cast<ConstantUInt>(I.getOperand(1))->getValue();
2483 std::pair<SDOperand,SDOperand> Result =
Chris Lattnera651cf62005-01-17 19:43:36 +00002484 TLI.LowerFrameReturnAddress(isFrame, getRoot(), Depth, DAG);
Chris Lattner39ae3622005-01-09 00:00:49 +00002485 setValue(&I, Result.first);
2486 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002487}
2488
Evan Cheng74d0aa92006-02-15 21:59:04 +00002489/// getMemsetValue - Vectorized representation of the memset value
Evan Cheng1db92f92006-02-14 08:22:34 +00002490/// operand.
2491static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT,
Evan Chenga47876d2006-02-15 22:12:35 +00002492 SelectionDAG &DAG) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002493 MVT::ValueType CurVT = VT;
2494 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
2495 uint64_t Val = C->getValue() & 255;
2496 unsigned Shift = 8;
2497 while (CurVT != MVT::i8) {
2498 Val = (Val << Shift) | Val;
2499 Shift <<= 1;
2500 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002501 }
2502 return DAG.getConstant(Val, VT);
2503 } else {
2504 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2505 unsigned Shift = 8;
2506 while (CurVT != MVT::i8) {
2507 Value =
2508 DAG.getNode(ISD::OR, VT,
2509 DAG.getNode(ISD::SHL, VT, Value,
2510 DAG.getConstant(Shift, MVT::i8)), Value);
2511 Shift <<= 1;
2512 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002513 }
2514
2515 return Value;
2516 }
2517}
2518
Evan Cheng74d0aa92006-02-15 21:59:04 +00002519/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2520/// used when a memcpy is turned into a memset when the source is a constant
2521/// string ptr.
2522static SDOperand getMemsetStringVal(MVT::ValueType VT,
2523 SelectionDAG &DAG, TargetLowering &TLI,
2524 std::string &Str, unsigned Offset) {
2525 MVT::ValueType CurVT = VT;
2526 uint64_t Val = 0;
2527 unsigned MSB = getSizeInBits(VT) / 8;
2528 if (TLI.isLittleEndian())
2529 Offset = Offset + MSB - 1;
2530 for (unsigned i = 0; i != MSB; ++i) {
2531 Val = (Val << 8) | Str[Offset];
2532 Offset += TLI.isLittleEndian() ? -1 : 1;
2533 }
2534 return DAG.getConstant(Val, VT);
2535}
2536
Evan Cheng1db92f92006-02-14 08:22:34 +00002537/// getMemBasePlusOffset - Returns base and offset node for the
2538static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
2539 SelectionDAG &DAG, TargetLowering &TLI) {
2540 MVT::ValueType VT = Base.getValueType();
2541 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2542}
2543
Evan Chengc4f8eee2006-02-14 20:12:38 +00002544/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
Evan Cheng80e89d72006-02-14 09:11:59 +00002545/// to replace the memset / memcpy is below the threshold. It also returns the
2546/// types of the sequence of memory ops to perform memset / memcpy.
Evan Chengc4f8eee2006-02-14 20:12:38 +00002547static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps,
2548 unsigned Limit, uint64_t Size,
2549 unsigned Align, TargetLowering &TLI) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002550 MVT::ValueType VT;
2551
2552 if (TLI.allowsUnalignedMemoryAccesses()) {
2553 VT = MVT::i64;
2554 } else {
2555 switch (Align & 7) {
2556 case 0:
2557 VT = MVT::i64;
2558 break;
2559 case 4:
2560 VT = MVT::i32;
2561 break;
2562 case 2:
2563 VT = MVT::i16;
2564 break;
2565 default:
2566 VT = MVT::i8;
2567 break;
2568 }
2569 }
2570
Evan Cheng80e89d72006-02-14 09:11:59 +00002571 MVT::ValueType LVT = MVT::i64;
2572 while (!TLI.isTypeLegal(LVT))
2573 LVT = (MVT::ValueType)((unsigned)LVT - 1);
2574 assert(MVT::isInteger(LVT));
Evan Cheng1db92f92006-02-14 08:22:34 +00002575
Evan Cheng80e89d72006-02-14 09:11:59 +00002576 if (VT > LVT)
2577 VT = LVT;
2578
Evan Chengdea72452006-02-14 23:05:54 +00002579 unsigned NumMemOps = 0;
Evan Cheng1db92f92006-02-14 08:22:34 +00002580 while (Size != 0) {
2581 unsigned VTSize = getSizeInBits(VT) / 8;
2582 while (VTSize > Size) {
2583 VT = (MVT::ValueType)((unsigned)VT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002584 VTSize >>= 1;
2585 }
Evan Cheng80e89d72006-02-14 09:11:59 +00002586 assert(MVT::isInteger(VT));
2587
2588 if (++NumMemOps > Limit)
2589 return false;
Evan Cheng1db92f92006-02-14 08:22:34 +00002590 MemOps.push_back(VT);
2591 Size -= VTSize;
2592 }
Evan Cheng80e89d72006-02-14 09:11:59 +00002593
2594 return true;
Evan Cheng1db92f92006-02-14 08:22:34 +00002595}
2596
Chris Lattner7041ee32005-01-11 05:56:49 +00002597void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002598 SDOperand Op1 = getValue(I.getOperand(1));
2599 SDOperand Op2 = getValue(I.getOperand(2));
2600 SDOperand Op3 = getValue(I.getOperand(3));
2601 SDOperand Op4 = getValue(I.getOperand(4));
2602 unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue();
2603 if (Align == 0) Align = 1;
2604
2605 if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) {
2606 std::vector<MVT::ValueType> MemOps;
Evan Cheng1db92f92006-02-14 08:22:34 +00002607
2608 // Expand memset / memcpy to a series of load / store ops
2609 // if the size operand falls below a certain threshold.
2610 std::vector<SDOperand> OutChains;
2611 switch (Op) {
Evan Chengac940ab2006-02-14 19:45:56 +00002612 default: break; // Do nothing for now.
Evan Cheng1db92f92006-02-14 08:22:34 +00002613 case ISD::MEMSET: {
Evan Chengc4f8eee2006-02-14 20:12:38 +00002614 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
2615 Size->getValue(), Align, TLI)) {
Evan Cheng80e89d72006-02-14 09:11:59 +00002616 unsigned NumMemOps = MemOps.size();
Evan Cheng1db92f92006-02-14 08:22:34 +00002617 unsigned Offset = 0;
2618 for (unsigned i = 0; i < NumMemOps; i++) {
2619 MVT::ValueType VT = MemOps[i];
2620 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Chenga47876d2006-02-15 22:12:35 +00002621 SDOperand Value = getMemsetValue(Op2, VT, DAG);
Evan Chengc080d6f2006-02-15 01:54:51 +00002622 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, getRoot(),
2623 Value,
Chris Lattner864635a2006-02-22 22:37:12 +00002624 getMemBasePlusOffset(Op1, Offset, DAG, TLI),
2625 DAG.getSrcValue(I.getOperand(1), Offset));
Evan Chengc080d6f2006-02-15 01:54:51 +00002626 OutChains.push_back(Store);
Evan Cheng1db92f92006-02-14 08:22:34 +00002627 Offset += VTSize;
2628 }
Evan Cheng1db92f92006-02-14 08:22:34 +00002629 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002630 break;
Evan Cheng1db92f92006-02-14 08:22:34 +00002631 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002632 case ISD::MEMCPY: {
2633 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemcpy(),
2634 Size->getValue(), Align, TLI)) {
2635 unsigned NumMemOps = MemOps.size();
Evan Chengcffbb512006-02-16 23:11:42 +00002636 unsigned SrcOff = 0, DstOff = 0, SrcDelta = 0;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002637 GlobalAddressSDNode *G = NULL;
2638 std::string Str;
Evan Chengcffbb512006-02-16 23:11:42 +00002639 bool CopyFromStr = false;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002640
2641 if (Op2.getOpcode() == ISD::GlobalAddress)
2642 G = cast<GlobalAddressSDNode>(Op2);
2643 else if (Op2.getOpcode() == ISD::ADD &&
2644 Op2.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2645 Op2.getOperand(1).getOpcode() == ISD::Constant) {
2646 G = cast<GlobalAddressSDNode>(Op2.getOperand(0));
Evan Chengcffbb512006-02-16 23:11:42 +00002647 SrcDelta = cast<ConstantSDNode>(Op2.getOperand(1))->getValue();
Evan Cheng74d0aa92006-02-15 21:59:04 +00002648 }
2649 if (G) {
2650 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Chengcffbb512006-02-16 23:11:42 +00002651 if (GV) {
Evan Cheng09371032006-03-10 23:52:03 +00002652 Str = GV->getStringValue(false);
Evan Chengcffbb512006-02-16 23:11:42 +00002653 if (!Str.empty()) {
2654 CopyFromStr = true;
2655 SrcOff += SrcDelta;
2656 }
2657 }
Evan Cheng74d0aa92006-02-15 21:59:04 +00002658 }
2659
Evan Chengc080d6f2006-02-15 01:54:51 +00002660 for (unsigned i = 0; i < NumMemOps; i++) {
2661 MVT::ValueType VT = MemOps[i];
2662 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002663 SDOperand Value, Chain, Store;
2664
Evan Chengcffbb512006-02-16 23:11:42 +00002665 if (CopyFromStr) {
Evan Cheng74d0aa92006-02-15 21:59:04 +00002666 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
2667 Chain = getRoot();
2668 Store =
2669 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2670 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2671 DAG.getSrcValue(I.getOperand(1), DstOff));
2672 } else {
2673 Value = DAG.getLoad(VT, getRoot(),
2674 getMemBasePlusOffset(Op2, SrcOff, DAG, TLI),
2675 DAG.getSrcValue(I.getOperand(2), SrcOff));
2676 Chain = Value.getValue(1);
2677 Store =
2678 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2679 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2680 DAG.getSrcValue(I.getOperand(1), DstOff));
2681 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002682 OutChains.push_back(Store);
Evan Cheng74d0aa92006-02-15 21:59:04 +00002683 SrcOff += VTSize;
2684 DstOff += VTSize;
Evan Chengc080d6f2006-02-15 01:54:51 +00002685 }
2686 }
2687 break;
2688 }
2689 }
2690
2691 if (!OutChains.empty()) {
2692 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains));
2693 return;
Evan Cheng1db92f92006-02-14 08:22:34 +00002694 }
2695 }
2696
Chris Lattner7041ee32005-01-11 05:56:49 +00002697 std::vector<SDOperand> Ops;
Chris Lattnera651cf62005-01-17 19:43:36 +00002698 Ops.push_back(getRoot());
Evan Cheng1db92f92006-02-14 08:22:34 +00002699 Ops.push_back(Op1);
2700 Ops.push_back(Op2);
2701 Ops.push_back(Op3);
2702 Ops.push_back(Op4);
Chris Lattner7041ee32005-01-11 05:56:49 +00002703 DAG.setRoot(DAG.getNode(Op, MVT::Other, Ops));
Chris Lattner1c08c712005-01-07 07:47:53 +00002704}
2705
Chris Lattner7041ee32005-01-11 05:56:49 +00002706//===----------------------------------------------------------------------===//
2707// SelectionDAGISel code
2708//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00002709
2710unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) {
2711 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
2712}
2713
Chris Lattner495a0b52005-08-17 06:37:43 +00002714void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner36b708f2005-08-18 17:35:14 +00002715 // FIXME: we only modify the CFG to split critical edges. This
2716 // updates dom and loop info.
Chris Lattner495a0b52005-08-17 06:37:43 +00002717}
Chris Lattner1c08c712005-01-07 07:47:53 +00002718
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002719
2720/// InsertGEPComputeCode - Insert code into BB to compute Ptr+PtrOffset,
2721/// casting to the type of GEPI.
2722static Value *InsertGEPComputeCode(Value *&V, BasicBlock *BB, Instruction *GEPI,
2723 Value *Ptr, Value *PtrOffset) {
2724 if (V) return V; // Already computed.
2725
2726 BasicBlock::iterator InsertPt;
2727 if (BB == GEPI->getParent()) {
2728 // If insert into the GEP's block, insert right after the GEP.
2729 InsertPt = GEPI;
2730 ++InsertPt;
2731 } else {
2732 // Otherwise, insert at the top of BB, after any PHI nodes
2733 InsertPt = BB->begin();
2734 while (isa<PHINode>(InsertPt)) ++InsertPt;
2735 }
2736
Chris Lattnerc78b0b72005-12-08 08:00:12 +00002737 // If Ptr is itself a cast, but in some other BB, emit a copy of the cast into
2738 // BB so that there is only one value live across basic blocks (the cast
2739 // operand).
2740 if (CastInst *CI = dyn_cast<CastInst>(Ptr))
2741 if (CI->getParent() != BB && isa<PointerType>(CI->getOperand(0)->getType()))
2742 Ptr = new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
2743
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002744 // Add the offset, cast it to the right type.
2745 Ptr = BinaryOperator::createAdd(Ptr, PtrOffset, "", InsertPt);
2746 Ptr = new CastInst(Ptr, GEPI->getType(), "", InsertPt);
2747 return V = Ptr;
2748}
2749
2750
2751/// OptimizeGEPExpression - Since we are doing basic-block-at-a-time instruction
2752/// selection, we want to be a bit careful about some things. In particular, if
2753/// we have a GEP instruction that is used in a different block than it is
2754/// defined, the addressing expression of the GEP cannot be folded into loads or
2755/// stores that use it. In this case, decompose the GEP and move constant
2756/// indices into blocks that use it.
2757static void OptimizeGEPExpression(GetElementPtrInst *GEPI,
2758 const TargetData &TD) {
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002759 // If this GEP is only used inside the block it is defined in, there is no
2760 // need to rewrite it.
2761 bool isUsedOutsideDefBB = false;
2762 BasicBlock *DefBB = GEPI->getParent();
2763 for (Value::use_iterator UI = GEPI->use_begin(), E = GEPI->use_end();
2764 UI != E; ++UI) {
2765 if (cast<Instruction>(*UI)->getParent() != DefBB) {
2766 isUsedOutsideDefBB = true;
2767 break;
2768 }
2769 }
2770 if (!isUsedOutsideDefBB) return;
2771
2772 // If this GEP has no non-zero constant indices, there is nothing we can do,
2773 // ignore it.
2774 bool hasConstantIndex = false;
2775 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
2776 E = GEPI->op_end(); OI != E; ++OI) {
2777 if (ConstantInt *CI = dyn_cast<ConstantInt>(*OI))
2778 if (CI->getRawValue()) {
2779 hasConstantIndex = true;
2780 break;
2781 }
2782 }
Chris Lattner3802c252005-12-11 09:05:13 +00002783 // If this is a GEP &Alloca, 0, 0, forward subst the frame index into uses.
2784 if (!hasConstantIndex && !isa<AllocaInst>(GEPI->getOperand(0))) return;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002785
2786 // Otherwise, decompose the GEP instruction into multiplies and adds. Sum the
2787 // constant offset (which we now know is non-zero) and deal with it later.
2788 uint64_t ConstantOffset = 0;
2789 const Type *UIntPtrTy = TD.getIntPtrType();
2790 Value *Ptr = new CastInst(GEPI->getOperand(0), UIntPtrTy, "", GEPI);
2791 const Type *Ty = GEPI->getOperand(0)->getType();
2792
2793 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
2794 E = GEPI->op_end(); OI != E; ++OI) {
2795 Value *Idx = *OI;
2796 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2797 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
2798 if (Field)
2799 ConstantOffset += TD.getStructLayout(StTy)->MemberOffsets[Field];
2800 Ty = StTy->getElementType(Field);
2801 } else {
2802 Ty = cast<SequentialType>(Ty)->getElementType();
2803
2804 // Handle constant subscripts.
2805 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2806 if (CI->getRawValue() == 0) continue;
2807
2808 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
2809 ConstantOffset += (int64_t)TD.getTypeSize(Ty)*CSI->getValue();
2810 else
2811 ConstantOffset+=TD.getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
2812 continue;
2813 }
2814
2815 // Ptr = Ptr + Idx * ElementSize;
2816
2817 // Cast Idx to UIntPtrTy if needed.
2818 Idx = new CastInst(Idx, UIntPtrTy, "", GEPI);
2819
2820 uint64_t ElementSize = TD.getTypeSize(Ty);
2821 // Mask off bits that should not be set.
2822 ElementSize &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
2823 Constant *SizeCst = ConstantUInt::get(UIntPtrTy, ElementSize);
2824
2825 // Multiply by the element size and add to the base.
2826 Idx = BinaryOperator::createMul(Idx, SizeCst, "", GEPI);
2827 Ptr = BinaryOperator::createAdd(Ptr, Idx, "", GEPI);
2828 }
2829 }
2830
2831 // Make sure that the offset fits in uintptr_t.
2832 ConstantOffset &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
2833 Constant *PtrOffset = ConstantUInt::get(UIntPtrTy, ConstantOffset);
2834
2835 // Okay, we have now emitted all of the variable index parts to the BB that
2836 // the GEP is defined in. Loop over all of the using instructions, inserting
2837 // an "add Ptr, ConstantOffset" into each block that uses it and update the
Chris Lattnerc78b0b72005-12-08 08:00:12 +00002838 // instruction to use the newly computed value, making GEPI dead. When the
2839 // user is a load or store instruction address, we emit the add into the user
2840 // block, otherwise we use a canonical version right next to the gep (these
2841 // won't be foldable as addresses, so we might as well share the computation).
2842
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002843 std::map<BasicBlock*,Value*> InsertedExprs;
2844 while (!GEPI->use_empty()) {
2845 Instruction *User = cast<Instruction>(GEPI->use_back());
Chris Lattnerc78b0b72005-12-08 08:00:12 +00002846
2847 // If this use is not foldable into the addressing mode, use a version
2848 // emitted in the GEP block.
2849 Value *NewVal;
2850 if (!isa<LoadInst>(User) &&
2851 (!isa<StoreInst>(User) || User->getOperand(0) == GEPI)) {
2852 NewVal = InsertGEPComputeCode(InsertedExprs[DefBB], DefBB, GEPI,
2853 Ptr, PtrOffset);
2854 } else {
2855 // Otherwise, insert the code in the User's block so it can be folded into
2856 // any users in that block.
2857 NewVal = InsertGEPComputeCode(InsertedExprs[User->getParent()],
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002858 User->getParent(), GEPI,
2859 Ptr, PtrOffset);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002860 }
Chris Lattnerc78b0b72005-12-08 08:00:12 +00002861 User->replaceUsesOfWith(GEPI, NewVal);
2862 }
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002863
2864 // Finally, the GEP is dead, remove it.
2865 GEPI->eraseFromParent();
2866}
2867
Chris Lattner1c08c712005-01-07 07:47:53 +00002868bool SelectionDAGISel::runOnFunction(Function &Fn) {
2869 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
2870 RegMap = MF.getSSARegMap();
2871 DEBUG(std::cerr << "\n\n\n=== " << Fn.getName() << "\n");
2872
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002873 // First, split all critical edges for PHI nodes with incoming values that are
2874 // constants, this way the load of the constant into a vreg will not be placed
2875 // into MBBs that are used some other way.
2876 //
2877 // In this pass we also look for GEP instructions that are used across basic
2878 // blocks and rewrites them to improve basic-block-at-a-time selection.
2879 //
Chris Lattner36b708f2005-08-18 17:35:14 +00002880 for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
2881 PHINode *PN;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002882 BasicBlock::iterator BBI;
2883 for (BBI = BB->begin(); (PN = dyn_cast<PHINode>(BBI)); ++BBI)
Chris Lattner36b708f2005-08-18 17:35:14 +00002884 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
2885 if (isa<Constant>(PN->getIncomingValue(i)))
2886 SplitCriticalEdge(PN->getIncomingBlock(i), BB);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002887
2888 for (BasicBlock::iterator E = BB->end(); BBI != E; )
2889 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(BBI++))
2890 OptimizeGEPExpression(GEPI, TLI.getTargetData());
Chris Lattner36b708f2005-08-18 17:35:14 +00002891 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00002892
Chris Lattner1c08c712005-01-07 07:47:53 +00002893 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
2894
2895 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
2896 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00002897
Chris Lattner1c08c712005-01-07 07:47:53 +00002898 return true;
2899}
2900
2901
Chris Lattnerddb870b2005-01-13 17:59:43 +00002902SDOperand SelectionDAGISel::
2903CopyValueToVirtualRegister(SelectionDAGLowering &SDL, Value *V, unsigned Reg) {
Chris Lattnerf1fdaca2005-01-11 22:03:46 +00002904 SDOperand Op = SDL.getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00002905 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002906 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00002907 "Copy from a reg to the same reg!");
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002908
2909 // If this type is not legal, we must make sure to not create an invalid
2910 // register use.
2911 MVT::ValueType SrcVT = Op.getValueType();
2912 MVT::ValueType DestVT = TLI.getTypeToTransformTo(SrcVT);
2913 SelectionDAG &DAG = SDL.DAG;
2914 if (SrcVT == DestVT) {
2915 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
Chris Lattner1c6191f2006-03-21 19:20:37 +00002916 } else if (SrcVT == MVT::Vector) {
Chris Lattner70c2a612006-03-31 02:06:56 +00002917 // Handle copies from generic vectors to registers.
2918 MVT::ValueType PTyElementVT, PTyLegalElementVT;
2919 unsigned NE = TLI.getPackedTypeBreakdown(cast<PackedType>(V->getType()),
2920 PTyElementVT, PTyLegalElementVT);
Chris Lattner1c6191f2006-03-21 19:20:37 +00002921
Chris Lattner70c2a612006-03-31 02:06:56 +00002922 // Insert a VBIT_CONVERT of the input vector to a "N x PTyElementVT"
2923 // MVT::Vector type.
2924 Op = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Op,
2925 DAG.getConstant(NE, MVT::i32),
2926 DAG.getValueType(PTyElementVT));
Chris Lattner1c6191f2006-03-21 19:20:37 +00002927
Chris Lattner70c2a612006-03-31 02:06:56 +00002928 // Loop over all of the elements of the resultant vector,
2929 // VEXTRACT_VECTOR_ELT'ing them, converting them to PTyLegalElementVT, then
2930 // copying them into output registers.
2931 std::vector<SDOperand> OutChains;
2932 SDOperand Root = SDL.getRoot();
2933 for (unsigned i = 0; i != NE; ++i) {
2934 SDOperand Elt = DAG.getNode(ISD::VEXTRACT_VECTOR_ELT, PTyElementVT,
2935 Op, DAG.getConstant(i, MVT::i32));
2936 if (PTyElementVT == PTyLegalElementVT) {
2937 // Elements are legal.
2938 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
2939 } else if (PTyLegalElementVT > PTyElementVT) {
2940 // Elements are promoted.
2941 if (MVT::isFloatingPoint(PTyLegalElementVT))
2942 Elt = DAG.getNode(ISD::FP_EXTEND, PTyLegalElementVT, Elt);
2943 else
2944 Elt = DAG.getNode(ISD::ANY_EXTEND, PTyLegalElementVT, Elt);
2945 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
2946 } else {
2947 // Elements are expanded.
2948 // The src value is expanded into multiple registers.
2949 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
2950 Elt, DAG.getConstant(0, MVT::i32));
2951 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
2952 Elt, DAG.getConstant(1, MVT::i32));
2953 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Lo));
2954 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Hi));
2955 }
Chris Lattner1c6191f2006-03-21 19:20:37 +00002956 }
Chris Lattner70c2a612006-03-31 02:06:56 +00002957 return DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002958 } else if (SrcVT < DestVT) {
2959 // The src value is promoted to the register.
Chris Lattnerfae59b92005-08-17 06:06:25 +00002960 if (MVT::isFloatingPoint(SrcVT))
2961 Op = DAG.getNode(ISD::FP_EXTEND, DestVT, Op);
2962 else
Chris Lattnerfab08872005-09-02 00:19:37 +00002963 Op = DAG.getNode(ISD::ANY_EXTEND, DestVT, Op);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002964 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
2965 } else {
2966 // The src value is expanded into multiple registers.
2967 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
2968 Op, DAG.getConstant(0, MVT::i32));
2969 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
2970 Op, DAG.getConstant(1, MVT::i32));
2971 Op = DAG.getCopyToReg(SDL.getRoot(), Reg, Lo);
2972 return DAG.getCopyToReg(Op, Reg+1, Hi);
2973 }
Chris Lattner1c08c712005-01-07 07:47:53 +00002974}
2975
Chris Lattner068a81e2005-01-17 17:15:02 +00002976void SelectionDAGISel::
2977LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL,
2978 std::vector<SDOperand> &UnorderedChains) {
2979 // If this is the entry block, emit arguments.
2980 Function &F = *BB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00002981 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattnerbf209482005-10-30 19:42:35 +00002982 SDOperand OldRoot = SDL.DAG.getRoot();
2983 std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
Chris Lattner068a81e2005-01-17 17:15:02 +00002984
Chris Lattnerbf209482005-10-30 19:42:35 +00002985 unsigned a = 0;
2986 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
2987 AI != E; ++AI, ++a)
2988 if (!AI->use_empty()) {
2989 SDL.setValue(AI, Args[a]);
Evan Chengf7179bb2006-04-27 08:29:42 +00002990
2991 MVT::ValueType VT = TLI.getValueType(AI->getType());
2992 if (VT == MVT::Vector) {
2993 // Insert a VBIT_CONVERT between the FORMAL_ARGUMENT node and its uses.
2994 // Or else legalizer will balk.
2995 BasicBlock::iterator InsertPt = BB->begin();
2996 Value *NewVal = new CastInst(AI, AI->getType(), AI->getName(), InsertPt);
2997 for (Value::use_iterator UI = AI->use_begin(), E = AI->use_end();
2998 UI != E; ++UI) {
2999 Instruction *User = cast<Instruction>(*UI);
3000 if (User != NewVal)
3001 User->replaceUsesOfWith(AI, NewVal);
3002 }
3003 }
Chris Lattnerbf209482005-10-30 19:42:35 +00003004 // If this argument is live outside of the entry block, insert a copy from
3005 // whereever we got it to the vreg that other BB's will reference it as.
3006 if (FuncInfo.ValueMap.count(AI)) {
3007 SDOperand Copy =
3008 CopyValueToVirtualRegister(SDL, AI, FuncInfo.ValueMap[AI]);
3009 UnorderedChains.push_back(Copy);
3010 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00003011 }
Chris Lattnerbf209482005-10-30 19:42:35 +00003012
3013 // Next, if the function has live ins that need to be copied into vregs,
3014 // emit the copies now, into the top of the block.
3015 MachineFunction &MF = SDL.DAG.getMachineFunction();
3016 if (MF.livein_begin() != MF.livein_end()) {
3017 SSARegMap *RegMap = MF.getSSARegMap();
3018 const MRegisterInfo &MRI = *MF.getTarget().getRegisterInfo();
3019 for (MachineFunction::livein_iterator LI = MF.livein_begin(),
3020 E = MF.livein_end(); LI != E; ++LI)
3021 if (LI->second)
3022 MRI.copyRegToReg(*MF.begin(), MF.begin()->end(), LI->second,
3023 LI->first, RegMap->getRegClass(LI->second));
Chris Lattner068a81e2005-01-17 17:15:02 +00003024 }
Chris Lattnerbf209482005-10-30 19:42:35 +00003025
3026 // Finally, if the target has anything special to do, allow it to do so.
3027 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00003028}
3029
3030
Chris Lattner1c08c712005-01-07 07:47:53 +00003031void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
3032 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00003033 FunctionLoweringInfo &FuncInfo) {
Chris Lattner1c08c712005-01-07 07:47:53 +00003034 SelectionDAGLowering SDL(DAG, TLI, FuncInfo);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003035
3036 std::vector<SDOperand> UnorderedChains;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003037
Chris Lattnerbf209482005-10-30 19:42:35 +00003038 // Lower any arguments needed in this block if this is the entry block.
3039 if (LLVMBB == &LLVMBB->getParent()->front())
3040 LowerArguments(LLVMBB, SDL, UnorderedChains);
Chris Lattner1c08c712005-01-07 07:47:53 +00003041
3042 BB = FuncInfo.MBBMap[LLVMBB];
3043 SDL.setCurrentBasicBlock(BB);
3044
3045 // Lower all of the non-terminator instructions.
3046 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
3047 I != E; ++I)
3048 SDL.visit(*I);
Nate Begemanf15485a2006-03-27 01:32:24 +00003049
Chris Lattner1c08c712005-01-07 07:47:53 +00003050 // Ensure that all instructions which are used outside of their defining
3051 // blocks are available as virtual registers.
3052 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Chris Lattnerf1fdaca2005-01-11 22:03:46 +00003053 if (!I->use_empty() && !isa<PHINode>(I)) {
Chris Lattneree749d72005-01-09 01:16:24 +00003054 std::map<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00003055 if (VMI != FuncInfo.ValueMap.end())
Chris Lattnerddb870b2005-01-13 17:59:43 +00003056 UnorderedChains.push_back(
3057 CopyValueToVirtualRegister(SDL, I, VMI->second));
Chris Lattner1c08c712005-01-07 07:47:53 +00003058 }
3059
3060 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
3061 // ensure constants are generated when needed. Remember the virtual registers
3062 // that need to be added to the Machine PHI nodes as input. We cannot just
3063 // directly add them, because expansion might result in multiple MBB's for one
3064 // BB. As such, the start of the BB might correspond to a different MBB than
3065 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00003066 //
Chris Lattner1c08c712005-01-07 07:47:53 +00003067
3068 // Emit constants only once even if used by multiple PHI nodes.
3069 std::map<Constant*, unsigned> ConstantsOut;
3070
3071 // Check successor nodes PHI nodes that expect a constant to be available from
3072 // this block.
3073 TerminatorInst *TI = LLVMBB->getTerminator();
3074 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
3075 BasicBlock *SuccBB = TI->getSuccessor(succ);
3076 MachineBasicBlock::iterator MBBI = FuncInfo.MBBMap[SuccBB]->begin();
3077 PHINode *PN;
3078
3079 // At this point we know that there is a 1-1 correspondence between LLVM PHI
3080 // nodes and Machine PHI nodes, but the incoming operands have not been
3081 // emitted yet.
3082 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattnerf44fd882005-01-07 21:34:19 +00003083 (PN = dyn_cast<PHINode>(I)); ++I)
3084 if (!PN->use_empty()) {
3085 unsigned Reg;
3086 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
3087 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
3088 unsigned &RegOut = ConstantsOut[C];
3089 if (RegOut == 0) {
3090 RegOut = FuncInfo.CreateRegForValue(C);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003091 UnorderedChains.push_back(
3092 CopyValueToVirtualRegister(SDL, C, RegOut));
Chris Lattnerf44fd882005-01-07 21:34:19 +00003093 }
3094 Reg = RegOut;
3095 } else {
3096 Reg = FuncInfo.ValueMap[PHIOp];
Chris Lattneree749d72005-01-09 01:16:24 +00003097 if (Reg == 0) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003098 assert(isa<AllocaInst>(PHIOp) &&
Chris Lattneree749d72005-01-09 01:16:24 +00003099 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
3100 "Didn't codegen value into a register!??");
3101 Reg = FuncInfo.CreateRegForValue(PHIOp);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003102 UnorderedChains.push_back(
3103 CopyValueToVirtualRegister(SDL, PHIOp, Reg));
Chris Lattneree749d72005-01-09 01:16:24 +00003104 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003105 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003106
Chris Lattnerf44fd882005-01-07 21:34:19 +00003107 // Remember that this register needs to added to the machine PHI node as
3108 // the input for this MBB.
Chris Lattner7e021512006-03-31 02:12:18 +00003109 MVT::ValueType VT = TLI.getValueType(PN->getType());
3110 unsigned NumElements;
3111 if (VT != MVT::Vector)
3112 NumElements = TLI.getNumElements(VT);
3113 else {
3114 MVT::ValueType VT1,VT2;
3115 NumElements =
3116 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
3117 VT1, VT2);
3118 }
Chris Lattnerf44fd882005-01-07 21:34:19 +00003119 for (unsigned i = 0, e = NumElements; i != e; ++i)
3120 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
Chris Lattner1c08c712005-01-07 07:47:53 +00003121 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003122 }
3123 ConstantsOut.clear();
3124
Chris Lattnerddb870b2005-01-13 17:59:43 +00003125 // Turn all of the unordered chains into one factored node.
Chris Lattner5a6c6d92005-01-13 19:53:14 +00003126 if (!UnorderedChains.empty()) {
Chris Lattner7436b572005-11-09 05:03:03 +00003127 SDOperand Root = SDL.getRoot();
3128 if (Root.getOpcode() != ISD::EntryToken) {
3129 unsigned i = 0, e = UnorderedChains.size();
3130 for (; i != e; ++i) {
3131 assert(UnorderedChains[i].Val->getNumOperands() > 1);
3132 if (UnorderedChains[i].Val->getOperand(0) == Root)
3133 break; // Don't add the root if we already indirectly depend on it.
3134 }
3135
3136 if (i == e)
3137 UnorderedChains.push_back(Root);
3138 }
Chris Lattnerddb870b2005-01-13 17:59:43 +00003139 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, UnorderedChains));
3140 }
3141
Chris Lattner1c08c712005-01-07 07:47:53 +00003142 // Lower the terminator after the copies are emitted.
3143 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00003144
Nate Begemanf15485a2006-03-27 01:32:24 +00003145 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00003146 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00003147 SwitchCases.clear();
3148 SwitchCases = SDL.SwitchCases;
Nate Begeman37efe672006-04-22 18:53:45 +00003149 JT = SDL.JT;
Nate Begemanf15485a2006-03-27 01:32:24 +00003150
Chris Lattnera651cf62005-01-17 19:43:36 +00003151 // Make sure the root of the DAG is up-to-date.
3152 DAG.setRoot(SDL.getRoot());
Chris Lattner1c08c712005-01-07 07:47:53 +00003153}
3154
Nate Begemanf15485a2006-03-27 01:32:24 +00003155void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Chris Lattneraf21d552005-10-10 16:47:10 +00003156 // Run the DAG combiner in pre-legalize mode.
3157 DAG.Combine(false);
Nate Begeman2300f552005-09-07 00:15:36 +00003158
Chris Lattner1c08c712005-01-07 07:47:53 +00003159 DEBUG(std::cerr << "Lowered selection DAG:\n");
3160 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003161
Chris Lattner1c08c712005-01-07 07:47:53 +00003162 // Second step, hack on the DAG until it only uses operations and types that
3163 // the target supports.
Chris Lattnerac9dc082005-01-23 04:36:26 +00003164 DAG.Legalize();
Nate Begemanf15485a2006-03-27 01:32:24 +00003165
Chris Lattner1c08c712005-01-07 07:47:53 +00003166 DEBUG(std::cerr << "Legalized selection DAG:\n");
3167 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003168
Chris Lattneraf21d552005-10-10 16:47:10 +00003169 // Run the DAG combiner in post-legalize mode.
3170 DAG.Combine(true);
Nate Begeman2300f552005-09-07 00:15:36 +00003171
Evan Chenga9c20912006-01-21 02:32:06 +00003172 if (ViewISelDAGs) DAG.viewGraph();
Chris Lattnerd48050a2005-10-05 06:09:10 +00003173
Chris Lattnera33ef482005-03-30 01:10:47 +00003174 // Third, instruction select all of the operations to machine code, adding the
3175 // code to the MachineBasicBlock.
Chris Lattner1c08c712005-01-07 07:47:53 +00003176 InstructionSelectBasicBlock(DAG);
Nate Begemanf15485a2006-03-27 01:32:24 +00003177
Chris Lattner1c08c712005-01-07 07:47:53 +00003178 DEBUG(std::cerr << "Selected machine code:\n");
3179 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003180}
Chris Lattner1c08c712005-01-07 07:47:53 +00003181
Nate Begemanf15485a2006-03-27 01:32:24 +00003182void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
3183 FunctionLoweringInfo &FuncInfo) {
3184 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
3185 {
3186 SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3187 CurDAG = &DAG;
3188
3189 // First step, lower LLVM code to some DAG. This DAG may use operations and
3190 // types that are not supported by the target.
3191 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
3192
3193 // Second step, emit the lowered DAG as machine code.
3194 CodeGenAndEmitDAG(DAG);
3195 }
3196
Chris Lattnera33ef482005-03-30 01:10:47 +00003197 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +00003198 // PHI nodes in successors.
Nate Begeman37efe672006-04-22 18:53:45 +00003199 if (SwitchCases.empty() && JT.Reg == 0) {
Nate Begemanf15485a2006-03-27 01:32:24 +00003200 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
3201 MachineInstr *PHI = PHINodesToUpdate[i].first;
3202 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3203 "This is not a machine PHI node that we are updating!");
3204 PHI->addRegOperand(PHINodesToUpdate[i].second);
3205 PHI->addMachineBasicBlockOperand(BB);
3206 }
3207 return;
Chris Lattner1c08c712005-01-07 07:47:53 +00003208 }
Nate Begemanf15485a2006-03-27 01:32:24 +00003209
Nate Begeman9453eea2006-04-23 06:26:20 +00003210 // If the JumpTable record is filled in, then we need to emit a jump table.
3211 // Updating the PHI nodes is tricky in this case, since we need to determine
3212 // whether the PHI is a successor of the range check MBB or the jump table MBB
Nate Begeman37efe672006-04-22 18:53:45 +00003213 if (JT.Reg) {
3214 assert(SwitchCases.empty() && "Cannot have jump table and lowered switch");
3215 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3216 CurDAG = &SDAG;
3217 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
Nate Begeman9453eea2006-04-23 06:26:20 +00003218 MachineBasicBlock *RangeBB = BB;
Nate Begeman37efe672006-04-22 18:53:45 +00003219 // Set the current basic block to the mbb we wish to insert the code into
3220 BB = JT.MBB;
3221 SDL.setCurrentBasicBlock(BB);
3222 // Emit the code
3223 SDL.visitJumpTable(JT);
3224 SDAG.setRoot(SDL.getRoot());
3225 CodeGenAndEmitDAG(SDAG);
3226 // Update PHI Nodes
3227 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3228 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3229 MachineBasicBlock *PHIBB = PHI->getParent();
3230 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3231 "This is not a machine PHI node that we are updating!");
Nate Begeman9453eea2006-04-23 06:26:20 +00003232 if (PHIBB == JT.Default || JT.SuccMBBs.find(PHIBB) != JT.SuccMBBs.end()) {
3233 PHIBB = (PHIBB == JT.Default) ? RangeBB : BB;
Nate Begeman37efe672006-04-22 18:53:45 +00003234 PHI->addRegOperand(PHINodesToUpdate[pi].second);
Nate Begeman9453eea2006-04-23 06:26:20 +00003235 PHI->addMachineBasicBlockOperand(PHIBB);
Nate Begeman37efe672006-04-22 18:53:45 +00003236 }
3237 }
3238 return;
3239 }
3240
Nate Begemanf15485a2006-03-27 01:32:24 +00003241 // If we generated any switch lowering information, build and codegen any
3242 // additional DAGs necessary.
3243 for(unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
3244 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3245 CurDAG = &SDAG;
3246 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
3247 // Set the current basic block to the mbb we wish to insert the code into
3248 BB = SwitchCases[i].ThisBB;
3249 SDL.setCurrentBasicBlock(BB);
3250 // Emit the code
3251 SDL.visitSwitchCase(SwitchCases[i]);
3252 SDAG.setRoot(SDL.getRoot());
3253 CodeGenAndEmitDAG(SDAG);
3254 // Iterate over the phi nodes, if there is a phi node in a successor of this
3255 // block (for instance, the default block), then add a pair of operands to
3256 // the phi node for this block, as if we were coming from the original
3257 // BB before switch expansion.
3258 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3259 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3260 MachineBasicBlock *PHIBB = PHI->getParent();
3261 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3262 "This is not a machine PHI node that we are updating!");
3263 if (PHIBB == SwitchCases[i].LHSBB || PHIBB == SwitchCases[i].RHSBB) {
3264 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3265 PHI->addMachineBasicBlockOperand(BB);
3266 }
3267 }
Chris Lattnera33ef482005-03-30 01:10:47 +00003268 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003269}
Evan Chenga9c20912006-01-21 02:32:06 +00003270
3271//===----------------------------------------------------------------------===//
3272/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
3273/// target node in the graph.
3274void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
3275 if (ViewSchedDAGs) DAG.viewGraph();
Evan Cheng4ef10862006-01-23 07:01:07 +00003276 ScheduleDAG *SL = NULL;
3277
3278 switch (ISHeuristic) {
3279 default: assert(0 && "Unrecognized scheduling heuristic");
Evan Cheng3f239522006-01-25 09:12:57 +00003280 case defaultScheduling:
3281 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency)
Chris Lattner4a1cd9c2006-04-21 17:16:16 +00003282 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
3283 else {
3284 assert(TLI.getSchedulingPreference() ==
3285 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Evan Cheng3f239522006-01-25 09:12:57 +00003286 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattner4a1cd9c2006-04-21 17:16:16 +00003287 }
Evan Cheng3f239522006-01-25 09:12:57 +00003288 break;
Evan Cheng4ef10862006-01-23 07:01:07 +00003289 case noScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003290 SL = createBFS_DAGScheduler(DAG, BB);
3291 break;
Evan Cheng4ef10862006-01-23 07:01:07 +00003292 case simpleScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003293 SL = createSimpleDAGScheduler(false, DAG, BB);
3294 break;
Evan Cheng4ef10862006-01-23 07:01:07 +00003295 case simpleNoItinScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003296 SL = createSimpleDAGScheduler(true, DAG, BB);
Evan Cheng4ef10862006-01-23 07:01:07 +00003297 break;
Evan Chengf0f9c902006-01-23 08:26:10 +00003298 case listSchedulingBURR:
3299 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattnera5de4842006-03-05 21:10:33 +00003300 break;
Chris Lattner03fc53c2006-03-06 00:22:00 +00003301 case listSchedulingTD:
Chris Lattnerb0d21ef2006-03-08 04:25:59 +00003302 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
Chris Lattnera5de4842006-03-05 21:10:33 +00003303 break;
Evan Cheng4ef10862006-01-23 07:01:07 +00003304 }
Chris Lattnera3818e62006-01-21 19:12:11 +00003305 BB = SL->Run();
Evan Chengcccf1232006-02-04 06:49:00 +00003306 delete SL;
Evan Chenga9c20912006-01-21 02:32:06 +00003307}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003308
Chris Lattnerb0d21ef2006-03-08 04:25:59 +00003309HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
3310 return new HazardRecognizer();
Chris Lattner03fc53c2006-03-06 00:22:00 +00003311}
3312
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003313/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
3314/// by tblgen. Others should not call it.
3315void SelectionDAGISel::
3316SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
3317 std::vector<SDOperand> InOps;
3318 std::swap(InOps, Ops);
3319
3320 Ops.push_back(InOps[0]); // input chain.
3321 Ops.push_back(InOps[1]); // input asm string.
3322
3323 const char *AsmStr = cast<ExternalSymbolSDNode>(InOps[1])->getSymbol();
3324 unsigned i = 2, e = InOps.size();
3325 if (InOps[e-1].getValueType() == MVT::Flag)
3326 --e; // Don't process a flag operand if it is here.
3327
3328 while (i != e) {
3329 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
3330 if ((Flags & 7) != 4 /*MEM*/) {
3331 // Just skip over this operand, copying the operands verbatim.
3332 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
3333 i += (Flags >> 3) + 1;
3334 } else {
3335 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
3336 // Otherwise, this is a memory operand. Ask the target to select it.
3337 std::vector<SDOperand> SelOps;
3338 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
3339 std::cerr << "Could not match memory address. Inline asm failure!\n";
3340 exit(1);
3341 }
3342
3343 // Add this to the output node.
3344 Ops.push_back(DAG.getConstant(4/*MEM*/ | (SelOps.size() << 3), MVT::i32));
3345 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
3346 i += 2;
3347 }
3348 }
3349
3350 // Add the flag input back if present.
3351 if (e != InOps.size())
3352 Ops.push_back(InOps.back());
3353}