blob: 4327e4744a64d3bd2c6137abf713038fc60b021f [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"
Vladimir Prus12472912006-05-23 13:43:15 +000040#include "llvm/Target/TargetOptions.h"
Chris Lattner495a0b52005-08-17 06:37:43 +000041#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattner7944d9d2005-01-12 03:41:21 +000042#include "llvm/Support/CommandLine.h"
Chris Lattner7c0104b2005-11-09 04:45:33 +000043#include "llvm/Support/MathExtras.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000044#include "llvm/Support/Debug.h"
Chris Lattner95255282006-06-28 23:17:24 +000045#include "llvm/Support/Visibility.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000046#include <map>
Chris Lattner4e4b5762006-02-01 18:59:47 +000047#include <set>
Chris Lattner1c08c712005-01-07 07:47:53 +000048#include <iostream>
Jeff Cohen7e881032006-02-24 02:52:40 +000049#include <algorithm>
Chris Lattner1c08c712005-01-07 07:47:53 +000050using namespace llvm;
51
Chris Lattnerda8abb02005-09-01 18:44:10 +000052#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000053static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000054ViewISelDAGs("view-isel-dags", cl::Hidden,
55 cl::desc("Pop up a window to show isel dags as they are selected"));
56static cl::opt<bool>
57ViewSchedDAGs("view-sched-dags", cl::Hidden,
58 cl::desc("Pop up a window to show sched dags as they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +000059#else
Chris Lattner5e46a192006-04-02 03:07:27 +000060static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0;
Chris Lattner7944d9d2005-01-12 03:41:21 +000061#endif
62
Evan Chengee00a1d2006-05-13 05:53:47 +000063// Scheduling heuristics
64enum SchedHeuristics {
65 defaultScheduling, // Let the target specify its preference.
66 noScheduling, // No scheduling, emit breadth first sequence.
67 simpleScheduling, // Two pass, min. critical path, max. utilization.
68 simpleNoItinScheduling, // Same as above exact using generic latency.
69 listSchedulingBURR, // Bottom-up reg reduction list scheduling.
70 listSchedulingTDRR, // Top-down reg reduction list scheduling.
71 listSchedulingTD // Top-down list scheduler.
72};
73
Evan Cheng4ef10862006-01-23 07:01:07 +000074namespace {
Evan Chengee00a1d2006-05-13 05:53:47 +000075 cl::opt<SchedHeuristics>
Evan Cheng4ef10862006-01-23 07:01:07 +000076 ISHeuristic(
77 "sched",
78 cl::desc("Choose scheduling style"),
Evan Chengee00a1d2006-05-13 05:53:47 +000079 cl::init(defaultScheduling),
Evan Cheng4ef10862006-01-23 07:01:07 +000080 cl::values(
Evan Chengee00a1d2006-05-13 05:53:47 +000081 clEnumValN(defaultScheduling, "default",
Evan Cheng3f239522006-01-25 09:12:57 +000082 "Target preferred scheduling style"),
Evan Chengee00a1d2006-05-13 05:53:47 +000083 clEnumValN(noScheduling, "none",
Jim Laskey17d52f72006-01-23 13:34:04 +000084 "No scheduling: breadth first sequencing"),
Evan Chengee00a1d2006-05-13 05:53:47 +000085 clEnumValN(simpleScheduling, "simple",
Evan Cheng4ef10862006-01-23 07:01:07 +000086 "Simple two pass scheduling: minimize critical path "
87 "and maximize processor utilization"),
Evan Chengee00a1d2006-05-13 05:53:47 +000088 clEnumValN(simpleNoItinScheduling, "simple-noitin",
Evan Cheng4ef10862006-01-23 07:01:07 +000089 "Simple two pass scheduling: Same as simple "
90 "except using generic latency"),
Evan Chengee00a1d2006-05-13 05:53:47 +000091 clEnumValN(listSchedulingBURR, "list-burr",
Evan Chenge165a782006-05-11 23:55:42 +000092 "Bottom-up register reduction list scheduling"),
Evan Chengee00a1d2006-05-13 05:53:47 +000093 clEnumValN(listSchedulingTDRR, "list-tdrr",
Evan Chenge165a782006-05-11 23:55:42 +000094 "Top-down register reduction list scheduling"),
Evan Chengee00a1d2006-05-13 05:53:47 +000095 clEnumValN(listSchedulingTD, "list-td",
Chris Lattner03fc53c2006-03-06 00:22:00 +000096 "Top-down list scheduler"),
Evan Cheng4ef10862006-01-23 07:01:07 +000097 clEnumValEnd));
98} // namespace
99
Chris Lattner864635a2006-02-22 22:37:12 +0000100namespace {
101 /// RegsForValue - This struct represents the physical registers that a
102 /// particular value is assigned and the type information about the value.
103 /// This is needed because values can be promoted into larger registers and
104 /// expanded into multiple smaller registers than the value.
Chris Lattner95255282006-06-28 23:17:24 +0000105 struct VISIBILITY_HIDDEN RegsForValue {
Chris Lattner864635a2006-02-22 22:37:12 +0000106 /// Regs - This list hold the register (for legal and promoted values)
107 /// or register set (for expanded values) that the value should be assigned
108 /// to.
109 std::vector<unsigned> Regs;
110
111 /// RegVT - The value type of each register.
112 ///
113 MVT::ValueType RegVT;
114
115 /// ValueVT - The value type of the LLVM value, which may be promoted from
116 /// RegVT or made from merging the two expanded parts.
117 MVT::ValueType ValueVT;
118
119 RegsForValue() : RegVT(MVT::Other), ValueVT(MVT::Other) {}
120
121 RegsForValue(unsigned Reg, MVT::ValueType regvt, MVT::ValueType valuevt)
122 : RegVT(regvt), ValueVT(valuevt) {
123 Regs.push_back(Reg);
124 }
125 RegsForValue(const std::vector<unsigned> &regs,
126 MVT::ValueType regvt, MVT::ValueType valuevt)
127 : Regs(regs), RegVT(regvt), ValueVT(valuevt) {
128 }
129
130 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
131 /// this value and returns the result as a ValueVT value. This uses
132 /// Chain/Flag as the input and updates them for the output Chain/Flag.
133 SDOperand getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000134 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000135
136 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
137 /// specified value into the registers specified by this object. This uses
138 /// Chain/Flag as the input and updates them for the output Chain/Flag.
139 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Evan Chenga8441262006-06-15 08:11:54 +0000140 SDOperand &Chain, SDOperand &Flag,
141 MVT::ValueType PtrVT) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000142
143 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
144 /// operand list. This adds the code marker and includes the number of
145 /// values added into it.
146 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000147 std::vector<SDOperand> &Ops) const;
Chris Lattner864635a2006-02-22 22:37:12 +0000148 };
149}
Evan Cheng4ef10862006-01-23 07:01:07 +0000150
Chris Lattner1c08c712005-01-07 07:47:53 +0000151namespace llvm {
152 //===--------------------------------------------------------------------===//
153 /// FunctionLoweringInfo - This contains information that is global to a
154 /// function that is used when lowering a region of the function.
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000155 class FunctionLoweringInfo {
156 public:
Chris Lattner1c08c712005-01-07 07:47:53 +0000157 TargetLowering &TLI;
158 Function &Fn;
159 MachineFunction &MF;
160 SSARegMap *RegMap;
161
162 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
163
164 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
165 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
166
167 /// ValueMap - Since we emit code for the function a basic block at a time,
168 /// we must remember which virtual registers hold the values for
169 /// cross-basic-block values.
170 std::map<const Value*, unsigned> ValueMap;
171
172 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
173 /// the entry block. This allows the allocas to be efficiently referenced
174 /// anywhere in the function.
175 std::map<const AllocaInst*, int> StaticAllocaMap;
176
177 unsigned MakeReg(MVT::ValueType VT) {
178 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
179 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000180
Chris Lattner3c384492006-03-16 19:51:18 +0000181 unsigned CreateRegForValue(const Value *V);
182
Chris Lattner1c08c712005-01-07 07:47:53 +0000183 unsigned InitializeRegForValue(const Value *V) {
184 unsigned &R = ValueMap[V];
185 assert(R == 0 && "Already initialized this value register!");
186 return R = CreateRegForValue(V);
187 }
188 };
189}
190
191/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemanf15485a2006-03-27 01:32:24 +0000192/// PHI nodes or outside of the basic block that defines it, or used by a
193/// switch instruction, which may expand to multiple basic blocks.
Chris Lattner1c08c712005-01-07 07:47:53 +0000194static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
195 if (isa<PHINode>(I)) return true;
196 BasicBlock *BB = I->getParent();
197 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000198 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
199 isa<SwitchInst>(*UI))
Chris Lattner1c08c712005-01-07 07:47:53 +0000200 return true;
201 return false;
202}
203
Chris Lattnerbf209482005-10-30 19:42:35 +0000204/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemanf15485a2006-03-27 01:32:24 +0000205/// entry block, return true. This includes arguments used by switches, since
206/// the switch may expand into multiple basic blocks.
Chris Lattnerbf209482005-10-30 19:42:35 +0000207static bool isOnlyUsedInEntryBlock(Argument *A) {
208 BasicBlock *Entry = A->getParent()->begin();
209 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000210 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattnerbf209482005-10-30 19:42:35 +0000211 return false; // Use not in entry block.
212 return true;
213}
214
Chris Lattner1c08c712005-01-07 07:47:53 +0000215FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000216 Function &fn, MachineFunction &mf)
Chris Lattner1c08c712005-01-07 07:47:53 +0000217 : TLI(tli), Fn(fn), MF(mf), RegMap(MF.getSSARegMap()) {
218
Chris Lattnerbf209482005-10-30 19:42:35 +0000219 // Create a vreg for each argument register that is not dead and is used
220 // outside of the entry block for the function.
221 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
222 AI != E; ++AI)
223 if (!isOnlyUsedInEntryBlock(AI))
224 InitializeRegForValue(AI);
225
Chris Lattner1c08c712005-01-07 07:47:53 +0000226 // Initialize the mapping of values to registers. This is only set up for
227 // instruction values that are used outside of the block that defines
228 // them.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000229 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner1c08c712005-01-07 07:47:53 +0000230 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
231 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
232 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(AI->getArraySize())) {
233 const Type *Ty = AI->getAllocatedType();
Owen Andersona69571c2006-05-03 01:29:57 +0000234 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +0000235 unsigned Align =
Owen Andersona69571c2006-05-03 01:29:57 +0000236 std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +0000237 AI->getAlignment());
Chris Lattnera8217e32005-05-13 23:14:17 +0000238
239 // If the alignment of the value is smaller than the size of the value,
240 // and if the size of the value is particularly small (<= 8 bytes),
241 // round up to the size of the value for potentially better performance.
242 //
243 // FIXME: This could be made better with a preferred alignment hook in
244 // TargetData. It serves primarily to 8-byte align doubles for X86.
245 if (Align < TySize && TySize <= 8) Align = TySize;
Chris Lattner2dfa8192005-10-18 22:11:42 +0000246 TySize *= CUI->getValue(); // Get total allocated size.
Chris Lattnerd222f6a2005-10-18 22:14:06 +0000247 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner1c08c712005-01-07 07:47:53 +0000248 StaticAllocaMap[AI] =
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000249 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
Chris Lattner1c08c712005-01-07 07:47:53 +0000250 }
251
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000252 for (; BB != EB; ++BB)
253 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +0000254 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
255 if (!isa<AllocaInst>(I) ||
256 !StaticAllocaMap.count(cast<AllocaInst>(I)))
257 InitializeRegForValue(I);
258
259 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
260 // also creates the initial PHI MachineInstrs, though none of the input
261 // operands are populated.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000262 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000263 MachineBasicBlock *MBB = new MachineBasicBlock(BB);
264 MBBMap[BB] = MBB;
265 MF.getBasicBlockList().push_back(MBB);
266
267 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
268 // appropriate.
269 PHINode *PN;
270 for (BasicBlock::iterator I = BB->begin();
Chris Lattnerf44fd882005-01-07 21:34:19 +0000271 (PN = dyn_cast<PHINode>(I)); ++I)
272 if (!PN->use_empty()) {
Chris Lattner70c2a612006-03-31 02:06:56 +0000273 MVT::ValueType VT = TLI.getValueType(PN->getType());
274 unsigned NumElements;
275 if (VT != MVT::Vector)
276 NumElements = TLI.getNumElements(VT);
277 else {
278 MVT::ValueType VT1,VT2;
279 NumElements =
280 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
281 VT1, VT2);
282 }
Chris Lattnerf44fd882005-01-07 21:34:19 +0000283 unsigned PHIReg = ValueMap[PN];
284 assert(PHIReg &&"PHI node does not have an assigned virtual register!");
285 for (unsigned i = 0; i != NumElements; ++i)
286 BuildMI(MBB, TargetInstrInfo::PHI, PN->getNumOperands(), PHIReg+i);
287 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000288 }
289}
290
Chris Lattner3c384492006-03-16 19:51:18 +0000291/// CreateRegForValue - Allocate the appropriate number of virtual registers of
292/// the correctly promoted or expanded types. Assign these registers
293/// consecutive vreg numbers and return the first assigned number.
294unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
295 MVT::ValueType VT = TLI.getValueType(V->getType());
296
297 // The number of multiples of registers that we need, to, e.g., split up
298 // a <2 x int64> -> 4 x i32 registers.
299 unsigned NumVectorRegs = 1;
300
301 // If this is a packed type, figure out what type it will decompose into
302 // and how many of the elements it will use.
303 if (VT == MVT::Vector) {
304 const PackedType *PTy = cast<PackedType>(V->getType());
305 unsigned NumElts = PTy->getNumElements();
306 MVT::ValueType EltTy = TLI.getValueType(PTy->getElementType());
307
308 // Divide the input until we get to a supported size. This will always
309 // end with a scalar if the target doesn't support vectors.
310 while (NumElts > 1 && !TLI.isTypeLegal(getVectorType(EltTy, NumElts))) {
311 NumElts >>= 1;
312 NumVectorRegs <<= 1;
313 }
Chris Lattner6cb70042006-03-16 23:05:19 +0000314 if (NumElts == 1)
315 VT = EltTy;
316 else
317 VT = getVectorType(EltTy, NumElts);
Chris Lattner3c384492006-03-16 19:51:18 +0000318 }
319
320 // The common case is that we will only create one register for this
321 // value. If we have that case, create and return the virtual register.
322 unsigned NV = TLI.getNumElements(VT);
323 if (NV == 1) {
324 // If we are promoting this value, pick the next largest supported type.
325 MVT::ValueType PromotedType = TLI.getTypeToTransformTo(VT);
326 unsigned Reg = MakeReg(PromotedType);
327 // If this is a vector of supported or promoted types (e.g. 4 x i16),
328 // create all of the registers.
329 for (unsigned i = 1; i != NumVectorRegs; ++i)
330 MakeReg(PromotedType);
331 return Reg;
332 }
333
334 // If this value is represented with multiple target registers, make sure
335 // to create enough consecutive registers of the right (smaller) type.
336 unsigned NT = VT-1; // Find the type to use.
337 while (TLI.getNumElements((MVT::ValueType)NT) != 1)
338 --NT;
339
340 unsigned R = MakeReg((MVT::ValueType)NT);
341 for (unsigned i = 1; i != NV*NumVectorRegs; ++i)
342 MakeReg((MVT::ValueType)NT);
343 return R;
344}
Chris Lattner1c08c712005-01-07 07:47:53 +0000345
346//===----------------------------------------------------------------------===//
347/// SelectionDAGLowering - This is the common target-independent lowering
348/// implementation that is parameterized by a TargetLowering object.
349/// Also, targets can overload any lowering method.
350///
351namespace llvm {
352class SelectionDAGLowering {
353 MachineBasicBlock *CurMBB;
354
355 std::map<const Value*, SDOperand> NodeMap;
356
Chris Lattnerd3948112005-01-17 22:19:26 +0000357 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
358 /// them up and then emit token factor nodes when possible. This allows us to
359 /// get simple disambiguation between loads without worrying about alias
360 /// analysis.
361 std::vector<SDOperand> PendingLoads;
362
Nate Begemanf15485a2006-03-27 01:32:24 +0000363 /// Case - A pair of values to record the Value for a switch case, and the
364 /// case's target basic block.
365 typedef std::pair<Constant*, MachineBasicBlock*> Case;
366 typedef std::vector<Case>::iterator CaseItr;
367 typedef std::pair<CaseItr, CaseItr> CaseRange;
368
369 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
370 /// of conditional branches.
371 struct CaseRec {
372 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
373 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
374
375 /// CaseBB - The MBB in which to emit the compare and branch
376 MachineBasicBlock *CaseBB;
377 /// LT, GE - If nonzero, we know the current case value must be less-than or
378 /// greater-than-or-equal-to these Constants.
379 Constant *LT;
380 Constant *GE;
381 /// Range - A pair of iterators representing the range of case values to be
382 /// processed at this point in the binary search tree.
383 CaseRange Range;
384 };
385
386 /// The comparison function for sorting Case values.
387 struct CaseCmp {
388 bool operator () (const Case& C1, const Case& C2) {
389 if (const ConstantUInt* U1 = dyn_cast<const ConstantUInt>(C1.first))
390 return U1->getValue() < cast<const ConstantUInt>(C2.first)->getValue();
391
392 const ConstantSInt* S1 = dyn_cast<const ConstantSInt>(C1.first);
393 return S1->getValue() < cast<const ConstantSInt>(C2.first)->getValue();
394 }
395 };
396
Chris Lattner1c08c712005-01-07 07:47:53 +0000397public:
398 // TLI - This is information that describes the available target features we
399 // need for lowering. This indicates when operations are unavailable,
400 // implemented with a libcall, etc.
401 TargetLowering &TLI;
402 SelectionDAG &DAG;
Owen Andersona69571c2006-05-03 01:29:57 +0000403 const TargetData *TD;
Chris Lattner1c08c712005-01-07 07:47:53 +0000404
Nate Begemanf15485a2006-03-27 01:32:24 +0000405 /// SwitchCases - Vector of CaseBlock structures used to communicate
406 /// SwitchInst code generation information.
407 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Nate Begeman37efe672006-04-22 18:53:45 +0000408 SelectionDAGISel::JumpTable JT;
Nate Begemanf15485a2006-03-27 01:32:24 +0000409
Chris Lattner1c08c712005-01-07 07:47:53 +0000410 /// FuncInfo - Information about the function as a whole.
411 ///
412 FunctionLoweringInfo &FuncInfo;
413
414 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000415 FunctionLoweringInfo &funcinfo)
Chris Lattner1c08c712005-01-07 07:47:53 +0000416 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()),
Nate Begeman9453eea2006-04-23 06:26:20 +0000417 JT(0,0,0,0), FuncInfo(funcinfo) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000418 }
419
Chris Lattnera651cf62005-01-17 19:43:36 +0000420 /// getRoot - Return the current virtual root of the Selection DAG.
421 ///
422 SDOperand getRoot() {
Chris Lattnerd3948112005-01-17 22:19:26 +0000423 if (PendingLoads.empty())
424 return DAG.getRoot();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000425
Chris Lattnerd3948112005-01-17 22:19:26 +0000426 if (PendingLoads.size() == 1) {
427 SDOperand Root = PendingLoads[0];
428 DAG.setRoot(Root);
429 PendingLoads.clear();
430 return Root;
431 }
432
433 // Otherwise, we have to make a token factor node.
434 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other, PendingLoads);
435 PendingLoads.clear();
436 DAG.setRoot(Root);
437 return Root;
Chris Lattnera651cf62005-01-17 19:43:36 +0000438 }
439
Chris Lattner1c08c712005-01-07 07:47:53 +0000440 void visit(Instruction &I) { visit(I.getOpcode(), I); }
441
442 void visit(unsigned Opcode, User &I) {
443 switch (Opcode) {
444 default: assert(0 && "Unknown instruction type encountered!");
445 abort();
446 // Build the switch statement using the Instruction.def file.
447#define HANDLE_INST(NUM, OPCODE, CLASS) \
448 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
449#include "llvm/Instruction.def"
450 }
451 }
452
453 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
454
Chris Lattner28b5b1c2006-03-15 22:19:46 +0000455 SDOperand getLoadFrom(const Type *Ty, SDOperand Ptr,
456 SDOperand SrcValue, SDOperand Root,
457 bool isVolatile);
Chris Lattner1c08c712005-01-07 07:47:53 +0000458
459 SDOperand getIntPtrConstant(uint64_t Val) {
460 return DAG.getConstant(Val, TLI.getPointerTy());
461 }
462
Chris Lattner199862b2006-03-16 19:57:50 +0000463 SDOperand getValue(const Value *V);
Chris Lattner1c08c712005-01-07 07:47:53 +0000464
465 const SDOperand &setValue(const Value *V, SDOperand NewN) {
466 SDOperand &N = NodeMap[V];
467 assert(N.Val == 0 && "Already set a value for this node!");
468 return N = NewN;
469 }
Chris Lattner4e4b5762006-02-01 18:59:47 +0000470
Chris Lattner864635a2006-02-22 22:37:12 +0000471 RegsForValue GetRegistersForValue(const std::string &ConstrCode,
472 MVT::ValueType VT,
473 bool OutReg, bool InReg,
474 std::set<unsigned> &OutputRegs,
475 std::set<unsigned> &InputRegs);
Nate Begemanf15485a2006-03-27 01:32:24 +0000476
Chris Lattner1c08c712005-01-07 07:47:53 +0000477 // Terminator instructions.
478 void visitRet(ReturnInst &I);
479 void visitBr(BranchInst &I);
Nate Begemanf15485a2006-03-27 01:32:24 +0000480 void visitSwitch(SwitchInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000481 void visitUnreachable(UnreachableInst &I) { /* noop */ }
482
Nate Begemanf15485a2006-03-27 01:32:24 +0000483 // Helper for visitSwitch
484 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Nate Begeman37efe672006-04-22 18:53:45 +0000485 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Nate Begemanf15485a2006-03-27 01:32:24 +0000486
Chris Lattner1c08c712005-01-07 07:47:53 +0000487 // These all get lowered before this pass.
Chris Lattner1c08c712005-01-07 07:47:53 +0000488 void visitInvoke(InvokeInst &I) { assert(0 && "TODO"); }
489 void visitUnwind(UnwindInst &I) { assert(0 && "TODO"); }
490
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000491 void visitBinary(User &I, unsigned IntOp, unsigned FPOp, unsigned VecOp);
Nate Begemane21ea612005-11-18 07:42:56 +0000492 void visitShift(User &I, unsigned Opcode);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000493 void visitAdd(User &I) {
494 visitBinary(I, ISD::ADD, ISD::FADD, ISD::VADD);
Chris Lattner01b3d732005-09-28 22:28:18 +0000495 }
Chris Lattnerb9fccc42005-04-02 05:04:50 +0000496 void visitSub(User &I);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000497 void visitMul(User &I) {
498 visitBinary(I, ISD::MUL, ISD::FMUL, ISD::VMUL);
Chris Lattner01b3d732005-09-28 22:28:18 +0000499 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000500 void visitDiv(User &I) {
Chris Lattner01b3d732005-09-28 22:28:18 +0000501 const Type *Ty = I.getType();
Evan Cheng3e1ce5a2006-03-03 07:01:07 +0000502 visitBinary(I,
503 Ty->isSigned() ? ISD::SDIV : ISD::UDIV, ISD::FDIV,
504 Ty->isSigned() ? ISD::VSDIV : ISD::VUDIV);
Chris Lattner1c08c712005-01-07 07:47:53 +0000505 }
506 void visitRem(User &I) {
Chris Lattner01b3d732005-09-28 22:28:18 +0000507 const Type *Ty = I.getType();
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000508 visitBinary(I, Ty->isSigned() ? ISD::SREM : ISD::UREM, ISD::FREM, 0);
Chris Lattner1c08c712005-01-07 07:47:53 +0000509 }
Evan Cheng3e1ce5a2006-03-03 07:01:07 +0000510 void visitAnd(User &I) { visitBinary(I, ISD::AND, 0, ISD::VAND); }
511 void visitOr (User &I) { visitBinary(I, ISD::OR, 0, ISD::VOR); }
512 void visitXor(User &I) { visitBinary(I, ISD::XOR, 0, ISD::VXOR); }
Nate Begemane21ea612005-11-18 07:42:56 +0000513 void visitShl(User &I) { visitShift(I, ISD::SHL); }
514 void visitShr(User &I) {
515 visitShift(I, I.getType()->isUnsigned() ? ISD::SRL : ISD::SRA);
Chris Lattner1c08c712005-01-07 07:47:53 +0000516 }
517
Evan Chengf6f95812006-05-23 06:40:47 +0000518 void visitSetCC(User &I, ISD::CondCode SignedOpc, ISD::CondCode UnsignedOpc,
519 ISD::CondCode FPOpc);
520 void visitSetEQ(User &I) { visitSetCC(I, ISD::SETEQ, ISD::SETEQ,
521 ISD::SETOEQ); }
522 void visitSetNE(User &I) { visitSetCC(I, ISD::SETNE, ISD::SETNE,
523 ISD::SETUNE); }
524 void visitSetLE(User &I) { visitSetCC(I, ISD::SETLE, ISD::SETULE,
525 ISD::SETOLE); }
526 void visitSetGE(User &I) { visitSetCC(I, ISD::SETGE, ISD::SETUGE,
527 ISD::SETOGE); }
528 void visitSetLT(User &I) { visitSetCC(I, ISD::SETLT, ISD::SETULT,
529 ISD::SETOLT); }
530 void visitSetGT(User &I) { visitSetCC(I, ISD::SETGT, ISD::SETUGT,
531 ISD::SETOGT); }
Chris Lattner1c08c712005-01-07 07:47:53 +0000532
Chris Lattner2bbd8102006-03-29 00:11:43 +0000533 void visitExtractElement(User &I);
534 void visitInsertElement(User &I);
Chris Lattner3e104b12006-04-08 04:15:24 +0000535 void visitShuffleVector(User &I);
Chris Lattnerc7029802006-03-18 01:44:44 +0000536
Chris Lattner1c08c712005-01-07 07:47:53 +0000537 void visitGetElementPtr(User &I);
538 void visitCast(User &I);
539 void visitSelect(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000540
541 void visitMalloc(MallocInst &I);
542 void visitFree(FreeInst &I);
543 void visitAlloca(AllocaInst &I);
544 void visitLoad(LoadInst &I);
545 void visitStore(StoreInst &I);
546 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
547 void visitCall(CallInst &I);
Chris Lattnerce7518c2006-01-26 22:24:51 +0000548 void visitInlineAsm(CallInst &I);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +0000549 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +0000550 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner1c08c712005-01-07 07:47:53 +0000551
Chris Lattner1c08c712005-01-07 07:47:53 +0000552 void visitVAStart(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000553 void visitVAArg(VAArgInst &I);
554 void visitVAEnd(CallInst &I);
555 void visitVACopy(CallInst &I);
Chris Lattner39ae3622005-01-09 00:00:49 +0000556 void visitFrameReturnAddress(CallInst &I, bool isFrameAddress);
Chris Lattner1c08c712005-01-07 07:47:53 +0000557
Chris Lattner7041ee32005-01-11 05:56:49 +0000558 void visitMemIntrinsic(CallInst &I, unsigned Op);
Chris Lattner1c08c712005-01-07 07:47:53 +0000559
560 void visitUserOp1(Instruction &I) {
561 assert(0 && "UserOp1 should not exist at instruction selection time!");
562 abort();
563 }
564 void visitUserOp2(Instruction &I) {
565 assert(0 && "UserOp2 should not exist at instruction selection time!");
566 abort();
567 }
568};
569} // end namespace llvm
570
Chris Lattner199862b2006-03-16 19:57:50 +0000571SDOperand SelectionDAGLowering::getValue(const Value *V) {
572 SDOperand &N = NodeMap[V];
573 if (N.Val) return N;
574
575 const Type *VTy = V->getType();
576 MVT::ValueType VT = TLI.getValueType(VTy);
577 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
578 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
579 visit(CE->getOpcode(), *CE);
580 assert(N.Val && "visit didn't populate the ValueMap!");
581 return N;
582 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) {
583 return N = DAG.getGlobalAddress(GV, VT);
584 } else if (isa<ConstantPointerNull>(C)) {
585 return N = DAG.getConstant(0, TLI.getPointerTy());
586 } else if (isa<UndefValue>(C)) {
Chris Lattner23d564c2006-03-19 00:20:20 +0000587 if (!isa<PackedType>(VTy))
588 return N = DAG.getNode(ISD::UNDEF, VT);
589
Chris Lattnerb2827b02006-03-19 00:52:58 +0000590 // Create a VBUILD_VECTOR of undef nodes.
Chris Lattner23d564c2006-03-19 00:20:20 +0000591 const PackedType *PTy = cast<PackedType>(VTy);
592 unsigned NumElements = PTy->getNumElements();
593 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
594
595 std::vector<SDOperand> Ops;
596 Ops.assign(NumElements, DAG.getNode(ISD::UNDEF, PVT));
597
598 // Create a VConstant node with generic Vector type.
599 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
600 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerb2827b02006-03-19 00:52:58 +0000601 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner199862b2006-03-16 19:57:50 +0000602 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
603 return N = DAG.getConstantFP(CFP->getValue(), VT);
604 } else if (const PackedType *PTy = dyn_cast<PackedType>(VTy)) {
605 unsigned NumElements = PTy->getNumElements();
606 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattner199862b2006-03-16 19:57:50 +0000607
608 // Now that we know the number and type of the elements, push a
609 // Constant or ConstantFP node onto the ops list for each element of
610 // the packed constant.
611 std::vector<SDOperand> Ops;
612 if (ConstantPacked *CP = dyn_cast<ConstantPacked>(C)) {
Chris Lattner2bbd8102006-03-29 00:11:43 +0000613 for (unsigned i = 0; i != NumElements; ++i)
614 Ops.push_back(getValue(CP->getOperand(i)));
Chris Lattner199862b2006-03-16 19:57:50 +0000615 } else {
616 assert(isa<ConstantAggregateZero>(C) && "Unknown packed constant!");
617 SDOperand Op;
618 if (MVT::isFloatingPoint(PVT))
619 Op = DAG.getConstantFP(0, PVT);
620 else
621 Op = DAG.getConstant(0, PVT);
622 Ops.assign(NumElements, Op);
623 }
624
Chris Lattnerb2827b02006-03-19 00:52:58 +0000625 // Create a VBUILD_VECTOR node with generic Vector type.
Chris Lattner23d564c2006-03-19 00:20:20 +0000626 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
627 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerb2827b02006-03-19 00:52:58 +0000628 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner199862b2006-03-16 19:57:50 +0000629 } else {
630 // Canonicalize all constant ints to be unsigned.
631 return N = DAG.getConstant(cast<ConstantIntegral>(C)->getRawValue(),VT);
632 }
633 }
634
635 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
636 std::map<const AllocaInst*, int>::iterator SI =
637 FuncInfo.StaticAllocaMap.find(AI);
638 if (SI != FuncInfo.StaticAllocaMap.end())
639 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
640 }
641
642 std::map<const Value*, unsigned>::const_iterator VMI =
643 FuncInfo.ValueMap.find(V);
644 assert(VMI != FuncInfo.ValueMap.end() && "Value not in map!");
645
646 unsigned InReg = VMI->second;
647
648 // If this type is not legal, make it so now.
Chris Lattner70c2a612006-03-31 02:06:56 +0000649 if (VT != MVT::Vector) {
650 MVT::ValueType DestVT = TLI.getTypeToTransformTo(VT);
Chris Lattner199862b2006-03-16 19:57:50 +0000651
Chris Lattner70c2a612006-03-31 02:06:56 +0000652 N = DAG.getCopyFromReg(DAG.getEntryNode(), InReg, DestVT);
653 if (DestVT < VT) {
654 // Source must be expanded. This input value is actually coming from the
655 // register pair VMI->second and VMI->second+1.
656 N = DAG.getNode(ISD::BUILD_PAIR, VT, N,
657 DAG.getCopyFromReg(DAG.getEntryNode(), InReg+1, DestVT));
658 } else if (DestVT > VT) { // Promotion case
Chris Lattner199862b2006-03-16 19:57:50 +0000659 if (MVT::isFloatingPoint(VT))
660 N = DAG.getNode(ISD::FP_ROUND, VT, N);
661 else
662 N = DAG.getNode(ISD::TRUNCATE, VT, N);
663 }
Chris Lattner70c2a612006-03-31 02:06:56 +0000664 } else {
665 // Otherwise, if this is a vector, make it available as a generic vector
666 // here.
667 MVT::ValueType PTyElementVT, PTyLegalElementVT;
Chris Lattner2e2ef952006-04-05 06:54:42 +0000668 const PackedType *PTy = cast<PackedType>(VTy);
669 unsigned NE = TLI.getPackedTypeBreakdown(PTy, PTyElementVT,
Chris Lattner70c2a612006-03-31 02:06:56 +0000670 PTyLegalElementVT);
671
672 // Build a VBUILD_VECTOR with the input registers.
673 std::vector<SDOperand> Ops;
674 if (PTyElementVT == PTyLegalElementVT) {
675 // If the value types are legal, just VBUILD the CopyFromReg nodes.
676 for (unsigned i = 0; i != NE; ++i)
677 Ops.push_back(DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
678 PTyElementVT));
679 } else if (PTyElementVT < PTyLegalElementVT) {
680 // If the register was promoted, use TRUNCATE of FP_ROUND as appropriate.
681 for (unsigned i = 0; i != NE; ++i) {
682 SDOperand Op = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
683 PTyElementVT);
684 if (MVT::isFloatingPoint(PTyElementVT))
685 Op = DAG.getNode(ISD::FP_ROUND, PTyElementVT, Op);
686 else
687 Op = DAG.getNode(ISD::TRUNCATE, PTyElementVT, Op);
688 Ops.push_back(Op);
689 }
690 } else {
691 // If the register was expanded, use BUILD_PAIR.
692 assert((NE & 1) == 0 && "Must expand into a multiple of 2 elements!");
693 for (unsigned i = 0; i != NE/2; ++i) {
694 SDOperand Op0 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
695 PTyElementVT);
696 SDOperand Op1 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
697 PTyElementVT);
698 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Op0, Op1));
699 }
700 }
701
702 Ops.push_back(DAG.getConstant(NE, MVT::i32));
703 Ops.push_back(DAG.getValueType(PTyLegalElementVT));
704 N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner2e2ef952006-04-05 06:54:42 +0000705
706 // Finally, use a VBIT_CONVERT to make this available as the appropriate
707 // vector type.
708 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
709 DAG.getConstant(PTy->getNumElements(),
710 MVT::i32),
711 DAG.getValueType(TLI.getValueType(PTy->getElementType())));
Chris Lattner199862b2006-03-16 19:57:50 +0000712 }
713
714 return N;
715}
716
717
Chris Lattner1c08c712005-01-07 07:47:53 +0000718void SelectionDAGLowering::visitRet(ReturnInst &I) {
719 if (I.getNumOperands() == 0) {
Chris Lattnera651cf62005-01-17 19:43:36 +0000720 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getRoot()));
Chris Lattner1c08c712005-01-07 07:47:53 +0000721 return;
722 }
Nate Begemanee625572006-01-27 21:09:22 +0000723 std::vector<SDOperand> NewValues;
724 NewValues.push_back(getRoot());
725 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
726 SDOperand RetOp = getValue(I.getOperand(i));
Evan Cheng8e7d0562006-05-26 23:09:09 +0000727 bool isSigned = I.getOperand(i)->getType()->isSigned();
Nate Begemanee625572006-01-27 21:09:22 +0000728
729 // If this is an integer return value, we need to promote it ourselves to
730 // the full width of a register, since LegalizeOp will use ANY_EXTEND rather
731 // than sign/zero.
Evan Cheng8e7d0562006-05-26 23:09:09 +0000732 // FIXME: C calling convention requires the return type to be promoted to
733 // at least 32-bit. But this is not necessary for non-C calling conventions.
Nate Begemanee625572006-01-27 21:09:22 +0000734 if (MVT::isInteger(RetOp.getValueType()) &&
735 RetOp.getValueType() < MVT::i64) {
736 MVT::ValueType TmpVT;
737 if (TLI.getTypeAction(MVT::i32) == TargetLowering::Promote)
738 TmpVT = TLI.getTypeToTransformTo(MVT::i32);
739 else
740 TmpVT = MVT::i32;
Chris Lattner1c08c712005-01-07 07:47:53 +0000741
Evan Cheng8e7d0562006-05-26 23:09:09 +0000742 if (isSigned)
Nate Begemanee625572006-01-27 21:09:22 +0000743 RetOp = DAG.getNode(ISD::SIGN_EXTEND, TmpVT, RetOp);
744 else
745 RetOp = DAG.getNode(ISD::ZERO_EXTEND, TmpVT, RetOp);
746 }
747 NewValues.push_back(RetOp);
Evan Cheng8e7d0562006-05-26 23:09:09 +0000748 NewValues.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattner1c08c712005-01-07 07:47:53 +0000749 }
Nate Begemanee625572006-01-27 21:09:22 +0000750 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, NewValues));
Chris Lattner1c08c712005-01-07 07:47:53 +0000751}
752
753void SelectionDAGLowering::visitBr(BranchInst &I) {
754 // Update machine-CFG edges.
755 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Nate Begemanf15485a2006-03-27 01:32:24 +0000756 CurMBB->addSuccessor(Succ0MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000757
758 // Figure out which block is immediately after the current one.
759 MachineBasicBlock *NextBlock = 0;
760 MachineFunction::iterator BBI = CurMBB;
761 if (++BBI != CurMBB->getParent()->end())
762 NextBlock = BBI;
763
764 if (I.isUnconditional()) {
765 // If this is not a fall-through branch, emit the branch.
766 if (Succ0MBB != NextBlock)
Chris Lattnera651cf62005-01-17 19:43:36 +0000767 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000768 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000769 } else {
770 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Nate Begemanf15485a2006-03-27 01:32:24 +0000771 CurMBB->addSuccessor(Succ1MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000772
773 SDOperand Cond = getValue(I.getCondition());
Chris Lattner1c08c712005-01-07 07:47:53 +0000774 if (Succ1MBB == NextBlock) {
775 // If the condition is false, fall through. This means we should branch
776 // if the condition is true to Succ #0.
Chris Lattnera651cf62005-01-17 19:43:36 +0000777 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000778 Cond, DAG.getBasicBlock(Succ0MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000779 } else if (Succ0MBB == NextBlock) {
780 // If the condition is true, fall through. This means we should branch if
781 // the condition is false to Succ #1. Invert the condition first.
782 SDOperand True = DAG.getConstant(1, Cond.getValueType());
783 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
Chris Lattnera651cf62005-01-17 19:43:36 +0000784 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000785 Cond, DAG.getBasicBlock(Succ1MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000786 } else {
Chris Lattnere7ccd4a2005-04-09 03:30:29 +0000787 std::vector<SDOperand> Ops;
788 Ops.push_back(getRoot());
Evan Cheng298ebf22006-02-16 08:27:56 +0000789 // If the false case is the current basic block, then this is a self
790 // loop. We do not want to emit "Loop: ... brcond Out; br Loop", as it
791 // adds an extra instruction in the loop. Instead, invert the
792 // condition and emit "Loop: ... br!cond Loop; br Out.
793 if (CurMBB == Succ1MBB) {
794 std::swap(Succ0MBB, Succ1MBB);
795 SDOperand True = DAG.getConstant(1, Cond.getValueType());
796 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
797 }
Nate Begeman81e80972006-03-17 01:40:33 +0000798 SDOperand True = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
799 DAG.getBasicBlock(Succ0MBB));
800 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, True,
801 DAG.getBasicBlock(Succ1MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000802 }
803 }
804}
805
Nate Begemanf15485a2006-03-27 01:32:24 +0000806/// visitSwitchCase - Emits the necessary code to represent a single node in
807/// the binary search tree resulting from lowering a switch instruction.
808void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
809 SDOperand SwitchOp = getValue(CB.SwitchV);
810 SDOperand CaseOp = getValue(CB.CaseC);
811 SDOperand Cond = DAG.getSetCC(MVT::i1, SwitchOp, CaseOp, CB.CC);
812
813 // Set NextBlock to be the MBB immediately after the current one, if any.
814 // This is used to avoid emitting unnecessary branches to the next block.
815 MachineBasicBlock *NextBlock = 0;
816 MachineFunction::iterator BBI = CurMBB;
817 if (++BBI != CurMBB->getParent()->end())
818 NextBlock = BBI;
819
820 // If the lhs block is the next block, invert the condition so that we can
821 // fall through to the lhs instead of the rhs block.
822 if (CB.LHSBB == NextBlock) {
823 std::swap(CB.LHSBB, CB.RHSBB);
824 SDOperand True = DAG.getConstant(1, Cond.getValueType());
825 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
826 }
827 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
828 DAG.getBasicBlock(CB.LHSBB));
829 if (CB.RHSBB == NextBlock)
830 DAG.setRoot(BrCond);
831 else
832 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
833 DAG.getBasicBlock(CB.RHSBB)));
834 // Update successor info
835 CurMBB->addSuccessor(CB.LHSBB);
836 CurMBB->addSuccessor(CB.RHSBB);
837}
838
Nate Begeman37efe672006-04-22 18:53:45 +0000839/// visitSwitchCase - Emits the necessary code to represent a single node in
840/// the binary search tree resulting from lowering a switch instruction.
841void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
842 // FIXME: Need to emit different code for PIC vs. Non-PIC, specifically,
843 // we need to add the address of the jump table to the value loaded, since
844 // the entries in the jump table will be differences rather than absolute
845 // addresses.
846
847 // Emit the code for the jump table
848 MVT::ValueType PTy = TLI.getPointerTy();
Evan Cheng8825a482006-08-01 01:03:13 +0000849 assert((PTy == MVT::i32 || PTy == MVT::i64) &&
850 "Jump table entries are 32-bit values");
851 // PIC jump table entries are 32-bit values.
852 unsigned EntrySize =
853 (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_)
854 ? 4 : MVT::getSizeInBits(PTy)/8;
Nate Begeman37efe672006-04-22 18:53:45 +0000855 SDOperand Copy = DAG.getCopyFromReg(getRoot(), JT.Reg, PTy);
856 SDOperand IDX = DAG.getNode(ISD::MUL, PTy, Copy,
Evan Cheng8825a482006-08-01 01:03:13 +0000857 DAG.getConstant(EntrySize, PTy));
Nate Begeman2f1ae882006-07-27 01:13:04 +0000858 SDOperand TAB = DAG.getJumpTable(JT.JTI,PTy);
859 SDOperand ADD = DAG.getNode(ISD::ADD, PTy, IDX, TAB);
Evan Cheng8825a482006-08-01 01:03:13 +0000860 SDOperand LD = DAG.getLoad(MVT::i32, Copy.getValue(1), ADD,
861 DAG.getSrcValue(0));
Nate Begeman2f1ae882006-07-27 01:13:04 +0000862 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng8825a482006-08-01 01:03:13 +0000863 ADD = DAG.getNode(ISD::ADD, PTy,
864 ((PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD), TAB);
Nate Begeman2f1ae882006-07-27 01:13:04 +0000865 DAG.setRoot(DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), ADD));
866 } else {
867 DAG.setRoot(DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD));
868 }
Nate Begeman37efe672006-04-22 18:53:45 +0000869}
870
Nate Begemanf15485a2006-03-27 01:32:24 +0000871void SelectionDAGLowering::visitSwitch(SwitchInst &I) {
872 // Figure out which block is immediately after the current one.
873 MachineBasicBlock *NextBlock = 0;
874 MachineFunction::iterator BBI = CurMBB;
875 if (++BBI != CurMBB->getParent()->end())
876 NextBlock = BBI;
877
878 // If there is only the default destination, branch to it if it is not the
879 // next basic block. Otherwise, just fall through.
880 if (I.getNumOperands() == 2) {
881 // Update machine-CFG edges.
882 MachineBasicBlock *DefaultMBB = FuncInfo.MBBMap[I.getDefaultDest()];
883 // If this is not a fall-through branch, emit the branch.
884 if (DefaultMBB != NextBlock)
885 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
886 DAG.getBasicBlock(DefaultMBB)));
Chris Lattnera3bb86d2006-06-12 18:25:29 +0000887 CurMBB->addSuccessor(DefaultMBB);
Nate Begemanf15485a2006-03-27 01:32:24 +0000888 return;
889 }
890
891 // If there are any non-default case statements, create a vector of Cases
892 // representing each one, and sort the vector so that we can efficiently
893 // create a binary search tree from them.
894 std::vector<Case> Cases;
895 for (unsigned i = 1; i < I.getNumSuccessors(); ++i) {
896 MachineBasicBlock *SMBB = FuncInfo.MBBMap[I.getSuccessor(i)];
897 Cases.push_back(Case(I.getSuccessorValue(i), SMBB));
898 }
899 std::sort(Cases.begin(), Cases.end(), CaseCmp());
900
901 // Get the Value to be switched on and default basic blocks, which will be
902 // inserted into CaseBlock records, representing basic blocks in the binary
903 // search tree.
904 Value *SV = I.getOperand(0);
905 MachineBasicBlock *Default = FuncInfo.MBBMap[I.getDefaultDest()];
Nate Begeman37efe672006-04-22 18:53:45 +0000906
907 // Get the MachineFunction which holds the current MBB. This is used during
908 // emission of jump tables, and when inserting any additional MBBs necessary
909 // to represent the switch.
Nate Begemanf15485a2006-03-27 01:32:24 +0000910 MachineFunction *CurMF = CurMBB->getParent();
911 const BasicBlock *LLVMBB = CurMBB->getBasicBlock();
Nate Begeman37efe672006-04-22 18:53:45 +0000912
Nate Begeman17c275f2006-05-08 16:51:36 +0000913 // If the switch has more than 5 blocks, and at least 31.25% dense, and the
914 // target supports indirect branches, then emit a jump table rather than
915 // lowering the switch to a binary tree of conditional branches.
Nate Begeman37efe672006-04-22 18:53:45 +0000916 // FIXME: Make this work with PIC code
Nate Begeman9453eea2006-04-23 06:26:20 +0000917 if (TLI.isOperationLegal(ISD::BRIND, TLI.getPointerTy()) &&
Nate Begemanf4360a42006-05-03 03:48:02 +0000918 Cases.size() > 5) {
Nate Begeman37efe672006-04-22 18:53:45 +0000919 uint64_t First = cast<ConstantIntegral>(Cases.front().first)->getRawValue();
920 uint64_t Last = cast<ConstantIntegral>(Cases.back().first)->getRawValue();
Nate Begemanf4360a42006-05-03 03:48:02 +0000921 double Density = (double)Cases.size() / (double)((Last - First) + 1ULL);
922
Nate Begeman17c275f2006-05-08 16:51:36 +0000923 if (Density >= 0.3125) {
Nate Begeman37efe672006-04-22 18:53:45 +0000924 // Create a new basic block to hold the code for loading the address
925 // of the jump table, and jumping to it. Update successor information;
926 // we will either branch to the default case for the switch, or the jump
927 // table.
928 MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
929 CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
930 CurMBB->addSuccessor(Default);
931 CurMBB->addSuccessor(JumpTableBB);
932
933 // Subtract the lowest switch case value from the value being switched on
934 // and conditional branch to default mbb if the result is greater than the
935 // difference between smallest and largest cases.
936 SDOperand SwitchOp = getValue(SV);
937 MVT::ValueType VT = SwitchOp.getValueType();
938 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
939 DAG.getConstant(First, VT));
940
941 // The SDNode we just created, which holds the value being switched on
942 // minus the the smallest case value, needs to be copied to a virtual
943 // register so it can be used as an index into the jump table in a
944 // subsequent basic block. This value may be smaller or larger than the
945 // target's pointer type, and therefore require extension or truncating.
946 if (VT > TLI.getPointerTy())
947 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
948 else
949 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
950 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
951 SDOperand CopyTo = DAG.getCopyToReg(getRoot(), JumpTableReg, SwitchOp);
952
953 // Emit the range check for the jump table, and branch to the default
954 // block for the switch statement if the value being switched on exceeds
955 // the largest case in the switch.
956 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultTy(), SUB,
957 DAG.getConstant(Last-First,VT), ISD::SETUGT);
958 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
959 DAG.getBasicBlock(Default)));
960
Nate Begemanf4360a42006-05-03 03:48:02 +0000961 // Build a vector of destination BBs, corresponding to each target
962 // of the jump table. If the value of the jump table slot corresponds to
963 // a case statement, push the case's BB onto the vector, otherwise, push
964 // the default BB.
Nate Begeman37efe672006-04-22 18:53:45 +0000965 std::set<MachineBasicBlock*> UniqueBBs;
966 std::vector<MachineBasicBlock*> DestBBs;
Nate Begemanf4360a42006-05-03 03:48:02 +0000967 uint64_t TEI = First;
968 for (CaseItr ii = Cases.begin(), ee = Cases.end(); ii != ee; ++TEI) {
969 if (cast<ConstantIntegral>(ii->first)->getRawValue() == TEI) {
970 DestBBs.push_back(ii->second);
971 UniqueBBs.insert(ii->second);
972 ++ii;
973 } else {
974 DestBBs.push_back(Default);
975 UniqueBBs.insert(Default);
976 }
Nate Begeman37efe672006-04-22 18:53:45 +0000977 }
Nate Begemanf4360a42006-05-03 03:48:02 +0000978
979 // Update successor info
980 for (std::set<MachineBasicBlock*>::iterator ii = UniqueBBs.begin(),
981 ee = UniqueBBs.end(); ii != ee; ++ii)
982 JumpTableBB->addSuccessor(*ii);
983
984 // Create a jump table index for this jump table, or return an existing
985 // one.
Nate Begeman37efe672006-04-22 18:53:45 +0000986 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
987
988 // Set the jump table information so that we can codegen it as a second
989 // MachineBasicBlock
990 JT.Reg = JumpTableReg;
991 JT.JTI = JTI;
992 JT.MBB = JumpTableBB;
Nate Begeman9453eea2006-04-23 06:26:20 +0000993 JT.Default = Default;
Nate Begeman37efe672006-04-22 18:53:45 +0000994 return;
995 }
996 }
Nate Begemanf15485a2006-03-27 01:32:24 +0000997
998 // Push the initial CaseRec onto the worklist
999 std::vector<CaseRec> CaseVec;
1000 CaseVec.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
1001
1002 while (!CaseVec.empty()) {
1003 // Grab a record representing a case range to process off the worklist
1004 CaseRec CR = CaseVec.back();
1005 CaseVec.pop_back();
1006
1007 // Size is the number of Cases represented by this range. If Size is 1,
1008 // then we are processing a leaf of the binary search tree. Otherwise,
1009 // we need to pick a pivot, and push left and right ranges onto the
1010 // worklist.
1011 unsigned Size = CR.Range.second - CR.Range.first;
1012
1013 if (Size == 1) {
1014 // Create a CaseBlock record representing a conditional branch to
1015 // the Case's target mbb if the value being switched on SV is equal
1016 // to C. Otherwise, branch to default.
1017 Constant *C = CR.Range.first->first;
1018 MachineBasicBlock *Target = CR.Range.first->second;
1019 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, SV, C, Target, Default,
1020 CR.CaseBB);
1021 // If the MBB representing the leaf node is the current MBB, then just
1022 // call visitSwitchCase to emit the code into the current block.
1023 // Otherwise, push the CaseBlock onto the vector to be later processed
1024 // by SDISel, and insert the node's MBB before the next MBB.
1025 if (CR.CaseBB == CurMBB)
1026 visitSwitchCase(CB);
1027 else {
1028 SwitchCases.push_back(CB);
1029 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1030 }
1031 } else {
1032 // split case range at pivot
1033 CaseItr Pivot = CR.Range.first + (Size / 2);
1034 CaseRange LHSR(CR.Range.first, Pivot);
1035 CaseRange RHSR(Pivot, CR.Range.second);
1036 Constant *C = Pivot->first;
1037 MachineBasicBlock *RHSBB = 0, *LHSBB = 0;
1038 // We know that we branch to the LHS if the Value being switched on is
1039 // less than the Pivot value, C. We use this to optimize our binary
1040 // tree a bit, by recognizing that if SV is greater than or equal to the
1041 // LHS's Case Value, and that Case Value is exactly one less than the
1042 // Pivot's Value, then we can branch directly to the LHS's Target,
1043 // rather than creating a leaf node for it.
1044 if ((LHSR.second - LHSR.first) == 1 &&
1045 LHSR.first->first == CR.GE &&
1046 cast<ConstantIntegral>(C)->getRawValue() ==
1047 (cast<ConstantIntegral>(CR.GE)->getRawValue() + 1ULL)) {
1048 LHSBB = LHSR.first->second;
1049 } else {
1050 LHSBB = new MachineBasicBlock(LLVMBB);
1051 CaseVec.push_back(CaseRec(LHSBB,C,CR.GE,LHSR));
1052 }
1053 // Similar to the optimization above, if the Value being switched on is
1054 // known to be less than the Constant CR.LT, and the current Case Value
1055 // is CR.LT - 1, then we can branch directly to the target block for
1056 // the current Case Value, rather than emitting a RHS leaf node for it.
1057 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
1058 cast<ConstantIntegral>(RHSR.first->first)->getRawValue() ==
1059 (cast<ConstantIntegral>(CR.LT)->getRawValue() - 1ULL)) {
1060 RHSBB = RHSR.first->second;
1061 } else {
1062 RHSBB = new MachineBasicBlock(LLVMBB);
1063 CaseVec.push_back(CaseRec(RHSBB,CR.LT,C,RHSR));
1064 }
1065 // Create a CaseBlock record representing a conditional branch to
1066 // the LHS node if the value being switched on SV is less than C.
1067 // Otherwise, branch to LHS.
1068 ISD::CondCode CC = C->getType()->isSigned() ? ISD::SETLT : ISD::SETULT;
1069 SelectionDAGISel::CaseBlock CB(CC, SV, C, LHSBB, RHSBB, CR.CaseBB);
1070 if (CR.CaseBB == CurMBB)
1071 visitSwitchCase(CB);
1072 else {
1073 SwitchCases.push_back(CB);
1074 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1075 }
1076 }
1077 }
1078}
1079
Chris Lattnerb9fccc42005-04-02 05:04:50 +00001080void SelectionDAGLowering::visitSub(User &I) {
1081 // -0.0 - X --> fneg
Chris Lattner01b3d732005-09-28 22:28:18 +00001082 if (I.getType()->isFloatingPoint()) {
1083 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
1084 if (CFP->isExactlyValue(-0.0)) {
1085 SDOperand Op2 = getValue(I.getOperand(1));
1086 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
1087 return;
1088 }
Chris Lattner01b3d732005-09-28 22:28:18 +00001089 }
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001090 visitBinary(I, ISD::SUB, ISD::FSUB, ISD::VSUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00001091}
1092
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001093void SelectionDAGLowering::visitBinary(User &I, unsigned IntOp, unsigned FPOp,
1094 unsigned VecOp) {
1095 const Type *Ty = I.getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00001096 SDOperand Op1 = getValue(I.getOperand(0));
1097 SDOperand Op2 = getValue(I.getOperand(1));
Chris Lattner2c49f272005-01-19 22:31:21 +00001098
Chris Lattnerb67eb912005-11-19 18:40:42 +00001099 if (Ty->isIntegral()) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001100 setValue(&I, DAG.getNode(IntOp, Op1.getValueType(), Op1, Op2));
1101 } else if (Ty->isFloatingPoint()) {
1102 setValue(&I, DAG.getNode(FPOp, Op1.getValueType(), Op1, Op2));
1103 } else {
1104 const PackedType *PTy = cast<PackedType>(Ty);
Chris Lattnerc7029802006-03-18 01:44:44 +00001105 SDOperand Num = DAG.getConstant(PTy->getNumElements(), MVT::i32);
1106 SDOperand Typ = DAG.getValueType(TLI.getValueType(PTy->getElementType()));
1107 setValue(&I, DAG.getNode(VecOp, MVT::Vector, Op1, Op2, Num, Typ));
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001108 }
Nate Begemane21ea612005-11-18 07:42:56 +00001109}
Chris Lattner2c49f272005-01-19 22:31:21 +00001110
Nate Begemane21ea612005-11-18 07:42:56 +00001111void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
1112 SDOperand Op1 = getValue(I.getOperand(0));
1113 SDOperand Op2 = getValue(I.getOperand(1));
1114
1115 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
1116
Chris Lattner1c08c712005-01-07 07:47:53 +00001117 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
1118}
1119
1120void SelectionDAGLowering::visitSetCC(User &I,ISD::CondCode SignedOpcode,
Evan Chengf6f95812006-05-23 06:40:47 +00001121 ISD::CondCode UnsignedOpcode,
1122 ISD::CondCode FPOpcode) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001123 SDOperand Op1 = getValue(I.getOperand(0));
1124 SDOperand Op2 = getValue(I.getOperand(1));
1125 ISD::CondCode Opcode = SignedOpcode;
Evan Cheng80235d52006-05-23 18:18:46 +00001126 if (!FiniteOnlyFPMath() && I.getOperand(0)->getType()->isFloatingPoint())
Evan Chengf6f95812006-05-23 06:40:47 +00001127 Opcode = FPOpcode;
1128 else if (I.getOperand(0)->getType()->isUnsigned())
Chris Lattner1c08c712005-01-07 07:47:53 +00001129 Opcode = UnsignedOpcode;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001130 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
Chris Lattner1c08c712005-01-07 07:47:53 +00001131}
1132
1133void SelectionDAGLowering::visitSelect(User &I) {
1134 SDOperand Cond = getValue(I.getOperand(0));
1135 SDOperand TrueVal = getValue(I.getOperand(1));
1136 SDOperand FalseVal = getValue(I.getOperand(2));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00001137 if (!isa<PackedType>(I.getType())) {
1138 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
1139 TrueVal, FalseVal));
1140 } else {
1141 setValue(&I, DAG.getNode(ISD::VSELECT, MVT::Vector, Cond, TrueVal, FalseVal,
1142 *(TrueVal.Val->op_end()-2),
1143 *(TrueVal.Val->op_end()-1)));
1144 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001145}
1146
1147void SelectionDAGLowering::visitCast(User &I) {
1148 SDOperand N = getValue(I.getOperand(0));
Chris Lattnere25ca692006-03-22 20:09:35 +00001149 MVT::ValueType SrcVT = N.getValueType();
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001150 MVT::ValueType DestVT = TLI.getValueType(I.getType());
Chris Lattner1c08c712005-01-07 07:47:53 +00001151
Chris Lattnere25ca692006-03-22 20:09:35 +00001152 if (DestVT == MVT::Vector) {
1153 // This is a cast to a vector from something else. This is always a bit
1154 // convert. Get information about the input vector.
1155 const PackedType *DestTy = cast<PackedType>(I.getType());
1156 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1157 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N,
1158 DAG.getConstant(DestTy->getNumElements(),MVT::i32),
1159 DAG.getValueType(EltVT)));
1160 } else if (SrcVT == DestVT) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001161 setValue(&I, N); // noop cast.
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001162 } else if (DestVT == MVT::i1) {
Chris Lattneref311aa2005-05-09 22:17:13 +00001163 // Cast to bool is a comparison against zero, not truncation to zero.
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001164 SDOperand Zero = isInteger(SrcVT) ? DAG.getConstant(0, N.getValueType()) :
Chris Lattneref311aa2005-05-09 22:17:13 +00001165 DAG.getConstantFP(0.0, N.getValueType());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001166 setValue(&I, DAG.getSetCC(MVT::i1, N, Zero, ISD::SETNE));
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001167 } else if (isInteger(SrcVT)) {
1168 if (isInteger(DestVT)) { // Int -> Int cast
1169 if (DestVT < SrcVT) // Truncating cast?
1170 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001171 else if (I.getOperand(0)->getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001172 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001173 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001174 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
Chris Lattner7e358902006-03-22 22:20:49 +00001175 } else if (isFloatingPoint(DestVT)) { // Int -> FP cast
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001176 if (I.getOperand(0)->getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001177 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001178 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001179 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001180 } else {
1181 assert(0 && "Unknown cast!");
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001182 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001183 } else if (isFloatingPoint(SrcVT)) {
1184 if (isFloatingPoint(DestVT)) { // FP -> FP cast
1185 if (DestVT < SrcVT) // Rounding cast?
1186 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001187 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001188 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001189 } else if (isInteger(DestVT)) { // FP -> Int cast.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001190 if (I.getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001191 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001192 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001193 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001194 } else {
1195 assert(0 && "Unknown cast!");
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001196 }
1197 } else {
Chris Lattnere25ca692006-03-22 20:09:35 +00001198 assert(SrcVT == MVT::Vector && "Unknown cast!");
1199 assert(DestVT != MVT::Vector && "Casts to vector already handled!");
1200 // This is a cast from a vector to something else. This is always a bit
1201 // convert. Get information about the input vector.
1202 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N));
Chris Lattner1c08c712005-01-07 07:47:53 +00001203 }
1204}
1205
Chris Lattner2bbd8102006-03-29 00:11:43 +00001206void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattnerc7029802006-03-18 01:44:44 +00001207 SDOperand InVec = getValue(I.getOperand(0));
1208 SDOperand InVal = getValue(I.getOperand(1));
1209 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1210 getValue(I.getOperand(2)));
1211
Chris Lattner2332b9f2006-03-19 01:17:20 +00001212 SDOperand Num = *(InVec.Val->op_end()-2);
1213 SDOperand Typ = *(InVec.Val->op_end()-1);
1214 setValue(&I, DAG.getNode(ISD::VINSERT_VECTOR_ELT, MVT::Vector,
1215 InVec, InVal, InIdx, Num, Typ));
Chris Lattnerc7029802006-03-18 01:44:44 +00001216}
1217
Chris Lattner2bbd8102006-03-29 00:11:43 +00001218void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner384504c2006-03-21 20:44:12 +00001219 SDOperand InVec = getValue(I.getOperand(0));
1220 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1221 getValue(I.getOperand(1)));
1222 SDOperand Typ = *(InVec.Val->op_end()-1);
1223 setValue(&I, DAG.getNode(ISD::VEXTRACT_VECTOR_ELT,
1224 TLI.getValueType(I.getType()), InVec, InIdx));
1225}
Chris Lattnerc7029802006-03-18 01:44:44 +00001226
Chris Lattner3e104b12006-04-08 04:15:24 +00001227void SelectionDAGLowering::visitShuffleVector(User &I) {
1228 SDOperand V1 = getValue(I.getOperand(0));
1229 SDOperand V2 = getValue(I.getOperand(1));
1230 SDOperand Mask = getValue(I.getOperand(2));
1231
1232 SDOperand Num = *(V1.Val->op_end()-2);
1233 SDOperand Typ = *(V2.Val->op_end()-1);
1234 setValue(&I, DAG.getNode(ISD::VVECTOR_SHUFFLE, MVT::Vector,
1235 V1, V2, Mask, Num, Typ));
1236}
1237
1238
Chris Lattner1c08c712005-01-07 07:47:53 +00001239void SelectionDAGLowering::visitGetElementPtr(User &I) {
1240 SDOperand N = getValue(I.getOperand(0));
1241 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00001242
1243 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
1244 OI != E; ++OI) {
1245 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00001246 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001247 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
1248 if (Field) {
1249 // N = N + Offset
Owen Andersona69571c2006-05-03 01:29:57 +00001250 uint64_t Offset = TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattner1c08c712005-01-07 07:47:53 +00001251 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001252 getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00001253 }
1254 Ty = StTy->getElementType(Field);
1255 } else {
1256 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00001257
Chris Lattner7c0104b2005-11-09 04:45:33 +00001258 // If this is a constant subscript, handle it quickly.
1259 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
1260 if (CI->getRawValue() == 0) continue;
Chris Lattner7cc47772005-01-07 21:56:57 +00001261
Chris Lattner7c0104b2005-11-09 04:45:33 +00001262 uint64_t Offs;
1263 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Andersona69571c2006-05-03 01:29:57 +00001264 Offs = (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattner7c0104b2005-11-09 04:45:33 +00001265 else
Owen Andersona69571c2006-05-03 01:29:57 +00001266 Offs = TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattner7c0104b2005-11-09 04:45:33 +00001267 N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs));
1268 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00001269 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00001270
1271 // N = N + Idx * ElementSize;
Owen Andersona69571c2006-05-03 01:29:57 +00001272 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattner7c0104b2005-11-09 04:45:33 +00001273 SDOperand IdxN = getValue(Idx);
1274
1275 // If the index is smaller or larger than intptr_t, truncate or extend
1276 // it.
1277 if (IdxN.getValueType() < N.getValueType()) {
1278 if (Idx->getType()->isSigned())
1279 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
1280 else
1281 IdxN = DAG.getNode(ISD::ZERO_EXTEND, N.getValueType(), IdxN);
1282 } else if (IdxN.getValueType() > N.getValueType())
1283 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
1284
1285 // If this is a multiply by a power of two, turn it into a shl
1286 // immediately. This is a very common case.
1287 if (isPowerOf2_64(ElementSize)) {
1288 unsigned Amt = Log2_64(ElementSize);
1289 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00001290 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00001291 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
1292 continue;
1293 }
1294
1295 SDOperand Scale = getIntPtrConstant(ElementSize);
1296 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
1297 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00001298 }
1299 }
1300 setValue(&I, N);
1301}
1302
1303void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
1304 // If this is a fixed sized alloca in the entry block of the function,
1305 // allocate it statically on the stack.
1306 if (FuncInfo.StaticAllocaMap.count(&I))
1307 return; // getValue will auto-populate this.
1308
1309 const Type *Ty = I.getAllocatedType();
Owen Andersona69571c2006-05-03 01:29:57 +00001310 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
1311 unsigned Align = std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +00001312 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00001313
1314 SDOperand AllocSize = getValue(I.getArraySize());
Chris Lattner68cd65e2005-01-22 23:04:37 +00001315 MVT::ValueType IntPtr = TLI.getPointerTy();
1316 if (IntPtr < AllocSize.getValueType())
1317 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
1318 else if (IntPtr > AllocSize.getValueType())
1319 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00001320
Chris Lattner68cd65e2005-01-22 23:04:37 +00001321 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner1c08c712005-01-07 07:47:53 +00001322 getIntPtrConstant(TySize));
1323
1324 // Handle alignment. If the requested alignment is less than or equal to the
1325 // stack alignment, ignore it and round the size of the allocation up to the
1326 // stack alignment size. If the size is greater than the stack alignment, we
1327 // note this in the DYNAMIC_STACKALLOC node.
1328 unsigned StackAlign =
1329 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1330 if (Align <= StackAlign) {
1331 Align = 0;
1332 // Add SA-1 to the size.
1333 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
1334 getIntPtrConstant(StackAlign-1));
1335 // Mask out the low bits for alignment purposes.
1336 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
1337 getIntPtrConstant(~(uint64_t)(StackAlign-1)));
1338 }
1339
Chris Lattneradf6c2a2005-05-14 07:29:57 +00001340 std::vector<MVT::ValueType> VTs;
1341 VTs.push_back(AllocSize.getValueType());
1342 VTs.push_back(MVT::Other);
1343 std::vector<SDOperand> Ops;
1344 Ops.push_back(getRoot());
1345 Ops.push_back(AllocSize);
1346 Ops.push_back(getIntPtrConstant(Align));
1347 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, Ops);
Chris Lattner1c08c712005-01-07 07:47:53 +00001348 DAG.setRoot(setValue(&I, DSA).getValue(1));
1349
1350 // Inform the Frame Information that we have just allocated a variable-sized
1351 // object.
1352 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
1353}
1354
Chris Lattner1c08c712005-01-07 07:47:53 +00001355void SelectionDAGLowering::visitLoad(LoadInst &I) {
1356 SDOperand Ptr = getValue(I.getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00001357
Chris Lattnerd3948112005-01-17 22:19:26 +00001358 SDOperand Root;
1359 if (I.isVolatile())
1360 Root = getRoot();
1361 else {
1362 // Do not serialize non-volatile loads against each other.
1363 Root = DAG.getRoot();
1364 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001365
1366 setValue(&I, getLoadFrom(I.getType(), Ptr, DAG.getSrcValue(I.getOperand(0)),
1367 Root, I.isVolatile()));
1368}
1369
1370SDOperand SelectionDAGLowering::getLoadFrom(const Type *Ty, SDOperand Ptr,
1371 SDOperand SrcValue, SDOperand Root,
1372 bool isVolatile) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001373 SDOperand L;
Nate Begeman8cfa57b2005-12-06 06:18:55 +00001374 if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
Nate Begeman4ef3b812005-11-22 01:29:36 +00001375 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattnerc7029802006-03-18 01:44:44 +00001376 L = DAG.getVecLoad(PTy->getNumElements(), PVT, Root, Ptr, SrcValue);
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001377 } else {
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001378 L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SrcValue);
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001379 }
Chris Lattnerd3948112005-01-17 22:19:26 +00001380
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001381 if (isVolatile)
Chris Lattnerd3948112005-01-17 22:19:26 +00001382 DAG.setRoot(L.getValue(1));
1383 else
1384 PendingLoads.push_back(L.getValue(1));
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001385
1386 return L;
Chris Lattner1c08c712005-01-07 07:47:53 +00001387}
1388
1389
1390void SelectionDAGLowering::visitStore(StoreInst &I) {
1391 Value *SrcV = I.getOperand(0);
1392 SDOperand Src = getValue(SrcV);
1393 SDOperand Ptr = getValue(I.getOperand(1));
Chris Lattner369e6db2005-05-09 04:08:33 +00001394 DAG.setRoot(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Src, Ptr,
Andrew Lenharth06ef8842005-06-29 18:54:02 +00001395 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00001396}
1397
Chris Lattner0eade312006-03-24 02:22:33 +00001398/// IntrinsicCannotAccessMemory - Return true if the specified intrinsic cannot
1399/// access memory and has no other side effects at all.
1400static bool IntrinsicCannotAccessMemory(unsigned IntrinsicID) {
1401#define GET_NO_MEMORY_INTRINSICS
1402#include "llvm/Intrinsics.gen"
1403#undef GET_NO_MEMORY_INTRINSICS
1404 return false;
1405}
1406
Chris Lattnere58a7802006-04-02 03:41:14 +00001407// IntrinsicOnlyReadsMemory - Return true if the specified intrinsic doesn't
1408// have any side-effects or if it only reads memory.
1409static bool IntrinsicOnlyReadsMemory(unsigned IntrinsicID) {
1410#define GET_SIDE_EFFECT_INFO
1411#include "llvm/Intrinsics.gen"
1412#undef GET_SIDE_EFFECT_INFO
1413 return false;
1414}
1415
Chris Lattner0eade312006-03-24 02:22:33 +00001416/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
1417/// node.
1418void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
1419 unsigned Intrinsic) {
Chris Lattner7255a542006-03-24 22:49:42 +00001420 bool HasChain = !IntrinsicCannotAccessMemory(Intrinsic);
Chris Lattnere58a7802006-04-02 03:41:14 +00001421 bool OnlyLoad = HasChain && IntrinsicOnlyReadsMemory(Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +00001422
1423 // Build the operand list.
1424 std::vector<SDOperand> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00001425 if (HasChain) { // If this intrinsic has side-effects, chainify it.
1426 if (OnlyLoad) {
1427 // We don't need to serialize loads against other loads.
1428 Ops.push_back(DAG.getRoot());
1429 } else {
1430 Ops.push_back(getRoot());
1431 }
1432 }
Chris Lattner0eade312006-03-24 02:22:33 +00001433
1434 // Add the intrinsic ID as an integer operand.
1435 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
1436
1437 // Add all operands of the call to the operand list.
1438 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1439 SDOperand Op = getValue(I.getOperand(i));
1440
1441 // If this is a vector type, force it to the right packed type.
1442 if (Op.getValueType() == MVT::Vector) {
1443 const PackedType *OpTy = cast<PackedType>(I.getOperand(i)->getType());
1444 MVT::ValueType EltVT = TLI.getValueType(OpTy->getElementType());
1445
1446 MVT::ValueType VVT = MVT::getVectorType(EltVT, OpTy->getNumElements());
1447 assert(VVT != MVT::Other && "Intrinsic uses a non-legal type?");
1448 Op = DAG.getNode(ISD::VBIT_CONVERT, VVT, Op);
1449 }
1450
1451 assert(TLI.isTypeLegal(Op.getValueType()) &&
1452 "Intrinsic uses a non-legal type?");
1453 Ops.push_back(Op);
1454 }
1455
1456 std::vector<MVT::ValueType> VTs;
1457 if (I.getType() != Type::VoidTy) {
1458 MVT::ValueType VT = TLI.getValueType(I.getType());
1459 if (VT == MVT::Vector) {
1460 const PackedType *DestTy = cast<PackedType>(I.getType());
1461 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1462
1463 VT = MVT::getVectorType(EltVT, DestTy->getNumElements());
1464 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
1465 }
1466
1467 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
1468 VTs.push_back(VT);
1469 }
1470 if (HasChain)
1471 VTs.push_back(MVT::Other);
1472
1473 // Create the node.
Chris Lattner48b61a72006-03-28 00:40:33 +00001474 SDOperand Result;
1475 if (!HasChain)
1476 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTs, Ops);
1477 else if (I.getType() != Type::VoidTy)
1478 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTs, Ops);
1479 else
1480 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTs, Ops);
1481
Chris Lattnere58a7802006-04-02 03:41:14 +00001482 if (HasChain) {
1483 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
1484 if (OnlyLoad)
1485 PendingLoads.push_back(Chain);
1486 else
1487 DAG.setRoot(Chain);
1488 }
Chris Lattner0eade312006-03-24 02:22:33 +00001489 if (I.getType() != Type::VoidTy) {
1490 if (const PackedType *PTy = dyn_cast<PackedType>(I.getType())) {
1491 MVT::ValueType EVT = TLI.getValueType(PTy->getElementType());
1492 Result = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Result,
1493 DAG.getConstant(PTy->getNumElements(), MVT::i32),
1494 DAG.getValueType(EVT));
1495 }
1496 setValue(&I, Result);
1497 }
1498}
1499
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001500/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
1501/// we want to emit this as a call to a named external function, return the name
1502/// otherwise lower it and return null.
1503const char *
1504SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
1505 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00001506 default:
1507 // By default, turn this into a target intrinsic node.
1508 visitTargetIntrinsic(I, Intrinsic);
1509 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001510 case Intrinsic::vastart: visitVAStart(I); return 0;
1511 case Intrinsic::vaend: visitVAEnd(I); return 0;
1512 case Intrinsic::vacopy: visitVACopy(I); return 0;
1513 case Intrinsic::returnaddress: visitFrameReturnAddress(I, false); return 0;
1514 case Intrinsic::frameaddress: visitFrameReturnAddress(I, true); return 0;
1515 case Intrinsic::setjmp:
1516 return "_setjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1517 break;
1518 case Intrinsic::longjmp:
1519 return "_longjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1520 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00001521 case Intrinsic::memcpy_i32:
1522 case Intrinsic::memcpy_i64:
1523 visitMemIntrinsic(I, ISD::MEMCPY);
1524 return 0;
1525 case Intrinsic::memset_i32:
1526 case Intrinsic::memset_i64:
1527 visitMemIntrinsic(I, ISD::MEMSET);
1528 return 0;
1529 case Intrinsic::memmove_i32:
1530 case Intrinsic::memmove_i64:
1531 visitMemIntrinsic(I, ISD::MEMMOVE);
1532 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001533
Chris Lattner86cb6432005-12-13 17:40:33 +00001534 case Intrinsic::dbg_stoppoint: {
Jim Laskeyce72b172006-02-11 01:01:30 +00001535 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00001536 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001537 if (DebugInfo && SPI.getContext() && DebugInfo->Verify(SPI.getContext())) {
Jim Laskeyce72b172006-02-11 01:01:30 +00001538 std::vector<SDOperand> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001539
Jim Laskeyce72b172006-02-11 01:01:30 +00001540 Ops.push_back(getRoot());
Jim Laskey43970fe2006-03-23 18:06:46 +00001541 Ops.push_back(getValue(SPI.getLineValue()));
1542 Ops.push_back(getValue(SPI.getColumnValue()));
Chris Lattner36ce6912005-11-29 06:21:05 +00001543
Jim Laskey43970fe2006-03-23 18:06:46 +00001544 DebugInfoDesc *DD = DebugInfo->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00001545 assert(DD && "Not a debug information descriptor");
Jim Laskey43970fe2006-03-23 18:06:46 +00001546 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
1547
Jim Laskeyce72b172006-02-11 01:01:30 +00001548 Ops.push_back(DAG.getString(CompileUnit->getFileName()));
1549 Ops.push_back(DAG.getString(CompileUnit->getDirectory()));
1550
Jim Laskey43970fe2006-03-23 18:06:46 +00001551 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops));
Chris Lattner86cb6432005-12-13 17:40:33 +00001552 }
Jim Laskey43970fe2006-03-23 18:06:46 +00001553
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001554 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00001555 }
Jim Laskey43970fe2006-03-23 18:06:46 +00001556 case Intrinsic::dbg_region_start: {
1557 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1558 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001559 if (DebugInfo && RSI.getContext() && DebugInfo->Verify(RSI.getContext())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001560 std::vector<SDOperand> Ops;
1561
1562 unsigned LabelID = DebugInfo->RecordRegionStart(RSI.getContext());
1563
1564 Ops.push_back(getRoot());
1565 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1566
1567 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1568 }
1569
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001570 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001571 }
1572 case Intrinsic::dbg_region_end: {
1573 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1574 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001575 if (DebugInfo && REI.getContext() && DebugInfo->Verify(REI.getContext())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001576 std::vector<SDOperand> Ops;
1577
1578 unsigned LabelID = DebugInfo->RecordRegionEnd(REI.getContext());
1579
1580 Ops.push_back(getRoot());
1581 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1582
1583 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1584 }
1585
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001586 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001587 }
1588 case Intrinsic::dbg_func_start: {
1589 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1590 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001591 if (DebugInfo && FSI.getSubprogram() &&
1592 DebugInfo->Verify(FSI.getSubprogram())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001593 std::vector<SDOperand> Ops;
1594
1595 unsigned LabelID = DebugInfo->RecordRegionStart(FSI.getSubprogram());
1596
1597 Ops.push_back(getRoot());
1598 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1599
1600 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1601 }
1602
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001603 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001604 }
1605 case Intrinsic::dbg_declare: {
1606 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1607 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Jim Laskeybf7637d2006-03-28 13:45:20 +00001608 if (DebugInfo && DI.getVariable() && DebugInfo->Verify(DI.getVariable())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001609 std::vector<SDOperand> Ops;
1610
Jim Laskey0892cee2006-03-24 09:50:27 +00001611 SDOperand AddressOp = getValue(DI.getAddress());
1612 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(AddressOp)) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001613 DebugInfo->RecordVariable(DI.getVariable(), FI->getIndex());
1614 }
1615 }
1616
1617 return 0;
1618 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001619
Reid Spencer0b118202006-01-16 21:12:35 +00001620 case Intrinsic::isunordered_f32:
1621 case Intrinsic::isunordered_f64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001622 setValue(&I, DAG.getSetCC(MVT::i1,getValue(I.getOperand(1)),
1623 getValue(I.getOperand(2)), ISD::SETUO));
1624 return 0;
1625
Reid Spencer0b118202006-01-16 21:12:35 +00001626 case Intrinsic::sqrt_f32:
1627 case Intrinsic::sqrt_f64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001628 setValue(&I, DAG.getNode(ISD::FSQRT,
1629 getValue(I.getOperand(1)).getValueType(),
1630 getValue(I.getOperand(1))));
1631 return 0;
1632 case Intrinsic::pcmarker: {
1633 SDOperand Tmp = getValue(I.getOperand(1));
1634 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
1635 return 0;
1636 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00001637 case Intrinsic::readcyclecounter: {
1638 std::vector<MVT::ValueType> VTs;
1639 VTs.push_back(MVT::i64);
1640 VTs.push_back(MVT::Other);
1641 std::vector<SDOperand> Ops;
1642 Ops.push_back(getRoot());
1643 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER, VTs, Ops);
1644 setValue(&I, Tmp);
1645 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00001646 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00001647 }
Nate Begemand88fc032006-01-14 03:14:10 +00001648 case Intrinsic::bswap_i16:
Nate Begemand88fc032006-01-14 03:14:10 +00001649 case Intrinsic::bswap_i32:
Nate Begemand88fc032006-01-14 03:14:10 +00001650 case Intrinsic::bswap_i64:
1651 setValue(&I, DAG.getNode(ISD::BSWAP,
1652 getValue(I.getOperand(1)).getValueType(),
1653 getValue(I.getOperand(1))));
1654 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001655 case Intrinsic::cttz_i8:
1656 case Intrinsic::cttz_i16:
1657 case Intrinsic::cttz_i32:
1658 case Intrinsic::cttz_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001659 setValue(&I, DAG.getNode(ISD::CTTZ,
1660 getValue(I.getOperand(1)).getValueType(),
1661 getValue(I.getOperand(1))));
1662 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001663 case Intrinsic::ctlz_i8:
1664 case Intrinsic::ctlz_i16:
1665 case Intrinsic::ctlz_i32:
1666 case Intrinsic::ctlz_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001667 setValue(&I, DAG.getNode(ISD::CTLZ,
1668 getValue(I.getOperand(1)).getValueType(),
1669 getValue(I.getOperand(1))));
1670 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001671 case Intrinsic::ctpop_i8:
1672 case Intrinsic::ctpop_i16:
1673 case Intrinsic::ctpop_i32:
1674 case Intrinsic::ctpop_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001675 setValue(&I, DAG.getNode(ISD::CTPOP,
1676 getValue(I.getOperand(1)).getValueType(),
1677 getValue(I.getOperand(1))));
1678 return 0;
Chris Lattner140d53c2006-01-13 02:50:02 +00001679 case Intrinsic::stacksave: {
1680 std::vector<MVT::ValueType> VTs;
1681 VTs.push_back(TLI.getPointerTy());
1682 VTs.push_back(MVT::Other);
1683 std::vector<SDOperand> Ops;
1684 Ops.push_back(getRoot());
1685 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE, VTs, Ops);
1686 setValue(&I, Tmp);
1687 DAG.setRoot(Tmp.getValue(1));
1688 return 0;
1689 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00001690 case Intrinsic::stackrestore: {
1691 SDOperand Tmp = getValue(I.getOperand(1));
1692 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00001693 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00001694 }
Chris Lattnerac22c832005-12-12 22:51:16 +00001695 case Intrinsic::prefetch:
1696 // FIXME: Currently discarding prefetches.
1697 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001698 }
1699}
1700
1701
Chris Lattner1c08c712005-01-07 07:47:53 +00001702void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00001703 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001704 if (Function *F = I.getCalledFunction()) {
Chris Lattnerc0f18152005-04-02 05:26:53 +00001705 if (F->isExternal())
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001706 if (unsigned IID = F->getIntrinsicID()) {
1707 RenameFn = visitIntrinsicCall(I, IID);
1708 if (!RenameFn)
1709 return;
1710 } else { // Not an LLVM intrinsic.
1711 const std::string &Name = F->getName();
Chris Lattnera09f8482006-03-05 05:09:38 +00001712 if (Name[0] == 'c' && (Name == "copysign" || Name == "copysignf")) {
1713 if (I.getNumOperands() == 3 && // Basic sanity checks.
1714 I.getOperand(1)->getType()->isFloatingPoint() &&
1715 I.getType() == I.getOperand(1)->getType() &&
1716 I.getType() == I.getOperand(2)->getType()) {
1717 SDOperand LHS = getValue(I.getOperand(1));
1718 SDOperand RHS = getValue(I.getOperand(2));
1719 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
1720 LHS, RHS));
1721 return;
1722 }
1723 } else if (Name[0] == 'f' && (Name == "fabs" || Name == "fabsf")) {
Chris Lattnerc0f18152005-04-02 05:26:53 +00001724 if (I.getNumOperands() == 2 && // Basic sanity checks.
1725 I.getOperand(1)->getType()->isFloatingPoint() &&
1726 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001727 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerc0f18152005-04-02 05:26:53 +00001728 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
1729 return;
1730 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001731 } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) {
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001732 if (I.getNumOperands() == 2 && // Basic sanity checks.
1733 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner06a248c92006-02-14 05:39:35 +00001734 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001735 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001736 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
1737 return;
1738 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001739 } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) {
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001740 if (I.getNumOperands() == 2 && // Basic sanity checks.
1741 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner06a248c92006-02-14 05:39:35 +00001742 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001743 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001744 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
1745 return;
1746 }
1747 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00001748 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001749 } else if (isa<InlineAsm>(I.getOperand(0))) {
1750 visitInlineAsm(I);
1751 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001752 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001753
Chris Lattner64e14b12005-01-08 22:48:57 +00001754 SDOperand Callee;
1755 if (!RenameFn)
1756 Callee = getValue(I.getOperand(0));
1757 else
1758 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Chris Lattner1c08c712005-01-07 07:47:53 +00001759 std::vector<std::pair<SDOperand, const Type*> > Args;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001760 Args.reserve(I.getNumOperands());
Chris Lattner1c08c712005-01-07 07:47:53 +00001761 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1762 Value *Arg = I.getOperand(i);
1763 SDOperand ArgNode = getValue(Arg);
1764 Args.push_back(std::make_pair(ArgNode, Arg->getType()));
1765 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001766
Nate Begeman8e21e712005-03-26 01:29:23 +00001767 const PointerType *PT = cast<PointerType>(I.getCalledValue()->getType());
1768 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001769
Chris Lattnercf5734d2005-01-08 19:26:18 +00001770 std::pair<SDOperand,SDOperand> Result =
Chris Lattner9092fa32005-05-12 19:56:57 +00001771 TLI.LowerCallTo(getRoot(), I.getType(), FTy->isVarArg(), I.getCallingConv(),
Chris Lattneradf6a962005-05-13 18:50:42 +00001772 I.isTailCall(), Callee, Args, DAG);
Chris Lattner1c08c712005-01-07 07:47:53 +00001773 if (I.getType() != Type::VoidTy)
Chris Lattnercf5734d2005-01-08 19:26:18 +00001774 setValue(&I, Result.first);
1775 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00001776}
1777
Chris Lattner864635a2006-02-22 22:37:12 +00001778SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001779 SDOperand &Chain, SDOperand &Flag)const{
Chris Lattner864635a2006-02-22 22:37:12 +00001780 SDOperand Val = DAG.getCopyFromReg(Chain, Regs[0], RegVT, Flag);
1781 Chain = Val.getValue(1);
1782 Flag = Val.getValue(2);
1783
1784 // If the result was expanded, copy from the top part.
1785 if (Regs.size() > 1) {
1786 assert(Regs.size() == 2 &&
1787 "Cannot expand to more than 2 elts yet!");
1788 SDOperand Hi = DAG.getCopyFromReg(Chain, Regs[1], RegVT, Flag);
1789 Chain = Val.getValue(1);
1790 Flag = Val.getValue(2);
Chris Lattner9f6637d2006-02-23 20:06:57 +00001791 if (DAG.getTargetLoweringInfo().isLittleEndian())
1792 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Val, Hi);
1793 else
1794 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Hi, Val);
Chris Lattner864635a2006-02-22 22:37:12 +00001795 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00001796
Chris Lattnercf752aa2006-06-08 18:22:48 +00001797 // Otherwise, if the return value was promoted or extended, truncate it to the
Chris Lattner864635a2006-02-22 22:37:12 +00001798 // appropriate type.
1799 if (RegVT == ValueVT)
1800 return Val;
1801
Chris Lattnercf752aa2006-06-08 18:22:48 +00001802 if (MVT::isInteger(RegVT)) {
1803 if (ValueVT < RegVT)
1804 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1805 else
1806 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
1807 } else {
Chris Lattner864635a2006-02-22 22:37:12 +00001808 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val);
Chris Lattnercf752aa2006-06-08 18:22:48 +00001809 }
Chris Lattner864635a2006-02-22 22:37:12 +00001810}
1811
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001812/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
1813/// specified value into the registers specified by this object. This uses
1814/// Chain/Flag as the input and updates them for the output Chain/Flag.
1815void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Evan Chenga8441262006-06-15 08:11:54 +00001816 SDOperand &Chain, SDOperand &Flag,
1817 MVT::ValueType PtrVT) const {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001818 if (Regs.size() == 1) {
1819 // If there is a single register and the types differ, this must be
1820 // a promotion.
1821 if (RegVT != ValueVT) {
Chris Lattner0c48fd42006-06-08 18:27:11 +00001822 if (MVT::isInteger(RegVT)) {
1823 if (RegVT < ValueVT)
1824 Val = DAG.getNode(ISD::TRUNCATE, RegVT, Val);
1825 else
1826 Val = DAG.getNode(ISD::ANY_EXTEND, RegVT, Val);
1827 } else
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001828 Val = DAG.getNode(ISD::FP_EXTEND, RegVT, Val);
1829 }
1830 Chain = DAG.getCopyToReg(Chain, Regs[0], Val, Flag);
1831 Flag = Chain.getValue(1);
1832 } else {
Chris Lattner9f6637d2006-02-23 20:06:57 +00001833 std::vector<unsigned> R(Regs);
1834 if (!DAG.getTargetLoweringInfo().isLittleEndian())
1835 std::reverse(R.begin(), R.end());
1836
1837 for (unsigned i = 0, e = R.size(); i != e; ++i) {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001838 SDOperand Part = DAG.getNode(ISD::EXTRACT_ELEMENT, RegVT, Val,
Evan Chenga8441262006-06-15 08:11:54 +00001839 DAG.getConstant(i, PtrVT));
Chris Lattner9f6637d2006-02-23 20:06:57 +00001840 Chain = DAG.getCopyToReg(Chain, R[i], Part, Flag);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001841 Flag = Chain.getValue(1);
1842 }
1843 }
1844}
Chris Lattner864635a2006-02-22 22:37:12 +00001845
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001846/// AddInlineAsmOperands - Add this value to the specified inlineasm node
1847/// operand list. This adds the code marker and includes the number of
1848/// values added into it.
1849void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001850 std::vector<SDOperand> &Ops) const {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001851 Ops.push_back(DAG.getConstant(Code | (Regs.size() << 3), MVT::i32));
1852 for (unsigned i = 0, e = Regs.size(); i != e; ++i)
1853 Ops.push_back(DAG.getRegister(Regs[i], RegVT));
1854}
Chris Lattner864635a2006-02-22 22:37:12 +00001855
1856/// isAllocatableRegister - If the specified register is safe to allocate,
1857/// i.e. it isn't a stack pointer or some other special register, return the
1858/// register class for the register. Otherwise, return null.
1859static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001860isAllocatableRegister(unsigned Reg, MachineFunction &MF,
1861 const TargetLowering &TLI, const MRegisterInfo *MRI) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001862 MVT::ValueType FoundVT = MVT::Other;
1863 const TargetRegisterClass *FoundRC = 0;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001864 for (MRegisterInfo::regclass_iterator RCI = MRI->regclass_begin(),
1865 E = MRI->regclass_end(); RCI != E; ++RCI) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001866 MVT::ValueType ThisVT = MVT::Other;
1867
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001868 const TargetRegisterClass *RC = *RCI;
1869 // If none of the the value types for this register class are valid, we
1870 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001871 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
1872 I != E; ++I) {
1873 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001874 // If we have already found this register in a different register class,
1875 // choose the one with the largest VT specified. For example, on
1876 // PowerPC, we favor f64 register classes over f32.
1877 if (FoundVT == MVT::Other ||
1878 MVT::getSizeInBits(FoundVT) < MVT::getSizeInBits(*I)) {
1879 ThisVT = *I;
1880 break;
1881 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001882 }
1883 }
1884
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001885 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001886
Chris Lattner864635a2006-02-22 22:37:12 +00001887 // NOTE: This isn't ideal. In particular, this might allocate the
1888 // frame pointer in functions that need it (due to them not being taken
1889 // out of allocation, because a variable sized allocation hasn't been seen
1890 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001891 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
1892 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001893 if (*I == Reg) {
1894 // We found a matching register class. Keep looking at others in case
1895 // we find one with larger registers that this physreg is also in.
1896 FoundRC = RC;
1897 FoundVT = ThisVT;
1898 break;
1899 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00001900 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001901 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00001902}
1903
1904RegsForValue SelectionDAGLowering::
1905GetRegistersForValue(const std::string &ConstrCode,
1906 MVT::ValueType VT, bool isOutReg, bool isInReg,
1907 std::set<unsigned> &OutputRegs,
1908 std::set<unsigned> &InputRegs) {
1909 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
1910 TLI.getRegForInlineAsmConstraint(ConstrCode, VT);
1911 std::vector<unsigned> Regs;
1912
1913 unsigned NumRegs = VT != MVT::Other ? TLI.getNumElements(VT) : 1;
1914 MVT::ValueType RegVT;
1915 MVT::ValueType ValueVT = VT;
1916
1917 if (PhysReg.first) {
1918 if (VT == MVT::Other)
1919 ValueVT = *PhysReg.second->vt_begin();
Chris Lattnercf752aa2006-06-08 18:22:48 +00001920
1921 // Get the actual register value type. This is important, because the user
1922 // may have asked for (e.g.) the AX register in i32 type. We need to
1923 // remember that AX is actually i16 to get the right extension.
1924 RegVT = *PhysReg.second->vt_begin();
Chris Lattner864635a2006-02-22 22:37:12 +00001925
1926 // This is a explicit reference to a physical register.
1927 Regs.push_back(PhysReg.first);
1928
1929 // If this is an expanded reference, add the rest of the regs to Regs.
1930 if (NumRegs != 1) {
Chris Lattner864635a2006-02-22 22:37:12 +00001931 TargetRegisterClass::iterator I = PhysReg.second->begin();
1932 TargetRegisterClass::iterator E = PhysReg.second->end();
1933 for (; *I != PhysReg.first; ++I)
1934 assert(I != E && "Didn't find reg!");
1935
1936 // Already added the first reg.
1937 --NumRegs; ++I;
1938 for (; NumRegs; --NumRegs, ++I) {
1939 assert(I != E && "Ran out of registers to allocate!");
1940 Regs.push_back(*I);
1941 }
1942 }
1943 return RegsForValue(Regs, RegVT, ValueVT);
1944 }
1945
1946 // This is a reference to a register class. Allocate NumRegs consecutive,
1947 // available, registers from the class.
1948 std::vector<unsigned> RegClassRegs =
1949 TLI.getRegClassForInlineAsmConstraint(ConstrCode, VT);
1950
1951 const MRegisterInfo *MRI = DAG.getTarget().getRegisterInfo();
1952 MachineFunction &MF = *CurMBB->getParent();
1953 unsigned NumAllocated = 0;
1954 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
1955 unsigned Reg = RegClassRegs[i];
1956 // See if this register is available.
1957 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
1958 (isInReg && InputRegs.count(Reg))) { // Already used.
1959 // Make sure we find consecutive registers.
1960 NumAllocated = 0;
1961 continue;
1962 }
1963
1964 // Check to see if this register is allocatable (i.e. don't give out the
1965 // stack pointer).
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001966 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, MRI);
Chris Lattner864635a2006-02-22 22:37:12 +00001967 if (!RC) {
1968 // Make sure we find consecutive registers.
1969 NumAllocated = 0;
1970 continue;
1971 }
1972
1973 // Okay, this register is good, we can use it.
1974 ++NumAllocated;
1975
1976 // If we allocated enough consecutive
1977 if (NumAllocated == NumRegs) {
1978 unsigned RegStart = (i-NumAllocated)+1;
1979 unsigned RegEnd = i+1;
1980 // Mark all of the allocated registers used.
1981 for (unsigned i = RegStart; i != RegEnd; ++i) {
1982 unsigned Reg = RegClassRegs[i];
1983 Regs.push_back(Reg);
1984 if (isOutReg) OutputRegs.insert(Reg); // Mark reg used.
1985 if (isInReg) InputRegs.insert(Reg); // Mark reg used.
1986 }
1987
1988 return RegsForValue(Regs, *RC->vt_begin(), VT);
1989 }
1990 }
1991
1992 // Otherwise, we couldn't allocate enough registers for this.
1993 return RegsForValue();
Chris Lattner4e4b5762006-02-01 18:59:47 +00001994}
1995
Chris Lattner864635a2006-02-22 22:37:12 +00001996
Chris Lattnerce7518c2006-01-26 22:24:51 +00001997/// visitInlineAsm - Handle a call to an InlineAsm object.
1998///
1999void SelectionDAGLowering::visitInlineAsm(CallInst &I) {
2000 InlineAsm *IA = cast<InlineAsm>(I.getOperand(0));
2001
2002 SDOperand AsmStr = DAG.getTargetExternalSymbol(IA->getAsmString().c_str(),
2003 MVT::Other);
2004
2005 // Note, we treat inline asms both with and without side-effects as the same.
2006 // If an inline asm doesn't have side effects and doesn't access memory, we
2007 // could not choose to not chain it.
2008 bool hasSideEffects = IA->hasSideEffects();
2009
Chris Lattner2cc2f662006-02-01 01:28:23 +00002010 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
Chris Lattner1efa40f2006-02-22 00:56:39 +00002011 std::vector<MVT::ValueType> ConstraintVTs;
Chris Lattnerce7518c2006-01-26 22:24:51 +00002012
2013 /// AsmNodeOperands - A list of pairs. The first element is a register, the
2014 /// second is a bitfield where bit #0 is set if it is a use and bit #1 is set
2015 /// if it is a def of that register.
2016 std::vector<SDOperand> AsmNodeOperands;
2017 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
2018 AsmNodeOperands.push_back(AsmStr);
2019
2020 SDOperand Chain = getRoot();
2021 SDOperand Flag;
2022
Chris Lattner4e4b5762006-02-01 18:59:47 +00002023 // We fully assign registers here at isel time. This is not optimal, but
2024 // should work. For register classes that correspond to LLVM classes, we
2025 // could let the LLVM RA do its thing, but we currently don't. Do a prepass
2026 // over the constraints, collecting fixed registers that we know we can't use.
2027 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002028 unsigned OpNum = 1;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002029 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
2030 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2031 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner2223aea2006-02-02 00:25:23 +00002032
Chris Lattner1efa40f2006-02-22 00:56:39 +00002033 MVT::ValueType OpVT;
2034
2035 // Compute the value type for each operand and add it to ConstraintVTs.
2036 switch (Constraints[i].Type) {
2037 case InlineAsm::isOutput:
2038 if (!Constraints[i].isIndirectOutput) {
2039 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
2040 OpVT = TLI.getValueType(I.getType());
2041 } else {
Chris Lattner22873462006-02-27 23:45:39 +00002042 const Type *OpTy = I.getOperand(OpNum)->getType();
Chris Lattner1efa40f2006-02-22 00:56:39 +00002043 OpVT = TLI.getValueType(cast<PointerType>(OpTy)->getElementType());
2044 OpNum++; // Consumes a call operand.
2045 }
2046 break;
2047 case InlineAsm::isInput:
2048 OpVT = TLI.getValueType(I.getOperand(OpNum)->getType());
2049 OpNum++; // Consumes a call operand.
2050 break;
2051 case InlineAsm::isClobber:
2052 OpVT = MVT::Other;
2053 break;
2054 }
2055
2056 ConstraintVTs.push_back(OpVT);
2057
Chris Lattner864635a2006-02-22 22:37:12 +00002058 if (TLI.getRegForInlineAsmConstraint(ConstraintCode, OpVT).first == 0)
2059 continue; // Not assigned a fixed reg.
Chris Lattner1efa40f2006-02-22 00:56:39 +00002060
Chris Lattner864635a2006-02-22 22:37:12 +00002061 // Build a list of regs that this operand uses. This always has a single
2062 // element for promoted/expanded operands.
2063 RegsForValue Regs = GetRegistersForValue(ConstraintCode, OpVT,
2064 false, false,
2065 OutputRegs, InputRegs);
Chris Lattner4e4b5762006-02-01 18:59:47 +00002066
2067 switch (Constraints[i].Type) {
2068 case InlineAsm::isOutput:
2069 // We can't assign any other output to this register.
Chris Lattner864635a2006-02-22 22:37:12 +00002070 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002071 // If this is an early-clobber output, it cannot be assigned to the same
2072 // value as the input reg.
Chris Lattner2223aea2006-02-02 00:25:23 +00002073 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
Chris Lattner864635a2006-02-22 22:37:12 +00002074 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002075 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002076 case InlineAsm::isInput:
2077 // We can't assign any other input to this register.
Chris Lattner864635a2006-02-22 22:37:12 +00002078 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1efa40f2006-02-22 00:56:39 +00002079 break;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002080 case InlineAsm::isClobber:
2081 // Clobbered regs cannot be used as inputs or outputs.
Chris Lattner864635a2006-02-22 22:37:12 +00002082 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2083 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002084 break;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002085 }
2086 }
Chris Lattner2cc2f662006-02-01 01:28:23 +00002087
Chris Lattner0f0b7d42006-02-21 23:12:12 +00002088 // Loop over all of the inputs, copying the operand values into the
2089 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00002090 RegsForValue RetValRegs;
2091 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002092 OpNum = 1;
Chris Lattner0f0b7d42006-02-21 23:12:12 +00002093
Chris Lattner6656dd12006-01-31 02:03:41 +00002094 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00002095 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2096 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner1efa40f2006-02-22 00:56:39 +00002097
Chris Lattner2cc2f662006-02-01 01:28:23 +00002098 switch (Constraints[i].Type) {
2099 case InlineAsm::isOutput: {
Chris Lattner22873462006-02-27 23:45:39 +00002100 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2101 if (ConstraintCode.size() == 1) // not a physreg name.
2102 CTy = TLI.getConstraintType(ConstraintCode[0]);
2103
2104 if (CTy == TargetLowering::C_Memory) {
2105 // Memory output.
2106 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
2107
2108 // Check that the operand (the address to store to) isn't a float.
2109 if (!MVT::isInteger(InOperandVal.getValueType()))
2110 assert(0 && "MATCH FAIL!");
2111
2112 if (!Constraints[i].isIndirectOutput)
2113 assert(0 && "MATCH FAIL!");
2114
2115 OpNum++; // Consumes a call operand.
2116
2117 // Extend/truncate to the right pointer type if needed.
2118 MVT::ValueType PtrType = TLI.getPointerTy();
2119 if (InOperandVal.getValueType() < PtrType)
2120 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2121 else if (InOperandVal.getValueType() > PtrType)
2122 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2123
2124 // Add information to the INLINEASM node to know about this output.
2125 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2126 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2127 AsmNodeOperands.push_back(InOperandVal);
2128 break;
2129 }
2130
2131 // Otherwise, this is a register output.
2132 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2133
Chris Lattner864635a2006-02-22 22:37:12 +00002134 // If this is an early-clobber output, or if there is an input
2135 // constraint that matches this, we need to reserve the input register
2136 // so no other inputs allocate to it.
2137 bool UsesInputRegister = false;
2138 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
2139 UsesInputRegister = true;
2140
2141 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00002142 // we can use.
Chris Lattner864635a2006-02-22 22:37:12 +00002143 RegsForValue Regs =
2144 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2145 true, UsesInputRegister,
2146 OutputRegs, InputRegs);
2147 assert(!Regs.Regs.empty() && "Couldn't allocate output reg!");
Chris Lattner1efa40f2006-02-22 00:56:39 +00002148
Chris Lattner2cc2f662006-02-01 01:28:23 +00002149 if (!Constraints[i].isIndirectOutput) {
Chris Lattner864635a2006-02-22 22:37:12 +00002150 assert(RetValRegs.Regs.empty() &&
Chris Lattner2cc2f662006-02-01 01:28:23 +00002151 "Cannot have multiple output constraints yet!");
Chris Lattner2cc2f662006-02-01 01:28:23 +00002152 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
Chris Lattner864635a2006-02-22 22:37:12 +00002153 RetValRegs = Regs;
Chris Lattner2cc2f662006-02-01 01:28:23 +00002154 } else {
Chris Lattner22873462006-02-27 23:45:39 +00002155 IndirectStoresToEmit.push_back(std::make_pair(Regs,
2156 I.getOperand(OpNum)));
Chris Lattner2cc2f662006-02-01 01:28:23 +00002157 OpNum++; // Consumes a call operand.
2158 }
Chris Lattner6656dd12006-01-31 02:03:41 +00002159
2160 // Add information to the INLINEASM node to know that this register is
2161 // set.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002162 Regs.AddInlineAsmOperands(2 /*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002163 break;
2164 }
2165 case InlineAsm::isInput: {
Chris Lattner22873462006-02-27 23:45:39 +00002166 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
Chris Lattner4e4b5762006-02-01 18:59:47 +00002167 OpNum++; // Consumes a call operand.
Chris Lattner3d81fee2006-02-04 02:16:44 +00002168
Chris Lattner2223aea2006-02-02 00:25:23 +00002169 if (isdigit(ConstraintCode[0])) { // Matching constraint?
2170 // If this is required to match an output register we have already set,
2171 // just use its register.
2172 unsigned OperandNo = atoi(ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00002173
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002174 // Scan until we find the definition we already emitted of this operand.
2175 // When we find it, create a RegsForValue operand.
2176 unsigned CurOp = 2; // The first operand.
2177 for (; OperandNo; --OperandNo) {
2178 // Advance to the next operand.
2179 unsigned NumOps =
2180 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattnera15cf702006-07-20 19:02:21 +00002181 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
2182 (NumOps & 7) == 4 /*MEM*/) &&
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002183 "Skipped past definitions?");
2184 CurOp += (NumOps>>3)+1;
2185 }
2186
2187 unsigned NumOps =
2188 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2189 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2190 "Skipped past definitions?");
2191
2192 // Add NumOps>>3 registers to MatchedRegs.
2193 RegsForValue MatchedRegs;
2194 MatchedRegs.ValueVT = InOperandVal.getValueType();
2195 MatchedRegs.RegVT = AsmNodeOperands[CurOp+1].getValueType();
2196 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
2197 unsigned Reg=cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
2198 MatchedRegs.Regs.push_back(Reg);
2199 }
2200
2201 // Use the produced MatchedRegs object to
Evan Chenga8441262006-06-15 08:11:54 +00002202 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag,
2203 TLI.getPointerTy());
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002204 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002205 break;
Chris Lattner2223aea2006-02-02 00:25:23 +00002206 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00002207
2208 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2209 if (ConstraintCode.size() == 1) // not a physreg name.
2210 CTy = TLI.getConstraintType(ConstraintCode[0]);
2211
2212 if (CTy == TargetLowering::C_Other) {
2213 if (!TLI.isOperandValidForConstraint(InOperandVal, ConstraintCode[0]))
2214 assert(0 && "MATCH FAIL!");
2215
2216 // Add information to the INLINEASM node to know about this input.
2217 unsigned ResOpType = 3 /*IMM*/ | (1 << 3);
2218 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2219 AsmNodeOperands.push_back(InOperandVal);
2220 break;
2221 } else if (CTy == TargetLowering::C_Memory) {
2222 // Memory input.
2223
2224 // Check that the operand isn't a float.
2225 if (!MVT::isInteger(InOperandVal.getValueType()))
2226 assert(0 && "MATCH FAIL!");
2227
2228 // Extend/truncate to the right pointer type if needed.
2229 MVT::ValueType PtrType = TLI.getPointerTy();
2230 if (InOperandVal.getValueType() < PtrType)
2231 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2232 else if (InOperandVal.getValueType() > PtrType)
2233 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2234
2235 // Add information to the INLINEASM node to know about this input.
2236 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2237 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2238 AsmNodeOperands.push_back(InOperandVal);
2239 break;
2240 }
2241
2242 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2243
2244 // Copy the input into the appropriate registers.
2245 RegsForValue InRegs =
2246 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2247 false, true, OutputRegs, InputRegs);
2248 // FIXME: should be match fail.
2249 assert(!InRegs.Regs.empty() && "Couldn't allocate input reg!");
2250
Evan Chenga8441262006-06-15 08:11:54 +00002251 InRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag, TLI.getPointerTy());
Chris Lattner87bc3bd2006-02-24 01:11:24 +00002252
2253 InRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002254 break;
2255 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002256 case InlineAsm::isClobber: {
2257 RegsForValue ClobberedRegs =
2258 GetRegistersForValue(ConstraintCode, MVT::Other, false, false,
2259 OutputRegs, InputRegs);
2260 // Add the clobbered value to the operand list, so that the register
2261 // allocator is aware that the physreg got clobbered.
2262 if (!ClobberedRegs.Regs.empty())
2263 ClobberedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002264 break;
2265 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002266 }
Chris Lattner6656dd12006-01-31 02:03:41 +00002267 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00002268
2269 // Finish up input operands.
2270 AsmNodeOperands[0] = Chain;
2271 if (Flag.Val) AsmNodeOperands.push_back(Flag);
2272
2273 std::vector<MVT::ValueType> VTs;
2274 VTs.push_back(MVT::Other);
2275 VTs.push_back(MVT::Flag);
2276 Chain = DAG.getNode(ISD::INLINEASM, VTs, AsmNodeOperands);
2277 Flag = Chain.getValue(1);
2278
Chris Lattner6656dd12006-01-31 02:03:41 +00002279 // If this asm returns a register value, copy the result from that register
2280 // and set it as the value of the call.
Chris Lattner864635a2006-02-22 22:37:12 +00002281 if (!RetValRegs.Regs.empty())
2282 setValue(&I, RetValRegs.getCopyFromRegs(DAG, Chain, Flag));
Chris Lattnerce7518c2006-01-26 22:24:51 +00002283
Chris Lattner6656dd12006-01-31 02:03:41 +00002284 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
2285
2286 // Process indirect outputs, first output all of the flagged copies out of
2287 // physregs.
2288 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00002289 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00002290 Value *Ptr = IndirectStoresToEmit[i].second;
Chris Lattner864635a2006-02-22 22:37:12 +00002291 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, Flag);
2292 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00002293 }
2294
2295 // Emit the non-flagged stores from the physregs.
2296 std::vector<SDOperand> OutChains;
2297 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
2298 OutChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
2299 StoresToEmit[i].first,
2300 getValue(StoresToEmit[i].second),
2301 DAG.getSrcValue(StoresToEmit[i].second)));
2302 if (!OutChains.empty())
2303 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattnerce7518c2006-01-26 22:24:51 +00002304 DAG.setRoot(Chain);
2305}
2306
2307
Chris Lattner1c08c712005-01-07 07:47:53 +00002308void SelectionDAGLowering::visitMalloc(MallocInst &I) {
2309 SDOperand Src = getValue(I.getOperand(0));
2310
2311 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00002312
2313 if (IntPtr < Src.getValueType())
2314 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
2315 else if (IntPtr > Src.getValueType())
2316 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00002317
2318 // Scale the source by the type size.
Owen Andersona69571c2006-05-03 01:29:57 +00002319 uint64_t ElementSize = TD->getTypeSize(I.getType()->getElementType());
Chris Lattner1c08c712005-01-07 07:47:53 +00002320 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
2321 Src, getIntPtrConstant(ElementSize));
2322
2323 std::vector<std::pair<SDOperand, const Type*> > Args;
Owen Andersona69571c2006-05-03 01:29:57 +00002324 Args.push_back(std::make_pair(Src, TLI.getTargetData()->getIntPtrType()));
Chris Lattnercf5734d2005-01-08 19:26:18 +00002325
2326 std::pair<SDOperand,SDOperand> Result =
Chris Lattneradf6a962005-05-13 18:50:42 +00002327 TLI.LowerCallTo(getRoot(), I.getType(), false, CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00002328 DAG.getExternalSymbol("malloc", IntPtr),
2329 Args, DAG);
2330 setValue(&I, Result.first); // Pointers always fit in registers
2331 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002332}
2333
2334void SelectionDAGLowering::visitFree(FreeInst &I) {
2335 std::vector<std::pair<SDOperand, const Type*> > Args;
2336 Args.push_back(std::make_pair(getValue(I.getOperand(0)),
Owen Andersona69571c2006-05-03 01:29:57 +00002337 TLI.getTargetData()->getIntPtrType()));
Chris Lattner1c08c712005-01-07 07:47:53 +00002338 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattnercf5734d2005-01-08 19:26:18 +00002339 std::pair<SDOperand,SDOperand> Result =
Chris Lattneradf6a962005-05-13 18:50:42 +00002340 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00002341 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
2342 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002343}
2344
Chris Lattner025c39b2005-08-26 20:54:47 +00002345// InsertAtEndOfBasicBlock - This method should be implemented by targets that
2346// mark instructions with the 'usesCustomDAGSchedInserter' flag. These
2347// instructions are special in various ways, which require special support to
2348// insert. The specified MachineInstr is created but not inserted into any
2349// basic blocks, and the scheduler passes ownership of it to this method.
2350MachineBasicBlock *TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
2351 MachineBasicBlock *MBB) {
2352 std::cerr << "If a target marks an instruction with "
2353 "'usesCustomDAGSchedInserter', it must implement "
2354 "TargetLowering::InsertAtEndOfBasicBlock!\n";
2355 abort();
2356 return 0;
2357}
2358
Chris Lattner39ae3622005-01-09 00:00:49 +00002359void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002360 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
2361 getValue(I.getOperand(1)),
2362 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00002363}
2364
2365void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002366 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
2367 getValue(I.getOperand(0)),
2368 DAG.getSrcValue(I.getOperand(0)));
2369 setValue(&I, V);
2370 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002371}
2372
2373void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002374 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
2375 getValue(I.getOperand(1)),
2376 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00002377}
2378
2379void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002380 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
2381 getValue(I.getOperand(1)),
2382 getValue(I.getOperand(2)),
2383 DAG.getSrcValue(I.getOperand(1)),
2384 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00002385}
2386
Chris Lattnerfdfded52006-04-12 16:20:43 +00002387/// TargetLowering::LowerArguments - This is the default LowerArguments
2388/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002389/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
2390/// integrated into SDISel.
Chris Lattnerfdfded52006-04-12 16:20:43 +00002391std::vector<SDOperand>
2392TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
2393 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
2394 std::vector<SDOperand> Ops;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00002395 Ops.push_back(DAG.getRoot());
Chris Lattnerfdfded52006-04-12 16:20:43 +00002396 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
2397 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
2398
2399 // Add one result value for each formal argument.
2400 std::vector<MVT::ValueType> RetVals;
2401 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2402 MVT::ValueType VT = getValueType(I->getType());
2403
2404 switch (getTypeAction(VT)) {
2405 default: assert(0 && "Unknown type action!");
2406 case Legal:
2407 RetVals.push_back(VT);
2408 break;
2409 case Promote:
2410 RetVals.push_back(getTypeToTransformTo(VT));
2411 break;
2412 case Expand:
2413 if (VT != MVT::Vector) {
2414 // If this is a large integer, it needs to be broken up into small
2415 // integers. Figure out what the destination type is and how many small
2416 // integers it turns into.
2417 MVT::ValueType NVT = getTypeToTransformTo(VT);
2418 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2419 for (unsigned i = 0; i != NumVals; ++i)
2420 RetVals.push_back(NVT);
2421 } else {
2422 // Otherwise, this is a vector type. We only support legal vectors
2423 // right now.
2424 unsigned NumElems = cast<PackedType>(I->getType())->getNumElements();
2425 const Type *EltTy = cast<PackedType>(I->getType())->getElementType();
Evan Chengf7179bb2006-04-27 08:29:42 +00002426
Chris Lattnerfdfded52006-04-12 16:20:43 +00002427 // Figure out if there is a Packed type corresponding to this Vector
2428 // type. If so, convert to the packed type.
2429 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2430 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2431 RetVals.push_back(TVT);
2432 } else {
2433 assert(0 && "Don't support illegal by-val vector arguments yet!");
2434 }
2435 }
2436 break;
2437 }
2438 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00002439
Chris Lattner8c0c10c2006-05-16 06:45:34 +00002440 RetVals.push_back(MVT::Other);
Chris Lattnerfdfded52006-04-12 16:20:43 +00002441
2442 // Create the node.
2443 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, RetVals, Ops).Val;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00002444
2445 DAG.setRoot(SDOperand(Result, Result->getNumValues()-1));
Chris Lattnerfdfded52006-04-12 16:20:43 +00002446
2447 // Set up the return result vector.
2448 Ops.clear();
2449 unsigned i = 0;
2450 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2451 MVT::ValueType VT = getValueType(I->getType());
2452
2453 switch (getTypeAction(VT)) {
2454 default: assert(0 && "Unknown type action!");
2455 case Legal:
2456 Ops.push_back(SDOperand(Result, i++));
2457 break;
2458 case Promote: {
2459 SDOperand Op(Result, i++);
2460 if (MVT::isInteger(VT)) {
2461 unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext
2462 : ISD::AssertZext;
2463 Op = DAG.getNode(AssertOp, Op.getValueType(), Op, DAG.getValueType(VT));
2464 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2465 } else {
2466 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2467 Op = DAG.getNode(ISD::FP_ROUND, VT, Op);
2468 }
2469 Ops.push_back(Op);
2470 break;
2471 }
2472 case Expand:
2473 if (VT != MVT::Vector) {
2474 // If this is a large integer, it needs to be reassembled from small
2475 // integers. Figure out what the source elt type is and how many small
2476 // integers it is.
2477 MVT::ValueType NVT = getTypeToTransformTo(VT);
2478 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2479 if (NumVals == 2) {
2480 SDOperand Lo = SDOperand(Result, i++);
2481 SDOperand Hi = SDOperand(Result, i++);
2482
2483 if (!isLittleEndian())
2484 std::swap(Lo, Hi);
2485
2486 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi));
2487 } else {
2488 // Value scalarized into many values. Unimp for now.
2489 assert(0 && "Cannot expand i64 -> i16 yet!");
2490 }
2491 } else {
2492 // Otherwise, this is a vector type. We only support legal vectors
2493 // right now.
Evan Cheng020c41f2006-04-28 05:25:15 +00002494 const PackedType *PTy = cast<PackedType>(I->getType());
2495 unsigned NumElems = PTy->getNumElements();
2496 const Type *EltTy = PTy->getElementType();
Evan Chengf7179bb2006-04-27 08:29:42 +00002497
Chris Lattnerfdfded52006-04-12 16:20:43 +00002498 // Figure out if there is a Packed type corresponding to this Vector
2499 // type. If so, convert to the packed type.
2500 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
Chris Lattnerd202ca42006-05-17 20:49:36 +00002501 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Evan Cheng020c41f2006-04-28 05:25:15 +00002502 SDOperand N = SDOperand(Result, i++);
2503 // Handle copies from generic vectors to registers.
Chris Lattnerd202ca42006-05-17 20:49:36 +00002504 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
2505 DAG.getConstant(NumElems, MVT::i32),
2506 DAG.getValueType(getValueType(EltTy)));
2507 Ops.push_back(N);
2508 } else {
Chris Lattnerfdfded52006-04-12 16:20:43 +00002509 assert(0 && "Don't support illegal by-val vector arguments yet!");
Chris Lattnerda098e72006-05-16 23:39:44 +00002510 abort();
Chris Lattnerfdfded52006-04-12 16:20:43 +00002511 }
2512 }
2513 break;
2514 }
2515 }
2516 return Ops;
2517}
2518
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002519
2520/// TargetLowering::LowerCallTo - This is the default LowerCallTo
2521/// implementation, which just inserts an ISD::CALL node, which is later custom
2522/// lowered by the target to something concrete. FIXME: When all targets are
2523/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
2524std::pair<SDOperand, SDOperand>
2525TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
2526 unsigned CallingConv, bool isTailCall,
2527 SDOperand Callee,
2528 ArgListTy &Args, SelectionDAG &DAG) {
2529 std::vector<SDOperand> Ops;
2530 Ops.push_back(Chain); // Op#0 - Chain
2531 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
2532 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
2533 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
2534 Ops.push_back(Callee);
2535
2536 // Handle all of the outgoing arguments.
2537 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
2538 MVT::ValueType VT = getValueType(Args[i].second);
2539 SDOperand Op = Args[i].first;
Evan Chengf6d62c22006-05-25 00:55:32 +00002540 bool isSigned = Args[i].second->isSigned();
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002541 switch (getTypeAction(VT)) {
2542 default: assert(0 && "Unknown type action!");
2543 case Legal:
2544 Ops.push_back(Op);
Evan Chengd61c4822006-05-26 23:13:20 +00002545 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002546 break;
2547 case Promote:
2548 if (MVT::isInteger(VT)) {
Evan Chengf6d62c22006-05-25 00:55:32 +00002549 unsigned ExtOp = isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002550 Op = DAG.getNode(ExtOp, getTypeToTransformTo(VT), Op);
2551 } else {
2552 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2553 Op = DAG.getNode(ISD::FP_EXTEND, getTypeToTransformTo(VT), Op);
2554 }
2555 Ops.push_back(Op);
Evan Chengd61c4822006-05-26 23:13:20 +00002556 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002557 break;
2558 case Expand:
2559 if (VT != MVT::Vector) {
2560 // If this is a large integer, it needs to be broken down into small
2561 // integers. Figure out what the source elt type is and how many small
2562 // integers it is.
2563 MVT::ValueType NVT = getTypeToTransformTo(VT);
2564 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2565 if (NumVals == 2) {
2566 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2567 DAG.getConstant(0, getPointerTy()));
2568 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2569 DAG.getConstant(1, getPointerTy()));
2570 if (!isLittleEndian())
2571 std::swap(Lo, Hi);
2572
2573 Ops.push_back(Lo);
Evan Chengd61c4822006-05-26 23:13:20 +00002574 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002575 Ops.push_back(Hi);
Evan Chengd61c4822006-05-26 23:13:20 +00002576 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002577 } else {
2578 // Value scalarized into many values. Unimp for now.
2579 assert(0 && "Cannot expand i64 -> i16 yet!");
2580 }
2581 } else {
Chris Lattnerda098e72006-05-16 23:39:44 +00002582 // Otherwise, this is a vector type. We only support legal vectors
2583 // right now.
2584 const PackedType *PTy = cast<PackedType>(Args[i].second);
2585 unsigned NumElems = PTy->getNumElements();
2586 const Type *EltTy = PTy->getElementType();
2587
2588 // Figure out if there is a Packed type corresponding to this Vector
2589 // type. If so, convert to the packed type.
2590 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
Chris Lattner1b8daae2006-05-17 20:43:21 +00002591 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2592 // Insert a VBIT_CONVERT of the MVT::Vector type to the packed type.
2593 Op = DAG.getNode(ISD::VBIT_CONVERT, TVT, Op);
2594 Ops.push_back(Op);
Evan Chengd61c4822006-05-26 23:13:20 +00002595 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattner1b8daae2006-05-17 20:43:21 +00002596 } else {
Chris Lattnerda098e72006-05-16 23:39:44 +00002597 assert(0 && "Don't support illegal by-val vector call args yet!");
2598 abort();
2599 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002600 }
2601 break;
2602 }
2603 }
2604
2605 // Figure out the result value types.
2606 std::vector<MVT::ValueType> RetTys;
2607
2608 if (RetTy != Type::VoidTy) {
2609 MVT::ValueType VT = getValueType(RetTy);
2610 switch (getTypeAction(VT)) {
2611 default: assert(0 && "Unknown type action!");
2612 case Legal:
2613 RetTys.push_back(VT);
2614 break;
2615 case Promote:
2616 RetTys.push_back(getTypeToTransformTo(VT));
2617 break;
2618 case Expand:
2619 if (VT != MVT::Vector) {
2620 // If this is a large integer, it needs to be reassembled from small
2621 // integers. Figure out what the source elt type is and how many small
2622 // integers it is.
2623 MVT::ValueType NVT = getTypeToTransformTo(VT);
2624 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2625 for (unsigned i = 0; i != NumVals; ++i)
2626 RetTys.push_back(NVT);
2627 } else {
Chris Lattnerda098e72006-05-16 23:39:44 +00002628 // Otherwise, this is a vector type. We only support legal vectors
2629 // right now.
2630 const PackedType *PTy = cast<PackedType>(RetTy);
2631 unsigned NumElems = PTy->getNumElements();
2632 const Type *EltTy = PTy->getElementType();
2633
2634 // Figure out if there is a Packed type corresponding to this Vector
2635 // type. If so, convert to the packed type.
2636 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2637 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2638 RetTys.push_back(TVT);
2639 } else {
2640 assert(0 && "Don't support illegal by-val vector call results yet!");
2641 abort();
2642 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002643 }
2644 }
2645 }
2646
2647 RetTys.push_back(MVT::Other); // Always has a chain.
2648
2649 // Finally, create the CALL node.
2650 SDOperand Res = DAG.getNode(ISD::CALL, RetTys, Ops);
2651
2652 // This returns a pair of operands. The first element is the
2653 // return value for the function (if RetTy is not VoidTy). The second
2654 // element is the outgoing token chain.
2655 SDOperand ResVal;
2656 if (RetTys.size() != 1) {
2657 MVT::ValueType VT = getValueType(RetTy);
2658 if (RetTys.size() == 2) {
2659 ResVal = Res;
2660
2661 // If this value was promoted, truncate it down.
2662 if (ResVal.getValueType() != VT) {
Chris Lattnerda098e72006-05-16 23:39:44 +00002663 if (VT == MVT::Vector) {
2664 // Insert a VBITCONVERT to convert from the packed result type to the
2665 // MVT::Vector type.
2666 unsigned NumElems = cast<PackedType>(RetTy)->getNumElements();
2667 const Type *EltTy = cast<PackedType>(RetTy)->getElementType();
2668
2669 // Figure out if there is a Packed type corresponding to this Vector
2670 // type. If so, convert to the packed type.
2671 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2672 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Chris Lattnerda098e72006-05-16 23:39:44 +00002673 // Insert a VBIT_CONVERT of the FORMAL_ARGUMENTS to a
2674 // "N x PTyElementVT" MVT::Vector type.
2675 ResVal = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, ResVal,
Chris Lattnerd202ca42006-05-17 20:49:36 +00002676 DAG.getConstant(NumElems, MVT::i32),
2677 DAG.getValueType(getValueType(EltTy)));
Chris Lattnerda098e72006-05-16 23:39:44 +00002678 } else {
2679 abort();
2680 }
2681 } else if (MVT::isInteger(VT)) {
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002682 unsigned AssertOp = RetTy->isSigned() ?
2683 ISD::AssertSext : ISD::AssertZext;
2684 ResVal = DAG.getNode(AssertOp, ResVal.getValueType(), ResVal,
2685 DAG.getValueType(VT));
2686 ResVal = DAG.getNode(ISD::TRUNCATE, VT, ResVal);
2687 } else {
2688 assert(MVT::isFloatingPoint(VT));
2689 ResVal = DAG.getNode(ISD::FP_ROUND, VT, ResVal);
2690 }
2691 }
2692 } else if (RetTys.size() == 3) {
2693 ResVal = DAG.getNode(ISD::BUILD_PAIR, VT,
2694 Res.getValue(0), Res.getValue(1));
2695
2696 } else {
2697 assert(0 && "Case not handled yet!");
2698 }
2699 }
2700
2701 return std::make_pair(ResVal, Res.getValue(Res.Val->getNumValues()-1));
2702}
2703
2704
2705
Chris Lattner39ae3622005-01-09 00:00:49 +00002706// It is always conservatively correct for llvm.returnaddress and
2707// llvm.frameaddress to return 0.
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002708//
2709// FIXME: Change this to insert a FRAMEADDR/RETURNADDR node, and have that be
2710// expanded to 0 if the target wants.
Chris Lattner39ae3622005-01-09 00:00:49 +00002711std::pair<SDOperand, SDOperand>
2712TargetLowering::LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain,
2713 unsigned Depth, SelectionDAG &DAG) {
2714 return std::make_pair(DAG.getConstant(0, getPointerTy()), Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00002715}
2716
Chris Lattner50381b62005-05-14 05:50:48 +00002717SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00002718 assert(0 && "LowerOperation not implemented for this target!");
2719 abort();
Misha Brukmand3f03e42005-02-17 21:39:27 +00002720 return SDOperand();
Chris Lattner171453a2005-01-16 07:28:41 +00002721}
2722
Nate Begeman0aed7842006-01-28 03:14:31 +00002723SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
2724 SelectionDAG &DAG) {
2725 assert(0 && "CustomPromoteOperation not implemented for this target!");
2726 abort();
2727 return SDOperand();
2728}
2729
Chris Lattner39ae3622005-01-09 00:00:49 +00002730void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) {
2731 unsigned Depth = (unsigned)cast<ConstantUInt>(I.getOperand(1))->getValue();
2732 std::pair<SDOperand,SDOperand> Result =
Chris Lattnera651cf62005-01-17 19:43:36 +00002733 TLI.LowerFrameReturnAddress(isFrame, getRoot(), Depth, DAG);
Chris Lattner39ae3622005-01-09 00:00:49 +00002734 setValue(&I, Result.first);
2735 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002736}
2737
Evan Cheng74d0aa92006-02-15 21:59:04 +00002738/// getMemsetValue - Vectorized representation of the memset value
Evan Cheng1db92f92006-02-14 08:22:34 +00002739/// operand.
2740static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT,
Evan Chenga47876d2006-02-15 22:12:35 +00002741 SelectionDAG &DAG) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002742 MVT::ValueType CurVT = VT;
2743 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
2744 uint64_t Val = C->getValue() & 255;
2745 unsigned Shift = 8;
2746 while (CurVT != MVT::i8) {
2747 Val = (Val << Shift) | Val;
2748 Shift <<= 1;
2749 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002750 }
2751 return DAG.getConstant(Val, VT);
2752 } else {
2753 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2754 unsigned Shift = 8;
2755 while (CurVT != MVT::i8) {
2756 Value =
2757 DAG.getNode(ISD::OR, VT,
2758 DAG.getNode(ISD::SHL, VT, Value,
2759 DAG.getConstant(Shift, MVT::i8)), Value);
2760 Shift <<= 1;
2761 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002762 }
2763
2764 return Value;
2765 }
2766}
2767
Evan Cheng74d0aa92006-02-15 21:59:04 +00002768/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2769/// used when a memcpy is turned into a memset when the source is a constant
2770/// string ptr.
2771static SDOperand getMemsetStringVal(MVT::ValueType VT,
2772 SelectionDAG &DAG, TargetLowering &TLI,
2773 std::string &Str, unsigned Offset) {
2774 MVT::ValueType CurVT = VT;
2775 uint64_t Val = 0;
2776 unsigned MSB = getSizeInBits(VT) / 8;
2777 if (TLI.isLittleEndian())
2778 Offset = Offset + MSB - 1;
2779 for (unsigned i = 0; i != MSB; ++i) {
2780 Val = (Val << 8) | Str[Offset];
2781 Offset += TLI.isLittleEndian() ? -1 : 1;
2782 }
2783 return DAG.getConstant(Val, VT);
2784}
2785
Evan Cheng1db92f92006-02-14 08:22:34 +00002786/// getMemBasePlusOffset - Returns base and offset node for the
2787static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
2788 SelectionDAG &DAG, TargetLowering &TLI) {
2789 MVT::ValueType VT = Base.getValueType();
2790 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2791}
2792
Evan Chengc4f8eee2006-02-14 20:12:38 +00002793/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
Evan Cheng80e89d72006-02-14 09:11:59 +00002794/// to replace the memset / memcpy is below the threshold. It also returns the
2795/// types of the sequence of memory ops to perform memset / memcpy.
Evan Chengc4f8eee2006-02-14 20:12:38 +00002796static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps,
2797 unsigned Limit, uint64_t Size,
2798 unsigned Align, TargetLowering &TLI) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002799 MVT::ValueType VT;
2800
2801 if (TLI.allowsUnalignedMemoryAccesses()) {
2802 VT = MVT::i64;
2803 } else {
2804 switch (Align & 7) {
2805 case 0:
2806 VT = MVT::i64;
2807 break;
2808 case 4:
2809 VT = MVT::i32;
2810 break;
2811 case 2:
2812 VT = MVT::i16;
2813 break;
2814 default:
2815 VT = MVT::i8;
2816 break;
2817 }
2818 }
2819
Evan Cheng80e89d72006-02-14 09:11:59 +00002820 MVT::ValueType LVT = MVT::i64;
2821 while (!TLI.isTypeLegal(LVT))
2822 LVT = (MVT::ValueType)((unsigned)LVT - 1);
2823 assert(MVT::isInteger(LVT));
Evan Cheng1db92f92006-02-14 08:22:34 +00002824
Evan Cheng80e89d72006-02-14 09:11:59 +00002825 if (VT > LVT)
2826 VT = LVT;
2827
Evan Chengdea72452006-02-14 23:05:54 +00002828 unsigned NumMemOps = 0;
Evan Cheng1db92f92006-02-14 08:22:34 +00002829 while (Size != 0) {
2830 unsigned VTSize = getSizeInBits(VT) / 8;
2831 while (VTSize > Size) {
2832 VT = (MVT::ValueType)((unsigned)VT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002833 VTSize >>= 1;
2834 }
Evan Cheng80e89d72006-02-14 09:11:59 +00002835 assert(MVT::isInteger(VT));
2836
2837 if (++NumMemOps > Limit)
2838 return false;
Evan Cheng1db92f92006-02-14 08:22:34 +00002839 MemOps.push_back(VT);
2840 Size -= VTSize;
2841 }
Evan Cheng80e89d72006-02-14 09:11:59 +00002842
2843 return true;
Evan Cheng1db92f92006-02-14 08:22:34 +00002844}
2845
Chris Lattner7041ee32005-01-11 05:56:49 +00002846void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002847 SDOperand Op1 = getValue(I.getOperand(1));
2848 SDOperand Op2 = getValue(I.getOperand(2));
2849 SDOperand Op3 = getValue(I.getOperand(3));
2850 SDOperand Op4 = getValue(I.getOperand(4));
2851 unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue();
2852 if (Align == 0) Align = 1;
2853
2854 if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) {
2855 std::vector<MVT::ValueType> MemOps;
Evan Cheng1db92f92006-02-14 08:22:34 +00002856
2857 // Expand memset / memcpy to a series of load / store ops
2858 // if the size operand falls below a certain threshold.
2859 std::vector<SDOperand> OutChains;
2860 switch (Op) {
Evan Chengac940ab2006-02-14 19:45:56 +00002861 default: break; // Do nothing for now.
Evan Cheng1db92f92006-02-14 08:22:34 +00002862 case ISD::MEMSET: {
Evan Chengc4f8eee2006-02-14 20:12:38 +00002863 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
2864 Size->getValue(), Align, TLI)) {
Evan Cheng80e89d72006-02-14 09:11:59 +00002865 unsigned NumMemOps = MemOps.size();
Evan Cheng1db92f92006-02-14 08:22:34 +00002866 unsigned Offset = 0;
2867 for (unsigned i = 0; i < NumMemOps; i++) {
2868 MVT::ValueType VT = MemOps[i];
2869 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Chenga47876d2006-02-15 22:12:35 +00002870 SDOperand Value = getMemsetValue(Op2, VT, DAG);
Evan Chengc080d6f2006-02-15 01:54:51 +00002871 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, getRoot(),
2872 Value,
Chris Lattner864635a2006-02-22 22:37:12 +00002873 getMemBasePlusOffset(Op1, Offset, DAG, TLI),
2874 DAG.getSrcValue(I.getOperand(1), Offset));
Evan Chengc080d6f2006-02-15 01:54:51 +00002875 OutChains.push_back(Store);
Evan Cheng1db92f92006-02-14 08:22:34 +00002876 Offset += VTSize;
2877 }
Evan Cheng1db92f92006-02-14 08:22:34 +00002878 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002879 break;
Evan Cheng1db92f92006-02-14 08:22:34 +00002880 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002881 case ISD::MEMCPY: {
2882 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemcpy(),
2883 Size->getValue(), Align, TLI)) {
2884 unsigned NumMemOps = MemOps.size();
Evan Chengcffbb512006-02-16 23:11:42 +00002885 unsigned SrcOff = 0, DstOff = 0, SrcDelta = 0;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002886 GlobalAddressSDNode *G = NULL;
2887 std::string Str;
Evan Chengcffbb512006-02-16 23:11:42 +00002888 bool CopyFromStr = false;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002889
2890 if (Op2.getOpcode() == ISD::GlobalAddress)
2891 G = cast<GlobalAddressSDNode>(Op2);
2892 else if (Op2.getOpcode() == ISD::ADD &&
2893 Op2.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2894 Op2.getOperand(1).getOpcode() == ISD::Constant) {
2895 G = cast<GlobalAddressSDNode>(Op2.getOperand(0));
Evan Chengcffbb512006-02-16 23:11:42 +00002896 SrcDelta = cast<ConstantSDNode>(Op2.getOperand(1))->getValue();
Evan Cheng74d0aa92006-02-15 21:59:04 +00002897 }
2898 if (G) {
2899 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Chengcffbb512006-02-16 23:11:42 +00002900 if (GV) {
Evan Cheng09371032006-03-10 23:52:03 +00002901 Str = GV->getStringValue(false);
Evan Chengcffbb512006-02-16 23:11:42 +00002902 if (!Str.empty()) {
2903 CopyFromStr = true;
2904 SrcOff += SrcDelta;
2905 }
2906 }
Evan Cheng74d0aa92006-02-15 21:59:04 +00002907 }
2908
Evan Chengc080d6f2006-02-15 01:54:51 +00002909 for (unsigned i = 0; i < NumMemOps; i++) {
2910 MVT::ValueType VT = MemOps[i];
2911 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002912 SDOperand Value, Chain, Store;
2913
Evan Chengcffbb512006-02-16 23:11:42 +00002914 if (CopyFromStr) {
Evan Cheng74d0aa92006-02-15 21:59:04 +00002915 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
2916 Chain = getRoot();
2917 Store =
2918 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2919 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2920 DAG.getSrcValue(I.getOperand(1), DstOff));
2921 } else {
2922 Value = DAG.getLoad(VT, getRoot(),
2923 getMemBasePlusOffset(Op2, SrcOff, DAG, TLI),
2924 DAG.getSrcValue(I.getOperand(2), SrcOff));
2925 Chain = Value.getValue(1);
2926 Store =
2927 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2928 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2929 DAG.getSrcValue(I.getOperand(1), DstOff));
2930 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002931 OutChains.push_back(Store);
Evan Cheng74d0aa92006-02-15 21:59:04 +00002932 SrcOff += VTSize;
2933 DstOff += VTSize;
Evan Chengc080d6f2006-02-15 01:54:51 +00002934 }
2935 }
2936 break;
2937 }
2938 }
2939
2940 if (!OutChains.empty()) {
2941 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains));
2942 return;
Evan Cheng1db92f92006-02-14 08:22:34 +00002943 }
2944 }
2945
Chris Lattner7041ee32005-01-11 05:56:49 +00002946 std::vector<SDOperand> Ops;
Chris Lattnera651cf62005-01-17 19:43:36 +00002947 Ops.push_back(getRoot());
Evan Cheng1db92f92006-02-14 08:22:34 +00002948 Ops.push_back(Op1);
2949 Ops.push_back(Op2);
2950 Ops.push_back(Op3);
2951 Ops.push_back(Op4);
Chris Lattner7041ee32005-01-11 05:56:49 +00002952 DAG.setRoot(DAG.getNode(Op, MVT::Other, Ops));
Chris Lattner1c08c712005-01-07 07:47:53 +00002953}
2954
Chris Lattner7041ee32005-01-11 05:56:49 +00002955//===----------------------------------------------------------------------===//
2956// SelectionDAGISel code
2957//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00002958
2959unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) {
2960 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
2961}
2962
Chris Lattner495a0b52005-08-17 06:37:43 +00002963void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner36b708f2005-08-18 17:35:14 +00002964 // FIXME: we only modify the CFG to split critical edges. This
2965 // updates dom and loop info.
Chris Lattner495a0b52005-08-17 06:37:43 +00002966}
Chris Lattner1c08c712005-01-07 07:47:53 +00002967
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002968
Chris Lattner90323642006-05-05 21:17:49 +00002969/// OptimizeNoopCopyExpression - We have determined that the specified cast
2970/// instruction is a noop copy (e.g. it's casting from one pointer type to
2971/// another, int->uint, or int->sbyte on PPC.
2972///
2973/// Return true if any changes are made.
2974static bool OptimizeNoopCopyExpression(CastInst *CI) {
2975 BasicBlock *DefBB = CI->getParent();
2976
2977 /// InsertedCasts - Only insert a cast in each block once.
2978 std::map<BasicBlock*, CastInst*> InsertedCasts;
2979
2980 bool MadeChange = false;
2981 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
2982 UI != E; ) {
2983 Use &TheUse = UI.getUse();
2984 Instruction *User = cast<Instruction>(*UI);
2985
2986 // Figure out which BB this cast is used in. For PHI's this is the
2987 // appropriate predecessor block.
2988 BasicBlock *UserBB = User->getParent();
2989 if (PHINode *PN = dyn_cast<PHINode>(User)) {
2990 unsigned OpVal = UI.getOperandNo()/2;
2991 UserBB = PN->getIncomingBlock(OpVal);
2992 }
2993
2994 // Preincrement use iterator so we don't invalidate it.
2995 ++UI;
2996
2997 // If this user is in the same block as the cast, don't change the cast.
2998 if (UserBB == DefBB) continue;
2999
3000 // If we have already inserted a cast into this block, use it.
3001 CastInst *&InsertedCast = InsertedCasts[UserBB];
3002
3003 if (!InsertedCast) {
3004 BasicBlock::iterator InsertPt = UserBB->begin();
3005 while (isa<PHINode>(InsertPt)) ++InsertPt;
3006
3007 InsertedCast =
3008 new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
3009 MadeChange = true;
3010 }
3011
3012 // Replace a use of the cast with a use of the new casat.
3013 TheUse = InsertedCast;
3014 }
3015
3016 // If we removed all uses, nuke the cast.
3017 if (CI->use_empty())
3018 CI->eraseFromParent();
3019
3020 return MadeChange;
3021}
3022
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003023/// InsertGEPComputeCode - Insert code into BB to compute Ptr+PtrOffset,
3024/// casting to the type of GEPI.
Chris Lattnerf0df8822006-05-06 09:10:37 +00003025static Instruction *InsertGEPComputeCode(Instruction *&V, BasicBlock *BB,
3026 Instruction *GEPI, Value *Ptr,
3027 Value *PtrOffset) {
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003028 if (V) return V; // Already computed.
3029
3030 BasicBlock::iterator InsertPt;
3031 if (BB == GEPI->getParent()) {
3032 // If insert into the GEP's block, insert right after the GEP.
3033 InsertPt = GEPI;
3034 ++InsertPt;
3035 } else {
3036 // Otherwise, insert at the top of BB, after any PHI nodes
3037 InsertPt = BB->begin();
3038 while (isa<PHINode>(InsertPt)) ++InsertPt;
3039 }
3040
Chris Lattnerc78b0b72005-12-08 08:00:12 +00003041 // If Ptr is itself a cast, but in some other BB, emit a copy of the cast into
3042 // BB so that there is only one value live across basic blocks (the cast
3043 // operand).
3044 if (CastInst *CI = dyn_cast<CastInst>(Ptr))
3045 if (CI->getParent() != BB && isa<PointerType>(CI->getOperand(0)->getType()))
3046 Ptr = new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
3047
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003048 // Add the offset, cast it to the right type.
3049 Ptr = BinaryOperator::createAdd(Ptr, PtrOffset, "", InsertPt);
Chris Lattnerf0df8822006-05-06 09:10:37 +00003050 return V = new CastInst(Ptr, GEPI->getType(), "", InsertPt);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003051}
3052
Chris Lattner90323642006-05-05 21:17:49 +00003053/// ReplaceUsesOfGEPInst - Replace all uses of RepPtr with inserted code to
3054/// compute its value. The RepPtr value can be computed with Ptr+PtrOffset. One
3055/// trivial way of doing this would be to evaluate Ptr+PtrOffset in RepPtr's
3056/// block, then ReplaceAllUsesWith'ing everything. However, we would prefer to
3057/// sink PtrOffset into user blocks where doing so will likely allow us to fold
3058/// the constant add into a load or store instruction. Additionally, if a user
3059/// is a pointer-pointer cast, we look through it to find its users.
3060static void ReplaceUsesOfGEPInst(Instruction *RepPtr, Value *Ptr,
3061 Constant *PtrOffset, BasicBlock *DefBB,
3062 GetElementPtrInst *GEPI,
Chris Lattnerf0df8822006-05-06 09:10:37 +00003063 std::map<BasicBlock*,Instruction*> &InsertedExprs) {
Chris Lattner90323642006-05-05 21:17:49 +00003064 while (!RepPtr->use_empty()) {
3065 Instruction *User = cast<Instruction>(RepPtr->use_back());
Chris Lattner7e598092006-05-05 01:04:50 +00003066
Chris Lattner90323642006-05-05 21:17:49 +00003067 // If the user is a Pointer-Pointer cast, recurse.
3068 if (isa<CastInst>(User) && isa<PointerType>(User->getType())) {
3069 ReplaceUsesOfGEPInst(User, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattner7e598092006-05-05 01:04:50 +00003070
Chris Lattner90323642006-05-05 21:17:49 +00003071 // Drop the use of RepPtr. The cast is dead. Don't delete it now, else we
3072 // could invalidate an iterator.
3073 User->setOperand(0, UndefValue::get(RepPtr->getType()));
3074 continue;
Chris Lattner7e598092006-05-05 01:04:50 +00003075 }
3076
Chris Lattner90323642006-05-05 21:17:49 +00003077 // If this is a load of the pointer, or a store through the pointer, emit
3078 // the increment into the load/store block.
Chris Lattnerf0df8822006-05-06 09:10:37 +00003079 Instruction *NewVal;
Chris Lattner90323642006-05-05 21:17:49 +00003080 if (isa<LoadInst>(User) ||
3081 (isa<StoreInst>(User) && User->getOperand(0) != RepPtr)) {
3082 NewVal = InsertGEPComputeCode(InsertedExprs[User->getParent()],
3083 User->getParent(), GEPI,
3084 Ptr, PtrOffset);
3085 } else {
3086 // If this use is not foldable into the addressing mode, use a version
3087 // emitted in the GEP block.
3088 NewVal = InsertGEPComputeCode(InsertedExprs[DefBB], DefBB, GEPI,
3089 Ptr, PtrOffset);
3090 }
3091
Chris Lattnerf0df8822006-05-06 09:10:37 +00003092 if (GEPI->getType() != RepPtr->getType()) {
3093 BasicBlock::iterator IP = NewVal;
3094 ++IP;
3095 NewVal = new CastInst(NewVal, RepPtr->getType(), "", IP);
3096 }
Chris Lattner90323642006-05-05 21:17:49 +00003097 User->replaceUsesOfWith(RepPtr, NewVal);
Chris Lattner7e598092006-05-05 01:04:50 +00003098 }
3099}
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003100
Chris Lattner90323642006-05-05 21:17:49 +00003101
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003102/// OptimizeGEPExpression - Since we are doing basic-block-at-a-time instruction
3103/// selection, we want to be a bit careful about some things. In particular, if
3104/// we have a GEP instruction that is used in a different block than it is
3105/// defined, the addressing expression of the GEP cannot be folded into loads or
3106/// stores that use it. In this case, decompose the GEP and move constant
3107/// indices into blocks that use it.
Chris Lattner90323642006-05-05 21:17:49 +00003108static bool OptimizeGEPExpression(GetElementPtrInst *GEPI,
Owen Andersona69571c2006-05-03 01:29:57 +00003109 const TargetData *TD) {
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003110 // If this GEP is only used inside the block it is defined in, there is no
3111 // need to rewrite it.
3112 bool isUsedOutsideDefBB = false;
3113 BasicBlock *DefBB = GEPI->getParent();
3114 for (Value::use_iterator UI = GEPI->use_begin(), E = GEPI->use_end();
3115 UI != E; ++UI) {
3116 if (cast<Instruction>(*UI)->getParent() != DefBB) {
3117 isUsedOutsideDefBB = true;
3118 break;
3119 }
3120 }
Chris Lattner90323642006-05-05 21:17:49 +00003121 if (!isUsedOutsideDefBB) return false;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003122
3123 // If this GEP has no non-zero constant indices, there is nothing we can do,
3124 // ignore it.
3125 bool hasConstantIndex = false;
Chris Lattner90323642006-05-05 21:17:49 +00003126 bool hasVariableIndex = false;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003127 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3128 E = GEPI->op_end(); OI != E; ++OI) {
Chris Lattner90323642006-05-05 21:17:49 +00003129 if (ConstantInt *CI = dyn_cast<ConstantInt>(*OI)) {
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003130 if (CI->getRawValue()) {
3131 hasConstantIndex = true;
3132 break;
3133 }
Chris Lattner90323642006-05-05 21:17:49 +00003134 } else {
3135 hasVariableIndex = true;
3136 }
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003137 }
Chris Lattner90323642006-05-05 21:17:49 +00003138
3139 // If this is a "GEP X, 0, 0, 0", turn this into a cast.
3140 if (!hasConstantIndex && !hasVariableIndex) {
3141 Value *NC = new CastInst(GEPI->getOperand(0), GEPI->getType(),
3142 GEPI->getName(), GEPI);
3143 GEPI->replaceAllUsesWith(NC);
3144 GEPI->eraseFromParent();
3145 return true;
3146 }
3147
Chris Lattner3802c252005-12-11 09:05:13 +00003148 // If this is a GEP &Alloca, 0, 0, forward subst the frame index into uses.
Chris Lattner90323642006-05-05 21:17:49 +00003149 if (!hasConstantIndex && !isa<AllocaInst>(GEPI->getOperand(0)))
3150 return false;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003151
3152 // Otherwise, decompose the GEP instruction into multiplies and adds. Sum the
3153 // constant offset (which we now know is non-zero) and deal with it later.
3154 uint64_t ConstantOffset = 0;
Owen Andersona69571c2006-05-03 01:29:57 +00003155 const Type *UIntPtrTy = TD->getIntPtrType();
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003156 Value *Ptr = new CastInst(GEPI->getOperand(0), UIntPtrTy, "", GEPI);
3157 const Type *Ty = GEPI->getOperand(0)->getType();
3158
3159 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3160 E = GEPI->op_end(); OI != E; ++OI) {
3161 Value *Idx = *OI;
3162 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
3163 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
3164 if (Field)
Owen Andersona69571c2006-05-03 01:29:57 +00003165 ConstantOffset += TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003166 Ty = StTy->getElementType(Field);
3167 } else {
3168 Ty = cast<SequentialType>(Ty)->getElementType();
3169
3170 // Handle constant subscripts.
3171 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
3172 if (CI->getRawValue() == 0) continue;
3173
3174 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Andersona69571c2006-05-03 01:29:57 +00003175 ConstantOffset += (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003176 else
Owen Andersona69571c2006-05-03 01:29:57 +00003177 ConstantOffset+=TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003178 continue;
3179 }
3180
3181 // Ptr = Ptr + Idx * ElementSize;
3182
3183 // Cast Idx to UIntPtrTy if needed.
3184 Idx = new CastInst(Idx, UIntPtrTy, "", GEPI);
3185
Owen Andersona69571c2006-05-03 01:29:57 +00003186 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003187 // Mask off bits that should not be set.
3188 ElementSize &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3189 Constant *SizeCst = ConstantUInt::get(UIntPtrTy, ElementSize);
3190
3191 // Multiply by the element size and add to the base.
3192 Idx = BinaryOperator::createMul(Idx, SizeCst, "", GEPI);
3193 Ptr = BinaryOperator::createAdd(Ptr, Idx, "", GEPI);
3194 }
3195 }
3196
3197 // Make sure that the offset fits in uintptr_t.
3198 ConstantOffset &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3199 Constant *PtrOffset = ConstantUInt::get(UIntPtrTy, ConstantOffset);
3200
3201 // Okay, we have now emitted all of the variable index parts to the BB that
3202 // the GEP is defined in. Loop over all of the using instructions, inserting
3203 // an "add Ptr, ConstantOffset" into each block that uses it and update the
Chris Lattnerc78b0b72005-12-08 08:00:12 +00003204 // instruction to use the newly computed value, making GEPI dead. When the
3205 // user is a load or store instruction address, we emit the add into the user
3206 // block, otherwise we use a canonical version right next to the gep (these
3207 // won't be foldable as addresses, so we might as well share the computation).
3208
Chris Lattnerf0df8822006-05-06 09:10:37 +00003209 std::map<BasicBlock*,Instruction*> InsertedExprs;
Chris Lattner90323642006-05-05 21:17:49 +00003210 ReplaceUsesOfGEPInst(GEPI, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003211
3212 // Finally, the GEP is dead, remove it.
3213 GEPI->eraseFromParent();
Chris Lattner90323642006-05-05 21:17:49 +00003214
3215 return true;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003216}
3217
Chris Lattner1c08c712005-01-07 07:47:53 +00003218bool SelectionDAGISel::runOnFunction(Function &Fn) {
3219 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
3220 RegMap = MF.getSSARegMap();
3221 DEBUG(std::cerr << "\n\n\n=== " << Fn.getName() << "\n");
3222
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003223 // First, split all critical edges for PHI nodes with incoming values that are
3224 // constants, this way the load of the constant into a vreg will not be placed
3225 // into MBBs that are used some other way.
3226 //
Chris Lattner7e598092006-05-05 01:04:50 +00003227 // In this pass we also look for GEP and cast instructions that are used
3228 // across basic blocks and rewrite them to improve basic-block-at-a-time
3229 // selection.
3230 //
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003231 //
Chris Lattner90323642006-05-05 21:17:49 +00003232 bool MadeChange = true;
3233 while (MadeChange) {
3234 MadeChange = false;
Chris Lattner36b708f2005-08-18 17:35:14 +00003235 for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
3236 PHINode *PN;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003237 BasicBlock::iterator BBI;
3238 for (BBI = BB->begin(); (PN = dyn_cast<PHINode>(BBI)); ++BBI)
Chris Lattner36b708f2005-08-18 17:35:14 +00003239 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3240 if (isa<Constant>(PN->getIncomingValue(i)))
3241 SplitCriticalEdge(PN->getIncomingBlock(i), BB);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003242
Chris Lattner7e598092006-05-05 01:04:50 +00003243 for (BasicBlock::iterator E = BB->end(); BBI != E; ) {
3244 Instruction *I = BBI++;
3245 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
Chris Lattner90323642006-05-05 21:17:49 +00003246 MadeChange |= OptimizeGEPExpression(GEPI, TLI.getTargetData());
Chris Lattner7e598092006-05-05 01:04:50 +00003247 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
3248 // If this is a noop copy, sink it into user blocks to reduce the number
3249 // of virtual registers that must be created and coallesced.
3250 MVT::ValueType SrcVT = TLI.getValueType(CI->getOperand(0)->getType());
3251 MVT::ValueType DstVT = TLI.getValueType(CI->getType());
3252
3253 // This is an fp<->int conversion?
3254 if (MVT::isInteger(SrcVT) != MVT::isInteger(DstVT))
3255 continue;
3256
3257 // If this is an extension, it will be a zero or sign extension, which
3258 // isn't a noop.
3259 if (SrcVT < DstVT) continue;
3260
3261 // If these values will be promoted, find out what they will be promoted
3262 // to. This helps us consider truncates on PPC as noop copies when they
3263 // are.
3264 if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote)
3265 SrcVT = TLI.getTypeToTransformTo(SrcVT);
3266 if (TLI.getTypeAction(DstVT) == TargetLowering::Promote)
3267 DstVT = TLI.getTypeToTransformTo(DstVT);
3268
3269 // If, after promotion, these are the same types, this is a noop copy.
3270 if (SrcVT == DstVT)
Chris Lattner90323642006-05-05 21:17:49 +00003271 MadeChange |= OptimizeNoopCopyExpression(CI);
Chris Lattner7e598092006-05-05 01:04:50 +00003272 }
3273 }
Chris Lattner36b708f2005-08-18 17:35:14 +00003274 }
Chris Lattner90323642006-05-05 21:17:49 +00003275 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003276
Chris Lattner1c08c712005-01-07 07:47:53 +00003277 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
3278
3279 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
3280 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00003281
Chris Lattner1c08c712005-01-07 07:47:53 +00003282 return true;
3283}
3284
3285
Chris Lattnerddb870b2005-01-13 17:59:43 +00003286SDOperand SelectionDAGISel::
3287CopyValueToVirtualRegister(SelectionDAGLowering &SDL, Value *V, unsigned Reg) {
Chris Lattnerf1fdaca2005-01-11 22:03:46 +00003288 SDOperand Op = SDL.getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00003289 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003290 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00003291 "Copy from a reg to the same reg!");
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003292
3293 // If this type is not legal, we must make sure to not create an invalid
3294 // register use.
3295 MVT::ValueType SrcVT = Op.getValueType();
3296 MVT::ValueType DestVT = TLI.getTypeToTransformTo(SrcVT);
3297 SelectionDAG &DAG = SDL.DAG;
3298 if (SrcVT == DestVT) {
3299 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
Chris Lattner1c6191f2006-03-21 19:20:37 +00003300 } else if (SrcVT == MVT::Vector) {
Chris Lattner70c2a612006-03-31 02:06:56 +00003301 // Handle copies from generic vectors to registers.
3302 MVT::ValueType PTyElementVT, PTyLegalElementVT;
3303 unsigned NE = TLI.getPackedTypeBreakdown(cast<PackedType>(V->getType()),
3304 PTyElementVT, PTyLegalElementVT);
Chris Lattner1c6191f2006-03-21 19:20:37 +00003305
Chris Lattner70c2a612006-03-31 02:06:56 +00003306 // Insert a VBIT_CONVERT of the input vector to a "N x PTyElementVT"
3307 // MVT::Vector type.
3308 Op = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Op,
3309 DAG.getConstant(NE, MVT::i32),
3310 DAG.getValueType(PTyElementVT));
Chris Lattner1c6191f2006-03-21 19:20:37 +00003311
Chris Lattner70c2a612006-03-31 02:06:56 +00003312 // Loop over all of the elements of the resultant vector,
3313 // VEXTRACT_VECTOR_ELT'ing them, converting them to PTyLegalElementVT, then
3314 // copying them into output registers.
3315 std::vector<SDOperand> OutChains;
3316 SDOperand Root = SDL.getRoot();
3317 for (unsigned i = 0; i != NE; ++i) {
3318 SDOperand Elt = DAG.getNode(ISD::VEXTRACT_VECTOR_ELT, PTyElementVT,
Evan Chenga8441262006-06-15 08:11:54 +00003319 Op, DAG.getConstant(i, TLI.getPointerTy()));
Chris Lattner70c2a612006-03-31 02:06:56 +00003320 if (PTyElementVT == PTyLegalElementVT) {
3321 // Elements are legal.
3322 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3323 } else if (PTyLegalElementVT > PTyElementVT) {
3324 // Elements are promoted.
3325 if (MVT::isFloatingPoint(PTyLegalElementVT))
3326 Elt = DAG.getNode(ISD::FP_EXTEND, PTyLegalElementVT, Elt);
3327 else
3328 Elt = DAG.getNode(ISD::ANY_EXTEND, PTyLegalElementVT, Elt);
3329 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3330 } else {
3331 // Elements are expanded.
3332 // The src value is expanded into multiple registers.
3333 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
Evan Chenga8441262006-06-15 08:11:54 +00003334 Elt, DAG.getConstant(0, TLI.getPointerTy()));
Chris Lattner70c2a612006-03-31 02:06:56 +00003335 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
Evan Chenga8441262006-06-15 08:11:54 +00003336 Elt, DAG.getConstant(1, TLI.getPointerTy()));
Chris Lattner70c2a612006-03-31 02:06:56 +00003337 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Lo));
3338 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Hi));
3339 }
Chris Lattner1c6191f2006-03-21 19:20:37 +00003340 }
Chris Lattner70c2a612006-03-31 02:06:56 +00003341 return DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003342 } else if (SrcVT < DestVT) {
3343 // The src value is promoted to the register.
Chris Lattnerfae59b92005-08-17 06:06:25 +00003344 if (MVT::isFloatingPoint(SrcVT))
3345 Op = DAG.getNode(ISD::FP_EXTEND, DestVT, Op);
3346 else
Chris Lattnerfab08872005-09-02 00:19:37 +00003347 Op = DAG.getNode(ISD::ANY_EXTEND, DestVT, Op);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003348 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
3349 } else {
3350 // The src value is expanded into multiple registers.
3351 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
Evan Chenga8441262006-06-15 08:11:54 +00003352 Op, DAG.getConstant(0, TLI.getPointerTy()));
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003353 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
Evan Chenga8441262006-06-15 08:11:54 +00003354 Op, DAG.getConstant(1, TLI.getPointerTy()));
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003355 Op = DAG.getCopyToReg(SDL.getRoot(), Reg, Lo);
3356 return DAG.getCopyToReg(Op, Reg+1, Hi);
3357 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003358}
3359
Chris Lattner068a81e2005-01-17 17:15:02 +00003360void SelectionDAGISel::
3361LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL,
3362 std::vector<SDOperand> &UnorderedChains) {
3363 // If this is the entry block, emit arguments.
3364 Function &F = *BB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00003365 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattnerbf209482005-10-30 19:42:35 +00003366 SDOperand OldRoot = SDL.DAG.getRoot();
3367 std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
Chris Lattner068a81e2005-01-17 17:15:02 +00003368
Chris Lattnerbf209482005-10-30 19:42:35 +00003369 unsigned a = 0;
3370 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
3371 AI != E; ++AI, ++a)
3372 if (!AI->use_empty()) {
3373 SDL.setValue(AI, Args[a]);
Evan Chengf7179bb2006-04-27 08:29:42 +00003374
Chris Lattnerbf209482005-10-30 19:42:35 +00003375 // If this argument is live outside of the entry block, insert a copy from
3376 // whereever we got it to the vreg that other BB's will reference it as.
3377 if (FuncInfo.ValueMap.count(AI)) {
3378 SDOperand Copy =
3379 CopyValueToVirtualRegister(SDL, AI, FuncInfo.ValueMap[AI]);
3380 UnorderedChains.push_back(Copy);
3381 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00003382 }
Chris Lattnerbf209482005-10-30 19:42:35 +00003383
Chris Lattnerbf209482005-10-30 19:42:35 +00003384 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner96645412006-05-16 06:10:58 +00003385 // FIXME: this should insert code into the DAG!
Chris Lattnerbf209482005-10-30 19:42:35 +00003386 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00003387}
3388
Chris Lattner1c08c712005-01-07 07:47:53 +00003389void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
3390 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00003391 FunctionLoweringInfo &FuncInfo) {
Chris Lattner1c08c712005-01-07 07:47:53 +00003392 SelectionDAGLowering SDL(DAG, TLI, FuncInfo);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003393
3394 std::vector<SDOperand> UnorderedChains;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003395
Chris Lattnerbf209482005-10-30 19:42:35 +00003396 // Lower any arguments needed in this block if this is the entry block.
3397 if (LLVMBB == &LLVMBB->getParent()->front())
3398 LowerArguments(LLVMBB, SDL, UnorderedChains);
Chris Lattner1c08c712005-01-07 07:47:53 +00003399
3400 BB = FuncInfo.MBBMap[LLVMBB];
3401 SDL.setCurrentBasicBlock(BB);
3402
3403 // Lower all of the non-terminator instructions.
3404 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
3405 I != E; ++I)
3406 SDL.visit(*I);
Nate Begemanf15485a2006-03-27 01:32:24 +00003407
Chris Lattner1c08c712005-01-07 07:47:53 +00003408 // Ensure that all instructions which are used outside of their defining
3409 // blocks are available as virtual registers.
3410 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Chris Lattnerf1fdaca2005-01-11 22:03:46 +00003411 if (!I->use_empty() && !isa<PHINode>(I)) {
Chris Lattneree749d72005-01-09 01:16:24 +00003412 std::map<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00003413 if (VMI != FuncInfo.ValueMap.end())
Chris Lattnerddb870b2005-01-13 17:59:43 +00003414 UnorderedChains.push_back(
3415 CopyValueToVirtualRegister(SDL, I, VMI->second));
Chris Lattner1c08c712005-01-07 07:47:53 +00003416 }
3417
3418 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
3419 // ensure constants are generated when needed. Remember the virtual registers
3420 // that need to be added to the Machine PHI nodes as input. We cannot just
3421 // directly add them, because expansion might result in multiple MBB's for one
3422 // BB. As such, the start of the BB might correspond to a different MBB than
3423 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00003424 //
Chris Lattner1c08c712005-01-07 07:47:53 +00003425
3426 // Emit constants only once even if used by multiple PHI nodes.
3427 std::map<Constant*, unsigned> ConstantsOut;
3428
3429 // Check successor nodes PHI nodes that expect a constant to be available from
3430 // this block.
3431 TerminatorInst *TI = LLVMBB->getTerminator();
3432 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
3433 BasicBlock *SuccBB = TI->getSuccessor(succ);
3434 MachineBasicBlock::iterator MBBI = FuncInfo.MBBMap[SuccBB]->begin();
3435 PHINode *PN;
3436
3437 // At this point we know that there is a 1-1 correspondence between LLVM PHI
3438 // nodes and Machine PHI nodes, but the incoming operands have not been
3439 // emitted yet.
3440 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattnerf44fd882005-01-07 21:34:19 +00003441 (PN = dyn_cast<PHINode>(I)); ++I)
3442 if (!PN->use_empty()) {
3443 unsigned Reg;
3444 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
3445 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
3446 unsigned &RegOut = ConstantsOut[C];
3447 if (RegOut == 0) {
3448 RegOut = FuncInfo.CreateRegForValue(C);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003449 UnorderedChains.push_back(
3450 CopyValueToVirtualRegister(SDL, C, RegOut));
Chris Lattnerf44fd882005-01-07 21:34:19 +00003451 }
3452 Reg = RegOut;
3453 } else {
3454 Reg = FuncInfo.ValueMap[PHIOp];
Chris Lattneree749d72005-01-09 01:16:24 +00003455 if (Reg == 0) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003456 assert(isa<AllocaInst>(PHIOp) &&
Chris Lattneree749d72005-01-09 01:16:24 +00003457 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
3458 "Didn't codegen value into a register!??");
3459 Reg = FuncInfo.CreateRegForValue(PHIOp);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003460 UnorderedChains.push_back(
3461 CopyValueToVirtualRegister(SDL, PHIOp, Reg));
Chris Lattneree749d72005-01-09 01:16:24 +00003462 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003463 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003464
Chris Lattnerf44fd882005-01-07 21:34:19 +00003465 // Remember that this register needs to added to the machine PHI node as
3466 // the input for this MBB.
Chris Lattner7e021512006-03-31 02:12:18 +00003467 MVT::ValueType VT = TLI.getValueType(PN->getType());
3468 unsigned NumElements;
3469 if (VT != MVT::Vector)
3470 NumElements = TLI.getNumElements(VT);
3471 else {
3472 MVT::ValueType VT1,VT2;
3473 NumElements =
3474 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
3475 VT1, VT2);
3476 }
Chris Lattnerf44fd882005-01-07 21:34:19 +00003477 for (unsigned i = 0, e = NumElements; i != e; ++i)
3478 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
Chris Lattner1c08c712005-01-07 07:47:53 +00003479 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003480 }
3481 ConstantsOut.clear();
3482
Chris Lattnerddb870b2005-01-13 17:59:43 +00003483 // Turn all of the unordered chains into one factored node.
Chris Lattner5a6c6d92005-01-13 19:53:14 +00003484 if (!UnorderedChains.empty()) {
Chris Lattner7436b572005-11-09 05:03:03 +00003485 SDOperand Root = SDL.getRoot();
3486 if (Root.getOpcode() != ISD::EntryToken) {
3487 unsigned i = 0, e = UnorderedChains.size();
3488 for (; i != e; ++i) {
3489 assert(UnorderedChains[i].Val->getNumOperands() > 1);
3490 if (UnorderedChains[i].Val->getOperand(0) == Root)
3491 break; // Don't add the root if we already indirectly depend on it.
3492 }
3493
3494 if (i == e)
3495 UnorderedChains.push_back(Root);
3496 }
Chris Lattnerddb870b2005-01-13 17:59:43 +00003497 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, UnorderedChains));
3498 }
3499
Chris Lattner1c08c712005-01-07 07:47:53 +00003500 // Lower the terminator after the copies are emitted.
3501 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00003502
Nate Begemanf15485a2006-03-27 01:32:24 +00003503 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00003504 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00003505 SwitchCases.clear();
3506 SwitchCases = SDL.SwitchCases;
Nate Begeman37efe672006-04-22 18:53:45 +00003507 JT = SDL.JT;
Nate Begemanf15485a2006-03-27 01:32:24 +00003508
Chris Lattnera651cf62005-01-17 19:43:36 +00003509 // Make sure the root of the DAG is up-to-date.
3510 DAG.setRoot(SDL.getRoot());
Chris Lattner1c08c712005-01-07 07:47:53 +00003511}
3512
Nate Begemanf15485a2006-03-27 01:32:24 +00003513void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Chris Lattneraf21d552005-10-10 16:47:10 +00003514 // Run the DAG combiner in pre-legalize mode.
3515 DAG.Combine(false);
Nate Begeman2300f552005-09-07 00:15:36 +00003516
Chris Lattner1c08c712005-01-07 07:47:53 +00003517 DEBUG(std::cerr << "Lowered selection DAG:\n");
3518 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003519
Chris Lattner1c08c712005-01-07 07:47:53 +00003520 // Second step, hack on the DAG until it only uses operations and types that
3521 // the target supports.
Chris Lattnerac9dc082005-01-23 04:36:26 +00003522 DAG.Legalize();
Nate Begemanf15485a2006-03-27 01:32:24 +00003523
Chris Lattner1c08c712005-01-07 07:47:53 +00003524 DEBUG(std::cerr << "Legalized selection DAG:\n");
3525 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003526
Chris Lattneraf21d552005-10-10 16:47:10 +00003527 // Run the DAG combiner in post-legalize mode.
3528 DAG.Combine(true);
Nate Begeman2300f552005-09-07 00:15:36 +00003529
Evan Chenga9c20912006-01-21 02:32:06 +00003530 if (ViewISelDAGs) DAG.viewGraph();
Evan Cheng552c4a82006-04-28 02:09:19 +00003531
Chris Lattnera33ef482005-03-30 01:10:47 +00003532 // Third, instruction select all of the operations to machine code, adding the
3533 // code to the MachineBasicBlock.
Chris Lattner1c08c712005-01-07 07:47:53 +00003534 InstructionSelectBasicBlock(DAG);
Nate Begemanf15485a2006-03-27 01:32:24 +00003535
Chris Lattner1c08c712005-01-07 07:47:53 +00003536 DEBUG(std::cerr << "Selected machine code:\n");
3537 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003538}
Chris Lattner1c08c712005-01-07 07:47:53 +00003539
Nate Begemanf15485a2006-03-27 01:32:24 +00003540void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
3541 FunctionLoweringInfo &FuncInfo) {
3542 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
3543 {
3544 SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3545 CurDAG = &DAG;
3546
3547 // First step, lower LLVM code to some DAG. This DAG may use operations and
3548 // types that are not supported by the target.
3549 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
3550
3551 // Second step, emit the lowered DAG as machine code.
3552 CodeGenAndEmitDAG(DAG);
3553 }
3554
Chris Lattnera33ef482005-03-30 01:10:47 +00003555 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +00003556 // PHI nodes in successors.
Nate Begeman37efe672006-04-22 18:53:45 +00003557 if (SwitchCases.empty() && JT.Reg == 0) {
Nate Begemanf15485a2006-03-27 01:32:24 +00003558 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
3559 MachineInstr *PHI = PHINodesToUpdate[i].first;
3560 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3561 "This is not a machine PHI node that we are updating!");
3562 PHI->addRegOperand(PHINodesToUpdate[i].second);
3563 PHI->addMachineBasicBlockOperand(BB);
3564 }
3565 return;
Chris Lattner1c08c712005-01-07 07:47:53 +00003566 }
Nate Begemanf15485a2006-03-27 01:32:24 +00003567
Nate Begeman9453eea2006-04-23 06:26:20 +00003568 // If the JumpTable record is filled in, then we need to emit a jump table.
3569 // Updating the PHI nodes is tricky in this case, since we need to determine
3570 // whether the PHI is a successor of the range check MBB or the jump table MBB
Nate Begeman37efe672006-04-22 18:53:45 +00003571 if (JT.Reg) {
3572 assert(SwitchCases.empty() && "Cannot have jump table and lowered switch");
3573 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3574 CurDAG = &SDAG;
3575 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
Nate Begeman9453eea2006-04-23 06:26:20 +00003576 MachineBasicBlock *RangeBB = BB;
Nate Begeman37efe672006-04-22 18:53:45 +00003577 // Set the current basic block to the mbb we wish to insert the code into
3578 BB = JT.MBB;
3579 SDL.setCurrentBasicBlock(BB);
3580 // Emit the code
3581 SDL.visitJumpTable(JT);
3582 SDAG.setRoot(SDL.getRoot());
3583 CodeGenAndEmitDAG(SDAG);
3584 // Update PHI Nodes
3585 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3586 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3587 MachineBasicBlock *PHIBB = PHI->getParent();
3588 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3589 "This is not a machine PHI node that we are updating!");
Nate Begemanf4360a42006-05-03 03:48:02 +00003590 if (PHIBB == JT.Default) {
Nate Begeman37efe672006-04-22 18:53:45 +00003591 PHI->addRegOperand(PHINodesToUpdate[pi].second);
Nate Begemanf4360a42006-05-03 03:48:02 +00003592 PHI->addMachineBasicBlockOperand(RangeBB);
3593 }
3594 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
3595 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3596 PHI->addMachineBasicBlockOperand(BB);
Nate Begeman37efe672006-04-22 18:53:45 +00003597 }
3598 }
3599 return;
3600 }
3601
Nate Begemanf15485a2006-03-27 01:32:24 +00003602 // If we generated any switch lowering information, build and codegen any
3603 // additional DAGs necessary.
3604 for(unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
3605 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3606 CurDAG = &SDAG;
3607 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
3608 // Set the current basic block to the mbb we wish to insert the code into
3609 BB = SwitchCases[i].ThisBB;
3610 SDL.setCurrentBasicBlock(BB);
3611 // Emit the code
3612 SDL.visitSwitchCase(SwitchCases[i]);
3613 SDAG.setRoot(SDL.getRoot());
3614 CodeGenAndEmitDAG(SDAG);
3615 // Iterate over the phi nodes, if there is a phi node in a successor of this
3616 // block (for instance, the default block), then add a pair of operands to
3617 // the phi node for this block, as if we were coming from the original
3618 // BB before switch expansion.
3619 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3620 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3621 MachineBasicBlock *PHIBB = PHI->getParent();
3622 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3623 "This is not a machine PHI node that we are updating!");
3624 if (PHIBB == SwitchCases[i].LHSBB || PHIBB == SwitchCases[i].RHSBB) {
3625 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3626 PHI->addMachineBasicBlockOperand(BB);
3627 }
3628 }
Chris Lattnera33ef482005-03-30 01:10:47 +00003629 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003630}
Evan Chenga9c20912006-01-21 02:32:06 +00003631
3632//===----------------------------------------------------------------------===//
3633/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
3634/// target node in the graph.
3635void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
3636 if (ViewSchedDAGs) DAG.viewGraph();
Evan Cheng4ef10862006-01-23 07:01:07 +00003637 ScheduleDAG *SL = NULL;
3638
3639 switch (ISHeuristic) {
3640 default: assert(0 && "Unrecognized scheduling heuristic");
Evan Chengee00a1d2006-05-13 05:53:47 +00003641 case defaultScheduling:
Evan Cheng3f239522006-01-25 09:12:57 +00003642 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency)
Chris Lattner4a1cd9c2006-04-21 17:16:16 +00003643 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
3644 else {
3645 assert(TLI.getSchedulingPreference() ==
3646 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Evan Cheng3f239522006-01-25 09:12:57 +00003647 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattner4a1cd9c2006-04-21 17:16:16 +00003648 }
Evan Cheng3f239522006-01-25 09:12:57 +00003649 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003650 case noScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003651 SL = createBFS_DAGScheduler(DAG, BB);
3652 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003653 case simpleScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003654 SL = createSimpleDAGScheduler(false, DAG, BB);
3655 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003656 case simpleNoItinScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003657 SL = createSimpleDAGScheduler(true, DAG, BB);
Evan Cheng4ef10862006-01-23 07:01:07 +00003658 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003659 case listSchedulingBURR:
Evan Chengf0f9c902006-01-23 08:26:10 +00003660 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattnera5de4842006-03-05 21:10:33 +00003661 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003662 case listSchedulingTDRR:
Evan Chenge165a782006-05-11 23:55:42 +00003663 SL = createTDRRListDAGScheduler(DAG, BB);
3664 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003665 case listSchedulingTD:
Chris Lattnerb0d21ef2006-03-08 04:25:59 +00003666 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
Chris Lattnera5de4842006-03-05 21:10:33 +00003667 break;
Evan Cheng4ef10862006-01-23 07:01:07 +00003668 }
Chris Lattnera3818e62006-01-21 19:12:11 +00003669 BB = SL->Run();
Evan Chengcccf1232006-02-04 06:49:00 +00003670 delete SL;
Evan Chenga9c20912006-01-21 02:32:06 +00003671}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003672
Chris Lattnerb0d21ef2006-03-08 04:25:59 +00003673HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
3674 return new HazardRecognizer();
Chris Lattner03fc53c2006-03-06 00:22:00 +00003675}
3676
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003677/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
3678/// by tblgen. Others should not call it.
3679void SelectionDAGISel::
3680SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
3681 std::vector<SDOperand> InOps;
3682 std::swap(InOps, Ops);
3683
3684 Ops.push_back(InOps[0]); // input chain.
3685 Ops.push_back(InOps[1]); // input asm string.
3686
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003687 unsigned i = 2, e = InOps.size();
3688 if (InOps[e-1].getValueType() == MVT::Flag)
3689 --e; // Don't process a flag operand if it is here.
3690
3691 while (i != e) {
3692 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
3693 if ((Flags & 7) != 4 /*MEM*/) {
3694 // Just skip over this operand, copying the operands verbatim.
3695 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
3696 i += (Flags >> 3) + 1;
3697 } else {
3698 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
3699 // Otherwise, this is a memory operand. Ask the target to select it.
3700 std::vector<SDOperand> SelOps;
3701 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
3702 std::cerr << "Could not match memory address. Inline asm failure!\n";
3703 exit(1);
3704 }
3705
3706 // Add this to the output node.
3707 Ops.push_back(DAG.getConstant(4/*MEM*/ | (SelOps.size() << 3), MVT::i32));
3708 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
3709 i += 2;
3710 }
3711 }
3712
3713 // Add the flag input back if present.
3714 if (e != InOps.size())
3715 Ops.push_back(InOps.back());
3716}