blob: fe9398f373cab3b46cf073ca60face59166a5f82 [file] [log] [blame]
Chris Lattner1c08c712005-01-07 07:47:53 +00001//===-- SelectionDAGISel.cpp - Implement the SelectionDAGISel class -------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner1c08c712005-01-07 07:47:53 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner1c08c712005-01-07 07:47:53 +00008//===----------------------------------------------------------------------===//
9//
10// This implements the SelectionDAGISel class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
15#include "llvm/CodeGen/SelectionDAGISel.h"
Evan Chenga9c20912006-01-21 02:32:06 +000016#include "llvm/CodeGen/ScheduleDAG.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000017#include "llvm/CallingConv.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000018#include "llvm/Constants.h"
19#include "llvm/DerivedTypes.h"
20#include "llvm/Function.h"
Chris Lattner36ce6912005-11-29 06:21:05 +000021#include "llvm/GlobalVariable.h"
Chris Lattnerce7518c2006-01-26 22:24:51 +000022#include "llvm/InlineAsm.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000023#include "llvm/Instructions.h"
24#include "llvm/Intrinsics.h"
Jim Laskey43970fe2006-03-23 18:06:46 +000025#include "llvm/IntrinsicInst.h"
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +000026#include "llvm/CodeGen/IntrinsicLowering.h"
Jim Laskeyb2efb852006-01-04 22:28:25 +000027#include "llvm/CodeGen/MachineDebugInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000028#include "llvm/CodeGen/MachineFunction.h"
29#include "llvm/CodeGen/MachineFrameInfo.h"
Nate Begeman37efe672006-04-22 18:53:45 +000030#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000031#include "llvm/CodeGen/MachineInstrBuilder.h"
32#include "llvm/CodeGen/SelectionDAG.h"
33#include "llvm/CodeGen/SSARegMap.h"
Chris Lattnerfa577022005-09-13 19:30:54 +000034#include "llvm/Target/MRegisterInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000035#include "llvm/Target/TargetData.h"
36#include "llvm/Target/TargetFrameInfo.h"
37#include "llvm/Target/TargetInstrInfo.h"
38#include "llvm/Target/TargetLowering.h"
39#include "llvm/Target/TargetMachine.h"
Chris Lattner495a0b52005-08-17 06:37:43 +000040#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattner7944d9d2005-01-12 03:41:21 +000041#include "llvm/Support/CommandLine.h"
Chris Lattner7c0104b2005-11-09 04:45:33 +000042#include "llvm/Support/MathExtras.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000043#include "llvm/Support/Debug.h"
44#include <map>
Chris Lattner4e4b5762006-02-01 18:59:47 +000045#include <set>
Chris Lattner1c08c712005-01-07 07:47:53 +000046#include <iostream>
Jeff Cohen7e881032006-02-24 02:52:40 +000047#include <algorithm>
Chris Lattner1c08c712005-01-07 07:47:53 +000048using namespace llvm;
49
Chris Lattnerda8abb02005-09-01 18:44:10 +000050#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000051static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000052ViewISelDAGs("view-isel-dags", cl::Hidden,
53 cl::desc("Pop up a window to show isel dags as they are selected"));
54static cl::opt<bool>
55ViewSchedDAGs("view-sched-dags", cl::Hidden,
56 cl::desc("Pop up a window to show sched dags as they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +000057#else
Chris Lattner5e46a192006-04-02 03:07:27 +000058static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0;
Chris Lattner7944d9d2005-01-12 03:41:21 +000059#endif
60
Evan Cheng552c4a82006-04-28 02:09:19 +000061namespace {
62static cl::opt<bool>
63NoFoldNodeInFlight(
64 "no-isel-fold-inflight",
65 cl::Hidden,
66 cl::desc("Do not attempt to fold a node even if it is being selected"));
67}
68
Chris Lattner20a49212006-03-10 07:49:12 +000069// Scheduling heuristics
70enum SchedHeuristics {
71 defaultScheduling, // Let the target specify its preference.
72 noScheduling, // No scheduling, emit breadth first sequence.
73 simpleScheduling, // Two pass, min. critical path, max. utilization.
74 simpleNoItinScheduling, // Same as above exact using generic latency.
75 listSchedulingBURR, // Bottom up reg reduction list scheduling.
76 listSchedulingTD // Top-down list scheduler.
77};
78
Evan Cheng4ef10862006-01-23 07:01:07 +000079namespace {
80 cl::opt<SchedHeuristics>
81 ISHeuristic(
82 "sched",
83 cl::desc("Choose scheduling style"),
Evan Cheng3f239522006-01-25 09:12:57 +000084 cl::init(defaultScheduling),
Evan Cheng4ef10862006-01-23 07:01:07 +000085 cl::values(
Evan Cheng3f239522006-01-25 09:12:57 +000086 clEnumValN(defaultScheduling, "default",
87 "Target preferred scheduling style"),
Evan Cheng4ef10862006-01-23 07:01:07 +000088 clEnumValN(noScheduling, "none",
Jim Laskey17d52f72006-01-23 13:34:04 +000089 "No scheduling: breadth first sequencing"),
Evan Cheng4ef10862006-01-23 07:01:07 +000090 clEnumValN(simpleScheduling, "simple",
91 "Simple two pass scheduling: minimize critical path "
92 "and maximize processor utilization"),
93 clEnumValN(simpleNoItinScheduling, "simple-noitin",
94 "Simple two pass scheduling: Same as simple "
95 "except using generic latency"),
Evan Cheng3f239522006-01-25 09:12:57 +000096 clEnumValN(listSchedulingBURR, "list-burr",
Evan Chengf0f9c902006-01-23 08:26:10 +000097 "Bottom up register reduction list scheduling"),
Chris Lattner03fc53c2006-03-06 00:22:00 +000098 clEnumValN(listSchedulingTD, "list-td",
99 "Top-down list scheduler"),
Evan Cheng4ef10862006-01-23 07:01:07 +0000100 clEnumValEnd));
101} // namespace
102
Chris Lattner864635a2006-02-22 22:37:12 +0000103namespace {
104 /// RegsForValue - This struct represents the physical registers that a
105 /// particular value is assigned and the type information about the value.
106 /// This is needed because values can be promoted into larger registers and
107 /// expanded into multiple smaller registers than the value.
108 struct RegsForValue {
109 /// Regs - This list hold the register (for legal and promoted values)
110 /// or register set (for expanded values) that the value should be assigned
111 /// to.
112 std::vector<unsigned> Regs;
113
114 /// RegVT - The value type of each register.
115 ///
116 MVT::ValueType RegVT;
117
118 /// ValueVT - The value type of the LLVM value, which may be promoted from
119 /// RegVT or made from merging the two expanded parts.
120 MVT::ValueType ValueVT;
121
122 RegsForValue() : RegVT(MVT::Other), ValueVT(MVT::Other) {}
123
124 RegsForValue(unsigned Reg, MVT::ValueType regvt, MVT::ValueType valuevt)
125 : RegVT(regvt), ValueVT(valuevt) {
126 Regs.push_back(Reg);
127 }
128 RegsForValue(const std::vector<unsigned> &regs,
129 MVT::ValueType regvt, MVT::ValueType valuevt)
130 : Regs(regs), RegVT(regvt), ValueVT(valuevt) {
131 }
132
133 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
134 /// this value and returns the result as a ValueVT value. This uses
135 /// Chain/Flag as the input and updates them for the output Chain/Flag.
136 SDOperand getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000137 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000138
139 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
140 /// specified value into the registers specified by this object. This uses
141 /// Chain/Flag as the input and updates them for the output Chain/Flag.
142 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000143 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000144
145 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
146 /// operand list. This adds the code marker and includes the number of
147 /// values added into it.
148 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000149 std::vector<SDOperand> &Ops) const;
Chris Lattner864635a2006-02-22 22:37:12 +0000150 };
151}
Evan Cheng4ef10862006-01-23 07:01:07 +0000152
Chris Lattner1c08c712005-01-07 07:47:53 +0000153namespace llvm {
154 //===--------------------------------------------------------------------===//
155 /// FunctionLoweringInfo - This contains information that is global to a
156 /// function that is used when lowering a region of the function.
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000157 class FunctionLoweringInfo {
158 public:
Chris Lattner1c08c712005-01-07 07:47:53 +0000159 TargetLowering &TLI;
160 Function &Fn;
161 MachineFunction &MF;
162 SSARegMap *RegMap;
163
164 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
165
166 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
167 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
168
169 /// ValueMap - Since we emit code for the function a basic block at a time,
170 /// we must remember which virtual registers hold the values for
171 /// cross-basic-block values.
172 std::map<const Value*, unsigned> ValueMap;
173
174 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
175 /// the entry block. This allows the allocas to be efficiently referenced
176 /// anywhere in the function.
177 std::map<const AllocaInst*, int> StaticAllocaMap;
178
179 unsigned MakeReg(MVT::ValueType VT) {
180 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
181 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000182
Chris Lattner3c384492006-03-16 19:51:18 +0000183 unsigned CreateRegForValue(const Value *V);
184
Chris Lattner1c08c712005-01-07 07:47:53 +0000185 unsigned InitializeRegForValue(const Value *V) {
186 unsigned &R = ValueMap[V];
187 assert(R == 0 && "Already initialized this value register!");
188 return R = CreateRegForValue(V);
189 }
190 };
191}
192
193/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemanf15485a2006-03-27 01:32:24 +0000194/// PHI nodes or outside of the basic block that defines it, or used by a
195/// switch instruction, which may expand to multiple basic blocks.
Chris Lattner1c08c712005-01-07 07:47:53 +0000196static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
197 if (isa<PHINode>(I)) return true;
198 BasicBlock *BB = I->getParent();
199 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000200 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
201 isa<SwitchInst>(*UI))
Chris Lattner1c08c712005-01-07 07:47:53 +0000202 return true;
203 return false;
204}
205
Chris Lattnerbf209482005-10-30 19:42:35 +0000206/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemanf15485a2006-03-27 01:32:24 +0000207/// entry block, return true. This includes arguments used by switches, since
208/// the switch may expand into multiple basic blocks.
Chris Lattnerbf209482005-10-30 19:42:35 +0000209static bool isOnlyUsedInEntryBlock(Argument *A) {
210 BasicBlock *Entry = A->getParent()->begin();
211 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000212 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattnerbf209482005-10-30 19:42:35 +0000213 return false; // Use not in entry block.
214 return true;
215}
216
Chris Lattner1c08c712005-01-07 07:47:53 +0000217FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000218 Function &fn, MachineFunction &mf)
Chris Lattner1c08c712005-01-07 07:47:53 +0000219 : TLI(tli), Fn(fn), MF(mf), RegMap(MF.getSSARegMap()) {
220
Chris Lattnerbf209482005-10-30 19:42:35 +0000221 // Create a vreg for each argument register that is not dead and is used
222 // outside of the entry block for the function.
223 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
224 AI != E; ++AI)
225 if (!isOnlyUsedInEntryBlock(AI))
226 InitializeRegForValue(AI);
227
Chris Lattner1c08c712005-01-07 07:47:53 +0000228 // Initialize the mapping of values to registers. This is only set up for
229 // instruction values that are used outside of the block that defines
230 // them.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000231 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner1c08c712005-01-07 07:47:53 +0000232 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
233 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
234 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(AI->getArraySize())) {
235 const Type *Ty = AI->getAllocatedType();
236 uint64_t TySize = TLI.getTargetData().getTypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +0000237 unsigned Align =
238 std::max((unsigned)TLI.getTargetData().getTypeAlignment(Ty),
239 AI->getAlignment());
Chris Lattnera8217e32005-05-13 23:14:17 +0000240
241 // If the alignment of the value is smaller than the size of the value,
242 // and if the size of the value is particularly small (<= 8 bytes),
243 // round up to the size of the value for potentially better performance.
244 //
245 // FIXME: This could be made better with a preferred alignment hook in
246 // TargetData. It serves primarily to 8-byte align doubles for X86.
247 if (Align < TySize && TySize <= 8) Align = TySize;
Chris Lattner2dfa8192005-10-18 22:11:42 +0000248 TySize *= CUI->getValue(); // Get total allocated size.
Chris Lattnerd222f6a2005-10-18 22:14:06 +0000249 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner1c08c712005-01-07 07:47:53 +0000250 StaticAllocaMap[AI] =
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000251 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
Chris Lattner1c08c712005-01-07 07:47:53 +0000252 }
253
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000254 for (; BB != EB; ++BB)
255 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +0000256 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
257 if (!isa<AllocaInst>(I) ||
258 !StaticAllocaMap.count(cast<AllocaInst>(I)))
259 InitializeRegForValue(I);
260
261 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
262 // also creates the initial PHI MachineInstrs, though none of the input
263 // operands are populated.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000264 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000265 MachineBasicBlock *MBB = new MachineBasicBlock(BB);
266 MBBMap[BB] = MBB;
267 MF.getBasicBlockList().push_back(MBB);
268
269 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
270 // appropriate.
271 PHINode *PN;
272 for (BasicBlock::iterator I = BB->begin();
Chris Lattnerf44fd882005-01-07 21:34:19 +0000273 (PN = dyn_cast<PHINode>(I)); ++I)
274 if (!PN->use_empty()) {
Chris Lattner70c2a612006-03-31 02:06:56 +0000275 MVT::ValueType VT = TLI.getValueType(PN->getType());
276 unsigned NumElements;
277 if (VT != MVT::Vector)
278 NumElements = TLI.getNumElements(VT);
279 else {
280 MVT::ValueType VT1,VT2;
281 NumElements =
282 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
283 VT1, VT2);
284 }
Chris Lattnerf44fd882005-01-07 21:34:19 +0000285 unsigned PHIReg = ValueMap[PN];
286 assert(PHIReg &&"PHI node does not have an assigned virtual register!");
287 for (unsigned i = 0; i != NumElements; ++i)
288 BuildMI(MBB, TargetInstrInfo::PHI, PN->getNumOperands(), PHIReg+i);
289 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000290 }
291}
292
Chris Lattner3c384492006-03-16 19:51:18 +0000293/// CreateRegForValue - Allocate the appropriate number of virtual registers of
294/// the correctly promoted or expanded types. Assign these registers
295/// consecutive vreg numbers and return the first assigned number.
296unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
297 MVT::ValueType VT = TLI.getValueType(V->getType());
298
299 // The number of multiples of registers that we need, to, e.g., split up
300 // a <2 x int64> -> 4 x i32 registers.
301 unsigned NumVectorRegs = 1;
302
303 // If this is a packed type, figure out what type it will decompose into
304 // and how many of the elements it will use.
305 if (VT == MVT::Vector) {
306 const PackedType *PTy = cast<PackedType>(V->getType());
307 unsigned NumElts = PTy->getNumElements();
308 MVT::ValueType EltTy = TLI.getValueType(PTy->getElementType());
309
310 // Divide the input until we get to a supported size. This will always
311 // end with a scalar if the target doesn't support vectors.
312 while (NumElts > 1 && !TLI.isTypeLegal(getVectorType(EltTy, NumElts))) {
313 NumElts >>= 1;
314 NumVectorRegs <<= 1;
315 }
Chris Lattner6cb70042006-03-16 23:05:19 +0000316 if (NumElts == 1)
317 VT = EltTy;
318 else
319 VT = getVectorType(EltTy, NumElts);
Chris Lattner3c384492006-03-16 19:51:18 +0000320 }
321
322 // The common case is that we will only create one register for this
323 // value. If we have that case, create and return the virtual register.
324 unsigned NV = TLI.getNumElements(VT);
325 if (NV == 1) {
326 // If we are promoting this value, pick the next largest supported type.
327 MVT::ValueType PromotedType = TLI.getTypeToTransformTo(VT);
328 unsigned Reg = MakeReg(PromotedType);
329 // If this is a vector of supported or promoted types (e.g. 4 x i16),
330 // create all of the registers.
331 for (unsigned i = 1; i != NumVectorRegs; ++i)
332 MakeReg(PromotedType);
333 return Reg;
334 }
335
336 // If this value is represented with multiple target registers, make sure
337 // to create enough consecutive registers of the right (smaller) type.
338 unsigned NT = VT-1; // Find the type to use.
339 while (TLI.getNumElements((MVT::ValueType)NT) != 1)
340 --NT;
341
342 unsigned R = MakeReg((MVT::ValueType)NT);
343 for (unsigned i = 1; i != NV*NumVectorRegs; ++i)
344 MakeReg((MVT::ValueType)NT);
345 return R;
346}
Chris Lattner1c08c712005-01-07 07:47:53 +0000347
348//===----------------------------------------------------------------------===//
349/// SelectionDAGLowering - This is the common target-independent lowering
350/// implementation that is parameterized by a TargetLowering object.
351/// Also, targets can overload any lowering method.
352///
353namespace llvm {
354class SelectionDAGLowering {
355 MachineBasicBlock *CurMBB;
356
357 std::map<const Value*, SDOperand> NodeMap;
358
Chris Lattnerd3948112005-01-17 22:19:26 +0000359 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
360 /// them up and then emit token factor nodes when possible. This allows us to
361 /// get simple disambiguation between loads without worrying about alias
362 /// analysis.
363 std::vector<SDOperand> PendingLoads;
364
Nate Begemanf15485a2006-03-27 01:32:24 +0000365 /// Case - A pair of values to record the Value for a switch case, and the
366 /// case's target basic block.
367 typedef std::pair<Constant*, MachineBasicBlock*> Case;
368 typedef std::vector<Case>::iterator CaseItr;
369 typedef std::pair<CaseItr, CaseItr> CaseRange;
370
371 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
372 /// of conditional branches.
373 struct CaseRec {
374 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
375 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
376
377 /// CaseBB - The MBB in which to emit the compare and branch
378 MachineBasicBlock *CaseBB;
379 /// LT, GE - If nonzero, we know the current case value must be less-than or
380 /// greater-than-or-equal-to these Constants.
381 Constant *LT;
382 Constant *GE;
383 /// Range - A pair of iterators representing the range of case values to be
384 /// processed at this point in the binary search tree.
385 CaseRange Range;
386 };
387
388 /// The comparison function for sorting Case values.
389 struct CaseCmp {
390 bool operator () (const Case& C1, const Case& C2) {
391 if (const ConstantUInt* U1 = dyn_cast<const ConstantUInt>(C1.first))
392 return U1->getValue() < cast<const ConstantUInt>(C2.first)->getValue();
393
394 const ConstantSInt* S1 = dyn_cast<const ConstantSInt>(C1.first);
395 return S1->getValue() < cast<const ConstantSInt>(C2.first)->getValue();
396 }
397 };
398
Chris Lattner1c08c712005-01-07 07:47:53 +0000399public:
400 // TLI - This is information that describes the available target features we
401 // need for lowering. This indicates when operations are unavailable,
402 // implemented with a libcall, etc.
403 TargetLowering &TLI;
404 SelectionDAG &DAG;
405 const TargetData &TD;
406
Nate Begemanf15485a2006-03-27 01:32:24 +0000407 /// SwitchCases - Vector of CaseBlock structures used to communicate
408 /// SwitchInst code generation information.
409 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Nate Begeman37efe672006-04-22 18:53:45 +0000410 SelectionDAGISel::JumpTable JT;
Nate Begemanf15485a2006-03-27 01:32:24 +0000411
Chris Lattner1c08c712005-01-07 07:47:53 +0000412 /// FuncInfo - Information about the function as a whole.
413 ///
414 FunctionLoweringInfo &FuncInfo;
415
416 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000417 FunctionLoweringInfo &funcinfo)
Chris Lattner1c08c712005-01-07 07:47:53 +0000418 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()),
Nate Begeman9453eea2006-04-23 06:26:20 +0000419 JT(0,0,0,0), FuncInfo(funcinfo) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000420 }
421
Chris Lattnera651cf62005-01-17 19:43:36 +0000422 /// getRoot - Return the current virtual root of the Selection DAG.
423 ///
424 SDOperand getRoot() {
Chris Lattnerd3948112005-01-17 22:19:26 +0000425 if (PendingLoads.empty())
426 return DAG.getRoot();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000427
Chris Lattnerd3948112005-01-17 22:19:26 +0000428 if (PendingLoads.size() == 1) {
429 SDOperand Root = PendingLoads[0];
430 DAG.setRoot(Root);
431 PendingLoads.clear();
432 return Root;
433 }
434
435 // Otherwise, we have to make a token factor node.
436 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other, PendingLoads);
437 PendingLoads.clear();
438 DAG.setRoot(Root);
439 return Root;
Chris Lattnera651cf62005-01-17 19:43:36 +0000440 }
441
Chris Lattner1c08c712005-01-07 07:47:53 +0000442 void visit(Instruction &I) { visit(I.getOpcode(), I); }
443
444 void visit(unsigned Opcode, User &I) {
445 switch (Opcode) {
446 default: assert(0 && "Unknown instruction type encountered!");
447 abort();
448 // Build the switch statement using the Instruction.def file.
449#define HANDLE_INST(NUM, OPCODE, CLASS) \
450 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
451#include "llvm/Instruction.def"
452 }
453 }
454
455 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
456
Chris Lattner28b5b1c2006-03-15 22:19:46 +0000457 SDOperand getLoadFrom(const Type *Ty, SDOperand Ptr,
458 SDOperand SrcValue, SDOperand Root,
459 bool isVolatile);
Chris Lattner1c08c712005-01-07 07:47:53 +0000460
461 SDOperand getIntPtrConstant(uint64_t Val) {
462 return DAG.getConstant(Val, TLI.getPointerTy());
463 }
464
Chris Lattner199862b2006-03-16 19:57:50 +0000465 SDOperand getValue(const Value *V);
Chris Lattner1c08c712005-01-07 07:47:53 +0000466
467 const SDOperand &setValue(const Value *V, SDOperand NewN) {
468 SDOperand &N = NodeMap[V];
469 assert(N.Val == 0 && "Already set a value for this node!");
470 return N = NewN;
471 }
Chris Lattner4e4b5762006-02-01 18:59:47 +0000472
Chris Lattner864635a2006-02-22 22:37:12 +0000473 RegsForValue GetRegistersForValue(const std::string &ConstrCode,
474 MVT::ValueType VT,
475 bool OutReg, bool InReg,
476 std::set<unsigned> &OutputRegs,
477 std::set<unsigned> &InputRegs);
Nate Begemanf15485a2006-03-27 01:32:24 +0000478
Chris Lattner1c08c712005-01-07 07:47:53 +0000479 // Terminator instructions.
480 void visitRet(ReturnInst &I);
481 void visitBr(BranchInst &I);
Nate Begemanf15485a2006-03-27 01:32:24 +0000482 void visitSwitch(SwitchInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000483 void visitUnreachable(UnreachableInst &I) { /* noop */ }
484
Nate Begemanf15485a2006-03-27 01:32:24 +0000485 // Helper for visitSwitch
486 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Nate Begeman37efe672006-04-22 18:53:45 +0000487 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Nate Begemanf15485a2006-03-27 01:32:24 +0000488
Chris Lattner1c08c712005-01-07 07:47:53 +0000489 // These all get lowered before this pass.
Chris Lattner1c08c712005-01-07 07:47:53 +0000490 void visitInvoke(InvokeInst &I) { assert(0 && "TODO"); }
491 void visitUnwind(UnwindInst &I) { assert(0 && "TODO"); }
492
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000493 void visitBinary(User &I, unsigned IntOp, unsigned FPOp, unsigned VecOp);
Nate Begemane21ea612005-11-18 07:42:56 +0000494 void visitShift(User &I, unsigned Opcode);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000495 void visitAdd(User &I) {
496 visitBinary(I, ISD::ADD, ISD::FADD, ISD::VADD);
Chris Lattner01b3d732005-09-28 22:28:18 +0000497 }
Chris Lattnerb9fccc42005-04-02 05:04:50 +0000498 void visitSub(User &I);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000499 void visitMul(User &I) {
500 visitBinary(I, ISD::MUL, ISD::FMUL, ISD::VMUL);
Chris Lattner01b3d732005-09-28 22:28:18 +0000501 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000502 void visitDiv(User &I) {
Chris Lattner01b3d732005-09-28 22:28:18 +0000503 const Type *Ty = I.getType();
Evan Cheng3e1ce5a2006-03-03 07:01:07 +0000504 visitBinary(I,
505 Ty->isSigned() ? ISD::SDIV : ISD::UDIV, ISD::FDIV,
506 Ty->isSigned() ? ISD::VSDIV : ISD::VUDIV);
Chris Lattner1c08c712005-01-07 07:47:53 +0000507 }
508 void visitRem(User &I) {
Chris Lattner01b3d732005-09-28 22:28:18 +0000509 const Type *Ty = I.getType();
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000510 visitBinary(I, Ty->isSigned() ? ISD::SREM : ISD::UREM, ISD::FREM, 0);
Chris Lattner1c08c712005-01-07 07:47:53 +0000511 }
Evan Cheng3e1ce5a2006-03-03 07:01:07 +0000512 void visitAnd(User &I) { visitBinary(I, ISD::AND, 0, ISD::VAND); }
513 void visitOr (User &I) { visitBinary(I, ISD::OR, 0, ISD::VOR); }
514 void visitXor(User &I) { visitBinary(I, ISD::XOR, 0, ISD::VXOR); }
Nate Begemane21ea612005-11-18 07:42:56 +0000515 void visitShl(User &I) { visitShift(I, ISD::SHL); }
516 void visitShr(User &I) {
517 visitShift(I, I.getType()->isUnsigned() ? ISD::SRL : ISD::SRA);
Chris Lattner1c08c712005-01-07 07:47:53 +0000518 }
519
520 void visitSetCC(User &I, ISD::CondCode SignedOpc, ISD::CondCode UnsignedOpc);
521 void visitSetEQ(User &I) { visitSetCC(I, ISD::SETEQ, ISD::SETEQ); }
522 void visitSetNE(User &I) { visitSetCC(I, ISD::SETNE, ISD::SETNE); }
523 void visitSetLE(User &I) { visitSetCC(I, ISD::SETLE, ISD::SETULE); }
524 void visitSetGE(User &I) { visitSetCC(I, ISD::SETGE, ISD::SETUGE); }
525 void visitSetLT(User &I) { visitSetCC(I, ISD::SETLT, ISD::SETULT); }
526 void visitSetGT(User &I) { visitSetCC(I, ISD::SETGT, ISD::SETUGT); }
527
Chris Lattner2bbd8102006-03-29 00:11:43 +0000528 void visitExtractElement(User &I);
529 void visitInsertElement(User &I);
Chris Lattner3e104b12006-04-08 04:15:24 +0000530 void visitShuffleVector(User &I);
Chris Lattnerc7029802006-03-18 01:44:44 +0000531
Chris Lattner1c08c712005-01-07 07:47:53 +0000532 void visitGetElementPtr(User &I);
533 void visitCast(User &I);
534 void visitSelect(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000535
536 void visitMalloc(MallocInst &I);
537 void visitFree(FreeInst &I);
538 void visitAlloca(AllocaInst &I);
539 void visitLoad(LoadInst &I);
540 void visitStore(StoreInst &I);
541 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
542 void visitCall(CallInst &I);
Chris Lattnerce7518c2006-01-26 22:24:51 +0000543 void visitInlineAsm(CallInst &I);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +0000544 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +0000545 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner1c08c712005-01-07 07:47:53 +0000546
Chris Lattner1c08c712005-01-07 07:47:53 +0000547 void visitVAStart(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000548 void visitVAArg(VAArgInst &I);
549 void visitVAEnd(CallInst &I);
550 void visitVACopy(CallInst &I);
Chris Lattner39ae3622005-01-09 00:00:49 +0000551 void visitFrameReturnAddress(CallInst &I, bool isFrameAddress);
Chris Lattner1c08c712005-01-07 07:47:53 +0000552
Chris Lattner7041ee32005-01-11 05:56:49 +0000553 void visitMemIntrinsic(CallInst &I, unsigned Op);
Chris Lattner1c08c712005-01-07 07:47:53 +0000554
555 void visitUserOp1(Instruction &I) {
556 assert(0 && "UserOp1 should not exist at instruction selection time!");
557 abort();
558 }
559 void visitUserOp2(Instruction &I) {
560 assert(0 && "UserOp2 should not exist at instruction selection time!");
561 abort();
562 }
563};
564} // end namespace llvm
565
Chris Lattner199862b2006-03-16 19:57:50 +0000566SDOperand SelectionDAGLowering::getValue(const Value *V) {
567 SDOperand &N = NodeMap[V];
568 if (N.Val) return N;
569
570 const Type *VTy = V->getType();
571 MVT::ValueType VT = TLI.getValueType(VTy);
572 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
573 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
574 visit(CE->getOpcode(), *CE);
575 assert(N.Val && "visit didn't populate the ValueMap!");
576 return N;
577 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) {
578 return N = DAG.getGlobalAddress(GV, VT);
579 } else if (isa<ConstantPointerNull>(C)) {
580 return N = DAG.getConstant(0, TLI.getPointerTy());
581 } else if (isa<UndefValue>(C)) {
Chris Lattner23d564c2006-03-19 00:20:20 +0000582 if (!isa<PackedType>(VTy))
583 return N = DAG.getNode(ISD::UNDEF, VT);
584
Chris Lattnerb2827b02006-03-19 00:52:58 +0000585 // Create a VBUILD_VECTOR of undef nodes.
Chris Lattner23d564c2006-03-19 00:20:20 +0000586 const PackedType *PTy = cast<PackedType>(VTy);
587 unsigned NumElements = PTy->getNumElements();
588 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
589
590 std::vector<SDOperand> Ops;
591 Ops.assign(NumElements, DAG.getNode(ISD::UNDEF, PVT));
592
593 // Create a VConstant node with generic Vector type.
594 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
595 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerb2827b02006-03-19 00:52:58 +0000596 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner199862b2006-03-16 19:57:50 +0000597 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
598 return N = DAG.getConstantFP(CFP->getValue(), VT);
599 } else if (const PackedType *PTy = dyn_cast<PackedType>(VTy)) {
600 unsigned NumElements = PTy->getNumElements();
601 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattner199862b2006-03-16 19:57:50 +0000602
603 // Now that we know the number and type of the elements, push a
604 // Constant or ConstantFP node onto the ops list for each element of
605 // the packed constant.
606 std::vector<SDOperand> Ops;
607 if (ConstantPacked *CP = dyn_cast<ConstantPacked>(C)) {
Chris Lattner2bbd8102006-03-29 00:11:43 +0000608 for (unsigned i = 0; i != NumElements; ++i)
609 Ops.push_back(getValue(CP->getOperand(i)));
Chris Lattner199862b2006-03-16 19:57:50 +0000610 } else {
611 assert(isa<ConstantAggregateZero>(C) && "Unknown packed constant!");
612 SDOperand Op;
613 if (MVT::isFloatingPoint(PVT))
614 Op = DAG.getConstantFP(0, PVT);
615 else
616 Op = DAG.getConstant(0, PVT);
617 Ops.assign(NumElements, Op);
618 }
619
Chris Lattnerb2827b02006-03-19 00:52:58 +0000620 // Create a VBUILD_VECTOR node with generic Vector type.
Chris Lattner23d564c2006-03-19 00:20:20 +0000621 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
622 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerb2827b02006-03-19 00:52:58 +0000623 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner199862b2006-03-16 19:57:50 +0000624 } else {
625 // Canonicalize all constant ints to be unsigned.
626 return N = DAG.getConstant(cast<ConstantIntegral>(C)->getRawValue(),VT);
627 }
628 }
629
630 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
631 std::map<const AllocaInst*, int>::iterator SI =
632 FuncInfo.StaticAllocaMap.find(AI);
633 if (SI != FuncInfo.StaticAllocaMap.end())
634 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
635 }
636
637 std::map<const Value*, unsigned>::const_iterator VMI =
638 FuncInfo.ValueMap.find(V);
639 assert(VMI != FuncInfo.ValueMap.end() && "Value not in map!");
640
641 unsigned InReg = VMI->second;
642
643 // If this type is not legal, make it so now.
Chris Lattner70c2a612006-03-31 02:06:56 +0000644 if (VT != MVT::Vector) {
645 MVT::ValueType DestVT = TLI.getTypeToTransformTo(VT);
Chris Lattner199862b2006-03-16 19:57:50 +0000646
Chris Lattner70c2a612006-03-31 02:06:56 +0000647 N = DAG.getCopyFromReg(DAG.getEntryNode(), InReg, DestVT);
648 if (DestVT < VT) {
649 // Source must be expanded. This input value is actually coming from the
650 // register pair VMI->second and VMI->second+1.
651 N = DAG.getNode(ISD::BUILD_PAIR, VT, N,
652 DAG.getCopyFromReg(DAG.getEntryNode(), InReg+1, DestVT));
653 } else if (DestVT > VT) { // Promotion case
Chris Lattner199862b2006-03-16 19:57:50 +0000654 if (MVT::isFloatingPoint(VT))
655 N = DAG.getNode(ISD::FP_ROUND, VT, N);
656 else
657 N = DAG.getNode(ISD::TRUNCATE, VT, N);
658 }
Chris Lattner70c2a612006-03-31 02:06:56 +0000659 } else {
660 // Otherwise, if this is a vector, make it available as a generic vector
661 // here.
662 MVT::ValueType PTyElementVT, PTyLegalElementVT;
Chris Lattner2e2ef952006-04-05 06:54:42 +0000663 const PackedType *PTy = cast<PackedType>(VTy);
664 unsigned NE = TLI.getPackedTypeBreakdown(PTy, PTyElementVT,
Chris Lattner70c2a612006-03-31 02:06:56 +0000665 PTyLegalElementVT);
666
667 // Build a VBUILD_VECTOR with the input registers.
668 std::vector<SDOperand> Ops;
669 if (PTyElementVT == PTyLegalElementVT) {
670 // If the value types are legal, just VBUILD the CopyFromReg nodes.
671 for (unsigned i = 0; i != NE; ++i)
672 Ops.push_back(DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
673 PTyElementVT));
674 } else if (PTyElementVT < PTyLegalElementVT) {
675 // If the register was promoted, use TRUNCATE of FP_ROUND as appropriate.
676 for (unsigned i = 0; i != NE; ++i) {
677 SDOperand Op = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
678 PTyElementVT);
679 if (MVT::isFloatingPoint(PTyElementVT))
680 Op = DAG.getNode(ISD::FP_ROUND, PTyElementVT, Op);
681 else
682 Op = DAG.getNode(ISD::TRUNCATE, PTyElementVT, Op);
683 Ops.push_back(Op);
684 }
685 } else {
686 // If the register was expanded, use BUILD_PAIR.
687 assert((NE & 1) == 0 && "Must expand into a multiple of 2 elements!");
688 for (unsigned i = 0; i != NE/2; ++i) {
689 SDOperand Op0 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
690 PTyElementVT);
691 SDOperand Op1 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
692 PTyElementVT);
693 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Op0, Op1));
694 }
695 }
696
697 Ops.push_back(DAG.getConstant(NE, MVT::i32));
698 Ops.push_back(DAG.getValueType(PTyLegalElementVT));
699 N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner2e2ef952006-04-05 06:54:42 +0000700
701 // Finally, use a VBIT_CONVERT to make this available as the appropriate
702 // vector type.
703 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
704 DAG.getConstant(PTy->getNumElements(),
705 MVT::i32),
706 DAG.getValueType(TLI.getValueType(PTy->getElementType())));
Chris Lattner199862b2006-03-16 19:57:50 +0000707 }
708
709 return N;
710}
711
712
Chris Lattner1c08c712005-01-07 07:47:53 +0000713void SelectionDAGLowering::visitRet(ReturnInst &I) {
714 if (I.getNumOperands() == 0) {
Chris Lattnera651cf62005-01-17 19:43:36 +0000715 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getRoot()));
Chris Lattner1c08c712005-01-07 07:47:53 +0000716 return;
717 }
Nate Begemanee625572006-01-27 21:09:22 +0000718 std::vector<SDOperand> NewValues;
719 NewValues.push_back(getRoot());
720 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
721 SDOperand RetOp = getValue(I.getOperand(i));
722
723 // If this is an integer return value, we need to promote it ourselves to
724 // the full width of a register, since LegalizeOp will use ANY_EXTEND rather
725 // than sign/zero.
726 if (MVT::isInteger(RetOp.getValueType()) &&
727 RetOp.getValueType() < MVT::i64) {
728 MVT::ValueType TmpVT;
729 if (TLI.getTypeAction(MVT::i32) == TargetLowering::Promote)
730 TmpVT = TLI.getTypeToTransformTo(MVT::i32);
731 else
732 TmpVT = MVT::i32;
Chris Lattner1c08c712005-01-07 07:47:53 +0000733
Nate Begemanee625572006-01-27 21:09:22 +0000734 if (I.getOperand(i)->getType()->isSigned())
735 RetOp = DAG.getNode(ISD::SIGN_EXTEND, TmpVT, RetOp);
736 else
737 RetOp = DAG.getNode(ISD::ZERO_EXTEND, TmpVT, RetOp);
738 }
739 NewValues.push_back(RetOp);
Chris Lattner1c08c712005-01-07 07:47:53 +0000740 }
Nate Begemanee625572006-01-27 21:09:22 +0000741 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, NewValues));
Chris Lattner1c08c712005-01-07 07:47:53 +0000742}
743
744void SelectionDAGLowering::visitBr(BranchInst &I) {
745 // Update machine-CFG edges.
746 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Nate Begemanf15485a2006-03-27 01:32:24 +0000747 CurMBB->addSuccessor(Succ0MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000748
749 // Figure out which block is immediately after the current one.
750 MachineBasicBlock *NextBlock = 0;
751 MachineFunction::iterator BBI = CurMBB;
752 if (++BBI != CurMBB->getParent()->end())
753 NextBlock = BBI;
754
755 if (I.isUnconditional()) {
756 // If this is not a fall-through branch, emit the branch.
757 if (Succ0MBB != NextBlock)
Chris Lattnera651cf62005-01-17 19:43:36 +0000758 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000759 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000760 } else {
761 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Nate Begemanf15485a2006-03-27 01:32:24 +0000762 CurMBB->addSuccessor(Succ1MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000763
764 SDOperand Cond = getValue(I.getCondition());
Chris Lattner1c08c712005-01-07 07:47:53 +0000765 if (Succ1MBB == NextBlock) {
766 // If the condition is false, fall through. This means we should branch
767 // if the condition is true to Succ #0.
Chris Lattnera651cf62005-01-17 19:43:36 +0000768 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000769 Cond, DAG.getBasicBlock(Succ0MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000770 } else if (Succ0MBB == NextBlock) {
771 // If the condition is true, fall through. This means we should branch if
772 // the condition is false to Succ #1. Invert the condition first.
773 SDOperand True = DAG.getConstant(1, Cond.getValueType());
774 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
Chris Lattnera651cf62005-01-17 19:43:36 +0000775 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000776 Cond, DAG.getBasicBlock(Succ1MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000777 } else {
Chris Lattnere7ccd4a2005-04-09 03:30:29 +0000778 std::vector<SDOperand> Ops;
779 Ops.push_back(getRoot());
Evan Cheng298ebf22006-02-16 08:27:56 +0000780 // If the false case is the current basic block, then this is a self
781 // loop. We do not want to emit "Loop: ... brcond Out; br Loop", as it
782 // adds an extra instruction in the loop. Instead, invert the
783 // condition and emit "Loop: ... br!cond Loop; br Out.
784 if (CurMBB == Succ1MBB) {
785 std::swap(Succ0MBB, Succ1MBB);
786 SDOperand True = DAG.getConstant(1, Cond.getValueType());
787 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
788 }
Nate Begeman81e80972006-03-17 01:40:33 +0000789 SDOperand True = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
790 DAG.getBasicBlock(Succ0MBB));
791 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, True,
792 DAG.getBasicBlock(Succ1MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000793 }
794 }
795}
796
Nate Begemanf15485a2006-03-27 01:32:24 +0000797/// visitSwitchCase - Emits the necessary code to represent a single node in
798/// the binary search tree resulting from lowering a switch instruction.
799void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
800 SDOperand SwitchOp = getValue(CB.SwitchV);
801 SDOperand CaseOp = getValue(CB.CaseC);
802 SDOperand Cond = DAG.getSetCC(MVT::i1, SwitchOp, CaseOp, CB.CC);
803
804 // Set NextBlock to be the MBB immediately after the current one, if any.
805 // This is used to avoid emitting unnecessary branches to the next block.
806 MachineBasicBlock *NextBlock = 0;
807 MachineFunction::iterator BBI = CurMBB;
808 if (++BBI != CurMBB->getParent()->end())
809 NextBlock = BBI;
810
811 // If the lhs block is the next block, invert the condition so that we can
812 // fall through to the lhs instead of the rhs block.
813 if (CB.LHSBB == NextBlock) {
814 std::swap(CB.LHSBB, CB.RHSBB);
815 SDOperand True = DAG.getConstant(1, Cond.getValueType());
816 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
817 }
818 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
819 DAG.getBasicBlock(CB.LHSBB));
820 if (CB.RHSBB == NextBlock)
821 DAG.setRoot(BrCond);
822 else
823 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
824 DAG.getBasicBlock(CB.RHSBB)));
825 // Update successor info
826 CurMBB->addSuccessor(CB.LHSBB);
827 CurMBB->addSuccessor(CB.RHSBB);
828}
829
Nate Begeman37efe672006-04-22 18:53:45 +0000830/// visitSwitchCase - Emits the necessary code to represent a single node in
831/// the binary search tree resulting from lowering a switch instruction.
832void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
833 // FIXME: Need to emit different code for PIC vs. Non-PIC, specifically,
834 // we need to add the address of the jump table to the value loaded, since
835 // the entries in the jump table will be differences rather than absolute
836 // addresses.
837
838 // Emit the code for the jump table
839 MVT::ValueType PTy = TLI.getPointerTy();
840 unsigned PTyBytes = MVT::getSizeInBits(PTy)/8;
841 SDOperand Copy = DAG.getCopyFromReg(getRoot(), JT.Reg, PTy);
842 SDOperand IDX = DAG.getNode(ISD::MUL, PTy, Copy,
843 DAG.getConstant(PTyBytes, PTy));
844 SDOperand ADD = DAG.getNode(ISD::ADD, PTy, IDX, DAG.getJumpTable(JT.JTI,PTy));
845 SDOperand LD = DAG.getLoad(PTy, Copy.getValue(1), ADD, DAG.getSrcValue(0));
846 DAG.setRoot(DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD));
847
848 // Update successor info
849 for (std::set<MachineBasicBlock*>::iterator ii = JT.SuccMBBs.begin(),
850 ee = JT.SuccMBBs.end(); ii != ee; ++ii)
851 JT.MBB->addSuccessor(*ii);
852}
853
Nate Begemanf15485a2006-03-27 01:32:24 +0000854void SelectionDAGLowering::visitSwitch(SwitchInst &I) {
855 // Figure out which block is immediately after the current one.
856 MachineBasicBlock *NextBlock = 0;
857 MachineFunction::iterator BBI = CurMBB;
858 if (++BBI != CurMBB->getParent()->end())
859 NextBlock = BBI;
860
861 // If there is only the default destination, branch to it if it is not the
862 // next basic block. Otherwise, just fall through.
863 if (I.getNumOperands() == 2) {
864 // Update machine-CFG edges.
865 MachineBasicBlock *DefaultMBB = FuncInfo.MBBMap[I.getDefaultDest()];
866 // If this is not a fall-through branch, emit the branch.
867 if (DefaultMBB != NextBlock)
868 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
869 DAG.getBasicBlock(DefaultMBB)));
870 return;
871 }
872
873 // If there are any non-default case statements, create a vector of Cases
874 // representing each one, and sort the vector so that we can efficiently
875 // create a binary search tree from them.
876 std::vector<Case> Cases;
877 for (unsigned i = 1; i < I.getNumSuccessors(); ++i) {
878 MachineBasicBlock *SMBB = FuncInfo.MBBMap[I.getSuccessor(i)];
879 Cases.push_back(Case(I.getSuccessorValue(i), SMBB));
880 }
881 std::sort(Cases.begin(), Cases.end(), CaseCmp());
882
883 // Get the Value to be switched on and default basic blocks, which will be
884 // inserted into CaseBlock records, representing basic blocks in the binary
885 // search tree.
886 Value *SV = I.getOperand(0);
887 MachineBasicBlock *Default = FuncInfo.MBBMap[I.getDefaultDest()];
Nate Begeman37efe672006-04-22 18:53:45 +0000888
889 // Get the MachineFunction which holds the current MBB. This is used during
890 // emission of jump tables, and when inserting any additional MBBs necessary
891 // to represent the switch.
Nate Begemanf15485a2006-03-27 01:32:24 +0000892 MachineFunction *CurMF = CurMBB->getParent();
893 const BasicBlock *LLVMBB = CurMBB->getBasicBlock();
Nate Begeman37efe672006-04-22 18:53:45 +0000894 Reloc::Model Relocs = TLI.getTargetMachine().getRelocationModel();
895
896 // If the switch has more than 3 blocks, and is 100% dense, then emit a jump
897 // table rather than lowering the switch to a binary tree of conditional
898 // branches.
899 // FIXME: Make this work with 64 bit targets someday, possibly by always
900 // doing differences there so that entries stay 32 bits.
901 // FIXME: Make this work with PIC code
Nate Begeman9453eea2006-04-23 06:26:20 +0000902 if (TLI.isOperationLegal(ISD::BRIND, TLI.getPointerTy()) &&
Nate Begeman37efe672006-04-22 18:53:45 +0000903 TLI.getPointerTy() == MVT::i32 &&
904 (Relocs == Reloc::Static || Relocs == Reloc::DynamicNoPIC) &&
905 Cases.size() > 3) {
906 uint64_t First = cast<ConstantIntegral>(Cases.front().first)->getRawValue();
907 uint64_t Last = cast<ConstantIntegral>(Cases.back().first)->getRawValue();
908
909 // Determine density
910 // FIXME: support sub-100% density
911 if (((Last - First) + 1ULL) == (uint64_t)Cases.size()) {
912 // Create a new basic block to hold the code for loading the address
913 // of the jump table, and jumping to it. Update successor information;
914 // we will either branch to the default case for the switch, or the jump
915 // table.
916 MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
917 CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
918 CurMBB->addSuccessor(Default);
919 CurMBB->addSuccessor(JumpTableBB);
920
921 // Subtract the lowest switch case value from the value being switched on
922 // and conditional branch to default mbb if the result is greater than the
923 // difference between smallest and largest cases.
924 SDOperand SwitchOp = getValue(SV);
925 MVT::ValueType VT = SwitchOp.getValueType();
926 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
927 DAG.getConstant(First, VT));
928
929 // The SDNode we just created, which holds the value being switched on
930 // minus the the smallest case value, needs to be copied to a virtual
931 // register so it can be used as an index into the jump table in a
932 // subsequent basic block. This value may be smaller or larger than the
933 // target's pointer type, and therefore require extension or truncating.
934 if (VT > TLI.getPointerTy())
935 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
936 else
937 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
938 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
939 SDOperand CopyTo = DAG.getCopyToReg(getRoot(), JumpTableReg, SwitchOp);
940
941 // Emit the range check for the jump table, and branch to the default
942 // block for the switch statement if the value being switched on exceeds
943 // the largest case in the switch.
944 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultTy(), SUB,
945 DAG.getConstant(Last-First,VT), ISD::SETUGT);
946 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
947 DAG.getBasicBlock(Default)));
948
949 // Build a sorted vector of destination BBs, corresponding to each target
950 // of the switch.
951 // FIXME: need to insert DefaultMBB for each "hole" in the jump table,
952 // when we support jump tables with < 100% density.
953 std::set<MachineBasicBlock*> UniqueBBs;
954 std::vector<MachineBasicBlock*> DestBBs;
955 for (CaseItr ii = Cases.begin(), ee = Cases.end(); ii != ee; ++ii) {
956 DestBBs.push_back(ii->second);
957 UniqueBBs.insert(ii->second);
958 }
959 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
960
961 // Set the jump table information so that we can codegen it as a second
962 // MachineBasicBlock
963 JT.Reg = JumpTableReg;
964 JT.JTI = JTI;
965 JT.MBB = JumpTableBB;
Nate Begeman9453eea2006-04-23 06:26:20 +0000966 JT.Default = Default;
Nate Begeman37efe672006-04-22 18:53:45 +0000967 JT.SuccMBBs = UniqueBBs;
968 return;
969 }
970 }
Nate Begemanf15485a2006-03-27 01:32:24 +0000971
972 // Push the initial CaseRec onto the worklist
973 std::vector<CaseRec> CaseVec;
974 CaseVec.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
975
976 while (!CaseVec.empty()) {
977 // Grab a record representing a case range to process off the worklist
978 CaseRec CR = CaseVec.back();
979 CaseVec.pop_back();
980
981 // Size is the number of Cases represented by this range. If Size is 1,
982 // then we are processing a leaf of the binary search tree. Otherwise,
983 // we need to pick a pivot, and push left and right ranges onto the
984 // worklist.
985 unsigned Size = CR.Range.second - CR.Range.first;
986
987 if (Size == 1) {
988 // Create a CaseBlock record representing a conditional branch to
989 // the Case's target mbb if the value being switched on SV is equal
990 // to C. Otherwise, branch to default.
991 Constant *C = CR.Range.first->first;
992 MachineBasicBlock *Target = CR.Range.first->second;
993 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, SV, C, Target, Default,
994 CR.CaseBB);
995 // If the MBB representing the leaf node is the current MBB, then just
996 // call visitSwitchCase to emit the code into the current block.
997 // Otherwise, push the CaseBlock onto the vector to be later processed
998 // by SDISel, and insert the node's MBB before the next MBB.
999 if (CR.CaseBB == CurMBB)
1000 visitSwitchCase(CB);
1001 else {
1002 SwitchCases.push_back(CB);
1003 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1004 }
1005 } else {
1006 // split case range at pivot
1007 CaseItr Pivot = CR.Range.first + (Size / 2);
1008 CaseRange LHSR(CR.Range.first, Pivot);
1009 CaseRange RHSR(Pivot, CR.Range.second);
1010 Constant *C = Pivot->first;
1011 MachineBasicBlock *RHSBB = 0, *LHSBB = 0;
1012 // We know that we branch to the LHS if the Value being switched on is
1013 // less than the Pivot value, C. We use this to optimize our binary
1014 // tree a bit, by recognizing that if SV is greater than or equal to the
1015 // LHS's Case Value, and that Case Value is exactly one less than the
1016 // Pivot's Value, then we can branch directly to the LHS's Target,
1017 // rather than creating a leaf node for it.
1018 if ((LHSR.second - LHSR.first) == 1 &&
1019 LHSR.first->first == CR.GE &&
1020 cast<ConstantIntegral>(C)->getRawValue() ==
1021 (cast<ConstantIntegral>(CR.GE)->getRawValue() + 1ULL)) {
1022 LHSBB = LHSR.first->second;
1023 } else {
1024 LHSBB = new MachineBasicBlock(LLVMBB);
1025 CaseVec.push_back(CaseRec(LHSBB,C,CR.GE,LHSR));
1026 }
1027 // Similar to the optimization above, if the Value being switched on is
1028 // known to be less than the Constant CR.LT, and the current Case Value
1029 // is CR.LT - 1, then we can branch directly to the target block for
1030 // the current Case Value, rather than emitting a RHS leaf node for it.
1031 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
1032 cast<ConstantIntegral>(RHSR.first->first)->getRawValue() ==
1033 (cast<ConstantIntegral>(CR.LT)->getRawValue() - 1ULL)) {
1034 RHSBB = RHSR.first->second;
1035 } else {
1036 RHSBB = new MachineBasicBlock(LLVMBB);
1037 CaseVec.push_back(CaseRec(RHSBB,CR.LT,C,RHSR));
1038 }
1039 // Create a CaseBlock record representing a conditional branch to
1040 // the LHS node if the value being switched on SV is less than C.
1041 // Otherwise, branch to LHS.
1042 ISD::CondCode CC = C->getType()->isSigned() ? ISD::SETLT : ISD::SETULT;
1043 SelectionDAGISel::CaseBlock CB(CC, SV, C, LHSBB, RHSBB, CR.CaseBB);
1044 if (CR.CaseBB == CurMBB)
1045 visitSwitchCase(CB);
1046 else {
1047 SwitchCases.push_back(CB);
1048 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1049 }
1050 }
1051 }
1052}
1053
Chris Lattnerb9fccc42005-04-02 05:04:50 +00001054void SelectionDAGLowering::visitSub(User &I) {
1055 // -0.0 - X --> fneg
Chris Lattner01b3d732005-09-28 22:28:18 +00001056 if (I.getType()->isFloatingPoint()) {
1057 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
1058 if (CFP->isExactlyValue(-0.0)) {
1059 SDOperand Op2 = getValue(I.getOperand(1));
1060 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
1061 return;
1062 }
Chris Lattner01b3d732005-09-28 22:28:18 +00001063 }
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001064 visitBinary(I, ISD::SUB, ISD::FSUB, ISD::VSUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00001065}
1066
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001067void SelectionDAGLowering::visitBinary(User &I, unsigned IntOp, unsigned FPOp,
1068 unsigned VecOp) {
1069 const Type *Ty = I.getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00001070 SDOperand Op1 = getValue(I.getOperand(0));
1071 SDOperand Op2 = getValue(I.getOperand(1));
Chris Lattner2c49f272005-01-19 22:31:21 +00001072
Chris Lattnerb67eb912005-11-19 18:40:42 +00001073 if (Ty->isIntegral()) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001074 setValue(&I, DAG.getNode(IntOp, Op1.getValueType(), Op1, Op2));
1075 } else if (Ty->isFloatingPoint()) {
1076 setValue(&I, DAG.getNode(FPOp, Op1.getValueType(), Op1, Op2));
1077 } else {
1078 const PackedType *PTy = cast<PackedType>(Ty);
Chris Lattnerc7029802006-03-18 01:44:44 +00001079 SDOperand Num = DAG.getConstant(PTy->getNumElements(), MVT::i32);
1080 SDOperand Typ = DAG.getValueType(TLI.getValueType(PTy->getElementType()));
1081 setValue(&I, DAG.getNode(VecOp, MVT::Vector, Op1, Op2, Num, Typ));
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001082 }
Nate Begemane21ea612005-11-18 07:42:56 +00001083}
Chris Lattner2c49f272005-01-19 22:31:21 +00001084
Nate Begemane21ea612005-11-18 07:42:56 +00001085void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
1086 SDOperand Op1 = getValue(I.getOperand(0));
1087 SDOperand Op2 = getValue(I.getOperand(1));
1088
1089 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
1090
Chris Lattner1c08c712005-01-07 07:47:53 +00001091 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
1092}
1093
1094void SelectionDAGLowering::visitSetCC(User &I,ISD::CondCode SignedOpcode,
1095 ISD::CondCode UnsignedOpcode) {
1096 SDOperand Op1 = getValue(I.getOperand(0));
1097 SDOperand Op2 = getValue(I.getOperand(1));
1098 ISD::CondCode Opcode = SignedOpcode;
1099 if (I.getOperand(0)->getType()->isUnsigned())
1100 Opcode = UnsignedOpcode;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001101 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
Chris Lattner1c08c712005-01-07 07:47:53 +00001102}
1103
1104void SelectionDAGLowering::visitSelect(User &I) {
1105 SDOperand Cond = getValue(I.getOperand(0));
1106 SDOperand TrueVal = getValue(I.getOperand(1));
1107 SDOperand FalseVal = getValue(I.getOperand(2));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00001108 if (!isa<PackedType>(I.getType())) {
1109 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
1110 TrueVal, FalseVal));
1111 } else {
1112 setValue(&I, DAG.getNode(ISD::VSELECT, MVT::Vector, Cond, TrueVal, FalseVal,
1113 *(TrueVal.Val->op_end()-2),
1114 *(TrueVal.Val->op_end()-1)));
1115 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001116}
1117
1118void SelectionDAGLowering::visitCast(User &I) {
1119 SDOperand N = getValue(I.getOperand(0));
Chris Lattnere25ca692006-03-22 20:09:35 +00001120 MVT::ValueType SrcVT = N.getValueType();
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001121 MVT::ValueType DestVT = TLI.getValueType(I.getType());
Chris Lattner1c08c712005-01-07 07:47:53 +00001122
Chris Lattnere25ca692006-03-22 20:09:35 +00001123 if (DestVT == MVT::Vector) {
1124 // This is a cast to a vector from something else. This is always a bit
1125 // convert. Get information about the input vector.
1126 const PackedType *DestTy = cast<PackedType>(I.getType());
1127 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1128 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N,
1129 DAG.getConstant(DestTy->getNumElements(),MVT::i32),
1130 DAG.getValueType(EltVT)));
1131 } else if (SrcVT == DestVT) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001132 setValue(&I, N); // noop cast.
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001133 } else if (DestVT == MVT::i1) {
Chris Lattneref311aa2005-05-09 22:17:13 +00001134 // Cast to bool is a comparison against zero, not truncation to zero.
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001135 SDOperand Zero = isInteger(SrcVT) ? DAG.getConstant(0, N.getValueType()) :
Chris Lattneref311aa2005-05-09 22:17:13 +00001136 DAG.getConstantFP(0.0, N.getValueType());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001137 setValue(&I, DAG.getSetCC(MVT::i1, N, Zero, ISD::SETNE));
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001138 } else if (isInteger(SrcVT)) {
1139 if (isInteger(DestVT)) { // Int -> Int cast
1140 if (DestVT < SrcVT) // Truncating cast?
1141 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001142 else if (I.getOperand(0)->getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001143 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001144 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001145 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
Chris Lattner7e358902006-03-22 22:20:49 +00001146 } else if (isFloatingPoint(DestVT)) { // Int -> FP cast
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001147 if (I.getOperand(0)->getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001148 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001149 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001150 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001151 } else {
1152 assert(0 && "Unknown cast!");
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001153 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001154 } else if (isFloatingPoint(SrcVT)) {
1155 if (isFloatingPoint(DestVT)) { // FP -> FP cast
1156 if (DestVT < SrcVT) // Rounding cast?
1157 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001158 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001159 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001160 } else if (isInteger(DestVT)) { // FP -> Int cast.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001161 if (I.getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001162 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001163 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001164 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001165 } else {
1166 assert(0 && "Unknown cast!");
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001167 }
1168 } else {
Chris Lattnere25ca692006-03-22 20:09:35 +00001169 assert(SrcVT == MVT::Vector && "Unknown cast!");
1170 assert(DestVT != MVT::Vector && "Casts to vector already handled!");
1171 // This is a cast from a vector to something else. This is always a bit
1172 // convert. Get information about the input vector.
1173 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N));
Chris Lattner1c08c712005-01-07 07:47:53 +00001174 }
1175}
1176
Chris Lattner2bbd8102006-03-29 00:11:43 +00001177void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattnerc7029802006-03-18 01:44:44 +00001178 SDOperand InVec = getValue(I.getOperand(0));
1179 SDOperand InVal = getValue(I.getOperand(1));
1180 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1181 getValue(I.getOperand(2)));
1182
Chris Lattner2332b9f2006-03-19 01:17:20 +00001183 SDOperand Num = *(InVec.Val->op_end()-2);
1184 SDOperand Typ = *(InVec.Val->op_end()-1);
1185 setValue(&I, DAG.getNode(ISD::VINSERT_VECTOR_ELT, MVT::Vector,
1186 InVec, InVal, InIdx, Num, Typ));
Chris Lattnerc7029802006-03-18 01:44:44 +00001187}
1188
Chris Lattner2bbd8102006-03-29 00:11:43 +00001189void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner384504c2006-03-21 20:44:12 +00001190 SDOperand InVec = getValue(I.getOperand(0));
1191 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1192 getValue(I.getOperand(1)));
1193 SDOperand Typ = *(InVec.Val->op_end()-1);
1194 setValue(&I, DAG.getNode(ISD::VEXTRACT_VECTOR_ELT,
1195 TLI.getValueType(I.getType()), InVec, InIdx));
1196}
Chris Lattnerc7029802006-03-18 01:44:44 +00001197
Chris Lattner3e104b12006-04-08 04:15:24 +00001198void SelectionDAGLowering::visitShuffleVector(User &I) {
1199 SDOperand V1 = getValue(I.getOperand(0));
1200 SDOperand V2 = getValue(I.getOperand(1));
1201 SDOperand Mask = getValue(I.getOperand(2));
1202
1203 SDOperand Num = *(V1.Val->op_end()-2);
1204 SDOperand Typ = *(V2.Val->op_end()-1);
1205 setValue(&I, DAG.getNode(ISD::VVECTOR_SHUFFLE, MVT::Vector,
1206 V1, V2, Mask, Num, Typ));
1207}
1208
1209
Chris Lattner1c08c712005-01-07 07:47:53 +00001210void SelectionDAGLowering::visitGetElementPtr(User &I) {
1211 SDOperand N = getValue(I.getOperand(0));
1212 const Type *Ty = I.getOperand(0)->getType();
1213 const Type *UIntPtrTy = TD.getIntPtrType();
1214
1215 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
1216 OI != E; ++OI) {
1217 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00001218 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001219 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
1220 if (Field) {
1221 // N = N + Offset
1222 uint64_t Offset = TD.getStructLayout(StTy)->MemberOffsets[Field];
1223 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001224 getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00001225 }
1226 Ty = StTy->getElementType(Field);
1227 } else {
1228 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00001229
Chris Lattner7c0104b2005-11-09 04:45:33 +00001230 // If this is a constant subscript, handle it quickly.
1231 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
1232 if (CI->getRawValue() == 0) continue;
Chris Lattner7cc47772005-01-07 21:56:57 +00001233
Chris Lattner7c0104b2005-11-09 04:45:33 +00001234 uint64_t Offs;
1235 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
1236 Offs = (int64_t)TD.getTypeSize(Ty)*CSI->getValue();
1237 else
1238 Offs = TD.getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
1239 N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs));
1240 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00001241 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00001242
1243 // N = N + Idx * ElementSize;
1244 uint64_t ElementSize = TD.getTypeSize(Ty);
1245 SDOperand IdxN = getValue(Idx);
1246
1247 // If the index is smaller or larger than intptr_t, truncate or extend
1248 // it.
1249 if (IdxN.getValueType() < N.getValueType()) {
1250 if (Idx->getType()->isSigned())
1251 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
1252 else
1253 IdxN = DAG.getNode(ISD::ZERO_EXTEND, N.getValueType(), IdxN);
1254 } else if (IdxN.getValueType() > N.getValueType())
1255 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
1256
1257 // If this is a multiply by a power of two, turn it into a shl
1258 // immediately. This is a very common case.
1259 if (isPowerOf2_64(ElementSize)) {
1260 unsigned Amt = Log2_64(ElementSize);
1261 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00001262 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00001263 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
1264 continue;
1265 }
1266
1267 SDOperand Scale = getIntPtrConstant(ElementSize);
1268 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
1269 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00001270 }
1271 }
1272 setValue(&I, N);
1273}
1274
1275void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
1276 // If this is a fixed sized alloca in the entry block of the function,
1277 // allocate it statically on the stack.
1278 if (FuncInfo.StaticAllocaMap.count(&I))
1279 return; // getValue will auto-populate this.
1280
1281 const Type *Ty = I.getAllocatedType();
1282 uint64_t TySize = TLI.getTargetData().getTypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +00001283 unsigned Align = std::max((unsigned)TLI.getTargetData().getTypeAlignment(Ty),
1284 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00001285
1286 SDOperand AllocSize = getValue(I.getArraySize());
Chris Lattner68cd65e2005-01-22 23:04:37 +00001287 MVT::ValueType IntPtr = TLI.getPointerTy();
1288 if (IntPtr < AllocSize.getValueType())
1289 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
1290 else if (IntPtr > AllocSize.getValueType())
1291 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00001292
Chris Lattner68cd65e2005-01-22 23:04:37 +00001293 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner1c08c712005-01-07 07:47:53 +00001294 getIntPtrConstant(TySize));
1295
1296 // Handle alignment. If the requested alignment is less than or equal to the
1297 // stack alignment, ignore it and round the size of the allocation up to the
1298 // stack alignment size. If the size is greater than the stack alignment, we
1299 // note this in the DYNAMIC_STACKALLOC node.
1300 unsigned StackAlign =
1301 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1302 if (Align <= StackAlign) {
1303 Align = 0;
1304 // Add SA-1 to the size.
1305 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
1306 getIntPtrConstant(StackAlign-1));
1307 // Mask out the low bits for alignment purposes.
1308 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
1309 getIntPtrConstant(~(uint64_t)(StackAlign-1)));
1310 }
1311
Chris Lattneradf6c2a2005-05-14 07:29:57 +00001312 std::vector<MVT::ValueType> VTs;
1313 VTs.push_back(AllocSize.getValueType());
1314 VTs.push_back(MVT::Other);
1315 std::vector<SDOperand> Ops;
1316 Ops.push_back(getRoot());
1317 Ops.push_back(AllocSize);
1318 Ops.push_back(getIntPtrConstant(Align));
1319 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, Ops);
Chris Lattner1c08c712005-01-07 07:47:53 +00001320 DAG.setRoot(setValue(&I, DSA).getValue(1));
1321
1322 // Inform the Frame Information that we have just allocated a variable-sized
1323 // object.
1324 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
1325}
1326
Chris Lattner1c08c712005-01-07 07:47:53 +00001327void SelectionDAGLowering::visitLoad(LoadInst &I) {
1328 SDOperand Ptr = getValue(I.getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00001329
Chris Lattnerd3948112005-01-17 22:19:26 +00001330 SDOperand Root;
1331 if (I.isVolatile())
1332 Root = getRoot();
1333 else {
1334 // Do not serialize non-volatile loads against each other.
1335 Root = DAG.getRoot();
1336 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001337
1338 setValue(&I, getLoadFrom(I.getType(), Ptr, DAG.getSrcValue(I.getOperand(0)),
1339 Root, I.isVolatile()));
1340}
1341
1342SDOperand SelectionDAGLowering::getLoadFrom(const Type *Ty, SDOperand Ptr,
1343 SDOperand SrcValue, SDOperand Root,
1344 bool isVolatile) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001345 SDOperand L;
Nate Begeman8cfa57b2005-12-06 06:18:55 +00001346 if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
Nate Begeman4ef3b812005-11-22 01:29:36 +00001347 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattnerc7029802006-03-18 01:44:44 +00001348 L = DAG.getVecLoad(PTy->getNumElements(), PVT, Root, Ptr, SrcValue);
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001349 } else {
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001350 L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SrcValue);
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001351 }
Chris Lattnerd3948112005-01-17 22:19:26 +00001352
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001353 if (isVolatile)
Chris Lattnerd3948112005-01-17 22:19:26 +00001354 DAG.setRoot(L.getValue(1));
1355 else
1356 PendingLoads.push_back(L.getValue(1));
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001357
1358 return L;
Chris Lattner1c08c712005-01-07 07:47:53 +00001359}
1360
1361
1362void SelectionDAGLowering::visitStore(StoreInst &I) {
1363 Value *SrcV = I.getOperand(0);
1364 SDOperand Src = getValue(SrcV);
1365 SDOperand Ptr = getValue(I.getOperand(1));
Chris Lattner369e6db2005-05-09 04:08:33 +00001366 DAG.setRoot(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Src, Ptr,
Andrew Lenharth06ef8842005-06-29 18:54:02 +00001367 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00001368}
1369
Chris Lattner0eade312006-03-24 02:22:33 +00001370/// IntrinsicCannotAccessMemory - Return true if the specified intrinsic cannot
1371/// access memory and has no other side effects at all.
1372static bool IntrinsicCannotAccessMemory(unsigned IntrinsicID) {
1373#define GET_NO_MEMORY_INTRINSICS
1374#include "llvm/Intrinsics.gen"
1375#undef GET_NO_MEMORY_INTRINSICS
1376 return false;
1377}
1378
Chris Lattnere58a7802006-04-02 03:41:14 +00001379// IntrinsicOnlyReadsMemory - Return true if the specified intrinsic doesn't
1380// have any side-effects or if it only reads memory.
1381static bool IntrinsicOnlyReadsMemory(unsigned IntrinsicID) {
1382#define GET_SIDE_EFFECT_INFO
1383#include "llvm/Intrinsics.gen"
1384#undef GET_SIDE_EFFECT_INFO
1385 return false;
1386}
1387
Chris Lattner0eade312006-03-24 02:22:33 +00001388/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
1389/// node.
1390void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
1391 unsigned Intrinsic) {
Chris Lattner7255a542006-03-24 22:49:42 +00001392 bool HasChain = !IntrinsicCannotAccessMemory(Intrinsic);
Chris Lattnere58a7802006-04-02 03:41:14 +00001393 bool OnlyLoad = HasChain && IntrinsicOnlyReadsMemory(Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +00001394
1395 // Build the operand list.
1396 std::vector<SDOperand> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00001397 if (HasChain) { // If this intrinsic has side-effects, chainify it.
1398 if (OnlyLoad) {
1399 // We don't need to serialize loads against other loads.
1400 Ops.push_back(DAG.getRoot());
1401 } else {
1402 Ops.push_back(getRoot());
1403 }
1404 }
Chris Lattner0eade312006-03-24 02:22:33 +00001405
1406 // Add the intrinsic ID as an integer operand.
1407 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
1408
1409 // Add all operands of the call to the operand list.
1410 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1411 SDOperand Op = getValue(I.getOperand(i));
1412
1413 // If this is a vector type, force it to the right packed type.
1414 if (Op.getValueType() == MVT::Vector) {
1415 const PackedType *OpTy = cast<PackedType>(I.getOperand(i)->getType());
1416 MVT::ValueType EltVT = TLI.getValueType(OpTy->getElementType());
1417
1418 MVT::ValueType VVT = MVT::getVectorType(EltVT, OpTy->getNumElements());
1419 assert(VVT != MVT::Other && "Intrinsic uses a non-legal type?");
1420 Op = DAG.getNode(ISD::VBIT_CONVERT, VVT, Op);
1421 }
1422
1423 assert(TLI.isTypeLegal(Op.getValueType()) &&
1424 "Intrinsic uses a non-legal type?");
1425 Ops.push_back(Op);
1426 }
1427
1428 std::vector<MVT::ValueType> VTs;
1429 if (I.getType() != Type::VoidTy) {
1430 MVT::ValueType VT = TLI.getValueType(I.getType());
1431 if (VT == MVT::Vector) {
1432 const PackedType *DestTy = cast<PackedType>(I.getType());
1433 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1434
1435 VT = MVT::getVectorType(EltVT, DestTy->getNumElements());
1436 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
1437 }
1438
1439 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
1440 VTs.push_back(VT);
1441 }
1442 if (HasChain)
1443 VTs.push_back(MVT::Other);
1444
1445 // Create the node.
Chris Lattner48b61a72006-03-28 00:40:33 +00001446 SDOperand Result;
1447 if (!HasChain)
1448 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTs, Ops);
1449 else if (I.getType() != Type::VoidTy)
1450 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTs, Ops);
1451 else
1452 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTs, Ops);
1453
Chris Lattnere58a7802006-04-02 03:41:14 +00001454 if (HasChain) {
1455 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
1456 if (OnlyLoad)
1457 PendingLoads.push_back(Chain);
1458 else
1459 DAG.setRoot(Chain);
1460 }
Chris Lattner0eade312006-03-24 02:22:33 +00001461 if (I.getType() != Type::VoidTy) {
1462 if (const PackedType *PTy = dyn_cast<PackedType>(I.getType())) {
1463 MVT::ValueType EVT = TLI.getValueType(PTy->getElementType());
1464 Result = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Result,
1465 DAG.getConstant(PTy->getNumElements(), MVT::i32),
1466 DAG.getValueType(EVT));
1467 }
1468 setValue(&I, Result);
1469 }
1470}
1471
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001472/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
1473/// we want to emit this as a call to a named external function, return the name
1474/// otherwise lower it and return null.
1475const char *
1476SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
1477 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00001478 default:
1479 // By default, turn this into a target intrinsic node.
1480 visitTargetIntrinsic(I, Intrinsic);
1481 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001482 case Intrinsic::vastart: visitVAStart(I); return 0;
1483 case Intrinsic::vaend: visitVAEnd(I); return 0;
1484 case Intrinsic::vacopy: visitVACopy(I); return 0;
1485 case Intrinsic::returnaddress: visitFrameReturnAddress(I, false); return 0;
1486 case Intrinsic::frameaddress: visitFrameReturnAddress(I, true); return 0;
1487 case Intrinsic::setjmp:
1488 return "_setjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1489 break;
1490 case Intrinsic::longjmp:
1491 return "_longjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1492 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00001493 case Intrinsic::memcpy_i32:
1494 case Intrinsic::memcpy_i64:
1495 visitMemIntrinsic(I, ISD::MEMCPY);
1496 return 0;
1497 case Intrinsic::memset_i32:
1498 case Intrinsic::memset_i64:
1499 visitMemIntrinsic(I, ISD::MEMSET);
1500 return 0;
1501 case Intrinsic::memmove_i32:
1502 case Intrinsic::memmove_i64:
1503 visitMemIntrinsic(I, ISD::MEMMOVE);
1504 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001505
Chris Lattner86cb6432005-12-13 17:40:33 +00001506 case Intrinsic::dbg_stoppoint: {
Jim Laskeyce72b172006-02-11 01:01:30 +00001507 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00001508 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001509 if (DebugInfo && SPI.getContext() && DebugInfo->Verify(SPI.getContext())) {
Jim Laskeyce72b172006-02-11 01:01:30 +00001510 std::vector<SDOperand> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001511
Jim Laskeyce72b172006-02-11 01:01:30 +00001512 Ops.push_back(getRoot());
Jim Laskey43970fe2006-03-23 18:06:46 +00001513 Ops.push_back(getValue(SPI.getLineValue()));
1514 Ops.push_back(getValue(SPI.getColumnValue()));
Chris Lattner36ce6912005-11-29 06:21:05 +00001515
Jim Laskey43970fe2006-03-23 18:06:46 +00001516 DebugInfoDesc *DD = DebugInfo->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00001517 assert(DD && "Not a debug information descriptor");
Jim Laskey43970fe2006-03-23 18:06:46 +00001518 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
1519
Jim Laskeyce72b172006-02-11 01:01:30 +00001520 Ops.push_back(DAG.getString(CompileUnit->getFileName()));
1521 Ops.push_back(DAG.getString(CompileUnit->getDirectory()));
1522
Jim Laskey43970fe2006-03-23 18:06:46 +00001523 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops));
Chris Lattner86cb6432005-12-13 17:40:33 +00001524 }
Jim Laskey43970fe2006-03-23 18:06:46 +00001525
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001526 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00001527 }
Jim Laskey43970fe2006-03-23 18:06:46 +00001528 case Intrinsic::dbg_region_start: {
1529 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1530 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001531 if (DebugInfo && RSI.getContext() && DebugInfo->Verify(RSI.getContext())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001532 std::vector<SDOperand> Ops;
1533
1534 unsigned LabelID = DebugInfo->RecordRegionStart(RSI.getContext());
1535
1536 Ops.push_back(getRoot());
1537 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1538
1539 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1540 }
1541
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001542 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001543 }
1544 case Intrinsic::dbg_region_end: {
1545 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1546 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001547 if (DebugInfo && REI.getContext() && DebugInfo->Verify(REI.getContext())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001548 std::vector<SDOperand> Ops;
1549
1550 unsigned LabelID = DebugInfo->RecordRegionEnd(REI.getContext());
1551
1552 Ops.push_back(getRoot());
1553 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1554
1555 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1556 }
1557
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001558 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001559 }
1560 case Intrinsic::dbg_func_start: {
1561 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1562 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001563 if (DebugInfo && FSI.getSubprogram() &&
1564 DebugInfo->Verify(FSI.getSubprogram())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001565 std::vector<SDOperand> Ops;
1566
1567 unsigned LabelID = DebugInfo->RecordRegionStart(FSI.getSubprogram());
1568
1569 Ops.push_back(getRoot());
1570 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1571
1572 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1573 }
1574
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001575 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001576 }
1577 case Intrinsic::dbg_declare: {
1578 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1579 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Jim Laskeybf7637d2006-03-28 13:45:20 +00001580 if (DebugInfo && DI.getVariable() && DebugInfo->Verify(DI.getVariable())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001581 std::vector<SDOperand> Ops;
1582
Jim Laskey0892cee2006-03-24 09:50:27 +00001583 SDOperand AddressOp = getValue(DI.getAddress());
1584 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(AddressOp)) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001585 DebugInfo->RecordVariable(DI.getVariable(), FI->getIndex());
1586 }
1587 }
1588
1589 return 0;
1590 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001591
Reid Spencer0b118202006-01-16 21:12:35 +00001592 case Intrinsic::isunordered_f32:
1593 case Intrinsic::isunordered_f64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001594 setValue(&I, DAG.getSetCC(MVT::i1,getValue(I.getOperand(1)),
1595 getValue(I.getOperand(2)), ISD::SETUO));
1596 return 0;
1597
Reid Spencer0b118202006-01-16 21:12:35 +00001598 case Intrinsic::sqrt_f32:
1599 case Intrinsic::sqrt_f64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001600 setValue(&I, DAG.getNode(ISD::FSQRT,
1601 getValue(I.getOperand(1)).getValueType(),
1602 getValue(I.getOperand(1))));
1603 return 0;
1604 case Intrinsic::pcmarker: {
1605 SDOperand Tmp = getValue(I.getOperand(1));
1606 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
1607 return 0;
1608 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00001609 case Intrinsic::readcyclecounter: {
1610 std::vector<MVT::ValueType> VTs;
1611 VTs.push_back(MVT::i64);
1612 VTs.push_back(MVT::Other);
1613 std::vector<SDOperand> Ops;
1614 Ops.push_back(getRoot());
1615 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER, VTs, Ops);
1616 setValue(&I, Tmp);
1617 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00001618 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00001619 }
Nate Begemand88fc032006-01-14 03:14:10 +00001620 case Intrinsic::bswap_i16:
Nate Begemand88fc032006-01-14 03:14:10 +00001621 case Intrinsic::bswap_i32:
Nate Begemand88fc032006-01-14 03:14:10 +00001622 case Intrinsic::bswap_i64:
1623 setValue(&I, DAG.getNode(ISD::BSWAP,
1624 getValue(I.getOperand(1)).getValueType(),
1625 getValue(I.getOperand(1))));
1626 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001627 case Intrinsic::cttz_i8:
1628 case Intrinsic::cttz_i16:
1629 case Intrinsic::cttz_i32:
1630 case Intrinsic::cttz_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001631 setValue(&I, DAG.getNode(ISD::CTTZ,
1632 getValue(I.getOperand(1)).getValueType(),
1633 getValue(I.getOperand(1))));
1634 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001635 case Intrinsic::ctlz_i8:
1636 case Intrinsic::ctlz_i16:
1637 case Intrinsic::ctlz_i32:
1638 case Intrinsic::ctlz_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001639 setValue(&I, DAG.getNode(ISD::CTLZ,
1640 getValue(I.getOperand(1)).getValueType(),
1641 getValue(I.getOperand(1))));
1642 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001643 case Intrinsic::ctpop_i8:
1644 case Intrinsic::ctpop_i16:
1645 case Intrinsic::ctpop_i32:
1646 case Intrinsic::ctpop_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001647 setValue(&I, DAG.getNode(ISD::CTPOP,
1648 getValue(I.getOperand(1)).getValueType(),
1649 getValue(I.getOperand(1))));
1650 return 0;
Chris Lattner140d53c2006-01-13 02:50:02 +00001651 case Intrinsic::stacksave: {
1652 std::vector<MVT::ValueType> VTs;
1653 VTs.push_back(TLI.getPointerTy());
1654 VTs.push_back(MVT::Other);
1655 std::vector<SDOperand> Ops;
1656 Ops.push_back(getRoot());
1657 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE, VTs, Ops);
1658 setValue(&I, Tmp);
1659 DAG.setRoot(Tmp.getValue(1));
1660 return 0;
1661 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00001662 case Intrinsic::stackrestore: {
1663 SDOperand Tmp = getValue(I.getOperand(1));
1664 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00001665 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00001666 }
Chris Lattnerac22c832005-12-12 22:51:16 +00001667 case Intrinsic::prefetch:
1668 // FIXME: Currently discarding prefetches.
1669 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001670 }
1671}
1672
1673
Chris Lattner1c08c712005-01-07 07:47:53 +00001674void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00001675 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001676 if (Function *F = I.getCalledFunction()) {
Chris Lattnerc0f18152005-04-02 05:26:53 +00001677 if (F->isExternal())
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001678 if (unsigned IID = F->getIntrinsicID()) {
1679 RenameFn = visitIntrinsicCall(I, IID);
1680 if (!RenameFn)
1681 return;
1682 } else { // Not an LLVM intrinsic.
1683 const std::string &Name = F->getName();
Chris Lattnera09f8482006-03-05 05:09:38 +00001684 if (Name[0] == 'c' && (Name == "copysign" || Name == "copysignf")) {
1685 if (I.getNumOperands() == 3 && // Basic sanity checks.
1686 I.getOperand(1)->getType()->isFloatingPoint() &&
1687 I.getType() == I.getOperand(1)->getType() &&
1688 I.getType() == I.getOperand(2)->getType()) {
1689 SDOperand LHS = getValue(I.getOperand(1));
1690 SDOperand RHS = getValue(I.getOperand(2));
1691 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
1692 LHS, RHS));
1693 return;
1694 }
1695 } else if (Name[0] == 'f' && (Name == "fabs" || Name == "fabsf")) {
Chris Lattnerc0f18152005-04-02 05:26:53 +00001696 if (I.getNumOperands() == 2 && // Basic sanity checks.
1697 I.getOperand(1)->getType()->isFloatingPoint() &&
1698 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001699 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerc0f18152005-04-02 05:26:53 +00001700 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
1701 return;
1702 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001703 } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) {
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::FSIN, Tmp.getValueType(), Tmp));
1709 return;
1710 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001711 } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) {
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001712 if (I.getNumOperands() == 2 && // Basic sanity checks.
1713 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner06a248c92006-02-14 05:39:35 +00001714 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001715 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001716 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
1717 return;
1718 }
1719 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00001720 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001721 } else if (isa<InlineAsm>(I.getOperand(0))) {
1722 visitInlineAsm(I);
1723 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001724 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001725
Chris Lattner64e14b12005-01-08 22:48:57 +00001726 SDOperand Callee;
1727 if (!RenameFn)
1728 Callee = getValue(I.getOperand(0));
1729 else
1730 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Chris Lattner1c08c712005-01-07 07:47:53 +00001731 std::vector<std::pair<SDOperand, const Type*> > Args;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001732 Args.reserve(I.getNumOperands());
Chris Lattner1c08c712005-01-07 07:47:53 +00001733 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1734 Value *Arg = I.getOperand(i);
1735 SDOperand ArgNode = getValue(Arg);
1736 Args.push_back(std::make_pair(ArgNode, Arg->getType()));
1737 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001738
Nate Begeman8e21e712005-03-26 01:29:23 +00001739 const PointerType *PT = cast<PointerType>(I.getCalledValue()->getType());
1740 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001741
Chris Lattnercf5734d2005-01-08 19:26:18 +00001742 std::pair<SDOperand,SDOperand> Result =
Chris Lattner9092fa32005-05-12 19:56:57 +00001743 TLI.LowerCallTo(getRoot(), I.getType(), FTy->isVarArg(), I.getCallingConv(),
Chris Lattneradf6a962005-05-13 18:50:42 +00001744 I.isTailCall(), Callee, Args, DAG);
Chris Lattner1c08c712005-01-07 07:47:53 +00001745 if (I.getType() != Type::VoidTy)
Chris Lattnercf5734d2005-01-08 19:26:18 +00001746 setValue(&I, Result.first);
1747 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00001748}
1749
Chris Lattner864635a2006-02-22 22:37:12 +00001750SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001751 SDOperand &Chain, SDOperand &Flag)const{
Chris Lattner864635a2006-02-22 22:37:12 +00001752 SDOperand Val = DAG.getCopyFromReg(Chain, Regs[0], RegVT, Flag);
1753 Chain = Val.getValue(1);
1754 Flag = Val.getValue(2);
1755
1756 // If the result was expanded, copy from the top part.
1757 if (Regs.size() > 1) {
1758 assert(Regs.size() == 2 &&
1759 "Cannot expand to more than 2 elts yet!");
1760 SDOperand Hi = DAG.getCopyFromReg(Chain, Regs[1], RegVT, Flag);
1761 Chain = Val.getValue(1);
1762 Flag = Val.getValue(2);
Chris Lattner9f6637d2006-02-23 20:06:57 +00001763 if (DAG.getTargetLoweringInfo().isLittleEndian())
1764 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Val, Hi);
1765 else
1766 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Hi, Val);
Chris Lattner864635a2006-02-22 22:37:12 +00001767 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00001768
Chris Lattner864635a2006-02-22 22:37:12 +00001769 // Otherwise, if the return value was promoted, truncate it to the
1770 // appropriate type.
1771 if (RegVT == ValueVT)
1772 return Val;
1773
1774 if (MVT::isInteger(RegVT))
1775 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1776 else
1777 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val);
1778}
1779
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001780/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
1781/// specified value into the registers specified by this object. This uses
1782/// Chain/Flag as the input and updates them for the output Chain/Flag.
1783void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001784 SDOperand &Chain, SDOperand &Flag) const {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001785 if (Regs.size() == 1) {
1786 // If there is a single register and the types differ, this must be
1787 // a promotion.
1788 if (RegVT != ValueVT) {
1789 if (MVT::isInteger(RegVT))
1790 Val = DAG.getNode(ISD::ANY_EXTEND, RegVT, Val);
1791 else
1792 Val = DAG.getNode(ISD::FP_EXTEND, RegVT, Val);
1793 }
1794 Chain = DAG.getCopyToReg(Chain, Regs[0], Val, Flag);
1795 Flag = Chain.getValue(1);
1796 } else {
Chris Lattner9f6637d2006-02-23 20:06:57 +00001797 std::vector<unsigned> R(Regs);
1798 if (!DAG.getTargetLoweringInfo().isLittleEndian())
1799 std::reverse(R.begin(), R.end());
1800
1801 for (unsigned i = 0, e = R.size(); i != e; ++i) {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001802 SDOperand Part = DAG.getNode(ISD::EXTRACT_ELEMENT, RegVT, Val,
1803 DAG.getConstant(i, MVT::i32));
Chris Lattner9f6637d2006-02-23 20:06:57 +00001804 Chain = DAG.getCopyToReg(Chain, R[i], Part, Flag);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001805 Flag = Chain.getValue(1);
1806 }
1807 }
1808}
Chris Lattner864635a2006-02-22 22:37:12 +00001809
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001810/// AddInlineAsmOperands - Add this value to the specified inlineasm node
1811/// operand list. This adds the code marker and includes the number of
1812/// values added into it.
1813void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001814 std::vector<SDOperand> &Ops) const {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001815 Ops.push_back(DAG.getConstant(Code | (Regs.size() << 3), MVT::i32));
1816 for (unsigned i = 0, e = Regs.size(); i != e; ++i)
1817 Ops.push_back(DAG.getRegister(Regs[i], RegVT));
1818}
Chris Lattner864635a2006-02-22 22:37:12 +00001819
1820/// isAllocatableRegister - If the specified register is safe to allocate,
1821/// i.e. it isn't a stack pointer or some other special register, return the
1822/// register class for the register. Otherwise, return null.
1823static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001824isAllocatableRegister(unsigned Reg, MachineFunction &MF,
1825 const TargetLowering &TLI, const MRegisterInfo *MRI) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001826 MVT::ValueType FoundVT = MVT::Other;
1827 const TargetRegisterClass *FoundRC = 0;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001828 for (MRegisterInfo::regclass_iterator RCI = MRI->regclass_begin(),
1829 E = MRI->regclass_end(); RCI != E; ++RCI) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001830 MVT::ValueType ThisVT = MVT::Other;
1831
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001832 const TargetRegisterClass *RC = *RCI;
1833 // If none of the the value types for this register class are valid, we
1834 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001835 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
1836 I != E; ++I) {
1837 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001838 // If we have already found this register in a different register class,
1839 // choose the one with the largest VT specified. For example, on
1840 // PowerPC, we favor f64 register classes over f32.
1841 if (FoundVT == MVT::Other ||
1842 MVT::getSizeInBits(FoundVT) < MVT::getSizeInBits(*I)) {
1843 ThisVT = *I;
1844 break;
1845 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001846 }
1847 }
1848
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001849 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001850
Chris Lattner864635a2006-02-22 22:37:12 +00001851 // NOTE: This isn't ideal. In particular, this might allocate the
1852 // frame pointer in functions that need it (due to them not being taken
1853 // out of allocation, because a variable sized allocation hasn't been seen
1854 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001855 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
1856 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001857 if (*I == Reg) {
1858 // We found a matching register class. Keep looking at others in case
1859 // we find one with larger registers that this physreg is also in.
1860 FoundRC = RC;
1861 FoundVT = ThisVT;
1862 break;
1863 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00001864 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001865 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00001866}
1867
1868RegsForValue SelectionDAGLowering::
1869GetRegistersForValue(const std::string &ConstrCode,
1870 MVT::ValueType VT, bool isOutReg, bool isInReg,
1871 std::set<unsigned> &OutputRegs,
1872 std::set<unsigned> &InputRegs) {
1873 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
1874 TLI.getRegForInlineAsmConstraint(ConstrCode, VT);
1875 std::vector<unsigned> Regs;
1876
1877 unsigned NumRegs = VT != MVT::Other ? TLI.getNumElements(VT) : 1;
1878 MVT::ValueType RegVT;
1879 MVT::ValueType ValueVT = VT;
1880
1881 if (PhysReg.first) {
1882 if (VT == MVT::Other)
1883 ValueVT = *PhysReg.second->vt_begin();
1884 RegVT = VT;
1885
1886 // This is a explicit reference to a physical register.
1887 Regs.push_back(PhysReg.first);
1888
1889 // If this is an expanded reference, add the rest of the regs to Regs.
1890 if (NumRegs != 1) {
1891 RegVT = *PhysReg.second->vt_begin();
1892 TargetRegisterClass::iterator I = PhysReg.second->begin();
1893 TargetRegisterClass::iterator E = PhysReg.second->end();
1894 for (; *I != PhysReg.first; ++I)
1895 assert(I != E && "Didn't find reg!");
1896
1897 // Already added the first reg.
1898 --NumRegs; ++I;
1899 for (; NumRegs; --NumRegs, ++I) {
1900 assert(I != E && "Ran out of registers to allocate!");
1901 Regs.push_back(*I);
1902 }
1903 }
1904 return RegsForValue(Regs, RegVT, ValueVT);
1905 }
1906
1907 // This is a reference to a register class. Allocate NumRegs consecutive,
1908 // available, registers from the class.
1909 std::vector<unsigned> RegClassRegs =
1910 TLI.getRegClassForInlineAsmConstraint(ConstrCode, VT);
1911
1912 const MRegisterInfo *MRI = DAG.getTarget().getRegisterInfo();
1913 MachineFunction &MF = *CurMBB->getParent();
1914 unsigned NumAllocated = 0;
1915 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
1916 unsigned Reg = RegClassRegs[i];
1917 // See if this register is available.
1918 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
1919 (isInReg && InputRegs.count(Reg))) { // Already used.
1920 // Make sure we find consecutive registers.
1921 NumAllocated = 0;
1922 continue;
1923 }
1924
1925 // Check to see if this register is allocatable (i.e. don't give out the
1926 // stack pointer).
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001927 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, MRI);
Chris Lattner864635a2006-02-22 22:37:12 +00001928 if (!RC) {
1929 // Make sure we find consecutive registers.
1930 NumAllocated = 0;
1931 continue;
1932 }
1933
1934 // Okay, this register is good, we can use it.
1935 ++NumAllocated;
1936
1937 // If we allocated enough consecutive
1938 if (NumAllocated == NumRegs) {
1939 unsigned RegStart = (i-NumAllocated)+1;
1940 unsigned RegEnd = i+1;
1941 // Mark all of the allocated registers used.
1942 for (unsigned i = RegStart; i != RegEnd; ++i) {
1943 unsigned Reg = RegClassRegs[i];
1944 Regs.push_back(Reg);
1945 if (isOutReg) OutputRegs.insert(Reg); // Mark reg used.
1946 if (isInReg) InputRegs.insert(Reg); // Mark reg used.
1947 }
1948
1949 return RegsForValue(Regs, *RC->vt_begin(), VT);
1950 }
1951 }
1952
1953 // Otherwise, we couldn't allocate enough registers for this.
1954 return RegsForValue();
Chris Lattner4e4b5762006-02-01 18:59:47 +00001955}
1956
Chris Lattner864635a2006-02-22 22:37:12 +00001957
Chris Lattnerce7518c2006-01-26 22:24:51 +00001958/// visitInlineAsm - Handle a call to an InlineAsm object.
1959///
1960void SelectionDAGLowering::visitInlineAsm(CallInst &I) {
1961 InlineAsm *IA = cast<InlineAsm>(I.getOperand(0));
1962
1963 SDOperand AsmStr = DAG.getTargetExternalSymbol(IA->getAsmString().c_str(),
1964 MVT::Other);
1965
1966 // Note, we treat inline asms both with and without side-effects as the same.
1967 // If an inline asm doesn't have side effects and doesn't access memory, we
1968 // could not choose to not chain it.
1969 bool hasSideEffects = IA->hasSideEffects();
1970
Chris Lattner2cc2f662006-02-01 01:28:23 +00001971 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
Chris Lattner1efa40f2006-02-22 00:56:39 +00001972 std::vector<MVT::ValueType> ConstraintVTs;
Chris Lattnerce7518c2006-01-26 22:24:51 +00001973
1974 /// AsmNodeOperands - A list of pairs. The first element is a register, the
1975 /// second is a bitfield where bit #0 is set if it is a use and bit #1 is set
1976 /// if it is a def of that register.
1977 std::vector<SDOperand> AsmNodeOperands;
1978 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
1979 AsmNodeOperands.push_back(AsmStr);
1980
1981 SDOperand Chain = getRoot();
1982 SDOperand Flag;
1983
Chris Lattner4e4b5762006-02-01 18:59:47 +00001984 // We fully assign registers here at isel time. This is not optimal, but
1985 // should work. For register classes that correspond to LLVM classes, we
1986 // could let the LLVM RA do its thing, but we currently don't. Do a prepass
1987 // over the constraints, collecting fixed registers that we know we can't use.
1988 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00001989 unsigned OpNum = 1;
Chris Lattner4e4b5762006-02-01 18:59:47 +00001990 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
1991 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
1992 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner2223aea2006-02-02 00:25:23 +00001993
Chris Lattner1efa40f2006-02-22 00:56:39 +00001994 MVT::ValueType OpVT;
1995
1996 // Compute the value type for each operand and add it to ConstraintVTs.
1997 switch (Constraints[i].Type) {
1998 case InlineAsm::isOutput:
1999 if (!Constraints[i].isIndirectOutput) {
2000 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
2001 OpVT = TLI.getValueType(I.getType());
2002 } else {
Chris Lattner22873462006-02-27 23:45:39 +00002003 const Type *OpTy = I.getOperand(OpNum)->getType();
Chris Lattner1efa40f2006-02-22 00:56:39 +00002004 OpVT = TLI.getValueType(cast<PointerType>(OpTy)->getElementType());
2005 OpNum++; // Consumes a call operand.
2006 }
2007 break;
2008 case InlineAsm::isInput:
2009 OpVT = TLI.getValueType(I.getOperand(OpNum)->getType());
2010 OpNum++; // Consumes a call operand.
2011 break;
2012 case InlineAsm::isClobber:
2013 OpVT = MVT::Other;
2014 break;
2015 }
2016
2017 ConstraintVTs.push_back(OpVT);
2018
Chris Lattner864635a2006-02-22 22:37:12 +00002019 if (TLI.getRegForInlineAsmConstraint(ConstraintCode, OpVT).first == 0)
2020 continue; // Not assigned a fixed reg.
Chris Lattner1efa40f2006-02-22 00:56:39 +00002021
Chris Lattner864635a2006-02-22 22:37:12 +00002022 // Build a list of regs that this operand uses. This always has a single
2023 // element for promoted/expanded operands.
2024 RegsForValue Regs = GetRegistersForValue(ConstraintCode, OpVT,
2025 false, false,
2026 OutputRegs, InputRegs);
Chris Lattner4e4b5762006-02-01 18:59:47 +00002027
2028 switch (Constraints[i].Type) {
2029 case InlineAsm::isOutput:
2030 // We can't assign any other output to this register.
Chris Lattner864635a2006-02-22 22:37:12 +00002031 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002032 // If this is an early-clobber output, it cannot be assigned to the same
2033 // value as the input reg.
Chris Lattner2223aea2006-02-02 00:25:23 +00002034 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
Chris Lattner864635a2006-02-22 22:37:12 +00002035 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002036 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002037 case InlineAsm::isInput:
2038 // We can't assign any other input to this register.
Chris Lattner864635a2006-02-22 22:37:12 +00002039 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1efa40f2006-02-22 00:56:39 +00002040 break;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002041 case InlineAsm::isClobber:
2042 // Clobbered regs cannot be used as inputs or outputs.
Chris Lattner864635a2006-02-22 22:37:12 +00002043 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2044 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002045 break;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002046 }
2047 }
Chris Lattner2cc2f662006-02-01 01:28:23 +00002048
Chris Lattner0f0b7d42006-02-21 23:12:12 +00002049 // Loop over all of the inputs, copying the operand values into the
2050 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00002051 RegsForValue RetValRegs;
2052 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002053 OpNum = 1;
Chris Lattner0f0b7d42006-02-21 23:12:12 +00002054
Chris Lattner6656dd12006-01-31 02:03:41 +00002055 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00002056 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2057 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner1efa40f2006-02-22 00:56:39 +00002058
Chris Lattner2cc2f662006-02-01 01:28:23 +00002059 switch (Constraints[i].Type) {
2060 case InlineAsm::isOutput: {
Chris Lattner22873462006-02-27 23:45:39 +00002061 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2062 if (ConstraintCode.size() == 1) // not a physreg name.
2063 CTy = TLI.getConstraintType(ConstraintCode[0]);
2064
2065 if (CTy == TargetLowering::C_Memory) {
2066 // Memory output.
2067 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
2068
2069 // Check that the operand (the address to store to) isn't a float.
2070 if (!MVT::isInteger(InOperandVal.getValueType()))
2071 assert(0 && "MATCH FAIL!");
2072
2073 if (!Constraints[i].isIndirectOutput)
2074 assert(0 && "MATCH FAIL!");
2075
2076 OpNum++; // Consumes a call operand.
2077
2078 // Extend/truncate to the right pointer type if needed.
2079 MVT::ValueType PtrType = TLI.getPointerTy();
2080 if (InOperandVal.getValueType() < PtrType)
2081 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2082 else if (InOperandVal.getValueType() > PtrType)
2083 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2084
2085 // Add information to the INLINEASM node to know about this output.
2086 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2087 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2088 AsmNodeOperands.push_back(InOperandVal);
2089 break;
2090 }
2091
2092 // Otherwise, this is a register output.
2093 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2094
Chris Lattner864635a2006-02-22 22:37:12 +00002095 // If this is an early-clobber output, or if there is an input
2096 // constraint that matches this, we need to reserve the input register
2097 // so no other inputs allocate to it.
2098 bool UsesInputRegister = false;
2099 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
2100 UsesInputRegister = true;
2101
2102 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00002103 // we can use.
Chris Lattner864635a2006-02-22 22:37:12 +00002104 RegsForValue Regs =
2105 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2106 true, UsesInputRegister,
2107 OutputRegs, InputRegs);
2108 assert(!Regs.Regs.empty() && "Couldn't allocate output reg!");
Chris Lattner1efa40f2006-02-22 00:56:39 +00002109
Chris Lattner2cc2f662006-02-01 01:28:23 +00002110 if (!Constraints[i].isIndirectOutput) {
Chris Lattner864635a2006-02-22 22:37:12 +00002111 assert(RetValRegs.Regs.empty() &&
Chris Lattner2cc2f662006-02-01 01:28:23 +00002112 "Cannot have multiple output constraints yet!");
Chris Lattner2cc2f662006-02-01 01:28:23 +00002113 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
Chris Lattner864635a2006-02-22 22:37:12 +00002114 RetValRegs = Regs;
Chris Lattner2cc2f662006-02-01 01:28:23 +00002115 } else {
Chris Lattner22873462006-02-27 23:45:39 +00002116 IndirectStoresToEmit.push_back(std::make_pair(Regs,
2117 I.getOperand(OpNum)));
Chris Lattner2cc2f662006-02-01 01:28:23 +00002118 OpNum++; // Consumes a call operand.
2119 }
Chris Lattner6656dd12006-01-31 02:03:41 +00002120
2121 // Add information to the INLINEASM node to know that this register is
2122 // set.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002123 Regs.AddInlineAsmOperands(2 /*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002124 break;
2125 }
2126 case InlineAsm::isInput: {
Chris Lattner22873462006-02-27 23:45:39 +00002127 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
Chris Lattner4e4b5762006-02-01 18:59:47 +00002128 OpNum++; // Consumes a call operand.
Chris Lattner3d81fee2006-02-04 02:16:44 +00002129
Chris Lattner2223aea2006-02-02 00:25:23 +00002130 if (isdigit(ConstraintCode[0])) { // Matching constraint?
2131 // If this is required to match an output register we have already set,
2132 // just use its register.
2133 unsigned OperandNo = atoi(ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00002134
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002135 // Scan until we find the definition we already emitted of this operand.
2136 // When we find it, create a RegsForValue operand.
2137 unsigned CurOp = 2; // The first operand.
2138 for (; OperandNo; --OperandNo) {
2139 // Advance to the next operand.
2140 unsigned NumOps =
2141 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2142 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2143 "Skipped past definitions?");
2144 CurOp += (NumOps>>3)+1;
2145 }
2146
2147 unsigned NumOps =
2148 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2149 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2150 "Skipped past definitions?");
2151
2152 // Add NumOps>>3 registers to MatchedRegs.
2153 RegsForValue MatchedRegs;
2154 MatchedRegs.ValueVT = InOperandVal.getValueType();
2155 MatchedRegs.RegVT = AsmNodeOperands[CurOp+1].getValueType();
2156 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
2157 unsigned Reg=cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
2158 MatchedRegs.Regs.push_back(Reg);
2159 }
2160
2161 // Use the produced MatchedRegs object to
2162 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag);
2163 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002164 break;
Chris Lattner2223aea2006-02-02 00:25:23 +00002165 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00002166
2167 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2168 if (ConstraintCode.size() == 1) // not a physreg name.
2169 CTy = TLI.getConstraintType(ConstraintCode[0]);
2170
2171 if (CTy == TargetLowering::C_Other) {
2172 if (!TLI.isOperandValidForConstraint(InOperandVal, ConstraintCode[0]))
2173 assert(0 && "MATCH FAIL!");
2174
2175 // Add information to the INLINEASM node to know about this input.
2176 unsigned ResOpType = 3 /*IMM*/ | (1 << 3);
2177 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2178 AsmNodeOperands.push_back(InOperandVal);
2179 break;
2180 } else if (CTy == TargetLowering::C_Memory) {
2181 // Memory input.
2182
2183 // Check that the operand isn't a float.
2184 if (!MVT::isInteger(InOperandVal.getValueType()))
2185 assert(0 && "MATCH FAIL!");
2186
2187 // Extend/truncate to the right pointer type if needed.
2188 MVT::ValueType PtrType = TLI.getPointerTy();
2189 if (InOperandVal.getValueType() < PtrType)
2190 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2191 else if (InOperandVal.getValueType() > PtrType)
2192 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2193
2194 // Add information to the INLINEASM node to know about this input.
2195 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2196 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2197 AsmNodeOperands.push_back(InOperandVal);
2198 break;
2199 }
2200
2201 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2202
2203 // Copy the input into the appropriate registers.
2204 RegsForValue InRegs =
2205 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2206 false, true, OutputRegs, InputRegs);
2207 // FIXME: should be match fail.
2208 assert(!InRegs.Regs.empty() && "Couldn't allocate input reg!");
2209
2210 InRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag);
2211
2212 InRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002213 break;
2214 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002215 case InlineAsm::isClobber: {
2216 RegsForValue ClobberedRegs =
2217 GetRegistersForValue(ConstraintCode, MVT::Other, false, false,
2218 OutputRegs, InputRegs);
2219 // Add the clobbered value to the operand list, so that the register
2220 // allocator is aware that the physreg got clobbered.
2221 if (!ClobberedRegs.Regs.empty())
2222 ClobberedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002223 break;
2224 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002225 }
Chris Lattner6656dd12006-01-31 02:03:41 +00002226 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00002227
2228 // Finish up input operands.
2229 AsmNodeOperands[0] = Chain;
2230 if (Flag.Val) AsmNodeOperands.push_back(Flag);
2231
2232 std::vector<MVT::ValueType> VTs;
2233 VTs.push_back(MVT::Other);
2234 VTs.push_back(MVT::Flag);
2235 Chain = DAG.getNode(ISD::INLINEASM, VTs, AsmNodeOperands);
2236 Flag = Chain.getValue(1);
2237
Chris Lattner6656dd12006-01-31 02:03:41 +00002238 // If this asm returns a register value, copy the result from that register
2239 // and set it as the value of the call.
Chris Lattner864635a2006-02-22 22:37:12 +00002240 if (!RetValRegs.Regs.empty())
2241 setValue(&I, RetValRegs.getCopyFromRegs(DAG, Chain, Flag));
Chris Lattnerce7518c2006-01-26 22:24:51 +00002242
Chris Lattner6656dd12006-01-31 02:03:41 +00002243 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
2244
2245 // Process indirect outputs, first output all of the flagged copies out of
2246 // physregs.
2247 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00002248 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00002249 Value *Ptr = IndirectStoresToEmit[i].second;
Chris Lattner864635a2006-02-22 22:37:12 +00002250 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, Flag);
2251 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00002252 }
2253
2254 // Emit the non-flagged stores from the physregs.
2255 std::vector<SDOperand> OutChains;
2256 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
2257 OutChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
2258 StoresToEmit[i].first,
2259 getValue(StoresToEmit[i].second),
2260 DAG.getSrcValue(StoresToEmit[i].second)));
2261 if (!OutChains.empty())
2262 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattnerce7518c2006-01-26 22:24:51 +00002263 DAG.setRoot(Chain);
2264}
2265
2266
Chris Lattner1c08c712005-01-07 07:47:53 +00002267void SelectionDAGLowering::visitMalloc(MallocInst &I) {
2268 SDOperand Src = getValue(I.getOperand(0));
2269
2270 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00002271
2272 if (IntPtr < Src.getValueType())
2273 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
2274 else if (IntPtr > Src.getValueType())
2275 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00002276
2277 // Scale the source by the type size.
2278 uint64_t ElementSize = TD.getTypeSize(I.getType()->getElementType());
2279 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
2280 Src, getIntPtrConstant(ElementSize));
2281
2282 std::vector<std::pair<SDOperand, const Type*> > Args;
2283 Args.push_back(std::make_pair(Src, TLI.getTargetData().getIntPtrType()));
Chris Lattnercf5734d2005-01-08 19:26:18 +00002284
2285 std::pair<SDOperand,SDOperand> Result =
Chris Lattneradf6a962005-05-13 18:50:42 +00002286 TLI.LowerCallTo(getRoot(), I.getType(), false, CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00002287 DAG.getExternalSymbol("malloc", IntPtr),
2288 Args, DAG);
2289 setValue(&I, Result.first); // Pointers always fit in registers
2290 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002291}
2292
2293void SelectionDAGLowering::visitFree(FreeInst &I) {
2294 std::vector<std::pair<SDOperand, const Type*> > Args;
2295 Args.push_back(std::make_pair(getValue(I.getOperand(0)),
2296 TLI.getTargetData().getIntPtrType()));
2297 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattnercf5734d2005-01-08 19:26:18 +00002298 std::pair<SDOperand,SDOperand> Result =
Chris Lattneradf6a962005-05-13 18:50:42 +00002299 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00002300 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
2301 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002302}
2303
Chris Lattner025c39b2005-08-26 20:54:47 +00002304// InsertAtEndOfBasicBlock - This method should be implemented by targets that
2305// mark instructions with the 'usesCustomDAGSchedInserter' flag. These
2306// instructions are special in various ways, which require special support to
2307// insert. The specified MachineInstr is created but not inserted into any
2308// basic blocks, and the scheduler passes ownership of it to this method.
2309MachineBasicBlock *TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
2310 MachineBasicBlock *MBB) {
2311 std::cerr << "If a target marks an instruction with "
2312 "'usesCustomDAGSchedInserter', it must implement "
2313 "TargetLowering::InsertAtEndOfBasicBlock!\n";
2314 abort();
2315 return 0;
2316}
2317
Chris Lattner39ae3622005-01-09 00:00:49 +00002318void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002319 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
2320 getValue(I.getOperand(1)),
2321 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00002322}
2323
2324void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002325 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
2326 getValue(I.getOperand(0)),
2327 DAG.getSrcValue(I.getOperand(0)));
2328 setValue(&I, V);
2329 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002330}
2331
2332void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002333 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
2334 getValue(I.getOperand(1)),
2335 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00002336}
2337
2338void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002339 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
2340 getValue(I.getOperand(1)),
2341 getValue(I.getOperand(2)),
2342 DAG.getSrcValue(I.getOperand(1)),
2343 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00002344}
2345
Chris Lattnerfdfded52006-04-12 16:20:43 +00002346/// TargetLowering::LowerArguments - This is the default LowerArguments
2347/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
2348/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be removed.
2349std::vector<SDOperand>
2350TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
2351 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
2352 std::vector<SDOperand> Ops;
2353 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
2354 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
2355
2356 // Add one result value for each formal argument.
2357 std::vector<MVT::ValueType> RetVals;
2358 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2359 MVT::ValueType VT = getValueType(I->getType());
2360
2361 switch (getTypeAction(VT)) {
2362 default: assert(0 && "Unknown type action!");
2363 case Legal:
2364 RetVals.push_back(VT);
2365 break;
2366 case Promote:
2367 RetVals.push_back(getTypeToTransformTo(VT));
2368 break;
2369 case Expand:
2370 if (VT != MVT::Vector) {
2371 // If this is a large integer, it needs to be broken up into small
2372 // integers. Figure out what the destination type is and how many small
2373 // integers it turns into.
2374 MVT::ValueType NVT = getTypeToTransformTo(VT);
2375 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2376 for (unsigned i = 0; i != NumVals; ++i)
2377 RetVals.push_back(NVT);
2378 } else {
2379 // Otherwise, this is a vector type. We only support legal vectors
2380 // right now.
2381 unsigned NumElems = cast<PackedType>(I->getType())->getNumElements();
2382 const Type *EltTy = cast<PackedType>(I->getType())->getElementType();
Evan Chengf7179bb2006-04-27 08:29:42 +00002383
Chris Lattnerfdfded52006-04-12 16:20:43 +00002384 // Figure out if there is a Packed type corresponding to this Vector
2385 // type. If so, convert to the packed type.
2386 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2387 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2388 RetVals.push_back(TVT);
2389 } else {
2390 assert(0 && "Don't support illegal by-val vector arguments yet!");
2391 }
2392 }
2393 break;
2394 }
2395 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00002396
2397 if (RetVals.size() == 0)
2398 RetVals.push_back(MVT::isVoid);
Chris Lattnerfdfded52006-04-12 16:20:43 +00002399
2400 // Create the node.
2401 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, RetVals, Ops).Val;
2402
2403 // Set up the return result vector.
2404 Ops.clear();
2405 unsigned i = 0;
2406 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2407 MVT::ValueType VT = getValueType(I->getType());
2408
2409 switch (getTypeAction(VT)) {
2410 default: assert(0 && "Unknown type action!");
2411 case Legal:
2412 Ops.push_back(SDOperand(Result, i++));
2413 break;
2414 case Promote: {
2415 SDOperand Op(Result, i++);
2416 if (MVT::isInteger(VT)) {
2417 unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext
2418 : ISD::AssertZext;
2419 Op = DAG.getNode(AssertOp, Op.getValueType(), Op, DAG.getValueType(VT));
2420 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2421 } else {
2422 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2423 Op = DAG.getNode(ISD::FP_ROUND, VT, Op);
2424 }
2425 Ops.push_back(Op);
2426 break;
2427 }
2428 case Expand:
2429 if (VT != MVT::Vector) {
2430 // If this is a large integer, it needs to be reassembled from small
2431 // integers. Figure out what the source elt type is and how many small
2432 // integers it is.
2433 MVT::ValueType NVT = getTypeToTransformTo(VT);
2434 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2435 if (NumVals == 2) {
2436 SDOperand Lo = SDOperand(Result, i++);
2437 SDOperand Hi = SDOperand(Result, i++);
2438
2439 if (!isLittleEndian())
2440 std::swap(Lo, Hi);
2441
2442 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi));
2443 } else {
2444 // Value scalarized into many values. Unimp for now.
2445 assert(0 && "Cannot expand i64 -> i16 yet!");
2446 }
2447 } else {
2448 // Otherwise, this is a vector type. We only support legal vectors
2449 // right now.
Evan Cheng020c41f2006-04-28 05:25:15 +00002450 const PackedType *PTy = cast<PackedType>(I->getType());
2451 unsigned NumElems = PTy->getNumElements();
2452 const Type *EltTy = PTy->getElementType();
Evan Chengf7179bb2006-04-27 08:29:42 +00002453
Chris Lattnerfdfded52006-04-12 16:20:43 +00002454 // Figure out if there is a Packed type corresponding to this Vector
2455 // type. If so, convert to the packed type.
2456 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2457 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Evan Cheng020c41f2006-04-28 05:25:15 +00002458 SDOperand N = SDOperand(Result, i++);
2459 // Handle copies from generic vectors to registers.
2460 MVT::ValueType PTyElementVT, PTyLegalElementVT;
2461 unsigned NE = getPackedTypeBreakdown(PTy, PTyElementVT,
2462 PTyLegalElementVT);
2463 // Insert a VBIT_CONVERT of the FORMAL_ARGUMENTS to a
2464 // "N x PTyElementVT" MVT::Vector type.
2465 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
2466 DAG.getConstant(NE, MVT::i32),
2467 DAG.getValueType(PTyElementVT));
2468 Ops.push_back(N);
Chris Lattnerfdfded52006-04-12 16:20:43 +00002469 } else {
2470 assert(0 && "Don't support illegal by-val vector arguments yet!");
2471 }
2472 }
2473 break;
2474 }
2475 }
2476 return Ops;
2477}
2478
Chris Lattner39ae3622005-01-09 00:00:49 +00002479// It is always conservatively correct for llvm.returnaddress and
2480// llvm.frameaddress to return 0.
2481std::pair<SDOperand, SDOperand>
2482TargetLowering::LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain,
2483 unsigned Depth, SelectionDAG &DAG) {
2484 return std::make_pair(DAG.getConstant(0, getPointerTy()), Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00002485}
2486
Chris Lattner50381b62005-05-14 05:50:48 +00002487SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00002488 assert(0 && "LowerOperation not implemented for this target!");
2489 abort();
Misha Brukmand3f03e42005-02-17 21:39:27 +00002490 return SDOperand();
Chris Lattner171453a2005-01-16 07:28:41 +00002491}
2492
Nate Begeman0aed7842006-01-28 03:14:31 +00002493SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
2494 SelectionDAG &DAG) {
2495 assert(0 && "CustomPromoteOperation not implemented for this target!");
2496 abort();
2497 return SDOperand();
2498}
2499
Chris Lattner39ae3622005-01-09 00:00:49 +00002500void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) {
2501 unsigned Depth = (unsigned)cast<ConstantUInt>(I.getOperand(1))->getValue();
2502 std::pair<SDOperand,SDOperand> Result =
Chris Lattnera651cf62005-01-17 19:43:36 +00002503 TLI.LowerFrameReturnAddress(isFrame, getRoot(), Depth, DAG);
Chris Lattner39ae3622005-01-09 00:00:49 +00002504 setValue(&I, Result.first);
2505 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002506}
2507
Evan Cheng74d0aa92006-02-15 21:59:04 +00002508/// getMemsetValue - Vectorized representation of the memset value
Evan Cheng1db92f92006-02-14 08:22:34 +00002509/// operand.
2510static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT,
Evan Chenga47876d2006-02-15 22:12:35 +00002511 SelectionDAG &DAG) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002512 MVT::ValueType CurVT = VT;
2513 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
2514 uint64_t Val = C->getValue() & 255;
2515 unsigned Shift = 8;
2516 while (CurVT != MVT::i8) {
2517 Val = (Val << Shift) | Val;
2518 Shift <<= 1;
2519 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002520 }
2521 return DAG.getConstant(Val, VT);
2522 } else {
2523 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2524 unsigned Shift = 8;
2525 while (CurVT != MVT::i8) {
2526 Value =
2527 DAG.getNode(ISD::OR, VT,
2528 DAG.getNode(ISD::SHL, VT, Value,
2529 DAG.getConstant(Shift, MVT::i8)), Value);
2530 Shift <<= 1;
2531 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002532 }
2533
2534 return Value;
2535 }
2536}
2537
Evan Cheng74d0aa92006-02-15 21:59:04 +00002538/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2539/// used when a memcpy is turned into a memset when the source is a constant
2540/// string ptr.
2541static SDOperand getMemsetStringVal(MVT::ValueType VT,
2542 SelectionDAG &DAG, TargetLowering &TLI,
2543 std::string &Str, unsigned Offset) {
2544 MVT::ValueType CurVT = VT;
2545 uint64_t Val = 0;
2546 unsigned MSB = getSizeInBits(VT) / 8;
2547 if (TLI.isLittleEndian())
2548 Offset = Offset + MSB - 1;
2549 for (unsigned i = 0; i != MSB; ++i) {
2550 Val = (Val << 8) | Str[Offset];
2551 Offset += TLI.isLittleEndian() ? -1 : 1;
2552 }
2553 return DAG.getConstant(Val, VT);
2554}
2555
Evan Cheng1db92f92006-02-14 08:22:34 +00002556/// getMemBasePlusOffset - Returns base and offset node for the
2557static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
2558 SelectionDAG &DAG, TargetLowering &TLI) {
2559 MVT::ValueType VT = Base.getValueType();
2560 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2561}
2562
Evan Chengc4f8eee2006-02-14 20:12:38 +00002563/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
Evan Cheng80e89d72006-02-14 09:11:59 +00002564/// to replace the memset / memcpy is below the threshold. It also returns the
2565/// types of the sequence of memory ops to perform memset / memcpy.
Evan Chengc4f8eee2006-02-14 20:12:38 +00002566static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps,
2567 unsigned Limit, uint64_t Size,
2568 unsigned Align, TargetLowering &TLI) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002569 MVT::ValueType VT;
2570
2571 if (TLI.allowsUnalignedMemoryAccesses()) {
2572 VT = MVT::i64;
2573 } else {
2574 switch (Align & 7) {
2575 case 0:
2576 VT = MVT::i64;
2577 break;
2578 case 4:
2579 VT = MVT::i32;
2580 break;
2581 case 2:
2582 VT = MVT::i16;
2583 break;
2584 default:
2585 VT = MVT::i8;
2586 break;
2587 }
2588 }
2589
Evan Cheng80e89d72006-02-14 09:11:59 +00002590 MVT::ValueType LVT = MVT::i64;
2591 while (!TLI.isTypeLegal(LVT))
2592 LVT = (MVT::ValueType)((unsigned)LVT - 1);
2593 assert(MVT::isInteger(LVT));
Evan Cheng1db92f92006-02-14 08:22:34 +00002594
Evan Cheng80e89d72006-02-14 09:11:59 +00002595 if (VT > LVT)
2596 VT = LVT;
2597
Evan Chengdea72452006-02-14 23:05:54 +00002598 unsigned NumMemOps = 0;
Evan Cheng1db92f92006-02-14 08:22:34 +00002599 while (Size != 0) {
2600 unsigned VTSize = getSizeInBits(VT) / 8;
2601 while (VTSize > Size) {
2602 VT = (MVT::ValueType)((unsigned)VT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002603 VTSize >>= 1;
2604 }
Evan Cheng80e89d72006-02-14 09:11:59 +00002605 assert(MVT::isInteger(VT));
2606
2607 if (++NumMemOps > Limit)
2608 return false;
Evan Cheng1db92f92006-02-14 08:22:34 +00002609 MemOps.push_back(VT);
2610 Size -= VTSize;
2611 }
Evan Cheng80e89d72006-02-14 09:11:59 +00002612
2613 return true;
Evan Cheng1db92f92006-02-14 08:22:34 +00002614}
2615
Chris Lattner7041ee32005-01-11 05:56:49 +00002616void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002617 SDOperand Op1 = getValue(I.getOperand(1));
2618 SDOperand Op2 = getValue(I.getOperand(2));
2619 SDOperand Op3 = getValue(I.getOperand(3));
2620 SDOperand Op4 = getValue(I.getOperand(4));
2621 unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue();
2622 if (Align == 0) Align = 1;
2623
2624 if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) {
2625 std::vector<MVT::ValueType> MemOps;
Evan Cheng1db92f92006-02-14 08:22:34 +00002626
2627 // Expand memset / memcpy to a series of load / store ops
2628 // if the size operand falls below a certain threshold.
2629 std::vector<SDOperand> OutChains;
2630 switch (Op) {
Evan Chengac940ab2006-02-14 19:45:56 +00002631 default: break; // Do nothing for now.
Evan Cheng1db92f92006-02-14 08:22:34 +00002632 case ISD::MEMSET: {
Evan Chengc4f8eee2006-02-14 20:12:38 +00002633 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
2634 Size->getValue(), Align, TLI)) {
Evan Cheng80e89d72006-02-14 09:11:59 +00002635 unsigned NumMemOps = MemOps.size();
Evan Cheng1db92f92006-02-14 08:22:34 +00002636 unsigned Offset = 0;
2637 for (unsigned i = 0; i < NumMemOps; i++) {
2638 MVT::ValueType VT = MemOps[i];
2639 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Chenga47876d2006-02-15 22:12:35 +00002640 SDOperand Value = getMemsetValue(Op2, VT, DAG);
Evan Chengc080d6f2006-02-15 01:54:51 +00002641 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, getRoot(),
2642 Value,
Chris Lattner864635a2006-02-22 22:37:12 +00002643 getMemBasePlusOffset(Op1, Offset, DAG, TLI),
2644 DAG.getSrcValue(I.getOperand(1), Offset));
Evan Chengc080d6f2006-02-15 01:54:51 +00002645 OutChains.push_back(Store);
Evan Cheng1db92f92006-02-14 08:22:34 +00002646 Offset += VTSize;
2647 }
Evan Cheng1db92f92006-02-14 08:22:34 +00002648 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002649 break;
Evan Cheng1db92f92006-02-14 08:22:34 +00002650 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002651 case ISD::MEMCPY: {
2652 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemcpy(),
2653 Size->getValue(), Align, TLI)) {
2654 unsigned NumMemOps = MemOps.size();
Evan Chengcffbb512006-02-16 23:11:42 +00002655 unsigned SrcOff = 0, DstOff = 0, SrcDelta = 0;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002656 GlobalAddressSDNode *G = NULL;
2657 std::string Str;
Evan Chengcffbb512006-02-16 23:11:42 +00002658 bool CopyFromStr = false;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002659
2660 if (Op2.getOpcode() == ISD::GlobalAddress)
2661 G = cast<GlobalAddressSDNode>(Op2);
2662 else if (Op2.getOpcode() == ISD::ADD &&
2663 Op2.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2664 Op2.getOperand(1).getOpcode() == ISD::Constant) {
2665 G = cast<GlobalAddressSDNode>(Op2.getOperand(0));
Evan Chengcffbb512006-02-16 23:11:42 +00002666 SrcDelta = cast<ConstantSDNode>(Op2.getOperand(1))->getValue();
Evan Cheng74d0aa92006-02-15 21:59:04 +00002667 }
2668 if (G) {
2669 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Chengcffbb512006-02-16 23:11:42 +00002670 if (GV) {
Evan Cheng09371032006-03-10 23:52:03 +00002671 Str = GV->getStringValue(false);
Evan Chengcffbb512006-02-16 23:11:42 +00002672 if (!Str.empty()) {
2673 CopyFromStr = true;
2674 SrcOff += SrcDelta;
2675 }
2676 }
Evan Cheng74d0aa92006-02-15 21:59:04 +00002677 }
2678
Evan Chengc080d6f2006-02-15 01:54:51 +00002679 for (unsigned i = 0; i < NumMemOps; i++) {
2680 MVT::ValueType VT = MemOps[i];
2681 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002682 SDOperand Value, Chain, Store;
2683
Evan Chengcffbb512006-02-16 23:11:42 +00002684 if (CopyFromStr) {
Evan Cheng74d0aa92006-02-15 21:59:04 +00002685 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
2686 Chain = getRoot();
2687 Store =
2688 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2689 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2690 DAG.getSrcValue(I.getOperand(1), DstOff));
2691 } else {
2692 Value = DAG.getLoad(VT, getRoot(),
2693 getMemBasePlusOffset(Op2, SrcOff, DAG, TLI),
2694 DAG.getSrcValue(I.getOperand(2), SrcOff));
2695 Chain = Value.getValue(1);
2696 Store =
2697 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2698 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2699 DAG.getSrcValue(I.getOperand(1), DstOff));
2700 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002701 OutChains.push_back(Store);
Evan Cheng74d0aa92006-02-15 21:59:04 +00002702 SrcOff += VTSize;
2703 DstOff += VTSize;
Evan Chengc080d6f2006-02-15 01:54:51 +00002704 }
2705 }
2706 break;
2707 }
2708 }
2709
2710 if (!OutChains.empty()) {
2711 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains));
2712 return;
Evan Cheng1db92f92006-02-14 08:22:34 +00002713 }
2714 }
2715
Chris Lattner7041ee32005-01-11 05:56:49 +00002716 std::vector<SDOperand> Ops;
Chris Lattnera651cf62005-01-17 19:43:36 +00002717 Ops.push_back(getRoot());
Evan Cheng1db92f92006-02-14 08:22:34 +00002718 Ops.push_back(Op1);
2719 Ops.push_back(Op2);
2720 Ops.push_back(Op3);
2721 Ops.push_back(Op4);
Chris Lattner7041ee32005-01-11 05:56:49 +00002722 DAG.setRoot(DAG.getNode(Op, MVT::Other, Ops));
Chris Lattner1c08c712005-01-07 07:47:53 +00002723}
2724
Chris Lattner7041ee32005-01-11 05:56:49 +00002725//===----------------------------------------------------------------------===//
2726// SelectionDAGISel code
2727//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00002728
2729unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) {
2730 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
2731}
2732
Chris Lattner495a0b52005-08-17 06:37:43 +00002733void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner36b708f2005-08-18 17:35:14 +00002734 // FIXME: we only modify the CFG to split critical edges. This
2735 // updates dom and loop info.
Chris Lattner495a0b52005-08-17 06:37:43 +00002736}
Chris Lattner1c08c712005-01-07 07:47:53 +00002737
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002738
2739/// InsertGEPComputeCode - Insert code into BB to compute Ptr+PtrOffset,
2740/// casting to the type of GEPI.
2741static Value *InsertGEPComputeCode(Value *&V, BasicBlock *BB, Instruction *GEPI,
2742 Value *Ptr, Value *PtrOffset) {
2743 if (V) return V; // Already computed.
2744
2745 BasicBlock::iterator InsertPt;
2746 if (BB == GEPI->getParent()) {
2747 // If insert into the GEP's block, insert right after the GEP.
2748 InsertPt = GEPI;
2749 ++InsertPt;
2750 } else {
2751 // Otherwise, insert at the top of BB, after any PHI nodes
2752 InsertPt = BB->begin();
2753 while (isa<PHINode>(InsertPt)) ++InsertPt;
2754 }
2755
Chris Lattnerc78b0b72005-12-08 08:00:12 +00002756 // If Ptr is itself a cast, but in some other BB, emit a copy of the cast into
2757 // BB so that there is only one value live across basic blocks (the cast
2758 // operand).
2759 if (CastInst *CI = dyn_cast<CastInst>(Ptr))
2760 if (CI->getParent() != BB && isa<PointerType>(CI->getOperand(0)->getType()))
2761 Ptr = new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
2762
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002763 // Add the offset, cast it to the right type.
2764 Ptr = BinaryOperator::createAdd(Ptr, PtrOffset, "", InsertPt);
2765 Ptr = new CastInst(Ptr, GEPI->getType(), "", InsertPt);
2766 return V = Ptr;
2767}
2768
2769
2770/// OptimizeGEPExpression - Since we are doing basic-block-at-a-time instruction
2771/// selection, we want to be a bit careful about some things. In particular, if
2772/// we have a GEP instruction that is used in a different block than it is
2773/// defined, the addressing expression of the GEP cannot be folded into loads or
2774/// stores that use it. In this case, decompose the GEP and move constant
2775/// indices into blocks that use it.
2776static void OptimizeGEPExpression(GetElementPtrInst *GEPI,
2777 const TargetData &TD) {
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002778 // If this GEP is only used inside the block it is defined in, there is no
2779 // need to rewrite it.
2780 bool isUsedOutsideDefBB = false;
2781 BasicBlock *DefBB = GEPI->getParent();
2782 for (Value::use_iterator UI = GEPI->use_begin(), E = GEPI->use_end();
2783 UI != E; ++UI) {
2784 if (cast<Instruction>(*UI)->getParent() != DefBB) {
2785 isUsedOutsideDefBB = true;
2786 break;
2787 }
2788 }
2789 if (!isUsedOutsideDefBB) return;
2790
2791 // If this GEP has no non-zero constant indices, there is nothing we can do,
2792 // ignore it.
2793 bool hasConstantIndex = false;
2794 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
2795 E = GEPI->op_end(); OI != E; ++OI) {
2796 if (ConstantInt *CI = dyn_cast<ConstantInt>(*OI))
2797 if (CI->getRawValue()) {
2798 hasConstantIndex = true;
2799 break;
2800 }
2801 }
Chris Lattner3802c252005-12-11 09:05:13 +00002802 // If this is a GEP &Alloca, 0, 0, forward subst the frame index into uses.
2803 if (!hasConstantIndex && !isa<AllocaInst>(GEPI->getOperand(0))) return;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002804
2805 // Otherwise, decompose the GEP instruction into multiplies and adds. Sum the
2806 // constant offset (which we now know is non-zero) and deal with it later.
2807 uint64_t ConstantOffset = 0;
2808 const Type *UIntPtrTy = TD.getIntPtrType();
2809 Value *Ptr = new CastInst(GEPI->getOperand(0), UIntPtrTy, "", GEPI);
2810 const Type *Ty = GEPI->getOperand(0)->getType();
2811
2812 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
2813 E = GEPI->op_end(); OI != E; ++OI) {
2814 Value *Idx = *OI;
2815 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2816 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
2817 if (Field)
2818 ConstantOffset += TD.getStructLayout(StTy)->MemberOffsets[Field];
2819 Ty = StTy->getElementType(Field);
2820 } else {
2821 Ty = cast<SequentialType>(Ty)->getElementType();
2822
2823 // Handle constant subscripts.
2824 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2825 if (CI->getRawValue() == 0) continue;
2826
2827 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
2828 ConstantOffset += (int64_t)TD.getTypeSize(Ty)*CSI->getValue();
2829 else
2830 ConstantOffset+=TD.getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
2831 continue;
2832 }
2833
2834 // Ptr = Ptr + Idx * ElementSize;
2835
2836 // Cast Idx to UIntPtrTy if needed.
2837 Idx = new CastInst(Idx, UIntPtrTy, "", GEPI);
2838
2839 uint64_t ElementSize = TD.getTypeSize(Ty);
2840 // Mask off bits that should not be set.
2841 ElementSize &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
2842 Constant *SizeCst = ConstantUInt::get(UIntPtrTy, ElementSize);
2843
2844 // Multiply by the element size and add to the base.
2845 Idx = BinaryOperator::createMul(Idx, SizeCst, "", GEPI);
2846 Ptr = BinaryOperator::createAdd(Ptr, Idx, "", GEPI);
2847 }
2848 }
2849
2850 // Make sure that the offset fits in uintptr_t.
2851 ConstantOffset &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
2852 Constant *PtrOffset = ConstantUInt::get(UIntPtrTy, ConstantOffset);
2853
2854 // Okay, we have now emitted all of the variable index parts to the BB that
2855 // the GEP is defined in. Loop over all of the using instructions, inserting
2856 // an "add Ptr, ConstantOffset" into each block that uses it and update the
Chris Lattnerc78b0b72005-12-08 08:00:12 +00002857 // instruction to use the newly computed value, making GEPI dead. When the
2858 // user is a load or store instruction address, we emit the add into the user
2859 // block, otherwise we use a canonical version right next to the gep (these
2860 // won't be foldable as addresses, so we might as well share the computation).
2861
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002862 std::map<BasicBlock*,Value*> InsertedExprs;
2863 while (!GEPI->use_empty()) {
2864 Instruction *User = cast<Instruction>(GEPI->use_back());
Chris Lattnerc78b0b72005-12-08 08:00:12 +00002865
2866 // If this use is not foldable into the addressing mode, use a version
2867 // emitted in the GEP block.
2868 Value *NewVal;
2869 if (!isa<LoadInst>(User) &&
2870 (!isa<StoreInst>(User) || User->getOperand(0) == GEPI)) {
2871 NewVal = InsertGEPComputeCode(InsertedExprs[DefBB], DefBB, GEPI,
2872 Ptr, PtrOffset);
2873 } else {
2874 // Otherwise, insert the code in the User's block so it can be folded into
2875 // any users in that block.
2876 NewVal = InsertGEPComputeCode(InsertedExprs[User->getParent()],
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002877 User->getParent(), GEPI,
2878 Ptr, PtrOffset);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002879 }
Chris Lattnerc78b0b72005-12-08 08:00:12 +00002880 User->replaceUsesOfWith(GEPI, NewVal);
2881 }
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002882
2883 // Finally, the GEP is dead, remove it.
2884 GEPI->eraseFromParent();
2885}
2886
Chris Lattner1c08c712005-01-07 07:47:53 +00002887bool SelectionDAGISel::runOnFunction(Function &Fn) {
2888 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
2889 RegMap = MF.getSSARegMap();
2890 DEBUG(std::cerr << "\n\n\n=== " << Fn.getName() << "\n");
2891
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002892 // First, split all critical edges for PHI nodes with incoming values that are
2893 // constants, this way the load of the constant into a vreg will not be placed
2894 // into MBBs that are used some other way.
2895 //
2896 // In this pass we also look for GEP instructions that are used across basic
2897 // blocks and rewrites them to improve basic-block-at-a-time selection.
2898 //
Chris Lattner36b708f2005-08-18 17:35:14 +00002899 for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
2900 PHINode *PN;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002901 BasicBlock::iterator BBI;
2902 for (BBI = BB->begin(); (PN = dyn_cast<PHINode>(BBI)); ++BBI)
Chris Lattner36b708f2005-08-18 17:35:14 +00002903 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
2904 if (isa<Constant>(PN->getIncomingValue(i)))
2905 SplitCriticalEdge(PN->getIncomingBlock(i), BB);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002906
2907 for (BasicBlock::iterator E = BB->end(); BBI != E; )
2908 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(BBI++))
2909 OptimizeGEPExpression(GEPI, TLI.getTargetData());
Chris Lattner36b708f2005-08-18 17:35:14 +00002910 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00002911
Chris Lattner1c08c712005-01-07 07:47:53 +00002912 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
2913
2914 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
2915 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00002916
Chris Lattner1c08c712005-01-07 07:47:53 +00002917 return true;
2918}
2919
2920
Chris Lattnerddb870b2005-01-13 17:59:43 +00002921SDOperand SelectionDAGISel::
2922CopyValueToVirtualRegister(SelectionDAGLowering &SDL, Value *V, unsigned Reg) {
Chris Lattnerf1fdaca2005-01-11 22:03:46 +00002923 SDOperand Op = SDL.getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00002924 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002925 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00002926 "Copy from a reg to the same reg!");
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002927
2928 // If this type is not legal, we must make sure to not create an invalid
2929 // register use.
2930 MVT::ValueType SrcVT = Op.getValueType();
2931 MVT::ValueType DestVT = TLI.getTypeToTransformTo(SrcVT);
2932 SelectionDAG &DAG = SDL.DAG;
2933 if (SrcVT == DestVT) {
2934 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
Chris Lattner1c6191f2006-03-21 19:20:37 +00002935 } else if (SrcVT == MVT::Vector) {
Chris Lattner70c2a612006-03-31 02:06:56 +00002936 // Handle copies from generic vectors to registers.
2937 MVT::ValueType PTyElementVT, PTyLegalElementVT;
2938 unsigned NE = TLI.getPackedTypeBreakdown(cast<PackedType>(V->getType()),
2939 PTyElementVT, PTyLegalElementVT);
Chris Lattner1c6191f2006-03-21 19:20:37 +00002940
Chris Lattner70c2a612006-03-31 02:06:56 +00002941 // Insert a VBIT_CONVERT of the input vector to a "N x PTyElementVT"
2942 // MVT::Vector type.
2943 Op = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Op,
2944 DAG.getConstant(NE, MVT::i32),
2945 DAG.getValueType(PTyElementVT));
Chris Lattner1c6191f2006-03-21 19:20:37 +00002946
Chris Lattner70c2a612006-03-31 02:06:56 +00002947 // Loop over all of the elements of the resultant vector,
2948 // VEXTRACT_VECTOR_ELT'ing them, converting them to PTyLegalElementVT, then
2949 // copying them into output registers.
2950 std::vector<SDOperand> OutChains;
2951 SDOperand Root = SDL.getRoot();
2952 for (unsigned i = 0; i != NE; ++i) {
2953 SDOperand Elt = DAG.getNode(ISD::VEXTRACT_VECTOR_ELT, PTyElementVT,
2954 Op, DAG.getConstant(i, MVT::i32));
2955 if (PTyElementVT == PTyLegalElementVT) {
2956 // Elements are legal.
2957 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
2958 } else if (PTyLegalElementVT > PTyElementVT) {
2959 // Elements are promoted.
2960 if (MVT::isFloatingPoint(PTyLegalElementVT))
2961 Elt = DAG.getNode(ISD::FP_EXTEND, PTyLegalElementVT, Elt);
2962 else
2963 Elt = DAG.getNode(ISD::ANY_EXTEND, PTyLegalElementVT, Elt);
2964 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
2965 } else {
2966 // Elements are expanded.
2967 // The src value is expanded into multiple registers.
2968 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
2969 Elt, DAG.getConstant(0, MVT::i32));
2970 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
2971 Elt, DAG.getConstant(1, MVT::i32));
2972 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Lo));
2973 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Hi));
2974 }
Chris Lattner1c6191f2006-03-21 19:20:37 +00002975 }
Chris Lattner70c2a612006-03-31 02:06:56 +00002976 return DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002977 } else if (SrcVT < DestVT) {
2978 // The src value is promoted to the register.
Chris Lattnerfae59b92005-08-17 06:06:25 +00002979 if (MVT::isFloatingPoint(SrcVT))
2980 Op = DAG.getNode(ISD::FP_EXTEND, DestVT, Op);
2981 else
Chris Lattnerfab08872005-09-02 00:19:37 +00002982 Op = DAG.getNode(ISD::ANY_EXTEND, DestVT, Op);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002983 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
2984 } else {
2985 // The src value is expanded into multiple registers.
2986 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
2987 Op, DAG.getConstant(0, MVT::i32));
2988 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
2989 Op, DAG.getConstant(1, MVT::i32));
2990 Op = DAG.getCopyToReg(SDL.getRoot(), Reg, Lo);
2991 return DAG.getCopyToReg(Op, Reg+1, Hi);
2992 }
Chris Lattner1c08c712005-01-07 07:47:53 +00002993}
2994
Chris Lattner068a81e2005-01-17 17:15:02 +00002995void SelectionDAGISel::
2996LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL,
2997 std::vector<SDOperand> &UnorderedChains) {
2998 // If this is the entry block, emit arguments.
2999 Function &F = *BB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00003000 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattnerbf209482005-10-30 19:42:35 +00003001 SDOperand OldRoot = SDL.DAG.getRoot();
3002 std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
Chris Lattner068a81e2005-01-17 17:15:02 +00003003
Chris Lattnerbf209482005-10-30 19:42:35 +00003004 unsigned a = 0;
3005 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
3006 AI != E; ++AI, ++a)
3007 if (!AI->use_empty()) {
3008 SDL.setValue(AI, Args[a]);
Evan Chengf7179bb2006-04-27 08:29:42 +00003009
Chris Lattnerbf209482005-10-30 19:42:35 +00003010 // If this argument is live outside of the entry block, insert a copy from
3011 // whereever we got it to the vreg that other BB's will reference it as.
3012 if (FuncInfo.ValueMap.count(AI)) {
3013 SDOperand Copy =
3014 CopyValueToVirtualRegister(SDL, AI, FuncInfo.ValueMap[AI]);
3015 UnorderedChains.push_back(Copy);
3016 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00003017 }
Chris Lattnerbf209482005-10-30 19:42:35 +00003018
3019 // Next, if the function has live ins that need to be copied into vregs,
3020 // emit the copies now, into the top of the block.
3021 MachineFunction &MF = SDL.DAG.getMachineFunction();
3022 if (MF.livein_begin() != MF.livein_end()) {
3023 SSARegMap *RegMap = MF.getSSARegMap();
3024 const MRegisterInfo &MRI = *MF.getTarget().getRegisterInfo();
3025 for (MachineFunction::livein_iterator LI = MF.livein_begin(),
3026 E = MF.livein_end(); LI != E; ++LI)
3027 if (LI->second)
3028 MRI.copyRegToReg(*MF.begin(), MF.begin()->end(), LI->second,
3029 LI->first, RegMap->getRegClass(LI->second));
Chris Lattner068a81e2005-01-17 17:15:02 +00003030 }
Chris Lattnerbf209482005-10-30 19:42:35 +00003031
3032 // Finally, if the target has anything special to do, allow it to do so.
3033 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00003034}
3035
3036
Chris Lattner1c08c712005-01-07 07:47:53 +00003037void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
3038 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00003039 FunctionLoweringInfo &FuncInfo) {
Chris Lattner1c08c712005-01-07 07:47:53 +00003040 SelectionDAGLowering SDL(DAG, TLI, FuncInfo);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003041
3042 std::vector<SDOperand> UnorderedChains;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003043
Chris Lattnerbf209482005-10-30 19:42:35 +00003044 // Lower any arguments needed in this block if this is the entry block.
3045 if (LLVMBB == &LLVMBB->getParent()->front())
3046 LowerArguments(LLVMBB, SDL, UnorderedChains);
Chris Lattner1c08c712005-01-07 07:47:53 +00003047
3048 BB = FuncInfo.MBBMap[LLVMBB];
3049 SDL.setCurrentBasicBlock(BB);
3050
3051 // Lower all of the non-terminator instructions.
3052 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
3053 I != E; ++I)
3054 SDL.visit(*I);
Nate Begemanf15485a2006-03-27 01:32:24 +00003055
Chris Lattner1c08c712005-01-07 07:47:53 +00003056 // Ensure that all instructions which are used outside of their defining
3057 // blocks are available as virtual registers.
3058 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Chris Lattnerf1fdaca2005-01-11 22:03:46 +00003059 if (!I->use_empty() && !isa<PHINode>(I)) {
Chris Lattneree749d72005-01-09 01:16:24 +00003060 std::map<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00003061 if (VMI != FuncInfo.ValueMap.end())
Chris Lattnerddb870b2005-01-13 17:59:43 +00003062 UnorderedChains.push_back(
3063 CopyValueToVirtualRegister(SDL, I, VMI->second));
Chris Lattner1c08c712005-01-07 07:47:53 +00003064 }
3065
3066 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
3067 // ensure constants are generated when needed. Remember the virtual registers
3068 // that need to be added to the Machine PHI nodes as input. We cannot just
3069 // directly add them, because expansion might result in multiple MBB's for one
3070 // BB. As such, the start of the BB might correspond to a different MBB than
3071 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00003072 //
Chris Lattner1c08c712005-01-07 07:47:53 +00003073
3074 // Emit constants only once even if used by multiple PHI nodes.
3075 std::map<Constant*, unsigned> ConstantsOut;
3076
3077 // Check successor nodes PHI nodes that expect a constant to be available from
3078 // this block.
3079 TerminatorInst *TI = LLVMBB->getTerminator();
3080 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
3081 BasicBlock *SuccBB = TI->getSuccessor(succ);
3082 MachineBasicBlock::iterator MBBI = FuncInfo.MBBMap[SuccBB]->begin();
3083 PHINode *PN;
3084
3085 // At this point we know that there is a 1-1 correspondence between LLVM PHI
3086 // nodes and Machine PHI nodes, but the incoming operands have not been
3087 // emitted yet.
3088 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattnerf44fd882005-01-07 21:34:19 +00003089 (PN = dyn_cast<PHINode>(I)); ++I)
3090 if (!PN->use_empty()) {
3091 unsigned Reg;
3092 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
3093 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
3094 unsigned &RegOut = ConstantsOut[C];
3095 if (RegOut == 0) {
3096 RegOut = FuncInfo.CreateRegForValue(C);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003097 UnorderedChains.push_back(
3098 CopyValueToVirtualRegister(SDL, C, RegOut));
Chris Lattnerf44fd882005-01-07 21:34:19 +00003099 }
3100 Reg = RegOut;
3101 } else {
3102 Reg = FuncInfo.ValueMap[PHIOp];
Chris Lattneree749d72005-01-09 01:16:24 +00003103 if (Reg == 0) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003104 assert(isa<AllocaInst>(PHIOp) &&
Chris Lattneree749d72005-01-09 01:16:24 +00003105 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
3106 "Didn't codegen value into a register!??");
3107 Reg = FuncInfo.CreateRegForValue(PHIOp);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003108 UnorderedChains.push_back(
3109 CopyValueToVirtualRegister(SDL, PHIOp, Reg));
Chris Lattneree749d72005-01-09 01:16:24 +00003110 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003111 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003112
Chris Lattnerf44fd882005-01-07 21:34:19 +00003113 // Remember that this register needs to added to the machine PHI node as
3114 // the input for this MBB.
Chris Lattner7e021512006-03-31 02:12:18 +00003115 MVT::ValueType VT = TLI.getValueType(PN->getType());
3116 unsigned NumElements;
3117 if (VT != MVT::Vector)
3118 NumElements = TLI.getNumElements(VT);
3119 else {
3120 MVT::ValueType VT1,VT2;
3121 NumElements =
3122 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
3123 VT1, VT2);
3124 }
Chris Lattnerf44fd882005-01-07 21:34:19 +00003125 for (unsigned i = 0, e = NumElements; i != e; ++i)
3126 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
Chris Lattner1c08c712005-01-07 07:47:53 +00003127 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003128 }
3129 ConstantsOut.clear();
3130
Chris Lattnerddb870b2005-01-13 17:59:43 +00003131 // Turn all of the unordered chains into one factored node.
Chris Lattner5a6c6d92005-01-13 19:53:14 +00003132 if (!UnorderedChains.empty()) {
Chris Lattner7436b572005-11-09 05:03:03 +00003133 SDOperand Root = SDL.getRoot();
3134 if (Root.getOpcode() != ISD::EntryToken) {
3135 unsigned i = 0, e = UnorderedChains.size();
3136 for (; i != e; ++i) {
3137 assert(UnorderedChains[i].Val->getNumOperands() > 1);
3138 if (UnorderedChains[i].Val->getOperand(0) == Root)
3139 break; // Don't add the root if we already indirectly depend on it.
3140 }
3141
3142 if (i == e)
3143 UnorderedChains.push_back(Root);
3144 }
Chris Lattnerddb870b2005-01-13 17:59:43 +00003145 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, UnorderedChains));
3146 }
3147
Chris Lattner1c08c712005-01-07 07:47:53 +00003148 // Lower the terminator after the copies are emitted.
3149 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00003150
Nate Begemanf15485a2006-03-27 01:32:24 +00003151 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00003152 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00003153 SwitchCases.clear();
3154 SwitchCases = SDL.SwitchCases;
Nate Begeman37efe672006-04-22 18:53:45 +00003155 JT = SDL.JT;
Nate Begemanf15485a2006-03-27 01:32:24 +00003156
Chris Lattnera651cf62005-01-17 19:43:36 +00003157 // Make sure the root of the DAG is up-to-date.
3158 DAG.setRoot(SDL.getRoot());
Chris Lattner1c08c712005-01-07 07:47:53 +00003159}
3160
Nate Begemanf15485a2006-03-27 01:32:24 +00003161void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Chris Lattneraf21d552005-10-10 16:47:10 +00003162 // Run the DAG combiner in pre-legalize mode.
3163 DAG.Combine(false);
Nate Begeman2300f552005-09-07 00:15:36 +00003164
Chris Lattner1c08c712005-01-07 07:47:53 +00003165 DEBUG(std::cerr << "Lowered selection DAG:\n");
3166 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003167
Chris Lattner1c08c712005-01-07 07:47:53 +00003168 // Second step, hack on the DAG until it only uses operations and types that
3169 // the target supports.
Chris Lattnerac9dc082005-01-23 04:36:26 +00003170 DAG.Legalize();
Nate Begemanf15485a2006-03-27 01:32:24 +00003171
Chris Lattner1c08c712005-01-07 07:47:53 +00003172 DEBUG(std::cerr << "Legalized selection DAG:\n");
3173 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003174
Chris Lattneraf21d552005-10-10 16:47:10 +00003175 // Run the DAG combiner in post-legalize mode.
3176 DAG.Combine(true);
Nate Begeman2300f552005-09-07 00:15:36 +00003177
Evan Chenga9c20912006-01-21 02:32:06 +00003178 if (ViewISelDAGs) DAG.viewGraph();
Evan Cheng552c4a82006-04-28 02:09:19 +00003179
3180 // TEMPORARY.
3181 FoldNodeInFlight = !NoFoldNodeInFlight;
3182
Chris Lattnera33ef482005-03-30 01:10:47 +00003183 // Third, instruction select all of the operations to machine code, adding the
3184 // code to the MachineBasicBlock.
Chris Lattner1c08c712005-01-07 07:47:53 +00003185 InstructionSelectBasicBlock(DAG);
Nate Begemanf15485a2006-03-27 01:32:24 +00003186
Chris Lattner1c08c712005-01-07 07:47:53 +00003187 DEBUG(std::cerr << "Selected machine code:\n");
3188 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003189}
Chris Lattner1c08c712005-01-07 07:47:53 +00003190
Nate Begemanf15485a2006-03-27 01:32:24 +00003191void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
3192 FunctionLoweringInfo &FuncInfo) {
3193 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
3194 {
3195 SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3196 CurDAG = &DAG;
3197
3198 // First step, lower LLVM code to some DAG. This DAG may use operations and
3199 // types that are not supported by the target.
3200 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
3201
3202 // Second step, emit the lowered DAG as machine code.
3203 CodeGenAndEmitDAG(DAG);
3204 }
3205
Chris Lattnera33ef482005-03-30 01:10:47 +00003206 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +00003207 // PHI nodes in successors.
Nate Begeman37efe672006-04-22 18:53:45 +00003208 if (SwitchCases.empty() && JT.Reg == 0) {
Nate Begemanf15485a2006-03-27 01:32:24 +00003209 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
3210 MachineInstr *PHI = PHINodesToUpdate[i].first;
3211 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3212 "This is not a machine PHI node that we are updating!");
3213 PHI->addRegOperand(PHINodesToUpdate[i].second);
3214 PHI->addMachineBasicBlockOperand(BB);
3215 }
3216 return;
Chris Lattner1c08c712005-01-07 07:47:53 +00003217 }
Nate Begemanf15485a2006-03-27 01:32:24 +00003218
Nate Begeman9453eea2006-04-23 06:26:20 +00003219 // If the JumpTable record is filled in, then we need to emit a jump table.
3220 // Updating the PHI nodes is tricky in this case, since we need to determine
3221 // whether the PHI is a successor of the range check MBB or the jump table MBB
Nate Begeman37efe672006-04-22 18:53:45 +00003222 if (JT.Reg) {
3223 assert(SwitchCases.empty() && "Cannot have jump table and lowered switch");
3224 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3225 CurDAG = &SDAG;
3226 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
Nate Begeman9453eea2006-04-23 06:26:20 +00003227 MachineBasicBlock *RangeBB = BB;
Nate Begeman37efe672006-04-22 18:53:45 +00003228 // Set the current basic block to the mbb we wish to insert the code into
3229 BB = JT.MBB;
3230 SDL.setCurrentBasicBlock(BB);
3231 // Emit the code
3232 SDL.visitJumpTable(JT);
3233 SDAG.setRoot(SDL.getRoot());
3234 CodeGenAndEmitDAG(SDAG);
3235 // Update PHI Nodes
3236 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3237 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3238 MachineBasicBlock *PHIBB = PHI->getParent();
3239 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3240 "This is not a machine PHI node that we are updating!");
Nate Begeman9453eea2006-04-23 06:26:20 +00003241 if (PHIBB == JT.Default || JT.SuccMBBs.find(PHIBB) != JT.SuccMBBs.end()) {
3242 PHIBB = (PHIBB == JT.Default) ? RangeBB : BB;
Nate Begeman37efe672006-04-22 18:53:45 +00003243 PHI->addRegOperand(PHINodesToUpdate[pi].second);
Nate Begeman9453eea2006-04-23 06:26:20 +00003244 PHI->addMachineBasicBlockOperand(PHIBB);
Nate Begeman37efe672006-04-22 18:53:45 +00003245 }
3246 }
3247 return;
3248 }
3249
Nate Begemanf15485a2006-03-27 01:32:24 +00003250 // If we generated any switch lowering information, build and codegen any
3251 // additional DAGs necessary.
3252 for(unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
3253 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3254 CurDAG = &SDAG;
3255 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
3256 // Set the current basic block to the mbb we wish to insert the code into
3257 BB = SwitchCases[i].ThisBB;
3258 SDL.setCurrentBasicBlock(BB);
3259 // Emit the code
3260 SDL.visitSwitchCase(SwitchCases[i]);
3261 SDAG.setRoot(SDL.getRoot());
3262 CodeGenAndEmitDAG(SDAG);
3263 // Iterate over the phi nodes, if there is a phi node in a successor of this
3264 // block (for instance, the default block), then add a pair of operands to
3265 // the phi node for this block, as if we were coming from the original
3266 // BB before switch expansion.
3267 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3268 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3269 MachineBasicBlock *PHIBB = PHI->getParent();
3270 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3271 "This is not a machine PHI node that we are updating!");
3272 if (PHIBB == SwitchCases[i].LHSBB || PHIBB == SwitchCases[i].RHSBB) {
3273 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3274 PHI->addMachineBasicBlockOperand(BB);
3275 }
3276 }
Chris Lattnera33ef482005-03-30 01:10:47 +00003277 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003278}
Evan Chenga9c20912006-01-21 02:32:06 +00003279
3280//===----------------------------------------------------------------------===//
3281/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
3282/// target node in the graph.
3283void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
3284 if (ViewSchedDAGs) DAG.viewGraph();
Evan Cheng4ef10862006-01-23 07:01:07 +00003285 ScheduleDAG *SL = NULL;
3286
3287 switch (ISHeuristic) {
3288 default: assert(0 && "Unrecognized scheduling heuristic");
Evan Cheng3f239522006-01-25 09:12:57 +00003289 case defaultScheduling:
3290 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency)
Chris Lattner4a1cd9c2006-04-21 17:16:16 +00003291 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
3292 else {
3293 assert(TLI.getSchedulingPreference() ==
3294 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Evan Cheng3f239522006-01-25 09:12:57 +00003295 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattner4a1cd9c2006-04-21 17:16:16 +00003296 }
Evan Cheng3f239522006-01-25 09:12:57 +00003297 break;
Evan Cheng4ef10862006-01-23 07:01:07 +00003298 case noScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003299 SL = createBFS_DAGScheduler(DAG, BB);
3300 break;
Evan Cheng4ef10862006-01-23 07:01:07 +00003301 case simpleScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003302 SL = createSimpleDAGScheduler(false, DAG, BB);
3303 break;
Evan Cheng4ef10862006-01-23 07:01:07 +00003304 case simpleNoItinScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003305 SL = createSimpleDAGScheduler(true, DAG, BB);
Evan Cheng4ef10862006-01-23 07:01:07 +00003306 break;
Evan Chengf0f9c902006-01-23 08:26:10 +00003307 case listSchedulingBURR:
3308 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattnera5de4842006-03-05 21:10:33 +00003309 break;
Chris Lattner03fc53c2006-03-06 00:22:00 +00003310 case listSchedulingTD:
Chris Lattnerb0d21ef2006-03-08 04:25:59 +00003311 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
Chris Lattnera5de4842006-03-05 21:10:33 +00003312 break;
Evan Cheng4ef10862006-01-23 07:01:07 +00003313 }
Chris Lattnera3818e62006-01-21 19:12:11 +00003314 BB = SL->Run();
Evan Chengcccf1232006-02-04 06:49:00 +00003315 delete SL;
Evan Chenga9c20912006-01-21 02:32:06 +00003316}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003317
Chris Lattnerb0d21ef2006-03-08 04:25:59 +00003318HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
3319 return new HazardRecognizer();
Chris Lattner03fc53c2006-03-06 00:22:00 +00003320}
3321
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003322/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
3323/// by tblgen. Others should not call it.
3324void SelectionDAGISel::
3325SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
3326 std::vector<SDOperand> InOps;
3327 std::swap(InOps, Ops);
3328
3329 Ops.push_back(InOps[0]); // input chain.
3330 Ops.push_back(InOps[1]); // input asm string.
3331
3332 const char *AsmStr = cast<ExternalSymbolSDNode>(InOps[1])->getSymbol();
3333 unsigned i = 2, e = InOps.size();
3334 if (InOps[e-1].getValueType() == MVT::Flag)
3335 --e; // Don't process a flag operand if it is here.
3336
3337 while (i != e) {
3338 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
3339 if ((Flags & 7) != 4 /*MEM*/) {
3340 // Just skip over this operand, copying the operands verbatim.
3341 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
3342 i += (Flags >> 3) + 1;
3343 } else {
3344 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
3345 // Otherwise, this is a memory operand. Ask the target to select it.
3346 std::vector<SDOperand> SelOps;
3347 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
3348 std::cerr << "Could not match memory address. Inline asm failure!\n";
3349 exit(1);
3350 }
3351
3352 // Add this to the output node.
3353 Ops.push_back(DAG.getConstant(4/*MEM*/ | (SelOps.size() << 3), MVT::i32));
3354 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
3355 i += 2;
3356 }
3357 }
3358
3359 // Add the flag input back if present.
3360 if (e != InOps.size())
3361 Ops.push_back(InOps.back());
3362}