blob: 1c8714d7d3e8e2caa23e5fa47397aa5273854174 [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)));
Chris Lattnera3bb86d2006-06-12 18:25:29 +0000872 CurMBB->addSuccessor(DefaultMBB);
Nate Begemanf15485a2006-03-27 01:32:24 +0000873 return;
874 }
875
876 // If there are any non-default case statements, create a vector of Cases
877 // representing each one, and sort the vector so that we can efficiently
878 // create a binary search tree from them.
879 std::vector<Case> Cases;
880 for (unsigned i = 1; i < I.getNumSuccessors(); ++i) {
881 MachineBasicBlock *SMBB = FuncInfo.MBBMap[I.getSuccessor(i)];
882 Cases.push_back(Case(I.getSuccessorValue(i), SMBB));
883 }
884 std::sort(Cases.begin(), Cases.end(), CaseCmp());
885
886 // Get the Value to be switched on and default basic blocks, which will be
887 // inserted into CaseBlock records, representing basic blocks in the binary
888 // search tree.
889 Value *SV = I.getOperand(0);
890 MachineBasicBlock *Default = FuncInfo.MBBMap[I.getDefaultDest()];
Nate Begeman37efe672006-04-22 18:53:45 +0000891
892 // Get the MachineFunction which holds the current MBB. This is used during
893 // emission of jump tables, and when inserting any additional MBBs necessary
894 // to represent the switch.
Nate Begemanf15485a2006-03-27 01:32:24 +0000895 MachineFunction *CurMF = CurMBB->getParent();
896 const BasicBlock *LLVMBB = CurMBB->getBasicBlock();
Nate Begeman37efe672006-04-22 18:53:45 +0000897 Reloc::Model Relocs = TLI.getTargetMachine().getRelocationModel();
898
Nate Begeman17c275f2006-05-08 16:51:36 +0000899 // If the switch has more than 5 blocks, and at least 31.25% dense, and the
900 // target supports indirect branches, then emit a jump table rather than
901 // lowering the switch to a binary tree of conditional branches.
Nate Begeman37efe672006-04-22 18:53:45 +0000902 // FIXME: Make this work with PIC code
Nate Begeman9453eea2006-04-23 06:26:20 +0000903 if (TLI.isOperationLegal(ISD::BRIND, TLI.getPointerTy()) &&
Nate Begeman37efe672006-04-22 18:53:45 +0000904 (Relocs == Reloc::Static || Relocs == Reloc::DynamicNoPIC) &&
Nate Begemanf4360a42006-05-03 03:48:02 +0000905 Cases.size() > 5) {
Nate Begeman37efe672006-04-22 18:53:45 +0000906 uint64_t First = cast<ConstantIntegral>(Cases.front().first)->getRawValue();
907 uint64_t Last = cast<ConstantIntegral>(Cases.back().first)->getRawValue();
Nate Begemanf4360a42006-05-03 03:48:02 +0000908 double Density = (double)Cases.size() / (double)((Last - First) + 1ULL);
909
Nate Begeman17c275f2006-05-08 16:51:36 +0000910 if (Density >= 0.3125) {
Nate Begeman37efe672006-04-22 18:53:45 +0000911 // Create a new basic block to hold the code for loading the address
912 // of the jump table, and jumping to it. Update successor information;
913 // we will either branch to the default case for the switch, or the jump
914 // table.
915 MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
916 CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
917 CurMBB->addSuccessor(Default);
918 CurMBB->addSuccessor(JumpTableBB);
919
920 // Subtract the lowest switch case value from the value being switched on
921 // and conditional branch to default mbb if the result is greater than the
922 // difference between smallest and largest cases.
923 SDOperand SwitchOp = getValue(SV);
924 MVT::ValueType VT = SwitchOp.getValueType();
925 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
926 DAG.getConstant(First, VT));
927
928 // The SDNode we just created, which holds the value being switched on
929 // minus the the smallest case value, needs to be copied to a virtual
930 // register so it can be used as an index into the jump table in a
931 // subsequent basic block. This value may be smaller or larger than the
932 // target's pointer type, and therefore require extension or truncating.
933 if (VT > TLI.getPointerTy())
934 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
935 else
936 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
937 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
938 SDOperand CopyTo = DAG.getCopyToReg(getRoot(), JumpTableReg, SwitchOp);
939
940 // Emit the range check for the jump table, and branch to the default
941 // block for the switch statement if the value being switched on exceeds
942 // the largest case in the switch.
943 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultTy(), SUB,
944 DAG.getConstant(Last-First,VT), ISD::SETUGT);
945 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
946 DAG.getBasicBlock(Default)));
947
Nate Begemanf4360a42006-05-03 03:48:02 +0000948 // Build a vector of destination BBs, corresponding to each target
949 // of the jump table. If the value of the jump table slot corresponds to
950 // a case statement, push the case's BB onto the vector, otherwise, push
951 // the default BB.
Nate Begeman37efe672006-04-22 18:53:45 +0000952 std::set<MachineBasicBlock*> UniqueBBs;
953 std::vector<MachineBasicBlock*> DestBBs;
Nate Begemanf4360a42006-05-03 03:48:02 +0000954 uint64_t TEI = First;
955 for (CaseItr ii = Cases.begin(), ee = Cases.end(); ii != ee; ++TEI) {
956 if (cast<ConstantIntegral>(ii->first)->getRawValue() == TEI) {
957 DestBBs.push_back(ii->second);
958 UniqueBBs.insert(ii->second);
959 ++ii;
960 } else {
961 DestBBs.push_back(Default);
962 UniqueBBs.insert(Default);
963 }
Nate Begeman37efe672006-04-22 18:53:45 +0000964 }
Nate Begemanf4360a42006-05-03 03:48:02 +0000965
966 // Update successor info
967 for (std::set<MachineBasicBlock*>::iterator ii = UniqueBBs.begin(),
968 ee = UniqueBBs.end(); ii != ee; ++ii)
969 JumpTableBB->addSuccessor(*ii);
970
971 // Create a jump table index for this jump table, or return an existing
972 // one.
Nate Begeman37efe672006-04-22 18:53:45 +0000973 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
974
975 // Set the jump table information so that we can codegen it as a second
976 // MachineBasicBlock
977 JT.Reg = JumpTableReg;
978 JT.JTI = JTI;
979 JT.MBB = JumpTableBB;
Nate Begeman9453eea2006-04-23 06:26:20 +0000980 JT.Default = Default;
Nate Begeman37efe672006-04-22 18:53:45 +0000981 return;
982 }
983 }
Nate Begemanf15485a2006-03-27 01:32:24 +0000984
985 // Push the initial CaseRec onto the worklist
986 std::vector<CaseRec> CaseVec;
987 CaseVec.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
988
989 while (!CaseVec.empty()) {
990 // Grab a record representing a case range to process off the worklist
991 CaseRec CR = CaseVec.back();
992 CaseVec.pop_back();
993
994 // Size is the number of Cases represented by this range. If Size is 1,
995 // then we are processing a leaf of the binary search tree. Otherwise,
996 // we need to pick a pivot, and push left and right ranges onto the
997 // worklist.
998 unsigned Size = CR.Range.second - CR.Range.first;
999
1000 if (Size == 1) {
1001 // Create a CaseBlock record representing a conditional branch to
1002 // the Case's target mbb if the value being switched on SV is equal
1003 // to C. Otherwise, branch to default.
1004 Constant *C = CR.Range.first->first;
1005 MachineBasicBlock *Target = CR.Range.first->second;
1006 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, SV, C, Target, Default,
1007 CR.CaseBB);
1008 // If the MBB representing the leaf node is the current MBB, then just
1009 // call visitSwitchCase to emit the code into the current block.
1010 // Otherwise, push the CaseBlock onto the vector to be later processed
1011 // by SDISel, and insert the node's MBB before the next MBB.
1012 if (CR.CaseBB == CurMBB)
1013 visitSwitchCase(CB);
1014 else {
1015 SwitchCases.push_back(CB);
1016 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1017 }
1018 } else {
1019 // split case range at pivot
1020 CaseItr Pivot = CR.Range.first + (Size / 2);
1021 CaseRange LHSR(CR.Range.first, Pivot);
1022 CaseRange RHSR(Pivot, CR.Range.second);
1023 Constant *C = Pivot->first;
1024 MachineBasicBlock *RHSBB = 0, *LHSBB = 0;
1025 // We know that we branch to the LHS if the Value being switched on is
1026 // less than the Pivot value, C. We use this to optimize our binary
1027 // tree a bit, by recognizing that if SV is greater than or equal to the
1028 // LHS's Case Value, and that Case Value is exactly one less than the
1029 // Pivot's Value, then we can branch directly to the LHS's Target,
1030 // rather than creating a leaf node for it.
1031 if ((LHSR.second - LHSR.first) == 1 &&
1032 LHSR.first->first == CR.GE &&
1033 cast<ConstantIntegral>(C)->getRawValue() ==
1034 (cast<ConstantIntegral>(CR.GE)->getRawValue() + 1ULL)) {
1035 LHSBB = LHSR.first->second;
1036 } else {
1037 LHSBB = new MachineBasicBlock(LLVMBB);
1038 CaseVec.push_back(CaseRec(LHSBB,C,CR.GE,LHSR));
1039 }
1040 // Similar to the optimization above, if the Value being switched on is
1041 // known to be less than the Constant CR.LT, and the current Case Value
1042 // is CR.LT - 1, then we can branch directly to the target block for
1043 // the current Case Value, rather than emitting a RHS leaf node for it.
1044 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
1045 cast<ConstantIntegral>(RHSR.first->first)->getRawValue() ==
1046 (cast<ConstantIntegral>(CR.LT)->getRawValue() - 1ULL)) {
1047 RHSBB = RHSR.first->second;
1048 } else {
1049 RHSBB = new MachineBasicBlock(LLVMBB);
1050 CaseVec.push_back(CaseRec(RHSBB,CR.LT,C,RHSR));
1051 }
1052 // Create a CaseBlock record representing a conditional branch to
1053 // the LHS node if the value being switched on SV is less than C.
1054 // Otherwise, branch to LHS.
1055 ISD::CondCode CC = C->getType()->isSigned() ? ISD::SETLT : ISD::SETULT;
1056 SelectionDAGISel::CaseBlock CB(CC, SV, C, LHSBB, RHSBB, CR.CaseBB);
1057 if (CR.CaseBB == CurMBB)
1058 visitSwitchCase(CB);
1059 else {
1060 SwitchCases.push_back(CB);
1061 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1062 }
1063 }
1064 }
1065}
1066
Chris Lattnerb9fccc42005-04-02 05:04:50 +00001067void SelectionDAGLowering::visitSub(User &I) {
1068 // -0.0 - X --> fneg
Chris Lattner01b3d732005-09-28 22:28:18 +00001069 if (I.getType()->isFloatingPoint()) {
1070 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
1071 if (CFP->isExactlyValue(-0.0)) {
1072 SDOperand Op2 = getValue(I.getOperand(1));
1073 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
1074 return;
1075 }
Chris Lattner01b3d732005-09-28 22:28:18 +00001076 }
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001077 visitBinary(I, ISD::SUB, ISD::FSUB, ISD::VSUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00001078}
1079
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001080void SelectionDAGLowering::visitBinary(User &I, unsigned IntOp, unsigned FPOp,
1081 unsigned VecOp) {
1082 const Type *Ty = I.getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00001083 SDOperand Op1 = getValue(I.getOperand(0));
1084 SDOperand Op2 = getValue(I.getOperand(1));
Chris Lattner2c49f272005-01-19 22:31:21 +00001085
Chris Lattnerb67eb912005-11-19 18:40:42 +00001086 if (Ty->isIntegral()) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001087 setValue(&I, DAG.getNode(IntOp, Op1.getValueType(), Op1, Op2));
1088 } else if (Ty->isFloatingPoint()) {
1089 setValue(&I, DAG.getNode(FPOp, Op1.getValueType(), Op1, Op2));
1090 } else {
1091 const PackedType *PTy = cast<PackedType>(Ty);
Chris Lattnerc7029802006-03-18 01:44:44 +00001092 SDOperand Num = DAG.getConstant(PTy->getNumElements(), MVT::i32);
1093 SDOperand Typ = DAG.getValueType(TLI.getValueType(PTy->getElementType()));
1094 setValue(&I, DAG.getNode(VecOp, MVT::Vector, Op1, Op2, Num, Typ));
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001095 }
Nate Begemane21ea612005-11-18 07:42:56 +00001096}
Chris Lattner2c49f272005-01-19 22:31:21 +00001097
Nate Begemane21ea612005-11-18 07:42:56 +00001098void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
1099 SDOperand Op1 = getValue(I.getOperand(0));
1100 SDOperand Op2 = getValue(I.getOperand(1));
1101
1102 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
1103
Chris Lattner1c08c712005-01-07 07:47:53 +00001104 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
1105}
1106
1107void SelectionDAGLowering::visitSetCC(User &I,ISD::CondCode SignedOpcode,
Evan Chengf6f95812006-05-23 06:40:47 +00001108 ISD::CondCode UnsignedOpcode,
1109 ISD::CondCode FPOpcode) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001110 SDOperand Op1 = getValue(I.getOperand(0));
1111 SDOperand Op2 = getValue(I.getOperand(1));
1112 ISD::CondCode Opcode = SignedOpcode;
Evan Cheng80235d52006-05-23 18:18:46 +00001113 if (!FiniteOnlyFPMath() && I.getOperand(0)->getType()->isFloatingPoint())
Evan Chengf6f95812006-05-23 06:40:47 +00001114 Opcode = FPOpcode;
1115 else if (I.getOperand(0)->getType()->isUnsigned())
Chris Lattner1c08c712005-01-07 07:47:53 +00001116 Opcode = UnsignedOpcode;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001117 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
Chris Lattner1c08c712005-01-07 07:47:53 +00001118}
1119
1120void SelectionDAGLowering::visitSelect(User &I) {
1121 SDOperand Cond = getValue(I.getOperand(0));
1122 SDOperand TrueVal = getValue(I.getOperand(1));
1123 SDOperand FalseVal = getValue(I.getOperand(2));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00001124 if (!isa<PackedType>(I.getType())) {
1125 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
1126 TrueVal, FalseVal));
1127 } else {
1128 setValue(&I, DAG.getNode(ISD::VSELECT, MVT::Vector, Cond, TrueVal, FalseVal,
1129 *(TrueVal.Val->op_end()-2),
1130 *(TrueVal.Val->op_end()-1)));
1131 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001132}
1133
1134void SelectionDAGLowering::visitCast(User &I) {
1135 SDOperand N = getValue(I.getOperand(0));
Chris Lattnere25ca692006-03-22 20:09:35 +00001136 MVT::ValueType SrcVT = N.getValueType();
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001137 MVT::ValueType DestVT = TLI.getValueType(I.getType());
Chris Lattner1c08c712005-01-07 07:47:53 +00001138
Chris Lattnere25ca692006-03-22 20:09:35 +00001139 if (DestVT == MVT::Vector) {
1140 // This is a cast to a vector from something else. This is always a bit
1141 // convert. Get information about the input vector.
1142 const PackedType *DestTy = cast<PackedType>(I.getType());
1143 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1144 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N,
1145 DAG.getConstant(DestTy->getNumElements(),MVT::i32),
1146 DAG.getValueType(EltVT)));
1147 } else if (SrcVT == DestVT) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001148 setValue(&I, N); // noop cast.
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001149 } else if (DestVT == MVT::i1) {
Chris Lattneref311aa2005-05-09 22:17:13 +00001150 // Cast to bool is a comparison against zero, not truncation to zero.
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001151 SDOperand Zero = isInteger(SrcVT) ? DAG.getConstant(0, N.getValueType()) :
Chris Lattneref311aa2005-05-09 22:17:13 +00001152 DAG.getConstantFP(0.0, N.getValueType());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001153 setValue(&I, DAG.getSetCC(MVT::i1, N, Zero, ISD::SETNE));
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001154 } else if (isInteger(SrcVT)) {
1155 if (isInteger(DestVT)) { // Int -> Int cast
1156 if (DestVT < SrcVT) // Truncating cast?
1157 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001158 else if (I.getOperand(0)->getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001159 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001160 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001161 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
Chris Lattner7e358902006-03-22 22:20:49 +00001162 } else if (isFloatingPoint(DestVT)) { // Int -> FP cast
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001163 if (I.getOperand(0)->getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001164 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001165 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001166 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001167 } else {
1168 assert(0 && "Unknown cast!");
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001169 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001170 } else if (isFloatingPoint(SrcVT)) {
1171 if (isFloatingPoint(DestVT)) { // FP -> FP cast
1172 if (DestVT < SrcVT) // Rounding cast?
1173 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001174 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001175 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001176 } else if (isInteger(DestVT)) { // FP -> Int cast.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001177 if (I.getType()->isSigned())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001178 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001179 else
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001180 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
Chris Lattnere25ca692006-03-22 20:09:35 +00001181 } else {
1182 assert(0 && "Unknown cast!");
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001183 }
1184 } else {
Chris Lattnere25ca692006-03-22 20:09:35 +00001185 assert(SrcVT == MVT::Vector && "Unknown cast!");
1186 assert(DestVT != MVT::Vector && "Casts to vector already handled!");
1187 // This is a cast from a vector to something else. This is always a bit
1188 // convert. Get information about the input vector.
1189 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N));
Chris Lattner1c08c712005-01-07 07:47:53 +00001190 }
1191}
1192
Chris Lattner2bbd8102006-03-29 00:11:43 +00001193void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattnerc7029802006-03-18 01:44:44 +00001194 SDOperand InVec = getValue(I.getOperand(0));
1195 SDOperand InVal = getValue(I.getOperand(1));
1196 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1197 getValue(I.getOperand(2)));
1198
Chris Lattner2332b9f2006-03-19 01:17:20 +00001199 SDOperand Num = *(InVec.Val->op_end()-2);
1200 SDOperand Typ = *(InVec.Val->op_end()-1);
1201 setValue(&I, DAG.getNode(ISD::VINSERT_VECTOR_ELT, MVT::Vector,
1202 InVec, InVal, InIdx, Num, Typ));
Chris Lattnerc7029802006-03-18 01:44:44 +00001203}
1204
Chris Lattner2bbd8102006-03-29 00:11:43 +00001205void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner384504c2006-03-21 20:44:12 +00001206 SDOperand InVec = getValue(I.getOperand(0));
1207 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1208 getValue(I.getOperand(1)));
1209 SDOperand Typ = *(InVec.Val->op_end()-1);
1210 setValue(&I, DAG.getNode(ISD::VEXTRACT_VECTOR_ELT,
1211 TLI.getValueType(I.getType()), InVec, InIdx));
1212}
Chris Lattnerc7029802006-03-18 01:44:44 +00001213
Chris Lattner3e104b12006-04-08 04:15:24 +00001214void SelectionDAGLowering::visitShuffleVector(User &I) {
1215 SDOperand V1 = getValue(I.getOperand(0));
1216 SDOperand V2 = getValue(I.getOperand(1));
1217 SDOperand Mask = getValue(I.getOperand(2));
1218
1219 SDOperand Num = *(V1.Val->op_end()-2);
1220 SDOperand Typ = *(V2.Val->op_end()-1);
1221 setValue(&I, DAG.getNode(ISD::VVECTOR_SHUFFLE, MVT::Vector,
1222 V1, V2, Mask, Num, Typ));
1223}
1224
1225
Chris Lattner1c08c712005-01-07 07:47:53 +00001226void SelectionDAGLowering::visitGetElementPtr(User &I) {
1227 SDOperand N = getValue(I.getOperand(0));
1228 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00001229
1230 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
1231 OI != E; ++OI) {
1232 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00001233 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Chris Lattner1c08c712005-01-07 07:47:53 +00001234 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
1235 if (Field) {
1236 // N = N + Offset
Owen Andersona69571c2006-05-03 01:29:57 +00001237 uint64_t Offset = TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattner1c08c712005-01-07 07:47:53 +00001238 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001239 getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00001240 }
1241 Ty = StTy->getElementType(Field);
1242 } else {
1243 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00001244
Chris Lattner7c0104b2005-11-09 04:45:33 +00001245 // If this is a constant subscript, handle it quickly.
1246 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
1247 if (CI->getRawValue() == 0) continue;
Chris Lattner7cc47772005-01-07 21:56:57 +00001248
Chris Lattner7c0104b2005-11-09 04:45:33 +00001249 uint64_t Offs;
1250 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Andersona69571c2006-05-03 01:29:57 +00001251 Offs = (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattner7c0104b2005-11-09 04:45:33 +00001252 else
Owen Andersona69571c2006-05-03 01:29:57 +00001253 Offs = TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattner7c0104b2005-11-09 04:45:33 +00001254 N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs));
1255 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00001256 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00001257
1258 // N = N + Idx * ElementSize;
Owen Andersona69571c2006-05-03 01:29:57 +00001259 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattner7c0104b2005-11-09 04:45:33 +00001260 SDOperand IdxN = getValue(Idx);
1261
1262 // If the index is smaller or larger than intptr_t, truncate or extend
1263 // it.
1264 if (IdxN.getValueType() < N.getValueType()) {
1265 if (Idx->getType()->isSigned())
1266 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
1267 else
1268 IdxN = DAG.getNode(ISD::ZERO_EXTEND, N.getValueType(), IdxN);
1269 } else if (IdxN.getValueType() > N.getValueType())
1270 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
1271
1272 // If this is a multiply by a power of two, turn it into a shl
1273 // immediately. This is a very common case.
1274 if (isPowerOf2_64(ElementSize)) {
1275 unsigned Amt = Log2_64(ElementSize);
1276 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00001277 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00001278 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
1279 continue;
1280 }
1281
1282 SDOperand Scale = getIntPtrConstant(ElementSize);
1283 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
1284 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00001285 }
1286 }
1287 setValue(&I, N);
1288}
1289
1290void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
1291 // If this is a fixed sized alloca in the entry block of the function,
1292 // allocate it statically on the stack.
1293 if (FuncInfo.StaticAllocaMap.count(&I))
1294 return; // getValue will auto-populate this.
1295
1296 const Type *Ty = I.getAllocatedType();
Owen Andersona69571c2006-05-03 01:29:57 +00001297 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
1298 unsigned Align = std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +00001299 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00001300
1301 SDOperand AllocSize = getValue(I.getArraySize());
Chris Lattner68cd65e2005-01-22 23:04:37 +00001302 MVT::ValueType IntPtr = TLI.getPointerTy();
1303 if (IntPtr < AllocSize.getValueType())
1304 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
1305 else if (IntPtr > AllocSize.getValueType())
1306 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00001307
Chris Lattner68cd65e2005-01-22 23:04:37 +00001308 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner1c08c712005-01-07 07:47:53 +00001309 getIntPtrConstant(TySize));
1310
1311 // Handle alignment. If the requested alignment is less than or equal to the
1312 // stack alignment, ignore it and round the size of the allocation up to the
1313 // stack alignment size. If the size is greater than the stack alignment, we
1314 // note this in the DYNAMIC_STACKALLOC node.
1315 unsigned StackAlign =
1316 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1317 if (Align <= StackAlign) {
1318 Align = 0;
1319 // Add SA-1 to the size.
1320 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
1321 getIntPtrConstant(StackAlign-1));
1322 // Mask out the low bits for alignment purposes.
1323 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
1324 getIntPtrConstant(~(uint64_t)(StackAlign-1)));
1325 }
1326
Chris Lattneradf6c2a2005-05-14 07:29:57 +00001327 std::vector<MVT::ValueType> VTs;
1328 VTs.push_back(AllocSize.getValueType());
1329 VTs.push_back(MVT::Other);
1330 std::vector<SDOperand> Ops;
1331 Ops.push_back(getRoot());
1332 Ops.push_back(AllocSize);
1333 Ops.push_back(getIntPtrConstant(Align));
1334 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, Ops);
Chris Lattner1c08c712005-01-07 07:47:53 +00001335 DAG.setRoot(setValue(&I, DSA).getValue(1));
1336
1337 // Inform the Frame Information that we have just allocated a variable-sized
1338 // object.
1339 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
1340}
1341
Chris Lattner1c08c712005-01-07 07:47:53 +00001342void SelectionDAGLowering::visitLoad(LoadInst &I) {
1343 SDOperand Ptr = getValue(I.getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00001344
Chris Lattnerd3948112005-01-17 22:19:26 +00001345 SDOperand Root;
1346 if (I.isVolatile())
1347 Root = getRoot();
1348 else {
1349 // Do not serialize non-volatile loads against each other.
1350 Root = DAG.getRoot();
1351 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001352
1353 setValue(&I, getLoadFrom(I.getType(), Ptr, DAG.getSrcValue(I.getOperand(0)),
1354 Root, I.isVolatile()));
1355}
1356
1357SDOperand SelectionDAGLowering::getLoadFrom(const Type *Ty, SDOperand Ptr,
1358 SDOperand SrcValue, SDOperand Root,
1359 bool isVolatile) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001360 SDOperand L;
Nate Begeman8cfa57b2005-12-06 06:18:55 +00001361 if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
Nate Begeman4ef3b812005-11-22 01:29:36 +00001362 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattnerc7029802006-03-18 01:44:44 +00001363 L = DAG.getVecLoad(PTy->getNumElements(), PVT, Root, Ptr, SrcValue);
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001364 } else {
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001365 L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SrcValue);
Nate Begeman5fbb5d22005-11-19 00:36:38 +00001366 }
Chris Lattnerd3948112005-01-17 22:19:26 +00001367
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001368 if (isVolatile)
Chris Lattnerd3948112005-01-17 22:19:26 +00001369 DAG.setRoot(L.getValue(1));
1370 else
1371 PendingLoads.push_back(L.getValue(1));
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001372
1373 return L;
Chris Lattner1c08c712005-01-07 07:47:53 +00001374}
1375
1376
1377void SelectionDAGLowering::visitStore(StoreInst &I) {
1378 Value *SrcV = I.getOperand(0);
1379 SDOperand Src = getValue(SrcV);
1380 SDOperand Ptr = getValue(I.getOperand(1));
Chris Lattner369e6db2005-05-09 04:08:33 +00001381 DAG.setRoot(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Src, Ptr,
Andrew Lenharth06ef8842005-06-29 18:54:02 +00001382 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00001383}
1384
Chris Lattner0eade312006-03-24 02:22:33 +00001385/// IntrinsicCannotAccessMemory - Return true if the specified intrinsic cannot
1386/// access memory and has no other side effects at all.
1387static bool IntrinsicCannotAccessMemory(unsigned IntrinsicID) {
1388#define GET_NO_MEMORY_INTRINSICS
1389#include "llvm/Intrinsics.gen"
1390#undef GET_NO_MEMORY_INTRINSICS
1391 return false;
1392}
1393
Chris Lattnere58a7802006-04-02 03:41:14 +00001394// IntrinsicOnlyReadsMemory - Return true if the specified intrinsic doesn't
1395// have any side-effects or if it only reads memory.
1396static bool IntrinsicOnlyReadsMemory(unsigned IntrinsicID) {
1397#define GET_SIDE_EFFECT_INFO
1398#include "llvm/Intrinsics.gen"
1399#undef GET_SIDE_EFFECT_INFO
1400 return false;
1401}
1402
Chris Lattner0eade312006-03-24 02:22:33 +00001403/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
1404/// node.
1405void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
1406 unsigned Intrinsic) {
Chris Lattner7255a542006-03-24 22:49:42 +00001407 bool HasChain = !IntrinsicCannotAccessMemory(Intrinsic);
Chris Lattnere58a7802006-04-02 03:41:14 +00001408 bool OnlyLoad = HasChain && IntrinsicOnlyReadsMemory(Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +00001409
1410 // Build the operand list.
1411 std::vector<SDOperand> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00001412 if (HasChain) { // If this intrinsic has side-effects, chainify it.
1413 if (OnlyLoad) {
1414 // We don't need to serialize loads against other loads.
1415 Ops.push_back(DAG.getRoot());
1416 } else {
1417 Ops.push_back(getRoot());
1418 }
1419 }
Chris Lattner0eade312006-03-24 02:22:33 +00001420
1421 // Add the intrinsic ID as an integer operand.
1422 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
1423
1424 // Add all operands of the call to the operand list.
1425 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1426 SDOperand Op = getValue(I.getOperand(i));
1427
1428 // If this is a vector type, force it to the right packed type.
1429 if (Op.getValueType() == MVT::Vector) {
1430 const PackedType *OpTy = cast<PackedType>(I.getOperand(i)->getType());
1431 MVT::ValueType EltVT = TLI.getValueType(OpTy->getElementType());
1432
1433 MVT::ValueType VVT = MVT::getVectorType(EltVT, OpTy->getNumElements());
1434 assert(VVT != MVT::Other && "Intrinsic uses a non-legal type?");
1435 Op = DAG.getNode(ISD::VBIT_CONVERT, VVT, Op);
1436 }
1437
1438 assert(TLI.isTypeLegal(Op.getValueType()) &&
1439 "Intrinsic uses a non-legal type?");
1440 Ops.push_back(Op);
1441 }
1442
1443 std::vector<MVT::ValueType> VTs;
1444 if (I.getType() != Type::VoidTy) {
1445 MVT::ValueType VT = TLI.getValueType(I.getType());
1446 if (VT == MVT::Vector) {
1447 const PackedType *DestTy = cast<PackedType>(I.getType());
1448 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1449
1450 VT = MVT::getVectorType(EltVT, DestTy->getNumElements());
1451 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
1452 }
1453
1454 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
1455 VTs.push_back(VT);
1456 }
1457 if (HasChain)
1458 VTs.push_back(MVT::Other);
1459
1460 // Create the node.
Chris Lattner48b61a72006-03-28 00:40:33 +00001461 SDOperand Result;
1462 if (!HasChain)
1463 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTs, Ops);
1464 else if (I.getType() != Type::VoidTy)
1465 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTs, Ops);
1466 else
1467 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTs, Ops);
1468
Chris Lattnere58a7802006-04-02 03:41:14 +00001469 if (HasChain) {
1470 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
1471 if (OnlyLoad)
1472 PendingLoads.push_back(Chain);
1473 else
1474 DAG.setRoot(Chain);
1475 }
Chris Lattner0eade312006-03-24 02:22:33 +00001476 if (I.getType() != Type::VoidTy) {
1477 if (const PackedType *PTy = dyn_cast<PackedType>(I.getType())) {
1478 MVT::ValueType EVT = TLI.getValueType(PTy->getElementType());
1479 Result = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Result,
1480 DAG.getConstant(PTy->getNumElements(), MVT::i32),
1481 DAG.getValueType(EVT));
1482 }
1483 setValue(&I, Result);
1484 }
1485}
1486
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001487/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
1488/// we want to emit this as a call to a named external function, return the name
1489/// otherwise lower it and return null.
1490const char *
1491SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
1492 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00001493 default:
1494 // By default, turn this into a target intrinsic node.
1495 visitTargetIntrinsic(I, Intrinsic);
1496 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001497 case Intrinsic::vastart: visitVAStart(I); return 0;
1498 case Intrinsic::vaend: visitVAEnd(I); return 0;
1499 case Intrinsic::vacopy: visitVACopy(I); return 0;
1500 case Intrinsic::returnaddress: visitFrameReturnAddress(I, false); return 0;
1501 case Intrinsic::frameaddress: visitFrameReturnAddress(I, true); return 0;
1502 case Intrinsic::setjmp:
1503 return "_setjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1504 break;
1505 case Intrinsic::longjmp:
1506 return "_longjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1507 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00001508 case Intrinsic::memcpy_i32:
1509 case Intrinsic::memcpy_i64:
1510 visitMemIntrinsic(I, ISD::MEMCPY);
1511 return 0;
1512 case Intrinsic::memset_i32:
1513 case Intrinsic::memset_i64:
1514 visitMemIntrinsic(I, ISD::MEMSET);
1515 return 0;
1516 case Intrinsic::memmove_i32:
1517 case Intrinsic::memmove_i64:
1518 visitMemIntrinsic(I, ISD::MEMMOVE);
1519 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001520
Chris Lattner86cb6432005-12-13 17:40:33 +00001521 case Intrinsic::dbg_stoppoint: {
Jim Laskeyce72b172006-02-11 01:01:30 +00001522 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00001523 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001524 if (DebugInfo && SPI.getContext() && DebugInfo->Verify(SPI.getContext())) {
Jim Laskeyce72b172006-02-11 01:01:30 +00001525 std::vector<SDOperand> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001526
Jim Laskeyce72b172006-02-11 01:01:30 +00001527 Ops.push_back(getRoot());
Jim Laskey43970fe2006-03-23 18:06:46 +00001528 Ops.push_back(getValue(SPI.getLineValue()));
1529 Ops.push_back(getValue(SPI.getColumnValue()));
Chris Lattner36ce6912005-11-29 06:21:05 +00001530
Jim Laskey43970fe2006-03-23 18:06:46 +00001531 DebugInfoDesc *DD = DebugInfo->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00001532 assert(DD && "Not a debug information descriptor");
Jim Laskey43970fe2006-03-23 18:06:46 +00001533 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
1534
Jim Laskeyce72b172006-02-11 01:01:30 +00001535 Ops.push_back(DAG.getString(CompileUnit->getFileName()));
1536 Ops.push_back(DAG.getString(CompileUnit->getDirectory()));
1537
Jim Laskey43970fe2006-03-23 18:06:46 +00001538 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops));
Chris Lattner86cb6432005-12-13 17:40:33 +00001539 }
Jim Laskey43970fe2006-03-23 18:06:46 +00001540
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001541 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00001542 }
Jim Laskey43970fe2006-03-23 18:06:46 +00001543 case Intrinsic::dbg_region_start: {
1544 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1545 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001546 if (DebugInfo && RSI.getContext() && DebugInfo->Verify(RSI.getContext())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001547 std::vector<SDOperand> Ops;
1548
1549 unsigned LabelID = DebugInfo->RecordRegionStart(RSI.getContext());
1550
1551 Ops.push_back(getRoot());
1552 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1553
1554 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1555 }
1556
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001557 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001558 }
1559 case Intrinsic::dbg_region_end: {
1560 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1561 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001562 if (DebugInfo && REI.getContext() && DebugInfo->Verify(REI.getContext())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001563 std::vector<SDOperand> Ops;
1564
1565 unsigned LabelID = DebugInfo->RecordRegionEnd(REI.getContext());
1566
1567 Ops.push_back(getRoot());
1568 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1569
1570 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1571 }
1572
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001573 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001574 }
1575 case Intrinsic::dbg_func_start: {
1576 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1577 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jim Laskeyfbcf23c2006-03-26 22:46:27 +00001578 if (DebugInfo && FSI.getSubprogram() &&
1579 DebugInfo->Verify(FSI.getSubprogram())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001580 std::vector<SDOperand> Ops;
1581
1582 unsigned LabelID = DebugInfo->RecordRegionStart(FSI.getSubprogram());
1583
1584 Ops.push_back(getRoot());
1585 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1586
1587 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1588 }
1589
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00001590 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00001591 }
1592 case Intrinsic::dbg_declare: {
1593 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1594 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Jim Laskeybf7637d2006-03-28 13:45:20 +00001595 if (DebugInfo && DI.getVariable() && DebugInfo->Verify(DI.getVariable())) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001596 std::vector<SDOperand> Ops;
1597
Jim Laskey0892cee2006-03-24 09:50:27 +00001598 SDOperand AddressOp = getValue(DI.getAddress());
1599 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(AddressOp)) {
Jim Laskey43970fe2006-03-23 18:06:46 +00001600 DebugInfo->RecordVariable(DI.getVariable(), FI->getIndex());
1601 }
1602 }
1603
1604 return 0;
1605 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001606
Reid Spencer0b118202006-01-16 21:12:35 +00001607 case Intrinsic::isunordered_f32:
1608 case Intrinsic::isunordered_f64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001609 setValue(&I, DAG.getSetCC(MVT::i1,getValue(I.getOperand(1)),
1610 getValue(I.getOperand(2)), ISD::SETUO));
1611 return 0;
1612
Reid Spencer0b118202006-01-16 21:12:35 +00001613 case Intrinsic::sqrt_f32:
1614 case Intrinsic::sqrt_f64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001615 setValue(&I, DAG.getNode(ISD::FSQRT,
1616 getValue(I.getOperand(1)).getValueType(),
1617 getValue(I.getOperand(1))));
1618 return 0;
1619 case Intrinsic::pcmarker: {
1620 SDOperand Tmp = getValue(I.getOperand(1));
1621 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
1622 return 0;
1623 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00001624 case Intrinsic::readcyclecounter: {
1625 std::vector<MVT::ValueType> VTs;
1626 VTs.push_back(MVT::i64);
1627 VTs.push_back(MVT::Other);
1628 std::vector<SDOperand> Ops;
1629 Ops.push_back(getRoot());
1630 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER, VTs, Ops);
1631 setValue(&I, Tmp);
1632 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00001633 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00001634 }
Nate Begemand88fc032006-01-14 03:14:10 +00001635 case Intrinsic::bswap_i16:
Nate Begemand88fc032006-01-14 03:14:10 +00001636 case Intrinsic::bswap_i32:
Nate Begemand88fc032006-01-14 03:14:10 +00001637 case Intrinsic::bswap_i64:
1638 setValue(&I, DAG.getNode(ISD::BSWAP,
1639 getValue(I.getOperand(1)).getValueType(),
1640 getValue(I.getOperand(1))));
1641 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001642 case Intrinsic::cttz_i8:
1643 case Intrinsic::cttz_i16:
1644 case Intrinsic::cttz_i32:
1645 case Intrinsic::cttz_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001646 setValue(&I, DAG.getNode(ISD::CTTZ,
1647 getValue(I.getOperand(1)).getValueType(),
1648 getValue(I.getOperand(1))));
1649 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001650 case Intrinsic::ctlz_i8:
1651 case Intrinsic::ctlz_i16:
1652 case Intrinsic::ctlz_i32:
1653 case Intrinsic::ctlz_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001654 setValue(&I, DAG.getNode(ISD::CTLZ,
1655 getValue(I.getOperand(1)).getValueType(),
1656 getValue(I.getOperand(1))));
1657 return 0;
Reid Spencer0b118202006-01-16 21:12:35 +00001658 case Intrinsic::ctpop_i8:
1659 case Intrinsic::ctpop_i16:
1660 case Intrinsic::ctpop_i32:
1661 case Intrinsic::ctpop_i64:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001662 setValue(&I, DAG.getNode(ISD::CTPOP,
1663 getValue(I.getOperand(1)).getValueType(),
1664 getValue(I.getOperand(1))));
1665 return 0;
Chris Lattner140d53c2006-01-13 02:50:02 +00001666 case Intrinsic::stacksave: {
1667 std::vector<MVT::ValueType> VTs;
1668 VTs.push_back(TLI.getPointerTy());
1669 VTs.push_back(MVT::Other);
1670 std::vector<SDOperand> Ops;
1671 Ops.push_back(getRoot());
1672 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE, VTs, Ops);
1673 setValue(&I, Tmp);
1674 DAG.setRoot(Tmp.getValue(1));
1675 return 0;
1676 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00001677 case Intrinsic::stackrestore: {
1678 SDOperand Tmp = getValue(I.getOperand(1));
1679 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00001680 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00001681 }
Chris Lattnerac22c832005-12-12 22:51:16 +00001682 case Intrinsic::prefetch:
1683 // FIXME: Currently discarding prefetches.
1684 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001685 }
1686}
1687
1688
Chris Lattner1c08c712005-01-07 07:47:53 +00001689void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00001690 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001691 if (Function *F = I.getCalledFunction()) {
Chris Lattnerc0f18152005-04-02 05:26:53 +00001692 if (F->isExternal())
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001693 if (unsigned IID = F->getIntrinsicID()) {
1694 RenameFn = visitIntrinsicCall(I, IID);
1695 if (!RenameFn)
1696 return;
1697 } else { // Not an LLVM intrinsic.
1698 const std::string &Name = F->getName();
Chris Lattnera09f8482006-03-05 05:09:38 +00001699 if (Name[0] == 'c' && (Name == "copysign" || Name == "copysignf")) {
1700 if (I.getNumOperands() == 3 && // Basic sanity checks.
1701 I.getOperand(1)->getType()->isFloatingPoint() &&
1702 I.getType() == I.getOperand(1)->getType() &&
1703 I.getType() == I.getOperand(2)->getType()) {
1704 SDOperand LHS = getValue(I.getOperand(1));
1705 SDOperand RHS = getValue(I.getOperand(2));
1706 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
1707 LHS, RHS));
1708 return;
1709 }
1710 } else if (Name[0] == 'f' && (Name == "fabs" || Name == "fabsf")) {
Chris Lattnerc0f18152005-04-02 05:26:53 +00001711 if (I.getNumOperands() == 2 && // Basic sanity checks.
1712 I.getOperand(1)->getType()->isFloatingPoint() &&
1713 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001714 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerc0f18152005-04-02 05:26:53 +00001715 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
1716 return;
1717 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001718 } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) {
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001719 if (I.getNumOperands() == 2 && // Basic sanity checks.
1720 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner06a248c92006-02-14 05:39:35 +00001721 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001722 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001723 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
1724 return;
1725 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001726 } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) {
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001727 if (I.getNumOperands() == 2 && // Basic sanity checks.
1728 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner06a248c92006-02-14 05:39:35 +00001729 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001730 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001731 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
1732 return;
1733 }
1734 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00001735 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001736 } else if (isa<InlineAsm>(I.getOperand(0))) {
1737 visitInlineAsm(I);
1738 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001739 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001740
Chris Lattner64e14b12005-01-08 22:48:57 +00001741 SDOperand Callee;
1742 if (!RenameFn)
1743 Callee = getValue(I.getOperand(0));
1744 else
1745 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Chris Lattner1c08c712005-01-07 07:47:53 +00001746 std::vector<std::pair<SDOperand, const Type*> > Args;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00001747 Args.reserve(I.getNumOperands());
Chris Lattner1c08c712005-01-07 07:47:53 +00001748 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1749 Value *Arg = I.getOperand(i);
1750 SDOperand ArgNode = getValue(Arg);
1751 Args.push_back(std::make_pair(ArgNode, Arg->getType()));
1752 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001753
Nate Begeman8e21e712005-03-26 01:29:23 +00001754 const PointerType *PT = cast<PointerType>(I.getCalledValue()->getType());
1755 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001756
Chris Lattnercf5734d2005-01-08 19:26:18 +00001757 std::pair<SDOperand,SDOperand> Result =
Chris Lattner9092fa32005-05-12 19:56:57 +00001758 TLI.LowerCallTo(getRoot(), I.getType(), FTy->isVarArg(), I.getCallingConv(),
Chris Lattneradf6a962005-05-13 18:50:42 +00001759 I.isTailCall(), Callee, Args, DAG);
Chris Lattner1c08c712005-01-07 07:47:53 +00001760 if (I.getType() != Type::VoidTy)
Chris Lattnercf5734d2005-01-08 19:26:18 +00001761 setValue(&I, Result.first);
1762 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00001763}
1764
Chris Lattner864635a2006-02-22 22:37:12 +00001765SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001766 SDOperand &Chain, SDOperand &Flag)const{
Chris Lattner864635a2006-02-22 22:37:12 +00001767 SDOperand Val = DAG.getCopyFromReg(Chain, Regs[0], RegVT, Flag);
1768 Chain = Val.getValue(1);
1769 Flag = Val.getValue(2);
1770
1771 // If the result was expanded, copy from the top part.
1772 if (Regs.size() > 1) {
1773 assert(Regs.size() == 2 &&
1774 "Cannot expand to more than 2 elts yet!");
1775 SDOperand Hi = DAG.getCopyFromReg(Chain, Regs[1], RegVT, Flag);
1776 Chain = Val.getValue(1);
1777 Flag = Val.getValue(2);
Chris Lattner9f6637d2006-02-23 20:06:57 +00001778 if (DAG.getTargetLoweringInfo().isLittleEndian())
1779 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Val, Hi);
1780 else
1781 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Hi, Val);
Chris Lattner864635a2006-02-22 22:37:12 +00001782 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00001783
Chris Lattnercf752aa2006-06-08 18:22:48 +00001784 // Otherwise, if the return value was promoted or extended, truncate it to the
Chris Lattner864635a2006-02-22 22:37:12 +00001785 // appropriate type.
1786 if (RegVT == ValueVT)
1787 return Val;
1788
Chris Lattnercf752aa2006-06-08 18:22:48 +00001789 if (MVT::isInteger(RegVT)) {
1790 if (ValueVT < RegVT)
1791 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1792 else
1793 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
1794 } else {
Chris Lattner864635a2006-02-22 22:37:12 +00001795 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val);
Chris Lattnercf752aa2006-06-08 18:22:48 +00001796 }
Chris Lattner864635a2006-02-22 22:37:12 +00001797}
1798
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001799/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
1800/// specified value into the registers specified by this object. This uses
1801/// Chain/Flag as the input and updates them for the output Chain/Flag.
1802void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001803 SDOperand &Chain, SDOperand &Flag) const {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001804 if (Regs.size() == 1) {
1805 // If there is a single register and the types differ, this must be
1806 // a promotion.
1807 if (RegVT != ValueVT) {
Chris Lattner0c48fd42006-06-08 18:27:11 +00001808 if (MVT::isInteger(RegVT)) {
1809 if (RegVT < ValueVT)
1810 Val = DAG.getNode(ISD::TRUNCATE, RegVT, Val);
1811 else
1812 Val = DAG.getNode(ISD::ANY_EXTEND, RegVT, Val);
1813 } else
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001814 Val = DAG.getNode(ISD::FP_EXTEND, RegVT, Val);
1815 }
1816 Chain = DAG.getCopyToReg(Chain, Regs[0], Val, Flag);
1817 Flag = Chain.getValue(1);
1818 } else {
Chris Lattner9f6637d2006-02-23 20:06:57 +00001819 std::vector<unsigned> R(Regs);
1820 if (!DAG.getTargetLoweringInfo().isLittleEndian())
1821 std::reverse(R.begin(), R.end());
1822
1823 for (unsigned i = 0, e = R.size(); i != e; ++i) {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001824 SDOperand Part = DAG.getNode(ISD::EXTRACT_ELEMENT, RegVT, Val,
1825 DAG.getConstant(i, MVT::i32));
Chris Lattner9f6637d2006-02-23 20:06:57 +00001826 Chain = DAG.getCopyToReg(Chain, R[i], Part, Flag);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001827 Flag = Chain.getValue(1);
1828 }
1829 }
1830}
Chris Lattner864635a2006-02-22 22:37:12 +00001831
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001832/// AddInlineAsmOperands - Add this value to the specified inlineasm node
1833/// operand list. This adds the code marker and includes the number of
1834/// values added into it.
1835void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00001836 std::vector<SDOperand> &Ops) const {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001837 Ops.push_back(DAG.getConstant(Code | (Regs.size() << 3), MVT::i32));
1838 for (unsigned i = 0, e = Regs.size(); i != e; ++i)
1839 Ops.push_back(DAG.getRegister(Regs[i], RegVT));
1840}
Chris Lattner864635a2006-02-22 22:37:12 +00001841
1842/// isAllocatableRegister - If the specified register is safe to allocate,
1843/// i.e. it isn't a stack pointer or some other special register, return the
1844/// register class for the register. Otherwise, return null.
1845static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001846isAllocatableRegister(unsigned Reg, MachineFunction &MF,
1847 const TargetLowering &TLI, const MRegisterInfo *MRI) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001848 MVT::ValueType FoundVT = MVT::Other;
1849 const TargetRegisterClass *FoundRC = 0;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001850 for (MRegisterInfo::regclass_iterator RCI = MRI->regclass_begin(),
1851 E = MRI->regclass_end(); RCI != E; ++RCI) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001852 MVT::ValueType ThisVT = MVT::Other;
1853
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001854 const TargetRegisterClass *RC = *RCI;
1855 // If none of the the value types for this register class are valid, we
1856 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001857 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
1858 I != E; ++I) {
1859 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001860 // If we have already found this register in a different register class,
1861 // choose the one with the largest VT specified. For example, on
1862 // PowerPC, we favor f64 register classes over f32.
1863 if (FoundVT == MVT::Other ||
1864 MVT::getSizeInBits(FoundVT) < MVT::getSizeInBits(*I)) {
1865 ThisVT = *I;
1866 break;
1867 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001868 }
1869 }
1870
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001871 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001872
Chris Lattner864635a2006-02-22 22:37:12 +00001873 // NOTE: This isn't ideal. In particular, this might allocate the
1874 // frame pointer in functions that need it (due to them not being taken
1875 // out of allocation, because a variable sized allocation hasn't been seen
1876 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001877 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
1878 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001879 if (*I == Reg) {
1880 // We found a matching register class. Keep looking at others in case
1881 // we find one with larger registers that this physreg is also in.
1882 FoundRC = RC;
1883 FoundVT = ThisVT;
1884 break;
1885 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00001886 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00001887 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00001888}
1889
1890RegsForValue SelectionDAGLowering::
1891GetRegistersForValue(const std::string &ConstrCode,
1892 MVT::ValueType VT, bool isOutReg, bool isInReg,
1893 std::set<unsigned> &OutputRegs,
1894 std::set<unsigned> &InputRegs) {
1895 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
1896 TLI.getRegForInlineAsmConstraint(ConstrCode, VT);
1897 std::vector<unsigned> Regs;
1898
1899 unsigned NumRegs = VT != MVT::Other ? TLI.getNumElements(VT) : 1;
1900 MVT::ValueType RegVT;
1901 MVT::ValueType ValueVT = VT;
1902
1903 if (PhysReg.first) {
1904 if (VT == MVT::Other)
1905 ValueVT = *PhysReg.second->vt_begin();
Chris Lattnercf752aa2006-06-08 18:22:48 +00001906
1907 // Get the actual register value type. This is important, because the user
1908 // may have asked for (e.g.) the AX register in i32 type. We need to
1909 // remember that AX is actually i16 to get the right extension.
1910 RegVT = *PhysReg.second->vt_begin();
Chris Lattner864635a2006-02-22 22:37:12 +00001911
1912 // This is a explicit reference to a physical register.
1913 Regs.push_back(PhysReg.first);
1914
1915 // If this is an expanded reference, add the rest of the regs to Regs.
1916 if (NumRegs != 1) {
Chris Lattner864635a2006-02-22 22:37:12 +00001917 TargetRegisterClass::iterator I = PhysReg.second->begin();
1918 TargetRegisterClass::iterator E = PhysReg.second->end();
1919 for (; *I != PhysReg.first; ++I)
1920 assert(I != E && "Didn't find reg!");
1921
1922 // Already added the first reg.
1923 --NumRegs; ++I;
1924 for (; NumRegs; --NumRegs, ++I) {
1925 assert(I != E && "Ran out of registers to allocate!");
1926 Regs.push_back(*I);
1927 }
1928 }
1929 return RegsForValue(Regs, RegVT, ValueVT);
1930 }
1931
1932 // This is a reference to a register class. Allocate NumRegs consecutive,
1933 // available, registers from the class.
1934 std::vector<unsigned> RegClassRegs =
1935 TLI.getRegClassForInlineAsmConstraint(ConstrCode, VT);
1936
1937 const MRegisterInfo *MRI = DAG.getTarget().getRegisterInfo();
1938 MachineFunction &MF = *CurMBB->getParent();
1939 unsigned NumAllocated = 0;
1940 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
1941 unsigned Reg = RegClassRegs[i];
1942 // See if this register is available.
1943 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
1944 (isInReg && InputRegs.count(Reg))) { // Already used.
1945 // Make sure we find consecutive registers.
1946 NumAllocated = 0;
1947 continue;
1948 }
1949
1950 // Check to see if this register is allocatable (i.e. don't give out the
1951 // stack pointer).
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00001952 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, MRI);
Chris Lattner864635a2006-02-22 22:37:12 +00001953 if (!RC) {
1954 // Make sure we find consecutive registers.
1955 NumAllocated = 0;
1956 continue;
1957 }
1958
1959 // Okay, this register is good, we can use it.
1960 ++NumAllocated;
1961
1962 // If we allocated enough consecutive
1963 if (NumAllocated == NumRegs) {
1964 unsigned RegStart = (i-NumAllocated)+1;
1965 unsigned RegEnd = i+1;
1966 // Mark all of the allocated registers used.
1967 for (unsigned i = RegStart; i != RegEnd; ++i) {
1968 unsigned Reg = RegClassRegs[i];
1969 Regs.push_back(Reg);
1970 if (isOutReg) OutputRegs.insert(Reg); // Mark reg used.
1971 if (isInReg) InputRegs.insert(Reg); // Mark reg used.
1972 }
1973
1974 return RegsForValue(Regs, *RC->vt_begin(), VT);
1975 }
1976 }
1977
1978 // Otherwise, we couldn't allocate enough registers for this.
1979 return RegsForValue();
Chris Lattner4e4b5762006-02-01 18:59:47 +00001980}
1981
Chris Lattner864635a2006-02-22 22:37:12 +00001982
Chris Lattnerce7518c2006-01-26 22:24:51 +00001983/// visitInlineAsm - Handle a call to an InlineAsm object.
1984///
1985void SelectionDAGLowering::visitInlineAsm(CallInst &I) {
1986 InlineAsm *IA = cast<InlineAsm>(I.getOperand(0));
1987
1988 SDOperand AsmStr = DAG.getTargetExternalSymbol(IA->getAsmString().c_str(),
1989 MVT::Other);
1990
1991 // Note, we treat inline asms both with and without side-effects as the same.
1992 // If an inline asm doesn't have side effects and doesn't access memory, we
1993 // could not choose to not chain it.
1994 bool hasSideEffects = IA->hasSideEffects();
1995
Chris Lattner2cc2f662006-02-01 01:28:23 +00001996 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
Chris Lattner1efa40f2006-02-22 00:56:39 +00001997 std::vector<MVT::ValueType> ConstraintVTs;
Chris Lattnerce7518c2006-01-26 22:24:51 +00001998
1999 /// AsmNodeOperands - A list of pairs. The first element is a register, the
2000 /// second is a bitfield where bit #0 is set if it is a use and bit #1 is set
2001 /// if it is a def of that register.
2002 std::vector<SDOperand> AsmNodeOperands;
2003 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
2004 AsmNodeOperands.push_back(AsmStr);
2005
2006 SDOperand Chain = getRoot();
2007 SDOperand Flag;
2008
Chris Lattner4e4b5762006-02-01 18:59:47 +00002009 // We fully assign registers here at isel time. This is not optimal, but
2010 // should work. For register classes that correspond to LLVM classes, we
2011 // could let the LLVM RA do its thing, but we currently don't. Do a prepass
2012 // over the constraints, collecting fixed registers that we know we can't use.
2013 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002014 unsigned OpNum = 1;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002015 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
2016 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2017 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner2223aea2006-02-02 00:25:23 +00002018
Chris Lattner1efa40f2006-02-22 00:56:39 +00002019 MVT::ValueType OpVT;
2020
2021 // Compute the value type for each operand and add it to ConstraintVTs.
2022 switch (Constraints[i].Type) {
2023 case InlineAsm::isOutput:
2024 if (!Constraints[i].isIndirectOutput) {
2025 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
2026 OpVT = TLI.getValueType(I.getType());
2027 } else {
Chris Lattner22873462006-02-27 23:45:39 +00002028 const Type *OpTy = I.getOperand(OpNum)->getType();
Chris Lattner1efa40f2006-02-22 00:56:39 +00002029 OpVT = TLI.getValueType(cast<PointerType>(OpTy)->getElementType());
2030 OpNum++; // Consumes a call operand.
2031 }
2032 break;
2033 case InlineAsm::isInput:
2034 OpVT = TLI.getValueType(I.getOperand(OpNum)->getType());
2035 OpNum++; // Consumes a call operand.
2036 break;
2037 case InlineAsm::isClobber:
2038 OpVT = MVT::Other;
2039 break;
2040 }
2041
2042 ConstraintVTs.push_back(OpVT);
2043
Chris Lattner864635a2006-02-22 22:37:12 +00002044 if (TLI.getRegForInlineAsmConstraint(ConstraintCode, OpVT).first == 0)
2045 continue; // Not assigned a fixed reg.
Chris Lattner1efa40f2006-02-22 00:56:39 +00002046
Chris Lattner864635a2006-02-22 22:37:12 +00002047 // Build a list of regs that this operand uses. This always has a single
2048 // element for promoted/expanded operands.
2049 RegsForValue Regs = GetRegistersForValue(ConstraintCode, OpVT,
2050 false, false,
2051 OutputRegs, InputRegs);
Chris Lattner4e4b5762006-02-01 18:59:47 +00002052
2053 switch (Constraints[i].Type) {
2054 case InlineAsm::isOutput:
2055 // We can't assign any other output to this register.
Chris Lattner864635a2006-02-22 22:37:12 +00002056 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002057 // If this is an early-clobber output, it cannot be assigned to the same
2058 // value as the input reg.
Chris Lattner2223aea2006-02-02 00:25:23 +00002059 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
Chris Lattner864635a2006-02-22 22:37:12 +00002060 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002061 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002062 case InlineAsm::isInput:
2063 // We can't assign any other input to this register.
Chris Lattner864635a2006-02-22 22:37:12 +00002064 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1efa40f2006-02-22 00:56:39 +00002065 break;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002066 case InlineAsm::isClobber:
2067 // Clobbered regs cannot be used as inputs or outputs.
Chris Lattner864635a2006-02-22 22:37:12 +00002068 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2069 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner4e4b5762006-02-01 18:59:47 +00002070 break;
Chris Lattner4e4b5762006-02-01 18:59:47 +00002071 }
2072 }
Chris Lattner2cc2f662006-02-01 01:28:23 +00002073
Chris Lattner0f0b7d42006-02-21 23:12:12 +00002074 // Loop over all of the inputs, copying the operand values into the
2075 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00002076 RegsForValue RetValRegs;
2077 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Chris Lattner1efa40f2006-02-22 00:56:39 +00002078 OpNum = 1;
Chris Lattner0f0b7d42006-02-21 23:12:12 +00002079
Chris Lattner6656dd12006-01-31 02:03:41 +00002080 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00002081 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2082 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner1efa40f2006-02-22 00:56:39 +00002083
Chris Lattner2cc2f662006-02-01 01:28:23 +00002084 switch (Constraints[i].Type) {
2085 case InlineAsm::isOutput: {
Chris Lattner22873462006-02-27 23:45:39 +00002086 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2087 if (ConstraintCode.size() == 1) // not a physreg name.
2088 CTy = TLI.getConstraintType(ConstraintCode[0]);
2089
2090 if (CTy == TargetLowering::C_Memory) {
2091 // Memory output.
2092 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
2093
2094 // Check that the operand (the address to store to) isn't a float.
2095 if (!MVT::isInteger(InOperandVal.getValueType()))
2096 assert(0 && "MATCH FAIL!");
2097
2098 if (!Constraints[i].isIndirectOutput)
2099 assert(0 && "MATCH FAIL!");
2100
2101 OpNum++; // Consumes a call operand.
2102
2103 // Extend/truncate to the right pointer type if needed.
2104 MVT::ValueType PtrType = TLI.getPointerTy();
2105 if (InOperandVal.getValueType() < PtrType)
2106 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2107 else if (InOperandVal.getValueType() > PtrType)
2108 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2109
2110 // Add information to the INLINEASM node to know about this output.
2111 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2112 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2113 AsmNodeOperands.push_back(InOperandVal);
2114 break;
2115 }
2116
2117 // Otherwise, this is a register output.
2118 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2119
Chris Lattner864635a2006-02-22 22:37:12 +00002120 // If this is an early-clobber output, or if there is an input
2121 // constraint that matches this, we need to reserve the input register
2122 // so no other inputs allocate to it.
2123 bool UsesInputRegister = false;
2124 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
2125 UsesInputRegister = true;
2126
2127 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00002128 // we can use.
Chris Lattner864635a2006-02-22 22:37:12 +00002129 RegsForValue Regs =
2130 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2131 true, UsesInputRegister,
2132 OutputRegs, InputRegs);
2133 assert(!Regs.Regs.empty() && "Couldn't allocate output reg!");
Chris Lattner1efa40f2006-02-22 00:56:39 +00002134
Chris Lattner2cc2f662006-02-01 01:28:23 +00002135 if (!Constraints[i].isIndirectOutput) {
Chris Lattner864635a2006-02-22 22:37:12 +00002136 assert(RetValRegs.Regs.empty() &&
Chris Lattner2cc2f662006-02-01 01:28:23 +00002137 "Cannot have multiple output constraints yet!");
Chris Lattner2cc2f662006-02-01 01:28:23 +00002138 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
Chris Lattner864635a2006-02-22 22:37:12 +00002139 RetValRegs = Regs;
Chris Lattner2cc2f662006-02-01 01:28:23 +00002140 } else {
Chris Lattner22873462006-02-27 23:45:39 +00002141 IndirectStoresToEmit.push_back(std::make_pair(Regs,
2142 I.getOperand(OpNum)));
Chris Lattner2cc2f662006-02-01 01:28:23 +00002143 OpNum++; // Consumes a call operand.
2144 }
Chris Lattner6656dd12006-01-31 02:03:41 +00002145
2146 // Add information to the INLINEASM node to know that this register is
2147 // set.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002148 Regs.AddInlineAsmOperands(2 /*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002149 break;
2150 }
2151 case InlineAsm::isInput: {
Chris Lattner22873462006-02-27 23:45:39 +00002152 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
Chris Lattner4e4b5762006-02-01 18:59:47 +00002153 OpNum++; // Consumes a call operand.
Chris Lattner3d81fee2006-02-04 02:16:44 +00002154
Chris Lattner2223aea2006-02-02 00:25:23 +00002155 if (isdigit(ConstraintCode[0])) { // Matching constraint?
2156 // If this is required to match an output register we have already set,
2157 // just use its register.
2158 unsigned OperandNo = atoi(ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00002159
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002160 // Scan until we find the definition we already emitted of this operand.
2161 // When we find it, create a RegsForValue operand.
2162 unsigned CurOp = 2; // The first operand.
2163 for (; OperandNo; --OperandNo) {
2164 // Advance to the next operand.
2165 unsigned NumOps =
2166 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2167 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2168 "Skipped past definitions?");
2169 CurOp += (NumOps>>3)+1;
2170 }
2171
2172 unsigned NumOps =
2173 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2174 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2175 "Skipped past definitions?");
2176
2177 // Add NumOps>>3 registers to MatchedRegs.
2178 RegsForValue MatchedRegs;
2179 MatchedRegs.ValueVT = InOperandVal.getValueType();
2180 MatchedRegs.RegVT = AsmNodeOperands[CurOp+1].getValueType();
2181 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
2182 unsigned Reg=cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
2183 MatchedRegs.Regs.push_back(Reg);
2184 }
2185
2186 // Use the produced MatchedRegs object to
2187 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag);
2188 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002189 break;
Chris Lattner2223aea2006-02-02 00:25:23 +00002190 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00002191
2192 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2193 if (ConstraintCode.size() == 1) // not a physreg name.
2194 CTy = TLI.getConstraintType(ConstraintCode[0]);
2195
2196 if (CTy == TargetLowering::C_Other) {
2197 if (!TLI.isOperandValidForConstraint(InOperandVal, ConstraintCode[0]))
2198 assert(0 && "MATCH FAIL!");
2199
2200 // Add information to the INLINEASM node to know about this input.
2201 unsigned ResOpType = 3 /*IMM*/ | (1 << 3);
2202 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2203 AsmNodeOperands.push_back(InOperandVal);
2204 break;
2205 } else if (CTy == TargetLowering::C_Memory) {
2206 // Memory input.
2207
2208 // Check that the operand isn't a float.
2209 if (!MVT::isInteger(InOperandVal.getValueType()))
2210 assert(0 && "MATCH FAIL!");
2211
2212 // Extend/truncate to the right pointer type if needed.
2213 MVT::ValueType PtrType = TLI.getPointerTy();
2214 if (InOperandVal.getValueType() < PtrType)
2215 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2216 else if (InOperandVal.getValueType() > PtrType)
2217 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2218
2219 // Add information to the INLINEASM node to know about this input.
2220 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2221 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2222 AsmNodeOperands.push_back(InOperandVal);
2223 break;
2224 }
2225
2226 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2227
2228 // Copy the input into the appropriate registers.
2229 RegsForValue InRegs =
2230 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2231 false, true, OutputRegs, InputRegs);
2232 // FIXME: should be match fail.
2233 assert(!InRegs.Regs.empty() && "Couldn't allocate input reg!");
2234
2235 InRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag);
2236
2237 InRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002238 break;
2239 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002240 case InlineAsm::isClobber: {
2241 RegsForValue ClobberedRegs =
2242 GetRegistersForValue(ConstraintCode, MVT::Other, false, false,
2243 OutputRegs, InputRegs);
2244 // Add the clobbered value to the operand list, so that the register
2245 // allocator is aware that the physreg got clobbered.
2246 if (!ClobberedRegs.Regs.empty())
2247 ClobberedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00002248 break;
2249 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00002250 }
Chris Lattner6656dd12006-01-31 02:03:41 +00002251 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00002252
2253 // Finish up input operands.
2254 AsmNodeOperands[0] = Chain;
2255 if (Flag.Val) AsmNodeOperands.push_back(Flag);
2256
2257 std::vector<MVT::ValueType> VTs;
2258 VTs.push_back(MVT::Other);
2259 VTs.push_back(MVT::Flag);
2260 Chain = DAG.getNode(ISD::INLINEASM, VTs, AsmNodeOperands);
2261 Flag = Chain.getValue(1);
2262
Chris Lattner6656dd12006-01-31 02:03:41 +00002263 // If this asm returns a register value, copy the result from that register
2264 // and set it as the value of the call.
Chris Lattner864635a2006-02-22 22:37:12 +00002265 if (!RetValRegs.Regs.empty())
2266 setValue(&I, RetValRegs.getCopyFromRegs(DAG, Chain, Flag));
Chris Lattnerce7518c2006-01-26 22:24:51 +00002267
Chris Lattner6656dd12006-01-31 02:03:41 +00002268 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
2269
2270 // Process indirect outputs, first output all of the flagged copies out of
2271 // physregs.
2272 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00002273 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00002274 Value *Ptr = IndirectStoresToEmit[i].second;
Chris Lattner864635a2006-02-22 22:37:12 +00002275 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, Flag);
2276 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00002277 }
2278
2279 // Emit the non-flagged stores from the physregs.
2280 std::vector<SDOperand> OutChains;
2281 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
2282 OutChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
2283 StoresToEmit[i].first,
2284 getValue(StoresToEmit[i].second),
2285 DAG.getSrcValue(StoresToEmit[i].second)));
2286 if (!OutChains.empty())
2287 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattnerce7518c2006-01-26 22:24:51 +00002288 DAG.setRoot(Chain);
2289}
2290
2291
Chris Lattner1c08c712005-01-07 07:47:53 +00002292void SelectionDAGLowering::visitMalloc(MallocInst &I) {
2293 SDOperand Src = getValue(I.getOperand(0));
2294
2295 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00002296
2297 if (IntPtr < Src.getValueType())
2298 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
2299 else if (IntPtr > Src.getValueType())
2300 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00002301
2302 // Scale the source by the type size.
Owen Andersona69571c2006-05-03 01:29:57 +00002303 uint64_t ElementSize = TD->getTypeSize(I.getType()->getElementType());
Chris Lattner1c08c712005-01-07 07:47:53 +00002304 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
2305 Src, getIntPtrConstant(ElementSize));
2306
2307 std::vector<std::pair<SDOperand, const Type*> > Args;
Owen Andersona69571c2006-05-03 01:29:57 +00002308 Args.push_back(std::make_pair(Src, TLI.getTargetData()->getIntPtrType()));
Chris Lattnercf5734d2005-01-08 19:26:18 +00002309
2310 std::pair<SDOperand,SDOperand> Result =
Chris Lattneradf6a962005-05-13 18:50:42 +00002311 TLI.LowerCallTo(getRoot(), I.getType(), false, CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00002312 DAG.getExternalSymbol("malloc", IntPtr),
2313 Args, DAG);
2314 setValue(&I, Result.first); // Pointers always fit in registers
2315 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002316}
2317
2318void SelectionDAGLowering::visitFree(FreeInst &I) {
2319 std::vector<std::pair<SDOperand, const Type*> > Args;
2320 Args.push_back(std::make_pair(getValue(I.getOperand(0)),
Owen Andersona69571c2006-05-03 01:29:57 +00002321 TLI.getTargetData()->getIntPtrType()));
Chris Lattner1c08c712005-01-07 07:47:53 +00002322 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattnercf5734d2005-01-08 19:26:18 +00002323 std::pair<SDOperand,SDOperand> Result =
Chris Lattneradf6a962005-05-13 18:50:42 +00002324 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00002325 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
2326 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002327}
2328
Chris Lattner025c39b2005-08-26 20:54:47 +00002329// InsertAtEndOfBasicBlock - This method should be implemented by targets that
2330// mark instructions with the 'usesCustomDAGSchedInserter' flag. These
2331// instructions are special in various ways, which require special support to
2332// insert. The specified MachineInstr is created but not inserted into any
2333// basic blocks, and the scheduler passes ownership of it to this method.
2334MachineBasicBlock *TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
2335 MachineBasicBlock *MBB) {
2336 std::cerr << "If a target marks an instruction with "
2337 "'usesCustomDAGSchedInserter', it must implement "
2338 "TargetLowering::InsertAtEndOfBasicBlock!\n";
2339 abort();
2340 return 0;
2341}
2342
Chris Lattner39ae3622005-01-09 00:00:49 +00002343void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002344 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
2345 getValue(I.getOperand(1)),
2346 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00002347}
2348
2349void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002350 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
2351 getValue(I.getOperand(0)),
2352 DAG.getSrcValue(I.getOperand(0)));
2353 setValue(&I, V);
2354 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002355}
2356
2357void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002358 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
2359 getValue(I.getOperand(1)),
2360 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00002361}
2362
2363void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00002364 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
2365 getValue(I.getOperand(1)),
2366 getValue(I.getOperand(2)),
2367 DAG.getSrcValue(I.getOperand(1)),
2368 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00002369}
2370
Chris Lattnerfdfded52006-04-12 16:20:43 +00002371/// TargetLowering::LowerArguments - This is the default LowerArguments
2372/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002373/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
2374/// integrated into SDISel.
Chris Lattnerfdfded52006-04-12 16:20:43 +00002375std::vector<SDOperand>
2376TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
2377 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
2378 std::vector<SDOperand> Ops;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00002379 Ops.push_back(DAG.getRoot());
Chris Lattnerfdfded52006-04-12 16:20:43 +00002380 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
2381 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
2382
2383 // Add one result value for each formal argument.
2384 std::vector<MVT::ValueType> RetVals;
2385 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2386 MVT::ValueType VT = getValueType(I->getType());
2387
2388 switch (getTypeAction(VT)) {
2389 default: assert(0 && "Unknown type action!");
2390 case Legal:
2391 RetVals.push_back(VT);
2392 break;
2393 case Promote:
2394 RetVals.push_back(getTypeToTransformTo(VT));
2395 break;
2396 case Expand:
2397 if (VT != MVT::Vector) {
2398 // If this is a large integer, it needs to be broken up into small
2399 // integers. Figure out what the destination type is and how many small
2400 // integers it turns into.
2401 MVT::ValueType NVT = getTypeToTransformTo(VT);
2402 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2403 for (unsigned i = 0; i != NumVals; ++i)
2404 RetVals.push_back(NVT);
2405 } else {
2406 // Otherwise, this is a vector type. We only support legal vectors
2407 // right now.
2408 unsigned NumElems = cast<PackedType>(I->getType())->getNumElements();
2409 const Type *EltTy = cast<PackedType>(I->getType())->getElementType();
Evan Chengf7179bb2006-04-27 08:29:42 +00002410
Chris Lattnerfdfded52006-04-12 16:20:43 +00002411 // Figure out if there is a Packed type corresponding to this Vector
2412 // type. If so, convert to the packed type.
2413 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2414 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2415 RetVals.push_back(TVT);
2416 } else {
2417 assert(0 && "Don't support illegal by-val vector arguments yet!");
2418 }
2419 }
2420 break;
2421 }
2422 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00002423
Chris Lattner8c0c10c2006-05-16 06:45:34 +00002424 RetVals.push_back(MVT::Other);
Chris Lattnerfdfded52006-04-12 16:20:43 +00002425
2426 // Create the node.
2427 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, RetVals, Ops).Val;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00002428
2429 DAG.setRoot(SDOperand(Result, Result->getNumValues()-1));
Chris Lattnerfdfded52006-04-12 16:20:43 +00002430
2431 // Set up the return result vector.
2432 Ops.clear();
2433 unsigned i = 0;
2434 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2435 MVT::ValueType VT = getValueType(I->getType());
2436
2437 switch (getTypeAction(VT)) {
2438 default: assert(0 && "Unknown type action!");
2439 case Legal:
2440 Ops.push_back(SDOperand(Result, i++));
2441 break;
2442 case Promote: {
2443 SDOperand Op(Result, i++);
2444 if (MVT::isInteger(VT)) {
2445 unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext
2446 : ISD::AssertZext;
2447 Op = DAG.getNode(AssertOp, Op.getValueType(), Op, DAG.getValueType(VT));
2448 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2449 } else {
2450 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2451 Op = DAG.getNode(ISD::FP_ROUND, VT, Op);
2452 }
2453 Ops.push_back(Op);
2454 break;
2455 }
2456 case Expand:
2457 if (VT != MVT::Vector) {
2458 // If this is a large integer, it needs to be reassembled from small
2459 // integers. Figure out what the source elt type is and how many small
2460 // integers it is.
2461 MVT::ValueType NVT = getTypeToTransformTo(VT);
2462 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2463 if (NumVals == 2) {
2464 SDOperand Lo = SDOperand(Result, i++);
2465 SDOperand Hi = SDOperand(Result, i++);
2466
2467 if (!isLittleEndian())
2468 std::swap(Lo, Hi);
2469
2470 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi));
2471 } else {
2472 // Value scalarized into many values. Unimp for now.
2473 assert(0 && "Cannot expand i64 -> i16 yet!");
2474 }
2475 } else {
2476 // Otherwise, this is a vector type. We only support legal vectors
2477 // right now.
Evan Cheng020c41f2006-04-28 05:25:15 +00002478 const PackedType *PTy = cast<PackedType>(I->getType());
2479 unsigned NumElems = PTy->getNumElements();
2480 const Type *EltTy = PTy->getElementType();
Evan Chengf7179bb2006-04-27 08:29:42 +00002481
Chris Lattnerfdfded52006-04-12 16:20:43 +00002482 // Figure out if there is a Packed type corresponding to this Vector
2483 // type. If so, convert to the packed type.
2484 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
Chris Lattnerd202ca42006-05-17 20:49:36 +00002485 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Evan Cheng020c41f2006-04-28 05:25:15 +00002486 SDOperand N = SDOperand(Result, i++);
2487 // Handle copies from generic vectors to registers.
Chris Lattnerd202ca42006-05-17 20:49:36 +00002488 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
2489 DAG.getConstant(NumElems, MVT::i32),
2490 DAG.getValueType(getValueType(EltTy)));
2491 Ops.push_back(N);
2492 } else {
Chris Lattnerfdfded52006-04-12 16:20:43 +00002493 assert(0 && "Don't support illegal by-val vector arguments yet!");
Chris Lattnerda098e72006-05-16 23:39:44 +00002494 abort();
Chris Lattnerfdfded52006-04-12 16:20:43 +00002495 }
2496 }
2497 break;
2498 }
2499 }
2500 return Ops;
2501}
2502
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002503
2504/// TargetLowering::LowerCallTo - This is the default LowerCallTo
2505/// implementation, which just inserts an ISD::CALL node, which is later custom
2506/// lowered by the target to something concrete. FIXME: When all targets are
2507/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
2508std::pair<SDOperand, SDOperand>
2509TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
2510 unsigned CallingConv, bool isTailCall,
2511 SDOperand Callee,
2512 ArgListTy &Args, SelectionDAG &DAG) {
2513 std::vector<SDOperand> Ops;
2514 Ops.push_back(Chain); // Op#0 - Chain
2515 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
2516 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
2517 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
2518 Ops.push_back(Callee);
2519
2520 // Handle all of the outgoing arguments.
2521 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
2522 MVT::ValueType VT = getValueType(Args[i].second);
2523 SDOperand Op = Args[i].first;
Evan Chengf6d62c22006-05-25 00:55:32 +00002524 bool isSigned = Args[i].second->isSigned();
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002525 switch (getTypeAction(VT)) {
2526 default: assert(0 && "Unknown type action!");
2527 case Legal:
2528 Ops.push_back(Op);
Evan Chengd61c4822006-05-26 23:13:20 +00002529 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002530 break;
2531 case Promote:
2532 if (MVT::isInteger(VT)) {
Evan Chengf6d62c22006-05-25 00:55:32 +00002533 unsigned ExtOp = isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002534 Op = DAG.getNode(ExtOp, getTypeToTransformTo(VT), Op);
2535 } else {
2536 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2537 Op = DAG.getNode(ISD::FP_EXTEND, getTypeToTransformTo(VT), Op);
2538 }
2539 Ops.push_back(Op);
Evan Chengd61c4822006-05-26 23:13:20 +00002540 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002541 break;
2542 case Expand:
2543 if (VT != MVT::Vector) {
2544 // If this is a large integer, it needs to be broken down into small
2545 // integers. Figure out what the source elt type is and how many small
2546 // integers it is.
2547 MVT::ValueType NVT = getTypeToTransformTo(VT);
2548 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2549 if (NumVals == 2) {
2550 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2551 DAG.getConstant(0, getPointerTy()));
2552 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2553 DAG.getConstant(1, getPointerTy()));
2554 if (!isLittleEndian())
2555 std::swap(Lo, Hi);
2556
2557 Ops.push_back(Lo);
Evan Chengd61c4822006-05-26 23:13:20 +00002558 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002559 Ops.push_back(Hi);
Evan Chengd61c4822006-05-26 23:13:20 +00002560 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002561 } else {
2562 // Value scalarized into many values. Unimp for now.
2563 assert(0 && "Cannot expand i64 -> i16 yet!");
2564 }
2565 } else {
Chris Lattnerda098e72006-05-16 23:39:44 +00002566 // Otherwise, this is a vector type. We only support legal vectors
2567 // right now.
2568 const PackedType *PTy = cast<PackedType>(Args[i].second);
2569 unsigned NumElems = PTy->getNumElements();
2570 const Type *EltTy = PTy->getElementType();
2571
2572 // Figure out if there is a Packed type corresponding to this Vector
2573 // type. If so, convert to the packed type.
2574 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
Chris Lattner1b8daae2006-05-17 20:43:21 +00002575 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2576 // Insert a VBIT_CONVERT of the MVT::Vector type to the packed type.
2577 Op = DAG.getNode(ISD::VBIT_CONVERT, TVT, Op);
2578 Ops.push_back(Op);
Evan Chengd61c4822006-05-26 23:13:20 +00002579 Ops.push_back(DAG.getConstant(isSigned, MVT::i32));
Chris Lattner1b8daae2006-05-17 20:43:21 +00002580 } else {
Chris Lattnerda098e72006-05-16 23:39:44 +00002581 assert(0 && "Don't support illegal by-val vector call args yet!");
2582 abort();
2583 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002584 }
2585 break;
2586 }
2587 }
2588
2589 // Figure out the result value types.
2590 std::vector<MVT::ValueType> RetTys;
2591
2592 if (RetTy != Type::VoidTy) {
2593 MVT::ValueType VT = getValueType(RetTy);
2594 switch (getTypeAction(VT)) {
2595 default: assert(0 && "Unknown type action!");
2596 case Legal:
2597 RetTys.push_back(VT);
2598 break;
2599 case Promote:
2600 RetTys.push_back(getTypeToTransformTo(VT));
2601 break;
2602 case Expand:
2603 if (VT != MVT::Vector) {
2604 // If this is a large integer, it needs to be reassembled from small
2605 // integers. Figure out what the source elt type is and how many small
2606 // integers it is.
2607 MVT::ValueType NVT = getTypeToTransformTo(VT);
2608 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2609 for (unsigned i = 0; i != NumVals; ++i)
2610 RetTys.push_back(NVT);
2611 } else {
Chris Lattnerda098e72006-05-16 23:39:44 +00002612 // Otherwise, this is a vector type. We only support legal vectors
2613 // right now.
2614 const PackedType *PTy = cast<PackedType>(RetTy);
2615 unsigned NumElems = PTy->getNumElements();
2616 const Type *EltTy = PTy->getElementType();
2617
2618 // Figure out if there is a Packed type corresponding to this Vector
2619 // type. If so, convert to the packed type.
2620 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2621 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2622 RetTys.push_back(TVT);
2623 } else {
2624 assert(0 && "Don't support illegal by-val vector call results yet!");
2625 abort();
2626 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002627 }
2628 }
2629 }
2630
2631 RetTys.push_back(MVT::Other); // Always has a chain.
2632
2633 // Finally, create the CALL node.
2634 SDOperand Res = DAG.getNode(ISD::CALL, RetTys, Ops);
2635
2636 // This returns a pair of operands. The first element is the
2637 // return value for the function (if RetTy is not VoidTy). The second
2638 // element is the outgoing token chain.
2639 SDOperand ResVal;
2640 if (RetTys.size() != 1) {
2641 MVT::ValueType VT = getValueType(RetTy);
2642 if (RetTys.size() == 2) {
2643 ResVal = Res;
2644
2645 // If this value was promoted, truncate it down.
2646 if (ResVal.getValueType() != VT) {
Chris Lattnerda098e72006-05-16 23:39:44 +00002647 if (VT == MVT::Vector) {
2648 // Insert a VBITCONVERT to convert from the packed result type to the
2649 // MVT::Vector type.
2650 unsigned NumElems = cast<PackedType>(RetTy)->getNumElements();
2651 const Type *EltTy = cast<PackedType>(RetTy)->getElementType();
2652
2653 // Figure out if there is a Packed type corresponding to this Vector
2654 // type. If so, convert to the packed type.
2655 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2656 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Chris Lattnerda098e72006-05-16 23:39:44 +00002657 // Insert a VBIT_CONVERT of the FORMAL_ARGUMENTS to a
2658 // "N x PTyElementVT" MVT::Vector type.
2659 ResVal = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, ResVal,
Chris Lattnerd202ca42006-05-17 20:49:36 +00002660 DAG.getConstant(NumElems, MVT::i32),
2661 DAG.getValueType(getValueType(EltTy)));
Chris Lattnerda098e72006-05-16 23:39:44 +00002662 } else {
2663 abort();
2664 }
2665 } else if (MVT::isInteger(VT)) {
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002666 unsigned AssertOp = RetTy->isSigned() ?
2667 ISD::AssertSext : ISD::AssertZext;
2668 ResVal = DAG.getNode(AssertOp, ResVal.getValueType(), ResVal,
2669 DAG.getValueType(VT));
2670 ResVal = DAG.getNode(ISD::TRUNCATE, VT, ResVal);
2671 } else {
2672 assert(MVT::isFloatingPoint(VT));
2673 ResVal = DAG.getNode(ISD::FP_ROUND, VT, ResVal);
2674 }
2675 }
2676 } else if (RetTys.size() == 3) {
2677 ResVal = DAG.getNode(ISD::BUILD_PAIR, VT,
2678 Res.getValue(0), Res.getValue(1));
2679
2680 } else {
2681 assert(0 && "Case not handled yet!");
2682 }
2683 }
2684
2685 return std::make_pair(ResVal, Res.getValue(Res.Val->getNumValues()-1));
2686}
2687
2688
2689
Chris Lattner39ae3622005-01-09 00:00:49 +00002690// It is always conservatively correct for llvm.returnaddress and
2691// llvm.frameaddress to return 0.
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002692//
2693// FIXME: Change this to insert a FRAMEADDR/RETURNADDR node, and have that be
2694// expanded to 0 if the target wants.
Chris Lattner39ae3622005-01-09 00:00:49 +00002695std::pair<SDOperand, SDOperand>
2696TargetLowering::LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain,
2697 unsigned Depth, SelectionDAG &DAG) {
2698 return std::make_pair(DAG.getConstant(0, getPointerTy()), Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00002699}
2700
Chris Lattner50381b62005-05-14 05:50:48 +00002701SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00002702 assert(0 && "LowerOperation not implemented for this target!");
2703 abort();
Misha Brukmand3f03e42005-02-17 21:39:27 +00002704 return SDOperand();
Chris Lattner171453a2005-01-16 07:28:41 +00002705}
2706
Nate Begeman0aed7842006-01-28 03:14:31 +00002707SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
2708 SelectionDAG &DAG) {
2709 assert(0 && "CustomPromoteOperation not implemented for this target!");
2710 abort();
2711 return SDOperand();
2712}
2713
Chris Lattner39ae3622005-01-09 00:00:49 +00002714void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) {
2715 unsigned Depth = (unsigned)cast<ConstantUInt>(I.getOperand(1))->getValue();
2716 std::pair<SDOperand,SDOperand> Result =
Chris Lattnera651cf62005-01-17 19:43:36 +00002717 TLI.LowerFrameReturnAddress(isFrame, getRoot(), Depth, DAG);
Chris Lattner39ae3622005-01-09 00:00:49 +00002718 setValue(&I, Result.first);
2719 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00002720}
2721
Evan Cheng74d0aa92006-02-15 21:59:04 +00002722/// getMemsetValue - Vectorized representation of the memset value
Evan Cheng1db92f92006-02-14 08:22:34 +00002723/// operand.
2724static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT,
Evan Chenga47876d2006-02-15 22:12:35 +00002725 SelectionDAG &DAG) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002726 MVT::ValueType CurVT = VT;
2727 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
2728 uint64_t Val = C->getValue() & 255;
2729 unsigned Shift = 8;
2730 while (CurVT != MVT::i8) {
2731 Val = (Val << Shift) | Val;
2732 Shift <<= 1;
2733 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002734 }
2735 return DAG.getConstant(Val, VT);
2736 } else {
2737 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2738 unsigned Shift = 8;
2739 while (CurVT != MVT::i8) {
2740 Value =
2741 DAG.getNode(ISD::OR, VT,
2742 DAG.getNode(ISD::SHL, VT, Value,
2743 DAG.getConstant(Shift, MVT::i8)), Value);
2744 Shift <<= 1;
2745 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002746 }
2747
2748 return Value;
2749 }
2750}
2751
Evan Cheng74d0aa92006-02-15 21:59:04 +00002752/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2753/// used when a memcpy is turned into a memset when the source is a constant
2754/// string ptr.
2755static SDOperand getMemsetStringVal(MVT::ValueType VT,
2756 SelectionDAG &DAG, TargetLowering &TLI,
2757 std::string &Str, unsigned Offset) {
2758 MVT::ValueType CurVT = VT;
2759 uint64_t Val = 0;
2760 unsigned MSB = getSizeInBits(VT) / 8;
2761 if (TLI.isLittleEndian())
2762 Offset = Offset + MSB - 1;
2763 for (unsigned i = 0; i != MSB; ++i) {
2764 Val = (Val << 8) | Str[Offset];
2765 Offset += TLI.isLittleEndian() ? -1 : 1;
2766 }
2767 return DAG.getConstant(Val, VT);
2768}
2769
Evan Cheng1db92f92006-02-14 08:22:34 +00002770/// getMemBasePlusOffset - Returns base and offset node for the
2771static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
2772 SelectionDAG &DAG, TargetLowering &TLI) {
2773 MVT::ValueType VT = Base.getValueType();
2774 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2775}
2776
Evan Chengc4f8eee2006-02-14 20:12:38 +00002777/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
Evan Cheng80e89d72006-02-14 09:11:59 +00002778/// to replace the memset / memcpy is below the threshold. It also returns the
2779/// types of the sequence of memory ops to perform memset / memcpy.
Evan Chengc4f8eee2006-02-14 20:12:38 +00002780static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps,
2781 unsigned Limit, uint64_t Size,
2782 unsigned Align, TargetLowering &TLI) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002783 MVT::ValueType VT;
2784
2785 if (TLI.allowsUnalignedMemoryAccesses()) {
2786 VT = MVT::i64;
2787 } else {
2788 switch (Align & 7) {
2789 case 0:
2790 VT = MVT::i64;
2791 break;
2792 case 4:
2793 VT = MVT::i32;
2794 break;
2795 case 2:
2796 VT = MVT::i16;
2797 break;
2798 default:
2799 VT = MVT::i8;
2800 break;
2801 }
2802 }
2803
Evan Cheng80e89d72006-02-14 09:11:59 +00002804 MVT::ValueType LVT = MVT::i64;
2805 while (!TLI.isTypeLegal(LVT))
2806 LVT = (MVT::ValueType)((unsigned)LVT - 1);
2807 assert(MVT::isInteger(LVT));
Evan Cheng1db92f92006-02-14 08:22:34 +00002808
Evan Cheng80e89d72006-02-14 09:11:59 +00002809 if (VT > LVT)
2810 VT = LVT;
2811
Evan Chengdea72452006-02-14 23:05:54 +00002812 unsigned NumMemOps = 0;
Evan Cheng1db92f92006-02-14 08:22:34 +00002813 while (Size != 0) {
2814 unsigned VTSize = getSizeInBits(VT) / 8;
2815 while (VTSize > Size) {
2816 VT = (MVT::ValueType)((unsigned)VT - 1);
Evan Cheng1db92f92006-02-14 08:22:34 +00002817 VTSize >>= 1;
2818 }
Evan Cheng80e89d72006-02-14 09:11:59 +00002819 assert(MVT::isInteger(VT));
2820
2821 if (++NumMemOps > Limit)
2822 return false;
Evan Cheng1db92f92006-02-14 08:22:34 +00002823 MemOps.push_back(VT);
2824 Size -= VTSize;
2825 }
Evan Cheng80e89d72006-02-14 09:11:59 +00002826
2827 return true;
Evan Cheng1db92f92006-02-14 08:22:34 +00002828}
2829
Chris Lattner7041ee32005-01-11 05:56:49 +00002830void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) {
Evan Cheng1db92f92006-02-14 08:22:34 +00002831 SDOperand Op1 = getValue(I.getOperand(1));
2832 SDOperand Op2 = getValue(I.getOperand(2));
2833 SDOperand Op3 = getValue(I.getOperand(3));
2834 SDOperand Op4 = getValue(I.getOperand(4));
2835 unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue();
2836 if (Align == 0) Align = 1;
2837
2838 if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) {
2839 std::vector<MVT::ValueType> MemOps;
Evan Cheng1db92f92006-02-14 08:22:34 +00002840
2841 // Expand memset / memcpy to a series of load / store ops
2842 // if the size operand falls below a certain threshold.
2843 std::vector<SDOperand> OutChains;
2844 switch (Op) {
Evan Chengac940ab2006-02-14 19:45:56 +00002845 default: break; // Do nothing for now.
Evan Cheng1db92f92006-02-14 08:22:34 +00002846 case ISD::MEMSET: {
Evan Chengc4f8eee2006-02-14 20:12:38 +00002847 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
2848 Size->getValue(), Align, TLI)) {
Evan Cheng80e89d72006-02-14 09:11:59 +00002849 unsigned NumMemOps = MemOps.size();
Evan Cheng1db92f92006-02-14 08:22:34 +00002850 unsigned Offset = 0;
2851 for (unsigned i = 0; i < NumMemOps; i++) {
2852 MVT::ValueType VT = MemOps[i];
2853 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Chenga47876d2006-02-15 22:12:35 +00002854 SDOperand Value = getMemsetValue(Op2, VT, DAG);
Evan Chengc080d6f2006-02-15 01:54:51 +00002855 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, getRoot(),
2856 Value,
Chris Lattner864635a2006-02-22 22:37:12 +00002857 getMemBasePlusOffset(Op1, Offset, DAG, TLI),
2858 DAG.getSrcValue(I.getOperand(1), Offset));
Evan Chengc080d6f2006-02-15 01:54:51 +00002859 OutChains.push_back(Store);
Evan Cheng1db92f92006-02-14 08:22:34 +00002860 Offset += VTSize;
2861 }
Evan Cheng1db92f92006-02-14 08:22:34 +00002862 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002863 break;
Evan Cheng1db92f92006-02-14 08:22:34 +00002864 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002865 case ISD::MEMCPY: {
2866 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemcpy(),
2867 Size->getValue(), Align, TLI)) {
2868 unsigned NumMemOps = MemOps.size();
Evan Chengcffbb512006-02-16 23:11:42 +00002869 unsigned SrcOff = 0, DstOff = 0, SrcDelta = 0;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002870 GlobalAddressSDNode *G = NULL;
2871 std::string Str;
Evan Chengcffbb512006-02-16 23:11:42 +00002872 bool CopyFromStr = false;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002873
2874 if (Op2.getOpcode() == ISD::GlobalAddress)
2875 G = cast<GlobalAddressSDNode>(Op2);
2876 else if (Op2.getOpcode() == ISD::ADD &&
2877 Op2.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2878 Op2.getOperand(1).getOpcode() == ISD::Constant) {
2879 G = cast<GlobalAddressSDNode>(Op2.getOperand(0));
Evan Chengcffbb512006-02-16 23:11:42 +00002880 SrcDelta = cast<ConstantSDNode>(Op2.getOperand(1))->getValue();
Evan Cheng74d0aa92006-02-15 21:59:04 +00002881 }
2882 if (G) {
2883 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Chengcffbb512006-02-16 23:11:42 +00002884 if (GV) {
Evan Cheng09371032006-03-10 23:52:03 +00002885 Str = GV->getStringValue(false);
Evan Chengcffbb512006-02-16 23:11:42 +00002886 if (!Str.empty()) {
2887 CopyFromStr = true;
2888 SrcOff += SrcDelta;
2889 }
2890 }
Evan Cheng74d0aa92006-02-15 21:59:04 +00002891 }
2892
Evan Chengc080d6f2006-02-15 01:54:51 +00002893 for (unsigned i = 0; i < NumMemOps; i++) {
2894 MVT::ValueType VT = MemOps[i];
2895 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Cheng74d0aa92006-02-15 21:59:04 +00002896 SDOperand Value, Chain, Store;
2897
Evan Chengcffbb512006-02-16 23:11:42 +00002898 if (CopyFromStr) {
Evan Cheng74d0aa92006-02-15 21:59:04 +00002899 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
2900 Chain = getRoot();
2901 Store =
2902 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2903 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2904 DAG.getSrcValue(I.getOperand(1), DstOff));
2905 } else {
2906 Value = DAG.getLoad(VT, getRoot(),
2907 getMemBasePlusOffset(Op2, SrcOff, DAG, TLI),
2908 DAG.getSrcValue(I.getOperand(2), SrcOff));
2909 Chain = Value.getValue(1);
2910 Store =
2911 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2912 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2913 DAG.getSrcValue(I.getOperand(1), DstOff));
2914 }
Evan Chengc080d6f2006-02-15 01:54:51 +00002915 OutChains.push_back(Store);
Evan Cheng74d0aa92006-02-15 21:59:04 +00002916 SrcOff += VTSize;
2917 DstOff += VTSize;
Evan Chengc080d6f2006-02-15 01:54:51 +00002918 }
2919 }
2920 break;
2921 }
2922 }
2923
2924 if (!OutChains.empty()) {
2925 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains));
2926 return;
Evan Cheng1db92f92006-02-14 08:22:34 +00002927 }
2928 }
2929
Chris Lattner7041ee32005-01-11 05:56:49 +00002930 std::vector<SDOperand> Ops;
Chris Lattnera651cf62005-01-17 19:43:36 +00002931 Ops.push_back(getRoot());
Evan Cheng1db92f92006-02-14 08:22:34 +00002932 Ops.push_back(Op1);
2933 Ops.push_back(Op2);
2934 Ops.push_back(Op3);
2935 Ops.push_back(Op4);
Chris Lattner7041ee32005-01-11 05:56:49 +00002936 DAG.setRoot(DAG.getNode(Op, MVT::Other, Ops));
Chris Lattner1c08c712005-01-07 07:47:53 +00002937}
2938
Chris Lattner7041ee32005-01-11 05:56:49 +00002939//===----------------------------------------------------------------------===//
2940// SelectionDAGISel code
2941//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00002942
2943unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) {
2944 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
2945}
2946
Chris Lattner495a0b52005-08-17 06:37:43 +00002947void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner36b708f2005-08-18 17:35:14 +00002948 // FIXME: we only modify the CFG to split critical edges. This
2949 // updates dom and loop info.
Chris Lattner495a0b52005-08-17 06:37:43 +00002950}
Chris Lattner1c08c712005-01-07 07:47:53 +00002951
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002952
Chris Lattner90323642006-05-05 21:17:49 +00002953/// OptimizeNoopCopyExpression - We have determined that the specified cast
2954/// instruction is a noop copy (e.g. it's casting from one pointer type to
2955/// another, int->uint, or int->sbyte on PPC.
2956///
2957/// Return true if any changes are made.
2958static bool OptimizeNoopCopyExpression(CastInst *CI) {
2959 BasicBlock *DefBB = CI->getParent();
2960
2961 /// InsertedCasts - Only insert a cast in each block once.
2962 std::map<BasicBlock*, CastInst*> InsertedCasts;
2963
2964 bool MadeChange = false;
2965 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
2966 UI != E; ) {
2967 Use &TheUse = UI.getUse();
2968 Instruction *User = cast<Instruction>(*UI);
2969
2970 // Figure out which BB this cast is used in. For PHI's this is the
2971 // appropriate predecessor block.
2972 BasicBlock *UserBB = User->getParent();
2973 if (PHINode *PN = dyn_cast<PHINode>(User)) {
2974 unsigned OpVal = UI.getOperandNo()/2;
2975 UserBB = PN->getIncomingBlock(OpVal);
2976 }
2977
2978 // Preincrement use iterator so we don't invalidate it.
2979 ++UI;
2980
2981 // If this user is in the same block as the cast, don't change the cast.
2982 if (UserBB == DefBB) continue;
2983
2984 // If we have already inserted a cast into this block, use it.
2985 CastInst *&InsertedCast = InsertedCasts[UserBB];
2986
2987 if (!InsertedCast) {
2988 BasicBlock::iterator InsertPt = UserBB->begin();
2989 while (isa<PHINode>(InsertPt)) ++InsertPt;
2990
2991 InsertedCast =
2992 new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
2993 MadeChange = true;
2994 }
2995
2996 // Replace a use of the cast with a use of the new casat.
2997 TheUse = InsertedCast;
2998 }
2999
3000 // If we removed all uses, nuke the cast.
3001 if (CI->use_empty())
3002 CI->eraseFromParent();
3003
3004 return MadeChange;
3005}
3006
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003007/// InsertGEPComputeCode - Insert code into BB to compute Ptr+PtrOffset,
3008/// casting to the type of GEPI.
Chris Lattnerf0df8822006-05-06 09:10:37 +00003009static Instruction *InsertGEPComputeCode(Instruction *&V, BasicBlock *BB,
3010 Instruction *GEPI, Value *Ptr,
3011 Value *PtrOffset) {
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003012 if (V) return V; // Already computed.
3013
3014 BasicBlock::iterator InsertPt;
3015 if (BB == GEPI->getParent()) {
3016 // If insert into the GEP's block, insert right after the GEP.
3017 InsertPt = GEPI;
3018 ++InsertPt;
3019 } else {
3020 // Otherwise, insert at the top of BB, after any PHI nodes
3021 InsertPt = BB->begin();
3022 while (isa<PHINode>(InsertPt)) ++InsertPt;
3023 }
3024
Chris Lattnerc78b0b72005-12-08 08:00:12 +00003025 // If Ptr is itself a cast, but in some other BB, emit a copy of the cast into
3026 // BB so that there is only one value live across basic blocks (the cast
3027 // operand).
3028 if (CastInst *CI = dyn_cast<CastInst>(Ptr))
3029 if (CI->getParent() != BB && isa<PointerType>(CI->getOperand(0)->getType()))
3030 Ptr = new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
3031
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003032 // Add the offset, cast it to the right type.
3033 Ptr = BinaryOperator::createAdd(Ptr, PtrOffset, "", InsertPt);
Chris Lattnerf0df8822006-05-06 09:10:37 +00003034 return V = new CastInst(Ptr, GEPI->getType(), "", InsertPt);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003035}
3036
Chris Lattner90323642006-05-05 21:17:49 +00003037/// ReplaceUsesOfGEPInst - Replace all uses of RepPtr with inserted code to
3038/// compute its value. The RepPtr value can be computed with Ptr+PtrOffset. One
3039/// trivial way of doing this would be to evaluate Ptr+PtrOffset in RepPtr's
3040/// block, then ReplaceAllUsesWith'ing everything. However, we would prefer to
3041/// sink PtrOffset into user blocks where doing so will likely allow us to fold
3042/// the constant add into a load or store instruction. Additionally, if a user
3043/// is a pointer-pointer cast, we look through it to find its users.
3044static void ReplaceUsesOfGEPInst(Instruction *RepPtr, Value *Ptr,
3045 Constant *PtrOffset, BasicBlock *DefBB,
3046 GetElementPtrInst *GEPI,
Chris Lattnerf0df8822006-05-06 09:10:37 +00003047 std::map<BasicBlock*,Instruction*> &InsertedExprs) {
Chris Lattner90323642006-05-05 21:17:49 +00003048 while (!RepPtr->use_empty()) {
3049 Instruction *User = cast<Instruction>(RepPtr->use_back());
Chris Lattner7e598092006-05-05 01:04:50 +00003050
Chris Lattner90323642006-05-05 21:17:49 +00003051 // If the user is a Pointer-Pointer cast, recurse.
3052 if (isa<CastInst>(User) && isa<PointerType>(User->getType())) {
3053 ReplaceUsesOfGEPInst(User, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattner7e598092006-05-05 01:04:50 +00003054
Chris Lattner90323642006-05-05 21:17:49 +00003055 // Drop the use of RepPtr. The cast is dead. Don't delete it now, else we
3056 // could invalidate an iterator.
3057 User->setOperand(0, UndefValue::get(RepPtr->getType()));
3058 continue;
Chris Lattner7e598092006-05-05 01:04:50 +00003059 }
3060
Chris Lattner90323642006-05-05 21:17:49 +00003061 // If this is a load of the pointer, or a store through the pointer, emit
3062 // the increment into the load/store block.
Chris Lattnerf0df8822006-05-06 09:10:37 +00003063 Instruction *NewVal;
Chris Lattner90323642006-05-05 21:17:49 +00003064 if (isa<LoadInst>(User) ||
3065 (isa<StoreInst>(User) && User->getOperand(0) != RepPtr)) {
3066 NewVal = InsertGEPComputeCode(InsertedExprs[User->getParent()],
3067 User->getParent(), GEPI,
3068 Ptr, PtrOffset);
3069 } else {
3070 // If this use is not foldable into the addressing mode, use a version
3071 // emitted in the GEP block.
3072 NewVal = InsertGEPComputeCode(InsertedExprs[DefBB], DefBB, GEPI,
3073 Ptr, PtrOffset);
3074 }
3075
Chris Lattnerf0df8822006-05-06 09:10:37 +00003076 if (GEPI->getType() != RepPtr->getType()) {
3077 BasicBlock::iterator IP = NewVal;
3078 ++IP;
3079 NewVal = new CastInst(NewVal, RepPtr->getType(), "", IP);
3080 }
Chris Lattner90323642006-05-05 21:17:49 +00003081 User->replaceUsesOfWith(RepPtr, NewVal);
Chris Lattner7e598092006-05-05 01:04:50 +00003082 }
3083}
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003084
Chris Lattner90323642006-05-05 21:17:49 +00003085
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003086/// OptimizeGEPExpression - Since we are doing basic-block-at-a-time instruction
3087/// selection, we want to be a bit careful about some things. In particular, if
3088/// we have a GEP instruction that is used in a different block than it is
3089/// defined, the addressing expression of the GEP cannot be folded into loads or
3090/// stores that use it. In this case, decompose the GEP and move constant
3091/// indices into blocks that use it.
Chris Lattner90323642006-05-05 21:17:49 +00003092static bool OptimizeGEPExpression(GetElementPtrInst *GEPI,
Owen Andersona69571c2006-05-03 01:29:57 +00003093 const TargetData *TD) {
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003094 // If this GEP is only used inside the block it is defined in, there is no
3095 // need to rewrite it.
3096 bool isUsedOutsideDefBB = false;
3097 BasicBlock *DefBB = GEPI->getParent();
3098 for (Value::use_iterator UI = GEPI->use_begin(), E = GEPI->use_end();
3099 UI != E; ++UI) {
3100 if (cast<Instruction>(*UI)->getParent() != DefBB) {
3101 isUsedOutsideDefBB = true;
3102 break;
3103 }
3104 }
Chris Lattner90323642006-05-05 21:17:49 +00003105 if (!isUsedOutsideDefBB) return false;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003106
3107 // If this GEP has no non-zero constant indices, there is nothing we can do,
3108 // ignore it.
3109 bool hasConstantIndex = false;
Chris Lattner90323642006-05-05 21:17:49 +00003110 bool hasVariableIndex = false;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003111 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3112 E = GEPI->op_end(); OI != E; ++OI) {
Chris Lattner90323642006-05-05 21:17:49 +00003113 if (ConstantInt *CI = dyn_cast<ConstantInt>(*OI)) {
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003114 if (CI->getRawValue()) {
3115 hasConstantIndex = true;
3116 break;
3117 }
Chris Lattner90323642006-05-05 21:17:49 +00003118 } else {
3119 hasVariableIndex = true;
3120 }
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003121 }
Chris Lattner90323642006-05-05 21:17:49 +00003122
3123 // If this is a "GEP X, 0, 0, 0", turn this into a cast.
3124 if (!hasConstantIndex && !hasVariableIndex) {
3125 Value *NC = new CastInst(GEPI->getOperand(0), GEPI->getType(),
3126 GEPI->getName(), GEPI);
3127 GEPI->replaceAllUsesWith(NC);
3128 GEPI->eraseFromParent();
3129 return true;
3130 }
3131
Chris Lattner3802c252005-12-11 09:05:13 +00003132 // If this is a GEP &Alloca, 0, 0, forward subst the frame index into uses.
Chris Lattner90323642006-05-05 21:17:49 +00003133 if (!hasConstantIndex && !isa<AllocaInst>(GEPI->getOperand(0)))
3134 return false;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003135
3136 // Otherwise, decompose the GEP instruction into multiplies and adds. Sum the
3137 // constant offset (which we now know is non-zero) and deal with it later.
3138 uint64_t ConstantOffset = 0;
Owen Andersona69571c2006-05-03 01:29:57 +00003139 const Type *UIntPtrTy = TD->getIntPtrType();
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003140 Value *Ptr = new CastInst(GEPI->getOperand(0), UIntPtrTy, "", GEPI);
3141 const Type *Ty = GEPI->getOperand(0)->getType();
3142
3143 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3144 E = GEPI->op_end(); OI != E; ++OI) {
3145 Value *Idx = *OI;
3146 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
3147 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
3148 if (Field)
Owen Andersona69571c2006-05-03 01:29:57 +00003149 ConstantOffset += TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003150 Ty = StTy->getElementType(Field);
3151 } else {
3152 Ty = cast<SequentialType>(Ty)->getElementType();
3153
3154 // Handle constant subscripts.
3155 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
3156 if (CI->getRawValue() == 0) continue;
3157
3158 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Andersona69571c2006-05-03 01:29:57 +00003159 ConstantOffset += (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003160 else
Owen Andersona69571c2006-05-03 01:29:57 +00003161 ConstantOffset+=TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003162 continue;
3163 }
3164
3165 // Ptr = Ptr + Idx * ElementSize;
3166
3167 // Cast Idx to UIntPtrTy if needed.
3168 Idx = new CastInst(Idx, UIntPtrTy, "", GEPI);
3169
Owen Andersona69571c2006-05-03 01:29:57 +00003170 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003171 // Mask off bits that should not be set.
3172 ElementSize &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3173 Constant *SizeCst = ConstantUInt::get(UIntPtrTy, ElementSize);
3174
3175 // Multiply by the element size and add to the base.
3176 Idx = BinaryOperator::createMul(Idx, SizeCst, "", GEPI);
3177 Ptr = BinaryOperator::createAdd(Ptr, Idx, "", GEPI);
3178 }
3179 }
3180
3181 // Make sure that the offset fits in uintptr_t.
3182 ConstantOffset &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3183 Constant *PtrOffset = ConstantUInt::get(UIntPtrTy, ConstantOffset);
3184
3185 // Okay, we have now emitted all of the variable index parts to the BB that
3186 // the GEP is defined in. Loop over all of the using instructions, inserting
3187 // an "add Ptr, ConstantOffset" into each block that uses it and update the
Chris Lattnerc78b0b72005-12-08 08:00:12 +00003188 // instruction to use the newly computed value, making GEPI dead. When the
3189 // user is a load or store instruction address, we emit the add into the user
3190 // block, otherwise we use a canonical version right next to the gep (these
3191 // won't be foldable as addresses, so we might as well share the computation).
3192
Chris Lattnerf0df8822006-05-06 09:10:37 +00003193 std::map<BasicBlock*,Instruction*> InsertedExprs;
Chris Lattner90323642006-05-05 21:17:49 +00003194 ReplaceUsesOfGEPInst(GEPI, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003195
3196 // Finally, the GEP is dead, remove it.
3197 GEPI->eraseFromParent();
Chris Lattner90323642006-05-05 21:17:49 +00003198
3199 return true;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003200}
3201
Chris Lattner1c08c712005-01-07 07:47:53 +00003202bool SelectionDAGISel::runOnFunction(Function &Fn) {
3203 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
3204 RegMap = MF.getSSARegMap();
3205 DEBUG(std::cerr << "\n\n\n=== " << Fn.getName() << "\n");
3206
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003207 // First, split all critical edges for PHI nodes with incoming values that are
3208 // constants, this way the load of the constant into a vreg will not be placed
3209 // into MBBs that are used some other way.
3210 //
Chris Lattner7e598092006-05-05 01:04:50 +00003211 // In this pass we also look for GEP and cast instructions that are used
3212 // across basic blocks and rewrite them to improve basic-block-at-a-time
3213 // selection.
3214 //
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003215 //
Chris Lattner90323642006-05-05 21:17:49 +00003216 bool MadeChange = true;
3217 while (MadeChange) {
3218 MadeChange = false;
Chris Lattner36b708f2005-08-18 17:35:14 +00003219 for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
3220 PHINode *PN;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003221 BasicBlock::iterator BBI;
3222 for (BBI = BB->begin(); (PN = dyn_cast<PHINode>(BBI)); ++BBI)
Chris Lattner36b708f2005-08-18 17:35:14 +00003223 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3224 if (isa<Constant>(PN->getIncomingValue(i)))
3225 SplitCriticalEdge(PN->getIncomingBlock(i), BB);
Chris Lattnerc88d8e92005-12-05 07:10:48 +00003226
Chris Lattner7e598092006-05-05 01:04:50 +00003227 for (BasicBlock::iterator E = BB->end(); BBI != E; ) {
3228 Instruction *I = BBI++;
3229 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
Chris Lattner90323642006-05-05 21:17:49 +00003230 MadeChange |= OptimizeGEPExpression(GEPI, TLI.getTargetData());
Chris Lattner7e598092006-05-05 01:04:50 +00003231 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
3232 // If this is a noop copy, sink it into user blocks to reduce the number
3233 // of virtual registers that must be created and coallesced.
3234 MVT::ValueType SrcVT = TLI.getValueType(CI->getOperand(0)->getType());
3235 MVT::ValueType DstVT = TLI.getValueType(CI->getType());
3236
3237 // This is an fp<->int conversion?
3238 if (MVT::isInteger(SrcVT) != MVT::isInteger(DstVT))
3239 continue;
3240
3241 // If this is an extension, it will be a zero or sign extension, which
3242 // isn't a noop.
3243 if (SrcVT < DstVT) continue;
3244
3245 // If these values will be promoted, find out what they will be promoted
3246 // to. This helps us consider truncates on PPC as noop copies when they
3247 // are.
3248 if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote)
3249 SrcVT = TLI.getTypeToTransformTo(SrcVT);
3250 if (TLI.getTypeAction(DstVT) == TargetLowering::Promote)
3251 DstVT = TLI.getTypeToTransformTo(DstVT);
3252
3253 // If, after promotion, these are the same types, this is a noop copy.
3254 if (SrcVT == DstVT)
Chris Lattner90323642006-05-05 21:17:49 +00003255 MadeChange |= OptimizeNoopCopyExpression(CI);
Chris Lattner7e598092006-05-05 01:04:50 +00003256 }
3257 }
Chris Lattner36b708f2005-08-18 17:35:14 +00003258 }
Chris Lattner90323642006-05-05 21:17:49 +00003259 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003260
Chris Lattner1c08c712005-01-07 07:47:53 +00003261 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
3262
3263 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
3264 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00003265
Chris Lattner1c08c712005-01-07 07:47:53 +00003266 return true;
3267}
3268
3269
Chris Lattnerddb870b2005-01-13 17:59:43 +00003270SDOperand SelectionDAGISel::
3271CopyValueToVirtualRegister(SelectionDAGLowering &SDL, Value *V, unsigned Reg) {
Chris Lattnerf1fdaca2005-01-11 22:03:46 +00003272 SDOperand Op = SDL.getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00003273 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003274 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00003275 "Copy from a reg to the same reg!");
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003276
3277 // If this type is not legal, we must make sure to not create an invalid
3278 // register use.
3279 MVT::ValueType SrcVT = Op.getValueType();
3280 MVT::ValueType DestVT = TLI.getTypeToTransformTo(SrcVT);
3281 SelectionDAG &DAG = SDL.DAG;
3282 if (SrcVT == DestVT) {
3283 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
Chris Lattner1c6191f2006-03-21 19:20:37 +00003284 } else if (SrcVT == MVT::Vector) {
Chris Lattner70c2a612006-03-31 02:06:56 +00003285 // Handle copies from generic vectors to registers.
3286 MVT::ValueType PTyElementVT, PTyLegalElementVT;
3287 unsigned NE = TLI.getPackedTypeBreakdown(cast<PackedType>(V->getType()),
3288 PTyElementVT, PTyLegalElementVT);
Chris Lattner1c6191f2006-03-21 19:20:37 +00003289
Chris Lattner70c2a612006-03-31 02:06:56 +00003290 // Insert a VBIT_CONVERT of the input vector to a "N x PTyElementVT"
3291 // MVT::Vector type.
3292 Op = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Op,
3293 DAG.getConstant(NE, MVT::i32),
3294 DAG.getValueType(PTyElementVT));
Chris Lattner1c6191f2006-03-21 19:20:37 +00003295
Chris Lattner70c2a612006-03-31 02:06:56 +00003296 // Loop over all of the elements of the resultant vector,
3297 // VEXTRACT_VECTOR_ELT'ing them, converting them to PTyLegalElementVT, then
3298 // copying them into output registers.
3299 std::vector<SDOperand> OutChains;
3300 SDOperand Root = SDL.getRoot();
3301 for (unsigned i = 0; i != NE; ++i) {
3302 SDOperand Elt = DAG.getNode(ISD::VEXTRACT_VECTOR_ELT, PTyElementVT,
3303 Op, DAG.getConstant(i, MVT::i32));
3304 if (PTyElementVT == PTyLegalElementVT) {
3305 // Elements are legal.
3306 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3307 } else if (PTyLegalElementVT > PTyElementVT) {
3308 // Elements are promoted.
3309 if (MVT::isFloatingPoint(PTyLegalElementVT))
3310 Elt = DAG.getNode(ISD::FP_EXTEND, PTyLegalElementVT, Elt);
3311 else
3312 Elt = DAG.getNode(ISD::ANY_EXTEND, PTyLegalElementVT, Elt);
3313 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3314 } else {
3315 // Elements are expanded.
3316 // The src value is expanded into multiple registers.
3317 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
3318 Elt, DAG.getConstant(0, MVT::i32));
3319 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
3320 Elt, DAG.getConstant(1, MVT::i32));
3321 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Lo));
3322 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Hi));
3323 }
Chris Lattner1c6191f2006-03-21 19:20:37 +00003324 }
Chris Lattner70c2a612006-03-31 02:06:56 +00003325 return DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003326 } else if (SrcVT < DestVT) {
3327 // The src value is promoted to the register.
Chris Lattnerfae59b92005-08-17 06:06:25 +00003328 if (MVT::isFloatingPoint(SrcVT))
3329 Op = DAG.getNode(ISD::FP_EXTEND, DestVT, Op);
3330 else
Chris Lattnerfab08872005-09-02 00:19:37 +00003331 Op = DAG.getNode(ISD::ANY_EXTEND, DestVT, Op);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003332 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
3333 } else {
3334 // The src value is expanded into multiple registers.
3335 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
3336 Op, DAG.getConstant(0, MVT::i32));
3337 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
3338 Op, DAG.getConstant(1, MVT::i32));
3339 Op = DAG.getCopyToReg(SDL.getRoot(), Reg, Lo);
3340 return DAG.getCopyToReg(Op, Reg+1, Hi);
3341 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003342}
3343
Chris Lattner068a81e2005-01-17 17:15:02 +00003344void SelectionDAGISel::
3345LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL,
3346 std::vector<SDOperand> &UnorderedChains) {
3347 // If this is the entry block, emit arguments.
3348 Function &F = *BB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00003349 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattnerbf209482005-10-30 19:42:35 +00003350 SDOperand OldRoot = SDL.DAG.getRoot();
3351 std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
Chris Lattner068a81e2005-01-17 17:15:02 +00003352
Chris Lattnerbf209482005-10-30 19:42:35 +00003353 unsigned a = 0;
3354 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
3355 AI != E; ++AI, ++a)
3356 if (!AI->use_empty()) {
3357 SDL.setValue(AI, Args[a]);
Evan Chengf7179bb2006-04-27 08:29:42 +00003358
Chris Lattnerbf209482005-10-30 19:42:35 +00003359 // If this argument is live outside of the entry block, insert a copy from
3360 // whereever we got it to the vreg that other BB's will reference it as.
3361 if (FuncInfo.ValueMap.count(AI)) {
3362 SDOperand Copy =
3363 CopyValueToVirtualRegister(SDL, AI, FuncInfo.ValueMap[AI]);
3364 UnorderedChains.push_back(Copy);
3365 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00003366 }
Chris Lattnerbf209482005-10-30 19:42:35 +00003367
Chris Lattnerbf209482005-10-30 19:42:35 +00003368 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner96645412006-05-16 06:10:58 +00003369 // FIXME: this should insert code into the DAG!
Chris Lattnerbf209482005-10-30 19:42:35 +00003370 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00003371}
3372
Chris Lattner1c08c712005-01-07 07:47:53 +00003373void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
3374 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00003375 FunctionLoweringInfo &FuncInfo) {
Chris Lattner1c08c712005-01-07 07:47:53 +00003376 SelectionDAGLowering SDL(DAG, TLI, FuncInfo);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003377
3378 std::vector<SDOperand> UnorderedChains;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003379
Chris Lattnerbf209482005-10-30 19:42:35 +00003380 // Lower any arguments needed in this block if this is the entry block.
3381 if (LLVMBB == &LLVMBB->getParent()->front())
3382 LowerArguments(LLVMBB, SDL, UnorderedChains);
Chris Lattner1c08c712005-01-07 07:47:53 +00003383
3384 BB = FuncInfo.MBBMap[LLVMBB];
3385 SDL.setCurrentBasicBlock(BB);
3386
3387 // Lower all of the non-terminator instructions.
3388 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
3389 I != E; ++I)
3390 SDL.visit(*I);
Nate Begemanf15485a2006-03-27 01:32:24 +00003391
Chris Lattner1c08c712005-01-07 07:47:53 +00003392 // Ensure that all instructions which are used outside of their defining
3393 // blocks are available as virtual registers.
3394 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Chris Lattnerf1fdaca2005-01-11 22:03:46 +00003395 if (!I->use_empty() && !isa<PHINode>(I)) {
Chris Lattneree749d72005-01-09 01:16:24 +00003396 std::map<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00003397 if (VMI != FuncInfo.ValueMap.end())
Chris Lattnerddb870b2005-01-13 17:59:43 +00003398 UnorderedChains.push_back(
3399 CopyValueToVirtualRegister(SDL, I, VMI->second));
Chris Lattner1c08c712005-01-07 07:47:53 +00003400 }
3401
3402 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
3403 // ensure constants are generated when needed. Remember the virtual registers
3404 // that need to be added to the Machine PHI nodes as input. We cannot just
3405 // directly add them, because expansion might result in multiple MBB's for one
3406 // BB. As such, the start of the BB might correspond to a different MBB than
3407 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00003408 //
Chris Lattner1c08c712005-01-07 07:47:53 +00003409
3410 // Emit constants only once even if used by multiple PHI nodes.
3411 std::map<Constant*, unsigned> ConstantsOut;
3412
3413 // Check successor nodes PHI nodes that expect a constant to be available from
3414 // this block.
3415 TerminatorInst *TI = LLVMBB->getTerminator();
3416 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
3417 BasicBlock *SuccBB = TI->getSuccessor(succ);
3418 MachineBasicBlock::iterator MBBI = FuncInfo.MBBMap[SuccBB]->begin();
3419 PHINode *PN;
3420
3421 // At this point we know that there is a 1-1 correspondence between LLVM PHI
3422 // nodes and Machine PHI nodes, but the incoming operands have not been
3423 // emitted yet.
3424 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattnerf44fd882005-01-07 21:34:19 +00003425 (PN = dyn_cast<PHINode>(I)); ++I)
3426 if (!PN->use_empty()) {
3427 unsigned Reg;
3428 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
3429 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
3430 unsigned &RegOut = ConstantsOut[C];
3431 if (RegOut == 0) {
3432 RegOut = FuncInfo.CreateRegForValue(C);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003433 UnorderedChains.push_back(
3434 CopyValueToVirtualRegister(SDL, C, RegOut));
Chris Lattnerf44fd882005-01-07 21:34:19 +00003435 }
3436 Reg = RegOut;
3437 } else {
3438 Reg = FuncInfo.ValueMap[PHIOp];
Chris Lattneree749d72005-01-09 01:16:24 +00003439 if (Reg == 0) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003440 assert(isa<AllocaInst>(PHIOp) &&
Chris Lattneree749d72005-01-09 01:16:24 +00003441 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
3442 "Didn't codegen value into a register!??");
3443 Reg = FuncInfo.CreateRegForValue(PHIOp);
Chris Lattnerddb870b2005-01-13 17:59:43 +00003444 UnorderedChains.push_back(
3445 CopyValueToVirtualRegister(SDL, PHIOp, Reg));
Chris Lattneree749d72005-01-09 01:16:24 +00003446 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003447 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003448
Chris Lattnerf44fd882005-01-07 21:34:19 +00003449 // Remember that this register needs to added to the machine PHI node as
3450 // the input for this MBB.
Chris Lattner7e021512006-03-31 02:12:18 +00003451 MVT::ValueType VT = TLI.getValueType(PN->getType());
3452 unsigned NumElements;
3453 if (VT != MVT::Vector)
3454 NumElements = TLI.getNumElements(VT);
3455 else {
3456 MVT::ValueType VT1,VT2;
3457 NumElements =
3458 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
3459 VT1, VT2);
3460 }
Chris Lattnerf44fd882005-01-07 21:34:19 +00003461 for (unsigned i = 0, e = NumElements; i != e; ++i)
3462 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
Chris Lattner1c08c712005-01-07 07:47:53 +00003463 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003464 }
3465 ConstantsOut.clear();
3466
Chris Lattnerddb870b2005-01-13 17:59:43 +00003467 // Turn all of the unordered chains into one factored node.
Chris Lattner5a6c6d92005-01-13 19:53:14 +00003468 if (!UnorderedChains.empty()) {
Chris Lattner7436b572005-11-09 05:03:03 +00003469 SDOperand Root = SDL.getRoot();
3470 if (Root.getOpcode() != ISD::EntryToken) {
3471 unsigned i = 0, e = UnorderedChains.size();
3472 for (; i != e; ++i) {
3473 assert(UnorderedChains[i].Val->getNumOperands() > 1);
3474 if (UnorderedChains[i].Val->getOperand(0) == Root)
3475 break; // Don't add the root if we already indirectly depend on it.
3476 }
3477
3478 if (i == e)
3479 UnorderedChains.push_back(Root);
3480 }
Chris Lattnerddb870b2005-01-13 17:59:43 +00003481 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, UnorderedChains));
3482 }
3483
Chris Lattner1c08c712005-01-07 07:47:53 +00003484 // Lower the terminator after the copies are emitted.
3485 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00003486
Nate Begemanf15485a2006-03-27 01:32:24 +00003487 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00003488 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00003489 SwitchCases.clear();
3490 SwitchCases = SDL.SwitchCases;
Nate Begeman37efe672006-04-22 18:53:45 +00003491 JT = SDL.JT;
Nate Begemanf15485a2006-03-27 01:32:24 +00003492
Chris Lattnera651cf62005-01-17 19:43:36 +00003493 // Make sure the root of the DAG is up-to-date.
3494 DAG.setRoot(SDL.getRoot());
Chris Lattner1c08c712005-01-07 07:47:53 +00003495}
3496
Nate Begemanf15485a2006-03-27 01:32:24 +00003497void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Chris Lattneraf21d552005-10-10 16:47:10 +00003498 // Run the DAG combiner in pre-legalize mode.
3499 DAG.Combine(false);
Nate Begeman2300f552005-09-07 00:15:36 +00003500
Chris Lattner1c08c712005-01-07 07:47:53 +00003501 DEBUG(std::cerr << "Lowered selection DAG:\n");
3502 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003503
Chris Lattner1c08c712005-01-07 07:47:53 +00003504 // Second step, hack on the DAG until it only uses operations and types that
3505 // the target supports.
Chris Lattnerac9dc082005-01-23 04:36:26 +00003506 DAG.Legalize();
Nate Begemanf15485a2006-03-27 01:32:24 +00003507
Chris Lattner1c08c712005-01-07 07:47:53 +00003508 DEBUG(std::cerr << "Legalized selection DAG:\n");
3509 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003510
Chris Lattneraf21d552005-10-10 16:47:10 +00003511 // Run the DAG combiner in post-legalize mode.
3512 DAG.Combine(true);
Nate Begeman2300f552005-09-07 00:15:36 +00003513
Evan Chenga9c20912006-01-21 02:32:06 +00003514 if (ViewISelDAGs) DAG.viewGraph();
Evan Cheng552c4a82006-04-28 02:09:19 +00003515
Chris Lattnera33ef482005-03-30 01:10:47 +00003516 // Third, instruction select all of the operations to machine code, adding the
3517 // code to the MachineBasicBlock.
Chris Lattner1c08c712005-01-07 07:47:53 +00003518 InstructionSelectBasicBlock(DAG);
Nate Begemanf15485a2006-03-27 01:32:24 +00003519
Chris Lattner1c08c712005-01-07 07:47:53 +00003520 DEBUG(std::cerr << "Selected machine code:\n");
3521 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00003522}
Chris Lattner1c08c712005-01-07 07:47:53 +00003523
Nate Begemanf15485a2006-03-27 01:32:24 +00003524void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
3525 FunctionLoweringInfo &FuncInfo) {
3526 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
3527 {
3528 SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3529 CurDAG = &DAG;
3530
3531 // First step, lower LLVM code to some DAG. This DAG may use operations and
3532 // types that are not supported by the target.
3533 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
3534
3535 // Second step, emit the lowered DAG as machine code.
3536 CodeGenAndEmitDAG(DAG);
3537 }
3538
Chris Lattnera33ef482005-03-30 01:10:47 +00003539 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +00003540 // PHI nodes in successors.
Nate Begeman37efe672006-04-22 18:53:45 +00003541 if (SwitchCases.empty() && JT.Reg == 0) {
Nate Begemanf15485a2006-03-27 01:32:24 +00003542 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
3543 MachineInstr *PHI = PHINodesToUpdate[i].first;
3544 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3545 "This is not a machine PHI node that we are updating!");
3546 PHI->addRegOperand(PHINodesToUpdate[i].second);
3547 PHI->addMachineBasicBlockOperand(BB);
3548 }
3549 return;
Chris Lattner1c08c712005-01-07 07:47:53 +00003550 }
Nate Begemanf15485a2006-03-27 01:32:24 +00003551
Nate Begeman9453eea2006-04-23 06:26:20 +00003552 // If the JumpTable record is filled in, then we need to emit a jump table.
3553 // Updating the PHI nodes is tricky in this case, since we need to determine
3554 // whether the PHI is a successor of the range check MBB or the jump table MBB
Nate Begeman37efe672006-04-22 18:53:45 +00003555 if (JT.Reg) {
3556 assert(SwitchCases.empty() && "Cannot have jump table and lowered switch");
3557 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3558 CurDAG = &SDAG;
3559 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
Nate Begeman9453eea2006-04-23 06:26:20 +00003560 MachineBasicBlock *RangeBB = BB;
Nate Begeman37efe672006-04-22 18:53:45 +00003561 // Set the current basic block to the mbb we wish to insert the code into
3562 BB = JT.MBB;
3563 SDL.setCurrentBasicBlock(BB);
3564 // Emit the code
3565 SDL.visitJumpTable(JT);
3566 SDAG.setRoot(SDL.getRoot());
3567 CodeGenAndEmitDAG(SDAG);
3568 // Update PHI Nodes
3569 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3570 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3571 MachineBasicBlock *PHIBB = PHI->getParent();
3572 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3573 "This is not a machine PHI node that we are updating!");
Nate Begemanf4360a42006-05-03 03:48:02 +00003574 if (PHIBB == JT.Default) {
Nate Begeman37efe672006-04-22 18:53:45 +00003575 PHI->addRegOperand(PHINodesToUpdate[pi].second);
Nate Begemanf4360a42006-05-03 03:48:02 +00003576 PHI->addMachineBasicBlockOperand(RangeBB);
3577 }
3578 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
3579 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3580 PHI->addMachineBasicBlockOperand(BB);
Nate Begeman37efe672006-04-22 18:53:45 +00003581 }
3582 }
3583 return;
3584 }
3585
Nate Begemanf15485a2006-03-27 01:32:24 +00003586 // If we generated any switch lowering information, build and codegen any
3587 // additional DAGs necessary.
3588 for(unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
3589 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3590 CurDAG = &SDAG;
3591 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
3592 // Set the current basic block to the mbb we wish to insert the code into
3593 BB = SwitchCases[i].ThisBB;
3594 SDL.setCurrentBasicBlock(BB);
3595 // Emit the code
3596 SDL.visitSwitchCase(SwitchCases[i]);
3597 SDAG.setRoot(SDL.getRoot());
3598 CodeGenAndEmitDAG(SDAG);
3599 // Iterate over the phi nodes, if there is a phi node in a successor of this
3600 // block (for instance, the default block), then add a pair of operands to
3601 // the phi node for this block, as if we were coming from the original
3602 // BB before switch expansion.
3603 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3604 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3605 MachineBasicBlock *PHIBB = PHI->getParent();
3606 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3607 "This is not a machine PHI node that we are updating!");
3608 if (PHIBB == SwitchCases[i].LHSBB || PHIBB == SwitchCases[i].RHSBB) {
3609 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3610 PHI->addMachineBasicBlockOperand(BB);
3611 }
3612 }
Chris Lattnera33ef482005-03-30 01:10:47 +00003613 }
Chris Lattner1c08c712005-01-07 07:47:53 +00003614}
Evan Chenga9c20912006-01-21 02:32:06 +00003615
3616//===----------------------------------------------------------------------===//
3617/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
3618/// target node in the graph.
3619void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
3620 if (ViewSchedDAGs) DAG.viewGraph();
Evan Cheng4ef10862006-01-23 07:01:07 +00003621 ScheduleDAG *SL = NULL;
3622
3623 switch (ISHeuristic) {
3624 default: assert(0 && "Unrecognized scheduling heuristic");
Evan Chengee00a1d2006-05-13 05:53:47 +00003625 case defaultScheduling:
Evan Cheng3f239522006-01-25 09:12:57 +00003626 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency)
Chris Lattner4a1cd9c2006-04-21 17:16:16 +00003627 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
3628 else {
3629 assert(TLI.getSchedulingPreference() ==
3630 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Evan Cheng3f239522006-01-25 09:12:57 +00003631 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattner4a1cd9c2006-04-21 17:16:16 +00003632 }
Evan Cheng3f239522006-01-25 09:12:57 +00003633 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003634 case noScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003635 SL = createBFS_DAGScheduler(DAG, BB);
3636 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003637 case simpleScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003638 SL = createSimpleDAGScheduler(false, DAG, BB);
3639 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003640 case simpleNoItinScheduling:
Chris Lattner20a49212006-03-10 07:49:12 +00003641 SL = createSimpleDAGScheduler(true, DAG, BB);
Evan Cheng4ef10862006-01-23 07:01:07 +00003642 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003643 case listSchedulingBURR:
Evan Chengf0f9c902006-01-23 08:26:10 +00003644 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattnera5de4842006-03-05 21:10:33 +00003645 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003646 case listSchedulingTDRR:
Evan Chenge165a782006-05-11 23:55:42 +00003647 SL = createTDRRListDAGScheduler(DAG, BB);
3648 break;
Evan Chengee00a1d2006-05-13 05:53:47 +00003649 case listSchedulingTD:
Chris Lattnerb0d21ef2006-03-08 04:25:59 +00003650 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
Chris Lattnera5de4842006-03-05 21:10:33 +00003651 break;
Evan Cheng4ef10862006-01-23 07:01:07 +00003652 }
Chris Lattnera3818e62006-01-21 19:12:11 +00003653 BB = SL->Run();
Evan Chengcccf1232006-02-04 06:49:00 +00003654 delete SL;
Evan Chenga9c20912006-01-21 02:32:06 +00003655}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003656
Chris Lattnerb0d21ef2006-03-08 04:25:59 +00003657HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
3658 return new HazardRecognizer();
Chris Lattner03fc53c2006-03-06 00:22:00 +00003659}
3660
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003661/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
3662/// by tblgen. Others should not call it.
3663void SelectionDAGISel::
3664SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
3665 std::vector<SDOperand> InOps;
3666 std::swap(InOps, Ops);
3667
3668 Ops.push_back(InOps[0]); // input chain.
3669 Ops.push_back(InOps[1]); // input asm string.
3670
Chris Lattner0e43f2b2006-02-24 02:13:54 +00003671 unsigned i = 2, e = InOps.size();
3672 if (InOps[e-1].getValueType() == MVT::Flag)
3673 --e; // Don't process a flag operand if it is here.
3674
3675 while (i != e) {
3676 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
3677 if ((Flags & 7) != 4 /*MEM*/) {
3678 // Just skip over this operand, copying the operands verbatim.
3679 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
3680 i += (Flags >> 3) + 1;
3681 } else {
3682 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
3683 // Otherwise, this is a memory operand. Ask the target to select it.
3684 std::vector<SDOperand> SelOps;
3685 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
3686 std::cerr << "Could not match memory address. Inline asm failure!\n";
3687 exit(1);
3688 }
3689
3690 // Add this to the output node.
3691 Ops.push_back(DAG.getConstant(4/*MEM*/ | (SelOps.size() << 3), MVT::i32));
3692 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
3693 i += 2;
3694 }
3695 }
3696
3697 // Add the flag input back if present.
3698 if (e != InOps.size())
3699 Ops.push_back(InOps.back());
3700}