blob: 9561d8a743bc78779c566136d6858c639d007dfd [file] [log] [blame]
Chris Lattner7a60d912005-01-07 07:47:53 +00001//===-- SelectionDAGISel.cpp - Implement the SelectionDAGISel class -------===//
Misha Brukman835702a2005-04-21 22:36:52 +00002//
Chris Lattner7a60d912005-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 Brukman835702a2005-04-21 22:36:52 +00007//
Chris Lattner7a60d912005-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 Cheng739a6a42006-01-21 02:32:06 +000016#include "llvm/CodeGen/ScheduleDAG.h"
Chris Lattner2e77db62005-05-13 18:50:42 +000017#include "llvm/CallingConv.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000018#include "llvm/Constants.h"
19#include "llvm/DerivedTypes.h"
20#include "llvm/Function.h"
Chris Lattner435b4022005-11-29 06:21:05 +000021#include "llvm/GlobalVariable.h"
Chris Lattner476e67b2006-01-26 22:24:51 +000022#include "llvm/InlineAsm.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000023#include "llvm/Instructions.h"
24#include "llvm/Intrinsics.h"
Jim Laskeya8bdac82006-03-23 18:06:46 +000025#include "llvm/IntrinsicInst.h"
Chris Lattnerf2b62f32005-11-16 07:22:30 +000026#include "llvm/CodeGen/IntrinsicLowering.h"
Jim Laskey219d5592006-01-04 22:28:25 +000027#include "llvm/CodeGen/MachineDebugInfo.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000028#include "llvm/CodeGen/MachineFunction.h"
29#include "llvm/CodeGen/MachineFrameInfo.h"
Nate Begeman4ca2ea52006-04-22 18:53:45 +000030#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000031#include "llvm/CodeGen/MachineInstrBuilder.h"
32#include "llvm/CodeGen/SelectionDAG.h"
33#include "llvm/CodeGen/SSARegMap.h"
Chris Lattnerd4382f02005-09-13 19:30:54 +000034#include "llvm/Target/MRegisterInfo.h"
Chris Lattner7a60d912005-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 Prusdf1d4392006-05-23 13:43:15 +000040#include "llvm/Target/TargetOptions.h"
Chris Lattnerc9950c12005-08-17 06:37:43 +000041#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattnere05a4612005-01-12 03:41:21 +000042#include "llvm/Support/CommandLine.h"
Chris Lattner43535a12005-11-09 04:45:33 +000043#include "llvm/Support/MathExtras.h"
Chris Lattner7a60d912005-01-07 07:47:53 +000044#include "llvm/Support/Debug.h"
45#include <map>
Chris Lattner1558fc62006-02-01 18:59:47 +000046#include <set>
Chris Lattner7a60d912005-01-07 07:47:53 +000047#include <iostream>
Jeff Cohen83c22e02006-02-24 02:52:40 +000048#include <algorithm>
Chris Lattner7a60d912005-01-07 07:47:53 +000049using namespace llvm;
50
Chris Lattner975f5c92005-09-01 18:44:10 +000051#ifndef NDEBUG
Chris Lattnere05a4612005-01-12 03:41:21 +000052static cl::opt<bool>
Evan Cheng739a6a42006-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 Lattnere05a4612005-01-12 03:41:21 +000058#else
Chris Lattneref598052006-04-02 03:07:27 +000059static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0;
Chris Lattnere05a4612005-01-12 03:41:21 +000060#endif
61
Evan Chengd1915cf2006-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 Chengc1e1d972006-01-23 07:01:07 +000073namespace {
Evan Chengd1915cf2006-05-13 05:53:47 +000074 cl::opt<SchedHeuristics>
Evan Chengc1e1d972006-01-23 07:01:07 +000075 ISHeuristic(
76 "sched",
77 cl::desc("Choose scheduling style"),
Evan Chengd1915cf2006-05-13 05:53:47 +000078 cl::init(defaultScheduling),
Evan Chengc1e1d972006-01-23 07:01:07 +000079 cl::values(
Evan Chengd1915cf2006-05-13 05:53:47 +000080 clEnumValN(defaultScheduling, "default",
Evan Chenga6eff8a2006-01-25 09:12:57 +000081 "Target preferred scheduling style"),
Evan Chengd1915cf2006-05-13 05:53:47 +000082 clEnumValN(noScheduling, "none",
Jim Laskeyb8566fa2006-01-23 13:34:04 +000083 "No scheduling: breadth first sequencing"),
Evan Chengd1915cf2006-05-13 05:53:47 +000084 clEnumValN(simpleScheduling, "simple",
Evan Chengc1e1d972006-01-23 07:01:07 +000085 "Simple two pass scheduling: minimize critical path "
86 "and maximize processor utilization"),
Evan Chengd1915cf2006-05-13 05:53:47 +000087 clEnumValN(simpleNoItinScheduling, "simple-noitin",
Evan Chengc1e1d972006-01-23 07:01:07 +000088 "Simple two pass scheduling: Same as simple "
89 "except using generic latency"),
Evan Chengd1915cf2006-05-13 05:53:47 +000090 clEnumValN(listSchedulingBURR, "list-burr",
Evan Chengd38c22b2006-05-11 23:55:42 +000091 "Bottom-up register reduction list scheduling"),
Evan Chengd1915cf2006-05-13 05:53:47 +000092 clEnumValN(listSchedulingTDRR, "list-tdrr",
Evan Chengd38c22b2006-05-11 23:55:42 +000093 "Top-down register reduction list scheduling"),
Evan Chengd1915cf2006-05-13 05:53:47 +000094 clEnumValN(listSchedulingTD, "list-td",
Chris Lattner47639db2006-03-06 00:22:00 +000095 "Top-down list scheduler"),
Evan Chengc1e1d972006-01-23 07:01:07 +000096 clEnumValEnd));
97} // namespace
98
Chris Lattner6f87d182006-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 Lattnere7c0ffb2006-02-23 20:06:57 +0000133 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattner571d9642006-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 Lattnere7c0ffb2006-02-23 20:06:57 +0000139 SDOperand &Chain, SDOperand &Flag) const;
Chris Lattner571d9642006-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 Lattnere7c0ffb2006-02-23 20:06:57 +0000145 std::vector<SDOperand> &Ops) const;
Chris Lattner6f87d182006-02-22 22:37:12 +0000146 };
147}
Evan Chengc1e1d972006-01-23 07:01:07 +0000148
Chris Lattner7a60d912005-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 Lattnerd0061952005-01-08 19:52:31 +0000153 class FunctionLoweringInfo {
154 public:
Chris Lattner7a60d912005-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 Brukman835702a2005-04-21 22:36:52 +0000178
Chris Lattner49409cb2006-03-16 19:51:18 +0000179 unsigned CreateRegForValue(const Value *V);
180
Chris Lattner7a60d912005-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 Begemaned728c12006-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 Lattner7a60d912005-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 Begemaned728c12006-03-27 01:32:24 +0000196 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
197 isa<SwitchInst>(*UI))
Chris Lattner7a60d912005-01-07 07:47:53 +0000198 return true;
199 return false;
200}
201
Chris Lattner6871b232005-10-30 19:42:35 +0000202/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemaned728c12006-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 Lattner6871b232005-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 Begemaned728c12006-03-27 01:32:24 +0000208 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattner6871b232005-10-30 19:42:35 +0000209 return false; // Use not in entry block.
210 return true;
211}
212
Chris Lattner7a60d912005-01-07 07:47:53 +0000213FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukman835702a2005-04-21 22:36:52 +0000214 Function &fn, MachineFunction &mf)
Chris Lattner7a60d912005-01-07 07:47:53 +0000215 : TLI(tli), Fn(fn), MF(mf), RegMap(MF.getSSARegMap()) {
216
Chris Lattner6871b232005-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 Lattner7a60d912005-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 Cohenf8a5e5ae2005-10-01 03:57:14 +0000227 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner7a60d912005-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 Anderson20a631f2006-05-03 01:29:57 +0000232 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
Nate Begeman3ee3e692005-11-06 09:00:38 +0000233 unsigned Align =
Owen Anderson20a631f2006-05-03 01:29:57 +0000234 std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begeman3ee3e692005-11-06 09:00:38 +0000235 AI->getAlignment());
Chris Lattnercbefe722005-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 Lattner8396a302005-10-18 22:11:42 +0000244 TySize *= CUI->getValue(); // Get total allocated size.
Chris Lattner0a71a9a2005-10-18 22:14:06 +0000245 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner7a60d912005-01-07 07:47:53 +0000246 StaticAllocaMap[AI] =
Chris Lattnerd0061952005-01-08 19:52:31 +0000247 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
Chris Lattner7a60d912005-01-07 07:47:53 +0000248 }
249
Jeff Cohenf8a5e5ae2005-10-01 03:57:14 +0000250 for (; BB != EB; ++BB)
251 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner7a60d912005-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 Cohenf8a5e5ae2005-10-01 03:57:14 +0000260 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Chris Lattner7a60d912005-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 Lattner8ea875f2005-01-07 21:34:19 +0000269 (PN = dyn_cast<PHINode>(I)); ++I)
270 if (!PN->use_empty()) {
Chris Lattner5fe1f542006-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 Lattner8ea875f2005-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 Lattner7a60d912005-01-07 07:47:53 +0000286 }
287}
288
Chris Lattner49409cb2006-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 Lattner7ececaa2006-03-16 23:05:19 +0000312 if (NumElts == 1)
313 VT = EltTy;
314 else
315 VT = getVectorType(EltTy, NumElts);
Chris Lattner49409cb2006-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 Lattner7a60d912005-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 Lattner4d9651c2005-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 Begemaned728c12006-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 Lattner7a60d912005-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 Anderson20a631f2006-05-03 01:29:57 +0000401 const TargetData *TD;
Chris Lattner7a60d912005-01-07 07:47:53 +0000402
Nate Begemaned728c12006-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 Begeman4ca2ea52006-04-22 18:53:45 +0000406 SelectionDAGISel::JumpTable JT;
Nate Begemaned728c12006-03-27 01:32:24 +0000407
Chris Lattner7a60d912005-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 Brukman835702a2005-04-21 22:36:52 +0000413 FunctionLoweringInfo &funcinfo)
Chris Lattner7a60d912005-01-07 07:47:53 +0000414 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()),
Nate Begeman866b4b42006-04-23 06:26:20 +0000415 JT(0,0,0,0), FuncInfo(funcinfo) {
Chris Lattner7a60d912005-01-07 07:47:53 +0000416 }
417
Chris Lattner4108bb02005-01-17 19:43:36 +0000418 /// getRoot - Return the current virtual root of the Selection DAG.
419 ///
420 SDOperand getRoot() {
Chris Lattner4d9651c2005-01-17 22:19:26 +0000421 if (PendingLoads.empty())
422 return DAG.getRoot();
Misha Brukman835702a2005-04-21 22:36:52 +0000423
Chris Lattner4d9651c2005-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 Lattner4108bb02005-01-17 19:43:36 +0000436 }
437
Chris Lattner7a60d912005-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 Lattner4024c002006-03-15 22:19:46 +0000453 SDOperand getLoadFrom(const Type *Ty, SDOperand Ptr,
454 SDOperand SrcValue, SDOperand Root,
455 bool isVolatile);
Chris Lattner7a60d912005-01-07 07:47:53 +0000456
457 SDOperand getIntPtrConstant(uint64_t Val) {
458 return DAG.getConstant(Val, TLI.getPointerTy());
459 }
460
Chris Lattner8471b152006-03-16 19:57:50 +0000461 SDOperand getValue(const Value *V);
Chris Lattner7a60d912005-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 Lattner1558fc62006-02-01 18:59:47 +0000468
Chris Lattner6f87d182006-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 Begemaned728c12006-03-27 01:32:24 +0000474
Chris Lattner7a60d912005-01-07 07:47:53 +0000475 // Terminator instructions.
476 void visitRet(ReturnInst &I);
477 void visitBr(BranchInst &I);
Nate Begemaned728c12006-03-27 01:32:24 +0000478 void visitSwitch(SwitchInst &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000479 void visitUnreachable(UnreachableInst &I) { /* noop */ }
480
Nate Begemaned728c12006-03-27 01:32:24 +0000481 // Helper for visitSwitch
482 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000483 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Nate Begemaned728c12006-03-27 01:32:24 +0000484
Chris Lattner7a60d912005-01-07 07:47:53 +0000485 // These all get lowered before this pass.
Chris Lattner7a60d912005-01-07 07:47:53 +0000486 void visitInvoke(InvokeInst &I) { assert(0 && "TODO"); }
487 void visitUnwind(UnwindInst &I) { assert(0 && "TODO"); }
488
Nate Begemanb2e089c2005-11-19 00:36:38 +0000489 void visitBinary(User &I, unsigned IntOp, unsigned FPOp, unsigned VecOp);
Nate Begeman127321b2005-11-18 07:42:56 +0000490 void visitShift(User &I, unsigned Opcode);
Nate Begemanb2e089c2005-11-19 00:36:38 +0000491 void visitAdd(User &I) {
492 visitBinary(I, ISD::ADD, ISD::FADD, ISD::VADD);
Chris Lattner6f3b5772005-09-28 22:28:18 +0000493 }
Chris Lattnerf68fd0b2005-04-02 05:04:50 +0000494 void visitSub(User &I);
Nate Begemanb2e089c2005-11-19 00:36:38 +0000495 void visitMul(User &I) {
496 visitBinary(I, ISD::MUL, ISD::FMUL, ISD::VMUL);
Chris Lattner6f3b5772005-09-28 22:28:18 +0000497 }
Chris Lattner7a60d912005-01-07 07:47:53 +0000498 void visitDiv(User &I) {
Chris Lattner6f3b5772005-09-28 22:28:18 +0000499 const Type *Ty = I.getType();
Evan Cheng3bf916d2006-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 Lattner7a60d912005-01-07 07:47:53 +0000503 }
504 void visitRem(User &I) {
Chris Lattner6f3b5772005-09-28 22:28:18 +0000505 const Type *Ty = I.getType();
Nate Begemanb2e089c2005-11-19 00:36:38 +0000506 visitBinary(I, Ty->isSigned() ? ISD::SREM : ISD::UREM, ISD::FREM, 0);
Chris Lattner7a60d912005-01-07 07:47:53 +0000507 }
Evan Cheng3bf916d2006-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 Begeman127321b2005-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 Lattner7a60d912005-01-07 07:47:53 +0000514 }
515
Evan Cheng1c5b7d12006-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 Lattner7a60d912005-01-07 07:47:53 +0000530
Chris Lattner67271862006-03-29 00:11:43 +0000531 void visitExtractElement(User &I);
532 void visitInsertElement(User &I);
Chris Lattner098c01e2006-04-08 04:15:24 +0000533 void visitShuffleVector(User &I);
Chris Lattner32206f52006-03-18 01:44:44 +0000534
Chris Lattner7a60d912005-01-07 07:47:53 +0000535 void visitGetElementPtr(User &I);
536 void visitCast(User &I);
537 void visitSelect(User &I);
Chris Lattner7a60d912005-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 Lattner476e67b2006-01-26 22:24:51 +0000546 void visitInlineAsm(CallInst &I);
Chris Lattnercd6f0f42005-11-09 19:44:01 +0000547 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattnerd96b09a2006-03-24 02:22:33 +0000548 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner7a60d912005-01-07 07:47:53 +0000549
Chris Lattner7a60d912005-01-07 07:47:53 +0000550 void visitVAStart(CallInst &I);
Chris Lattner7a60d912005-01-07 07:47:53 +0000551 void visitVAArg(VAArgInst &I);
552 void visitVAEnd(CallInst &I);
553 void visitVACopy(CallInst &I);
Chris Lattner58cfd792005-01-09 00:00:49 +0000554 void visitFrameReturnAddress(CallInst &I, bool isFrameAddress);
Chris Lattner7a60d912005-01-07 07:47:53 +0000555
Chris Lattner875def92005-01-11 05:56:49 +0000556 void visitMemIntrinsic(CallInst &I, unsigned Op);
Chris Lattner7a60d912005-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 Lattner8471b152006-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 Lattnerc16b05e2006-03-19 00:20:20 +0000585 if (!isa<PackedType>(VTy))
586 return N = DAG.getNode(ISD::UNDEF, VT);
587
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000588 // Create a VBUILD_VECTOR of undef nodes.
Chris Lattnerc16b05e2006-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 Lattnerf4e1a532006-03-19 00:52:58 +0000599 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner8471b152006-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 Lattner8471b152006-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 Lattner67271862006-03-29 00:11:43 +0000611 for (unsigned i = 0; i != NumElements; ++i)
612 Ops.push_back(getValue(CP->getOperand(i)));
Chris Lattner8471b152006-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 Lattnerf4e1a532006-03-19 00:52:58 +0000623 // Create a VBUILD_VECTOR node with generic Vector type.
Chris Lattnerc16b05e2006-03-19 00:20:20 +0000624 Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
625 Ops.push_back(DAG.getValueType(PVT));
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000626 return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
Chris Lattner8471b152006-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 Lattner5fe1f542006-03-31 02:06:56 +0000647 if (VT != MVT::Vector) {
648 MVT::ValueType DestVT = TLI.getTypeToTransformTo(VT);
Chris Lattner8471b152006-03-16 19:57:50 +0000649
Chris Lattner5fe1f542006-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 Lattner8471b152006-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 Lattner5fe1f542006-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 Lattner4a2413a2006-04-05 06:54:42 +0000666 const PackedType *PTy = cast<PackedType>(VTy);
667 unsigned NE = TLI.getPackedTypeBreakdown(PTy, PTyElementVT,
Chris Lattner5fe1f542006-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 Lattner4a2413a2006-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 Lattner8471b152006-03-16 19:57:50 +0000710 }
711
712 return N;
713}
714
715
Chris Lattner7a60d912005-01-07 07:47:53 +0000716void SelectionDAGLowering::visitRet(ReturnInst &I) {
717 if (I.getNumOperands() == 0) {
Chris Lattner4108bb02005-01-17 19:43:36 +0000718 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getRoot()));
Chris Lattner7a60d912005-01-07 07:47:53 +0000719 return;
720 }
Nate Begeman8c47c3a2006-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));
725
726 // If this is an integer return value, we need to promote it ourselves to
727 // the full width of a register, since LegalizeOp will use ANY_EXTEND rather
728 // than sign/zero.
729 if (MVT::isInteger(RetOp.getValueType()) &&
730 RetOp.getValueType() < MVT::i64) {
731 MVT::ValueType TmpVT;
732 if (TLI.getTypeAction(MVT::i32) == TargetLowering::Promote)
733 TmpVT = TLI.getTypeToTransformTo(MVT::i32);
734 else
735 TmpVT = MVT::i32;
Chris Lattner7a60d912005-01-07 07:47:53 +0000736
Nate Begeman8c47c3a2006-01-27 21:09:22 +0000737 if (I.getOperand(i)->getType()->isSigned())
738 RetOp = DAG.getNode(ISD::SIGN_EXTEND, TmpVT, RetOp);
739 else
740 RetOp = DAG.getNode(ISD::ZERO_EXTEND, TmpVT, RetOp);
741 }
742 NewValues.push_back(RetOp);
Chris Lattner7a60d912005-01-07 07:47:53 +0000743 }
Nate Begeman8c47c3a2006-01-27 21:09:22 +0000744 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, NewValues));
Chris Lattner7a60d912005-01-07 07:47:53 +0000745}
746
747void SelectionDAGLowering::visitBr(BranchInst &I) {
748 // Update machine-CFG edges.
749 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Nate Begemaned728c12006-03-27 01:32:24 +0000750 CurMBB->addSuccessor(Succ0MBB);
Chris Lattner7a60d912005-01-07 07:47:53 +0000751
752 // Figure out which block is immediately after the current one.
753 MachineBasicBlock *NextBlock = 0;
754 MachineFunction::iterator BBI = CurMBB;
755 if (++BBI != CurMBB->getParent()->end())
756 NextBlock = BBI;
757
758 if (I.isUnconditional()) {
759 // If this is not a fall-through branch, emit the branch.
760 if (Succ0MBB != NextBlock)
Chris Lattner4108bb02005-01-17 19:43:36 +0000761 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
Misha Brukman77451162005-04-22 04:01:18 +0000762 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +0000763 } else {
764 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Nate Begemaned728c12006-03-27 01:32:24 +0000765 CurMBB->addSuccessor(Succ1MBB);
Chris Lattner7a60d912005-01-07 07:47:53 +0000766
767 SDOperand Cond = getValue(I.getCondition());
Chris Lattner7a60d912005-01-07 07:47:53 +0000768 if (Succ1MBB == NextBlock) {
769 // If the condition is false, fall through. This means we should branch
770 // if the condition is true to Succ #0.
Chris Lattner4108bb02005-01-17 19:43:36 +0000771 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukman77451162005-04-22 04:01:18 +0000772 Cond, DAG.getBasicBlock(Succ0MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +0000773 } else if (Succ0MBB == NextBlock) {
774 // If the condition is true, fall through. This means we should branch if
775 // the condition is false to Succ #1. Invert the condition first.
776 SDOperand True = DAG.getConstant(1, Cond.getValueType());
777 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
Chris Lattner4108bb02005-01-17 19:43:36 +0000778 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
Misha Brukman77451162005-04-22 04:01:18 +0000779 Cond, DAG.getBasicBlock(Succ1MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +0000780 } else {
Chris Lattner8a98c7f2005-04-09 03:30:29 +0000781 std::vector<SDOperand> Ops;
782 Ops.push_back(getRoot());
Evan Cheng42c01c82006-02-16 08:27:56 +0000783 // If the false case is the current basic block, then this is a self
784 // loop. We do not want to emit "Loop: ... brcond Out; br Loop", as it
785 // adds an extra instruction in the loop. Instead, invert the
786 // condition and emit "Loop: ... br!cond Loop; br Out.
787 if (CurMBB == Succ1MBB) {
788 std::swap(Succ0MBB, Succ1MBB);
789 SDOperand True = DAG.getConstant(1, Cond.getValueType());
790 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
791 }
Nate Begemanbb01d4f2006-03-17 01:40:33 +0000792 SDOperand True = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
793 DAG.getBasicBlock(Succ0MBB));
794 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, True,
795 DAG.getBasicBlock(Succ1MBB)));
Chris Lattner7a60d912005-01-07 07:47:53 +0000796 }
797 }
798}
799
Nate Begemaned728c12006-03-27 01:32:24 +0000800/// visitSwitchCase - Emits the necessary code to represent a single node in
801/// the binary search tree resulting from lowering a switch instruction.
802void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
803 SDOperand SwitchOp = getValue(CB.SwitchV);
804 SDOperand CaseOp = getValue(CB.CaseC);
805 SDOperand Cond = DAG.getSetCC(MVT::i1, SwitchOp, CaseOp, CB.CC);
806
807 // Set NextBlock to be the MBB immediately after the current one, if any.
808 // This is used to avoid emitting unnecessary branches to the next block.
809 MachineBasicBlock *NextBlock = 0;
810 MachineFunction::iterator BBI = CurMBB;
811 if (++BBI != CurMBB->getParent()->end())
812 NextBlock = BBI;
813
814 // If the lhs block is the next block, invert the condition so that we can
815 // fall through to the lhs instead of the rhs block.
816 if (CB.LHSBB == NextBlock) {
817 std::swap(CB.LHSBB, CB.RHSBB);
818 SDOperand True = DAG.getConstant(1, Cond.getValueType());
819 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
820 }
821 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
822 DAG.getBasicBlock(CB.LHSBB));
823 if (CB.RHSBB == NextBlock)
824 DAG.setRoot(BrCond);
825 else
826 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
827 DAG.getBasicBlock(CB.RHSBB)));
828 // Update successor info
829 CurMBB->addSuccessor(CB.LHSBB);
830 CurMBB->addSuccessor(CB.RHSBB);
831}
832
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000833/// visitSwitchCase - Emits the necessary code to represent a single node in
834/// the binary search tree resulting from lowering a switch instruction.
835void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
836 // FIXME: Need to emit different code for PIC vs. Non-PIC, specifically,
837 // we need to add the address of the jump table to the value loaded, since
838 // the entries in the jump table will be differences rather than absolute
839 // addresses.
840
841 // Emit the code for the jump table
842 MVT::ValueType PTy = TLI.getPointerTy();
843 unsigned PTyBytes = MVT::getSizeInBits(PTy)/8;
844 SDOperand Copy = DAG.getCopyFromReg(getRoot(), JT.Reg, PTy);
845 SDOperand IDX = DAG.getNode(ISD::MUL, PTy, Copy,
846 DAG.getConstant(PTyBytes, PTy));
847 SDOperand ADD = DAG.getNode(ISD::ADD, PTy, IDX, DAG.getJumpTable(JT.JTI,PTy));
848 SDOperand LD = DAG.getLoad(PTy, Copy.getValue(1), ADD, DAG.getSrcValue(0));
849 DAG.setRoot(DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD));
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000850}
851
Nate Begemaned728c12006-03-27 01:32:24 +0000852void SelectionDAGLowering::visitSwitch(SwitchInst &I) {
853 // Figure out which block is immediately after the current one.
854 MachineBasicBlock *NextBlock = 0;
855 MachineFunction::iterator BBI = CurMBB;
856 if (++BBI != CurMBB->getParent()->end())
857 NextBlock = BBI;
858
859 // If there is only the default destination, branch to it if it is not the
860 // next basic block. Otherwise, just fall through.
861 if (I.getNumOperands() == 2) {
862 // Update machine-CFG edges.
863 MachineBasicBlock *DefaultMBB = FuncInfo.MBBMap[I.getDefaultDest()];
864 // If this is not a fall-through branch, emit the branch.
865 if (DefaultMBB != NextBlock)
866 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
867 DAG.getBasicBlock(DefaultMBB)));
868 return;
869 }
870
871 // If there are any non-default case statements, create a vector of Cases
872 // representing each one, and sort the vector so that we can efficiently
873 // create a binary search tree from them.
874 std::vector<Case> Cases;
875 for (unsigned i = 1; i < I.getNumSuccessors(); ++i) {
876 MachineBasicBlock *SMBB = FuncInfo.MBBMap[I.getSuccessor(i)];
877 Cases.push_back(Case(I.getSuccessorValue(i), SMBB));
878 }
879 std::sort(Cases.begin(), Cases.end(), CaseCmp());
880
881 // Get the Value to be switched on and default basic blocks, which will be
882 // inserted into CaseBlock records, representing basic blocks in the binary
883 // search tree.
884 Value *SV = I.getOperand(0);
885 MachineBasicBlock *Default = FuncInfo.MBBMap[I.getDefaultDest()];
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000886
887 // Get the MachineFunction which holds the current MBB. This is used during
888 // emission of jump tables, and when inserting any additional MBBs necessary
889 // to represent the switch.
Nate Begemaned728c12006-03-27 01:32:24 +0000890 MachineFunction *CurMF = CurMBB->getParent();
891 const BasicBlock *LLVMBB = CurMBB->getBasicBlock();
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000892 Reloc::Model Relocs = TLI.getTargetMachine().getRelocationModel();
893
Nate Begemand7a19102006-05-08 16:51:36 +0000894 // If the switch has more than 5 blocks, and at least 31.25% dense, and the
895 // target supports indirect branches, then emit a jump table rather than
896 // lowering the switch to a binary tree of conditional branches.
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000897 // FIXME: Make this work with PIC code
Nate Begeman866b4b42006-04-23 06:26:20 +0000898 if (TLI.isOperationLegal(ISD::BRIND, TLI.getPointerTy()) &&
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000899 (Relocs == Reloc::Static || Relocs == Reloc::DynamicNoPIC) &&
Nate Begemandf488392006-05-03 03:48:02 +0000900 Cases.size() > 5) {
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000901 uint64_t First = cast<ConstantIntegral>(Cases.front().first)->getRawValue();
902 uint64_t Last = cast<ConstantIntegral>(Cases.back().first)->getRawValue();
Nate Begemandf488392006-05-03 03:48:02 +0000903 double Density = (double)Cases.size() / (double)((Last - First) + 1ULL);
904
Nate Begemand7a19102006-05-08 16:51:36 +0000905 if (Density >= 0.3125) {
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000906 // Create a new basic block to hold the code for loading the address
907 // of the jump table, and jumping to it. Update successor information;
908 // we will either branch to the default case for the switch, or the jump
909 // table.
910 MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
911 CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
912 CurMBB->addSuccessor(Default);
913 CurMBB->addSuccessor(JumpTableBB);
914
915 // Subtract the lowest switch case value from the value being switched on
916 // and conditional branch to default mbb if the result is greater than the
917 // difference between smallest and largest cases.
918 SDOperand SwitchOp = getValue(SV);
919 MVT::ValueType VT = SwitchOp.getValueType();
920 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
921 DAG.getConstant(First, VT));
922
923 // The SDNode we just created, which holds the value being switched on
924 // minus the the smallest case value, needs to be copied to a virtual
925 // register so it can be used as an index into the jump table in a
926 // subsequent basic block. This value may be smaller or larger than the
927 // target's pointer type, and therefore require extension or truncating.
928 if (VT > TLI.getPointerTy())
929 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
930 else
931 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
932 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
933 SDOperand CopyTo = DAG.getCopyToReg(getRoot(), JumpTableReg, SwitchOp);
934
935 // Emit the range check for the jump table, and branch to the default
936 // block for the switch statement if the value being switched on exceeds
937 // the largest case in the switch.
938 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultTy(), SUB,
939 DAG.getConstant(Last-First,VT), ISD::SETUGT);
940 DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
941 DAG.getBasicBlock(Default)));
942
Nate Begemandf488392006-05-03 03:48:02 +0000943 // Build a vector of destination BBs, corresponding to each target
944 // of the jump table. If the value of the jump table slot corresponds to
945 // a case statement, push the case's BB onto the vector, otherwise, push
946 // the default BB.
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000947 std::set<MachineBasicBlock*> UniqueBBs;
948 std::vector<MachineBasicBlock*> DestBBs;
Nate Begemandf488392006-05-03 03:48:02 +0000949 uint64_t TEI = First;
950 for (CaseItr ii = Cases.begin(), ee = Cases.end(); ii != ee; ++TEI) {
951 if (cast<ConstantIntegral>(ii->first)->getRawValue() == TEI) {
952 DestBBs.push_back(ii->second);
953 UniqueBBs.insert(ii->second);
954 ++ii;
955 } else {
956 DestBBs.push_back(Default);
957 UniqueBBs.insert(Default);
958 }
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000959 }
Nate Begemandf488392006-05-03 03:48:02 +0000960
961 // Update successor info
962 for (std::set<MachineBasicBlock*>::iterator ii = UniqueBBs.begin(),
963 ee = UniqueBBs.end(); ii != ee; ++ii)
964 JumpTableBB->addSuccessor(*ii);
965
966 // Create a jump table index for this jump table, or return an existing
967 // one.
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000968 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
969
970 // Set the jump table information so that we can codegen it as a second
971 // MachineBasicBlock
972 JT.Reg = JumpTableReg;
973 JT.JTI = JTI;
974 JT.MBB = JumpTableBB;
Nate Begeman866b4b42006-04-23 06:26:20 +0000975 JT.Default = Default;
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000976 return;
977 }
978 }
Nate Begemaned728c12006-03-27 01:32:24 +0000979
980 // Push the initial CaseRec onto the worklist
981 std::vector<CaseRec> CaseVec;
982 CaseVec.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
983
984 while (!CaseVec.empty()) {
985 // Grab a record representing a case range to process off the worklist
986 CaseRec CR = CaseVec.back();
987 CaseVec.pop_back();
988
989 // Size is the number of Cases represented by this range. If Size is 1,
990 // then we are processing a leaf of the binary search tree. Otherwise,
991 // we need to pick a pivot, and push left and right ranges onto the
992 // worklist.
993 unsigned Size = CR.Range.second - CR.Range.first;
994
995 if (Size == 1) {
996 // Create a CaseBlock record representing a conditional branch to
997 // the Case's target mbb if the value being switched on SV is equal
998 // to C. Otherwise, branch to default.
999 Constant *C = CR.Range.first->first;
1000 MachineBasicBlock *Target = CR.Range.first->second;
1001 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, SV, C, Target, Default,
1002 CR.CaseBB);
1003 // If the MBB representing the leaf node is the current MBB, then just
1004 // call visitSwitchCase to emit the code into the current block.
1005 // Otherwise, push the CaseBlock onto the vector to be later processed
1006 // by SDISel, and insert the node's MBB before the next MBB.
1007 if (CR.CaseBB == CurMBB)
1008 visitSwitchCase(CB);
1009 else {
1010 SwitchCases.push_back(CB);
1011 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1012 }
1013 } else {
1014 // split case range at pivot
1015 CaseItr Pivot = CR.Range.first + (Size / 2);
1016 CaseRange LHSR(CR.Range.first, Pivot);
1017 CaseRange RHSR(Pivot, CR.Range.second);
1018 Constant *C = Pivot->first;
1019 MachineBasicBlock *RHSBB = 0, *LHSBB = 0;
1020 // We know that we branch to the LHS if the Value being switched on is
1021 // less than the Pivot value, C. We use this to optimize our binary
1022 // tree a bit, by recognizing that if SV is greater than or equal to the
1023 // LHS's Case Value, and that Case Value is exactly one less than the
1024 // Pivot's Value, then we can branch directly to the LHS's Target,
1025 // rather than creating a leaf node for it.
1026 if ((LHSR.second - LHSR.first) == 1 &&
1027 LHSR.first->first == CR.GE &&
1028 cast<ConstantIntegral>(C)->getRawValue() ==
1029 (cast<ConstantIntegral>(CR.GE)->getRawValue() + 1ULL)) {
1030 LHSBB = LHSR.first->second;
1031 } else {
1032 LHSBB = new MachineBasicBlock(LLVMBB);
1033 CaseVec.push_back(CaseRec(LHSBB,C,CR.GE,LHSR));
1034 }
1035 // Similar to the optimization above, if the Value being switched on is
1036 // known to be less than the Constant CR.LT, and the current Case Value
1037 // is CR.LT - 1, then we can branch directly to the target block for
1038 // the current Case Value, rather than emitting a RHS leaf node for it.
1039 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
1040 cast<ConstantIntegral>(RHSR.first->first)->getRawValue() ==
1041 (cast<ConstantIntegral>(CR.LT)->getRawValue() - 1ULL)) {
1042 RHSBB = RHSR.first->second;
1043 } else {
1044 RHSBB = new MachineBasicBlock(LLVMBB);
1045 CaseVec.push_back(CaseRec(RHSBB,CR.LT,C,RHSR));
1046 }
1047 // Create a CaseBlock record representing a conditional branch to
1048 // the LHS node if the value being switched on SV is less than C.
1049 // Otherwise, branch to LHS.
1050 ISD::CondCode CC = C->getType()->isSigned() ? ISD::SETLT : ISD::SETULT;
1051 SelectionDAGISel::CaseBlock CB(CC, SV, C, LHSBB, RHSBB, CR.CaseBB);
1052 if (CR.CaseBB == CurMBB)
1053 visitSwitchCase(CB);
1054 else {
1055 SwitchCases.push_back(CB);
1056 CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1057 }
1058 }
1059 }
1060}
1061
Chris Lattnerf68fd0b2005-04-02 05:04:50 +00001062void SelectionDAGLowering::visitSub(User &I) {
1063 // -0.0 - X --> fneg
Chris Lattner6f3b5772005-09-28 22:28:18 +00001064 if (I.getType()->isFloatingPoint()) {
1065 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
1066 if (CFP->isExactlyValue(-0.0)) {
1067 SDOperand Op2 = getValue(I.getOperand(1));
1068 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
1069 return;
1070 }
Chris Lattner6f3b5772005-09-28 22:28:18 +00001071 }
Nate Begemanb2e089c2005-11-19 00:36:38 +00001072 visitBinary(I, ISD::SUB, ISD::FSUB, ISD::VSUB);
Chris Lattnerf68fd0b2005-04-02 05:04:50 +00001073}
1074
Nate Begemanb2e089c2005-11-19 00:36:38 +00001075void SelectionDAGLowering::visitBinary(User &I, unsigned IntOp, unsigned FPOp,
1076 unsigned VecOp) {
1077 const Type *Ty = I.getType();
Chris Lattner7a60d912005-01-07 07:47:53 +00001078 SDOperand Op1 = getValue(I.getOperand(0));
1079 SDOperand Op2 = getValue(I.getOperand(1));
Chris Lattner96c26752005-01-19 22:31:21 +00001080
Chris Lattner19baba62005-11-19 18:40:42 +00001081 if (Ty->isIntegral()) {
Nate Begemanb2e089c2005-11-19 00:36:38 +00001082 setValue(&I, DAG.getNode(IntOp, Op1.getValueType(), Op1, Op2));
1083 } else if (Ty->isFloatingPoint()) {
1084 setValue(&I, DAG.getNode(FPOp, Op1.getValueType(), Op1, Op2));
1085 } else {
1086 const PackedType *PTy = cast<PackedType>(Ty);
Chris Lattner32206f52006-03-18 01:44:44 +00001087 SDOperand Num = DAG.getConstant(PTy->getNumElements(), MVT::i32);
1088 SDOperand Typ = DAG.getValueType(TLI.getValueType(PTy->getElementType()));
1089 setValue(&I, DAG.getNode(VecOp, MVT::Vector, Op1, Op2, Num, Typ));
Nate Begemanb2e089c2005-11-19 00:36:38 +00001090 }
Nate Begeman127321b2005-11-18 07:42:56 +00001091}
Chris Lattner96c26752005-01-19 22:31:21 +00001092
Nate Begeman127321b2005-11-18 07:42:56 +00001093void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
1094 SDOperand Op1 = getValue(I.getOperand(0));
1095 SDOperand Op2 = getValue(I.getOperand(1));
1096
1097 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
1098
Chris Lattner7a60d912005-01-07 07:47:53 +00001099 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
1100}
1101
1102void SelectionDAGLowering::visitSetCC(User &I,ISD::CondCode SignedOpcode,
Evan Cheng1c5b7d12006-05-23 06:40:47 +00001103 ISD::CondCode UnsignedOpcode,
1104 ISD::CondCode FPOpcode) {
Chris Lattner7a60d912005-01-07 07:47:53 +00001105 SDOperand Op1 = getValue(I.getOperand(0));
1106 SDOperand Op2 = getValue(I.getOperand(1));
1107 ISD::CondCode Opcode = SignedOpcode;
Evan Chengac4f66f2006-05-23 18:18:46 +00001108 if (!FiniteOnlyFPMath() && I.getOperand(0)->getType()->isFloatingPoint())
Evan Cheng1c5b7d12006-05-23 06:40:47 +00001109 Opcode = FPOpcode;
1110 else if (I.getOperand(0)->getType()->isUnsigned())
Chris Lattner7a60d912005-01-07 07:47:53 +00001111 Opcode = UnsignedOpcode;
Chris Lattnerd47675e2005-08-09 20:20:18 +00001112 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
Chris Lattner7a60d912005-01-07 07:47:53 +00001113}
1114
1115void SelectionDAGLowering::visitSelect(User &I) {
1116 SDOperand Cond = getValue(I.getOperand(0));
1117 SDOperand TrueVal = getValue(I.getOperand(1));
1118 SDOperand FalseVal = getValue(I.getOperand(2));
Chris Lattner02274a52006-04-08 22:22:57 +00001119 if (!isa<PackedType>(I.getType())) {
1120 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
1121 TrueVal, FalseVal));
1122 } else {
1123 setValue(&I, DAG.getNode(ISD::VSELECT, MVT::Vector, Cond, TrueVal, FalseVal,
1124 *(TrueVal.Val->op_end()-2),
1125 *(TrueVal.Val->op_end()-1)));
1126 }
Chris Lattner7a60d912005-01-07 07:47:53 +00001127}
1128
1129void SelectionDAGLowering::visitCast(User &I) {
1130 SDOperand N = getValue(I.getOperand(0));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001131 MVT::ValueType SrcVT = N.getValueType();
Chris Lattner4024c002006-03-15 22:19:46 +00001132 MVT::ValueType DestVT = TLI.getValueType(I.getType());
Chris Lattner7a60d912005-01-07 07:47:53 +00001133
Chris Lattner2f4119a2006-03-22 20:09:35 +00001134 if (DestVT == MVT::Vector) {
1135 // This is a cast to a vector from something else. This is always a bit
1136 // convert. Get information about the input vector.
1137 const PackedType *DestTy = cast<PackedType>(I.getType());
1138 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1139 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N,
1140 DAG.getConstant(DestTy->getNumElements(),MVT::i32),
1141 DAG.getValueType(EltVT)));
1142 } else if (SrcVT == DestVT) {
Chris Lattner7a60d912005-01-07 07:47:53 +00001143 setValue(&I, N); // noop cast.
Chris Lattner4024c002006-03-15 22:19:46 +00001144 } else if (DestVT == MVT::i1) {
Chris Lattner2d8b55c2005-05-09 22:17:13 +00001145 // Cast to bool is a comparison against zero, not truncation to zero.
Chris Lattner4024c002006-03-15 22:19:46 +00001146 SDOperand Zero = isInteger(SrcVT) ? DAG.getConstant(0, N.getValueType()) :
Chris Lattner2d8b55c2005-05-09 22:17:13 +00001147 DAG.getConstantFP(0.0, N.getValueType());
Chris Lattnerd47675e2005-08-09 20:20:18 +00001148 setValue(&I, DAG.getSetCC(MVT::i1, N, Zero, ISD::SETNE));
Chris Lattner4024c002006-03-15 22:19:46 +00001149 } else if (isInteger(SrcVT)) {
1150 if (isInteger(DestVT)) { // Int -> Int cast
1151 if (DestVT < SrcVT) // Truncating cast?
1152 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001153 else if (I.getOperand(0)->getType()->isSigned())
Chris Lattner4024c002006-03-15 22:19:46 +00001154 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001155 else
Chris Lattner4024c002006-03-15 22:19:46 +00001156 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
Chris Lattnerb893d042006-03-22 22:20:49 +00001157 } else if (isFloatingPoint(DestVT)) { // Int -> FP cast
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001158 if (I.getOperand(0)->getType()->isSigned())
Chris Lattner4024c002006-03-15 22:19:46 +00001159 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001160 else
Chris Lattner4024c002006-03-15 22:19:46 +00001161 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001162 } else {
1163 assert(0 && "Unknown cast!");
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001164 }
Chris Lattner4024c002006-03-15 22:19:46 +00001165 } else if (isFloatingPoint(SrcVT)) {
1166 if (isFloatingPoint(DestVT)) { // FP -> FP cast
1167 if (DestVT < SrcVT) // Rounding cast?
1168 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001169 else
Chris Lattner4024c002006-03-15 22:19:46 +00001170 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001171 } else if (isInteger(DestVT)) { // FP -> Int cast.
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001172 if (I.getType()->isSigned())
Chris Lattner4024c002006-03-15 22:19:46 +00001173 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
Chris Lattner2a6db3c2005-01-08 08:08:56 +00001174 else
Chris Lattner4024c002006-03-15 22:19:46 +00001175 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
Chris Lattner2f4119a2006-03-22 20:09:35 +00001176 } else {
1177 assert(0 && "Unknown cast!");
Chris Lattner4024c002006-03-15 22:19:46 +00001178 }
1179 } else {
Chris Lattner2f4119a2006-03-22 20:09:35 +00001180 assert(SrcVT == MVT::Vector && "Unknown cast!");
1181 assert(DestVT != MVT::Vector && "Casts to vector already handled!");
1182 // This is a cast from a vector to something else. This is always a bit
1183 // convert. Get information about the input vector.
1184 setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N));
Chris Lattner7a60d912005-01-07 07:47:53 +00001185 }
1186}
1187
Chris Lattner67271862006-03-29 00:11:43 +00001188void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattner32206f52006-03-18 01:44:44 +00001189 SDOperand InVec = getValue(I.getOperand(0));
1190 SDOperand InVal = getValue(I.getOperand(1));
1191 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1192 getValue(I.getOperand(2)));
1193
Chris Lattner29b23012006-03-19 01:17:20 +00001194 SDOperand Num = *(InVec.Val->op_end()-2);
1195 SDOperand Typ = *(InVec.Val->op_end()-1);
1196 setValue(&I, DAG.getNode(ISD::VINSERT_VECTOR_ELT, MVT::Vector,
1197 InVec, InVal, InIdx, Num, Typ));
Chris Lattner32206f52006-03-18 01:44:44 +00001198}
1199
Chris Lattner67271862006-03-29 00:11:43 +00001200void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001201 SDOperand InVec = getValue(I.getOperand(0));
1202 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1203 getValue(I.getOperand(1)));
1204 SDOperand Typ = *(InVec.Val->op_end()-1);
1205 setValue(&I, DAG.getNode(ISD::VEXTRACT_VECTOR_ELT,
1206 TLI.getValueType(I.getType()), InVec, InIdx));
1207}
Chris Lattner32206f52006-03-18 01:44:44 +00001208
Chris Lattner098c01e2006-04-08 04:15:24 +00001209void SelectionDAGLowering::visitShuffleVector(User &I) {
1210 SDOperand V1 = getValue(I.getOperand(0));
1211 SDOperand V2 = getValue(I.getOperand(1));
1212 SDOperand Mask = getValue(I.getOperand(2));
1213
1214 SDOperand Num = *(V1.Val->op_end()-2);
1215 SDOperand Typ = *(V2.Val->op_end()-1);
1216 setValue(&I, DAG.getNode(ISD::VVECTOR_SHUFFLE, MVT::Vector,
1217 V1, V2, Mask, Num, Typ));
1218}
1219
1220
Chris Lattner7a60d912005-01-07 07:47:53 +00001221void SelectionDAGLowering::visitGetElementPtr(User &I) {
1222 SDOperand N = getValue(I.getOperand(0));
1223 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner7a60d912005-01-07 07:47:53 +00001224
1225 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
1226 OI != E; ++OI) {
1227 Value *Idx = *OI;
Chris Lattner35397782005-12-05 07:10:48 +00001228 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Chris Lattner7a60d912005-01-07 07:47:53 +00001229 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
1230 if (Field) {
1231 // N = N + Offset
Owen Anderson20a631f2006-05-03 01:29:57 +00001232 uint64_t Offset = TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattner7a60d912005-01-07 07:47:53 +00001233 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Misha Brukman77451162005-04-22 04:01:18 +00001234 getIntPtrConstant(Offset));
Chris Lattner7a60d912005-01-07 07:47:53 +00001235 }
1236 Ty = StTy->getElementType(Field);
1237 } else {
1238 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner19a83992005-01-07 21:56:57 +00001239
Chris Lattner43535a12005-11-09 04:45:33 +00001240 // If this is a constant subscript, handle it quickly.
1241 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
1242 if (CI->getRawValue() == 0) continue;
Chris Lattner19a83992005-01-07 21:56:57 +00001243
Chris Lattner43535a12005-11-09 04:45:33 +00001244 uint64_t Offs;
1245 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Anderson20a631f2006-05-03 01:29:57 +00001246 Offs = (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattner43535a12005-11-09 04:45:33 +00001247 else
Owen Anderson20a631f2006-05-03 01:29:57 +00001248 Offs = TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattner43535a12005-11-09 04:45:33 +00001249 N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs));
1250 continue;
Chris Lattner7a60d912005-01-07 07:47:53 +00001251 }
Chris Lattner43535a12005-11-09 04:45:33 +00001252
1253 // N = N + Idx * ElementSize;
Owen Anderson20a631f2006-05-03 01:29:57 +00001254 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattner43535a12005-11-09 04:45:33 +00001255 SDOperand IdxN = getValue(Idx);
1256
1257 // If the index is smaller or larger than intptr_t, truncate or extend
1258 // it.
1259 if (IdxN.getValueType() < N.getValueType()) {
1260 if (Idx->getType()->isSigned())
1261 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
1262 else
1263 IdxN = DAG.getNode(ISD::ZERO_EXTEND, N.getValueType(), IdxN);
1264 } else if (IdxN.getValueType() > N.getValueType())
1265 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
1266
1267 // If this is a multiply by a power of two, turn it into a shl
1268 // immediately. This is a very common case.
1269 if (isPowerOf2_64(ElementSize)) {
1270 unsigned Amt = Log2_64(ElementSize);
1271 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner41fd6d52005-11-09 16:50:40 +00001272 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner43535a12005-11-09 04:45:33 +00001273 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
1274 continue;
1275 }
1276
1277 SDOperand Scale = getIntPtrConstant(ElementSize);
1278 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
1279 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner7a60d912005-01-07 07:47:53 +00001280 }
1281 }
1282 setValue(&I, N);
1283}
1284
1285void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
1286 // If this is a fixed sized alloca in the entry block of the function,
1287 // allocate it statically on the stack.
1288 if (FuncInfo.StaticAllocaMap.count(&I))
1289 return; // getValue will auto-populate this.
1290
1291 const Type *Ty = I.getAllocatedType();
Owen Anderson20a631f2006-05-03 01:29:57 +00001292 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
1293 unsigned Align = std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
Nate Begeman3ee3e692005-11-06 09:00:38 +00001294 I.getAlignment());
Chris Lattner7a60d912005-01-07 07:47:53 +00001295
1296 SDOperand AllocSize = getValue(I.getArraySize());
Chris Lattnereccb73d2005-01-22 23:04:37 +00001297 MVT::ValueType IntPtr = TLI.getPointerTy();
1298 if (IntPtr < AllocSize.getValueType())
1299 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
1300 else if (IntPtr > AllocSize.getValueType())
1301 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner7a60d912005-01-07 07:47:53 +00001302
Chris Lattnereccb73d2005-01-22 23:04:37 +00001303 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner7a60d912005-01-07 07:47:53 +00001304 getIntPtrConstant(TySize));
1305
1306 // Handle alignment. If the requested alignment is less than or equal to the
1307 // stack alignment, ignore it and round the size of the allocation up to the
1308 // stack alignment size. If the size is greater than the stack alignment, we
1309 // note this in the DYNAMIC_STACKALLOC node.
1310 unsigned StackAlign =
1311 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1312 if (Align <= StackAlign) {
1313 Align = 0;
1314 // Add SA-1 to the size.
1315 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
1316 getIntPtrConstant(StackAlign-1));
1317 // Mask out the low bits for alignment purposes.
1318 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
1319 getIntPtrConstant(~(uint64_t)(StackAlign-1)));
1320 }
1321
Chris Lattner96c262e2005-05-14 07:29:57 +00001322 std::vector<MVT::ValueType> VTs;
1323 VTs.push_back(AllocSize.getValueType());
1324 VTs.push_back(MVT::Other);
1325 std::vector<SDOperand> Ops;
1326 Ops.push_back(getRoot());
1327 Ops.push_back(AllocSize);
1328 Ops.push_back(getIntPtrConstant(Align));
1329 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, Ops);
Chris Lattner7a60d912005-01-07 07:47:53 +00001330 DAG.setRoot(setValue(&I, DSA).getValue(1));
1331
1332 // Inform the Frame Information that we have just allocated a variable-sized
1333 // object.
1334 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
1335}
1336
Chris Lattner7a60d912005-01-07 07:47:53 +00001337void SelectionDAGLowering::visitLoad(LoadInst &I) {
1338 SDOperand Ptr = getValue(I.getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00001339
Chris Lattner4d9651c2005-01-17 22:19:26 +00001340 SDOperand Root;
1341 if (I.isVolatile())
1342 Root = getRoot();
1343 else {
1344 // Do not serialize non-volatile loads against each other.
1345 Root = DAG.getRoot();
1346 }
Chris Lattner4024c002006-03-15 22:19:46 +00001347
1348 setValue(&I, getLoadFrom(I.getType(), Ptr, DAG.getSrcValue(I.getOperand(0)),
1349 Root, I.isVolatile()));
1350}
1351
1352SDOperand SelectionDAGLowering::getLoadFrom(const Type *Ty, SDOperand Ptr,
1353 SDOperand SrcValue, SDOperand Root,
1354 bool isVolatile) {
Nate Begemanb2e089c2005-11-19 00:36:38 +00001355 SDOperand L;
Nate Begeman41b1cdc2005-12-06 06:18:55 +00001356 if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
Nate Begeman07890bb2005-11-22 01:29:36 +00001357 MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
Chris Lattner32206f52006-03-18 01:44:44 +00001358 L = DAG.getVecLoad(PTy->getNumElements(), PVT, Root, Ptr, SrcValue);
Nate Begemanb2e089c2005-11-19 00:36:38 +00001359 } else {
Chris Lattner4024c002006-03-15 22:19:46 +00001360 L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SrcValue);
Nate Begemanb2e089c2005-11-19 00:36:38 +00001361 }
Chris Lattner4d9651c2005-01-17 22:19:26 +00001362
Chris Lattner4024c002006-03-15 22:19:46 +00001363 if (isVolatile)
Chris Lattner4d9651c2005-01-17 22:19:26 +00001364 DAG.setRoot(L.getValue(1));
1365 else
1366 PendingLoads.push_back(L.getValue(1));
Chris Lattner4024c002006-03-15 22:19:46 +00001367
1368 return L;
Chris Lattner7a60d912005-01-07 07:47:53 +00001369}
1370
1371
1372void SelectionDAGLowering::visitStore(StoreInst &I) {
1373 Value *SrcV = I.getOperand(0);
1374 SDOperand Src = getValue(SrcV);
1375 SDOperand Ptr = getValue(I.getOperand(1));
Chris Lattnerf5675a02005-05-09 04:08:33 +00001376 DAG.setRoot(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Src, Ptr,
Andrew Lenharth2edc1882005-06-29 18:54:02 +00001377 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner7a60d912005-01-07 07:47:53 +00001378}
1379
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001380/// IntrinsicCannotAccessMemory - Return true if the specified intrinsic cannot
1381/// access memory and has no other side effects at all.
1382static bool IntrinsicCannotAccessMemory(unsigned IntrinsicID) {
1383#define GET_NO_MEMORY_INTRINSICS
1384#include "llvm/Intrinsics.gen"
1385#undef GET_NO_MEMORY_INTRINSICS
1386 return false;
1387}
1388
Chris Lattnera9c59156b2006-04-02 03:41:14 +00001389// IntrinsicOnlyReadsMemory - Return true if the specified intrinsic doesn't
1390// have any side-effects or if it only reads memory.
1391static bool IntrinsicOnlyReadsMemory(unsigned IntrinsicID) {
1392#define GET_SIDE_EFFECT_INFO
1393#include "llvm/Intrinsics.gen"
1394#undef GET_SIDE_EFFECT_INFO
1395 return false;
1396}
1397
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001398/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
1399/// node.
1400void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
1401 unsigned Intrinsic) {
Chris Lattner313229c2006-03-24 22:49:42 +00001402 bool HasChain = !IntrinsicCannotAccessMemory(Intrinsic);
Chris Lattnera9c59156b2006-04-02 03:41:14 +00001403 bool OnlyLoad = HasChain && IntrinsicOnlyReadsMemory(Intrinsic);
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001404
1405 // Build the operand list.
1406 std::vector<SDOperand> Ops;
Chris Lattnera9c59156b2006-04-02 03:41:14 +00001407 if (HasChain) { // If this intrinsic has side-effects, chainify it.
1408 if (OnlyLoad) {
1409 // We don't need to serialize loads against other loads.
1410 Ops.push_back(DAG.getRoot());
1411 } else {
1412 Ops.push_back(getRoot());
1413 }
1414 }
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001415
1416 // Add the intrinsic ID as an integer operand.
1417 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
1418
1419 // Add all operands of the call to the operand list.
1420 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1421 SDOperand Op = getValue(I.getOperand(i));
1422
1423 // If this is a vector type, force it to the right packed type.
1424 if (Op.getValueType() == MVT::Vector) {
1425 const PackedType *OpTy = cast<PackedType>(I.getOperand(i)->getType());
1426 MVT::ValueType EltVT = TLI.getValueType(OpTy->getElementType());
1427
1428 MVT::ValueType VVT = MVT::getVectorType(EltVT, OpTy->getNumElements());
1429 assert(VVT != MVT::Other && "Intrinsic uses a non-legal type?");
1430 Op = DAG.getNode(ISD::VBIT_CONVERT, VVT, Op);
1431 }
1432
1433 assert(TLI.isTypeLegal(Op.getValueType()) &&
1434 "Intrinsic uses a non-legal type?");
1435 Ops.push_back(Op);
1436 }
1437
1438 std::vector<MVT::ValueType> VTs;
1439 if (I.getType() != Type::VoidTy) {
1440 MVT::ValueType VT = TLI.getValueType(I.getType());
1441 if (VT == MVT::Vector) {
1442 const PackedType *DestTy = cast<PackedType>(I.getType());
1443 MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1444
1445 VT = MVT::getVectorType(EltVT, DestTy->getNumElements());
1446 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
1447 }
1448
1449 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
1450 VTs.push_back(VT);
1451 }
1452 if (HasChain)
1453 VTs.push_back(MVT::Other);
1454
1455 // Create the node.
Chris Lattnere55d1712006-03-28 00:40:33 +00001456 SDOperand Result;
1457 if (!HasChain)
1458 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTs, Ops);
1459 else if (I.getType() != Type::VoidTy)
1460 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTs, Ops);
1461 else
1462 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTs, Ops);
1463
Chris Lattnera9c59156b2006-04-02 03:41:14 +00001464 if (HasChain) {
1465 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
1466 if (OnlyLoad)
1467 PendingLoads.push_back(Chain);
1468 else
1469 DAG.setRoot(Chain);
1470 }
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001471 if (I.getType() != Type::VoidTy) {
1472 if (const PackedType *PTy = dyn_cast<PackedType>(I.getType())) {
1473 MVT::ValueType EVT = TLI.getValueType(PTy->getElementType());
1474 Result = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Result,
1475 DAG.getConstant(PTy->getNumElements(), MVT::i32),
1476 DAG.getValueType(EVT));
1477 }
1478 setValue(&I, Result);
1479 }
1480}
1481
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001482/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
1483/// we want to emit this as a call to a named external function, return the name
1484/// otherwise lower it and return null.
1485const char *
1486SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
1487 switch (Intrinsic) {
Chris Lattnerd96b09a2006-03-24 02:22:33 +00001488 default:
1489 // By default, turn this into a target intrinsic node.
1490 visitTargetIntrinsic(I, Intrinsic);
1491 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001492 case Intrinsic::vastart: visitVAStart(I); return 0;
1493 case Intrinsic::vaend: visitVAEnd(I); return 0;
1494 case Intrinsic::vacopy: visitVACopy(I); return 0;
1495 case Intrinsic::returnaddress: visitFrameReturnAddress(I, false); return 0;
1496 case Intrinsic::frameaddress: visitFrameReturnAddress(I, true); return 0;
1497 case Intrinsic::setjmp:
1498 return "_setjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1499 break;
1500 case Intrinsic::longjmp:
1501 return "_longjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1502 break;
Chris Lattner093c1592006-03-03 00:00:25 +00001503 case Intrinsic::memcpy_i32:
1504 case Intrinsic::memcpy_i64:
1505 visitMemIntrinsic(I, ISD::MEMCPY);
1506 return 0;
1507 case Intrinsic::memset_i32:
1508 case Intrinsic::memset_i64:
1509 visitMemIntrinsic(I, ISD::MEMSET);
1510 return 0;
1511 case Intrinsic::memmove_i32:
1512 case Intrinsic::memmove_i64:
1513 visitMemIntrinsic(I, ISD::MEMMOVE);
1514 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001515
Chris Lattner5d4e61d2005-12-13 17:40:33 +00001516 case Intrinsic::dbg_stoppoint: {
Jim Laskey5995d012006-02-11 01:01:30 +00001517 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskeya8bdac82006-03-23 18:06:46 +00001518 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001519 if (DebugInfo && SPI.getContext() && DebugInfo->Verify(SPI.getContext())) {
Jim Laskey5995d012006-02-11 01:01:30 +00001520 std::vector<SDOperand> Ops;
Chris Lattner435b4022005-11-29 06:21:05 +00001521
Jim Laskey5995d012006-02-11 01:01:30 +00001522 Ops.push_back(getRoot());
Jim Laskeya8bdac82006-03-23 18:06:46 +00001523 Ops.push_back(getValue(SPI.getLineValue()));
1524 Ops.push_back(getValue(SPI.getColumnValue()));
Chris Lattner435b4022005-11-29 06:21:05 +00001525
Jim Laskeya8bdac82006-03-23 18:06:46 +00001526 DebugInfoDesc *DD = DebugInfo->getDescFor(SPI.getContext());
Jim Laskey5995d012006-02-11 01:01:30 +00001527 assert(DD && "Not a debug information descriptor");
Jim Laskeya8bdac82006-03-23 18:06:46 +00001528 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
1529
Jim Laskey5995d012006-02-11 01:01:30 +00001530 Ops.push_back(DAG.getString(CompileUnit->getFileName()));
1531 Ops.push_back(DAG.getString(CompileUnit->getDirectory()));
1532
Jim Laskeya8bdac82006-03-23 18:06:46 +00001533 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops));
Chris Lattner5d4e61d2005-12-13 17:40:33 +00001534 }
Jim Laskeya8bdac82006-03-23 18:06:46 +00001535
Chris Lattnerf2b62f32005-11-16 07:22:30 +00001536 return 0;
Chris Lattner435b4022005-11-29 06:21:05 +00001537 }
Jim Laskeya8bdac82006-03-23 18:06:46 +00001538 case Intrinsic::dbg_region_start: {
1539 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1540 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001541 if (DebugInfo && RSI.getContext() && DebugInfo->Verify(RSI.getContext())) {
Jim Laskeya8bdac82006-03-23 18:06:46 +00001542 std::vector<SDOperand> Ops;
1543
1544 unsigned LabelID = DebugInfo->RecordRegionStart(RSI.getContext());
1545
1546 Ops.push_back(getRoot());
1547 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1548
1549 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1550 }
1551
Chris Lattnerf2b62f32005-11-16 07:22:30 +00001552 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00001553 }
1554 case Intrinsic::dbg_region_end: {
1555 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1556 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001557 if (DebugInfo && REI.getContext() && DebugInfo->Verify(REI.getContext())) {
Jim Laskeya8bdac82006-03-23 18:06:46 +00001558 std::vector<SDOperand> Ops;
1559
1560 unsigned LabelID = DebugInfo->RecordRegionEnd(REI.getContext());
1561
1562 Ops.push_back(getRoot());
1563 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1564
1565 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1566 }
1567
Chris Lattnerf2b62f32005-11-16 07:22:30 +00001568 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00001569 }
1570 case Intrinsic::dbg_func_start: {
1571 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1572 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jim Laskey70928882006-03-26 22:46:27 +00001573 if (DebugInfo && FSI.getSubprogram() &&
1574 DebugInfo->Verify(FSI.getSubprogram())) {
Jim Laskeya8bdac82006-03-23 18:06:46 +00001575 std::vector<SDOperand> Ops;
1576
1577 unsigned LabelID = DebugInfo->RecordRegionStart(FSI.getSubprogram());
1578
1579 Ops.push_back(getRoot());
1580 Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1581
1582 DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1583 }
1584
Chris Lattnerf2b62f32005-11-16 07:22:30 +00001585 return 0;
Jim Laskeya8bdac82006-03-23 18:06:46 +00001586 }
1587 case Intrinsic::dbg_declare: {
1588 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1589 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Jim Laskey67a636c2006-03-28 13:45:20 +00001590 if (DebugInfo && DI.getVariable() && DebugInfo->Verify(DI.getVariable())) {
Jim Laskeya8bdac82006-03-23 18:06:46 +00001591 std::vector<SDOperand> Ops;
1592
Jim Laskey53f1ecc2006-03-24 09:50:27 +00001593 SDOperand AddressOp = getValue(DI.getAddress());
1594 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(AddressOp)) {
Jim Laskeya8bdac82006-03-23 18:06:46 +00001595 DebugInfo->RecordVariable(DI.getVariable(), FI->getIndex());
1596 }
1597 }
1598
1599 return 0;
1600 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001601
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001602 case Intrinsic::isunordered_f32:
1603 case Intrinsic::isunordered_f64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001604 setValue(&I, DAG.getSetCC(MVT::i1,getValue(I.getOperand(1)),
1605 getValue(I.getOperand(2)), ISD::SETUO));
1606 return 0;
1607
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001608 case Intrinsic::sqrt_f32:
1609 case Intrinsic::sqrt_f64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001610 setValue(&I, DAG.getNode(ISD::FSQRT,
1611 getValue(I.getOperand(1)).getValueType(),
1612 getValue(I.getOperand(1))));
1613 return 0;
1614 case Intrinsic::pcmarker: {
1615 SDOperand Tmp = getValue(I.getOperand(1));
1616 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
1617 return 0;
1618 }
Andrew Lenharthde1b5d62005-11-11 22:48:54 +00001619 case Intrinsic::readcyclecounter: {
1620 std::vector<MVT::ValueType> VTs;
1621 VTs.push_back(MVT::i64);
1622 VTs.push_back(MVT::Other);
1623 std::vector<SDOperand> Ops;
1624 Ops.push_back(getRoot());
1625 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER, VTs, Ops);
1626 setValue(&I, Tmp);
1627 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth01aa5632005-11-11 16:47:30 +00001628 return 0;
Andrew Lenharthde1b5d62005-11-11 22:48:54 +00001629 }
Nate Begeman2fba8a32006-01-14 03:14:10 +00001630 case Intrinsic::bswap_i16:
Nate Begeman2fba8a32006-01-14 03:14:10 +00001631 case Intrinsic::bswap_i32:
Nate Begeman2fba8a32006-01-14 03:14:10 +00001632 case Intrinsic::bswap_i64:
1633 setValue(&I, DAG.getNode(ISD::BSWAP,
1634 getValue(I.getOperand(1)).getValueType(),
1635 getValue(I.getOperand(1))));
1636 return 0;
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001637 case Intrinsic::cttz_i8:
1638 case Intrinsic::cttz_i16:
1639 case Intrinsic::cttz_i32:
1640 case Intrinsic::cttz_i64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001641 setValue(&I, DAG.getNode(ISD::CTTZ,
1642 getValue(I.getOperand(1)).getValueType(),
1643 getValue(I.getOperand(1))));
1644 return 0;
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001645 case Intrinsic::ctlz_i8:
1646 case Intrinsic::ctlz_i16:
1647 case Intrinsic::ctlz_i32:
1648 case Intrinsic::ctlz_i64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001649 setValue(&I, DAG.getNode(ISD::CTLZ,
1650 getValue(I.getOperand(1)).getValueType(),
1651 getValue(I.getOperand(1))));
1652 return 0;
Reid Spencerb4f9a6f2006-01-16 21:12:35 +00001653 case Intrinsic::ctpop_i8:
1654 case Intrinsic::ctpop_i16:
1655 case Intrinsic::ctpop_i32:
1656 case Intrinsic::ctpop_i64:
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001657 setValue(&I, DAG.getNode(ISD::CTPOP,
1658 getValue(I.getOperand(1)).getValueType(),
1659 getValue(I.getOperand(1))));
1660 return 0;
Chris Lattnerb3266452006-01-13 02:50:02 +00001661 case Intrinsic::stacksave: {
1662 std::vector<MVT::ValueType> VTs;
1663 VTs.push_back(TLI.getPointerTy());
1664 VTs.push_back(MVT::Other);
1665 std::vector<SDOperand> Ops;
1666 Ops.push_back(getRoot());
1667 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE, VTs, Ops);
1668 setValue(&I, Tmp);
1669 DAG.setRoot(Tmp.getValue(1));
1670 return 0;
1671 }
Chris Lattnerdeda32a2006-01-23 05:22:07 +00001672 case Intrinsic::stackrestore: {
1673 SDOperand Tmp = getValue(I.getOperand(1));
1674 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattnerb3266452006-01-13 02:50:02 +00001675 return 0;
Chris Lattnerdeda32a2006-01-23 05:22:07 +00001676 }
Chris Lattner9e8b6332005-12-12 22:51:16 +00001677 case Intrinsic::prefetch:
1678 // FIXME: Currently discarding prefetches.
1679 return 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001680 }
1681}
1682
1683
Chris Lattner7a60d912005-01-07 07:47:53 +00001684void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner18d2b342005-01-08 22:48:57 +00001685 const char *RenameFn = 0;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001686 if (Function *F = I.getCalledFunction()) {
Chris Lattner0c140002005-04-02 05:26:53 +00001687 if (F->isExternal())
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001688 if (unsigned IID = F->getIntrinsicID()) {
1689 RenameFn = visitIntrinsicCall(I, IID);
1690 if (!RenameFn)
1691 return;
1692 } else { // Not an LLVM intrinsic.
1693 const std::string &Name = F->getName();
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00001694 if (Name[0] == 'c' && (Name == "copysign" || Name == "copysignf")) {
1695 if (I.getNumOperands() == 3 && // Basic sanity checks.
1696 I.getOperand(1)->getType()->isFloatingPoint() &&
1697 I.getType() == I.getOperand(1)->getType() &&
1698 I.getType() == I.getOperand(2)->getType()) {
1699 SDOperand LHS = getValue(I.getOperand(1));
1700 SDOperand RHS = getValue(I.getOperand(2));
1701 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
1702 LHS, RHS));
1703 return;
1704 }
1705 } else if (Name[0] == 'f' && (Name == "fabs" || Name == "fabsf")) {
Chris Lattner0c140002005-04-02 05:26:53 +00001706 if (I.getNumOperands() == 2 && // Basic sanity checks.
1707 I.getOperand(1)->getType()->isFloatingPoint() &&
1708 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001709 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner0c140002005-04-02 05:26:53 +00001710 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
1711 return;
1712 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001713 } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) {
Chris Lattner80026402005-04-30 04:43:14 +00001714 if (I.getNumOperands() == 2 && // Basic sanity checks.
1715 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner1784a9d22006-02-14 05:39:35 +00001716 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001717 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner80026402005-04-30 04:43:14 +00001718 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
1719 return;
1720 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001721 } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) {
Chris Lattner80026402005-04-30 04:43:14 +00001722 if (I.getNumOperands() == 2 && // Basic sanity checks.
1723 I.getOperand(1)->getType()->isFloatingPoint() &&
Chris Lattner1784a9d22006-02-14 05:39:35 +00001724 I.getType() == I.getOperand(1)->getType()) {
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001725 SDOperand Tmp = getValue(I.getOperand(1));
Chris Lattner80026402005-04-30 04:43:14 +00001726 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
1727 return;
1728 }
1729 }
Chris Lattnere4f71d02005-05-14 13:56:55 +00001730 }
Chris Lattner476e67b2006-01-26 22:24:51 +00001731 } else if (isa<InlineAsm>(I.getOperand(0))) {
1732 visitInlineAsm(I);
1733 return;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001734 }
Misha Brukman835702a2005-04-21 22:36:52 +00001735
Chris Lattner18d2b342005-01-08 22:48:57 +00001736 SDOperand Callee;
1737 if (!RenameFn)
1738 Callee = getValue(I.getOperand(0));
1739 else
1740 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Chris Lattner7a60d912005-01-07 07:47:53 +00001741 std::vector<std::pair<SDOperand, const Type*> > Args;
Chris Lattnercd6f0f42005-11-09 19:44:01 +00001742 Args.reserve(I.getNumOperands());
Chris Lattner7a60d912005-01-07 07:47:53 +00001743 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1744 Value *Arg = I.getOperand(i);
1745 SDOperand ArgNode = getValue(Arg);
1746 Args.push_back(std::make_pair(ArgNode, Arg->getType()));
1747 }
Misha Brukman835702a2005-04-21 22:36:52 +00001748
Nate Begemanf6565252005-03-26 01:29:23 +00001749 const PointerType *PT = cast<PointerType>(I.getCalledValue()->getType());
1750 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Misha Brukman835702a2005-04-21 22:36:52 +00001751
Chris Lattner1f45cd72005-01-08 19:26:18 +00001752 std::pair<SDOperand,SDOperand> Result =
Chris Lattner111778e2005-05-12 19:56:57 +00001753 TLI.LowerCallTo(getRoot(), I.getType(), FTy->isVarArg(), I.getCallingConv(),
Chris Lattner2e77db62005-05-13 18:50:42 +00001754 I.isTailCall(), Callee, Args, DAG);
Chris Lattner7a60d912005-01-07 07:47:53 +00001755 if (I.getType() != Type::VoidTy)
Chris Lattner1f45cd72005-01-08 19:26:18 +00001756 setValue(&I, Result.first);
1757 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00001758}
1759
Chris Lattner6f87d182006-02-22 22:37:12 +00001760SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001761 SDOperand &Chain, SDOperand &Flag)const{
Chris Lattner6f87d182006-02-22 22:37:12 +00001762 SDOperand Val = DAG.getCopyFromReg(Chain, Regs[0], RegVT, Flag);
1763 Chain = Val.getValue(1);
1764 Flag = Val.getValue(2);
1765
1766 // If the result was expanded, copy from the top part.
1767 if (Regs.size() > 1) {
1768 assert(Regs.size() == 2 &&
1769 "Cannot expand to more than 2 elts yet!");
1770 SDOperand Hi = DAG.getCopyFromReg(Chain, Regs[1], RegVT, Flag);
1771 Chain = Val.getValue(1);
1772 Flag = Val.getValue(2);
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001773 if (DAG.getTargetLoweringInfo().isLittleEndian())
1774 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Val, Hi);
1775 else
1776 return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Hi, Val);
Chris Lattner6f87d182006-02-22 22:37:12 +00001777 }
Chris Lattner1558fc62006-02-01 18:59:47 +00001778
Chris Lattner6f87d182006-02-22 22:37:12 +00001779 // Otherwise, if the return value was promoted, truncate it to the
1780 // appropriate type.
1781 if (RegVT == ValueVT)
1782 return Val;
1783
1784 if (MVT::isInteger(RegVT))
1785 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1786 else
1787 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val);
1788}
1789
Chris Lattner571d9642006-02-23 19:21:04 +00001790/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
1791/// specified value into the registers specified by this object. This uses
1792/// Chain/Flag as the input and updates them for the output Chain/Flag.
1793void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001794 SDOperand &Chain, SDOperand &Flag) const {
Chris Lattner571d9642006-02-23 19:21:04 +00001795 if (Regs.size() == 1) {
1796 // If there is a single register and the types differ, this must be
1797 // a promotion.
1798 if (RegVT != ValueVT) {
1799 if (MVT::isInteger(RegVT))
1800 Val = DAG.getNode(ISD::ANY_EXTEND, RegVT, Val);
1801 else
1802 Val = DAG.getNode(ISD::FP_EXTEND, RegVT, Val);
1803 }
1804 Chain = DAG.getCopyToReg(Chain, Regs[0], Val, Flag);
1805 Flag = Chain.getValue(1);
1806 } else {
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001807 std::vector<unsigned> R(Regs);
1808 if (!DAG.getTargetLoweringInfo().isLittleEndian())
1809 std::reverse(R.begin(), R.end());
1810
1811 for (unsigned i = 0, e = R.size(); i != e; ++i) {
Chris Lattner571d9642006-02-23 19:21:04 +00001812 SDOperand Part = DAG.getNode(ISD::EXTRACT_ELEMENT, RegVT, Val,
1813 DAG.getConstant(i, MVT::i32));
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001814 Chain = DAG.getCopyToReg(Chain, R[i], Part, Flag);
Chris Lattner571d9642006-02-23 19:21:04 +00001815 Flag = Chain.getValue(1);
1816 }
1817 }
1818}
Chris Lattner6f87d182006-02-22 22:37:12 +00001819
Chris Lattner571d9642006-02-23 19:21:04 +00001820/// AddInlineAsmOperands - Add this value to the specified inlineasm node
1821/// operand list. This adds the code marker and includes the number of
1822/// values added into it.
1823void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattnere7c0ffb2006-02-23 20:06:57 +00001824 std::vector<SDOperand> &Ops) const {
Chris Lattner571d9642006-02-23 19:21:04 +00001825 Ops.push_back(DAG.getConstant(Code | (Regs.size() << 3), MVT::i32));
1826 for (unsigned i = 0, e = Regs.size(); i != e; ++i)
1827 Ops.push_back(DAG.getRegister(Regs[i], RegVT));
1828}
Chris Lattner6f87d182006-02-22 22:37:12 +00001829
1830/// isAllocatableRegister - If the specified register is safe to allocate,
1831/// i.e. it isn't a stack pointer or some other special register, return the
1832/// register class for the register. Otherwise, return null.
1833static const TargetRegisterClass *
Chris Lattnerb1124f32006-02-22 23:09:03 +00001834isAllocatableRegister(unsigned Reg, MachineFunction &MF,
1835 const TargetLowering &TLI, const MRegisterInfo *MRI) {
Chris Lattnerbec582f2006-04-02 00:24:45 +00001836 MVT::ValueType FoundVT = MVT::Other;
1837 const TargetRegisterClass *FoundRC = 0;
Chris Lattnerb1124f32006-02-22 23:09:03 +00001838 for (MRegisterInfo::regclass_iterator RCI = MRI->regclass_begin(),
1839 E = MRI->regclass_end(); RCI != E; ++RCI) {
Chris Lattnerbec582f2006-04-02 00:24:45 +00001840 MVT::ValueType ThisVT = MVT::Other;
1841
Chris Lattnerb1124f32006-02-22 23:09:03 +00001842 const TargetRegisterClass *RC = *RCI;
1843 // If none of the the value types for this register class are valid, we
1844 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattnerb1124f32006-02-22 23:09:03 +00001845 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
1846 I != E; ++I) {
1847 if (TLI.isTypeLegal(*I)) {
Chris Lattnerbec582f2006-04-02 00:24:45 +00001848 // If we have already found this register in a different register class,
1849 // choose the one with the largest VT specified. For example, on
1850 // PowerPC, we favor f64 register classes over f32.
1851 if (FoundVT == MVT::Other ||
1852 MVT::getSizeInBits(FoundVT) < MVT::getSizeInBits(*I)) {
1853 ThisVT = *I;
1854 break;
1855 }
Chris Lattnerb1124f32006-02-22 23:09:03 +00001856 }
1857 }
1858
Chris Lattnerbec582f2006-04-02 00:24:45 +00001859 if (ThisVT == MVT::Other) continue;
Chris Lattnerb1124f32006-02-22 23:09:03 +00001860
Chris Lattner6f87d182006-02-22 22:37:12 +00001861 // NOTE: This isn't ideal. In particular, this might allocate the
1862 // frame pointer in functions that need it (due to them not being taken
1863 // out of allocation, because a variable sized allocation hasn't been seen
1864 // yet). This is a slight code pessimization, but should still work.
Chris Lattnerb1124f32006-02-22 23:09:03 +00001865 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
1866 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerbec582f2006-04-02 00:24:45 +00001867 if (*I == Reg) {
1868 // We found a matching register class. Keep looking at others in case
1869 // we find one with larger registers that this physreg is also in.
1870 FoundRC = RC;
1871 FoundVT = ThisVT;
1872 break;
1873 }
Chris Lattner1558fc62006-02-01 18:59:47 +00001874 }
Chris Lattnerbec582f2006-04-02 00:24:45 +00001875 return FoundRC;
Chris Lattner6f87d182006-02-22 22:37:12 +00001876}
1877
1878RegsForValue SelectionDAGLowering::
1879GetRegistersForValue(const std::string &ConstrCode,
1880 MVT::ValueType VT, bool isOutReg, bool isInReg,
1881 std::set<unsigned> &OutputRegs,
1882 std::set<unsigned> &InputRegs) {
1883 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
1884 TLI.getRegForInlineAsmConstraint(ConstrCode, VT);
1885 std::vector<unsigned> Regs;
1886
1887 unsigned NumRegs = VT != MVT::Other ? TLI.getNumElements(VT) : 1;
1888 MVT::ValueType RegVT;
1889 MVT::ValueType ValueVT = VT;
1890
1891 if (PhysReg.first) {
1892 if (VT == MVT::Other)
1893 ValueVT = *PhysReg.second->vt_begin();
1894 RegVT = VT;
1895
1896 // This is a explicit reference to a physical register.
1897 Regs.push_back(PhysReg.first);
1898
1899 // If this is an expanded reference, add the rest of the regs to Regs.
1900 if (NumRegs != 1) {
1901 RegVT = *PhysReg.second->vt_begin();
1902 TargetRegisterClass::iterator I = PhysReg.second->begin();
1903 TargetRegisterClass::iterator E = PhysReg.second->end();
1904 for (; *I != PhysReg.first; ++I)
1905 assert(I != E && "Didn't find reg!");
1906
1907 // Already added the first reg.
1908 --NumRegs; ++I;
1909 for (; NumRegs; --NumRegs, ++I) {
1910 assert(I != E && "Ran out of registers to allocate!");
1911 Regs.push_back(*I);
1912 }
1913 }
1914 return RegsForValue(Regs, RegVT, ValueVT);
1915 }
1916
1917 // This is a reference to a register class. Allocate NumRegs consecutive,
1918 // available, registers from the class.
1919 std::vector<unsigned> RegClassRegs =
1920 TLI.getRegClassForInlineAsmConstraint(ConstrCode, VT);
1921
1922 const MRegisterInfo *MRI = DAG.getTarget().getRegisterInfo();
1923 MachineFunction &MF = *CurMBB->getParent();
1924 unsigned NumAllocated = 0;
1925 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
1926 unsigned Reg = RegClassRegs[i];
1927 // See if this register is available.
1928 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
1929 (isInReg && InputRegs.count(Reg))) { // Already used.
1930 // Make sure we find consecutive registers.
1931 NumAllocated = 0;
1932 continue;
1933 }
1934
1935 // Check to see if this register is allocatable (i.e. don't give out the
1936 // stack pointer).
Chris Lattnerb1124f32006-02-22 23:09:03 +00001937 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, MRI);
Chris Lattner6f87d182006-02-22 22:37:12 +00001938 if (!RC) {
1939 // Make sure we find consecutive registers.
1940 NumAllocated = 0;
1941 continue;
1942 }
1943
1944 // Okay, this register is good, we can use it.
1945 ++NumAllocated;
1946
1947 // If we allocated enough consecutive
1948 if (NumAllocated == NumRegs) {
1949 unsigned RegStart = (i-NumAllocated)+1;
1950 unsigned RegEnd = i+1;
1951 // Mark all of the allocated registers used.
1952 for (unsigned i = RegStart; i != RegEnd; ++i) {
1953 unsigned Reg = RegClassRegs[i];
1954 Regs.push_back(Reg);
1955 if (isOutReg) OutputRegs.insert(Reg); // Mark reg used.
1956 if (isInReg) InputRegs.insert(Reg); // Mark reg used.
1957 }
1958
1959 return RegsForValue(Regs, *RC->vt_begin(), VT);
1960 }
1961 }
1962
1963 // Otherwise, we couldn't allocate enough registers for this.
1964 return RegsForValue();
Chris Lattner1558fc62006-02-01 18:59:47 +00001965}
1966
Chris Lattner6f87d182006-02-22 22:37:12 +00001967
Chris Lattner476e67b2006-01-26 22:24:51 +00001968/// visitInlineAsm - Handle a call to an InlineAsm object.
1969///
1970void SelectionDAGLowering::visitInlineAsm(CallInst &I) {
1971 InlineAsm *IA = cast<InlineAsm>(I.getOperand(0));
1972
1973 SDOperand AsmStr = DAG.getTargetExternalSymbol(IA->getAsmString().c_str(),
1974 MVT::Other);
1975
1976 // Note, we treat inline asms both with and without side-effects as the same.
1977 // If an inline asm doesn't have side effects and doesn't access memory, we
1978 // could not choose to not chain it.
1979 bool hasSideEffects = IA->hasSideEffects();
1980
Chris Lattner3a5ed552006-02-01 01:28:23 +00001981 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
Chris Lattner7ad77df2006-02-22 00:56:39 +00001982 std::vector<MVT::ValueType> ConstraintVTs;
Chris Lattner476e67b2006-01-26 22:24:51 +00001983
1984 /// AsmNodeOperands - A list of pairs. The first element is a register, the
1985 /// second is a bitfield where bit #0 is set if it is a use and bit #1 is set
1986 /// if it is a def of that register.
1987 std::vector<SDOperand> AsmNodeOperands;
1988 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
1989 AsmNodeOperands.push_back(AsmStr);
1990
1991 SDOperand Chain = getRoot();
1992 SDOperand Flag;
1993
Chris Lattner1558fc62006-02-01 18:59:47 +00001994 // We fully assign registers here at isel time. This is not optimal, but
1995 // should work. For register classes that correspond to LLVM classes, we
1996 // could let the LLVM RA do its thing, but we currently don't. Do a prepass
1997 // over the constraints, collecting fixed registers that we know we can't use.
1998 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner7ad77df2006-02-22 00:56:39 +00001999 unsigned OpNum = 1;
Chris Lattner1558fc62006-02-01 18:59:47 +00002000 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
2001 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2002 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner7f5880b2006-02-02 00:25:23 +00002003
Chris Lattner7ad77df2006-02-22 00:56:39 +00002004 MVT::ValueType OpVT;
2005
2006 // Compute the value type for each operand and add it to ConstraintVTs.
2007 switch (Constraints[i].Type) {
2008 case InlineAsm::isOutput:
2009 if (!Constraints[i].isIndirectOutput) {
2010 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
2011 OpVT = TLI.getValueType(I.getType());
2012 } else {
Chris Lattner9fed5b62006-02-27 23:45:39 +00002013 const Type *OpTy = I.getOperand(OpNum)->getType();
Chris Lattner7ad77df2006-02-22 00:56:39 +00002014 OpVT = TLI.getValueType(cast<PointerType>(OpTy)->getElementType());
2015 OpNum++; // Consumes a call operand.
2016 }
2017 break;
2018 case InlineAsm::isInput:
2019 OpVT = TLI.getValueType(I.getOperand(OpNum)->getType());
2020 OpNum++; // Consumes a call operand.
2021 break;
2022 case InlineAsm::isClobber:
2023 OpVT = MVT::Other;
2024 break;
2025 }
2026
2027 ConstraintVTs.push_back(OpVT);
2028
Chris Lattner6f87d182006-02-22 22:37:12 +00002029 if (TLI.getRegForInlineAsmConstraint(ConstraintCode, OpVT).first == 0)
2030 continue; // Not assigned a fixed reg.
Chris Lattner7ad77df2006-02-22 00:56:39 +00002031
Chris Lattner6f87d182006-02-22 22:37:12 +00002032 // Build a list of regs that this operand uses. This always has a single
2033 // element for promoted/expanded operands.
2034 RegsForValue Regs = GetRegistersForValue(ConstraintCode, OpVT,
2035 false, false,
2036 OutputRegs, InputRegs);
Chris Lattner1558fc62006-02-01 18:59:47 +00002037
2038 switch (Constraints[i].Type) {
2039 case InlineAsm::isOutput:
2040 // We can't assign any other output to this register.
Chris Lattner6f87d182006-02-22 22:37:12 +00002041 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1558fc62006-02-01 18:59:47 +00002042 // If this is an early-clobber output, it cannot be assigned to the same
2043 // value as the input reg.
Chris Lattner7f5880b2006-02-02 00:25:23 +00002044 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
Chris Lattner6f87d182006-02-22 22:37:12 +00002045 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1558fc62006-02-01 18:59:47 +00002046 break;
Chris Lattner7ad77df2006-02-22 00:56:39 +00002047 case InlineAsm::isInput:
2048 // We can't assign any other input to this register.
Chris Lattner6f87d182006-02-22 22:37:12 +00002049 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner7ad77df2006-02-22 00:56:39 +00002050 break;
Chris Lattner1558fc62006-02-01 18:59:47 +00002051 case InlineAsm::isClobber:
2052 // Clobbered regs cannot be used as inputs or outputs.
Chris Lattner6f87d182006-02-22 22:37:12 +00002053 InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2054 OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
Chris Lattner1558fc62006-02-01 18:59:47 +00002055 break;
Chris Lattner1558fc62006-02-01 18:59:47 +00002056 }
2057 }
Chris Lattner3a5ed552006-02-01 01:28:23 +00002058
Chris Lattner5c79f982006-02-21 23:12:12 +00002059 // Loop over all of the inputs, copying the operand values into the
2060 // appropriate registers and processing the output regs.
Chris Lattner6f87d182006-02-22 22:37:12 +00002061 RegsForValue RetValRegs;
2062 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Chris Lattner7ad77df2006-02-22 00:56:39 +00002063 OpNum = 1;
Chris Lattner5c79f982006-02-21 23:12:12 +00002064
Chris Lattner2e56e892006-01-31 02:03:41 +00002065 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
Chris Lattner3a5ed552006-02-01 01:28:23 +00002066 assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2067 std::string &ConstraintCode = Constraints[i].Codes[0];
Chris Lattner7ad77df2006-02-22 00:56:39 +00002068
Chris Lattner3a5ed552006-02-01 01:28:23 +00002069 switch (Constraints[i].Type) {
2070 case InlineAsm::isOutput: {
Chris Lattner9fed5b62006-02-27 23:45:39 +00002071 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2072 if (ConstraintCode.size() == 1) // not a physreg name.
2073 CTy = TLI.getConstraintType(ConstraintCode[0]);
2074
2075 if (CTy == TargetLowering::C_Memory) {
2076 // Memory output.
2077 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
2078
2079 // Check that the operand (the address to store to) isn't a float.
2080 if (!MVT::isInteger(InOperandVal.getValueType()))
2081 assert(0 && "MATCH FAIL!");
2082
2083 if (!Constraints[i].isIndirectOutput)
2084 assert(0 && "MATCH FAIL!");
2085
2086 OpNum++; // Consumes a call operand.
2087
2088 // Extend/truncate to the right pointer type if needed.
2089 MVT::ValueType PtrType = TLI.getPointerTy();
2090 if (InOperandVal.getValueType() < PtrType)
2091 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2092 else if (InOperandVal.getValueType() > PtrType)
2093 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2094
2095 // Add information to the INLINEASM node to know about this output.
2096 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2097 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2098 AsmNodeOperands.push_back(InOperandVal);
2099 break;
2100 }
2101
2102 // Otherwise, this is a register output.
2103 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2104
Chris Lattner6f87d182006-02-22 22:37:12 +00002105 // If this is an early-clobber output, or if there is an input
2106 // constraint that matches this, we need to reserve the input register
2107 // so no other inputs allocate to it.
2108 bool UsesInputRegister = false;
2109 if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
2110 UsesInputRegister = true;
2111
2112 // Copy the output from the appropriate register. Find a register that
Chris Lattner7ad77df2006-02-22 00:56:39 +00002113 // we can use.
Chris Lattner6f87d182006-02-22 22:37:12 +00002114 RegsForValue Regs =
2115 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2116 true, UsesInputRegister,
2117 OutputRegs, InputRegs);
2118 assert(!Regs.Regs.empty() && "Couldn't allocate output reg!");
Chris Lattner7ad77df2006-02-22 00:56:39 +00002119
Chris Lattner3a5ed552006-02-01 01:28:23 +00002120 if (!Constraints[i].isIndirectOutput) {
Chris Lattner6f87d182006-02-22 22:37:12 +00002121 assert(RetValRegs.Regs.empty() &&
Chris Lattner3a5ed552006-02-01 01:28:23 +00002122 "Cannot have multiple output constraints yet!");
Chris Lattner3a5ed552006-02-01 01:28:23 +00002123 assert(I.getType() != Type::VoidTy && "Bad inline asm!");
Chris Lattner6f87d182006-02-22 22:37:12 +00002124 RetValRegs = Regs;
Chris Lattner3a5ed552006-02-01 01:28:23 +00002125 } else {
Chris Lattner9fed5b62006-02-27 23:45:39 +00002126 IndirectStoresToEmit.push_back(std::make_pair(Regs,
2127 I.getOperand(OpNum)));
Chris Lattner3a5ed552006-02-01 01:28:23 +00002128 OpNum++; // Consumes a call operand.
2129 }
Chris Lattner2e56e892006-01-31 02:03:41 +00002130
2131 // Add information to the INLINEASM node to know that this register is
2132 // set.
Chris Lattner571d9642006-02-23 19:21:04 +00002133 Regs.AddInlineAsmOperands(2 /*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner2e56e892006-01-31 02:03:41 +00002134 break;
2135 }
2136 case InlineAsm::isInput: {
Chris Lattner9fed5b62006-02-27 23:45:39 +00002137 SDOperand InOperandVal = getValue(I.getOperand(OpNum));
Chris Lattner1558fc62006-02-01 18:59:47 +00002138 OpNum++; // Consumes a call operand.
Chris Lattner65ad53f2006-02-04 02:16:44 +00002139
Chris Lattner7f5880b2006-02-02 00:25:23 +00002140 if (isdigit(ConstraintCode[0])) { // Matching constraint?
2141 // If this is required to match an output register we have already set,
2142 // just use its register.
2143 unsigned OperandNo = atoi(ConstraintCode.c_str());
Chris Lattner65ad53f2006-02-04 02:16:44 +00002144
Chris Lattner571d9642006-02-23 19:21:04 +00002145 // Scan until we find the definition we already emitted of this operand.
2146 // When we find it, create a RegsForValue operand.
2147 unsigned CurOp = 2; // The first operand.
2148 for (; OperandNo; --OperandNo) {
2149 // Advance to the next operand.
2150 unsigned NumOps =
2151 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2152 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2153 "Skipped past definitions?");
2154 CurOp += (NumOps>>3)+1;
2155 }
2156
2157 unsigned NumOps =
2158 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2159 assert((NumOps & 7) == 2 /*REGDEF*/ &&
2160 "Skipped past definitions?");
2161
2162 // Add NumOps>>3 registers to MatchedRegs.
2163 RegsForValue MatchedRegs;
2164 MatchedRegs.ValueVT = InOperandVal.getValueType();
2165 MatchedRegs.RegVT = AsmNodeOperands[CurOp+1].getValueType();
2166 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
2167 unsigned Reg=cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
2168 MatchedRegs.Regs.push_back(Reg);
2169 }
2170
2171 // Use the produced MatchedRegs object to
2172 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag);
2173 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattner571d9642006-02-23 19:21:04 +00002174 break;
Chris Lattner7f5880b2006-02-02 00:25:23 +00002175 }
Chris Lattner7ef7a642006-02-24 01:11:24 +00002176
2177 TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2178 if (ConstraintCode.size() == 1) // not a physreg name.
2179 CTy = TLI.getConstraintType(ConstraintCode[0]);
2180
2181 if (CTy == TargetLowering::C_Other) {
2182 if (!TLI.isOperandValidForConstraint(InOperandVal, ConstraintCode[0]))
2183 assert(0 && "MATCH FAIL!");
2184
2185 // Add information to the INLINEASM node to know about this input.
2186 unsigned ResOpType = 3 /*IMM*/ | (1 << 3);
2187 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2188 AsmNodeOperands.push_back(InOperandVal);
2189 break;
2190 } else if (CTy == TargetLowering::C_Memory) {
2191 // Memory input.
2192
2193 // Check that the operand isn't a float.
2194 if (!MVT::isInteger(InOperandVal.getValueType()))
2195 assert(0 && "MATCH FAIL!");
2196
2197 // Extend/truncate to the right pointer type if needed.
2198 MVT::ValueType PtrType = TLI.getPointerTy();
2199 if (InOperandVal.getValueType() < PtrType)
2200 InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2201 else if (InOperandVal.getValueType() > PtrType)
2202 InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2203
2204 // Add information to the INLINEASM node to know about this input.
2205 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2206 AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2207 AsmNodeOperands.push_back(InOperandVal);
2208 break;
2209 }
2210
2211 assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2212
2213 // Copy the input into the appropriate registers.
2214 RegsForValue InRegs =
2215 GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2216 false, true, OutputRegs, InputRegs);
2217 // FIXME: should be match fail.
2218 assert(!InRegs.Regs.empty() && "Couldn't allocate input reg!");
2219
2220 InRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag);
2221
2222 InRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG, AsmNodeOperands);
Chris Lattner2e56e892006-01-31 02:03:41 +00002223 break;
2224 }
Chris Lattner571d9642006-02-23 19:21:04 +00002225 case InlineAsm::isClobber: {
2226 RegsForValue ClobberedRegs =
2227 GetRegistersForValue(ConstraintCode, MVT::Other, false, false,
2228 OutputRegs, InputRegs);
2229 // Add the clobbered value to the operand list, so that the register
2230 // allocator is aware that the physreg got clobbered.
2231 if (!ClobberedRegs.Regs.empty())
2232 ClobberedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG, AsmNodeOperands);
Chris Lattner2e56e892006-01-31 02:03:41 +00002233 break;
2234 }
Chris Lattner571d9642006-02-23 19:21:04 +00002235 }
Chris Lattner2e56e892006-01-31 02:03:41 +00002236 }
Chris Lattner476e67b2006-01-26 22:24:51 +00002237
2238 // Finish up input operands.
2239 AsmNodeOperands[0] = Chain;
2240 if (Flag.Val) AsmNodeOperands.push_back(Flag);
2241
2242 std::vector<MVT::ValueType> VTs;
2243 VTs.push_back(MVT::Other);
2244 VTs.push_back(MVT::Flag);
2245 Chain = DAG.getNode(ISD::INLINEASM, VTs, AsmNodeOperands);
2246 Flag = Chain.getValue(1);
2247
Chris Lattner2e56e892006-01-31 02:03:41 +00002248 // If this asm returns a register value, copy the result from that register
2249 // and set it as the value of the call.
Chris Lattner6f87d182006-02-22 22:37:12 +00002250 if (!RetValRegs.Regs.empty())
2251 setValue(&I, RetValRegs.getCopyFromRegs(DAG, Chain, Flag));
Chris Lattner476e67b2006-01-26 22:24:51 +00002252
Chris Lattner2e56e892006-01-31 02:03:41 +00002253 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
2254
2255 // Process indirect outputs, first output all of the flagged copies out of
2256 // physregs.
2257 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner6f87d182006-02-22 22:37:12 +00002258 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner2e56e892006-01-31 02:03:41 +00002259 Value *Ptr = IndirectStoresToEmit[i].second;
Chris Lattner6f87d182006-02-22 22:37:12 +00002260 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, Flag);
2261 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner2e56e892006-01-31 02:03:41 +00002262 }
2263
2264 // Emit the non-flagged stores from the physregs.
2265 std::vector<SDOperand> OutChains;
2266 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
2267 OutChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
2268 StoresToEmit[i].first,
2269 getValue(StoresToEmit[i].second),
2270 DAG.getSrcValue(StoresToEmit[i].second)));
2271 if (!OutChains.empty())
2272 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattner476e67b2006-01-26 22:24:51 +00002273 DAG.setRoot(Chain);
2274}
2275
2276
Chris Lattner7a60d912005-01-07 07:47:53 +00002277void SelectionDAGLowering::visitMalloc(MallocInst &I) {
2278 SDOperand Src = getValue(I.getOperand(0));
2279
2280 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattnereccb73d2005-01-22 23:04:37 +00002281
2282 if (IntPtr < Src.getValueType())
2283 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
2284 else if (IntPtr > Src.getValueType())
2285 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner7a60d912005-01-07 07:47:53 +00002286
2287 // Scale the source by the type size.
Owen Anderson20a631f2006-05-03 01:29:57 +00002288 uint64_t ElementSize = TD->getTypeSize(I.getType()->getElementType());
Chris Lattner7a60d912005-01-07 07:47:53 +00002289 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
2290 Src, getIntPtrConstant(ElementSize));
2291
2292 std::vector<std::pair<SDOperand, const Type*> > Args;
Owen Anderson20a631f2006-05-03 01:29:57 +00002293 Args.push_back(std::make_pair(Src, TLI.getTargetData()->getIntPtrType()));
Chris Lattner1f45cd72005-01-08 19:26:18 +00002294
2295 std::pair<SDOperand,SDOperand> Result =
Chris Lattner2e77db62005-05-13 18:50:42 +00002296 TLI.LowerCallTo(getRoot(), I.getType(), false, CallingConv::C, true,
Chris Lattner1f45cd72005-01-08 19:26:18 +00002297 DAG.getExternalSymbol("malloc", IntPtr),
2298 Args, DAG);
2299 setValue(&I, Result.first); // Pointers always fit in registers
2300 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00002301}
2302
2303void SelectionDAGLowering::visitFree(FreeInst &I) {
2304 std::vector<std::pair<SDOperand, const Type*> > Args;
2305 Args.push_back(std::make_pair(getValue(I.getOperand(0)),
Owen Anderson20a631f2006-05-03 01:29:57 +00002306 TLI.getTargetData()->getIntPtrType()));
Chris Lattner7a60d912005-01-07 07:47:53 +00002307 MVT::ValueType IntPtr = TLI.getPointerTy();
Chris Lattner1f45cd72005-01-08 19:26:18 +00002308 std::pair<SDOperand,SDOperand> Result =
Chris Lattner2e77db62005-05-13 18:50:42 +00002309 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, CallingConv::C, true,
Chris Lattner1f45cd72005-01-08 19:26:18 +00002310 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
2311 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00002312}
2313
Chris Lattner13d7c252005-08-26 20:54:47 +00002314// InsertAtEndOfBasicBlock - This method should be implemented by targets that
2315// mark instructions with the 'usesCustomDAGSchedInserter' flag. These
2316// instructions are special in various ways, which require special support to
2317// insert. The specified MachineInstr is created but not inserted into any
2318// basic blocks, and the scheduler passes ownership of it to this method.
2319MachineBasicBlock *TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
2320 MachineBasicBlock *MBB) {
2321 std::cerr << "If a target marks an instruction with "
2322 "'usesCustomDAGSchedInserter', it must implement "
2323 "TargetLowering::InsertAtEndOfBasicBlock!\n";
2324 abort();
2325 return 0;
2326}
2327
Chris Lattner58cfd792005-01-09 00:00:49 +00002328void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00002329 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
2330 getValue(I.getOperand(1)),
2331 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner58cfd792005-01-09 00:00:49 +00002332}
2333
2334void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00002335 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
2336 getValue(I.getOperand(0)),
2337 DAG.getSrcValue(I.getOperand(0)));
2338 setValue(&I, V);
2339 DAG.setRoot(V.getValue(1));
Chris Lattner7a60d912005-01-07 07:47:53 +00002340}
2341
2342void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00002343 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
2344 getValue(I.getOperand(1)),
2345 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner7a60d912005-01-07 07:47:53 +00002346}
2347
2348void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemane74795c2006-01-25 18:21:52 +00002349 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
2350 getValue(I.getOperand(1)),
2351 getValue(I.getOperand(2)),
2352 DAG.getSrcValue(I.getOperand(1)),
2353 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner7a60d912005-01-07 07:47:53 +00002354}
2355
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002356/// TargetLowering::LowerArguments - This is the default LowerArguments
2357/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattneraaa23d92006-05-16 22:53:20 +00002358/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
2359/// integrated into SDISel.
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002360std::vector<SDOperand>
2361TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
2362 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
2363 std::vector<SDOperand> Ops;
Chris Lattner3d826992006-05-16 06:45:34 +00002364 Ops.push_back(DAG.getRoot());
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002365 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
2366 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
2367
2368 // Add one result value for each formal argument.
2369 std::vector<MVT::ValueType> RetVals;
2370 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2371 MVT::ValueType VT = getValueType(I->getType());
2372
2373 switch (getTypeAction(VT)) {
2374 default: assert(0 && "Unknown type action!");
2375 case Legal:
2376 RetVals.push_back(VT);
2377 break;
2378 case Promote:
2379 RetVals.push_back(getTypeToTransformTo(VT));
2380 break;
2381 case Expand:
2382 if (VT != MVT::Vector) {
2383 // If this is a large integer, it needs to be broken up into small
2384 // integers. Figure out what the destination type is and how many small
2385 // integers it turns into.
2386 MVT::ValueType NVT = getTypeToTransformTo(VT);
2387 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2388 for (unsigned i = 0; i != NumVals; ++i)
2389 RetVals.push_back(NVT);
2390 } else {
2391 // Otherwise, this is a vector type. We only support legal vectors
2392 // right now.
2393 unsigned NumElems = cast<PackedType>(I->getType())->getNumElements();
2394 const Type *EltTy = cast<PackedType>(I->getType())->getElementType();
Evan Cheng3784f3c52006-04-27 08:29:42 +00002395
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002396 // Figure out if there is a Packed type corresponding to this Vector
2397 // type. If so, convert to the packed type.
2398 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2399 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2400 RetVals.push_back(TVT);
2401 } else {
2402 assert(0 && "Don't support illegal by-val vector arguments yet!");
2403 }
2404 }
2405 break;
2406 }
2407 }
Evan Cheng9618df12006-04-25 23:03:35 +00002408
Chris Lattner3d826992006-05-16 06:45:34 +00002409 RetVals.push_back(MVT::Other);
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002410
2411 // Create the node.
2412 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, RetVals, Ops).Val;
Chris Lattner3d826992006-05-16 06:45:34 +00002413
2414 DAG.setRoot(SDOperand(Result, Result->getNumValues()-1));
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002415
2416 // Set up the return result vector.
2417 Ops.clear();
2418 unsigned i = 0;
2419 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2420 MVT::ValueType VT = getValueType(I->getType());
2421
2422 switch (getTypeAction(VT)) {
2423 default: assert(0 && "Unknown type action!");
2424 case Legal:
2425 Ops.push_back(SDOperand(Result, i++));
2426 break;
2427 case Promote: {
2428 SDOperand Op(Result, i++);
2429 if (MVT::isInteger(VT)) {
2430 unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext
2431 : ISD::AssertZext;
2432 Op = DAG.getNode(AssertOp, Op.getValueType(), Op, DAG.getValueType(VT));
2433 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2434 } else {
2435 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2436 Op = DAG.getNode(ISD::FP_ROUND, VT, Op);
2437 }
2438 Ops.push_back(Op);
2439 break;
2440 }
2441 case Expand:
2442 if (VT != MVT::Vector) {
2443 // If this is a large integer, it needs to be reassembled from small
2444 // integers. Figure out what the source elt type is and how many small
2445 // integers it is.
2446 MVT::ValueType NVT = getTypeToTransformTo(VT);
2447 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2448 if (NumVals == 2) {
2449 SDOperand Lo = SDOperand(Result, i++);
2450 SDOperand Hi = SDOperand(Result, i++);
2451
2452 if (!isLittleEndian())
2453 std::swap(Lo, Hi);
2454
2455 Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi));
2456 } else {
2457 // Value scalarized into many values. Unimp for now.
2458 assert(0 && "Cannot expand i64 -> i16 yet!");
2459 }
2460 } else {
2461 // Otherwise, this is a vector type. We only support legal vectors
2462 // right now.
Evan Chengd43c5c62006-04-28 05:25:15 +00002463 const PackedType *PTy = cast<PackedType>(I->getType());
2464 unsigned NumElems = PTy->getNumElements();
2465 const Type *EltTy = PTy->getElementType();
Evan Cheng3784f3c52006-04-27 08:29:42 +00002466
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002467 // Figure out if there is a Packed type corresponding to this Vector
2468 // type. If so, convert to the packed type.
2469 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
Chris Lattner7949c2e2006-05-17 20:49:36 +00002470 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Evan Chengd43c5c62006-04-28 05:25:15 +00002471 SDOperand N = SDOperand(Result, i++);
2472 // Handle copies from generic vectors to registers.
Chris Lattner7949c2e2006-05-17 20:49:36 +00002473 N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
2474 DAG.getConstant(NumElems, MVT::i32),
2475 DAG.getValueType(getValueType(EltTy)));
2476 Ops.push_back(N);
2477 } else {
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002478 assert(0 && "Don't support illegal by-val vector arguments yet!");
Chris Lattnerb77ba732006-05-16 23:39:44 +00002479 abort();
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002480 }
2481 }
2482 break;
2483 }
2484 }
2485 return Ops;
2486}
2487
Chris Lattneraaa23d92006-05-16 22:53:20 +00002488
2489/// TargetLowering::LowerCallTo - This is the default LowerCallTo
2490/// implementation, which just inserts an ISD::CALL node, which is later custom
2491/// lowered by the target to something concrete. FIXME: When all targets are
2492/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
2493std::pair<SDOperand, SDOperand>
2494TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
2495 unsigned CallingConv, bool isTailCall,
2496 SDOperand Callee,
2497 ArgListTy &Args, SelectionDAG &DAG) {
2498 std::vector<SDOperand> Ops;
2499 Ops.push_back(Chain); // Op#0 - Chain
2500 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
2501 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
2502 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
2503 Ops.push_back(Callee);
2504
2505 // Handle all of the outgoing arguments.
2506 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
2507 MVT::ValueType VT = getValueType(Args[i].second);
2508 SDOperand Op = Args[i].first;
Evan Cheng45827712006-05-25 00:55:32 +00002509 bool isSigned = Args[i].second->isSigned();
Chris Lattneraaa23d92006-05-16 22:53:20 +00002510 switch (getTypeAction(VT)) {
2511 default: assert(0 && "Unknown type action!");
2512 case Legal:
2513 Ops.push_back(Op);
Evan Cheng45827712006-05-25 00:55:32 +00002514 Ops.push_back(DAG.getConstant(isSigned, MVT::i1));
Chris Lattneraaa23d92006-05-16 22:53:20 +00002515 break;
2516 case Promote:
2517 if (MVT::isInteger(VT)) {
Evan Cheng45827712006-05-25 00:55:32 +00002518 unsigned ExtOp = isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Chris Lattneraaa23d92006-05-16 22:53:20 +00002519 Op = DAG.getNode(ExtOp, getTypeToTransformTo(VT), Op);
2520 } else {
2521 assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2522 Op = DAG.getNode(ISD::FP_EXTEND, getTypeToTransformTo(VT), Op);
2523 }
2524 Ops.push_back(Op);
Evan Cheng45827712006-05-25 00:55:32 +00002525 Ops.push_back(DAG.getConstant(isSigned, MVT::i1));
Chris Lattneraaa23d92006-05-16 22:53:20 +00002526 break;
2527 case Expand:
2528 if (VT != MVT::Vector) {
2529 // If this is a large integer, it needs to be broken down into small
2530 // integers. Figure out what the source elt type is and how many small
2531 // integers it is.
2532 MVT::ValueType NVT = getTypeToTransformTo(VT);
2533 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2534 if (NumVals == 2) {
2535 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2536 DAG.getConstant(0, getPointerTy()));
2537 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2538 DAG.getConstant(1, getPointerTy()));
2539 if (!isLittleEndian())
2540 std::swap(Lo, Hi);
2541
2542 Ops.push_back(Lo);
Evan Cheng45827712006-05-25 00:55:32 +00002543 Ops.push_back(DAG.getConstant(isSigned, MVT::i1));
Chris Lattneraaa23d92006-05-16 22:53:20 +00002544 Ops.push_back(Hi);
Evan Cheng45827712006-05-25 00:55:32 +00002545 Ops.push_back(DAG.getConstant(isSigned, MVT::i1));
Chris Lattneraaa23d92006-05-16 22:53:20 +00002546 } else {
2547 // Value scalarized into many values. Unimp for now.
2548 assert(0 && "Cannot expand i64 -> i16 yet!");
2549 }
2550 } else {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002551 // Otherwise, this is a vector type. We only support legal vectors
2552 // right now.
2553 const PackedType *PTy = cast<PackedType>(Args[i].second);
2554 unsigned NumElems = PTy->getNumElements();
2555 const Type *EltTy = PTy->getElementType();
2556
2557 // Figure out if there is a Packed type corresponding to this Vector
2558 // type. If so, convert to the packed type.
2559 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
Chris Lattner938155c2006-05-17 20:43:21 +00002560 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2561 // Insert a VBIT_CONVERT of the MVT::Vector type to the packed type.
2562 Op = DAG.getNode(ISD::VBIT_CONVERT, TVT, Op);
2563 Ops.push_back(Op);
Evan Cheng45827712006-05-25 00:55:32 +00002564 Ops.push_back(DAG.getConstant(isSigned, MVT::i1));
Chris Lattner938155c2006-05-17 20:43:21 +00002565 } else {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002566 assert(0 && "Don't support illegal by-val vector call args yet!");
2567 abort();
2568 }
Chris Lattneraaa23d92006-05-16 22:53:20 +00002569 }
2570 break;
2571 }
2572 }
2573
2574 // Figure out the result value types.
2575 std::vector<MVT::ValueType> RetTys;
2576
2577 if (RetTy != Type::VoidTy) {
2578 MVT::ValueType VT = getValueType(RetTy);
2579 switch (getTypeAction(VT)) {
2580 default: assert(0 && "Unknown type action!");
2581 case Legal:
2582 RetTys.push_back(VT);
2583 break;
2584 case Promote:
2585 RetTys.push_back(getTypeToTransformTo(VT));
2586 break;
2587 case Expand:
2588 if (VT != MVT::Vector) {
2589 // If this is a large integer, it needs to be reassembled from small
2590 // integers. Figure out what the source elt type is and how many small
2591 // integers it is.
2592 MVT::ValueType NVT = getTypeToTransformTo(VT);
2593 unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2594 for (unsigned i = 0; i != NumVals; ++i)
2595 RetTys.push_back(NVT);
2596 } else {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002597 // Otherwise, this is a vector type. We only support legal vectors
2598 // right now.
2599 const PackedType *PTy = cast<PackedType>(RetTy);
2600 unsigned NumElems = PTy->getNumElements();
2601 const Type *EltTy = PTy->getElementType();
2602
2603 // Figure out if there is a Packed type corresponding to this Vector
2604 // type. If so, convert to the packed type.
2605 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2606 if (TVT != MVT::Other && isTypeLegal(TVT)) {
2607 RetTys.push_back(TVT);
2608 } else {
2609 assert(0 && "Don't support illegal by-val vector call results yet!");
2610 abort();
2611 }
Chris Lattneraaa23d92006-05-16 22:53:20 +00002612 }
2613 }
2614 }
2615
2616 RetTys.push_back(MVT::Other); // Always has a chain.
2617
2618 // Finally, create the CALL node.
2619 SDOperand Res = DAG.getNode(ISD::CALL, RetTys, Ops);
2620
2621 // This returns a pair of operands. The first element is the
2622 // return value for the function (if RetTy is not VoidTy). The second
2623 // element is the outgoing token chain.
2624 SDOperand ResVal;
2625 if (RetTys.size() != 1) {
2626 MVT::ValueType VT = getValueType(RetTy);
2627 if (RetTys.size() == 2) {
2628 ResVal = Res;
2629
2630 // If this value was promoted, truncate it down.
2631 if (ResVal.getValueType() != VT) {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002632 if (VT == MVT::Vector) {
2633 // Insert a VBITCONVERT to convert from the packed result type to the
2634 // MVT::Vector type.
2635 unsigned NumElems = cast<PackedType>(RetTy)->getNumElements();
2636 const Type *EltTy = cast<PackedType>(RetTy)->getElementType();
2637
2638 // Figure out if there is a Packed type corresponding to this Vector
2639 // type. If so, convert to the packed type.
2640 MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2641 if (TVT != MVT::Other && isTypeLegal(TVT)) {
Chris Lattnerb77ba732006-05-16 23:39:44 +00002642 // Insert a VBIT_CONVERT of the FORMAL_ARGUMENTS to a
2643 // "N x PTyElementVT" MVT::Vector type.
2644 ResVal = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, ResVal,
Chris Lattner7949c2e2006-05-17 20:49:36 +00002645 DAG.getConstant(NumElems, MVT::i32),
2646 DAG.getValueType(getValueType(EltTy)));
Chris Lattnerb77ba732006-05-16 23:39:44 +00002647 } else {
2648 abort();
2649 }
2650 } else if (MVT::isInteger(VT)) {
Chris Lattneraaa23d92006-05-16 22:53:20 +00002651 unsigned AssertOp = RetTy->isSigned() ?
2652 ISD::AssertSext : ISD::AssertZext;
2653 ResVal = DAG.getNode(AssertOp, ResVal.getValueType(), ResVal,
2654 DAG.getValueType(VT));
2655 ResVal = DAG.getNode(ISD::TRUNCATE, VT, ResVal);
2656 } else {
2657 assert(MVT::isFloatingPoint(VT));
2658 ResVal = DAG.getNode(ISD::FP_ROUND, VT, ResVal);
2659 }
2660 }
2661 } else if (RetTys.size() == 3) {
2662 ResVal = DAG.getNode(ISD::BUILD_PAIR, VT,
2663 Res.getValue(0), Res.getValue(1));
2664
2665 } else {
2666 assert(0 && "Case not handled yet!");
2667 }
2668 }
2669
2670 return std::make_pair(ResVal, Res.getValue(Res.Val->getNumValues()-1));
2671}
2672
2673
2674
Chris Lattner58cfd792005-01-09 00:00:49 +00002675// It is always conservatively correct for llvm.returnaddress and
2676// llvm.frameaddress to return 0.
Chris Lattneraaa23d92006-05-16 22:53:20 +00002677//
2678// FIXME: Change this to insert a FRAMEADDR/RETURNADDR node, and have that be
2679// expanded to 0 if the target wants.
Chris Lattner58cfd792005-01-09 00:00:49 +00002680std::pair<SDOperand, SDOperand>
2681TargetLowering::LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain,
2682 unsigned Depth, SelectionDAG &DAG) {
2683 return std::make_pair(DAG.getConstant(0, getPointerTy()), Chain);
Chris Lattner7a60d912005-01-07 07:47:53 +00002684}
2685
Chris Lattner29dcc712005-05-14 05:50:48 +00002686SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner897cd7d2005-01-16 07:28:41 +00002687 assert(0 && "LowerOperation not implemented for this target!");
2688 abort();
Misha Brukman73e929f2005-02-17 21:39:27 +00002689 return SDOperand();
Chris Lattner897cd7d2005-01-16 07:28:41 +00002690}
2691
Nate Begeman595ec732006-01-28 03:14:31 +00002692SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
2693 SelectionDAG &DAG) {
2694 assert(0 && "CustomPromoteOperation not implemented for this target!");
2695 abort();
2696 return SDOperand();
2697}
2698
Chris Lattner58cfd792005-01-09 00:00:49 +00002699void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) {
2700 unsigned Depth = (unsigned)cast<ConstantUInt>(I.getOperand(1))->getValue();
2701 std::pair<SDOperand,SDOperand> Result =
Chris Lattner4108bb02005-01-17 19:43:36 +00002702 TLI.LowerFrameReturnAddress(isFrame, getRoot(), Depth, DAG);
Chris Lattner58cfd792005-01-09 00:00:49 +00002703 setValue(&I, Result.first);
2704 DAG.setRoot(Result.second);
Chris Lattner7a60d912005-01-07 07:47:53 +00002705}
2706
Evan Cheng6781b6e2006-02-15 21:59:04 +00002707/// getMemsetValue - Vectorized representation of the memset value
Evan Cheng81fcea82006-02-14 08:22:34 +00002708/// operand.
2709static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT,
Evan Cheng93e48652006-02-15 22:12:35 +00002710 SelectionDAG &DAG) {
Evan Cheng81fcea82006-02-14 08:22:34 +00002711 MVT::ValueType CurVT = VT;
2712 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
2713 uint64_t Val = C->getValue() & 255;
2714 unsigned Shift = 8;
2715 while (CurVT != MVT::i8) {
2716 Val = (Val << Shift) | Val;
2717 Shift <<= 1;
2718 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00002719 }
2720 return DAG.getConstant(Val, VT);
2721 } else {
2722 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2723 unsigned Shift = 8;
2724 while (CurVT != MVT::i8) {
2725 Value =
2726 DAG.getNode(ISD::OR, VT,
2727 DAG.getNode(ISD::SHL, VT, Value,
2728 DAG.getConstant(Shift, MVT::i8)), Value);
2729 Shift <<= 1;
2730 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00002731 }
2732
2733 return Value;
2734 }
2735}
2736
Evan Cheng6781b6e2006-02-15 21:59:04 +00002737/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2738/// used when a memcpy is turned into a memset when the source is a constant
2739/// string ptr.
2740static SDOperand getMemsetStringVal(MVT::ValueType VT,
2741 SelectionDAG &DAG, TargetLowering &TLI,
2742 std::string &Str, unsigned Offset) {
2743 MVT::ValueType CurVT = VT;
2744 uint64_t Val = 0;
2745 unsigned MSB = getSizeInBits(VT) / 8;
2746 if (TLI.isLittleEndian())
2747 Offset = Offset + MSB - 1;
2748 for (unsigned i = 0; i != MSB; ++i) {
2749 Val = (Val << 8) | Str[Offset];
2750 Offset += TLI.isLittleEndian() ? -1 : 1;
2751 }
2752 return DAG.getConstant(Val, VT);
2753}
2754
Evan Cheng81fcea82006-02-14 08:22:34 +00002755/// getMemBasePlusOffset - Returns base and offset node for the
2756static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
2757 SelectionDAG &DAG, TargetLowering &TLI) {
2758 MVT::ValueType VT = Base.getValueType();
2759 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2760}
2761
Evan Chengdb2a7a72006-02-14 20:12:38 +00002762/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
Evan Chengd5026102006-02-14 09:11:59 +00002763/// to replace the memset / memcpy is below the threshold. It also returns the
2764/// types of the sequence of memory ops to perform memset / memcpy.
Evan Chengdb2a7a72006-02-14 20:12:38 +00002765static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps,
2766 unsigned Limit, uint64_t Size,
2767 unsigned Align, TargetLowering &TLI) {
Evan Cheng81fcea82006-02-14 08:22:34 +00002768 MVT::ValueType VT;
2769
2770 if (TLI.allowsUnalignedMemoryAccesses()) {
2771 VT = MVT::i64;
2772 } else {
2773 switch (Align & 7) {
2774 case 0:
2775 VT = MVT::i64;
2776 break;
2777 case 4:
2778 VT = MVT::i32;
2779 break;
2780 case 2:
2781 VT = MVT::i16;
2782 break;
2783 default:
2784 VT = MVT::i8;
2785 break;
2786 }
2787 }
2788
Evan Chengd5026102006-02-14 09:11:59 +00002789 MVT::ValueType LVT = MVT::i64;
2790 while (!TLI.isTypeLegal(LVT))
2791 LVT = (MVT::ValueType)((unsigned)LVT - 1);
2792 assert(MVT::isInteger(LVT));
Evan Cheng81fcea82006-02-14 08:22:34 +00002793
Evan Chengd5026102006-02-14 09:11:59 +00002794 if (VT > LVT)
2795 VT = LVT;
2796
Evan Cheng04514992006-02-14 23:05:54 +00002797 unsigned NumMemOps = 0;
Evan Cheng81fcea82006-02-14 08:22:34 +00002798 while (Size != 0) {
2799 unsigned VTSize = getSizeInBits(VT) / 8;
2800 while (VTSize > Size) {
2801 VT = (MVT::ValueType)((unsigned)VT - 1);
Evan Cheng81fcea82006-02-14 08:22:34 +00002802 VTSize >>= 1;
2803 }
Evan Chengd5026102006-02-14 09:11:59 +00002804 assert(MVT::isInteger(VT));
2805
2806 if (++NumMemOps > Limit)
2807 return false;
Evan Cheng81fcea82006-02-14 08:22:34 +00002808 MemOps.push_back(VT);
2809 Size -= VTSize;
2810 }
Evan Chengd5026102006-02-14 09:11:59 +00002811
2812 return true;
Evan Cheng81fcea82006-02-14 08:22:34 +00002813}
2814
Chris Lattner875def92005-01-11 05:56:49 +00002815void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) {
Evan Cheng81fcea82006-02-14 08:22:34 +00002816 SDOperand Op1 = getValue(I.getOperand(1));
2817 SDOperand Op2 = getValue(I.getOperand(2));
2818 SDOperand Op3 = getValue(I.getOperand(3));
2819 SDOperand Op4 = getValue(I.getOperand(4));
2820 unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue();
2821 if (Align == 0) Align = 1;
2822
2823 if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) {
2824 std::vector<MVT::ValueType> MemOps;
Evan Cheng81fcea82006-02-14 08:22:34 +00002825
2826 // Expand memset / memcpy to a series of load / store ops
2827 // if the size operand falls below a certain threshold.
2828 std::vector<SDOperand> OutChains;
2829 switch (Op) {
Evan Cheng038521e2006-02-14 19:45:56 +00002830 default: break; // Do nothing for now.
Evan Cheng81fcea82006-02-14 08:22:34 +00002831 case ISD::MEMSET: {
Evan Chengdb2a7a72006-02-14 20:12:38 +00002832 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
2833 Size->getValue(), Align, TLI)) {
Evan Chengd5026102006-02-14 09:11:59 +00002834 unsigned NumMemOps = MemOps.size();
Evan Cheng81fcea82006-02-14 08:22:34 +00002835 unsigned Offset = 0;
2836 for (unsigned i = 0; i < NumMemOps; i++) {
2837 MVT::ValueType VT = MemOps[i];
2838 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Cheng93e48652006-02-15 22:12:35 +00002839 SDOperand Value = getMemsetValue(Op2, VT, DAG);
Evan Chenge2038bd2006-02-15 01:54:51 +00002840 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, getRoot(),
2841 Value,
Chris Lattner6f87d182006-02-22 22:37:12 +00002842 getMemBasePlusOffset(Op1, Offset, DAG, TLI),
2843 DAG.getSrcValue(I.getOperand(1), Offset));
Evan Chenge2038bd2006-02-15 01:54:51 +00002844 OutChains.push_back(Store);
Evan Cheng81fcea82006-02-14 08:22:34 +00002845 Offset += VTSize;
2846 }
Evan Cheng81fcea82006-02-14 08:22:34 +00002847 }
Evan Chenge2038bd2006-02-15 01:54:51 +00002848 break;
Evan Cheng81fcea82006-02-14 08:22:34 +00002849 }
Evan Chenge2038bd2006-02-15 01:54:51 +00002850 case ISD::MEMCPY: {
2851 if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemcpy(),
2852 Size->getValue(), Align, TLI)) {
2853 unsigned NumMemOps = MemOps.size();
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002854 unsigned SrcOff = 0, DstOff = 0, SrcDelta = 0;
Evan Cheng6781b6e2006-02-15 21:59:04 +00002855 GlobalAddressSDNode *G = NULL;
2856 std::string Str;
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002857 bool CopyFromStr = false;
Evan Cheng6781b6e2006-02-15 21:59:04 +00002858
2859 if (Op2.getOpcode() == ISD::GlobalAddress)
2860 G = cast<GlobalAddressSDNode>(Op2);
2861 else if (Op2.getOpcode() == ISD::ADD &&
2862 Op2.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2863 Op2.getOperand(1).getOpcode() == ISD::Constant) {
2864 G = cast<GlobalAddressSDNode>(Op2.getOperand(0));
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002865 SrcDelta = cast<ConstantSDNode>(Op2.getOperand(1))->getValue();
Evan Cheng6781b6e2006-02-15 21:59:04 +00002866 }
2867 if (G) {
2868 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002869 if (GV) {
Evan Cheng38280c02006-03-10 23:52:03 +00002870 Str = GV->getStringValue(false);
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002871 if (!Str.empty()) {
2872 CopyFromStr = true;
2873 SrcOff += SrcDelta;
2874 }
2875 }
Evan Cheng6781b6e2006-02-15 21:59:04 +00002876 }
2877
Evan Chenge2038bd2006-02-15 01:54:51 +00002878 for (unsigned i = 0; i < NumMemOps; i++) {
2879 MVT::ValueType VT = MemOps[i];
2880 unsigned VTSize = getSizeInBits(VT) / 8;
Evan Cheng6781b6e2006-02-15 21:59:04 +00002881 SDOperand Value, Chain, Store;
2882
Evan Chengc3dcf5a2006-02-16 23:11:42 +00002883 if (CopyFromStr) {
Evan Cheng6781b6e2006-02-15 21:59:04 +00002884 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
2885 Chain = getRoot();
2886 Store =
2887 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2888 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2889 DAG.getSrcValue(I.getOperand(1), DstOff));
2890 } else {
2891 Value = DAG.getLoad(VT, getRoot(),
2892 getMemBasePlusOffset(Op2, SrcOff, DAG, TLI),
2893 DAG.getSrcValue(I.getOperand(2), SrcOff));
2894 Chain = Value.getValue(1);
2895 Store =
2896 DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2897 getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2898 DAG.getSrcValue(I.getOperand(1), DstOff));
2899 }
Evan Chenge2038bd2006-02-15 01:54:51 +00002900 OutChains.push_back(Store);
Evan Cheng6781b6e2006-02-15 21:59:04 +00002901 SrcOff += VTSize;
2902 DstOff += VTSize;
Evan Chenge2038bd2006-02-15 01:54:51 +00002903 }
2904 }
2905 break;
2906 }
2907 }
2908
2909 if (!OutChains.empty()) {
2910 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains));
2911 return;
Evan Cheng81fcea82006-02-14 08:22:34 +00002912 }
2913 }
2914
Chris Lattner875def92005-01-11 05:56:49 +00002915 std::vector<SDOperand> Ops;
Chris Lattner4108bb02005-01-17 19:43:36 +00002916 Ops.push_back(getRoot());
Evan Cheng81fcea82006-02-14 08:22:34 +00002917 Ops.push_back(Op1);
2918 Ops.push_back(Op2);
2919 Ops.push_back(Op3);
2920 Ops.push_back(Op4);
Chris Lattner875def92005-01-11 05:56:49 +00002921 DAG.setRoot(DAG.getNode(Op, MVT::Other, Ops));
Chris Lattner7a60d912005-01-07 07:47:53 +00002922}
2923
Chris Lattner875def92005-01-11 05:56:49 +00002924//===----------------------------------------------------------------------===//
2925// SelectionDAGISel code
2926//===----------------------------------------------------------------------===//
Chris Lattner7a60d912005-01-07 07:47:53 +00002927
2928unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) {
2929 return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
2930}
2931
Chris Lattnerc9950c12005-08-17 06:37:43 +00002932void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner1a908c82005-08-18 17:35:14 +00002933 // FIXME: we only modify the CFG to split critical edges. This
2934 // updates dom and loop info.
Chris Lattnerc9950c12005-08-17 06:37:43 +00002935}
Chris Lattner7a60d912005-01-07 07:47:53 +00002936
Chris Lattner35397782005-12-05 07:10:48 +00002937
Chris Lattner3e3f2c62006-05-05 21:17:49 +00002938/// OptimizeNoopCopyExpression - We have determined that the specified cast
2939/// instruction is a noop copy (e.g. it's casting from one pointer type to
2940/// another, int->uint, or int->sbyte on PPC.
2941///
2942/// Return true if any changes are made.
2943static bool OptimizeNoopCopyExpression(CastInst *CI) {
2944 BasicBlock *DefBB = CI->getParent();
2945
2946 /// InsertedCasts - Only insert a cast in each block once.
2947 std::map<BasicBlock*, CastInst*> InsertedCasts;
2948
2949 bool MadeChange = false;
2950 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
2951 UI != E; ) {
2952 Use &TheUse = UI.getUse();
2953 Instruction *User = cast<Instruction>(*UI);
2954
2955 // Figure out which BB this cast is used in. For PHI's this is the
2956 // appropriate predecessor block.
2957 BasicBlock *UserBB = User->getParent();
2958 if (PHINode *PN = dyn_cast<PHINode>(User)) {
2959 unsigned OpVal = UI.getOperandNo()/2;
2960 UserBB = PN->getIncomingBlock(OpVal);
2961 }
2962
2963 // Preincrement use iterator so we don't invalidate it.
2964 ++UI;
2965
2966 // If this user is in the same block as the cast, don't change the cast.
2967 if (UserBB == DefBB) continue;
2968
2969 // If we have already inserted a cast into this block, use it.
2970 CastInst *&InsertedCast = InsertedCasts[UserBB];
2971
2972 if (!InsertedCast) {
2973 BasicBlock::iterator InsertPt = UserBB->begin();
2974 while (isa<PHINode>(InsertPt)) ++InsertPt;
2975
2976 InsertedCast =
2977 new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
2978 MadeChange = true;
2979 }
2980
2981 // Replace a use of the cast with a use of the new casat.
2982 TheUse = InsertedCast;
2983 }
2984
2985 // If we removed all uses, nuke the cast.
2986 if (CI->use_empty())
2987 CI->eraseFromParent();
2988
2989 return MadeChange;
2990}
2991
Chris Lattner35397782005-12-05 07:10:48 +00002992/// InsertGEPComputeCode - Insert code into BB to compute Ptr+PtrOffset,
2993/// casting to the type of GEPI.
Chris Lattner21cd9902006-05-06 09:10:37 +00002994static Instruction *InsertGEPComputeCode(Instruction *&V, BasicBlock *BB,
2995 Instruction *GEPI, Value *Ptr,
2996 Value *PtrOffset) {
Chris Lattner35397782005-12-05 07:10:48 +00002997 if (V) return V; // Already computed.
2998
2999 BasicBlock::iterator InsertPt;
3000 if (BB == GEPI->getParent()) {
3001 // If insert into the GEP's block, insert right after the GEP.
3002 InsertPt = GEPI;
3003 ++InsertPt;
3004 } else {
3005 // Otherwise, insert at the top of BB, after any PHI nodes
3006 InsertPt = BB->begin();
3007 while (isa<PHINode>(InsertPt)) ++InsertPt;
3008 }
3009
Chris Lattnerbe73d6e2005-12-08 08:00:12 +00003010 // If Ptr is itself a cast, but in some other BB, emit a copy of the cast into
3011 // BB so that there is only one value live across basic blocks (the cast
3012 // operand).
3013 if (CastInst *CI = dyn_cast<CastInst>(Ptr))
3014 if (CI->getParent() != BB && isa<PointerType>(CI->getOperand(0)->getType()))
3015 Ptr = new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
3016
Chris Lattner35397782005-12-05 07:10:48 +00003017 // Add the offset, cast it to the right type.
3018 Ptr = BinaryOperator::createAdd(Ptr, PtrOffset, "", InsertPt);
Chris Lattner21cd9902006-05-06 09:10:37 +00003019 return V = new CastInst(Ptr, GEPI->getType(), "", InsertPt);
Chris Lattner35397782005-12-05 07:10:48 +00003020}
3021
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003022/// ReplaceUsesOfGEPInst - Replace all uses of RepPtr with inserted code to
3023/// compute its value. The RepPtr value can be computed with Ptr+PtrOffset. One
3024/// trivial way of doing this would be to evaluate Ptr+PtrOffset in RepPtr's
3025/// block, then ReplaceAllUsesWith'ing everything. However, we would prefer to
3026/// sink PtrOffset into user blocks where doing so will likely allow us to fold
3027/// the constant add into a load or store instruction. Additionally, if a user
3028/// is a pointer-pointer cast, we look through it to find its users.
3029static void ReplaceUsesOfGEPInst(Instruction *RepPtr, Value *Ptr,
3030 Constant *PtrOffset, BasicBlock *DefBB,
3031 GetElementPtrInst *GEPI,
Chris Lattner21cd9902006-05-06 09:10:37 +00003032 std::map<BasicBlock*,Instruction*> &InsertedExprs) {
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003033 while (!RepPtr->use_empty()) {
3034 Instruction *User = cast<Instruction>(RepPtr->use_back());
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003035
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003036 // If the user is a Pointer-Pointer cast, recurse.
3037 if (isa<CastInst>(User) && isa<PointerType>(User->getType())) {
3038 ReplaceUsesOfGEPInst(User, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003039
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003040 // Drop the use of RepPtr. The cast is dead. Don't delete it now, else we
3041 // could invalidate an iterator.
3042 User->setOperand(0, UndefValue::get(RepPtr->getType()));
3043 continue;
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003044 }
3045
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003046 // If this is a load of the pointer, or a store through the pointer, emit
3047 // the increment into the load/store block.
Chris Lattner21cd9902006-05-06 09:10:37 +00003048 Instruction *NewVal;
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003049 if (isa<LoadInst>(User) ||
3050 (isa<StoreInst>(User) && User->getOperand(0) != RepPtr)) {
3051 NewVal = InsertGEPComputeCode(InsertedExprs[User->getParent()],
3052 User->getParent(), GEPI,
3053 Ptr, PtrOffset);
3054 } else {
3055 // If this use is not foldable into the addressing mode, use a version
3056 // emitted in the GEP block.
3057 NewVal = InsertGEPComputeCode(InsertedExprs[DefBB], DefBB, GEPI,
3058 Ptr, PtrOffset);
3059 }
3060
Chris Lattner21cd9902006-05-06 09:10:37 +00003061 if (GEPI->getType() != RepPtr->getType()) {
3062 BasicBlock::iterator IP = NewVal;
3063 ++IP;
3064 NewVal = new CastInst(NewVal, RepPtr->getType(), "", IP);
3065 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003066 User->replaceUsesOfWith(RepPtr, NewVal);
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003067 }
3068}
Chris Lattner35397782005-12-05 07:10:48 +00003069
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003070
Chris Lattner35397782005-12-05 07:10:48 +00003071/// OptimizeGEPExpression - Since we are doing basic-block-at-a-time instruction
3072/// selection, we want to be a bit careful about some things. In particular, if
3073/// we have a GEP instruction that is used in a different block than it is
3074/// defined, the addressing expression of the GEP cannot be folded into loads or
3075/// stores that use it. In this case, decompose the GEP and move constant
3076/// indices into blocks that use it.
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003077static bool OptimizeGEPExpression(GetElementPtrInst *GEPI,
Owen Anderson20a631f2006-05-03 01:29:57 +00003078 const TargetData *TD) {
Chris Lattner35397782005-12-05 07:10:48 +00003079 // If this GEP is only used inside the block it is defined in, there is no
3080 // need to rewrite it.
3081 bool isUsedOutsideDefBB = false;
3082 BasicBlock *DefBB = GEPI->getParent();
3083 for (Value::use_iterator UI = GEPI->use_begin(), E = GEPI->use_end();
3084 UI != E; ++UI) {
3085 if (cast<Instruction>(*UI)->getParent() != DefBB) {
3086 isUsedOutsideDefBB = true;
3087 break;
3088 }
3089 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003090 if (!isUsedOutsideDefBB) return false;
Chris Lattner35397782005-12-05 07:10:48 +00003091
3092 // If this GEP has no non-zero constant indices, there is nothing we can do,
3093 // ignore it.
3094 bool hasConstantIndex = false;
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003095 bool hasVariableIndex = false;
Chris Lattner35397782005-12-05 07:10:48 +00003096 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3097 E = GEPI->op_end(); OI != E; ++OI) {
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003098 if (ConstantInt *CI = dyn_cast<ConstantInt>(*OI)) {
Chris Lattner35397782005-12-05 07:10:48 +00003099 if (CI->getRawValue()) {
3100 hasConstantIndex = true;
3101 break;
3102 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003103 } else {
3104 hasVariableIndex = true;
3105 }
Chris Lattner35397782005-12-05 07:10:48 +00003106 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003107
3108 // If this is a "GEP X, 0, 0, 0", turn this into a cast.
3109 if (!hasConstantIndex && !hasVariableIndex) {
3110 Value *NC = new CastInst(GEPI->getOperand(0), GEPI->getType(),
3111 GEPI->getName(), GEPI);
3112 GEPI->replaceAllUsesWith(NC);
3113 GEPI->eraseFromParent();
3114 return true;
3115 }
3116
Chris Lattnerf1a54c02005-12-11 09:05:13 +00003117 // If this is a GEP &Alloca, 0, 0, forward subst the frame index into uses.
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003118 if (!hasConstantIndex && !isa<AllocaInst>(GEPI->getOperand(0)))
3119 return false;
Chris Lattner35397782005-12-05 07:10:48 +00003120
3121 // Otherwise, decompose the GEP instruction into multiplies and adds. Sum the
3122 // constant offset (which we now know is non-zero) and deal with it later.
3123 uint64_t ConstantOffset = 0;
Owen Anderson20a631f2006-05-03 01:29:57 +00003124 const Type *UIntPtrTy = TD->getIntPtrType();
Chris Lattner35397782005-12-05 07:10:48 +00003125 Value *Ptr = new CastInst(GEPI->getOperand(0), UIntPtrTy, "", GEPI);
3126 const Type *Ty = GEPI->getOperand(0)->getType();
3127
3128 for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3129 E = GEPI->op_end(); OI != E; ++OI) {
3130 Value *Idx = *OI;
3131 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
3132 unsigned Field = cast<ConstantUInt>(Idx)->getValue();
3133 if (Field)
Owen Anderson20a631f2006-05-03 01:29:57 +00003134 ConstantOffset += TD->getStructLayout(StTy)->MemberOffsets[Field];
Chris Lattner35397782005-12-05 07:10:48 +00003135 Ty = StTy->getElementType(Field);
3136 } else {
3137 Ty = cast<SequentialType>(Ty)->getElementType();
3138
3139 // Handle constant subscripts.
3140 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
3141 if (CI->getRawValue() == 0) continue;
3142
3143 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
Owen Anderson20a631f2006-05-03 01:29:57 +00003144 ConstantOffset += (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
Chris Lattner35397782005-12-05 07:10:48 +00003145 else
Owen Anderson20a631f2006-05-03 01:29:57 +00003146 ConstantOffset+=TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
Chris Lattner35397782005-12-05 07:10:48 +00003147 continue;
3148 }
3149
3150 // Ptr = Ptr + Idx * ElementSize;
3151
3152 // Cast Idx to UIntPtrTy if needed.
3153 Idx = new CastInst(Idx, UIntPtrTy, "", GEPI);
3154
Owen Anderson20a631f2006-05-03 01:29:57 +00003155 uint64_t ElementSize = TD->getTypeSize(Ty);
Chris Lattner35397782005-12-05 07:10:48 +00003156 // Mask off bits that should not be set.
3157 ElementSize &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3158 Constant *SizeCst = ConstantUInt::get(UIntPtrTy, ElementSize);
3159
3160 // Multiply by the element size and add to the base.
3161 Idx = BinaryOperator::createMul(Idx, SizeCst, "", GEPI);
3162 Ptr = BinaryOperator::createAdd(Ptr, Idx, "", GEPI);
3163 }
3164 }
3165
3166 // Make sure that the offset fits in uintptr_t.
3167 ConstantOffset &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3168 Constant *PtrOffset = ConstantUInt::get(UIntPtrTy, ConstantOffset);
3169
3170 // Okay, we have now emitted all of the variable index parts to the BB that
3171 // the GEP is defined in. Loop over all of the using instructions, inserting
3172 // an "add Ptr, ConstantOffset" into each block that uses it and update the
Chris Lattnerbe73d6e2005-12-08 08:00:12 +00003173 // instruction to use the newly computed value, making GEPI dead. When the
3174 // user is a load or store instruction address, we emit the add into the user
3175 // block, otherwise we use a canonical version right next to the gep (these
3176 // won't be foldable as addresses, so we might as well share the computation).
3177
Chris Lattner21cd9902006-05-06 09:10:37 +00003178 std::map<BasicBlock*,Instruction*> InsertedExprs;
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003179 ReplaceUsesOfGEPInst(GEPI, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
Chris Lattner35397782005-12-05 07:10:48 +00003180
3181 // Finally, the GEP is dead, remove it.
3182 GEPI->eraseFromParent();
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003183
3184 return true;
Chris Lattner35397782005-12-05 07:10:48 +00003185}
3186
Chris Lattner7a60d912005-01-07 07:47:53 +00003187bool SelectionDAGISel::runOnFunction(Function &Fn) {
3188 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
3189 RegMap = MF.getSSARegMap();
3190 DEBUG(std::cerr << "\n\n\n=== " << Fn.getName() << "\n");
3191
Chris Lattner35397782005-12-05 07:10:48 +00003192 // First, split all critical edges for PHI nodes with incoming values that are
3193 // constants, this way the load of the constant into a vreg will not be placed
3194 // into MBBs that are used some other way.
3195 //
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003196 // In this pass we also look for GEP and cast instructions that are used
3197 // across basic blocks and rewrite them to improve basic-block-at-a-time
3198 // selection.
3199 //
Chris Lattner35397782005-12-05 07:10:48 +00003200 //
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003201 bool MadeChange = true;
3202 while (MadeChange) {
3203 MadeChange = false;
Chris Lattner1a908c82005-08-18 17:35:14 +00003204 for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
3205 PHINode *PN;
Chris Lattner35397782005-12-05 07:10:48 +00003206 BasicBlock::iterator BBI;
3207 for (BBI = BB->begin(); (PN = dyn_cast<PHINode>(BBI)); ++BBI)
Chris Lattner1a908c82005-08-18 17:35:14 +00003208 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3209 if (isa<Constant>(PN->getIncomingValue(i)))
3210 SplitCriticalEdge(PN->getIncomingBlock(i), BB);
Chris Lattner35397782005-12-05 07:10:48 +00003211
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003212 for (BasicBlock::iterator E = BB->end(); BBI != E; ) {
3213 Instruction *I = BBI++;
3214 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003215 MadeChange |= OptimizeGEPExpression(GEPI, TLI.getTargetData());
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003216 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
3217 // If this is a noop copy, sink it into user blocks to reduce the number
3218 // of virtual registers that must be created and coallesced.
3219 MVT::ValueType SrcVT = TLI.getValueType(CI->getOperand(0)->getType());
3220 MVT::ValueType DstVT = TLI.getValueType(CI->getType());
3221
3222 // This is an fp<->int conversion?
3223 if (MVT::isInteger(SrcVT) != MVT::isInteger(DstVT))
3224 continue;
3225
3226 // If this is an extension, it will be a zero or sign extension, which
3227 // isn't a noop.
3228 if (SrcVT < DstVT) continue;
3229
3230 // If these values will be promoted, find out what they will be promoted
3231 // to. This helps us consider truncates on PPC as noop copies when they
3232 // are.
3233 if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote)
3234 SrcVT = TLI.getTypeToTransformTo(SrcVT);
3235 if (TLI.getTypeAction(DstVT) == TargetLowering::Promote)
3236 DstVT = TLI.getTypeToTransformTo(DstVT);
3237
3238 // If, after promotion, these are the same types, this is a noop copy.
3239 if (SrcVT == DstVT)
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003240 MadeChange |= OptimizeNoopCopyExpression(CI);
Chris Lattner7a3ecf72006-05-05 01:04:50 +00003241 }
3242 }
Chris Lattner1a908c82005-08-18 17:35:14 +00003243 }
Chris Lattner3e3f2c62006-05-05 21:17:49 +00003244 }
Chris Lattnercd6f0f42005-11-09 19:44:01 +00003245
Chris Lattner7a60d912005-01-07 07:47:53 +00003246 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
3247
3248 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
3249 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukman835702a2005-04-21 22:36:52 +00003250
Chris Lattner7a60d912005-01-07 07:47:53 +00003251 return true;
3252}
3253
3254
Chris Lattner718b5c22005-01-13 17:59:43 +00003255SDOperand SelectionDAGISel::
3256CopyValueToVirtualRegister(SelectionDAGLowering &SDL, Value *V, unsigned Reg) {
Chris Lattner613f79f2005-01-11 22:03:46 +00003257 SDOperand Op = SDL.getValue(V);
Chris Lattnere727af02005-01-13 20:50:02 +00003258 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattner33182322005-08-16 21:55:35 +00003259 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattnere727af02005-01-13 20:50:02 +00003260 "Copy from a reg to the same reg!");
Chris Lattner33182322005-08-16 21:55:35 +00003261
3262 // If this type is not legal, we must make sure to not create an invalid
3263 // register use.
3264 MVT::ValueType SrcVT = Op.getValueType();
3265 MVT::ValueType DestVT = TLI.getTypeToTransformTo(SrcVT);
3266 SelectionDAG &DAG = SDL.DAG;
3267 if (SrcVT == DestVT) {
3268 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
Chris Lattner672a42d2006-03-21 19:20:37 +00003269 } else if (SrcVT == MVT::Vector) {
Chris Lattner5fe1f542006-03-31 02:06:56 +00003270 // Handle copies from generic vectors to registers.
3271 MVT::ValueType PTyElementVT, PTyLegalElementVT;
3272 unsigned NE = TLI.getPackedTypeBreakdown(cast<PackedType>(V->getType()),
3273 PTyElementVT, PTyLegalElementVT);
Chris Lattner672a42d2006-03-21 19:20:37 +00003274
Chris Lattner5fe1f542006-03-31 02:06:56 +00003275 // Insert a VBIT_CONVERT of the input vector to a "N x PTyElementVT"
3276 // MVT::Vector type.
3277 Op = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Op,
3278 DAG.getConstant(NE, MVT::i32),
3279 DAG.getValueType(PTyElementVT));
Chris Lattner672a42d2006-03-21 19:20:37 +00003280
Chris Lattner5fe1f542006-03-31 02:06:56 +00003281 // Loop over all of the elements of the resultant vector,
3282 // VEXTRACT_VECTOR_ELT'ing them, converting them to PTyLegalElementVT, then
3283 // copying them into output registers.
3284 std::vector<SDOperand> OutChains;
3285 SDOperand Root = SDL.getRoot();
3286 for (unsigned i = 0; i != NE; ++i) {
3287 SDOperand Elt = DAG.getNode(ISD::VEXTRACT_VECTOR_ELT, PTyElementVT,
3288 Op, DAG.getConstant(i, MVT::i32));
3289 if (PTyElementVT == PTyLegalElementVT) {
3290 // Elements are legal.
3291 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3292 } else if (PTyLegalElementVT > PTyElementVT) {
3293 // Elements are promoted.
3294 if (MVT::isFloatingPoint(PTyLegalElementVT))
3295 Elt = DAG.getNode(ISD::FP_EXTEND, PTyLegalElementVT, Elt);
3296 else
3297 Elt = DAG.getNode(ISD::ANY_EXTEND, PTyLegalElementVT, Elt);
3298 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3299 } else {
3300 // Elements are expanded.
3301 // The src value is expanded into multiple registers.
3302 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
3303 Elt, DAG.getConstant(0, MVT::i32));
3304 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
3305 Elt, DAG.getConstant(1, MVT::i32));
3306 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Lo));
3307 OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Hi));
3308 }
Chris Lattner672a42d2006-03-21 19:20:37 +00003309 }
Chris Lattner5fe1f542006-03-31 02:06:56 +00003310 return DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
Chris Lattner33182322005-08-16 21:55:35 +00003311 } else if (SrcVT < DestVT) {
3312 // The src value is promoted to the register.
Chris Lattnerba28c272005-08-17 06:06:25 +00003313 if (MVT::isFloatingPoint(SrcVT))
3314 Op = DAG.getNode(ISD::FP_EXTEND, DestVT, Op);
3315 else
Chris Lattnera66403d2005-09-02 00:19:37 +00003316 Op = DAG.getNode(ISD::ANY_EXTEND, DestVT, Op);
Chris Lattner33182322005-08-16 21:55:35 +00003317 return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
3318 } else {
3319 // The src value is expanded into multiple registers.
3320 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
3321 Op, DAG.getConstant(0, MVT::i32));
3322 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
3323 Op, DAG.getConstant(1, MVT::i32));
3324 Op = DAG.getCopyToReg(SDL.getRoot(), Reg, Lo);
3325 return DAG.getCopyToReg(Op, Reg+1, Hi);
3326 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003327}
3328
Chris Lattner16f64df2005-01-17 17:15:02 +00003329void SelectionDAGISel::
3330LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL,
3331 std::vector<SDOperand> &UnorderedChains) {
3332 // If this is the entry block, emit arguments.
3333 Function &F = *BB->getParent();
Chris Lattnere3c2cf42005-01-17 17:55:19 +00003334 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattner6871b232005-10-30 19:42:35 +00003335 SDOperand OldRoot = SDL.DAG.getRoot();
3336 std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
Chris Lattner16f64df2005-01-17 17:15:02 +00003337
Chris Lattner6871b232005-10-30 19:42:35 +00003338 unsigned a = 0;
3339 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
3340 AI != E; ++AI, ++a)
3341 if (!AI->use_empty()) {
3342 SDL.setValue(AI, Args[a]);
Evan Cheng3784f3c52006-04-27 08:29:42 +00003343
Chris Lattner6871b232005-10-30 19:42:35 +00003344 // If this argument is live outside of the entry block, insert a copy from
3345 // whereever we got it to the vreg that other BB's will reference it as.
3346 if (FuncInfo.ValueMap.count(AI)) {
3347 SDOperand Copy =
3348 CopyValueToVirtualRegister(SDL, AI, FuncInfo.ValueMap[AI]);
3349 UnorderedChains.push_back(Copy);
3350 }
Chris Lattnere3c2cf42005-01-17 17:55:19 +00003351 }
Chris Lattner6871b232005-10-30 19:42:35 +00003352
Chris Lattner6871b232005-10-30 19:42:35 +00003353 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner957cb672006-05-16 06:10:58 +00003354 // FIXME: this should insert code into the DAG!
Chris Lattner6871b232005-10-30 19:42:35 +00003355 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner16f64df2005-01-17 17:15:02 +00003356}
3357
Chris Lattner7a60d912005-01-07 07:47:53 +00003358void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
3359 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemaned728c12006-03-27 01:32:24 +00003360 FunctionLoweringInfo &FuncInfo) {
Chris Lattner7a60d912005-01-07 07:47:53 +00003361 SelectionDAGLowering SDL(DAG, TLI, FuncInfo);
Chris Lattner718b5c22005-01-13 17:59:43 +00003362
3363 std::vector<SDOperand> UnorderedChains;
Misha Brukman835702a2005-04-21 22:36:52 +00003364
Chris Lattner6871b232005-10-30 19:42:35 +00003365 // Lower any arguments needed in this block if this is the entry block.
3366 if (LLVMBB == &LLVMBB->getParent()->front())
3367 LowerArguments(LLVMBB, SDL, UnorderedChains);
Chris Lattner7a60d912005-01-07 07:47:53 +00003368
3369 BB = FuncInfo.MBBMap[LLVMBB];
3370 SDL.setCurrentBasicBlock(BB);
3371
3372 // Lower all of the non-terminator instructions.
3373 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
3374 I != E; ++I)
3375 SDL.visit(*I);
Nate Begemaned728c12006-03-27 01:32:24 +00003376
Chris Lattner7a60d912005-01-07 07:47:53 +00003377 // Ensure that all instructions which are used outside of their defining
3378 // blocks are available as virtual registers.
3379 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Chris Lattner613f79f2005-01-11 22:03:46 +00003380 if (!I->use_empty() && !isa<PHINode>(I)) {
Chris Lattnera2c5d912005-01-09 01:16:24 +00003381 std::map<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner7a60d912005-01-07 07:47:53 +00003382 if (VMI != FuncInfo.ValueMap.end())
Chris Lattner718b5c22005-01-13 17:59:43 +00003383 UnorderedChains.push_back(
3384 CopyValueToVirtualRegister(SDL, I, VMI->second));
Chris Lattner7a60d912005-01-07 07:47:53 +00003385 }
3386
3387 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
3388 // ensure constants are generated when needed. Remember the virtual registers
3389 // that need to be added to the Machine PHI nodes as input. We cannot just
3390 // directly add them, because expansion might result in multiple MBB's for one
3391 // BB. As such, the start of the BB might correspond to a different MBB than
3392 // the end.
Misha Brukman835702a2005-04-21 22:36:52 +00003393 //
Chris Lattner7a60d912005-01-07 07:47:53 +00003394
3395 // Emit constants only once even if used by multiple PHI nodes.
3396 std::map<Constant*, unsigned> ConstantsOut;
3397
3398 // Check successor nodes PHI nodes that expect a constant to be available from
3399 // this block.
3400 TerminatorInst *TI = LLVMBB->getTerminator();
3401 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
3402 BasicBlock *SuccBB = TI->getSuccessor(succ);
3403 MachineBasicBlock::iterator MBBI = FuncInfo.MBBMap[SuccBB]->begin();
3404 PHINode *PN;
3405
3406 // At this point we know that there is a 1-1 correspondence between LLVM PHI
3407 // nodes and Machine PHI nodes, but the incoming operands have not been
3408 // emitted yet.
3409 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattner8ea875f2005-01-07 21:34:19 +00003410 (PN = dyn_cast<PHINode>(I)); ++I)
3411 if (!PN->use_empty()) {
3412 unsigned Reg;
3413 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
3414 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
3415 unsigned &RegOut = ConstantsOut[C];
3416 if (RegOut == 0) {
3417 RegOut = FuncInfo.CreateRegForValue(C);
Chris Lattner718b5c22005-01-13 17:59:43 +00003418 UnorderedChains.push_back(
3419 CopyValueToVirtualRegister(SDL, C, RegOut));
Chris Lattner8ea875f2005-01-07 21:34:19 +00003420 }
3421 Reg = RegOut;
3422 } else {
3423 Reg = FuncInfo.ValueMap[PHIOp];
Chris Lattnera2c5d912005-01-09 01:16:24 +00003424 if (Reg == 0) {
Misha Brukman835702a2005-04-21 22:36:52 +00003425 assert(isa<AllocaInst>(PHIOp) &&
Chris Lattnera2c5d912005-01-09 01:16:24 +00003426 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
3427 "Didn't codegen value into a register!??");
3428 Reg = FuncInfo.CreateRegForValue(PHIOp);
Chris Lattner718b5c22005-01-13 17:59:43 +00003429 UnorderedChains.push_back(
3430 CopyValueToVirtualRegister(SDL, PHIOp, Reg));
Chris Lattnera2c5d912005-01-09 01:16:24 +00003431 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003432 }
Misha Brukman835702a2005-04-21 22:36:52 +00003433
Chris Lattner8ea875f2005-01-07 21:34:19 +00003434 // Remember that this register needs to added to the machine PHI node as
3435 // the input for this MBB.
Chris Lattnerba380352006-03-31 02:12:18 +00003436 MVT::ValueType VT = TLI.getValueType(PN->getType());
3437 unsigned NumElements;
3438 if (VT != MVT::Vector)
3439 NumElements = TLI.getNumElements(VT);
3440 else {
3441 MVT::ValueType VT1,VT2;
3442 NumElements =
3443 TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
3444 VT1, VT2);
3445 }
Chris Lattner8ea875f2005-01-07 21:34:19 +00003446 for (unsigned i = 0, e = NumElements; i != e; ++i)
3447 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
Chris Lattner7a60d912005-01-07 07:47:53 +00003448 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003449 }
3450 ConstantsOut.clear();
3451
Chris Lattner718b5c22005-01-13 17:59:43 +00003452 // Turn all of the unordered chains into one factored node.
Chris Lattner24516842005-01-13 19:53:14 +00003453 if (!UnorderedChains.empty()) {
Chris Lattnerb7cad902005-11-09 05:03:03 +00003454 SDOperand Root = SDL.getRoot();
3455 if (Root.getOpcode() != ISD::EntryToken) {
3456 unsigned i = 0, e = UnorderedChains.size();
3457 for (; i != e; ++i) {
3458 assert(UnorderedChains[i].Val->getNumOperands() > 1);
3459 if (UnorderedChains[i].Val->getOperand(0) == Root)
3460 break; // Don't add the root if we already indirectly depend on it.
3461 }
3462
3463 if (i == e)
3464 UnorderedChains.push_back(Root);
3465 }
Chris Lattner718b5c22005-01-13 17:59:43 +00003466 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, UnorderedChains));
3467 }
3468
Chris Lattner7a60d912005-01-07 07:47:53 +00003469 // Lower the terminator after the copies are emitted.
3470 SDL.visit(*LLVMBB->getTerminator());
Chris Lattner4108bb02005-01-17 19:43:36 +00003471
Nate Begemaned728c12006-03-27 01:32:24 +00003472 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003473 // lowering, as well as any jump table information.
Nate Begemaned728c12006-03-27 01:32:24 +00003474 SwitchCases.clear();
3475 SwitchCases = SDL.SwitchCases;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003476 JT = SDL.JT;
Nate Begemaned728c12006-03-27 01:32:24 +00003477
Chris Lattner4108bb02005-01-17 19:43:36 +00003478 // Make sure the root of the DAG is up-to-date.
3479 DAG.setRoot(SDL.getRoot());
Chris Lattner7a60d912005-01-07 07:47:53 +00003480}
3481
Nate Begemaned728c12006-03-27 01:32:24 +00003482void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Chris Lattnerbcfebeb2005-10-10 16:47:10 +00003483 // Run the DAG combiner in pre-legalize mode.
3484 DAG.Combine(false);
Nate Begeman007c6502005-09-07 00:15:36 +00003485
Chris Lattner7a60d912005-01-07 07:47:53 +00003486 DEBUG(std::cerr << "Lowered selection DAG:\n");
3487 DEBUG(DAG.dump());
Nate Begemaned728c12006-03-27 01:32:24 +00003488
Chris Lattner7a60d912005-01-07 07:47:53 +00003489 // Second step, hack on the DAG until it only uses operations and types that
3490 // the target supports.
Chris Lattnerffcb0ae2005-01-23 04:36:26 +00003491 DAG.Legalize();
Nate Begemaned728c12006-03-27 01:32:24 +00003492
Chris Lattner7a60d912005-01-07 07:47:53 +00003493 DEBUG(std::cerr << "Legalized selection DAG:\n");
3494 DEBUG(DAG.dump());
Nate Begemaned728c12006-03-27 01:32:24 +00003495
Chris Lattnerbcfebeb2005-10-10 16:47:10 +00003496 // Run the DAG combiner in post-legalize mode.
3497 DAG.Combine(true);
Nate Begeman007c6502005-09-07 00:15:36 +00003498
Evan Cheng739a6a42006-01-21 02:32:06 +00003499 if (ViewISelDAGs) DAG.viewGraph();
Evan Cheng51ab4492006-04-28 02:09:19 +00003500
Chris Lattner5ca31d92005-03-30 01:10:47 +00003501 // Third, instruction select all of the operations to machine code, adding the
3502 // code to the MachineBasicBlock.
Chris Lattner7a60d912005-01-07 07:47:53 +00003503 InstructionSelectBasicBlock(DAG);
Nate Begemaned728c12006-03-27 01:32:24 +00003504
Chris Lattner7a60d912005-01-07 07:47:53 +00003505 DEBUG(std::cerr << "Selected machine code:\n");
3506 DEBUG(BB->dump());
Nate Begemaned728c12006-03-27 01:32:24 +00003507}
Chris Lattner7a60d912005-01-07 07:47:53 +00003508
Nate Begemaned728c12006-03-27 01:32:24 +00003509void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
3510 FunctionLoweringInfo &FuncInfo) {
3511 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
3512 {
3513 SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3514 CurDAG = &DAG;
3515
3516 // First step, lower LLVM code to some DAG. This DAG may use operations and
3517 // types that are not supported by the target.
3518 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
3519
3520 // Second step, emit the lowered DAG as machine code.
3521 CodeGenAndEmitDAG(DAG);
3522 }
3523
Chris Lattner5ca31d92005-03-30 01:10:47 +00003524 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner7a60d912005-01-07 07:47:53 +00003525 // PHI nodes in successors.
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003526 if (SwitchCases.empty() && JT.Reg == 0) {
Nate Begemaned728c12006-03-27 01:32:24 +00003527 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
3528 MachineInstr *PHI = PHINodesToUpdate[i].first;
3529 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3530 "This is not a machine PHI node that we are updating!");
3531 PHI->addRegOperand(PHINodesToUpdate[i].second);
3532 PHI->addMachineBasicBlockOperand(BB);
3533 }
3534 return;
Chris Lattner7a60d912005-01-07 07:47:53 +00003535 }
Nate Begemaned728c12006-03-27 01:32:24 +00003536
Nate Begeman866b4b42006-04-23 06:26:20 +00003537 // If the JumpTable record is filled in, then we need to emit a jump table.
3538 // Updating the PHI nodes is tricky in this case, since we need to determine
3539 // whether the PHI is a successor of the range check MBB or the jump table MBB
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003540 if (JT.Reg) {
3541 assert(SwitchCases.empty() && "Cannot have jump table and lowered switch");
3542 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3543 CurDAG = &SDAG;
3544 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
Nate Begeman866b4b42006-04-23 06:26:20 +00003545 MachineBasicBlock *RangeBB = BB;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003546 // Set the current basic block to the mbb we wish to insert the code into
3547 BB = JT.MBB;
3548 SDL.setCurrentBasicBlock(BB);
3549 // Emit the code
3550 SDL.visitJumpTable(JT);
3551 SDAG.setRoot(SDL.getRoot());
3552 CodeGenAndEmitDAG(SDAG);
3553 // Update PHI Nodes
3554 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3555 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3556 MachineBasicBlock *PHIBB = PHI->getParent();
3557 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3558 "This is not a machine PHI node that we are updating!");
Nate Begemandf488392006-05-03 03:48:02 +00003559 if (PHIBB == JT.Default) {
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003560 PHI->addRegOperand(PHINodesToUpdate[pi].second);
Nate Begemandf488392006-05-03 03:48:02 +00003561 PHI->addMachineBasicBlockOperand(RangeBB);
3562 }
3563 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
3564 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3565 PHI->addMachineBasicBlockOperand(BB);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003566 }
3567 }
3568 return;
3569 }
3570
Nate Begemaned728c12006-03-27 01:32:24 +00003571 // If we generated any switch lowering information, build and codegen any
3572 // additional DAGs necessary.
3573 for(unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
3574 SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3575 CurDAG = &SDAG;
3576 SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
3577 // Set the current basic block to the mbb we wish to insert the code into
3578 BB = SwitchCases[i].ThisBB;
3579 SDL.setCurrentBasicBlock(BB);
3580 // Emit the code
3581 SDL.visitSwitchCase(SwitchCases[i]);
3582 SDAG.setRoot(SDL.getRoot());
3583 CodeGenAndEmitDAG(SDAG);
3584 // Iterate over the phi nodes, if there is a phi node in a successor of this
3585 // block (for instance, the default block), then add a pair of operands to
3586 // the phi node for this block, as if we were coming from the original
3587 // BB before switch expansion.
3588 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3589 MachineInstr *PHI = PHINodesToUpdate[pi].first;
3590 MachineBasicBlock *PHIBB = PHI->getParent();
3591 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3592 "This is not a machine PHI node that we are updating!");
3593 if (PHIBB == SwitchCases[i].LHSBB || PHIBB == SwitchCases[i].RHSBB) {
3594 PHI->addRegOperand(PHINodesToUpdate[pi].second);
3595 PHI->addMachineBasicBlockOperand(BB);
3596 }
3597 }
Chris Lattner5ca31d92005-03-30 01:10:47 +00003598 }
Chris Lattner7a60d912005-01-07 07:47:53 +00003599}
Evan Cheng739a6a42006-01-21 02:32:06 +00003600
3601//===----------------------------------------------------------------------===//
3602/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
3603/// target node in the graph.
3604void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
3605 if (ViewSchedDAGs) DAG.viewGraph();
Evan Chengc1e1d972006-01-23 07:01:07 +00003606 ScheduleDAG *SL = NULL;
3607
3608 switch (ISHeuristic) {
3609 default: assert(0 && "Unrecognized scheduling heuristic");
Evan Chengd1915cf2006-05-13 05:53:47 +00003610 case defaultScheduling:
Evan Chenga6eff8a2006-01-25 09:12:57 +00003611 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency)
Chris Lattnerb21d3bf2006-04-21 17:16:16 +00003612 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
3613 else {
3614 assert(TLI.getSchedulingPreference() ==
3615 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Evan Chenga6eff8a2006-01-25 09:12:57 +00003616 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattnerb21d3bf2006-04-21 17:16:16 +00003617 }
Evan Chenga6eff8a2006-01-25 09:12:57 +00003618 break;
Evan Chengd1915cf2006-05-13 05:53:47 +00003619 case noScheduling:
Chris Lattner5255d042006-03-10 07:49:12 +00003620 SL = createBFS_DAGScheduler(DAG, BB);
3621 break;
Evan Chengd1915cf2006-05-13 05:53:47 +00003622 case simpleScheduling:
Chris Lattner5255d042006-03-10 07:49:12 +00003623 SL = createSimpleDAGScheduler(false, DAG, BB);
3624 break;
Evan Chengd1915cf2006-05-13 05:53:47 +00003625 case simpleNoItinScheduling:
Chris Lattner5255d042006-03-10 07:49:12 +00003626 SL = createSimpleDAGScheduler(true, DAG, BB);
Evan Chengc1e1d972006-01-23 07:01:07 +00003627 break;
Evan Chengd1915cf2006-05-13 05:53:47 +00003628 case listSchedulingBURR:
Evan Cheng31272342006-01-23 08:26:10 +00003629 SL = createBURRListDAGScheduler(DAG, BB);
Chris Lattner98ecb8e2006-03-05 21:10:33 +00003630 break;
Evan Chengd1915cf2006-05-13 05:53:47 +00003631 case listSchedulingTDRR:
Evan Chengd38c22b2006-05-11 23:55:42 +00003632 SL = createTDRRListDAGScheduler(DAG, BB);
3633 break;
Evan Chengd1915cf2006-05-13 05:53:47 +00003634 case listSchedulingTD:
Chris Lattner543832d2006-03-08 04:25:59 +00003635 SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
Chris Lattner98ecb8e2006-03-05 21:10:33 +00003636 break;
Evan Chengc1e1d972006-01-23 07:01:07 +00003637 }
Chris Lattnere23928c2006-01-21 19:12:11 +00003638 BB = SL->Run();
Evan Chengf9adce92006-02-04 06:49:00 +00003639 delete SL;
Evan Cheng739a6a42006-01-21 02:32:06 +00003640}
Chris Lattnerdcf785b2006-02-24 02:13:54 +00003641
Chris Lattner543832d2006-03-08 04:25:59 +00003642HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
3643 return new HazardRecognizer();
Chris Lattner47639db2006-03-06 00:22:00 +00003644}
3645
Chris Lattnerdcf785b2006-02-24 02:13:54 +00003646/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
3647/// by tblgen. Others should not call it.
3648void SelectionDAGISel::
3649SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
3650 std::vector<SDOperand> InOps;
3651 std::swap(InOps, Ops);
3652
3653 Ops.push_back(InOps[0]); // input chain.
3654 Ops.push_back(InOps[1]); // input asm string.
3655
Chris Lattnerdcf785b2006-02-24 02:13:54 +00003656 unsigned i = 2, e = InOps.size();
3657 if (InOps[e-1].getValueType() == MVT::Flag)
3658 --e; // Don't process a flag operand if it is here.
3659
3660 while (i != e) {
3661 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
3662 if ((Flags & 7) != 4 /*MEM*/) {
3663 // Just skip over this operand, copying the operands verbatim.
3664 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
3665 i += (Flags >> 3) + 1;
3666 } else {
3667 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
3668 // Otherwise, this is a memory operand. Ask the target to select it.
3669 std::vector<SDOperand> SelOps;
3670 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
3671 std::cerr << "Could not match memory address. Inline asm failure!\n";
3672 exit(1);
3673 }
3674
3675 // Add this to the output node.
3676 Ops.push_back(DAG.getConstant(4/*MEM*/ | (SelOps.size() << 3), MVT::i32));
3677 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
3678 i += 2;
3679 }
3680 }
3681
3682 // Add the flag input back if present.
3683 if (e != InOps.size())
3684 Ops.push_back(InOps.back());
3685}