blob: 266cb64b7155663c603b43ca3a73739140dac320 [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"
Devang Patel53bb5c92009-11-10 23:06:00 +000030#include "llvm/LLVMContext.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000031#include "llvm/Module.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000032#include "llvm/CodeGen/FastISel.h"
33#include "llvm/CodeGen/GCStrategy.h"
34#include "llvm/CodeGen/GCMetadata.h"
35#include "llvm/CodeGen/MachineFunction.h"
36#include "llvm/CodeGen/MachineFrameInfo.h"
37#include "llvm/CodeGen/MachineInstrBuilder.h"
38#include "llvm/CodeGen/MachineJumpTableInfo.h"
39#include "llvm/CodeGen/MachineModuleInfo.h"
40#include "llvm/CodeGen/MachineRegisterInfo.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000041#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000042#include "llvm/CodeGen/SelectionDAG.h"
Devang Patel83489bb2009-01-13 00:35:13 +000043#include "llvm/CodeGen/DwarfWriter.h"
44#include "llvm/Analysis/DebugInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000045#include "llvm/Target/TargetRegisterInfo.h"
46#include "llvm/Target/TargetData.h"
47#include "llvm/Target/TargetFrameInfo.h"
48#include "llvm/Target/TargetInstrInfo.h"
Dale Johannesen49de9822009-02-05 01:49:45 +000049#include "llvm/Target/TargetIntrinsicInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000050#include "llvm/Target/TargetLowering.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000051#include "llvm/Target/TargetOptions.h"
52#include "llvm/Support/Compiler.h"
Mikhail Glushenkov2388a582009-01-16 07:02:28 +000053#include "llvm/Support/CommandLine.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000054#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000055#include "llvm/Support/ErrorHandling.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000056#include "llvm/Support/MathExtras.h"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +000057#include "llvm/Support/raw_ostream.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000058#include <algorithm>
59using namespace llvm;
60
Dale Johannesen601d3c02008-09-05 01:48:15 +000061/// LimitFloatPrecision - Generate low-precision inline sequences for
62/// some float libcalls (6, 8 or 12 bits).
63static unsigned LimitFloatPrecision;
64
65static cl::opt<unsigned, true>
66LimitFPPrecision("limit-float-precision",
67 cl::desc("Generate low-precision inline sequences "
68 "for some float libcalls"),
69 cl::location(LimitFloatPrecision),
70 cl::init(0));
71
Dan Gohmanf9bd4502009-11-23 17:46:23 +000072namespace {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000073 /// RegsForValue - This struct represents the registers (physical or virtual)
74 /// that a particular set of values is assigned, and the type information about
75 /// the value. The most common situation is to represent one value at a time,
76 /// but struct or array values are handled element-wise as multiple values.
77 /// The splitting of aggregates is performed recursively, so that we never
78 /// have aggregate-typed registers. The values at this point do not necessarily
79 /// have legal types, so each value may require one or more registers of some
80 /// legal type.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +000081 ///
Dan Gohmanf9bd4502009-11-23 17:46:23 +000082 struct RegsForValue {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000083 /// TLI - The TargetLowering object.
84 ///
85 const TargetLowering *TLI;
86
87 /// ValueVTs - The value types of the values, which may not be legal, and
88 /// may need be promoted or synthesized from one or more registers.
89 ///
Owen Andersone50ed302009-08-10 22:56:29 +000090 SmallVector<EVT, 4> ValueVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +000091
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000092 /// RegVTs - The value types of the registers. This is the same size as
93 /// ValueVTs and it records, for each value, what the type of the assigned
94 /// register or registers are. (Individual values are never synthesized
95 /// from more than one type of register.)
96 ///
97 /// With virtual registers, the contents of RegVTs is redundant with TLI's
98 /// getRegisterType member function, however when with physical registers
99 /// it is necessary to have a separate record of the types.
100 ///
Owen Andersone50ed302009-08-10 22:56:29 +0000101 SmallVector<EVT, 4> RegVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000102
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000103 /// Regs - This list holds the registers assigned to the values.
104 /// Each legal or promoted value requires one register, and each
105 /// expanded value requires multiple registers.
106 ///
107 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000108
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000109 RegsForValue() : TLI(0) {}
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000110
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000111 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000112 const SmallVector<unsigned, 4> &regs,
Owen Andersone50ed302009-08-10 22:56:29 +0000113 EVT regvt, EVT valuevt)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000114 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
115 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000116 const SmallVector<unsigned, 4> &regs,
Owen Andersone50ed302009-08-10 22:56:29 +0000117 const SmallVector<EVT, 4> &regvts,
118 const SmallVector<EVT, 4> &valuevts)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000119 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
Owen Anderson23b9b192009-08-12 00:36:31 +0000120 RegsForValue(LLVMContext &Context, const TargetLowering &tli,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000121 unsigned Reg, const Type *Ty) : TLI(&tli) {
122 ComputeValueVTs(tli, Ty, ValueVTs);
123
124 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +0000125 EVT ValueVT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +0000126 unsigned NumRegs = TLI->getNumRegisters(Context, ValueVT);
127 EVT RegisterVT = TLI->getRegisterType(Context, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000128 for (unsigned i = 0; i != NumRegs; ++i)
129 Regs.push_back(Reg + i);
130 RegVTs.push_back(RegisterVT);
131 Reg += NumRegs;
132 }
133 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000134
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000135 /// append - Add the specified values to this one.
136 void append(const RegsForValue &RHS) {
137 TLI = RHS.TLI;
138 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
139 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
140 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
141 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000142
143
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000144 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000145 /// this value and returns the result as a ValueVTs value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000146 /// Chain/Flag as the input and updates them for the output Chain/Flag.
147 /// If the Flag pointer is NULL, no flag is used.
Bill Wendlingec72e322009-12-22 01:11:43 +0000148 SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl, unsigned Order,
149 SDValue &Chain, SDValue *Flag) const;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000150
151 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000152 /// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000153 /// Chain/Flag as the input and updates them for the output Chain/Flag.
154 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000155 void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Bill Wendlingec72e322009-12-22 01:11:43 +0000156 unsigned Order, SDValue &Chain, SDValue *Flag) const;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000157
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000158 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
Evan Cheng697cbbf2009-03-20 18:03:34 +0000159 /// operand list. This adds the code marker, matching input operand index
160 /// (if applicable), and includes the number of values added into it.
161 void AddInlineAsmOperands(unsigned Code,
162 bool HasMatching, unsigned MatchingIdx,
Bill Wendling651ad132009-12-22 01:25:10 +0000163 SelectionDAG &DAG, unsigned Order,
164 std::vector<SDValue> &Ops) const;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000165 };
166}
167
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000168/// getCopyFromParts - Create a value that contains the specified legal parts
169/// combined into the value they represent. If the parts combine to a type
170/// larger then ValueVT then AssertOp can be used to specify whether the extra
171/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
172/// (ISD::AssertSext).
Bill Wendling3ea3c242009-12-22 02:10:19 +0000173static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl, unsigned Order,
Dale Johannesen66978ee2009-01-31 02:22:37 +0000174 const SDValue *Parts,
Owen Andersone50ed302009-08-10 22:56:29 +0000175 unsigned NumParts, EVT PartVT, EVT ValueVT,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000176 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000177 assert(NumParts > 0 && "No parts to assemble!");
Dan Gohmane9530ec2009-01-15 16:58:17 +0000178 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000179 SDValue Val = Parts[0];
Bill Wendling3ea3c242009-12-22 02:10:19 +0000180 if (DisableScheduling) DAG.AssignOrdering(Val.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000181
182 if (NumParts > 1) {
183 // Assemble the value from multiple parts.
Eli Friedman2ac8b322009-05-20 06:02:09 +0000184 if (!ValueVT.isVector() && ValueVT.isInteger()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000185 unsigned PartBits = PartVT.getSizeInBits();
186 unsigned ValueBits = ValueVT.getSizeInBits();
187
188 // Assemble the power of 2 part.
189 unsigned RoundParts = NumParts & (NumParts - 1) ?
190 1 << Log2_32(NumParts) : NumParts;
191 unsigned RoundBits = PartBits * RoundParts;
Owen Andersone50ed302009-08-10 22:56:29 +0000192 EVT RoundVT = RoundBits == ValueBits ?
Owen Anderson23b9b192009-08-12 00:36:31 +0000193 ValueVT : EVT::getIntegerVT(*DAG.getContext(), RoundBits);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000194 SDValue Lo, Hi;
195
Owen Anderson23b9b192009-08-12 00:36:31 +0000196 EVT HalfVT = EVT::getIntegerVT(*DAG.getContext(), RoundBits/2);
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000197
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000198 if (RoundParts > 2) {
Bill Wendling3ea3c242009-12-22 02:10:19 +0000199 Lo = getCopyFromParts(DAG, dl, Order, Parts, RoundParts / 2,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000200 PartVT, HalfVT);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000201 Hi = getCopyFromParts(DAG, dl, Order, Parts + RoundParts / 2,
202 RoundParts / 2, PartVT, HalfVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000203 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000204 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]);
205 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000206 }
Bill Wendling3ea3c242009-12-22 02:10:19 +0000207
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000208 if (TLI.isBigEndian())
209 std::swap(Lo, Hi);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000210
Dale Johannesen66978ee2009-01-31 02:22:37 +0000211 Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000212
Bill Wendling3ea3c242009-12-22 02:10:19 +0000213 if (DisableScheduling) {
214 DAG.AssignOrdering(Lo.getNode(), Order);
215 DAG.AssignOrdering(Hi.getNode(), Order);
216 DAG.AssignOrdering(Val.getNode(), Order);
217 }
218
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000219 if (RoundParts < NumParts) {
220 // Assemble the trailing non-power-of-2 part.
221 unsigned OddParts = NumParts - RoundParts;
Owen Anderson23b9b192009-08-12 00:36:31 +0000222 EVT OddVT = EVT::getIntegerVT(*DAG.getContext(), OddParts * PartBits);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000223 Hi = getCopyFromParts(DAG, dl, Order,
224 Parts + RoundParts, OddParts, PartVT, OddVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000225
226 // Combine the round and odd parts.
227 Lo = Val;
228 if (TLI.isBigEndian())
229 std::swap(Lo, Hi);
Owen Anderson23b9b192009-08-12 00:36:31 +0000230 EVT TotalVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000231 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000232 if (DisableScheduling) DAG.AssignOrdering(Hi.getNode(), Order);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000233 Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000234 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands92abc622009-01-31 15:50:11 +0000235 TLI.getPointerTy()));
Bill Wendling3ea3c242009-12-22 02:10:19 +0000236 if (DisableScheduling) DAG.AssignOrdering(Hi.getNode(), Order);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000237 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000238 if (DisableScheduling) DAG.AssignOrdering(Lo.getNode(), Order);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000239 Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000240 if (DisableScheduling) DAG.AssignOrdering(Val.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000241 }
Eli Friedman2ac8b322009-05-20 06:02:09 +0000242 } else if (ValueVT.isVector()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000243 // Handle a multi-element vector.
Owen Andersone50ed302009-08-10 22:56:29 +0000244 EVT IntermediateVT, RegisterVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000245 unsigned NumIntermediates;
246 unsigned NumRegs =
Owen Anderson23b9b192009-08-12 00:36:31 +0000247 TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT, IntermediateVT,
248 NumIntermediates, RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000249 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
250 NumParts = NumRegs; // Silence a compiler warning.
251 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
252 assert(RegisterVT == Parts[0].getValueType() &&
253 "Part type doesn't match part!");
254
255 // Assemble the parts into intermediate operands.
256 SmallVector<SDValue, 8> Ops(NumIntermediates);
257 if (NumIntermediates == NumParts) {
258 // If the register was not expanded, truncate or copy the value,
259 // as appropriate.
260 for (unsigned i = 0; i != NumParts; ++i)
Bill Wendling3ea3c242009-12-22 02:10:19 +0000261 Ops[i] = getCopyFromParts(DAG, dl, Order, &Parts[i], 1,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000262 PartVT, IntermediateVT);
263 } else if (NumParts > 0) {
264 // If the intermediate type was expanded, build the intermediate operands
265 // from the parts.
266 assert(NumParts % NumIntermediates == 0 &&
267 "Must expand into a divisible number of parts!");
268 unsigned Factor = NumParts / NumIntermediates;
269 for (unsigned i = 0; i != NumIntermediates; ++i)
Bill Wendling3ea3c242009-12-22 02:10:19 +0000270 Ops[i] = getCopyFromParts(DAG, dl, Order, &Parts[i * Factor], Factor,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000271 PartVT, IntermediateVT);
272 }
273
274 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
275 // operands.
276 Val = DAG.getNode(IntermediateVT.isVector() ?
Dale Johannesen66978ee2009-01-31 02:22:37 +0000277 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000278 ValueVT, &Ops[0], NumIntermediates);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000279 if (DisableScheduling) DAG.AssignOrdering(Val.getNode(), Order);
Eli Friedman2ac8b322009-05-20 06:02:09 +0000280 } else if (PartVT.isFloatingPoint()) {
281 // FP split into multiple FP parts (for ppcf128)
Owen Anderson825b72b2009-08-11 20:47:22 +0000282 assert(ValueVT == EVT(MVT::ppcf128) && PartVT == EVT(MVT::f64) &&
Eli Friedman2ac8b322009-05-20 06:02:09 +0000283 "Unexpected split");
284 SDValue Lo, Hi;
Owen Anderson825b72b2009-08-11 20:47:22 +0000285 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, EVT(MVT::f64), Parts[0]);
286 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, EVT(MVT::f64), Parts[1]);
Eli Friedman2ac8b322009-05-20 06:02:09 +0000287 if (TLI.isBigEndian())
288 std::swap(Lo, Hi);
289 Val = DAG.getNode(ISD::BUILD_PAIR, dl, ValueVT, Lo, Hi);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000290
291 if (DisableScheduling) {
292 DAG.AssignOrdering(Hi.getNode(), Order);
293 DAG.AssignOrdering(Lo.getNode(), Order);
294 DAG.AssignOrdering(Val.getNode(), Order);
295 }
Eli Friedman2ac8b322009-05-20 06:02:09 +0000296 } else {
297 // FP split into integer parts (soft fp)
298 assert(ValueVT.isFloatingPoint() && PartVT.isInteger() &&
299 !PartVT.isVector() && "Unexpected split");
Owen Anderson23b9b192009-08-12 00:36:31 +0000300 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits());
Bill Wendling3ea3c242009-12-22 02:10:19 +0000301 Val = getCopyFromParts(DAG, dl, Order, Parts, NumParts, PartVT, IntVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000302 }
303 }
304
305 // There is now one part, held in Val. Correct it to match ValueVT.
306 PartVT = Val.getValueType();
307
308 if (PartVT == ValueVT)
309 return Val;
310
311 if (PartVT.isVector()) {
312 assert(ValueVT.isVector() && "Unknown vector conversion!");
Bill Wendling3ea3c242009-12-22 02:10:19 +0000313 SDValue Res = DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
314 if (DisableScheduling)
315 DAG.AssignOrdering(Res.getNode(), Order);
316 return Res;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000317 }
318
319 if (ValueVT.isVector()) {
320 assert(ValueVT.getVectorElementType() == PartVT &&
321 ValueVT.getVectorNumElements() == 1 &&
322 "Only trivial scalar-to-vector conversions should get here!");
Bill Wendling3ea3c242009-12-22 02:10:19 +0000323 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val);
324 if (DisableScheduling)
325 DAG.AssignOrdering(Res.getNode(), Order);
326 return Res;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000327 }
328
329 if (PartVT.isInteger() &&
330 ValueVT.isInteger()) {
331 if (ValueVT.bitsLT(PartVT)) {
332 // For a truncate, see if we have any information to
333 // indicate whether the truncated bits will always be
334 // zero or sign-extension.
335 if (AssertOp != ISD::DELETED_NODE)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000336 Val = DAG.getNode(AssertOp, dl, PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000337 DAG.getValueType(ValueVT));
Bill Wendling3ea3c242009-12-22 02:10:19 +0000338 if (DisableScheduling) DAG.AssignOrdering(Val.getNode(), Order);
339 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
340 if (DisableScheduling) DAG.AssignOrdering(Val.getNode(), Order);
341 return Val;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000342 } else {
Bill Wendling3ea3c242009-12-22 02:10:19 +0000343 Val = DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val);
344 if (DisableScheduling) DAG.AssignOrdering(Val.getNode(), Order);
345 return Val;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000346 }
347 }
348
349 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Bill Wendling3ea3c242009-12-22 02:10:19 +0000350 if (ValueVT.bitsLT(Val.getValueType())) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000351 // FP_ROUND's are always exact here.
Bill Wendling3ea3c242009-12-22 02:10:19 +0000352 Val = DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val,
353 DAG.getIntPtrConstant(1));
354 if (DisableScheduling) DAG.AssignOrdering(Val.getNode(), Order);
355 return Val;
356 }
357
358 Val = DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val);
359 if (DisableScheduling) DAG.AssignOrdering(Val.getNode(), Order);
360 return Val;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000361 }
362
Bill Wendling3ea3c242009-12-22 02:10:19 +0000363 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits()) {
364 Val = DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
365 if (DisableScheduling) DAG.AssignOrdering(Val.getNode(), Order);
366 return Val;
367 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000368
Torok Edwinc23197a2009-07-14 16:55:14 +0000369 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000370 return SDValue();
371}
372
373/// getCopyToParts - Create a series of nodes that contain the specified value
374/// split into legal parts. If the parts contain more bits than Val, then, for
375/// integers, ExtendKind can be used to specify how to generate the extra bits.
Bill Wendling3ea3c242009-12-22 02:10:19 +0000376static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, unsigned Order,
377 SDValue Val, SDValue *Parts, unsigned NumParts,
378 EVT PartVT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000379 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000380 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Andersone50ed302009-08-10 22:56:29 +0000381 EVT PtrVT = TLI.getPointerTy();
382 EVT ValueVT = Val.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000383 unsigned PartBits = PartVT.getSizeInBits();
Dale Johannesen8a36f502009-02-25 22:39:13 +0000384 unsigned OrigNumParts = NumParts;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000385 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
386
387 if (!NumParts)
388 return;
389
390 if (!ValueVT.isVector()) {
391 if (PartVT == ValueVT) {
392 assert(NumParts == 1 && "No-op copy with multiple parts!");
393 Parts[0] = Val;
394 return;
395 }
396
397 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
398 // If the parts cover more bits than the value has, promote the value.
399 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
400 assert(NumParts == 1 && "Do not know what to promote to!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000401 Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000402 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000403 ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000404 Val = DAG.getNode(ExtendKind, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000405 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000406 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000407 }
408 } else if (PartBits == ValueVT.getSizeInBits()) {
409 // Different types of the same size.
410 assert(NumParts == 1 && PartVT != ValueVT);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000411 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000412 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
413 // If the parts cover less bits than value has, truncate the value.
414 if (PartVT.isInteger() && ValueVT.isInteger()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000415 ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000416 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000417 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000418 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000419 }
420 }
421
Bill Wendling3ea3c242009-12-22 02:10:19 +0000422 if (DisableScheduling) DAG.AssignOrdering(Val.getNode(), Order);
423
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000424 // The value may have changed - recompute ValueVT.
425 ValueVT = Val.getValueType();
426 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
427 "Failed to tile the value with PartVT!");
428
429 if (NumParts == 1) {
430 assert(PartVT == ValueVT && "Type conversion failed!");
431 Parts[0] = Val;
432 return;
433 }
434
435 // Expand the value into multiple parts.
436 if (NumParts & (NumParts - 1)) {
437 // The number of parts is not a power of 2. Split off and copy the tail.
438 assert(PartVT.isInteger() && ValueVT.isInteger() &&
439 "Do not know what to expand to!");
440 unsigned RoundParts = 1 << Log2_32(NumParts);
441 unsigned RoundBits = RoundParts * PartBits;
442 unsigned OddParts = NumParts - RoundParts;
Dale Johannesen66978ee2009-01-31 02:22:37 +0000443 SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000444 DAG.getConstant(RoundBits,
Duncan Sands92abc622009-01-31 15:50:11 +0000445 TLI.getPointerTy()));
Bill Wendling3ea3c242009-12-22 02:10:19 +0000446 getCopyToParts(DAG, dl, Order, OddVal, Parts + RoundParts,
447 OddParts, PartVT);
448
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000449 if (TLI.isBigEndian())
450 // The odd parts were reversed by getCopyToParts - unreverse them.
451 std::reverse(Parts + RoundParts, Parts + NumParts);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000452
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000453 NumParts = RoundParts;
Owen Anderson23b9b192009-08-12 00:36:31 +0000454 ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000455 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000456
457 if (DisableScheduling) {
458 DAG.AssignOrdering(OddVal.getNode(), Order);
459 DAG.AssignOrdering(Val.getNode(), Order);
460 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000461 }
462
463 // The number of parts is a power of 2. Repeatedly bisect the value using
464 // EXTRACT_ELEMENT.
Scott Michelfdc40a02009-02-17 22:15:04 +0000465 Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson23b9b192009-08-12 00:36:31 +0000466 EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits()),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000467 Val);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000468
469 if (DisableScheduling)
470 DAG.AssignOrdering(Parts[0].getNode(), Order);
471
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000472 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
473 for (unsigned i = 0; i < NumParts; i += StepSize) {
474 unsigned ThisBits = StepSize * PartBits / 2;
Owen Anderson23b9b192009-08-12 00:36:31 +0000475 EVT ThisVT = EVT::getIntegerVT(*DAG.getContext(), ThisBits);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000476 SDValue &Part0 = Parts[i];
477 SDValue &Part1 = Parts[i+StepSize/2];
478
Scott Michelfdc40a02009-02-17 22:15:04 +0000479 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000480 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000481 DAG.getConstant(1, PtrVT));
Scott Michelfdc40a02009-02-17 22:15:04 +0000482 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000483 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000484 DAG.getConstant(0, PtrVT));
485
Bill Wendling3ea3c242009-12-22 02:10:19 +0000486 if (DisableScheduling) {
487 DAG.AssignOrdering(Part0.getNode(), Order);
488 DAG.AssignOrdering(Part1.getNode(), Order);
489 }
490
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000491 if (ThisBits == PartBits && ThisVT != PartVT) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000492 Part0 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000493 PartVT, Part0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000494 Part1 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000495 PartVT, Part1);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000496 if (DisableScheduling) {
497 DAG.AssignOrdering(Part0.getNode(), Order);
498 DAG.AssignOrdering(Part1.getNode(), Order);
499 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000500 }
501 }
502 }
503
504 if (TLI.isBigEndian())
Dale Johannesen8a36f502009-02-25 22:39:13 +0000505 std::reverse(Parts, Parts + OrigNumParts);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000506
507 return;
508 }
509
510 // Vector ValueVT.
511 if (NumParts == 1) {
512 if (PartVT != ValueVT) {
Bob Wilson5afffae2009-12-18 01:03:29 +0000513 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000514 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000515 } else {
516 assert(ValueVT.getVectorElementType() == PartVT &&
517 ValueVT.getVectorNumElements() == 1 &&
518 "Only trivial vector-to-scalar conversions should get here!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000519 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000520 PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000521 DAG.getConstant(0, PtrVT));
522 }
523 }
524
Bill Wendling3ea3c242009-12-22 02:10:19 +0000525 if (DisableScheduling)
526 DAG.AssignOrdering(Val.getNode(), Order);
527
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000528 Parts[0] = Val;
529 return;
530 }
531
532 // Handle a multi-element vector.
Owen Andersone50ed302009-08-10 22:56:29 +0000533 EVT IntermediateVT, RegisterVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000534 unsigned NumIntermediates;
Owen Anderson23b9b192009-08-12 00:36:31 +0000535 unsigned NumRegs = TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT,
536 IntermediateVT, NumIntermediates, RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000537 unsigned NumElements = ValueVT.getVectorNumElements();
538
539 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
540 NumParts = NumRegs; // Silence a compiler warning.
541 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
542
543 // Split the vector into intermediate operands.
544 SmallVector<SDValue, 8> Ops(NumIntermediates);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000545 for (unsigned i = 0; i != NumIntermediates; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000546 if (IntermediateVT.isVector())
Scott Michelfdc40a02009-02-17 22:15:04 +0000547 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000548 IntermediateVT, Val,
549 DAG.getConstant(i * (NumElements / NumIntermediates),
550 PtrVT));
551 else
Scott Michelfdc40a02009-02-17 22:15:04 +0000552 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000553 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000554 DAG.getConstant(i, PtrVT));
555
Bill Wendling3ea3c242009-12-22 02:10:19 +0000556 if (DisableScheduling)
557 DAG.AssignOrdering(Ops[i].getNode(), Order);
558 }
559
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000560 // Split the intermediate operands into legal parts.
561 if (NumParts == NumIntermediates) {
562 // If the register was not expanded, promote or copy the value,
563 // as appropriate.
564 for (unsigned i = 0; i != NumParts; ++i)
Bill Wendling3ea3c242009-12-22 02:10:19 +0000565 getCopyToParts(DAG, dl, Order, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000566 } else if (NumParts > 0) {
567 // If the intermediate type was expanded, split each the value into
568 // legal parts.
569 assert(NumParts % NumIntermediates == 0 &&
570 "Must expand into a divisible number of parts!");
571 unsigned Factor = NumParts / NumIntermediates;
572 for (unsigned i = 0; i != NumIntermediates; ++i)
Bill Wendling3ea3c242009-12-22 02:10:19 +0000573 getCopyToParts(DAG, dl, Order, Ops[i], &Parts[i*Factor], Factor, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000574 }
575}
576
577
Dan Gohman2048b852009-11-23 18:04:58 +0000578void SelectionDAGBuilder::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000579 AA = &aa;
580 GFI = gfi;
581 TD = DAG.getTarget().getTargetData();
582}
583
584/// clear - Clear out the curret SelectionDAG and the associated
Dan Gohman2048b852009-11-23 18:04:58 +0000585/// state and prepare this SelectionDAGBuilder object to be used
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000586/// for a new block. This doesn't clear out information about
587/// additional blocks that are needed to complete switch lowering
588/// or PHI node updating; that information is cleared out as it is
589/// consumed.
Dan Gohman2048b852009-11-23 18:04:58 +0000590void SelectionDAGBuilder::clear() {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000591 NodeMap.clear();
592 PendingLoads.clear();
593 PendingExports.clear();
Evan Chengfb2e7522009-09-18 21:02:19 +0000594 EdgeMapping.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000595 DAG.clear();
Bill Wendling8fcf1702009-02-06 21:36:23 +0000596 CurDebugLoc = DebugLoc::getUnknownLoc();
Dan Gohman98ca4f22009-08-05 01:29:28 +0000597 HasTailCall = false;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000598}
599
600/// getRoot - Return the current virtual root of the Selection DAG,
601/// flushing any PendingLoad items. This must be done before emitting
602/// a store or any other node that may need to be ordered after any
603/// prior load instructions.
604///
Dan Gohman2048b852009-11-23 18:04:58 +0000605SDValue SelectionDAGBuilder::getRoot() {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000606 if (PendingLoads.empty())
607 return DAG.getRoot();
608
609 if (PendingLoads.size() == 1) {
610 SDValue Root = PendingLoads[0];
611 DAG.setRoot(Root);
612 PendingLoads.clear();
613 return Root;
614 }
615
616 // Otherwise, we have to make a token factor node.
Owen Anderson825b72b2009-08-11 20:47:22 +0000617 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000618 &PendingLoads[0], PendingLoads.size());
619 PendingLoads.clear();
620 DAG.setRoot(Root);
621 return Root;
622}
623
624/// getControlRoot - Similar to getRoot, but instead of flushing all the
625/// PendingLoad items, flush all the PendingExports items. It is necessary
626/// to do this before emitting a terminator instruction.
627///
Dan Gohman2048b852009-11-23 18:04:58 +0000628SDValue SelectionDAGBuilder::getControlRoot() {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000629 SDValue Root = DAG.getRoot();
630
631 if (PendingExports.empty())
632 return Root;
633
634 // Turn all of the CopyToReg chains into one factored node.
635 if (Root.getOpcode() != ISD::EntryToken) {
636 unsigned i = 0, e = PendingExports.size();
637 for (; i != e; ++i) {
638 assert(PendingExports[i].getNode()->getNumOperands() > 1);
639 if (PendingExports[i].getNode()->getOperand(0) == Root)
640 break; // Don't add the root if we already indirectly depend on it.
641 }
642
643 if (i == e)
644 PendingExports.push_back(Root);
645 }
646
Owen Anderson825b72b2009-08-11 20:47:22 +0000647 Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000648 &PendingExports[0],
649 PendingExports.size());
650 PendingExports.clear();
651 DAG.setRoot(Root);
652 return Root;
653}
654
Dan Gohman2048b852009-11-23 18:04:58 +0000655void SelectionDAGBuilder::visit(Instruction &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000656 visit(I.getOpcode(), I);
657}
658
Dan Gohman2048b852009-11-23 18:04:58 +0000659void SelectionDAGBuilder::visit(unsigned Opcode, User &I) {
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +0000660 // We're processing a new instruction.
661 ++SDNodeOrder;
662
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000663 // Note: this doesn't use InstVisitor, because it has to work with
664 // ConstantExpr's in addition to instructions.
665 switch (Opcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000666 default: llvm_unreachable("Unknown instruction type encountered!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000667 // Build the switch statement using the Instruction.def file.
668#define HANDLE_INST(NUM, OPCODE, CLASS) \
Bill Wendling3b7a41c2009-12-21 19:59:38 +0000669 case Instruction::OPCODE: return visit##OPCODE((CLASS&)I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000670#include "llvm/Instruction.def"
671 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000672}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000673
Dan Gohman2048b852009-11-23 18:04:58 +0000674SDValue SelectionDAGBuilder::getValue(const Value *V) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000675 SDValue &N = NodeMap[V];
676 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000677
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000678 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Owen Andersone50ed302009-08-10 22:56:29 +0000679 EVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000680
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000681 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000682 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000683
684 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
685 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000686
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000687 if (isa<ConstantPointerNull>(C))
688 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000689
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000690 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000691 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000692
Nate Begeman9008ca62009-04-27 18:41:29 +0000693 if (isa<UndefValue>(C) && !V->getType()->isAggregateType())
Dale Johannesene8d72302009-02-06 23:05:02 +0000694 return N = DAG.getUNDEF(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000695
696 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
697 visit(CE->getOpcode(), *CE);
698 SDValue N1 = NodeMap[V];
699 assert(N1.getNode() && "visit didn't populate the ValueMap!");
700 return N1;
701 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000702
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000703 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
704 SmallVector<SDValue, 4> Constants;
705 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
706 OI != OE; ++OI) {
707 SDNode *Val = getValue(*OI).getNode();
Dan Gohmaned48caf2009-09-08 01:44:02 +0000708 // If the operand is an empty aggregate, there are no values.
709 if (!Val) continue;
710 // Add each leaf value from the operand to the Constants list
711 // to form a flattened list of all the values.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000712 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
713 Constants.push_back(SDValue(Val, i));
714 }
Bill Wendling87710f02009-12-21 23:47:40 +0000715
716 SDValue Res = DAG.getMergeValues(&Constants[0], Constants.size(),
717 getCurDebugLoc());
718 if (DisableScheduling)
719 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
720 return Res;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000721 }
722
723 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
724 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
725 "Unknown struct or array constant!");
726
Owen Andersone50ed302009-08-10 22:56:29 +0000727 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000728 ComputeValueVTs(TLI, C->getType(), ValueVTs);
729 unsigned NumElts = ValueVTs.size();
730 if (NumElts == 0)
731 return SDValue(); // empty struct
732 SmallVector<SDValue, 4> Constants(NumElts);
733 for (unsigned i = 0; i != NumElts; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +0000734 EVT EltVT = ValueVTs[i];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000735 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +0000736 Constants[i] = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000737 else if (EltVT.isFloatingPoint())
738 Constants[i] = DAG.getConstantFP(0, EltVT);
739 else
740 Constants[i] = DAG.getConstant(0, EltVT);
741 }
Bill Wendling87710f02009-12-21 23:47:40 +0000742
743 SDValue Res = DAG.getMergeValues(&Constants[0], NumElts,
744 getCurDebugLoc());
745 if (DisableScheduling)
746 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
747 return Res;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000748 }
749
Dan Gohman8c2b5252009-10-30 01:27:03 +0000750 if (BlockAddress *BA = dyn_cast<BlockAddress>(C))
Dan Gohman29cbade2009-11-20 23:18:13 +0000751 return DAG.getBlockAddress(BA, VT);
Dan Gohman8c2b5252009-10-30 01:27:03 +0000752
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000753 const VectorType *VecTy = cast<VectorType>(V->getType());
754 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000755
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000756 // Now that we know the number and type of the elements, get that number of
757 // elements into the Ops array based on what kind of constant it is.
758 SmallVector<SDValue, 16> Ops;
759 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
760 for (unsigned i = 0; i != NumElements; ++i)
761 Ops.push_back(getValue(CP->getOperand(i)));
762 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +0000763 assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!");
Owen Andersone50ed302009-08-10 22:56:29 +0000764 EVT EltVT = TLI.getValueType(VecTy->getElementType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000765
766 SDValue Op;
Nate Begeman9008ca62009-04-27 18:41:29 +0000767 if (EltVT.isFloatingPoint())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000768 Op = DAG.getConstantFP(0, EltVT);
769 else
770 Op = DAG.getConstant(0, EltVT);
771 Ops.assign(NumElements, Op);
772 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000773
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000774 // Create a BUILD_VECTOR node.
Bill Wendling87710f02009-12-21 23:47:40 +0000775 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
776 VT, &Ops[0], Ops.size());
777 if (DisableScheduling)
778 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
779
780 return NodeMap[V] = Res;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000781 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000782
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000783 // If this is a static alloca, generate it as the frameindex instead of
784 // computation.
785 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
786 DenseMap<const AllocaInst*, int>::iterator SI =
787 FuncInfo.StaticAllocaMap.find(AI);
788 if (SI != FuncInfo.StaticAllocaMap.end())
789 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
790 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000791
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000792 unsigned InReg = FuncInfo.ValueMap[V];
793 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000794
Owen Anderson23b9b192009-08-12 00:36:31 +0000795 RegsForValue RFV(*DAG.getContext(), TLI, InReg, V->getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000796 SDValue Chain = DAG.getEntryNode();
Bill Wendlingec72e322009-12-22 01:11:43 +0000797 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(),
798 SDNodeOrder, Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000799}
800
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000801/// Get the EVTs and ArgFlags collections that represent the return type
802/// of the given function. This does not require a DAG or a return value, and
803/// is suitable for use before any DAGs for the function are constructed.
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000804static void getReturnInfo(const Type* ReturnType,
805 Attributes attr, SmallVectorImpl<EVT> &OutVTs,
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000806 SmallVectorImpl<ISD::ArgFlagsTy> &OutFlags,
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000807 TargetLowering &TLI,
808 SmallVectorImpl<uint64_t> *Offsets = 0) {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000809 SmallVector<EVT, 4> ValueVTs;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000810 ComputeValueVTs(TLI, ReturnType, ValueVTs, Offsets);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000811 unsigned NumValues = ValueVTs.size();
812 if ( NumValues == 0 ) return;
813
814 for (unsigned j = 0, f = NumValues; j != f; ++j) {
815 EVT VT = ValueVTs[j];
816 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000817
818 if (attr & Attribute::SExt)
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000819 ExtendKind = ISD::SIGN_EXTEND;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000820 else if (attr & Attribute::ZExt)
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000821 ExtendKind = ISD::ZERO_EXTEND;
822
823 // FIXME: C calling convention requires the return type to be promoted to
824 // at least 32-bit. But this is not necessary for non-C calling
825 // conventions. The frontend should mark functions whose return values
826 // require promoting with signext or zeroext attributes.
827 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000828 EVT MinVT = TLI.getRegisterType(ReturnType->getContext(), MVT::i32);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000829 if (VT.bitsLT(MinVT))
830 VT = MinVT;
831 }
832
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000833 unsigned NumParts = TLI.getNumRegisters(ReturnType->getContext(), VT);
834 EVT PartVT = TLI.getRegisterType(ReturnType->getContext(), VT);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000835 // 'inreg' on function refers to return value
836 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000837 if (attr & Attribute::InReg)
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000838 Flags.setInReg();
839
840 // Propagate extension type if any
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000841 if (attr & Attribute::SExt)
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000842 Flags.setSExt();
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000843 else if (attr & Attribute::ZExt)
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000844 Flags.setZExt();
845
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000846 for (unsigned i = 0; i < NumParts; ++i) {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +0000847 OutVTs.push_back(PartVT);
848 OutFlags.push_back(Flags);
849 }
850 }
851}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000852
Dan Gohman2048b852009-11-23 18:04:58 +0000853void SelectionDAGBuilder::visitRet(ReturnInst &I) {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000854 SDValue Chain = getControlRoot();
855 SmallVector<ISD::OutputArg, 8> Outs;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000856 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
857
858 if (!FLI.CanLowerReturn) {
859 unsigned DemoteReg = FLI.DemoteRegister;
860 const Function *F = I.getParent()->getParent();
861
862 // Emit a store of the return value through the virtual register.
863 // Leave Outs empty so that LowerReturn won't try to load return
864 // registers the usual way.
865 SmallVector<EVT, 1> PtrValueVTs;
866 ComputeValueVTs(TLI, PointerType::getUnqual(F->getReturnType()),
867 PtrValueVTs);
868
869 SDValue RetPtr = DAG.getRegister(DemoteReg, PtrValueVTs[0]);
870 SDValue RetOp = getValue(I.getOperand(0));
871
Owen Andersone50ed302009-08-10 22:56:29 +0000872 SmallVector<EVT, 4> ValueVTs;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000873 SmallVector<uint64_t, 4> Offsets;
874 ComputeValueVTs(TLI, I.getOperand(0)->getType(), ValueVTs, &Offsets);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000875 unsigned NumValues = ValueVTs.size();
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000876
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000877 SmallVector<SDValue, 4> Chains(NumValues);
878 EVT PtrVT = PtrValueVTs[0];
Bill Wendling87710f02009-12-21 23:47:40 +0000879 for (unsigned i = 0; i != NumValues; ++i) {
880 SDValue Add = DAG.getNode(ISD::ADD, getCurDebugLoc(), PtrVT, RetPtr,
881 DAG.getConstant(Offsets[i], PtrVT));
882 Chains[i] =
883 DAG.getStore(Chain, getCurDebugLoc(),
884 SDValue(RetOp.getNode(), RetOp.getResNo() + i),
885 Add, NULL, Offsets[i], false, 0);
886
887 if (DisableScheduling) {
888 DAG.AssignOrdering(Add.getNode(), SDNodeOrder);
889 DAG.AssignOrdering(Chains[i].getNode(), SDNodeOrder);
890 }
891 }
892
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000893 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
894 MVT::Other, &Chains[0], NumValues);
Bill Wendling87710f02009-12-21 23:47:40 +0000895
896 if (DisableScheduling)
897 DAG.AssignOrdering(Chain.getNode(), SDNodeOrder);
898 } else {
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000899 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
900 SmallVector<EVT, 4> ValueVTs;
901 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
902 unsigned NumValues = ValueVTs.size();
903 if (NumValues == 0) continue;
904
905 SDValue RetOp = getValue(I.getOperand(i));
906 for (unsigned j = 0, f = NumValues; j != f; ++j) {
907 EVT VT = ValueVTs[j];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000908
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000909 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000910
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000911 const Function *F = I.getParent()->getParent();
912 if (F->paramHasAttr(0, Attribute::SExt))
913 ExtendKind = ISD::SIGN_EXTEND;
914 else if (F->paramHasAttr(0, Attribute::ZExt))
915 ExtendKind = ISD::ZERO_EXTEND;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000916
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000917 // FIXME: C calling convention requires the return type to be promoted to
918 // at least 32-bit. But this is not necessary for non-C calling
919 // conventions. The frontend should mark functions whose return values
920 // require promoting with signext or zeroext attributes.
921 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
922 EVT MinVT = TLI.getRegisterType(*DAG.getContext(), MVT::i32);
923 if (VT.bitsLT(MinVT))
924 VT = MinVT;
925 }
926
927 unsigned NumParts = TLI.getNumRegisters(*DAG.getContext(), VT);
928 EVT PartVT = TLI.getRegisterType(*DAG.getContext(), VT);
929 SmallVector<SDValue, 4> Parts(NumParts);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000930 getCopyToParts(DAG, getCurDebugLoc(), SDNodeOrder,
Kenneth Uildriksc158dde2009-11-11 19:59:24 +0000931 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
932 &Parts[0], NumParts, PartVT, ExtendKind);
933
934 // 'inreg' on function refers to return value
935 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
936 if (F->paramHasAttr(0, Attribute::InReg))
937 Flags.setInReg();
938
939 // Propagate extension type if any
940 if (F->paramHasAttr(0, Attribute::SExt))
941 Flags.setSExt();
942 else if (F->paramHasAttr(0, Attribute::ZExt))
943 Flags.setZExt();
944
945 for (unsigned i = 0; i < NumParts; ++i)
946 Outs.push_back(ISD::OutputArg(Flags, Parts[i], /*isfixed=*/true));
Evan Cheng3927f432009-03-25 20:20:11 +0000947 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000948 }
949 }
Dan Gohman98ca4f22009-08-05 01:29:28 +0000950
951 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000952 CallingConv::ID CallConv =
953 DAG.getMachineFunction().getFunction()->getCallingConv();
Dan Gohman98ca4f22009-08-05 01:29:28 +0000954 Chain = TLI.LowerReturn(Chain, CallConv, isVarArg,
955 Outs, getCurDebugLoc(), DAG);
Dan Gohman5e866062009-08-06 15:37:27 +0000956
957 // Verify that the target's LowerReturn behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +0000958 assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +0000959 "LowerReturn didn't return a valid chain!");
960
961 // Update the DAG with the new chain value resulting from return lowering.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000962 DAG.setRoot(Chain);
Bill Wendling87710f02009-12-21 23:47:40 +0000963
964 if (DisableScheduling)
965 DAG.AssignOrdering(Chain.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000966}
967
Dan Gohmanad62f532009-04-23 23:13:24 +0000968/// CopyToExportRegsIfNeeded - If the given value has virtual registers
969/// created for it, emit nodes to copy the value into the virtual
970/// registers.
Dan Gohman2048b852009-11-23 18:04:58 +0000971void SelectionDAGBuilder::CopyToExportRegsIfNeeded(Value *V) {
Dan Gohmanad62f532009-04-23 23:13:24 +0000972 if (!V->use_empty()) {
973 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
974 if (VMI != FuncInfo.ValueMap.end())
975 CopyValueToVirtualRegister(V, VMI->second);
976 }
977}
978
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000979/// ExportFromCurrentBlock - If this condition isn't known to be exported from
980/// the current basic block, add it to ValueMap now so that we'll get a
981/// CopyTo/FromReg.
Dan Gohman2048b852009-11-23 18:04:58 +0000982void SelectionDAGBuilder::ExportFromCurrentBlock(Value *V) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000983 // No need to export constants.
984 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000985
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000986 // Already exported?
987 if (FuncInfo.isExportedInst(V)) return;
988
989 unsigned Reg = FuncInfo.InitializeRegForValue(V);
990 CopyValueToVirtualRegister(V, Reg);
991}
992
Dan Gohman2048b852009-11-23 18:04:58 +0000993bool SelectionDAGBuilder::isExportableFromCurrentBlock(Value *V,
994 const BasicBlock *FromBB) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000995 // The operands of the setcc have to be in this block. We don't know
996 // how to export them from some other block.
997 if (Instruction *VI = dyn_cast<Instruction>(V)) {
998 // Can export from current BB.
999 if (VI->getParent() == FromBB)
1000 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001001
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001002 // Is already exported, noop.
1003 return FuncInfo.isExportedInst(V);
1004 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001005
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001006 // If this is an argument, we can export it if the BB is the entry block or
1007 // if it is already exported.
1008 if (isa<Argument>(V)) {
1009 if (FromBB == &FromBB->getParent()->getEntryBlock())
1010 return true;
1011
1012 // Otherwise, can only export this if it is already exported.
1013 return FuncInfo.isExportedInst(V);
1014 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001015
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001016 // Otherwise, constants can always be exported.
1017 return true;
1018}
1019
1020static bool InBlock(const Value *V, const BasicBlock *BB) {
1021 if (const Instruction *I = dyn_cast<Instruction>(V))
1022 return I->getParent() == BB;
1023 return true;
1024}
1025
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001026/// getFCmpCondCode - Return the ISD condition code corresponding to
1027/// the given LLVM IR floating-point condition code. This includes
1028/// consideration of global floating-point math flags.
1029///
1030static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1031 ISD::CondCode FPC, FOC;
1032 switch (Pred) {
1033 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1034 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1035 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1036 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1037 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1038 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1039 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1040 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1041 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1042 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1043 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1044 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1045 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1046 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1047 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1048 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1049 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001050 llvm_unreachable("Invalid FCmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001051 FOC = FPC = ISD::SETFALSE;
1052 break;
1053 }
1054 if (FiniteOnlyFPMath())
1055 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001056 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001057 return FPC;
1058}
1059
1060/// getICmpCondCode - Return the ISD condition code corresponding to
1061/// the given LLVM IR integer condition code.
1062///
1063static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1064 switch (Pred) {
1065 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1066 case ICmpInst::ICMP_NE: return ISD::SETNE;
1067 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1068 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1069 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1070 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1071 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1072 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1073 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1074 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1075 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001076 llvm_unreachable("Invalid ICmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001077 return ISD::SETNE;
1078 }
1079}
1080
Dan Gohmanc2277342008-10-17 21:16:08 +00001081/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1082/// This function emits a branch and is used at the leaves of an OR or an
1083/// AND operator tree.
1084///
1085void
Dan Gohman2048b852009-11-23 18:04:58 +00001086SelectionDAGBuilder::EmitBranchForMergedCondition(Value *Cond,
1087 MachineBasicBlock *TBB,
1088 MachineBasicBlock *FBB,
1089 MachineBasicBlock *CurBB) {
Dan Gohmanc2277342008-10-17 21:16:08 +00001090 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001091
Dan Gohmanc2277342008-10-17 21:16:08 +00001092 // If the leaf of the tree is a comparison, merge the condition into
1093 // the caseblock.
1094 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1095 // The operands of the cmp have to be in this block. We don't know
1096 // how to export them from some other block. If this is the first block
1097 // of the sequence, no exporting is needed.
1098 if (CurBB == CurMBB ||
1099 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1100 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001101 ISD::CondCode Condition;
1102 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001103 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001104 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001105 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001106 } else {
1107 Condition = ISD::SETEQ; // silence warning.
Torok Edwinc23197a2009-07-14 16:55:14 +00001108 llvm_unreachable("Unknown compare instruction");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001109 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001110
1111 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001112 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1113 SwitchCases.push_back(CB);
1114 return;
1115 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001116 }
1117
1118 // Create a CaseBlock record representing this branch.
Owen Anderson5defacc2009-07-31 17:39:07 +00001119 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(*DAG.getContext()),
Dan Gohmanc2277342008-10-17 21:16:08 +00001120 NULL, TBB, FBB, CurBB);
1121 SwitchCases.push_back(CB);
1122}
1123
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001124/// FindMergedConditions - If Cond is an expression like
Dan Gohman2048b852009-11-23 18:04:58 +00001125void SelectionDAGBuilder::FindMergedConditions(Value *Cond,
1126 MachineBasicBlock *TBB,
1127 MachineBasicBlock *FBB,
1128 MachineBasicBlock *CurBB,
1129 unsigned Opc) {
Dan Gohmanc2277342008-10-17 21:16:08 +00001130 // If this node is not part of the or/and tree, emit it as a branch.
1131 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001132 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001133 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1134 BOp->getParent() != CurBB->getBasicBlock() ||
1135 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1136 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1137 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001138 return;
1139 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001140
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001141 // Create TmpBB after CurBB.
1142 MachineFunction::iterator BBI = CurBB;
1143 MachineFunction &MF = DAG.getMachineFunction();
1144 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1145 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001146
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001147 if (Opc == Instruction::Or) {
1148 // Codegen X | Y as:
1149 // jmp_if_X TBB
1150 // jmp TmpBB
1151 // TmpBB:
1152 // jmp_if_Y TBB
1153 // jmp FBB
1154 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001155
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001156 // Emit the LHS condition.
1157 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001158
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001159 // Emit the RHS condition into TmpBB.
1160 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1161 } else {
1162 assert(Opc == Instruction::And && "Unknown merge op!");
1163 // Codegen X & Y as:
1164 // jmp_if_X TmpBB
1165 // jmp FBB
1166 // TmpBB:
1167 // jmp_if_Y TBB
1168 // jmp FBB
1169 //
1170 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001171
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001172 // Emit the LHS condition.
1173 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001174
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001175 // Emit the RHS condition into TmpBB.
1176 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1177 }
1178}
1179
1180/// If the set of cases should be emitted as a series of branches, return true.
1181/// If we should emit this as a bunch of and/or'd together conditions, return
1182/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001183bool
Dan Gohman2048b852009-11-23 18:04:58 +00001184SelectionDAGBuilder::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001185 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001186
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001187 // If this is two comparisons of the same values or'd or and'd together, they
1188 // will get folded into a single comparison, so don't emit two blocks.
1189 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1190 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1191 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1192 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1193 return false;
1194 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001195
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001196 return true;
1197}
1198
Dan Gohman2048b852009-11-23 18:04:58 +00001199void SelectionDAGBuilder::visitBr(BranchInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001200 // Update machine-CFG edges.
1201 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1202
1203 // Figure out which block is immediately after the current one.
1204 MachineBasicBlock *NextBlock = 0;
1205 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001206 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001207 NextBlock = BBI;
1208
1209 if (I.isUnconditional()) {
1210 // Update machine-CFG edges.
1211 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001212
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001213 // If this is not a fall-through branch, emit the branch.
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001214 if (Succ0MBB != NextBlock) {
1215 SDValue V = DAG.getNode(ISD::BR, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001216 MVT::Other, getControlRoot(),
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001217 DAG.getBasicBlock(Succ0MBB));
1218 DAG.setRoot(V);
1219
1220 if (DisableScheduling)
1221 DAG.AssignOrdering(V.getNode(), SDNodeOrder);
1222 }
1223
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001224 return;
1225 }
1226
1227 // If this condition is one of the special cases we handle, do special stuff
1228 // now.
1229 Value *CondVal = I.getCondition();
1230 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1231
1232 // If this is a series of conditions that are or'd or and'd together, emit
1233 // this as a sequence of branches instead of setcc's with and/or operations.
1234 // For example, instead of something like:
1235 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001236 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001237 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001238 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001239 // or C, F
1240 // jnz foo
1241 // Emit:
1242 // cmp A, B
1243 // je foo
1244 // cmp D, E
1245 // jle foo
1246 //
1247 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001248 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001249 (BOp->getOpcode() == Instruction::And ||
1250 BOp->getOpcode() == Instruction::Or)) {
1251 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1252 // If the compares in later blocks need to use values not currently
1253 // exported from this block, export them now. This block should always
1254 // be the first entry.
1255 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001256
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001257 // Allow some cases to be rejected.
1258 if (ShouldEmitAsBranches(SwitchCases)) {
1259 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1260 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1261 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1262 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001263
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001264 // Emit the branch for this block.
1265 visitSwitchCase(SwitchCases[0]);
1266 SwitchCases.erase(SwitchCases.begin());
1267 return;
1268 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001269
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001270 // Okay, we decided not to do this, remove any inserted MBB's and clear
1271 // SwitchCases.
1272 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001273 FuncInfo.MF->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001274
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001275 SwitchCases.clear();
1276 }
1277 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001278
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001279 // Create a CaseBlock record representing this branch.
Owen Anderson5defacc2009-07-31 17:39:07 +00001280 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(*DAG.getContext()),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001281 NULL, Succ0MBB, Succ1MBB, CurMBB);
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001282
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001283 // Use visitSwitchCase to actually insert the fast branch sequence for this
1284 // cond branch.
1285 visitSwitchCase(CB);
1286}
1287
1288/// visitSwitchCase - Emits the necessary code to represent a single node in
1289/// the binary search tree resulting from lowering a switch instruction.
Dan Gohman2048b852009-11-23 18:04:58 +00001290void SelectionDAGBuilder::visitSwitchCase(CaseBlock &CB) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001291 SDValue Cond;
1292 SDValue CondLHS = getValue(CB.CmpLHS);
Dale Johannesenf5d97892009-02-04 01:48:28 +00001293 DebugLoc dl = getCurDebugLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001294
1295 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001296 if (CB.CmpMHS == NULL) {
1297 // Fold "(X == true)" to X and "(X == false)" to !X to
1298 // handle common cases produced by branch lowering.
Owen Anderson5defacc2009-07-31 17:39:07 +00001299 if (CB.CmpRHS == ConstantInt::getTrue(*DAG.getContext()) &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001300 CB.CC == ISD::SETEQ)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001301 Cond = CondLHS;
Owen Anderson5defacc2009-07-31 17:39:07 +00001302 else if (CB.CmpRHS == ConstantInt::getFalse(*DAG.getContext()) &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001303 CB.CC == ISD::SETEQ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001304 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001305 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001306 } else
Owen Anderson825b72b2009-08-11 20:47:22 +00001307 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001308 } else {
1309 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1310
Anton Korobeynikov23218582008-12-23 22:25:27 +00001311 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1312 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001313
1314 SDValue CmpOp = getValue(CB.CmpMHS);
Owen Andersone50ed302009-08-10 22:56:29 +00001315 EVT VT = CmpOp.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001316
1317 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001318 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
Dale Johannesenf5d97892009-02-04 01:48:28 +00001319 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001320 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001321 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001322 VT, CmpOp, DAG.getConstant(Low, VT));
Owen Anderson825b72b2009-08-11 20:47:22 +00001323 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001324 DAG.getConstant(High-Low, VT), ISD::SETULE);
1325 }
1326 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001327
Bill Wendling87710f02009-12-21 23:47:40 +00001328 if (DisableScheduling)
1329 DAG.AssignOrdering(Cond.getNode(), SDNodeOrder);
1330
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001331 // Update successor info
1332 CurMBB->addSuccessor(CB.TrueBB);
1333 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001334
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001335 // Set NextBlock to be the MBB immediately after the current one, if any.
1336 // This is used to avoid emitting unnecessary branches to the next block.
1337 MachineBasicBlock *NextBlock = 0;
1338 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001339 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001340 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001341
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001342 // If the lhs block is the next block, invert the condition so that we can
1343 // fall through to the lhs instead of the rhs block.
1344 if (CB.TrueBB == NextBlock) {
1345 std::swap(CB.TrueBB, CB.FalseBB);
1346 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001347 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Bill Wendling87710f02009-12-21 23:47:40 +00001348
1349 if (DisableScheduling)
1350 DAG.AssignOrdering(Cond.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001351 }
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001352
Dale Johannesenf5d97892009-02-04 01:48:28 +00001353 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001354 MVT::Other, getControlRoot(), Cond,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001355 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001356
Bill Wendling87710f02009-12-21 23:47:40 +00001357 if (DisableScheduling)
1358 DAG.AssignOrdering(BrCond.getNode(), SDNodeOrder);
1359
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001360 // If the branch was constant folded, fix up the CFG.
1361 if (BrCond.getOpcode() == ISD::BR) {
1362 CurMBB->removeSuccessor(CB.FalseBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001363 } else {
1364 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001365 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001366 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001367
Bill Wendling87710f02009-12-21 23:47:40 +00001368 if (CB.FalseBB != NextBlock) {
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001369 BrCond = DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
1370 DAG.getBasicBlock(CB.FalseBB));
Bill Wendling87710f02009-12-21 23:47:40 +00001371
1372 if (DisableScheduling)
1373 DAG.AssignOrdering(BrCond.getNode(), SDNodeOrder);
1374 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001375 }
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001376
1377 DAG.setRoot(BrCond);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001378}
1379
1380/// visitJumpTable - Emit JumpTable node in the current MBB
Dan Gohman2048b852009-11-23 18:04:58 +00001381void SelectionDAGBuilder::visitJumpTable(JumpTable &JT) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001382 // Emit the code for the jump table
1383 assert(JT.Reg != -1U && "Should lower JT Header first!");
Owen Andersone50ed302009-08-10 22:56:29 +00001384 EVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001385 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1386 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001387 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001388 SDValue BrJumpTable = DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
1389 MVT::Other, Index.getValue(1),
1390 Table, Index);
1391 DAG.setRoot(BrJumpTable);
1392
Bill Wendling87710f02009-12-21 23:47:40 +00001393 if (DisableScheduling) {
1394 DAG.AssignOrdering(Index.getNode(), SDNodeOrder);
1395 DAG.AssignOrdering(Table.getNode(), SDNodeOrder);
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001396 DAG.AssignOrdering(BrJumpTable.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00001397 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001398}
1399
1400/// visitJumpTableHeader - This function emits necessary code to produce index
1401/// in the JumpTable from switch case.
Dan Gohman2048b852009-11-23 18:04:58 +00001402void SelectionDAGBuilder::visitJumpTableHeader(JumpTable &JT,
1403 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001404 // Subtract the lowest switch case value from the value being switched on and
1405 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001406 // difference between smallest and largest cases.
1407 SDValue SwitchOp = getValue(JTH.SValue);
Owen Andersone50ed302009-08-10 22:56:29 +00001408 EVT VT = SwitchOp.getValueType();
Bill Wendling87710f02009-12-21 23:47:40 +00001409 SDValue Sub = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001410 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001411
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001412 // The SDNode we just created, which holds the value being switched on minus
1413 // the the smallest case value, needs to be copied to a virtual register so it
1414 // can be used as an index into the jump table in a subsequent basic block.
1415 // This value may be smaller or larger than the target's pointer type, and
1416 // therefore require extension or truncating.
Bill Wendling87710f02009-12-21 23:47:40 +00001417 SwitchOp = DAG.getZExtOrTrunc(Sub, getCurDebugLoc(), TLI.getPointerTy());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001418
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001419 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001420 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1421 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001422 JT.Reg = JumpTableReg;
1423
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001424 // Emit the range check for the jump table, and branch to the default block
1425 // for the switch statement if the value being switched on exceeds the largest
1426 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001427 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
Bill Wendling87710f02009-12-21 23:47:40 +00001428 TLI.getSetCCResultType(Sub.getValueType()), Sub,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001429 DAG.getConstant(JTH.Last-JTH.First,VT),
1430 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001431
Bill Wendling87710f02009-12-21 23:47:40 +00001432 if (DisableScheduling) {
1433 DAG.AssignOrdering(Sub.getNode(), SDNodeOrder);
1434 DAG.AssignOrdering(SwitchOp.getNode(), SDNodeOrder);
1435 DAG.AssignOrdering(CopyTo.getNode(), SDNodeOrder);
1436 DAG.AssignOrdering(CMP.getNode(), SDNodeOrder);
1437 }
1438
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001439 // Set NextBlock to be the MBB immediately after the current one, if any.
1440 // This is used to avoid emitting unnecessary branches to the next block.
1441 MachineBasicBlock *NextBlock = 0;
1442 MachineFunction::iterator BBI = CurMBB;
Bill Wendling87710f02009-12-21 23:47:40 +00001443
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001444 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001445 NextBlock = BBI;
1446
Dale Johannesen66978ee2009-01-31 02:22:37 +00001447 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001448 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001449 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001450
Bill Wendling87710f02009-12-21 23:47:40 +00001451 if (DisableScheduling)
1452 DAG.AssignOrdering(BrCond.getNode(), SDNodeOrder);
1453
1454 if (JT.MBB != NextBlock) {
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001455 BrCond = DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
1456 DAG.getBasicBlock(JT.MBB));
1457
Bill Wendling87710f02009-12-21 23:47:40 +00001458 if (DisableScheduling)
1459 DAG.AssignOrdering(BrCond.getNode(), SDNodeOrder);
1460 }
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001461
Bill Wendling87710f02009-12-21 23:47:40 +00001462 DAG.setRoot(BrCond);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001463}
1464
1465/// visitBitTestHeader - This function emits necessary code to produce value
1466/// suitable for "bit tests"
Dan Gohman2048b852009-11-23 18:04:58 +00001467void SelectionDAGBuilder::visitBitTestHeader(BitTestBlock &B) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001468 // Subtract the minimum value
1469 SDValue SwitchOp = getValue(B.SValue);
Owen Andersone50ed302009-08-10 22:56:29 +00001470 EVT VT = SwitchOp.getValueType();
Bill Wendling87710f02009-12-21 23:47:40 +00001471 SDValue Sub = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001472 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001473
1474 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001475 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
Bill Wendling87710f02009-12-21 23:47:40 +00001476 TLI.getSetCCResultType(Sub.getValueType()),
1477 Sub, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001478 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001479
Bill Wendling87710f02009-12-21 23:47:40 +00001480 SDValue ShiftOp = DAG.getZExtOrTrunc(Sub, getCurDebugLoc(),
1481 TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001482
Duncan Sands92abc622009-01-31 15:50:11 +00001483 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001484 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1485 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001486
Bill Wendling87710f02009-12-21 23:47:40 +00001487 if (DisableScheduling) {
1488 DAG.AssignOrdering(Sub.getNode(), SDNodeOrder);
1489 DAG.AssignOrdering(RangeCmp.getNode(), SDNodeOrder);
1490 DAG.AssignOrdering(ShiftOp.getNode(), SDNodeOrder);
1491 DAG.AssignOrdering(CopyTo.getNode(), SDNodeOrder);
1492 }
1493
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001494 // Set NextBlock to be the MBB immediately after the current one, if any.
1495 // This is used to avoid emitting unnecessary branches to the next block.
1496 MachineBasicBlock *NextBlock = 0;
1497 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001498 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001499 NextBlock = BBI;
1500
1501 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1502
1503 CurMBB->addSuccessor(B.Default);
1504 CurMBB->addSuccessor(MBB);
1505
Dale Johannesen66978ee2009-01-31 02:22:37 +00001506 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001507 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001508 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001509
Bill Wendling87710f02009-12-21 23:47:40 +00001510 if (DisableScheduling)
1511 DAG.AssignOrdering(BrRange.getNode(), SDNodeOrder);
1512
1513 if (MBB != NextBlock) {
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001514 BrRange = DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
1515 DAG.getBasicBlock(MBB));
1516
Bill Wendling87710f02009-12-21 23:47:40 +00001517 if (DisableScheduling)
1518 DAG.AssignOrdering(BrRange.getNode(), SDNodeOrder);
1519 }
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001520
Bill Wendling87710f02009-12-21 23:47:40 +00001521 DAG.setRoot(BrRange);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001522}
1523
1524/// visitBitTestCase - this function produces one "bit test"
Dan Gohman2048b852009-11-23 18:04:58 +00001525void SelectionDAGBuilder::visitBitTestCase(MachineBasicBlock* NextMBB,
1526 unsigned Reg,
1527 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001528 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001529 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001530 TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001531 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001532 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001533 DAG.getConstant(1, TLI.getPointerTy()),
1534 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001535
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001536 // Emit bit tests and jumps
Scott Michelfdc40a02009-02-17 22:15:04 +00001537 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001538 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001539 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001540 SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(),
1541 TLI.getSetCCResultType(AndOp.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00001542 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001543 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001544
Bill Wendling87710f02009-12-21 23:47:40 +00001545 if (DisableScheduling) {
1546 DAG.AssignOrdering(ShiftOp.getNode(), SDNodeOrder);
1547 DAG.AssignOrdering(SwitchVal.getNode(), SDNodeOrder);
1548 DAG.AssignOrdering(AndOp.getNode(), SDNodeOrder);
1549 DAG.AssignOrdering(AndCmp.getNode(), SDNodeOrder);
1550 }
1551
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001552 CurMBB->addSuccessor(B.TargetBB);
1553 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001554
Dale Johannesen66978ee2009-01-31 02:22:37 +00001555 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001556 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001557 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001558
Bill Wendling87710f02009-12-21 23:47:40 +00001559 if (DisableScheduling)
1560 DAG.AssignOrdering(BrAnd.getNode(), SDNodeOrder);
1561
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001562 // Set NextBlock to be the MBB immediately after the current one, if any.
1563 // This is used to avoid emitting unnecessary branches to the next block.
1564 MachineBasicBlock *NextBlock = 0;
1565 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001566 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001567 NextBlock = BBI;
1568
Bill Wendling87710f02009-12-21 23:47:40 +00001569 if (NextMBB != NextBlock) {
Bill Wendling0777e922009-12-21 21:59:52 +00001570 BrAnd = DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
1571 DAG.getBasicBlock(NextMBB));
1572
Bill Wendling87710f02009-12-21 23:47:40 +00001573 if (DisableScheduling)
1574 DAG.AssignOrdering(BrAnd.getNode(), SDNodeOrder);
1575 }
Bill Wendling0777e922009-12-21 21:59:52 +00001576
Bill Wendling87710f02009-12-21 23:47:40 +00001577 DAG.setRoot(BrAnd);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001578}
1579
Dan Gohman2048b852009-11-23 18:04:58 +00001580void SelectionDAGBuilder::visitInvoke(InvokeInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001581 // Retrieve successors.
1582 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1583 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1584
Gabor Greifb67e6b32009-01-15 11:10:44 +00001585 const Value *Callee(I.getCalledValue());
1586 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001587 visitInlineAsm(&I);
1588 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001589 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001590
1591 // If the value of the invoke is used outside of its defining block, make it
1592 // available as a virtual register.
Dan Gohmanad62f532009-04-23 23:13:24 +00001593 CopyToExportRegsIfNeeded(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001594
1595 // Update successor info
1596 CurMBB->addSuccessor(Return);
1597 CurMBB->addSuccessor(LandingPad);
1598
1599 // Drop into normal successor.
Bill Wendling0777e922009-12-21 21:59:52 +00001600 SDValue Branch = DAG.getNode(ISD::BR, getCurDebugLoc(),
1601 MVT::Other, getControlRoot(),
1602 DAG.getBasicBlock(Return));
1603 DAG.setRoot(Branch);
1604
1605 if (DisableScheduling)
1606 DAG.AssignOrdering(Branch.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001607}
1608
Dan Gohman2048b852009-11-23 18:04:58 +00001609void SelectionDAGBuilder::visitUnwind(UnwindInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001610}
1611
1612/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1613/// small case ranges).
Dan Gohman2048b852009-11-23 18:04:58 +00001614bool SelectionDAGBuilder::handleSmallSwitchRange(CaseRec& CR,
1615 CaseRecVector& WorkList,
1616 Value* SV,
1617 MachineBasicBlock* Default) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001618 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001619
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001620 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001621 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001622 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001623 return false;
1624
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001625 // Get the MachineFunction which holds the current MBB. This is used when
1626 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001627 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001628
1629 // Figure out which block is immediately after the current one.
1630 MachineBasicBlock *NextBlock = 0;
1631 MachineFunction::iterator BBI = CR.CaseBB;
1632
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001633 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001634 NextBlock = BBI;
1635
1636 // TODO: If any two of the cases has the same destination, and if one value
1637 // is the same as the other, but has one bit unset that the other has set,
1638 // use bit manipulation to do two compares at once. For example:
1639 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001640
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001641 // Rearrange the case blocks so that the last one falls through if possible.
1642 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1643 // The last case block won't fall through into 'NextBlock' if we emit the
1644 // branches in this order. See if rearranging a case value would help.
1645 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1646 if (I->BB == NextBlock) {
1647 std::swap(*I, BackCase);
1648 break;
1649 }
1650 }
1651 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001652
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001653 // Create a CaseBlock record representing a conditional branch to
1654 // the Case's target mbb if the value being switched on SV is equal
1655 // to C.
1656 MachineBasicBlock *CurBlock = CR.CaseBB;
1657 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1658 MachineBasicBlock *FallThrough;
1659 if (I != E-1) {
1660 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1661 CurMF->insert(BBI, FallThrough);
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001662
1663 // Put SV in a virtual register to make it available from the new blocks.
1664 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001665 } else {
1666 // If the last case doesn't match, go to the default block.
1667 FallThrough = Default;
1668 }
1669
1670 Value *RHS, *LHS, *MHS;
1671 ISD::CondCode CC;
1672 if (I->High == I->Low) {
1673 // This is just small small case range :) containing exactly 1 case
1674 CC = ISD::SETEQ;
1675 LHS = SV; RHS = I->High; MHS = NULL;
1676 } else {
1677 CC = ISD::SETLE;
1678 LHS = I->Low; MHS = SV; RHS = I->High;
1679 }
1680 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001681
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001682 // If emitting the first comparison, just call visitSwitchCase to emit the
1683 // code into the current block. Otherwise, push the CaseBlock onto the
1684 // vector to be later processed by SDISel, and insert the node's MBB
1685 // before the next MBB.
1686 if (CurBlock == CurMBB)
1687 visitSwitchCase(CB);
1688 else
1689 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001690
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001691 CurBlock = FallThrough;
1692 }
1693
1694 return true;
1695}
1696
1697static inline bool areJTsAllowed(const TargetLowering &TLI) {
1698 return !DisableJumpTables &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001699 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1700 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001701}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001702
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001703static APInt ComputeRange(const APInt &First, const APInt &Last) {
1704 APInt LastExt(Last), FirstExt(First);
1705 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1706 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1707 return (LastExt - FirstExt + 1ULL);
1708}
1709
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001710/// handleJTSwitchCase - Emit jumptable for current switch case range
Dan Gohman2048b852009-11-23 18:04:58 +00001711bool SelectionDAGBuilder::handleJTSwitchCase(CaseRec& CR,
1712 CaseRecVector& WorkList,
1713 Value* SV,
1714 MachineBasicBlock* Default) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001715 Case& FrontCase = *CR.Range.first;
1716 Case& BackCase = *(CR.Range.second-1);
1717
Chris Lattnere880efe2009-11-07 07:50:34 +00001718 const APInt &First = cast<ConstantInt>(FrontCase.Low)->getValue();
1719 const APInt &Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001720
Chris Lattnere880efe2009-11-07 07:50:34 +00001721 APInt TSize(First.getBitWidth(), 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001722 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1723 I!=E; ++I)
1724 TSize += I->size();
1725
Chris Lattnere880efe2009-11-07 07:50:34 +00001726 if (!areJTsAllowed(TLI) || TSize.ult(APInt(First.getBitWidth(), 4)))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001727 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001728
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001729 APInt Range = ComputeRange(First, Last);
Chris Lattnere880efe2009-11-07 07:50:34 +00001730 double Density = TSize.roundToDouble() / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001731 if (Density < 0.4)
1732 return false;
1733
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001734 DEBUG(errs() << "Lowering jump table\n"
1735 << "First entry: " << First << ". Last entry: " << Last << '\n'
1736 << "Range: " << Range
1737 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001738
1739 // Get the MachineFunction which holds the current MBB. This is used when
1740 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001741 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001742
1743 // Figure out which block is immediately after the current one.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001744 MachineFunction::iterator BBI = CR.CaseBB;
Duncan Sands51498522009-09-06 18:03:32 +00001745 ++BBI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001746
1747 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1748
1749 // Create a new basic block to hold the code for loading the address
1750 // of the jump table, and jumping to it. Update successor information;
1751 // we will either branch to the default case for the switch, or the jump
1752 // table.
1753 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1754 CurMF->insert(BBI, JumpTableBB);
1755 CR.CaseBB->addSuccessor(Default);
1756 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001757
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001758 // Build a vector of destination BBs, corresponding to each target
1759 // of the jump table. If the value of the jump table slot corresponds to
1760 // a case statement, push the case's BB onto the vector, otherwise, push
1761 // the default BB.
1762 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001763 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001764 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001765 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1766 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1767
1768 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001769 DestBBs.push_back(I->BB);
1770 if (TEI==High)
1771 ++I;
1772 } else {
1773 DestBBs.push_back(Default);
1774 }
1775 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001776
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001777 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001778 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1779 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001780 E = DestBBs.end(); I != E; ++I) {
1781 if (!SuccsHandled[(*I)->getNumber()]) {
1782 SuccsHandled[(*I)->getNumber()] = true;
1783 JumpTableBB->addSuccessor(*I);
1784 }
1785 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001786
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001787 // Create a jump table index for this jump table, or return an existing
1788 // one.
1789 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001790
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001791 // Set the jump table information so that we can codegen it as a second
1792 // MachineBasicBlock
1793 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1794 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1795 if (CR.CaseBB == CurMBB)
1796 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001797
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001798 JTCases.push_back(JumpTableBlock(JTH, JT));
1799
1800 return true;
1801}
1802
1803/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1804/// 2 subtrees.
Dan Gohman2048b852009-11-23 18:04:58 +00001805bool SelectionDAGBuilder::handleBTSplitSwitchCase(CaseRec& CR,
1806 CaseRecVector& WorkList,
1807 Value* SV,
1808 MachineBasicBlock* Default) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001809 // Get the MachineFunction which holds the current MBB. This is used when
1810 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001811 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001812
1813 // Figure out which block is immediately after the current one.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001814 MachineFunction::iterator BBI = CR.CaseBB;
Duncan Sands51498522009-09-06 18:03:32 +00001815 ++BBI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001816
1817 Case& FrontCase = *CR.Range.first;
1818 Case& BackCase = *(CR.Range.second-1);
1819 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1820
1821 // Size is the number of Cases represented by this range.
1822 unsigned Size = CR.Range.second - CR.Range.first;
1823
Chris Lattnere880efe2009-11-07 07:50:34 +00001824 const APInt &First = cast<ConstantInt>(FrontCase.Low)->getValue();
1825 const APInt &Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001826 double FMetric = 0;
1827 CaseItr Pivot = CR.Range.first + Size/2;
1828
1829 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1830 // (heuristically) allow us to emit JumpTable's later.
Chris Lattnere880efe2009-11-07 07:50:34 +00001831 APInt TSize(First.getBitWidth(), 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001832 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1833 I!=E; ++I)
1834 TSize += I->size();
1835
Chris Lattnere880efe2009-11-07 07:50:34 +00001836 APInt LSize = FrontCase.size();
1837 APInt RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001838 DEBUG(errs() << "Selecting best pivot: \n"
1839 << "First: " << First << ", Last: " << Last <<'\n'
1840 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001841 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1842 J!=E; ++I, ++J) {
Chris Lattnere880efe2009-11-07 07:50:34 +00001843 const APInt &LEnd = cast<ConstantInt>(I->High)->getValue();
1844 const APInt &RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001845 APInt Range = ComputeRange(LEnd, RBegin);
1846 assert((Range - 2ULL).isNonNegative() &&
1847 "Invalid case distance");
Chris Lattnere880efe2009-11-07 07:50:34 +00001848 double LDensity = (double)LSize.roundToDouble() /
1849 (LEnd - First + 1ULL).roundToDouble();
1850 double RDensity = (double)RSize.roundToDouble() /
1851 (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001852 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001853 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001854 DEBUG(errs() <<"=>Step\n"
1855 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1856 << "LDensity: " << LDensity
1857 << ", RDensity: " << RDensity << '\n'
1858 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001859 if (FMetric < Metric) {
1860 Pivot = J;
1861 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001862 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001863 }
1864
1865 LSize += J->size();
1866 RSize -= J->size();
1867 }
1868 if (areJTsAllowed(TLI)) {
1869 // If our case is dense we *really* should handle it earlier!
1870 assert((FMetric > 0) && "Should handle dense range earlier!");
1871 } else {
1872 Pivot = CR.Range.first + Size/2;
1873 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001874
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001875 CaseRange LHSR(CR.Range.first, Pivot);
1876 CaseRange RHSR(Pivot, CR.Range.second);
1877 Constant *C = Pivot->Low;
1878 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001879
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001880 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001881 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001882 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001883 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001884 // Pivot's Value, then we can branch directly to the LHS's Target,
1885 // rather than creating a leaf node for it.
1886 if ((LHSR.second - LHSR.first) == 1 &&
1887 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001888 cast<ConstantInt>(C)->getValue() ==
1889 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001890 TrueBB = LHSR.first->BB;
1891 } else {
1892 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1893 CurMF->insert(BBI, TrueBB);
1894 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001895
1896 // Put SV in a virtual register to make it available from the new blocks.
1897 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001898 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001899
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001900 // Similar to the optimization above, if the Value being switched on is
1901 // known to be less than the Constant CR.LT, and the current Case Value
1902 // is CR.LT - 1, then we can branch directly to the target block for
1903 // the current Case Value, rather than emitting a RHS leaf node for it.
1904 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001905 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1906 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001907 FalseBB = RHSR.first->BB;
1908 } else {
1909 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1910 CurMF->insert(BBI, FalseBB);
1911 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001912
1913 // Put SV in a virtual register to make it available from the new blocks.
1914 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001915 }
1916
1917 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001918 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001919 // Otherwise, branch to LHS.
1920 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1921
1922 if (CR.CaseBB == CurMBB)
1923 visitSwitchCase(CB);
1924 else
1925 SwitchCases.push_back(CB);
1926
1927 return true;
1928}
1929
1930/// handleBitTestsSwitchCase - if current case range has few destination and
1931/// range span less, than machine word bitwidth, encode case range into series
1932/// of masks and emit bit tests with these masks.
Dan Gohman2048b852009-11-23 18:04:58 +00001933bool SelectionDAGBuilder::handleBitTestsSwitchCase(CaseRec& CR,
1934 CaseRecVector& WorkList,
1935 Value* SV,
1936 MachineBasicBlock* Default){
Owen Andersone50ed302009-08-10 22:56:29 +00001937 EVT PTy = TLI.getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00001938 unsigned IntPtrBits = PTy.getSizeInBits();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001939
1940 Case& FrontCase = *CR.Range.first;
1941 Case& BackCase = *(CR.Range.second-1);
1942
1943 // Get the MachineFunction which holds the current MBB. This is used when
1944 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001945 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001946
Anton Korobeynikovd34167a2009-05-08 18:51:34 +00001947 // If target does not have legal shift left, do not emit bit tests at all.
1948 if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy()))
1949 return false;
1950
Anton Korobeynikov23218582008-12-23 22:25:27 +00001951 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001952 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1953 I!=E; ++I) {
1954 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001955 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001956 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001957
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001958 // Count unique destinations
1959 SmallSet<MachineBasicBlock*, 4> Dests;
1960 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1961 Dests.insert(I->BB);
1962 if (Dests.size() > 3)
1963 // Don't bother the code below, if there are too much unique destinations
1964 return false;
1965 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001966 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1967 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001968
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001969 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001970 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1971 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001972 APInt cmpRange = maxValue - minValue;
1973
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001974 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1975 << "Low bound: " << minValue << '\n'
1976 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001977
1978 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001979 (!(Dests.size() == 1 && numCmps >= 3) &&
1980 !(Dests.size() == 2 && numCmps >= 5) &&
1981 !(Dests.size() >= 3 && numCmps >= 6)))
1982 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001983
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001984 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001985 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1986
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001987 // Optimize the case where all the case values fit in a
1988 // word without having to subtract minValue. In this case,
1989 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001990 if (minValue.isNonNegative() &&
1991 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1992 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001993 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001994 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001995 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001996
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001997 CaseBitsVector CasesBits;
1998 unsigned i, count = 0;
1999
2000 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2001 MachineBasicBlock* Dest = I->BB;
2002 for (i = 0; i < count; ++i)
2003 if (Dest == CasesBits[i].BB)
2004 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002005
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002006 if (i == count) {
2007 assert((count < 3) && "Too much destinations to test!");
2008 CasesBits.push_back(CaseBits(0, Dest, 0));
2009 count++;
2010 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002011
2012 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
2013 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
2014
2015 uint64_t lo = (lowValue - lowBound).getZExtValue();
2016 uint64_t hi = (highValue - lowBound).getZExtValue();
2017
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002018 for (uint64_t j = lo; j <= hi; j++) {
2019 CasesBits[i].Mask |= 1ULL << j;
2020 CasesBits[i].Bits++;
2021 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002022
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002023 }
2024 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00002025
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002026 BitTestInfo BTC;
2027
2028 // Figure out which block is immediately after the current one.
2029 MachineFunction::iterator BBI = CR.CaseBB;
2030 ++BBI;
2031
2032 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2033
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002034 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002035 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002036 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
2037 << ", Bits: " << CasesBits[i].Bits
2038 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002039
2040 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2041 CurMF->insert(BBI, CaseBB);
2042 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2043 CaseBB,
2044 CasesBits[i].BB));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002045
2046 // Put SV in a virtual register to make it available from the new blocks.
2047 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002048 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002049
2050 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002051 -1U, (CR.CaseBB == CurMBB),
2052 CR.CaseBB, Default, BTC);
2053
2054 if (CR.CaseBB == CurMBB)
2055 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002056
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002057 BitTestCases.push_back(BTB);
2058
2059 return true;
2060}
2061
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002062/// Clusterify - Transform simple list of Cases into list of CaseRange's
Dan Gohman2048b852009-11-23 18:04:58 +00002063size_t SelectionDAGBuilder::Clusterify(CaseVector& Cases,
2064 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002065 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002066
2067 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002068 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002069 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2070 Cases.push_back(Case(SI.getSuccessorValue(i),
2071 SI.getSuccessorValue(i),
2072 SMBB));
2073 }
2074 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2075
2076 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002077 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002078 // Must recompute end() each iteration because it may be
2079 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002080 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2081 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2082 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002083 MachineBasicBlock* nextBB = J->BB;
2084 MachineBasicBlock* currentBB = I->BB;
2085
2086 // If the two neighboring cases go to the same destination, merge them
2087 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002088 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002089 I->High = J->High;
2090 J = Cases.erase(J);
2091 } else {
2092 I = J++;
2093 }
2094 }
2095
2096 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2097 if (I->Low != I->High)
2098 // A range counts double, since it requires two compares.
2099 ++numCmps;
2100 }
2101
2102 return numCmps;
2103}
2104
Dan Gohman2048b852009-11-23 18:04:58 +00002105void SelectionDAGBuilder::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002106 // Figure out which block is immediately after the current one.
2107 MachineBasicBlock *NextBlock = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002108 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2109
2110 // If there is only the default destination, branch to it if it is not the
2111 // next basic block. Otherwise, just fall through.
2112 if (SI.getNumOperands() == 2) {
2113 // Update machine-CFG edges.
2114
2115 // If this is not a fall-through branch, emit the branch.
2116 CurMBB->addSuccessor(Default);
Bill Wendling49fcff82009-12-21 22:30:11 +00002117 if (Default != NextBlock) {
Bill Wendling87710f02009-12-21 23:47:40 +00002118 SDValue Res = DAG.getNode(ISD::BR, getCurDebugLoc(),
Bill Wendling49fcff82009-12-21 22:30:11 +00002119 MVT::Other, getControlRoot(),
2120 DAG.getBasicBlock(Default));
Bill Wendling87710f02009-12-21 23:47:40 +00002121 DAG.setRoot(Res);
Bill Wendling49fcff82009-12-21 22:30:11 +00002122
2123 if (DisableScheduling)
Bill Wendling87710f02009-12-21 23:47:40 +00002124 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendling49fcff82009-12-21 22:30:11 +00002125 }
2126
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002127 return;
2128 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002129
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002130 // If there are any non-default case statements, create a vector of Cases
2131 // representing each one, and sort the vector so that we can efficiently
2132 // create a binary search tree from them.
2133 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002134 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002135 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2136 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002137 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002138
2139 // Get the Value to be switched on and default basic blocks, which will be
2140 // inserted into CaseBlock records, representing basic blocks in the binary
2141 // search tree.
2142 Value *SV = SI.getOperand(0);
2143
2144 // Push the initial CaseRec onto the worklist
2145 CaseRecVector WorkList;
2146 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2147
2148 while (!WorkList.empty()) {
2149 // Grab a record representing a case range to process off the worklist
2150 CaseRec CR = WorkList.back();
2151 WorkList.pop_back();
2152
2153 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2154 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002155
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002156 // If the range has few cases (two or less) emit a series of specific
2157 // tests.
2158 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2159 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002160
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002161 // If the switch has more than 5 blocks, and at least 40% dense, and the
2162 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002163 // lowering the switch to a binary tree of conditional branches.
2164 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2165 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002166
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002167 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2168 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2169 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2170 }
2171}
2172
Dan Gohman2048b852009-11-23 18:04:58 +00002173void SelectionDAGBuilder::visitIndirectBr(IndirectBrInst &I) {
Dan Gohmaneef55dc2009-10-27 22:10:34 +00002174 // Update machine-CFG edges.
2175 for (unsigned i = 0, e = I.getNumSuccessors(); i != e; ++i)
2176 CurMBB->addSuccessor(FuncInfo.MBBMap[I.getSuccessor(i)]);
2177
Bill Wendling49fcff82009-12-21 22:30:11 +00002178 SDValue Res = DAG.getNode(ISD::BRIND, getCurDebugLoc(),
2179 MVT::Other, getControlRoot(),
2180 getValue(I.getAddress()));
2181 DAG.setRoot(Res);
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002182
Bill Wendling49fcff82009-12-21 22:30:11 +00002183 if (DisableScheduling)
2184 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
2185}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002186
Dan Gohman2048b852009-11-23 18:04:58 +00002187void SelectionDAGBuilder::visitFSub(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002188 // -0.0 - X --> fneg
2189 const Type *Ty = I.getType();
2190 if (isa<VectorType>(Ty)) {
2191 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2192 const VectorType *DestTy = cast<VectorType>(I.getType());
2193 const Type *ElTy = DestTy->getElementType();
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002194 unsigned VL = DestTy->getNumElements();
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002195 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Owen Andersonaf7ec972009-07-28 21:19:26 +00002196 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002197 if (CV == CNZ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002198 SDValue Op2 = getValue(I.getOperand(1));
Bill Wendling49fcff82009-12-21 22:30:11 +00002199 SDValue Res = DAG.getNode(ISD::FNEG, getCurDebugLoc(),
2200 Op2.getValueType(), Op2);
2201 setValue(&I, Res);
2202
2203 if (DisableScheduling)
2204 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
2205
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002206 return;
2207 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002208 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002209 }
Bill Wendling49fcff82009-12-21 22:30:11 +00002210
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002211 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002212 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002213 SDValue Op2 = getValue(I.getOperand(1));
Bill Wendling49fcff82009-12-21 22:30:11 +00002214 SDValue Res = DAG.getNode(ISD::FNEG, getCurDebugLoc(),
2215 Op2.getValueType(), Op2);
2216 setValue(&I, Res);
2217
2218 if (DisableScheduling)
2219 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
2220
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002221 return;
2222 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002223
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002224 visitBinary(I, ISD::FSUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002225}
2226
Dan Gohman2048b852009-11-23 18:04:58 +00002227void SelectionDAGBuilder::visitBinary(User &I, unsigned OpCode) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002228 SDValue Op1 = getValue(I.getOperand(0));
2229 SDValue Op2 = getValue(I.getOperand(1));
Bill Wendling49fcff82009-12-21 22:30:11 +00002230 SDValue Res = DAG.getNode(OpCode, getCurDebugLoc(),
2231 Op1.getValueType(), Op1, Op2);
2232 setValue(&I, Res);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002233
Bill Wendling49fcff82009-12-21 22:30:11 +00002234 if (DisableScheduling)
2235 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002236}
2237
Dan Gohman2048b852009-11-23 18:04:58 +00002238void SelectionDAGBuilder::visitShift(User &I, unsigned Opcode) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002239 SDValue Op1 = getValue(I.getOperand(0));
2240 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman57fc82d2009-04-09 03:51:29 +00002241 if (!isa<VectorType>(I.getType()) &&
2242 Op2.getValueType() != TLI.getShiftAmountTy()) {
2243 // If the operand is smaller than the shift count type, promote it.
Owen Andersone50ed302009-08-10 22:56:29 +00002244 EVT PTy = TLI.getPointerTy();
2245 EVT STy = TLI.getShiftAmountTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002246 if (STy.bitsGT(Op2.getValueType()))
Dan Gohman57fc82d2009-04-09 03:51:29 +00002247 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
2248 TLI.getShiftAmountTy(), Op2);
2249 // If the operand is larger than the shift count type but the shift
2250 // count type has enough bits to represent any shift value, truncate
2251 // it now. This is a common case and it exposes the truncate to
2252 // optimization early.
Owen Anderson77547be2009-08-10 18:56:59 +00002253 else if (STy.getSizeInBits() >=
Dan Gohman57fc82d2009-04-09 03:51:29 +00002254 Log2_32_Ceil(Op2.getValueType().getSizeInBits()))
2255 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2256 TLI.getShiftAmountTy(), Op2);
2257 // Otherwise we'll need to temporarily settle for some other
2258 // convenient type; type legalization will make adjustments as
2259 // needed.
Owen Anderson77547be2009-08-10 18:56:59 +00002260 else if (PTy.bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002261 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002262 TLI.getPointerTy(), Op2);
Owen Anderson77547be2009-08-10 18:56:59 +00002263 else if (PTy.bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002264 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002265 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002266 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002267
Bill Wendling49fcff82009-12-21 22:30:11 +00002268 SDValue Res = DAG.getNode(Opcode, getCurDebugLoc(),
2269 Op1.getValueType(), Op1, Op2);
2270 setValue(&I, Res);
2271
Bill Wendling87710f02009-12-21 23:47:40 +00002272 if (DisableScheduling) {
2273 DAG.AssignOrdering(Op1.getNode(), SDNodeOrder);
2274 DAG.AssignOrdering(Op2.getNode(), SDNodeOrder);
Bill Wendling49fcff82009-12-21 22:30:11 +00002275 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00002276 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002277}
2278
Dan Gohman2048b852009-11-23 18:04:58 +00002279void SelectionDAGBuilder::visitICmp(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002280 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2281 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2282 predicate = IC->getPredicate();
2283 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2284 predicate = ICmpInst::Predicate(IC->getPredicate());
2285 SDValue Op1 = getValue(I.getOperand(0));
2286 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002287 ISD::CondCode Opcode = getICmpCondCode(predicate);
Chris Lattner9800e842009-07-07 22:41:32 +00002288
Owen Andersone50ed302009-08-10 22:56:29 +00002289 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002290 SDValue Res = DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode);
2291 setValue(&I, Res);
2292
2293 if (DisableScheduling)
2294 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002295}
2296
Dan Gohman2048b852009-11-23 18:04:58 +00002297void SelectionDAGBuilder::visitFCmp(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002298 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2299 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2300 predicate = FC->getPredicate();
2301 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2302 predicate = FCmpInst::Predicate(FC->getPredicate());
2303 SDValue Op1 = getValue(I.getOperand(0));
2304 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002305 ISD::CondCode Condition = getFCmpCondCode(predicate);
Owen Andersone50ed302009-08-10 22:56:29 +00002306 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002307 SDValue Res = DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition);
2308 setValue(&I, Res);
2309
2310 if (DisableScheduling)
2311 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002312}
2313
Dan Gohman2048b852009-11-23 18:04:58 +00002314void SelectionDAGBuilder::visitSelect(User &I) {
Owen Andersone50ed302009-08-10 22:56:29 +00002315 SmallVector<EVT, 4> ValueVTs;
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002316 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2317 unsigned NumValues = ValueVTs.size();
Bill Wendling49fcff82009-12-21 22:30:11 +00002318 if (NumValues == 0) return;
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002319
Bill Wendling49fcff82009-12-21 22:30:11 +00002320 SmallVector<SDValue, 4> Values(NumValues);
2321 SDValue Cond = getValue(I.getOperand(0));
2322 SDValue TrueVal = getValue(I.getOperand(1));
2323 SDValue FalseVal = getValue(I.getOperand(2));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002324
Bill Wendling49fcff82009-12-21 22:30:11 +00002325 for (unsigned i = 0; i != NumValues; ++i) {
2326 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
2327 TrueVal.getNode()->getValueType(i), Cond,
2328 SDValue(TrueVal.getNode(),
2329 TrueVal.getResNo() + i),
2330 SDValue(FalseVal.getNode(),
2331 FalseVal.getResNo() + i));
2332
2333 if (DisableScheduling)
2334 DAG.AssignOrdering(Values[i].getNode(), SDNodeOrder);
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002335 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002336
Bill Wendling49fcff82009-12-21 22:30:11 +00002337 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
2338 DAG.getVTList(&ValueVTs[0], NumValues),
2339 &Values[0], NumValues);
2340 setValue(&I, Res);
2341
2342 if (DisableScheduling)
2343 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
2344}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002345
Dan Gohman2048b852009-11-23 18:04:58 +00002346void SelectionDAGBuilder::visitTrunc(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002347 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2348 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002349 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002350 SDValue Res = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
2351 setValue(&I, Res);
2352
2353 if (DisableScheduling)
2354 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002355}
2356
Dan Gohman2048b852009-11-23 18:04:58 +00002357void SelectionDAGBuilder::visitZExt(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002358 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2359 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2360 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002361 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002362 SDValue Res = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
2363 setValue(&I, Res);
2364
2365 if (DisableScheduling)
2366 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002367}
2368
Dan Gohman2048b852009-11-23 18:04:58 +00002369void SelectionDAGBuilder::visitSExt(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002370 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2371 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2372 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002373 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002374 SDValue Res = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N);
2375 setValue(&I, Res);
2376
2377 if (DisableScheduling)
2378 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002379}
2380
Dan Gohman2048b852009-11-23 18:04:58 +00002381void SelectionDAGBuilder::visitFPTrunc(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002382 // FPTrunc is never a no-op cast, no need to check
2383 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002384 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002385 SDValue Res = DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
2386 DestVT, N, DAG.getIntPtrConstant(0));
2387 setValue(&I, Res);
2388
2389 if (DisableScheduling)
2390 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002391}
2392
Dan Gohman2048b852009-11-23 18:04:58 +00002393void SelectionDAGBuilder::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002394 // FPTrunc is never a no-op cast, no need to check
2395 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002396 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002397 SDValue Res = DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N);
2398 setValue(&I, Res);
2399
2400 if (DisableScheduling)
2401 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002402}
2403
Dan Gohman2048b852009-11-23 18:04:58 +00002404void SelectionDAGBuilder::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002405 // FPToUI is never a no-op cast, no need to check
2406 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002407 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002408 SDValue Res = DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N);
2409 setValue(&I, Res);
2410
2411 if (DisableScheduling)
2412 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002413}
2414
Dan Gohman2048b852009-11-23 18:04:58 +00002415void SelectionDAGBuilder::visitFPToSI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002416 // FPToSI is never a no-op cast, no need to check
2417 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002418 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002419 SDValue Res = DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N);
2420 setValue(&I, Res);
2421
2422 if (DisableScheduling)
2423 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002424}
2425
Dan Gohman2048b852009-11-23 18:04:58 +00002426void SelectionDAGBuilder::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002427 // UIToFP is never a no-op cast, no need to check
2428 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002429 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002430 SDValue Res = DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N);
2431 setValue(&I, Res);
2432
2433 if (DisableScheduling)
2434 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002435}
2436
Dan Gohman2048b852009-11-23 18:04:58 +00002437void SelectionDAGBuilder::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002438 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002439 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002440 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002441 SDValue Res = DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N);
2442 setValue(&I, Res);
2443
2444 if (DisableScheduling)
2445 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002446}
2447
Dan Gohman2048b852009-11-23 18:04:58 +00002448void SelectionDAGBuilder::visitPtrToInt(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002449 // What to do depends on the size of the integer and the size of the pointer.
2450 // We can either truncate, zero extend, or no-op, accordingly.
2451 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002452 EVT SrcVT = N.getValueType();
2453 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002454 SDValue Res = DAG.getZExtOrTrunc(N, getCurDebugLoc(), DestVT);
2455 setValue(&I, Res);
2456
2457 if (DisableScheduling)
2458 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002459}
2460
Dan Gohman2048b852009-11-23 18:04:58 +00002461void SelectionDAGBuilder::visitIntToPtr(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002462 // What to do depends on the size of the integer and the size of the pointer.
2463 // We can either truncate, zero extend, or no-op, accordingly.
2464 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002465 EVT SrcVT = N.getValueType();
2466 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendling49fcff82009-12-21 22:30:11 +00002467 SDValue Res = DAG.getZExtOrTrunc(N, getCurDebugLoc(), DestVT);
2468 setValue(&I, Res);
2469
2470 if (DisableScheduling)
2471 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002472}
2473
Dan Gohman2048b852009-11-23 18:04:58 +00002474void SelectionDAGBuilder::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002475 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002476 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002477
Bill Wendling49fcff82009-12-21 22:30:11 +00002478 // BitCast assures us that source and destination are the same size so this is
2479 // either a BIT_CONVERT or a no-op.
2480 if (DestVT != N.getValueType()) {
2481 SDValue Res = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
2482 DestVT, N); // convert types.
2483 setValue(&I, Res);
2484
2485 if (DisableScheduling)
2486 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
2487 } else {
2488 setValue(&I, N); // noop cast.
2489 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002490}
2491
Dan Gohman2048b852009-11-23 18:04:58 +00002492void SelectionDAGBuilder::visitInsertElement(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002493 SDValue InVec = getValue(I.getOperand(0));
2494 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002495 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Bill Wendling87710f02009-12-21 23:47:40 +00002496 TLI.getPointerTy(),
2497 getValue(I.getOperand(2)));
Bill Wendling49fcff82009-12-21 22:30:11 +00002498 SDValue Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
2499 TLI.getValueType(I.getType()),
2500 InVec, InVal, InIdx);
2501 setValue(&I, Res);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002502
Bill Wendling87710f02009-12-21 23:47:40 +00002503 if (DisableScheduling) {
2504 DAG.AssignOrdering(InIdx.getNode(), SDNodeOrder);
Bill Wendling49fcff82009-12-21 22:30:11 +00002505 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00002506 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002507}
2508
Dan Gohman2048b852009-11-23 18:04:58 +00002509void SelectionDAGBuilder::visitExtractElement(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002510 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002511 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Bill Wendling87710f02009-12-21 23:47:40 +00002512 TLI.getPointerTy(),
2513 getValue(I.getOperand(1)));
Bill Wendling49fcff82009-12-21 22:30:11 +00002514 SDValue Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
2515 TLI.getValueType(I.getType()), InVec, InIdx);
2516 setValue(&I, Res);
2517
Bill Wendling87710f02009-12-21 23:47:40 +00002518 if (DisableScheduling) {
2519 DAG.AssignOrdering(InIdx.getNode(), SDNodeOrder);
Bill Wendling49fcff82009-12-21 22:30:11 +00002520 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendling87710f02009-12-21 23:47:40 +00002521 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002522}
2523
Mon P Wangaeb06d22008-11-10 04:46:22 +00002524
2525// Utility for visitShuffleVector - Returns true if the mask is mask starting
2526// from SIndx and increasing to the element length (undefs are allowed).
Nate Begeman5a5ca152009-04-29 05:20:52 +00002527static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) {
2528 unsigned MaskNumElts = Mask.size();
2529 for (unsigned i = 0; i != MaskNumElts; ++i)
2530 if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx)))
Nate Begeman9008ca62009-04-27 18:41:29 +00002531 return false;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002532 return true;
2533}
2534
Dan Gohman2048b852009-11-23 18:04:58 +00002535void SelectionDAGBuilder::visitShuffleVector(User &I) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002536 SmallVector<int, 8> Mask;
Mon P Wang230e4fa2008-11-21 04:25:21 +00002537 SDValue Src1 = getValue(I.getOperand(0));
2538 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002539
Nate Begeman9008ca62009-04-27 18:41:29 +00002540 // Convert the ConstantVector mask operand into an array of ints, with -1
2541 // representing undef values.
2542 SmallVector<Constant*, 8> MaskElts;
Owen Anderson001dbfe2009-07-16 18:04:31 +00002543 cast<Constant>(I.getOperand(2))->getVectorElements(*DAG.getContext(),
2544 MaskElts);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002545 unsigned MaskNumElts = MaskElts.size();
2546 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002547 if (isa<UndefValue>(MaskElts[i]))
2548 Mask.push_back(-1);
2549 else
2550 Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue());
2551 }
2552
Owen Andersone50ed302009-08-10 22:56:29 +00002553 EVT VT = TLI.getValueType(I.getType());
2554 EVT SrcVT = Src1.getValueType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00002555 unsigned SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002556
Mon P Wangc7849c22008-11-16 05:06:27 +00002557 if (SrcNumElts == MaskNumElts) {
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002558 SDValue Res = DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2559 &Mask[0]);
2560 setValue(&I, Res);
2561
2562 if (DisableScheduling)
2563 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
2564
Mon P Wangaeb06d22008-11-10 04:46:22 +00002565 return;
2566 }
2567
2568 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002569 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2570 // Mask is longer than the source vectors and is a multiple of the source
2571 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002572 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002573 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2574 // The shuffle is concatenating two vectors together.
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002575 SDValue Res = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
2576 VT, Src1, Src2);
2577 setValue(&I, Res);
2578
2579 if (DisableScheduling)
2580 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
2581
Mon P Wangaeb06d22008-11-10 04:46:22 +00002582 return;
2583 }
2584
Mon P Wangc7849c22008-11-16 05:06:27 +00002585 // Pad both vectors with undefs to make them the same length as the mask.
2586 unsigned NumConcat = MaskNumElts / SrcNumElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00002587 bool Src1U = Src1.getOpcode() == ISD::UNDEF;
2588 bool Src2U = Src2.getOpcode() == ISD::UNDEF;
Dale Johannesene8d72302009-02-06 23:05:02 +00002589 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002590
Nate Begeman9008ca62009-04-27 18:41:29 +00002591 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
2592 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002593 MOps1[0] = Src1;
2594 MOps2[0] = Src2;
Nate Begeman9008ca62009-04-27 18:41:29 +00002595
2596 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2597 getCurDebugLoc(), VT,
2598 &MOps1[0], NumConcat);
2599 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2600 getCurDebugLoc(), VT,
2601 &MOps2[0], NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002602
Mon P Wangaeb06d22008-11-10 04:46:22 +00002603 // Readjust mask for new input vector length.
Nate Begeman9008ca62009-04-27 18:41:29 +00002604 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002605 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002606 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002607 if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002608 MappedOps.push_back(Idx);
2609 else
2610 MappedOps.push_back(Idx + MaskNumElts - SrcNumElts);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002611 }
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002612
2613 SDValue Res = DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2614 &MappedOps[0]);
2615 setValue(&I, Res);
2616
Bill Wendlinge1a90422009-12-21 23:10:19 +00002617 if (DisableScheduling) {
2618 DAG.AssignOrdering(Src1.getNode(), SDNodeOrder);
2619 DAG.AssignOrdering(Src2.getNode(), SDNodeOrder);
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002620 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendlinge1a90422009-12-21 23:10:19 +00002621 }
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002622
Mon P Wangaeb06d22008-11-10 04:46:22 +00002623 return;
2624 }
2625
Mon P Wangc7849c22008-11-16 05:06:27 +00002626 if (SrcNumElts > MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002627 // Analyze the access pattern of the vector to see if we can extract
2628 // two subvectors and do the shuffle. The analysis is done by calculating
2629 // the range of elements the mask access on both vectors.
2630 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2631 int MaxRange[2] = {-1, -1};
2632
Nate Begeman5a5ca152009-04-29 05:20:52 +00002633 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002634 int Idx = Mask[i];
2635 int Input = 0;
2636 if (Idx < 0)
2637 continue;
2638
Nate Begeman5a5ca152009-04-29 05:20:52 +00002639 if (Idx >= (int)SrcNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002640 Input = 1;
2641 Idx -= SrcNumElts;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002642 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002643 if (Idx > MaxRange[Input])
2644 MaxRange[Input] = Idx;
2645 if (Idx < MinRange[Input])
2646 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002647 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002648
Mon P Wangc7849c22008-11-16 05:06:27 +00002649 // Check if the access is smaller than the vector size and can we find
2650 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002651 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002652 int StartIdx[2]; // StartIdx to extract from
2653 for (int Input=0; Input < 2; ++Input) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00002654 if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002655 RangeUse[Input] = 0; // Unused
2656 StartIdx[Input] = 0;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002657 } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002658 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002659 // start index that is a multiple of the mask length.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002660 if (MaxRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002661 RangeUse[Input] = 1; // Extract from beginning of the vector
2662 StartIdx[Input] = 0;
2663 } else {
2664 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002665 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002666 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002667 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002668 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002669 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002670 }
2671
Bill Wendling636e2582009-08-21 18:16:06 +00002672 if (RangeUse[0] == 0 && RangeUse[1] == 0) {
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002673 SDValue Res = DAG.getUNDEF(VT);
2674 setValue(&I, Res); // Vectors are not used.
2675
2676 if (DisableScheduling)
2677 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
2678
Mon P Wangc7849c22008-11-16 05:06:27 +00002679 return;
2680 }
2681 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2682 // Extract appropriate subvector and generate a vector shuffle
2683 for (int Input=0; Input < 2; ++Input) {
Bill Wendling87710f02009-12-21 23:47:40 +00002684 SDValue &Src = Input == 0 ? Src1 : Src2;
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002685 if (RangeUse[Input] == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00002686 Src = DAG.getUNDEF(VT);
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002687 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002688 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002689 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002690
2691 if (DisableScheduling)
2692 DAG.AssignOrdering(Src.getNode(), SDNodeOrder);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002693 }
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002694
Mon P Wangc7849c22008-11-16 05:06:27 +00002695 // Calculate new mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00002696 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002697 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002698 int Idx = Mask[i];
2699 if (Idx < 0)
2700 MappedOps.push_back(Idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002701 else if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002702 MappedOps.push_back(Idx - StartIdx[0]);
2703 else
2704 MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts);
Mon P Wangc7849c22008-11-16 05:06:27 +00002705 }
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002706
2707 SDValue Res = DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2708 &MappedOps[0]);
2709 setValue(&I, Res);
2710
2711 if (DisableScheduling)
2712 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
2713
Mon P Wangc7849c22008-11-16 05:06:27 +00002714 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002715 }
2716 }
2717
Mon P Wangc7849c22008-11-16 05:06:27 +00002718 // We can't use either concat vectors or extract subvectors so fall back to
2719 // replacing the shuffle with extract and build vector.
2720 // to insert and build vector.
Owen Andersone50ed302009-08-10 22:56:29 +00002721 EVT EltVT = VT.getVectorElementType();
2722 EVT PtrVT = TLI.getPointerTy();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002723 SmallVector<SDValue,8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002724 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002725 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002726 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002727 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00002728 int Idx = Mask[i];
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002729 SDValue Res;
2730
Nate Begeman5a5ca152009-04-29 05:20:52 +00002731 if (Idx < (int)SrcNumElts)
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002732 Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
2733 EltVT, Src1, DAG.getConstant(Idx, PtrVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002734 else
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002735 Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
2736 EltVT, Src2,
2737 DAG.getConstant(Idx - SrcNumElts, PtrVT));
2738
2739 Ops.push_back(Res);
2740
2741 if (DisableScheduling)
2742 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002743 }
2744 }
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002745
2746 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2747 VT, &Ops[0], Ops.size());
2748 setValue(&I, Res);
2749
2750 if (DisableScheduling)
2751 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002752}
2753
Dan Gohman2048b852009-11-23 18:04:58 +00002754void SelectionDAGBuilder::visitInsertValue(InsertValueInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002755 const Value *Op0 = I.getOperand(0);
2756 const Value *Op1 = I.getOperand(1);
2757 const Type *AggTy = I.getType();
2758 const Type *ValTy = Op1->getType();
2759 bool IntoUndef = isa<UndefValue>(Op0);
2760 bool FromUndef = isa<UndefValue>(Op1);
2761
2762 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2763 I.idx_begin(), I.idx_end());
2764
Owen Andersone50ed302009-08-10 22:56:29 +00002765 SmallVector<EVT, 4> AggValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002766 ComputeValueVTs(TLI, AggTy, AggValueVTs);
Owen Andersone50ed302009-08-10 22:56:29 +00002767 SmallVector<EVT, 4> ValValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002768 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2769
2770 unsigned NumAggValues = AggValueVTs.size();
2771 unsigned NumValValues = ValValueVTs.size();
2772 SmallVector<SDValue, 4> Values(NumAggValues);
2773
2774 SDValue Agg = getValue(Op0);
2775 SDValue Val = getValue(Op1);
2776 unsigned i = 0;
2777 // Copy the beginning value(s) from the original aggregate.
2778 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002779 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002780 SDValue(Agg.getNode(), Agg.getResNo() + i);
2781 // Copy values from the inserted value(s).
2782 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002783 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002784 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2785 // Copy remaining value(s) from the original aggregate.
2786 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002787 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002788 SDValue(Agg.getNode(), Agg.getResNo() + i);
2789
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002790 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
2791 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2792 &Values[0], NumAggValues);
2793 setValue(&I, Res);
2794
2795 if (DisableScheduling)
2796 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002797}
2798
Dan Gohman2048b852009-11-23 18:04:58 +00002799void SelectionDAGBuilder::visitExtractValue(ExtractValueInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002800 const Value *Op0 = I.getOperand(0);
2801 const Type *AggTy = Op0->getType();
2802 const Type *ValTy = I.getType();
2803 bool OutOfUndef = isa<UndefValue>(Op0);
2804
2805 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2806 I.idx_begin(), I.idx_end());
2807
Owen Andersone50ed302009-08-10 22:56:29 +00002808 SmallVector<EVT, 4> ValValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002809 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2810
2811 unsigned NumValValues = ValValueVTs.size();
2812 SmallVector<SDValue, 4> Values(NumValValues);
2813
2814 SDValue Agg = getValue(Op0);
2815 // Copy out the selected value(s).
2816 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2817 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002818 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002819 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002820 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002821
Bill Wendlingb85b6e82009-12-21 22:42:14 +00002822 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
2823 DAG.getVTList(&ValValueVTs[0], NumValValues),
2824 &Values[0], NumValValues);
2825 setValue(&I, Res);
2826
2827 if (DisableScheduling)
2828 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002829}
2830
Dan Gohman2048b852009-11-23 18:04:58 +00002831void SelectionDAGBuilder::visitGetElementPtr(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002832 SDValue N = getValue(I.getOperand(0));
2833 const Type *Ty = I.getOperand(0)->getType();
2834
2835 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2836 OI != E; ++OI) {
2837 Value *Idx = *OI;
2838 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2839 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2840 if (Field) {
2841 // N = N + Offset
2842 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002843 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002844 DAG.getIntPtrConstant(Offset));
Bill Wendlinge1a90422009-12-21 23:10:19 +00002845
2846 if (DisableScheduling)
2847 DAG.AssignOrdering(N.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002848 }
Bill Wendlinge1a90422009-12-21 23:10:19 +00002849
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002850 Ty = StTy->getElementType(Field);
2851 } else {
2852 Ty = cast<SequentialType>(Ty)->getElementType();
2853
2854 // If this is a constant subscript, handle it quickly.
2855 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2856 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002857 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +00002858 TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002859 SDValue OffsVal;
Owen Andersone50ed302009-08-10 22:56:29 +00002860 EVT PTy = TLI.getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002861 unsigned PtrBits = PTy.getSizeInBits();
Bill Wendlinge1a90422009-12-21 23:10:19 +00002862 if (PtrBits < 64)
Evan Cheng65b52df2009-02-09 21:01:06 +00002863 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2864 TLI.getPointerTy(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002865 DAG.getConstant(Offs, MVT::i64));
Bill Wendlinge1a90422009-12-21 23:10:19 +00002866 else
Evan Chengb1032a82009-02-09 20:54:38 +00002867 OffsVal = DAG.getIntPtrConstant(Offs);
Bill Wendlinge1a90422009-12-21 23:10:19 +00002868
Dale Johannesen66978ee2009-01-31 02:22:37 +00002869 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002870 OffsVal);
Bill Wendlinge1a90422009-12-21 23:10:19 +00002871
2872 if (DisableScheduling) {
2873 DAG.AssignOrdering(OffsVal.getNode(), SDNodeOrder);
2874 DAG.AssignOrdering(N.getNode(), SDNodeOrder);
2875 }
2876
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002877 continue;
2878 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002879
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002880 // N = N + Idx * ElementSize;
Dan Gohman7abbd042009-10-23 17:57:43 +00002881 APInt ElementSize = APInt(TLI.getPointerTy().getSizeInBits(),
2882 TD->getTypeAllocSize(Ty));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002883 SDValue IdxN = getValue(Idx);
2884
2885 // If the index is smaller or larger than intptr_t, truncate or extend
2886 // it.
Duncan Sands3a66a682009-10-13 21:04:12 +00002887 IdxN = DAG.getSExtOrTrunc(IdxN, getCurDebugLoc(), N.getValueType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002888
2889 // If this is a multiply by a power of two, turn it into a shl
2890 // immediately. This is a very common case.
2891 if (ElementSize != 1) {
Dan Gohman7abbd042009-10-23 17:57:43 +00002892 if (ElementSize.isPowerOf2()) {
2893 unsigned Amt = ElementSize.logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00002894 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002895 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002896 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002897 } else {
Dan Gohman7abbd042009-10-23 17:57:43 +00002898 SDValue Scale = DAG.getConstant(ElementSize, TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00002899 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002900 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002901 }
Bill Wendlinge1a90422009-12-21 23:10:19 +00002902
2903 if (DisableScheduling)
2904 DAG.AssignOrdering(IdxN.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002905 }
2906
Scott Michelfdc40a02009-02-17 22:15:04 +00002907 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002908 N.getValueType(), N, IdxN);
Bill Wendlinge1a90422009-12-21 23:10:19 +00002909
2910 if (DisableScheduling)
2911 DAG.AssignOrdering(N.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002912 }
2913 }
Bill Wendlinge1a90422009-12-21 23:10:19 +00002914
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002915 setValue(&I, N);
2916}
2917
Dan Gohman2048b852009-11-23 18:04:58 +00002918void SelectionDAGBuilder::visitAlloca(AllocaInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002919 // If this is a fixed sized alloca in the entry block of the function,
2920 // allocate it statically on the stack.
2921 if (FuncInfo.StaticAllocaMap.count(&I))
2922 return; // getValue will auto-populate this.
2923
2924 const Type *Ty = I.getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +00002925 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002926 unsigned Align =
2927 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2928 I.getAlignment());
2929
2930 SDValue AllocSize = getValue(I.getArraySize());
Chris Lattner0b18e592009-03-17 19:36:00 +00002931
2932 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2933 AllocSize,
2934 DAG.getConstant(TySize, AllocSize.getValueType()));
2935
Bill Wendling856ff412009-12-22 00:12:37 +00002936 if (DisableScheduling)
2937 DAG.AssignOrdering(AllocSize.getNode(), SDNodeOrder);
Chris Lattner0b18e592009-03-17 19:36:00 +00002938
Owen Andersone50ed302009-08-10 22:56:29 +00002939 EVT IntPtr = TLI.getPointerTy();
Duncan Sands3a66a682009-10-13 21:04:12 +00002940 AllocSize = DAG.getZExtOrTrunc(AllocSize, getCurDebugLoc(), IntPtr);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002941
Bill Wendling856ff412009-12-22 00:12:37 +00002942 if (DisableScheduling)
2943 DAG.AssignOrdering(AllocSize.getNode(), SDNodeOrder);
2944
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002945 // Handle alignment. If the requested alignment is less than or equal to
2946 // the stack alignment, ignore it. If the size is greater than or equal to
2947 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2948 unsigned StackAlign =
2949 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2950 if (Align <= StackAlign)
2951 Align = 0;
2952
2953 // Round the size of the allocation up to the stack alignment size
2954 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002955 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002956 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002957 DAG.getIntPtrConstant(StackAlign-1));
Bill Wendling856ff412009-12-22 00:12:37 +00002958 if (DisableScheduling)
2959 DAG.AssignOrdering(AllocSize.getNode(), SDNodeOrder);
2960
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002961 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002962 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002963 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002964 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Bill Wendling856ff412009-12-22 00:12:37 +00002965 if (DisableScheduling)
2966 DAG.AssignOrdering(AllocSize.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002967
2968 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Owen Anderson825b72b2009-08-11 20:47:22 +00002969 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002970 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002971 VTs, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002972 setValue(&I, DSA);
2973 DAG.setRoot(DSA.getValue(1));
2974
Bill Wendling856ff412009-12-22 00:12:37 +00002975 if (DisableScheduling)
2976 DAG.AssignOrdering(DSA.getNode(), SDNodeOrder);
2977
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002978 // Inform the Frame Information that we have just allocated a variable-sized
2979 // object.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00002980 FuncInfo.MF->getFrameInfo()->CreateVariableSizedObject();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002981}
2982
Dan Gohman2048b852009-11-23 18:04:58 +00002983void SelectionDAGBuilder::visitLoad(LoadInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002984 const Value *SV = I.getOperand(0);
2985 SDValue Ptr = getValue(SV);
2986
2987 const Type *Ty = I.getType();
2988 bool isVolatile = I.isVolatile();
2989 unsigned Alignment = I.getAlignment();
2990
Owen Andersone50ed302009-08-10 22:56:29 +00002991 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002992 SmallVector<uint64_t, 4> Offsets;
2993 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2994 unsigned NumValues = ValueVTs.size();
2995 if (NumValues == 0)
2996 return;
2997
2998 SDValue Root;
2999 bool ConstantMemory = false;
3000 if (I.isVolatile())
3001 // Serialize volatile loads with other side effects.
3002 Root = getRoot();
3003 else if (AA->pointsToConstantMemory(SV)) {
3004 // Do not serialize (non-volatile) loads of constant memory with anything.
3005 Root = DAG.getEntryNode();
3006 ConstantMemory = true;
3007 } else {
3008 // Do not serialize non-volatile loads against each other.
3009 Root = DAG.getRoot();
3010 }
3011
3012 SmallVector<SDValue, 4> Values(NumValues);
3013 SmallVector<SDValue, 4> Chains(NumValues);
Owen Andersone50ed302009-08-10 22:56:29 +00003014 EVT PtrVT = Ptr.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003015 for (unsigned i = 0; i != NumValues; ++i) {
Bill Wendling856ff412009-12-22 00:12:37 +00003016 SDValue A = DAG.getNode(ISD::ADD, getCurDebugLoc(),
3017 PtrVT, Ptr,
3018 DAG.getConstant(Offsets[i], PtrVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003019 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Bill Wendling856ff412009-12-22 00:12:37 +00003020 A, SV, Offsets[i], isVolatile, Alignment);
3021
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003022 Values[i] = L;
3023 Chains[i] = L.getValue(1);
Bill Wendling856ff412009-12-22 00:12:37 +00003024
3025 if (DisableScheduling) {
3026 DAG.AssignOrdering(A.getNode(), SDNodeOrder);
3027 DAG.AssignOrdering(L.getNode(), SDNodeOrder);
3028 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003029 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003030
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003031 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003032 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Bill Wendling856ff412009-12-22 00:12:37 +00003033 MVT::Other, &Chains[0], NumValues);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003034 if (isVolatile)
3035 DAG.setRoot(Chain);
3036 else
3037 PendingLoads.push_back(Chain);
Bill Wendling856ff412009-12-22 00:12:37 +00003038
3039 if (DisableScheduling)
3040 DAG.AssignOrdering(Chain.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003041 }
3042
Bill Wendling856ff412009-12-22 00:12:37 +00003043 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
3044 DAG.getVTList(&ValueVTs[0], NumValues),
3045 &Values[0], NumValues);
3046 setValue(&I, Res);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003047
Bill Wendling856ff412009-12-22 00:12:37 +00003048 if (DisableScheduling)
3049 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
3050}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003051
Dan Gohman2048b852009-11-23 18:04:58 +00003052void SelectionDAGBuilder::visitStore(StoreInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003053 Value *SrcV = I.getOperand(0);
3054 Value *PtrV = I.getOperand(1);
3055
Owen Andersone50ed302009-08-10 22:56:29 +00003056 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003057 SmallVector<uint64_t, 4> Offsets;
3058 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
3059 unsigned NumValues = ValueVTs.size();
3060 if (NumValues == 0)
3061 return;
3062
3063 // Get the lowered operands. Note that we do this after
3064 // checking if NumResults is zero, because with zero results
3065 // the operands won't have values in the map.
3066 SDValue Src = getValue(SrcV);
3067 SDValue Ptr = getValue(PtrV);
3068
3069 SDValue Root = getRoot();
3070 SmallVector<SDValue, 4> Chains(NumValues);
Owen Andersone50ed302009-08-10 22:56:29 +00003071 EVT PtrVT = Ptr.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003072 bool isVolatile = I.isVolatile();
3073 unsigned Alignment = I.getAlignment();
Bill Wendling856ff412009-12-22 00:12:37 +00003074
3075 for (unsigned i = 0; i != NumValues; ++i) {
3076 SDValue Add = DAG.getNode(ISD::ADD, getCurDebugLoc(), PtrVT, Ptr,
3077 DAG.getConstant(Offsets[i], PtrVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003078 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003079 SDValue(Src.getNode(), Src.getResNo() + i),
Bill Wendling856ff412009-12-22 00:12:37 +00003080 Add, PtrV, Offsets[i], isVolatile, Alignment);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003081
Bill Wendling856ff412009-12-22 00:12:37 +00003082 if (DisableScheduling) {
3083 DAG.AssignOrdering(Add.getNode(), SDNodeOrder);
3084 DAG.AssignOrdering(Chains[i].getNode(), SDNodeOrder);
3085 }
3086 }
3087
3088 SDValue Res = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
3089 MVT::Other, &Chains[0], NumValues);
3090 DAG.setRoot(Res);
3091
3092 if (DisableScheduling)
3093 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003094}
3095
3096/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
3097/// node.
Dan Gohman2048b852009-11-23 18:04:58 +00003098void SelectionDAGBuilder::visitTargetIntrinsic(CallInst &I,
3099 unsigned Intrinsic) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003100 bool HasChain = !I.doesNotAccessMemory();
3101 bool OnlyLoad = HasChain && I.onlyReadsMemory();
3102
3103 // Build the operand list.
3104 SmallVector<SDValue, 8> Ops;
3105 if (HasChain) { // If this intrinsic has side-effects, chainify it.
3106 if (OnlyLoad) {
3107 // We don't need to serialize loads against other loads.
3108 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003109 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003110 Ops.push_back(getRoot());
3111 }
3112 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00003113
3114 // Info is set by getTgtMemInstrinsic
3115 TargetLowering::IntrinsicInfo Info;
3116 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
3117
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003118 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00003119 if (!IsTgtIntrinsic)
3120 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003121
3122 // Add all operands of the call to the operand list.
3123 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
3124 SDValue Op = getValue(I.getOperand(i));
3125 assert(TLI.isTypeLegal(Op.getValueType()) &&
3126 "Intrinsic uses a non-legal type?");
3127 Ops.push_back(Op);
3128 }
3129
Owen Andersone50ed302009-08-10 22:56:29 +00003130 SmallVector<EVT, 4> ValueVTs;
Bob Wilson8d919552009-07-31 22:41:21 +00003131 ComputeValueVTs(TLI, I.getType(), ValueVTs);
3132#ifndef NDEBUG
3133 for (unsigned Val = 0, E = ValueVTs.size(); Val != E; ++Val) {
3134 assert(TLI.isTypeLegal(ValueVTs[Val]) &&
3135 "Intrinsic uses a non-legal type?");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003136 }
Bob Wilson8d919552009-07-31 22:41:21 +00003137#endif // NDEBUG
Bill Wendling856ff412009-12-22 00:12:37 +00003138
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003139 if (HasChain)
Owen Anderson825b72b2009-08-11 20:47:22 +00003140 ValueVTs.push_back(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003141
Bob Wilson8d919552009-07-31 22:41:21 +00003142 SDVTList VTs = DAG.getVTList(ValueVTs.data(), ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003143
3144 // Create the node.
3145 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00003146 if (IsTgtIntrinsic) {
3147 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00003148 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00003149 VTs, &Ops[0], Ops.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00003150 Info.memVT, Info.ptrVal, Info.offset,
3151 Info.align, Info.vol,
3152 Info.readMem, Info.writeMem);
Bill Wendling856ff412009-12-22 00:12:37 +00003153 } else if (!HasChain) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003154 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00003155 VTs, &Ops[0], Ops.size());
Bill Wendling856ff412009-12-22 00:12:37 +00003156 } else if (I.getType() != Type::getVoidTy(*DAG.getContext())) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003157 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00003158 VTs, &Ops[0], Ops.size());
Bill Wendling856ff412009-12-22 00:12:37 +00003159 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00003160 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00003161 VTs, &Ops[0], Ops.size());
Bill Wendling856ff412009-12-22 00:12:37 +00003162 }
3163
3164 if (DisableScheduling)
3165 DAG.AssignOrdering(Result.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003166
3167 if (HasChain) {
3168 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
3169 if (OnlyLoad)
3170 PendingLoads.push_back(Chain);
3171 else
3172 DAG.setRoot(Chain);
3173 }
Bill Wendling856ff412009-12-22 00:12:37 +00003174
Owen Anderson1d0be152009-08-13 21:58:54 +00003175 if (I.getType() != Type::getVoidTy(*DAG.getContext())) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003176 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Owen Andersone50ed302009-08-10 22:56:29 +00003177 EVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003178 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Bill Wendling856ff412009-12-22 00:12:37 +00003179
3180 if (DisableScheduling)
3181 DAG.AssignOrdering(Result.getNode(), SDNodeOrder);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003182 }
Bill Wendling856ff412009-12-22 00:12:37 +00003183
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003184 setValue(&I, Result);
3185 }
3186}
3187
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003188/// GetSignificand - Get the significand and build it into a floating-point
3189/// number with exponent of 1:
3190///
3191/// Op = (Op & 0x007fffff) | 0x3f800000;
3192///
3193/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003194static SDValue
Bill Wendling856ff412009-12-22 00:12:37 +00003195GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl, unsigned Order) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003196 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3197 DAG.getConstant(0x007fffff, MVT::i32));
3198 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
3199 DAG.getConstant(0x3f800000, MVT::i32));
Bill Wendling856ff412009-12-22 00:12:37 +00003200 SDValue Res = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
3201
3202 if (DisableScheduling) {
3203 DAG.AssignOrdering(t1.getNode(), Order);
3204 DAG.AssignOrdering(t2.getNode(), Order);
3205 DAG.AssignOrdering(Res.getNode(), Order);
3206 }
3207
3208 return Res;
Bill Wendling39150252008-09-09 20:39:27 +00003209}
3210
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003211/// GetExponent - Get the exponent:
3212///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003213/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003214///
3215/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003216static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003217GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
Bill Wendling856ff412009-12-22 00:12:37 +00003218 DebugLoc dl, unsigned Order) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003219 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3220 DAG.getConstant(0x7f800000, MVT::i32));
3221 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003222 DAG.getConstant(23, TLI.getPointerTy()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003223 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
3224 DAG.getConstant(127, MVT::i32));
Bill Wendling856ff412009-12-22 00:12:37 +00003225 SDValue Res = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
3226
3227 if (DisableScheduling) {
3228 DAG.AssignOrdering(t0.getNode(), Order);
3229 DAG.AssignOrdering(t1.getNode(), Order);
3230 DAG.AssignOrdering(t2.getNode(), Order);
3231 DAG.AssignOrdering(Res.getNode(), Order);
3232 }
3233
3234 return Res;
Bill Wendling39150252008-09-09 20:39:27 +00003235}
3236
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003237/// getF32Constant - Get 32-bit floating point constant.
3238static SDValue
3239getF32Constant(SelectionDAG &DAG, unsigned Flt) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003240 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003241}
3242
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003243/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003244/// visitIntrinsicCall: I is a call instruction
3245/// Op is the associated NodeType for I
3246const char *
Dan Gohman2048b852009-11-23 18:04:58 +00003247SelectionDAGBuilder::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003248 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003249 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003250 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003251 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003252 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003253 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003254 getValue(I.getOperand(2)),
3255 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003256 setValue(&I, L);
3257 DAG.setRoot(L.getValue(1));
Bill Wendling856ff412009-12-22 00:12:37 +00003258
3259 if (DisableScheduling)
3260 DAG.AssignOrdering(L.getNode(), SDNodeOrder);
3261
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003262 return 0;
3263}
3264
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003265// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003266const char *
Dan Gohman2048b852009-11-23 18:04:58 +00003267SelectionDAGBuilder::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003268 SDValue Op1 = getValue(I.getOperand(1));
3269 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003270
Owen Anderson825b72b2009-08-11 20:47:22 +00003271 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
Dan Gohmanfc166572009-04-09 23:54:40 +00003272 SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2);
Bill Wendling74c37652008-12-09 22:08:41 +00003273
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003274 setValue(&I, Result);
Bill Wendling856ff412009-12-22 00:12:37 +00003275
3276 if (DisableScheduling)
3277 DAG.AssignOrdering(Result.getNode(), SDNodeOrder);
3278
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003279 return 0;
3280}
Bill Wendling74c37652008-12-09 22:08:41 +00003281
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003282/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3283/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003284void
Dan Gohman2048b852009-11-23 18:04:58 +00003285SelectionDAGBuilder::visitExp(CallInst &I) {
Dale Johannesen59e577f2008-09-05 18:38:42 +00003286 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003287 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003288
Owen Anderson825b72b2009-08-11 20:47:22 +00003289 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003290 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3291 SDValue Op = getValue(I.getOperand(1));
3292
3293 // Put the exponent in the right bit position for later addition to the
3294 // final result:
3295 //
3296 // #define LOG2OFe 1.4426950f
3297 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Owen Anderson825b72b2009-08-11 20:47:22 +00003298 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003299 getF32Constant(DAG, 0x3fb8aa3b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003300 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003301
3302 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003303 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3304 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003305
Bill Wendling856ff412009-12-22 00:12:37 +00003306 if (DisableScheduling) {
3307 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3308 DAG.AssignOrdering(IntegerPartOfX.getNode(), SDNodeOrder);
3309 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3310 DAG.AssignOrdering(X.getNode(), SDNodeOrder);
3311 }
3312
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003313 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003314 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003315 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003316
Bill Wendling856ff412009-12-22 00:12:37 +00003317 if (DisableScheduling)
3318 DAG.AssignOrdering(IntegerPartOfX.getNode(), SDNodeOrder);
3319
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003320 if (LimitFloatPrecision <= 6) {
3321 // For floating-point precision of 6:
3322 //
3323 // TwoToFractionalPartOfX =
3324 // 0.997535578f +
3325 // (0.735607626f + 0.252464424f * x) * x;
3326 //
3327 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003328 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003329 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003330 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003331 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003332 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3333 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003334 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003335 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003336
3337 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003338 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003339 TwoToFracPartOfX, IntegerPartOfX);
3340
Owen Anderson825b72b2009-08-11 20:47:22 +00003341 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendling856ff412009-12-22 00:12:37 +00003342
3343 if (DisableScheduling) {
3344 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3345 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3346 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3347 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3348 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3349 DAG.AssignOrdering(TwoToFracPartOfX.getNode(), SDNodeOrder);
3350 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
3351 }
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003352 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3353 // For floating-point precision of 12:
3354 //
3355 // TwoToFractionalPartOfX =
3356 // 0.999892986f +
3357 // (0.696457318f +
3358 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3359 //
3360 // 0.000107046256 error, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003361 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003362 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003363 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003364 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003365 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3366 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003367 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003368 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3369 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003370 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003371 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003372
3373 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003374 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003375 TwoToFracPartOfX, IntegerPartOfX);
3376
Owen Anderson825b72b2009-08-11 20:47:22 +00003377 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendling856ff412009-12-22 00:12:37 +00003378
3379 if (DisableScheduling) {
3380 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3381 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3382 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3383 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3384 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3385 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
3386 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
3387 DAG.AssignOrdering(TwoToFracPartOfX.getNode(), SDNodeOrder);
3388 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
3389 }
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003390 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3391 // For floating-point precision of 18:
3392 //
3393 // TwoToFractionalPartOfX =
3394 // 0.999999982f +
3395 // (0.693148872f +
3396 // (0.240227044f +
3397 // (0.554906021e-1f +
3398 // (0.961591928e-2f +
3399 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3400 //
3401 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003402 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003403 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003404 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003405 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003406 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3407 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003408 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003409 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3410 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003411 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003412 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3413 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003414 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003415 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3416 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003417 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003418 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3419 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003420 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003421 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003422 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003423
3424 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003425 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003426 TwoToFracPartOfX, IntegerPartOfX);
3427
Owen Anderson825b72b2009-08-11 20:47:22 +00003428 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendling856ff412009-12-22 00:12:37 +00003429
3430 if (DisableScheduling) {
3431 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3432 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3433 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3434 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3435 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3436 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
3437 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
3438 DAG.AssignOrdering(t9.getNode(), SDNodeOrder);
3439 DAG.AssignOrdering(t10.getNode(), SDNodeOrder);
3440 DAG.AssignOrdering(t11.getNode(), SDNodeOrder);
3441 DAG.AssignOrdering(t12.getNode(), SDNodeOrder);
3442 DAG.AssignOrdering(t13.getNode(), SDNodeOrder);
3443 DAG.AssignOrdering(t14.getNode(), SDNodeOrder);
3444 DAG.AssignOrdering(TwoToFracPartOfX.getNode(), SDNodeOrder);
3445 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
3446 }
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003447 }
3448 } else {
3449 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003450 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003451 getValue(I.getOperand(1)).getValueType(),
3452 getValue(I.getOperand(1)));
Bill Wendling856ff412009-12-22 00:12:37 +00003453 if (DisableScheduling)
3454 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003455 }
3456
Dale Johannesen59e577f2008-09-05 18:38:42 +00003457 setValue(&I, result);
3458}
3459
Bill Wendling39150252008-09-09 20:39:27 +00003460/// visitLog - Lower a log intrinsic. Handles the special sequences for
3461/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003462void
Dan Gohman2048b852009-11-23 18:04:58 +00003463SelectionDAGBuilder::visitLog(CallInst &I) {
Dale Johannesen59e577f2008-09-05 18:38:42 +00003464 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003465 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003466
Owen Anderson825b72b2009-08-11 20:47:22 +00003467 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling39150252008-09-09 20:39:27 +00003468 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3469 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003470 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003471
Bill Wendling856ff412009-12-22 00:12:37 +00003472 if (DisableScheduling)
3473 DAG.AssignOrdering(Op1.getNode(), SDNodeOrder);
3474
Bill Wendling39150252008-09-09 20:39:27 +00003475 // Scale the exponent by log(2) [0.69314718f].
Bill Wendling856ff412009-12-22 00:12:37 +00003476 SDValue Exp = GetExponent(DAG, Op1, TLI, dl, SDNodeOrder);
Owen Anderson825b72b2009-08-11 20:47:22 +00003477 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003478 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003479
Bill Wendling856ff412009-12-22 00:12:37 +00003480 if (DisableScheduling)
3481 DAG.AssignOrdering(LogOfExponent.getNode(), SDNodeOrder);
3482
Bill Wendling39150252008-09-09 20:39:27 +00003483 // Get the significand and build it into a floating-point number with
3484 // exponent of 1.
Bill Wendling856ff412009-12-22 00:12:37 +00003485 SDValue X = GetSignificand(DAG, Op1, dl, SDNodeOrder);
Bill Wendling39150252008-09-09 20:39:27 +00003486
3487 if (LimitFloatPrecision <= 6) {
3488 // For floating-point precision of 6:
3489 //
3490 // LogofMantissa =
3491 // -1.1609546f +
3492 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003493 //
Bill Wendling39150252008-09-09 20:39:27 +00003494 // error 0.0034276066, which is better than 8 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003495 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003496 getF32Constant(DAG, 0xbe74c456));
Owen Anderson825b72b2009-08-11 20:47:22 +00003497 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003498 getF32Constant(DAG, 0x3fb3a2b1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003499 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3500 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003501 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003502
Scott Michelfdc40a02009-02-17 22:15:04 +00003503 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003504 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003505
3506 if (DisableScheduling) {
3507 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3508 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3509 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3510 DAG.AssignOrdering(LogOfMantissa.getNode(), SDNodeOrder);
3511 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
3512 }
Bill Wendling39150252008-09-09 20:39:27 +00003513 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3514 // For floating-point precision of 12:
3515 //
3516 // LogOfMantissa =
3517 // -1.7417939f +
3518 // (2.8212026f +
3519 // (-1.4699568f +
3520 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3521 //
3522 // error 0.000061011436, which is 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003523 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003524 getF32Constant(DAG, 0xbd67b6d6));
Owen Anderson825b72b2009-08-11 20:47:22 +00003525 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003526 getF32Constant(DAG, 0x3ee4f4b8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003527 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3528 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003529 getF32Constant(DAG, 0x3fbc278b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003530 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3531 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003532 getF32Constant(DAG, 0x40348e95));
Owen Anderson825b72b2009-08-11 20:47:22 +00003533 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3534 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003535 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003536
Scott Michelfdc40a02009-02-17 22:15:04 +00003537 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003538 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003539
3540 if (DisableScheduling) {
3541 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3542 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3543 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3544 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3545 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3546 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3547 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3548 DAG.AssignOrdering(LogOfMantissa.getNode(), SDNodeOrder);
3549 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
3550 }
Bill Wendling39150252008-09-09 20:39:27 +00003551 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3552 // For floating-point precision of 18:
3553 //
3554 // LogOfMantissa =
3555 // -2.1072184f +
3556 // (4.2372794f +
3557 // (-3.7029485f +
3558 // (2.2781945f +
3559 // (-0.87823314f +
3560 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3561 //
3562 // error 0.0000023660568, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003563 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003564 getF32Constant(DAG, 0xbc91e5ac));
Owen Anderson825b72b2009-08-11 20:47:22 +00003565 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003566 getF32Constant(DAG, 0x3e4350aa));
Owen Anderson825b72b2009-08-11 20:47:22 +00003567 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3568 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003569 getF32Constant(DAG, 0x3f60d3e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003570 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3571 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003572 getF32Constant(DAG, 0x4011cdf0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003573 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3574 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003575 getF32Constant(DAG, 0x406cfd1c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003576 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3577 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003578 getF32Constant(DAG, 0x408797cb));
Owen Anderson825b72b2009-08-11 20:47:22 +00003579 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3580 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003581 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003582
Scott Michelfdc40a02009-02-17 22:15:04 +00003583 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003584 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003585
3586 if (DisableScheduling) {
3587 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3588 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3589 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3590 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3591 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3592 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3593 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3594 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
3595 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
3596 DAG.AssignOrdering(t9.getNode(), SDNodeOrder);
3597 DAG.AssignOrdering(t10.getNode(), SDNodeOrder);
3598 DAG.AssignOrdering(LogOfMantissa.getNode(), SDNodeOrder);
3599 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
3600 }
Bill Wendling39150252008-09-09 20:39:27 +00003601 }
3602 } else {
3603 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003604 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003605 getValue(I.getOperand(1)).getValueType(),
3606 getValue(I.getOperand(1)));
Bill Wendling856ff412009-12-22 00:12:37 +00003607
3608 if (DisableScheduling)
3609 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendling39150252008-09-09 20:39:27 +00003610 }
3611
Dale Johannesen59e577f2008-09-05 18:38:42 +00003612 setValue(&I, result);
3613}
3614
Bill Wendling3eb59402008-09-09 00:28:24 +00003615/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3616/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003617void
Dan Gohman2048b852009-11-23 18:04:58 +00003618SelectionDAGBuilder::visitLog2(CallInst &I) {
Dale Johannesen59e577f2008-09-05 18:38:42 +00003619 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003620 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003621
Owen Anderson825b72b2009-08-11 20:47:22 +00003622 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003623 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3624 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003625 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003626
Bill Wendling856ff412009-12-22 00:12:37 +00003627 if (DisableScheduling)
3628 DAG.AssignOrdering(Op1.getNode(), SDNodeOrder);
3629
Bill Wendling39150252008-09-09 20:39:27 +00003630 // Get the exponent.
Bill Wendling856ff412009-12-22 00:12:37 +00003631 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl, SDNodeOrder);
3632
3633 if (DisableScheduling)
3634 DAG.AssignOrdering(LogOfExponent.getNode(), SDNodeOrder);
Bill Wendling3eb59402008-09-09 00:28:24 +00003635
3636 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003637 // exponent of 1.
Bill Wendling856ff412009-12-22 00:12:37 +00003638 SDValue X = GetSignificand(DAG, Op1, dl, SDNodeOrder);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003639
Bill Wendling3eb59402008-09-09 00:28:24 +00003640 // Different possible minimax approximations of significand in
3641 // floating-point for various degrees of accuracy over [1,2].
3642 if (LimitFloatPrecision <= 6) {
3643 // For floating-point precision of 6:
3644 //
3645 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3646 //
3647 // error 0.0049451742, which is more than 7 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003648 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003649 getF32Constant(DAG, 0xbeb08fe0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003650 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003651 getF32Constant(DAG, 0x40019463));
Owen Anderson825b72b2009-08-11 20:47:22 +00003652 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3653 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003654 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003655
Scott Michelfdc40a02009-02-17 22:15:04 +00003656 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003657 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003658
3659 if (DisableScheduling) {
3660 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3661 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3662 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3663 DAG.AssignOrdering(Log2ofMantissa.getNode(), SDNodeOrder);
3664 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
3665 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003666 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3667 // For floating-point precision of 12:
3668 //
3669 // Log2ofMantissa =
3670 // -2.51285454f +
3671 // (4.07009056f +
3672 // (-2.12067489f +
3673 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003674 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003675 // error 0.0000876136000, which is better than 13 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003676 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003677 getF32Constant(DAG, 0xbda7262e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003678 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003679 getF32Constant(DAG, 0x3f25280b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003680 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3681 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003682 getF32Constant(DAG, 0x4007b923));
Owen Anderson825b72b2009-08-11 20:47:22 +00003683 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3684 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003685 getF32Constant(DAG, 0x40823e2f));
Owen Anderson825b72b2009-08-11 20:47:22 +00003686 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3687 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003688 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003689
Scott Michelfdc40a02009-02-17 22:15:04 +00003690 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003691 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003692
3693 if (DisableScheduling) {
3694 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3695 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3696 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3697 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3698 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3699 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3700 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3701 DAG.AssignOrdering(Log2ofMantissa.getNode(), SDNodeOrder);
3702 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
3703 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003704 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3705 // For floating-point precision of 18:
3706 //
3707 // Log2ofMantissa =
3708 // -3.0400495f +
3709 // (6.1129976f +
3710 // (-5.3420409f +
3711 // (3.2865683f +
3712 // (-1.2669343f +
3713 // (0.27515199f -
3714 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3715 //
3716 // error 0.0000018516, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003717 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003718 getF32Constant(DAG, 0xbcd2769e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003719 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003720 getF32Constant(DAG, 0x3e8ce0b9));
Owen Anderson825b72b2009-08-11 20:47:22 +00003721 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3722 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003723 getF32Constant(DAG, 0x3fa22ae7));
Owen Anderson825b72b2009-08-11 20:47:22 +00003724 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3725 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003726 getF32Constant(DAG, 0x40525723));
Owen Anderson825b72b2009-08-11 20:47:22 +00003727 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3728 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003729 getF32Constant(DAG, 0x40aaf200));
Owen Anderson825b72b2009-08-11 20:47:22 +00003730 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3731 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003732 getF32Constant(DAG, 0x40c39dad));
Owen Anderson825b72b2009-08-11 20:47:22 +00003733 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3734 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003735 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003736
Scott Michelfdc40a02009-02-17 22:15:04 +00003737 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003738 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003739
3740 if (DisableScheduling) {
3741 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3742 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3743 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3744 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3745 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3746 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3747 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3748 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
3749 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
3750 DAG.AssignOrdering(t9.getNode(), SDNodeOrder);
3751 DAG.AssignOrdering(t10.getNode(), SDNodeOrder);
3752 DAG.AssignOrdering(Log2ofMantissa.getNode(), SDNodeOrder);
3753 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
3754 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003755 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003756 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003757 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003758 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003759 getValue(I.getOperand(1)).getValueType(),
3760 getValue(I.getOperand(1)));
Bill Wendling856ff412009-12-22 00:12:37 +00003761
3762 if (DisableScheduling)
3763 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Dale Johannesen853244f2008-09-05 23:49:37 +00003764 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003765
Dale Johannesen59e577f2008-09-05 18:38:42 +00003766 setValue(&I, result);
3767}
3768
Bill Wendling3eb59402008-09-09 00:28:24 +00003769/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3770/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003771void
Dan Gohman2048b852009-11-23 18:04:58 +00003772SelectionDAGBuilder::visitLog10(CallInst &I) {
Dale Johannesen59e577f2008-09-05 18:38:42 +00003773 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003774 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003775
Owen Anderson825b72b2009-08-11 20:47:22 +00003776 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003777 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3778 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003779 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003780
Bill Wendling856ff412009-12-22 00:12:37 +00003781 if (DisableScheduling)
3782 DAG.AssignOrdering(Op1.getNode(), SDNodeOrder);
3783
Bill Wendling39150252008-09-09 20:39:27 +00003784 // Scale the exponent by log10(2) [0.30102999f].
Bill Wendling856ff412009-12-22 00:12:37 +00003785 SDValue Exp = GetExponent(DAG, Op1, TLI, dl, SDNodeOrder);
Owen Anderson825b72b2009-08-11 20:47:22 +00003786 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003787 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003788
Bill Wendling856ff412009-12-22 00:12:37 +00003789 if (DisableScheduling)
3790 DAG.AssignOrdering(LogOfExponent.getNode(), SDNodeOrder);
3791
Bill Wendling3eb59402008-09-09 00:28:24 +00003792 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003793 // exponent of 1.
Bill Wendling856ff412009-12-22 00:12:37 +00003794 SDValue X = GetSignificand(DAG, Op1, dl, SDNodeOrder);
Bill Wendling3eb59402008-09-09 00:28:24 +00003795
3796 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003797 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003798 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003799 // Log10ofMantissa =
3800 // -0.50419619f +
3801 // (0.60948995f - 0.10380950f * x) * x;
3802 //
3803 // error 0.0014886165, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003804 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003805 getF32Constant(DAG, 0xbdd49a13));
Owen Anderson825b72b2009-08-11 20:47:22 +00003806 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003807 getF32Constant(DAG, 0x3f1c0789));
Owen Anderson825b72b2009-08-11 20:47:22 +00003808 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3809 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003810 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003811
Scott Michelfdc40a02009-02-17 22:15:04 +00003812 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003813 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003814
3815 if (DisableScheduling) {
3816 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3817 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3818 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3819 DAG.AssignOrdering(Log10ofMantissa.getNode(), SDNodeOrder);
3820 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
3821 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003822 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3823 // For floating-point precision of 12:
3824 //
3825 // Log10ofMantissa =
3826 // -0.64831180f +
3827 // (0.91751397f +
3828 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3829 //
3830 // error 0.00019228036, which is better than 12 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003831 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003832 getF32Constant(DAG, 0x3d431f31));
Owen Anderson825b72b2009-08-11 20:47:22 +00003833 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003834 getF32Constant(DAG, 0x3ea21fb2));
Owen Anderson825b72b2009-08-11 20:47:22 +00003835 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3836 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003837 getF32Constant(DAG, 0x3f6ae232));
Owen Anderson825b72b2009-08-11 20:47:22 +00003838 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3839 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003840 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003841
Scott Michelfdc40a02009-02-17 22:15:04 +00003842 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003843 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003844
3845 if (DisableScheduling) {
3846 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3847 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3848 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3849 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3850 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3851 DAG.AssignOrdering(Log10ofMantissa.getNode(), SDNodeOrder);
3852 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
3853 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003854 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003855 // For floating-point precision of 18:
3856 //
3857 // Log10ofMantissa =
3858 // -0.84299375f +
3859 // (1.5327582f +
3860 // (-1.0688956f +
3861 // (0.49102474f +
3862 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3863 //
3864 // error 0.0000037995730, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003865 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003866 getF32Constant(DAG, 0x3c5d51ce));
Owen Anderson825b72b2009-08-11 20:47:22 +00003867 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003868 getF32Constant(DAG, 0x3e00685a));
Owen Anderson825b72b2009-08-11 20:47:22 +00003869 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3870 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003871 getF32Constant(DAG, 0x3efb6798));
Owen Anderson825b72b2009-08-11 20:47:22 +00003872 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3873 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003874 getF32Constant(DAG, 0x3f88d192));
Owen Anderson825b72b2009-08-11 20:47:22 +00003875 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3876 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003877 getF32Constant(DAG, 0x3fc4316c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003878 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3879 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003880 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003881
Scott Michelfdc40a02009-02-17 22:15:04 +00003882 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003883 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling856ff412009-12-22 00:12:37 +00003884
3885 if (DisableScheduling) {
3886 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
3887 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3888 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3889 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3890 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3891 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3892 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3893 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
3894 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
3895 DAG.AssignOrdering(Log10ofMantissa.getNode(), SDNodeOrder);
3896 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
3897 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003898 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003899 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003900 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003901 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003902 getValue(I.getOperand(1)).getValueType(),
3903 getValue(I.getOperand(1)));
Bill Wendling856ff412009-12-22 00:12:37 +00003904
3905 if (DisableScheduling)
3906 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Dale Johannesen852680a2008-09-05 21:27:19 +00003907 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003908
Dale Johannesen59e577f2008-09-05 18:38:42 +00003909 setValue(&I, result);
3910}
3911
Bill Wendlinge10c8142008-09-09 22:39:21 +00003912/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3913/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003914void
Dan Gohman2048b852009-11-23 18:04:58 +00003915SelectionDAGBuilder::visitExp2(CallInst &I) {
Dale Johannesen601d3c02008-09-05 01:48:15 +00003916 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003917 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003918
Owen Anderson825b72b2009-08-11 20:47:22 +00003919 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003920 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3921 SDValue Op = getValue(I.getOperand(1));
3922
Owen Anderson825b72b2009-08-11 20:47:22 +00003923 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003924
Bill Wendling856ff412009-12-22 00:12:37 +00003925 if (DisableScheduling)
3926 DAG.AssignOrdering(IntegerPartOfX.getNode(), SDNodeOrder);
3927
Bill Wendlinge10c8142008-09-09 22:39:21 +00003928 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003929 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3930 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003931
3932 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003933 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003934 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003935
Bill Wendling856ff412009-12-22 00:12:37 +00003936 if (DisableScheduling) {
3937 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
3938 DAG.AssignOrdering(X.getNode(), SDNodeOrder);
3939 DAG.AssignOrdering(IntegerPartOfX.getNode(), SDNodeOrder);
3940 }
3941
Bill Wendlinge10c8142008-09-09 22:39:21 +00003942 if (LimitFloatPrecision <= 6) {
3943 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003944 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003945 // TwoToFractionalPartOfX =
3946 // 0.997535578f +
3947 // (0.735607626f + 0.252464424f * x) * x;
3948 //
3949 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003950 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003951 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003952 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003953 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003954 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3955 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003956 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003957 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003958 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003959 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003960
Scott Michelfdc40a02009-02-17 22:15:04 +00003961 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003962 MVT::f32, TwoToFractionalPartOfX);
Bill Wendling856ff412009-12-22 00:12:37 +00003963
3964 if (DisableScheduling) {
3965 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
3966 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
3967 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
3968 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
3969 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
3970 DAG.AssignOrdering(TwoToFractionalPartOfX.getNode(), SDNodeOrder);
3971 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
3972 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003973 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3974 // For floating-point precision of 12:
3975 //
3976 // TwoToFractionalPartOfX =
3977 // 0.999892986f +
3978 // (0.696457318f +
3979 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3980 //
3981 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003982 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003983 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003984 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003985 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003986 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3987 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003988 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003989 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3990 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003991 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003992 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003993 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003994 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003995
Scott Michelfdc40a02009-02-17 22:15:04 +00003996 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003997 MVT::f32, TwoToFractionalPartOfX);
Bill Wendling856ff412009-12-22 00:12:37 +00003998
3999 if (DisableScheduling) {
4000 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
4001 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
4002 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
4003 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
4004 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
4005 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
4006 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
4007 DAG.AssignOrdering(TwoToFractionalPartOfX.getNode(), SDNodeOrder);
4008 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
4009 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00004010 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
4011 // For floating-point precision of 18:
4012 //
4013 // TwoToFractionalPartOfX =
4014 // 0.999999982f +
4015 // (0.693148872f +
4016 // (0.240227044f +
4017 // (0.554906021e-1f +
4018 // (0.961591928e-2f +
4019 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
4020 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004021 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004022 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00004023 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004024 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00004025 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4026 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004027 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00004028 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4029 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004030 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00004031 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
4032 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004033 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00004034 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
4035 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004036 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00004037 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
4038 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004039 getF32Constant(DAG, 0x3f800000));
Owen Anderson825b72b2009-08-11 20:47:22 +00004040 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00004041 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00004042 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00004043
Scott Michelfdc40a02009-02-17 22:15:04 +00004044 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004045 MVT::f32, TwoToFractionalPartOfX);
Bill Wendling856ff412009-12-22 00:12:37 +00004046
4047 if (DisableScheduling) {
4048 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
4049 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
4050 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
4051 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
4052 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
4053 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
4054 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
4055 DAG.AssignOrdering(t9.getNode(), SDNodeOrder);
4056 DAG.AssignOrdering(t10.getNode(), SDNodeOrder);
4057 DAG.AssignOrdering(t11.getNode(), SDNodeOrder);
4058 DAG.AssignOrdering(t12.getNode(), SDNodeOrder);
4059 DAG.AssignOrdering(t13.getNode(), SDNodeOrder);
4060 DAG.AssignOrdering(t14.getNode(), SDNodeOrder);
4061 DAG.AssignOrdering(TwoToFractionalPartOfX.getNode(), SDNodeOrder);
4062 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
4063 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00004064 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00004065 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00004066 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004067 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00004068 getValue(I.getOperand(1)).getValueType(),
4069 getValue(I.getOperand(1)));
Bill Wendling856ff412009-12-22 00:12:37 +00004070
4071 if (DisableScheduling)
4072 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Dale Johannesen601d3c02008-09-05 01:48:15 +00004073 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00004074
Dale Johannesen601d3c02008-09-05 01:48:15 +00004075 setValue(&I, result);
4076}
4077
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004078/// visitPow - Lower a pow intrinsic. Handles the special sequences for
4079/// limited-precision mode with x == 10.0f.
4080void
Dan Gohman2048b852009-11-23 18:04:58 +00004081SelectionDAGBuilder::visitPow(CallInst &I) {
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004082 SDValue result;
4083 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00004084 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004085 bool IsExp10 = false;
4086
Owen Anderson825b72b2009-08-11 20:47:22 +00004087 if (getValue(Val).getValueType() == MVT::f32 &&
4088 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004089 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
4090 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
4091 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
4092 APFloat Ten(10.0f);
4093 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
4094 }
4095 }
4096 }
4097
4098 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
4099 SDValue Op = getValue(I.getOperand(2));
4100
4101 // Put the exponent in the right bit position for later addition to the
4102 // final result:
4103 //
4104 // #define LOG2OF10 3.3219281f
4105 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Owen Anderson825b72b2009-08-11 20:47:22 +00004106 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004107 getF32Constant(DAG, 0x40549a78));
Owen Anderson825b72b2009-08-11 20:47:22 +00004108 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004109
4110 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00004111 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
4112 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004113
Bill Wendling856ff412009-12-22 00:12:37 +00004114 if (DisableScheduling) {
4115 DAG.AssignOrdering(t0.getNode(), SDNodeOrder);
4116 DAG.AssignOrdering(t1.getNode(), SDNodeOrder);
4117 DAG.AssignOrdering(IntegerPartOfX.getNode(), SDNodeOrder);
4118 DAG.AssignOrdering(X.getNode(), SDNodeOrder);
4119 }
4120
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004121 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00004122 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00004123 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004124
Bill Wendling856ff412009-12-22 00:12:37 +00004125 if (DisableScheduling)
4126 DAG.AssignOrdering(IntegerPartOfX.getNode(), SDNodeOrder);
4127
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004128 if (LimitFloatPrecision <= 6) {
4129 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004130 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004131 // twoToFractionalPartOfX =
4132 // 0.997535578f +
4133 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004134 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004135 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004136 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004137 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00004138 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004139 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00004140 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4141 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004142 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00004143 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004144 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00004145 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004146
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004147 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004148 MVT::f32, TwoToFractionalPartOfX);
Bill Wendling856ff412009-12-22 00:12:37 +00004149
4150 if (DisableScheduling) {
4151 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
4152 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
4153 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
4154 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
4155 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
4156 DAG.AssignOrdering(TwoToFractionalPartOfX.getNode(), SDNodeOrder);
4157 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
4158 }
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004159 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
4160 // For floating-point precision of 12:
4161 //
4162 // TwoToFractionalPartOfX =
4163 // 0.999892986f +
4164 // (0.696457318f +
4165 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
4166 //
4167 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004168 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004169 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00004170 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004171 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00004172 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4173 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004174 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00004175 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4176 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004177 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00004178 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004179 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00004180 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004181
Scott Michelfdc40a02009-02-17 22:15:04 +00004182 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004183 MVT::f32, TwoToFractionalPartOfX);
Bill Wendling856ff412009-12-22 00:12:37 +00004184
4185 if (DisableScheduling) {
4186 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
4187 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
4188 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
4189 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
4190 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
4191 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
4192 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
4193 DAG.AssignOrdering(TwoToFractionalPartOfX.getNode(), SDNodeOrder);
4194 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
4195 }
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004196 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
4197 // For floating-point precision of 18:
4198 //
4199 // TwoToFractionalPartOfX =
4200 // 0.999999982f +
4201 // (0.693148872f +
4202 // (0.240227044f +
4203 // (0.554906021e-1f +
4204 // (0.961591928e-2f +
4205 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
4206 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004207 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004208 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00004209 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004210 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00004211 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4212 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004213 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00004214 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4215 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004216 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00004217 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
4218 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004219 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00004220 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
4221 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004222 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00004223 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
4224 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004225 getF32Constant(DAG, 0x3f800000));
Owen Anderson825b72b2009-08-11 20:47:22 +00004226 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004227 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00004228 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004229
Scott Michelfdc40a02009-02-17 22:15:04 +00004230 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004231 MVT::f32, TwoToFractionalPartOfX);
Bill Wendling856ff412009-12-22 00:12:37 +00004232
4233 if (DisableScheduling) {
4234 DAG.AssignOrdering(t2.getNode(), SDNodeOrder);
4235 DAG.AssignOrdering(t3.getNode(), SDNodeOrder);
4236 DAG.AssignOrdering(t4.getNode(), SDNodeOrder);
4237 DAG.AssignOrdering(t5.getNode(), SDNodeOrder);
4238 DAG.AssignOrdering(t6.getNode(), SDNodeOrder);
4239 DAG.AssignOrdering(t7.getNode(), SDNodeOrder);
4240 DAG.AssignOrdering(t8.getNode(), SDNodeOrder);
4241 DAG.AssignOrdering(t9.getNode(), SDNodeOrder);
4242 DAG.AssignOrdering(t10.getNode(), SDNodeOrder);
4243 DAG.AssignOrdering(t11.getNode(), SDNodeOrder);
4244 DAG.AssignOrdering(t12.getNode(), SDNodeOrder);
4245 DAG.AssignOrdering(t13.getNode(), SDNodeOrder);
4246 DAG.AssignOrdering(t14.getNode(), SDNodeOrder);
4247 DAG.AssignOrdering(TwoToFractionalPartOfX.getNode(), SDNodeOrder);
4248 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
4249 }
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004250 }
4251 } else {
4252 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004253 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004254 getValue(I.getOperand(1)).getValueType(),
4255 getValue(I.getOperand(1)),
4256 getValue(I.getOperand(2)));
Bill Wendling856ff412009-12-22 00:12:37 +00004257
4258 if (DisableScheduling)
4259 DAG.AssignOrdering(result.getNode(), SDNodeOrder);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004260 }
4261
4262 setValue(&I, result);
4263}
4264
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004265/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
4266/// we want to emit this as a call to a named external function, return the name
4267/// otherwise lower it and return null.
4268const char *
Dan Gohman2048b852009-11-23 18:04:58 +00004269SelectionDAGBuilder::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004270 DebugLoc dl = getCurDebugLoc();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004271 SDValue Res;
4272
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004273 switch (Intrinsic) {
4274 default:
4275 // By default, turn this into a target intrinsic node.
4276 visitTargetIntrinsic(I, Intrinsic);
4277 return 0;
4278 case Intrinsic::vastart: visitVAStart(I); return 0;
4279 case Intrinsic::vaend: visitVAEnd(I); return 0;
4280 case Intrinsic::vacopy: visitVACopy(I); return 0;
4281 case Intrinsic::returnaddress:
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004282 Res = DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
4283 getValue(I.getOperand(1)));
4284 setValue(&I, Res);
4285 if (DisableScheduling)
4286 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004287 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00004288 case Intrinsic::frameaddress:
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004289 Res = DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
4290 getValue(I.getOperand(1)));
4291 setValue(&I, Res);
4292 if (DisableScheduling)
4293 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004294 return 0;
4295 case Intrinsic::setjmp:
4296 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004297 case Intrinsic::longjmp:
4298 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
Chris Lattner824b9582008-11-21 16:42:48 +00004299 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004300 SDValue Op1 = getValue(I.getOperand(1));
4301 SDValue Op2 = getValue(I.getOperand(2));
4302 SDValue Op3 = getValue(I.getOperand(3));
4303 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004304 Res = DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
4305 I.getOperand(1), 0, I.getOperand(2), 0);
4306 DAG.setRoot(Res);
4307 if (DisableScheduling)
4308 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004309 return 0;
4310 }
Chris Lattner824b9582008-11-21 16:42:48 +00004311 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004312 SDValue Op1 = getValue(I.getOperand(1));
4313 SDValue Op2 = getValue(I.getOperand(2));
4314 SDValue Op3 = getValue(I.getOperand(3));
4315 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004316 Res = DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
4317 I.getOperand(1), 0);
4318 DAG.setRoot(Res);
4319 if (DisableScheduling)
4320 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004321 return 0;
4322 }
Chris Lattner824b9582008-11-21 16:42:48 +00004323 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004324 SDValue Op1 = getValue(I.getOperand(1));
4325 SDValue Op2 = getValue(I.getOperand(2));
4326 SDValue Op3 = getValue(I.getOperand(3));
4327 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
4328
4329 // If the source and destination are known to not be aliases, we can
4330 // lower memmove as memcpy.
4331 uint64_t Size = -1ULL;
4332 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004333 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004334 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
4335 AliasAnalysis::NoAlias) {
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004336 Res = DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
4337 I.getOperand(1), 0, I.getOperand(2), 0);
4338 DAG.setRoot(Res);
4339 if (DisableScheduling)
4340 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004341 return 0;
4342 }
4343
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004344 Res = DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
4345 I.getOperand(1), 0, I.getOperand(2), 0);
4346 DAG.setRoot(Res);
4347 if (DisableScheduling)
4348 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004349 return 0;
4350 }
Devang Patel70d75ca2009-11-12 19:02:56 +00004351 case Intrinsic::dbg_stoppoint:
4352 case Intrinsic::dbg_region_start:
4353 case Intrinsic::dbg_region_end:
4354 case Intrinsic::dbg_func_start:
4355 // FIXME - Remove this instructions once the dust settles.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004356 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00004357 case Intrinsic::dbg_declare: {
Devang Patel7e1e31f2009-07-02 22:43:26 +00004358 if (OptLevel != CodeGenOpt::None)
4359 // FIXME: Variable debug info is not supported here.
4360 return 0;
Devang Patel24f20e02009-08-22 17:12:53 +00004361 DwarfWriter *DW = DAG.getDwarfWriter();
4362 if (!DW)
4363 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00004364 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
4365 if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None))
4366 return 0;
4367
Devang Patelac1ceb32009-10-09 22:42:28 +00004368 MDNode *Variable = DI.getVariable();
Devang Patel24f20e02009-08-22 17:12:53 +00004369 Value *Address = DI.getAddress();
4370 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
4371 Address = BCI->getOperand(0);
4372 AllocaInst *AI = dyn_cast<AllocaInst>(Address);
4373 // Don't handle byval struct arguments or VLAs, for example.
4374 if (!AI)
4375 return 0;
Devang Patelbd1d6a82009-09-05 00:34:14 +00004376 DenseMap<const AllocaInst*, int>::iterator SI =
4377 FuncInfo.StaticAllocaMap.find(AI);
4378 if (SI == FuncInfo.StaticAllocaMap.end())
4379 return 0; // VLAs.
4380 int FI = SI->second;
Devang Patel70d75ca2009-11-12 19:02:56 +00004381
Devang Patelac1ceb32009-10-09 22:42:28 +00004382 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Devang Patel53bb5c92009-11-10 23:06:00 +00004383 if (MMI) {
4384 MetadataContext &TheMetadata =
4385 DI.getParent()->getContext().getMetadata();
Chris Lattner0eb41982009-12-28 20:45:51 +00004386 unsigned MDDbgKind = TheMetadata.getMDKindID("dbg");
4387 if (MDNode *Dbg = TheMetadata.getMD(MDDbgKind, &DI))
4388 MMI->setVariableDbgInfo(Variable, FI, Dbg);
Devang Patel53bb5c92009-11-10 23:06:00 +00004389 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004390 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00004391 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004392 case Intrinsic::eh_exception: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004393 // Insert the EXCEPTIONADDR instruction.
Duncan Sandsb0f1e172009-05-22 20:36:31 +00004394 assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004395 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004396 SDValue Ops[1];
4397 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004398 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004399 setValue(&I, Op);
4400 DAG.setRoot(Op.getValue(1));
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004401 if (DisableScheduling)
4402 DAG.AssignOrdering(Op.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004403 return 0;
4404 }
4405
Duncan Sandsb01bbdc2009-10-14 16:11:37 +00004406 case Intrinsic::eh_selector: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004407 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004408
Chris Lattner3a5815f2009-09-17 23:54:54 +00004409 if (CurMBB->isLandingPad())
4410 AddCatchInfo(I, MMI, CurMBB);
4411 else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004412#ifndef NDEBUG
Chris Lattner3a5815f2009-09-17 23:54:54 +00004413 FuncInfo.CatchInfoLost.insert(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004414#endif
Chris Lattner3a5815f2009-09-17 23:54:54 +00004415 // FIXME: Mark exception selector register as live in. Hack for PR1508.
4416 unsigned Reg = TLI.getExceptionSelectorRegister();
4417 if (Reg) CurMBB->addLiveIn(Reg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004418 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004419
Chris Lattner3a5815f2009-09-17 23:54:54 +00004420 // Insert the EHSELECTION instruction.
4421 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
4422 SDValue Ops[2];
4423 Ops[0] = getValue(I.getOperand(1));
4424 Ops[1] = getRoot();
4425 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
4426
4427 DAG.setRoot(Op.getValue(1));
4428
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004429 Res = DAG.getSExtOrTrunc(Op, dl, MVT::i32);
4430 setValue(&I, Res);
4431 if (DisableScheduling) {
4432 DAG.AssignOrdering(Op.getNode(), SDNodeOrder);
4433 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
4434 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004435 return 0;
4436 }
4437
Duncan Sandsb01bbdc2009-10-14 16:11:37 +00004438 case Intrinsic::eh_typeid_for: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004439 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004440
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004441 if (MMI) {
4442 // Find the type id for the given typeinfo.
4443 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004444 unsigned TypeID = MMI->getTypeIDFor(GV);
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004445 Res = DAG.getConstant(TypeID, MVT::i32);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004446 } else {
4447 // Return something different to eh_selector.
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004448 Res = DAG.getConstant(1, MVT::i32);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004449 }
4450
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004451 setValue(&I, Res);
4452 if (DisableScheduling)
4453 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004454 return 0;
4455 }
4456
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004457 case Intrinsic::eh_return_i32:
4458 case Intrinsic::eh_return_i64:
4459 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004460 MMI->setCallsEHReturn(true);
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004461 Res = DAG.getNode(ISD::EH_RETURN, dl,
4462 MVT::Other,
4463 getControlRoot(),
4464 getValue(I.getOperand(1)),
4465 getValue(I.getOperand(2)));
4466 DAG.setRoot(Res);
4467 if (DisableScheduling)
4468 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004469 } else {
4470 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4471 }
4472
4473 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004474 case Intrinsic::eh_unwind_init:
4475 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4476 MMI->setCallsUnwindInit(true);
4477 }
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004478 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004479 case Intrinsic::eh_dwarf_cfa: {
Owen Andersone50ed302009-08-10 22:56:29 +00004480 EVT VT = getValue(I.getOperand(1)).getValueType();
Duncan Sands3a66a682009-10-13 21:04:12 +00004481 SDValue CfaArg = DAG.getSExtOrTrunc(getValue(I.getOperand(1)), dl,
4482 TLI.getPointerTy());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004483 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004484 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004485 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004486 TLI.getPointerTy()),
4487 CfaArg);
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004488 SDValue FA = DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004489 TLI.getPointerTy(),
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004490 DAG.getConstant(0, TLI.getPointerTy()));
4491 Res = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
4492 FA, Offset);
4493 setValue(&I, Res);
4494 if (DisableScheduling) {
4495 DAG.AssignOrdering(CfaArg.getNode(), SDNodeOrder);
4496 DAG.AssignOrdering(Offset.getNode(), SDNodeOrder);
4497 DAG.AssignOrdering(FA.getNode(), SDNodeOrder);
4498 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
4499 }
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004500 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004501 }
Mon P Wang77cdf302008-11-10 20:54:11 +00004502 case Intrinsic::convertff:
4503 case Intrinsic::convertfsi:
4504 case Intrinsic::convertfui:
4505 case Intrinsic::convertsif:
4506 case Intrinsic::convertuif:
4507 case Intrinsic::convertss:
4508 case Intrinsic::convertsu:
4509 case Intrinsic::convertus:
4510 case Intrinsic::convertuu: {
4511 ISD::CvtCode Code = ISD::CVT_INVALID;
4512 switch (Intrinsic) {
4513 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4514 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4515 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4516 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4517 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4518 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4519 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4520 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4521 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4522 }
Owen Andersone50ed302009-08-10 22:56:29 +00004523 EVT DestVT = TLI.getValueType(I.getType());
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004524 Value *Op1 = I.getOperand(1);
4525 Res = DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
4526 DAG.getValueType(DestVT),
4527 DAG.getValueType(getValue(Op1).getValueType()),
4528 getValue(I.getOperand(2)),
4529 getValue(I.getOperand(3)),
4530 Code);
4531 setValue(&I, Res);
4532 if (DisableScheduling)
4533 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Mon P Wang77cdf302008-11-10 20:54:11 +00004534 return 0;
4535 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004536 case Intrinsic::sqrt:
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004537 Res = DAG.getNode(ISD::FSQRT, dl,
4538 getValue(I.getOperand(1)).getValueType(),
4539 getValue(I.getOperand(1)));
4540 setValue(&I, Res);
4541 if (DisableScheduling)
4542 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004543 return 0;
4544 case Intrinsic::powi:
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004545 Res = DAG.getNode(ISD::FPOWI, dl,
4546 getValue(I.getOperand(1)).getValueType(),
4547 getValue(I.getOperand(1)),
4548 getValue(I.getOperand(2)));
4549 setValue(&I, Res);
4550 if (DisableScheduling)
4551 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004552 return 0;
4553 case Intrinsic::sin:
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004554 Res = DAG.getNode(ISD::FSIN, dl,
4555 getValue(I.getOperand(1)).getValueType(),
4556 getValue(I.getOperand(1)));
4557 setValue(&I, Res);
4558 if (DisableScheduling)
4559 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004560 return 0;
4561 case Intrinsic::cos:
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004562 Res = DAG.getNode(ISD::FCOS, dl,
4563 getValue(I.getOperand(1)).getValueType(),
4564 getValue(I.getOperand(1)));
4565 setValue(&I, Res);
4566 if (DisableScheduling)
4567 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004568 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004569 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004570 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004571 return 0;
4572 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004573 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004574 return 0;
4575 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004576 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004577 return 0;
4578 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004579 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004580 return 0;
4581 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004582 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004583 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004584 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004585 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004586 return 0;
4587 case Intrinsic::pcmarker: {
4588 SDValue Tmp = getValue(I.getOperand(1));
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004589 Res = DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp);
4590 DAG.setRoot(Res);
4591 if (DisableScheduling)
4592 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004593 return 0;
4594 }
4595 case Intrinsic::readcyclecounter: {
4596 SDValue Op = getRoot();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004597 Res = DAG.getNode(ISD::READCYCLECOUNTER, dl,
4598 DAG.getVTList(MVT::i64, MVT::Other),
4599 &Op, 1);
4600 setValue(&I, Res);
4601 DAG.setRoot(Res.getValue(1));
4602 if (DisableScheduling)
4603 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004604 return 0;
4605 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004606 case Intrinsic::bswap:
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004607 Res = DAG.getNode(ISD::BSWAP, dl,
4608 getValue(I.getOperand(1)).getValueType(),
4609 getValue(I.getOperand(1)));
4610 setValue(&I, Res);
4611 if (DisableScheduling)
4612 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004613 return 0;
4614 case Intrinsic::cttz: {
4615 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004616 EVT Ty = Arg.getValueType();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004617 Res = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
4618 setValue(&I, Res);
4619 if (DisableScheduling)
4620 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004621 return 0;
4622 }
4623 case Intrinsic::ctlz: {
4624 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004625 EVT Ty = Arg.getValueType();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004626 Res = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
4627 setValue(&I, Res);
4628 if (DisableScheduling)
4629 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004630 return 0;
4631 }
4632 case Intrinsic::ctpop: {
4633 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004634 EVT Ty = Arg.getValueType();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004635 Res = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
4636 setValue(&I, Res);
4637 if (DisableScheduling)
4638 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004639 return 0;
4640 }
4641 case Intrinsic::stacksave: {
4642 SDValue Op = getRoot();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004643 Res = DAG.getNode(ISD::STACKSAVE, dl,
4644 DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1);
4645 setValue(&I, Res);
4646 DAG.setRoot(Res.getValue(1));
4647 if (DisableScheduling)
4648 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004649 return 0;
4650 }
4651 case Intrinsic::stackrestore: {
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004652 Res = getValue(I.getOperand(1));
4653 Res = DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Res);
4654 DAG.setRoot(Res);
4655 if (DisableScheduling)
4656 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004657 return 0;
4658 }
Bill Wendling57344502008-11-18 11:01:33 +00004659 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004660 // Emit code into the DAG to store the stack guard onto the stack.
4661 MachineFunction &MF = DAG.getMachineFunction();
4662 MachineFrameInfo *MFI = MF.getFrameInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00004663 EVT PtrTy = TLI.getPointerTy();
Bill Wendlingb2a42982008-11-06 02:29:10 +00004664
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004665 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4666 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004667
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004668 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004669 MFI->setStackProtectorIndex(FI);
4670
4671 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4672
4673 // Store the stack protector onto the stack.
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004674 Res = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
4675 PseudoSourceValue::getFixedStack(FI),
4676 0, true);
4677 setValue(&I, Res);
4678 DAG.setRoot(Res);
4679 if (DisableScheduling)
4680 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Bill Wendlingb2a42982008-11-06 02:29:10 +00004681 return 0;
4682 }
Eric Christopher7b5e6172009-10-27 00:52:25 +00004683 case Intrinsic::objectsize: {
4684 // If we don't know by now, we're never going to know.
4685 ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(2));
4686
4687 assert(CI && "Non-constant type in __builtin_object_size?");
4688
Eric Christopher7e5d2ff2009-10-28 21:32:16 +00004689 SDValue Arg = getValue(I.getOperand(0));
4690 EVT Ty = Arg.getValueType();
4691
Eric Christopherd060b252009-12-23 02:51:48 +00004692 if (CI->getZExtValue() == 0)
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004693 Res = DAG.getConstant(-1ULL, Ty);
Eric Christopher7b5e6172009-10-27 00:52:25 +00004694 else
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004695 Res = DAG.getConstant(0, Ty);
4696
4697 setValue(&I, Res);
4698 if (DisableScheduling)
4699 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Eric Christopher7b5e6172009-10-27 00:52:25 +00004700 return 0;
4701 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004702 case Intrinsic::var_annotation:
4703 // Discard annotate attributes
4704 return 0;
4705
4706 case Intrinsic::init_trampoline: {
4707 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4708
4709 SDValue Ops[6];
4710 Ops[0] = getRoot();
4711 Ops[1] = getValue(I.getOperand(1));
4712 Ops[2] = getValue(I.getOperand(2));
4713 Ops[3] = getValue(I.getOperand(3));
4714 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4715 Ops[5] = DAG.getSrcValue(F);
4716
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004717 Res = DAG.getNode(ISD::TRAMPOLINE, dl,
4718 DAG.getVTList(TLI.getPointerTy(), MVT::Other),
4719 Ops, 6);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004720
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004721 setValue(&I, Res);
4722 DAG.setRoot(Res.getValue(1));
4723 if (DisableScheduling)
4724 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004725 return 0;
4726 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004727 case Intrinsic::gcroot:
4728 if (GFI) {
4729 Value *Alloca = I.getOperand(1);
4730 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004731
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004732 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4733 GFI->addStackRoot(FI->getIndex(), TypeMap);
4734 }
4735 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004736 case Intrinsic::gcread:
4737 case Intrinsic::gcwrite:
Torok Edwinc23197a2009-07-14 16:55:14 +00004738 llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004739 return 0;
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004740 case Intrinsic::flt_rounds:
4741 Res = DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32);
4742 setValue(&I, Res);
4743 if (DisableScheduling)
4744 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004745 return 0;
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004746 case Intrinsic::trap:
4747 Res = DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot());
4748 DAG.setRoot(Res);
4749 if (DisableScheduling)
4750 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004751 return 0;
Bill Wendlingef375462008-11-21 02:38:44 +00004752 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004753 return implVisitAluOverflow(I, ISD::UADDO);
4754 case Intrinsic::sadd_with_overflow:
4755 return implVisitAluOverflow(I, ISD::SADDO);
4756 case Intrinsic::usub_with_overflow:
4757 return implVisitAluOverflow(I, ISD::USUBO);
4758 case Intrinsic::ssub_with_overflow:
4759 return implVisitAluOverflow(I, ISD::SSUBO);
4760 case Intrinsic::umul_with_overflow:
4761 return implVisitAluOverflow(I, ISD::UMULO);
4762 case Intrinsic::smul_with_overflow:
4763 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004764
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004765 case Intrinsic::prefetch: {
4766 SDValue Ops[4];
4767 Ops[0] = getRoot();
4768 Ops[1] = getValue(I.getOperand(1));
4769 Ops[2] = getValue(I.getOperand(2));
4770 Ops[3] = getValue(I.getOperand(3));
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004771 Res = DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4);
4772 DAG.setRoot(Res);
4773 if (DisableScheduling)
4774 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004775 return 0;
4776 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004777
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004778 case Intrinsic::memory_barrier: {
4779 SDValue Ops[6];
4780 Ops[0] = getRoot();
4781 for (int x = 1; x < 6; ++x)
4782 Ops[x] = getValue(I.getOperand(x));
4783
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004784 Res = DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6);
4785 DAG.setRoot(Res);
4786 if (DisableScheduling)
4787 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004788 return 0;
4789 }
4790 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004791 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004792 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004793 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004794 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4795 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004796 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004797 getValue(I.getOperand(2)),
4798 getValue(I.getOperand(3)),
4799 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004800 setValue(&I, L);
4801 DAG.setRoot(L.getValue(1));
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004802 if (DisableScheduling)
4803 DAG.AssignOrdering(L.getNode(), SDNodeOrder);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004804 return 0;
4805 }
4806 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004807 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004808 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004809 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004810 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004811 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004812 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004813 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004814 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004815 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004816 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004817 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004818 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004819 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004820 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004821 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004822 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004823 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004824 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004825 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004826 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004827 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Duncan Sandsf07c9492009-11-10 09:08:09 +00004828
4829 case Intrinsic::invariant_start:
4830 case Intrinsic::lifetime_start:
4831 // Discard region information.
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004832 Res = DAG.getUNDEF(TLI.getPointerTy());
4833 setValue(&I, Res);
4834 if (DisableScheduling)
4835 DAG.AssignOrdering(Res.getNode(), SDNodeOrder);
Duncan Sandsf07c9492009-11-10 09:08:09 +00004836 return 0;
4837 case Intrinsic::invariant_end:
4838 case Intrinsic::lifetime_end:
4839 // Discard region information.
4840 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004841 }
4842}
4843
Dan Gohman98ca4f22009-08-05 01:29:28 +00004844/// Test if the given instruction is in a position to be optimized
4845/// with a tail-call. This roughly means that it's in a block with
4846/// a return and there's nothing that needs to be scheduled
4847/// between it and the return.
4848///
4849/// This function only tests target-independent requirements.
4850/// For target-dependent requirements, a target should override
4851/// TargetLowering::IsEligibleForTailCallOptimization.
4852///
4853static bool
Dan Gohman01205a82009-11-13 18:49:38 +00004854isInTailCallPosition(const Instruction *I, Attributes CalleeRetAttr,
Dan Gohman98ca4f22009-08-05 01:29:28 +00004855 const TargetLowering &TLI) {
4856 const BasicBlock *ExitBB = I->getParent();
4857 const TerminatorInst *Term = ExitBB->getTerminator();
4858 const ReturnInst *Ret = dyn_cast<ReturnInst>(Term);
4859 const Function *F = ExitBB->getParent();
4860
4861 // The block must end in a return statement or an unreachable.
4862 if (!Ret && !isa<UnreachableInst>(Term)) return false;
4863
4864 // If I will have a chain, make sure no other instruction that will have a
4865 // chain interposes between I and the return.
4866 if (I->mayHaveSideEffects() || I->mayReadFromMemory() ||
4867 !I->isSafeToSpeculativelyExecute())
4868 for (BasicBlock::const_iterator BBI = prior(prior(ExitBB->end())); ;
4869 --BBI) {
4870 if (&*BBI == I)
4871 break;
4872 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() ||
4873 !BBI->isSafeToSpeculativelyExecute())
4874 return false;
4875 }
4876
4877 // If the block ends with a void return or unreachable, it doesn't matter
4878 // what the call's return type is.
4879 if (!Ret || Ret->getNumOperands() == 0) return true;
4880
Dan Gohmaned9bab32009-11-14 02:06:30 +00004881 // If the return value is undef, it doesn't matter what the call's
4882 // return type is.
4883 if (isa<UndefValue>(Ret->getOperand(0))) return true;
4884
Dan Gohman98ca4f22009-08-05 01:29:28 +00004885 // Conservatively require the attributes of the call to match those of
Dan Gohman01205a82009-11-13 18:49:38 +00004886 // the return. Ignore noalias because it doesn't affect the call sequence.
4887 unsigned CallerRetAttr = F->getAttributes().getRetAttributes();
4888 if ((CalleeRetAttr ^ CallerRetAttr) & ~Attribute::NoAlias)
Dan Gohman98ca4f22009-08-05 01:29:28 +00004889 return false;
4890
4891 // Otherwise, make sure the unmodified return value of I is the return value.
4892 for (const Instruction *U = dyn_cast<Instruction>(Ret->getOperand(0)); ;
4893 U = dyn_cast<Instruction>(U->getOperand(0))) {
4894 if (!U)
4895 return false;
4896 if (!U->hasOneUse())
4897 return false;
4898 if (U == I)
4899 break;
4900 // Check for a truly no-op truncate.
4901 if (isa<TruncInst>(U) &&
4902 TLI.isTruncateFree(U->getOperand(0)->getType(), U->getType()))
4903 continue;
4904 // Check for a truly no-op bitcast.
4905 if (isa<BitCastInst>(U) &&
4906 (U->getOperand(0)->getType() == U->getType() ||
4907 (isa<PointerType>(U->getOperand(0)->getType()) &&
4908 isa<PointerType>(U->getType()))))
4909 continue;
4910 // Otherwise it's not a true no-op.
4911 return false;
4912 }
4913
4914 return true;
4915}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004916
Dan Gohman2048b852009-11-23 18:04:58 +00004917void SelectionDAGBuilder::LowerCallTo(CallSite CS, SDValue Callee,
4918 bool isTailCall,
4919 MachineBasicBlock *LandingPad) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004920 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4921 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004922 const Type *RetTy = FTy->getReturnType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004923 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4924 unsigned BeginLabel = 0, EndLabel = 0;
4925
4926 TargetLowering::ArgListTy Args;
4927 TargetLowering::ArgListEntry Entry;
4928 Args.reserve(CS.arg_size());
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004929
4930 // Check whether the function can return without sret-demotion.
4931 SmallVector<EVT, 4> OutVTs;
4932 SmallVector<ISD::ArgFlagsTy, 4> OutsFlags;
4933 SmallVector<uint64_t, 4> Offsets;
4934 getReturnInfo(RetTy, CS.getAttributes().getRetAttributes(),
Bill Wendlinge80ae832009-12-22 00:50:32 +00004935 OutVTs, OutsFlags, TLI, &Offsets);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004936
4937 bool CanLowerReturn = TLI.CanLowerReturn(CS.getCallingConv(),
4938 FTy->isVarArg(), OutVTs, OutsFlags, DAG);
4939
4940 SDValue DemoteStackSlot;
4941
4942 if (!CanLowerReturn) {
4943 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(
4944 FTy->getReturnType());
4945 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(
4946 FTy->getReturnType());
4947 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00004948 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align, false);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004949 const Type *StackSlotPtrType = PointerType::getUnqual(FTy->getReturnType());
4950
4951 DemoteStackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4952 Entry.Node = DemoteStackSlot;
4953 Entry.Ty = StackSlotPtrType;
4954 Entry.isSExt = false;
4955 Entry.isZExt = false;
4956 Entry.isInReg = false;
4957 Entry.isSRet = true;
4958 Entry.isNest = false;
4959 Entry.isByVal = false;
4960 Entry.Alignment = Align;
4961 Args.push_back(Entry);
4962 RetTy = Type::getVoidTy(FTy->getContext());
4963 }
4964
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004965 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00004966 i != e; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004967 SDValue ArgNode = getValue(*i);
4968 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4969
4970 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004971 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4972 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4973 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4974 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4975 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4976 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004977 Entry.Alignment = CS.getParamAlignment(attrInd);
4978 Args.push_back(Entry);
4979 }
4980
4981 if (LandingPad && MMI) {
4982 // Insert a label before the invoke call to mark the try range. This can be
4983 // used to detect deletion of the invoke via the MachineModuleInfo.
4984 BeginLabel = MMI->NextLabelID();
Jim Grosbach1b747ad2009-08-11 00:09:57 +00004985
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004986 // Both PendingLoads and PendingExports must be flushed here;
4987 // this call might not return.
4988 (void)getRoot();
Bill Wendling0d580132009-12-23 01:28:19 +00004989 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4990 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004991 }
4992
Dan Gohman98ca4f22009-08-05 01:29:28 +00004993 // Check if target-independent constraints permit a tail call here.
4994 // Target-dependent constraints are checked within TLI.LowerCallTo.
4995 if (isTailCall &&
4996 !isInTailCallPosition(CS.getInstruction(),
4997 CS.getAttributes().getRetAttributes(),
4998 TLI))
4999 isTailCall = false;
5000
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005001 std::pair<SDValue,SDValue> Result =
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005002 TLI.LowerCallTo(getRoot(), RetTy,
Devang Patel05988662008-09-25 21:00:45 +00005003 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00005004 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005005 CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(),
Dale Johannesen86098bd2008-09-26 19:31:26 +00005006 CS.getCallingConv(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00005007 isTailCall,
5008 !CS.getInstruction()->use_empty(),
Bill Wendling3ea3c242009-12-22 02:10:19 +00005009 Callee, Args, DAG, getCurDebugLoc(), SDNodeOrder);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005010 assert((isTailCall || Result.second.getNode()) &&
5011 "Non-null chain expected with non-tail call!");
5012 assert((Result.second.getNode() || !Result.first.getNode()) &&
5013 "Null value expected with tail call!");
Bill Wendlinge80ae832009-12-22 00:50:32 +00005014 if (Result.first.getNode()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005015 setValue(CS.getInstruction(), Result.first);
Bill Wendlinge80ae832009-12-22 00:50:32 +00005016 if (DisableScheduling)
5017 DAG.AssignOrdering(Result.first.getNode(), SDNodeOrder);
5018 } else if (!CanLowerReturn && Result.second.getNode()) {
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005019 // The instruction result is the result of loading from the
5020 // hidden sret parameter.
5021 SmallVector<EVT, 1> PVTs;
5022 const Type *PtrRetTy = PointerType::getUnqual(FTy->getReturnType());
5023
5024 ComputeValueVTs(TLI, PtrRetTy, PVTs);
5025 assert(PVTs.size() == 1 && "Pointers should fit in one register");
5026 EVT PtrVT = PVTs[0];
5027 unsigned NumValues = OutVTs.size();
5028 SmallVector<SDValue, 4> Values(NumValues);
5029 SmallVector<SDValue, 4> Chains(NumValues);
5030
5031 for (unsigned i = 0; i < NumValues; ++i) {
Bill Wendlinge80ae832009-12-22 00:50:32 +00005032 SDValue Add = DAG.getNode(ISD::ADD, getCurDebugLoc(), PtrVT,
5033 DemoteStackSlot,
5034 DAG.getConstant(Offsets[i], PtrVT));
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005035 SDValue L = DAG.getLoad(OutVTs[i], getCurDebugLoc(), Result.second,
Bill Wendlinge80ae832009-12-22 00:50:32 +00005036 Add, NULL, Offsets[i], false, 1);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005037 Values[i] = L;
5038 Chains[i] = L.getValue(1);
5039 }
Bill Wendlinge80ae832009-12-22 00:50:32 +00005040
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005041 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
5042 MVT::Other, &Chains[0], NumValues);
5043 PendingLoads.push_back(Chain);
5044
Bill Wendlinge80ae832009-12-22 00:50:32 +00005045 SDValue MV = DAG.getNode(ISD::MERGE_VALUES,
5046 getCurDebugLoc(),
5047 DAG.getVTList(&OutVTs[0], NumValues),
5048 &Values[0], NumValues);
5049 setValue(CS.getInstruction(), MV);
5050
5051 if (DisableScheduling) {
5052 DAG.AssignOrdering(Chain.getNode(), SDNodeOrder);
5053 DAG.AssignOrdering(MV.getNode(), SDNodeOrder);
5054 }
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005055 }
Bill Wendlinge80ae832009-12-22 00:50:32 +00005056
5057 // As a special case, a null chain means that a tail call has been emitted and
5058 // the DAG root is already updated.
5059 if (Result.second.getNode()) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00005060 DAG.setRoot(Result.second);
Bill Wendlinge80ae832009-12-22 00:50:32 +00005061 if (DisableScheduling)
5062 DAG.AssignOrdering(Result.second.getNode(), SDNodeOrder);
5063 } else {
Dan Gohman98ca4f22009-08-05 01:29:28 +00005064 HasTailCall = true;
Bill Wendlinge80ae832009-12-22 00:50:32 +00005065 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005066
5067 if (LandingPad && MMI) {
5068 // Insert a label at the end of the invoke call to mark the try range. This
5069 // can be used to detect deletion of the invoke via the MachineModuleInfo.
5070 EndLabel = MMI->NextLabelID();
Bill Wendling0d580132009-12-23 01:28:19 +00005071 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
5072 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005073
5074 // Inform MachineModuleInfo of range.
5075 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
5076 }
5077}
5078
Chris Lattner8047d9a2009-12-24 00:37:38 +00005079/// IsOnlyUsedInZeroEqualityComparison - Return true if it only matters that the
5080/// value is equal or not-equal to zero.
5081static bool IsOnlyUsedInZeroEqualityComparison(Value *V) {
5082 for (Value::use_iterator UI = V->use_begin(), E = V->use_end();
5083 UI != E; ++UI) {
5084 if (ICmpInst *IC = dyn_cast<ICmpInst>(*UI))
5085 if (IC->isEquality())
5086 if (Constant *C = dyn_cast<Constant>(IC->getOperand(1)))
5087 if (C->isNullValue())
5088 continue;
5089 // Unknown instruction.
5090 return false;
5091 }
5092 return true;
5093}
5094
Chris Lattner04b091a2009-12-24 01:07:17 +00005095static SDValue getMemCmpLoad(Value *PtrVal, MVT LoadVT, const Type *LoadTy,
Chris Lattner8047d9a2009-12-24 00:37:38 +00005096 SelectionDAGBuilder &Builder) {
Chris Lattner8047d9a2009-12-24 00:37:38 +00005097
5098 // Check to see if this load can be trivially constant folded, e.g. if the
5099 // input is from a string literal.
5100 if (Constant *LoadInput = dyn_cast<Constant>(PtrVal)) {
5101 // Cast pointer to the type we really want to load.
5102 LoadInput = ConstantExpr::getBitCast(LoadInput,
5103 PointerType::getUnqual(LoadTy));
5104
5105 if (Constant *LoadCst = ConstantFoldLoadFromConstPtr(LoadInput, Builder.TD))
5106 return Builder.getValue(LoadCst);
5107 }
5108
5109 // Otherwise, we have to emit the load. If the pointer is to unfoldable but
5110 // still constant memory, the input chain can be the entry node.
5111 SDValue Root;
5112 bool ConstantMemory = false;
5113
5114 // Do not serialize (non-volatile) loads of constant memory with anything.
5115 if (Builder.AA->pointsToConstantMemory(PtrVal)) {
5116 Root = Builder.DAG.getEntryNode();
5117 ConstantMemory = true;
5118 } else {
5119 // Do not serialize non-volatile loads against each other.
5120 Root = Builder.DAG.getRoot();
5121 }
5122
5123 SDValue Ptr = Builder.getValue(PtrVal);
5124 SDValue LoadVal = Builder.DAG.getLoad(LoadVT, Builder.getCurDebugLoc(), Root,
5125 Ptr, PtrVal /*SrcValue*/, 0/*SVOffset*/,
5126 false /*volatile*/, 1 /* align=1 */);
5127
5128 if (!ConstantMemory)
5129 Builder.PendingLoads.push_back(LoadVal.getValue(1));
5130 return LoadVal;
5131}
5132
5133
5134/// visitMemCmpCall - See if we can lower a call to memcmp in an optimized form.
5135/// If so, return true and lower it, otherwise return false and it will be
5136/// lowered like a normal call.
5137bool SelectionDAGBuilder::visitMemCmpCall(CallInst &I) {
5138 // Verify that the prototype makes sense. int memcmp(void*,void*,size_t)
5139 if (I.getNumOperands() != 4)
5140 return false;
5141
5142 Value *LHS = I.getOperand(1), *RHS = I.getOperand(2);
5143 if (!isa<PointerType>(LHS->getType()) || !isa<PointerType>(RHS->getType()) ||
5144 !isa<IntegerType>(I.getOperand(3)->getType()) ||
5145 !isa<IntegerType>(I.getType()))
5146 return false;
5147
5148 ConstantInt *Size = dyn_cast<ConstantInt>(I.getOperand(3));
5149
5150 // memcmp(S1,S2,2) != 0 -> (*(short*)LHS != *(short*)RHS) != 0
5151 // memcmp(S1,S2,4) != 0 -> (*(int*)LHS != *(int*)RHS) != 0
Chris Lattner04b091a2009-12-24 01:07:17 +00005152 if (Size && IsOnlyUsedInZeroEqualityComparison(&I)) {
5153 bool ActuallyDoIt = true;
5154 MVT LoadVT;
5155 const Type *LoadTy;
5156 switch (Size->getZExtValue()) {
5157 default:
5158 LoadVT = MVT::Other;
5159 LoadTy = 0;
5160 ActuallyDoIt = false;
5161 break;
5162 case 2:
5163 LoadVT = MVT::i16;
5164 LoadTy = Type::getInt16Ty(Size->getContext());
5165 break;
5166 case 4:
5167 LoadVT = MVT::i32;
5168 LoadTy = Type::getInt32Ty(Size->getContext());
5169 break;
5170 case 8:
5171 LoadVT = MVT::i64;
5172 LoadTy = Type::getInt64Ty(Size->getContext());
5173 break;
5174 /*
5175 case 16:
5176 LoadVT = MVT::v4i32;
5177 LoadTy = Type::getInt32Ty(Size->getContext());
5178 LoadTy = VectorType::get(LoadTy, 4);
5179 break;
5180 */
5181 }
Chris Lattner8047d9a2009-12-24 00:37:38 +00005182
Chris Lattner04b091a2009-12-24 01:07:17 +00005183 // This turns into unaligned loads. We only do this if the target natively
5184 // supports the MVT we'll be loading or if it is small enough (<= 4) that
5185 // we'll only produce a small number of byte loads.
5186
5187 // Require that we can find a legal MVT, and only do this if the target
5188 // supports unaligned loads of that type. Expanding into byte loads would
5189 // bloat the code.
5190 if (ActuallyDoIt && Size->getZExtValue() > 4) {
5191 // TODO: Handle 5 byte compare as 4-byte + 1 byte.
5192 // TODO: Handle 8 byte compare on x86-32 as two 32-bit loads.
5193 if (!TLI.isTypeLegal(LoadVT) ||!TLI.allowsUnalignedMemoryAccesses(LoadVT))
5194 ActuallyDoIt = false;
5195 }
5196
5197 if (ActuallyDoIt) {
5198 SDValue LHSVal = getMemCmpLoad(LHS, LoadVT, LoadTy, *this);
5199 SDValue RHSVal = getMemCmpLoad(RHS, LoadVT, LoadTy, *this);
5200
5201 SDValue Res = DAG.getSetCC(getCurDebugLoc(), MVT::i1, LHSVal, RHSVal,
5202 ISD::SETNE);
5203 EVT CallVT = TLI.getValueType(I.getType(), true);
5204 setValue(&I, DAG.getZExtOrTrunc(Res, getCurDebugLoc(), CallVT));
5205 return true;
5206 }
Chris Lattner8047d9a2009-12-24 00:37:38 +00005207 }
5208
5209
5210 return false;
5211}
5212
5213
Dan Gohman2048b852009-11-23 18:04:58 +00005214void SelectionDAGBuilder::visitCall(CallInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005215 const char *RenameFn = 0;
5216 if (Function *F = I.getCalledFunction()) {
5217 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00005218 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
5219 if (II) {
5220 if (unsigned IID = II->getIntrinsicID(F)) {
5221 RenameFn = visitIntrinsicCall(I, IID);
5222 if (!RenameFn)
5223 return;
5224 }
5225 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005226 if (unsigned IID = F->getIntrinsicID()) {
5227 RenameFn = visitIntrinsicCall(I, IID);
5228 if (!RenameFn)
5229 return;
5230 }
5231 }
5232
5233 // Check for well-known libc/libm calls. If the function is internal, it
5234 // can't be a library call.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00005235 if (!F->hasLocalLinkage() && F->hasName()) {
5236 StringRef Name = F->getName();
5237 if (Name == "copysign" || Name == "copysignf") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005238 if (I.getNumOperands() == 3 && // Basic sanity checks.
5239 I.getOperand(1)->getType()->isFloatingPoint() &&
5240 I.getType() == I.getOperand(1)->getType() &&
5241 I.getType() == I.getOperand(2)->getType()) {
5242 SDValue LHS = getValue(I.getOperand(1));
5243 SDValue RHS = getValue(I.getOperand(2));
Bill Wendling0d580132009-12-23 01:28:19 +00005244 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
5245 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005246 return;
5247 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00005248 } else if (Name == "fabs" || Name == "fabsf" || Name == "fabsl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005249 if (I.getNumOperands() == 2 && // Basic sanity checks.
5250 I.getOperand(1)->getType()->isFloatingPoint() &&
5251 I.getType() == I.getOperand(1)->getType()) {
5252 SDValue Tmp = getValue(I.getOperand(1));
Bill Wendling0d580132009-12-23 01:28:19 +00005253 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
5254 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005255 return;
5256 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00005257 } else if (Name == "sin" || Name == "sinf" || Name == "sinl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005258 if (I.getNumOperands() == 2 && // Basic sanity checks.
5259 I.getOperand(1)->getType()->isFloatingPoint() &&
Dale Johannesena45bfd32009-09-25 18:00:35 +00005260 I.getType() == I.getOperand(1)->getType() &&
5261 I.onlyReadsMemory()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005262 SDValue Tmp = getValue(I.getOperand(1));
Bill Wendling0d580132009-12-23 01:28:19 +00005263 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
5264 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005265 return;
5266 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00005267 } else if (Name == "cos" || Name == "cosf" || Name == "cosl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005268 if (I.getNumOperands() == 2 && // Basic sanity checks.
5269 I.getOperand(1)->getType()->isFloatingPoint() &&
Dale Johannesena45bfd32009-09-25 18:00:35 +00005270 I.getType() == I.getOperand(1)->getType() &&
5271 I.onlyReadsMemory()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005272 SDValue Tmp = getValue(I.getOperand(1));
Bill Wendling0d580132009-12-23 01:28:19 +00005273 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
5274 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005275 return;
5276 }
Dale Johannesen52fb79b2009-09-25 17:23:22 +00005277 } else if (Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl") {
5278 if (I.getNumOperands() == 2 && // Basic sanity checks.
5279 I.getOperand(1)->getType()->isFloatingPoint() &&
Dale Johannesena45bfd32009-09-25 18:00:35 +00005280 I.getType() == I.getOperand(1)->getType() &&
5281 I.onlyReadsMemory()) {
Dale Johannesen52fb79b2009-09-25 17:23:22 +00005282 SDValue Tmp = getValue(I.getOperand(1));
Bill Wendling0d580132009-12-23 01:28:19 +00005283 setValue(&I, DAG.getNode(ISD::FSQRT, getCurDebugLoc(),
5284 Tmp.getValueType(), Tmp));
Dale Johannesen52fb79b2009-09-25 17:23:22 +00005285 return;
5286 }
Chris Lattner8047d9a2009-12-24 00:37:38 +00005287 } else if (Name == "memcmp") {
5288 if (visitMemCmpCall(I))
5289 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005290 }
5291 }
5292 } else if (isa<InlineAsm>(I.getOperand(0))) {
5293 visitInlineAsm(&I);
5294 return;
5295 }
5296
5297 SDValue Callee;
5298 if (!RenameFn)
5299 Callee = getValue(I.getOperand(0));
5300 else
Bill Wendling056292f2008-09-16 21:48:12 +00005301 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005302
Bill Wendling0d580132009-12-23 01:28:19 +00005303 // Check if we can potentially perform a tail call. More detailed checking is
5304 // be done within LowerCallTo, after more information about the call is known.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005305 bool isTailCall = PerformTailCallOpt && I.isTailCall();
5306
5307 LowerCallTo(&I, Callee, isTailCall);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005308}
5309
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005310/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005311/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005312/// Chain/Flag as the input and updates them for the output Chain/Flag.
5313/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005314SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Bill Wendlingec72e322009-12-22 01:11:43 +00005315 unsigned Order, SDValue &Chain,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005316 SDValue *Flag) const {
5317 // Assemble the legal parts into the final values.
5318 SmallVector<SDValue, 4> Values(ValueVTs.size());
5319 SmallVector<SDValue, 8> Parts;
5320 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
5321 // Copy the legal parts from the registers.
Owen Andersone50ed302009-08-10 22:56:29 +00005322 EVT ValueVT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00005323 unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +00005324 EVT RegisterVT = RegVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005325
5326 Parts.resize(NumRegs);
5327 for (unsigned i = 0; i != NumRegs; ++i) {
5328 SDValue P;
Bill Wendlingec72e322009-12-22 01:11:43 +00005329 if (Flag == 0) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005330 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Bill Wendlingec72e322009-12-22 01:11:43 +00005331 } else {
Dale Johannesena04b7572009-02-03 23:04:43 +00005332 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005333 *Flag = P.getValue(2);
5334 }
Bill Wendlingec72e322009-12-22 01:11:43 +00005335
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005336 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005337
Bill Wendlingec72e322009-12-22 01:11:43 +00005338 if (DisableScheduling)
5339 DAG.AssignOrdering(P.getNode(), Order);
5340
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005341 // If the source register was virtual and if we know something about it,
5342 // add an assert node.
5343 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
5344 RegisterVT.isInteger() && !RegisterVT.isVector()) {
5345 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
5346 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5347 if (FLI.LiveOutRegInfo.size() > SlotNo) {
5348 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005349
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005350 unsigned RegSize = RegisterVT.getSizeInBits();
5351 unsigned NumSignBits = LOI.NumSignBits;
5352 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005353
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005354 // FIXME: We capture more information than the dag can represent. For
5355 // now, just use the tightest assertzext/assertsext possible.
5356 bool isSExt = true;
Owen Anderson825b72b2009-08-11 20:47:22 +00005357 EVT FromVT(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005358 if (NumSignBits == RegSize)
Owen Anderson825b72b2009-08-11 20:47:22 +00005359 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005360 else if (NumZeroBits >= RegSize-1)
Owen Anderson825b72b2009-08-11 20:47:22 +00005361 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005362 else if (NumSignBits > RegSize-8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005363 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
Dan Gohman07c26ee2009-03-31 01:38:29 +00005364 else if (NumZeroBits >= RegSize-8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005365 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005366 else if (NumSignBits > RegSize-16)
Owen Anderson825b72b2009-08-11 20:47:22 +00005367 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohman07c26ee2009-03-31 01:38:29 +00005368 else if (NumZeroBits >= RegSize-16)
Owen Anderson825b72b2009-08-11 20:47:22 +00005369 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005370 else if (NumSignBits > RegSize-32)
Owen Anderson825b72b2009-08-11 20:47:22 +00005371 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohman07c26ee2009-03-31 01:38:29 +00005372 else if (NumZeroBits >= RegSize-32)
Owen Anderson825b72b2009-08-11 20:47:22 +00005373 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005374
Owen Anderson825b72b2009-08-11 20:47:22 +00005375 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005376 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005377 RegisterVT, P, DAG.getValueType(FromVT));
5378
Bill Wendlingec72e322009-12-22 01:11:43 +00005379 if (DisableScheduling)
5380 DAG.AssignOrdering(P.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005381 }
5382 }
5383 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005384
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005385 Parts[i] = P;
5386 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005387
Bill Wendling3ea3c242009-12-22 02:10:19 +00005388 Values[Value] = getCopyFromParts(DAG, dl, Order, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005389 NumRegs, RegisterVT, ValueVT);
Bill Wendlingec72e322009-12-22 01:11:43 +00005390 if (DisableScheduling)
5391 DAG.AssignOrdering(Values[Value].getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005392 Part += NumRegs;
5393 Parts.clear();
5394 }
5395
Bill Wendlingec72e322009-12-22 01:11:43 +00005396 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl,
5397 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
5398 &Values[0], ValueVTs.size());
5399 if (DisableScheduling)
5400 DAG.AssignOrdering(Res.getNode(), Order);
5401 return Res;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005402}
5403
5404/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005405/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005406/// Chain/Flag as the input and updates them for the output Chain/Flag.
5407/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005408void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Bill Wendlingec72e322009-12-22 01:11:43 +00005409 unsigned Order, SDValue &Chain,
5410 SDValue *Flag) const {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005411 // Get the list of the values's legal parts.
5412 unsigned NumRegs = Regs.size();
5413 SmallVector<SDValue, 8> Parts(NumRegs);
5414 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005415 EVT ValueVT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00005416 unsigned NumParts = TLI->getNumRegisters(*DAG.getContext(), ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +00005417 EVT RegisterVT = RegVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005418
Bill Wendling3ea3c242009-12-22 02:10:19 +00005419 getCopyToParts(DAG, dl, Order,
5420 Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005421 &Parts[Part], NumParts, RegisterVT);
5422 Part += NumParts;
5423 }
5424
5425 // Copy the parts into the registers.
5426 SmallVector<SDValue, 8> Chains(NumRegs);
5427 for (unsigned i = 0; i != NumRegs; ++i) {
5428 SDValue Part;
Bill Wendlingec72e322009-12-22 01:11:43 +00005429 if (Flag == 0) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005430 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Bill Wendlingec72e322009-12-22 01:11:43 +00005431 } else {
Dale Johannesena04b7572009-02-03 23:04:43 +00005432 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005433 *Flag = Part.getValue(1);
5434 }
Bill Wendlingec72e322009-12-22 01:11:43 +00005435
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005436 Chains[i] = Part.getValue(0);
Bill Wendlingec72e322009-12-22 01:11:43 +00005437
5438 if (DisableScheduling)
5439 DAG.AssignOrdering(Part.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005440 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005441
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005442 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005443 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005444 // flagged to it. That is the CopyToReg nodes and the user are considered
5445 // a single scheduling unit. If we create a TokenFactor and return it as
5446 // chain, then the TokenFactor is both a predecessor (operand) of the
5447 // user as well as a successor (the TF operands are flagged to the user).
5448 // c1, f1 = CopyToReg
5449 // c2, f2 = CopyToReg
5450 // c3 = TokenFactor c1, c2
5451 // ...
5452 // = op c3, ..., f2
5453 Chain = Chains[NumRegs-1];
5454 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005455 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Bill Wendlingec72e322009-12-22 01:11:43 +00005456
5457 if (DisableScheduling)
5458 DAG.AssignOrdering(Chain.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005459}
5460
5461/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005462/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005463/// values added into it.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005464void RegsForValue::AddInlineAsmOperands(unsigned Code,
5465 bool HasMatching,unsigned MatchingIdx,
Bill Wendling651ad132009-12-22 01:25:10 +00005466 SelectionDAG &DAG, unsigned Order,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005467 std::vector<SDValue> &Ops) const {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005468 assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!");
5469 unsigned Flag = Code | (Regs.size() << 3);
5470 if (HasMatching)
5471 Flag |= 0x80000000 | (MatchingIdx << 16);
Dale Johannesen99499332009-12-23 07:32:51 +00005472 SDValue Res = DAG.getTargetConstant(Flag, MVT::i32);
Bill Wendling651ad132009-12-22 01:25:10 +00005473 Ops.push_back(Res);
5474
5475 if (DisableScheduling)
5476 DAG.AssignOrdering(Res.getNode(), Order);
5477
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005478 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Anderson23b9b192009-08-12 00:36:31 +00005479 unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVTs[Value]);
Owen Andersone50ed302009-08-10 22:56:29 +00005480 EVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00005481 for (unsigned i = 0; i != NumRegs; ++i) {
5482 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Bill Wendling651ad132009-12-22 01:25:10 +00005483 SDValue Res = DAG.getRegister(Regs[Reg++], RegisterVT);
5484 Ops.push_back(Res);
5485
5486 if (DisableScheduling)
5487 DAG.AssignOrdering(Res.getNode(), Order);
Chris Lattner58f15c42008-10-17 16:21:11 +00005488 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005489 }
5490}
5491
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005492/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005493/// i.e. it isn't a stack pointer or some other special register, return the
5494/// register class for the register. Otherwise, return null.
5495static const TargetRegisterClass *
5496isAllocatableRegister(unsigned Reg, MachineFunction &MF,
5497 const TargetLowering &TLI,
5498 const TargetRegisterInfo *TRI) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005499 EVT FoundVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005500 const TargetRegisterClass *FoundRC = 0;
5501 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
5502 E = TRI->regclass_end(); RCI != E; ++RCI) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005503 EVT ThisVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005504
5505 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005506 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005507 // can't use it. For example, 64-bit reg classes on 32-bit targets.
5508 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
5509 I != E; ++I) {
5510 if (TLI.isTypeLegal(*I)) {
5511 // If we have already found this register in a different register class,
5512 // choose the one with the largest VT specified. For example, on
5513 // PowerPC, we favor f64 register classes over f32.
Owen Anderson825b72b2009-08-11 20:47:22 +00005514 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005515 ThisVT = *I;
5516 break;
5517 }
5518 }
5519 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005520
Owen Anderson825b72b2009-08-11 20:47:22 +00005521 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005522
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005523 // NOTE: This isn't ideal. In particular, this might allocate the
5524 // frame pointer in functions that need it (due to them not being taken
5525 // out of allocation, because a variable sized allocation hasn't been seen
5526 // yet). This is a slight code pessimization, but should still work.
5527 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
5528 E = RC->allocation_order_end(MF); I != E; ++I)
5529 if (*I == Reg) {
5530 // We found a matching register class. Keep looking at others in case
5531 // we find one with larger registers that this physreg is also in.
5532 FoundRC = RC;
5533 FoundVT = ThisVT;
5534 break;
5535 }
5536 }
5537 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005538}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005539
5540
5541namespace llvm {
5542/// AsmOperandInfo - This contains information for each constraint that we are
5543/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00005544class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00005545 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00005546public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005547 /// CallOperand - If this is the result output operand or a clobber
5548 /// this is null, otherwise it is the incoming operand to the CallInst.
5549 /// This gets modified as the asm is processed.
5550 SDValue CallOperand;
5551
5552 /// AssignedRegs - If this is a register or register class operand, this
5553 /// contains the set of register corresponding to the operand.
5554 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005555
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005556 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
5557 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
5558 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005559
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005560 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
5561 /// busy in OutputRegs/InputRegs.
5562 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005563 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005564 std::set<unsigned> &InputRegs,
5565 const TargetRegisterInfo &TRI) const {
5566 if (isOutReg) {
5567 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
5568 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
5569 }
5570 if (isInReg) {
5571 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
5572 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
5573 }
5574 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005575
Owen Andersone50ed302009-08-10 22:56:29 +00005576 /// getCallOperandValEVT - Return the EVT of the Value* that this operand
Chris Lattner81249c92008-10-17 17:05:25 +00005577 /// corresponds to. If there is no Value* for this operand, it returns
Owen Anderson825b72b2009-08-11 20:47:22 +00005578 /// MVT::Other.
Owen Anderson1d0be152009-08-13 21:58:54 +00005579 EVT getCallOperandValEVT(LLVMContext &Context,
5580 const TargetLowering &TLI,
Chris Lattner81249c92008-10-17 17:05:25 +00005581 const TargetData *TD) const {
Owen Anderson825b72b2009-08-11 20:47:22 +00005582 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005583
Chris Lattner81249c92008-10-17 17:05:25 +00005584 if (isa<BasicBlock>(CallOperandVal))
5585 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005586
Chris Lattner81249c92008-10-17 17:05:25 +00005587 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005588
Chris Lattner81249c92008-10-17 17:05:25 +00005589 // If this is an indirect operand, the operand is a pointer to the
5590 // accessed type.
Bob Wilsone261b0c2009-12-22 18:34:19 +00005591 if (isIndirect) {
5592 const llvm::PointerType *PtrTy = dyn_cast<PointerType>(OpTy);
5593 if (!PtrTy)
5594 llvm_report_error("Indirect operand for inline asm not a pointer!");
5595 OpTy = PtrTy->getElementType();
5596 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005597
Chris Lattner81249c92008-10-17 17:05:25 +00005598 // If OpTy is not a single value, it may be a struct/union that we
5599 // can tile with integers.
5600 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
5601 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
5602 switch (BitSize) {
5603 default: break;
5604 case 1:
5605 case 8:
5606 case 16:
5607 case 32:
5608 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00005609 case 128:
Owen Anderson1d0be152009-08-13 21:58:54 +00005610 OpTy = IntegerType::get(Context, BitSize);
Chris Lattner81249c92008-10-17 17:05:25 +00005611 break;
5612 }
5613 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005614
Chris Lattner81249c92008-10-17 17:05:25 +00005615 return TLI.getValueType(OpTy, true);
5616 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005617
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005618private:
5619 /// MarkRegAndAliases - Mark the specified register and all aliases in the
5620 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005621 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005622 const TargetRegisterInfo &TRI) {
5623 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
5624 Regs.insert(Reg);
5625 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
5626 for (; *Aliases; ++Aliases)
5627 Regs.insert(*Aliases);
5628 }
5629};
5630} // end llvm namespace.
5631
5632
5633/// GetRegistersForValue - Assign registers (virtual or physical) for the
5634/// specified operand. We prefer to assign virtual registers, to allow the
Bob Wilson266d9452009-12-17 05:07:36 +00005635/// register allocator to handle the assignment process. However, if the asm
5636/// uses features that we can't model on machineinstrs, we have SDISel do the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005637/// allocation. This produces generally horrible, but correct, code.
5638///
5639/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005640/// Input and OutputRegs are the set of already allocated physical registers.
5641///
Dan Gohman2048b852009-11-23 18:04:58 +00005642void SelectionDAGBuilder::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005643GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005644 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005645 std::set<unsigned> &InputRegs) {
Dan Gohman0d24bfb2009-08-15 02:06:22 +00005646 LLVMContext &Context = FuncInfo.Fn->getContext();
Owen Anderson23b9b192009-08-12 00:36:31 +00005647
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005648 // Compute whether this value requires an input register, an output register,
5649 // or both.
5650 bool isOutReg = false;
5651 bool isInReg = false;
5652 switch (OpInfo.Type) {
5653 case InlineAsm::isOutput:
5654 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005655
5656 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005657 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00005658 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005659 break;
5660 case InlineAsm::isInput:
5661 isInReg = true;
5662 isOutReg = false;
5663 break;
5664 case InlineAsm::isClobber:
5665 isOutReg = true;
5666 isInReg = true;
5667 break;
5668 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005669
5670
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005671 MachineFunction &MF = DAG.getMachineFunction();
5672 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005673
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005674 // If this is a constraint for a single physreg, or a constraint for a
5675 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005676 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005677 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
5678 OpInfo.ConstraintVT);
5679
5680 unsigned NumRegs = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00005681 if (OpInfo.ConstraintVT != MVT::Other) {
Chris Lattner01426e12008-10-21 00:45:36 +00005682 // If this is a FP input in an integer register (or visa versa) insert a bit
5683 // cast of the input value. More generally, handle any case where the input
5684 // value disagrees with the register class we plan to stick this in.
5685 if (OpInfo.Type == InlineAsm::isInput &&
5686 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
Owen Andersone50ed302009-08-10 22:56:29 +00005687 // Try to convert to the first EVT that the reg class contains. If the
Chris Lattner01426e12008-10-21 00:45:36 +00005688 // types are identical size, use a bitcast to convert (e.g. two differing
5689 // vector types).
Owen Andersone50ed302009-08-10 22:56:29 +00005690 EVT RegVT = *PhysReg.second->vt_begin();
Chris Lattner01426e12008-10-21 00:45:36 +00005691 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005692 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005693 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00005694 OpInfo.ConstraintVT = RegVT;
5695 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
5696 // If the input is a FP value and we want it in FP registers, do a
5697 // bitcast to the corresponding integer type. This turns an f64 value
5698 // into i64, which can be passed with two i32 values on a 32-bit
5699 // machine.
Owen Anderson23b9b192009-08-12 00:36:31 +00005700 RegVT = EVT::getIntegerVT(Context,
5701 OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005702 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005703 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00005704 OpInfo.ConstraintVT = RegVT;
5705 }
Bill Wendling651ad132009-12-22 01:25:10 +00005706
5707 if (DisableScheduling)
5708 DAG.AssignOrdering(OpInfo.CallOperand.getNode(), SDNodeOrder);
Chris Lattner01426e12008-10-21 00:45:36 +00005709 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005710
Owen Anderson23b9b192009-08-12 00:36:31 +00005711 NumRegs = TLI.getNumRegisters(Context, OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00005712 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005713
Owen Andersone50ed302009-08-10 22:56:29 +00005714 EVT RegVT;
5715 EVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005716
5717 // If this is a constraint for a specific physical register, like {r17},
5718 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00005719 if (unsigned AssignedReg = PhysReg.first) {
5720 const TargetRegisterClass *RC = PhysReg.second;
Owen Anderson825b72b2009-08-11 20:47:22 +00005721 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00005722 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005723
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005724 // Get the actual register value type. This is important, because the user
5725 // may have asked for (e.g.) the AX register in i32 type. We need to
5726 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00005727 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005728
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005729 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00005730 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005731
5732 // If this is an expanded reference, add the rest of the regs to Regs.
5733 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00005734 TargetRegisterClass::iterator I = RC->begin();
5735 for (; *I != AssignedReg; ++I)
5736 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005737
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005738 // Already added the first reg.
5739 --NumRegs; ++I;
5740 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00005741 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005742 Regs.push_back(*I);
5743 }
5744 }
Bill Wendling651ad132009-12-22 01:25:10 +00005745
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005746 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
5747 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
5748 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5749 return;
5750 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005751
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005752 // Otherwise, if this was a reference to an LLVM register class, create vregs
5753 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00005754 if (const TargetRegisterClass *RC = PhysReg.second) {
5755 RegVT = *RC->vt_begin();
Owen Anderson825b72b2009-08-11 20:47:22 +00005756 if (OpInfo.ConstraintVT == MVT::Other)
Evan Chengfb112882009-03-23 08:01:15 +00005757 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005758
Evan Chengfb112882009-03-23 08:01:15 +00005759 // Create the appropriate number of virtual registers.
5760 MachineRegisterInfo &RegInfo = MF.getRegInfo();
5761 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00005762 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005763
Evan Chengfb112882009-03-23 08:01:15 +00005764 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
5765 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005766 }
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005767
5768 // This is a reference to a register class that doesn't directly correspond
5769 // to an LLVM register class. Allocate NumRegs consecutive, available,
5770 // registers from the class.
5771 std::vector<unsigned> RegClassRegs
5772 = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
5773 OpInfo.ConstraintVT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005774
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005775 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
5776 unsigned NumAllocated = 0;
5777 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
5778 unsigned Reg = RegClassRegs[i];
5779 // See if this register is available.
5780 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
5781 (isInReg && InputRegs.count(Reg))) { // Already used.
5782 // Make sure we find consecutive registers.
5783 NumAllocated = 0;
5784 continue;
5785 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005786
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005787 // Check to see if this register is allocatable (i.e. don't give out the
5788 // stack pointer).
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005789 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI);
5790 if (!RC) { // Couldn't allocate this register.
5791 // Reset NumAllocated to make sure we return consecutive registers.
5792 NumAllocated = 0;
5793 continue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005794 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005795
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005796 // Okay, this register is good, we can use it.
5797 ++NumAllocated;
5798
5799 // If we allocated enough consecutive registers, succeed.
5800 if (NumAllocated == NumRegs) {
5801 unsigned RegStart = (i-NumAllocated)+1;
5802 unsigned RegEnd = i+1;
5803 // Mark all of the allocated registers used.
5804 for (unsigned i = RegStart; i != RegEnd; ++i)
5805 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005806
5807 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005808 OpInfo.ConstraintVT);
5809 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5810 return;
5811 }
5812 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005813
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005814 // Otherwise, we couldn't allocate enough registers for this.
5815}
5816
Evan Chengda43bcf2008-09-24 00:05:32 +00005817/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
5818/// processed uses a memory 'm' constraint.
5819static bool
5820hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00005821 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00005822 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
5823 InlineAsm::ConstraintInfo &CI = CInfos[i];
5824 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
5825 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
5826 if (CType == TargetLowering::C_Memory)
5827 return true;
5828 }
Chris Lattner6c147292009-04-30 00:48:50 +00005829
5830 // Indirect operand accesses access memory.
5831 if (CI.isIndirect)
5832 return true;
Evan Chengda43bcf2008-09-24 00:05:32 +00005833 }
5834
5835 return false;
5836}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005837
5838/// visitInlineAsm - Handle a call to an InlineAsm object.
5839///
Dan Gohman2048b852009-11-23 18:04:58 +00005840void SelectionDAGBuilder::visitInlineAsm(CallSite CS) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005841 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
5842
5843 /// ConstraintOperands - Information about all of the constraints.
5844 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005845
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005846 std::set<unsigned> OutputRegs, InputRegs;
5847
5848 // Do a prepass over the constraints, canonicalizing them, and building up the
5849 // ConstraintOperands list.
5850 std::vector<InlineAsm::ConstraintInfo>
5851 ConstraintInfos = IA->ParseConstraints();
5852
Evan Chengda43bcf2008-09-24 00:05:32 +00005853 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Chris Lattner6c147292009-04-30 00:48:50 +00005854
5855 SDValue Chain, Flag;
5856
5857 // We won't need to flush pending loads if this asm doesn't touch
5858 // memory and is nonvolatile.
5859 if (hasMemory || IA->hasSideEffects())
Dale Johannesen97d14fc2009-04-18 00:09:40 +00005860 Chain = getRoot();
Chris Lattner6c147292009-04-30 00:48:50 +00005861 else
5862 Chain = DAG.getRoot();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005863
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005864 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5865 unsigned ResNo = 0; // ResNo - The result number of the next output.
5866 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5867 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5868 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005869
Owen Anderson825b72b2009-08-11 20:47:22 +00005870 EVT OpVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005871
5872 // Compute the value type for each operand.
5873 switch (OpInfo.Type) {
5874 case InlineAsm::isOutput:
5875 // Indirect outputs just consume an argument.
5876 if (OpInfo.isIndirect) {
5877 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5878 break;
5879 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005880
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005881 // The return value of the call is this value. As such, there is no
5882 // corresponding argument.
Owen Anderson1d0be152009-08-13 21:58:54 +00005883 assert(CS.getType() != Type::getVoidTy(*DAG.getContext()) &&
5884 "Bad inline asm!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005885 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5886 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5887 } else {
5888 assert(ResNo == 0 && "Asm only has one result!");
5889 OpVT = TLI.getValueType(CS.getType());
5890 }
5891 ++ResNo;
5892 break;
5893 case InlineAsm::isInput:
5894 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5895 break;
5896 case InlineAsm::isClobber:
5897 // Nothing to do.
5898 break;
5899 }
5900
5901 // If this is an input or an indirect output, process the call argument.
5902 // BasicBlocks are labels, currently appearing only in asm's.
5903 if (OpInfo.CallOperandVal) {
Dale Johannesen5339c552009-07-20 23:27:39 +00005904 // Strip bitcasts, if any. This mostly comes up for functions.
Dale Johannesen76711242009-08-06 22:45:51 +00005905 OpInfo.CallOperandVal = OpInfo.CallOperandVal->stripPointerCasts();
5906
Chris Lattner81249c92008-10-17 17:05:25 +00005907 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005908 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005909 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005910 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005911 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005912
Owen Anderson1d0be152009-08-13 21:58:54 +00005913 OpVT = OpInfo.getCallOperandValEVT(*DAG.getContext(), TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005914 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005915
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005916 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005917 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005918
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005919 // Second pass over the constraints: compute which constraint option to use
5920 // and assign registers to constraints that want a specific physreg.
5921 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5922 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005923
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005924 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005925 // matching input. If their types mismatch, e.g. one is an integer, the
5926 // other is floating point, or their sizes are different, flag it as an
5927 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005928 if (OpInfo.hasMatchingInput()) {
5929 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5930 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005931 if ((OpInfo.ConstraintVT.isInteger() !=
5932 Input.ConstraintVT.isInteger()) ||
5933 (OpInfo.ConstraintVT.getSizeInBits() !=
5934 Input.ConstraintVT.getSizeInBits())) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005935 llvm_report_error("Unsupported asm: input constraint"
Torok Edwin7d696d82009-07-11 13:10:19 +00005936 " with a matching output constraint of incompatible"
5937 " type!");
Evan Cheng09dc9c02008-12-16 18:21:39 +00005938 }
5939 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005940 }
5941 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005942
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005943 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005944 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005945
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005946 // If this is a memory input, and if the operand is not indirect, do what we
5947 // need to to provide an address for the memory input.
5948 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5949 !OpInfo.isIndirect) {
5950 assert(OpInfo.Type == InlineAsm::isInput &&
5951 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005952
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005953 // Memory operands really want the address of the value. If we don't have
5954 // an indirect input, put it in the constpool if we can, otherwise spill
5955 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005956
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005957 // If the operand is a float, integer, or vector constant, spill to a
5958 // constant pool entry to get its address.
5959 Value *OpVal = OpInfo.CallOperandVal;
5960 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5961 isa<ConstantVector>(OpVal)) {
5962 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5963 TLI.getPointerTy());
5964 } else {
5965 // Otherwise, create a stack slot and emit a store to it before the
5966 // asm.
5967 const Type *Ty = OpVal->getType();
Duncan Sands777d2302009-05-09 07:06:46 +00005968 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005969 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5970 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00005971 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align, false);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005972 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005973 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005974 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005975 OpInfo.CallOperand = StackSlot;
5976 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005977
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005978 // There is no longer a Value* corresponding to this operand.
5979 OpInfo.CallOperandVal = 0;
Bill Wendling651ad132009-12-22 01:25:10 +00005980
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005981 // It is now an indirect operand.
5982 OpInfo.isIndirect = true;
5983 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005984
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005985 // If this constraint is for a specific register, allocate it before
5986 // anything else.
5987 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005988 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005989 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005990
Bill Wendling651ad132009-12-22 01:25:10 +00005991 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005992
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005993 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005994 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005995 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5996 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005997
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005998 // C_Register operands have already been allocated, Other/Memory don't need
5999 // to be.
6000 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00006001 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006002 }
6003
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006004 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
6005 std::vector<SDValue> AsmNodeOperands;
6006 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
6007 AsmNodeOperands.push_back(
Owen Anderson825b72b2009-08-11 20:47:22 +00006008 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006009
6010
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006011 // Loop over all of the inputs, copying the operand values into the
6012 // appropriate registers and processing the output regs.
6013 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006014
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006015 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
6016 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006017
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006018 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
6019 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
6020
6021 switch (OpInfo.Type) {
6022 case InlineAsm::isOutput: {
6023 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
6024 OpInfo.ConstraintType != TargetLowering::C_Register) {
6025 // Memory output, or 'other' output (e.g. 'X' constraint).
6026 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
6027
6028 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00006029 unsigned ResOpType = 4/*MEM*/ | (1<<3);
6030 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006031 TLI.getPointerTy()));
6032 AsmNodeOperands.push_back(OpInfo.CallOperand);
6033 break;
6034 }
6035
6036 // Otherwise, this is a register or register class output.
6037
6038 // Copy the output from the appropriate register. Find a register that
6039 // we can use.
6040 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00006041 llvm_report_error("Couldn't allocate output reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00006042 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006043 }
6044
6045 // If this is an indirect operand, store through the pointer after the
6046 // asm.
6047 if (OpInfo.isIndirect) {
6048 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
6049 OpInfo.CallOperandVal));
6050 } else {
6051 // This is the result value of the call.
Owen Anderson1d0be152009-08-13 21:58:54 +00006052 assert(CS.getType() != Type::getVoidTy(*DAG.getContext()) &&
6053 "Bad inline asm!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006054 // Concatenate this output onto the outputs list.
6055 RetValRegs.append(OpInfo.AssignedRegs);
6056 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006057
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006058 // Add information to the INLINEASM node to know that this register is
6059 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00006060 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
6061 6 /* EARLYCLOBBER REGDEF */ :
6062 2 /* REGDEF */ ,
Evan Chengfb112882009-03-23 08:01:15 +00006063 false,
6064 0,
Bill Wendling651ad132009-12-22 01:25:10 +00006065 DAG, SDNodeOrder,
6066 AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006067 break;
6068 }
6069 case InlineAsm::isInput: {
6070 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006071
Chris Lattner6bdcda32008-10-17 16:47:46 +00006072 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006073 // If this is required to match an output register we have already set,
6074 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00006075 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006076
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006077 // Scan until we find the definition we already emitted of this operand.
6078 // When we find it, create a RegsForValue operand.
6079 unsigned CurOp = 2; // The first operand.
6080 for (; OperandNo; --OperandNo) {
6081 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00006082 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006083 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00006084 assert(((OpFlag & 7) == 2 /*REGDEF*/ ||
6085 (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
6086 (OpFlag & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006087 "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00006088 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006089 }
6090
Evan Cheng697cbbf2009-03-20 18:03:34 +00006091 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006092 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00006093 if ((OpFlag & 7) == 2 /*REGDEF*/
6094 || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) {
6095 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Dan Gohman15480bd2009-06-15 22:32:41 +00006096 if (OpInfo.isIndirect) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00006097 llvm_report_error("Don't know how to handle tied indirect "
Torok Edwin7d696d82009-07-11 13:10:19 +00006098 "register inputs yet!");
Dan Gohman15480bd2009-06-15 22:32:41 +00006099 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006100 RegsForValue MatchedRegs;
6101 MatchedRegs.TLI = &TLI;
6102 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Owen Andersone50ed302009-08-10 22:56:29 +00006103 EVT RegVT = AsmNodeOperands[CurOp+1].getValueType();
Evan Chengfb112882009-03-23 08:01:15 +00006104 MatchedRegs.RegVTs.push_back(RegVT);
6105 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00006106 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Evan Chengfb112882009-03-23 08:01:15 +00006107 i != e; ++i)
6108 MatchedRegs.Regs.
6109 push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT)));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006110
6111 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00006112 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
Bill Wendlingec72e322009-12-22 01:11:43 +00006113 SDNodeOrder, Chain, &Flag);
Evan Chengfb112882009-03-23 08:01:15 +00006114 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/,
6115 true, OpInfo.getMatchedOperand(),
Bill Wendling651ad132009-12-22 01:25:10 +00006116 DAG, SDNodeOrder, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006117 break;
6118 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00006119 assert(((OpFlag & 7) == 4) && "Unknown matching constraint!");
6120 assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 &&
6121 "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006122 // Add information to the INLINEASM node to know about this input.
Evan Chengfb112882009-03-23 08:01:15 +00006123 // See InlineAsm.h isUseOperandTiedToDef.
6124 OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16);
Evan Cheng697cbbf2009-03-20 18:03:34 +00006125 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006126 TLI.getPointerTy()));
6127 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
6128 break;
6129 }
6130 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006131
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006132 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006133 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006134 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006135
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006136 std::vector<SDValue> Ops;
6137 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00006138 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006139 if (Ops.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00006140 llvm_report_error("Invalid operand for inline asm"
Torok Edwin7d696d82009-07-11 13:10:19 +00006141 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006142 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006143
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006144 // Add information to the INLINEASM node to know about this input.
6145 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006146 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006147 TLI.getPointerTy()));
6148 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
6149 break;
6150 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
6151 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
6152 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
6153 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006154
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006155 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00006156 unsigned ResOpType = 4/*MEM*/ | (1<<3);
6157 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006158 TLI.getPointerTy()));
6159 AsmNodeOperands.push_back(InOperandVal);
6160 break;
6161 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006162
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006163 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
6164 OpInfo.ConstraintType == TargetLowering::C_Register) &&
6165 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006166 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006167 "Don't know how to handle indirect register inputs yet!");
6168
6169 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00006170 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00006171 llvm_report_error("Couldn't allocate input reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00006172 " constraint '"+ OpInfo.ConstraintCode +"'!");
Evan Chengaa765b82008-09-25 00:14:04 +00006173 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006174
Dale Johannesen66978ee2009-01-31 02:22:37 +00006175 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
Bill Wendlingec72e322009-12-22 01:11:43 +00006176 SDNodeOrder, Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006177
Evan Cheng697cbbf2009-03-20 18:03:34 +00006178 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0,
Bill Wendling651ad132009-12-22 01:25:10 +00006179 DAG, SDNodeOrder,
6180 AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006181 break;
6182 }
6183 case InlineAsm::isClobber: {
6184 // Add the clobbered value to the operand list, so that the register
6185 // allocator is aware that the physreg got clobbered.
6186 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00006187 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
Bill Wendling651ad132009-12-22 01:25:10 +00006188 false, 0, DAG, SDNodeOrder,
6189 AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006190 break;
6191 }
6192 }
6193 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006194
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006195 // Finish up input operands.
6196 AsmNodeOperands[0] = Chain;
6197 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006198
Dale Johannesen66978ee2009-01-31 02:22:37 +00006199 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00006200 DAG.getVTList(MVT::Other, MVT::Flag),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006201 &AsmNodeOperands[0], AsmNodeOperands.size());
6202 Flag = Chain.getValue(1);
6203
6204 // If this asm returns a register value, copy the result from that register
6205 // and set it as the value of the call.
6206 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006207 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Bill Wendlingec72e322009-12-22 01:11:43 +00006208 SDNodeOrder, Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006209
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006210 // FIXME: Why don't we do this for inline asms with MRVs?
6211 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
Owen Andersone50ed302009-08-10 22:56:29 +00006212 EVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006213
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006214 // If any of the results of the inline asm is a vector, it may have the
6215 // wrong width/num elts. This can happen for register classes that can
6216 // contain multiple different value types. The preg or vreg allocated may
6217 // not have the same VT as was expected. Convert it to the right type
6218 // with bit_convert.
6219 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00006220 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00006221 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00006222
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006223 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006224 ResultType.isInteger() && Val.getValueType().isInteger()) {
6225 // If a result value was tied to an input value, the computed result may
6226 // have a wider width than the expected result. Extract the relevant
6227 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00006228 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00006229 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006230
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006231 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00006232 }
Dan Gohman95915732008-10-18 01:03:45 +00006233
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006234 setValue(CS.getInstruction(), Val);
Dale Johannesenec65a7d2009-04-14 00:56:56 +00006235 // Don't need to use this as a chain in this case.
6236 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
6237 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006238 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006239
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006240 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006241
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006242 // Process indirect outputs, first output all of the flagged copies out of
6243 // physregs.
6244 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
6245 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
6246 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00006247 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Bill Wendlingec72e322009-12-22 01:11:43 +00006248 SDNodeOrder, Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006249 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6c147292009-04-30 00:48:50 +00006250
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006251 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006252
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006253 // Emit the non-flagged stores from the physregs.
6254 SmallVector<SDValue, 8> OutChains;
Bill Wendling651ad132009-12-22 01:25:10 +00006255 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) {
6256 SDValue Val = DAG.getStore(Chain, getCurDebugLoc(),
6257 StoresToEmit[i].first,
6258 getValue(StoresToEmit[i].second),
6259 StoresToEmit[i].second, 0);
6260 OutChains.push_back(Val);
Bill Wendling651ad132009-12-22 01:25:10 +00006261 }
6262
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006263 if (!OutChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00006264 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006265 &OutChains[0], OutChains.size());
Bill Wendling651ad132009-12-22 01:25:10 +00006266
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006267 DAG.setRoot(Chain);
6268}
6269
Dan Gohman2048b852009-11-23 18:04:58 +00006270void SelectionDAGBuilder::visitVAStart(CallInst &I) {
Bill Wendlingc1d3c942009-12-23 00:44:51 +00006271 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
6272 MVT::Other, getRoot(),
6273 getValue(I.getOperand(1)),
6274 DAG.getSrcValue(I.getOperand(1))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006275}
6276
Dan Gohman2048b852009-11-23 18:04:58 +00006277void SelectionDAGBuilder::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00006278 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
6279 getRoot(), getValue(I.getOperand(0)),
6280 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006281 setValue(&I, V);
6282 DAG.setRoot(V.getValue(1));
6283}
6284
Dan Gohman2048b852009-11-23 18:04:58 +00006285void SelectionDAGBuilder::visitVAEnd(CallInst &I) {
Bill Wendlingc1d3c942009-12-23 00:44:51 +00006286 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
6287 MVT::Other, getRoot(),
6288 getValue(I.getOperand(1)),
6289 DAG.getSrcValue(I.getOperand(1))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006290}
6291
Dan Gohman2048b852009-11-23 18:04:58 +00006292void SelectionDAGBuilder::visitVACopy(CallInst &I) {
Bill Wendlingc1d3c942009-12-23 00:44:51 +00006293 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
6294 MVT::Other, getRoot(),
6295 getValue(I.getOperand(1)),
6296 getValue(I.getOperand(2)),
6297 DAG.getSrcValue(I.getOperand(1)),
6298 DAG.getSrcValue(I.getOperand(2))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006299}
6300
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006301/// TargetLowering::LowerCallTo - This is the default LowerCallTo
Dan Gohman98ca4f22009-08-05 01:29:28 +00006302/// implementation, which just calls LowerCall.
6303/// FIXME: When all targets are
6304/// migrated to using LowerCall, this hook should be integrated into SDISel.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006305std::pair<SDValue, SDValue>
6306TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
6307 bool RetSExt, bool RetZExt, bool isVarArg,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00006308 bool isInreg, unsigned NumFixedArgs,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00006309 CallingConv::ID CallConv, bool isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00006310 bool isReturnValueUsed,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006311 SDValue Callee,
Bill Wendling3ea3c242009-12-22 02:10:19 +00006312 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl,
6313 unsigned Order) {
Dan Gohman1937e2f2008-09-16 01:42:28 +00006314 assert((!isTailCall || PerformTailCallOpt) &&
6315 "isTailCall set when tail-call optimizations are disabled!");
6316
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006317 // Handle all of the outgoing arguments.
Dan Gohman98ca4f22009-08-05 01:29:28 +00006318 SmallVector<ISD::OutputArg, 32> Outs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006319 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00006320 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006321 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
6322 for (unsigned Value = 0, NumValues = ValueVTs.size();
6323 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00006324 EVT VT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00006325 const Type *ArgTy = VT.getTypeForEVT(RetTy->getContext());
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006326 SDValue Op = SDValue(Args[i].Node.getNode(),
6327 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006328 ISD::ArgFlagsTy Flags;
6329 unsigned OriginalAlignment =
6330 getTargetData()->getABITypeAlignment(ArgTy);
6331
6332 if (Args[i].isZExt)
6333 Flags.setZExt();
6334 if (Args[i].isSExt)
6335 Flags.setSExt();
6336 if (Args[i].isInReg)
6337 Flags.setInReg();
6338 if (Args[i].isSRet)
6339 Flags.setSRet();
6340 if (Args[i].isByVal) {
6341 Flags.setByVal();
6342 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
6343 const Type *ElementTy = Ty->getElementType();
6344 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00006345 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006346 // For ByVal, alignment should come from FE. BE will guess if this
6347 // info is not there but there are cases it cannot get right.
6348 if (Args[i].Alignment)
6349 FrameAlign = Args[i].Alignment;
6350 Flags.setByValAlign(FrameAlign);
6351 Flags.setByValSize(FrameSize);
6352 }
6353 if (Args[i].isNest)
6354 Flags.setNest();
6355 Flags.setOrigAlign(OriginalAlignment);
6356
Owen Anderson23b9b192009-08-12 00:36:31 +00006357 EVT PartVT = getRegisterType(RetTy->getContext(), VT);
6358 unsigned NumParts = getNumRegisters(RetTy->getContext(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006359 SmallVector<SDValue, 4> Parts(NumParts);
6360 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
6361
6362 if (Args[i].isSExt)
6363 ExtendKind = ISD::SIGN_EXTEND;
6364 else if (Args[i].isZExt)
6365 ExtendKind = ISD::ZERO_EXTEND;
6366
Bill Wendling3ea3c242009-12-22 02:10:19 +00006367 getCopyToParts(DAG, dl, Order, Op, &Parts[0], NumParts,
6368 PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006369
Dan Gohman98ca4f22009-08-05 01:29:28 +00006370 for (unsigned j = 0; j != NumParts; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006371 // if it isn't first piece, alignment must be 1
Dan Gohman98ca4f22009-08-05 01:29:28 +00006372 ISD::OutputArg MyFlags(Flags, Parts[j], i < NumFixedArgs);
6373 if (NumParts > 1 && j == 0)
6374 MyFlags.Flags.setSplit();
6375 else if (j != 0)
6376 MyFlags.Flags.setOrigAlign(1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006377
Dan Gohman98ca4f22009-08-05 01:29:28 +00006378 Outs.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006379 }
6380 }
6381 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006382
Dan Gohman98ca4f22009-08-05 01:29:28 +00006383 // Handle the incoming return values from the call.
6384 SmallVector<ISD::InputArg, 32> Ins;
Owen Andersone50ed302009-08-10 22:56:29 +00006385 SmallVector<EVT, 4> RetTys;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006386 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006387 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00006388 EVT VT = RetTys[I];
Owen Anderson23b9b192009-08-12 00:36:31 +00006389 EVT RegisterVT = getRegisterType(RetTy->getContext(), VT);
6390 unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00006391 for (unsigned i = 0; i != NumRegs; ++i) {
6392 ISD::InputArg MyFlags;
6393 MyFlags.VT = RegisterVT;
6394 MyFlags.Used = isReturnValueUsed;
6395 if (RetSExt)
6396 MyFlags.Flags.setSExt();
6397 if (RetZExt)
6398 MyFlags.Flags.setZExt();
6399 if (isInreg)
6400 MyFlags.Flags.setInReg();
6401 Ins.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006402 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006403 }
6404
Dan Gohman98ca4f22009-08-05 01:29:28 +00006405 // Check if target-dependent constraints permit a tail call here.
6406 // Target-independent constraints should be checked by the caller.
6407 if (isTailCall &&
6408 !IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg, Ins, DAG))
6409 isTailCall = false;
6410
6411 SmallVector<SDValue, 4> InVals;
6412 Chain = LowerCall(Chain, Callee, CallConv, isVarArg, isTailCall,
6413 Outs, Ins, dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00006414
6415 // Verify that the target's LowerCall behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00006416 assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00006417 "LowerCall didn't return a valid chain!");
6418 assert((!isTailCall || InVals.empty()) &&
6419 "LowerCall emitted a return value for a tail call!");
6420 assert((isTailCall || InVals.size() == Ins.size()) &&
6421 "LowerCall didn't emit the correct number of values!");
6422 DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
6423 assert(InVals[i].getNode() &&
6424 "LowerCall emitted a null value!");
6425 assert(Ins[i].VT == InVals[i].getValueType() &&
6426 "LowerCall emitted a value with the wrong type!");
6427 });
Dan Gohman98ca4f22009-08-05 01:29:28 +00006428
Bill Wendling3ea3c242009-12-22 02:10:19 +00006429 if (DisableScheduling)
6430 DAG.AssignOrdering(Chain.getNode(), Order);
6431
Dan Gohman98ca4f22009-08-05 01:29:28 +00006432 // For a tail call, the return value is merely live-out and there aren't
6433 // any nodes in the DAG representing it. Return a special value to
6434 // indicate that a tail call has been emitted and no more Instructions
6435 // should be processed in the current block.
6436 if (isTailCall) {
6437 DAG.setRoot(Chain);
6438 return std::make_pair(SDValue(), SDValue());
6439 }
6440
6441 // Collect the legal value parts into potentially illegal values
6442 // that correspond to the original function's return values.
6443 ISD::NodeType AssertOp = ISD::DELETED_NODE;
6444 if (RetSExt)
6445 AssertOp = ISD::AssertSext;
6446 else if (RetZExt)
6447 AssertOp = ISD::AssertZext;
6448 SmallVector<SDValue, 4> ReturnValues;
6449 unsigned CurReg = 0;
6450 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00006451 EVT VT = RetTys[I];
Owen Anderson23b9b192009-08-12 00:36:31 +00006452 EVT RegisterVT = getRegisterType(RetTy->getContext(), VT);
6453 unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00006454
6455 SDValue ReturnValue =
Bill Wendling3ea3c242009-12-22 02:10:19 +00006456 getCopyFromParts(DAG, dl, Order, &InVals[CurReg], NumRegs,
6457 RegisterVT, VT, AssertOp);
Dan Gohman98ca4f22009-08-05 01:29:28 +00006458 ReturnValues.push_back(ReturnValue);
Bill Wendling3ea3c242009-12-22 02:10:19 +00006459 if (DisableScheduling)
6460 DAG.AssignOrdering(ReturnValue.getNode(), Order);
Dan Gohman98ca4f22009-08-05 01:29:28 +00006461 CurReg += NumRegs;
6462 }
6463
6464 // For a function returning void, there is no return value. We can't create
6465 // such a node, so we just return a null return value in that case. In
6466 // that case, nothing will actualy look at the value.
6467 if (ReturnValues.empty())
6468 return std::make_pair(SDValue(), Chain);
6469
6470 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl,
6471 DAG.getVTList(&RetTys[0], RetTys.size()),
6472 &ReturnValues[0], ReturnValues.size());
Bill Wendling3ea3c242009-12-22 02:10:19 +00006473 if (DisableScheduling)
6474 DAG.AssignOrdering(Res.getNode(), Order);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006475 return std::make_pair(Res, Chain);
6476}
6477
Duncan Sands9fbc7e22009-01-21 09:00:29 +00006478void TargetLowering::LowerOperationWrapper(SDNode *N,
6479 SmallVectorImpl<SDValue> &Results,
6480 SelectionDAG &DAG) {
6481 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00006482 if (Res.getNode())
6483 Results.push_back(Res);
6484}
6485
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006486SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006487 llvm_unreachable("LowerOperation not implemented for this target!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006488 return SDValue();
6489}
6490
Dan Gohman2048b852009-11-23 18:04:58 +00006491void SelectionDAGBuilder::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006492 SDValue Op = getValue(V);
6493 assert((Op.getOpcode() != ISD::CopyFromReg ||
6494 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
6495 "Copy from a reg to the same reg!");
6496 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
6497
Owen Anderson23b9b192009-08-12 00:36:31 +00006498 RegsForValue RFV(V->getContext(), TLI, Reg, V->getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006499 SDValue Chain = DAG.getEntryNode();
Bill Wendlingec72e322009-12-22 01:11:43 +00006500 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), SDNodeOrder, Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006501 PendingExports.push_back(Chain);
6502}
6503
6504#include "llvm/CodeGen/SelectionDAGISel.h"
6505
Dan Gohman8c2b5252009-10-30 01:27:03 +00006506void SelectionDAGISel::LowerArguments(BasicBlock *LLVMBB) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006507 // If this is the entry block, emit arguments.
6508 Function &F = *LLVMBB->getParent();
Dan Gohman2048b852009-11-23 18:04:58 +00006509 SelectionDAG &DAG = SDB->DAG;
Dan Gohman98ca4f22009-08-05 01:29:28 +00006510 SDValue OldRoot = DAG.getRoot();
Dan Gohman2048b852009-11-23 18:04:58 +00006511 DebugLoc dl = SDB->getCurDebugLoc();
Dan Gohman98ca4f22009-08-05 01:29:28 +00006512 const TargetData *TD = TLI.getTargetData();
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006513 SmallVector<ISD::InputArg, 16> Ins;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006514
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00006515 // Check whether the function can return without sret-demotion.
6516 SmallVector<EVT, 4> OutVTs;
6517 SmallVector<ISD::ArgFlagsTy, 4> OutsFlags;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006518 getReturnInfo(F.getReturnType(), F.getAttributes().getRetAttributes(),
6519 OutVTs, OutsFlags, TLI);
6520 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
6521
6522 FLI.CanLowerReturn = TLI.CanLowerReturn(F.getCallingConv(), F.isVarArg(),
Bill Wendling3ea3c242009-12-22 02:10:19 +00006523 OutVTs, OutsFlags, DAG);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006524 if (!FLI.CanLowerReturn) {
6525 // Put in an sret pointer parameter before all the other parameters.
6526 SmallVector<EVT, 1> ValueVTs;
6527 ComputeValueVTs(TLI, PointerType::getUnqual(F.getReturnType()), ValueVTs);
6528
6529 // NOTE: Assuming that a pointer will never break down to more than one VT
6530 // or one register.
6531 ISD::ArgFlagsTy Flags;
6532 Flags.setSRet();
6533 EVT RegisterVT = TLI.getRegisterType(*CurDAG->getContext(), ValueVTs[0]);
6534 ISD::InputArg RetArg(Flags, RegisterVT, true);
6535 Ins.push_back(RetArg);
6536 }
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00006537
Dan Gohman98ca4f22009-08-05 01:29:28 +00006538 // Set up the incoming argument description vector.
Dan Gohman98ca4f22009-08-05 01:29:28 +00006539 unsigned Idx = 1;
6540 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
6541 I != E; ++I, ++Idx) {
Owen Andersone50ed302009-08-10 22:56:29 +00006542 SmallVector<EVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00006543 ComputeValueVTs(TLI, I->getType(), ValueVTs);
6544 bool isArgValueUsed = !I->use_empty();
6545 for (unsigned Value = 0, NumValues = ValueVTs.size();
6546 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00006547 EVT VT = ValueVTs[Value];
Owen Anderson1d0be152009-08-13 21:58:54 +00006548 const Type *ArgTy = VT.getTypeForEVT(*DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00006549 ISD::ArgFlagsTy Flags;
6550 unsigned OriginalAlignment =
6551 TD->getABITypeAlignment(ArgTy);
6552
6553 if (F.paramHasAttr(Idx, Attribute::ZExt))
6554 Flags.setZExt();
6555 if (F.paramHasAttr(Idx, Attribute::SExt))
6556 Flags.setSExt();
6557 if (F.paramHasAttr(Idx, Attribute::InReg))
6558 Flags.setInReg();
6559 if (F.paramHasAttr(Idx, Attribute::StructRet))
6560 Flags.setSRet();
6561 if (F.paramHasAttr(Idx, Attribute::ByVal)) {
6562 Flags.setByVal();
6563 const PointerType *Ty = cast<PointerType>(I->getType());
6564 const Type *ElementTy = Ty->getElementType();
6565 unsigned FrameAlign = TLI.getByValTypeAlignment(ElementTy);
6566 unsigned FrameSize = TD->getTypeAllocSize(ElementTy);
6567 // For ByVal, alignment should be passed from FE. BE will guess if
6568 // this info is not there but there are cases it cannot get right.
6569 if (F.getParamAlignment(Idx))
6570 FrameAlign = F.getParamAlignment(Idx);
6571 Flags.setByValAlign(FrameAlign);
6572 Flags.setByValSize(FrameSize);
6573 }
6574 if (F.paramHasAttr(Idx, Attribute::Nest))
6575 Flags.setNest();
6576 Flags.setOrigAlign(OriginalAlignment);
6577
Owen Anderson23b9b192009-08-12 00:36:31 +00006578 EVT RegisterVT = TLI.getRegisterType(*CurDAG->getContext(), VT);
6579 unsigned NumRegs = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00006580 for (unsigned i = 0; i != NumRegs; ++i) {
6581 ISD::InputArg MyFlags(Flags, RegisterVT, isArgValueUsed);
6582 if (NumRegs > 1 && i == 0)
6583 MyFlags.Flags.setSplit();
6584 // if it isn't first piece, alignment must be 1
6585 else if (i > 0)
6586 MyFlags.Flags.setOrigAlign(1);
6587 Ins.push_back(MyFlags);
6588 }
6589 }
6590 }
6591
6592 // Call the target to set up the argument values.
6593 SmallVector<SDValue, 8> InVals;
6594 SDValue NewRoot = TLI.LowerFormalArguments(DAG.getRoot(), F.getCallingConv(),
6595 F.isVarArg(), Ins,
6596 dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00006597
6598 // Verify that the target's LowerFormalArguments behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00006599 assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00006600 "LowerFormalArguments didn't return a valid chain!");
6601 assert(InVals.size() == Ins.size() &&
6602 "LowerFormalArguments didn't emit the correct number of values!");
Bill Wendling3ea58b62009-12-22 21:35:02 +00006603 DEBUG({
6604 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
6605 assert(InVals[i].getNode() &&
6606 "LowerFormalArguments emitted a null value!");
6607 assert(Ins[i].VT == InVals[i].getValueType() &&
6608 "LowerFormalArguments emitted a value with the wrong type!");
6609 }
6610 });
Bill Wendling3ea3c242009-12-22 02:10:19 +00006611
Dan Gohman5e866062009-08-06 15:37:27 +00006612 // Update the DAG with the new chain value resulting from argument lowering.
Dan Gohman98ca4f22009-08-05 01:29:28 +00006613 DAG.setRoot(NewRoot);
6614
6615 // Set up the argument values.
6616 unsigned i = 0;
6617 Idx = 1;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006618 if (!FLI.CanLowerReturn) {
6619 // Create a virtual register for the sret pointer, and put in a copy
6620 // from the sret argument into it.
6621 SmallVector<EVT, 1> ValueVTs;
6622 ComputeValueVTs(TLI, PointerType::getUnqual(F.getReturnType()), ValueVTs);
6623 EVT VT = ValueVTs[0];
6624 EVT RegVT = TLI.getRegisterType(*CurDAG->getContext(), VT);
6625 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Bill Wendling3ea58b62009-12-22 21:35:02 +00006626 SDValue ArgValue = getCopyFromParts(DAG, dl, 0, &InVals[0], 1,
Bill Wendling3ea3c242009-12-22 02:10:19 +00006627 RegVT, VT, AssertOp);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006628
Dan Gohman2048b852009-11-23 18:04:58 +00006629 MachineFunction& MF = SDB->DAG.getMachineFunction();
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006630 MachineRegisterInfo& RegInfo = MF.getRegInfo();
6631 unsigned SRetReg = RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT));
6632 FLI.DemoteRegister = SRetReg;
Dan Gohman2048b852009-11-23 18:04:58 +00006633 NewRoot = SDB->DAG.getCopyToReg(NewRoot, SDB->getCurDebugLoc(), SRetReg, ArgValue);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006634 DAG.setRoot(NewRoot);
Bill Wendling3ea3c242009-12-22 02:10:19 +00006635
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00006636 // i indexes lowered arguments. Bump it past the hidden sret argument.
6637 // Idx indexes LLVM arguments. Don't touch it.
6638 ++i;
6639 }
Bill Wendling3ea3c242009-12-22 02:10:19 +00006640
Dan Gohman98ca4f22009-08-05 01:29:28 +00006641 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
6642 ++I, ++Idx) {
6643 SmallVector<SDValue, 4> ArgValues;
Owen Andersone50ed302009-08-10 22:56:29 +00006644 SmallVector<EVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00006645 ComputeValueVTs(TLI, I->getType(), ValueVTs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006646 unsigned NumValues = ValueVTs.size();
Dan Gohman98ca4f22009-08-05 01:29:28 +00006647 for (unsigned Value = 0; Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00006648 EVT VT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00006649 EVT PartVT = TLI.getRegisterType(*CurDAG->getContext(), VT);
6650 unsigned NumParts = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00006651
6652 if (!I->use_empty()) {
6653 ISD::NodeType AssertOp = ISD::DELETED_NODE;
6654 if (F.paramHasAttr(Idx, Attribute::SExt))
6655 AssertOp = ISD::AssertSext;
6656 else if (F.paramHasAttr(Idx, Attribute::ZExt))
6657 AssertOp = ISD::AssertZext;
6658
Bill Wendling3ea58b62009-12-22 21:35:02 +00006659 ArgValues.push_back(getCopyFromParts(DAG, dl, 0, &InVals[i],
Bill Wendling3ea3c242009-12-22 02:10:19 +00006660 NumParts, PartVT, VT,
6661 AssertOp));
Dan Gohman98ca4f22009-08-05 01:29:28 +00006662 }
Bill Wendling3ea3c242009-12-22 02:10:19 +00006663
Dan Gohman98ca4f22009-08-05 01:29:28 +00006664 i += NumParts;
6665 }
Bill Wendling3ea3c242009-12-22 02:10:19 +00006666
Dan Gohman98ca4f22009-08-05 01:29:28 +00006667 if (!I->use_empty()) {
Bill Wendling3ea3c242009-12-22 02:10:19 +00006668 SDValue Res = DAG.getMergeValues(&ArgValues[0], NumValues,
6669 SDB->getCurDebugLoc());
6670 SDB->setValue(I, Res);
6671
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006672 // If this argument is live outside of the entry block, insert a copy from
6673 // whereever we got it to the vreg that other BB's will reference it as.
Dan Gohman2048b852009-11-23 18:04:58 +00006674 SDB->CopyToExportRegsIfNeeded(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006675 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006676 }
Bill Wendling3ea3c242009-12-22 02:10:19 +00006677
Dan Gohman98ca4f22009-08-05 01:29:28 +00006678 assert(i == InVals.size() && "Argument register count mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006679
6680 // Finally, if the target has anything special to do, allow it to do so.
6681 // FIXME: this should insert code into the DAG!
Dan Gohman2048b852009-11-23 18:04:58 +00006682 EmitFunctionEntryCode(F, SDB->DAG.getMachineFunction());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006683}
6684
6685/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
6686/// ensure constants are generated when needed. Remember the virtual registers
6687/// that need to be added to the Machine PHI nodes as input. We cannot just
6688/// directly add them, because expansion might result in multiple MBB's for one
6689/// BB. As such, the start of the BB might correspond to a different MBB than
6690/// the end.
6691///
6692void
6693SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
6694 TerminatorInst *TI = LLVMBB->getTerminator();
6695
6696 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
6697
6698 // Check successor nodes' PHI nodes that expect a constant to be available
6699 // from this block.
6700 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
6701 BasicBlock *SuccBB = TI->getSuccessor(succ);
6702 if (!isa<PHINode>(SuccBB->begin())) continue;
6703 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006704
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006705 // If this terminator has multiple identical successors (common for
6706 // switches), only handle each succ once.
6707 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006708
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006709 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
6710 PHINode *PN;
6711
6712 // At this point we know that there is a 1-1 correspondence between LLVM PHI
6713 // nodes and Machine PHI nodes, but the incoming operands have not been
6714 // emitted yet.
6715 for (BasicBlock::iterator I = SuccBB->begin();
6716 (PN = dyn_cast<PHINode>(I)); ++I) {
6717 // Ignore dead phi's.
6718 if (PN->use_empty()) continue;
6719
6720 unsigned Reg;
6721 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
6722
6723 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
Dan Gohman2048b852009-11-23 18:04:58 +00006724 unsigned &RegOut = SDB->ConstantsOut[C];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006725 if (RegOut == 0) {
6726 RegOut = FuncInfo->CreateRegForValue(C);
Dan Gohman2048b852009-11-23 18:04:58 +00006727 SDB->CopyValueToVirtualRegister(C, RegOut);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006728 }
6729 Reg = RegOut;
6730 } else {
6731 Reg = FuncInfo->ValueMap[PHIOp];
6732 if (Reg == 0) {
6733 assert(isa<AllocaInst>(PHIOp) &&
6734 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
6735 "Didn't codegen value into a register!??");
6736 Reg = FuncInfo->CreateRegForValue(PHIOp);
Dan Gohman2048b852009-11-23 18:04:58 +00006737 SDB->CopyValueToVirtualRegister(PHIOp, Reg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006738 }
6739 }
6740
6741 // Remember that this register needs to added to the machine PHI node as
6742 // the input for this MBB.
Owen Andersone50ed302009-08-10 22:56:29 +00006743 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006744 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
6745 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
Owen Andersone50ed302009-08-10 22:56:29 +00006746 EVT VT = ValueVTs[vti];
Owen Anderson23b9b192009-08-12 00:36:31 +00006747 unsigned NumRegisters = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006748 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
Dan Gohman2048b852009-11-23 18:04:58 +00006749 SDB->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006750 Reg += NumRegisters;
6751 }
6752 }
6753 }
Dan Gohman2048b852009-11-23 18:04:58 +00006754 SDB->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006755}
6756
Dan Gohman3df24e62008-09-03 23:12:08 +00006757/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
6758/// supports legal types, and it emits MachineInstrs directly instead of
6759/// creating SelectionDAG nodes.
6760///
6761bool
6762SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
6763 FastISel *F) {
6764 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006765
Dan Gohman3df24e62008-09-03 23:12:08 +00006766 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
Dan Gohman2048b852009-11-23 18:04:58 +00006767 unsigned OrigNumPHINodesToUpdate = SDB->PHINodesToUpdate.size();
Dan Gohman3df24e62008-09-03 23:12:08 +00006768
6769 // Check successor nodes' PHI nodes that expect a constant to be available
6770 // from this block.
6771 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
6772 BasicBlock *SuccBB = TI->getSuccessor(succ);
6773 if (!isa<PHINode>(SuccBB->begin())) continue;
6774 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006775
Dan Gohman3df24e62008-09-03 23:12:08 +00006776 // If this terminator has multiple identical successors (common for
6777 // switches), only handle each succ once.
6778 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006779
Dan Gohman3df24e62008-09-03 23:12:08 +00006780 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
6781 PHINode *PN;
6782
6783 // At this point we know that there is a 1-1 correspondence between LLVM PHI
6784 // nodes and Machine PHI nodes, but the incoming operands have not been
6785 // emitted yet.
6786 for (BasicBlock::iterator I = SuccBB->begin();
6787 (PN = dyn_cast<PHINode>(I)); ++I) {
6788 // Ignore dead phi's.
6789 if (PN->use_empty()) continue;
6790
6791 // Only handle legal types. Two interesting things to note here. First,
6792 // by bailing out early, we may leave behind some dead instructions,
6793 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
6794 // own moves. Second, this check is necessary becuase FastISel doesn't
6795 // use CreateRegForValue to create registers, so it always creates
6796 // exactly one register for each non-void instruction.
Owen Andersone50ed302009-08-10 22:56:29 +00006797 EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00006798 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
6799 // Promote MVT::i1.
6800 if (VT == MVT::i1)
Owen Anderson23b9b192009-08-12 00:36:31 +00006801 VT = TLI.getTypeToTransformTo(*CurDAG->getContext(), VT);
Dan Gohman74321ab2008-09-10 21:01:31 +00006802 else {
Dan Gohman2048b852009-11-23 18:04:58 +00006803 SDB->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
Dan Gohman74321ab2008-09-10 21:01:31 +00006804 return false;
6805 }
Dan Gohman3df24e62008-09-03 23:12:08 +00006806 }
6807
6808 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
6809
6810 unsigned Reg = F->getRegForValue(PHIOp);
6811 if (Reg == 0) {
Dan Gohman2048b852009-11-23 18:04:58 +00006812 SDB->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
Dan Gohman3df24e62008-09-03 23:12:08 +00006813 return false;
6814 }
Dan Gohman2048b852009-11-23 18:04:58 +00006815 SDB->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
Dan Gohman3df24e62008-09-03 23:12:08 +00006816 }
6817 }
6818
6819 return true;
6820}