blob: 0a9cb637b477bf971b8734e557d7c349dc49a4f9 [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"
45#include <map>
Chris Lattner4e4b5762006-02-01 18:59:47 +000046#include <set>
Chris Lattner1c08c712005-01-07 07:47:53 +000047#include <iostream>
Jeff Cohen7e881032006-02-24 02:52:40 +000048#include <algorithm>
Chris Lattner1c08c712005-01-07 07:47:53 +000049using namespace llvm;
50
Chris Lattnerda8abb02005-09-01 18:44:10 +000051#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000052static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000053ViewISelDAGs("view-isel-dags", cl::Hidden,
54 cl::desc("Pop up a window to show isel dags as they are selected"));
55static cl::opt<bool>
56ViewSchedDAGs("view-sched-dags", cl::Hidden,
57 cl::desc("Pop up a window to show sched dags as they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +000058#else
Chris Lattner5e46a192006-04-02 03:07:27 +000059static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0;
Chris Lattner7944d9d2005-01-12 03:41:21 +000060#endif
61
Evan Chengee00a1d2006-05-13 05:53:47 +000062// Scheduling heuristics
63enum SchedHeuristics {
64 defaultScheduling, // Let the target specify its preference.
65 noScheduling, // No scheduling, emit breadth first sequence.
66 simpleScheduling, // Two pass, min. critical path, max. utilization.
67 simpleNoItinScheduling, // Same as above exact using generic latency.
68 listSchedulingBURR, // Bottom-up reg reduction list scheduling.
69 listSchedulingTDRR, // Top-down reg reduction list scheduling.
70 listSchedulingTD // Top-down list scheduler.
71};
72
Evan Cheng4ef10862006-01-23 07:01:07 +000073namespace {
Evan Chengee00a1d2006-05-13 05:53:47 +000074 cl::opt<SchedHeuristics>
Evan Cheng4ef10862006-01-23 07:01:07 +000075 ISHeuristic(
76 "sched",
77 cl::desc("Choose scheduling style"),
Evan Chengee00a1d2006-05-13 05:53:47 +000078 cl::init(defaultScheduling),
Evan Cheng4ef10862006-01-23 07:01:07 +000079 cl::values(
Evan Chengee00a1d2006-05-13 05:53:47 +000080 clEnumValN(defaultScheduling, "default",
Evan Cheng3f239522006-01-25 09:12:57 +000081 "Target preferred scheduling style"),
Evan Chengee00a1d2006-05-13 05:53:47 +000082 clEnumValN(noScheduling, "none",
Jim Laskey17d52f72006-01-23 13:34:04 +000083 "No scheduling: breadth first sequencing"),
Evan Chengee00a1d2006-05-13 05:53:47 +000084 clEnumValN(simpleScheduling, "simple",
Evan Cheng4ef10862006-01-23 07:01:07 +000085 "Simple two pass scheduling: minimize critical path "
86 "and maximize processor utilization"),
Evan Chengee00a1d2006-05-13 05:53:47 +000087 clEnumValN(simpleNoItinScheduling, "simple-noitin",
Evan Cheng4ef10862006-01-23 07:01:07 +000088 "Simple two pass scheduling: Same as simple "
89 "except using generic latency"),
Evan Chengee00a1d2006-05-13 05:53:47 +000090 clEnumValN(listSchedulingBURR, "list-burr",
Evan Chenge165a782006-05-11 23:55:42 +000091 "Bottom-up register reduction list scheduling"),
Evan Chengee00a1d2006-05-13 05:53:47 +000092 clEnumValN(listSchedulingTDRR, "list-tdrr",
Evan Chenge165a782006-05-11 23:55:42 +000093 "Top-down register reduction list scheduling"),
Evan Chengee00a1d2006-05-13 05:53:47 +000094 clEnumValN(listSchedulingTD, "list-td",
Chris Lattner03fc53c2006-03-06 00:22:00 +000095 "Top-down list scheduler"),
Evan Cheng4ef10862006-01-23 07:01:07 +000096 clEnumValEnd));
97} // namespace
98
Chris Lattner864635a2006-02-22 22:37:12 +000099namespace {
100 /// RegsForValue - This struct represents the physical registers that a
101 /// particular value is assigned and the type information about the value.
102 /// This is needed because values can be promoted into larger registers and
103 /// expanded into multiple smaller registers than the value.
104 struct RegsForValue {
105 /// Regs - This list hold the register (for legal and promoted values)
106 /// or register set (for expanded values) that the value should be assigned
107 /// to.
108 std::vector<unsigned> Regs;
109
110 /// RegVT - The value type of each register.
111 ///
112 MVT::ValueType RegVT;
113
114 /// ValueVT - The value type of the LLVM value, which may be promoted from
115 /// RegVT or made from merging the two expanded parts.
116 MVT::ValueType ValueVT;
117
118 RegsForValue() : RegVT(MVT::Other), ValueVT(MVT::Other) {}
119
120 RegsForValue(unsigned Reg, MVT::ValueType regvt, MVT::ValueType valuevt)
121 : RegVT(regvt), ValueVT(valuevt) {
122 Regs.push_back(Reg);
123 }
124 RegsForValue(const std::vector<unsigned> &regs,
125 MVT::ValueType regvt, MVT::ValueType valuevt)
126 : Regs(regs), RegVT(regvt), ValueVT(valuevt) {
127 }
128
129 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
130 /// this value and returns the result as a ValueVT value. This uses
131 /// Chain/Flag as the input and updates them for the output Chain/Flag.
132 SDOperand getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000133 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000134
135 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
136 /// specified value into the registers specified by this object. This uses
137 /// Chain/Flag as the input and updates them for the output Chain/Flag.
138 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000139 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000140
141 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
142 /// operand list. This adds the code marker and includes the number of
143 /// values added into it.
144 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000145 std::vector<SDOperand> &Ops) const;
Chris Lattner864635a2006-02-22 22:37:12 +0000146 };
147}
Evan Cheng4ef10862006-01-23 07:01:07 +0000148
Chris Lattner1c08c712005-01-07 07:47:53 +0000149namespace llvm {
150 //===--------------------------------------------------------------------===//
151 /// FunctionLoweringInfo - This contains information that is global to a
152 /// function that is used when lowering a region of the function.
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000153 class FunctionLoweringInfo {
154 public:
Chris Lattner1c08c712005-01-07 07:47:53 +0000155 TargetLowering &TLI;
156 Function &Fn;
157 MachineFunction &MF;
158 SSARegMap *RegMap;
159
160 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
161
162 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
163 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
164
165 /// ValueMap - Since we emit code for the function a basic block at a time,
166 /// we must remember which virtual registers hold the values for
167 /// cross-basic-block values.
168 std::map<const Value*, unsigned> ValueMap;
169
170 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
171 /// the entry block. This allows the allocas to be efficiently referenced
172 /// anywhere in the function.
173 std::map<const AllocaInst*, int> StaticAllocaMap;
174
175 unsigned MakeReg(MVT::ValueType VT) {
176 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
177 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000178
Chris Lattner3c384492006-03-16 19:51:18 +0000179 unsigned CreateRegForValue(const Value *V);
180
Chris Lattner1c08c712005-01-07 07:47:53 +0000181 unsigned InitializeRegForValue(const Value *V) {
182 unsigned &R = ValueMap[V];
183 assert(R == 0 && "Already initialized this value register!");
184 return R = CreateRegForValue(V);
185 }
186 };
187}
188
189/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemanf15485a2006-03-27 01:32:24 +0000190/// PHI nodes or outside of the basic block that defines it, or used by a
191/// switch instruction, which may expand to multiple basic blocks.
Chris Lattner1c08c712005-01-07 07:47:53 +0000192static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
193 if (isa<PHINode>(I)) return true;
194 BasicBlock *BB = I->getParent();
195 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000196 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
197 isa<SwitchInst>(*UI))
Chris Lattner1c08c712005-01-07 07:47:53 +0000198 return true;
199 return false;
200}
201
Chris Lattnerbf209482005-10-30 19:42:35 +0000202/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemanf15485a2006-03-27 01:32:24 +0000203/// entry block, return true. This includes arguments used by switches, since
204/// the switch may expand into multiple basic blocks.
Chris Lattnerbf209482005-10-30 19:42:35 +0000205static bool isOnlyUsedInEntryBlock(Argument *A) {
206 BasicBlock *Entry = A->getParent()->begin();
207 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000208 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattnerbf209482005-10-30 19:42:35 +0000209 return false; // Use not in entry block.
210 return true;
211}
212
Chris Lattner1c08c712005-01-07 07:47:53 +0000213FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000214 Function &fn, MachineFunction &mf)
Chris Lattner1c08c712005-01-07 07:47:53 +0000215 : TLI(tli), Fn(fn), MF(mf), RegMap(MF.getSSARegMap()) {
216
Chris Lattnerbf209482005-10-30 19:42:35 +0000217 // Create a vreg for each argument register that is not dead and is used
218 // outside of the entry block for the function.
219 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
220 AI != E; ++AI)
221 if (!isOnlyUsedInEntryBlock(AI))
222 InitializeRegForValue(AI);
223
Chris Lattner1c08c712005-01-07 07:47:53 +0000224 // Initialize the mapping of values to registers. This is only set up for
225 // instruction values that are used outside of the block that defines
226 // them.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000227 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner1c08c712005-01-07 07:47:53 +0000228 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
229 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
230 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(AI->getArraySize())) {
231 const Type *Ty = AI->getAllocatedType();
Owen Andersona69571c2006-05-03 01:29:57 +0000232 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +0000233 unsigned Align =
Owen Andersona69571c2006-05-03 01:29:57 +0000234 std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +0000235 AI->getAlignment());
Chris Lattnera8217e32005-05-13 23:14:17 +0000236
237 // If the alignment of the value is smaller than the size of the value,
238 // and if the size of the value is particularly small (<= 8 bytes),
239 // round up to the size of the value for potentially better performance.
240 //
241 // FIXME: This could be made better with a preferred alignment hook in
242 // TargetData. It serves primarily to 8-byte align doubles for X86.
243 if (Align < TySize && TySize <= 8) Align = TySize;
Chris Lattner2dfa8192005-10-18 22:11:42 +0000244 TySize *= CUI->getValue(); // Get total allocated size.
Chris Lattnerd222f6a2005-10-18 22:14:06 +0000245 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner1c08c712005-01-07 07:47:53 +0000246 StaticAllocaMap[AI] =
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000247 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
Chris Lattner1c08c712005-01-07 07:47:53 +0000248 }
249
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000250 for (; BB != EB; ++BB)
251 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +0000252 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
253 if (!isa<AllocaInst>(I) ||
254 !StaticAllocaMap.count(cast<AllocaInst>(I)))
255 InitializeRegForValue(I);
256
257 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
258 // also creates the initial PHI MachineInstrs, though none of the input
259 // operands are populated.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000260 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000261 MachineBasicBlock *MBB = new MachineBasicBlock(BB);
262 MBBMap[BB] = MBB;
263 MF.getBasicBlockList().push_back(MBB);
264
265 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
266 // appropriate.
267 PHINode *PN;
268 for (BasicBlock::iterator I = BB->begin();
Chris Lattnerf44fd882005-01-07 21:34:19 +0000269 (PN = dyn_cast<PHINode>(I)); ++I)
270 if (!PN->use_empty()) {
Chris Lattner70c2a612006-03-31 02:06:56 +0000271 MVT::ValueType VT = TLI.getValueType(PN->getType());
272 unsigned NumElements;
273 if (VT != MVT::Vector)
274 NumElements = TLI.getNumElements(VT);
275 else {
276 MVT::ValueType VT1,VT2;
277 NumElements =
278 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
279 VT1, VT2);
280 }
Chris Lattnerf44fd882005-01-07 21:34:19 +0000281 unsigned PHIReg = ValueMap[PN];
282 assert(PHIReg &&"PHI node does not have an assigned virtual register!");
283 for (unsigned i = 0; i != NumElements; ++i)
284 BuildMI(MBB, TargetInstrInfo::PHI, PN->getNumOperands(), PHIReg+i);
285 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000286 }
287}
288
Chris Lattner3c384492006-03-16 19:51:18 +0000289/// CreateRegForValue - Allocate the appropriate number of virtual registers of
290/// the correctly promoted or expanded types. Assign these registers
291/// consecutive vreg numbers and return the first assigned number.
292unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
293 MVT::ValueType VT = TLI.getValueType(V->getType());
294
295 // The number of multiples of registers that we need, to, e.g., split up
296 // a <2 x int64> -> 4 x i32 registers.
297 unsigned NumVectorRegs = 1;
298
299 // If this is a packed type, figure out what type it will decompose into
300 // and how many of the elements it will use.
301 if (VT == MVT::Vector) {
302 const PackedType *PTy = cast<PackedType>(V->getType());
303 unsigned NumElts = PTy->getNumElements();
304 MVT::ValueType EltTy = TLI.getValueType(PTy->getElementType());
305
306 // Divide the input until we get to a supported size. This will always
307 // end with a scalar if the target doesn't support vectors.
308 while (NumElts > 1 && !TLI.isTypeLegal(getVectorType(EltTy, NumElts))) {
309 NumElts >>= 1;
310 NumVectorRegs <<= 1;
311 }
Chris Lattner6cb70042006-03-16 23:05:19 +0000312 if (NumElts == 1)
313 VT = EltTy;
314 else
315 VT = getVectorType(EltTy, NumElts);
Chris Lattner3c384492006-03-16 19:51:18 +0000316 }
317
318 // The common case is that we will only create one register for this
319 // value. If we have that case, create and return the virtual register.
320 unsigned NV = TLI.getNumElements(VT);
321 if (NV == 1) {
322 // If we are promoting this value, pick the next largest supported type.
323 MVT::ValueType PromotedType = TLI.getTypeToTransformTo(VT);
324 unsigned Reg = MakeReg(PromotedType);
325 // If this is a vector of supported or promoted types (e.g. 4 x i16),
326 // create all of the registers.
327 for (unsigned i = 1; i != NumVectorRegs; ++i)
328 MakeReg(PromotedType);
329 return Reg;
330 }
331
332 // If this value is represented with multiple target registers, make sure
333 // to create enough consecutive registers of the right (smaller) type.
334 unsigned NT = VT-1; // Find the type to use.
335 while (TLI.getNumElements((MVT::ValueType)NT) != 1)
336 --NT;
337
338 unsigned R = MakeReg((MVT::ValueType)NT);
339 for (unsigned i = 1; i != NV*NumVectorRegs; ++i)
340 MakeReg((MVT::ValueType)NT);
341 return R;
342}
Chris Lattner1c08c712005-01-07 07:47:53 +0000343
344//===----------------------------------------------------------------------===//
345/// SelectionDAGLowering - This is the common target-independent lowering
346/// implementation that is parameterized by a TargetLowering object.
347/// Also, targets can overload any lowering method.
348///
349namespace llvm {
350class SelectionDAGLowering {
351 MachineBasicBlock *CurMBB;
352
353 std::map<const Value*, SDOperand> NodeMap;
354
Chris Lattnerd3948112005-01-17 22:19:26 +0000355 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
356 /// them up and then emit token factor nodes when possible. This allows us to
357 /// get simple disambiguation between loads without worrying about alias
358 /// analysis.
359 std::vector<SDOperand> PendingLoads;
360
Nate Begemanf15485a2006-03-27 01:32:24 +0000361 /// Case - A pair of values to record the Value for a switch case, and the
362 /// case's target basic block.
363 typedef std::pair<Constant*, MachineBasicBlock*> Case;
364 typedef std::vector<Case>::iterator CaseItr;
365 typedef std::pair<CaseItr, CaseItr> CaseRange;
366
367 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
368 /// of conditional branches.
369 struct CaseRec {
370 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
371 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
372
373 /// CaseBB - The MBB in which to emit the compare and branch
374 MachineBasicBlock *CaseBB;
375 /// LT, GE - If nonzero, we know the current case value must be less-than or
376 /// greater-than-or-equal-to these Constants.
377 Constant *LT;
378 Constant *GE;
379 /// Range - A pair of iterators representing the range of case values to be
380 /// processed at this point in the binary search tree.
381 CaseRange Range;
382 };
383
384 /// The comparison function for sorting Case values.
385 struct CaseCmp {
386 bool operator () (const Case& C1, const Case& C2) {
387 if (const ConstantUInt* U1 = dyn_cast<const ConstantUInt>(C1.first))
388 return U1->getValue() < cast<const ConstantUInt>(C2.first)->getValue();
389
390 const ConstantSInt* S1 = dyn_cast<const ConstantSInt>(C1.first);
391 return S1->getValue() < cast<const ConstantSInt>(C2.first)->getValue();
392 }
393 };
394
Chris Lattner1c08c712005-01-07 07:47:53 +0000395public:
396 // TLI - This is information that describes the available target features we
397 // need for lowering. This indicates when operations are unavailable,
398 // implemented with a libcall, etc.
399 TargetLowering &TLI;
400 SelectionDAG &DAG;
Owen Andersona69571c2006-05-03 01:29:57 +0000401 const TargetData *TD;
Chris Lattner1c08c712005-01-07 07:47:53 +0000402
Nate Begemanf15485a2006-03-27 01:32:24 +0000403 /// SwitchCases - Vector of CaseBlock structures used to communicate
404 /// SwitchInst code generation information.
405 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Nate Begeman37efe672006-04-22 18:53:45 +0000406 SelectionDAGISel::JumpTable JT;
Nate Begemanf15485a2006-03-27 01:32:24 +0000407
Chris Lattner1c08c712005-01-07 07:47:53 +0000408 /// FuncInfo - Information about the function as a whole.
409 ///
410 FunctionLoweringInfo &FuncInfo;
411
412 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000413 FunctionLoweringInfo &funcinfo)
Chris Lattner1c08c712005-01-07 07:47:53 +0000414 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()),
Nate Begeman9453eea2006-04-23 06:26:20 +0000415 JT(0,0,0,0), FuncInfo(funcinfo) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000416 }
417
Chris Lattnera651cf62005-01-17 19:43:36 +0000418 /// getRoot - Return the current virtual root of the Selection DAG.
419 ///
420 SDOperand getRoot() {
Chris Lattnerd3948112005-01-17 22:19:26 +0000421 if (PendingLoads.empty())
422 return DAG.getRoot();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000423
Chris Lattnerd3948112005-01-17 22:19:26 +0000424 if (PendingLoads.size() == 1) {
425 SDOperand Root = PendingLoads[0];
426 DAG.setRoot(Root);
427 PendingLoads.clear();
428 return Root;
429 }
430
431 // Otherwise, we have to make a token factor node.
432 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other, PendingLoads);
433 PendingLoads.clear();
434 DAG.setRoot(Root);
435 return Root;
Chris Lattnera651cf62005-01-17 19:43:36 +0000436 }
437
Chris Lattner1c08c712005-01-07 07:47:53 +0000438 void visit(Instruction &I) { visit(I.getOpcode(), I); }
439
440 void visit(unsigned Opcode, User &I) {
441 switch (Opcode) {
442 default: assert(0 && "Unknown instruction type encountered!");
443 abort();
444 // Build the switch statement using the Instruction.def file.
445#define HANDLE_INST(NUM, OPCODE, CLASS) \
446 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
447#include "llvm/Instruction.def"
448 }
449 }
450
451 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
452
Chris Lattner28b5b1c2006-03-15 22:19:46 +0000453 SDOperand getLoadFrom(const Type *Ty, SDOperand Ptr,
454 SDOperand SrcValue, SDOperand Root,
455 bool isVolatile);
Chris Lattner1c08c712005-01-07 07:47:53 +0000456
457 SDOperand getIntPtrConstant(uint64_t Val) {
458 return DAG.getConstant(Val, TLI.getPointerTy());
459 }
460
Chris Lattner199862b2006-03-16 19:57:50 +0000461 SDOperand getValue(const Value *V);
Chris Lattner1c08c712005-01-07 07:47:53 +0000462
463 const SDOperand &setValue(const Value *V, SDOperand NewN) {
464 SDOperand &N = NodeMap[V];
465 assert(N.Val == 0 && "Already set a value for this node!");
466 return N = NewN;
467 }
Chris Lattner4e4b5762006-02-01 18:59:47 +0000468
Chris Lattner864635a2006-02-22 22:37:12 +0000469 RegsForValue GetRegistersForValue(const std::string &ConstrCode,
470 MVT::ValueType VT,
471 bool OutReg, bool InReg,
472 std::set<unsigned> &OutputRegs,
473 std::set<unsigned> &InputRegs);
Nate Begemanf15485a2006-03-27 01:32:24 +0000474
Chris Lattner1c08c712005-01-07 07:47:53 +0000475 // Terminator instructions.
476 void visitRet(ReturnInst &I);
477 void visitBr(BranchInst &I);
Nate Begemanf15485a2006-03-27 01:32:24 +0000478 void visitSwitch(SwitchInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000479 void visitUnreachable(UnreachableInst &I) { /* noop */ }
480
Nate Begemanf15485a2006-03-27 01:32:24 +0000481 // Helper for visitSwitch
482 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Nate Begeman37efe672006-04-22 18:53:45 +0000483 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Nate Begemanf15485a2006-03-27 01:32:24 +0000484
Chris Lattner1c08c712005-01-07 07:47:53 +0000485 // These all get lowered before this pass.
Chris Lattner1c08c712005-01-07 07:47:53 +0000486 void visitInvoke(InvokeInst &I) { assert(0 && "TODO"); }
487 void visitUnwind(UnwindInst &I) { assert(0 && "TODO"); }
488
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000489 void visitBinary(User &I, unsigned IntOp, unsigned FPOp, unsigned VecOp);
Nate Begemane21ea612005-11-18 07:42:56 +0000490 void visitShift(User &I, unsigned Opcode);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000491 void visitAdd(User &I) {
492 visitBinary(I, ISD::ADD, ISD::FADD, ISD::VADD);
Chris Lattner01b3d732005-09-28 22:28:18 +0000493 }
Chris Lattnerb9fccc42005-04-02 05:04:50 +0000494 void visitSub(User &I);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000495 void visitMul(User &I) {
496 visitBinary(I, ISD::MUL, ISD::FMUL, ISD::VMUL);
Chris Lattner01b3d732005-09-28 22:28:18 +0000497 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000498 void visitDiv(User &I) {
Chris Lattner01b3d732005-09-28 22:28:18 +0000499 const Type *Ty = I.getType();
Evan Cheng3e1ce5a2006-03-03 07:01:07 +0000500 visitBinary(I,
501 Ty->isSigned() ? ISD::SDIV : ISD::UDIV, ISD::FDIV,
502 Ty->isSigned() ? ISD::VSDIV : ISD::VUDIV);
Chris Lattner1c08c712005-01-07 07:47:53 +0000503 }
504 void visitRem(User &I) {
Chris Lattner01b3d732005-09-28 22:28:18 +0000505 const Type *Ty = I.getType();
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000506 visitBinary(I, Ty->isSigned() ? ISD::SREM : ISD::UREM, ISD::FREM, 0);
Chris Lattner1c08c712005-01-07 07:47:53 +0000507 }
Evan Cheng3e1ce5a2006-03-03 07:01:07 +0000508 void visitAnd(User &I) { visitBinary(I, ISD::AND, 0, ISD::VAND); }
509 void visitOr (User &I) { visitBinary(I, ISD::OR, 0, ISD::VOR); }
510 void visitXor(User &I) { visitBinary(I, ISD::XOR, 0, ISD::VXOR); }
Nate Begemane21ea612005-11-18 07:42:56 +0000511 void visitShl(User &I) { visitShift(I, ISD::SHL); }
512 void visitShr(User &I) {
513 visitShift(I, I.getType()->isUnsigned() ? ISD::SRL : ISD::SRA);
Chris Lattner1c08c712005-01-07 07:47:53 +0000514 }
515
Evan Chengf6f95812006-05-23 06:40:47 +0000516 void visitSetCC(User &I, ISD::CondCode SignedOpc, ISD::CondCode UnsignedOpc,
517 ISD::CondCode FPOpc);
518 void visitSetEQ(User &I) { visitSetCC(I, ISD::SETEQ, ISD::SETEQ,
519 ISD::SETOEQ); }
520 void visitSetNE(User &I) { visitSetCC(I, ISD::SETNE, ISD::SETNE,
521 ISD::SETUNE); }
522 void visitSetLE(User &I) { visitSetCC(I, ISD::SETLE, ISD::SETULE,
523 ISD::SETOLE); }
524 void visitSetGE(User &I) { visitSetCC(I, ISD::SETGE, ISD::SETUGE,
525 ISD::SETOGE); }
526 void visitSetLT(User &I) { visitSetCC(I, ISD::SETLT, ISD::SETULT,
527 ISD::SETOLT); }
528 void visitSetGT(User &I) { visitSetCC(I, ISD::SETGT, ISD::SETUGT,
529 ISD::SETOGT); }
Chris Lattner1c08c712005-01-07 07:47:53 +0000530
Chris Lattner2bbd8102006-03-29 00:11:43 +0000531 void visitExtractElement(User &I);
532 void visitInsertElement(User &I);
Chris Lattner3e104b12006-04-08 04:15:24 +0000533 void visitShuffleVector(User &I);
Chris Lattnerc7029802006-03-18 01:44:44 +0000534
Chris Lattner1c08c712005-01-07 07:47:53 +0000535 void visitGetElementPtr(User &I);
536 void visitCast(User &I);
537 void visitSelect(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000538
539 void visitMalloc(MallocInst &I);
540 void visitFree(FreeInst &I);
541 void visitAlloca(AllocaInst &I);
542 void visitLoad(LoadInst &I);
543 void visitStore(StoreInst &I);
544 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
545 void visitCall(CallInst &I);
Chris Lattnerce7518c2006-01-26 22:24:51 +0000546 void visitInlineAsm(CallInst &I);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +0000547 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +0000548 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner1c08c712005-01-07 07:47:53 +0000549
Chris Lattner1c08c712005-01-07 07:47:53 +0000550 void visitVAStart(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000551 void visitVAArg(VAArgInst &I);
552 void visitVAEnd(CallInst &I);
553 void visitVACopy(CallInst &I);
Chris Lattner39ae3622005-01-09 00:00:49 +0000554 void visitFrameReturnAddress(CallInst &I, bool isFrameAddress);
Chris Lattner1c08c712005-01-07 07:47:53 +0000555
Chris Lattner7041ee32005-01-11 05:56:49 +0000556 void visitMemIntrinsic(CallInst &I, unsigned Op);
Chris Lattner1c08c712005-01-07 07:47:53 +0000557
558 void visitUserOp1(Instruction &I) {
559 assert(0 && "UserOp1 should not exist at instruction selection time!");
560 abort();
561 }
562 void visitUserOp2(Instruction &I) {
563 assert(0 && "UserOp2 should not exist at instruction selection time!");
564 abort();
565 }
566};
567} // end namespace llvm
568
Chris Lattner199862b2006-03-16 19:57:50 +0000569SDOperand SelectionDAGLowering::getValue(const Value *V) {
570 SDOperand &N = NodeMap[V];
571 if (N.Val) return N;
572
573 const Type *VTy = V->getType();
574 MVT::ValueType VT = TLI.getValueType(VTy);
575 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
576 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
577 visit(CE->getOpcode(), *CE);
578 assert(N.Val && "visit didn't populate the ValueMap!");
579 return N;
580 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) {
581 return N = DAG.getGlobalAddress(GV, VT);
582 } else if (isa<ConstantPointerNull>(C)) {
583 return N = DAG.getConstant(0, TLI.getPointerTy());
584 } else if (isa<UndefValue>(C)) {
Chris Lattner23d564c2006-03-19 00:20:20 +0000585 if (!isa<PackedType>(VTy))
586 return N = DAG.getNode(ISD::UNDEF, VT);
587
Chris Lattnerb2827b02006-03-19 00:52:58 +0000588 // Create a VBUILD_VECTOR of undef nodes.
Chris Lattner23d564c2006-03-19 00:20:20 +0000589 const PackedType *PTy = cast<PackedType>(VTy);
590 unsigned NumElements = PTy->getNumElements();
591 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
592
593 std::vector<SDOperand> Ops;
594 Ops.assign(NumElements, DAG.getNode(ISD::UNDEF, PVT));
595
596 // Create a VConstant node with generic Vector type.
597 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
598 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerb2827b02006-03-19 00:52:58 +0000599 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner199862b2006-03-16 19:57:50 +0000600 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
601 return N = DAG.getConstantFP(CFP->getValue(), VT);
602 } else if (const PackedType *PTy = dyn_cast<PackedType>(VTy)) {
603 unsigned NumElements = PTy->getNumElements();
604 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattner199862b2006-03-16 19:57:50 +0000605
606 // Now that we know the number and type of the elements, push a
607 // Constant or ConstantFP node onto the ops list for each element of
608 // the packed constant.
609 std::vector<SDOperand> Ops;
610 if (ConstantPacked *CP = dyn_cast<ConstantPacked>(C)) {
Chris Lattner2bbd8102006-03-29 00:11:43 +0000611 for (unsigned i = 0; i != NumElements; ++i)
612 Ops.push_back(getValue(CP->getOperand(i)));
Chris Lattner199862b2006-03-16 19:57:50 +0000613 } else {
614 assert(isa<ConstantAggregateZero>(C) && "Unknown packed constant!");
615 SDOperand Op;
616 if (MVT::isFloatingPoint(PVT))
617 Op = DAG.getConstantFP(0, PVT);
618 else
619 Op = DAG.getConstant(0, PVT);
620 Ops.assign(NumElements, Op);
621 }
622
Chris Lattnerb2827b02006-03-19 00:52:58 +0000623 // Create a VBUILD_VECTOR node with generic Vector type.
Chris Lattner23d564c2006-03-19 00:20:20 +0000624 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
625 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerb2827b02006-03-19 00:52:58 +0000626 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner199862b2006-03-16 19:57:50 +0000627 } else {
628 // Canonicalize all constant ints to be unsigned.
629 return N = DAG.getConstant(cast<ConstantIntegral>(C)->getRawValue(),VT);
630 }
631 }
632
633 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
634 std::map<const AllocaInst*, int>::iterator SI =
635 FuncInfo.StaticAllocaMap.find(AI);
636 if (SI != FuncInfo.StaticAllocaMap.end())
637 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
638 }
639
640 std::map<const Value*, unsigned>::const_iterator VMI =
641 FuncInfo.ValueMap.find(V);
642 assert(VMI != FuncInfo.ValueMap.end() && "Value not in map!");
643
644 unsigned InReg = VMI->second;
645
646 // If this type is not legal, make it so now.
Chris Lattner70c2a612006-03-31 02:06:56 +0000647 if (VT != MVT::Vector) {
648 MVT::ValueType DestVT = TLI.getTypeToTransformTo(VT);
Chris Lattner199862b2006-03-16 19:57:50 +0000649
Chris Lattner70c2a612006-03-31 02:06:56 +0000650 N = DAG.getCopyFromReg(DAG.getEntryNode(), InReg, DestVT);
651 if (DestVT < VT) {
652 // Source must be expanded. This input value is actually coming from the
653 // register pair VMI->second and VMI->second+1.
654 N = DAG.getNode(ISD::BUILD_PAIR, VT, N,
655 DAG.getCopyFromReg(DAG.getEntryNode(), InReg+1, DestVT));
656 } else if (DestVT > VT) { // Promotion case
Chris Lattner199862b2006-03-16 19:57:50 +0000657 if (MVT::isFloatingPoint(VT))
658 N = DAG.getNode(ISD::FP_ROUND, VT, N);
659 else
660 N = DAG.getNode(ISD::TRUNCATE, VT, N);
661 }
Chris Lattner70c2a612006-03-31 02:06:56 +0000662 } else {
663 // Otherwise, if this is a vector, make it available as a generic vector
664 // here.
665 MVT::ValueType PTyElementVT, PTyLegalElementVT;
Chris Lattner2e2ef952006-04-05 06:54:42 +0000666 const PackedType *PTy = cast<PackedType>(VTy);
667 unsigned NE = TLI.getPackedTypeBreakdown(PTy, PTyElementVT,
Chris Lattner70c2a612006-03-31 02:06:56 +0000668 PTyLegalElementVT);
669
670 // Build a VBUILD_VECTOR with the input registers.
671 std::vector<SDOperand> Ops;
672 if (PTyElementVT == PTyLegalElementVT) {
673 // If the value types are legal, just VBUILD the CopyFromReg nodes.
674 for (unsigned i = 0; i != NE; ++i)
675 Ops.push_back(DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
676 PTyElementVT));
677 } else if (PTyElementVT < PTyLegalElementVT) {
678 // If the register was promoted, use TRUNCATE of FP_ROUND as appropriate.
679 for (unsigned i = 0; i != NE; ++i) {
680 SDOperand Op = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
681 PTyElementVT);
682 if (MVT::isFloatingPoint(PTyElementVT))
683 Op = DAG.getNode(ISD::FP_ROUND, PTyElementVT, Op);
684 else
685 Op = DAG.getNode(ISD::TRUNCATE, PTyElementVT, Op);
686 Ops.push_back(Op);
687 }
688 } else {
689 // If the register was expanded, use BUILD_PAIR.
690 assert((NE & 1) == 0 && "Must expand into a multiple of 2 elements!");
691 for (unsigned i = 0; i != NE/2; ++i) {
692 SDOperand Op0 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
693 PTyElementVT);
694 SDOperand Op1 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++,
695 PTyElementVT);
696 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Op0, Op1));
697 }
698 }
699
700 Ops.push_back(DAG.getConstant(NE, MVT::i32));
701 Ops.push_back(DAG.getValueType(PTyLegalElementVT));
702 N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner2e2ef952006-04-05 06:54:42 +0000703
704 // Finally, use a VBIT_CONVERT to make this available as the appropriate
705 // vector type.
706 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
707 DAG.getConstant(PTy->getNumElements(),
708 MVT::i32),
709 DAG.getValueType(TLI.getValueType(PTy->getElementType())));
Chris Lattner199862b2006-03-16 19:57:50 +0000710 }
711
712 return N;
713}
714
715
Chris Lattner1c08c712005-01-07 07:47:53 +0000716void SelectionDAGLowering::visitRet(ReturnInst &I) {
717 if (I.getNumOperands() == 0) {
Chris Lattnera651cf62005-01-17 19:43:36 +0000718 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getRoot()));
Chris Lattner1c08c712005-01-07 07:47:53 +0000719 return;
720 }
Nate Begemanee625572006-01-27 21:09:22 +0000721 std::vector<SDOperand> NewValues;
722 NewValues.push_back(getRoot());
723 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
724 SDOperand RetOp = getValue(I.getOperand(i));
Evan Cheng8e7d0562006-05-26 23:09:09 +0000725 bool isSigned = I.getOperand(i)->getType()->isSigned();
Nate Begemanee625572006-01-27 21:09:22 +0000726
727 // If this is an integer return value, we need to promote it ourselves to
728 // the full width of a register, since LegalizeOp will use ANY_EXTEND rather
729 // than sign/zero.
Evan Cheng8e7d0562006-05-26 23:09:09 +0000730 // FIXME: C calling convention requires the return type to be promoted to
731 // at least 32-bit. But this is not necessary for non-C calling conventions.
Nate Begemanee625572006-01-27 21:09:22 +0000732 if (MVT::isInteger(RetOp.getValueType()) &&
733 RetOp.getValueType() < MVT::i64) {
734 MVT::ValueType TmpVT;
735 if (TLI.getTypeAction(MVT::i32) == TargetLowering::Promote)
736 TmpVT = TLI.getTypeToTransformTo(MVT::i32);
737 else
738 TmpVT = MVT::i32;
Chris Lattner1c08c712005-01-07 07:47:53 +0000739
Evan Cheng8e7d0562006-05-26 23:09:09 +0000740 if (isSigned)
Nate Begemanee625572006-01-27 21:09:22 +0000741 RetOp = DAG.getNode(ISD::SIGN_EXTEND, TmpVT, RetOp);
742 else
743 RetOp = DAG.getNode(ISD::ZERO_EXTEND, TmpVT, RetOp);
744 }
745 NewValues.push_back(RetOp);
Evan Cheng8e7d0562006-05-26 23:09:09 +0000746 NewValues.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattner1c08c712005-01-07 07:47:53 +0000747 }
Nate Begemanee625572006-01-27 21:09:22 +0000748 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, NewValues));
Chris Lattner1c08c712005-01-07 07:47:53 +0000749}
750
751void SelectionDAGLowering::visitBr(BranchInst &I) {
752 // Update machine-CFG edges.
753 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Nate Begemanf15485a2006-03-27 01:32:24 +0000754 CurMBB->addSuccessor(Succ0MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000755
756 // Figure out which block is immediately after the current one.
757 MachineBasicBlock *NextBlock = 0;
758 MachineFunction::iterator BBI = CurMBB;
759 if (++BBI != CurMBB->getParent()->end())
760 NextBlock = BBI;
761
762 if (I.isUnconditional()) {
763 // If this is not a fall-through branch, emit the branch.
764 if (Succ0MBB != NextBlock)
Chris Lattnera651cf62005-01-17 19:43:36 +0000765 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000766 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000767 } else {
768 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Nate Begemanf15485a2006-03-27 01:32:24 +0000769 CurMBB->addSuccessor(Succ1MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000770
771 SDOperand Cond = getValue(I.getCondition());
Chris Lattner1c08c712005-01-07 07:47:53 +0000772 if (Succ1MBB == NextBlock) {
773 // If the condition is false, fall through. This means we should branch
774 // if the condition is true to Succ #0.
Chris Lattnera651cf62005-01-17 19:43:36 +0000775 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000776 Cond, DAG.getBasicBlock(Succ0MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000777 } else if (Succ0MBB == NextBlock) {
778 // If the condition is true, fall through. This means we should branch if
779 // the condition is false to Succ #1. Invert the condition first.
780 SDOperand True = DAG.getConstant(1, Cond.getValueType());
781 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
Chris Lattnera651cf62005-01-17 19:43:36 +0000782 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +0000783 Cond, DAG.getBasicBlock(Succ1MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000784 } else {
Chris Lattnere7ccd4a2005-04-09 03:30:29 +0000785 std::vector<SDOperand> Ops;
786 Ops.push_back(getRoot());
Evan Cheng298ebf22006-02-16 08:27:56 +0000787 // If the false case is the current basic block, then this is a self
788 // loop. We do not want to emit "Loop: ... brcond Out; br Loop", as it
789 // adds an extra instruction in the loop. Instead, invert the
790 // condition and emit "Loop: ... br!cond Loop; br Out.
791 if (CurMBB == Succ1MBB) {
792 std::swap(Succ0MBB, Succ1MBB);
793 SDOperand True = DAG.getConstant(1, Cond.getValueType());
794 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
795 }
Nate Begeman81e80972006-03-17 01:40:33 +0000796 SDOperand True = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
797 DAG.getBasicBlock(Succ0MBB));
798 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, True,
799 DAG.getBasicBlock(Succ1MBB)));
Chris Lattner1c08c712005-01-07 07:47:53 +0000800 }
801 }
802}
803
Nate Begemanf15485a2006-03-27 01:32:24 +0000804/// visitSwitchCase - Emits the necessary code to represent a single node in
805/// the binary search tree resulting from lowering a switch instruction.
806void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
807 SDOperand SwitchOp = getValue(CB.SwitchV);
808 SDOperand CaseOp = getValue(CB.CaseC);
809 SDOperand Cond = DAG.getSetCC(MVT::i1, SwitchOp, CaseOp, CB.CC);
810
811 // Set NextBlock to be the MBB immediately after the current one, if any.
812 // This is used to avoid emitting unnecessary branches to the next block.
813 MachineBasicBlock *NextBlock = 0;
814 MachineFunction::iterator BBI = CurMBB;
815 if (++BBI != CurMBB->getParent()->end())
816 NextBlock = BBI;
817
818 // If the lhs block is the next block, invert the condition so that we can
819 // fall through to the lhs instead of the rhs block.
820 if (CB.LHSBB == NextBlock) {
821 std::swap(CB.LHSBB, CB.RHSBB);
822 SDOperand True = DAG.getConstant(1, Cond.getValueType());
823 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
824 }
825 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
826 DAG.getBasicBlock(CB.LHSBB));
827 if (CB.RHSBB == NextBlock)
828 DAG.setRoot(BrCond);
829 else
830 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
831 DAG.getBasicBlock(CB.RHSBB)));
832 // Update successor info
833 CurMBB->addSuccessor(CB.LHSBB);
834 CurMBB->addSuccessor(CB.RHSBB);
835}
836
Nate Begeman37efe672006-04-22 18:53:45 +0000837/// visitSwitchCase - Emits the necessary code to represent a single node in
838/// the binary search tree resulting from lowering a switch instruction.
839void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
840 // FIXME: Need to emit different code for PIC vs. Non-PIC, specifically,
841 // we need to add the address of the jump table to the value loaded, since
842 // the entries in the jump table will be differences rather than absolute
843 // addresses.
844
845 // Emit the code for the jump table
846 MVT::ValueType PTy = TLI.getPointerTy();
847 unsigned PTyBytes = MVT::getSizeInBits(PTy)/8;
848 SDOperand Copy = DAG.getCopyFromReg(getRoot(), JT.Reg, PTy);
849 SDOperand IDX = DAG.getNode(ISD::MUL, PTy, Copy,
850 DAG.getConstant(PTyBytes, PTy));
851 SDOperand ADD = DAG.getNode(ISD::ADD, PTy, IDX, DAG.getJumpTable(JT.JTI,PTy));
852 SDOperand LD = DAG.getLoad(PTy, Copy.getValue(1), ADD, DAG.getSrcValue(0));
853 DAG.setRoot(DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD));
Nate Begeman37efe672006-04-22 18:53:45 +0000854}
855
Nate Begemanf15485a2006-03-27 01:32:24 +0000856void SelectionDAGLowering::visitSwitch(SwitchInst &I) {
857 // Figure out which block is immediately after the current one.
858 MachineBasicBlock *NextBlock = 0;
859 MachineFunction::iterator BBI = CurMBB;
860 if (++BBI != CurMBB->getParent()->end())
861 NextBlock = BBI;
862
863 // If there is only the default destination, branch to it if it is not the
864 // next basic block. Otherwise, just fall through.
865 if (I.getNumOperands() == 2) {
866 // Update machine-CFG edges.
867 MachineBasicBlock *DefaultMBB = FuncInfo.MBBMap[I.getDefaultDest()];
868 // If this is not a fall-through branch, emit the branch.
869 if (DefaultMBB != NextBlock)
870 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
871 DAG.getBasicBlock(DefaultMBB)));
872 return;
873 }
874
875 // If there are any non-default case statements, create a vector of Cases
876 // representing each one, and sort the vector so that we can efficiently
877 // create a binary search tree from them.
878 std::vector<Case> Cases;
879 for (unsigned i = 1; i < I.getNumSuccessors(); ++i) {
880 MachineBasicBlock *SMBB = FuncInfo.MBBMap[I.getSuccessor(i)];
881 Cases.push_back(Case(I.getSuccessorValue(i), SMBB));
882 }
883 std::sort(Cases.begin(), Cases.end(), CaseCmp());
884
885 // Get the Value to be switched on and default basic blocks, which will be
886 // inserted into CaseBlock records, representing basic blocks in the binary
887 // search tree.
888 Value *SV = I.getOperand(0);
889 MachineBasicBlock *Default = FuncInfo.MBBMap[I.getDefaultDest()];
Nate Begeman37efe672006-04-22 18:53:45 +0000890
891 // Get the MachineFunction which holds the current MBB. This is used during
892 // emission of jump tables, and when inserting any additional MBBs necessary
893 // to represent the switch.
Nate Begemanf15485a2006-03-27 01:32:24 +0000894 MachineFunction *CurMF = CurMBB->getParent();
895 const BasicBlock *LLVMBB = CurMBB->getBasicBlock();
Nate Begeman37efe672006-04-22 18:53:45 +0000896 Reloc::Model Relocs = TLI.getTargetMachine().getRelocationModel();
897
Nate Begeman17c275f2006-05-08 16:51:36 +0000898 // If the switch has more than 5 blocks, and at least 31.25% dense, and the
899 // target supports indirect branches, then emit a jump table rather than
900 // lowering the switch to a binary tree of conditional branches.
Nate Begeman37efe672006-04-22 18:53:45 +0000901 // FIXME: Make this work with PIC code
Nate Begeman9453eea2006-04-23 06:26:20 +0000902 if (TLI.isOperationLegal(ISD::BRIND, TLI.getPointerTy()) &&
Nate Begeman37efe672006-04-22 18:53:45 +0000903 (Relocs == Reloc::Static || Relocs == Reloc::DynamicNoPIC) &&
Nate Begemanf4360a42006-05-03 03:48:02 +0000904 Cases.size() > 5) {
Nate Begeman37efe672006-04-22 18:53:45 +0000905 uint64_t First = cast<ConstantIntegral>(Cases.front().first)->getRawValue();
906 uint64_t Last = cast<ConstantIntegral>(Cases.back().first)->getRawValue();
Nate Begemanf4360a42006-05-03 03:48:02 +0000907 double Density = (double)Cases.size() / (double)((Last - First) + 1ULL);
908
Nate Begeman17c275f2006-05-08 16:51:36 +0000909 if (Density >= 0.3125) {
Nate Begeman37efe672006-04-22 18:53:45 +0000910 // Create a new basic block to hold the code for loading the address
911 // of the jump table, and jumping to it. Update successor information;
912 // we will either branch to the default case for the switch, or the jump
913 // table.
914 MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
915 CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
916 CurMBB->addSuccessor(Default);
917 CurMBB->addSuccessor(JumpTableBB);
918
919 // Subtract the lowest switch case value from the value being switched on
920 // and conditional branch to default mbb if the result is greater than the
921 // difference between smallest and largest cases.
922 SDOperand SwitchOp = getValue(SV);
923 MVT::ValueType VT = SwitchOp.getValueType();
924 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
925 DAG.getConstant(First, VT));
926
927 // The SDNode we just created, which holds the value being switched on
928 // minus the the smallest case value, needs to be copied to a virtual
929 // register so it can be used as an index into the jump table in a
930 // subsequent basic block. This value may be smaller or larger than the
931 // target's pointer type, and therefore require extension or truncating.
932 if (VT > TLI.getPointerTy())
933 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
934 else
935 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
936 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
937 SDOperand CopyTo = DAG.getCopyToReg(getRoot(), JumpTableReg, SwitchOp);
938
939 // Emit the range check for the jump table, and branch to the default
940 // block for the switch statement if the value being switched on exceeds
941 // the largest case in the switch.
942 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultTy(), SUB,
943 DAG.getConstant(Last-First,VT), ISD::SETUGT);
944 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
945 DAG.getBasicBlock(Default)));
946
Nate Begemanf4360a42006-05-03 03:48:02 +0000947 // Build a vector of destination BBs, corresponding to each target
948 // of the jump table. If the value of the jump table slot corresponds to
949 // a case statement, push the case's BB onto the vector, otherwise, push
950 // the default BB.
Nate Begeman37efe672006-04-22 18:53:45 +0000951 std::set<MachineBasicBlock*> UniqueBBs;
952 std::vector<MachineBasicBlock*> DestBBs;
Nate Begemanf4360a42006-05-03 03:48:02 +0000953 uint64_t TEI = First;
954 for (CaseItr ii = Cases.begin(), ee = Cases.end(); ii != ee; ++TEI) {
955 if (cast<ConstantIntegral>(ii->first)->getRawValue() == TEI) {
956 DestBBs.push_back(ii->second);
957 UniqueBBs.insert(ii->second);
958 ++ii;
959 } else {
960 DestBBs.push_back(Default);
961 UniqueBBs.insert(Default);
962 }
Nate Begeman37efe672006-04-22 18:53:45 +0000963 }
Nate Begemanf4360a42006-05-03 03:48:02 +0000964
965 // Update successor info
966 for (std::set<MachineBasicBlock*>::iterator ii = UniqueBBs.begin(),
967 ee = UniqueBBs.end(); ii != ee; ++ii)
968 JumpTableBB->addSuccessor(*ii);
969
970 // Create a jump table index for this jump table, or return an existing
971 // one.
Nate Begeman37efe672006-04-22 18:53:45 +0000972 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
973
974 // Set the jump table information so that we can codegen it as a second
975 // MachineBasicBlock
976 JT.Reg = JumpTableReg;
977 JT.JTI = JTI;
978 JT.MBB = JumpTableBB;
Nate Begeman9453eea2006-04-23 06:26:20 +0000979 JT.Default = Default;
Nate Begeman37efe672006-04-22 18:53:45 +0000980 return;
981 }
982 }
Nate Begemanf15485a2006-03-27 01:32:24 +0000983
984 // Push the initial CaseRec onto the worklist
985 std::vector<CaseRec> CaseVec;
986 CaseVec.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
987
988 while (!CaseVec.empty()) {
989 // Grab a record representing a case range to process off the worklist
990 CaseRec CR = CaseVec.back();
991 CaseVec.pop_back();
992
993 // Size is the number of Cases represented by this range. If Size is 1,
994 // then we are processing a leaf of the binary search tree. Otherwise,
995 // we need to pick a pivot, and push left and right ranges onto the
996 // worklist.
997 unsigned Size = CR.Range.second - CR.Range.first;
998
999 if (Size == 1) {
1000 // Create a CaseBlock record representing a conditional branch to
1001 // the Case's target mbb if the value being switched on SV is equal
1002 // to C. Otherwise, branch to default.
1003 Constant *C = CR.Range.first->first;
1004 MachineBasicBlock *Target = CR.Range.first->second;
1005 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, SV, C, Target, Default,
1006 CR.CaseBB);
1007 // If the MBB representing the leaf node is the current MBB, then just
1008 // call visitSwitchCase to emit the code into the current block.
1009 // Otherwise, push the CaseBlock onto the vector to be later processed
1010 // by SDISel, and insert the node's MBB before the next MBB.
1011 if (CR.CaseBB == CurMBB)
1012 visitSwitchCase(CB);
1013 else {
1014 SwitchCases.push_back(CB);
1015 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1016 }
1017 } else {
1018 // split case range at pivot
1019 CaseItr Pivot = CR.Range.first + (Size / 2);
1020 CaseRange LHSR(CR.Range.first, Pivot);
1021 CaseRange RHSR(Pivot, CR.Range.second);
1022 Constant *C = Pivot->first;
1023 MachineBasicBlock *RHSBB = 0, *LHSBB = 0;
1024 // We know that we branch to the LHS if the Value being switched on is
1025 // less than the Pivot value, C. We use this to optimize our binary
1026 // tree a bit, by recognizing that if SV is greater than or equal to the
1027 // LHS's Case Value, and that Case Value is exactly one less than the
1028 // Pivot's Value, then we can branch directly to the LHS's Target,
1029 // rather than creating a leaf node for it.
1030 if ((LHSR.second - LHSR.first) == 1 &&
1031 LHSR.first->first == CR.GE &&
1032 cast<ConstantIntegral>(C)->getRawValue() ==
1033 (cast<ConstantIntegral>(CR.GE)->getRawValue() + 1ULL)) {
1034 LHSBB = LHSR.first->second;
1035 } else {
1036 LHSBB = new MachineBasicBlock(LLVMBB);
1037 CaseVec.push_back(CaseRec(LHSBB,C,CR.GE,LHSR));
1038 }
1039 // Similar to the optimization above, if the Value being switched on is
1040 // known to be less than the Constant CR.LT, and the current Case Value
1041 // is CR.LT - 1, then we can branch directly to the target block for
1042 // the current Case Value, rather than emitting a RHS leaf node for it.
1043 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
1044 cast<ConstantIntegral>(RHSR.first->first)->getRawValue() ==
1045 (cast<ConstantIntegral>(CR.LT)->getRawValue() - 1ULL)) {
1046 RHSBB = RHSR.first->second;
1047 } else {
1048 RHSBB = new MachineBasicBlock(LLVMBB);
1049 CaseVec.push_back(CaseRec(RHSBB,CR.LT,C,RHSR));
1050 }
1051 // Create a CaseBlock record representing a conditional branch to
1052 // the LHS node if the value being switched on SV is less than C.
1053 // Otherwise, branch to LHS.
1054 ISD::CondCode CC = C->getType()->isSigned() ? ISD::SETLT : ISD::SETULT;
1055 SelectionDAGISel::CaseBlock CB(CC, SV, C, LHSBB, RHSBB, CR.CaseBB);
1056 if (CR.CaseBB == CurMBB)
1057 visitSwitchCase(CB);
1058 else {
1059 SwitchCases.push_back(CB);
1060 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1061 }
1062 }
1063 }
1064}
1065
Chris Lattnerb9fccc42005-04-02 05:04:50 +00001066void SelectionDAGLowering::visitSub(User &I) {
1067 // -0.0 - X --> fneg
Chris Lattner01b3d732005-09-28 22:28:18 +00001068 if (I.getType()->isFloatingPoint()) {
1069 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
1070 if (CFP->isExactlyValue(-0.0)) {
1071 SDOperand Op2 = getValue(I.getOperand(1));
1072 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
1073 return;
1074 }
Chris Lattner01b3d732005-09-28 22:28:18 +00001075 }
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001076 visitBinary(I, ISD::SUB, ISD::FSUB, ISD::VSUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00001077}
1078
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001079void SelectionDAGLowering::visitBinary(User &I, unsigned IntOp, unsigned FPOp,
1080 unsigned VecOp) {
1081 const Type *Ty = I.getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00001082 SDOperand Op1 = getValue(I.getOperand(0));
1083 SDOperand Op2 = getValue(I.getOperand(1));
Chris Lattner2c49f272005-01-19 22:31:21 +00001084
Chris Lattnerb67eb912005-11-19 18:40:42 +00001085 if (Ty->isIntegral()) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001086 setValue(&I, DAG.getNode(IntOp, Op1.getValueType(), Op1, Op2));
1087 } else if (Ty->isFloatingPoint()) {
1088 setValue(&I, DAG.getNode(FPOp, Op1.getValueType(), Op1, Op2));
1089 } else {
1090 const PackedType *PTy = cast<PackedType>(Ty);
Chris Lattnerc7029802006-03-18 01:44:44 +00001091 SDOperand Num = DAG.getConstant(PTy->getNumElements(), MVT::i32);
1092 SDOperand Typ = DAG.getValueType(TLI.getValueType(PTy->getElementType()));
1093 setValue(&I, DAG.getNode(VecOp, MVT::Vector, Op1, Op2, Num, Typ));
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001094 }
Nate Begemane21ea612005-11-18 07:42:56 +00001095}
Chris Lattner2c49f272005-01-19 22:31:21 +00001096
Nate Begemane21ea612005-11-18 07:42:56 +00001097void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
1098 SDOperand Op1 = getValue(I.getOperand(0));
1099 SDOperand Op2 = getValue(I.getOperand(1));
1100
1101 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
1102
Chris Lattner1c08c712005-01-07 07:47:53 +00001103 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
1104}
1105
1106void SelectionDAGLowering::visitSetCC(User &I,ISD::CondCode SignedOpcode,
Evan Chengf6f95812006-05-23 06:40:47 +00001107 ISD::CondCode UnsignedOpcode,
1108 ISD::CondCode FPOpcode) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001109 SDOperand Op1 = getValue(I.getOperand(0));
1110 SDOperand Op2 = getValue(I.getOperand(1));
1111 ISD::CondCode Opcode = SignedOpcode;
Evan Cheng80235d52006-05-23 18:18:46 +00001112 if (!FiniteOnlyFPMath() && I.getOperand(0)->getType()->isFloatingPoint())
Evan Chengf6f95812006-05-23 06:40:47 +00001113 Opcode = FPOpcode;
1114 else if (I.getOperand(0)->getType()->isUnsigned())
Chris Lattner1c08c712005-01-07 07:47:53 +00001115 Opcode = UnsignedOpcode;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001116 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
Chris Lattner1c08c712005-01-07 07:47:53 +00001117}
1118
1119void SelectionDAGLowering::visitSelect(User &I) {
1120 SDOperand Cond = getValue(I.getOperand(0));
1121 SDOperand TrueVal = getValue(I.getOperand(1));
1122 SDOperand FalseVal = getValue(I.getOperand(2));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00001123 if (!isa<PackedType>(I.getType())) {
1124 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
1125 TrueVal, FalseVal));
1126 } else {
1127 setValue(&I, DAG.getNode(ISD::VSELECT, MVT::Vector, Cond, TrueVal, FalseVal,
1128 *(TrueVal.Val->op_end()-2),
1129 *(TrueVal.Val->op_end()-1)));
1130 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001131}
1132
1133void SelectionDAGLowering::visitCast(User &I) {
1134 SDOperand N = getValue(I.getOperand(0));
Chris Lattnere25ca692006-03-22 20:09:35 +00001135 MVT::ValueType SrcVT = N.getValueType();
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001136 MVT::ValueType DestVT = TLI.getValueType(I.getType());
Chris Lattner1c08c712005-01-07 07:47:53 +00001137
Chris Lattnere25ca692006-03-22 20:09:35 +00001138 if (DestVT == MVT::Vector) {
1139 // This is a cast to a vector from something else. This is always a bit
1140 // convert. Get information about the input vector.
1141 const PackedType *DestTy = cast<PackedType>(I.getType());
1142 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1143 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N,
1144 DAG.getConstant(DestTy->getNumElements(),MVT::i32),
1145 DAG.getValueType(EltVT)));
1146 } else if (SrcVT == DestVT) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001147 setValue(&I, N); // noop cast.
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001148 } else if (DestVT == MVT::i1) {
Chris Lattneref311aa2005-05-09 22:17:13 +00001149 // Cast to bool is a comparison against zero, not truncation to zero.
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001150 SDOperand Zero = isInteger(SrcVT) ? DAG.getConstant(0, N.getValueType()) :
Chris Lattneref311aa2005-05-09 22:17:13 +00001151 DAG.getConstantFP(0.0, N.getValueType());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001152 setValue(&I, DAG.getSetCC(MVT::i1, N, Zero, ISD::SETNE));
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001153 } else if (isInteger(SrcVT)) {
1154 if (isInteger(DestVT)) { // Int -> Int cast
1155 if (DestVT < SrcVT) // Truncating cast?
1156 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001157 else if (I.getOperand(0)->getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001158 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001159 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001160 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
Chris Lattner7e358902006-03-22 22:20:49 +00001161 } else if (isFloatingPoint(DestVT)) { // Int -> FP cast
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001162 if (I.getOperand(0)->getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001163 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001164 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001165 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001166 } else {
1167 assert(0 && "Unknown cast!");
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001168 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001169 } else if (isFloatingPoint(SrcVT)) {
1170 if (isFloatingPoint(DestVT)) { // FP -> FP cast
1171 if (DestVT < SrcVT) // Rounding cast?
1172 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001173 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001174 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001175 } else if (isInteger(DestVT)) { // FP -> Int cast.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001176 if (I.getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001177 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001178 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001179 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001180 } else {
1181 assert(0 && "Unknown cast!");
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001182 }
1183 } else {
Chris Lattnere25ca692006-03-22 20:09:35 +00001184 assert(SrcVT == MVT::Vector && "Unknown cast!");
1185 assert(DestVT != MVT::Vector && "Casts to vector already handled!");
1186 // This is a cast from a vector to something else. This is always a bit
1187 // convert. Get information about the input vector.
1188 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N));
Chris Lattner1c08c712005-01-07 07:47:53 +00001189 }
1190}
1191
Chris Lattner2bbd8102006-03-29 00:11:43 +00001192void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattnerc7029802006-03-18 01:44:44 +00001193 SDOperand InVec = getValue(I.getOperand(0));
1194 SDOperand InVal = getValue(I.getOperand(1));
1195 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1196 getValue(I.getOperand(2)));
1197
Chris Lattner2332b9f2006-03-19 01:17:20 +00001198 SDOperand Num = *(InVec.Val->op_end()-2);
1199 SDOperand Typ = *(InVec.Val->op_end()-1);
1200 setValue(&I, DAG.getNode(ISD::VINSERT_VECTOR_ELT, MVT::Vector,
1201 InVec, InVal, InIdx, Num, Typ));
Chris Lattnerc7029802006-03-18 01:44:44 +00001202}
1203
Chris Lattner2bbd8102006-03-29 00:11:43 +00001204void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner384504c2006-03-21 20:44:12 +00001205 SDOperand InVec = getValue(I.getOperand(0));
1206 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1207 getValue(I.getOperand(1)));
1208 SDOperand Typ = *(InVec.Val->op_end()-1);
1209 setValue(&I, DAG.getNode(ISD::VEXTRACT_VECTOR_ELT,
1210 TLI.getValueType(I.getType()), InVec, InIdx));
1211}
Chris Lattnerc7029802006-03-18 01:44:44 +00001212
Chris Lattner3e104b12006-04-08 04:15:24 +00001213void SelectionDAGLowering::visitShuffleVector(User &I) {
1214 SDOperand V1 = getValue(I.getOperand(0));
1215 SDOperand V2 = getValue(I.getOperand(1));
1216 SDOperand Mask = getValue(I.getOperand(2));
1217
1218 SDOperand Num = *(V1.Val->op_end()-2);
1219 SDOperand Typ = *(V2.Val->op_end()-1);
1220 setValue(&I, DAG.getNode(ISD::VVECTOR_SHUFFLE, MVT::Vector,
1221 V1, V2, Mask, Num, Typ));
1222}
1223
1224
Chris Lattner1c08c712005-01-07 07:47:53 +00001225void SelectionDAGLowering::visitGetElementPtr(User &I) {
1226 SDOperand N = getValue(I.getOperand(0));
1227 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00001228
1229 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
1230 OI != E; ++OI) {
1231 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00001232 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001233 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
1234 if (Field) {
1235 // N = N + Offset
Owen Andersona69571c2006-05-03 01:29:57 +00001236 uint64_t Offset = TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattner1c08c712005-01-07 07:47:53 +00001237 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001238 getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00001239 }
1240 Ty = StTy->getElementType(Field);
1241 } else {
1242 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00001243
Chris Lattner7c0104b2005-11-09 04:45:33 +00001244 // If this is a constant subscript, handle it quickly.
1245 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
1246 if (CI->getRawValue() == 0) continue;
Chris Lattner7cc47772005-01-07 21:56:57 +00001247
Chris Lattner7c0104b2005-11-09 04:45:33 +00001248 uint64_t Offs;
1249 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Andersona69571c2006-05-03 01:29:57 +00001250 Offs = (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattner7c0104b2005-11-09 04:45:33 +00001251 else
Owen Andersona69571c2006-05-03 01:29:57 +00001252 Offs = TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattner7c0104b2005-11-09 04:45:33 +00001253 N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs));
1254 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00001255 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00001256
1257 // N = N + Idx * ElementSize;
Owen Andersona69571c2006-05-03 01:29:57 +00001258 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattner7c0104b2005-11-09 04:45:33 +00001259 SDOperand IdxN = getValue(Idx);
1260
1261 // If the index is smaller or larger than intptr_t, truncate or extend
1262 // it.
1263 if (IdxN.getValueType() < N.getValueType()) {
1264 if (Idx->getType()->isSigned())
1265 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
1266 else
1267 IdxN = DAG.getNode(ISD::ZERO_EXTEND, N.getValueType(), IdxN);
1268 } else if (IdxN.getValueType() > N.getValueType())
1269 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
1270
1271 // If this is a multiply by a power of two, turn it into a shl
1272 // immediately. This is a very common case.
1273 if (isPowerOf2_64(ElementSize)) {
1274 unsigned Amt = Log2_64(ElementSize);
1275 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00001276 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00001277 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
1278 continue;
1279 }
1280
1281 SDOperand Scale = getIntPtrConstant(ElementSize);
1282 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
1283 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00001284 }
1285 }
1286 setValue(&I, N);
1287}
1288
1289void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
1290 // If this is a fixed sized alloca in the entry block of the function,
1291 // allocate it statically on the stack.
1292 if (FuncInfo.StaticAllocaMap.count(&I))
1293 return; // getValue will auto-populate this.
1294
1295 const Type *Ty = I.getAllocatedType();
Owen Andersona69571c2006-05-03 01:29:57 +00001296 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
1297 unsigned Align = std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +00001298 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00001299
1300 SDOperand AllocSize = getValue(I.getArraySize());
Chris Lattner68cd65e2005-01-22 23:04:37 +00001301 MVT::ValueType IntPtr = TLI.getPointerTy();
1302 if (IntPtr < AllocSize.getValueType())
1303 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
1304 else if (IntPtr > AllocSize.getValueType())
1305 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00001306
Chris Lattner68cd65e2005-01-22 23:04:37 +00001307 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner1c08c712005-01-07 07:47:53 +00001308 getIntPtrConstant(TySize));
1309
1310 // Handle alignment. If the requested alignment is less than or equal to the
1311 // stack alignment, ignore it and round the size of the allocation up to the
1312 // stack alignment size. If the size is greater than the stack alignment, we
1313 // note this in the DYNAMIC_STACKALLOC node.
1314 unsigned StackAlign =
1315 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1316 if (Align <= StackAlign) {
1317 Align = 0;
1318 // Add SA-1 to the size.
1319 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
1320 getIntPtrConstant(StackAlign-1));
1321 // Mask out the low bits for alignment purposes.
1322 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
1323 getIntPtrConstant(~(uint64_t)(StackAlign-1)));
1324 }
1325
Chris Lattneradf6c2a2005-05-14 07:29:57 +00001326 std::vector<MVT::ValueType> VTs;
1327 VTs.push_back(AllocSize.getValueType());
1328 VTs.push_back(MVT::Other);
1329 std::vector<SDOperand> Ops;
1330 Ops.push_back(getRoot());
1331 Ops.push_back(AllocSize);
1332 Ops.push_back(getIntPtrConstant(Align));
1333 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, Ops);
Chris Lattner1c08c712005-01-07 07:47:53 +00001334 DAG.setRoot(setValue(&I, DSA).getValue(1));
1335
1336 // Inform the Frame Information that we have just allocated a variable-sized
1337 // object.
1338 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
1339}
1340
Chris Lattner1c08c712005-01-07 07:47:53 +00001341void SelectionDAGLowering::visitLoad(LoadInst &I) {
1342 SDOperand Ptr = getValue(I.getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00001343
Chris Lattnerd3948112005-01-17 22:19:26 +00001344 SDOperand Root;
1345 if (I.isVolatile())
1346 Root = getRoot();
1347 else {
1348 // Do not serialize non-volatile loads against each other.
1349 Root = DAG.getRoot();
1350 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001351
1352 setValue(&I, getLoadFrom(I.getType(), Ptr, DAG.getSrcValue(I.getOperand(0)),
1353 Root, I.isVolatile()));
1354}
1355
1356SDOperand SelectionDAGLowering::getLoadFrom(const Type *Ty, SDOperand Ptr,
1357 SDOperand SrcValue, SDOperand Root,
1358 bool isVolatile) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001359 SDOperand L;
Nate Begeman8cfa57b2005-12-06 06:18:55 +00001360 if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
Nate Begeman4ef3b812005-11-22 01:29:36 +00001361 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattnerc7029802006-03-18 01:44:44 +00001362 L = DAG.getVecLoad(PTy->getNumElements(), PVT, Root, Ptr, SrcValue);
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001363 } else {
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001364 L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SrcValue);
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001365 }
Chris Lattnerd3948112005-01-17 22:19:26 +00001366
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001367 if (isVolatile)
Chris Lattnerd3948112005-01-17 22:19:26 +00001368 DAG.setRoot(L.getValue(1));
1369 else
1370 PendingLoads.push_back(L.getValue(1));
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001371
1372 return L;
Chris Lattner1c08c712005-01-07 07:47:53 +00001373}
1374
1375
1376void SelectionDAGLowering::visitStore(StoreInst &I) {
1377 Value *SrcV = I.getOperand(0);
1378 SDOperand Src = getValue(SrcV);
1379 SDOperand Ptr = getValue(I.getOperand(1));
Chris Lattner369e6db2005-05-09 04:08:33 +00001380 DAG.setRoot(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Src, Ptr,
Andrew Lenharth06ef8842005-06-29 18:54:02 +00001381 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00001382}
1383
Chris Lattner0eade312006-03-24 02:22:33 +00001384/// IntrinsicCannotAccessMemory - Return true if the specified intrinsic cannot
1385/// access memory and has no other side effects at all.
1386static bool IntrinsicCannotAccessMemory(unsigned IntrinsicID) {
1387#define GET_NO_MEMORY_INTRINSICS
1388#include "llvm/Intrinsics.gen"
1389#undef GET_NO_MEMORY_INTRINSICS
1390 return false;
1391}
1392
Chris Lattnere58a7802006-04-02 03:41:14 +00001393// IntrinsicOnlyReadsMemory - Return true if the specified intrinsic doesn't
1394// have any side-effects or if it only reads memory.
1395static bool IntrinsicOnlyReadsMemory(unsigned IntrinsicID) {
1396#define GET_SIDE_EFFECT_INFO
1397#include "llvm/Intrinsics.gen"
1398#undef GET_SIDE_EFFECT_INFO
1399 return false;
1400}
1401
Chris Lattner0eade312006-03-24 02:22:33 +00001402/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
1403/// node.
1404void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
1405 unsigned Intrinsic) {
Chris Lattner7255a542006-03-24 22:49:42 +00001406 bool HasChain = !IntrinsicCannotAccessMemory(Intrinsic);
Chris Lattnere58a7802006-04-02 03:41:14 +00001407 bool OnlyLoad = HasChain && IntrinsicOnlyReadsMemory(Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +00001408
1409 // Build the operand list.
1410 std::vector<SDOperand> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00001411 if (HasChain) { // If this intrinsic has side-effects, chainify it.
1412 if (OnlyLoad) {
1413 // We don't need to serialize loads against other loads.
1414 Ops.push_back(DAG.getRoot());
1415 } else {
1416 Ops.push_back(getRoot());
1417 }
1418 }
Chris Lattner0eade312006-03-24 02:22:33 +00001419
1420 // Add the intrinsic ID as an integer operand.
1421 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
1422
1423 // Add all operands of the call to the operand list.
1424 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1425 SDOperand Op = getValue(I.getOperand(i));
1426
1427 // If this is a vector type, force it to the right packed type.
1428 if (Op.getValueType() == MVT::Vector) {
1429 const PackedType *OpTy = cast<PackedType>(I.getOperand(i)->getType());
1430 MVT::ValueType EltVT = TLI.getValueType(OpTy->getElementType());
1431
1432 MVT::ValueType VVT = MVT::getVectorType(EltVT, OpTy->getNumElements());
1433 assert(VVT != MVT::Other && "Intrinsic uses a non-legal type?");
1434 Op = DAG.getNode(ISD::VBIT_CONVERT, VVT, Op);
1435 }
1436
1437 assert(TLI.isTypeLegal(Op.getValueType()) &&
1438 "Intrinsic uses a non-legal type?");
1439 Ops.push_back(Op);
1440 }
1441
1442 std::vector<MVT::ValueType> VTs;
1443 if (I.getType() != Type::VoidTy) {
1444 MVT::ValueType VT = TLI.getValueType(I.getType());
1445 if (VT == MVT::Vector) {
1446 const PackedType *DestTy = cast<PackedType>(I.getType());
1447 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1448
1449 VT = MVT::getVectorType(EltVT, DestTy->getNumElements());
1450 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
1451 }
1452
1453 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
1454 VTs.push_back(VT);
1455 }
1456 if (HasChain)
1457 VTs.push_back(MVT::Other);
1458
1459 // Create the node.
Chris Lattner48b61a72006-03-28 00:40:33 +00001460 SDOperand Result;
1461 if (!HasChain)
1462 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTs, Ops);
1463 else if (I.getType() != Type::VoidTy)
1464 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTs, Ops);
1465 else
1466 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTs, Ops);
1467
Chris Lattnere58a7802006-04-02 03:41:14 +00001468 if (HasChain) {
1469 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
1470 if (OnlyLoad)
1471 PendingLoads.push_back(Chain);
1472 else
1473 DAG.setRoot(Chain);
1474 }
Chris Lattner0eade312006-03-24 02:22:33 +00001475 if (I.getType() != Type::VoidTy) {
1476 if (const PackedType *PTy = dyn_cast<PackedType>(I.getType())) {
1477 MVT::ValueType EVT = TLI.getValueType(PTy->getElementType());
1478 Result = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Result,
1479 DAG.getConstant(PTy->getNumElements(), MVT::i32),
1480 DAG.getValueType(EVT));
1481 }
1482 setValue(&I, Result);
1483 }
1484}
1485
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001486/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
1487/// we want to emit this as a call to a named external function, return the name
1488/// otherwise lower it and return null.
1489const char *
1490SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
1491 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00001492 default:
1493 // By default, turn this into a target intrinsic node.
1494 visitTargetIntrinsic(I, Intrinsic);
1495 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001496 case Intrinsic::vastart: visitVAStart(I); return 0;
1497 case Intrinsic::vaend: visitVAEnd(I); return 0;
1498 case Intrinsic::vacopy: visitVACopy(I); return 0;
1499 case Intrinsic::returnaddress: visitFrameReturnAddress(I, false); return 0;
1500 case Intrinsic::frameaddress: visitFrameReturnAddress(I, true); return 0;
1501 case Intrinsic::setjmp:
1502 return "_setjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1503 break;
1504 case Intrinsic::longjmp:
1505 return "_longjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1506 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00001507 case Intrinsic::memcpy_i32:
1508 case Intrinsic::memcpy_i64:
1509 visitMemIntrinsic(I, ISD::MEMCPY);
1510 return 0;
1511 case Intrinsic::memset_i32:
1512 case Intrinsic::memset_i64:
1513 visitMemIntrinsic(I, ISD::MEMSET);
1514 return 0;
1515 case Intrinsic::memmove_i32:
1516 case Intrinsic::memmove_i64:
1517 visitMemIntrinsic(I, ISD::MEMMOVE);
1518 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001519
Chris Lattner86cb6432005-12-13 17:40:33 +00001520 case Intrinsic::dbg_stoppoint: {
Jim Laskeyce72b172006-02-11 01:01:30 +00001521 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00001522 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001523 if (DebugInfo && SPI.getContext() && DebugInfo->Verify(SPI.getContext())) {
Jim Laskeyce72b172006-02-11 01:01:30 +00001524 std::vector<SDOperand> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001525
Jim Laskeyce72b172006-02-11 01:01:30 +00001526 Ops.push_back(getRoot());
Jim Laskey43970fe2006-03-23 18:06:46 +00001527 Ops.push_back(getValue(SPI.getLineValue()));
1528 Ops.push_back(getValue(SPI.getColumnValue()));
Chris Lattner36ce6912005-11-29 06:21:05 +00001529
Jim Laskey43970fe2006-03-23 18:06:46 +00001530 DebugInfoDesc *DD = DebugInfo->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00001531 assert(DD && "Not a debug information descriptor");
Jim Laskey43970fe2006-03-23 18:06:46 +00001532 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
1533
Jim Laskeyce72b172006-02-11 01:01:30 +00001534 Ops.push_back(DAG.getString(CompileUnit->getFileName()));
1535 Ops.push_back(DAG.getString(CompileUnit->getDirectory()));
1536
Jim Laskey43970fe2006-03-23 18:06:46 +00001537 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops));
Chris Lattner86cb6432005-12-13 17:40:33 +00001538 }
Jim Laskey43970fe2006-03-23 18:06:46 +00001539
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001540 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00001541 }
Jim Laskey43970fe2006-03-23 18:06:46 +00001542 case Intrinsic::dbg_region_start: {
1543 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1544 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001545 if (DebugInfo && RSI.getContext() && DebugInfo->Verify(RSI.getContext())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001546 std::vector<SDOperand> Ops;
1547
1548 unsigned LabelID = DebugInfo->RecordRegionStart(RSI.getContext());
1549
1550 Ops.push_back(getRoot());
1551 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1552
1553 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1554 }
1555
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001556 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001557 }
1558 case Intrinsic::dbg_region_end: {
1559 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1560 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001561 if (DebugInfo && REI.getContext() && DebugInfo->Verify(REI.getContext())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001562 std::vector<SDOperand> Ops;
1563
1564 unsigned LabelID = DebugInfo->RecordRegionEnd(REI.getContext());
1565
1566 Ops.push_back(getRoot());
1567 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1568
1569 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1570 }
1571
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001572 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001573 }
1574 case Intrinsic::dbg_func_start: {
1575 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1576 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001577 if (DebugInfo && FSI.getSubprogram() &&
1578 DebugInfo->Verify(FSI.getSubprogram())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001579 std::vector<SDOperand> Ops;
1580
1581 unsigned LabelID = DebugInfo->RecordRegionStart(FSI.getSubprogram());
1582
1583 Ops.push_back(getRoot());
1584 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1585
1586 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1587 }
1588
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001589 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001590 }
1591 case Intrinsic::dbg_declare: {
1592 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1593 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Jim Laskeybf7637d2006-03-28 13:45:20 +00001594 if (DebugInfo && DI.getVariable() && DebugInfo->Verify(DI.getVariable())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001595 std::vector<SDOperand> Ops;
1596
Jim Laskey0892cee2006-03-24 09:50:27 +00001597 SDOperand AddressOp = getValue(DI.getAddress());
1598 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(AddressOp)) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001599 DebugInfo->RecordVariable(DI.getVariable(), FI->getIndex());
1600 }
1601 }
1602
1603 return 0;
1604 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001605
Reid Spencer0b118202006-01-16 21:12:35 +00001606 case Intrinsic::isunordered_f32:
1607 case Intrinsic::isunordered_f64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001608 setValue(&I, DAG.getSetCC(MVT::i1,getValue(I.getOperand(1)),
1609 getValue(I.getOperand(2)), ISD::SETUO));
1610 return 0;
1611
Reid Spencer0b118202006-01-16 21:12:35 +00001612 case Intrinsic::sqrt_f32:
1613 case Intrinsic::sqrt_f64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001614 setValue(&I, DAG.getNode(ISD::FSQRT,
1615 getValue(I.getOperand(1)).getValueType(),
1616 getValue(I.getOperand(1))));
1617 return 0;
1618 case Intrinsic::pcmarker: {
1619 SDOperand Tmp = getValue(I.getOperand(1));
1620 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
1621 return 0;
1622 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00001623 case Intrinsic::readcyclecounter: {
1624 std::vector<MVT::ValueType> VTs;
1625 VTs.push_back(MVT::i64);
1626 VTs.push_back(MVT::Other);
1627 std::vector<SDOperand> Ops;
1628 Ops.push_back(getRoot());
1629 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER, VTs, Ops);
1630 setValue(&I, Tmp);
1631 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00001632 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00001633 }
Nate Begemand88fc032006-01-14 03:14:10 +00001634 case Intrinsic::bswap_i16:
Nate Begemand88fc032006-01-14 03:14:10 +00001635 case Intrinsic::bswap_i32:
Nate Begemand88fc032006-01-14 03:14:10 +00001636 case Intrinsic::bswap_i64:
1637 setValue(&I, DAG.getNode(ISD::BSWAP,
1638 getValue(I.getOperand(1)).getValueType(),
1639 getValue(I.getOperand(1))));
1640 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001641 case Intrinsic::cttz_i8:
1642 case Intrinsic::cttz_i16:
1643 case Intrinsic::cttz_i32:
1644 case Intrinsic::cttz_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001645 setValue(&I, DAG.getNode(ISD::CTTZ,
1646 getValue(I.getOperand(1)).getValueType(),
1647 getValue(I.getOperand(1))));
1648 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001649 case Intrinsic::ctlz_i8:
1650 case Intrinsic::ctlz_i16:
1651 case Intrinsic::ctlz_i32:
1652 case Intrinsic::ctlz_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001653 setValue(&I, DAG.getNode(ISD::CTLZ,
1654 getValue(I.getOperand(1)).getValueType(),
1655 getValue(I.getOperand(1))));
1656 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001657 case Intrinsic::ctpop_i8:
1658 case Intrinsic::ctpop_i16:
1659 case Intrinsic::ctpop_i32:
1660 case Intrinsic::ctpop_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001661 setValue(&I, DAG.getNode(ISD::CTPOP,
1662 getValue(I.getOperand(1)).getValueType(),
1663 getValue(I.getOperand(1))));
1664 return 0;
Chris Lattner140d53c2006-01-13 02:50:02 +00001665 case Intrinsic::stacksave: {
1666 std::vector<MVT::ValueType> VTs;
1667 VTs.push_back(TLI.getPointerTy());
1668 VTs.push_back(MVT::Other);
1669 std::vector<SDOperand> Ops;
1670 Ops.push_back(getRoot());
1671 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE, VTs, Ops);
1672 setValue(&I, Tmp);
1673 DAG.setRoot(Tmp.getValue(1));
1674 return 0;
1675 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00001676 case Intrinsic::stackrestore: {
1677 SDOperand Tmp = getValue(I.getOperand(1));
1678 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00001679 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00001680 }
Chris Lattnerac22c832005-12-12 22:51:16 +00001681 case Intrinsic::prefetch:
1682 // FIXME: Currently discarding prefetches.
1683 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001684 }
1685}
1686
1687
Chris Lattner1c08c712005-01-07 07:47:53 +00001688void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00001689 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001690 if (Function *F = I.getCalledFunction()) {
Chris Lattnerc0f18152005-04-02 05:26:53 +00001691 if (F->isExternal())
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001692 if (unsigned IID = F->getIntrinsicID()) {
1693 RenameFn = visitIntrinsicCall(I, IID);
1694 if (!RenameFn)
1695 return;
1696 } else { // Not an LLVM intrinsic.
1697 const std::string &Name = F->getName();
Chris Lattnera09f8482006-03-05 05:09:38 +00001698 if (Name[0] == 'c' && (Name == "copysign" || Name == "copysignf")) {
1699 if (I.getNumOperands() == 3 && // Basic sanity checks.
1700 I.getOperand(1)->getType()->isFloatingPoint() &&
1701 I.getType() == I.getOperand(1)->getType() &&
1702 I.getType() == I.getOperand(2)->getType()) {
1703 SDOperand LHS = getValue(I.getOperand(1));
1704 SDOperand RHS = getValue(I.getOperand(2));
1705 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
1706 LHS, RHS));
1707 return;
1708 }
1709 } else if (Name[0] == 'f' && (Name == "fabs" || Name == "fabsf")) {
Chris Lattnerc0f18152005-04-02 05:26:53 +00001710 if (I.getNumOperands() == 2 && // Basic sanity checks.
1711 I.getOperand(1)->getType()->isFloatingPoint() &&
1712 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001713 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerc0f18152005-04-02 05:26:53 +00001714 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
1715 return;
1716 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001717 } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) {
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001718 if (I.getNumOperands() == 2 && // Basic sanity checks.
1719 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner06a248c92006-02-14 05:39:35 +00001720 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001721 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001722 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
1723 return;
1724 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001725 } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) {
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001726 if (I.getNumOperands() == 2 && // Basic sanity checks.
1727 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner06a248c92006-02-14 05:39:35 +00001728 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001729 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001730 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
1731 return;
1732 }
1733 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00001734 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001735 } else if (isa<InlineAsm>(I.getOperand(0))) {
1736 visitInlineAsm(I);
1737 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001738 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001739
Chris Lattner64e14b12005-01-08 22:48:57 +00001740 SDOperand Callee;
1741 if (!RenameFn)
1742 Callee = getValue(I.getOperand(0));
1743 else
1744 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Chris Lattner1c08c712005-01-07 07:47:53 +00001745 std::vector<std::pair<SDOperand, const Type*> > Args;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001746 Args.reserve(I.getNumOperands());
Chris Lattner1c08c712005-01-07 07:47:53 +00001747 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1748 Value *Arg = I.getOperand(i);
1749 SDOperand ArgNode = getValue(Arg);
1750 Args.push_back(std::make_pair(ArgNode, Arg->getType()));
1751 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001752
Nate Begeman8e21e712005-03-26 01:29:23 +00001753 const PointerType *PT = cast<PointerType>(I.getCalledValue()->getType());
1754 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001755
Chris Lattnercf5734d2005-01-08 19:26:18 +00001756 std::pair<SDOperand,SDOperand> Result =
Chris Lattner9092fa32005-05-12 19:56:57 +00001757 TLI.LowerCallTo(getRoot(), I.getType(), FTy->isVarArg(), I.getCallingConv(),
Chris Lattneradf6a962005-05-13 18:50:42 +00001758 I.isTailCall(), Callee, Args, DAG);
Chris Lattner1c08c712005-01-07 07:47:53 +00001759 if (I.getType() != Type::VoidTy)
Chris Lattnercf5734d2005-01-08 19:26:18 +00001760 setValue(&I, Result.first);
1761 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00001762}
1763
Chris Lattner864635a2006-02-22 22:37:12 +00001764SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001765 SDOperand &Chain, SDOperand &Flag)const{
Chris Lattner864635a2006-02-22 22:37:12 +00001766 SDOperand Val = DAG.getCopyFromReg(Chain, Regs[0], RegVT, Flag);
1767 Chain = Val.getValue(1);
1768 Flag = Val.getValue(2);
1769
1770 // If the result was expanded, copy from the top part.
1771 if (Regs.size() > 1) {
1772 assert(Regs.size() == 2 &&
1773 "Cannot expand to more than 2 elts yet!");
1774 SDOperand Hi = DAG.getCopyFromReg(Chain, Regs[1], RegVT, Flag);
1775 Chain = Val.getValue(1);
1776 Flag = Val.getValue(2);
Chris Lattner9f6637d2006-02-23 20:06:57 +00001777 if (DAG.getTargetLoweringInfo().isLittleEndian())
1778 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Val, Hi);
1779 else
1780 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Hi, Val);
Chris Lattner864635a2006-02-22 22:37:12 +00001781 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00001782
Chris Lattnercf752aa2006-06-08 18:22:48 +00001783 // Otherwise, if the return value was promoted or extended, truncate it to the
Chris Lattner864635a2006-02-22 22:37:12 +00001784 // appropriate type.
1785 if (RegVT == ValueVT)
1786 return Val;
1787
Chris Lattnercf752aa2006-06-08 18:22:48 +00001788 if (MVT::isInteger(RegVT)) {
1789 if (ValueVT < RegVT)
1790 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1791 else
1792 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
1793 } else {
Chris Lattner864635a2006-02-22 22:37:12 +00001794 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val);
Chris Lattnercf752aa2006-06-08 18:22:48 +00001795 }
Chris Lattner864635a2006-02-22 22:37:12 +00001796}
1797
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001798/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
1799/// specified value into the registers specified by this object. This uses
1800/// Chain/Flag as the input and updates them for the output Chain/Flag.
1801void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001802 SDOperand &Chain, SDOperand &Flag) const {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001803 if (Regs.size() == 1) {
1804 // If there is a single register and the types differ, this must be
1805 // a promotion.
1806 if (RegVT != ValueVT) {
Chris Lattner0c48fd42006-06-08 18:27:11 +00001807 if (MVT::isInteger(RegVT)) {
1808 if (RegVT < ValueVT)
1809 Val = DAG.getNode(ISD::TRUNCATE, RegVT, Val);
1810 else
1811 Val = DAG.getNode(ISD::ANY_EXTEND, RegVT, Val);
1812 } else
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001813 Val = DAG.getNode(ISD::FP_EXTEND, RegVT, Val);
1814 }
1815 Chain = DAG.getCopyToReg(Chain, Regs[0], Val, Flag);
1816 Flag = Chain.getValue(1);
1817 } else {
Chris Lattner9f6637d2006-02-23 20:06:57 +00001818 std::vector<unsigned> R(Regs);
1819 if (!DAG.getTargetLoweringInfo().isLittleEndian())
1820 std::reverse(R.begin(), R.end());
1821
1822 for (unsigned i = 0, e = R.size(); i != e; ++i) {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001823 SDOperand Part = DAG.getNode(ISD::EXTRACT_ELEMENT, RegVT, Val,
1824 DAG.getConstant(i, MVT::i32));
Chris Lattner9f6637d2006-02-23 20:06:57 +00001825 Chain = DAG.getCopyToReg(Chain, R[i], Part, Flag);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001826 Flag = Chain.getValue(1);
1827 }
1828 }
1829}
Chris Lattner864635a2006-02-22 22:37:12 +00001830
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001831/// AddInlineAsmOperands - Add this value to the specified inlineasm node
1832/// operand list. This adds the code marker and includes the number of
1833/// values added into it.
1834void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001835 std::vector<SDOperand> &Ops) const {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001836 Ops.push_back(DAG.getConstant(Code | (Regs.size() << 3), MVT::i32));
1837 for (unsigned i = 0, e = Regs.size(); i != e; ++i)
1838 Ops.push_back(DAG.getRegister(Regs[i], RegVT));
1839}
Chris Lattner864635a2006-02-22 22:37:12 +00001840
1841/// isAllocatableRegister - If the specified register is safe to allocate,
1842/// i.e. it isn't a stack pointer or some other special register, return the
1843/// register class for the register. Otherwise, return null.
1844static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001845isAllocatableRegister(unsigned Reg, MachineFunction &MF,
1846 const TargetLowering &TLI, const MRegisterInfo *MRI) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001847 MVT::ValueType FoundVT = MVT::Other;
1848 const TargetRegisterClass *FoundRC = 0;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001849 for (MRegisterInfo::regclass_iterator RCI = MRI->regclass_begin(),
1850 E = MRI->regclass_end(); RCI != E; ++RCI) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001851 MVT::ValueType ThisVT = MVT::Other;
1852
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001853 const TargetRegisterClass *RC = *RCI;
1854 // If none of the the value types for this register class are valid, we
1855 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001856 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
1857 I != E; ++I) {
1858 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001859 // If we have already found this register in a different register class,
1860 // choose the one with the largest VT specified. For example, on
1861 // PowerPC, we favor f64 register classes over f32.
1862 if (FoundVT == MVT::Other ||
1863 MVT::getSizeInBits(FoundVT) < MVT::getSizeInBits(*I)) {
1864 ThisVT = *I;
1865 break;
1866 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001867 }
1868 }
1869
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001870 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001871
Chris Lattner864635a2006-02-22 22:37:12 +00001872 // NOTE: This isn't ideal. In particular, this might allocate the
1873 // frame pointer in functions that need it (due to them not being taken
1874 // out of allocation, because a variable sized allocation hasn't been seen
1875 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001876 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
1877 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001878 if (*I == Reg) {
1879 // We found a matching register class. Keep looking at others in case
1880 // we find one with larger registers that this physreg is also in.
1881 FoundRC = RC;
1882 FoundVT = ThisVT;
1883 break;
1884 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00001885 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001886 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00001887}
1888
1889RegsForValue SelectionDAGLowering::
1890GetRegistersForValue(const std::string &ConstrCode,
1891 MVT::ValueType VT, bool isOutReg, bool isInReg,
1892 std::set<unsigned> &OutputRegs,
1893 std::set<unsigned> &InputRegs) {
1894 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
1895 TLI.getRegForInlineAsmConstraint(ConstrCode, VT);
1896 std::vector<unsigned> Regs;
1897
1898 unsigned NumRegs = VT != MVT::Other ? TLI.getNumElements(VT) : 1;
1899 MVT::ValueType RegVT;
1900 MVT::ValueType ValueVT = VT;
1901
1902 if (PhysReg.first) {
1903 if (VT == MVT::Other)
1904 ValueVT = *PhysReg.second->vt_begin();
Chris Lattnercf752aa2006-06-08 18:22:48 +00001905
1906 // Get the actual register value type. This is important, because the user
1907 // may have asked for (e.g.) the AX register in i32 type. We need to
1908 // remember that AX is actually i16 to get the right extension.
1909 RegVT = *PhysReg.second->vt_begin();
Chris Lattner864635a2006-02-22 22:37:12 +00001910
1911 // This is a explicit reference to a physical register.
1912 Regs.push_back(PhysReg.first);
1913
1914 // If this is an expanded reference, add the rest of the regs to Regs.
1915 if (NumRegs != 1) {
Chris Lattner864635a2006-02-22 22:37:12 +00001916 TargetRegisterClass::iterator I = PhysReg.second->begin();
1917 TargetRegisterClass::iterator E = PhysReg.second->end();
1918 for (; *I != PhysReg.first; ++I)
1919 assert(I != E && "Didn't find reg!");
1920
1921 // Already added the first reg.
1922 --NumRegs; ++I;
1923 for (; NumRegs; --NumRegs, ++I) {
1924 assert(I != E && "Ran out of registers to allocate!");
1925 Regs.push_back(*I);
1926 }
1927 }
1928 return RegsForValue(Regs, RegVT, ValueVT);
1929 }
1930
1931 // This is a reference to a register class. Allocate NumRegs consecutive,
1932 // available, registers from the class.
1933 std::vector<unsigned> RegClassRegs =
1934 TLI.getRegClassForInlineAsmConstraint(ConstrCode, VT);
1935
1936 const MRegisterInfo *MRI = DAG.getTarget().getRegisterInfo();
1937 MachineFunction &MF = *CurMBB->getParent();
1938 unsigned NumAllocated = 0;
1939 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
1940 unsigned Reg = RegClassRegs[i];
1941 // See if this register is available.
1942 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
1943 (isInReg && InputRegs.count(Reg))) { // Already used.
1944 // Make sure we find consecutive registers.
1945 NumAllocated = 0;
1946 continue;
1947 }
1948
1949 // Check to see if this register is allocatable (i.e. don't give out the
1950 // stack pointer).
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001951 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, MRI);
Chris Lattner864635a2006-02-22 22:37:12 +00001952 if (!RC) {
1953 // Make sure we find consecutive registers.
1954 NumAllocated = 0;
1955 continue;
1956 }
1957
1958 // Okay, this register is good, we can use it.
1959 ++NumAllocated;
1960
1961 // If we allocated enough consecutive
1962 if (NumAllocated == NumRegs) {
1963 unsigned RegStart = (i-NumAllocated)+1;
1964 unsigned RegEnd = i+1;
1965 // Mark all of the allocated registers used.
1966 for (unsigned i = RegStart; i != RegEnd; ++i) {
1967 unsigned Reg = RegClassRegs[i];
1968 Regs.push_back(Reg);
1969 if (isOutReg) OutputRegs.insert(Reg); // Mark reg used.
1970 if (isInReg) InputRegs.insert(Reg); // Mark reg used.
1971 }
1972
1973 return RegsForValue(Regs, *RC->vt_begin(), VT);
1974 }
1975 }
1976
1977 // Otherwise, we couldn't allocate enough registers for this.
1978 return RegsForValue();
Chris Lattner4e4b5762006-02-01 18:59:47 +00001979}
1980
Chris Lattner864635a2006-02-22 22:37:12 +00001981
Chris Lattnerce7518c2006-01-26 22:24:51 +00001982/// visitInlineAsm - Handle a call to an InlineAsm object.
1983///
1984void SelectionDAGLowering::visitInlineAsm(CallInst &I) {
1985 InlineAsm *IA = cast<InlineAsm>(I.getOperand(0));
1986
1987 SDOperand AsmStr = DAG.getTargetExternalSymbol(IA->getAsmString().c_str(),
1988 MVT::Other);
1989
1990 // Note, we treat inline asms both with and without side-effects as the same.
1991 // If an inline asm doesn't have side effects and doesn't access memory, we
1992 // could not choose to not chain it.
1993 bool hasSideEffects = IA->hasSideEffects();
1994
Chris Lattner2cc2f662006-02-01 01:28:23 +00001995 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
Chris Lattner1efa40f2006-02-22 00:56:39 +00001996 std::vector<MVT::ValueType> ConstraintVTs;
Chris Lattnerce7518c2006-01-26 22:24:51 +00001997
1998 /// AsmNodeOperands - A list of pairs. The first element is a register, the
1999 /// second is a bitfield where bit #0 is set if it is a use and bit #1 is set
2000 /// if it is a def of that register.
2001 std::vector<SDOperand> AsmNodeOperands;
2002 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
2003 AsmNodeOperands.push_back(AsmStr);
2004
2005 SDOperand Chain = getRoot();
2006 SDOperand Flag;
2007
Chris Lattner4e4b5762006-02-01 18:59:47 +00002008 // We fully assign registers here at isel time. This is not optimal, but
2009 // should work. For register classes that correspond to LLVM classes, we
2010 // could let the LLVM RA do its thing, but we currently don't. Do a prepass
2011 // over the constraints, collecting fixed registers that we know we can't use.
2012 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002013 unsigned OpNum = 1;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002014 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
2015 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2016 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner2223aea2006-02-02 00:25:23 +00002017
Chris Lattner1efa40f2006-02-22 00:56:39 +00002018 MVT::ValueType OpVT;
2019
2020 // Compute the value type for each operand and add it to ConstraintVTs.
2021 switch (Constraints[i].Type) {
2022 case InlineAsm::isOutput:
2023 if (!Constraints[i].isIndirectOutput) {
2024 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
2025 OpVT = TLI.getValueType(I.getType());
2026 } else {
Chris Lattner22873462006-02-27 23:45:39 +00002027 const Type *OpTy = I.getOperand(OpNum)->getType();
Chris Lattner1efa40f2006-02-22 00:56:39 +00002028 OpVT = TLI.getValueType(cast<PointerType>(OpTy)->getElementType());
2029 OpNum++; // Consumes a call operand.
2030 }
2031 break;
2032 case InlineAsm::isInput:
2033 OpVT = TLI.getValueType(I.getOperand(OpNum)->getType());
2034 OpNum++; // Consumes a call operand.
2035 break;
2036 case InlineAsm::isClobber:
2037 OpVT = MVT::Other;
2038 break;
2039 }
2040
2041 ConstraintVTs.push_back(OpVT);
2042
Chris Lattner864635a2006-02-22 22:37:12 +00002043 if (TLI.getRegForInlineAsmConstraint(ConstraintCode, OpVT).first == 0)
2044 continue; // Not assigned a fixed reg.
Chris Lattner1efa40f2006-02-22 00:56:39 +00002045
Chris Lattner864635a2006-02-22 22:37:12 +00002046 // Build a list of regs that this operand uses. This always has a single
2047 // element for promoted/expanded operands.
2048 RegsForValue Regs = GetRegistersForValue(ConstraintCode, OpVT,
2049 false, false,
2050 OutputRegs, InputRegs);
Chris Lattner4e4b5762006-02-01 18:59:47 +00002051
2052 switch (Constraints[i].Type) {
2053 case InlineAsm::isOutput:
2054 // We can't assign any other output to this register.
Chris Lattner864635a2006-02-22 22:37:12 +00002055 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002056 // If this is an early-clobber output, it cannot be assigned to the same
2057 // value as the input reg.
Chris Lattner2223aea2006-02-02 00:25:23 +00002058 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
Chris Lattner864635a2006-02-22 22:37:12 +00002059 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002060 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002061 case InlineAsm::isInput:
2062 // We can't assign any other input to this register.
Chris Lattner864635a2006-02-22 22:37:12 +00002063 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1efa40f2006-02-22 00:56:39 +00002064 break;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002065 case InlineAsm::isClobber:
2066 // Clobbered regs cannot be used as inputs or outputs.
Chris Lattner864635a2006-02-22 22:37:12 +00002067 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2068 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002069 break;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002070 }
2071 }
Chris Lattner2cc2f662006-02-01 01:28:23 +00002072
Chris Lattner0f0b7d42006-02-21 23:12:12 +00002073 // Loop over all of the inputs, copying the operand values into the
2074 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00002075 RegsForValue RetValRegs;
2076 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002077 OpNum = 1;
Chris Lattner0f0b7d42006-02-21 23:12:12 +00002078
Chris Lattner6656dd12006-01-31 02:03:41 +00002079 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00002080 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2081 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner1efa40f2006-02-22 00:56:39 +00002082
Chris Lattner2cc2f662006-02-01 01:28:23 +00002083 switch (Constraints[i].Type) {
2084 case InlineAsm::isOutput: {
Chris Lattner22873462006-02-27 23:45:39 +00002085 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2086 if (ConstraintCode.size() == 1) // not a physreg name.
2087 CTy = TLI.getConstraintType(ConstraintCode[0]);
2088
2089 if (CTy == TargetLowering::C_Memory) {
2090 // Memory output.
2091 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
2092
2093 // Check that the operand (the address to store to) isn't a float.
2094 if (!MVT::isInteger(InOperandVal.getValueType()))
2095 assert(0 && "MATCH FAIL!");
2096
2097 if (!Constraints[i].isIndirectOutput)
2098 assert(0 && "MATCH FAIL!");
2099
2100 OpNum++; // Consumes a call operand.
2101
2102 // Extend/truncate to the right pointer type if needed.
2103 MVT::ValueType PtrType = TLI.getPointerTy();
2104 if (InOperandVal.getValueType() < PtrType)
2105 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2106 else if (InOperandVal.getValueType() > PtrType)
2107 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2108
2109 // Add information to the INLINEASM node to know about this output.
2110 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2111 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2112 AsmNodeOperands.push_back(InOperandVal);
2113 break;
2114 }
2115
2116 // Otherwise, this is a register output.
2117 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2118
Chris Lattner864635a2006-02-22 22:37:12 +00002119 // If this is an early-clobber output, or if there is an input
2120 // constraint that matches this, we need to reserve the input register
2121 // so no other inputs allocate to it.
2122 bool UsesInputRegister = false;
2123 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
2124 UsesInputRegister = true;
2125
2126 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00002127 // we can use.
Chris Lattner864635a2006-02-22 22:37:12 +00002128 RegsForValue Regs =
2129 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2130 true, UsesInputRegister,
2131 OutputRegs, InputRegs);
2132 assert(!Regs.Regs.empty() && "Couldn't allocate output reg!");
Chris Lattner1efa40f2006-02-22 00:56:39 +00002133
Chris Lattner2cc2f662006-02-01 01:28:23 +00002134 if (!Constraints[i].isIndirectOutput) {
Chris Lattner864635a2006-02-22 22:37:12 +00002135 assert(RetValRegs.Regs.empty() &&
Chris Lattner2cc2f662006-02-01 01:28:23 +00002136 "Cannot have multiple output constraints yet!");
Chris Lattner2cc2f662006-02-01 01:28:23 +00002137 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
Chris Lattner864635a2006-02-22 22:37:12 +00002138 RetValRegs = Regs;
Chris Lattner2cc2f662006-02-01 01:28:23 +00002139 } else {
Chris Lattner22873462006-02-27 23:45:39 +00002140 IndirectStoresToEmit.push_back(std::make_pair(Regs,
2141 I.getOperand(OpNum)));
Chris Lattner2cc2f662006-02-01 01:28:23 +00002142 OpNum++; // Consumes a call operand.
2143 }
Chris Lattner6656dd12006-01-31 02:03:41 +00002144
2145 // Add information to the INLINEASM node to know that this register is
2146 // set.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002147 Regs.AddInlineAsmOperands(2 /*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002148 break;
2149 }
2150 case InlineAsm::isInput: {
Chris Lattner22873462006-02-27 23:45:39 +00002151 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
Chris Lattner4e4b5762006-02-01 18:59:47 +00002152 OpNum++; // Consumes a call operand.
Chris Lattner3d81fee2006-02-04 02:16:44 +00002153
Chris Lattner2223aea2006-02-02 00:25:23 +00002154 if (isdigit(ConstraintCode[0])) { // Matching constraint?
2155 // If this is required to match an output register we have already set,
2156 // just use its register.
2157 unsigned OperandNo = atoi(ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00002158
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002159 // Scan until we find the definition we already emitted of this operand.
2160 // When we find it, create a RegsForValue operand.
2161 unsigned CurOp = 2; // The first operand.
2162 for (; OperandNo; --OperandNo) {
2163 // Advance to the next operand.
2164 unsigned NumOps =
2165 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2166 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2167 "Skipped past definitions?");
2168 CurOp += (NumOps>>3)+1;
2169 }
2170
2171 unsigned NumOps =
2172 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2173 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2174 "Skipped past definitions?");
2175
2176 // Add NumOps>>3 registers to MatchedRegs.
2177 RegsForValue MatchedRegs;
2178 MatchedRegs.ValueVT = InOperandVal.getValueType();
2179 MatchedRegs.RegVT = AsmNodeOperands[CurOp+1].getValueType();
2180 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
2181 unsigned Reg=cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
2182 MatchedRegs.Regs.push_back(Reg);
2183 }
2184
2185 // Use the produced MatchedRegs object to
2186 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag);
2187 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002188 break;
Chris Lattner2223aea2006-02-02 00:25:23 +00002189 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00002190
2191 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2192 if (ConstraintCode.size() == 1) // not a physreg name.
2193 CTy = TLI.getConstraintType(ConstraintCode[0]);
2194
2195 if (CTy == TargetLowering::C_Other) {
2196 if (!TLI.isOperandValidForConstraint(InOperandVal, ConstraintCode[0]))
2197 assert(0 && "MATCH FAIL!");
2198
2199 // Add information to the INLINEASM node to know about this input.
2200 unsigned ResOpType = 3 /*IMM*/ | (1 << 3);
2201 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2202 AsmNodeOperands.push_back(InOperandVal);
2203 break;
2204 } else if (CTy == TargetLowering::C_Memory) {
2205 // Memory input.
2206
2207 // Check that the operand isn't a float.
2208 if (!MVT::isInteger(InOperandVal.getValueType()))
2209 assert(0 && "MATCH FAIL!");
2210
2211 // Extend/truncate to the right pointer type if needed.
2212 MVT::ValueType PtrType = TLI.getPointerTy();
2213 if (InOperandVal.getValueType() < PtrType)
2214 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2215 else if (InOperandVal.getValueType() > PtrType)
2216 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2217
2218 // Add information to the INLINEASM node to know about this input.
2219 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2220 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2221 AsmNodeOperands.push_back(InOperandVal);
2222 break;
2223 }
2224
2225 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2226
2227 // Copy the input into the appropriate registers.
2228 RegsForValue InRegs =
2229 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2230 false, true, OutputRegs, InputRegs);
2231 // FIXME: should be match fail.
2232 assert(!InRegs.Regs.empty() && "Couldn't allocate input reg!");
2233
2234 InRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag);
2235
2236 InRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002237 break;
2238 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002239 case InlineAsm::isClobber: {
2240 RegsForValue ClobberedRegs =
2241 GetRegistersForValue(ConstraintCode, MVT::Other, false, false,
2242 OutputRegs, InputRegs);
2243 // Add the clobbered value to the operand list, so that the register
2244 // allocator is aware that the physreg got clobbered.
2245 if (!ClobberedRegs.Regs.empty())
2246 ClobberedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002247 break;
2248 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002249 }
Chris Lattner6656dd12006-01-31 02:03:41 +00002250 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00002251
2252 // Finish up input operands.
2253 AsmNodeOperands[0] = Chain;
2254 if (Flag.Val) AsmNodeOperands.push_back(Flag);
2255
2256 std::vector<MVT::ValueType> VTs;
2257 VTs.push_back(MVT::Other);
2258 VTs.push_back(MVT::Flag);
2259 Chain = DAG.getNode(ISD::INLINEASM, VTs, AsmNodeOperands);
2260 Flag = Chain.getValue(1);
2261
Chris Lattner6656dd12006-01-31 02:03:41 +00002262 // If this asm returns a register value, copy the result from that register
2263 // and set it as the value of the call.
Chris Lattner864635a2006-02-22 22:37:12 +00002264 if (!RetValRegs.Regs.empty())
2265 setValue(&I, RetValRegs.getCopyFromRegs(DAG, Chain, Flag));
Chris Lattnerce7518c2006-01-26 22:24:51 +00002266
Chris Lattner6656dd12006-01-31 02:03:41 +00002267 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
2268
2269 // Process indirect outputs, first output all of the flagged copies out of
2270 // physregs.
2271 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00002272 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00002273 Value *Ptr = IndirectStoresToEmit[i].second;
Chris Lattner864635a2006-02-22 22:37:12 +00002274 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, Flag);
2275 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00002276 }
2277
2278 // Emit the non-flagged stores from the physregs.
2279 std::vector<SDOperand> OutChains;
2280 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
2281 OutChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
2282 StoresToEmit[i].first,
2283 getValue(StoresToEmit[i].second),
2284 DAG.getSrcValue(StoresToEmit[i].second)));
2285 if (!OutChains.empty())
2286 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattnerce7518c2006-01-26 22:24:51 +00002287 DAG.setRoot(Chain);
2288}
2289
2290
Chris Lattner1c08c712005-01-07 07:47:53 +00002291void SelectionDAGLowering::visitMalloc(MallocInst &I) {
2292 SDOperand Src = getValue(I.getOperand(0));
2293
2294 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00002295
2296 if (IntPtr < Src.getValueType())
2297 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
2298 else if (IntPtr > Src.getValueType())
2299 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00002300
2301 // Scale the source by the type size.
Owen Andersona69571c2006-05-03 01:29:57 +00002302 uint64_t ElementSize = TD->getTypeSize(I.getType()->getElementType());
Chris Lattner1c08c712005-01-07 07:47:53 +00002303 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
2304 Src, getIntPtrConstant(ElementSize));
2305
2306 std::vector<std::pair<SDOperand, const Type*> > Args;
Owen Andersona69571c2006-05-03 01:29:57 +00002307 Args.push_back(std::make_pair(Src, TLI.getTargetData()->getIntPtrType()));
Chris Lattnercf5734d2005-01-08 19:26:18 +00002308
2309 std::pair<SDOperand,SDOperand> Result =
Chris Lattneradf6a962005-05-13 18:50:42 +00002310 TLI.LowerCallTo(getRoot(), I.getType(), false, CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00002311 DAG.getExternalSymbol("malloc", IntPtr),
2312 Args, DAG);
2313 setValue(&I, Result.first); // Pointers always fit in registers
2314 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002315}
2316
2317void SelectionDAGLowering::visitFree(FreeInst &I) {
2318 std::vector<std::pair<SDOperand, const Type*> > Args;
2319 Args.push_back(std::make_pair(getValue(I.getOperand(0)),
Owen Andersona69571c2006-05-03 01:29:57 +00002320 TLI.getTargetData()->getIntPtrType()));
Chris Lattner1c08c712005-01-07 07:47:53 +00002321 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattnercf5734d2005-01-08 19:26:18 +00002322 std::pair<SDOperand,SDOperand> Result =
Chris Lattneradf6a962005-05-13 18:50:42 +00002323 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00002324 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
2325 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002326}
2327
Chris Lattner025c39b2005-08-26 20:54:47 +00002328// InsertAtEndOfBasicBlock - This method should be implemented by targets that
2329// mark instructions with the 'usesCustomDAGSchedInserter' flag. These
2330// instructions are special in various ways, which require special support to
2331// insert. The specified MachineInstr is created but not inserted into any
2332// basic blocks, and the scheduler passes ownership of it to this method.
2333MachineBasicBlock *TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
2334 MachineBasicBlock *MBB) {
2335 std::cerr << "If a target marks an instruction with "
2336 "'usesCustomDAGSchedInserter', it must implement "
2337 "TargetLowering::InsertAtEndOfBasicBlock!\n";
2338 abort();
2339 return 0;
2340}
2341
Chris Lattner39ae3622005-01-09 00:00:49 +00002342void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002343 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
2344 getValue(I.getOperand(1)),
2345 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00002346}
2347
2348void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002349 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
2350 getValue(I.getOperand(0)),
2351 DAG.getSrcValue(I.getOperand(0)));
2352 setValue(&I, V);
2353 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002354}
2355
2356void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002357 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
2358 getValue(I.getOperand(1)),
2359 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00002360}
2361
2362void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002363 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
2364 getValue(I.getOperand(1)),
2365 getValue(I.getOperand(2)),
2366 DAG.getSrcValue(I.getOperand(1)),
2367 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00002368}
2369
Chris Lattnerfdfded52006-04-12 16:20:43 +00002370/// TargetLowering::LowerArguments - This is the default LowerArguments
2371/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002372/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
2373/// integrated into SDISel.
Chris Lattnerfdfded52006-04-12 16:20:43 +00002374std::vector<SDOperand>
2375TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
2376 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
2377 std::vector<SDOperand> Ops;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00002378 Ops.push_back(DAG.getRoot());
Chris Lattnerfdfded52006-04-12 16:20:43 +00002379 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
2380 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
2381
2382 // Add one result value for each formal argument.
2383 std::vector<MVT::ValueType> RetVals;
2384 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2385 MVT::ValueType VT = getValueType(I->getType());
2386
2387 switch (getTypeAction(VT)) {
2388 default: assert(0 && "Unknown type action!");
2389 case Legal:
2390 RetVals.push_back(VT);
2391 break;
2392 case Promote:
2393 RetVals.push_back(getTypeToTransformTo(VT));
2394 break;
2395 case Expand:
2396 if (VT != MVT::Vector) {
2397 // If this is a large integer, it needs to be broken up into small
2398 // integers. Figure out what the destination type is and how many small
2399 // integers it turns into.
2400 MVT::ValueType NVT = getTypeToTransformTo(VT);
2401 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2402 for (unsigned i = 0; i != NumVals; ++i)
2403 RetVals.push_back(NVT);
2404 } else {
2405 // Otherwise, this is a vector type. We only support legal vectors
2406 // right now.
2407 unsigned NumElems = cast<PackedType>(I->getType())->getNumElements();
2408 const Type *EltTy = cast<PackedType>(I->getType())->getElementType();
Evan Chengf7179bb2006-04-27 08:29:42 +00002409
Chris Lattnerfdfded52006-04-12 16:20:43 +00002410 // Figure out if there is a Packed type corresponding to this Vector
2411 // type. If so, convert to the packed type.
2412 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2413 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2414 RetVals.push_back(TVT);
2415 } else {
2416 assert(0 && "Don't support illegal by-val vector arguments yet!");
2417 }
2418 }
2419 break;
2420 }
2421 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00002422
Chris Lattner8c0c10c2006-05-16 06:45:34 +00002423 RetVals.push_back(MVT::Other);
Chris Lattnerfdfded52006-04-12 16:20:43 +00002424
2425 // Create the node.
2426 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, RetVals, Ops).Val;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00002427
2428 DAG.setRoot(SDOperand(Result, Result->getNumValues()-1));
Chris Lattnerfdfded52006-04-12 16:20:43 +00002429
2430 // Set up the return result vector.
2431 Ops.clear();
2432 unsigned i = 0;
2433 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2434 MVT::ValueType VT = getValueType(I->getType());
2435
2436 switch (getTypeAction(VT)) {
2437 default: assert(0 && "Unknown type action!");
2438 case Legal:
2439 Ops.push_back(SDOperand(Result, i++));
2440 break;
2441 case Promote: {
2442 SDOperand Op(Result, i++);
2443 if (MVT::isInteger(VT)) {
2444 unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext
2445 : ISD::AssertZext;
2446 Op = DAG.getNode(AssertOp, Op.getValueType(), Op, DAG.getValueType(VT));
2447 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2448 } else {
2449 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2450 Op = DAG.getNode(ISD::FP_ROUND, VT, Op);
2451 }
2452 Ops.push_back(Op);
2453 break;
2454 }
2455 case Expand:
2456 if (VT != MVT::Vector) {
2457 // If this is a large integer, it needs to be reassembled from small
2458 // integers. Figure out what the source elt type is and how many small
2459 // integers it is.
2460 MVT::ValueType NVT = getTypeToTransformTo(VT);
2461 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2462 if (NumVals == 2) {
2463 SDOperand Lo = SDOperand(Result, i++);
2464 SDOperand Hi = SDOperand(Result, i++);
2465
2466 if (!isLittleEndian())
2467 std::swap(Lo, Hi);
2468
2469 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi));
2470 } else {
2471 // Value scalarized into many values. Unimp for now.
2472 assert(0 && "Cannot expand i64 -> i16 yet!");
2473 }
2474 } else {
2475 // Otherwise, this is a vector type. We only support legal vectors
2476 // right now.
Evan Cheng020c41f2006-04-28 05:25:15 +00002477 const PackedType *PTy = cast<PackedType>(I->getType());
2478 unsigned NumElems = PTy->getNumElements();
2479 const Type *EltTy = PTy->getElementType();
Evan Chengf7179bb2006-04-27 08:29:42 +00002480
Chris Lattnerfdfded52006-04-12 16:20:43 +00002481 // Figure out if there is a Packed type corresponding to this Vector
2482 // type. If so, convert to the packed type.
2483 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
Chris Lattnerd202ca42006-05-17 20:49:36 +00002484 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Evan Cheng020c41f2006-04-28 05:25:15 +00002485 SDOperand N = SDOperand(Result, i++);
2486 // Handle copies from generic vectors to registers.
Chris Lattnerd202ca42006-05-17 20:49:36 +00002487 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
2488 DAG.getConstant(NumElems, MVT::i32),
2489 DAG.getValueType(getValueType(EltTy)));
2490 Ops.push_back(N);
2491 } else {
Chris Lattnerfdfded52006-04-12 16:20:43 +00002492 assert(0 && "Don't support illegal by-val vector arguments yet!");
Chris Lattnerda098e72006-05-16 23:39:44 +00002493 abort();
Chris Lattnerfdfded52006-04-12 16:20:43 +00002494 }
2495 }
2496 break;
2497 }
2498 }
2499 return Ops;
2500}
2501
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002502
2503/// TargetLowering::LowerCallTo - This is the default LowerCallTo
2504/// implementation, which just inserts an ISD::CALL node, which is later custom
2505/// lowered by the target to something concrete. FIXME: When all targets are
2506/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
2507std::pair<SDOperand, SDOperand>
2508TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
2509 unsigned CallingConv, bool isTailCall,
2510 SDOperand Callee,
2511 ArgListTy &Args, SelectionDAG &DAG) {
2512 std::vector<SDOperand> Ops;
2513 Ops.push_back(Chain); // Op#0 - Chain
2514 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
2515 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
2516 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
2517 Ops.push_back(Callee);
2518
2519 // Handle all of the outgoing arguments.
2520 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
2521 MVT::ValueType VT = getValueType(Args[i].second);
2522 SDOperand Op = Args[i].first;
Evan Chengf6d62c22006-05-25 00:55:32 +00002523 bool isSigned = Args[i].second->isSigned();
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002524 switch (getTypeAction(VT)) {
2525 default: assert(0 && "Unknown type action!");
2526 case Legal:
2527 Ops.push_back(Op);
Evan Chengd61c4822006-05-26 23:13:20 +00002528 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002529 break;
2530 case Promote:
2531 if (MVT::isInteger(VT)) {
Evan Chengf6d62c22006-05-25 00:55:32 +00002532 unsigned ExtOp = isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002533 Op = DAG.getNode(ExtOp, getTypeToTransformTo(VT), Op);
2534 } else {
2535 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2536 Op = DAG.getNode(ISD::FP_EXTEND, getTypeToTransformTo(VT), Op);
2537 }
2538 Ops.push_back(Op);
Evan Chengd61c4822006-05-26 23:13:20 +00002539 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002540 break;
2541 case Expand:
2542 if (VT != MVT::Vector) {
2543 // If this is a large integer, it needs to be broken down into small
2544 // integers. Figure out what the source elt type is and how many small
2545 // integers it is.
2546 MVT::ValueType NVT = getTypeToTransformTo(VT);
2547 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2548 if (NumVals == 2) {
2549 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2550 DAG.getConstant(0, getPointerTy()));
2551 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2552 DAG.getConstant(1, getPointerTy()));
2553 if (!isLittleEndian())
2554 std::swap(Lo, Hi);
2555
2556 Ops.push_back(Lo);
Evan Chengd61c4822006-05-26 23:13:20 +00002557 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002558 Ops.push_back(Hi);
Evan Chengd61c4822006-05-26 23:13:20 +00002559 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002560 } else {
2561 // Value scalarized into many values. Unimp for now.
2562 assert(0 && "Cannot expand i64 -> i16 yet!");
2563 }
2564 } else {
Chris Lattnerda098e72006-05-16 23:39:44 +00002565 // Otherwise, this is a vector type. We only support legal vectors
2566 // right now.
2567 const PackedType *PTy = cast<PackedType>(Args[i].second);
2568 unsigned NumElems = PTy->getNumElements();
2569 const Type *EltTy = PTy->getElementType();
2570
2571 // Figure out if there is a Packed type corresponding to this Vector
2572 // type. If so, convert to the packed type.
2573 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
Chris Lattner1b8daae2006-05-17 20:43:21 +00002574 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2575 // Insert a VBIT_CONVERT of the MVT::Vector type to the packed type.
2576 Op = DAG.getNode(ISD::VBIT_CONVERT, TVT, Op);
2577 Ops.push_back(Op);
Evan Chengd61c4822006-05-26 23:13:20 +00002578 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattner1b8daae2006-05-17 20:43:21 +00002579 } else {
Chris Lattnerda098e72006-05-16 23:39:44 +00002580 assert(0 && "Don't support illegal by-val vector call args yet!");
2581 abort();
2582 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002583 }
2584 break;
2585 }
2586 }
2587
2588 // Figure out the result value types.
2589 std::vector<MVT::ValueType> RetTys;
2590
2591 if (RetTy != Type::VoidTy) {
2592 MVT::ValueType VT = getValueType(RetTy);
2593 switch (getTypeAction(VT)) {
2594 default: assert(0 && "Unknown type action!");
2595 case Legal:
2596 RetTys.push_back(VT);
2597 break;
2598 case Promote:
2599 RetTys.push_back(getTypeToTransformTo(VT));
2600 break;
2601 case Expand:
2602 if (VT != MVT::Vector) {
2603 // If this is a large integer, it needs to be reassembled from small
2604 // integers. Figure out what the source elt type is and how many small
2605 // integers it is.
2606 MVT::ValueType NVT = getTypeToTransformTo(VT);
2607 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2608 for (unsigned i = 0; i != NumVals; ++i)
2609 RetTys.push_back(NVT);
2610 } else {
Chris Lattnerda098e72006-05-16 23:39:44 +00002611 // Otherwise, this is a vector type. We only support legal vectors
2612 // right now.
2613 const PackedType *PTy = cast<PackedType>(RetTy);
2614 unsigned NumElems = PTy->getNumElements();
2615 const Type *EltTy = PTy->getElementType();
2616
2617 // Figure out if there is a Packed type corresponding to this Vector
2618 // type. If so, convert to the packed type.
2619 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2620 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2621 RetTys.push_back(TVT);
2622 } else {
2623 assert(0 && "Don't support illegal by-val vector call results yet!");
2624 abort();
2625 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002626 }
2627 }
2628 }
2629
2630 RetTys.push_back(MVT::Other); // Always has a chain.
2631
2632 // Finally, create the CALL node.
2633 SDOperand Res = DAG.getNode(ISD::CALL, RetTys, Ops);
2634
2635 // This returns a pair of operands. The first element is the
2636 // return value for the function (if RetTy is not VoidTy). The second
2637 // element is the outgoing token chain.
2638 SDOperand ResVal;
2639 if (RetTys.size() != 1) {
2640 MVT::ValueType VT = getValueType(RetTy);
2641 if (RetTys.size() == 2) {
2642 ResVal = Res;
2643
2644 // If this value was promoted, truncate it down.
2645 if (ResVal.getValueType() != VT) {
Chris Lattnerda098e72006-05-16 23:39:44 +00002646 if (VT == MVT::Vector) {
2647 // Insert a VBITCONVERT to convert from the packed result type to the
2648 // MVT::Vector type.
2649 unsigned NumElems = cast<PackedType>(RetTy)->getNumElements();
2650 const Type *EltTy = cast<PackedType>(RetTy)->getElementType();
2651
2652 // Figure out if there is a Packed type corresponding to this Vector
2653 // type. If so, convert to the packed type.
2654 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2655 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Chris Lattnerda098e72006-05-16 23:39:44 +00002656 // Insert a VBIT_CONVERT of the FORMAL_ARGUMENTS to a
2657 // "N x PTyElementVT" MVT::Vector type.
2658 ResVal = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, ResVal,
Chris Lattnerd202ca42006-05-17 20:49:36 +00002659 DAG.getConstant(NumElems, MVT::i32),
2660 DAG.getValueType(getValueType(EltTy)));
Chris Lattnerda098e72006-05-16 23:39:44 +00002661 } else {
2662 abort();
2663 }
2664 } else if (MVT::isInteger(VT)) {
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002665 unsigned AssertOp = RetTy->isSigned() ?
2666 ISD::AssertSext : ISD::AssertZext;
2667 ResVal = DAG.getNode(AssertOp, ResVal.getValueType(), ResVal,
2668 DAG.getValueType(VT));
2669 ResVal = DAG.getNode(ISD::TRUNCATE, VT, ResVal);
2670 } else {
2671 assert(MVT::isFloatingPoint(VT));
2672 ResVal = DAG.getNode(ISD::FP_ROUND, VT, ResVal);
2673 }
2674 }
2675 } else if (RetTys.size() == 3) {
2676 ResVal = DAG.getNode(ISD::BUILD_PAIR, VT,
2677 Res.getValue(0), Res.getValue(1));
2678
2679 } else {
2680 assert(0 && "Case not handled yet!");
2681 }
2682 }
2683
2684 return std::make_pair(ResVal, Res.getValue(Res.Val->getNumValues()-1));
2685}
2686
2687
2688
Chris Lattner39ae3622005-01-09 00:00:49 +00002689// It is always conservatively correct for llvm.returnaddress and
2690// llvm.frameaddress to return 0.
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002691//
2692// FIXME: Change this to insert a FRAMEADDR/RETURNADDR node, and have that be
2693// expanded to 0 if the target wants.
Chris Lattner39ae3622005-01-09 00:00:49 +00002694std::pair<SDOperand, SDOperand>
2695TargetLowering::LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain,
2696 unsigned Depth, SelectionDAG &DAG) {
2697 return std::make_pair(DAG.getConstant(0, getPointerTy()), Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00002698}
2699
Chris Lattner50381b62005-05-14 05:50:48 +00002700SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00002701 assert(0 && "LowerOperation not implemented for this target!");
2702 abort();
Misha Brukmand3f03e42005-02-17 21:39:27 +00002703 return SDOperand();
Chris Lattner171453a2005-01-16 07:28:41 +00002704}
2705
Nate Begeman0aed7842006-01-28 03:14:31 +00002706SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
2707 SelectionDAG &DAG) {
2708 assert(0 && "CustomPromoteOperation not implemented for this target!");
2709 abort();
2710 return SDOperand();
2711}
2712
Chris Lattner39ae3622005-01-09 00:00:49 +00002713void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) {
2714 unsigned Depth = (unsigned)cast<ConstantUInt>(I.getOperand(1))->getValue();
2715 std::pair<SDOperand,SDOperand> Result =
Chris Lattnera651cf62005-01-17 19:43:36 +00002716 TLI.LowerFrameReturnAddress(isFrame, getRoot(), Depth, DAG);
Chris Lattner39ae3622005-01-09 00:00:49 +00002717 setValue(&I, Result.first);
2718 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002719}
2720
Evan Cheng74d0aa92006-02-15 21:59:04 +00002721/// getMemsetValue - Vectorized representation of the memset value
Evan Cheng1db92f92006-02-14 08:22:34 +00002722/// operand.
2723static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT,
Evan Chenga47876d2006-02-15 22:12:35 +00002724 SelectionDAG &DAG) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002725 MVT::ValueType CurVT = VT;
2726 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
2727 uint64_t Val = C->getValue() & 255;
2728 unsigned Shift = 8;
2729 while (CurVT != MVT::i8) {
2730 Val = (Val << Shift) | Val;
2731 Shift <<= 1;
2732 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002733 }
2734 return DAG.getConstant(Val, VT);
2735 } else {
2736 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2737 unsigned Shift = 8;
2738 while (CurVT != MVT::i8) {
2739 Value =
2740 DAG.getNode(ISD::OR, VT,
2741 DAG.getNode(ISD::SHL, VT, Value,
2742 DAG.getConstant(Shift, MVT::i8)), Value);
2743 Shift <<= 1;
2744 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002745 }
2746
2747 return Value;
2748 }
2749}
2750
Evan Cheng74d0aa92006-02-15 21:59:04 +00002751/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2752/// used when a memcpy is turned into a memset when the source is a constant
2753/// string ptr.
2754static SDOperand getMemsetStringVal(MVT::ValueType VT,
2755 SelectionDAG &DAG, TargetLowering &TLI,
2756 std::string &Str, unsigned Offset) {
2757 MVT::ValueType CurVT = VT;
2758 uint64_t Val = 0;
2759 unsigned MSB = getSizeInBits(VT) / 8;
2760 if (TLI.isLittleEndian())
2761 Offset = Offset + MSB - 1;
2762 for (unsigned i = 0; i != MSB; ++i) {
2763 Val = (Val << 8) | Str[Offset];
2764 Offset += TLI.isLittleEndian() ? -1 : 1;
2765 }
2766 return DAG.getConstant(Val, VT);
2767}
2768
Evan Cheng1db92f92006-02-14 08:22:34 +00002769/// getMemBasePlusOffset - Returns base and offset node for the
2770static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
2771 SelectionDAG &DAG, TargetLowering &TLI) {
2772 MVT::ValueType VT = Base.getValueType();
2773 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2774}
2775
Evan Chengc4f8eee2006-02-14 20:12:38 +00002776/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
Evan Cheng80e89d72006-02-14 09:11:59 +00002777/// to replace the memset / memcpy is below the threshold. It also returns the
2778/// types of the sequence of memory ops to perform memset / memcpy.
Evan Chengc4f8eee2006-02-14 20:12:38 +00002779static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps,
2780 unsigned Limit, uint64_t Size,
2781 unsigned Align, TargetLowering &TLI) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002782 MVT::ValueType VT;
2783
2784 if (TLI.allowsUnalignedMemoryAccesses()) {
2785 VT = MVT::i64;
2786 } else {
2787 switch (Align & 7) {
2788 case 0:
2789 VT = MVT::i64;
2790 break;
2791 case 4:
2792 VT = MVT::i32;
2793 break;
2794 case 2:
2795 VT = MVT::i16;
2796 break;
2797 default:
2798 VT = MVT::i8;
2799 break;
2800 }
2801 }
2802
Evan Cheng80e89d72006-02-14 09:11:59 +00002803 MVT::ValueType LVT = MVT::i64;
2804 while (!TLI.isTypeLegal(LVT))
2805 LVT = (MVT::ValueType)((unsigned)LVT - 1);
2806 assert(MVT::isInteger(LVT));
Evan Cheng1db92f92006-02-14 08:22:34 +00002807
Evan Cheng80e89d72006-02-14 09:11:59 +00002808 if (VT > LVT)
2809 VT = LVT;
2810
Evan Chengdea72452006-02-14 23:05:54 +00002811 unsigned NumMemOps = 0;
Evan Cheng1db92f92006-02-14 08:22:34 +00002812 while (Size != 0) {
2813 unsigned VTSize = getSizeInBits(VT) / 8;
2814 while (VTSize > Size) {
2815 VT = (MVT::ValueType)((unsigned)VT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002816 VTSize >>= 1;
2817 }
Evan Cheng80e89d72006-02-14 09:11:59 +00002818 assert(MVT::isInteger(VT));
2819
2820 if (++NumMemOps > Limit)
2821 return false;
Evan Cheng1db92f92006-02-14 08:22:34 +00002822 MemOps.push_back(VT);
2823 Size -= VTSize;
2824 }
Evan Cheng80e89d72006-02-14 09:11:59 +00002825
2826 return true;
Evan Cheng1db92f92006-02-14 08:22:34 +00002827}
2828
Chris Lattner7041ee32005-01-11 05:56:49 +00002829void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002830 SDOperand Op1 = getValue(I.getOperand(1));
2831 SDOperand Op2 = getValue(I.getOperand(2));
2832 SDOperand Op3 = getValue(I.getOperand(3));
2833 SDOperand Op4 = getValue(I.getOperand(4));
2834 unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue();
2835 if (Align == 0) Align = 1;
2836
2837 if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) {
2838 std::vector<MVT::ValueType> MemOps;
Evan Cheng1db92f92006-02-14 08:22:34 +00002839
2840 // Expand memset / memcpy to a series of load / store ops
2841 // if the size operand falls below a certain threshold.
2842 std::vector<SDOperand> OutChains;
2843 switch (Op) {
Evan Chengac940ab2006-02-14 19:45:56 +00002844 default: break; // Do nothing for now.
Evan Cheng1db92f92006-02-14 08:22:34 +00002845 case ISD::MEMSET: {
Evan Chengc4f8eee2006-02-14 20:12:38 +00002846 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
2847 Size->getValue(), Align, TLI)) {
Evan Cheng80e89d72006-02-14 09:11:59 +00002848 unsigned NumMemOps = MemOps.size();
Evan Cheng1db92f92006-02-14 08:22:34 +00002849 unsigned Offset = 0;
2850 for (unsigned i = 0; i < NumMemOps; i++) {
2851 MVT::ValueType VT = MemOps[i];
2852 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Chenga47876d2006-02-15 22:12:35 +00002853 SDOperand Value = getMemsetValue(Op2, VT, DAG);
Evan Chengc080d6f2006-02-15 01:54:51 +00002854 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, getRoot(),
2855 Value,
Chris Lattner864635a2006-02-22 22:37:12 +00002856 getMemBasePlusOffset(Op1, Offset, DAG, TLI),
2857 DAG.getSrcValue(I.getOperand(1), Offset));
Evan Chengc080d6f2006-02-15 01:54:51 +00002858 OutChains.push_back(Store);
Evan Cheng1db92f92006-02-14 08:22:34 +00002859 Offset += VTSize;
2860 }
Evan Cheng1db92f92006-02-14 08:22:34 +00002861 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002862 break;
Evan Cheng1db92f92006-02-14 08:22:34 +00002863 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002864 case ISD::MEMCPY: {
2865 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemcpy(),
2866 Size->getValue(), Align, TLI)) {
2867 unsigned NumMemOps = MemOps.size();
Evan Chengcffbb512006-02-16 23:11:42 +00002868 unsigned SrcOff = 0, DstOff = 0, SrcDelta = 0;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002869 GlobalAddressSDNode *G = NULL;
2870 std::string Str;
Evan Chengcffbb512006-02-16 23:11:42 +00002871 bool CopyFromStr = false;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002872
2873 if (Op2.getOpcode() == ISD::GlobalAddress)
2874 G = cast<GlobalAddressSDNode>(Op2);
2875 else if (Op2.getOpcode() == ISD::ADD &&
2876 Op2.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2877 Op2.getOperand(1).getOpcode() == ISD::Constant) {
2878 G = cast<GlobalAddressSDNode>(Op2.getOperand(0));
Evan Chengcffbb512006-02-16 23:11:42 +00002879 SrcDelta = cast<ConstantSDNode>(Op2.getOperand(1))->getValue();
Evan Cheng74d0aa92006-02-15 21:59:04 +00002880 }
2881 if (G) {
2882 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Chengcffbb512006-02-16 23:11:42 +00002883 if (GV) {
Evan Cheng09371032006-03-10 23:52:03 +00002884 Str = GV->getStringValue(false);
Evan Chengcffbb512006-02-16 23:11:42 +00002885 if (!Str.empty()) {
2886 CopyFromStr = true;
2887 SrcOff += SrcDelta;
2888 }
2889 }
Evan Cheng74d0aa92006-02-15 21:59:04 +00002890 }
2891
Evan Chengc080d6f2006-02-15 01:54:51 +00002892 for (unsigned i = 0; i < NumMemOps; i++) {
2893 MVT::ValueType VT = MemOps[i];
2894 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002895 SDOperand Value, Chain, Store;
2896
Evan Chengcffbb512006-02-16 23:11:42 +00002897 if (CopyFromStr) {
Evan Cheng74d0aa92006-02-15 21:59:04 +00002898 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
2899 Chain = getRoot();
2900 Store =
2901 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2902 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2903 DAG.getSrcValue(I.getOperand(1), DstOff));
2904 } else {
2905 Value = DAG.getLoad(VT, getRoot(),
2906 getMemBasePlusOffset(Op2, SrcOff, DAG, TLI),
2907 DAG.getSrcValue(I.getOperand(2), SrcOff));
2908 Chain = Value.getValue(1);
2909 Store =
2910 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2911 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2912 DAG.getSrcValue(I.getOperand(1), DstOff));
2913 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002914 OutChains.push_back(Store);
Evan Cheng74d0aa92006-02-15 21:59:04 +00002915 SrcOff += VTSize;
2916 DstOff += VTSize;
Evan Chengc080d6f2006-02-15 01:54:51 +00002917 }
2918 }
2919 break;
2920 }
2921 }
2922
2923 if (!OutChains.empty()) {
2924 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains));
2925 return;
Evan Cheng1db92f92006-02-14 08:22:34 +00002926 }
2927 }
2928
Chris Lattner7041ee32005-01-11 05:56:49 +00002929 std::vector<SDOperand> Ops;
Chris Lattnera651cf62005-01-17 19:43:36 +00002930 Ops.push_back(getRoot());
Evan Cheng1db92f92006-02-14 08:22:34 +00002931 Ops.push_back(Op1);
2932 Ops.push_back(Op2);
2933 Ops.push_back(Op3);
2934 Ops.push_back(Op4);
Chris Lattner7041ee32005-01-11 05:56:49 +00002935 DAG.setRoot(DAG.getNode(Op, MVT::Other, Ops));
Chris Lattner1c08c712005-01-07 07:47:53 +00002936}
2937
Chris Lattner7041ee32005-01-11 05:56:49 +00002938//===----------------------------------------------------------------------===//
2939// SelectionDAGISel code
2940//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00002941
2942unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) {
2943 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
2944}
2945
Chris Lattner495a0b52005-08-17 06:37:43 +00002946void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner36b708f2005-08-18 17:35:14 +00002947 // FIXME: we only modify the CFG to split critical edges. This
2948 // updates dom and loop info.
Chris Lattner495a0b52005-08-17 06:37:43 +00002949}
Chris Lattner1c08c712005-01-07 07:47:53 +00002950
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002951
Chris Lattner90323642006-05-05 21:17:49 +00002952/// OptimizeNoopCopyExpression - We have determined that the specified cast
2953/// instruction is a noop copy (e.g. it's casting from one pointer type to
2954/// another, int->uint, or int->sbyte on PPC.
2955///
2956/// Return true if any changes are made.
2957static bool OptimizeNoopCopyExpression(CastInst *CI) {
2958 BasicBlock *DefBB = CI->getParent();
2959
2960 /// InsertedCasts - Only insert a cast in each block once.
2961 std::map<BasicBlock*, CastInst*> InsertedCasts;
2962
2963 bool MadeChange = false;
2964 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
2965 UI != E; ) {
2966 Use &TheUse = UI.getUse();
2967 Instruction *User = cast<Instruction>(*UI);
2968
2969 // Figure out which BB this cast is used in. For PHI's this is the
2970 // appropriate predecessor block.
2971 BasicBlock *UserBB = User->getParent();
2972 if (PHINode *PN = dyn_cast<PHINode>(User)) {
2973 unsigned OpVal = UI.getOperandNo()/2;
2974 UserBB = PN->getIncomingBlock(OpVal);
2975 }
2976
2977 // Preincrement use iterator so we don't invalidate it.
2978 ++UI;
2979
2980 // If this user is in the same block as the cast, don't change the cast.
2981 if (UserBB == DefBB) continue;
2982
2983 // If we have already inserted a cast into this block, use it.
2984 CastInst *&InsertedCast = InsertedCasts[UserBB];
2985
2986 if (!InsertedCast) {
2987 BasicBlock::iterator InsertPt = UserBB->begin();
2988 while (isa<PHINode>(InsertPt)) ++InsertPt;
2989
2990 InsertedCast =
2991 new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
2992 MadeChange = true;
2993 }
2994
2995 // Replace a use of the cast with a use of the new casat.
2996 TheUse = InsertedCast;
2997 }
2998
2999 // If we removed all uses, nuke the cast.
3000 if (CI->use_empty())
3001 CI->eraseFromParent();
3002
3003 return MadeChange;
3004}
3005
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003006/// InsertGEPComputeCode - Insert code into BB to compute Ptr+PtrOffset,
3007/// casting to the type of GEPI.
Chris Lattnerf0df8822006-05-06 09:10:37 +00003008static Instruction *InsertGEPComputeCode(Instruction *&V, BasicBlock *BB,
3009 Instruction *GEPI, Value *Ptr,
3010 Value *PtrOffset) {
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003011 if (V) return V; // Already computed.
3012
3013 BasicBlock::iterator InsertPt;
3014 if (BB == GEPI->getParent()) {
3015 // If insert into the GEP's block, insert right after the GEP.
3016 InsertPt = GEPI;
3017 ++InsertPt;
3018 } else {
3019 // Otherwise, insert at the top of BB, after any PHI nodes
3020 InsertPt = BB->begin();
3021 while (isa<PHINode>(InsertPt)) ++InsertPt;
3022 }
3023
Chris Lattnerc78b0b72005-12-08 08:00:12 +00003024 // If Ptr is itself a cast, but in some other BB, emit a copy of the cast into
3025 // BB so that there is only one value live across basic blocks (the cast
3026 // operand).
3027 if (CastInst *CI = dyn_cast<CastInst>(Ptr))
3028 if (CI->getParent() != BB && isa<PointerType>(CI->getOperand(0)->getType()))
3029 Ptr = new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
3030
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003031 // Add the offset, cast it to the right type.
3032 Ptr = BinaryOperator::createAdd(Ptr, PtrOffset, "", InsertPt);
Chris Lattnerf0df8822006-05-06 09:10:37 +00003033 return V = new CastInst(Ptr, GEPI->getType(), "", InsertPt);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003034}
3035
Chris Lattner90323642006-05-05 21:17:49 +00003036/// ReplaceUsesOfGEPInst - Replace all uses of RepPtr with inserted code to
3037/// compute its value. The RepPtr value can be computed with Ptr+PtrOffset. One
3038/// trivial way of doing this would be to evaluate Ptr+PtrOffset in RepPtr's
3039/// block, then ReplaceAllUsesWith'ing everything. However, we would prefer to
3040/// sink PtrOffset into user blocks where doing so will likely allow us to fold
3041/// the constant add into a load or store instruction. Additionally, if a user
3042/// is a pointer-pointer cast, we look through it to find its users.
3043static void ReplaceUsesOfGEPInst(Instruction *RepPtr, Value *Ptr,
3044 Constant *PtrOffset, BasicBlock *DefBB,
3045 GetElementPtrInst *GEPI,
Chris Lattnerf0df8822006-05-06 09:10:37 +00003046 std::map<BasicBlock*,Instruction*> &InsertedExprs) {
Chris Lattner90323642006-05-05 21:17:49 +00003047 while (!RepPtr->use_empty()) {
3048 Instruction *User = cast<Instruction>(RepPtr->use_back());
Chris Lattner7e598092006-05-05 01:04:50 +00003049
Chris Lattner90323642006-05-05 21:17:49 +00003050 // If the user is a Pointer-Pointer cast, recurse.
3051 if (isa<CastInst>(User) && isa<PointerType>(User->getType())) {
3052 ReplaceUsesOfGEPInst(User, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattner7e598092006-05-05 01:04:50 +00003053
Chris Lattner90323642006-05-05 21:17:49 +00003054 // Drop the use of RepPtr. The cast is dead. Don't delete it now, else we
3055 // could invalidate an iterator.
3056 User->setOperand(0, UndefValue::get(RepPtr->getType()));
3057 continue;
Chris Lattner7e598092006-05-05 01:04:50 +00003058 }
3059
Chris Lattner90323642006-05-05 21:17:49 +00003060 // If this is a load of the pointer, or a store through the pointer, emit
3061 // the increment into the load/store block.
Chris Lattnerf0df8822006-05-06 09:10:37 +00003062 Instruction *NewVal;
Chris Lattner90323642006-05-05 21:17:49 +00003063 if (isa<LoadInst>(User) ||
3064 (isa<StoreInst>(User) && User->getOperand(0) != RepPtr)) {
3065 NewVal = InsertGEPComputeCode(InsertedExprs[User->getParent()],
3066 User->getParent(), GEPI,
3067 Ptr, PtrOffset);
3068 } else {
3069 // If this use is not foldable into the addressing mode, use a version
3070 // emitted in the GEP block.
3071 NewVal = InsertGEPComputeCode(InsertedExprs[DefBB], DefBB, GEPI,
3072 Ptr, PtrOffset);
3073 }
3074
Chris Lattnerf0df8822006-05-06 09:10:37 +00003075 if (GEPI->getType() != RepPtr->getType()) {
3076 BasicBlock::iterator IP = NewVal;
3077 ++IP;
3078 NewVal = new CastInst(NewVal, RepPtr->getType(), "", IP);
3079 }
Chris Lattner90323642006-05-05 21:17:49 +00003080 User->replaceUsesOfWith(RepPtr, NewVal);
Chris Lattner7e598092006-05-05 01:04:50 +00003081 }
3082}
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003083
Chris Lattner90323642006-05-05 21:17:49 +00003084
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003085/// OptimizeGEPExpression - Since we are doing basic-block-at-a-time instruction
3086/// selection, we want to be a bit careful about some things. In particular, if
3087/// we have a GEP instruction that is used in a different block than it is
3088/// defined, the addressing expression of the GEP cannot be folded into loads or
3089/// stores that use it. In this case, decompose the GEP and move constant
3090/// indices into blocks that use it.
Chris Lattner90323642006-05-05 21:17:49 +00003091static bool OptimizeGEPExpression(GetElementPtrInst *GEPI,
Owen Andersona69571c2006-05-03 01:29:57 +00003092 const TargetData *TD) {
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003093 // If this GEP is only used inside the block it is defined in, there is no
3094 // need to rewrite it.
3095 bool isUsedOutsideDefBB = false;
3096 BasicBlock *DefBB = GEPI->getParent();
3097 for (Value::use_iterator UI = GEPI->use_begin(), E = GEPI->use_end();
3098 UI != E; ++UI) {
3099 if (cast<Instruction>(*UI)->getParent() != DefBB) {
3100 isUsedOutsideDefBB = true;
3101 break;
3102 }
3103 }
Chris Lattner90323642006-05-05 21:17:49 +00003104 if (!isUsedOutsideDefBB) return false;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003105
3106 // If this GEP has no non-zero constant indices, there is nothing we can do,
3107 // ignore it.
3108 bool hasConstantIndex = false;
Chris Lattner90323642006-05-05 21:17:49 +00003109 bool hasVariableIndex = false;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003110 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3111 E = GEPI->op_end(); OI != E; ++OI) {
Chris Lattner90323642006-05-05 21:17:49 +00003112 if (ConstantInt *CI = dyn_cast<ConstantInt>(*OI)) {
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003113 if (CI->getRawValue()) {
3114 hasConstantIndex = true;
3115 break;
3116 }
Chris Lattner90323642006-05-05 21:17:49 +00003117 } else {
3118 hasVariableIndex = true;
3119 }
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003120 }
Chris Lattner90323642006-05-05 21:17:49 +00003121
3122 // If this is a "GEP X, 0, 0, 0", turn this into a cast.
3123 if (!hasConstantIndex && !hasVariableIndex) {
3124 Value *NC = new CastInst(GEPI->getOperand(0), GEPI->getType(),
3125 GEPI->getName(), GEPI);
3126 GEPI->replaceAllUsesWith(NC);
3127 GEPI->eraseFromParent();
3128 return true;
3129 }
3130
Chris Lattner3802c252005-12-11 09:05:13 +00003131 // If this is a GEP &Alloca, 0, 0, forward subst the frame index into uses.
Chris Lattner90323642006-05-05 21:17:49 +00003132 if (!hasConstantIndex && !isa<AllocaInst>(GEPI->getOperand(0)))
3133 return false;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003134
3135 // Otherwise, decompose the GEP instruction into multiplies and adds. Sum the
3136 // constant offset (which we now know is non-zero) and deal with it later.
3137 uint64_t ConstantOffset = 0;
Owen Andersona69571c2006-05-03 01:29:57 +00003138 const Type *UIntPtrTy = TD->getIntPtrType();
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003139 Value *Ptr = new CastInst(GEPI->getOperand(0), UIntPtrTy, "", GEPI);
3140 const Type *Ty = GEPI->getOperand(0)->getType();
3141
3142 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3143 E = GEPI->op_end(); OI != E; ++OI) {
3144 Value *Idx = *OI;
3145 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
3146 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
3147 if (Field)
Owen Andersona69571c2006-05-03 01:29:57 +00003148 ConstantOffset += TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003149 Ty = StTy->getElementType(Field);
3150 } else {
3151 Ty = cast<SequentialType>(Ty)->getElementType();
3152
3153 // Handle constant subscripts.
3154 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
3155 if (CI->getRawValue() == 0) continue;
3156
3157 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Andersona69571c2006-05-03 01:29:57 +00003158 ConstantOffset += (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003159 else
Owen Andersona69571c2006-05-03 01:29:57 +00003160 ConstantOffset+=TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003161 continue;
3162 }
3163
3164 // Ptr = Ptr + Idx * ElementSize;
3165
3166 // Cast Idx to UIntPtrTy if needed.
3167 Idx = new CastInst(Idx, UIntPtrTy, "", GEPI);
3168
Owen Andersona69571c2006-05-03 01:29:57 +00003169 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003170 // Mask off bits that should not be set.
3171 ElementSize &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3172 Constant *SizeCst = ConstantUInt::get(UIntPtrTy, ElementSize);
3173
3174 // Multiply by the element size and add to the base.
3175 Idx = BinaryOperator::createMul(Idx, SizeCst, "", GEPI);
3176 Ptr = BinaryOperator::createAdd(Ptr, Idx, "", GEPI);
3177 }
3178 }
3179
3180 // Make sure that the offset fits in uintptr_t.
3181 ConstantOffset &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3182 Constant *PtrOffset = ConstantUInt::get(UIntPtrTy, ConstantOffset);
3183
3184 // Okay, we have now emitted all of the variable index parts to the BB that
3185 // the GEP is defined in. Loop over all of the using instructions, inserting
3186 // an "add Ptr, ConstantOffset" into each block that uses it and update the
Chris Lattnerc78b0b72005-12-08 08:00:12 +00003187 // instruction to use the newly computed value, making GEPI dead. When the
3188 // user is a load or store instruction address, we emit the add into the user
3189 // block, otherwise we use a canonical version right next to the gep (these
3190 // won't be foldable as addresses, so we might as well share the computation).
3191
Chris Lattnerf0df8822006-05-06 09:10:37 +00003192 std::map<BasicBlock*,Instruction*> InsertedExprs;
Chris Lattner90323642006-05-05 21:17:49 +00003193 ReplaceUsesOfGEPInst(GEPI, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003194
3195 // Finally, the GEP is dead, remove it.
3196 GEPI->eraseFromParent();
Chris Lattner90323642006-05-05 21:17:49 +00003197
3198 return true;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003199}
3200
Chris Lattner1c08c712005-01-07 07:47:53 +00003201bool SelectionDAGISel::runOnFunction(Function &Fn) {
3202 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
3203 RegMap = MF.getSSARegMap();
3204 DEBUG(std::cerr << "\n\n\n=== " << Fn.getName() << "\n");
3205
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003206 // First, split all critical edges for PHI nodes with incoming values that are
3207 // constants, this way the load of the constant into a vreg will not be placed
3208 // into MBBs that are used some other way.
3209 //
Chris Lattner7e598092006-05-05 01:04:50 +00003210 // In this pass we also look for GEP and cast instructions that are used
3211 // across basic blocks and rewrite them to improve basic-block-at-a-time
3212 // selection.
3213 //
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003214 //
Chris Lattner90323642006-05-05 21:17:49 +00003215 bool MadeChange = true;
3216 while (MadeChange) {
3217 MadeChange = false;
Chris Lattner36b708f2005-08-18 17:35:14 +00003218 for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
3219 PHINode *PN;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003220 BasicBlock::iterator BBI;
3221 for (BBI = BB->begin(); (PN = dyn_cast<PHINode>(BBI)); ++BBI)
Chris Lattner36b708f2005-08-18 17:35:14 +00003222 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3223 if (isa<Constant>(PN->getIncomingValue(i)))
3224 SplitCriticalEdge(PN->getIncomingBlock(i), BB);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003225
Chris Lattner7e598092006-05-05 01:04:50 +00003226 for (BasicBlock::iterator E = BB->end(); BBI != E; ) {
3227 Instruction *I = BBI++;
3228 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
Chris Lattner90323642006-05-05 21:17:49 +00003229 MadeChange |= OptimizeGEPExpression(GEPI, TLI.getTargetData());
Chris Lattner7e598092006-05-05 01:04:50 +00003230 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
3231 // If this is a noop copy, sink it into user blocks to reduce the number
3232 // of virtual registers that must be created and coallesced.
3233 MVT::ValueType SrcVT = TLI.getValueType(CI->getOperand(0)->getType());
3234 MVT::ValueType DstVT = TLI.getValueType(CI->getType());
3235
3236 // This is an fp<->int conversion?
3237 if (MVT::isInteger(SrcVT) != MVT::isInteger(DstVT))
3238 continue;
3239
3240 // If this is an extension, it will be a zero or sign extension, which
3241 // isn't a noop.
3242 if (SrcVT < DstVT) continue;
3243
3244 // If these values will be promoted, find out what they will be promoted
3245 // to. This helps us consider truncates on PPC as noop copies when they
3246 // are.
3247 if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote)
3248 SrcVT = TLI.getTypeToTransformTo(SrcVT);
3249 if (TLI.getTypeAction(DstVT) == TargetLowering::Promote)
3250 DstVT = TLI.getTypeToTransformTo(DstVT);
3251
3252 // If, after promotion, these are the same types, this is a noop copy.
3253 if (SrcVT == DstVT)
Chris Lattner90323642006-05-05 21:17:49 +00003254 MadeChange |= OptimizeNoopCopyExpression(CI);
Chris Lattner7e598092006-05-05 01:04:50 +00003255 }
3256 }
Chris Lattner36b708f2005-08-18 17:35:14 +00003257 }
Chris Lattner90323642006-05-05 21:17:49 +00003258 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003259
Chris Lattner1c08c712005-01-07 07:47:53 +00003260 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
3261
3262 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
3263 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00003264
Chris Lattner1c08c712005-01-07 07:47:53 +00003265 return true;
3266}
3267
3268
Chris Lattnerddb870b2005-01-13 17:59:43 +00003269SDOperand SelectionDAGISel::
3270CopyValueToVirtualRegister(SelectionDAGLowering &SDL, Value *V, unsigned Reg) {
Chris Lattnerf1fdaca2005-01-11 22:03:46 +00003271 SDOperand Op = SDL.getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00003272 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003273 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00003274 "Copy from a reg to the same reg!");
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003275
3276 // If this type is not legal, we must make sure to not create an invalid
3277 // register use.
3278 MVT::ValueType SrcVT = Op.getValueType();
3279 MVT::ValueType DestVT = TLI.getTypeToTransformTo(SrcVT);
3280 SelectionDAG &DAG = SDL.DAG;
3281 if (SrcVT == DestVT) {
3282 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
Chris Lattner1c6191f2006-03-21 19:20:37 +00003283 } else if (SrcVT == MVT::Vector) {
Chris Lattner70c2a612006-03-31 02:06:56 +00003284 // Handle copies from generic vectors to registers.
3285 MVT::ValueType PTyElementVT, PTyLegalElementVT;
3286 unsigned NE = TLI.getPackedTypeBreakdown(cast<PackedType>(V->getType()),
3287 PTyElementVT, PTyLegalElementVT);
Chris Lattner1c6191f2006-03-21 19:20:37 +00003288
Chris Lattner70c2a612006-03-31 02:06:56 +00003289 // Insert a VBIT_CONVERT of the input vector to a "N x PTyElementVT"
3290 // MVT::Vector type.
3291 Op = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Op,
3292 DAG.getConstant(NE, MVT::i32),
3293 DAG.getValueType(PTyElementVT));
Chris Lattner1c6191f2006-03-21 19:20:37 +00003294
Chris Lattner70c2a612006-03-31 02:06:56 +00003295 // Loop over all of the elements of the resultant vector,
3296 // VEXTRACT_VECTOR_ELT'ing them, converting them to PTyLegalElementVT, then
3297 // copying them into output registers.
3298 std::vector<SDOperand> OutChains;
3299 SDOperand Root = SDL.getRoot();
3300 for (unsigned i = 0; i != NE; ++i) {
3301 SDOperand Elt = DAG.getNode(ISD::VEXTRACT_VECTOR_ELT, PTyElementVT,
3302 Op, DAG.getConstant(i, MVT::i32));
3303 if (PTyElementVT == PTyLegalElementVT) {
3304 // Elements are legal.
3305 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3306 } else if (PTyLegalElementVT > PTyElementVT) {
3307 // Elements are promoted.
3308 if (MVT::isFloatingPoint(PTyLegalElementVT))
3309 Elt = DAG.getNode(ISD::FP_EXTEND, PTyLegalElementVT, Elt);
3310 else
3311 Elt = DAG.getNode(ISD::ANY_EXTEND, PTyLegalElementVT, Elt);
3312 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3313 } else {
3314 // Elements are expanded.
3315 // The src value is expanded into multiple registers.
3316 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
3317 Elt, DAG.getConstant(0, MVT::i32));
3318 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
3319 Elt, DAG.getConstant(1, MVT::i32));
3320 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Lo));
3321 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Hi));
3322 }
Chris Lattner1c6191f2006-03-21 19:20:37 +00003323 }
Chris Lattner70c2a612006-03-31 02:06:56 +00003324 return DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003325 } else if (SrcVT < DestVT) {
3326 // The src value is promoted to the register.
Chris Lattnerfae59b92005-08-17 06:06:25 +00003327 if (MVT::isFloatingPoint(SrcVT))
3328 Op = DAG.getNode(ISD::FP_EXTEND, DestVT, Op);
3329 else
Chris Lattnerfab08872005-09-02 00:19:37 +00003330 Op = DAG.getNode(ISD::ANY_EXTEND, DestVT, Op);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003331 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
3332 } else {
3333 // The src value is expanded into multiple registers.
3334 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
3335 Op, DAG.getConstant(0, MVT::i32));
3336 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
3337 Op, DAG.getConstant(1, MVT::i32));
3338 Op = DAG.getCopyToReg(SDL.getRoot(), Reg, Lo);
3339 return DAG.getCopyToReg(Op, Reg+1, Hi);
3340 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003341}
3342
Chris Lattner068a81e2005-01-17 17:15:02 +00003343void SelectionDAGISel::
3344LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL,
3345 std::vector<SDOperand> &UnorderedChains) {
3346 // If this is the entry block, emit arguments.
3347 Function &F = *BB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00003348 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattnerbf209482005-10-30 19:42:35 +00003349 SDOperand OldRoot = SDL.DAG.getRoot();
3350 std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
Chris Lattner068a81e2005-01-17 17:15:02 +00003351
Chris Lattnerbf209482005-10-30 19:42:35 +00003352 unsigned a = 0;
3353 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
3354 AI != E; ++AI, ++a)
3355 if (!AI->use_empty()) {
3356 SDL.setValue(AI, Args[a]);
Evan Chengf7179bb2006-04-27 08:29:42 +00003357
Chris Lattnerbf209482005-10-30 19:42:35 +00003358 // If this argument is live outside of the entry block, insert a copy from
3359 // whereever we got it to the vreg that other BB's will reference it as.
3360 if (FuncInfo.ValueMap.count(AI)) {
3361 SDOperand Copy =
3362 CopyValueToVirtualRegister(SDL, AI, FuncInfo.ValueMap[AI]);
3363 UnorderedChains.push_back(Copy);
3364 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00003365 }
Chris Lattnerbf209482005-10-30 19:42:35 +00003366
Chris Lattnerbf209482005-10-30 19:42:35 +00003367 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner96645412006-05-16 06:10:58 +00003368 // FIXME: this should insert code into the DAG!
Chris Lattnerbf209482005-10-30 19:42:35 +00003369 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00003370}
3371
Chris Lattner1c08c712005-01-07 07:47:53 +00003372void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
3373 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00003374 FunctionLoweringInfo &FuncInfo) {
Chris Lattner1c08c712005-01-07 07:47:53 +00003375 SelectionDAGLowering SDL(DAG, TLI, FuncInfo);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003376
3377 std::vector<SDOperand> UnorderedChains;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003378
Chris Lattnerbf209482005-10-30 19:42:35 +00003379 // Lower any arguments needed in this block if this is the entry block.
3380 if (LLVMBB == &LLVMBB->getParent()->front())
3381 LowerArguments(LLVMBB, SDL, UnorderedChains);
Chris Lattner1c08c712005-01-07 07:47:53 +00003382
3383 BB = FuncInfo.MBBMap[LLVMBB];
3384 SDL.setCurrentBasicBlock(BB);
3385
3386 // Lower all of the non-terminator instructions.
3387 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
3388 I != E; ++I)
3389 SDL.visit(*I);
Nate Begemanf15485a2006-03-27 01:32:24 +00003390
Chris Lattner1c08c712005-01-07 07:47:53 +00003391 // Ensure that all instructions which are used outside of their defining
3392 // blocks are available as virtual registers.
3393 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Chris Lattnerf1fdaca2005-01-11 22:03:46 +00003394 if (!I->use_empty() && !isa<PHINode>(I)) {
Chris Lattneree749d72005-01-09 01:16:24 +00003395 std::map<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00003396 if (VMI != FuncInfo.ValueMap.end())
Chris Lattnerddb870b2005-01-13 17:59:43 +00003397 UnorderedChains.push_back(
3398 CopyValueToVirtualRegister(SDL, I, VMI->second));
Chris Lattner1c08c712005-01-07 07:47:53 +00003399 }
3400
3401 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
3402 // ensure constants are generated when needed. Remember the virtual registers
3403 // that need to be added to the Machine PHI nodes as input. We cannot just
3404 // directly add them, because expansion might result in multiple MBB's for one
3405 // BB. As such, the start of the BB might correspond to a different MBB than
3406 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00003407 //
Chris Lattner1c08c712005-01-07 07:47:53 +00003408
3409 // Emit constants only once even if used by multiple PHI nodes.
3410 std::map<Constant*, unsigned> ConstantsOut;
3411
3412 // Check successor nodes PHI nodes that expect a constant to be available from
3413 // this block.
3414 TerminatorInst *TI = LLVMBB->getTerminator();
3415 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
3416 BasicBlock *SuccBB = TI->getSuccessor(succ);
3417 MachineBasicBlock::iterator MBBI = FuncInfo.MBBMap[SuccBB]->begin();
3418 PHINode *PN;
3419
3420 // At this point we know that there is a 1-1 correspondence between LLVM PHI
3421 // nodes and Machine PHI nodes, but the incoming operands have not been
3422 // emitted yet.
3423 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattnerf44fd882005-01-07 21:34:19 +00003424 (PN = dyn_cast<PHINode>(I)); ++I)
3425 if (!PN->use_empty()) {
3426 unsigned Reg;
3427 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
3428 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
3429 unsigned &RegOut = ConstantsOut[C];
3430 if (RegOut == 0) {
3431 RegOut = FuncInfo.CreateRegForValue(C);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003432 UnorderedChains.push_back(
3433 CopyValueToVirtualRegister(SDL, C, RegOut));
Chris Lattnerf44fd882005-01-07 21:34:19 +00003434 }
3435 Reg = RegOut;
3436 } else {
3437 Reg = FuncInfo.ValueMap[PHIOp];
Chris Lattneree749d72005-01-09 01:16:24 +00003438 if (Reg == 0) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003439 assert(isa<AllocaInst>(PHIOp) &&
Chris Lattneree749d72005-01-09 01:16:24 +00003440 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
3441 "Didn't codegen value into a register!??");
3442 Reg = FuncInfo.CreateRegForValue(PHIOp);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003443 UnorderedChains.push_back(
3444 CopyValueToVirtualRegister(SDL, PHIOp, Reg));
Chris Lattneree749d72005-01-09 01:16:24 +00003445 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003446 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003447
Chris Lattnerf44fd882005-01-07 21:34:19 +00003448 // Remember that this register needs to added to the machine PHI node as
3449 // the input for this MBB.
Chris Lattner7e021512006-03-31 02:12:18 +00003450 MVT::ValueType VT = TLI.getValueType(PN->getType());
3451 unsigned NumElements;
3452 if (VT != MVT::Vector)
3453 NumElements = TLI.getNumElements(VT);
3454 else {
3455 MVT::ValueType VT1,VT2;
3456 NumElements =
3457 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
3458 VT1, VT2);
3459 }
Chris Lattnerf44fd882005-01-07 21:34:19 +00003460 for (unsigned i = 0, e = NumElements; i != e; ++i)
3461 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
Chris Lattner1c08c712005-01-07 07:47:53 +00003462 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003463 }
3464 ConstantsOut.clear();
3465
Chris Lattnerddb870b2005-01-13 17:59:43 +00003466 // Turn all of the unordered chains into one factored node.
Chris Lattner5a6c6d92005-01-13 19:53:14 +00003467 if (!UnorderedChains.empty()) {
Chris Lattner7436b572005-11-09 05:03:03 +00003468 SDOperand Root = SDL.getRoot();
3469 if (Root.getOpcode() != ISD::EntryToken) {
3470 unsigned i = 0, e = UnorderedChains.size();
3471 for (; i != e; ++i) {
3472 assert(UnorderedChains[i].Val->getNumOperands() > 1);
3473 if (UnorderedChains[i].Val->getOperand(0) == Root)
3474 break; // Don't add the root if we already indirectly depend on it.
3475 }
3476
3477 if (i == e)
3478 UnorderedChains.push_back(Root);
3479 }
Chris Lattnerddb870b2005-01-13 17:59:43 +00003480 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, UnorderedChains));
3481 }
3482
Chris Lattner1c08c712005-01-07 07:47:53 +00003483 // Lower the terminator after the copies are emitted.
3484 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00003485
Nate Begemanf15485a2006-03-27 01:32:24 +00003486 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00003487 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00003488 SwitchCases.clear();
3489 SwitchCases = SDL.SwitchCases;
Nate Begeman37efe672006-04-22 18:53:45 +00003490 JT = SDL.JT;
Nate Begemanf15485a2006-03-27 01:32:24 +00003491
Chris Lattnera651cf62005-01-17 19:43:36 +00003492 // Make sure the root of the DAG is up-to-date.
3493 DAG.setRoot(SDL.getRoot());
Chris Lattner1c08c712005-01-07 07:47:53 +00003494}
3495
Nate Begemanf15485a2006-03-27 01:32:24 +00003496void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Chris Lattneraf21d552005-10-10 16:47:10 +00003497 // Run the DAG combiner in pre-legalize mode.
3498 DAG.Combine(false);
Nate Begeman2300f552005-09-07 00:15:36 +00003499
Chris Lattner1c08c712005-01-07 07:47:53 +00003500 DEBUG(std::cerr << "Lowered selection DAG:\n");
3501 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003502
Chris Lattner1c08c712005-01-07 07:47:53 +00003503 // Second step, hack on the DAG until it only uses operations and types that
3504 // the target supports.
Chris Lattnerac9dc082005-01-23 04:36:26 +00003505 DAG.Legalize();
Nate Begemanf15485a2006-03-27 01:32:24 +00003506
Chris Lattner1c08c712005-01-07 07:47:53 +00003507 DEBUG(std::cerr << "Legalized selection DAG:\n");
3508 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003509
Chris Lattneraf21d552005-10-10 16:47:10 +00003510 // Run the DAG combiner in post-legalize mode.
3511 DAG.Combine(true);
Nate Begeman2300f552005-09-07 00:15:36 +00003512
Evan Chenga9c20912006-01-21 02:32:06 +00003513 if (ViewISelDAGs) DAG.viewGraph();
Evan Cheng552c4a82006-04-28 02:09:19 +00003514
Chris Lattnera33ef482005-03-30 01:10:47 +00003515 // Third, instruction select all of the operations to machine code, adding the
3516 // code to the MachineBasicBlock.
Chris Lattner1c08c712005-01-07 07:47:53 +00003517 InstructionSelectBasicBlock(DAG);
Nate Begemanf15485a2006-03-27 01:32:24 +00003518
Chris Lattner1c08c712005-01-07 07:47:53 +00003519 DEBUG(std::cerr << "Selected machine code:\n");
3520 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003521}
Chris Lattner1c08c712005-01-07 07:47:53 +00003522
Nate Begemanf15485a2006-03-27 01:32:24 +00003523void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
3524 FunctionLoweringInfo &FuncInfo) {
3525 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
3526 {
3527 SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3528 CurDAG = &DAG;
3529
3530 // First step, lower LLVM code to some DAG. This DAG may use operations and
3531 // types that are not supported by the target.
3532 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
3533
3534 // Second step, emit the lowered DAG as machine code.
3535 CodeGenAndEmitDAG(DAG);
3536 }
3537
Chris Lattnera33ef482005-03-30 01:10:47 +00003538 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +00003539 // PHI nodes in successors.
Nate Begeman37efe672006-04-22 18:53:45 +00003540 if (SwitchCases.empty() && JT.Reg == 0) {
Nate Begemanf15485a2006-03-27 01:32:24 +00003541 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
3542 MachineInstr *PHI = PHINodesToUpdate[i].first;
3543 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3544 "This is not a machine PHI node that we are updating!");
3545 PHI->addRegOperand(PHINodesToUpdate[i].second);
3546 PHI->addMachineBasicBlockOperand(BB);
3547 }
3548 return;
Chris Lattner1c08c712005-01-07 07:47:53 +00003549 }
Nate Begemanf15485a2006-03-27 01:32:24 +00003550
Nate Begeman9453eea2006-04-23 06:26:20 +00003551 // If the JumpTable record is filled in, then we need to emit a jump table.
3552 // Updating the PHI nodes is tricky in this case, since we need to determine
3553 // whether the PHI is a successor of the range check MBB or the jump table MBB
Nate Begeman37efe672006-04-22 18:53:45 +00003554 if (JT.Reg) {
3555 assert(SwitchCases.empty() && "Cannot have jump table and lowered switch");
3556 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3557 CurDAG = &SDAG;
3558 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
Nate Begeman9453eea2006-04-23 06:26:20 +00003559 MachineBasicBlock *RangeBB = BB;
Nate Begeman37efe672006-04-22 18:53:45 +00003560 // Set the current basic block to the mbb we wish to insert the code into
3561 BB = JT.MBB;
3562 SDL.setCurrentBasicBlock(BB);
3563 // Emit the code
3564 SDL.visitJumpTable(JT);
3565 SDAG.setRoot(SDL.getRoot());
3566 CodeGenAndEmitDAG(SDAG);
3567 // Update PHI Nodes
3568 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3569 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3570 MachineBasicBlock *PHIBB = PHI->getParent();
3571 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3572 "This is not a machine PHI node that we are updating!");
Nate Begemanf4360a42006-05-03 03:48:02 +00003573 if (PHIBB == JT.Default) {
Nate Begeman37efe672006-04-22 18:53:45 +00003574 PHI->addRegOperand(PHINodesToUpdate[pi].second);
Nate Begemanf4360a42006-05-03 03:48:02 +00003575 PHI->addMachineBasicBlockOperand(RangeBB);
3576 }
3577 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
3578 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3579 PHI->addMachineBasicBlockOperand(BB);
Nate Begeman37efe672006-04-22 18:53:45 +00003580 }
3581 }
3582 return;
3583 }
3584
Nate Begemanf15485a2006-03-27 01:32:24 +00003585 // If we generated any switch lowering information, build and codegen any
3586 // additional DAGs necessary.
3587 for(unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
3588 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3589 CurDAG = &SDAG;
3590 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
3591 // Set the current basic block to the mbb we wish to insert the code into
3592 BB = SwitchCases[i].ThisBB;
3593 SDL.setCurrentBasicBlock(BB);
3594 // Emit the code
3595 SDL.visitSwitchCase(SwitchCases[i]);
3596 SDAG.setRoot(SDL.getRoot());
3597 CodeGenAndEmitDAG(SDAG);
3598 // Iterate over the phi nodes, if there is a phi node in a successor of this
3599 // block (for instance, the default block), then add a pair of operands to
3600 // the phi node for this block, as if we were coming from the original
3601 // BB before switch expansion.
3602 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3603 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3604 MachineBasicBlock *PHIBB = PHI->getParent();
3605 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3606 "This is not a machine PHI node that we are updating!");
3607 if (PHIBB == SwitchCases[i].LHSBB || PHIBB == SwitchCases[i].RHSBB) {
3608 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3609 PHI->addMachineBasicBlockOperand(BB);
3610 }
3611 }
Chris Lattnera33ef482005-03-30 01:10:47 +00003612 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003613}
Evan Chenga9c20912006-01-21 02:32:06 +00003614
3615//===----------------------------------------------------------------------===//
3616/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
3617/// target node in the graph.
3618void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
3619 if (ViewSchedDAGs) DAG.viewGraph();
Evan Cheng4ef10862006-01-23 07:01:07 +00003620 ScheduleDAG *SL = NULL;
3621
3622 switch (ISHeuristic) {
3623 default: assert(0 && "Unrecognized scheduling heuristic");
Evan Chengee00a1d2006-05-13 05:53:47 +00003624 case defaultScheduling:
Evan Cheng3f239522006-01-25 09:12:57 +00003625 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency)
Chris Lattner4a1cd9c2006-04-21 17:16:16 +00003626 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
3627 else {
3628 assert(TLI.getSchedulingPreference() ==
3629 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Evan Cheng3f239522006-01-25 09:12:57 +00003630 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattner4a1cd9c2006-04-21 17:16:16 +00003631 }
Evan Cheng3f239522006-01-25 09:12:57 +00003632 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003633 case noScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003634 SL = createBFS_DAGScheduler(DAG, BB);
3635 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003636 case simpleScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003637 SL = createSimpleDAGScheduler(false, DAG, BB);
3638 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003639 case simpleNoItinScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003640 SL = createSimpleDAGScheduler(true, DAG, BB);
Evan Cheng4ef10862006-01-23 07:01:07 +00003641 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003642 case listSchedulingBURR:
Evan Chengf0f9c902006-01-23 08:26:10 +00003643 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattnera5de4842006-03-05 21:10:33 +00003644 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003645 case listSchedulingTDRR:
Evan Chenge165a782006-05-11 23:55:42 +00003646 SL = createTDRRListDAGScheduler(DAG, BB);
3647 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003648 case listSchedulingTD:
Chris Lattnerb0d21ef2006-03-08 04:25:59 +00003649 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
Chris Lattnera5de4842006-03-05 21:10:33 +00003650 break;
Evan Cheng4ef10862006-01-23 07:01:07 +00003651 }
Chris Lattnera3818e62006-01-21 19:12:11 +00003652 BB = SL->Run();
Evan Chengcccf1232006-02-04 06:49:00 +00003653 delete SL;
Evan Chenga9c20912006-01-21 02:32:06 +00003654}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003655
Chris Lattnerb0d21ef2006-03-08 04:25:59 +00003656HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
3657 return new HazardRecognizer();
Chris Lattner03fc53c2006-03-06 00:22:00 +00003658}
3659
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003660/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
3661/// by tblgen. Others should not call it.
3662void SelectionDAGISel::
3663SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
3664 std::vector<SDOperand> InOps;
3665 std::swap(InOps, Ops);
3666
3667 Ops.push_back(InOps[0]); // input chain.
3668 Ops.push_back(InOps[1]); // input asm string.
3669
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003670 unsigned i = 2, e = InOps.size();
3671 if (InOps[e-1].getValueType() == MVT::Flag)
3672 --e; // Don't process a flag operand if it is here.
3673
3674 while (i != e) {
3675 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
3676 if ((Flags & 7) != 4 /*MEM*/) {
3677 // Just skip over this operand, copying the operands verbatim.
3678 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
3679 i += (Flags >> 3) + 1;
3680 } else {
3681 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
3682 // Otherwise, this is a memory operand. Ask the target to select it.
3683 std::vector<SDOperand> SelOps;
3684 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
3685 std::cerr << "Could not match memory address. Inline asm failure!\n";
3686 exit(1);
3687 }
3688
3689 // Add this to the output node.
3690 Ops.push_back(DAG.getConstant(4/*MEM*/ | (SelOps.size() << 3), MVT::i32));
3691 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
3692 i += 2;
3693 }
3694 }
3695
3696 // Add the flag input back if present.
3697 if (e != InOps.size())
3698 Ops.push_back(InOps.back());
3699}