blob: 23c7059a9b3a0666e2f113fba277707c61f4e6cb [file] [log] [blame]
Dan Gohman2048b852009-11-23 18:04:58 +00001//===-- SelectionDAGBuilder.cpp - Selection-DAG building ------------------===//
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This implements routines for translating from LLVM IR into SelectionDAG IR.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
Dan Gohman2048b852009-11-23 18:04:58 +000015#include "SelectionDAGBuilder.h"
Dan Gohman6277eb22009-11-23 17:16:22 +000016#include "FunctionLoweringInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000017#include "llvm/ADT/BitVector.h"
Dan Gohman5b229802008-09-04 20:49:27 +000018#include "llvm/ADT/SmallSet.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000019#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner8047d9a2009-12-24 00:37:38 +000020#include "llvm/Analysis/ConstantFolding.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000021#include "llvm/Constants.h"
22#include "llvm/CallingConv.h"
23#include "llvm/DerivedTypes.h"
24#include "llvm/Function.h"
25#include "llvm/GlobalVariable.h"
26#include "llvm/InlineAsm.h"
27#include "llvm/Instructions.h"
28#include "llvm/Intrinsics.h"
29#include "llvm/IntrinsicInst.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000030#include "llvm/Module.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000031#include "llvm/CodeGen/FastISel.h"
32#include "llvm/CodeGen/GCStrategy.h"
33#include "llvm/CodeGen/GCMetadata.h"
34#include "llvm/CodeGen/MachineFunction.h"
35#include "llvm/CodeGen/MachineFrameInfo.h"
36#include "llvm/CodeGen/MachineInstrBuilder.h"
37#include "llvm/CodeGen/MachineJumpTableInfo.h"
38#include "llvm/CodeGen/MachineModuleInfo.h"
39#include "llvm/CodeGen/MachineRegisterInfo.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000040#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000041#include "llvm/CodeGen/SelectionDAG.h"
Devang Patel83489bb2009-01-13 00:35:13 +000042#include "llvm/CodeGen/DwarfWriter.h"
43#include "llvm/Analysis/DebugInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000044#include "llvm/Target/TargetRegisterInfo.h"
45#include "llvm/Target/TargetData.h"
46#include "llvm/Target/TargetFrameInfo.h"
47#include "llvm/Target/TargetInstrInfo.h"
Dale Johannesen49de9822009-02-05 01:49:45 +000048#include "llvm/Target/TargetIntrinsicInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000049#include "llvm/Target/TargetLowering.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000050#include "llvm/Target/TargetOptions.h"
51#include "llvm/Support/Compiler.h"
Mikhail Glushenkov2388a582009-01-16 07:02:28 +000052#include "llvm/Support/CommandLine.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000053#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000054#include "llvm/Support/ErrorHandling.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000055#include "llvm/Support/MathExtras.h"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +000056#include "llvm/Support/raw_ostream.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000057#include <algorithm>
58using namespace llvm;
59
Dale Johannesen601d3c02008-09-05 01:48:15 +000060/// LimitFloatPrecision - Generate low-precision inline sequences for
61/// some float libcalls (6, 8 or 12 bits).
62static unsigned LimitFloatPrecision;
63
64static cl::opt<unsigned, true>
65LimitFPPrecision("limit-float-precision",
66 cl::desc("Generate low-precision inline sequences "
67 "for some float libcalls"),
68 cl::location(LimitFloatPrecision),
69 cl::init(0));
70
Dan Gohmanf9bd4502009-11-23 17:46:23 +000071namespace {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000072 /// RegsForValue - This struct represents the registers (physical or virtual)
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +000073 /// that a particular set of values is assigned, and the type information
74 /// about the value. The most common situation is to represent one value at a
75 /// time, but struct or array values are handled element-wise as multiple
76 /// values. The splitting of aggregates is performed recursively, so that we
77 /// never have aggregate-typed registers. The values at this point do not
78 /// necessarily have legal types, so each value may require one or more
79 /// registers of some legal type.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +000080 ///
Dan Gohmanf9bd4502009-11-23 17:46:23 +000081 struct RegsForValue {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000082 /// TLI - The TargetLowering object.
83 ///
84 const TargetLowering *TLI;
85
86 /// ValueVTs - The value types of the values, which may not be legal, and
87 /// may need be promoted or synthesized from one or more registers.
88 ///
Owen Andersone50ed302009-08-10 22:56:29 +000089 SmallVector<EVT, 4> ValueVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +000090
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000091 /// RegVTs - The value types of the registers. This is the same size as
92 /// ValueVTs and it records, for each value, what the type of the assigned
93 /// register or registers are. (Individual values are never synthesized
94 /// from more than one type of register.)
95 ///
96 /// With virtual registers, the contents of RegVTs is redundant with TLI's
97 /// getRegisterType member function, however when with physical registers
98 /// it is necessary to have a separate record of the types.
99 ///
Owen Andersone50ed302009-08-10 22:56:29 +0000100 SmallVector<EVT, 4> RegVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000101
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000102 /// Regs - This list holds the registers assigned to the values.
103 /// Each legal or promoted value requires one register, and each
104 /// expanded value requires multiple registers.
105 ///
106 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000107
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000108 RegsForValue() : TLI(0) {}
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000109
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000110 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000111 const SmallVector<unsigned, 4> &regs,
Owen Andersone50ed302009-08-10 22:56:29 +0000112 EVT regvt, EVT valuevt)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000113 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
114 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000115 const SmallVector<unsigned, 4> &regs,
Owen Andersone50ed302009-08-10 22:56:29 +0000116 const SmallVector<EVT, 4> &regvts,
117 const SmallVector<EVT, 4> &valuevts)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000118 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
Owen Anderson23b9b192009-08-12 00:36:31 +0000119 RegsForValue(LLVMContext &Context, const TargetLowering &tli,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000120 unsigned Reg, const Type *Ty) : TLI(&tli) {
121 ComputeValueVTs(tli, Ty, ValueVTs);
122
123 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +0000124 EVT ValueVT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +0000125 unsigned NumRegs = TLI->getNumRegisters(Context, ValueVT);
126 EVT RegisterVT = TLI->getRegisterType(Context, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000127 for (unsigned i = 0; i != NumRegs; ++i)
128 Regs.push_back(Reg + i);
129 RegVTs.push_back(RegisterVT);
130 Reg += NumRegs;
131 }
132 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000133
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000134 /// append - Add the specified values to this one.
135 void append(const RegsForValue &RHS) {
136 TLI = RHS.TLI;
137 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
138 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
139 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
140 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000141
142
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000143 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000144 /// this value and returns the result as a ValueVTs value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000145 /// Chain/Flag as the input and updates them for the output Chain/Flag.
146 /// If the Flag pointer is NULL, no flag is used.
Bill Wendlingec72e322009-12-22 01:11:43 +0000147 SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl, unsigned Order,
148 SDValue &Chain, SDValue *Flag) const;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000149
150 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000151 /// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000152 /// Chain/Flag as the input and updates them for the output Chain/Flag.
153 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000154 void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Bill Wendlingec72e322009-12-22 01:11:43 +0000155 unsigned Order, SDValue &Chain, SDValue *Flag) const;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000156
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000157 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
Evan Cheng697cbbf2009-03-20 18:03:34 +0000158 /// operand list. This adds the code marker, matching input operand index
159 /// (if applicable), and includes the number of values added into it.
160 void AddInlineAsmOperands(unsigned Code,
161 bool HasMatching, unsigned MatchingIdx,
Bill Wendling651ad132009-12-22 01:25:10 +0000162 SelectionDAG &DAG, unsigned Order,
163 std::vector<SDValue> &Ops) const;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000164 };
165}
166
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000167/// getCopyFromParts - Create a value that contains the specified legal parts
168/// combined into the value they represent. If the parts combine to a type
169/// larger then ValueVT then AssertOp can be used to specify whether the extra
170/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
171/// (ISD::AssertSext).
Bill Wendling3ea3c242009-12-22 02:10:19 +0000172static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl, unsigned Order,
Dale Johannesen66978ee2009-01-31 02:22:37 +0000173 const SDValue *Parts,
Owen Andersone50ed302009-08-10 22:56:29 +0000174 unsigned NumParts, EVT PartVT, EVT ValueVT,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000175 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000176 assert(NumParts > 0 && "No parts to assemble!");
Dan Gohmane9530ec2009-01-15 16:58:17 +0000177 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000178 SDValue Val = Parts[0];
Bill Wendling187361b2010-01-23 10:26:57 +0000179 DAG.AssignOrdering(Val.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000180
181 if (NumParts > 1) {
182 // Assemble the value from multiple parts.
Eli Friedman2ac8b322009-05-20 06:02:09 +0000183 if (!ValueVT.isVector() && ValueVT.isInteger()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000184 unsigned PartBits = PartVT.getSizeInBits();
185 unsigned ValueBits = ValueVT.getSizeInBits();
186
187 // Assemble the power of 2 part.
188 unsigned RoundParts = NumParts & (NumParts - 1) ?
189 1 << Log2_32(NumParts) : NumParts;
190 unsigned RoundBits = PartBits * RoundParts;
Owen Andersone50ed302009-08-10 22:56:29 +0000191 EVT RoundVT = RoundBits == ValueBits ?
Owen Anderson23b9b192009-08-12 00:36:31 +0000192 ValueVT : EVT::getIntegerVT(*DAG.getContext(), RoundBits);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000193 SDValue Lo, Hi;
194
Owen Anderson23b9b192009-08-12 00:36:31 +0000195 EVT HalfVT = EVT::getIntegerVT(*DAG.getContext(), RoundBits/2);
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000196
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000197 if (RoundParts > 2) {
Bill Wendling3ea3c242009-12-22 02:10:19 +0000198 Lo = getCopyFromParts(DAG, dl, Order, Parts, RoundParts / 2,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000199 PartVT, HalfVT);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000200 Hi = getCopyFromParts(DAG, dl, Order, Parts + RoundParts / 2,
201 RoundParts / 2, PartVT, HalfVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000202 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000203 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]);
204 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000205 }
Bill Wendling3ea3c242009-12-22 02:10:19 +0000206
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000207 if (TLI.isBigEndian())
208 std::swap(Lo, Hi);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000209
Dale Johannesen66978ee2009-01-31 02:22:37 +0000210 Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000211
Bill Wendling187361b2010-01-23 10:26:57 +0000212 DAG.AssignOrdering(Lo.getNode(), Order);
213 DAG.AssignOrdering(Hi.getNode(), Order);
214 DAG.AssignOrdering(Val.getNode(), Order);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000215
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000216 if (RoundParts < NumParts) {
217 // Assemble the trailing non-power-of-2 part.
218 unsigned OddParts = NumParts - RoundParts;
Owen Anderson23b9b192009-08-12 00:36:31 +0000219 EVT OddVT = EVT::getIntegerVT(*DAG.getContext(), OddParts * PartBits);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000220 Hi = getCopyFromParts(DAG, dl, Order,
221 Parts + RoundParts, OddParts, PartVT, OddVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000222
223 // Combine the round and odd parts.
224 Lo = Val;
225 if (TLI.isBigEndian())
226 std::swap(Lo, Hi);
Owen Anderson23b9b192009-08-12 00:36:31 +0000227 EVT TotalVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000228 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi);
Bill Wendling187361b2010-01-23 10:26:57 +0000229 DAG.AssignOrdering(Hi.getNode(), Order);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000230 Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000231 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands92abc622009-01-31 15:50:11 +0000232 TLI.getPointerTy()));
Bill Wendling187361b2010-01-23 10:26:57 +0000233 DAG.AssignOrdering(Hi.getNode(), Order);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000234 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo);
Bill Wendling187361b2010-01-23 10:26:57 +0000235 DAG.AssignOrdering(Lo.getNode(), Order);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000236 Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi);
Bill Wendling187361b2010-01-23 10:26:57 +0000237 DAG.AssignOrdering(Val.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000238 }
Eli Friedman2ac8b322009-05-20 06:02:09 +0000239 } else if (ValueVT.isVector()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000240 // Handle a multi-element vector.
Owen Andersone50ed302009-08-10 22:56:29 +0000241 EVT IntermediateVT, RegisterVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000242 unsigned NumIntermediates;
243 unsigned NumRegs =
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +0000244 TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT, IntermediateVT,
Owen Anderson23b9b192009-08-12 00:36:31 +0000245 NumIntermediates, RegisterVT);
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +0000246 assert(NumRegs == NumParts
247 && "Part count doesn't match vector breakdown!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000248 NumParts = NumRegs; // Silence a compiler warning.
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +0000249 assert(RegisterVT == PartVT
250 && "Part type doesn't match vector breakdown!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000251 assert(RegisterVT == Parts[0].getValueType() &&
252 "Part type doesn't match part!");
253
254 // Assemble the parts into intermediate operands.
255 SmallVector<SDValue, 8> Ops(NumIntermediates);
256 if (NumIntermediates == NumParts) {
257 // If the register was not expanded, truncate or copy the value,
258 // as appropriate.
259 for (unsigned i = 0; i != NumParts; ++i)
Bill Wendling3ea3c242009-12-22 02:10:19 +0000260 Ops[i] = getCopyFromParts(DAG, dl, Order, &Parts[i], 1,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000261 PartVT, IntermediateVT);
262 } else if (NumParts > 0) {
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +0000263 // If the intermediate type was expanded, build the intermediate
264 // operands from the parts.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000265 assert(NumParts % NumIntermediates == 0 &&
266 "Must expand into a divisible number of parts!");
267 unsigned Factor = NumParts / NumIntermediates;
268 for (unsigned i = 0; i != NumIntermediates; ++i)
Bill Wendling3ea3c242009-12-22 02:10:19 +0000269 Ops[i] = getCopyFromParts(DAG, dl, Order, &Parts[i * Factor], Factor,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000270 PartVT, IntermediateVT);
271 }
272
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +0000273 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the
274 // intermediate operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000275 Val = DAG.getNode(IntermediateVT.isVector() ?
Dale Johannesen66978ee2009-01-31 02:22:37 +0000276 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000277 ValueVT, &Ops[0], NumIntermediates);
Bill Wendling187361b2010-01-23 10:26:57 +0000278 DAG.AssignOrdering(Val.getNode(), Order);
Eli Friedman2ac8b322009-05-20 06:02:09 +0000279 } else if (PartVT.isFloatingPoint()) {
280 // FP split into multiple FP parts (for ppcf128)
Owen Anderson825b72b2009-08-11 20:47:22 +0000281 assert(ValueVT == EVT(MVT::ppcf128) && PartVT == EVT(MVT::f64) &&
Eli Friedman2ac8b322009-05-20 06:02:09 +0000282 "Unexpected split");
283 SDValue Lo, Hi;
Owen Anderson825b72b2009-08-11 20:47:22 +0000284 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, EVT(MVT::f64), Parts[0]);
285 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, EVT(MVT::f64), Parts[1]);
Eli Friedman2ac8b322009-05-20 06:02:09 +0000286 if (TLI.isBigEndian())
287 std::swap(Lo, Hi);
288 Val = DAG.getNode(ISD::BUILD_PAIR, dl, ValueVT, Lo, Hi);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000289
Bill Wendling187361b2010-01-23 10:26:57 +0000290 DAG.AssignOrdering(Hi.getNode(), Order);
291 DAG.AssignOrdering(Lo.getNode(), Order);
292 DAG.AssignOrdering(Val.getNode(), Order);
Eli Friedman2ac8b322009-05-20 06:02:09 +0000293 } else {
294 // FP split into integer parts (soft fp)
295 assert(ValueVT.isFloatingPoint() && PartVT.isInteger() &&
296 !PartVT.isVector() && "Unexpected split");
Owen Anderson23b9b192009-08-12 00:36:31 +0000297 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits());
Bill Wendling3ea3c242009-12-22 02:10:19 +0000298 Val = getCopyFromParts(DAG, dl, Order, Parts, NumParts, PartVT, IntVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000299 }
300 }
301
302 // There is now one part, held in Val. Correct it to match ValueVT.
303 PartVT = Val.getValueType();
304
305 if (PartVT == ValueVT)
306 return Val;
307
308 if (PartVT.isVector()) {
309 assert(ValueVT.isVector() && "Unknown vector conversion!");
Bill Wendling3ea3c242009-12-22 02:10:19 +0000310 SDValue Res = DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Bill Wendling187361b2010-01-23 10:26:57 +0000311 DAG.AssignOrdering(Res.getNode(), Order);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000312 return Res;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000313 }
314
315 if (ValueVT.isVector()) {
316 assert(ValueVT.getVectorElementType() == PartVT &&
317 ValueVT.getVectorNumElements() == 1 &&
318 "Only trivial scalar-to-vector conversions should get here!");
Bill Wendling3ea3c242009-12-22 02:10:19 +0000319 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val);
Bill Wendling187361b2010-01-23 10:26:57 +0000320 DAG.AssignOrdering(Res.getNode(), Order);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000321 return Res;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000322 }
323
324 if (PartVT.isInteger() &&
325 ValueVT.isInteger()) {
326 if (ValueVT.bitsLT(PartVT)) {
327 // For a truncate, see if we have any information to
328 // indicate whether the truncated bits will always be
329 // zero or sign-extension.
330 if (AssertOp != ISD::DELETED_NODE)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000331 Val = DAG.getNode(AssertOp, dl, PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000332 DAG.getValueType(ValueVT));
Bill Wendling187361b2010-01-23 10:26:57 +0000333 DAG.AssignOrdering(Val.getNode(), Order);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000334 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Bill Wendling187361b2010-01-23 10:26:57 +0000335 DAG.AssignOrdering(Val.getNode(), Order);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000336 return Val;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000337 } else {
Bill Wendling3ea3c242009-12-22 02:10:19 +0000338 Val = DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val);
Bill Wendling187361b2010-01-23 10:26:57 +0000339 DAG.AssignOrdering(Val.getNode(), Order);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000340 return Val;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000341 }
342 }
343
344 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Bill Wendling3ea3c242009-12-22 02:10:19 +0000345 if (ValueVT.bitsLT(Val.getValueType())) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000346 // FP_ROUND's are always exact here.
Bill Wendling3ea3c242009-12-22 02:10:19 +0000347 Val = DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val,
348 DAG.getIntPtrConstant(1));
Bill Wendling187361b2010-01-23 10:26:57 +0000349 DAG.AssignOrdering(Val.getNode(), Order);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000350 return Val;
351 }
352
353 Val = DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val);
Bill Wendling187361b2010-01-23 10:26:57 +0000354 DAG.AssignOrdering(Val.getNode(), Order);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000355 return Val;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000356 }
357
Bill Wendling3ea3c242009-12-22 02:10:19 +0000358 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits()) {
359 Val = DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Bill Wendling187361b2010-01-23 10:26:57 +0000360 DAG.AssignOrdering(Val.getNode(), Order);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000361 return Val;
362 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000363
Torok Edwinc23197a2009-07-14 16:55:14 +0000364 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000365 return SDValue();
366}
367
368/// getCopyToParts - Create a series of nodes that contain the specified value
369/// split into legal parts. If the parts contain more bits than Val, then, for
370/// integers, ExtendKind can be used to specify how to generate the extra bits.
Bill Wendling3ea3c242009-12-22 02:10:19 +0000371static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, unsigned Order,
372 SDValue Val, SDValue *Parts, unsigned NumParts,
373 EVT PartVT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000374 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000375 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Andersone50ed302009-08-10 22:56:29 +0000376 EVT PtrVT = TLI.getPointerTy();
377 EVT ValueVT = Val.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000378 unsigned PartBits = PartVT.getSizeInBits();
Dale Johannesen8a36f502009-02-25 22:39:13 +0000379 unsigned OrigNumParts = NumParts;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000380 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
381
382 if (!NumParts)
383 return;
384
385 if (!ValueVT.isVector()) {
386 if (PartVT == ValueVT) {
387 assert(NumParts == 1 && "No-op copy with multiple parts!");
388 Parts[0] = Val;
389 return;
390 }
391
392 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
393 // If the parts cover more bits than the value has, promote the value.
394 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
395 assert(NumParts == 1 && "Do not know what to promote to!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000396 Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000397 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000398 ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000399 Val = DAG.getNode(ExtendKind, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000400 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000401 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000402 }
403 } else if (PartBits == ValueVT.getSizeInBits()) {
404 // Different types of the same size.
405 assert(NumParts == 1 && PartVT != ValueVT);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000406 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000407 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
408 // If the parts cover less bits than value has, truncate the value.
409 if (PartVT.isInteger() && ValueVT.isInteger()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000410 ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000411 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000412 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000413 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000414 }
415 }
416
Bill Wendling187361b2010-01-23 10:26:57 +0000417 DAG.AssignOrdering(Val.getNode(), Order);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000418
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000419 // The value may have changed - recompute ValueVT.
420 ValueVT = Val.getValueType();
421 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
422 "Failed to tile the value with PartVT!");
423
424 if (NumParts == 1) {
425 assert(PartVT == ValueVT && "Type conversion failed!");
426 Parts[0] = Val;
427 return;
428 }
429
430 // Expand the value into multiple parts.
431 if (NumParts & (NumParts - 1)) {
432 // The number of parts is not a power of 2. Split off and copy the tail.
433 assert(PartVT.isInteger() && ValueVT.isInteger() &&
434 "Do not know what to expand to!");
435 unsigned RoundParts = 1 << Log2_32(NumParts);
436 unsigned RoundBits = RoundParts * PartBits;
437 unsigned OddParts = NumParts - RoundParts;
Dale Johannesen66978ee2009-01-31 02:22:37 +0000438 SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000439 DAG.getConstant(RoundBits,
Duncan Sands92abc622009-01-31 15:50:11 +0000440 TLI.getPointerTy()));
Bill Wendling3ea3c242009-12-22 02:10:19 +0000441 getCopyToParts(DAG, dl, Order, OddVal, Parts + RoundParts,
442 OddParts, PartVT);
443
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000444 if (TLI.isBigEndian())
445 // The odd parts were reversed by getCopyToParts - unreverse them.
446 std::reverse(Parts + RoundParts, Parts + NumParts);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000447
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000448 NumParts = RoundParts;
Owen Anderson23b9b192009-08-12 00:36:31 +0000449 ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000450 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000451
Bill Wendling187361b2010-01-23 10:26:57 +0000452 DAG.AssignOrdering(OddVal.getNode(), Order);
453 DAG.AssignOrdering(Val.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000454 }
455
456 // The number of parts is a power of 2. Repeatedly bisect the value using
457 // EXTRACT_ELEMENT.
Scott Michelfdc40a02009-02-17 22:15:04 +0000458 Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl,
Chris Lattnerf031e8a2010-01-01 03:32:16 +0000459 EVT::getIntegerVT(*DAG.getContext(),
460 ValueVT.getSizeInBits()),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000461 Val);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000462
Bill Wendling187361b2010-01-23 10:26:57 +0000463 DAG.AssignOrdering(Parts[0].getNode(), Order);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000464
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000465 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
466 for (unsigned i = 0; i < NumParts; i += StepSize) {
467 unsigned ThisBits = StepSize * PartBits / 2;
Owen Anderson23b9b192009-08-12 00:36:31 +0000468 EVT ThisVT = EVT::getIntegerVT(*DAG.getContext(), ThisBits);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000469 SDValue &Part0 = Parts[i];
470 SDValue &Part1 = Parts[i+StepSize/2];
471
Scott Michelfdc40a02009-02-17 22:15:04 +0000472 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000473 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000474 DAG.getConstant(1, PtrVT));
Scott Michelfdc40a02009-02-17 22:15:04 +0000475 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000476 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000477 DAG.getConstant(0, PtrVT));
478
Bill Wendling187361b2010-01-23 10:26:57 +0000479 DAG.AssignOrdering(Part0.getNode(), Order);
480 DAG.AssignOrdering(Part1.getNode(), Order);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000481
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000482 if (ThisBits == PartBits && ThisVT != PartVT) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000483 Part0 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000484 PartVT, Part0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000485 Part1 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000486 PartVT, Part1);
Bill Wendling187361b2010-01-23 10:26:57 +0000487 DAG.AssignOrdering(Part0.getNode(), Order);
488 DAG.AssignOrdering(Part1.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000489 }
490 }
491 }
492
493 if (TLI.isBigEndian())
Dale Johannesen8a36f502009-02-25 22:39:13 +0000494 std::reverse(Parts, Parts + OrigNumParts);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000495
496 return;
497 }
498
499 // Vector ValueVT.
500 if (NumParts == 1) {
501 if (PartVT != ValueVT) {
Bob Wilson5afffae2009-12-18 01:03:29 +0000502 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000503 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000504 } else {
505 assert(ValueVT.getVectorElementType() == PartVT &&
506 ValueVT.getVectorNumElements() == 1 &&
507 "Only trivial vector-to-scalar conversions should get here!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000508 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000509 PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000510 DAG.getConstant(0, PtrVT));
511 }
512 }
513
Bill Wendling187361b2010-01-23 10:26:57 +0000514 DAG.AssignOrdering(Val.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000515 Parts[0] = Val;
516 return;
517 }
518
519 // Handle a multi-element vector.
Owen Andersone50ed302009-08-10 22:56:29 +0000520 EVT IntermediateVT, RegisterVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000521 unsigned NumIntermediates;
Owen Anderson23b9b192009-08-12 00:36:31 +0000522 unsigned NumRegs = TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT,
523 IntermediateVT, NumIntermediates, RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000524 unsigned NumElements = ValueVT.getVectorNumElements();
525
526 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
527 NumParts = NumRegs; // Silence a compiler warning.
528 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
529
530 // Split the vector into intermediate operands.
531 SmallVector<SDValue, 8> Ops(NumIntermediates);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000532 for (unsigned i = 0; i != NumIntermediates; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000533 if (IntermediateVT.isVector())
Scott Michelfdc40a02009-02-17 22:15:04 +0000534 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000535 IntermediateVT, Val,
536 DAG.getConstant(i * (NumElements / NumIntermediates),
537 PtrVT));
538 else
Scott Michelfdc40a02009-02-17 22:15:04 +0000539 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000540 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000541 DAG.getConstant(i, PtrVT));
542
Bill Wendling187361b2010-01-23 10:26:57 +0000543 DAG.AssignOrdering(Ops[i].getNode(), Order);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000544 }
545
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000546 // Split the intermediate operands into legal parts.
547 if (NumParts == NumIntermediates) {
548 // If the register was not expanded, promote or copy the value,
549 // as appropriate.
550 for (unsigned i = 0; i != NumParts; ++i)
Bill Wendling3ea3c242009-12-22 02:10:19 +0000551 getCopyToParts(DAG, dl, Order, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000552 } else if (NumParts > 0) {
553 // If the intermediate type was expanded, split each the value into
554 // legal parts.
555 assert(NumParts % NumIntermediates == 0 &&
556 "Must expand into a divisible number of parts!");
557 unsigned Factor = NumParts / NumIntermediates;
558 for (unsigned i = 0; i != NumIntermediates; ++i)
Bill Wendling3ea3c242009-12-22 02:10:19 +0000559 getCopyToParts(DAG, dl, Order, Ops[i], &Parts[i*Factor], Factor, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000560 }
561}
562
563
Dan Gohman2048b852009-11-23 18:04:58 +0000564void SelectionDAGBuilder::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000565 AA = &aa;
566 GFI = gfi;
567 TD = DAG.getTarget().getTargetData();
568}
569
570/// clear - Clear out the curret SelectionDAG and the associated
Dan Gohman2048b852009-11-23 18:04:58 +0000571/// state and prepare this SelectionDAGBuilder object to be used
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000572/// for a new block. This doesn't clear out information about
573/// additional blocks that are needed to complete switch lowering
574/// or PHI node updating; that information is cleared out as it is
575/// consumed.
Dan Gohman2048b852009-11-23 18:04:58 +0000576void SelectionDAGBuilder::clear() {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000577 NodeMap.clear();
578 PendingLoads.clear();
579 PendingExports.clear();
Evan Chengfb2e7522009-09-18 21:02:19 +0000580 EdgeMapping.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000581 DAG.clear();
Bill Wendling8fcf1702009-02-06 21:36:23 +0000582 CurDebugLoc = DebugLoc::getUnknownLoc();
Dan Gohman98ca4f22009-08-05 01:29:28 +0000583 HasTailCall = false;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000584}
585
586/// getRoot - Return the current virtual root of the Selection DAG,
587/// flushing any PendingLoad items. This must be done before emitting
588/// a store or any other node that may need to be ordered after any
589/// prior load instructions.
590///
Dan Gohman2048b852009-11-23 18:04:58 +0000591SDValue SelectionDAGBuilder::getRoot() {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000592 if (PendingLoads.empty())
593 return DAG.getRoot();
594
595 if (PendingLoads.size() == 1) {
596 SDValue Root = PendingLoads[0];
597 DAG.setRoot(Root);
598 PendingLoads.clear();
599 return Root;
600 }
601
602 // Otherwise, we have to make a token factor node.
Owen Anderson825b72b2009-08-11 20:47:22 +0000603 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000604 &PendingLoads[0], PendingLoads.size());
605 PendingLoads.clear();
606 DAG.setRoot(Root);
607 return Root;
608}
609
610/// getControlRoot - Similar to getRoot, but instead of flushing all the
611/// PendingLoad items, flush all the PendingExports items. It is necessary
612/// to do this before emitting a terminator instruction.
613///
Dan Gohman2048b852009-11-23 18:04:58 +0000614SDValue SelectionDAGBuilder::getControlRoot() {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000615 SDValue Root = DAG.getRoot();
616
617 if (PendingExports.empty())
618 return Root;
619
620 // Turn all of the CopyToReg chains into one factored node.
621 if (Root.getOpcode() != ISD::EntryToken) {
622 unsigned i = 0, e = PendingExports.size();
623 for (; i != e; ++i) {
624 assert(PendingExports[i].getNode()->getNumOperands() > 1);
625 if (PendingExports[i].getNode()->getOperand(0) == Root)
626 break; // Don't add the root if we already indirectly depend on it.
627 }
628
629 if (i == e)
630 PendingExports.push_back(Root);
631 }
632
Owen Anderson825b72b2009-08-11 20:47:22 +0000633 Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000634 &PendingExports[0],
635 PendingExports.size());
636 PendingExports.clear();
637 DAG.setRoot(Root);
638 return Root;
639}
640
Dan Gohman2048b852009-11-23 18:04:58 +0000641void SelectionDAGBuilder::visit(Instruction &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000642 visit(I.getOpcode(), I);
643}
644
Dan Gohman2048b852009-11-23 18:04:58 +0000645void SelectionDAGBuilder::visit(unsigned Opcode, User &I) {
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +0000646 // We're processing a new instruction.
647 ++SDNodeOrder;
648
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000649 // Note: this doesn't use InstVisitor, because it has to work with
650 // ConstantExpr's in addition to instructions.
651 switch (Opcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000652 default: llvm_unreachable("Unknown instruction type encountered!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000653 // Build the switch statement using the Instruction.def file.
654#define HANDLE_INST(NUM, OPCODE, CLASS) \
Bill Wendling3b7a41c2009-12-21 19:59:38 +0000655 case Instruction::OPCODE: return visit##OPCODE((CLASS&)I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000656#include "llvm/Instruction.def"
657 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000658}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000659
Dan Gohman2048b852009-11-23 18:04:58 +0000660SDValue SelectionDAGBuilder::getValue(const Value *V) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000661 SDValue &N = NodeMap[V];
662 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000663
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000664 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Owen Andersone50ed302009-08-10 22:56:29 +0000665 EVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000666
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000667 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000668 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000669
670 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
671 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000672
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000673 if (isa<ConstantPointerNull>(C))
674 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000675
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000676 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000677 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000678
Nate Begeman9008ca62009-04-27 18:41:29 +0000679 if (isa<UndefValue>(C) && !V->getType()->isAggregateType())
Dale Johannesene8d72302009-02-06 23:05:02 +0000680 return N = DAG.getUNDEF(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000681
682 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
683 visit(CE->getOpcode(), *CE);
684 SDValue N1 = NodeMap[V];
685 assert(N1.getNode() && "visit didn't populate the ValueMap!");
686 return N1;
687 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000688
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000689 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
690 SmallVector<SDValue, 4> Constants;
691 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
692 OI != OE; ++OI) {
693 SDNode *Val = getValue(*OI).getNode();
Dan Gohmaned48caf2009-09-08 01:44:02 +0000694 // If the operand is an empty aggregate, there are no values.
695 if (!Val) continue;
696 // Add each leaf value from the operand to the Constants list
697 // to form a flattened list of all the values.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000698 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
699 Constants.push_back(SDValue(Val, i));
700 }
Bill Wendling87710f02009-12-21 23:47:40 +0000701
702 SDValue Res = DAG.getMergeValues(&Constants[0], Constants.size(),
703 getCurDebugLoc());
Bill Wendling187361b2010-01-23 10:26:57 +0000704 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +0000705 return Res;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000706 }
707
708 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
709 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
710 "Unknown struct or array constant!");
711
Owen Andersone50ed302009-08-10 22:56:29 +0000712 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000713 ComputeValueVTs(TLI, C->getType(), ValueVTs);
714 unsigned NumElts = ValueVTs.size();
715 if (NumElts == 0)
716 return SDValue(); // empty struct
717 SmallVector<SDValue, 4> Constants(NumElts);
718 for (unsigned i = 0; i != NumElts; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +0000719 EVT EltVT = ValueVTs[i];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000720 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +0000721 Constants[i] = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000722 else if (EltVT.isFloatingPoint())
723 Constants[i] = DAG.getConstantFP(0, EltVT);
724 else
725 Constants[i] = DAG.getConstant(0, EltVT);
726 }
Bill Wendling87710f02009-12-21 23:47:40 +0000727
728 SDValue Res = DAG.getMergeValues(&Constants[0], NumElts,
729 getCurDebugLoc());
Bill Wendling187361b2010-01-23 10:26:57 +0000730 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +0000731 return Res;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000732 }
733
Dan Gohman8c2b5252009-10-30 01:27:03 +0000734 if (BlockAddress *BA = dyn_cast<BlockAddress>(C))
Dan Gohman29cbade2009-11-20 23:18:13 +0000735 return DAG.getBlockAddress(BA, VT);
Dan Gohman8c2b5252009-10-30 01:27:03 +0000736
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000737 const VectorType *VecTy = cast<VectorType>(V->getType());
738 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000739
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000740 // Now that we know the number and type of the elements, get that number of
741 // elements into the Ops array based on what kind of constant it is.
742 SmallVector<SDValue, 16> Ops;
743 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
744 for (unsigned i = 0; i != NumElements; ++i)
745 Ops.push_back(getValue(CP->getOperand(i)));
746 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +0000747 assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!");
Owen Andersone50ed302009-08-10 22:56:29 +0000748 EVT EltVT = TLI.getValueType(VecTy->getElementType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000749
750 SDValue Op;
Nate Begeman9008ca62009-04-27 18:41:29 +0000751 if (EltVT.isFloatingPoint())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000752 Op = DAG.getConstantFP(0, EltVT);
753 else
754 Op = DAG.getConstant(0, EltVT);
755 Ops.assign(NumElements, Op);
756 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000757
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000758 // Create a BUILD_VECTOR node.
Bill Wendling87710f02009-12-21 23:47:40 +0000759 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
760 VT, &Ops[0], Ops.size());
Bill Wendling187361b2010-01-23 10:26:57 +0000761 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +0000762 return NodeMap[V] = Res;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000763 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000764
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000765 // If this is a static alloca, generate it as the frameindex instead of
766 // computation.
767 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
768 DenseMap<const AllocaInst*, int>::iterator SI =
769 FuncInfo.StaticAllocaMap.find(AI);
770 if (SI != FuncInfo.StaticAllocaMap.end())
771 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
772 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000773
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000774 unsigned InReg = FuncInfo.ValueMap[V];
775 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000776
Owen Anderson23b9b192009-08-12 00:36:31 +0000777 RegsForValue RFV(*DAG.getContext(), TLI, InReg, V->getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000778 SDValue Chain = DAG.getEntryNode();
Bill Wendlingec72e322009-12-22 01:11:43 +0000779 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(),
780 SDNodeOrder, Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000781}
782
Kenneth Uildriks93ae4072010-01-16 23:37:33 +0000783/// Get the EVTs and ArgFlags collections that represent the legalized return
784/// type of the given function. This does not require a DAG or a return value,
785/// and is suitable for use before any DAGs for the function are constructed.
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000786static void getReturnInfo(const Type* ReturnType,
787 Attributes attr, SmallVectorImpl<EVT> &OutVTs,
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000788 SmallVectorImpl<ISD::ArgFlagsTy> &OutFlags,
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000789 TargetLowering &TLI,
790 SmallVectorImpl<uint64_t> *Offsets = 0) {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000791 SmallVector<EVT, 4> ValueVTs;
Kenneth Uildriks93ae4072010-01-16 23:37:33 +0000792 ComputeValueVTs(TLI, ReturnType, ValueVTs);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000793 unsigned NumValues = ValueVTs.size();
Kenneth Uildriks93ae4072010-01-16 23:37:33 +0000794 if (NumValues == 0) return;
795 unsigned Offset = 0;
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000796
797 for (unsigned j = 0, f = NumValues; j != f; ++j) {
798 EVT VT = ValueVTs[j];
799 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000800
801 if (attr & Attribute::SExt)
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000802 ExtendKind = ISD::SIGN_EXTEND;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000803 else if (attr & Attribute::ZExt)
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000804 ExtendKind = ISD::ZERO_EXTEND;
805
806 // FIXME: C calling convention requires the return type to be promoted to
807 // at least 32-bit. But this is not necessary for non-C calling
808 // conventions. The frontend should mark functions whose return values
809 // require promoting with signext or zeroext attributes.
810 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000811 EVT MinVT = TLI.getRegisterType(ReturnType->getContext(), MVT::i32);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000812 if (VT.bitsLT(MinVT))
813 VT = MinVT;
814 }
815
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000816 unsigned NumParts = TLI.getNumRegisters(ReturnType->getContext(), VT);
817 EVT PartVT = TLI.getRegisterType(ReturnType->getContext(), VT);
Kenneth Uildriks93ae4072010-01-16 23:37:33 +0000818 unsigned PartSize = TLI.getTargetData()->getTypeAllocSize(
819 PartVT.getTypeForEVT(ReturnType->getContext()));
820
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000821 // 'inreg' on function refers to return value
822 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000823 if (attr & Attribute::InReg)
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000824 Flags.setInReg();
825
826 // Propagate extension type if any
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000827 if (attr & Attribute::SExt)
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000828 Flags.setSExt();
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000829 else if (attr & Attribute::ZExt)
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000830 Flags.setZExt();
831
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000832 for (unsigned i = 0; i < NumParts; ++i) {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000833 OutVTs.push_back(PartVT);
834 OutFlags.push_back(Flags);
Kenneth Uildriks93ae4072010-01-16 23:37:33 +0000835 if (Offsets)
836 {
837 Offsets->push_back(Offset);
838 Offset += PartSize;
839 }
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000840 }
841 }
842}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000843
Dan Gohman2048b852009-11-23 18:04:58 +0000844void SelectionDAGBuilder::visitRet(ReturnInst &I) {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000845 SDValue Chain = getControlRoot();
846 SmallVector<ISD::OutputArg, 8> Outs;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000847 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +0000848
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000849 if (!FLI.CanLowerReturn) {
850 unsigned DemoteReg = FLI.DemoteRegister;
851 const Function *F = I.getParent()->getParent();
852
853 // Emit a store of the return value through the virtual register.
854 // Leave Outs empty so that LowerReturn won't try to load return
855 // registers the usual way.
856 SmallVector<EVT, 1> PtrValueVTs;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +0000857 ComputeValueVTs(TLI, PointerType::getUnqual(F->getReturnType()),
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000858 PtrValueVTs);
859
860 SDValue RetPtr = DAG.getRegister(DemoteReg, PtrValueVTs[0]);
861 SDValue RetOp = getValue(I.getOperand(0));
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +0000862
Owen Andersone50ed302009-08-10 22:56:29 +0000863 SmallVector<EVT, 4> ValueVTs;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000864 SmallVector<uint64_t, 4> Offsets;
865 ComputeValueVTs(TLI, I.getOperand(0)->getType(), ValueVTs, &Offsets);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000866 unsigned NumValues = ValueVTs.size();
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000867
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000868 SmallVector<SDValue, 4> Chains(NumValues);
869 EVT PtrVT = PtrValueVTs[0];
Bill Wendling87710f02009-12-21 23:47:40 +0000870 for (unsigned i = 0; i != NumValues; ++i) {
871 SDValue Add = DAG.getNode(ISD::ADD, getCurDebugLoc(), PtrVT, RetPtr,
872 DAG.getConstant(Offsets[i], PtrVT));
873 Chains[i] =
874 DAG.getStore(Chain, getCurDebugLoc(),
875 SDValue(RetOp.getNode(), RetOp.getResNo() + i),
876 Add, NULL, Offsets[i], false, 0);
877
Bill Wendling187361b2010-01-23 10:26:57 +0000878 DAG.AssignOrdering(Add.getNode(), SDNodeOrder);
879 DAG.AssignOrdering(Chains[i].getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +0000880 }
881
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000882 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
883 MVT::Other, &Chains[0], NumValues);
Bill Wendling87710f02009-12-21 23:47:40 +0000884
Bill Wendling187361b2010-01-23 10:26:57 +0000885 DAG.AssignOrdering(Chain.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +0000886 } else {
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000887 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
888 SmallVector<EVT, 4> ValueVTs;
889 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
890 unsigned NumValues = ValueVTs.size();
891 if (NumValues == 0) continue;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +0000892
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000893 SDValue RetOp = getValue(I.getOperand(i));
894 for (unsigned j = 0, f = NumValues; j != f; ++j) {
895 EVT VT = ValueVTs[j];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000896
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000897 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000898
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000899 const Function *F = I.getParent()->getParent();
900 if (F->paramHasAttr(0, Attribute::SExt))
901 ExtendKind = ISD::SIGN_EXTEND;
902 else if (F->paramHasAttr(0, Attribute::ZExt))
903 ExtendKind = ISD::ZERO_EXTEND;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000904
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +0000905 // FIXME: C calling convention requires the return type to be promoted
906 // to at least 32-bit. But this is not necessary for non-C calling
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000907 // conventions. The frontend should mark functions whose return values
908 // require promoting with signext or zeroext attributes.
909 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
910 EVT MinVT = TLI.getRegisterType(*DAG.getContext(), MVT::i32);
911 if (VT.bitsLT(MinVT))
912 VT = MinVT;
913 }
914
915 unsigned NumParts = TLI.getNumRegisters(*DAG.getContext(), VT);
916 EVT PartVT = TLI.getRegisterType(*DAG.getContext(), VT);
917 SmallVector<SDValue, 4> Parts(NumParts);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000918 getCopyToParts(DAG, getCurDebugLoc(), SDNodeOrder,
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000919 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
920 &Parts[0], NumParts, PartVT, ExtendKind);
921
922 // 'inreg' on function refers to return value
923 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
924 if (F->paramHasAttr(0, Attribute::InReg))
925 Flags.setInReg();
926
927 // Propagate extension type if any
928 if (F->paramHasAttr(0, Attribute::SExt))
929 Flags.setSExt();
930 else if (F->paramHasAttr(0, Attribute::ZExt))
931 Flags.setZExt();
932
933 for (unsigned i = 0; i < NumParts; ++i)
934 Outs.push_back(ISD::OutputArg(Flags, Parts[i], /*isfixed=*/true));
Evan Cheng3927f432009-03-25 20:20:11 +0000935 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000936 }
937 }
Dan Gohman98ca4f22009-08-05 01:29:28 +0000938
939 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000940 CallingConv::ID CallConv =
941 DAG.getMachineFunction().getFunction()->getCallingConv();
Dan Gohman98ca4f22009-08-05 01:29:28 +0000942 Chain = TLI.LowerReturn(Chain, CallConv, isVarArg,
943 Outs, getCurDebugLoc(), DAG);
Dan Gohman5e866062009-08-06 15:37:27 +0000944
945 // Verify that the target's LowerReturn behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +0000946 assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +0000947 "LowerReturn didn't return a valid chain!");
948
949 // Update the DAG with the new chain value resulting from return lowering.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000950 DAG.setRoot(Chain);
Bill Wendling187361b2010-01-23 10:26:57 +0000951 DAG.AssignOrdering(Chain.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000952}
953
Dan Gohmanad62f532009-04-23 23:13:24 +0000954/// CopyToExportRegsIfNeeded - If the given value has virtual registers
955/// created for it, emit nodes to copy the value into the virtual
956/// registers.
Dan Gohman2048b852009-11-23 18:04:58 +0000957void SelectionDAGBuilder::CopyToExportRegsIfNeeded(Value *V) {
Dan Gohmanad62f532009-04-23 23:13:24 +0000958 if (!V->use_empty()) {
959 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
960 if (VMI != FuncInfo.ValueMap.end())
961 CopyValueToVirtualRegister(V, VMI->second);
962 }
963}
964
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000965/// ExportFromCurrentBlock - If this condition isn't known to be exported from
966/// the current basic block, add it to ValueMap now so that we'll get a
967/// CopyTo/FromReg.
Dan Gohman2048b852009-11-23 18:04:58 +0000968void SelectionDAGBuilder::ExportFromCurrentBlock(Value *V) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000969 // No need to export constants.
970 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000971
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000972 // Already exported?
973 if (FuncInfo.isExportedInst(V)) return;
974
975 unsigned Reg = FuncInfo.InitializeRegForValue(V);
976 CopyValueToVirtualRegister(V, Reg);
977}
978
Dan Gohman2048b852009-11-23 18:04:58 +0000979bool SelectionDAGBuilder::isExportableFromCurrentBlock(Value *V,
980 const BasicBlock *FromBB) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000981 // The operands of the setcc have to be in this block. We don't know
982 // how to export them from some other block.
983 if (Instruction *VI = dyn_cast<Instruction>(V)) {
984 // Can export from current BB.
985 if (VI->getParent() == FromBB)
986 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000987
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000988 // Is already exported, noop.
989 return FuncInfo.isExportedInst(V);
990 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000991
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000992 // If this is an argument, we can export it if the BB is the entry block or
993 // if it is already exported.
994 if (isa<Argument>(V)) {
995 if (FromBB == &FromBB->getParent()->getEntryBlock())
996 return true;
997
998 // Otherwise, can only export this if it is already exported.
999 return FuncInfo.isExportedInst(V);
1000 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001001
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001002 // Otherwise, constants can always be exported.
1003 return true;
1004}
1005
1006static bool InBlock(const Value *V, const BasicBlock *BB) {
1007 if (const Instruction *I = dyn_cast<Instruction>(V))
1008 return I->getParent() == BB;
1009 return true;
1010}
1011
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001012/// getFCmpCondCode - Return the ISD condition code corresponding to
1013/// the given LLVM IR floating-point condition code. This includes
1014/// consideration of global floating-point math flags.
1015///
1016static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1017 ISD::CondCode FPC, FOC;
1018 switch (Pred) {
1019 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1020 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1021 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1022 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1023 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1024 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1025 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1026 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1027 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1028 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1029 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1030 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1031 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1032 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1033 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1034 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1035 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001036 llvm_unreachable("Invalid FCmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001037 FOC = FPC = ISD::SETFALSE;
1038 break;
1039 }
1040 if (FiniteOnlyFPMath())
1041 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001042 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001043 return FPC;
1044}
1045
1046/// getICmpCondCode - Return the ISD condition code corresponding to
1047/// the given LLVM IR integer condition code.
1048///
1049static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1050 switch (Pred) {
1051 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1052 case ICmpInst::ICMP_NE: return ISD::SETNE;
1053 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1054 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1055 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1056 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1057 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1058 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1059 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1060 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1061 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001062 llvm_unreachable("Invalid ICmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001063 return ISD::SETNE;
1064 }
1065}
1066
Dan Gohmanc2277342008-10-17 21:16:08 +00001067/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1068/// This function emits a branch and is used at the leaves of an OR or an
1069/// AND operator tree.
1070///
1071void
Dan Gohman2048b852009-11-23 18:04:58 +00001072SelectionDAGBuilder::EmitBranchForMergedCondition(Value *Cond,
1073 MachineBasicBlock *TBB,
1074 MachineBasicBlock *FBB,
1075 MachineBasicBlock *CurBB) {
Dan Gohmanc2277342008-10-17 21:16:08 +00001076 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001077
Dan Gohmanc2277342008-10-17 21:16:08 +00001078 // If the leaf of the tree is a comparison, merge the condition into
1079 // the caseblock.
1080 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1081 // The operands of the cmp have to be in this block. We don't know
1082 // how to export them from some other block. If this is the first block
1083 // of the sequence, no exporting is needed.
1084 if (CurBB == CurMBB ||
1085 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1086 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001087 ISD::CondCode Condition;
1088 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001089 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001090 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001091 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001092 } else {
1093 Condition = ISD::SETEQ; // silence warning.
Torok Edwinc23197a2009-07-14 16:55:14 +00001094 llvm_unreachable("Unknown compare instruction");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001095 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001096
1097 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001098 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1099 SwitchCases.push_back(CB);
1100 return;
1101 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001102 }
1103
1104 // Create a CaseBlock record representing this branch.
Owen Anderson5defacc2009-07-31 17:39:07 +00001105 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(*DAG.getContext()),
Dan Gohmanc2277342008-10-17 21:16:08 +00001106 NULL, TBB, FBB, CurBB);
1107 SwitchCases.push_back(CB);
1108}
1109
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001110/// FindMergedConditions - If Cond is an expression like
Dan Gohman2048b852009-11-23 18:04:58 +00001111void SelectionDAGBuilder::FindMergedConditions(Value *Cond,
1112 MachineBasicBlock *TBB,
1113 MachineBasicBlock *FBB,
1114 MachineBasicBlock *CurBB,
1115 unsigned Opc) {
Dan Gohmanc2277342008-10-17 21:16:08 +00001116 // If this node is not part of the or/and tree, emit it as a branch.
1117 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001118 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001119 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1120 BOp->getParent() != CurBB->getBasicBlock() ||
1121 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1122 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1123 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001124 return;
1125 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001126
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001127 // Create TmpBB after CurBB.
1128 MachineFunction::iterator BBI = CurBB;
1129 MachineFunction &MF = DAG.getMachineFunction();
1130 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1131 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001132
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001133 if (Opc == Instruction::Or) {
1134 // Codegen X | Y as:
1135 // jmp_if_X TBB
1136 // jmp TmpBB
1137 // TmpBB:
1138 // jmp_if_Y TBB
1139 // jmp FBB
1140 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001141
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001142 // Emit the LHS condition.
1143 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001144
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001145 // Emit the RHS condition into TmpBB.
1146 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1147 } else {
1148 assert(Opc == Instruction::And && "Unknown merge op!");
1149 // Codegen X & Y as:
1150 // jmp_if_X TmpBB
1151 // jmp FBB
1152 // TmpBB:
1153 // jmp_if_Y TBB
1154 // jmp FBB
1155 //
1156 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001157
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001158 // Emit the LHS condition.
1159 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001160
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001161 // Emit the RHS condition into TmpBB.
1162 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1163 }
1164}
1165
1166/// If the set of cases should be emitted as a series of branches, return true.
1167/// If we should emit this as a bunch of and/or'd together conditions, return
1168/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001169bool
Dan Gohman2048b852009-11-23 18:04:58 +00001170SelectionDAGBuilder::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001171 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001172
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001173 // If this is two comparisons of the same values or'd or and'd together, they
1174 // will get folded into a single comparison, so don't emit two blocks.
1175 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1176 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1177 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1178 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1179 return false;
1180 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001181
Chris Lattner133ce872010-01-02 00:00:03 +00001182 // Handle: (X != null) | (Y != null) --> (X|Y) != 0
1183 // Handle: (X == null) & (Y == null) --> (X|Y) == 0
1184 if (Cases[0].CmpRHS == Cases[1].CmpRHS &&
1185 Cases[0].CC == Cases[1].CC &&
1186 isa<Constant>(Cases[0].CmpRHS) &&
1187 cast<Constant>(Cases[0].CmpRHS)->isNullValue()) {
1188 if (Cases[0].CC == ISD::SETEQ && Cases[0].TrueBB == Cases[1].ThisBB)
1189 return false;
1190 if (Cases[0].CC == ISD::SETNE && Cases[0].FalseBB == Cases[1].ThisBB)
1191 return false;
1192 }
1193
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001194 return true;
1195}
1196
Dan Gohman2048b852009-11-23 18:04:58 +00001197void SelectionDAGBuilder::visitBr(BranchInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001198 // Update machine-CFG edges.
1199 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1200
1201 // Figure out which block is immediately after the current one.
1202 MachineBasicBlock *NextBlock = 0;
1203 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001204 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001205 NextBlock = BBI;
1206
1207 if (I.isUnconditional()) {
1208 // Update machine-CFG edges.
1209 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001210
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001211 // If this is not a fall-through branch, emit the branch.
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001212 if (Succ0MBB != NextBlock) {
1213 SDValue V = DAG.getNode(ISD::BR, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001214 MVT::Other, getControlRoot(),
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001215 DAG.getBasicBlock(Succ0MBB));
1216 DAG.setRoot(V);
Bill Wendling187361b2010-01-23 10:26:57 +00001217 DAG.AssignOrdering(V.getNode(), SDNodeOrder);
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001218 }
1219
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001220 return;
1221 }
1222
1223 // If this condition is one of the special cases we handle, do special stuff
1224 // now.
1225 Value *CondVal = I.getCondition();
1226 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1227
1228 // If this is a series of conditions that are or'd or and'd together, emit
1229 // this as a sequence of branches instead of setcc's with and/or operations.
1230 // For example, instead of something like:
1231 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001232 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001233 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001234 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001235 // or C, F
1236 // jnz foo
1237 // Emit:
1238 // cmp A, B
1239 // je foo
1240 // cmp D, E
1241 // jle foo
1242 //
1243 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001244 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001245 (BOp->getOpcode() == Instruction::And ||
1246 BOp->getOpcode() == Instruction::Or)) {
1247 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1248 // If the compares in later blocks need to use values not currently
1249 // exported from this block, export them now. This block should always
1250 // be the first entry.
1251 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001252
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001253 // Allow some cases to be rejected.
1254 if (ShouldEmitAsBranches(SwitchCases)) {
1255 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1256 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1257 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1258 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001259
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001260 // Emit the branch for this block.
1261 visitSwitchCase(SwitchCases[0]);
1262 SwitchCases.erase(SwitchCases.begin());
1263 return;
1264 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001265
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001266 // Okay, we decided not to do this, remove any inserted MBB's and clear
1267 // SwitchCases.
1268 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001269 FuncInfo.MF->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001270
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001271 SwitchCases.clear();
1272 }
1273 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001274
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001275 // Create a CaseBlock record representing this branch.
Owen Anderson5defacc2009-07-31 17:39:07 +00001276 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(*DAG.getContext()),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001277 NULL, Succ0MBB, Succ1MBB, CurMBB);
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001278
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001279 // Use visitSwitchCase to actually insert the fast branch sequence for this
1280 // cond branch.
1281 visitSwitchCase(CB);
1282}
1283
1284/// visitSwitchCase - Emits the necessary code to represent a single node in
1285/// the binary search tree resulting from lowering a switch instruction.
Dan Gohman2048b852009-11-23 18:04:58 +00001286void SelectionDAGBuilder::visitSwitchCase(CaseBlock &CB) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001287 SDValue Cond;
1288 SDValue CondLHS = getValue(CB.CmpLHS);
Dale Johannesenf5d97892009-02-04 01:48:28 +00001289 DebugLoc dl = getCurDebugLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001290
1291 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001292 if (CB.CmpMHS == NULL) {
1293 // Fold "(X == true)" to X and "(X == false)" to !X to
1294 // handle common cases produced by branch lowering.
Owen Anderson5defacc2009-07-31 17:39:07 +00001295 if (CB.CmpRHS == ConstantInt::getTrue(*DAG.getContext()) &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001296 CB.CC == ISD::SETEQ)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001297 Cond = CondLHS;
Owen Anderson5defacc2009-07-31 17:39:07 +00001298 else if (CB.CmpRHS == ConstantInt::getFalse(*DAG.getContext()) &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001299 CB.CC == ISD::SETEQ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001300 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001301 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001302 } else
Owen Anderson825b72b2009-08-11 20:47:22 +00001303 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001304 } else {
1305 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1306
Anton Korobeynikov23218582008-12-23 22:25:27 +00001307 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1308 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001309
1310 SDValue CmpOp = getValue(CB.CmpMHS);
Owen Andersone50ed302009-08-10 22:56:29 +00001311 EVT VT = CmpOp.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001312
1313 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001314 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
Dale Johannesenf5d97892009-02-04 01:48:28 +00001315 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001316 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001317 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001318 VT, CmpOp, DAG.getConstant(Low, VT));
Owen Anderson825b72b2009-08-11 20:47:22 +00001319 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001320 DAG.getConstant(High-Low, VT), ISD::SETULE);
1321 }
1322 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001323
Bill Wendling187361b2010-01-23 10:26:57 +00001324 DAG.AssignOrdering(Cond.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00001325
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001326 // Update successor info
1327 CurMBB->addSuccessor(CB.TrueBB);
1328 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001329
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001330 // Set NextBlock to be the MBB immediately after the current one, if any.
1331 // This is used to avoid emitting unnecessary branches to the next block.
1332 MachineBasicBlock *NextBlock = 0;
1333 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001334 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001335 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001336
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001337 // If the lhs block is the next block, invert the condition so that we can
1338 // fall through to the lhs instead of the rhs block.
1339 if (CB.TrueBB == NextBlock) {
1340 std::swap(CB.TrueBB, CB.FalseBB);
1341 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001342 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Bill Wendling187361b2010-01-23 10:26:57 +00001343 DAG.AssignOrdering(Cond.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001344 }
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001345
Dale Johannesenf5d97892009-02-04 01:48:28 +00001346 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001347 MVT::Other, getControlRoot(), Cond,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001348 DAG.getBasicBlock(CB.TrueBB));
Bill Wendling187361b2010-01-23 10:26:57 +00001349 DAG.AssignOrdering(BrCond.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00001350
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001351 // If the branch was constant folded, fix up the CFG.
1352 if (BrCond.getOpcode() == ISD::BR) {
1353 CurMBB->removeSuccessor(CB.FalseBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001354 } else {
1355 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001356 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001357 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001358
Bill Wendling87710f02009-12-21 23:47:40 +00001359 if (CB.FalseBB != NextBlock) {
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001360 BrCond = DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
1361 DAG.getBasicBlock(CB.FalseBB));
Bill Wendling87710f02009-12-21 23:47:40 +00001362
Bill Wendling187361b2010-01-23 10:26:57 +00001363 DAG.AssignOrdering(BrCond.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00001364 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001365 }
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001366
1367 DAG.setRoot(BrCond);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001368}
1369
1370/// visitJumpTable - Emit JumpTable node in the current MBB
Dan Gohman2048b852009-11-23 18:04:58 +00001371void SelectionDAGBuilder::visitJumpTable(JumpTable &JT) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001372 // Emit the code for the jump table
1373 assert(JT.Reg != -1U && "Should lower JT Header first!");
Owen Andersone50ed302009-08-10 22:56:29 +00001374 EVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001375 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1376 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001377 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001378 SDValue BrJumpTable = DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
1379 MVT::Other, Index.getValue(1),
1380 Table, Index);
1381 DAG.setRoot(BrJumpTable);
1382
Bill Wendling187361b2010-01-23 10:26:57 +00001383 DAG.AssignOrdering(Index.getNode(), SDNodeOrder);
1384 DAG.AssignOrdering(Table.getNode(), SDNodeOrder);
1385 DAG.AssignOrdering(BrJumpTable.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001386}
1387
1388/// visitJumpTableHeader - This function emits necessary code to produce index
1389/// in the JumpTable from switch case.
Dan Gohman2048b852009-11-23 18:04:58 +00001390void SelectionDAGBuilder::visitJumpTableHeader(JumpTable &JT,
1391 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001392 // Subtract the lowest switch case value from the value being switched on and
1393 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001394 // difference between smallest and largest cases.
1395 SDValue SwitchOp = getValue(JTH.SValue);
Owen Andersone50ed302009-08-10 22:56:29 +00001396 EVT VT = SwitchOp.getValueType();
Bill Wendling87710f02009-12-21 23:47:40 +00001397 SDValue Sub = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001398 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001399
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001400 // The SDNode we just created, which holds the value being switched on minus
1401 // the the smallest case value, needs to be copied to a virtual register so it
1402 // can be used as an index into the jump table in a subsequent basic block.
1403 // This value may be smaller or larger than the target's pointer type, and
1404 // therefore require extension or truncating.
Bill Wendling87710f02009-12-21 23:47:40 +00001405 SwitchOp = DAG.getZExtOrTrunc(Sub, getCurDebugLoc(), TLI.getPointerTy());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001406
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001407 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001408 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1409 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001410 JT.Reg = JumpTableReg;
1411
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001412 // Emit the range check for the jump table, and branch to the default block
1413 // for the switch statement if the value being switched on exceeds the largest
1414 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001415 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
Bill Wendling87710f02009-12-21 23:47:40 +00001416 TLI.getSetCCResultType(Sub.getValueType()), Sub,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001417 DAG.getConstant(JTH.Last-JTH.First,VT),
1418 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001419
Bill Wendling187361b2010-01-23 10:26:57 +00001420 DAG.AssignOrdering(Sub.getNode(), SDNodeOrder);
1421 DAG.AssignOrdering(SwitchOp.getNode(), SDNodeOrder);
1422 DAG.AssignOrdering(CopyTo.getNode(), SDNodeOrder);
1423 DAG.AssignOrdering(CMP.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00001424
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001425 // Set NextBlock to be the MBB immediately after the current one, if any.
1426 // This is used to avoid emitting unnecessary branches to the next block.
1427 MachineBasicBlock *NextBlock = 0;
1428 MachineFunction::iterator BBI = CurMBB;
Bill Wendling87710f02009-12-21 23:47:40 +00001429
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001430 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001431 NextBlock = BBI;
1432
Dale Johannesen66978ee2009-01-31 02:22:37 +00001433 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001434 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001435 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001436
Bill Wendling187361b2010-01-23 10:26:57 +00001437 DAG.AssignOrdering(BrCond.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00001438
1439 if (JT.MBB != NextBlock) {
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001440 BrCond = DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
1441 DAG.getBasicBlock(JT.MBB));
Bill Wendling187361b2010-01-23 10:26:57 +00001442 DAG.AssignOrdering(BrCond.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00001443 }
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001444
Bill Wendling87710f02009-12-21 23:47:40 +00001445 DAG.setRoot(BrCond);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001446}
1447
1448/// visitBitTestHeader - This function emits necessary code to produce value
1449/// suitable for "bit tests"
Dan Gohman2048b852009-11-23 18:04:58 +00001450void SelectionDAGBuilder::visitBitTestHeader(BitTestBlock &B) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001451 // Subtract the minimum value
1452 SDValue SwitchOp = getValue(B.SValue);
Owen Andersone50ed302009-08-10 22:56:29 +00001453 EVT VT = SwitchOp.getValueType();
Bill Wendling87710f02009-12-21 23:47:40 +00001454 SDValue Sub = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001455 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001456
1457 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001458 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
Bill Wendling87710f02009-12-21 23:47:40 +00001459 TLI.getSetCCResultType(Sub.getValueType()),
1460 Sub, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001461 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001462
Bill Wendling87710f02009-12-21 23:47:40 +00001463 SDValue ShiftOp = DAG.getZExtOrTrunc(Sub, getCurDebugLoc(),
1464 TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001465
Duncan Sands92abc622009-01-31 15:50:11 +00001466 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001467 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1468 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001469
Bill Wendling187361b2010-01-23 10:26:57 +00001470 DAG.AssignOrdering(Sub.getNode(), SDNodeOrder);
1471 DAG.AssignOrdering(RangeCmp.getNode(), SDNodeOrder);
1472 DAG.AssignOrdering(ShiftOp.getNode(), SDNodeOrder);
1473 DAG.AssignOrdering(CopyTo.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00001474
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001475 // Set NextBlock to be the MBB immediately after the current one, if any.
1476 // This is used to avoid emitting unnecessary branches to the next block.
1477 MachineBasicBlock *NextBlock = 0;
1478 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001479 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001480 NextBlock = BBI;
1481
1482 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1483
1484 CurMBB->addSuccessor(B.Default);
1485 CurMBB->addSuccessor(MBB);
1486
Dale Johannesen66978ee2009-01-31 02:22:37 +00001487 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001488 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001489 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001490
Bill Wendling187361b2010-01-23 10:26:57 +00001491 DAG.AssignOrdering(BrRange.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00001492
1493 if (MBB != NextBlock) {
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001494 BrRange = DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
1495 DAG.getBasicBlock(MBB));
Bill Wendling187361b2010-01-23 10:26:57 +00001496 DAG.AssignOrdering(BrRange.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00001497 }
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001498
Bill Wendling87710f02009-12-21 23:47:40 +00001499 DAG.setRoot(BrRange);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001500}
1501
1502/// visitBitTestCase - this function produces one "bit test"
Dan Gohman2048b852009-11-23 18:04:58 +00001503void SelectionDAGBuilder::visitBitTestCase(MachineBasicBlock* NextMBB,
1504 unsigned Reg,
1505 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001506 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001507 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001508 TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001509 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001510 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001511 DAG.getConstant(1, TLI.getPointerTy()),
1512 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001513
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001514 // Emit bit tests and jumps
Scott Michelfdc40a02009-02-17 22:15:04 +00001515 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001516 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001517 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001518 SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(),
1519 TLI.getSetCCResultType(AndOp.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00001520 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001521 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001522
Bill Wendling187361b2010-01-23 10:26:57 +00001523 DAG.AssignOrdering(ShiftOp.getNode(), SDNodeOrder);
1524 DAG.AssignOrdering(SwitchVal.getNode(), SDNodeOrder);
1525 DAG.AssignOrdering(AndOp.getNode(), SDNodeOrder);
1526 DAG.AssignOrdering(AndCmp.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00001527
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001528 CurMBB->addSuccessor(B.TargetBB);
1529 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001530
Dale Johannesen66978ee2009-01-31 02:22:37 +00001531 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001532 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001533 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001534
Bill Wendling187361b2010-01-23 10:26:57 +00001535 DAG.AssignOrdering(BrAnd.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00001536
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001537 // Set NextBlock to be the MBB immediately after the current one, if any.
1538 // This is used to avoid emitting unnecessary branches to the next block.
1539 MachineBasicBlock *NextBlock = 0;
1540 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001541 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001542 NextBlock = BBI;
1543
Bill Wendling87710f02009-12-21 23:47:40 +00001544 if (NextMBB != NextBlock) {
Bill Wendling0777e922009-12-21 21:59:52 +00001545 BrAnd = DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
1546 DAG.getBasicBlock(NextMBB));
Bill Wendling187361b2010-01-23 10:26:57 +00001547 DAG.AssignOrdering(BrAnd.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00001548 }
Bill Wendling0777e922009-12-21 21:59:52 +00001549
Bill Wendling87710f02009-12-21 23:47:40 +00001550 DAG.setRoot(BrAnd);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001551}
1552
Dan Gohman2048b852009-11-23 18:04:58 +00001553void SelectionDAGBuilder::visitInvoke(InvokeInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001554 // Retrieve successors.
1555 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1556 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1557
Gabor Greifb67e6b32009-01-15 11:10:44 +00001558 const Value *Callee(I.getCalledValue());
1559 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001560 visitInlineAsm(&I);
1561 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001562 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001563
1564 // If the value of the invoke is used outside of its defining block, make it
1565 // available as a virtual register.
Dan Gohmanad62f532009-04-23 23:13:24 +00001566 CopyToExportRegsIfNeeded(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001567
1568 // Update successor info
1569 CurMBB->addSuccessor(Return);
1570 CurMBB->addSuccessor(LandingPad);
1571
1572 // Drop into normal successor.
Bill Wendling0777e922009-12-21 21:59:52 +00001573 SDValue Branch = DAG.getNode(ISD::BR, getCurDebugLoc(),
1574 MVT::Other, getControlRoot(),
1575 DAG.getBasicBlock(Return));
1576 DAG.setRoot(Branch);
Bill Wendling187361b2010-01-23 10:26:57 +00001577 DAG.AssignOrdering(Branch.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001578}
1579
Dan Gohman2048b852009-11-23 18:04:58 +00001580void SelectionDAGBuilder::visitUnwind(UnwindInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001581}
1582
1583/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1584/// small case ranges).
Dan Gohman2048b852009-11-23 18:04:58 +00001585bool SelectionDAGBuilder::handleSmallSwitchRange(CaseRec& CR,
1586 CaseRecVector& WorkList,
1587 Value* SV,
1588 MachineBasicBlock* Default) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001589 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001590
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001591 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001592 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001593 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001594 return false;
1595
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001596 // Get the MachineFunction which holds the current MBB. This is used when
1597 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001598 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001599
1600 // Figure out which block is immediately after the current one.
1601 MachineBasicBlock *NextBlock = 0;
1602 MachineFunction::iterator BBI = CR.CaseBB;
1603
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001604 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001605 NextBlock = BBI;
1606
1607 // TODO: If any two of the cases has the same destination, and if one value
1608 // is the same as the other, but has one bit unset that the other has set,
1609 // use bit manipulation to do two compares at once. For example:
1610 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001611
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001612 // Rearrange the case blocks so that the last one falls through if possible.
1613 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1614 // The last case block won't fall through into 'NextBlock' if we emit the
1615 // branches in this order. See if rearranging a case value would help.
1616 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1617 if (I->BB == NextBlock) {
1618 std::swap(*I, BackCase);
1619 break;
1620 }
1621 }
1622 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001623
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001624 // Create a CaseBlock record representing a conditional branch to
1625 // the Case's target mbb if the value being switched on SV is equal
1626 // to C.
1627 MachineBasicBlock *CurBlock = CR.CaseBB;
1628 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1629 MachineBasicBlock *FallThrough;
1630 if (I != E-1) {
1631 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1632 CurMF->insert(BBI, FallThrough);
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001633
1634 // Put SV in a virtual register to make it available from the new blocks.
1635 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001636 } else {
1637 // If the last case doesn't match, go to the default block.
1638 FallThrough = Default;
1639 }
1640
1641 Value *RHS, *LHS, *MHS;
1642 ISD::CondCode CC;
1643 if (I->High == I->Low) {
1644 // This is just small small case range :) containing exactly 1 case
1645 CC = ISD::SETEQ;
1646 LHS = SV; RHS = I->High; MHS = NULL;
1647 } else {
1648 CC = ISD::SETLE;
1649 LHS = I->Low; MHS = SV; RHS = I->High;
1650 }
1651 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001652
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001653 // If emitting the first comparison, just call visitSwitchCase to emit the
1654 // code into the current block. Otherwise, push the CaseBlock onto the
1655 // vector to be later processed by SDISel, and insert the node's MBB
1656 // before the next MBB.
1657 if (CurBlock == CurMBB)
1658 visitSwitchCase(CB);
1659 else
1660 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001661
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001662 CurBlock = FallThrough;
1663 }
1664
1665 return true;
1666}
1667
1668static inline bool areJTsAllowed(const TargetLowering &TLI) {
1669 return !DisableJumpTables &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001670 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1671 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001672}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001673
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001674static APInt ComputeRange(const APInt &First, const APInt &Last) {
1675 APInt LastExt(Last), FirstExt(First);
1676 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1677 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1678 return (LastExt - FirstExt + 1ULL);
1679}
1680
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001681/// handleJTSwitchCase - Emit jumptable for current switch case range
Dan Gohman2048b852009-11-23 18:04:58 +00001682bool SelectionDAGBuilder::handleJTSwitchCase(CaseRec& CR,
1683 CaseRecVector& WorkList,
1684 Value* SV,
1685 MachineBasicBlock* Default) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001686 Case& FrontCase = *CR.Range.first;
1687 Case& BackCase = *(CR.Range.second-1);
1688
Chris Lattnere880efe2009-11-07 07:50:34 +00001689 const APInt &First = cast<ConstantInt>(FrontCase.Low)->getValue();
1690 const APInt &Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001691
Chris Lattnere880efe2009-11-07 07:50:34 +00001692 APInt TSize(First.getBitWidth(), 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001693 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1694 I!=E; ++I)
1695 TSize += I->size();
1696
Chris Lattnere880efe2009-11-07 07:50:34 +00001697 if (!areJTsAllowed(TLI) || TSize.ult(APInt(First.getBitWidth(), 4)))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001698 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001699
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001700 APInt Range = ComputeRange(First, Last);
Chris Lattnere880efe2009-11-07 07:50:34 +00001701 double Density = TSize.roundToDouble() / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001702 if (Density < 0.4)
1703 return false;
1704
David Greene4b69d992010-01-05 01:24:57 +00001705 DEBUG(dbgs() << "Lowering jump table\n"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001706 << "First entry: " << First << ". Last entry: " << Last << '\n'
1707 << "Range: " << Range
1708 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001709
1710 // Get the MachineFunction which holds the current MBB. This is used when
1711 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001712 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001713
1714 // Figure out which block is immediately after the current one.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001715 MachineFunction::iterator BBI = CR.CaseBB;
Duncan Sands51498522009-09-06 18:03:32 +00001716 ++BBI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001717
1718 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1719
1720 // Create a new basic block to hold the code for loading the address
1721 // of the jump table, and jumping to it. Update successor information;
1722 // we will either branch to the default case for the switch, or the jump
1723 // table.
1724 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1725 CurMF->insert(BBI, JumpTableBB);
1726 CR.CaseBB->addSuccessor(Default);
1727 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001728
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001729 // Build a vector of destination BBs, corresponding to each target
1730 // of the jump table. If the value of the jump table slot corresponds to
1731 // a case statement, push the case's BB onto the vector, otherwise, push
1732 // the default BB.
1733 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001734 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001735 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001736 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1737 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1738
1739 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001740 DestBBs.push_back(I->BB);
1741 if (TEI==High)
1742 ++I;
1743 } else {
1744 DestBBs.push_back(Default);
1745 }
1746 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001747
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001748 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001749 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1750 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001751 E = DestBBs.end(); I != E; ++I) {
1752 if (!SuccsHandled[(*I)->getNumber()]) {
1753 SuccsHandled[(*I)->getNumber()] = true;
1754 JumpTableBB->addSuccessor(*I);
1755 }
1756 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001757
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001758 // Create a jump table index for this jump table, or return an existing
1759 // one.
1760 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001761
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001762 // Set the jump table information so that we can codegen it as a second
1763 // MachineBasicBlock
1764 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1765 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1766 if (CR.CaseBB == CurMBB)
1767 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001768
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001769 JTCases.push_back(JumpTableBlock(JTH, JT));
1770
1771 return true;
1772}
1773
1774/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1775/// 2 subtrees.
Dan Gohman2048b852009-11-23 18:04:58 +00001776bool SelectionDAGBuilder::handleBTSplitSwitchCase(CaseRec& CR,
1777 CaseRecVector& WorkList,
1778 Value* SV,
1779 MachineBasicBlock* Default) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001780 // Get the MachineFunction which holds the current MBB. This is used when
1781 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001782 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001783
1784 // Figure out which block is immediately after the current one.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001785 MachineFunction::iterator BBI = CR.CaseBB;
Duncan Sands51498522009-09-06 18:03:32 +00001786 ++BBI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001787
1788 Case& FrontCase = *CR.Range.first;
1789 Case& BackCase = *(CR.Range.second-1);
1790 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1791
1792 // Size is the number of Cases represented by this range.
1793 unsigned Size = CR.Range.second - CR.Range.first;
1794
Chris Lattnere880efe2009-11-07 07:50:34 +00001795 const APInt &First = cast<ConstantInt>(FrontCase.Low)->getValue();
1796 const APInt &Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001797 double FMetric = 0;
1798 CaseItr Pivot = CR.Range.first + Size/2;
1799
1800 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1801 // (heuristically) allow us to emit JumpTable's later.
Chris Lattnere880efe2009-11-07 07:50:34 +00001802 APInt TSize(First.getBitWidth(), 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001803 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1804 I!=E; ++I)
1805 TSize += I->size();
1806
Chris Lattnere880efe2009-11-07 07:50:34 +00001807 APInt LSize = FrontCase.size();
1808 APInt RSize = TSize-LSize;
David Greene4b69d992010-01-05 01:24:57 +00001809 DEBUG(dbgs() << "Selecting best pivot: \n"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001810 << "First: " << First << ", Last: " << Last <<'\n'
1811 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001812 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1813 J!=E; ++I, ++J) {
Chris Lattnere880efe2009-11-07 07:50:34 +00001814 const APInt &LEnd = cast<ConstantInt>(I->High)->getValue();
1815 const APInt &RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001816 APInt Range = ComputeRange(LEnd, RBegin);
1817 assert((Range - 2ULL).isNonNegative() &&
1818 "Invalid case distance");
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00001819 double LDensity = (double)LSize.roundToDouble() /
Chris Lattnere880efe2009-11-07 07:50:34 +00001820 (LEnd - First + 1ULL).roundToDouble();
1821 double RDensity = (double)RSize.roundToDouble() /
1822 (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001823 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001824 // Should always split in some non-trivial place
David Greene4b69d992010-01-05 01:24:57 +00001825 DEBUG(dbgs() <<"=>Step\n"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001826 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1827 << "LDensity: " << LDensity
1828 << ", RDensity: " << RDensity << '\n'
1829 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001830 if (FMetric < Metric) {
1831 Pivot = J;
1832 FMetric = Metric;
David Greene4b69d992010-01-05 01:24:57 +00001833 DEBUG(dbgs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001834 }
1835
1836 LSize += J->size();
1837 RSize -= J->size();
1838 }
1839 if (areJTsAllowed(TLI)) {
1840 // If our case is dense we *really* should handle it earlier!
1841 assert((FMetric > 0) && "Should handle dense range earlier!");
1842 } else {
1843 Pivot = CR.Range.first + Size/2;
1844 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001845
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001846 CaseRange LHSR(CR.Range.first, Pivot);
1847 CaseRange RHSR(Pivot, CR.Range.second);
1848 Constant *C = Pivot->Low;
1849 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001850
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001851 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001852 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001853 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001854 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001855 // Pivot's Value, then we can branch directly to the LHS's Target,
1856 // rather than creating a leaf node for it.
1857 if ((LHSR.second - LHSR.first) == 1 &&
1858 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001859 cast<ConstantInt>(C)->getValue() ==
1860 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001861 TrueBB = LHSR.first->BB;
1862 } else {
1863 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1864 CurMF->insert(BBI, TrueBB);
1865 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001866
1867 // Put SV in a virtual register to make it available from the new blocks.
1868 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001869 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001870
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001871 // Similar to the optimization above, if the Value being switched on is
1872 // known to be less than the Constant CR.LT, and the current Case Value
1873 // is CR.LT - 1, then we can branch directly to the target block for
1874 // the current Case Value, rather than emitting a RHS leaf node for it.
1875 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001876 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1877 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001878 FalseBB = RHSR.first->BB;
1879 } else {
1880 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1881 CurMF->insert(BBI, FalseBB);
1882 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001883
1884 // Put SV in a virtual register to make it available from the new blocks.
1885 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001886 }
1887
1888 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001889 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001890 // Otherwise, branch to LHS.
1891 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1892
1893 if (CR.CaseBB == CurMBB)
1894 visitSwitchCase(CB);
1895 else
1896 SwitchCases.push_back(CB);
1897
1898 return true;
1899}
1900
1901/// handleBitTestsSwitchCase - if current case range has few destination and
1902/// range span less, than machine word bitwidth, encode case range into series
1903/// of masks and emit bit tests with these masks.
Dan Gohman2048b852009-11-23 18:04:58 +00001904bool SelectionDAGBuilder::handleBitTestsSwitchCase(CaseRec& CR,
1905 CaseRecVector& WorkList,
1906 Value* SV,
1907 MachineBasicBlock* Default){
Owen Andersone50ed302009-08-10 22:56:29 +00001908 EVT PTy = TLI.getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00001909 unsigned IntPtrBits = PTy.getSizeInBits();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001910
1911 Case& FrontCase = *CR.Range.first;
1912 Case& BackCase = *(CR.Range.second-1);
1913
1914 // Get the MachineFunction which holds the current MBB. This is used when
1915 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001916 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001917
Anton Korobeynikovd34167a2009-05-08 18:51:34 +00001918 // If target does not have legal shift left, do not emit bit tests at all.
1919 if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy()))
1920 return false;
1921
Anton Korobeynikov23218582008-12-23 22:25:27 +00001922 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001923 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1924 I!=E; ++I) {
1925 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001926 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001927 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001928
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001929 // Count unique destinations
1930 SmallSet<MachineBasicBlock*, 4> Dests;
1931 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1932 Dests.insert(I->BB);
1933 if (Dests.size() > 3)
1934 // Don't bother the code below, if there are too much unique destinations
1935 return false;
1936 }
David Greene4b69d992010-01-05 01:24:57 +00001937 DEBUG(dbgs() << "Total number of unique destinations: "
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00001938 << Dests.size() << '\n'
1939 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001940
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001941 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001942 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1943 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001944 APInt cmpRange = maxValue - minValue;
1945
David Greene4b69d992010-01-05 01:24:57 +00001946 DEBUG(dbgs() << "Compare range: " << cmpRange << '\n'
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001947 << "Low bound: " << minValue << '\n'
1948 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001949
1950 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001951 (!(Dests.size() == 1 && numCmps >= 3) &&
1952 !(Dests.size() == 2 && numCmps >= 5) &&
1953 !(Dests.size() >= 3 && numCmps >= 6)))
1954 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001955
David Greene4b69d992010-01-05 01:24:57 +00001956 DEBUG(dbgs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001957 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1958
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001959 // Optimize the case where all the case values fit in a
1960 // word without having to subtract minValue. In this case,
1961 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001962 if (minValue.isNonNegative() &&
1963 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1964 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001965 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001966 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001967 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001968
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001969 CaseBitsVector CasesBits;
1970 unsigned i, count = 0;
1971
1972 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1973 MachineBasicBlock* Dest = I->BB;
1974 for (i = 0; i < count; ++i)
1975 if (Dest == CasesBits[i].BB)
1976 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001977
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001978 if (i == count) {
1979 assert((count < 3) && "Too much destinations to test!");
1980 CasesBits.push_back(CaseBits(0, Dest, 0));
1981 count++;
1982 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001983
1984 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1985 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1986
1987 uint64_t lo = (lowValue - lowBound).getZExtValue();
1988 uint64_t hi = (highValue - lowBound).getZExtValue();
1989
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001990 for (uint64_t j = lo; j <= hi; j++) {
1991 CasesBits[i].Mask |= 1ULL << j;
1992 CasesBits[i].Bits++;
1993 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001994
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001995 }
1996 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001997
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001998 BitTestInfo BTC;
1999
2000 // Figure out which block is immediately after the current one.
2001 MachineFunction::iterator BBI = CR.CaseBB;
2002 ++BBI;
2003
2004 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2005
David Greene4b69d992010-01-05 01:24:57 +00002006 DEBUG(dbgs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002007 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
David Greene4b69d992010-01-05 01:24:57 +00002008 DEBUG(dbgs() << "Mask: " << CasesBits[i].Mask
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002009 << ", Bits: " << CasesBits[i].Bits
2010 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002011
2012 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2013 CurMF->insert(BBI, CaseBB);
2014 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2015 CaseBB,
2016 CasesBits[i].BB));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002017
2018 // Put SV in a virtual register to make it available from the new blocks.
2019 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002020 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002021
2022 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002023 -1U, (CR.CaseBB == CurMBB),
2024 CR.CaseBB, Default, BTC);
2025
2026 if (CR.CaseBB == CurMBB)
2027 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002028
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002029 BitTestCases.push_back(BTB);
2030
2031 return true;
2032}
2033
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002034/// Clusterify - Transform simple list of Cases into list of CaseRange's
Dan Gohman2048b852009-11-23 18:04:58 +00002035size_t SelectionDAGBuilder::Clusterify(CaseVector& Cases,
2036 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002037 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002038
2039 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002040 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002041 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2042 Cases.push_back(Case(SI.getSuccessorValue(i),
2043 SI.getSuccessorValue(i),
2044 SMBB));
2045 }
2046 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2047
2048 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002049 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002050 // Must recompute end() each iteration because it may be
2051 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002052 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2053 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2054 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002055 MachineBasicBlock* nextBB = J->BB;
2056 MachineBasicBlock* currentBB = I->BB;
2057
2058 // If the two neighboring cases go to the same destination, merge them
2059 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002060 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002061 I->High = J->High;
2062 J = Cases.erase(J);
2063 } else {
2064 I = J++;
2065 }
2066 }
2067
2068 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2069 if (I->Low != I->High)
2070 // A range counts double, since it requires two compares.
2071 ++numCmps;
2072 }
2073
2074 return numCmps;
2075}
2076
Dan Gohman2048b852009-11-23 18:04:58 +00002077void SelectionDAGBuilder::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002078 // Figure out which block is immediately after the current one.
2079 MachineBasicBlock *NextBlock = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002080 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2081
2082 // If there is only the default destination, branch to it if it is not the
2083 // next basic block. Otherwise, just fall through.
2084 if (SI.getNumOperands() == 2) {
2085 // Update machine-CFG edges.
2086
2087 // If this is not a fall-through branch, emit the branch.
2088 CurMBB->addSuccessor(Default);
Bill Wendling49fcff82009-12-21 22:30:11 +00002089 if (Default != NextBlock) {
Bill Wendling87710f02009-12-21 23:47:40 +00002090 SDValue Res = DAG.getNode(ISD::BR, getCurDebugLoc(),
Bill Wendling49fcff82009-12-21 22:30:11 +00002091 MVT::Other, getControlRoot(),
2092 DAG.getBasicBlock(Default));
Bill Wendling87710f02009-12-21 23:47:40 +00002093 DAG.setRoot(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002094 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendling49fcff82009-12-21 22:30:11 +00002095 }
2096
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002097 return;
2098 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002099
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002100 // If there are any non-default case statements, create a vector of Cases
2101 // representing each one, and sort the vector so that we can efficiently
2102 // create a binary search tree from them.
2103 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002104 size_t numCmps = Clusterify(Cases, SI);
David Greene4b69d992010-01-05 01:24:57 +00002105 DEBUG(dbgs() << "Clusterify finished. Total clusters: " << Cases.size()
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002106 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002107 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002108
2109 // Get the Value to be switched on and default basic blocks, which will be
2110 // inserted into CaseBlock records, representing basic blocks in the binary
2111 // search tree.
2112 Value *SV = SI.getOperand(0);
2113
2114 // Push the initial CaseRec onto the worklist
2115 CaseRecVector WorkList;
2116 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2117
2118 while (!WorkList.empty()) {
2119 // Grab a record representing a case range to process off the worklist
2120 CaseRec CR = WorkList.back();
2121 WorkList.pop_back();
2122
2123 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2124 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002125
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002126 // If the range has few cases (two or less) emit a series of specific
2127 // tests.
2128 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2129 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002130
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002131 // If the switch has more than 5 blocks, and at least 40% dense, and the
2132 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002133 // lowering the switch to a binary tree of conditional branches.
2134 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2135 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002136
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002137 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2138 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2139 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2140 }
2141}
2142
Dan Gohman2048b852009-11-23 18:04:58 +00002143void SelectionDAGBuilder::visitIndirectBr(IndirectBrInst &I) {
Dan Gohmaneef55dc2009-10-27 22:10:34 +00002144 // Update machine-CFG edges.
2145 for (unsigned i = 0, e = I.getNumSuccessors(); i != e; ++i)
2146 CurMBB->addSuccessor(FuncInfo.MBBMap[I.getSuccessor(i)]);
2147
Bill Wendling49fcff82009-12-21 22:30:11 +00002148 SDValue Res = DAG.getNode(ISD::BRIND, getCurDebugLoc(),
2149 MVT::Other, getControlRoot(),
2150 getValue(I.getAddress()));
2151 DAG.setRoot(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002152 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendling49fcff82009-12-21 22:30:11 +00002153}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002154
Dan Gohman2048b852009-11-23 18:04:58 +00002155void SelectionDAGBuilder::visitFSub(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002156 // -0.0 - X --> fneg
2157 const Type *Ty = I.getType();
2158 if (isa<VectorType>(Ty)) {
2159 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2160 const VectorType *DestTy = cast<VectorType>(I.getType());
2161 const Type *ElTy = DestTy->getElementType();
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002162 unsigned VL = DestTy->getNumElements();
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002163 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Owen Andersonaf7ec972009-07-28 21:19:26 +00002164 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002165 if (CV == CNZ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002166 SDValue Op2 = getValue(I.getOperand(1));
Bill Wendling49fcff82009-12-21 22:30:11 +00002167 SDValue Res = DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002168 Op2.getValueType(), Op2);
Bill Wendling49fcff82009-12-21 22:30:11 +00002169 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002170 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002171 return;
2172 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002173 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002174 }
Bill Wendling49fcff82009-12-21 22:30:11 +00002175
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002176 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002177 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002178 SDValue Op2 = getValue(I.getOperand(1));
Bill Wendling49fcff82009-12-21 22:30:11 +00002179 SDValue Res = DAG.getNode(ISD::FNEG, getCurDebugLoc(),
2180 Op2.getValueType(), Op2);
2181 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002182 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002183 return;
2184 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002185
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002186 visitBinary(I, ISD::FSUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002187}
2188
Dan Gohman2048b852009-11-23 18:04:58 +00002189void SelectionDAGBuilder::visitBinary(User &I, unsigned OpCode) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002190 SDValue Op1 = getValue(I.getOperand(0));
2191 SDValue Op2 = getValue(I.getOperand(1));
Bill Wendling49fcff82009-12-21 22:30:11 +00002192 SDValue Res = DAG.getNode(OpCode, getCurDebugLoc(),
2193 Op1.getValueType(), Op1, Op2);
2194 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002195 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002196}
2197
Dan Gohman2048b852009-11-23 18:04:58 +00002198void SelectionDAGBuilder::visitShift(User &I, unsigned Opcode) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002199 SDValue Op1 = getValue(I.getOperand(0));
2200 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman57fc82d2009-04-09 03:51:29 +00002201 if (!isa<VectorType>(I.getType()) &&
2202 Op2.getValueType() != TLI.getShiftAmountTy()) {
2203 // If the operand is smaller than the shift count type, promote it.
Owen Andersone50ed302009-08-10 22:56:29 +00002204 EVT PTy = TLI.getPointerTy();
2205 EVT STy = TLI.getShiftAmountTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002206 if (STy.bitsGT(Op2.getValueType()))
Dan Gohman57fc82d2009-04-09 03:51:29 +00002207 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
2208 TLI.getShiftAmountTy(), Op2);
2209 // If the operand is larger than the shift count type but the shift
2210 // count type has enough bits to represent any shift value, truncate
2211 // it now. This is a common case and it exposes the truncate to
2212 // optimization early.
Owen Anderson77547be2009-08-10 18:56:59 +00002213 else if (STy.getSizeInBits() >=
Dan Gohman57fc82d2009-04-09 03:51:29 +00002214 Log2_32_Ceil(Op2.getValueType().getSizeInBits()))
2215 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2216 TLI.getShiftAmountTy(), Op2);
2217 // Otherwise we'll need to temporarily settle for some other
2218 // convenient type; type legalization will make adjustments as
2219 // needed.
Owen Anderson77547be2009-08-10 18:56:59 +00002220 else if (PTy.bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002221 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002222 TLI.getPointerTy(), Op2);
Owen Anderson77547be2009-08-10 18:56:59 +00002223 else if (PTy.bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002224 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002225 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002226 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002227
Bill Wendling49fcff82009-12-21 22:30:11 +00002228 SDValue Res = DAG.getNode(Opcode, getCurDebugLoc(),
2229 Op1.getValueType(), Op1, Op2);
2230 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002231 DAG.AssignOrdering(Op1.getNode(), SDNodeOrder);
2232 DAG.AssignOrdering(Op2.getNode(), SDNodeOrder);
2233 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002234}
2235
Dan Gohman2048b852009-11-23 18:04:58 +00002236void SelectionDAGBuilder::visitICmp(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002237 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2238 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2239 predicate = IC->getPredicate();
2240 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2241 predicate = ICmpInst::Predicate(IC->getPredicate());
2242 SDValue Op1 = getValue(I.getOperand(0));
2243 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002244 ISD::CondCode Opcode = getICmpCondCode(predicate);
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002245
Owen Andersone50ed302009-08-10 22:56:29 +00002246 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002247 SDValue Res = DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode);
2248 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002249 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002250}
2251
Dan Gohman2048b852009-11-23 18:04:58 +00002252void SelectionDAGBuilder::visitFCmp(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002253 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2254 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2255 predicate = FC->getPredicate();
2256 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2257 predicate = FCmpInst::Predicate(FC->getPredicate());
2258 SDValue Op1 = getValue(I.getOperand(0));
2259 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002260 ISD::CondCode Condition = getFCmpCondCode(predicate);
Owen Andersone50ed302009-08-10 22:56:29 +00002261 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002262 SDValue Res = DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition);
2263 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002264 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002265}
2266
Dan Gohman2048b852009-11-23 18:04:58 +00002267void SelectionDAGBuilder::visitSelect(User &I) {
Owen Andersone50ed302009-08-10 22:56:29 +00002268 SmallVector<EVT, 4> ValueVTs;
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002269 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2270 unsigned NumValues = ValueVTs.size();
Bill Wendling49fcff82009-12-21 22:30:11 +00002271 if (NumValues == 0) return;
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002272
Bill Wendling49fcff82009-12-21 22:30:11 +00002273 SmallVector<SDValue, 4> Values(NumValues);
2274 SDValue Cond = getValue(I.getOperand(0));
2275 SDValue TrueVal = getValue(I.getOperand(1));
2276 SDValue FalseVal = getValue(I.getOperand(2));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002277
Bill Wendling49fcff82009-12-21 22:30:11 +00002278 for (unsigned i = 0; i != NumValues; ++i) {
2279 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
2280 TrueVal.getNode()->getValueType(i), Cond,
2281 SDValue(TrueVal.getNode(),
2282 TrueVal.getResNo() + i),
2283 SDValue(FalseVal.getNode(),
2284 FalseVal.getResNo() + i));
2285
Bill Wendling187361b2010-01-23 10:26:57 +00002286 DAG.AssignOrdering(Values[i].getNode(), SDNodeOrder);
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002287 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002288
Bill Wendling49fcff82009-12-21 22:30:11 +00002289 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
2290 DAG.getVTList(&ValueVTs[0], NumValues),
2291 &Values[0], NumValues);
2292 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002293 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendling49fcff82009-12-21 22:30:11 +00002294}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002295
Dan Gohman2048b852009-11-23 18:04:58 +00002296void SelectionDAGBuilder::visitTrunc(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002297 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2298 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002299 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002300 SDValue Res = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
2301 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002302 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002303}
2304
Dan Gohman2048b852009-11-23 18:04:58 +00002305void SelectionDAGBuilder::visitZExt(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002306 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2307 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2308 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002309 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002310 SDValue Res = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
2311 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002312 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002313}
2314
Dan Gohman2048b852009-11-23 18:04:58 +00002315void SelectionDAGBuilder::visitSExt(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002316 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2317 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2318 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002319 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002320 SDValue Res = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N);
2321 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002322 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002323}
2324
Dan Gohman2048b852009-11-23 18:04:58 +00002325void SelectionDAGBuilder::visitFPTrunc(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002326 // FPTrunc is never a no-op cast, no need to check
2327 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002328 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002329 SDValue Res = DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
2330 DestVT, N, DAG.getIntPtrConstant(0));
2331 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002332 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002333}
2334
Dan Gohman2048b852009-11-23 18:04:58 +00002335void SelectionDAGBuilder::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002336 // FPTrunc is never a no-op cast, no need to check
2337 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002338 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002339 SDValue Res = DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N);
2340 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002341 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002342}
2343
Dan Gohman2048b852009-11-23 18:04:58 +00002344void SelectionDAGBuilder::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002345 // FPToUI is never a no-op cast, no need to check
2346 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002347 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002348 SDValue Res = DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N);
2349 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002350 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002351}
2352
Dan Gohman2048b852009-11-23 18:04:58 +00002353void SelectionDAGBuilder::visitFPToSI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002354 // FPToSI is never a no-op cast, no need to check
2355 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002356 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002357 SDValue Res = DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N);
2358 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002359 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002360}
2361
Dan Gohman2048b852009-11-23 18:04:58 +00002362void SelectionDAGBuilder::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002363 // UIToFP is never a no-op cast, no need to check
2364 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002365 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002366 SDValue Res = DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N);
2367 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002368 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002369}
2370
Dan Gohman2048b852009-11-23 18:04:58 +00002371void SelectionDAGBuilder::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002372 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002373 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002374 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002375 SDValue Res = DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N);
2376 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002377 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002378}
2379
Dan Gohman2048b852009-11-23 18:04:58 +00002380void SelectionDAGBuilder::visitPtrToInt(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002381 // What to do depends on the size of the integer and the size of the pointer.
2382 // We can either truncate, zero extend, or no-op, accordingly.
2383 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002384 EVT SrcVT = N.getValueType();
2385 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002386 SDValue Res = DAG.getZExtOrTrunc(N, getCurDebugLoc(), DestVT);
2387 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002388 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002389}
2390
Dan Gohman2048b852009-11-23 18:04:58 +00002391void SelectionDAGBuilder::visitIntToPtr(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002392 // What to do depends on the size of the integer and the size of the pointer.
2393 // We can either truncate, zero extend, or no-op, accordingly.
2394 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002395 EVT SrcVT = N.getValueType();
2396 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002397 SDValue Res = DAG.getZExtOrTrunc(N, getCurDebugLoc(), DestVT);
2398 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002399 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002400}
2401
Dan Gohman2048b852009-11-23 18:04:58 +00002402void SelectionDAGBuilder::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002403 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002404 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002405
Bill Wendling49fcff82009-12-21 22:30:11 +00002406 // BitCast assures us that source and destination are the same size so this is
2407 // either a BIT_CONVERT or a no-op.
2408 if (DestVT != N.getValueType()) {
2409 SDValue Res = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
2410 DestVT, N); // convert types.
2411 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002412 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendling49fcff82009-12-21 22:30:11 +00002413 } else {
2414 setValue(&I, N); // noop cast.
2415 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002416}
2417
Dan Gohman2048b852009-11-23 18:04:58 +00002418void SelectionDAGBuilder::visitInsertElement(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002419 SDValue InVec = getValue(I.getOperand(0));
2420 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002421 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Bill Wendling87710f02009-12-21 23:47:40 +00002422 TLI.getPointerTy(),
2423 getValue(I.getOperand(2)));
Bill Wendling49fcff82009-12-21 22:30:11 +00002424 SDValue Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
2425 TLI.getValueType(I.getType()),
2426 InVec, InVal, InIdx);
2427 setValue(&I, Res);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002428
Bill Wendling187361b2010-01-23 10:26:57 +00002429 DAG.AssignOrdering(InIdx.getNode(), SDNodeOrder);
2430 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002431}
2432
Dan Gohman2048b852009-11-23 18:04:58 +00002433void SelectionDAGBuilder::visitExtractElement(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002434 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002435 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Bill Wendling87710f02009-12-21 23:47:40 +00002436 TLI.getPointerTy(),
2437 getValue(I.getOperand(1)));
Bill Wendling49fcff82009-12-21 22:30:11 +00002438 SDValue Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
2439 TLI.getValueType(I.getType()), InVec, InIdx);
2440 setValue(&I, Res);
2441
Bill Wendling187361b2010-01-23 10:26:57 +00002442 DAG.AssignOrdering(InIdx.getNode(), SDNodeOrder);
2443 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002444}
2445
Mon P Wangaeb06d22008-11-10 04:46:22 +00002446
2447// Utility for visitShuffleVector - Returns true if the mask is mask starting
2448// from SIndx and increasing to the element length (undefs are allowed).
Nate Begeman5a5ca152009-04-29 05:20:52 +00002449static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) {
2450 unsigned MaskNumElts = Mask.size();
2451 for (unsigned i = 0; i != MaskNumElts; ++i)
2452 if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx)))
Nate Begeman9008ca62009-04-27 18:41:29 +00002453 return false;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002454 return true;
2455}
2456
Dan Gohman2048b852009-11-23 18:04:58 +00002457void SelectionDAGBuilder::visitShuffleVector(User &I) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002458 SmallVector<int, 8> Mask;
Mon P Wang230e4fa2008-11-21 04:25:21 +00002459 SDValue Src1 = getValue(I.getOperand(0));
2460 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002461
Nate Begeman9008ca62009-04-27 18:41:29 +00002462 // Convert the ConstantVector mask operand into an array of ints, with -1
2463 // representing undef values.
2464 SmallVector<Constant*, 8> MaskElts;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002465 cast<Constant>(I.getOperand(2))->getVectorElements(*DAG.getContext(),
Owen Anderson001dbfe2009-07-16 18:04:31 +00002466 MaskElts);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002467 unsigned MaskNumElts = MaskElts.size();
2468 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002469 if (isa<UndefValue>(MaskElts[i]))
2470 Mask.push_back(-1);
2471 else
2472 Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue());
2473 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002474
Owen Andersone50ed302009-08-10 22:56:29 +00002475 EVT VT = TLI.getValueType(I.getType());
2476 EVT SrcVT = Src1.getValueType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00002477 unsigned SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002478
Mon P Wangc7849c22008-11-16 05:06:27 +00002479 if (SrcNumElts == MaskNumElts) {
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002480 SDValue Res = DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2481 &Mask[0]);
2482 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002483 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002484 return;
2485 }
2486
2487 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002488 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2489 // Mask is longer than the source vectors and is a multiple of the source
2490 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002491 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002492 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2493 // The shuffle is concatenating two vectors together.
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002494 SDValue Res = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
2495 VT, Src1, Src2);
2496 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002497 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002498 return;
2499 }
2500
Mon P Wangc7849c22008-11-16 05:06:27 +00002501 // Pad both vectors with undefs to make them the same length as the mask.
2502 unsigned NumConcat = MaskNumElts / SrcNumElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00002503 bool Src1U = Src1.getOpcode() == ISD::UNDEF;
2504 bool Src2U = Src2.getOpcode() == ISD::UNDEF;
Dale Johannesene8d72302009-02-06 23:05:02 +00002505 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002506
Nate Begeman9008ca62009-04-27 18:41:29 +00002507 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
2508 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002509 MOps1[0] = Src1;
2510 MOps2[0] = Src2;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002511
2512 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2513 getCurDebugLoc(), VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00002514 &MOps1[0], NumConcat);
2515 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002516 getCurDebugLoc(), VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00002517 &MOps2[0], NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002518
Mon P Wangaeb06d22008-11-10 04:46:22 +00002519 // Readjust mask for new input vector length.
Nate Begeman9008ca62009-04-27 18:41:29 +00002520 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002521 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002522 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002523 if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002524 MappedOps.push_back(Idx);
2525 else
2526 MappedOps.push_back(Idx + MaskNumElts - SrcNumElts);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002527 }
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002528
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002529 SDValue Res = DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002530 &MappedOps[0]);
2531 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002532 DAG.AssignOrdering(Src1.getNode(), SDNodeOrder);
2533 DAG.AssignOrdering(Src2.getNode(), SDNodeOrder);
2534 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002535 return;
2536 }
2537
Mon P Wangc7849c22008-11-16 05:06:27 +00002538 if (SrcNumElts > MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002539 // Analyze the access pattern of the vector to see if we can extract
2540 // two subvectors and do the shuffle. The analysis is done by calculating
2541 // the range of elements the mask access on both vectors.
2542 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2543 int MaxRange[2] = {-1, -1};
2544
Nate Begeman5a5ca152009-04-29 05:20:52 +00002545 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002546 int Idx = Mask[i];
2547 int Input = 0;
2548 if (Idx < 0)
2549 continue;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002550
Nate Begeman5a5ca152009-04-29 05:20:52 +00002551 if (Idx >= (int)SrcNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002552 Input = 1;
2553 Idx -= SrcNumElts;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002554 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002555 if (Idx > MaxRange[Input])
2556 MaxRange[Input] = Idx;
2557 if (Idx < MinRange[Input])
2558 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002559 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002560
Mon P Wangc7849c22008-11-16 05:06:27 +00002561 // Check if the access is smaller than the vector size and can we find
2562 // a reasonable extract index.
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002563 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not
2564 // Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002565 int StartIdx[2]; // StartIdx to extract from
2566 for (int Input=0; Input < 2; ++Input) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00002567 if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002568 RangeUse[Input] = 0; // Unused
2569 StartIdx[Input] = 0;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002570 } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002571 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002572 // start index that is a multiple of the mask length.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002573 if (MaxRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002574 RangeUse[Input] = 1; // Extract from beginning of the vector
2575 StartIdx[Input] = 0;
2576 } else {
2577 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002578 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002579 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002580 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002581 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002582 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002583 }
2584
Bill Wendling636e2582009-08-21 18:16:06 +00002585 if (RangeUse[0] == 0 && RangeUse[1] == 0) {
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002586 SDValue Res = DAG.getUNDEF(VT);
2587 setValue(&I, Res); // Vectors are not used.
Bill Wendling187361b2010-01-23 10:26:57 +00002588 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Mon P Wangc7849c22008-11-16 05:06:27 +00002589 return;
2590 }
2591 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2592 // Extract appropriate subvector and generate a vector shuffle
2593 for (int Input=0; Input < 2; ++Input) {
Bill Wendling87710f02009-12-21 23:47:40 +00002594 SDValue &Src = Input == 0 ? Src1 : Src2;
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002595 if (RangeUse[Input] == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00002596 Src = DAG.getUNDEF(VT);
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002597 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002598 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002599 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002600
Bill Wendling187361b2010-01-23 10:26:57 +00002601 DAG.AssignOrdering(Src.getNode(), SDNodeOrder);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002602 }
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002603
Mon P Wangc7849c22008-11-16 05:06:27 +00002604 // Calculate new mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00002605 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002606 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002607 int Idx = Mask[i];
2608 if (Idx < 0)
2609 MappedOps.push_back(Idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002610 else if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002611 MappedOps.push_back(Idx - StartIdx[0]);
2612 else
2613 MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts);
Mon P Wangc7849c22008-11-16 05:06:27 +00002614 }
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002615
2616 SDValue Res = DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2617 &MappedOps[0]);
2618 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002619 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Mon P Wangc7849c22008-11-16 05:06:27 +00002620 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002621 }
2622 }
2623
Mon P Wangc7849c22008-11-16 05:06:27 +00002624 // We can't use either concat vectors or extract subvectors so fall back to
2625 // replacing the shuffle with extract and build vector.
2626 // to insert and build vector.
Owen Andersone50ed302009-08-10 22:56:29 +00002627 EVT EltVT = VT.getVectorElementType();
2628 EVT PtrVT = TLI.getPointerTy();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002629 SmallVector<SDValue,8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002630 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002631 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002632 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002633 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00002634 int Idx = Mask[i];
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002635 SDValue Res;
2636
Nate Begeman5a5ca152009-04-29 05:20:52 +00002637 if (Idx < (int)SrcNumElts)
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002638 Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
2639 EltVT, Src1, DAG.getConstant(Idx, PtrVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002640 else
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002641 Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
2642 EltVT, Src2,
2643 DAG.getConstant(Idx - SrcNumElts, PtrVT));
2644
2645 Ops.push_back(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002646 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002647 }
2648 }
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002649
2650 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2651 VT, &Ops[0], Ops.size());
2652 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002653 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002654}
2655
Dan Gohman2048b852009-11-23 18:04:58 +00002656void SelectionDAGBuilder::visitInsertValue(InsertValueInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002657 const Value *Op0 = I.getOperand(0);
2658 const Value *Op1 = I.getOperand(1);
2659 const Type *AggTy = I.getType();
2660 const Type *ValTy = Op1->getType();
2661 bool IntoUndef = isa<UndefValue>(Op0);
2662 bool FromUndef = isa<UndefValue>(Op1);
2663
2664 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2665 I.idx_begin(), I.idx_end());
2666
Owen Andersone50ed302009-08-10 22:56:29 +00002667 SmallVector<EVT, 4> AggValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002668 ComputeValueVTs(TLI, AggTy, AggValueVTs);
Owen Andersone50ed302009-08-10 22:56:29 +00002669 SmallVector<EVT, 4> ValValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002670 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2671
2672 unsigned NumAggValues = AggValueVTs.size();
2673 unsigned NumValValues = ValValueVTs.size();
2674 SmallVector<SDValue, 4> Values(NumAggValues);
2675
2676 SDValue Agg = getValue(Op0);
2677 SDValue Val = getValue(Op1);
2678 unsigned i = 0;
2679 // Copy the beginning value(s) from the original aggregate.
2680 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002681 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002682 SDValue(Agg.getNode(), Agg.getResNo() + i);
2683 // Copy values from the inserted value(s).
2684 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002685 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002686 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2687 // Copy remaining value(s) from the original aggregate.
2688 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002689 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002690 SDValue(Agg.getNode(), Agg.getResNo() + i);
2691
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002692 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
2693 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2694 &Values[0], NumAggValues);
2695 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002696 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002697}
2698
Dan Gohman2048b852009-11-23 18:04:58 +00002699void SelectionDAGBuilder::visitExtractValue(ExtractValueInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002700 const Value *Op0 = I.getOperand(0);
2701 const Type *AggTy = Op0->getType();
2702 const Type *ValTy = I.getType();
2703 bool OutOfUndef = isa<UndefValue>(Op0);
2704
2705 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2706 I.idx_begin(), I.idx_end());
2707
Owen Andersone50ed302009-08-10 22:56:29 +00002708 SmallVector<EVT, 4> ValValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002709 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2710
2711 unsigned NumValValues = ValValueVTs.size();
2712 SmallVector<SDValue, 4> Values(NumValValues);
2713
2714 SDValue Agg = getValue(Op0);
2715 // Copy out the selected value(s).
2716 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2717 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002718 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002719 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002720 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002721
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002722 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
2723 DAG.getVTList(&ValValueVTs[0], NumValValues),
2724 &Values[0], NumValValues);
2725 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002726 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002727}
2728
Dan Gohman2048b852009-11-23 18:04:58 +00002729void SelectionDAGBuilder::visitGetElementPtr(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002730 SDValue N = getValue(I.getOperand(0));
2731 const Type *Ty = I.getOperand(0)->getType();
2732
2733 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2734 OI != E; ++OI) {
2735 Value *Idx = *OI;
2736 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2737 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2738 if (Field) {
2739 // N = N + Offset
2740 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002741 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002742 DAG.getIntPtrConstant(Offset));
Bill Wendling187361b2010-01-23 10:26:57 +00002743 DAG.AssignOrdering(N.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002744 }
Bill Wendlinge1a90422009-12-21 23:10:19 +00002745
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002746 Ty = StTy->getElementType(Field);
2747 } else {
2748 Ty = cast<SequentialType>(Ty)->getElementType();
2749
2750 // If this is a constant subscript, handle it quickly.
2751 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2752 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002753 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +00002754 TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002755 SDValue OffsVal;
Owen Andersone50ed302009-08-10 22:56:29 +00002756 EVT PTy = TLI.getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002757 unsigned PtrBits = PTy.getSizeInBits();
Bill Wendlinge1a90422009-12-21 23:10:19 +00002758 if (PtrBits < 64)
Evan Cheng65b52df2009-02-09 21:01:06 +00002759 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2760 TLI.getPointerTy(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002761 DAG.getConstant(Offs, MVT::i64));
Bill Wendlinge1a90422009-12-21 23:10:19 +00002762 else
Evan Chengb1032a82009-02-09 20:54:38 +00002763 OffsVal = DAG.getIntPtrConstant(Offs);
Bill Wendlinge1a90422009-12-21 23:10:19 +00002764
Dale Johannesen66978ee2009-01-31 02:22:37 +00002765 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002766 OffsVal);
Bill Wendlinge1a90422009-12-21 23:10:19 +00002767
Bill Wendling187361b2010-01-23 10:26:57 +00002768 DAG.AssignOrdering(OffsVal.getNode(), SDNodeOrder);
2769 DAG.AssignOrdering(N.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002770 continue;
2771 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002772
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002773 // N = N + Idx * ElementSize;
Dan Gohman7abbd042009-10-23 17:57:43 +00002774 APInt ElementSize = APInt(TLI.getPointerTy().getSizeInBits(),
2775 TD->getTypeAllocSize(Ty));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002776 SDValue IdxN = getValue(Idx);
2777
2778 // If the index is smaller or larger than intptr_t, truncate or extend
2779 // it.
Duncan Sands3a66a682009-10-13 21:04:12 +00002780 IdxN = DAG.getSExtOrTrunc(IdxN, getCurDebugLoc(), N.getValueType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002781
2782 // If this is a multiply by a power of two, turn it into a shl
2783 // immediately. This is a very common case.
2784 if (ElementSize != 1) {
Dan Gohman7abbd042009-10-23 17:57:43 +00002785 if (ElementSize.isPowerOf2()) {
2786 unsigned Amt = ElementSize.logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00002787 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002788 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002789 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002790 } else {
Dan Gohman7abbd042009-10-23 17:57:43 +00002791 SDValue Scale = DAG.getConstant(ElementSize, TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00002792 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002793 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002794 }
Bill Wendlinge1a90422009-12-21 23:10:19 +00002795
Bill Wendling187361b2010-01-23 10:26:57 +00002796 DAG.AssignOrdering(IdxN.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002797 }
2798
Scott Michelfdc40a02009-02-17 22:15:04 +00002799 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002800 N.getValueType(), N, IdxN);
Bill Wendling187361b2010-01-23 10:26:57 +00002801 DAG.AssignOrdering(N.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002802 }
2803 }
Bill Wendlinge1a90422009-12-21 23:10:19 +00002804
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002805 setValue(&I, N);
2806}
2807
Dan Gohman2048b852009-11-23 18:04:58 +00002808void SelectionDAGBuilder::visitAlloca(AllocaInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002809 // If this is a fixed sized alloca in the entry block of the function,
2810 // allocate it statically on the stack.
2811 if (FuncInfo.StaticAllocaMap.count(&I))
2812 return; // getValue will auto-populate this.
2813
2814 const Type *Ty = I.getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +00002815 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002816 unsigned Align =
2817 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2818 I.getAlignment());
2819
2820 SDValue AllocSize = getValue(I.getArraySize());
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002821
Chris Lattner0b18e592009-03-17 19:36:00 +00002822 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2823 AllocSize,
2824 DAG.getConstant(TySize, AllocSize.getValueType()));
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002825
Bill Wendling187361b2010-01-23 10:26:57 +00002826 DAG.AssignOrdering(AllocSize.getNode(), SDNodeOrder);
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002827
Owen Andersone50ed302009-08-10 22:56:29 +00002828 EVT IntPtr = TLI.getPointerTy();
Duncan Sands3a66a682009-10-13 21:04:12 +00002829 AllocSize = DAG.getZExtOrTrunc(AllocSize, getCurDebugLoc(), IntPtr);
Bill Wendling187361b2010-01-23 10:26:57 +00002830 DAG.AssignOrdering(AllocSize.getNode(), SDNodeOrder);
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002831
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002832 // Handle alignment. If the requested alignment is less than or equal to
2833 // the stack alignment, ignore it. If the size is greater than or equal to
2834 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2835 unsigned StackAlign =
2836 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2837 if (Align <= StackAlign)
2838 Align = 0;
2839
2840 // Round the size of the allocation up to the stack alignment size
2841 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002842 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002843 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002844 DAG.getIntPtrConstant(StackAlign-1));
Bill Wendling187361b2010-01-23 10:26:57 +00002845 DAG.AssignOrdering(AllocSize.getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00002846
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002847 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002848 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002849 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002850 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Bill Wendling187361b2010-01-23 10:26:57 +00002851 DAG.AssignOrdering(AllocSize.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002852
2853 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Owen Anderson825b72b2009-08-11 20:47:22 +00002854 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002855 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002856 VTs, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002857 setValue(&I, DSA);
2858 DAG.setRoot(DSA.getValue(1));
Bill Wendling187361b2010-01-23 10:26:57 +00002859 DAG.AssignOrdering(DSA.getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00002860
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002861 // Inform the Frame Information that we have just allocated a variable-sized
2862 // object.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00002863 FuncInfo.MF->getFrameInfo()->CreateVariableSizedObject();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002864}
2865
Dan Gohman2048b852009-11-23 18:04:58 +00002866void SelectionDAGBuilder::visitLoad(LoadInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002867 const Value *SV = I.getOperand(0);
2868 SDValue Ptr = getValue(SV);
2869
2870 const Type *Ty = I.getType();
2871 bool isVolatile = I.isVolatile();
2872 unsigned Alignment = I.getAlignment();
2873
Owen Andersone50ed302009-08-10 22:56:29 +00002874 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002875 SmallVector<uint64_t, 4> Offsets;
2876 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2877 unsigned NumValues = ValueVTs.size();
2878 if (NumValues == 0)
2879 return;
2880
2881 SDValue Root;
2882 bool ConstantMemory = false;
2883 if (I.isVolatile())
2884 // Serialize volatile loads with other side effects.
2885 Root = getRoot();
2886 else if (AA->pointsToConstantMemory(SV)) {
2887 // Do not serialize (non-volatile) loads of constant memory with anything.
2888 Root = DAG.getEntryNode();
2889 ConstantMemory = true;
2890 } else {
2891 // Do not serialize non-volatile loads against each other.
2892 Root = DAG.getRoot();
2893 }
2894
2895 SmallVector<SDValue, 4> Values(NumValues);
2896 SmallVector<SDValue, 4> Chains(NumValues);
Owen Andersone50ed302009-08-10 22:56:29 +00002897 EVT PtrVT = Ptr.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002898 for (unsigned i = 0; i != NumValues; ++i) {
Bill Wendling856ff412009-12-22 00:12:37 +00002899 SDValue A = DAG.getNode(ISD::ADD, getCurDebugLoc(),
2900 PtrVT, Ptr,
2901 DAG.getConstant(Offsets[i], PtrVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002902 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Bill Wendling856ff412009-12-22 00:12:37 +00002903 A, SV, Offsets[i], isVolatile, Alignment);
2904
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002905 Values[i] = L;
2906 Chains[i] = L.getValue(1);
Bill Wendling856ff412009-12-22 00:12:37 +00002907
Bill Wendling187361b2010-01-23 10:26:57 +00002908 DAG.AssignOrdering(A.getNode(), SDNodeOrder);
2909 DAG.AssignOrdering(L.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002910 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002911
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002912 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002913 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Bill Wendling856ff412009-12-22 00:12:37 +00002914 MVT::Other, &Chains[0], NumValues);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002915 if (isVolatile)
2916 DAG.setRoot(Chain);
2917 else
2918 PendingLoads.push_back(Chain);
Bill Wendling856ff412009-12-22 00:12:37 +00002919
Bill Wendling187361b2010-01-23 10:26:57 +00002920 DAG.AssignOrdering(Chain.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002921 }
2922
Bill Wendling856ff412009-12-22 00:12:37 +00002923 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
2924 DAG.getVTList(&ValueVTs[0], NumValues),
2925 &Values[0], NumValues);
2926 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002927 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00002928}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002929
Dan Gohman2048b852009-11-23 18:04:58 +00002930void SelectionDAGBuilder::visitStore(StoreInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002931 Value *SrcV = I.getOperand(0);
2932 Value *PtrV = I.getOperand(1);
2933
Owen Andersone50ed302009-08-10 22:56:29 +00002934 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002935 SmallVector<uint64_t, 4> Offsets;
2936 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2937 unsigned NumValues = ValueVTs.size();
2938 if (NumValues == 0)
2939 return;
2940
2941 // Get the lowered operands. Note that we do this after
2942 // checking if NumResults is zero, because with zero results
2943 // the operands won't have values in the map.
2944 SDValue Src = getValue(SrcV);
2945 SDValue Ptr = getValue(PtrV);
2946
2947 SDValue Root = getRoot();
2948 SmallVector<SDValue, 4> Chains(NumValues);
Owen Andersone50ed302009-08-10 22:56:29 +00002949 EVT PtrVT = Ptr.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002950 bool isVolatile = I.isVolatile();
2951 unsigned Alignment = I.getAlignment();
Bill Wendling856ff412009-12-22 00:12:37 +00002952
2953 for (unsigned i = 0; i != NumValues; ++i) {
2954 SDValue Add = DAG.getNode(ISD::ADD, getCurDebugLoc(), PtrVT, Ptr,
2955 DAG.getConstant(Offsets[i], PtrVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002956 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002957 SDValue(Src.getNode(), Src.getResNo() + i),
Bill Wendling856ff412009-12-22 00:12:37 +00002958 Add, PtrV, Offsets[i], isVolatile, Alignment);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002959
Bill Wendling187361b2010-01-23 10:26:57 +00002960 DAG.AssignOrdering(Add.getNode(), SDNodeOrder);
2961 DAG.AssignOrdering(Chains[i].getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00002962 }
2963
2964 SDValue Res = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
2965 MVT::Other, &Chains[0], NumValues);
2966 DAG.setRoot(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00002967 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002968}
2969
2970/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2971/// node.
Dan Gohman2048b852009-11-23 18:04:58 +00002972void SelectionDAGBuilder::visitTargetIntrinsic(CallInst &I,
2973 unsigned Intrinsic) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002974 bool HasChain = !I.doesNotAccessMemory();
2975 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2976
2977 // Build the operand list.
2978 SmallVector<SDValue, 8> Ops;
2979 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2980 if (OnlyLoad) {
2981 // We don't need to serialize loads against other loads.
2982 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002983 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002984 Ops.push_back(getRoot());
2985 }
2986 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002987
2988 // Info is set by getTgtMemInstrinsic
2989 TargetLowering::IntrinsicInfo Info;
2990 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2991
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002992 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002993 if (!IsTgtIntrinsic)
2994 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002995
2996 // Add all operands of the call to the operand list.
2997 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2998 SDValue Op = getValue(I.getOperand(i));
2999 assert(TLI.isTypeLegal(Op.getValueType()) &&
3000 "Intrinsic uses a non-legal type?");
3001 Ops.push_back(Op);
3002 }
3003
Owen Andersone50ed302009-08-10 22:56:29 +00003004 SmallVector<EVT, 4> ValueVTs;
Bob Wilson8d919552009-07-31 22:41:21 +00003005 ComputeValueVTs(TLI, I.getType(), ValueVTs);
3006#ifndef NDEBUG
3007 for (unsigned Val = 0, E = ValueVTs.size(); Val != E; ++Val) {
3008 assert(TLI.isTypeLegal(ValueVTs[Val]) &&
3009 "Intrinsic uses a non-legal type?");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003010 }
Bob Wilson8d919552009-07-31 22:41:21 +00003011#endif // NDEBUG
Bill Wendling856ff412009-12-22 00:12:37 +00003012
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003013 if (HasChain)
Owen Anderson825b72b2009-08-11 20:47:22 +00003014 ValueVTs.push_back(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003015
Bob Wilson8d919552009-07-31 22:41:21 +00003016 SDVTList VTs = DAG.getVTList(ValueVTs.data(), ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003017
3018 // Create the node.
3019 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00003020 if (IsTgtIntrinsic) {
3021 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00003022 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00003023 VTs, &Ops[0], Ops.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00003024 Info.memVT, Info.ptrVal, Info.offset,
3025 Info.align, Info.vol,
3026 Info.readMem, Info.writeMem);
Bill Wendling856ff412009-12-22 00:12:37 +00003027 } else if (!HasChain) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003028 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00003029 VTs, &Ops[0], Ops.size());
Benjamin Kramerf0127052010-01-05 13:12:22 +00003030 } else if (!I.getType()->isVoidTy()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003031 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00003032 VTs, &Ops[0], Ops.size());
Bill Wendling856ff412009-12-22 00:12:37 +00003033 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00003034 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00003035 VTs, &Ops[0], Ops.size());
Bill Wendling856ff412009-12-22 00:12:37 +00003036 }
3037
Bill Wendling187361b2010-01-23 10:26:57 +00003038 DAG.AssignOrdering(Result.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003039
3040 if (HasChain) {
3041 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
3042 if (OnlyLoad)
3043 PendingLoads.push_back(Chain);
3044 else
3045 DAG.setRoot(Chain);
3046 }
Bill Wendling856ff412009-12-22 00:12:37 +00003047
Benjamin Kramerf0127052010-01-05 13:12:22 +00003048 if (!I.getType()->isVoidTy()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003049 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Owen Andersone50ed302009-08-10 22:56:29 +00003050 EVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003051 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Bill Wendling187361b2010-01-23 10:26:57 +00003052 DAG.AssignOrdering(Result.getNode(), SDNodeOrder);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003053 }
Bill Wendling856ff412009-12-22 00:12:37 +00003054
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003055 setValue(&I, Result);
3056 }
3057}
3058
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003059/// GetSignificand - Get the significand and build it into a floating-point
3060/// number with exponent of 1:
3061///
3062/// Op = (Op & 0x007fffff) | 0x3f800000;
3063///
3064/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003065static SDValue
Bill Wendling856ff412009-12-22 00:12:37 +00003066GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl, unsigned Order) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003067 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3068 DAG.getConstant(0x007fffff, MVT::i32));
3069 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
3070 DAG.getConstant(0x3f800000, MVT::i32));
Bill Wendling856ff412009-12-22 00:12:37 +00003071 SDValue Res = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
3072
Bill Wendling187361b2010-01-23 10:26:57 +00003073 DAG.AssignOrdering(t1.getNode(), Order);
3074 DAG.AssignOrdering(t2.getNode(), Order);
3075 DAG.AssignOrdering(Res.getNode(), Order);
Bill Wendling856ff412009-12-22 00:12:37 +00003076 return Res;
Bill Wendling39150252008-09-09 20:39:27 +00003077}
3078
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003079/// GetExponent - Get the exponent:
3080///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003081/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003082///
3083/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003084static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003085GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
Bill Wendling856ff412009-12-22 00:12:37 +00003086 DebugLoc dl, unsigned Order) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003087 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3088 DAG.getConstant(0x7f800000, MVT::i32));
3089 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003090 DAG.getConstant(23, TLI.getPointerTy()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003091 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
3092 DAG.getConstant(127, MVT::i32));
Bill Wendling856ff412009-12-22 00:12:37 +00003093 SDValue Res = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
3094
Bill Wendling187361b2010-01-23 10:26:57 +00003095 DAG.AssignOrdering(t0.getNode(), Order);
3096 DAG.AssignOrdering(t1.getNode(), Order);
3097 DAG.AssignOrdering(t2.getNode(), Order);
3098 DAG.AssignOrdering(Res.getNode(), Order);
Bill Wendling856ff412009-12-22 00:12:37 +00003099 return Res;
Bill Wendling39150252008-09-09 20:39:27 +00003100}
3101
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003102/// getF32Constant - Get 32-bit floating point constant.
3103static SDValue
3104getF32Constant(SelectionDAG &DAG, unsigned Flt) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003105 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003106}
3107
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003108/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003109/// visitIntrinsicCall: I is a call instruction
3110/// Op is the associated NodeType for I
3111const char *
Dan Gohman2048b852009-11-23 18:04:58 +00003112SelectionDAGBuilder::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003113 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003114 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003115 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003116 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003117 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003118 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003119 getValue(I.getOperand(2)),
3120 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003121 setValue(&I, L);
3122 DAG.setRoot(L.getValue(1));
Bill Wendling187361b2010-01-23 10:26:57 +00003123 DAG.AssignOrdering(L.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003124 return 0;
3125}
3126
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003127// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003128const char *
Dan Gohman2048b852009-11-23 18:04:58 +00003129SelectionDAGBuilder::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003130 SDValue Op1 = getValue(I.getOperand(1));
3131 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003132
Owen Anderson825b72b2009-08-11 20:47:22 +00003133 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
Dan Gohmanfc166572009-04-09 23:54:40 +00003134 SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2);
Bill Wendling74c37652008-12-09 22:08:41 +00003135
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003136 setValue(&I, Result);
Bill Wendling187361b2010-01-23 10:26:57 +00003137 DAG.AssignOrdering(Result.getNode(), SDNodeOrder);
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003138 return 0;
3139}
Bill Wendling74c37652008-12-09 22:08:41 +00003140
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003141/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3142/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003143void
Dan Gohman2048b852009-11-23 18:04:58 +00003144SelectionDAGBuilder::visitExp(CallInst &I) {
Dale Johannesen59e577f2008-09-05 18:38:42 +00003145 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003146 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003147
Owen Anderson825b72b2009-08-11 20:47:22 +00003148 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003149 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3150 SDValue Op = getValue(I.getOperand(1));
3151
3152 // Put the exponent in the right bit position for later addition to the
3153 // final result:
3154 //
3155 // #define LOG2OFe 1.4426950f
3156 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Owen Anderson825b72b2009-08-11 20:47:22 +00003157 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003158 getF32Constant(DAG, 0x3fb8aa3b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003159 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003160
3161 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003162 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3163 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003164
Bill Wendling187361b2010-01-23 10:26:57 +00003165 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3166 DAG.AssignOrdering(IntegerPartOfX.getNode(), SDNodeOrder);
3167 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3168 DAG.AssignOrdering(X.getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00003169
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003170 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003171 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003172 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendling187361b2010-01-23 10:26:57 +00003173 DAG.AssignOrdering(IntegerPartOfX.getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00003174
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003175 if (LimitFloatPrecision <= 6) {
3176 // For floating-point precision of 6:
3177 //
3178 // TwoToFractionalPartOfX =
3179 // 0.997535578f +
3180 // (0.735607626f + 0.252464424f * x) * x;
3181 //
3182 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003183 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003184 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003185 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003186 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003187 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3188 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003189 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003190 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003191
3192 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003193 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003194 TwoToFracPartOfX, IntegerPartOfX);
3195
Owen Anderson825b72b2009-08-11 20:47:22 +00003196 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendling856ff412009-12-22 00:12:37 +00003197
Bill Wendling187361b2010-01-23 10:26:57 +00003198 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3199 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3200 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3201 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3202 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3203 DAG.AssignOrdering(TwoToFracPartOfX.getNode(), SDNodeOrder);
3204 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003205 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3206 // For floating-point precision of 12:
3207 //
3208 // TwoToFractionalPartOfX =
3209 // 0.999892986f +
3210 // (0.696457318f +
3211 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3212 //
3213 // 0.000107046256 error, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003214 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003215 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003216 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003217 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003218 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3219 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003220 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003221 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3222 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003223 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003224 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003225
3226 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003227 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003228 TwoToFracPartOfX, IntegerPartOfX);
3229
Owen Anderson825b72b2009-08-11 20:47:22 +00003230 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendling856ff412009-12-22 00:12:37 +00003231
Bill Wendling187361b2010-01-23 10:26:57 +00003232 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3233 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3234 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3235 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3236 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3237 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
3238 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
3239 DAG.AssignOrdering(TwoToFracPartOfX.getNode(), SDNodeOrder);
3240 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003241 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3242 // For floating-point precision of 18:
3243 //
3244 // TwoToFractionalPartOfX =
3245 // 0.999999982f +
3246 // (0.693148872f +
3247 // (0.240227044f +
3248 // (0.554906021e-1f +
3249 // (0.961591928e-2f +
3250 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3251 //
3252 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003253 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003254 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003255 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003256 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003257 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3258 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003259 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003260 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3261 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003262 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003263 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3264 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003265 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003266 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3267 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003268 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003269 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3270 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003271 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003272 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003273 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003274
3275 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003276 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003277 TwoToFracPartOfX, IntegerPartOfX);
3278
Owen Anderson825b72b2009-08-11 20:47:22 +00003279 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendling856ff412009-12-22 00:12:37 +00003280
Bill Wendling187361b2010-01-23 10:26:57 +00003281 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3282 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3283 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3284 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3285 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3286 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
3287 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
3288 DAG.AssignOrdering(t9.getNode(), SDNodeOrder);
3289 DAG.AssignOrdering(t10.getNode(), SDNodeOrder);
3290 DAG.AssignOrdering(t11.getNode(), SDNodeOrder);
3291 DAG.AssignOrdering(t12.getNode(), SDNodeOrder);
3292 DAG.AssignOrdering(t13.getNode(), SDNodeOrder);
3293 DAG.AssignOrdering(t14.getNode(), SDNodeOrder);
3294 DAG.AssignOrdering(TwoToFracPartOfX.getNode(), SDNodeOrder);
3295 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003296 }
3297 } else {
3298 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003299 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003300 getValue(I.getOperand(1)).getValueType(),
3301 getValue(I.getOperand(1)));
Bill Wendling187361b2010-01-23 10:26:57 +00003302 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003303 }
3304
Dale Johannesen59e577f2008-09-05 18:38:42 +00003305 setValue(&I, result);
3306}
3307
Bill Wendling39150252008-09-09 20:39:27 +00003308/// visitLog - Lower a log intrinsic. Handles the special sequences for
3309/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003310void
Dan Gohman2048b852009-11-23 18:04:58 +00003311SelectionDAGBuilder::visitLog(CallInst &I) {
Dale Johannesen59e577f2008-09-05 18:38:42 +00003312 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003313 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003314
Owen Anderson825b72b2009-08-11 20:47:22 +00003315 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling39150252008-09-09 20:39:27 +00003316 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3317 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003318 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003319
Bill Wendling187361b2010-01-23 10:26:57 +00003320 DAG.AssignOrdering(Op1.getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00003321
Bill Wendling39150252008-09-09 20:39:27 +00003322 // Scale the exponent by log(2) [0.69314718f].
Bill Wendling856ff412009-12-22 00:12:37 +00003323 SDValue Exp = GetExponent(DAG, Op1, TLI, dl, SDNodeOrder);
Owen Anderson825b72b2009-08-11 20:47:22 +00003324 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003325 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003326
Bill Wendling187361b2010-01-23 10:26:57 +00003327 DAG.AssignOrdering(LogOfExponent.getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00003328
Bill Wendling39150252008-09-09 20:39:27 +00003329 // Get the significand and build it into a floating-point number with
3330 // exponent of 1.
Bill Wendling856ff412009-12-22 00:12:37 +00003331 SDValue X = GetSignificand(DAG, Op1, dl, SDNodeOrder);
Bill Wendling39150252008-09-09 20:39:27 +00003332
3333 if (LimitFloatPrecision <= 6) {
3334 // For floating-point precision of 6:
3335 //
3336 // LogofMantissa =
3337 // -1.1609546f +
3338 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003339 //
Bill Wendling39150252008-09-09 20:39:27 +00003340 // error 0.0034276066, which is better than 8 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003341 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003342 getF32Constant(DAG, 0xbe74c456));
Owen Anderson825b72b2009-08-11 20:47:22 +00003343 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003344 getF32Constant(DAG, 0x3fb3a2b1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003345 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3346 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003347 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003348
Scott Michelfdc40a02009-02-17 22:15:04 +00003349 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003350 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003351
Bill Wendling187361b2010-01-23 10:26:57 +00003352 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3353 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3354 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3355 DAG.AssignOrdering(LogOfMantissa.getNode(), SDNodeOrder);
3356 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendling39150252008-09-09 20:39:27 +00003357 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3358 // For floating-point precision of 12:
3359 //
3360 // LogOfMantissa =
3361 // -1.7417939f +
3362 // (2.8212026f +
3363 // (-1.4699568f +
3364 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3365 //
3366 // error 0.000061011436, which is 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003367 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003368 getF32Constant(DAG, 0xbd67b6d6));
Owen Anderson825b72b2009-08-11 20:47:22 +00003369 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003370 getF32Constant(DAG, 0x3ee4f4b8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003371 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3372 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003373 getF32Constant(DAG, 0x3fbc278b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003374 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3375 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003376 getF32Constant(DAG, 0x40348e95));
Owen Anderson825b72b2009-08-11 20:47:22 +00003377 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3378 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003379 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003380
Scott Michelfdc40a02009-02-17 22:15:04 +00003381 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003382 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003383
Bill Wendling187361b2010-01-23 10:26:57 +00003384 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3385 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3386 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3387 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3388 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3389 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3390 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3391 DAG.AssignOrdering(LogOfMantissa.getNode(), SDNodeOrder);
3392 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendling39150252008-09-09 20:39:27 +00003393 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3394 // For floating-point precision of 18:
3395 //
3396 // LogOfMantissa =
3397 // -2.1072184f +
3398 // (4.2372794f +
3399 // (-3.7029485f +
3400 // (2.2781945f +
3401 // (-0.87823314f +
3402 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3403 //
3404 // error 0.0000023660568, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003405 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003406 getF32Constant(DAG, 0xbc91e5ac));
Owen Anderson825b72b2009-08-11 20:47:22 +00003407 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003408 getF32Constant(DAG, 0x3e4350aa));
Owen Anderson825b72b2009-08-11 20:47:22 +00003409 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3410 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003411 getF32Constant(DAG, 0x3f60d3e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003412 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3413 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003414 getF32Constant(DAG, 0x4011cdf0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003415 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3416 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003417 getF32Constant(DAG, 0x406cfd1c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003418 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3419 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003420 getF32Constant(DAG, 0x408797cb));
Owen Anderson825b72b2009-08-11 20:47:22 +00003421 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3422 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003423 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003424
Scott Michelfdc40a02009-02-17 22:15:04 +00003425 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003426 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003427
Bill Wendling187361b2010-01-23 10:26:57 +00003428 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3429 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3430 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3431 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3432 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3433 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3434 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3435 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
3436 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
3437 DAG.AssignOrdering(t9.getNode(), SDNodeOrder);
3438 DAG.AssignOrdering(t10.getNode(), SDNodeOrder);
3439 DAG.AssignOrdering(LogOfMantissa.getNode(), SDNodeOrder);
3440 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendling39150252008-09-09 20:39:27 +00003441 }
3442 } else {
3443 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003444 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003445 getValue(I.getOperand(1)).getValueType(),
3446 getValue(I.getOperand(1)));
Bill Wendling187361b2010-01-23 10:26:57 +00003447 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendling39150252008-09-09 20:39:27 +00003448 }
3449
Dale Johannesen59e577f2008-09-05 18:38:42 +00003450 setValue(&I, result);
3451}
3452
Bill Wendling3eb59402008-09-09 00:28:24 +00003453/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3454/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003455void
Dan Gohman2048b852009-11-23 18:04:58 +00003456SelectionDAGBuilder::visitLog2(CallInst &I) {
Dale Johannesen59e577f2008-09-05 18:38:42 +00003457 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003458 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003459
Owen Anderson825b72b2009-08-11 20:47:22 +00003460 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003461 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3462 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003463 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003464
Bill Wendling187361b2010-01-23 10:26:57 +00003465 DAG.AssignOrdering(Op1.getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00003466
Bill Wendling39150252008-09-09 20:39:27 +00003467 // Get the exponent.
Bill Wendling856ff412009-12-22 00:12:37 +00003468 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl, SDNodeOrder);
3469
Bill Wendling187361b2010-01-23 10:26:57 +00003470 DAG.AssignOrdering(LogOfExponent.getNode(), SDNodeOrder);
Bill Wendling3eb59402008-09-09 00:28:24 +00003471
3472 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003473 // exponent of 1.
Bill Wendling856ff412009-12-22 00:12:37 +00003474 SDValue X = GetSignificand(DAG, Op1, dl, SDNodeOrder);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003475
Bill Wendling3eb59402008-09-09 00:28:24 +00003476 // Different possible minimax approximations of significand in
3477 // floating-point for various degrees of accuracy over [1,2].
3478 if (LimitFloatPrecision <= 6) {
3479 // For floating-point precision of 6:
3480 //
3481 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3482 //
3483 // error 0.0049451742, which is more than 7 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003484 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003485 getF32Constant(DAG, 0xbeb08fe0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003486 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003487 getF32Constant(DAG, 0x40019463));
Owen Anderson825b72b2009-08-11 20:47:22 +00003488 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3489 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003490 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003491
Scott Michelfdc40a02009-02-17 22:15:04 +00003492 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003493 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003494
Bill Wendling187361b2010-01-23 10:26:57 +00003495 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3496 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3497 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3498 DAG.AssignOrdering(Log2ofMantissa.getNode(), SDNodeOrder);
3499 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendling3eb59402008-09-09 00:28:24 +00003500 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3501 // For floating-point precision of 12:
3502 //
3503 // Log2ofMantissa =
3504 // -2.51285454f +
3505 // (4.07009056f +
3506 // (-2.12067489f +
3507 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003508 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003509 // error 0.0000876136000, which is better than 13 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003510 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003511 getF32Constant(DAG, 0xbda7262e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003512 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003513 getF32Constant(DAG, 0x3f25280b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003514 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3515 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003516 getF32Constant(DAG, 0x4007b923));
Owen Anderson825b72b2009-08-11 20:47:22 +00003517 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3518 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003519 getF32Constant(DAG, 0x40823e2f));
Owen Anderson825b72b2009-08-11 20:47:22 +00003520 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3521 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003522 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003523
Scott Michelfdc40a02009-02-17 22:15:04 +00003524 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003525 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003526
Bill Wendling187361b2010-01-23 10:26:57 +00003527 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3528 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3529 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3530 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3531 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3532 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3533 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3534 DAG.AssignOrdering(Log2ofMantissa.getNode(), SDNodeOrder);
3535 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendling3eb59402008-09-09 00:28:24 +00003536 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3537 // For floating-point precision of 18:
3538 //
3539 // Log2ofMantissa =
3540 // -3.0400495f +
3541 // (6.1129976f +
3542 // (-5.3420409f +
3543 // (3.2865683f +
3544 // (-1.2669343f +
3545 // (0.27515199f -
3546 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3547 //
3548 // error 0.0000018516, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003549 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003550 getF32Constant(DAG, 0xbcd2769e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003551 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003552 getF32Constant(DAG, 0x3e8ce0b9));
Owen Anderson825b72b2009-08-11 20:47:22 +00003553 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3554 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003555 getF32Constant(DAG, 0x3fa22ae7));
Owen Anderson825b72b2009-08-11 20:47:22 +00003556 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3557 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003558 getF32Constant(DAG, 0x40525723));
Owen Anderson825b72b2009-08-11 20:47:22 +00003559 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3560 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003561 getF32Constant(DAG, 0x40aaf200));
Owen Anderson825b72b2009-08-11 20:47:22 +00003562 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3563 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003564 getF32Constant(DAG, 0x40c39dad));
Owen Anderson825b72b2009-08-11 20:47:22 +00003565 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3566 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003567 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003568
Scott Michelfdc40a02009-02-17 22:15:04 +00003569 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003570 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003571
Bill Wendling187361b2010-01-23 10:26:57 +00003572 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3573 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3574 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3575 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3576 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3577 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3578 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3579 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
3580 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
3581 DAG.AssignOrdering(t9.getNode(), SDNodeOrder);
3582 DAG.AssignOrdering(t10.getNode(), SDNodeOrder);
3583 DAG.AssignOrdering(Log2ofMantissa.getNode(), SDNodeOrder);
3584 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendling3eb59402008-09-09 00:28:24 +00003585 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003586 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003587 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003588 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003589 getValue(I.getOperand(1)).getValueType(),
3590 getValue(I.getOperand(1)));
Bill Wendling187361b2010-01-23 10:26:57 +00003591 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Dale Johannesen853244f2008-09-05 23:49:37 +00003592 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003593
Dale Johannesen59e577f2008-09-05 18:38:42 +00003594 setValue(&I, result);
3595}
3596
Bill Wendling3eb59402008-09-09 00:28:24 +00003597/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3598/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003599void
Dan Gohman2048b852009-11-23 18:04:58 +00003600SelectionDAGBuilder::visitLog10(CallInst &I) {
Dale Johannesen59e577f2008-09-05 18:38:42 +00003601 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003602 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003603
Owen Anderson825b72b2009-08-11 20:47:22 +00003604 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003605 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3606 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003607 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003608
Bill Wendling187361b2010-01-23 10:26:57 +00003609 DAG.AssignOrdering(Op1.getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00003610
Bill Wendling39150252008-09-09 20:39:27 +00003611 // Scale the exponent by log10(2) [0.30102999f].
Bill Wendling856ff412009-12-22 00:12:37 +00003612 SDValue Exp = GetExponent(DAG, Op1, TLI, dl, SDNodeOrder);
Owen Anderson825b72b2009-08-11 20:47:22 +00003613 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003614 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003615
Bill Wendling187361b2010-01-23 10:26:57 +00003616 DAG.AssignOrdering(LogOfExponent.getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00003617
Bill Wendling3eb59402008-09-09 00:28:24 +00003618 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003619 // exponent of 1.
Bill Wendling856ff412009-12-22 00:12:37 +00003620 SDValue X = GetSignificand(DAG, Op1, dl, SDNodeOrder);
Bill Wendling3eb59402008-09-09 00:28:24 +00003621
3622 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003623 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003624 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003625 // Log10ofMantissa =
3626 // -0.50419619f +
3627 // (0.60948995f - 0.10380950f * x) * x;
3628 //
3629 // error 0.0014886165, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003630 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003631 getF32Constant(DAG, 0xbdd49a13));
Owen Anderson825b72b2009-08-11 20:47:22 +00003632 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003633 getF32Constant(DAG, 0x3f1c0789));
Owen Anderson825b72b2009-08-11 20:47:22 +00003634 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3635 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003636 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003637
Scott Michelfdc40a02009-02-17 22:15:04 +00003638 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003639 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003640
Bill Wendling187361b2010-01-23 10:26:57 +00003641 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3642 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3643 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3644 DAG.AssignOrdering(Log10ofMantissa.getNode(), SDNodeOrder);
3645 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendling3eb59402008-09-09 00:28:24 +00003646 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3647 // For floating-point precision of 12:
3648 //
3649 // Log10ofMantissa =
3650 // -0.64831180f +
3651 // (0.91751397f +
3652 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3653 //
3654 // error 0.00019228036, which is better than 12 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003655 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003656 getF32Constant(DAG, 0x3d431f31));
Owen Anderson825b72b2009-08-11 20:47:22 +00003657 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003658 getF32Constant(DAG, 0x3ea21fb2));
Owen Anderson825b72b2009-08-11 20:47:22 +00003659 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3660 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003661 getF32Constant(DAG, 0x3f6ae232));
Owen Anderson825b72b2009-08-11 20:47:22 +00003662 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3663 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003664 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003665
Scott Michelfdc40a02009-02-17 22:15:04 +00003666 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003667 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003668
Bill Wendling187361b2010-01-23 10:26:57 +00003669 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3670 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3671 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3672 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3673 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3674 DAG.AssignOrdering(Log10ofMantissa.getNode(), SDNodeOrder);
3675 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendling3eb59402008-09-09 00:28:24 +00003676 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003677 // For floating-point precision of 18:
3678 //
3679 // Log10ofMantissa =
3680 // -0.84299375f +
3681 // (1.5327582f +
3682 // (-1.0688956f +
3683 // (0.49102474f +
3684 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3685 //
3686 // error 0.0000037995730, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003687 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003688 getF32Constant(DAG, 0x3c5d51ce));
Owen Anderson825b72b2009-08-11 20:47:22 +00003689 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003690 getF32Constant(DAG, 0x3e00685a));
Owen Anderson825b72b2009-08-11 20:47:22 +00003691 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3692 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003693 getF32Constant(DAG, 0x3efb6798));
Owen Anderson825b72b2009-08-11 20:47:22 +00003694 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3695 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003696 getF32Constant(DAG, 0x3f88d192));
Owen Anderson825b72b2009-08-11 20:47:22 +00003697 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3698 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003699 getF32Constant(DAG, 0x3fc4316c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003700 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3701 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003702 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003703
Scott Michelfdc40a02009-02-17 22:15:04 +00003704 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003705 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003706
Bill Wendling187361b2010-01-23 10:26:57 +00003707 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3708 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3709 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3710 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3711 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3712 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3713 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3714 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
3715 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
3716 DAG.AssignOrdering(Log10ofMantissa.getNode(), SDNodeOrder);
3717 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendling3eb59402008-09-09 00:28:24 +00003718 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003719 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003720 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003721 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003722 getValue(I.getOperand(1)).getValueType(),
3723 getValue(I.getOperand(1)));
Bill Wendling187361b2010-01-23 10:26:57 +00003724 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Dale Johannesen852680a2008-09-05 21:27:19 +00003725 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003726
Dale Johannesen59e577f2008-09-05 18:38:42 +00003727 setValue(&I, result);
3728}
3729
Bill Wendlinge10c8142008-09-09 22:39:21 +00003730/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3731/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003732void
Dan Gohman2048b852009-11-23 18:04:58 +00003733SelectionDAGBuilder::visitExp2(CallInst &I) {
Dale Johannesen601d3c02008-09-05 01:48:15 +00003734 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003735 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003736
Owen Anderson825b72b2009-08-11 20:47:22 +00003737 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003738 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3739 SDValue Op = getValue(I.getOperand(1));
3740
Owen Anderson825b72b2009-08-11 20:47:22 +00003741 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003742
Bill Wendling187361b2010-01-23 10:26:57 +00003743 DAG.AssignOrdering(IntegerPartOfX.getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00003744
Bill Wendlinge10c8142008-09-09 22:39:21 +00003745 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003746 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3747 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003748
3749 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003750 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003751 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003752
Bill Wendling187361b2010-01-23 10:26:57 +00003753 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3754 DAG.AssignOrdering(X.getNode(), SDNodeOrder);
3755 DAG.AssignOrdering(IntegerPartOfX.getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00003756
Bill Wendlinge10c8142008-09-09 22:39:21 +00003757 if (LimitFloatPrecision <= 6) {
3758 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003759 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003760 // TwoToFractionalPartOfX =
3761 // 0.997535578f +
3762 // (0.735607626f + 0.252464424f * x) * x;
3763 //
3764 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003765 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003766 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003767 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003768 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003769 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3770 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003771 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003772 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003773 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003774 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003775
Scott Michelfdc40a02009-02-17 22:15:04 +00003776 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003777 MVT::f32, TwoToFractionalPartOfX);
Bill Wendling856ff412009-12-22 00:12:37 +00003778
Bill Wendling187361b2010-01-23 10:26:57 +00003779 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3780 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3781 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3782 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3783 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3784 DAG.AssignOrdering(TwoToFractionalPartOfX.getNode(), SDNodeOrder);
3785 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003786 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3787 // For floating-point precision of 12:
3788 //
3789 // TwoToFractionalPartOfX =
3790 // 0.999892986f +
3791 // (0.696457318f +
3792 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3793 //
3794 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003795 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003796 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003797 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003798 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003799 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3800 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003801 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003802 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3803 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003804 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003805 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003806 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003807 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003808
Scott Michelfdc40a02009-02-17 22:15:04 +00003809 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003810 MVT::f32, TwoToFractionalPartOfX);
Bill Wendling856ff412009-12-22 00:12:37 +00003811
Bill Wendling187361b2010-01-23 10:26:57 +00003812 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3813 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3814 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3815 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3816 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3817 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
3818 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
3819 DAG.AssignOrdering(TwoToFractionalPartOfX.getNode(), SDNodeOrder);
3820 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003821 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3822 // For floating-point precision of 18:
3823 //
3824 // TwoToFractionalPartOfX =
3825 // 0.999999982f +
3826 // (0.693148872f +
3827 // (0.240227044f +
3828 // (0.554906021e-1f +
3829 // (0.961591928e-2f +
3830 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3831 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003832 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003833 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003834 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003835 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003836 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3837 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003838 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003839 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3840 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003841 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003842 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3843 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003844 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003845 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3846 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003847 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003848 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3849 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003850 getF32Constant(DAG, 0x3f800000));
Owen Anderson825b72b2009-08-11 20:47:22 +00003851 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003852 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003853 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003854
Scott Michelfdc40a02009-02-17 22:15:04 +00003855 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003856 MVT::f32, TwoToFractionalPartOfX);
Bill Wendling856ff412009-12-22 00:12:37 +00003857
Bill Wendling187361b2010-01-23 10:26:57 +00003858 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3859 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3860 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3861 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3862 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3863 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
3864 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
3865 DAG.AssignOrdering(t9.getNode(), SDNodeOrder);
3866 DAG.AssignOrdering(t10.getNode(), SDNodeOrder);
3867 DAG.AssignOrdering(t11.getNode(), SDNodeOrder);
3868 DAG.AssignOrdering(t12.getNode(), SDNodeOrder);
3869 DAG.AssignOrdering(t13.getNode(), SDNodeOrder);
3870 DAG.AssignOrdering(t14.getNode(), SDNodeOrder);
3871 DAG.AssignOrdering(TwoToFractionalPartOfX.getNode(), SDNodeOrder);
3872 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003873 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003874 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003875 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003876 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003877 getValue(I.getOperand(1)).getValueType(),
3878 getValue(I.getOperand(1)));
Bill Wendling187361b2010-01-23 10:26:57 +00003879 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Dale Johannesen601d3c02008-09-05 01:48:15 +00003880 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003881
Dale Johannesen601d3c02008-09-05 01:48:15 +00003882 setValue(&I, result);
3883}
3884
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003885/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3886/// limited-precision mode with x == 10.0f.
3887void
Dan Gohman2048b852009-11-23 18:04:58 +00003888SelectionDAGBuilder::visitPow(CallInst &I) {
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003889 SDValue result;
3890 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003891 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003892 bool IsExp10 = false;
3893
Owen Anderson825b72b2009-08-11 20:47:22 +00003894 if (getValue(Val).getValueType() == MVT::f32 &&
3895 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003896 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3897 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3898 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3899 APFloat Ten(10.0f);
3900 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3901 }
3902 }
3903 }
3904
3905 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3906 SDValue Op = getValue(I.getOperand(2));
3907
3908 // Put the exponent in the right bit position for later addition to the
3909 // final result:
3910 //
3911 // #define LOG2OF10 3.3219281f
3912 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Owen Anderson825b72b2009-08-11 20:47:22 +00003913 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003914 getF32Constant(DAG, 0x40549a78));
Owen Anderson825b72b2009-08-11 20:47:22 +00003915 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003916
3917 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003918 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3919 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003920
Bill Wendling187361b2010-01-23 10:26:57 +00003921 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3922 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3923 DAG.AssignOrdering(IntegerPartOfX.getNode(), SDNodeOrder);
3924 DAG.AssignOrdering(X.getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00003925
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003926 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003927 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003928 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003929
Bill Wendling187361b2010-01-23 10:26:57 +00003930 DAG.AssignOrdering(IntegerPartOfX.getNode(), SDNodeOrder);
Bill Wendling856ff412009-12-22 00:12:37 +00003931
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003932 if (LimitFloatPrecision <= 6) {
3933 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003934 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003935 // twoToFractionalPartOfX =
3936 // 0.997535578f +
3937 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003938 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003939 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003940 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003941 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003942 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003943 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003944 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3945 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003946 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003947 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003948 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003949 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003950
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003951 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003952 MVT::f32, TwoToFractionalPartOfX);
Bill Wendling856ff412009-12-22 00:12:37 +00003953
Bill Wendling187361b2010-01-23 10:26:57 +00003954 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3955 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3956 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3957 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3958 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3959 DAG.AssignOrdering(TwoToFractionalPartOfX.getNode(), SDNodeOrder);
3960 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003961 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3962 // For floating-point precision of 12:
3963 //
3964 // TwoToFractionalPartOfX =
3965 // 0.999892986f +
3966 // (0.696457318f +
3967 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3968 //
3969 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003970 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003971 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003972 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003973 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003974 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3975 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003976 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003977 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3978 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003979 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003980 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003981 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003982 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003983
Scott Michelfdc40a02009-02-17 22:15:04 +00003984 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003985 MVT::f32, TwoToFractionalPartOfX);
Bill Wendling856ff412009-12-22 00:12:37 +00003986
Bill Wendling187361b2010-01-23 10:26:57 +00003987 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3988 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3989 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3990 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3991 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3992 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
3993 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
3994 DAG.AssignOrdering(TwoToFractionalPartOfX.getNode(), SDNodeOrder);
3995 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003996 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3997 // For floating-point precision of 18:
3998 //
3999 // TwoToFractionalPartOfX =
4000 // 0.999999982f +
4001 // (0.693148872f +
4002 // (0.240227044f +
4003 // (0.554906021e-1f +
4004 // (0.961591928e-2f +
4005 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
4006 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004007 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004008 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00004009 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004010 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00004011 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4012 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004013 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00004014 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4015 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004016 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00004017 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
4018 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004019 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00004020 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
4021 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004022 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00004023 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
4024 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004025 getF32Constant(DAG, 0x3f800000));
Owen Anderson825b72b2009-08-11 20:47:22 +00004026 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004027 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00004028 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004029
Scott Michelfdc40a02009-02-17 22:15:04 +00004030 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004031 MVT::f32, TwoToFractionalPartOfX);
Bill Wendling856ff412009-12-22 00:12:37 +00004032
Bill Wendling187361b2010-01-23 10:26:57 +00004033 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
4034 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
4035 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
4036 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
4037 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
4038 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
4039 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
4040 DAG.AssignOrdering(t9.getNode(), SDNodeOrder);
4041 DAG.AssignOrdering(t10.getNode(), SDNodeOrder);
4042 DAG.AssignOrdering(t11.getNode(), SDNodeOrder);
4043 DAG.AssignOrdering(t12.getNode(), SDNodeOrder);
4044 DAG.AssignOrdering(t13.getNode(), SDNodeOrder);
4045 DAG.AssignOrdering(t14.getNode(), SDNodeOrder);
4046 DAG.AssignOrdering(TwoToFractionalPartOfX.getNode(), SDNodeOrder);
4047 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004048 }
4049 } else {
4050 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004051 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004052 getValue(I.getOperand(1)).getValueType(),
4053 getValue(I.getOperand(1)),
4054 getValue(I.getOperand(2)));
Bill Wendling187361b2010-01-23 10:26:57 +00004055 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004056 }
4057
4058 setValue(&I, result);
4059}
4060
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004061
4062/// ExpandPowI - Expand a llvm.powi intrinsic.
4063static SDValue ExpandPowI(DebugLoc DL, SDValue LHS, SDValue RHS,
4064 SelectionDAG &DAG) {
4065 // If RHS is a constant, we can expand this out to a multiplication tree,
4066 // otherwise we end up lowering to a call to __powidf2 (for example). When
4067 // optimizing for size, we only want to do this if the expansion would produce
4068 // a small number of multiplies, otherwise we do the full expansion.
4069 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
4070 // Get the exponent as a positive value.
4071 unsigned Val = RHSC->getSExtValue();
4072 if ((int)Val < 0) Val = -Val;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004073
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004074 // powi(x, 0) -> 1.0
4075 if (Val == 0)
4076 return DAG.getConstantFP(1.0, LHS.getValueType());
4077
4078 Function *F = DAG.getMachineFunction().getFunction();
4079 if (!F->hasFnAttr(Attribute::OptimizeForSize) ||
4080 // If optimizing for size, don't insert too many multiplies. This
4081 // inserts up to 5 multiplies.
4082 CountPopulation_32(Val)+Log2_32(Val) < 7) {
4083 // We use the simple binary decomposition method to generate the multiply
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004084 // sequence. There are more optimal ways to do this (for example,
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004085 // powi(x,15) generates one more multiply than it should), but this has
4086 // the benefit of being both really simple and much better than a libcall.
4087 SDValue Res; // Logically starts equal to 1.0
4088 SDValue CurSquare = LHS;
4089 while (Val) {
Mikhail Glushenkovbfdfea82010-01-01 04:41:36 +00004090 if (Val & 1) {
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004091 if (Res.getNode())
4092 Res = DAG.getNode(ISD::FMUL, DL,Res.getValueType(), Res, CurSquare);
4093 else
4094 Res = CurSquare; // 1.0*CurSquare.
Mikhail Glushenkovbfdfea82010-01-01 04:41:36 +00004095 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004096
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004097 CurSquare = DAG.getNode(ISD::FMUL, DL, CurSquare.getValueType(),
4098 CurSquare, CurSquare);
4099 Val >>= 1;
4100 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004101
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004102 // If the original was negative, invert the result, producing 1/(x*x*x).
4103 if (RHSC->getSExtValue() < 0)
4104 Res = DAG.getNode(ISD::FDIV, DL, LHS.getValueType(),
4105 DAG.getConstantFP(1.0, LHS.getValueType()), Res);
4106 return Res;
4107 }
4108 }
4109
4110 // Otherwise, expand to a libcall.
4111 return DAG.getNode(ISD::FPOWI, DL, LHS.getValueType(), LHS, RHS);
4112}
4113
4114
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004115/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
4116/// we want to emit this as a call to a named external function, return the name
4117/// otherwise lower it and return null.
4118const char *
Dan Gohman2048b852009-11-23 18:04:58 +00004119SelectionDAGBuilder::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004120 DebugLoc dl = getCurDebugLoc();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004121 SDValue Res;
4122
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004123 switch (Intrinsic) {
4124 default:
4125 // By default, turn this into a target intrinsic node.
4126 visitTargetIntrinsic(I, Intrinsic);
4127 return 0;
4128 case Intrinsic::vastart: visitVAStart(I); return 0;
4129 case Intrinsic::vaend: visitVAEnd(I); return 0;
4130 case Intrinsic::vacopy: visitVACopy(I); return 0;
4131 case Intrinsic::returnaddress:
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004132 Res = DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
4133 getValue(I.getOperand(1)));
4134 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004135 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004136 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00004137 case Intrinsic::frameaddress:
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004138 Res = DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
4139 getValue(I.getOperand(1)));
4140 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004141 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004142 return 0;
4143 case Intrinsic::setjmp:
4144 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004145 case Intrinsic::longjmp:
4146 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
Chris Lattner824b9582008-11-21 16:42:48 +00004147 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004148 SDValue Op1 = getValue(I.getOperand(1));
4149 SDValue Op2 = getValue(I.getOperand(2));
4150 SDValue Op3 = getValue(I.getOperand(3));
4151 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004152 Res = DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
4153 I.getOperand(1), 0, I.getOperand(2), 0);
4154 DAG.setRoot(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004155 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004156 return 0;
4157 }
Chris Lattner824b9582008-11-21 16:42:48 +00004158 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004159 SDValue Op1 = getValue(I.getOperand(1));
4160 SDValue Op2 = getValue(I.getOperand(2));
4161 SDValue Op3 = getValue(I.getOperand(3));
4162 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004163 Res = DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
4164 I.getOperand(1), 0);
4165 DAG.setRoot(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004166 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004167 return 0;
4168 }
Chris Lattner824b9582008-11-21 16:42:48 +00004169 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004170 SDValue Op1 = getValue(I.getOperand(1));
4171 SDValue Op2 = getValue(I.getOperand(2));
4172 SDValue Op3 = getValue(I.getOperand(3));
4173 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
4174
4175 // If the source and destination are known to not be aliases, we can
4176 // lower memmove as memcpy.
4177 uint64_t Size = -1ULL;
4178 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004179 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004180 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
4181 AliasAnalysis::NoAlias) {
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004182 Res = DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
4183 I.getOperand(1), 0, I.getOperand(2), 0);
4184 DAG.setRoot(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004185 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004186 return 0;
4187 }
4188
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004189 Res = DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
4190 I.getOperand(1), 0, I.getOperand(2), 0);
4191 DAG.setRoot(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004192 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004193 return 0;
4194 }
Bill Wendling92c1e122009-02-13 02:16:35 +00004195 case Intrinsic::dbg_declare: {
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004196 if (OptLevel != CodeGenOpt::None)
Devang Patel7e1e31f2009-07-02 22:43:26 +00004197 // FIXME: Variable debug info is not supported here.
4198 return 0;
Devang Patel24f20e02009-08-22 17:12:53 +00004199 DwarfWriter *DW = DAG.getDwarfWriter();
4200 if (!DW)
4201 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00004202 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Chris Lattnerbf0ca2b2009-12-29 09:32:19 +00004203 if (!DIDescriptor::ValidDebugInfo(DI.getVariable(), CodeGenOpt::None))
Devang Patel7e1e31f2009-07-02 22:43:26 +00004204 return 0;
4205
Devang Patelac1ceb32009-10-09 22:42:28 +00004206 MDNode *Variable = DI.getVariable();
Devang Patel24f20e02009-08-22 17:12:53 +00004207 Value *Address = DI.getAddress();
4208 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
4209 Address = BCI->getOperand(0);
4210 AllocaInst *AI = dyn_cast<AllocaInst>(Address);
4211 // Don't handle byval struct arguments or VLAs, for example.
4212 if (!AI)
4213 return 0;
Devang Patelbd1d6a82009-09-05 00:34:14 +00004214 DenseMap<const AllocaInst*, int>::iterator SI =
4215 FuncInfo.StaticAllocaMap.find(AI);
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004216 if (SI == FuncInfo.StaticAllocaMap.end())
Devang Patelbd1d6a82009-09-05 00:34:14 +00004217 return 0; // VLAs.
4218 int FI = SI->second;
Devang Patel70d75ca2009-11-12 19:02:56 +00004219
Chris Lattner3990b122009-12-28 23:41:32 +00004220 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo())
4221 if (MDNode *Dbg = DI.getMetadata("dbg"))
Chris Lattner0eb41982009-12-28 20:45:51 +00004222 MMI->setVariableDbgInfo(Variable, FI, Dbg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004223 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00004224 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004225 case Intrinsic::eh_exception: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004226 // Insert the EXCEPTIONADDR instruction.
Duncan Sandsb0f1e172009-05-22 20:36:31 +00004227 assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004228 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004229 SDValue Ops[1];
4230 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004231 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004232 setValue(&I, Op);
4233 DAG.setRoot(Op.getValue(1));
Bill Wendling187361b2010-01-23 10:26:57 +00004234 DAG.AssignOrdering(Op.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004235 return 0;
4236 }
4237
Duncan Sandsb01bbdc2009-10-14 16:11:37 +00004238 case Intrinsic::eh_selector: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004239 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004240
Chris Lattner3a5815f2009-09-17 23:54:54 +00004241 if (CurMBB->isLandingPad())
4242 AddCatchInfo(I, MMI, CurMBB);
4243 else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004244#ifndef NDEBUG
Chris Lattner3a5815f2009-09-17 23:54:54 +00004245 FuncInfo.CatchInfoLost.insert(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004246#endif
Chris Lattner3a5815f2009-09-17 23:54:54 +00004247 // FIXME: Mark exception selector register as live in. Hack for PR1508.
4248 unsigned Reg = TLI.getExceptionSelectorRegister();
4249 if (Reg) CurMBB->addLiveIn(Reg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004250 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004251
Chris Lattner3a5815f2009-09-17 23:54:54 +00004252 // Insert the EHSELECTION instruction.
4253 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
4254 SDValue Ops[2];
4255 Ops[0] = getValue(I.getOperand(1));
4256 Ops[1] = getRoot();
4257 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
4258
4259 DAG.setRoot(Op.getValue(1));
4260
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004261 Res = DAG.getSExtOrTrunc(Op, dl, MVT::i32);
4262 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004263 DAG.AssignOrdering(Op.getNode(), SDNodeOrder);
4264 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004265 return 0;
4266 }
4267
Duncan Sandsb01bbdc2009-10-14 16:11:37 +00004268 case Intrinsic::eh_typeid_for: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004269 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004270
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004271 if (MMI) {
4272 // Find the type id for the given typeinfo.
4273 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004274 unsigned TypeID = MMI->getTypeIDFor(GV);
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004275 Res = DAG.getConstant(TypeID, MVT::i32);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004276 } else {
4277 // Return something different to eh_selector.
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004278 Res = DAG.getConstant(1, MVT::i32);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004279 }
4280
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004281 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004282 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004283 return 0;
4284 }
4285
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004286 case Intrinsic::eh_return_i32:
4287 case Intrinsic::eh_return_i64:
4288 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004289 MMI->setCallsEHReturn(true);
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004290 Res = DAG.getNode(ISD::EH_RETURN, dl,
4291 MVT::Other,
4292 getControlRoot(),
4293 getValue(I.getOperand(1)),
4294 getValue(I.getOperand(2)));
4295 DAG.setRoot(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004296 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004297 } else {
4298 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4299 }
4300
4301 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004302 case Intrinsic::eh_unwind_init:
4303 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4304 MMI->setCallsUnwindInit(true);
4305 }
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004306 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004307 case Intrinsic::eh_dwarf_cfa: {
Owen Andersone50ed302009-08-10 22:56:29 +00004308 EVT VT = getValue(I.getOperand(1)).getValueType();
Duncan Sands3a66a682009-10-13 21:04:12 +00004309 SDValue CfaArg = DAG.getSExtOrTrunc(getValue(I.getOperand(1)), dl,
4310 TLI.getPointerTy());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004311 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004312 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004313 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004314 TLI.getPointerTy()),
4315 CfaArg);
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004316 SDValue FA = DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004317 TLI.getPointerTy(),
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004318 DAG.getConstant(0, TLI.getPointerTy()));
4319 Res = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
4320 FA, Offset);
4321 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004322 DAG.AssignOrdering(CfaArg.getNode(), SDNodeOrder);
4323 DAG.AssignOrdering(Offset.getNode(), SDNodeOrder);
4324 DAG.AssignOrdering(FA.getNode(), SDNodeOrder);
4325 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004326 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004327 }
Mon P Wang77cdf302008-11-10 20:54:11 +00004328 case Intrinsic::convertff:
4329 case Intrinsic::convertfsi:
4330 case Intrinsic::convertfui:
4331 case Intrinsic::convertsif:
4332 case Intrinsic::convertuif:
4333 case Intrinsic::convertss:
4334 case Intrinsic::convertsu:
4335 case Intrinsic::convertus:
4336 case Intrinsic::convertuu: {
4337 ISD::CvtCode Code = ISD::CVT_INVALID;
4338 switch (Intrinsic) {
4339 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4340 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4341 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4342 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4343 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4344 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4345 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4346 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4347 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4348 }
Owen Andersone50ed302009-08-10 22:56:29 +00004349 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004350 Value *Op1 = I.getOperand(1);
4351 Res = DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
4352 DAG.getValueType(DestVT),
4353 DAG.getValueType(getValue(Op1).getValueType()),
4354 getValue(I.getOperand(2)),
4355 getValue(I.getOperand(3)),
4356 Code);
4357 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004358 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Mon P Wang77cdf302008-11-10 20:54:11 +00004359 return 0;
4360 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004361 case Intrinsic::sqrt:
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004362 Res = DAG.getNode(ISD::FSQRT, dl,
4363 getValue(I.getOperand(1)).getValueType(),
4364 getValue(I.getOperand(1)));
4365 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004366 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004367 return 0;
4368 case Intrinsic::powi:
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004369 Res = ExpandPowI(dl, getValue(I.getOperand(1)), getValue(I.getOperand(2)),
4370 DAG);
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004371 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004372 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004373 return 0;
4374 case Intrinsic::sin:
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004375 Res = DAG.getNode(ISD::FSIN, dl,
4376 getValue(I.getOperand(1)).getValueType(),
4377 getValue(I.getOperand(1)));
4378 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004379 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004380 return 0;
4381 case Intrinsic::cos:
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004382 Res = DAG.getNode(ISD::FCOS, dl,
4383 getValue(I.getOperand(1)).getValueType(),
4384 getValue(I.getOperand(1)));
4385 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004386 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004387 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004388 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004389 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004390 return 0;
4391 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004392 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004393 return 0;
4394 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004395 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004396 return 0;
4397 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004398 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004399 return 0;
4400 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004401 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004402 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004403 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004404 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004405 return 0;
4406 case Intrinsic::pcmarker: {
4407 SDValue Tmp = getValue(I.getOperand(1));
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004408 Res = DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp);
4409 DAG.setRoot(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004410 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004411 return 0;
4412 }
4413 case Intrinsic::readcyclecounter: {
4414 SDValue Op = getRoot();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004415 Res = DAG.getNode(ISD::READCYCLECOUNTER, dl,
4416 DAG.getVTList(MVT::i64, MVT::Other),
4417 &Op, 1);
4418 setValue(&I, Res);
4419 DAG.setRoot(Res.getValue(1));
Bill Wendling187361b2010-01-23 10:26:57 +00004420 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004421 return 0;
4422 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004423 case Intrinsic::bswap:
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004424 Res = DAG.getNode(ISD::BSWAP, dl,
4425 getValue(I.getOperand(1)).getValueType(),
4426 getValue(I.getOperand(1)));
4427 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004428 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004429 return 0;
4430 case Intrinsic::cttz: {
4431 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004432 EVT Ty = Arg.getValueType();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004433 Res = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
4434 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004435 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004436 return 0;
4437 }
4438 case Intrinsic::ctlz: {
4439 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004440 EVT Ty = Arg.getValueType();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004441 Res = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
4442 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004443 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004444 return 0;
4445 }
4446 case Intrinsic::ctpop: {
4447 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004448 EVT Ty = Arg.getValueType();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004449 Res = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
4450 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004451 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004452 return 0;
4453 }
4454 case Intrinsic::stacksave: {
4455 SDValue Op = getRoot();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004456 Res = DAG.getNode(ISD::STACKSAVE, dl,
4457 DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1);
4458 setValue(&I, Res);
4459 DAG.setRoot(Res.getValue(1));
Bill Wendling187361b2010-01-23 10:26:57 +00004460 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004461 return 0;
4462 }
4463 case Intrinsic::stackrestore: {
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004464 Res = getValue(I.getOperand(1));
4465 Res = DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Res);
4466 DAG.setRoot(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004467 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004468 return 0;
4469 }
Bill Wendling57344502008-11-18 11:01:33 +00004470 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004471 // Emit code into the DAG to store the stack guard onto the stack.
4472 MachineFunction &MF = DAG.getMachineFunction();
4473 MachineFrameInfo *MFI = MF.getFrameInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00004474 EVT PtrTy = TLI.getPointerTy();
Bill Wendlingb2a42982008-11-06 02:29:10 +00004475
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004476 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4477 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004478
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004479 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004480 MFI->setStackProtectorIndex(FI);
4481
4482 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4483
4484 // Store the stack protector onto the stack.
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004485 Res = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
4486 PseudoSourceValue::getFixedStack(FI),
4487 0, true);
4488 setValue(&I, Res);
4489 DAG.setRoot(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004490 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendlingb2a42982008-11-06 02:29:10 +00004491 return 0;
4492 }
Eric Christopher7b5e6172009-10-27 00:52:25 +00004493 case Intrinsic::objectsize: {
4494 // If we don't know by now, we're never going to know.
4495 ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(2));
4496
4497 assert(CI && "Non-constant type in __builtin_object_size?");
4498
Eric Christopher7e5d2ff2009-10-28 21:32:16 +00004499 SDValue Arg = getValue(I.getOperand(0));
4500 EVT Ty = Arg.getValueType();
4501
Eric Christopherd060b252009-12-23 02:51:48 +00004502 if (CI->getZExtValue() == 0)
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004503 Res = DAG.getConstant(-1ULL, Ty);
Eric Christopher7b5e6172009-10-27 00:52:25 +00004504 else
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004505 Res = DAG.getConstant(0, Ty);
4506
4507 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004508 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Eric Christopher7b5e6172009-10-27 00:52:25 +00004509 return 0;
4510 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004511 case Intrinsic::var_annotation:
4512 // Discard annotate attributes
4513 return 0;
4514
4515 case Intrinsic::init_trampoline: {
4516 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4517
4518 SDValue Ops[6];
4519 Ops[0] = getRoot();
4520 Ops[1] = getValue(I.getOperand(1));
4521 Ops[2] = getValue(I.getOperand(2));
4522 Ops[3] = getValue(I.getOperand(3));
4523 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4524 Ops[5] = DAG.getSrcValue(F);
4525
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004526 Res = DAG.getNode(ISD::TRAMPOLINE, dl,
4527 DAG.getVTList(TLI.getPointerTy(), MVT::Other),
4528 Ops, 6);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004529
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004530 setValue(&I, Res);
4531 DAG.setRoot(Res.getValue(1));
Bill Wendling187361b2010-01-23 10:26:57 +00004532 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004533 return 0;
4534 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004535 case Intrinsic::gcroot:
4536 if (GFI) {
4537 Value *Alloca = I.getOperand(1);
4538 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004539
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004540 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4541 GFI->addStackRoot(FI->getIndex(), TypeMap);
4542 }
4543 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004544 case Intrinsic::gcread:
4545 case Intrinsic::gcwrite:
Torok Edwinc23197a2009-07-14 16:55:14 +00004546 llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004547 return 0;
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004548 case Intrinsic::flt_rounds:
4549 Res = DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32);
4550 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004551 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004552 return 0;
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004553 case Intrinsic::trap:
4554 Res = DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot());
4555 DAG.setRoot(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004556 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004557 return 0;
Bill Wendlingef375462008-11-21 02:38:44 +00004558 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004559 return implVisitAluOverflow(I, ISD::UADDO);
4560 case Intrinsic::sadd_with_overflow:
4561 return implVisitAluOverflow(I, ISD::SADDO);
4562 case Intrinsic::usub_with_overflow:
4563 return implVisitAluOverflow(I, ISD::USUBO);
4564 case Intrinsic::ssub_with_overflow:
4565 return implVisitAluOverflow(I, ISD::SSUBO);
4566 case Intrinsic::umul_with_overflow:
4567 return implVisitAluOverflow(I, ISD::UMULO);
4568 case Intrinsic::smul_with_overflow:
4569 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004570
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004571 case Intrinsic::prefetch: {
4572 SDValue Ops[4];
4573 Ops[0] = getRoot();
4574 Ops[1] = getValue(I.getOperand(1));
4575 Ops[2] = getValue(I.getOperand(2));
4576 Ops[3] = getValue(I.getOperand(3));
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004577 Res = DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4);
4578 DAG.setRoot(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004579 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004580 return 0;
4581 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004582
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004583 case Intrinsic::memory_barrier: {
4584 SDValue Ops[6];
4585 Ops[0] = getRoot();
4586 for (int x = 1; x < 6; ++x)
4587 Ops[x] = getValue(I.getOperand(x));
4588
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004589 Res = DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6);
4590 DAG.setRoot(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004591 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004592 return 0;
4593 }
4594 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004595 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004596 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004597 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004598 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4599 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004600 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004601 getValue(I.getOperand(2)),
4602 getValue(I.getOperand(3)),
4603 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004604 setValue(&I, L);
4605 DAG.setRoot(L.getValue(1));
Bill Wendling187361b2010-01-23 10:26:57 +00004606 DAG.AssignOrdering(L.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004607 return 0;
4608 }
4609 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004610 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004611 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004612 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004613 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004614 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004615 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004616 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004617 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004618 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004619 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004620 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004621 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004622 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004623 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004624 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004625 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004626 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004627 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004628 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004629 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004630 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Duncan Sandsf07c9492009-11-10 09:08:09 +00004631
4632 case Intrinsic::invariant_start:
4633 case Intrinsic::lifetime_start:
4634 // Discard region information.
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004635 Res = DAG.getUNDEF(TLI.getPointerTy());
4636 setValue(&I, Res);
Bill Wendling187361b2010-01-23 10:26:57 +00004637 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Duncan Sandsf07c9492009-11-10 09:08:09 +00004638 return 0;
4639 case Intrinsic::invariant_end:
4640 case Intrinsic::lifetime_end:
4641 // Discard region information.
4642 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004643 }
4644}
4645
Dan Gohman98ca4f22009-08-05 01:29:28 +00004646/// Test if the given instruction is in a position to be optimized
4647/// with a tail-call. This roughly means that it's in a block with
4648/// a return and there's nothing that needs to be scheduled
4649/// between it and the return.
4650///
4651/// This function only tests target-independent requirements.
4652/// For target-dependent requirements, a target should override
4653/// TargetLowering::IsEligibleForTailCallOptimization.
4654///
4655static bool
Dan Gohman01205a82009-11-13 18:49:38 +00004656isInTailCallPosition(const Instruction *I, Attributes CalleeRetAttr,
Dan Gohman98ca4f22009-08-05 01:29:28 +00004657 const TargetLowering &TLI) {
4658 const BasicBlock *ExitBB = I->getParent();
4659 const TerminatorInst *Term = ExitBB->getTerminator();
4660 const ReturnInst *Ret = dyn_cast<ReturnInst>(Term);
4661 const Function *F = ExitBB->getParent();
4662
4663 // The block must end in a return statement or an unreachable.
4664 if (!Ret && !isa<UnreachableInst>(Term)) return false;
4665
4666 // If I will have a chain, make sure no other instruction that will have a
4667 // chain interposes between I and the return.
4668 if (I->mayHaveSideEffects() || I->mayReadFromMemory() ||
4669 !I->isSafeToSpeculativelyExecute())
4670 for (BasicBlock::const_iterator BBI = prior(prior(ExitBB->end())); ;
4671 --BBI) {
4672 if (&*BBI == I)
4673 break;
4674 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() ||
4675 !BBI->isSafeToSpeculativelyExecute())
4676 return false;
4677 }
4678
4679 // If the block ends with a void return or unreachable, it doesn't matter
4680 // what the call's return type is.
4681 if (!Ret || Ret->getNumOperands() == 0) return true;
4682
Dan Gohmaned9bab32009-11-14 02:06:30 +00004683 // If the return value is undef, it doesn't matter what the call's
4684 // return type is.
4685 if (isa<UndefValue>(Ret->getOperand(0))) return true;
4686
Dan Gohman98ca4f22009-08-05 01:29:28 +00004687 // Conservatively require the attributes of the call to match those of
Dan Gohman01205a82009-11-13 18:49:38 +00004688 // the return. Ignore noalias because it doesn't affect the call sequence.
4689 unsigned CallerRetAttr = F->getAttributes().getRetAttributes();
4690 if ((CalleeRetAttr ^ CallerRetAttr) & ~Attribute::NoAlias)
Dan Gohman98ca4f22009-08-05 01:29:28 +00004691 return false;
4692
4693 // Otherwise, make sure the unmodified return value of I is the return value.
4694 for (const Instruction *U = dyn_cast<Instruction>(Ret->getOperand(0)); ;
4695 U = dyn_cast<Instruction>(U->getOperand(0))) {
4696 if (!U)
4697 return false;
4698 if (!U->hasOneUse())
4699 return false;
4700 if (U == I)
4701 break;
4702 // Check for a truly no-op truncate.
4703 if (isa<TruncInst>(U) &&
4704 TLI.isTruncateFree(U->getOperand(0)->getType(), U->getType()))
4705 continue;
4706 // Check for a truly no-op bitcast.
4707 if (isa<BitCastInst>(U) &&
4708 (U->getOperand(0)->getType() == U->getType() ||
4709 (isa<PointerType>(U->getOperand(0)->getType()) &&
4710 isa<PointerType>(U->getType()))))
4711 continue;
4712 // Otherwise it's not a true no-op.
4713 return false;
4714 }
4715
4716 return true;
4717}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004718
Dan Gohman2048b852009-11-23 18:04:58 +00004719void SelectionDAGBuilder::LowerCallTo(CallSite CS, SDValue Callee,
4720 bool isTailCall,
4721 MachineBasicBlock *LandingPad) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004722 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4723 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004724 const Type *RetTy = FTy->getReturnType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004725 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4726 unsigned BeginLabel = 0, EndLabel = 0;
4727
4728 TargetLowering::ArgListTy Args;
4729 TargetLowering::ArgListEntry Entry;
4730 Args.reserve(CS.arg_size());
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004731
4732 // Check whether the function can return without sret-demotion.
4733 SmallVector<EVT, 4> OutVTs;
4734 SmallVector<ISD::ArgFlagsTy, 4> OutsFlags;
4735 SmallVector<uint64_t, 4> Offsets;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004736 getReturnInfo(RetTy, CS.getAttributes().getRetAttributes(),
Bill Wendlinge80ae832009-12-22 00:50:32 +00004737 OutVTs, OutsFlags, TLI, &Offsets);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004738
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004739 bool CanLowerReturn = TLI.CanLowerReturn(CS.getCallingConv(),
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004740 FTy->isVarArg(), OutVTs, OutsFlags, DAG);
4741
4742 SDValue DemoteStackSlot;
4743
4744 if (!CanLowerReturn) {
4745 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(
4746 FTy->getReturnType());
4747 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(
4748 FTy->getReturnType());
4749 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00004750 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align, false);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004751 const Type *StackSlotPtrType = PointerType::getUnqual(FTy->getReturnType());
4752
4753 DemoteStackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4754 Entry.Node = DemoteStackSlot;
4755 Entry.Ty = StackSlotPtrType;
4756 Entry.isSExt = false;
4757 Entry.isZExt = false;
4758 Entry.isInReg = false;
4759 Entry.isSRet = true;
4760 Entry.isNest = false;
4761 Entry.isByVal = false;
4762 Entry.Alignment = Align;
4763 Args.push_back(Entry);
4764 RetTy = Type::getVoidTy(FTy->getContext());
4765 }
4766
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004767 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004768 i != e; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004769 SDValue ArgNode = getValue(*i);
4770 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4771
4772 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004773 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4774 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4775 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4776 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4777 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4778 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004779 Entry.Alignment = CS.getParamAlignment(attrInd);
4780 Args.push_back(Entry);
4781 }
4782
4783 if (LandingPad && MMI) {
4784 // Insert a label before the invoke call to mark the try range. This can be
4785 // used to detect deletion of the invoke via the MachineModuleInfo.
4786 BeginLabel = MMI->NextLabelID();
Jim Grosbach1b747ad2009-08-11 00:09:57 +00004787
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004788 // Both PendingLoads and PendingExports must be flushed here;
4789 // this call might not return.
4790 (void)getRoot();
Bill Wendling0d580132009-12-23 01:28:19 +00004791 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4792 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004793 }
4794
Dan Gohman98ca4f22009-08-05 01:29:28 +00004795 // Check if target-independent constraints permit a tail call here.
4796 // Target-dependent constraints are checked within TLI.LowerCallTo.
4797 if (isTailCall &&
4798 !isInTailCallPosition(CS.getInstruction(),
4799 CS.getAttributes().getRetAttributes(),
4800 TLI))
4801 isTailCall = false;
4802
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004803 std::pair<SDValue,SDValue> Result =
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004804 TLI.LowerCallTo(getRoot(), RetTy,
Devang Patel05988662008-09-25 21:00:45 +00004805 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004806 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00004807 CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004808 CS.getCallingConv(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00004809 isTailCall,
4810 !CS.getInstruction()->use_empty(),
Bill Wendling3ea3c242009-12-22 02:10:19 +00004811 Callee, Args, DAG, getCurDebugLoc(), SDNodeOrder);
Dan Gohman98ca4f22009-08-05 01:29:28 +00004812 assert((isTailCall || Result.second.getNode()) &&
4813 "Non-null chain expected with non-tail call!");
4814 assert((Result.second.getNode() || !Result.first.getNode()) &&
4815 "Null value expected with tail call!");
Bill Wendlinge80ae832009-12-22 00:50:32 +00004816 if (Result.first.getNode()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004817 setValue(CS.getInstruction(), Result.first);
Bill Wendling187361b2010-01-23 10:26:57 +00004818 DAG.AssignOrdering(Result.first.getNode(), SDNodeOrder);
Bill Wendlinge80ae832009-12-22 00:50:32 +00004819 } else if (!CanLowerReturn && Result.second.getNode()) {
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004820 // The instruction result is the result of loading from the
4821 // hidden sret parameter.
4822 SmallVector<EVT, 1> PVTs;
4823 const Type *PtrRetTy = PointerType::getUnqual(FTy->getReturnType());
4824
4825 ComputeValueVTs(TLI, PtrRetTy, PVTs);
4826 assert(PVTs.size() == 1 && "Pointers should fit in one register");
4827 EVT PtrVT = PVTs[0];
4828 unsigned NumValues = OutVTs.size();
4829 SmallVector<SDValue, 4> Values(NumValues);
4830 SmallVector<SDValue, 4> Chains(NumValues);
4831
4832 for (unsigned i = 0; i < NumValues; ++i) {
Bill Wendlinge80ae832009-12-22 00:50:32 +00004833 SDValue Add = DAG.getNode(ISD::ADD, getCurDebugLoc(), PtrVT,
4834 DemoteStackSlot,
4835 DAG.getConstant(Offsets[i], PtrVT));
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004836 SDValue L = DAG.getLoad(OutVTs[i], getCurDebugLoc(), Result.second,
Bill Wendlinge80ae832009-12-22 00:50:32 +00004837 Add, NULL, Offsets[i], false, 1);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004838 Values[i] = L;
4839 Chains[i] = L.getValue(1);
4840 }
Bill Wendlinge80ae832009-12-22 00:50:32 +00004841
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004842 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
4843 MVT::Other, &Chains[0], NumValues);
4844 PendingLoads.push_back(Chain);
Kenneth Uildriks93ae4072010-01-16 23:37:33 +00004845
4846 // Collect the legal value parts into potentially illegal values
4847 // that correspond to the original function's return values.
4848 SmallVector<EVT, 4> RetTys;
4849 RetTy = FTy->getReturnType();
4850 ComputeValueVTs(TLI, RetTy, RetTys);
4851 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4852 SmallVector<SDValue, 4> ReturnValues;
4853 unsigned CurReg = 0;
4854 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
4855 EVT VT = RetTys[I];
4856 EVT RegisterVT = TLI.getRegisterType(RetTy->getContext(), VT);
4857 unsigned NumRegs = TLI.getNumRegisters(RetTy->getContext(), VT);
4858
4859 SDValue ReturnValue =
4860 getCopyFromParts(DAG, getCurDebugLoc(), SDNodeOrder, &Values[CurReg], NumRegs,
4861 RegisterVT, VT, AssertOp);
4862 ReturnValues.push_back(ReturnValue);
Bill Wendling187361b2010-01-23 10:26:57 +00004863 DAG.AssignOrdering(ReturnValue.getNode(), SDNodeOrder);
Kenneth Uildriks93ae4072010-01-16 23:37:33 +00004864 CurReg += NumRegs;
4865 }
4866 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
4867 DAG.getVTList(&RetTys[0], RetTys.size()),
4868 &ReturnValues[0], ReturnValues.size());
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004869
Kenneth Uildriks93ae4072010-01-16 23:37:33 +00004870 setValue(CS.getInstruction(), Res);
Bill Wendlinge80ae832009-12-22 00:50:32 +00004871
Bill Wendling187361b2010-01-23 10:26:57 +00004872 DAG.AssignOrdering(Chain.getNode(), SDNodeOrder);
4873 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004874 }
Bill Wendlinge80ae832009-12-22 00:50:32 +00004875
4876 // As a special case, a null chain means that a tail call has been emitted and
4877 // the DAG root is already updated.
4878 if (Result.second.getNode()) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00004879 DAG.setRoot(Result.second);
Bill Wendling187361b2010-01-23 10:26:57 +00004880 DAG.AssignOrdering(Result.second.getNode(), SDNodeOrder);
Bill Wendlinge80ae832009-12-22 00:50:32 +00004881 } else {
Dan Gohman98ca4f22009-08-05 01:29:28 +00004882 HasTailCall = true;
Bill Wendlinge80ae832009-12-22 00:50:32 +00004883 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004884
4885 if (LandingPad && MMI) {
4886 // Insert a label at the end of the invoke call to mark the try range. This
4887 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4888 EndLabel = MMI->NextLabelID();
Bill Wendling0d580132009-12-23 01:28:19 +00004889 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4890 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004891
4892 // Inform MachineModuleInfo of range.
4893 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4894 }
4895}
4896
Chris Lattner8047d9a2009-12-24 00:37:38 +00004897/// IsOnlyUsedInZeroEqualityComparison - Return true if it only matters that the
4898/// value is equal or not-equal to zero.
4899static bool IsOnlyUsedInZeroEqualityComparison(Value *V) {
4900 for (Value::use_iterator UI = V->use_begin(), E = V->use_end();
4901 UI != E; ++UI) {
4902 if (ICmpInst *IC = dyn_cast<ICmpInst>(*UI))
4903 if (IC->isEquality())
4904 if (Constant *C = dyn_cast<Constant>(IC->getOperand(1)))
4905 if (C->isNullValue())
4906 continue;
4907 // Unknown instruction.
4908 return false;
4909 }
4910 return true;
4911}
4912
Chris Lattner04b091a2009-12-24 01:07:17 +00004913static SDValue getMemCmpLoad(Value *PtrVal, MVT LoadVT, const Type *LoadTy,
Chris Lattner8047d9a2009-12-24 00:37:38 +00004914 SelectionDAGBuilder &Builder) {
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004915
Chris Lattner8047d9a2009-12-24 00:37:38 +00004916 // Check to see if this load can be trivially constant folded, e.g. if the
4917 // input is from a string literal.
4918 if (Constant *LoadInput = dyn_cast<Constant>(PtrVal)) {
4919 // Cast pointer to the type we really want to load.
4920 LoadInput = ConstantExpr::getBitCast(LoadInput,
4921 PointerType::getUnqual(LoadTy));
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004922
Chris Lattner8047d9a2009-12-24 00:37:38 +00004923 if (Constant *LoadCst = ConstantFoldLoadFromConstPtr(LoadInput, Builder.TD))
4924 return Builder.getValue(LoadCst);
4925 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004926
Chris Lattner8047d9a2009-12-24 00:37:38 +00004927 // Otherwise, we have to emit the load. If the pointer is to unfoldable but
4928 // still constant memory, the input chain can be the entry node.
4929 SDValue Root;
4930 bool ConstantMemory = false;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004931
Chris Lattner8047d9a2009-12-24 00:37:38 +00004932 // Do not serialize (non-volatile) loads of constant memory with anything.
4933 if (Builder.AA->pointsToConstantMemory(PtrVal)) {
4934 Root = Builder.DAG.getEntryNode();
4935 ConstantMemory = true;
4936 } else {
4937 // Do not serialize non-volatile loads against each other.
4938 Root = Builder.DAG.getRoot();
4939 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004940
Chris Lattner8047d9a2009-12-24 00:37:38 +00004941 SDValue Ptr = Builder.getValue(PtrVal);
4942 SDValue LoadVal = Builder.DAG.getLoad(LoadVT, Builder.getCurDebugLoc(), Root,
4943 Ptr, PtrVal /*SrcValue*/, 0/*SVOffset*/,
4944 false /*volatile*/, 1 /* align=1 */);
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004945
Chris Lattner8047d9a2009-12-24 00:37:38 +00004946 if (!ConstantMemory)
4947 Builder.PendingLoads.push_back(LoadVal.getValue(1));
4948 return LoadVal;
4949}
4950
4951
4952/// visitMemCmpCall - See if we can lower a call to memcmp in an optimized form.
4953/// If so, return true and lower it, otherwise return false and it will be
4954/// lowered like a normal call.
4955bool SelectionDAGBuilder::visitMemCmpCall(CallInst &I) {
4956 // Verify that the prototype makes sense. int memcmp(void*,void*,size_t)
4957 if (I.getNumOperands() != 4)
4958 return false;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004959
Chris Lattner8047d9a2009-12-24 00:37:38 +00004960 Value *LHS = I.getOperand(1), *RHS = I.getOperand(2);
4961 if (!isa<PointerType>(LHS->getType()) || !isa<PointerType>(RHS->getType()) ||
4962 !isa<IntegerType>(I.getOperand(3)->getType()) ||
4963 !isa<IntegerType>(I.getType()))
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004964 return false;
4965
Chris Lattner8047d9a2009-12-24 00:37:38 +00004966 ConstantInt *Size = dyn_cast<ConstantInt>(I.getOperand(3));
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004967
Chris Lattner8047d9a2009-12-24 00:37:38 +00004968 // memcmp(S1,S2,2) != 0 -> (*(short*)LHS != *(short*)RHS) != 0
4969 // memcmp(S1,S2,4) != 0 -> (*(int*)LHS != *(int*)RHS) != 0
Chris Lattner04b091a2009-12-24 01:07:17 +00004970 if (Size && IsOnlyUsedInZeroEqualityComparison(&I)) {
4971 bool ActuallyDoIt = true;
4972 MVT LoadVT;
4973 const Type *LoadTy;
4974 switch (Size->getZExtValue()) {
4975 default:
4976 LoadVT = MVT::Other;
4977 LoadTy = 0;
4978 ActuallyDoIt = false;
4979 break;
4980 case 2:
4981 LoadVT = MVT::i16;
4982 LoadTy = Type::getInt16Ty(Size->getContext());
4983 break;
4984 case 4:
4985 LoadVT = MVT::i32;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004986 LoadTy = Type::getInt32Ty(Size->getContext());
Chris Lattner04b091a2009-12-24 01:07:17 +00004987 break;
4988 case 8:
4989 LoadVT = MVT::i64;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004990 LoadTy = Type::getInt64Ty(Size->getContext());
Chris Lattner04b091a2009-12-24 01:07:17 +00004991 break;
4992 /*
4993 case 16:
4994 LoadVT = MVT::v4i32;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004995 LoadTy = Type::getInt32Ty(Size->getContext());
Chris Lattner04b091a2009-12-24 01:07:17 +00004996 LoadTy = VectorType::get(LoadTy, 4);
4997 break;
4998 */
4999 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005000
Chris Lattner04b091a2009-12-24 01:07:17 +00005001 // This turns into unaligned loads. We only do this if the target natively
5002 // supports the MVT we'll be loading or if it is small enough (<= 4) that
5003 // we'll only produce a small number of byte loads.
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005004
Chris Lattner04b091a2009-12-24 01:07:17 +00005005 // Require that we can find a legal MVT, and only do this if the target
5006 // supports unaligned loads of that type. Expanding into byte loads would
5007 // bloat the code.
5008 if (ActuallyDoIt && Size->getZExtValue() > 4) {
5009 // TODO: Handle 5 byte compare as 4-byte + 1 byte.
5010 // TODO: Handle 8 byte compare on x86-32 as two 32-bit loads.
5011 if (!TLI.isTypeLegal(LoadVT) ||!TLI.allowsUnalignedMemoryAccesses(LoadVT))
5012 ActuallyDoIt = false;
5013 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005014
Chris Lattner04b091a2009-12-24 01:07:17 +00005015 if (ActuallyDoIt) {
5016 SDValue LHSVal = getMemCmpLoad(LHS, LoadVT, LoadTy, *this);
5017 SDValue RHSVal = getMemCmpLoad(RHS, LoadVT, LoadTy, *this);
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005018
Chris Lattner04b091a2009-12-24 01:07:17 +00005019 SDValue Res = DAG.getSetCC(getCurDebugLoc(), MVT::i1, LHSVal, RHSVal,
5020 ISD::SETNE);
5021 EVT CallVT = TLI.getValueType(I.getType(), true);
5022 setValue(&I, DAG.getZExtOrTrunc(Res, getCurDebugLoc(), CallVT));
5023 return true;
5024 }
Chris Lattner8047d9a2009-12-24 00:37:38 +00005025 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005026
5027
Chris Lattner8047d9a2009-12-24 00:37:38 +00005028 return false;
5029}
5030
5031
Dan Gohman2048b852009-11-23 18:04:58 +00005032void SelectionDAGBuilder::visitCall(CallInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005033 const char *RenameFn = 0;
5034 if (Function *F = I.getCalledFunction()) {
5035 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00005036 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
5037 if (II) {
5038 if (unsigned IID = II->getIntrinsicID(F)) {
5039 RenameFn = visitIntrinsicCall(I, IID);
5040 if (!RenameFn)
5041 return;
5042 }
5043 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005044 if (unsigned IID = F->getIntrinsicID()) {
5045 RenameFn = visitIntrinsicCall(I, IID);
5046 if (!RenameFn)
5047 return;
5048 }
5049 }
5050
5051 // Check for well-known libc/libm calls. If the function is internal, it
5052 // can't be a library call.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00005053 if (!F->hasLocalLinkage() && F->hasName()) {
5054 StringRef Name = F->getName();
5055 if (Name == "copysign" || Name == "copysignf") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005056 if (I.getNumOperands() == 3 && // Basic sanity checks.
5057 I.getOperand(1)->getType()->isFloatingPoint() &&
5058 I.getType() == I.getOperand(1)->getType() &&
5059 I.getType() == I.getOperand(2)->getType()) {
5060 SDValue LHS = getValue(I.getOperand(1));
5061 SDValue RHS = getValue(I.getOperand(2));
Bill Wendling0d580132009-12-23 01:28:19 +00005062 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
5063 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005064 return;
5065 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00005066 } else if (Name == "fabs" || Name == "fabsf" || Name == "fabsl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005067 if (I.getNumOperands() == 2 && // Basic sanity checks.
5068 I.getOperand(1)->getType()->isFloatingPoint() &&
5069 I.getType() == I.getOperand(1)->getType()) {
5070 SDValue Tmp = getValue(I.getOperand(1));
Bill Wendling0d580132009-12-23 01:28:19 +00005071 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
5072 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005073 return;
5074 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00005075 } else if (Name == "sin" || Name == "sinf" || Name == "sinl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005076 if (I.getNumOperands() == 2 && // Basic sanity checks.
5077 I.getOperand(1)->getType()->isFloatingPoint() &&
Dale Johannesena45bfd32009-09-25 18:00:35 +00005078 I.getType() == I.getOperand(1)->getType() &&
5079 I.onlyReadsMemory()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005080 SDValue Tmp = getValue(I.getOperand(1));
Bill Wendling0d580132009-12-23 01:28:19 +00005081 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
5082 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005083 return;
5084 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00005085 } else if (Name == "cos" || Name == "cosf" || Name == "cosl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005086 if (I.getNumOperands() == 2 && // Basic sanity checks.
5087 I.getOperand(1)->getType()->isFloatingPoint() &&
Dale Johannesena45bfd32009-09-25 18:00:35 +00005088 I.getType() == I.getOperand(1)->getType() &&
5089 I.onlyReadsMemory()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005090 SDValue Tmp = getValue(I.getOperand(1));
Bill Wendling0d580132009-12-23 01:28:19 +00005091 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
5092 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005093 return;
5094 }
Dale Johannesen52fb79b2009-09-25 17:23:22 +00005095 } else if (Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl") {
5096 if (I.getNumOperands() == 2 && // Basic sanity checks.
5097 I.getOperand(1)->getType()->isFloatingPoint() &&
Dale Johannesena45bfd32009-09-25 18:00:35 +00005098 I.getType() == I.getOperand(1)->getType() &&
5099 I.onlyReadsMemory()) {
Dale Johannesen52fb79b2009-09-25 17:23:22 +00005100 SDValue Tmp = getValue(I.getOperand(1));
Bill Wendling0d580132009-12-23 01:28:19 +00005101 setValue(&I, DAG.getNode(ISD::FSQRT, getCurDebugLoc(),
5102 Tmp.getValueType(), Tmp));
Dale Johannesen52fb79b2009-09-25 17:23:22 +00005103 return;
5104 }
Chris Lattner8047d9a2009-12-24 00:37:38 +00005105 } else if (Name == "memcmp") {
5106 if (visitMemCmpCall(I))
5107 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005108 }
5109 }
5110 } else if (isa<InlineAsm>(I.getOperand(0))) {
5111 visitInlineAsm(&I);
5112 return;
5113 }
5114
5115 SDValue Callee;
5116 if (!RenameFn)
5117 Callee = getValue(I.getOperand(0));
5118 else
Bill Wendling056292f2008-09-16 21:48:12 +00005119 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005120
Bill Wendling0d580132009-12-23 01:28:19 +00005121 // Check if we can potentially perform a tail call. More detailed checking is
5122 // be done within LowerCallTo, after more information about the call is known.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005123 bool isTailCall = PerformTailCallOpt && I.isTailCall();
5124
5125 LowerCallTo(&I, Callee, isTailCall);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005126}
5127
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005128/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005129/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005130/// Chain/Flag as the input and updates them for the output Chain/Flag.
5131/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005132SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Bill Wendlingec72e322009-12-22 01:11:43 +00005133 unsigned Order, SDValue &Chain,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005134 SDValue *Flag) const {
5135 // Assemble the legal parts into the final values.
5136 SmallVector<SDValue, 4> Values(ValueVTs.size());
5137 SmallVector<SDValue, 8> Parts;
5138 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
5139 // Copy the legal parts from the registers.
Owen Andersone50ed302009-08-10 22:56:29 +00005140 EVT ValueVT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00005141 unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +00005142 EVT RegisterVT = RegVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005143
5144 Parts.resize(NumRegs);
5145 for (unsigned i = 0; i != NumRegs; ++i) {
5146 SDValue P;
Bill Wendlingec72e322009-12-22 01:11:43 +00005147 if (Flag == 0) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005148 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Bill Wendlingec72e322009-12-22 01:11:43 +00005149 } else {
Dale Johannesena04b7572009-02-03 23:04:43 +00005150 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005151 *Flag = P.getValue(2);
5152 }
Bill Wendlingec72e322009-12-22 01:11:43 +00005153
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005154 Chain = P.getValue(1);
Bill Wendling187361b2010-01-23 10:26:57 +00005155 DAG.AssignOrdering(P.getNode(), Order);
Bill Wendlingec72e322009-12-22 01:11:43 +00005156
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005157 // If the source register was virtual and if we know something about it,
5158 // add an assert node.
5159 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
5160 RegisterVT.isInteger() && !RegisterVT.isVector()) {
5161 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
5162 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5163 if (FLI.LiveOutRegInfo.size() > SlotNo) {
5164 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005165
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005166 unsigned RegSize = RegisterVT.getSizeInBits();
5167 unsigned NumSignBits = LOI.NumSignBits;
5168 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005169
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005170 // FIXME: We capture more information than the dag can represent. For
5171 // now, just use the tightest assertzext/assertsext possible.
5172 bool isSExt = true;
Owen Anderson825b72b2009-08-11 20:47:22 +00005173 EVT FromVT(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005174 if (NumSignBits == RegSize)
Owen Anderson825b72b2009-08-11 20:47:22 +00005175 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005176 else if (NumZeroBits >= RegSize-1)
Owen Anderson825b72b2009-08-11 20:47:22 +00005177 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005178 else if (NumSignBits > RegSize-8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005179 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
Dan Gohman07c26ee2009-03-31 01:38:29 +00005180 else if (NumZeroBits >= RegSize-8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005181 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005182 else if (NumSignBits > RegSize-16)
Owen Anderson825b72b2009-08-11 20:47:22 +00005183 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohman07c26ee2009-03-31 01:38:29 +00005184 else if (NumZeroBits >= RegSize-16)
Owen Anderson825b72b2009-08-11 20:47:22 +00005185 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005186 else if (NumSignBits > RegSize-32)
Owen Anderson825b72b2009-08-11 20:47:22 +00005187 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohman07c26ee2009-03-31 01:38:29 +00005188 else if (NumZeroBits >= RegSize-32)
Owen Anderson825b72b2009-08-11 20:47:22 +00005189 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005190
Owen Anderson825b72b2009-08-11 20:47:22 +00005191 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005192 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005193 RegisterVT, P, DAG.getValueType(FromVT));
Bill Wendling187361b2010-01-23 10:26:57 +00005194 DAG.AssignOrdering(P.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005195 }
5196 }
5197 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005198
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005199 Parts[i] = P;
5200 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005201
Bill Wendling3ea3c242009-12-22 02:10:19 +00005202 Values[Value] = getCopyFromParts(DAG, dl, Order, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005203 NumRegs, RegisterVT, ValueVT);
Bill Wendling187361b2010-01-23 10:26:57 +00005204 DAG.AssignOrdering(Values[Value].getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005205 Part += NumRegs;
5206 Parts.clear();
5207 }
5208
Bill Wendlingec72e322009-12-22 01:11:43 +00005209 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl,
5210 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
5211 &Values[0], ValueVTs.size());
Bill Wendling187361b2010-01-23 10:26:57 +00005212 DAG.AssignOrdering(Res.getNode(), Order);
Bill Wendlingec72e322009-12-22 01:11:43 +00005213 return Res;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005214}
5215
5216/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005217/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005218/// Chain/Flag as the input and updates them for the output Chain/Flag.
5219/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005220void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Bill Wendlingec72e322009-12-22 01:11:43 +00005221 unsigned Order, SDValue &Chain,
5222 SDValue *Flag) const {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005223 // Get the list of the values's legal parts.
5224 unsigned NumRegs = Regs.size();
5225 SmallVector<SDValue, 8> Parts(NumRegs);
5226 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005227 EVT ValueVT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00005228 unsigned NumParts = TLI->getNumRegisters(*DAG.getContext(), ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +00005229 EVT RegisterVT = RegVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005230
Bill Wendling3ea3c242009-12-22 02:10:19 +00005231 getCopyToParts(DAG, dl, Order,
5232 Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005233 &Parts[Part], NumParts, RegisterVT);
5234 Part += NumParts;
5235 }
5236
5237 // Copy the parts into the registers.
5238 SmallVector<SDValue, 8> Chains(NumRegs);
5239 for (unsigned i = 0; i != NumRegs; ++i) {
5240 SDValue Part;
Bill Wendlingec72e322009-12-22 01:11:43 +00005241 if (Flag == 0) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005242 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Bill Wendlingec72e322009-12-22 01:11:43 +00005243 } else {
Dale Johannesena04b7572009-02-03 23:04:43 +00005244 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005245 *Flag = Part.getValue(1);
5246 }
Bill Wendlingec72e322009-12-22 01:11:43 +00005247
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005248 Chains[i] = Part.getValue(0);
Bill Wendling187361b2010-01-23 10:26:57 +00005249 DAG.AssignOrdering(Part.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005250 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005251
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005252 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005253 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005254 // flagged to it. That is the CopyToReg nodes and the user are considered
5255 // a single scheduling unit. If we create a TokenFactor and return it as
5256 // chain, then the TokenFactor is both a predecessor (operand) of the
5257 // user as well as a successor (the TF operands are flagged to the user).
5258 // c1, f1 = CopyToReg
5259 // c2, f2 = CopyToReg
5260 // c3 = TokenFactor c1, c2
5261 // ...
5262 // = op c3, ..., f2
5263 Chain = Chains[NumRegs-1];
5264 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005265 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Bill Wendlingec72e322009-12-22 01:11:43 +00005266
Bill Wendling187361b2010-01-23 10:26:57 +00005267 DAG.AssignOrdering(Chain.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005268}
5269
5270/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005271/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005272/// values added into it.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005273void RegsForValue::AddInlineAsmOperands(unsigned Code,
5274 bool HasMatching,unsigned MatchingIdx,
Bill Wendling651ad132009-12-22 01:25:10 +00005275 SelectionDAG &DAG, unsigned Order,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005276 std::vector<SDValue> &Ops) const {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005277 assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!");
5278 unsigned Flag = Code | (Regs.size() << 3);
5279 if (HasMatching)
5280 Flag |= 0x80000000 | (MatchingIdx << 16);
Dale Johannesen99499332009-12-23 07:32:51 +00005281 SDValue Res = DAG.getTargetConstant(Flag, MVT::i32);
Bill Wendling651ad132009-12-22 01:25:10 +00005282 Ops.push_back(Res);
5283
Bill Wendling187361b2010-01-23 10:26:57 +00005284 DAG.AssignOrdering(Res.getNode(), Order);
Bill Wendling651ad132009-12-22 01:25:10 +00005285
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005286 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Anderson23b9b192009-08-12 00:36:31 +00005287 unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVTs[Value]);
Owen Andersone50ed302009-08-10 22:56:29 +00005288 EVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00005289 for (unsigned i = 0; i != NumRegs; ++i) {
5290 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Bill Wendling651ad132009-12-22 01:25:10 +00005291 SDValue Res = DAG.getRegister(Regs[Reg++], RegisterVT);
5292 Ops.push_back(Res);
Bill Wendling187361b2010-01-23 10:26:57 +00005293 DAG.AssignOrdering(Res.getNode(), Order);
Chris Lattner58f15c42008-10-17 16:21:11 +00005294 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005295 }
5296}
5297
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005298/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005299/// i.e. it isn't a stack pointer or some other special register, return the
5300/// register class for the register. Otherwise, return null.
5301static const TargetRegisterClass *
5302isAllocatableRegister(unsigned Reg, MachineFunction &MF,
5303 const TargetLowering &TLI,
5304 const TargetRegisterInfo *TRI) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005305 EVT FoundVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005306 const TargetRegisterClass *FoundRC = 0;
5307 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
5308 E = TRI->regclass_end(); RCI != E; ++RCI) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005309 EVT ThisVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005310
5311 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005312 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005313 // can't use it. For example, 64-bit reg classes on 32-bit targets.
5314 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
5315 I != E; ++I) {
5316 if (TLI.isTypeLegal(*I)) {
5317 // If we have already found this register in a different register class,
5318 // choose the one with the largest VT specified. For example, on
5319 // PowerPC, we favor f64 register classes over f32.
Owen Anderson825b72b2009-08-11 20:47:22 +00005320 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005321 ThisVT = *I;
5322 break;
5323 }
5324 }
5325 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005326
Owen Anderson825b72b2009-08-11 20:47:22 +00005327 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005328
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005329 // NOTE: This isn't ideal. In particular, this might allocate the
5330 // frame pointer in functions that need it (due to them not being taken
5331 // out of allocation, because a variable sized allocation hasn't been seen
5332 // yet). This is a slight code pessimization, but should still work.
5333 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
5334 E = RC->allocation_order_end(MF); I != E; ++I)
5335 if (*I == Reg) {
5336 // We found a matching register class. Keep looking at others in case
5337 // we find one with larger registers that this physreg is also in.
5338 FoundRC = RC;
5339 FoundVT = ThisVT;
5340 break;
5341 }
5342 }
5343 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005344}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005345
5346
5347namespace llvm {
5348/// AsmOperandInfo - This contains information for each constraint that we are
5349/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00005350class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00005351 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00005352public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005353 /// CallOperand - If this is the result output operand or a clobber
5354 /// this is null, otherwise it is the incoming operand to the CallInst.
5355 /// This gets modified as the asm is processed.
5356 SDValue CallOperand;
5357
5358 /// AssignedRegs - If this is a register or register class operand, this
5359 /// contains the set of register corresponding to the operand.
5360 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005361
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005362 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
5363 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
5364 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005365
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005366 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
5367 /// busy in OutputRegs/InputRegs.
5368 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005369 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005370 std::set<unsigned> &InputRegs,
5371 const TargetRegisterInfo &TRI) const {
5372 if (isOutReg) {
5373 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
5374 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
5375 }
5376 if (isInReg) {
5377 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
5378 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
5379 }
5380 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005381
Owen Andersone50ed302009-08-10 22:56:29 +00005382 /// getCallOperandValEVT - Return the EVT of the Value* that this operand
Chris Lattner81249c92008-10-17 17:05:25 +00005383 /// corresponds to. If there is no Value* for this operand, it returns
Owen Anderson825b72b2009-08-11 20:47:22 +00005384 /// MVT::Other.
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005385 EVT getCallOperandValEVT(LLVMContext &Context,
Owen Anderson1d0be152009-08-13 21:58:54 +00005386 const TargetLowering &TLI,
Chris Lattner81249c92008-10-17 17:05:25 +00005387 const TargetData *TD) const {
Owen Anderson825b72b2009-08-11 20:47:22 +00005388 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005389
Chris Lattner81249c92008-10-17 17:05:25 +00005390 if (isa<BasicBlock>(CallOperandVal))
5391 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005392
Chris Lattner81249c92008-10-17 17:05:25 +00005393 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005394
Chris Lattner81249c92008-10-17 17:05:25 +00005395 // If this is an indirect operand, the operand is a pointer to the
5396 // accessed type.
Bob Wilsone261b0c2009-12-22 18:34:19 +00005397 if (isIndirect) {
5398 const llvm::PointerType *PtrTy = dyn_cast<PointerType>(OpTy);
5399 if (!PtrTy)
5400 llvm_report_error("Indirect operand for inline asm not a pointer!");
5401 OpTy = PtrTy->getElementType();
5402 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005403
Chris Lattner81249c92008-10-17 17:05:25 +00005404 // If OpTy is not a single value, it may be a struct/union that we
5405 // can tile with integers.
5406 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
5407 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
5408 switch (BitSize) {
5409 default: break;
5410 case 1:
5411 case 8:
5412 case 16:
5413 case 32:
5414 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00005415 case 128:
Owen Anderson1d0be152009-08-13 21:58:54 +00005416 OpTy = IntegerType::get(Context, BitSize);
Chris Lattner81249c92008-10-17 17:05:25 +00005417 break;
5418 }
5419 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005420
Chris Lattner81249c92008-10-17 17:05:25 +00005421 return TLI.getValueType(OpTy, true);
5422 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005423
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005424private:
5425 /// MarkRegAndAliases - Mark the specified register and all aliases in the
5426 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005427 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005428 const TargetRegisterInfo &TRI) {
5429 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
5430 Regs.insert(Reg);
5431 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
5432 for (; *Aliases; ++Aliases)
5433 Regs.insert(*Aliases);
5434 }
5435};
5436} // end llvm namespace.
5437
5438
5439/// GetRegistersForValue - Assign registers (virtual or physical) for the
5440/// specified operand. We prefer to assign virtual registers, to allow the
Bob Wilson266d9452009-12-17 05:07:36 +00005441/// register allocator to handle the assignment process. However, if the asm
5442/// uses features that we can't model on machineinstrs, we have SDISel do the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005443/// allocation. This produces generally horrible, but correct, code.
5444///
5445/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005446/// Input and OutputRegs are the set of already allocated physical registers.
5447///
Dan Gohman2048b852009-11-23 18:04:58 +00005448void SelectionDAGBuilder::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005449GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005450 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005451 std::set<unsigned> &InputRegs) {
Dan Gohman0d24bfb2009-08-15 02:06:22 +00005452 LLVMContext &Context = FuncInfo.Fn->getContext();
Owen Anderson23b9b192009-08-12 00:36:31 +00005453
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005454 // Compute whether this value requires an input register, an output register,
5455 // or both.
5456 bool isOutReg = false;
5457 bool isInReg = false;
5458 switch (OpInfo.Type) {
5459 case InlineAsm::isOutput:
5460 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005461
5462 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005463 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00005464 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005465 break;
5466 case InlineAsm::isInput:
5467 isInReg = true;
5468 isOutReg = false;
5469 break;
5470 case InlineAsm::isClobber:
5471 isOutReg = true;
5472 isInReg = true;
5473 break;
5474 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005475
5476
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005477 MachineFunction &MF = DAG.getMachineFunction();
5478 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005479
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005480 // If this is a constraint for a single physreg, or a constraint for a
5481 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005482 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005483 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
5484 OpInfo.ConstraintVT);
5485
5486 unsigned NumRegs = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00005487 if (OpInfo.ConstraintVT != MVT::Other) {
Chris Lattner01426e12008-10-21 00:45:36 +00005488 // If this is a FP input in an integer register (or visa versa) insert a bit
5489 // cast of the input value. More generally, handle any case where the input
5490 // value disagrees with the register class we plan to stick this in.
5491 if (OpInfo.Type == InlineAsm::isInput &&
5492 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
Owen Andersone50ed302009-08-10 22:56:29 +00005493 // Try to convert to the first EVT that the reg class contains. If the
Chris Lattner01426e12008-10-21 00:45:36 +00005494 // types are identical size, use a bitcast to convert (e.g. two differing
5495 // vector types).
Owen Andersone50ed302009-08-10 22:56:29 +00005496 EVT RegVT = *PhysReg.second->vt_begin();
Chris Lattner01426e12008-10-21 00:45:36 +00005497 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005498 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005499 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00005500 OpInfo.ConstraintVT = RegVT;
5501 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
5502 // If the input is a FP value and we want it in FP registers, do a
5503 // bitcast to the corresponding integer type. This turns an f64 value
5504 // into i64, which can be passed with two i32 values on a 32-bit
5505 // machine.
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005506 RegVT = EVT::getIntegerVT(Context,
Owen Anderson23b9b192009-08-12 00:36:31 +00005507 OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005508 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005509 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00005510 OpInfo.ConstraintVT = RegVT;
5511 }
Bill Wendling651ad132009-12-22 01:25:10 +00005512
Bill Wendling187361b2010-01-23 10:26:57 +00005513 DAG.AssignOrdering(OpInfo.CallOperand.getNode(), SDNodeOrder);
Chris Lattner01426e12008-10-21 00:45:36 +00005514 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005515
Owen Anderson23b9b192009-08-12 00:36:31 +00005516 NumRegs = TLI.getNumRegisters(Context, OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00005517 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005518
Owen Andersone50ed302009-08-10 22:56:29 +00005519 EVT RegVT;
5520 EVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005521
5522 // If this is a constraint for a specific physical register, like {r17},
5523 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00005524 if (unsigned AssignedReg = PhysReg.first) {
5525 const TargetRegisterClass *RC = PhysReg.second;
Owen Anderson825b72b2009-08-11 20:47:22 +00005526 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00005527 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005528
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005529 // Get the actual register value type. This is important, because the user
5530 // may have asked for (e.g.) the AX register in i32 type. We need to
5531 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00005532 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005533
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005534 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00005535 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005536
5537 // If this is an expanded reference, add the rest of the regs to Regs.
5538 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00005539 TargetRegisterClass::iterator I = RC->begin();
5540 for (; *I != AssignedReg; ++I)
5541 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005542
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005543 // Already added the first reg.
5544 --NumRegs; ++I;
5545 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00005546 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005547 Regs.push_back(*I);
5548 }
5549 }
Bill Wendling651ad132009-12-22 01:25:10 +00005550
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005551 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
5552 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
5553 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5554 return;
5555 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005556
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005557 // Otherwise, if this was a reference to an LLVM register class, create vregs
5558 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00005559 if (const TargetRegisterClass *RC = PhysReg.second) {
5560 RegVT = *RC->vt_begin();
Owen Anderson825b72b2009-08-11 20:47:22 +00005561 if (OpInfo.ConstraintVT == MVT::Other)
Evan Chengfb112882009-03-23 08:01:15 +00005562 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005563
Evan Chengfb112882009-03-23 08:01:15 +00005564 // Create the appropriate number of virtual registers.
5565 MachineRegisterInfo &RegInfo = MF.getRegInfo();
5566 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00005567 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005568
Evan Chengfb112882009-03-23 08:01:15 +00005569 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
5570 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005571 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005572
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005573 // This is a reference to a register class that doesn't directly correspond
5574 // to an LLVM register class. Allocate NumRegs consecutive, available,
5575 // registers from the class.
5576 std::vector<unsigned> RegClassRegs
5577 = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
5578 OpInfo.ConstraintVT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005579
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005580 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
5581 unsigned NumAllocated = 0;
5582 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
5583 unsigned Reg = RegClassRegs[i];
5584 // See if this register is available.
5585 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
5586 (isInReg && InputRegs.count(Reg))) { // Already used.
5587 // Make sure we find consecutive registers.
5588 NumAllocated = 0;
5589 continue;
5590 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005591
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005592 // Check to see if this register is allocatable (i.e. don't give out the
5593 // stack pointer).
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005594 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI);
5595 if (!RC) { // Couldn't allocate this register.
5596 // Reset NumAllocated to make sure we return consecutive registers.
5597 NumAllocated = 0;
5598 continue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005599 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005600
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005601 // Okay, this register is good, we can use it.
5602 ++NumAllocated;
5603
5604 // If we allocated enough consecutive registers, succeed.
5605 if (NumAllocated == NumRegs) {
5606 unsigned RegStart = (i-NumAllocated)+1;
5607 unsigned RegEnd = i+1;
5608 // Mark all of the allocated registers used.
5609 for (unsigned i = RegStart; i != RegEnd; ++i)
5610 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005611
5612 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005613 OpInfo.ConstraintVT);
5614 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5615 return;
5616 }
5617 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005618
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005619 // Otherwise, we couldn't allocate enough registers for this.
5620}
5621
Evan Chengda43bcf2008-09-24 00:05:32 +00005622/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
5623/// processed uses a memory 'm' constraint.
5624static bool
5625hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00005626 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00005627 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
5628 InlineAsm::ConstraintInfo &CI = CInfos[i];
5629 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
5630 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
5631 if (CType == TargetLowering::C_Memory)
5632 return true;
5633 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005634
Chris Lattner6c147292009-04-30 00:48:50 +00005635 // Indirect operand accesses access memory.
5636 if (CI.isIndirect)
5637 return true;
Evan Chengda43bcf2008-09-24 00:05:32 +00005638 }
5639
5640 return false;
5641}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005642
5643/// visitInlineAsm - Handle a call to an InlineAsm object.
5644///
Dan Gohman2048b852009-11-23 18:04:58 +00005645void SelectionDAGBuilder::visitInlineAsm(CallSite CS) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005646 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
5647
5648 /// ConstraintOperands - Information about all of the constraints.
5649 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005650
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005651 std::set<unsigned> OutputRegs, InputRegs;
5652
5653 // Do a prepass over the constraints, canonicalizing them, and building up the
5654 // ConstraintOperands list.
5655 std::vector<InlineAsm::ConstraintInfo>
5656 ConstraintInfos = IA->ParseConstraints();
5657
Evan Chengda43bcf2008-09-24 00:05:32 +00005658 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005659
Chris Lattner6c147292009-04-30 00:48:50 +00005660 SDValue Chain, Flag;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005661
Chris Lattner6c147292009-04-30 00:48:50 +00005662 // We won't need to flush pending loads if this asm doesn't touch
5663 // memory and is nonvolatile.
5664 if (hasMemory || IA->hasSideEffects())
Dale Johannesen97d14fc2009-04-18 00:09:40 +00005665 Chain = getRoot();
Chris Lattner6c147292009-04-30 00:48:50 +00005666 else
5667 Chain = DAG.getRoot();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005668
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005669 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5670 unsigned ResNo = 0; // ResNo - The result number of the next output.
5671 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5672 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5673 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005674
Owen Anderson825b72b2009-08-11 20:47:22 +00005675 EVT OpVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005676
5677 // Compute the value type for each operand.
5678 switch (OpInfo.Type) {
5679 case InlineAsm::isOutput:
5680 // Indirect outputs just consume an argument.
5681 if (OpInfo.isIndirect) {
5682 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5683 break;
5684 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005685
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005686 // The return value of the call is this value. As such, there is no
5687 // corresponding argument.
Benjamin Kramerf0127052010-01-05 13:12:22 +00005688 assert(!CS.getType()->isVoidTy() &&
Owen Anderson1d0be152009-08-13 21:58:54 +00005689 "Bad inline asm!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005690 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5691 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5692 } else {
5693 assert(ResNo == 0 && "Asm only has one result!");
5694 OpVT = TLI.getValueType(CS.getType());
5695 }
5696 ++ResNo;
5697 break;
5698 case InlineAsm::isInput:
5699 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5700 break;
5701 case InlineAsm::isClobber:
5702 // Nothing to do.
5703 break;
5704 }
5705
5706 // If this is an input or an indirect output, process the call argument.
5707 // BasicBlocks are labels, currently appearing only in asm's.
5708 if (OpInfo.CallOperandVal) {
Dale Johannesen5339c552009-07-20 23:27:39 +00005709 // Strip bitcasts, if any. This mostly comes up for functions.
Dale Johannesen76711242009-08-06 22:45:51 +00005710 OpInfo.CallOperandVal = OpInfo.CallOperandVal->stripPointerCasts();
5711
Chris Lattner81249c92008-10-17 17:05:25 +00005712 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005713 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005714 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005715 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005716 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005717
Owen Anderson1d0be152009-08-13 21:58:54 +00005718 OpVT = OpInfo.getCallOperandValEVT(*DAG.getContext(), TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005719 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005720
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005721 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005722 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005723
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005724 // Second pass over the constraints: compute which constraint option to use
5725 // and assign registers to constraints that want a specific physreg.
5726 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5727 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005728
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005729 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005730 // matching input. If their types mismatch, e.g. one is an integer, the
5731 // other is floating point, or their sizes are different, flag it as an
5732 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005733 if (OpInfo.hasMatchingInput()) {
5734 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5735 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005736 if ((OpInfo.ConstraintVT.isInteger() !=
5737 Input.ConstraintVT.isInteger()) ||
5738 (OpInfo.ConstraintVT.getSizeInBits() !=
5739 Input.ConstraintVT.getSizeInBits())) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005740 llvm_report_error("Unsupported asm: input constraint"
Torok Edwin7d696d82009-07-11 13:10:19 +00005741 " with a matching output constraint of incompatible"
5742 " type!");
Evan Cheng09dc9c02008-12-16 18:21:39 +00005743 }
5744 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005745 }
5746 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005747
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005748 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005749 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005750
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005751 // If this is a memory input, and if the operand is not indirect, do what we
5752 // need to to provide an address for the memory input.
5753 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5754 !OpInfo.isIndirect) {
5755 assert(OpInfo.Type == InlineAsm::isInput &&
5756 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005757
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005758 // Memory operands really want the address of the value. If we don't have
5759 // an indirect input, put it in the constpool if we can, otherwise spill
5760 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005761
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005762 // If the operand is a float, integer, or vector constant, spill to a
5763 // constant pool entry to get its address.
5764 Value *OpVal = OpInfo.CallOperandVal;
5765 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5766 isa<ConstantVector>(OpVal)) {
5767 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5768 TLI.getPointerTy());
5769 } else {
5770 // Otherwise, create a stack slot and emit a store to it before the
5771 // asm.
5772 const Type *Ty = OpVal->getType();
Duncan Sands777d2302009-05-09 07:06:46 +00005773 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005774 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5775 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00005776 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align, false);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005777 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005778 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005779 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005780 OpInfo.CallOperand = StackSlot;
5781 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005782
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005783 // There is no longer a Value* corresponding to this operand.
5784 OpInfo.CallOperandVal = 0;
Bill Wendling651ad132009-12-22 01:25:10 +00005785
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005786 // It is now an indirect operand.
5787 OpInfo.isIndirect = true;
5788 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005789
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005790 // If this constraint is for a specific register, allocate it before
5791 // anything else.
5792 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005793 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005794 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005795
Bill Wendling651ad132009-12-22 01:25:10 +00005796 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005797
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005798 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005799 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005800 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5801 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005802
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005803 // C_Register operands have already been allocated, Other/Memory don't need
5804 // to be.
5805 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005806 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005807 }
5808
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005809 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5810 std::vector<SDValue> AsmNodeOperands;
5811 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5812 AsmNodeOperands.push_back(
Dan Gohmanf2d7fb32010-01-04 21:00:54 +00005813 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(),
5814 TLI.getPointerTy()));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005815
5816
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005817 // Loop over all of the inputs, copying the operand values into the
5818 // appropriate registers and processing the output regs.
5819 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005820
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005821 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5822 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005823
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005824 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5825 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5826
5827 switch (OpInfo.Type) {
5828 case InlineAsm::isOutput: {
5829 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5830 OpInfo.ConstraintType != TargetLowering::C_Register) {
5831 // Memory output, or 'other' output (e.g. 'X' constraint).
5832 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5833
5834 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005835 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5836 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005837 TLI.getPointerTy()));
5838 AsmNodeOperands.push_back(OpInfo.CallOperand);
5839 break;
5840 }
5841
5842 // Otherwise, this is a register or register class output.
5843
5844 // Copy the output from the appropriate register. Find a register that
5845 // we can use.
5846 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005847 llvm_report_error("Couldn't allocate output reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00005848 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005849 }
5850
5851 // If this is an indirect operand, store through the pointer after the
5852 // asm.
5853 if (OpInfo.isIndirect) {
5854 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5855 OpInfo.CallOperandVal));
5856 } else {
5857 // This is the result value of the call.
Benjamin Kramerf0127052010-01-05 13:12:22 +00005858 assert(!CS.getType()->isVoidTy() && "Bad inline asm!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005859 // Concatenate this output onto the outputs list.
5860 RetValRegs.append(OpInfo.AssignedRegs);
5861 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005862
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005863 // Add information to the INLINEASM node to know that this register is
5864 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005865 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5866 6 /* EARLYCLOBBER REGDEF */ :
5867 2 /* REGDEF */ ,
Evan Chengfb112882009-03-23 08:01:15 +00005868 false,
5869 0,
Bill Wendling651ad132009-12-22 01:25:10 +00005870 DAG, SDNodeOrder,
5871 AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005872 break;
5873 }
5874 case InlineAsm::isInput: {
5875 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005876
Chris Lattner6bdcda32008-10-17 16:47:46 +00005877 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005878 // If this is required to match an output register we have already set,
5879 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005880 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005881
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005882 // Scan until we find the definition we already emitted of this operand.
5883 // When we find it, create a RegsForValue operand.
5884 unsigned CurOp = 2; // The first operand.
5885 for (; OperandNo; --OperandNo) {
5886 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005887 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005888 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005889 assert(((OpFlag & 7) == 2 /*REGDEF*/ ||
5890 (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
5891 (OpFlag & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005892 "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00005893 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005894 }
5895
Evan Cheng697cbbf2009-03-20 18:03:34 +00005896 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005897 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005898 if ((OpFlag & 7) == 2 /*REGDEF*/
5899 || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) {
5900 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Dan Gohman15480bd2009-06-15 22:32:41 +00005901 if (OpInfo.isIndirect) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005902 llvm_report_error("Don't know how to handle tied indirect "
Torok Edwin7d696d82009-07-11 13:10:19 +00005903 "register inputs yet!");
Dan Gohman15480bd2009-06-15 22:32:41 +00005904 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005905 RegsForValue MatchedRegs;
5906 MatchedRegs.TLI = &TLI;
5907 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Owen Andersone50ed302009-08-10 22:56:29 +00005908 EVT RegVT = AsmNodeOperands[CurOp+1].getValueType();
Evan Chengfb112882009-03-23 08:01:15 +00005909 MatchedRegs.RegVTs.push_back(RegVT);
5910 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005911 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Evan Chengfb112882009-03-23 08:01:15 +00005912 i != e; ++i)
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005913 MatchedRegs.Regs.push_back
5914 (RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT)));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005915
5916 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005917 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
Bill Wendlingec72e322009-12-22 01:11:43 +00005918 SDNodeOrder, Chain, &Flag);
Evan Chengfb112882009-03-23 08:01:15 +00005919 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/,
5920 true, OpInfo.getMatchedOperand(),
Bill Wendling651ad132009-12-22 01:25:10 +00005921 DAG, SDNodeOrder, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005922 break;
5923 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005924 assert(((OpFlag & 7) == 4) && "Unknown matching constraint!");
5925 assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 &&
5926 "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005927 // Add information to the INLINEASM node to know about this input.
Evan Chengfb112882009-03-23 08:01:15 +00005928 // See InlineAsm.h isUseOperandTiedToDef.
5929 OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16);
Evan Cheng697cbbf2009-03-20 18:03:34 +00005930 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005931 TLI.getPointerTy()));
5932 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5933 break;
5934 }
5935 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005936
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005937 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005938 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005939 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005940
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005941 std::vector<SDValue> Ops;
5942 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005943 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005944 if (Ops.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005945 llvm_report_error("Invalid operand for inline asm"
Torok Edwin7d696d82009-07-11 13:10:19 +00005946 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005947 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005948
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005949 // Add information to the INLINEASM node to know about this input.
5950 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005951 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005952 TLI.getPointerTy()));
5953 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5954 break;
5955 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5956 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5957 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5958 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005959
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005960 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005961 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5962 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005963 TLI.getPointerTy()));
5964 AsmNodeOperands.push_back(InOperandVal);
5965 break;
5966 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005967
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005968 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5969 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5970 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005971 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005972 "Don't know how to handle indirect register inputs yet!");
5973
5974 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005975 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005976 llvm_report_error("Couldn't allocate input reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00005977 " constraint '"+ OpInfo.ConstraintCode +"'!");
Evan Chengaa765b82008-09-25 00:14:04 +00005978 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005979
Dale Johannesen66978ee2009-01-31 02:22:37 +00005980 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
Bill Wendlingec72e322009-12-22 01:11:43 +00005981 SDNodeOrder, Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005982
Evan Cheng697cbbf2009-03-20 18:03:34 +00005983 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0,
Bill Wendling651ad132009-12-22 01:25:10 +00005984 DAG, SDNodeOrder,
5985 AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005986 break;
5987 }
5988 case InlineAsm::isClobber: {
5989 // Add the clobbered value to the operand list, so that the register
5990 // allocator is aware that the physreg got clobbered.
5991 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005992 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
Bill Wendling651ad132009-12-22 01:25:10 +00005993 false, 0, DAG, SDNodeOrder,
5994 AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005995 break;
5996 }
5997 }
5998 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005999
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006000 // Finish up input operands.
6001 AsmNodeOperands[0] = Chain;
6002 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006003
Dale Johannesen66978ee2009-01-31 02:22:37 +00006004 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00006005 DAG.getVTList(MVT::Other, MVT::Flag),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006006 &AsmNodeOperands[0], AsmNodeOperands.size());
6007 Flag = Chain.getValue(1);
6008
6009 // If this asm returns a register value, copy the result from that register
6010 // and set it as the value of the call.
6011 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006012 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Bill Wendlingec72e322009-12-22 01:11:43 +00006013 SDNodeOrder, Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006014
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006015 // FIXME: Why don't we do this for inline asms with MRVs?
6016 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
Owen Andersone50ed302009-08-10 22:56:29 +00006017 EVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006018
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006019 // If any of the results of the inline asm is a vector, it may have the
6020 // wrong width/num elts. This can happen for register classes that can
6021 // contain multiple different value types. The preg or vreg allocated may
6022 // not have the same VT as was expected. Convert it to the right type
6023 // with bit_convert.
6024 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00006025 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00006026 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00006027
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006028 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006029 ResultType.isInteger() && Val.getValueType().isInteger()) {
6030 // If a result value was tied to an input value, the computed result may
6031 // have a wider width than the expected result. Extract the relevant
6032 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00006033 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00006034 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006035
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006036 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00006037 }
Dan Gohman95915732008-10-18 01:03:45 +00006038
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006039 setValue(CS.getInstruction(), Val);
Dale Johannesenec65a7d2009-04-14 00:56:56 +00006040 // Don't need to use this as a chain in this case.
6041 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
6042 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006043 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006044
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006045 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006046
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006047 // Process indirect outputs, first output all of the flagged copies out of
6048 // physregs.
6049 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
6050 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
6051 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00006052 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Bill Wendlingec72e322009-12-22 01:11:43 +00006053 SDNodeOrder, Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006054 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6c147292009-04-30 00:48:50 +00006055
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006056 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006057
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006058 // Emit the non-flagged stores from the physregs.
6059 SmallVector<SDValue, 8> OutChains;
Bill Wendling651ad132009-12-22 01:25:10 +00006060 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) {
6061 SDValue Val = DAG.getStore(Chain, getCurDebugLoc(),
6062 StoresToEmit[i].first,
6063 getValue(StoresToEmit[i].second),
6064 StoresToEmit[i].second, 0);
6065 OutChains.push_back(Val);
Bill Wendling651ad132009-12-22 01:25:10 +00006066 }
6067
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006068 if (!OutChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00006069 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006070 &OutChains[0], OutChains.size());
Bill Wendling651ad132009-12-22 01:25:10 +00006071
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006072 DAG.setRoot(Chain);
6073}
6074
Dan Gohman2048b852009-11-23 18:04:58 +00006075void SelectionDAGBuilder::visitVAStart(CallInst &I) {
Bill Wendlingc1d3c942009-12-23 00:44:51 +00006076 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
6077 MVT::Other, getRoot(),
6078 getValue(I.getOperand(1)),
6079 DAG.getSrcValue(I.getOperand(1))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006080}
6081
Dan Gohman2048b852009-11-23 18:04:58 +00006082void SelectionDAGBuilder::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00006083 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
6084 getRoot(), getValue(I.getOperand(0)),
6085 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006086 setValue(&I, V);
6087 DAG.setRoot(V.getValue(1));
6088}
6089
Dan Gohman2048b852009-11-23 18:04:58 +00006090void SelectionDAGBuilder::visitVAEnd(CallInst &I) {
Bill Wendlingc1d3c942009-12-23 00:44:51 +00006091 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
6092 MVT::Other, getRoot(),
6093 getValue(I.getOperand(1)),
6094 DAG.getSrcValue(I.getOperand(1))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006095}
6096
Dan Gohman2048b852009-11-23 18:04:58 +00006097void SelectionDAGBuilder::visitVACopy(CallInst &I) {
Bill Wendlingc1d3c942009-12-23 00:44:51 +00006098 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
6099 MVT::Other, getRoot(),
6100 getValue(I.getOperand(1)),
6101 getValue(I.getOperand(2)),
6102 DAG.getSrcValue(I.getOperand(1)),
6103 DAG.getSrcValue(I.getOperand(2))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006104}
6105
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006106/// TargetLowering::LowerCallTo - This is the default LowerCallTo
Dan Gohman98ca4f22009-08-05 01:29:28 +00006107/// implementation, which just calls LowerCall.
6108/// FIXME: When all targets are
6109/// migrated to using LowerCall, this hook should be integrated into SDISel.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006110std::pair<SDValue, SDValue>
6111TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
6112 bool RetSExt, bool RetZExt, bool isVarArg,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00006113 bool isInreg, unsigned NumFixedArgs,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00006114 CallingConv::ID CallConv, bool isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00006115 bool isReturnValueUsed,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006116 SDValue Callee,
Bill Wendling3ea3c242009-12-22 02:10:19 +00006117 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl,
6118 unsigned Order) {
Dan Gohman1937e2f2008-09-16 01:42:28 +00006119 assert((!isTailCall || PerformTailCallOpt) &&
6120 "isTailCall set when tail-call optimizations are disabled!");
6121
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006122 // Handle all of the outgoing arguments.
Dan Gohman98ca4f22009-08-05 01:29:28 +00006123 SmallVector<ISD::OutputArg, 32> Outs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006124 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00006125 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006126 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
6127 for (unsigned Value = 0, NumValues = ValueVTs.size();
6128 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00006129 EVT VT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00006130 const Type *ArgTy = VT.getTypeForEVT(RetTy->getContext());
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006131 SDValue Op = SDValue(Args[i].Node.getNode(),
6132 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006133 ISD::ArgFlagsTy Flags;
6134 unsigned OriginalAlignment =
6135 getTargetData()->getABITypeAlignment(ArgTy);
6136
6137 if (Args[i].isZExt)
6138 Flags.setZExt();
6139 if (Args[i].isSExt)
6140 Flags.setSExt();
6141 if (Args[i].isInReg)
6142 Flags.setInReg();
6143 if (Args[i].isSRet)
6144 Flags.setSRet();
6145 if (Args[i].isByVal) {
6146 Flags.setByVal();
6147 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
6148 const Type *ElementTy = Ty->getElementType();
6149 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00006150 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006151 // For ByVal, alignment should come from FE. BE will guess if this
6152 // info is not there but there are cases it cannot get right.
6153 if (Args[i].Alignment)
6154 FrameAlign = Args[i].Alignment;
6155 Flags.setByValAlign(FrameAlign);
6156 Flags.setByValSize(FrameSize);
6157 }
6158 if (Args[i].isNest)
6159 Flags.setNest();
6160 Flags.setOrigAlign(OriginalAlignment);
6161
Owen Anderson23b9b192009-08-12 00:36:31 +00006162 EVT PartVT = getRegisterType(RetTy->getContext(), VT);
6163 unsigned NumParts = getNumRegisters(RetTy->getContext(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006164 SmallVector<SDValue, 4> Parts(NumParts);
6165 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
6166
6167 if (Args[i].isSExt)
6168 ExtendKind = ISD::SIGN_EXTEND;
6169 else if (Args[i].isZExt)
6170 ExtendKind = ISD::ZERO_EXTEND;
6171
Bill Wendling3ea3c242009-12-22 02:10:19 +00006172 getCopyToParts(DAG, dl, Order, Op, &Parts[0], NumParts,
6173 PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006174
Dan Gohman98ca4f22009-08-05 01:29:28 +00006175 for (unsigned j = 0; j != NumParts; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006176 // if it isn't first piece, alignment must be 1
Dan Gohman98ca4f22009-08-05 01:29:28 +00006177 ISD::OutputArg MyFlags(Flags, Parts[j], i < NumFixedArgs);
6178 if (NumParts > 1 && j == 0)
6179 MyFlags.Flags.setSplit();
6180 else if (j != 0)
6181 MyFlags.Flags.setOrigAlign(1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006182
Dan Gohman98ca4f22009-08-05 01:29:28 +00006183 Outs.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006184 }
6185 }
6186 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006187
Dan Gohman98ca4f22009-08-05 01:29:28 +00006188 // Handle the incoming return values from the call.
6189 SmallVector<ISD::InputArg, 32> Ins;
Owen Andersone50ed302009-08-10 22:56:29 +00006190 SmallVector<EVT, 4> RetTys;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006191 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006192 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00006193 EVT VT = RetTys[I];
Owen Anderson23b9b192009-08-12 00:36:31 +00006194 EVT RegisterVT = getRegisterType(RetTy->getContext(), VT);
6195 unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00006196 for (unsigned i = 0; i != NumRegs; ++i) {
6197 ISD::InputArg MyFlags;
6198 MyFlags.VT = RegisterVT;
6199 MyFlags.Used = isReturnValueUsed;
6200 if (RetSExt)
6201 MyFlags.Flags.setSExt();
6202 if (RetZExt)
6203 MyFlags.Flags.setZExt();
6204 if (isInreg)
6205 MyFlags.Flags.setInReg();
6206 Ins.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006207 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006208 }
6209
Dan Gohman98ca4f22009-08-05 01:29:28 +00006210 // Check if target-dependent constraints permit a tail call here.
6211 // Target-independent constraints should be checked by the caller.
6212 if (isTailCall &&
6213 !IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg, Ins, DAG))
6214 isTailCall = false;
6215
6216 SmallVector<SDValue, 4> InVals;
6217 Chain = LowerCall(Chain, Callee, CallConv, isVarArg, isTailCall,
6218 Outs, Ins, dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00006219
6220 // Verify that the target's LowerCall behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00006221 assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00006222 "LowerCall didn't return a valid chain!");
6223 assert((!isTailCall || InVals.empty()) &&
6224 "LowerCall emitted a return value for a tail call!");
6225 assert((isTailCall || InVals.size() == Ins.size()) &&
6226 "LowerCall didn't emit the correct number of values!");
6227 DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
6228 assert(InVals[i].getNode() &&
6229 "LowerCall emitted a null value!");
6230 assert(Ins[i].VT == InVals[i].getValueType() &&
6231 "LowerCall emitted a value with the wrong type!");
6232 });
Dan Gohman98ca4f22009-08-05 01:29:28 +00006233
Bill Wendling187361b2010-01-23 10:26:57 +00006234 DAG.AssignOrdering(Chain.getNode(), Order);
Bill Wendling3ea3c242009-12-22 02:10:19 +00006235
Dan Gohman98ca4f22009-08-05 01:29:28 +00006236 // For a tail call, the return value is merely live-out and there aren't
6237 // any nodes in the DAG representing it. Return a special value to
6238 // indicate that a tail call has been emitted and no more Instructions
6239 // should be processed in the current block.
6240 if (isTailCall) {
6241 DAG.setRoot(Chain);
6242 return std::make_pair(SDValue(), SDValue());
6243 }
6244
6245 // Collect the legal value parts into potentially illegal values
6246 // that correspond to the original function's return values.
6247 ISD::NodeType AssertOp = ISD::DELETED_NODE;
6248 if (RetSExt)
6249 AssertOp = ISD::AssertSext;
6250 else if (RetZExt)
6251 AssertOp = ISD::AssertZext;
6252 SmallVector<SDValue, 4> ReturnValues;
6253 unsigned CurReg = 0;
6254 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00006255 EVT VT = RetTys[I];
Owen Anderson23b9b192009-08-12 00:36:31 +00006256 EVT RegisterVT = getRegisterType(RetTy->getContext(), VT);
6257 unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00006258
6259 SDValue ReturnValue =
Bill Wendling3ea3c242009-12-22 02:10:19 +00006260 getCopyFromParts(DAG, dl, Order, &InVals[CurReg], NumRegs,
6261 RegisterVT, VT, AssertOp);
Dan Gohman98ca4f22009-08-05 01:29:28 +00006262 ReturnValues.push_back(ReturnValue);
Bill Wendling187361b2010-01-23 10:26:57 +00006263 DAG.AssignOrdering(ReturnValue.getNode(), Order);
Dan Gohman98ca4f22009-08-05 01:29:28 +00006264 CurReg += NumRegs;
6265 }
6266
6267 // For a function returning void, there is no return value. We can't create
6268 // such a node, so we just return a null return value in that case. In
6269 // that case, nothing will actualy look at the value.
6270 if (ReturnValues.empty())
6271 return std::make_pair(SDValue(), Chain);
6272
6273 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl,
6274 DAG.getVTList(&RetTys[0], RetTys.size()),
6275 &ReturnValues[0], ReturnValues.size());
Bill Wendling187361b2010-01-23 10:26:57 +00006276 DAG.AssignOrdering(Res.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006277 return std::make_pair(Res, Chain);
6278}
6279
Duncan Sands9fbc7e22009-01-21 09:00:29 +00006280void TargetLowering::LowerOperationWrapper(SDNode *N,
6281 SmallVectorImpl<SDValue> &Results,
6282 SelectionDAG &DAG) {
6283 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00006284 if (Res.getNode())
6285 Results.push_back(Res);
6286}
6287
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006288SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006289 llvm_unreachable("LowerOperation not implemented for this target!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006290 return SDValue();
6291}
6292
Dan Gohman2048b852009-11-23 18:04:58 +00006293void SelectionDAGBuilder::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006294 SDValue Op = getValue(V);
6295 assert((Op.getOpcode() != ISD::CopyFromReg ||
6296 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
6297 "Copy from a reg to the same reg!");
6298 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
6299
Owen Anderson23b9b192009-08-12 00:36:31 +00006300 RegsForValue RFV(V->getContext(), TLI, Reg, V->getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006301 SDValue Chain = DAG.getEntryNode();
Bill Wendlingec72e322009-12-22 01:11:43 +00006302 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), SDNodeOrder, Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006303 PendingExports.push_back(Chain);
6304}
6305
6306#include "llvm/CodeGen/SelectionDAGISel.h"
6307
Dan Gohman8c2b5252009-10-30 01:27:03 +00006308void SelectionDAGISel::LowerArguments(BasicBlock *LLVMBB) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006309 // If this is the entry block, emit arguments.
6310 Function &F = *LLVMBB->getParent();
Dan Gohman2048b852009-11-23 18:04:58 +00006311 SelectionDAG &DAG = SDB->DAG;
Dan Gohman98ca4f22009-08-05 01:29:28 +00006312 SDValue OldRoot = DAG.getRoot();
Dan Gohman2048b852009-11-23 18:04:58 +00006313 DebugLoc dl = SDB->getCurDebugLoc();
Dan Gohman98ca4f22009-08-05 01:29:28 +00006314 const TargetData *TD = TLI.getTargetData();
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006315 SmallVector<ISD::InputArg, 16> Ins;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006316
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00006317 // Check whether the function can return without sret-demotion.
6318 SmallVector<EVT, 4> OutVTs;
6319 SmallVector<ISD::ArgFlagsTy, 4> OutsFlags;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00006320 getReturnInfo(F.getReturnType(), F.getAttributes().getRetAttributes(),
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006321 OutVTs, OutsFlags, TLI);
6322 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
6323
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00006324 FLI.CanLowerReturn = TLI.CanLowerReturn(F.getCallingConv(), F.isVarArg(),
Bill Wendling3ea3c242009-12-22 02:10:19 +00006325 OutVTs, OutsFlags, DAG);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006326 if (!FLI.CanLowerReturn) {
6327 // Put in an sret pointer parameter before all the other parameters.
6328 SmallVector<EVT, 1> ValueVTs;
6329 ComputeValueVTs(TLI, PointerType::getUnqual(F.getReturnType()), ValueVTs);
6330
6331 // NOTE: Assuming that a pointer will never break down to more than one VT
6332 // or one register.
6333 ISD::ArgFlagsTy Flags;
6334 Flags.setSRet();
6335 EVT RegisterVT = TLI.getRegisterType(*CurDAG->getContext(), ValueVTs[0]);
6336 ISD::InputArg RetArg(Flags, RegisterVT, true);
6337 Ins.push_back(RetArg);
6338 }
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00006339
Dan Gohman98ca4f22009-08-05 01:29:28 +00006340 // Set up the incoming argument description vector.
Dan Gohman98ca4f22009-08-05 01:29:28 +00006341 unsigned Idx = 1;
6342 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
6343 I != E; ++I, ++Idx) {
Owen Andersone50ed302009-08-10 22:56:29 +00006344 SmallVector<EVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00006345 ComputeValueVTs(TLI, I->getType(), ValueVTs);
6346 bool isArgValueUsed = !I->use_empty();
6347 for (unsigned Value = 0, NumValues = ValueVTs.size();
6348 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00006349 EVT VT = ValueVTs[Value];
Owen Anderson1d0be152009-08-13 21:58:54 +00006350 const Type *ArgTy = VT.getTypeForEVT(*DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00006351 ISD::ArgFlagsTy Flags;
6352 unsigned OriginalAlignment =
6353 TD->getABITypeAlignment(ArgTy);
6354
6355 if (F.paramHasAttr(Idx, Attribute::ZExt))
6356 Flags.setZExt();
6357 if (F.paramHasAttr(Idx, Attribute::SExt))
6358 Flags.setSExt();
6359 if (F.paramHasAttr(Idx, Attribute::InReg))
6360 Flags.setInReg();
6361 if (F.paramHasAttr(Idx, Attribute::StructRet))
6362 Flags.setSRet();
6363 if (F.paramHasAttr(Idx, Attribute::ByVal)) {
6364 Flags.setByVal();
6365 const PointerType *Ty = cast<PointerType>(I->getType());
6366 const Type *ElementTy = Ty->getElementType();
6367 unsigned FrameAlign = TLI.getByValTypeAlignment(ElementTy);
6368 unsigned FrameSize = TD->getTypeAllocSize(ElementTy);
6369 // For ByVal, alignment should be passed from FE. BE will guess if
6370 // this info is not there but there are cases it cannot get right.
6371 if (F.getParamAlignment(Idx))
6372 FrameAlign = F.getParamAlignment(Idx);
6373 Flags.setByValAlign(FrameAlign);
6374 Flags.setByValSize(FrameSize);
6375 }
6376 if (F.paramHasAttr(Idx, Attribute::Nest))
6377 Flags.setNest();
6378 Flags.setOrigAlign(OriginalAlignment);
6379
Owen Anderson23b9b192009-08-12 00:36:31 +00006380 EVT RegisterVT = TLI.getRegisterType(*CurDAG->getContext(), VT);
6381 unsigned NumRegs = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00006382 for (unsigned i = 0; i != NumRegs; ++i) {
6383 ISD::InputArg MyFlags(Flags, RegisterVT, isArgValueUsed);
6384 if (NumRegs > 1 && i == 0)
6385 MyFlags.Flags.setSplit();
6386 // if it isn't first piece, alignment must be 1
6387 else if (i > 0)
6388 MyFlags.Flags.setOrigAlign(1);
6389 Ins.push_back(MyFlags);
6390 }
6391 }
6392 }
6393
6394 // Call the target to set up the argument values.
6395 SmallVector<SDValue, 8> InVals;
6396 SDValue NewRoot = TLI.LowerFormalArguments(DAG.getRoot(), F.getCallingConv(),
6397 F.isVarArg(), Ins,
6398 dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00006399
6400 // Verify that the target's LowerFormalArguments behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00006401 assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00006402 "LowerFormalArguments didn't return a valid chain!");
6403 assert(InVals.size() == Ins.size() &&
6404 "LowerFormalArguments didn't emit the correct number of values!");
Bill Wendling3ea58b62009-12-22 21:35:02 +00006405 DEBUG({
6406 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
6407 assert(InVals[i].getNode() &&
6408 "LowerFormalArguments emitted a null value!");
6409 assert(Ins[i].VT == InVals[i].getValueType() &&
6410 "LowerFormalArguments emitted a value with the wrong type!");
6411 }
6412 });
Bill Wendling3ea3c242009-12-22 02:10:19 +00006413
Dan Gohman5e866062009-08-06 15:37:27 +00006414 // Update the DAG with the new chain value resulting from argument lowering.
Dan Gohman98ca4f22009-08-05 01:29:28 +00006415 DAG.setRoot(NewRoot);
6416
6417 // Set up the argument values.
6418 unsigned i = 0;
6419 Idx = 1;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006420 if (!FLI.CanLowerReturn) {
6421 // Create a virtual register for the sret pointer, and put in a copy
6422 // from the sret argument into it.
6423 SmallVector<EVT, 1> ValueVTs;
6424 ComputeValueVTs(TLI, PointerType::getUnqual(F.getReturnType()), ValueVTs);
6425 EVT VT = ValueVTs[0];
6426 EVT RegVT = TLI.getRegisterType(*CurDAG->getContext(), VT);
6427 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Bill Wendling3ea58b62009-12-22 21:35:02 +00006428 SDValue ArgValue = getCopyFromParts(DAG, dl, 0, &InVals[0], 1,
Bill Wendling3ea3c242009-12-22 02:10:19 +00006429 RegVT, VT, AssertOp);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006430
Dan Gohman2048b852009-11-23 18:04:58 +00006431 MachineFunction& MF = SDB->DAG.getMachineFunction();
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006432 MachineRegisterInfo& RegInfo = MF.getRegInfo();
6433 unsigned SRetReg = RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT));
6434 FLI.DemoteRegister = SRetReg;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00006435 NewRoot = SDB->DAG.getCopyToReg(NewRoot, SDB->getCurDebugLoc(),
6436 SRetReg, ArgValue);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006437 DAG.setRoot(NewRoot);
Bill Wendling3ea3c242009-12-22 02:10:19 +00006438
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006439 // i indexes lowered arguments. Bump it past the hidden sret argument.
6440 // Idx indexes LLVM arguments. Don't touch it.
6441 ++i;
6442 }
Bill Wendling3ea3c242009-12-22 02:10:19 +00006443
Dan Gohman98ca4f22009-08-05 01:29:28 +00006444 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
6445 ++I, ++Idx) {
6446 SmallVector<SDValue, 4> ArgValues;
Owen Andersone50ed302009-08-10 22:56:29 +00006447 SmallVector<EVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00006448 ComputeValueVTs(TLI, I->getType(), ValueVTs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006449 unsigned NumValues = ValueVTs.size();
Dan Gohman98ca4f22009-08-05 01:29:28 +00006450 for (unsigned Value = 0; Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00006451 EVT VT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00006452 EVT PartVT = TLI.getRegisterType(*CurDAG->getContext(), VT);
6453 unsigned NumParts = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00006454
6455 if (!I->use_empty()) {
6456 ISD::NodeType AssertOp = ISD::DELETED_NODE;
6457 if (F.paramHasAttr(Idx, Attribute::SExt))
6458 AssertOp = ISD::AssertSext;
6459 else if (F.paramHasAttr(Idx, Attribute::ZExt))
6460 AssertOp = ISD::AssertZext;
6461
Bill Wendling3ea58b62009-12-22 21:35:02 +00006462 ArgValues.push_back(getCopyFromParts(DAG, dl, 0, &InVals[i],
Bill Wendling3ea3c242009-12-22 02:10:19 +00006463 NumParts, PartVT, VT,
6464 AssertOp));
Dan Gohman98ca4f22009-08-05 01:29:28 +00006465 }
Bill Wendling3ea3c242009-12-22 02:10:19 +00006466
Dan Gohman98ca4f22009-08-05 01:29:28 +00006467 i += NumParts;
6468 }
Bill Wendling3ea3c242009-12-22 02:10:19 +00006469
Dan Gohman98ca4f22009-08-05 01:29:28 +00006470 if (!I->use_empty()) {
Bill Wendling3ea3c242009-12-22 02:10:19 +00006471 SDValue Res = DAG.getMergeValues(&ArgValues[0], NumValues,
6472 SDB->getCurDebugLoc());
6473 SDB->setValue(I, Res);
6474
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006475 // If this argument is live outside of the entry block, insert a copy from
6476 // whereever we got it to the vreg that other BB's will reference it as.
Dan Gohman2048b852009-11-23 18:04:58 +00006477 SDB->CopyToExportRegsIfNeeded(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006478 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006479 }
Bill Wendling3ea3c242009-12-22 02:10:19 +00006480
Dan Gohman98ca4f22009-08-05 01:29:28 +00006481 assert(i == InVals.size() && "Argument register count mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006482
6483 // Finally, if the target has anything special to do, allow it to do so.
6484 // FIXME: this should insert code into the DAG!
Dan Gohman2048b852009-11-23 18:04:58 +00006485 EmitFunctionEntryCode(F, SDB->DAG.getMachineFunction());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006486}
6487
6488/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
6489/// ensure constants are generated when needed. Remember the virtual registers
6490/// that need to be added to the Machine PHI nodes as input. We cannot just
6491/// directly add them, because expansion might result in multiple MBB's for one
6492/// BB. As such, the start of the BB might correspond to a different MBB than
6493/// the end.
6494///
6495void
6496SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
6497 TerminatorInst *TI = LLVMBB->getTerminator();
6498
6499 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
6500
6501 // Check successor nodes' PHI nodes that expect a constant to be available
6502 // from this block.
6503 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
6504 BasicBlock *SuccBB = TI->getSuccessor(succ);
6505 if (!isa<PHINode>(SuccBB->begin())) continue;
6506 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006507
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006508 // If this terminator has multiple identical successors (common for
6509 // switches), only handle each succ once.
6510 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006511
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006512 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
6513 PHINode *PN;
6514
6515 // At this point we know that there is a 1-1 correspondence between LLVM PHI
6516 // nodes and Machine PHI nodes, but the incoming operands have not been
6517 // emitted yet.
6518 for (BasicBlock::iterator I = SuccBB->begin();
6519 (PN = dyn_cast<PHINode>(I)); ++I) {
6520 // Ignore dead phi's.
6521 if (PN->use_empty()) continue;
6522
6523 unsigned Reg;
6524 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
6525
6526 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
Dan Gohman2048b852009-11-23 18:04:58 +00006527 unsigned &RegOut = SDB->ConstantsOut[C];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006528 if (RegOut == 0) {
6529 RegOut = FuncInfo->CreateRegForValue(C);
Dan Gohman2048b852009-11-23 18:04:58 +00006530 SDB->CopyValueToVirtualRegister(C, RegOut);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006531 }
6532 Reg = RegOut;
6533 } else {
6534 Reg = FuncInfo->ValueMap[PHIOp];
6535 if (Reg == 0) {
6536 assert(isa<AllocaInst>(PHIOp) &&
6537 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
6538 "Didn't codegen value into a register!??");
6539 Reg = FuncInfo->CreateRegForValue(PHIOp);
Dan Gohman2048b852009-11-23 18:04:58 +00006540 SDB->CopyValueToVirtualRegister(PHIOp, Reg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006541 }
6542 }
6543
6544 // Remember that this register needs to added to the machine PHI node as
6545 // the input for this MBB.
Owen Andersone50ed302009-08-10 22:56:29 +00006546 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006547 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
6548 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
Owen Andersone50ed302009-08-10 22:56:29 +00006549 EVT VT = ValueVTs[vti];
Owen Anderson23b9b192009-08-12 00:36:31 +00006550 unsigned NumRegisters = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006551 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
Dan Gohman2048b852009-11-23 18:04:58 +00006552 SDB->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006553 Reg += NumRegisters;
6554 }
6555 }
6556 }
Dan Gohman2048b852009-11-23 18:04:58 +00006557 SDB->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006558}
6559
Dan Gohman3df24e62008-09-03 23:12:08 +00006560/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
6561/// supports legal types, and it emits MachineInstrs directly instead of
6562/// creating SelectionDAG nodes.
6563///
6564bool
6565SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
6566 FastISel *F) {
6567 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006568
Dan Gohman3df24e62008-09-03 23:12:08 +00006569 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
Dan Gohman2048b852009-11-23 18:04:58 +00006570 unsigned OrigNumPHINodesToUpdate = SDB->PHINodesToUpdate.size();
Dan Gohman3df24e62008-09-03 23:12:08 +00006571
6572 // Check successor nodes' PHI nodes that expect a constant to be available
6573 // from this block.
6574 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
6575 BasicBlock *SuccBB = TI->getSuccessor(succ);
6576 if (!isa<PHINode>(SuccBB->begin())) continue;
6577 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006578
Dan Gohman3df24e62008-09-03 23:12:08 +00006579 // If this terminator has multiple identical successors (common for
6580 // switches), only handle each succ once.
6581 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006582
Dan Gohman3df24e62008-09-03 23:12:08 +00006583 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
6584 PHINode *PN;
6585
6586 // At this point we know that there is a 1-1 correspondence between LLVM PHI
6587 // nodes and Machine PHI nodes, but the incoming operands have not been
6588 // emitted yet.
6589 for (BasicBlock::iterator I = SuccBB->begin();
6590 (PN = dyn_cast<PHINode>(I)); ++I) {
6591 // Ignore dead phi's.
6592 if (PN->use_empty()) continue;
6593
6594 // Only handle legal types. Two interesting things to note here. First,
6595 // by bailing out early, we may leave behind some dead instructions,
6596 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
6597 // own moves. Second, this check is necessary becuase FastISel doesn't
6598 // use CreateRegForValue to create registers, so it always creates
6599 // exactly one register for each non-void instruction.
Owen Andersone50ed302009-08-10 22:56:29 +00006600 EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00006601 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
6602 // Promote MVT::i1.
6603 if (VT == MVT::i1)
Owen Anderson23b9b192009-08-12 00:36:31 +00006604 VT = TLI.getTypeToTransformTo(*CurDAG->getContext(), VT);
Dan Gohman74321ab2008-09-10 21:01:31 +00006605 else {
Dan Gohman2048b852009-11-23 18:04:58 +00006606 SDB->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
Dan Gohman74321ab2008-09-10 21:01:31 +00006607 return false;
6608 }
Dan Gohman3df24e62008-09-03 23:12:08 +00006609 }
6610
6611 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
6612
6613 unsigned Reg = F->getRegForValue(PHIOp);
6614 if (Reg == 0) {
Dan Gohman2048b852009-11-23 18:04:58 +00006615 SDB->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
Dan Gohman3df24e62008-09-03 23:12:08 +00006616 return false;
6617 }
Dan Gohman2048b852009-11-23 18:04:58 +00006618 SDB->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
Dan Gohman3df24e62008-09-03 23:12:08 +00006619 }
6620 }
6621
6622 return true;
6623}