blob: 913f517d85e3c20a6b901505643853911a523866 [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"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000016#include "SDNodeDbgValue.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000017#include "llvm/ADT/BitVector.h"
David Blaikie6d9dbd52013-06-16 20:34:15 +000018#include "llvm/ADT/Optional.h"
Dan Gohman5b229802008-09-04 20:49:27 +000019#include "llvm/ADT/SmallSet.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000020#include "llvm/Analysis/AliasAnalysis.h"
Jakub Staszak81bfd712013-01-10 22:13:13 +000021#include "llvm/Analysis/BranchProbabilityInfo.h"
Chris Lattner8047d9a2009-12-24 00:37:38 +000022#include "llvm/Analysis/ConstantFolding.h"
Nadav Rotemc05d3062012-09-06 09:17:37 +000023#include "llvm/Analysis/ValueTracking.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000024#include "llvm/CodeGen/Analysis.h"
25#include "llvm/CodeGen/FastISel.h"
26#include "llvm/CodeGen/FunctionLoweringInfo.h"
27#include "llvm/CodeGen/GCMetadata.h"
28#include "llvm/CodeGen/GCStrategy.h"
29#include "llvm/CodeGen/MachineFrameInfo.h"
30#include "llvm/CodeGen/MachineFunction.h"
31#include "llvm/CodeGen/MachineInstrBuilder.h"
32#include "llvm/CodeGen/MachineJumpTableInfo.h"
33#include "llvm/CodeGen/MachineModuleInfo.h"
34#include "llvm/CodeGen/MachineRegisterInfo.h"
35#include "llvm/CodeGen/SelectionDAG.h"
Andrew Trick3d74dea2013-10-31 22:11:56 +000036#include "llvm/CodeGen/StackMaps.h"
Bill Wendling0bcbd1d2012-06-28 00:05:13 +000037#include "llvm/DebugInfo.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000038#include "llvm/IR/CallingConv.h"
39#include "llvm/IR/Constants.h"
40#include "llvm/IR/DataLayout.h"
41#include "llvm/IR/DerivedTypes.h"
42#include "llvm/IR/Function.h"
43#include "llvm/IR/GlobalVariable.h"
44#include "llvm/IR/InlineAsm.h"
45#include "llvm/IR/Instructions.h"
46#include "llvm/IR/IntrinsicInst.h"
47#include "llvm/IR/Intrinsics.h"
48#include "llvm/IR/LLVMContext.h"
49#include "llvm/IR/Module.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000050#include "llvm/Support/CommandLine.h"
51#include "llvm/Support/Debug.h"
52#include "llvm/Support/ErrorHandling.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000053#include "llvm/Support/MathExtras.h"
54#include "llvm/Support/raw_ostream.h"
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000055#include "llvm/Target/TargetFrameLowering.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000056#include "llvm/Target/TargetInstrInfo.h"
Dale Johannesen49de9822009-02-05 01:49:45 +000057#include "llvm/Target/TargetIntrinsicInfo.h"
Owen Anderson243eb9e2011-12-08 22:15:21 +000058#include "llvm/Target/TargetLibraryInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000059#include "llvm/Target/TargetLowering.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000060#include "llvm/Target/TargetOptions.h"
Richard Sandifordac168b82013-08-12 10:28:10 +000061#include "llvm/Target/TargetSelectionDAGInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000062#include <algorithm>
63using namespace llvm;
64
Dale Johannesen601d3c02008-09-05 01:48:15 +000065/// LimitFloatPrecision - Generate low-precision inline sequences for
66/// some float libcalls (6, 8 or 12 bits).
67static unsigned LimitFloatPrecision;
68
69static cl::opt<unsigned, true>
70LimitFPPrecision("limit-float-precision",
71 cl::desc("Generate low-precision inline sequences "
72 "for some float libcalls"),
73 cl::location(LimitFloatPrecision),
74 cl::init(0));
75
Andrew Trickde91f3c2010-11-12 17:50:46 +000076// Limit the width of DAG chains. This is important in general to prevent
77// prevent DAG-based analysis from blowing up. For example, alias analysis and
78// load clustering may not complete in reasonable time. It is difficult to
79// recognize and avoid this situation within each individual analysis, and
80// future analyses are likely to have the same behavior. Limiting DAG width is
Andrew Trickb9e6fe12010-11-20 07:26:51 +000081// the safe approach, and will be especially important with global DAGs.
Andrew Trickde91f3c2010-11-12 17:50:46 +000082//
83// MaxParallelChains default is arbitrarily high to avoid affecting
84// optimization, but could be lowered to improve compile time. Any ld-ld-st-st
Andrew Trickb9e6fe12010-11-20 07:26:51 +000085// sequence over this should have been converted to llvm.memcpy by the
86// frontend. It easy to induce this behavior with .ll code such as:
87// %buffer = alloca [4096 x i8]
88// %data = load [4096 x i8]* %argPtr
89// store [4096 x i8] %data, [4096 x i8]* %buffer
Andrew Trick778583a2011-03-11 17:46:59 +000090static const unsigned MaxParallelChains = 64;
Andrew Trickde91f3c2010-11-12 17:50:46 +000091
Andrew Trickac6d9be2013-05-25 02:42:55 +000092static SDValue getCopyFromPartsVector(SelectionDAG &DAG, SDLoc DL,
Chris Lattner3ac18842010-08-24 23:20:40 +000093 const SDValue *Parts, unsigned NumParts,
Patrik Hagglundb9e12e52012-12-19 12:33:30 +000094 MVT PartVT, EVT ValueVT, const Value *V);
Michael J. Spencere70c5262010-10-16 08:25:21 +000095
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000096/// getCopyFromParts - Create a value that contains the specified legal parts
97/// combined into the value they represent. If the parts combine to a type
98/// larger then ValueVT then AssertOp can be used to specify whether the extra
99/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
100/// (ISD::AssertSext).
Andrew Trickac6d9be2013-05-25 02:42:55 +0000101static SDValue getCopyFromParts(SelectionDAG &DAG, SDLoc DL,
Dale Johannesen66978ee2009-01-31 02:22:37 +0000102 const SDValue *Parts,
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000103 unsigned NumParts, MVT PartVT, EVT ValueVT,
Bill Wendling12931302012-09-26 04:04:19 +0000104 const Value *V,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000105 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Chris Lattner3ac18842010-08-24 23:20:40 +0000106 if (ValueVT.isVector())
Bill Wendling12931302012-09-26 04:04:19 +0000107 return getCopyFromPartsVector(DAG, DL, Parts, NumParts,
108 PartVT, ValueVT, V);
Michael J. Spencere70c5262010-10-16 08:25:21 +0000109
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000110 assert(NumParts > 0 && "No parts to assemble!");
Dan Gohmane9530ec2009-01-15 16:58:17 +0000111 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000112 SDValue Val = Parts[0];
113
114 if (NumParts > 1) {
115 // Assemble the value from multiple parts.
Chris Lattner3ac18842010-08-24 23:20:40 +0000116 if (ValueVT.isInteger()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000117 unsigned PartBits = PartVT.getSizeInBits();
118 unsigned ValueBits = ValueVT.getSizeInBits();
119
120 // Assemble the power of 2 part.
121 unsigned RoundParts = NumParts & (NumParts - 1) ?
122 1 << Log2_32(NumParts) : NumParts;
123 unsigned RoundBits = PartBits * RoundParts;
Owen Andersone50ed302009-08-10 22:56:29 +0000124 EVT RoundVT = RoundBits == ValueBits ?
Owen Anderson23b9b192009-08-12 00:36:31 +0000125 ValueVT : EVT::getIntegerVT(*DAG.getContext(), RoundBits);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000126 SDValue Lo, Hi;
127
Owen Anderson23b9b192009-08-12 00:36:31 +0000128 EVT HalfVT = EVT::getIntegerVT(*DAG.getContext(), RoundBits/2);
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000129
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000130 if (RoundParts > 2) {
Chris Lattner3ac18842010-08-24 23:20:40 +0000131 Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2,
Bill Wendling12931302012-09-26 04:04:19 +0000132 PartVT, HalfVT, V);
Chris Lattner3ac18842010-08-24 23:20:40 +0000133 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2,
Bill Wendling12931302012-09-26 04:04:19 +0000134 RoundParts / 2, PartVT, HalfVT, V);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000135 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000136 Lo = DAG.getNode(ISD::BITCAST, DL, HalfVT, Parts[0]);
137 Hi = DAG.getNode(ISD::BITCAST, DL, HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000138 }
Bill Wendling3ea3c242009-12-22 02:10:19 +0000139
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000140 if (TLI.isBigEndian())
141 std::swap(Lo, Hi);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000142
Chris Lattner3ac18842010-08-24 23:20:40 +0000143 Val = DAG.getNode(ISD::BUILD_PAIR, DL, RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000144
145 if (RoundParts < NumParts) {
146 // Assemble the trailing non-power-of-2 part.
147 unsigned OddParts = NumParts - RoundParts;
Owen Anderson23b9b192009-08-12 00:36:31 +0000148 EVT OddVT = EVT::getIntegerVT(*DAG.getContext(), OddParts * PartBits);
Chris Lattner3ac18842010-08-24 23:20:40 +0000149 Hi = getCopyFromParts(DAG, DL,
Bill Wendling12931302012-09-26 04:04:19 +0000150 Parts + RoundParts, OddParts, PartVT, OddVT, V);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000151
152 // Combine the round and odd parts.
153 Lo = Val;
154 if (TLI.isBigEndian())
155 std::swap(Lo, Hi);
Owen Anderson23b9b192009-08-12 00:36:31 +0000156 EVT TotalVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
Chris Lattner3ac18842010-08-24 23:20:40 +0000157 Hi = DAG.getNode(ISD::ANY_EXTEND, DL, TotalVT, Hi);
158 Hi = DAG.getNode(ISD::SHL, DL, TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000159 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands92abc622009-01-31 15:50:11 +0000160 TLI.getPointerTy()));
Chris Lattner3ac18842010-08-24 23:20:40 +0000161 Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, TotalVT, Lo);
162 Val = DAG.getNode(ISD::OR, DL, TotalVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000163 }
Eli Friedman2ac8b322009-05-20 06:02:09 +0000164 } else if (PartVT.isFloatingPoint()) {
165 // FP split into multiple FP parts (for ppcf128)
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000166 assert(ValueVT == EVT(MVT::ppcf128) && PartVT == MVT::f64 &&
Eli Friedman2ac8b322009-05-20 06:02:09 +0000167 "Unexpected split");
168 SDValue Lo, Hi;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000169 Lo = DAG.getNode(ISD::BITCAST, DL, EVT(MVT::f64), Parts[0]);
170 Hi = DAG.getNode(ISD::BITCAST, DL, EVT(MVT::f64), Parts[1]);
Eli Friedman2ac8b322009-05-20 06:02:09 +0000171 if (TLI.isBigEndian())
172 std::swap(Lo, Hi);
Chris Lattner3ac18842010-08-24 23:20:40 +0000173 Val = DAG.getNode(ISD::BUILD_PAIR, DL, ValueVT, Lo, Hi);
Eli Friedman2ac8b322009-05-20 06:02:09 +0000174 } else {
175 // FP split into integer parts (soft fp)
176 assert(ValueVT.isFloatingPoint() && PartVT.isInteger() &&
177 !PartVT.isVector() && "Unexpected split");
Owen Anderson23b9b192009-08-12 00:36:31 +0000178 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits());
Bill Wendling12931302012-09-26 04:04:19 +0000179 Val = getCopyFromParts(DAG, DL, Parts, NumParts, PartVT, IntVT, V);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000180 }
181 }
182
183 // There is now one part, held in Val. Correct it to match ValueVT.
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000184 EVT PartEVT = Val.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000185
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000186 if (PartEVT == ValueVT)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000187 return Val;
188
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000189 if (PartEVT.isInteger() && ValueVT.isInteger()) {
190 if (ValueVT.bitsLT(PartEVT)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000191 // For a truncate, see if we have any information to
192 // indicate whether the truncated bits will always be
193 // zero or sign-extension.
194 if (AssertOp != ISD::DELETED_NODE)
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000195 Val = DAG.getNode(AssertOp, DL, PartEVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000196 DAG.getValueType(ValueVT));
Chris Lattner3ac18842010-08-24 23:20:40 +0000197 return DAG.getNode(ISD::TRUNCATE, DL, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000198 }
Chris Lattner3ac18842010-08-24 23:20:40 +0000199 return DAG.getNode(ISD::ANY_EXTEND, DL, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000200 }
201
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000202 if (PartEVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Chris Lattner3ac18842010-08-24 23:20:40 +0000203 // FP_ROUND's are always exact here.
204 if (ValueVT.bitsLT(Val.getValueType()))
205 return DAG.getNode(ISD::FP_ROUND, DL, ValueVT, Val,
Pete Cooperf57e1c22012-01-17 01:54:07 +0000206 DAG.getTargetConstant(1, TLI.getPointerTy()));
Bill Wendling3ea3c242009-12-22 02:10:19 +0000207
Chris Lattner3ac18842010-08-24 23:20:40 +0000208 return DAG.getNode(ISD::FP_EXTEND, DL, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000209 }
210
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000211 if (PartEVT.getSizeInBits() == ValueVT.getSizeInBits())
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000212 return DAG.getNode(ISD::BITCAST, DL, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000213
Torok Edwinc23197a2009-07-14 16:55:14 +0000214 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000215}
216
Bill Wendling12931302012-09-26 04:04:19 +0000217/// getCopyFromPartsVector - Create a value that contains the specified legal
218/// parts combined into the value they represent. If the parts combine to a
219/// type larger then ValueVT then AssertOp can be used to specify whether the
220/// extra bits are known to be zero (ISD::AssertZext) or sign extended from
221/// ValueVT (ISD::AssertSext).
Andrew Trickac6d9be2013-05-25 02:42:55 +0000222static SDValue getCopyFromPartsVector(SelectionDAG &DAG, SDLoc DL,
Chris Lattner3ac18842010-08-24 23:20:40 +0000223 const SDValue *Parts, unsigned NumParts,
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000224 MVT PartVT, EVT ValueVT, const Value *V) {
Chris Lattner3ac18842010-08-24 23:20:40 +0000225 assert(ValueVT.isVector() && "Not a vector value");
226 assert(NumParts > 0 && "No parts to assemble!");
227 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
228 SDValue Val = Parts[0];
Michael J. Spencere70c5262010-10-16 08:25:21 +0000229
Chris Lattner3ac18842010-08-24 23:20:40 +0000230 // Handle a multi-element vector.
231 if (NumParts > 1) {
Patrik Hagglundee211d22012-12-19 11:53:21 +0000232 EVT IntermediateVT;
233 MVT RegisterVT;
Chris Lattner3ac18842010-08-24 23:20:40 +0000234 unsigned NumIntermediates;
235 unsigned NumRegs =
236 TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT, IntermediateVT,
237 NumIntermediates, RegisterVT);
238 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
239 NumParts = NumRegs; // Silence a compiler warning.
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000240 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
Patrik Hagglundee211d22012-12-19 11:53:21 +0000241 assert(RegisterVT == Parts[0].getSimpleValueType() &&
Chris Lattner3ac18842010-08-24 23:20:40 +0000242 "Part type doesn't match part!");
Michael J. Spencere70c5262010-10-16 08:25:21 +0000243
Chris Lattner3ac18842010-08-24 23:20:40 +0000244 // Assemble the parts into intermediate operands.
245 SmallVector<SDValue, 8> Ops(NumIntermediates);
246 if (NumIntermediates == NumParts) {
247 // If the register was not expanded, truncate or copy the value,
248 // as appropriate.
249 for (unsigned i = 0; i != NumParts; ++i)
250 Ops[i] = getCopyFromParts(DAG, DL, &Parts[i], 1,
Bill Wendling12931302012-09-26 04:04:19 +0000251 PartVT, IntermediateVT, V);
Chris Lattner3ac18842010-08-24 23:20:40 +0000252 } else if (NumParts > 0) {
253 // If the intermediate type was expanded, build the intermediate
254 // operands from the parts.
255 assert(NumParts % NumIntermediates == 0 &&
256 "Must expand into a divisible number of parts!");
257 unsigned Factor = NumParts / NumIntermediates;
258 for (unsigned i = 0; i != NumIntermediates; ++i)
259 Ops[i] = getCopyFromParts(DAG, DL, &Parts[i * Factor], Factor,
Bill Wendling12931302012-09-26 04:04:19 +0000260 PartVT, IntermediateVT, V);
Chris Lattner3ac18842010-08-24 23:20:40 +0000261 }
Michael J. Spencere70c5262010-10-16 08:25:21 +0000262
Chris Lattner3ac18842010-08-24 23:20:40 +0000263 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the
264 // intermediate operands.
265 Val = DAG.getNode(IntermediateVT.isVector() ?
266 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, DL,
267 ValueVT, &Ops[0], NumIntermediates);
268 }
Michael J. Spencere70c5262010-10-16 08:25:21 +0000269
Chris Lattner3ac18842010-08-24 23:20:40 +0000270 // There is now one part, held in Val. Correct it to match ValueVT.
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000271 EVT PartEVT = Val.getValueType();
Michael J. Spencere70c5262010-10-16 08:25:21 +0000272
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000273 if (PartEVT == ValueVT)
Chris Lattner3ac18842010-08-24 23:20:40 +0000274 return Val;
Michael J. Spencere70c5262010-10-16 08:25:21 +0000275
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000276 if (PartEVT.isVector()) {
Chris Lattnere6f7c262010-08-25 22:49:25 +0000277 // If the element type of the source/dest vectors are the same, but the
278 // parts vector has more elements than the value vector, then we have a
279 // vector widening case (e.g. <2 x float> -> <4 x float>). Extract the
280 // elements we want.
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000281 if (PartEVT.getVectorElementType() == ValueVT.getVectorElementType()) {
282 assert(PartEVT.getVectorNumElements() > ValueVT.getVectorNumElements() &&
Chris Lattnere6f7c262010-08-25 22:49:25 +0000283 "Cannot narrow, it would be a lossy transformation");
284 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, ValueVT, Val,
Tom Stellard425b76c2013-08-05 22:22:01 +0000285 DAG.getConstant(0, TLI.getVectorIdxTy()));
Michael J. Spencere70c5262010-10-16 08:25:21 +0000286 }
287
Chris Lattnere6f7c262010-08-25 22:49:25 +0000288 // Vector/Vector bitcast.
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000289 if (ValueVT.getSizeInBits() == PartEVT.getSizeInBits())
Nadav Rotem0b666362011-06-04 20:58:08 +0000290 return DAG.getNode(ISD::BITCAST, DL, ValueVT, Val);
291
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000292 assert(PartEVT.getVectorNumElements() == ValueVT.getVectorNumElements() &&
Nadav Rotem0b666362011-06-04 20:58:08 +0000293 "Cannot handle this kind of promotion");
294 // Promoted vector extract
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000295 bool Smaller = ValueVT.bitsLE(PartEVT);
Nadav Rotemb05f14b2011-06-12 14:49:38 +0000296 return DAG.getNode((Smaller ? ISD::TRUNCATE : ISD::ANY_EXTEND),
297 DL, ValueVT, Val);
Nadav Rotem0b666362011-06-04 20:58:08 +0000298
Chris Lattnere6f7c262010-08-25 22:49:25 +0000299 }
Eric Christopher471e4222011-06-08 23:55:35 +0000300
Eric Christopher9aaa02a2011-06-01 19:55:10 +0000301 // Trivial bitcast if the types are the same size and the destination
302 // vector type is legal.
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000303 if (PartEVT.getSizeInBits() == ValueVT.getSizeInBits() &&
Eric Christopher9aaa02a2011-06-01 19:55:10 +0000304 TLI.isTypeLegal(ValueVT))
305 return DAG.getNode(ISD::BITCAST, DL, ValueVT, Val);
Michael J. Spencere70c5262010-10-16 08:25:21 +0000306
Nadav Rotemb05f14b2011-06-12 14:49:38 +0000307 // Handle cases such as i8 -> <1 x i1>
Bill Wendling12931302012-09-26 04:04:19 +0000308 if (ValueVT.getVectorNumElements() != 1) {
309 LLVMContext &Ctx = *DAG.getContext();
310 Twine ErrMsg("non-trivial scalar-to-vector conversion");
311 if (const Instruction *I = dyn_cast_or_null<Instruction>(V)) {
312 if (const CallInst *CI = dyn_cast<CallInst>(I))
313 if (isa<InlineAsm>(CI->getCalledValue()))
314 ErrMsg = ErrMsg + ", possible invalid constraint for vector type";
315 Ctx.emitError(I, ErrMsg);
316 } else {
317 Ctx.emitError(ErrMsg);
318 }
Chad Rosierf0b07552013-05-01 19:49:26 +0000319 return DAG.getUNDEF(ValueVT);
Bill Wendling12931302012-09-26 04:04:19 +0000320 }
Nadav Rotemb05f14b2011-06-12 14:49:38 +0000321
322 if (ValueVT.getVectorNumElements() == 1 &&
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000323 ValueVT.getVectorElementType() != PartEVT) {
324 bool Smaller = ValueVT.bitsLE(PartEVT);
Nadav Rotemb05f14b2011-06-12 14:49:38 +0000325 Val = DAG.getNode((Smaller ? ISD::TRUNCATE : ISD::ANY_EXTEND),
326 DL, ValueVT.getScalarType(), Val);
327 }
328
Chris Lattner3ac18842010-08-24 23:20:40 +0000329 return DAG.getNode(ISD::BUILD_VECTOR, DL, ValueVT, Val);
330}
331
Andrew Trickac6d9be2013-05-25 02:42:55 +0000332static void getCopyToPartsVector(SelectionDAG &DAG, SDLoc dl,
Chris Lattnera13b8602010-08-24 23:10:06 +0000333 SDValue Val, SDValue *Parts, unsigned NumParts,
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000334 MVT PartVT, const Value *V);
Michael J. Spencere70c5262010-10-16 08:25:21 +0000335
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000336/// getCopyToParts - Create a series of nodes that contain the specified value
337/// split into legal parts. If the parts contain more bits than Val, then, for
338/// integers, ExtendKind can be used to specify how to generate the extra bits.
Andrew Trickac6d9be2013-05-25 02:42:55 +0000339static void getCopyToParts(SelectionDAG &DAG, SDLoc DL,
Bill Wendling3ea3c242009-12-22 02:10:19 +0000340 SDValue Val, SDValue *Parts, unsigned NumParts,
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000341 MVT PartVT, const Value *V,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000342 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Owen Andersone50ed302009-08-10 22:56:29 +0000343 EVT ValueVT = Val.getValueType();
Michael J. Spencere70c5262010-10-16 08:25:21 +0000344
Chris Lattnera13b8602010-08-24 23:10:06 +0000345 // Handle the vector case separately.
346 if (ValueVT.isVector())
Bill Wendlingf18eb582012-09-26 06:16:18 +0000347 return getCopyToPartsVector(DAG, DL, Val, Parts, NumParts, PartVT, V);
Michael J. Spencere70c5262010-10-16 08:25:21 +0000348
Chris Lattnera13b8602010-08-24 23:10:06 +0000349 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000350 unsigned PartBits = PartVT.getSizeInBits();
Dale Johannesen8a36f502009-02-25 22:39:13 +0000351 unsigned OrigNumParts = NumParts;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000352 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
353
Chris Lattnera13b8602010-08-24 23:10:06 +0000354 if (NumParts == 0)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000355 return;
356
Chris Lattnera13b8602010-08-24 23:10:06 +0000357 assert(!ValueVT.isVector() && "Vector case handled elsewhere");
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000358 EVT PartEVT = PartVT;
359 if (PartEVT == ValueVT) {
Chris Lattnera13b8602010-08-24 23:10:06 +0000360 assert(NumParts == 1 && "No-op copy with multiple parts!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000361 Parts[0] = Val;
362 return;
363 }
364
Chris Lattnera13b8602010-08-24 23:10:06 +0000365 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
366 // If the parts cover more bits than the value has, promote the value.
367 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
368 assert(NumParts == 1 && "Do not know what to promote to!");
369 Val = DAG.getNode(ISD::FP_EXTEND, DL, PartVT, Val);
370 } else {
Bill Wendling9e8ceb02012-02-23 23:25:25 +0000371 assert((PartVT.isInteger() || PartVT == MVT::x86mmx) &&
372 ValueVT.isInteger() &&
Michael J. Spencere70c5262010-10-16 08:25:21 +0000373 "Unknown mismatch!");
Chris Lattnera13b8602010-08-24 23:10:06 +0000374 ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
375 Val = DAG.getNode(ExtendKind, DL, ValueVT, Val);
Bill Wendling9e8ceb02012-02-23 23:25:25 +0000376 if (PartVT == MVT::x86mmx)
377 Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val);
Chris Lattnera13b8602010-08-24 23:10:06 +0000378 }
379 } else if (PartBits == ValueVT.getSizeInBits()) {
380 // Different types of the same size.
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000381 assert(NumParts == 1 && PartEVT != ValueVT);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000382 Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val);
Chris Lattnera13b8602010-08-24 23:10:06 +0000383 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
384 // If the parts cover less bits than value has, truncate the value.
Bill Wendling9e8ceb02012-02-23 23:25:25 +0000385 assert((PartVT.isInteger() || PartVT == MVT::x86mmx) &&
386 ValueVT.isInteger() &&
Chris Lattnera13b8602010-08-24 23:10:06 +0000387 "Unknown mismatch!");
388 ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
389 Val = DAG.getNode(ISD::TRUNCATE, DL, ValueVT, Val);
Bill Wendling9e8ceb02012-02-23 23:25:25 +0000390 if (PartVT == MVT::x86mmx)
391 Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val);
Chris Lattnera13b8602010-08-24 23:10:06 +0000392 }
393
394 // The value may have changed - recompute ValueVT.
395 ValueVT = Val.getValueType();
396 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
397 "Failed to tile the value with PartVT!");
398
399 if (NumParts == 1) {
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000400 if (PartEVT != ValueVT) {
Bill Wendlingf18eb582012-09-26 06:16:18 +0000401 LLVMContext &Ctx = *DAG.getContext();
402 Twine ErrMsg("scalar-to-vector conversion failed");
403 if (const Instruction *I = dyn_cast_or_null<Instruction>(V)) {
404 if (const CallInst *CI = dyn_cast<CallInst>(I))
405 if (isa<InlineAsm>(CI->getCalledValue()))
406 ErrMsg = ErrMsg + ", possible invalid constraint for vector type";
407 Ctx.emitError(I, ErrMsg);
408 } else {
409 Ctx.emitError(ErrMsg);
410 }
411 }
412
Chris Lattnera13b8602010-08-24 23:10:06 +0000413 Parts[0] = Val;
414 return;
415 }
416
417 // Expand the value into multiple parts.
418 if (NumParts & (NumParts - 1)) {
419 // The number of parts is not a power of 2. Split off and copy the tail.
420 assert(PartVT.isInteger() && ValueVT.isInteger() &&
421 "Do not know what to expand to!");
422 unsigned RoundParts = 1 << Log2_32(NumParts);
423 unsigned RoundBits = RoundParts * PartBits;
424 unsigned OddParts = NumParts - RoundParts;
425 SDValue OddVal = DAG.getNode(ISD::SRL, DL, ValueVT, Val,
426 DAG.getIntPtrConstant(RoundBits));
Bill Wendlingf18eb582012-09-26 06:16:18 +0000427 getCopyToParts(DAG, DL, OddVal, Parts + RoundParts, OddParts, PartVT, V);
Chris Lattnera13b8602010-08-24 23:10:06 +0000428
429 if (TLI.isBigEndian())
430 // The odd parts were reversed by getCopyToParts - unreverse them.
431 std::reverse(Parts + RoundParts, Parts + NumParts);
432
433 NumParts = RoundParts;
434 ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
435 Val = DAG.getNode(ISD::TRUNCATE, DL, ValueVT, Val);
436 }
437
438 // The number of parts is a power of 2. Repeatedly bisect the value using
439 // EXTRACT_ELEMENT.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000440 Parts[0] = DAG.getNode(ISD::BITCAST, DL,
Chris Lattnera13b8602010-08-24 23:10:06 +0000441 EVT::getIntegerVT(*DAG.getContext(),
442 ValueVT.getSizeInBits()),
443 Val);
444
445 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
446 for (unsigned i = 0; i < NumParts; i += StepSize) {
447 unsigned ThisBits = StepSize * PartBits / 2;
448 EVT ThisVT = EVT::getIntegerVT(*DAG.getContext(), ThisBits);
449 SDValue &Part0 = Parts[i];
450 SDValue &Part1 = Parts[i+StepSize/2];
451
452 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, DL,
453 ThisVT, Part0, DAG.getIntPtrConstant(1));
454 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, DL,
455 ThisVT, Part0, DAG.getIntPtrConstant(0));
456
457 if (ThisBits == PartBits && ThisVT != PartVT) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000458 Part0 = DAG.getNode(ISD::BITCAST, DL, PartVT, Part0);
459 Part1 = DAG.getNode(ISD::BITCAST, DL, PartVT, Part1);
Chris Lattnera13b8602010-08-24 23:10:06 +0000460 }
461 }
462 }
463
464 if (TLI.isBigEndian())
465 std::reverse(Parts, Parts + OrigNumParts);
466}
467
468
469/// getCopyToPartsVector - Create a series of nodes that contain the specified
470/// value split into legal parts.
Andrew Trickac6d9be2013-05-25 02:42:55 +0000471static void getCopyToPartsVector(SelectionDAG &DAG, SDLoc DL,
Chris Lattnera13b8602010-08-24 23:10:06 +0000472 SDValue Val, SDValue *Parts, unsigned NumParts,
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000473 MVT PartVT, const Value *V) {
Chris Lattnera13b8602010-08-24 23:10:06 +0000474 EVT ValueVT = Val.getValueType();
475 assert(ValueVT.isVector() && "Not a vector");
476 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Michael J. Spencere70c5262010-10-16 08:25:21 +0000477
Chris Lattnera13b8602010-08-24 23:10:06 +0000478 if (NumParts == 1) {
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000479 EVT PartEVT = PartVT;
480 if (PartEVT == ValueVT) {
Chris Lattnere6f7c262010-08-25 22:49:25 +0000481 // Nothing to do.
482 } else if (PartVT.getSizeInBits() == ValueVT.getSizeInBits()) {
483 // Bitconvert vector->vector case.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000484 Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val);
Chris Lattnere6f7c262010-08-25 22:49:25 +0000485 } else if (PartVT.isVector() &&
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000486 PartEVT.getVectorElementType() == ValueVT.getVectorElementType() &&
487 PartEVT.getVectorNumElements() > ValueVT.getVectorNumElements()) {
Chris Lattnere6f7c262010-08-25 22:49:25 +0000488 EVT ElementVT = PartVT.getVectorElementType();
489 // Vector widening case, e.g. <2 x float> -> <4 x float>. Shuffle in
490 // undef elements.
491 SmallVector<SDValue, 16> Ops;
492 for (unsigned i = 0, e = ValueVT.getVectorNumElements(); i != e; ++i)
493 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL,
Tom Stellard425b76c2013-08-05 22:22:01 +0000494 ElementVT, Val, DAG.getConstant(i,
495 TLI.getVectorIdxTy())));
Michael J. Spencere70c5262010-10-16 08:25:21 +0000496
Chris Lattnere6f7c262010-08-25 22:49:25 +0000497 for (unsigned i = ValueVT.getVectorNumElements(),
498 e = PartVT.getVectorNumElements(); i != e; ++i)
499 Ops.push_back(DAG.getUNDEF(ElementVT));
500
501 Val = DAG.getNode(ISD::BUILD_VECTOR, DL, PartVT, &Ops[0], Ops.size());
502
503 // FIXME: Use CONCAT for 2x -> 4x.
Michael J. Spencere70c5262010-10-16 08:25:21 +0000504
Chris Lattnere6f7c262010-08-25 22:49:25 +0000505 //SDValue UndefElts = DAG.getUNDEF(VectorTy);
506 //Val = DAG.getNode(ISD::CONCAT_VECTORS, DL, PartVT, Val, UndefElts);
Nadav Rotem0b666362011-06-04 20:58:08 +0000507 } else if (PartVT.isVector() &&
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000508 PartEVT.getVectorElementType().bitsGE(
Nadav Rotemb05f14b2011-06-12 14:49:38 +0000509 ValueVT.getVectorElementType()) &&
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000510 PartEVT.getVectorNumElements() == ValueVT.getVectorNumElements()) {
Nadav Rotem0b666362011-06-04 20:58:08 +0000511
512 // Promoted vector extract
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000513 bool Smaller = PartEVT.bitsLE(ValueVT);
Nadav Rotemc6341e62011-06-19 08:49:38 +0000514 Val = DAG.getNode((Smaller ? ISD::TRUNCATE : ISD::ANY_EXTEND),
515 DL, PartVT, Val);
Nadav Rotem0b666362011-06-04 20:58:08 +0000516 } else{
Chris Lattnere6f7c262010-08-25 22:49:25 +0000517 // Vector -> scalar conversion.
Nadav Rotemb05f14b2011-06-12 14:49:38 +0000518 assert(ValueVT.getVectorNumElements() == 1 &&
Chris Lattnere6f7c262010-08-25 22:49:25 +0000519 "Only trivial vector-to-scalar conversions should get here!");
520 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL,
Tom Stellard425b76c2013-08-05 22:22:01 +0000521 PartVT, Val, DAG.getConstant(0, TLI.getVectorIdxTy()));
Nadav Rotemb05f14b2011-06-12 14:49:38 +0000522
523 bool Smaller = ValueVT.bitsLE(PartVT);
524 Val = DAG.getNode((Smaller ? ISD::TRUNCATE : ISD::ANY_EXTEND),
525 DL, PartVT, Val);
Chris Lattnera13b8602010-08-24 23:10:06 +0000526 }
Michael J. Spencere70c5262010-10-16 08:25:21 +0000527
Chris Lattnera13b8602010-08-24 23:10:06 +0000528 Parts[0] = Val;
529 return;
530 }
Michael J. Spencere70c5262010-10-16 08:25:21 +0000531
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000532 // Handle a multi-element vector.
Patrik Hagglundee211d22012-12-19 11:53:21 +0000533 EVT IntermediateVT;
534 MVT RegisterVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000535 unsigned NumIntermediates;
Owen Anderson23b9b192009-08-12 00:36:31 +0000536 unsigned NumRegs = TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT,
Devang Patel8f09bea2010-08-26 20:32:32 +0000537 IntermediateVT,
538 NumIntermediates, RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000539 unsigned NumElements = ValueVT.getVectorNumElements();
Michael J. Spencere70c5262010-10-16 08:25:21 +0000540
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000541 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
542 NumParts = NumRegs; // Silence a compiler warning.
Patrik Hagglundb9e12e52012-12-19 12:33:30 +0000543 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
Michael J. Spencere70c5262010-10-16 08:25:21 +0000544
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000545 // Split the vector into intermediate operands.
546 SmallVector<SDValue, 8> Ops(NumIntermediates);
Bill Wendling3ea3c242009-12-22 02:10:19 +0000547 for (unsigned i = 0; i != NumIntermediates; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000548 if (IntermediateVT.isVector())
Chris Lattnera13b8602010-08-24 23:10:06 +0000549 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000550 IntermediateVT, Val,
Tom Stellard425b76c2013-08-05 22:22:01 +0000551 DAG.getConstant(i * (NumElements / NumIntermediates),
552 TLI.getVectorIdxTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000553 else
Chris Lattnera13b8602010-08-24 23:10:06 +0000554 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL,
Tom Stellard425b76c2013-08-05 22:22:01 +0000555 IntermediateVT, Val,
556 DAG.getConstant(i, TLI.getVectorIdxTy()));
Bill Wendling3ea3c242009-12-22 02:10:19 +0000557 }
Michael J. Spencere70c5262010-10-16 08:25:21 +0000558
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000559 // Split the intermediate operands into legal parts.
560 if (NumParts == NumIntermediates) {
561 // If the register was not expanded, promote or copy the value,
562 // as appropriate.
563 for (unsigned i = 0; i != NumParts; ++i)
Bill Wendlingf18eb582012-09-26 06:16:18 +0000564 getCopyToParts(DAG, DL, Ops[i], &Parts[i], 1, PartVT, V);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000565 } else if (NumParts > 0) {
566 // If the intermediate type was expanded, split each the value into
567 // legal parts.
568 assert(NumParts % NumIntermediates == 0 &&
569 "Must expand into a divisible number of parts!");
570 unsigned Factor = NumParts / NumIntermediates;
571 for (unsigned i = 0; i != NumIntermediates; ++i)
Bill Wendlingf18eb582012-09-26 06:16:18 +0000572 getCopyToParts(DAG, DL, Ops[i], &Parts[i*Factor], Factor, PartVT, V);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000573 }
574}
575
Dan Gohman462f6b52010-05-29 17:53:24 +0000576namespace {
577 /// RegsForValue - This struct represents the registers (physical or virtual)
578 /// that a particular set of values is assigned, and the type information
579 /// about the value. The most common situation is to represent one value at a
580 /// time, but struct or array values are handled element-wise as multiple
581 /// values. The splitting of aggregates is performed recursively, so that we
582 /// never have aggregate-typed registers. The values at this point do not
583 /// necessarily have legal types, so each value may require one or more
584 /// registers of some legal type.
585 ///
586 struct RegsForValue {
587 /// ValueVTs - The value types of the values, which may not be legal, and
588 /// may need be promoted or synthesized from one or more registers.
589 ///
590 SmallVector<EVT, 4> ValueVTs;
591
592 /// RegVTs - The value types of the registers. This is the same size as
593 /// ValueVTs and it records, for each value, what the type of the assigned
594 /// register or registers are. (Individual values are never synthesized
595 /// from more than one type of register.)
596 ///
597 /// With virtual registers, the contents of RegVTs is redundant with TLI's
598 /// getRegisterType member function, however when with physical registers
599 /// it is necessary to have a separate record of the types.
600 ///
Patrik Hagglund8963fec2012-12-19 12:23:01 +0000601 SmallVector<MVT, 4> RegVTs;
Dan Gohman462f6b52010-05-29 17:53:24 +0000602
603 /// Regs - This list holds the registers assigned to the values.
604 /// Each legal or promoted value requires one register, and each
605 /// expanded value requires multiple registers.
606 ///
607 SmallVector<unsigned, 4> Regs;
608
609 RegsForValue() {}
610
611 RegsForValue(const SmallVector<unsigned, 4> &regs,
Patrik Hagglund8963fec2012-12-19 12:23:01 +0000612 MVT regvt, EVT valuevt)
Dan Gohman462f6b52010-05-29 17:53:24 +0000613 : ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
614
Dan Gohman462f6b52010-05-29 17:53:24 +0000615 RegsForValue(LLVMContext &Context, const TargetLowering &tli,
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000616 unsigned Reg, Type *Ty) {
Dan Gohman462f6b52010-05-29 17:53:24 +0000617 ComputeValueVTs(tli, Ty, ValueVTs);
618
619 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
620 EVT ValueVT = ValueVTs[Value];
621 unsigned NumRegs = tli.getNumRegisters(Context, ValueVT);
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +0000622 MVT RegisterVT = tli.getRegisterType(Context, ValueVT);
Dan Gohman462f6b52010-05-29 17:53:24 +0000623 for (unsigned i = 0; i != NumRegs; ++i)
624 Regs.push_back(Reg + i);
625 RegVTs.push_back(RegisterVT);
626 Reg += NumRegs;
627 }
628 }
629
630 /// areValueTypesLegal - Return true if types of all the values are legal.
631 bool areValueTypesLegal(const TargetLowering &TLI) {
632 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Patrik Hagglund8963fec2012-12-19 12:23:01 +0000633 MVT RegisterVT = RegVTs[Value];
Dan Gohman462f6b52010-05-29 17:53:24 +0000634 if (!TLI.isTypeLegal(RegisterVT))
635 return false;
636 }
637 return true;
638 }
639
640 /// append - Add the specified values to this one.
641 void append(const RegsForValue &RHS) {
642 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
643 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
644 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
645 }
646
647 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
648 /// this value and returns the result as a ValueVTs value. This uses
649 /// Chain/Flag as the input and updates them for the output Chain/Flag.
650 /// If the Flag pointer is NULL, no flag is used.
651 SDValue getCopyFromRegs(SelectionDAG &DAG, FunctionLoweringInfo &FuncInfo,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000652 SDLoc dl,
Bill Wendling12931302012-09-26 04:04:19 +0000653 SDValue &Chain, SDValue *Flag,
654 const Value *V = 0) const;
Dan Gohman462f6b52010-05-29 17:53:24 +0000655
656 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
657 /// specified value into the registers specified by this object. This uses
658 /// Chain/Flag as the input and updates them for the output Chain/Flag.
659 /// If the Flag pointer is NULL, no flag is used.
Andrew Trickac6d9be2013-05-25 02:42:55 +0000660 void getCopyToRegs(SDValue Val, SelectionDAG &DAG, SDLoc dl,
Bill Wendlingf18eb582012-09-26 06:16:18 +0000661 SDValue &Chain, SDValue *Flag, const Value *V) const;
Dan Gohman462f6b52010-05-29 17:53:24 +0000662
663 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
664 /// operand list. This adds the code marker, matching input operand index
665 /// (if applicable), and includes the number of values added into it.
666 void AddInlineAsmOperands(unsigned Kind,
667 bool HasMatching, unsigned MatchingIdx,
668 SelectionDAG &DAG,
669 std::vector<SDValue> &Ops) const;
670 };
671}
672
673/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
674/// this value and returns the result as a ValueVT value. This uses
675/// Chain/Flag as the input and updates them for the output Chain/Flag.
676/// If the Flag pointer is NULL, no flag is used.
677SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
678 FunctionLoweringInfo &FuncInfo,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000679 SDLoc dl,
Bill Wendling12931302012-09-26 04:04:19 +0000680 SDValue &Chain, SDValue *Flag,
681 const Value *V) const {
Dan Gohman7da5d3f2010-07-26 18:15:41 +0000682 // A Value with type {} or [0 x %t] needs no registers.
683 if (ValueVTs.empty())
684 return SDValue();
685
Dan Gohman462f6b52010-05-29 17:53:24 +0000686 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
687
688 // Assemble the legal parts into the final values.
689 SmallVector<SDValue, 4> Values(ValueVTs.size());
690 SmallVector<SDValue, 8> Parts;
691 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
692 // Copy the legal parts from the registers.
693 EVT ValueVT = ValueVTs[Value];
694 unsigned NumRegs = TLI.getNumRegisters(*DAG.getContext(), ValueVT);
Patrik Hagglund8963fec2012-12-19 12:23:01 +0000695 MVT RegisterVT = RegVTs[Value];
Dan Gohman462f6b52010-05-29 17:53:24 +0000696
697 Parts.resize(NumRegs);
698 for (unsigned i = 0; i != NumRegs; ++i) {
699 SDValue P;
700 if (Flag == 0) {
701 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
702 } else {
703 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
704 *Flag = P.getValue(2);
705 }
706
707 Chain = P.getValue(1);
Chris Lattnerd5b4db92010-12-13 01:11:17 +0000708 Parts[i] = P;
Dan Gohman462f6b52010-05-29 17:53:24 +0000709
710 // If the source register was virtual and if we know something about it,
711 // add an assert node.
Chris Lattnerd5b4db92010-12-13 01:11:17 +0000712 if (!TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) ||
Cameron Zwariche1497b92011-02-24 10:00:08 +0000713 !RegisterVT.isInteger() || RegisterVT.isVector())
Chris Lattnerd5b4db92010-12-13 01:11:17 +0000714 continue;
Cameron Zwariche1497b92011-02-24 10:00:08 +0000715
716 const FunctionLoweringInfo::LiveOutInfo *LOI =
717 FuncInfo.GetLiveOutRegInfo(Regs[Part+i]);
718 if (!LOI)
719 continue;
Dan Gohman462f6b52010-05-29 17:53:24 +0000720
Chris Lattnerd5b4db92010-12-13 01:11:17 +0000721 unsigned RegSize = RegisterVT.getSizeInBits();
Cameron Zwariche1497b92011-02-24 10:00:08 +0000722 unsigned NumSignBits = LOI->NumSignBits;
723 unsigned NumZeroBits = LOI->KnownZero.countLeadingOnes();
Dan Gohman462f6b52010-05-29 17:53:24 +0000724
Quentin Colombeta3fb49c2013-06-18 20:14:39 +0000725 if (NumZeroBits == RegSize) {
726 // The current value is a zero.
727 // Explicitly express that as it would be easier for
728 // optimizations to kick in.
729 Parts[i] = DAG.getConstant(0, RegisterVT);
730 continue;
731 }
732
Chris Lattnerd5b4db92010-12-13 01:11:17 +0000733 // FIXME: We capture more information than the dag can represent. For
734 // now, just use the tightest assertzext/assertsext possible.
735 bool isSExt = true;
736 EVT FromVT(MVT::Other);
737 if (NumSignBits == RegSize)
738 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
739 else if (NumZeroBits >= RegSize-1)
740 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
741 else if (NumSignBits > RegSize-8)
742 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
743 else if (NumZeroBits >= RegSize-8)
744 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
745 else if (NumSignBits > RegSize-16)
746 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
747 else if (NumZeroBits >= RegSize-16)
748 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
749 else if (NumSignBits > RegSize-32)
750 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
751 else if (NumZeroBits >= RegSize-32)
752 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
753 else
754 continue;
Dan Gohman462f6b52010-05-29 17:53:24 +0000755
Chris Lattnerd5b4db92010-12-13 01:11:17 +0000756 // Add an assertion node.
757 assert(FromVT != MVT::Other);
758 Parts[i] = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
759 RegisterVT, P, DAG.getValueType(FromVT));
Dan Gohman462f6b52010-05-29 17:53:24 +0000760 }
761
762 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Bill Wendling12931302012-09-26 04:04:19 +0000763 NumRegs, RegisterVT, ValueVT, V);
Dan Gohman462f6b52010-05-29 17:53:24 +0000764 Part += NumRegs;
765 Parts.clear();
766 }
767
768 return DAG.getNode(ISD::MERGE_VALUES, dl,
769 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
770 &Values[0], ValueVTs.size());
771}
772
773/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
774/// specified value into the registers specified by this object. This uses
775/// Chain/Flag as the input and updates them for the output Chain/Flag.
776/// If the Flag pointer is NULL, no flag is used.
Andrew Trickac6d9be2013-05-25 02:42:55 +0000777void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, SDLoc dl,
Bill Wendlingf18eb582012-09-26 06:16:18 +0000778 SDValue &Chain, SDValue *Flag,
779 const Value *V) const {
Dan Gohman462f6b52010-05-29 17:53:24 +0000780 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
781
782 // Get the list of the values's legal parts.
783 unsigned NumRegs = Regs.size();
784 SmallVector<SDValue, 8> Parts(NumRegs);
785 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
786 EVT ValueVT = ValueVTs[Value];
787 unsigned NumParts = TLI.getNumRegisters(*DAG.getContext(), ValueVT);
Patrik Hagglund8963fec2012-12-19 12:23:01 +0000788 MVT RegisterVT = RegVTs[Value];
Evan Cheng2766a472012-12-06 19:13:27 +0000789 ISD::NodeType ExtendKind =
790 TLI.isZExtFree(Val, RegisterVT)? ISD::ZERO_EXTEND: ISD::ANY_EXTEND;
Dan Gohman462f6b52010-05-29 17:53:24 +0000791
Chris Lattner3ac18842010-08-24 23:20:40 +0000792 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Evan Cheng2766a472012-12-06 19:13:27 +0000793 &Parts[Part], NumParts, RegisterVT, V, ExtendKind);
Dan Gohman462f6b52010-05-29 17:53:24 +0000794 Part += NumParts;
795 }
796
797 // Copy the parts into the registers.
798 SmallVector<SDValue, 8> Chains(NumRegs);
799 for (unsigned i = 0; i != NumRegs; ++i) {
800 SDValue Part;
801 if (Flag == 0) {
802 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
803 } else {
804 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
805 *Flag = Part.getValue(1);
806 }
807
808 Chains[i] = Part.getValue(0);
809 }
810
811 if (NumRegs == 1 || Flag)
812 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
813 // flagged to it. That is the CopyToReg nodes and the user are considered
814 // a single scheduling unit. If we create a TokenFactor and return it as
815 // chain, then the TokenFactor is both a predecessor (operand) of the
816 // user as well as a successor (the TF operands are flagged to the user).
817 // c1, f1 = CopyToReg
818 // c2, f2 = CopyToReg
819 // c3 = TokenFactor c1, c2
820 // ...
821 // = op c3, ..., f2
822 Chain = Chains[NumRegs-1];
823 else
824 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
825}
826
827/// AddInlineAsmOperands - Add this value to the specified inlineasm node
828/// operand list. This adds the code marker and includes the number of
829/// values added into it.
830void RegsForValue::AddInlineAsmOperands(unsigned Code, bool HasMatching,
831 unsigned MatchingIdx,
832 SelectionDAG &DAG,
833 std::vector<SDValue> &Ops) const {
834 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
835
836 unsigned Flag = InlineAsm::getFlagWord(Code, Regs.size());
837 if (HasMatching)
838 Flag = InlineAsm::getFlagWordForMatchingOp(Flag, MatchingIdx);
Jakob Stoklund Olesen459b74b2011-10-12 23:37:29 +0000839 else if (!Regs.empty() &&
840 TargetRegisterInfo::isVirtualRegister(Regs.front())) {
841 // Put the register class of the virtual registers in the flag word. That
842 // way, later passes can recompute register class constraints for inline
843 // assembly as well as normal instructions.
844 // Don't do this for tied operands that can use the regclass information
845 // from the def.
846 const MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
847 const TargetRegisterClass *RC = MRI.getRegClass(Regs.front());
848 Flag = InlineAsm::getFlagWordForRegClass(Flag, RC->getID());
849 }
850
Dan Gohman462f6b52010-05-29 17:53:24 +0000851 SDValue Res = DAG.getTargetConstant(Flag, MVT::i32);
852 Ops.push_back(Res);
853
854 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
855 unsigned NumRegs = TLI.getNumRegisters(*DAG.getContext(), ValueVTs[Value]);
Patrik Hagglund8963fec2012-12-19 12:23:01 +0000856 MVT RegisterVT = RegVTs[Value];
Dan Gohman462f6b52010-05-29 17:53:24 +0000857 for (unsigned i = 0; i != NumRegs; ++i) {
858 assert(Reg < Regs.size() && "Mismatch in # registers expected");
859 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
860 }
861 }
862}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000863
Owen Anderson243eb9e2011-12-08 22:15:21 +0000864void SelectionDAGBuilder::init(GCFunctionInfo *gfi, AliasAnalysis &aa,
865 const TargetLibraryInfo *li) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000866 AA = &aa;
867 GFI = gfi;
Owen Anderson243eb9e2011-12-08 22:15:21 +0000868 LibInfo = li;
Micah Villmow3574eca2012-10-08 16:38:25 +0000869 TD = DAG.getTarget().getDataLayout();
Richard Smithcb1f68d2012-08-22 00:42:39 +0000870 Context = DAG.getContext();
Bill Wendling4ed1fb02011-10-15 01:00:26 +0000871 LPadToCallSiteMap.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000872}
873
Dan Gohmanb02b62a2010-04-14 18:24:06 +0000874/// clear - Clear out the current SelectionDAG and the associated
Dan Gohman2048b852009-11-23 18:04:58 +0000875/// state and prepare this SelectionDAGBuilder object to be used
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000876/// for a new block. This doesn't clear out information about
877/// additional blocks that are needed to complete switch lowering
878/// or PHI node updating; that information is cleared out as it is
879/// consumed.
Dan Gohman2048b852009-11-23 18:04:58 +0000880void SelectionDAGBuilder::clear() {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000881 NodeMap.clear();
Devang Patel9126c0d2010-06-01 19:59:01 +0000882 UnusedArgNodeMap.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000883 PendingLoads.clear();
884 PendingExports.clear();
Andrew Trickea5db0c2013-05-25 02:20:36 +0000885 CurInst = NULL;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000886 HasTailCall = false;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000887}
888
Devang Patel23385752011-05-23 17:44:13 +0000889/// clearDanglingDebugInfo - Clear the dangling debug information
Benjamin Kramerd9b0b022012-06-02 10:20:22 +0000890/// map. This function is separated from the clear so that debug
Devang Patel23385752011-05-23 17:44:13 +0000891/// information that is dangling in a basic block can be properly
892/// resolved in a different basic block. This allows the
893/// SelectionDAG to resolve dangling debug information attached
894/// to PHI nodes.
895void SelectionDAGBuilder::clearDanglingDebugInfo() {
896 DanglingDebugInfoMap.clear();
897}
898
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000899/// getRoot - Return the current virtual root of the Selection DAG,
900/// flushing any PendingLoad items. This must be done before emitting
901/// a store or any other node that may need to be ordered after any
902/// prior load instructions.
903///
Dan Gohman2048b852009-11-23 18:04:58 +0000904SDValue SelectionDAGBuilder::getRoot() {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000905 if (PendingLoads.empty())
906 return DAG.getRoot();
907
908 if (PendingLoads.size() == 1) {
909 SDValue Root = PendingLoads[0];
910 DAG.setRoot(Root);
911 PendingLoads.clear();
912 return Root;
913 }
914
915 // Otherwise, we have to make a token factor node.
Andrew Trickac6d9be2013-05-25 02:42:55 +0000916 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000917 &PendingLoads[0], PendingLoads.size());
918 PendingLoads.clear();
919 DAG.setRoot(Root);
920 return Root;
921}
922
923/// getControlRoot - Similar to getRoot, but instead of flushing all the
924/// PendingLoad items, flush all the PendingExports items. It is necessary
925/// to do this before emitting a terminator instruction.
926///
Dan Gohman2048b852009-11-23 18:04:58 +0000927SDValue SelectionDAGBuilder::getControlRoot() {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000928 SDValue Root = DAG.getRoot();
929
930 if (PendingExports.empty())
931 return Root;
932
933 // Turn all of the CopyToReg chains into one factored node.
934 if (Root.getOpcode() != ISD::EntryToken) {
935 unsigned i = 0, e = PendingExports.size();
936 for (; i != e; ++i) {
937 assert(PendingExports[i].getNode()->getNumOperands() > 1);
938 if (PendingExports[i].getNode()->getOperand(0) == Root)
939 break; // Don't add the root if we already indirectly depend on it.
940 }
941
942 if (i == e)
943 PendingExports.push_back(Root);
944 }
945
Andrew Trickac6d9be2013-05-25 02:42:55 +0000946 Root = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000947 &PendingExports[0],
948 PendingExports.size());
949 PendingExports.clear();
950 DAG.setRoot(Root);
951 return Root;
952}
953
Dan Gohman46510a72010-04-15 01:51:59 +0000954void SelectionDAGBuilder::visit(const Instruction &I) {
Dan Gohmanc105a2b2010-04-22 20:55:53 +0000955 // Set up outgoing PHI node register values before emitting the terminator.
956 if (isa<TerminatorInst>(&I))
957 HandlePHINodesInSuccessorBlocks(I.getParent());
958
Andrew Trickdd0fb012013-05-25 03:08:10 +0000959 ++SDNodeOrder;
960
Andrew Trickea5db0c2013-05-25 02:20:36 +0000961 CurInst = &I;
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000962
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000963 visit(I.getOpcode(), I);
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000964
Dan Gohman92884f72010-04-20 15:03:56 +0000965 if (!isa<TerminatorInst>(&I) && !HasTailCall)
966 CopyToExportRegsIfNeeded(&I);
967
Andrew Trickea5db0c2013-05-25 02:20:36 +0000968 CurInst = NULL;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000969}
970
Dan Gohmanba5be5c2010-04-20 15:00:41 +0000971void SelectionDAGBuilder::visitPHI(const PHINode &) {
972 llvm_unreachable("SelectionDAGBuilder shouldn't visit PHI nodes!");
973}
974
Dan Gohman46510a72010-04-15 01:51:59 +0000975void SelectionDAGBuilder::visit(unsigned Opcode, const User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000976 // Note: this doesn't use InstVisitor, because it has to work with
977 // ConstantExpr's in addition to instructions.
978 switch (Opcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000979 default: llvm_unreachable("Unknown instruction type encountered!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000980 // Build the switch statement using the Instruction.def file.
981#define HANDLE_INST(NUM, OPCODE, CLASS) \
Galina Kistanova72ea0c92012-07-19 04:50:12 +0000982 case Instruction::OPCODE: visit##OPCODE((const CLASS&)I); break;
Chandler Carruth0b8c9a82013-01-02 11:36:10 +0000983#include "llvm/IR/Instruction.def"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000984 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000985}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000986
Dale Johannesenbdc09d92010-07-16 00:02:08 +0000987// resolveDanglingDebugInfo - if we saw an earlier dbg_value referring to V,
988// generate the debug data structures now that we've seen its definition.
989void SelectionDAGBuilder::resolveDanglingDebugInfo(const Value *V,
990 SDValue Val) {
991 DanglingDebugInfo &DDI = DanglingDebugInfoMap[V];
Devang Patel4cf81c42010-08-26 23:35:15 +0000992 if (DDI.getDI()) {
993 const DbgValueInst *DI = DDI.getDI();
Dale Johannesenbdc09d92010-07-16 00:02:08 +0000994 DebugLoc dl = DDI.getdl();
995 unsigned DbgSDNodeOrder = DDI.getSDNodeOrder();
Devang Patel4cf81c42010-08-26 23:35:15 +0000996 MDNode *Variable = DI->getVariable();
997 uint64_t Offset = DI->getOffset();
Dale Johannesenbdc09d92010-07-16 00:02:08 +0000998 SDDbgValue *SDV;
999 if (Val.getNode()) {
Devang Patel78a06e52010-08-25 20:39:26 +00001000 if (!EmitFuncArgumentDbgValue(V, Variable, Offset, Val)) {
Dale Johannesenbdc09d92010-07-16 00:02:08 +00001001 SDV = DAG.getDbgValue(Variable, Val.getNode(),
1002 Val.getResNo(), Offset, dl, DbgSDNodeOrder);
1003 DAG.AddDbgValue(SDV, Val.getNode(), false);
1004 }
Owen Anderson95771af2011-02-25 21:41:48 +00001005 } else
Adrian Prantl5da4e4f2013-05-22 18:02:19 +00001006 DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n");
Dale Johannesenbdc09d92010-07-16 00:02:08 +00001007 DanglingDebugInfoMap[V] = DanglingDebugInfo();
1008 }
1009}
1010
Nick Lewycky8de34002011-09-30 22:19:53 +00001011/// getValue - Return an SDValue for the given Value.
Dan Gohman2048b852009-11-23 18:04:58 +00001012SDValue SelectionDAGBuilder::getValue(const Value *V) {
Dan Gohman28a17352010-07-01 01:59:43 +00001013 // If we already have an SDValue for this value, use it. It's important
1014 // to do this first, so that we don't create a CopyFromReg if we already
1015 // have a regular SDValue.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001016 SDValue &N = NodeMap[V];
1017 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001018
Dan Gohman28a17352010-07-01 01:59:43 +00001019 // If there's a virtual register allocated and initialized for this
1020 // value, use it.
1021 DenseMap<const Value *, unsigned>::iterator It = FuncInfo.ValueMap.find(V);
1022 if (It != FuncInfo.ValueMap.end()) {
1023 unsigned InReg = It->second;
Bill Wendlingba54bca2013-06-19 21:36:55 +00001024 RegsForValue RFV(*DAG.getContext(), *TM.getTargetLowering(),
1025 InReg, V->getType());
Dan Gohman28a17352010-07-01 01:59:43 +00001026 SDValue Chain = DAG.getEntryNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +00001027 N = RFV.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(), Chain, NULL, V);
Devang Patel8f314282011-01-25 18:09:58 +00001028 resolveDanglingDebugInfo(V, N);
1029 return N;
Dan Gohman28a17352010-07-01 01:59:43 +00001030 }
1031
1032 // Otherwise create a new SDValue and remember it.
1033 SDValue Val = getValueImpl(V);
1034 NodeMap[V] = Val;
Dale Johannesenbdc09d92010-07-16 00:02:08 +00001035 resolveDanglingDebugInfo(V, Val);
Dan Gohman28a17352010-07-01 01:59:43 +00001036 return Val;
1037}
1038
1039/// getNonRegisterValue - Return an SDValue for the given Value, but
1040/// don't look in FuncInfo.ValueMap for a virtual register.
1041SDValue SelectionDAGBuilder::getNonRegisterValue(const Value *V) {
1042 // If we already have an SDValue for this value, use it.
1043 SDValue &N = NodeMap[V];
1044 if (N.getNode()) return N;
1045
1046 // Otherwise create a new SDValue and remember it.
1047 SDValue Val = getValueImpl(V);
1048 NodeMap[V] = Val;
Dale Johannesenbdc09d92010-07-16 00:02:08 +00001049 resolveDanglingDebugInfo(V, Val);
Dan Gohman28a17352010-07-01 01:59:43 +00001050 return Val;
1051}
1052
Dale Johannesenbdc09d92010-07-16 00:02:08 +00001053/// getValueImpl - Helper function for getValue and getNonRegisterValue.
Dan Gohman28a17352010-07-01 01:59:43 +00001054/// Create an SDValue for the given value.
1055SDValue SelectionDAGBuilder::getValueImpl(const Value *V) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00001056 const TargetLowering *TLI = TM.getTargetLowering();
1057
Dan Gohman383b5f62010-04-17 15:32:28 +00001058 if (const Constant *C = dyn_cast<Constant>(V)) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00001059 EVT VT = TLI->getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001060
Dan Gohman383b5f62010-04-17 15:32:28 +00001061 if (const ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman28a17352010-07-01 01:59:43 +00001062 return DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001063
Dan Gohman383b5f62010-04-17 15:32:28 +00001064 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001065 return DAG.getGlobalAddress(GV, getCurSDLoc(), VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001066
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001067 if (isa<ConstantPointerNull>(C))
Bill Wendlingba54bca2013-06-19 21:36:55 +00001068 return DAG.getConstant(0, TLI->getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001069
Dan Gohman383b5f62010-04-17 15:32:28 +00001070 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman28a17352010-07-01 01:59:43 +00001071 return DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001072
Nate Begeman9008ca62009-04-27 18:41:29 +00001073 if (isa<UndefValue>(C) && !V->getType()->isAggregateType())
Dan Gohman28a17352010-07-01 01:59:43 +00001074 return DAG.getUNDEF(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001075
Dan Gohman383b5f62010-04-17 15:32:28 +00001076 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001077 visit(CE->getOpcode(), *CE);
1078 SDValue N1 = NodeMap[V];
Dan Gohmanac7d05c2010-04-16 16:55:18 +00001079 assert(N1.getNode() && "visit didn't populate the NodeMap!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001080 return N1;
1081 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001082
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001083 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
1084 SmallVector<SDValue, 4> Constants;
1085 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1086 OI != OE; ++OI) {
1087 SDNode *Val = getValue(*OI).getNode();
Dan Gohmaned48caf2009-09-08 01:44:02 +00001088 // If the operand is an empty aggregate, there are no values.
1089 if (!Val) continue;
1090 // Add each leaf value from the operand to the Constants list
1091 // to form a flattened list of all the values.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001092 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
1093 Constants.push_back(SDValue(Val, i));
1094 }
Bill Wendling87710f02009-12-21 23:47:40 +00001095
Bill Wendling4533cac2010-01-28 21:51:40 +00001096 return DAG.getMergeValues(&Constants[0], Constants.size(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00001097 getCurSDLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001098 }
Stephen Lin155615d2013-07-08 00:37:03 +00001099
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00001100 if (const ConstantDataSequential *CDS =
1101 dyn_cast<ConstantDataSequential>(C)) {
1102 SmallVector<SDValue, 4> Ops;
Chris Lattner0f193b82012-01-25 01:27:20 +00001103 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) {
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00001104 SDNode *Val = getValue(CDS->getElementAsConstant(i)).getNode();
1105 // Add each leaf value from the operand to the Constants list
1106 // to form a flattened list of all the values.
1107 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
1108 Ops.push_back(SDValue(Val, i));
1109 }
1110
1111 if (isa<ArrayType>(CDS->getType()))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001112 return DAG.getMergeValues(&Ops[0], Ops.size(), getCurSDLoc());
1113 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurSDLoc(),
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00001114 VT, &Ops[0], Ops.size());
1115 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001116
Duncan Sands1df98592010-02-16 11:11:14 +00001117 if (C->getType()->isStructTy() || C->getType()->isArrayTy()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001118 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1119 "Unknown struct or array constant!");
1120
Owen Andersone50ed302009-08-10 22:56:29 +00001121 SmallVector<EVT, 4> ValueVTs;
Bill Wendlingba54bca2013-06-19 21:36:55 +00001122 ComputeValueVTs(*TLI, C->getType(), ValueVTs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001123 unsigned NumElts = ValueVTs.size();
1124 if (NumElts == 0)
1125 return SDValue(); // empty struct
1126 SmallVector<SDValue, 4> Constants(NumElts);
1127 for (unsigned i = 0; i != NumElts; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00001128 EVT EltVT = ValueVTs[i];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001129 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +00001130 Constants[i] = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001131 else if (EltVT.isFloatingPoint())
1132 Constants[i] = DAG.getConstantFP(0, EltVT);
1133 else
1134 Constants[i] = DAG.getConstant(0, EltVT);
1135 }
Bill Wendling87710f02009-12-21 23:47:40 +00001136
Bill Wendling4533cac2010-01-28 21:51:40 +00001137 return DAG.getMergeValues(&Constants[0], NumElts,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001138 getCurSDLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001139 }
1140
Dan Gohman383b5f62010-04-17 15:32:28 +00001141 if (const BlockAddress *BA = dyn_cast<BlockAddress>(C))
Dan Gohman29cbade2009-11-20 23:18:13 +00001142 return DAG.getBlockAddress(BA, VT);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001143
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001144 VectorType *VecTy = cast<VectorType>(V->getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001145 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001146
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001147 // Now that we know the number and type of the elements, get that number of
1148 // elements into the Ops array based on what kind of constant it is.
1149 SmallVector<SDValue, 16> Ops;
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00001150 if (const ConstantVector *CV = dyn_cast<ConstantVector>(C)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001151 for (unsigned i = 0; i != NumElements; ++i)
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00001152 Ops.push_back(getValue(CV->getOperand(i)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001153 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00001154 assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!");
Bill Wendlingba54bca2013-06-19 21:36:55 +00001155 EVT EltVT = TLI->getValueType(VecTy->getElementType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001156
1157 SDValue Op;
Nate Begeman9008ca62009-04-27 18:41:29 +00001158 if (EltVT.isFloatingPoint())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001159 Op = DAG.getConstantFP(0, EltVT);
1160 else
1161 Op = DAG.getConstant(0, EltVT);
1162 Ops.assign(NumElements, Op);
1163 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001164
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001165 // Create a BUILD_VECTOR node.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001166 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurSDLoc(),
Bill Wendling4533cac2010-01-28 21:51:40 +00001167 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001168 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001169
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001170 // If this is a static alloca, generate it as the frameindex instead of
1171 // computation.
1172 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1173 DenseMap<const AllocaInst*, int>::iterator SI =
1174 FuncInfo.StaticAllocaMap.find(AI);
1175 if (SI != FuncInfo.StaticAllocaMap.end())
Bill Wendlingba54bca2013-06-19 21:36:55 +00001176 return DAG.getFrameIndex(SI->second, TLI->getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001177 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001178
Dan Gohman28a17352010-07-01 01:59:43 +00001179 // If this is an instruction which fast-isel has deferred, select it now.
1180 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
Dan Gohman84023e02010-07-10 09:00:22 +00001181 unsigned InReg = FuncInfo.InitializeRegForValue(Inst);
Bill Wendlingba54bca2013-06-19 21:36:55 +00001182 RegsForValue RFV(*DAG.getContext(), *TLI, InReg, Inst->getType());
Dan Gohman84023e02010-07-10 09:00:22 +00001183 SDValue Chain = DAG.getEntryNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +00001184 return RFV.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(), Chain, NULL, V);
Dan Gohman28a17352010-07-01 01:59:43 +00001185 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001186
Dan Gohman28a17352010-07-01 01:59:43 +00001187 llvm_unreachable("Can't get register for value!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001188}
1189
Dan Gohman46510a72010-04-15 01:51:59 +00001190void SelectionDAGBuilder::visitRet(const ReturnInst &I) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00001191 const TargetLowering *TLI = TM.getTargetLowering();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001192 SDValue Chain = getControlRoot();
1193 SmallVector<ISD::OutputArg, 8> Outs;
Dan Gohmanc9403652010-07-07 15:54:55 +00001194 SmallVector<SDValue, 8> OutVals;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00001195
Dan Gohman7451d3e2010-05-29 17:03:36 +00001196 if (!FuncInfo.CanLowerReturn) {
1197 unsigned DemoteReg = FuncInfo.DemoteRegister;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001198 const Function *F = I.getParent()->getParent();
1199
1200 // Emit a store of the return value through the virtual register.
1201 // Leave Outs empty so that LowerReturn won't try to load return
1202 // registers the usual way.
1203 SmallVector<EVT, 1> PtrValueVTs;
Bill Wendlingba54bca2013-06-19 21:36:55 +00001204 ComputeValueVTs(*TLI, PointerType::getUnqual(F->getReturnType()),
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001205 PtrValueVTs);
1206
1207 SDValue RetPtr = DAG.getRegister(DemoteReg, PtrValueVTs[0]);
1208 SDValue RetOp = getValue(I.getOperand(0));
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00001209
Owen Andersone50ed302009-08-10 22:56:29 +00001210 SmallVector<EVT, 4> ValueVTs;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001211 SmallVector<uint64_t, 4> Offsets;
Bill Wendlingba54bca2013-06-19 21:36:55 +00001212 ComputeValueVTs(*TLI, I.getOperand(0)->getType(), ValueVTs, &Offsets);
Dan Gohman7ea1ca62008-10-21 20:00:42 +00001213 unsigned NumValues = ValueVTs.size();
Dan Gohman7ea1ca62008-10-21 20:00:42 +00001214
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001215 SmallVector<SDValue, 4> Chains(NumValues);
Bill Wendling87710f02009-12-21 23:47:40 +00001216 for (unsigned i = 0; i != NumValues; ++i) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001217 SDValue Add = DAG.getNode(ISD::ADD, getCurSDLoc(),
Chris Lattnera13b8602010-08-24 23:10:06 +00001218 RetPtr.getValueType(), RetPtr,
1219 DAG.getIntPtrConstant(Offsets[i]));
Bill Wendling87710f02009-12-21 23:47:40 +00001220 Chains[i] =
Andrew Trickac6d9be2013-05-25 02:42:55 +00001221 DAG.getStore(Chain, getCurSDLoc(),
Bill Wendling87710f02009-12-21 23:47:40 +00001222 SDValue(RetOp.getNode(), RetOp.getResNo() + i),
Chris Lattner84bd98a2010-09-21 18:58:22 +00001223 // FIXME: better loc info would be nice.
1224 Add, MachinePointerInfo(), false, false, 0);
Bill Wendling87710f02009-12-21 23:47:40 +00001225 }
1226
Andrew Trickac6d9be2013-05-25 02:42:55 +00001227 Chain = DAG.getNode(ISD::TokenFactor, getCurSDLoc(),
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001228 MVT::Other, &Chains[0], NumValues);
Chris Lattner25d58372010-02-28 18:53:13 +00001229 } else if (I.getNumOperands() != 0) {
1230 SmallVector<EVT, 4> ValueVTs;
Bill Wendlingba54bca2013-06-19 21:36:55 +00001231 ComputeValueVTs(*TLI, I.getOperand(0)->getType(), ValueVTs);
Chris Lattner25d58372010-02-28 18:53:13 +00001232 unsigned NumValues = ValueVTs.size();
1233 if (NumValues) {
1234 SDValue RetOp = getValue(I.getOperand(0));
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001235 for (unsigned j = 0, f = NumValues; j != f; ++j) {
1236 EVT VT = ValueVTs[j];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001237
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001238 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001239
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001240 const Function *F = I.getParent()->getParent();
Bill Wendling8b62abd2012-12-30 13:01:51 +00001241 if (F->getAttributes().hasAttribute(AttributeSet::ReturnIndex,
1242 Attribute::SExt))
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001243 ExtendKind = ISD::SIGN_EXTEND;
Bill Wendling8b62abd2012-12-30 13:01:51 +00001244 else if (F->getAttributes().hasAttribute(AttributeSet::ReturnIndex,
1245 Attribute::ZExt))
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001246 ExtendKind = ISD::ZERO_EXTEND;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001247
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001248 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger())
Bill Wendlingba54bca2013-06-19 21:36:55 +00001249 VT = TLI->getTypeForExtArgOrReturn(VT.getSimpleVT(), ExtendKind);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001250
Bill Wendlingba54bca2013-06-19 21:36:55 +00001251 unsigned NumParts = TLI->getNumRegisters(*DAG.getContext(), VT);
1252 MVT PartVT = TLI->getRegisterType(*DAG.getContext(), VT);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001253 SmallVector<SDValue, 4> Parts(NumParts);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001254 getCopyToParts(DAG, getCurSDLoc(),
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001255 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Bill Wendlingf18eb582012-09-26 06:16:18 +00001256 &Parts[0], NumParts, PartVT, &I, ExtendKind);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001257
1258 // 'inreg' on function refers to return value
1259 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Bill Wendling8b62abd2012-12-30 13:01:51 +00001260 if (F->getAttributes().hasAttribute(AttributeSet::ReturnIndex,
1261 Attribute::InReg))
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001262 Flags.setInReg();
1263
1264 // Propagate extension type if any
Cameron Zwarich8df6bf52011-03-16 22:20:07 +00001265 if (ExtendKind == ISD::SIGN_EXTEND)
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001266 Flags.setSExt();
Cameron Zwarich8df6bf52011-03-16 22:20:07 +00001267 else if (ExtendKind == ISD::ZERO_EXTEND)
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00001268 Flags.setZExt();
1269
Dan Gohmanc9403652010-07-07 15:54:55 +00001270 for (unsigned i = 0; i < NumParts; ++i) {
1271 Outs.push_back(ISD::OutputArg(Flags, Parts[i].getValueType(),
Tom Stellardd0716b02013-10-23 00:44:24 +00001272 VT, /*isfixed=*/true, 0, 0));
Dan Gohmanc9403652010-07-07 15:54:55 +00001273 OutVals.push_back(Parts[i]);
1274 }
Evan Cheng3927f432009-03-25 20:20:11 +00001275 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001276 }
1277 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001278
1279 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001280 CallingConv::ID CallConv =
1281 DAG.getMachineFunction().getFunction()->getCallingConv();
Bill Wendlingba54bca2013-06-19 21:36:55 +00001282 Chain = TM.getTargetLowering()->LowerReturn(Chain, CallConv, isVarArg,
1283 Outs, OutVals, getCurSDLoc(),
1284 DAG);
Dan Gohman5e866062009-08-06 15:37:27 +00001285
1286 // Verify that the target's LowerReturn behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00001287 assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00001288 "LowerReturn didn't return a valid chain!");
1289
1290 // Update the DAG with the new chain value resulting from return lowering.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001291 DAG.setRoot(Chain);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001292}
1293
Dan Gohmanad62f532009-04-23 23:13:24 +00001294/// CopyToExportRegsIfNeeded - If the given value has virtual registers
1295/// created for it, emit nodes to copy the value into the virtual
1296/// registers.
Dan Gohman46510a72010-04-15 01:51:59 +00001297void SelectionDAGBuilder::CopyToExportRegsIfNeeded(const Value *V) {
Rafael Espindola3fa82832011-05-13 15:18:06 +00001298 // Skip empty types
1299 if (V->getType()->isEmptyTy())
1300 return;
1301
Dan Gohman33b7a292010-04-16 17:15:02 +00001302 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
1303 if (VMI != FuncInfo.ValueMap.end()) {
1304 assert(!V->use_empty() && "Unused value assigned virtual registers!");
1305 CopyValueToVirtualRegister(V, VMI->second);
Dan Gohmanad62f532009-04-23 23:13:24 +00001306 }
1307}
1308
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001309/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1310/// the current basic block, add it to ValueMap now so that we'll get a
1311/// CopyTo/FromReg.
Dan Gohman46510a72010-04-15 01:51:59 +00001312void SelectionDAGBuilder::ExportFromCurrentBlock(const Value *V) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001313 // No need to export constants.
1314 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001315
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001316 // Already exported?
1317 if (FuncInfo.isExportedInst(V)) return;
1318
1319 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1320 CopyValueToVirtualRegister(V, Reg);
1321}
1322
Dan Gohman46510a72010-04-15 01:51:59 +00001323bool SelectionDAGBuilder::isExportableFromCurrentBlock(const Value *V,
Dan Gohman2048b852009-11-23 18:04:58 +00001324 const BasicBlock *FromBB) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001325 // The operands of the setcc have to be in this block. We don't know
1326 // how to export them from some other block.
Dan Gohman46510a72010-04-15 01:51:59 +00001327 if (const Instruction *VI = dyn_cast<Instruction>(V)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001328 // Can export from current BB.
1329 if (VI->getParent() == FromBB)
1330 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001331
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001332 // Is already exported, noop.
1333 return FuncInfo.isExportedInst(V);
1334 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001335
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001336 // If this is an argument, we can export it if the BB is the entry block or
1337 // if it is already exported.
1338 if (isa<Argument>(V)) {
1339 if (FromBB == &FromBB->getParent()->getEntryBlock())
1340 return true;
1341
1342 // Otherwise, can only export this if it is already exported.
1343 return FuncInfo.isExportedInst(V);
1344 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001345
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001346 // Otherwise, constants can always be exported.
1347 return true;
1348}
1349
Jakub Staszak7cc2b072011-06-16 20:22:37 +00001350/// Return branch probability calculated by BranchProbabilityInfo for IR blocks.
Jakub Staszak25101bb2011-12-20 20:03:10 +00001351uint32_t SelectionDAGBuilder::getEdgeWeight(const MachineBasicBlock *Src,
1352 const MachineBasicBlock *Dst) const {
Jakub Staszak7cc2b072011-06-16 20:22:37 +00001353 BranchProbabilityInfo *BPI = FuncInfo.BPI;
1354 if (!BPI)
1355 return 0;
Jakub Staszak95ece8e2011-07-29 20:05:36 +00001356 const BasicBlock *SrcBB = Src->getBasicBlock();
1357 const BasicBlock *DstBB = Dst->getBasicBlock();
Jakub Staszak7cc2b072011-06-16 20:22:37 +00001358 return BPI->getEdgeWeight(SrcBB, DstBB);
1359}
1360
Jakub Staszakc8f34de2011-07-29 22:25:21 +00001361void SelectionDAGBuilder::
1362addSuccessorWithWeight(MachineBasicBlock *Src, MachineBasicBlock *Dst,
1363 uint32_t Weight /* = 0 */) {
1364 if (!Weight)
1365 Weight = getEdgeWeight(Src, Dst);
1366 Src->addSuccessor(Dst, Weight);
Jakub Staszak7cc2b072011-06-16 20:22:37 +00001367}
1368
1369
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001370static bool InBlock(const Value *V, const BasicBlock *BB) {
1371 if (const Instruction *I = dyn_cast<Instruction>(V))
1372 return I->getParent() == BB;
1373 return true;
1374}
1375
Dan Gohmanc2277342008-10-17 21:16:08 +00001376/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1377/// This function emits a branch and is used at the leaves of an OR or an
1378/// AND operator tree.
1379///
1380void
Dan Gohman46510a72010-04-15 01:51:59 +00001381SelectionDAGBuilder::EmitBranchForMergedCondition(const Value *Cond,
Dan Gohman2048b852009-11-23 18:04:58 +00001382 MachineBasicBlock *TBB,
1383 MachineBasicBlock *FBB,
Dan Gohman99be8ae2010-04-19 22:41:47 +00001384 MachineBasicBlock *CurBB,
1385 MachineBasicBlock *SwitchBB) {
Dan Gohmanc2277342008-10-17 21:16:08 +00001386 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001387
Dan Gohmanc2277342008-10-17 21:16:08 +00001388 // If the leaf of the tree is a comparison, merge the condition into
1389 // the caseblock.
Dan Gohman46510a72010-04-15 01:51:59 +00001390 if (const CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
Dan Gohmanc2277342008-10-17 21:16:08 +00001391 // The operands of the cmp have to be in this block. We don't know
1392 // how to export them from some other block. If this is the first block
1393 // of the sequence, no exporting is needed.
Dan Gohman99be8ae2010-04-19 22:41:47 +00001394 if (CurBB == SwitchBB ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001395 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1396 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001397 ISD::CondCode Condition;
Dan Gohman46510a72010-04-15 01:51:59 +00001398 if (const ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001399 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohman46510a72010-04-15 01:51:59 +00001400 } else if (const FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001401 Condition = getFCmpCondCode(FC->getPredicate());
Nick Lewycky8a8d4792011-12-02 22:16:29 +00001402 if (TM.Options.NoNaNsFPMath)
1403 Condition = getFCmpCodeWithoutNaN(Condition);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001404 } else {
1405 Condition = ISD::SETEQ; // silence warning.
Torok Edwinc23197a2009-07-14 16:55:14 +00001406 llvm_unreachable("Unknown compare instruction");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001407 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001408
1409 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001410 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1411 SwitchCases.push_back(CB);
1412 return;
1413 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001414 }
1415
1416 // Create a CaseBlock record representing this branch.
Owen Anderson5defacc2009-07-31 17:39:07 +00001417 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(*DAG.getContext()),
Dan Gohmanc2277342008-10-17 21:16:08 +00001418 NULL, TBB, FBB, CurBB);
1419 SwitchCases.push_back(CB);
1420}
1421
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001422/// FindMergedConditions - If Cond is an expression like
Dan Gohman46510a72010-04-15 01:51:59 +00001423void SelectionDAGBuilder::FindMergedConditions(const Value *Cond,
Dan Gohman2048b852009-11-23 18:04:58 +00001424 MachineBasicBlock *TBB,
1425 MachineBasicBlock *FBB,
1426 MachineBasicBlock *CurBB,
Dan Gohman99be8ae2010-04-19 22:41:47 +00001427 MachineBasicBlock *SwitchBB,
Dan Gohman2048b852009-11-23 18:04:58 +00001428 unsigned Opc) {
Dan Gohmanc2277342008-10-17 21:16:08 +00001429 // If this node is not part of the or/and tree, emit it as a branch.
Dan Gohman46510a72010-04-15 01:51:59 +00001430 const Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001431 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001432 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1433 BOp->getParent() != CurBB->getBasicBlock() ||
1434 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1435 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
Dan Gohman99be8ae2010-04-19 22:41:47 +00001436 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB, SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001437 return;
1438 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001439
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001440 // Create TmpBB after CurBB.
1441 MachineFunction::iterator BBI = CurBB;
1442 MachineFunction &MF = DAG.getMachineFunction();
1443 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1444 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001445
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001446 if (Opc == Instruction::Or) {
1447 // Codegen X | Y as:
1448 // jmp_if_X TBB
1449 // jmp TmpBB
1450 // TmpBB:
1451 // jmp_if_Y TBB
1452 // jmp FBB
1453 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001454
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001455 // Emit the LHS condition.
Dan Gohman99be8ae2010-04-19 22:41:47 +00001456 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, SwitchBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001457
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001458 // Emit the RHS condition into TmpBB.
Dan Gohman99be8ae2010-04-19 22:41:47 +00001459 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001460 } else {
1461 assert(Opc == Instruction::And && "Unknown merge op!");
1462 // Codegen X & Y as:
1463 // jmp_if_X TmpBB
1464 // jmp FBB
1465 // TmpBB:
1466 // jmp_if_Y TBB
1467 // jmp FBB
1468 //
1469 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001470
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001471 // Emit the LHS condition.
Dan Gohman99be8ae2010-04-19 22:41:47 +00001472 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, SwitchBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001473
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001474 // Emit the RHS condition into TmpBB.
Dan Gohman99be8ae2010-04-19 22:41:47 +00001475 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001476 }
1477}
1478
1479/// If the set of cases should be emitted as a series of branches, return true.
1480/// If we should emit this as a bunch of and/or'd together conditions, return
1481/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001482bool
Stephen Lin09f8ca32013-07-06 21:44:25 +00001483SelectionDAGBuilder::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001484 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001485
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001486 // If this is two comparisons of the same values or'd or and'd together, they
1487 // will get folded into a single comparison, so don't emit two blocks.
1488 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1489 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1490 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1491 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1492 return false;
1493 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001494
Chris Lattner133ce872010-01-02 00:00:03 +00001495 // Handle: (X != null) | (Y != null) --> (X|Y) != 0
1496 // Handle: (X == null) & (Y == null) --> (X|Y) == 0
1497 if (Cases[0].CmpRHS == Cases[1].CmpRHS &&
1498 Cases[0].CC == Cases[1].CC &&
1499 isa<Constant>(Cases[0].CmpRHS) &&
1500 cast<Constant>(Cases[0].CmpRHS)->isNullValue()) {
1501 if (Cases[0].CC == ISD::SETEQ && Cases[0].TrueBB == Cases[1].ThisBB)
1502 return false;
1503 if (Cases[0].CC == ISD::SETNE && Cases[0].FalseBB == Cases[1].ThisBB)
1504 return false;
1505 }
Michael J. Spencere70c5262010-10-16 08:25:21 +00001506
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001507 return true;
1508}
1509
Dan Gohman46510a72010-04-15 01:51:59 +00001510void SelectionDAGBuilder::visitBr(const BranchInst &I) {
Dan Gohman84023e02010-07-10 09:00:22 +00001511 MachineBasicBlock *BrMBB = FuncInfo.MBB;
Dan Gohman99be8ae2010-04-19 22:41:47 +00001512
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001513 // Update machine-CFG edges.
1514 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1515
1516 // Figure out which block is immediately after the current one.
1517 MachineBasicBlock *NextBlock = 0;
Dan Gohman99be8ae2010-04-19 22:41:47 +00001518 MachineFunction::iterator BBI = BrMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001519 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001520 NextBlock = BBI;
1521
1522 if (I.isUnconditional()) {
1523 // Update machine-CFG edges.
Dan Gohman99be8ae2010-04-19 22:41:47 +00001524 BrMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001525
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001526 // If this is not a fall-through branch, emit the branch.
Bill Wendling4533cac2010-01-28 21:51:40 +00001527 if (Succ0MBB != NextBlock)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001528 DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001529 MVT::Other, getControlRoot(),
Bill Wendling4533cac2010-01-28 21:51:40 +00001530 DAG.getBasicBlock(Succ0MBB)));
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001531
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001532 return;
1533 }
1534
1535 // If this condition is one of the special cases we handle, do special stuff
1536 // now.
Dan Gohman46510a72010-04-15 01:51:59 +00001537 const Value *CondVal = I.getCondition();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001538 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1539
1540 // If this is a series of conditions that are or'd or and'd together, emit
1541 // this as a sequence of branches instead of setcc's with and/or operations.
Chris Lattnerde189be2010-11-30 18:12:52 +00001542 // As long as jumps are not expensive, this should improve performance.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001543 // For example, instead of something like:
1544 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001545 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001546 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001547 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001548 // or C, F
1549 // jnz foo
1550 // Emit:
1551 // cmp A, B
1552 // je foo
1553 // cmp D, E
1554 // jle foo
1555 //
Dan Gohman46510a72010-04-15 01:51:59 +00001556 if (const BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00001557 if (!TM.getTargetLowering()->isJumpExpensive() &&
Chris Lattnerde189be2010-11-30 18:12:52 +00001558 BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001559 (BOp->getOpcode() == Instruction::And ||
1560 BOp->getOpcode() == Instruction::Or)) {
Dan Gohman99be8ae2010-04-19 22:41:47 +00001561 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, BrMBB, BrMBB,
1562 BOp->getOpcode());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001563 // If the compares in later blocks need to use values not currently
1564 // exported from this block, export them now. This block should always
1565 // be the first entry.
Dan Gohman99be8ae2010-04-19 22:41:47 +00001566 assert(SwitchCases[0].ThisBB == BrMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001567
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001568 // Allow some cases to be rejected.
1569 if (ShouldEmitAsBranches(SwitchCases)) {
1570 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1571 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1572 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1573 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001574
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001575 // Emit the branch for this block.
Dan Gohman99be8ae2010-04-19 22:41:47 +00001576 visitSwitchCase(SwitchCases[0], BrMBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001577 SwitchCases.erase(SwitchCases.begin());
1578 return;
1579 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001580
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001581 // Okay, we decided not to do this, remove any inserted MBB's and clear
1582 // SwitchCases.
1583 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001584 FuncInfo.MF->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001585
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001586 SwitchCases.clear();
1587 }
1588 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001589
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001590 // Create a CaseBlock record representing this branch.
Owen Anderson5defacc2009-07-31 17:39:07 +00001591 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(*DAG.getContext()),
Dan Gohman99be8ae2010-04-19 22:41:47 +00001592 NULL, Succ0MBB, Succ1MBB, BrMBB);
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001593
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001594 // Use visitSwitchCase to actually insert the fast branch sequence for this
1595 // cond branch.
Dan Gohman99be8ae2010-04-19 22:41:47 +00001596 visitSwitchCase(CB, BrMBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001597}
1598
1599/// visitSwitchCase - Emits the necessary code to represent a single node in
1600/// the binary search tree resulting from lowering a switch instruction.
Dan Gohman99be8ae2010-04-19 22:41:47 +00001601void SelectionDAGBuilder::visitSwitchCase(CaseBlock &CB,
1602 MachineBasicBlock *SwitchBB) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001603 SDValue Cond;
1604 SDValue CondLHS = getValue(CB.CmpLHS);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001605 SDLoc dl = getCurSDLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001606
1607 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001608 if (CB.CmpMHS == NULL) {
1609 // Fold "(X == true)" to X and "(X == false)" to !X to
1610 // handle common cases produced by branch lowering.
Owen Anderson5defacc2009-07-31 17:39:07 +00001611 if (CB.CmpRHS == ConstantInt::getTrue(*DAG.getContext()) &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001612 CB.CC == ISD::SETEQ)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001613 Cond = CondLHS;
Owen Anderson5defacc2009-07-31 17:39:07 +00001614 else if (CB.CmpRHS == ConstantInt::getFalse(*DAG.getContext()) &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001615 CB.CC == ISD::SETEQ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001616 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001617 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001618 } else
Owen Anderson825b72b2009-08-11 20:47:22 +00001619 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001620 } else {
Bob Wilsondb3a9e62013-09-09 19:14:35 +00001621 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001622
Anton Korobeynikov23218582008-12-23 22:25:27 +00001623 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1624 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001625
1626 SDValue CmpOp = getValue(CB.CmpMHS);
Owen Andersone50ed302009-08-10 22:56:29 +00001627 EVT VT = CmpOp.getValueType();
Stephen Lin155615d2013-07-08 00:37:03 +00001628
Bob Wilsondb3a9e62013-09-09 19:14:35 +00001629 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001630 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
Bob Wilsondb3a9e62013-09-09 19:14:35 +00001631 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001632 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001633 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001634 VT, CmpOp, DAG.getConstant(Low, VT));
Owen Anderson825b72b2009-08-11 20:47:22 +00001635 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001636 DAG.getConstant(High-Low, VT), ISD::SETULE);
1637 }
1638 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001639
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001640 // Update successor info
Jakub Staszakc8f34de2011-07-29 22:25:21 +00001641 addSuccessorWithWeight(SwitchBB, CB.TrueBB, CB.TrueWeight);
Jakob Stoklund Olesene7fdef42012-08-20 21:39:52 +00001642 // TrueBB and FalseBB are always different unless the incoming IR is
1643 // degenerate. This only happens when running llc on weird IR.
1644 if (CB.TrueBB != CB.FalseBB)
1645 addSuccessorWithWeight(SwitchBB, CB.FalseBB, CB.FalseWeight);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001646
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001647 // Set NextBlock to be the MBB immediately after the current one, if any.
1648 // This is used to avoid emitting unnecessary branches to the next block.
1649 MachineBasicBlock *NextBlock = 0;
Dan Gohman99be8ae2010-04-19 22:41:47 +00001650 MachineFunction::iterator BBI = SwitchBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001651 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001652 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001653
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001654 // If the lhs block is the next block, invert the condition so that we can
1655 // fall through to the lhs instead of the rhs block.
1656 if (CB.TrueBB == NextBlock) {
1657 std::swap(CB.TrueBB, CB.FalseBB);
1658 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001659 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001660 }
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001661
Dale Johannesenf5d97892009-02-04 01:48:28 +00001662 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001663 MVT::Other, getControlRoot(), Cond,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001664 DAG.getBasicBlock(CB.TrueBB));
Bill Wendling87710f02009-12-21 23:47:40 +00001665
Evan Cheng266a99d2010-09-23 06:51:55 +00001666 // Insert the false branch. Do this even if it's a fall through branch,
1667 // this makes it easier to do DAG optimizations which require inverting
1668 // the branch condition.
1669 BrCond = DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
1670 DAG.getBasicBlock(CB.FalseBB));
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001671
1672 DAG.setRoot(BrCond);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001673}
1674
1675/// visitJumpTable - Emit JumpTable node in the current MBB
Dan Gohman2048b852009-11-23 18:04:58 +00001676void SelectionDAGBuilder::visitJumpTable(JumpTable &JT) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001677 // Emit the code for the jump table
1678 assert(JT.Reg != -1U && "Should lower JT Header first!");
Bill Wendlingba54bca2013-06-19 21:36:55 +00001679 EVT PTy = TM.getTargetLowering()->getPointerTy();
Andrew Trickac6d9be2013-05-25 02:42:55 +00001680 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurSDLoc(),
Dale Johannesena04b7572009-02-03 23:04:43 +00001681 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001682 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001683 SDValue BrJumpTable = DAG.getNode(ISD::BR_JT, getCurSDLoc(),
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001684 MVT::Other, Index.getValue(1),
1685 Table, Index);
1686 DAG.setRoot(BrJumpTable);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001687}
1688
1689/// visitJumpTableHeader - This function emits necessary code to produce index
1690/// in the JumpTable from switch case.
Dan Gohman2048b852009-11-23 18:04:58 +00001691void SelectionDAGBuilder::visitJumpTableHeader(JumpTable &JT,
Dan Gohman99be8ae2010-04-19 22:41:47 +00001692 JumpTableHeader &JTH,
1693 MachineBasicBlock *SwitchBB) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001694 // Subtract the lowest switch case value from the value being switched on and
1695 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001696 // difference between smallest and largest cases.
1697 SDValue SwitchOp = getValue(JTH.SValue);
Owen Andersone50ed302009-08-10 22:56:29 +00001698 EVT VT = SwitchOp.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00001699 SDValue Sub = DAG.getNode(ISD::SUB, getCurSDLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001700 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001701
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001702 // The SDNode we just created, which holds the value being switched on minus
Dan Gohmanf451cb82010-02-10 16:03:48 +00001703 // the smallest case value, needs to be copied to a virtual register so it
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001704 // can be used as an index into the jump table in a subsequent basic block.
1705 // This value may be smaller or larger than the target's pointer type, and
1706 // therefore require extension or truncating.
Bill Wendlingba54bca2013-06-19 21:36:55 +00001707 const TargetLowering *TLI = TM.getTargetLowering();
1708 SwitchOp = DAG.getZExtOrTrunc(Sub, getCurSDLoc(), TLI->getPointerTy());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001709
Bill Wendlingba54bca2013-06-19 21:36:55 +00001710 unsigned JumpTableReg = FuncInfo.CreateReg(TLI->getPointerTy());
Andrew Trickac6d9be2013-05-25 02:42:55 +00001711 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurSDLoc(),
Dale Johannesena04b7572009-02-03 23:04:43 +00001712 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001713 JT.Reg = JumpTableReg;
1714
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001715 // Emit the range check for the jump table, and branch to the default block
1716 // for the switch statement if the value being switched on exceeds the largest
1717 // case in the switch.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001718 SDValue CMP = DAG.getSetCC(getCurSDLoc(),
Bill Wendlingba54bca2013-06-19 21:36:55 +00001719 TLI->getSetCCResultType(*DAG.getContext(),
1720 Sub.getValueType()),
Matt Arsenault225ed702013-05-18 00:21:46 +00001721 Sub,
1722 DAG.getConstant(JTH.Last - JTH.First,VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001723 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001724
1725 // Set NextBlock to be the MBB immediately after the current one, if any.
1726 // This is used to avoid emitting unnecessary branches to the next block.
1727 MachineBasicBlock *NextBlock = 0;
Dan Gohman99be8ae2010-04-19 22:41:47 +00001728 MachineFunction::iterator BBI = SwitchBB;
Bill Wendling87710f02009-12-21 23:47:40 +00001729
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001730 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001731 NextBlock = BBI;
1732
Andrew Trickac6d9be2013-05-25 02:42:55 +00001733 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurSDLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001734 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001735 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001736
Bill Wendling4533cac2010-01-28 21:51:40 +00001737 if (JT.MBB != NextBlock)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001738 BrCond = DAG.getNode(ISD::BR, getCurSDLoc(), MVT::Other, BrCond,
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001739 DAG.getBasicBlock(JT.MBB));
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001740
Bill Wendling87710f02009-12-21 23:47:40 +00001741 DAG.setRoot(BrCond);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001742}
1743
Michael Gottesman657484f2013-08-20 07:00:16 +00001744/// Codegen a new tail for a stack protector check ParentMBB which has had its
1745/// tail spliced into a stack protector check success bb.
1746///
1747/// For a high level explanation of how this fits into the stack protector
1748/// generation see the comment on the declaration of class
1749/// StackProtectorDescriptor.
1750void SelectionDAGBuilder::visitSPDescriptorParent(StackProtectorDescriptor &SPD,
1751 MachineBasicBlock *ParentBB) {
1752
1753 // First create the loads to the guard/stack slot for the comparison.
1754 const TargetLowering *TLI = TM.getTargetLowering();
1755 EVT PtrTy = TLI->getPointerTy();
1756
1757 MachineFrameInfo *MFI = ParentBB->getParent()->getFrameInfo();
1758 int FI = MFI->getStackProtectorIndex();
1759
1760 const Value *IRGuard = SPD.getGuard();
1761 SDValue GuardPtr = getValue(IRGuard);
1762 SDValue StackSlotPtr = DAG.getFrameIndex(FI, PtrTy);
1763
1764 unsigned Align =
1765 TLI->getDataLayout()->getPrefTypeAlignment(IRGuard->getType());
1766 SDValue Guard = DAG.getLoad(PtrTy, getCurSDLoc(), DAG.getEntryNode(),
1767 GuardPtr, MachinePointerInfo(IRGuard, 0),
1768 true, false, false, Align);
1769
1770 SDValue StackSlot = DAG.getLoad(PtrTy, getCurSDLoc(), DAG.getEntryNode(),
1771 StackSlotPtr,
1772 MachinePointerInfo::getFixedStack(FI),
1773 true, false, false, Align);
1774
1775 // Perform the comparison via a subtract/getsetcc.
1776 EVT VT = Guard.getValueType();
1777 SDValue Sub = DAG.getNode(ISD::SUB, getCurSDLoc(), VT, Guard, StackSlot);
1778
1779 SDValue Cmp = DAG.getSetCC(getCurSDLoc(),
1780 TLI->getSetCCResultType(*DAG.getContext(),
1781 Sub.getValueType()),
1782 Sub, DAG.getConstant(0, VT),
1783 ISD::SETNE);
1784
1785 // If the sub is not 0, then we know the guard/stackslot do not equal, so
1786 // branch to failure MBB.
1787 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurSDLoc(),
1788 MVT::Other, StackSlot.getOperand(0),
1789 Cmp, DAG.getBasicBlock(SPD.getFailureMBB()));
1790 // Otherwise branch to success MBB.
1791 SDValue Br = DAG.getNode(ISD::BR, getCurSDLoc(),
1792 MVT::Other, BrCond,
1793 DAG.getBasicBlock(SPD.getSuccessMBB()));
1794
1795 DAG.setRoot(Br);
1796}
1797
1798/// Codegen the failure basic block for a stack protector check.
1799///
1800/// A failure stack protector machine basic block consists simply of a call to
1801/// __stack_chk_fail().
1802///
1803/// For a high level explanation of how this fits into the stack protector
1804/// generation see the comment on the declaration of class
1805/// StackProtectorDescriptor.
1806void
1807SelectionDAGBuilder::visitSPDescriptorFailure(StackProtectorDescriptor &SPD) {
1808 const TargetLowering *TLI = TM.getTargetLowering();
1809 SDValue Chain = TLI->makeLibCall(DAG, RTLIB::STACKPROTECTOR_CHECK_FAIL,
1810 MVT::isVoid, 0, 0, false, getCurSDLoc(),
Michael Gottesman58a9b432013-08-22 23:45:24 +00001811 false, false).second;
Michael Gottesman657484f2013-08-20 07:00:16 +00001812 DAG.setRoot(Chain);
1813}
1814
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001815/// visitBitTestHeader - This function emits necessary code to produce value
1816/// suitable for "bit tests"
Dan Gohman99be8ae2010-04-19 22:41:47 +00001817void SelectionDAGBuilder::visitBitTestHeader(BitTestBlock &B,
1818 MachineBasicBlock *SwitchBB) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001819 // Subtract the minimum value
1820 SDValue SwitchOp = getValue(B.SValue);
Patrik Hagglund34525f92012-12-11 11:14:33 +00001821 EVT VT = SwitchOp.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00001822 SDValue Sub = DAG.getNode(ISD::SUB, getCurSDLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001823 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001824
1825 // Check range
Bill Wendlingba54bca2013-06-19 21:36:55 +00001826 const TargetLowering *TLI = TM.getTargetLowering();
Andrew Trickac6d9be2013-05-25 02:42:55 +00001827 SDValue RangeCmp = DAG.getSetCC(getCurSDLoc(),
Bill Wendlingba54bca2013-06-19 21:36:55 +00001828 TLI->getSetCCResultType(*DAG.getContext(),
Matt Arsenault225ed702013-05-18 00:21:46 +00001829 Sub.getValueType()),
Bill Wendling87710f02009-12-21 23:47:40 +00001830 Sub, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001831 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001832
Evan Chengd08e5b42011-01-06 01:02:44 +00001833 // Determine the type of the test operands.
1834 bool UsePtrType = false;
Bill Wendlingba54bca2013-06-19 21:36:55 +00001835 if (!TLI->isTypeLegal(VT))
Evan Chengd08e5b42011-01-06 01:02:44 +00001836 UsePtrType = true;
1837 else {
1838 for (unsigned i = 0, e = B.Cases.size(); i != e; ++i)
Eli Friedman5c75af62011-10-12 22:46:45 +00001839 if (!isUIntN(VT.getSizeInBits(), B.Cases[i].Mask)) {
Evan Chengd08e5b42011-01-06 01:02:44 +00001840 // Switch table case range are encoded into series of masks.
1841 // Just use pointer type, it's guaranteed to fit.
1842 UsePtrType = true;
1843 break;
1844 }
1845 }
1846 if (UsePtrType) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00001847 VT = TLI->getPointerTy();
Andrew Trickac6d9be2013-05-25 02:42:55 +00001848 Sub = DAG.getZExtOrTrunc(Sub, getCurSDLoc(), VT);
Evan Chengd08e5b42011-01-06 01:02:44 +00001849 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001850
Patrik Hagglunda61b17c2012-12-13 06:34:11 +00001851 B.RegVT = VT.getSimpleVT();
Patrik Hagglund8963fec2012-12-19 12:23:01 +00001852 B.Reg = FuncInfo.CreateReg(B.RegVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001853 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurSDLoc(),
Evan Chengd08e5b42011-01-06 01:02:44 +00001854 B.Reg, Sub);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001855
1856 // Set NextBlock to be the MBB immediately after the current one, if any.
1857 // This is used to avoid emitting unnecessary branches to the next block.
1858 MachineBasicBlock *NextBlock = 0;
Dan Gohman99be8ae2010-04-19 22:41:47 +00001859 MachineFunction::iterator BBI = SwitchBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001860 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001861 NextBlock = BBI;
1862
1863 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1864
Jakub Staszak7cc2b072011-06-16 20:22:37 +00001865 addSuccessorWithWeight(SwitchBB, B.Default);
1866 addSuccessorWithWeight(SwitchBB, MBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001867
Andrew Trickac6d9be2013-05-25 02:42:55 +00001868 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurSDLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001869 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001870 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001871
Evan Cheng8c1f4322010-09-23 18:32:19 +00001872 if (MBB != NextBlock)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001873 BrRange = DAG.getNode(ISD::BR, getCurSDLoc(), MVT::Other, CopyTo,
Evan Cheng8c1f4322010-09-23 18:32:19 +00001874 DAG.getBasicBlock(MBB));
Bill Wendling3b7a41c2009-12-21 19:59:38 +00001875
Bill Wendling87710f02009-12-21 23:47:40 +00001876 DAG.setRoot(BrRange);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001877}
1878
1879/// visitBitTestCase - this function produces one "bit test"
Evan Chengd08e5b42011-01-06 01:02:44 +00001880void SelectionDAGBuilder::visitBitTestCase(BitTestBlock &BB,
1881 MachineBasicBlock* NextMBB,
Manman Ren1a710fd2012-08-24 18:14:27 +00001882 uint32_t BranchWeightToNext,
Dan Gohman2048b852009-11-23 18:04:58 +00001883 unsigned Reg,
Dan Gohman99be8ae2010-04-19 22:41:47 +00001884 BitTestCase &B,
1885 MachineBasicBlock *SwitchBB) {
Patrik Hagglund8963fec2012-12-19 12:23:01 +00001886 MVT VT = BB.RegVT;
Andrew Trickac6d9be2013-05-25 02:42:55 +00001887 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurSDLoc(),
Evan Chengd08e5b42011-01-06 01:02:44 +00001888 Reg, VT);
Dan Gohman8e0163a2010-06-24 02:06:24 +00001889 SDValue Cmp;
Benjamin Kramer3ff25512011-07-14 01:38:42 +00001890 unsigned PopCount = CountPopulation_64(B.Mask);
Bill Wendlingba54bca2013-06-19 21:36:55 +00001891 const TargetLowering *TLI = TM.getTargetLowering();
Benjamin Kramer3ff25512011-07-14 01:38:42 +00001892 if (PopCount == 1) {
Dan Gohman8e0163a2010-06-24 02:06:24 +00001893 // Testing for a single bit; just compare the shift count with what it
1894 // would need to be to shift a 1 bit in that position.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001895 Cmp = DAG.getSetCC(getCurSDLoc(),
Bill Wendlingba54bca2013-06-19 21:36:55 +00001896 TLI->getSetCCResultType(*DAG.getContext(), VT),
Dan Gohman8e0163a2010-06-24 02:06:24 +00001897 ShiftOp,
Michael J. Spencerc6af2432013-05-24 22:23:49 +00001898 DAG.getConstant(countTrailingZeros(B.Mask), VT),
Dan Gohman8e0163a2010-06-24 02:06:24 +00001899 ISD::SETEQ);
Benjamin Kramer3ff25512011-07-14 01:38:42 +00001900 } else if (PopCount == BB.Range) {
1901 // There is only one zero bit in the range, test for it directly.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001902 Cmp = DAG.getSetCC(getCurSDLoc(),
Bill Wendlingba54bca2013-06-19 21:36:55 +00001903 TLI->getSetCCResultType(*DAG.getContext(), VT),
Benjamin Kramer3ff25512011-07-14 01:38:42 +00001904 ShiftOp,
1905 DAG.getConstant(CountTrailingOnes_64(B.Mask), VT),
1906 ISD::SETNE);
Dan Gohman8e0163a2010-06-24 02:06:24 +00001907 } else {
1908 // Make desired shift
Andrew Trickac6d9be2013-05-25 02:42:55 +00001909 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurSDLoc(), VT,
Evan Chengd08e5b42011-01-06 01:02:44 +00001910 DAG.getConstant(1, VT), ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001911
Dan Gohman8e0163a2010-06-24 02:06:24 +00001912 // Emit bit tests and jumps
Andrew Trickac6d9be2013-05-25 02:42:55 +00001913 SDValue AndOp = DAG.getNode(ISD::AND, getCurSDLoc(),
Evan Chengd08e5b42011-01-06 01:02:44 +00001914 VT, SwitchVal, DAG.getConstant(B.Mask, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00001915 Cmp = DAG.getSetCC(getCurSDLoc(),
Bill Wendlingba54bca2013-06-19 21:36:55 +00001916 TLI->getSetCCResultType(*DAG.getContext(), VT),
Evan Chengd08e5b42011-01-06 01:02:44 +00001917 AndOp, DAG.getConstant(0, VT),
Dan Gohman8e0163a2010-06-24 02:06:24 +00001918 ISD::SETNE);
1919 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001920
Manman Ren1a710fd2012-08-24 18:14:27 +00001921 // The branch weight from SwitchBB to B.TargetBB is B.ExtraWeight.
1922 addSuccessorWithWeight(SwitchBB, B.TargetBB, B.ExtraWeight);
1923 // The branch weight from SwitchBB to NextMBB is BranchWeightToNext.
1924 addSuccessorWithWeight(SwitchBB, NextMBB, BranchWeightToNext);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001925
Andrew Trickac6d9be2013-05-25 02:42:55 +00001926 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurSDLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001927 MVT::Other, getControlRoot(),
Dan Gohman8e0163a2010-06-24 02:06:24 +00001928 Cmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001929
1930 // Set NextBlock to be the MBB immediately after the current one, if any.
1931 // This is used to avoid emitting unnecessary branches to the next block.
1932 MachineBasicBlock *NextBlock = 0;
Dan Gohman99be8ae2010-04-19 22:41:47 +00001933 MachineFunction::iterator BBI = SwitchBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001934 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001935 NextBlock = BBI;
1936
Evan Cheng8c1f4322010-09-23 18:32:19 +00001937 if (NextMBB != NextBlock)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001938 BrAnd = DAG.getNode(ISD::BR, getCurSDLoc(), MVT::Other, BrAnd,
Evan Cheng8c1f4322010-09-23 18:32:19 +00001939 DAG.getBasicBlock(NextMBB));
Bill Wendling0777e922009-12-21 21:59:52 +00001940
Bill Wendling87710f02009-12-21 23:47:40 +00001941 DAG.setRoot(BrAnd);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001942}
1943
Dan Gohman46510a72010-04-15 01:51:59 +00001944void SelectionDAGBuilder::visitInvoke(const InvokeInst &I) {
Dan Gohman84023e02010-07-10 09:00:22 +00001945 MachineBasicBlock *InvokeMBB = FuncInfo.MBB;
Dan Gohman99be8ae2010-04-19 22:41:47 +00001946
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001947 // Retrieve successors.
1948 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1949 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1950
Gabor Greifb67e6b32009-01-15 11:10:44 +00001951 const Value *Callee(I.getCalledValue());
Nuno Lopes85b40892012-06-28 22:30:12 +00001952 const Function *Fn = dyn_cast<Function>(Callee);
Gabor Greifb67e6b32009-01-15 11:10:44 +00001953 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001954 visitInlineAsm(&I);
Nuno Lopes85b40892012-06-28 22:30:12 +00001955 else if (Fn && Fn->isIntrinsic()) {
1956 assert(Fn->getIntrinsicID() == Intrinsic::donothing);
Nuno Lopes4532bf62012-07-18 00:07:17 +00001957 // Ignore invokes to @llvm.donothing: jump directly to the next BB.
Nuno Lopes85b40892012-06-28 22:30:12 +00001958 } else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001959 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001960
1961 // If the value of the invoke is used outside of its defining block, make it
1962 // available as a virtual register.
Dan Gohmanad62f532009-04-23 23:13:24 +00001963 CopyToExportRegsIfNeeded(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001964
1965 // Update successor info
Chandler Carruthf2645682011-11-22 11:37:46 +00001966 addSuccessorWithWeight(InvokeMBB, Return);
1967 addSuccessorWithWeight(InvokeMBB, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001968
1969 // Drop into normal successor.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001970 DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(),
Bill Wendling4533cac2010-01-28 21:51:40 +00001971 MVT::Other, getControlRoot(),
1972 DAG.getBasicBlock(Return)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001973}
1974
Bill Wendlingdccc03b2011-07-31 06:30:59 +00001975void SelectionDAGBuilder::visitResume(const ResumeInst &RI) {
1976 llvm_unreachable("SelectionDAGBuilder shouldn't visit resume instructions!");
1977}
1978
Bill Wendling2ac0e6b2011-08-17 21:56:44 +00001979void SelectionDAGBuilder::visitLandingPad(const LandingPadInst &LP) {
1980 assert(FuncInfo.MBB->isLandingPad() &&
1981 "Call to landingpad not in landing pad!");
1982
1983 MachineBasicBlock *MBB = FuncInfo.MBB;
1984 MachineModuleInfo &MMI = DAG.getMachineFunction().getMMI();
1985 AddLandingPadInfo(LP, MMI, MBB);
1986
Bill Wendlingbdf9db62012-02-13 23:47:16 +00001987 // If there aren't registers to copy the values into (e.g., during SjLj
1988 // exceptions), then don't bother to create these DAG nodes.
Bill Wendlingba54bca2013-06-19 21:36:55 +00001989 const TargetLowering *TLI = TM.getTargetLowering();
1990 if (TLI->getExceptionPointerRegister() == 0 &&
1991 TLI->getExceptionSelectorRegister() == 0)
Bill Wendlingbdf9db62012-02-13 23:47:16 +00001992 return;
1993
Bill Wendling2ac0e6b2011-08-17 21:56:44 +00001994 SmallVector<EVT, 2> ValueVTs;
Bill Wendlingba54bca2013-06-19 21:36:55 +00001995 ComputeValueVTs(*TLI, LP.getType(), ValueVTs);
Jakob Stoklund Olesen918b7c82013-07-04 04:53:45 +00001996 assert(ValueVTs.size() == 2 && "Only two-valued landingpads are supported");
Bill Wendling2ac0e6b2011-08-17 21:56:44 +00001997
Jakob Stoklund Olesen918b7c82013-07-04 04:53:45 +00001998 // Get the two live-in registers as SDValues. The physregs have already been
1999 // copied into virtual registers.
Bill Wendling2ac0e6b2011-08-17 21:56:44 +00002000 SDValue Ops[2];
Jakob Stoklund Olesen918b7c82013-07-04 04:53:45 +00002001 Ops[0] = DAG.getZExtOrTrunc(
2002 DAG.getCopyFromReg(DAG.getEntryNode(), getCurSDLoc(),
2003 FuncInfo.ExceptionPointerVirtReg, TLI->getPointerTy()),
2004 getCurSDLoc(), ValueVTs[0]);
2005 Ops[1] = DAG.getZExtOrTrunc(
2006 DAG.getCopyFromReg(DAG.getEntryNode(), getCurSDLoc(),
2007 FuncInfo.ExceptionSelectorVirtReg, TLI->getPointerTy()),
2008 getCurSDLoc(), ValueVTs[1]);
Bill Wendling2ac0e6b2011-08-17 21:56:44 +00002009
Jakob Stoklund Olesen918b7c82013-07-04 04:53:45 +00002010 // Merge into one.
Andrew Trickac6d9be2013-05-25 02:42:55 +00002011 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(),
Bill Wendling2ac0e6b2011-08-17 21:56:44 +00002012 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
2013 &Ops[0], 2);
Jakob Stoklund Olesen918b7c82013-07-04 04:53:45 +00002014 setValue(&LP, Res);
Bill Wendling2ac0e6b2011-08-17 21:56:44 +00002015}
2016
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002017/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
2018/// small case ranges).
Dan Gohman2048b852009-11-23 18:04:58 +00002019bool SelectionDAGBuilder::handleSmallSwitchRange(CaseRec& CR,
2020 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +00002021 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +00002022 MachineBasicBlock *Default,
2023 MachineBasicBlock *SwitchBB) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002024 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002025 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002026 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00002027 return false;
2028
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002029 // Get the MachineFunction which holds the current MBB. This is used when
2030 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00002031 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002032
2033 // Figure out which block is immediately after the current one.
2034 MachineBasicBlock *NextBlock = 0;
2035 MachineFunction::iterator BBI = CR.CaseBB;
2036
Dan Gohman0d24bfb2009-08-15 02:06:22 +00002037 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002038 NextBlock = BBI;
2039
Manman Ren1a710fd2012-08-24 18:14:27 +00002040 BranchProbabilityInfo *BPI = FuncInfo.BPI;
Benjamin Kramerce750f02010-11-22 09:45:38 +00002041 // If any two of the cases has the same destination, and if one value
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002042 // is the same as the other, but has one bit unset that the other has set,
2043 // use bit manipulation to do two compares at once. For example:
2044 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Benjamin Kramerce750f02010-11-22 09:45:38 +00002045 // TODO: This could be extended to merge any 2 cases in switches with 3 cases.
2046 // TODO: Handle cases where CR.CaseBB != SwitchBB.
2047 if (Size == 2 && CR.CaseBB == SwitchBB) {
2048 Case &Small = *CR.Range.first;
2049 Case &Big = *(CR.Range.second-1);
2050
2051 if (Small.Low == Small.High && Big.Low == Big.High && Small.BB == Big.BB) {
2052 const APInt& SmallValue = cast<ConstantInt>(Small.Low)->getValue();
2053 const APInt& BigValue = cast<ConstantInt>(Big.Low)->getValue();
2054
2055 // Check that there is only one bit different.
2056 if (BigValue.countPopulation() == SmallValue.countPopulation() + 1 &&
2057 (SmallValue | BigValue) == BigValue) {
2058 // Isolate the common bit.
2059 APInt CommonBit = BigValue & ~SmallValue;
2060 assert((SmallValue | CommonBit) == BigValue &&
2061 CommonBit.countPopulation() == 1 && "Not a common bit?");
2062
2063 SDValue CondLHS = getValue(SV);
2064 EVT VT = CondLHS.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00002065 SDLoc DL = getCurSDLoc();
Benjamin Kramerce750f02010-11-22 09:45:38 +00002066
2067 SDValue Or = DAG.getNode(ISD::OR, DL, VT, CondLHS,
2068 DAG.getConstant(CommonBit, VT));
2069 SDValue Cond = DAG.getSetCC(DL, MVT::i1,
2070 Or, DAG.getConstant(BigValue, VT),
2071 ISD::SETEQ);
2072
2073 // Update successor info.
Manman Ren1a710fd2012-08-24 18:14:27 +00002074 // Both Small and Big will jump to Small.BB, so we sum up the weights.
2075 addSuccessorWithWeight(SwitchBB, Small.BB,
2076 Small.ExtraWeight + Big.ExtraWeight);
2077 addSuccessorWithWeight(SwitchBB, Default,
2078 // The default destination is the first successor in IR.
2079 BPI ? BPI->getEdgeWeight(SwitchBB->getBasicBlock(), (unsigned)0) : 0);
Benjamin Kramerce750f02010-11-22 09:45:38 +00002080
2081 // Insert the true branch.
2082 SDValue BrCond = DAG.getNode(ISD::BRCOND, DL, MVT::Other,
2083 getControlRoot(), Cond,
2084 DAG.getBasicBlock(Small.BB));
2085
2086 // Insert the false branch.
2087 BrCond = DAG.getNode(ISD::BR, DL, MVT::Other, BrCond,
2088 DAG.getBasicBlock(Default));
2089
2090 DAG.setRoot(BrCond);
2091 return true;
2092 }
2093 }
2094 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002095
Benjamin Kramerc511b2a2012-05-26 20:01:32 +00002096 // Order cases by weight so the most likely case will be checked first.
Manman Ren1a710fd2012-08-24 18:14:27 +00002097 uint32_t UnhandledWeights = 0;
Benjamin Kramerc511b2a2012-05-26 20:01:32 +00002098 if (BPI) {
2099 for (CaseItr I = CR.Range.first, IE = CR.Range.second; I != IE; ++I) {
Manman Ren1a710fd2012-08-24 18:14:27 +00002100 uint32_t IWeight = I->ExtraWeight;
2101 UnhandledWeights += IWeight;
Benjamin Kramerc511b2a2012-05-26 20:01:32 +00002102 for (CaseItr J = CR.Range.first; J < I; ++J) {
Manman Ren1a710fd2012-08-24 18:14:27 +00002103 uint32_t JWeight = J->ExtraWeight;
Benjamin Kramerc511b2a2012-05-26 20:01:32 +00002104 if (IWeight > JWeight)
2105 std::swap(*I, *J);
2106 }
2107 }
2108 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002109 // Rearrange the case blocks so that the last one falls through if possible.
Benjamin Kramerc511b2a2012-05-26 20:01:32 +00002110 Case &BackCase = *(CR.Range.second-1);
Benjamin Kramer5db954d2012-05-26 21:19:12 +00002111 if (Size > 1 &&
2112 NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002113 // The last case block won't fall through into 'NextBlock' if we emit the
2114 // branches in this order. See if rearranging a case value would help.
Benjamin Kramerc511b2a2012-05-26 20:01:32 +00002115 // We start at the bottom as it's the case with the least weight.
Stephen Lin09f8ca32013-07-06 21:44:25 +00002116 for (Case *I = &*(CR.Range.second-2), *E = &*CR.Range.first-1; I != E; --I)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002117 if (I->BB == NextBlock) {
2118 std::swap(*I, BackCase);
2119 break;
2120 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002121 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002122
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002123 // Create a CaseBlock record representing a conditional branch to
2124 // the Case's target mbb if the value being switched on SV is equal
2125 // to C.
2126 MachineBasicBlock *CurBlock = CR.CaseBB;
2127 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
2128 MachineBasicBlock *FallThrough;
2129 if (I != E-1) {
2130 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
2131 CurMF->insert(BBI, FallThrough);
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002132
2133 // Put SV in a virtual register to make it available from the new blocks.
2134 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002135 } else {
2136 // If the last case doesn't match, go to the default block.
2137 FallThrough = Default;
2138 }
2139
Dan Gohman46510a72010-04-15 01:51:59 +00002140 const Value *RHS, *LHS, *MHS;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002141 ISD::CondCode CC;
2142 if (I->High == I->Low) {
2143 // This is just small small case range :) containing exactly 1 case
2144 CC = ISD::SETEQ;
2145 LHS = SV; RHS = I->High; MHS = NULL;
2146 } else {
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002147 CC = ISD::SETLE;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002148 LHS = I->Low; MHS = SV; RHS = I->High;
2149 }
Jakub Staszakc8f34de2011-07-29 22:25:21 +00002150
Manman Ren1a710fd2012-08-24 18:14:27 +00002151 // The false weight should be sum of all un-handled cases.
2152 UnhandledWeights -= I->ExtraWeight;
Jakub Staszakc8f34de2011-07-29 22:25:21 +00002153 CaseBlock CB(CC, LHS, RHS, MHS, /* truebb */ I->BB, /* falsebb */ FallThrough,
2154 /* me */ CurBlock,
Manman Ren1a710fd2012-08-24 18:14:27 +00002155 /* trueweight */ I->ExtraWeight,
2156 /* falseweight */ UnhandledWeights);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002157
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002158 // If emitting the first comparison, just call visitSwitchCase to emit the
2159 // code into the current block. Otherwise, push the CaseBlock onto the
2160 // vector to be later processed by SDISel, and insert the node's MBB
2161 // before the next MBB.
Dan Gohman99be8ae2010-04-19 22:41:47 +00002162 if (CurBlock == SwitchBB)
2163 visitSwitchCase(CB, SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002164 else
2165 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002166
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002167 CurBlock = FallThrough;
2168 }
2169
2170 return true;
2171}
2172
2173static inline bool areJTsAllowed(const TargetLowering &TLI) {
Evan Cheng769951f2012-07-02 22:39:56 +00002174 return TLI.supportJumpTables() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00002175 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
2176 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002177}
Anton Korobeynikov23218582008-12-23 22:25:27 +00002178
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002179static APInt ComputeRange(const APInt &First, const APInt &Last) {
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002180 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002181 APInt LastExt = Last.sext(BitWidth), FirstExt = First.sext(BitWidth);
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002182 return (LastExt - FirstExt + 1ULL);
2183}
2184
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002185/// handleJTSwitchCase - Emit jumptable for current switch case range
Chris Lattnerc3ab3882011-09-09 22:06:59 +00002186bool SelectionDAGBuilder::handleJTSwitchCase(CaseRec &CR,
2187 CaseRecVector &WorkList,
2188 const Value *SV,
2189 MachineBasicBlock *Default,
Dan Gohman99be8ae2010-04-19 22:41:47 +00002190 MachineBasicBlock *SwitchBB) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002191 Case& FrontCase = *CR.Range.first;
2192 Case& BackCase = *(CR.Range.second-1);
2193
Chris Lattnere880efe2009-11-07 07:50:34 +00002194 const APInt &First = cast<ConstantInt>(FrontCase.Low)->getValue();
2195 const APInt &Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002196
Chris Lattnere880efe2009-11-07 07:50:34 +00002197 APInt TSize(First.getBitWidth(), 0);
Chris Lattnerc3ab3882011-09-09 22:06:59 +00002198 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002199 TSize += I->size();
2200
Bill Wendlingba54bca2013-06-19 21:36:55 +00002201 const TargetLowering *TLI = TM.getTargetLowering();
2202 if (!areJTsAllowed(*TLI) || TSize.ult(TLI->getMinimumJumpTableEntries()))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002203 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002204
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002205 APInt Range = ComputeRange(First, Last);
Jakob Stoklund Olesen79443912011-10-26 01:47:48 +00002206 // The density is TSize / Range. Require at least 40%.
2207 // It should not be possible for IntTSize to saturate for sane code, but make
2208 // sure we handle Range saturation correctly.
2209 uint64_t IntRange = Range.getLimitedValue(UINT64_MAX/10);
2210 uint64_t IntTSize = TSize.getLimitedValue(UINT64_MAX/10);
2211 if (IntTSize * 10 < IntRange * 4)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002212 return false;
2213
David Greene4b69d992010-01-05 01:24:57 +00002214 DEBUG(dbgs() << "Lowering jump table\n"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002215 << "First entry: " << First << ". Last entry: " << Last << '\n'
Jakob Stoklund Olesen79443912011-10-26 01:47:48 +00002216 << "Range: " << Range << ". Size: " << TSize << ".\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002217
2218 // Get the MachineFunction which holds the current MBB. This is used when
2219 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00002220 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002221
2222 // Figure out which block is immediately after the current one.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002223 MachineFunction::iterator BBI = CR.CaseBB;
Duncan Sands51498522009-09-06 18:03:32 +00002224 ++BBI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002225
2226 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2227
2228 // Create a new basic block to hold the code for loading the address
2229 // of the jump table, and jumping to it. Update successor information;
2230 // we will either branch to the default case for the switch, or the jump
2231 // table.
2232 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2233 CurMF->insert(BBI, JumpTableBB);
Jakub Staszak7cc2b072011-06-16 20:22:37 +00002234
2235 addSuccessorWithWeight(CR.CaseBB, Default);
2236 addSuccessorWithWeight(CR.CaseBB, JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002237
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002238 // Build a vector of destination BBs, corresponding to each target
2239 // of the jump table. If the value of the jump table slot corresponds to
2240 // a case statement, push the case's BB onto the vector, otherwise, push
2241 // the default BB.
2242 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002243 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002244 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Chris Lattner071c62f2010-01-25 23:26:13 +00002245 const APInt &Low = cast<ConstantInt>(I->Low)->getValue();
2246 const APInt &High = cast<ConstantInt>(I->High)->getValue();
Anton Korobeynikov23218582008-12-23 22:25:27 +00002247
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002248 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002249 DestBBs.push_back(I->BB);
2250 if (TEI==High)
2251 ++I;
2252 } else {
2253 DestBBs.push_back(Default);
2254 }
2255 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002256
Manman Ren1a710fd2012-08-24 18:14:27 +00002257 // Calculate weight for each unique destination in CR.
2258 DenseMap<MachineBasicBlock*, uint32_t> DestWeights;
2259 if (FuncInfo.BPI)
2260 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
2261 DenseMap<MachineBasicBlock*, uint32_t>::iterator Itr =
2262 DestWeights.find(I->BB);
Stephen Lin155615d2013-07-08 00:37:03 +00002263 if (Itr != DestWeights.end())
Manman Ren1a710fd2012-08-24 18:14:27 +00002264 Itr->second += I->ExtraWeight;
2265 else
2266 DestWeights[I->BB] = I->ExtraWeight;
2267 }
2268
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002269 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002270 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
2271 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002272 E = DestBBs.end(); I != E; ++I) {
2273 if (!SuccsHandled[(*I)->getNumber()]) {
2274 SuccsHandled[(*I)->getNumber()] = true;
Manman Ren1a710fd2012-08-24 18:14:27 +00002275 DenseMap<MachineBasicBlock*, uint32_t>::iterator Itr =
2276 DestWeights.find(*I);
2277 addSuccessorWithWeight(JumpTableBB, *I,
2278 Itr != DestWeights.end() ? Itr->second : 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002279 }
2280 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002281
Bob Wilsond1ec31d2010-03-18 18:42:41 +00002282 // Create a jump table index for this jump table.
Bill Wendlingba54bca2013-06-19 21:36:55 +00002283 unsigned JTEncoding = TLI->getJumpTableEncoding();
Chris Lattner071c62f2010-01-25 23:26:13 +00002284 unsigned JTI = CurMF->getOrCreateJumpTableInfo(JTEncoding)
Bob Wilsond1ec31d2010-03-18 18:42:41 +00002285 ->createJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002286
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002287 // Set the jump table information so that we can codegen it as a second
2288 // MachineBasicBlock
2289 JumpTable JT(-1U, JTI, JumpTableBB, Default);
Dan Gohman99be8ae2010-04-19 22:41:47 +00002290 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == SwitchBB));
2291 if (CR.CaseBB == SwitchBB)
2292 visitJumpTableHeader(JT, JTH, SwitchBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002293
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002294 JTCases.push_back(JumpTableBlock(JTH, JT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002295 return true;
2296}
2297
2298/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
2299/// 2 subtrees.
Dan Gohman2048b852009-11-23 18:04:58 +00002300bool SelectionDAGBuilder::handleBTSplitSwitchCase(CaseRec& CR,
2301 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +00002302 const Value* SV,
Stephen Lin09f8ca32013-07-06 21:44:25 +00002303 MachineBasicBlock* Default,
2304 MachineBasicBlock* SwitchBB) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002305 // Get the MachineFunction which holds the current MBB. This is used when
2306 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00002307 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002308
2309 // Figure out which block is immediately after the current one.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002310 MachineFunction::iterator BBI = CR.CaseBB;
Duncan Sands51498522009-09-06 18:03:32 +00002311 ++BBI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002312
2313 Case& FrontCase = *CR.Range.first;
2314 Case& BackCase = *(CR.Range.second-1);
2315 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2316
2317 // Size is the number of Cases represented by this range.
2318 unsigned Size = CR.Range.second - CR.Range.first;
2319
Chris Lattnere880efe2009-11-07 07:50:34 +00002320 const APInt &First = cast<ConstantInt>(FrontCase.Low)->getValue();
2321 const APInt &Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002322 double FMetric = 0;
2323 CaseItr Pivot = CR.Range.first + Size/2;
2324
2325 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
2326 // (heuristically) allow us to emit JumpTable's later.
Chris Lattnere880efe2009-11-07 07:50:34 +00002327 APInt TSize(First.getBitWidth(), 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002328 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2329 I!=E; ++I)
2330 TSize += I->size();
2331
Chris Lattnere880efe2009-11-07 07:50:34 +00002332 APInt LSize = FrontCase.size();
2333 APInt RSize = TSize-LSize;
David Greene4b69d992010-01-05 01:24:57 +00002334 DEBUG(dbgs() << "Selecting best pivot: \n"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002335 << "First: " << First << ", Last: " << Last <<'\n'
2336 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002337 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
2338 J!=E; ++I, ++J) {
Chris Lattnere880efe2009-11-07 07:50:34 +00002339 const APInt &LEnd = cast<ConstantInt>(I->High)->getValue();
2340 const APInt &RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002341 APInt Range = ComputeRange(LEnd, RBegin);
Stepan Dyatkovskiyc2c52a62012-05-15 06:50:18 +00002342 assert((Range - 2ULL).isNonNegative() &&
2343 "Invalid case distance");
Chris Lattnerc3e4e592011-04-09 06:57:13 +00002344 // Use volatile double here to avoid excess precision issues on some hosts,
2345 // e.g. that use 80-bit X87 registers.
2346 volatile double LDensity =
2347 (double)LSize.roundToDouble() /
Chris Lattnere880efe2009-11-07 07:50:34 +00002348 (LEnd - First + 1ULL).roundToDouble();
Chris Lattnerc3e4e592011-04-09 06:57:13 +00002349 volatile double RDensity =
2350 (double)RSize.roundToDouble() /
Chris Lattnere880efe2009-11-07 07:50:34 +00002351 (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002352 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002353 // Should always split in some non-trivial place
David Greene4b69d992010-01-05 01:24:57 +00002354 DEBUG(dbgs() <<"=>Step\n"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002355 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
2356 << "LDensity: " << LDensity
2357 << ", RDensity: " << RDensity << '\n'
2358 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002359 if (FMetric < Metric) {
2360 Pivot = J;
2361 FMetric = Metric;
David Greene4b69d992010-01-05 01:24:57 +00002362 DEBUG(dbgs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002363 }
2364
2365 LSize += J->size();
2366 RSize -= J->size();
2367 }
Bill Wendlingba54bca2013-06-19 21:36:55 +00002368
2369 const TargetLowering *TLI = TM.getTargetLowering();
2370 if (areJTsAllowed(*TLI)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002371 // If our case is dense we *really* should handle it earlier!
2372 assert((FMetric > 0) && "Should handle dense range earlier!");
2373 } else {
2374 Pivot = CR.Range.first + Size/2;
2375 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002376
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002377 CaseRange LHSR(CR.Range.first, Pivot);
2378 CaseRange RHSR(Pivot, CR.Range.second);
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00002379 const Constant *C = Pivot->Low;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002380 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002381
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002382 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002383 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002384 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002385 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002386 // Pivot's Value, then we can branch directly to the LHS's Target,
2387 // rather than creating a leaf node for it.
2388 if ((LHSR.second - LHSR.first) == 1 &&
2389 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00002390 cast<ConstantInt>(C)->getValue() ==
2391 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002392 TrueBB = LHSR.first->BB;
2393 } else {
2394 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2395 CurMF->insert(BBI, TrueBB);
2396 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002397
2398 // Put SV in a virtual register to make it available from the new blocks.
2399 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002400 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002401
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002402 // Similar to the optimization above, if the Value being switched on is
2403 // known to be less than the Constant CR.LT, and the current Case Value
2404 // is CR.LT - 1, then we can branch directly to the target block for
2405 // the current Case Value, rather than emitting a RHS leaf node for it.
2406 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00002407 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
2408 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002409 FalseBB = RHSR.first->BB;
2410 } else {
2411 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2412 CurMF->insert(BBI, FalseBB);
2413 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002414
2415 // Put SV in a virtual register to make it available from the new blocks.
2416 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002417 }
2418
2419 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002420 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002421 // Otherwise, branch to LHS.
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002422 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002423
Dan Gohman99be8ae2010-04-19 22:41:47 +00002424 if (CR.CaseBB == SwitchBB)
2425 visitSwitchCase(CB, SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002426 else
2427 SwitchCases.push_back(CB);
2428
2429 return true;
2430}
2431
2432/// handleBitTestsSwitchCase - if current case range has few destination and
2433/// range span less, than machine word bitwidth, encode case range into series
2434/// of masks and emit bit tests with these masks.
Dan Gohman2048b852009-11-23 18:04:58 +00002435bool SelectionDAGBuilder::handleBitTestsSwitchCase(CaseRec& CR,
2436 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +00002437 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +00002438 MachineBasicBlock* Default,
Stephen Lin09f8ca32013-07-06 21:44:25 +00002439 MachineBasicBlock* SwitchBB) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00002440 const TargetLowering *TLI = TM.getTargetLowering();
2441 EVT PTy = TLI->getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002442 unsigned IntPtrBits = PTy.getSizeInBits();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002443
2444 Case& FrontCase = *CR.Range.first;
2445 Case& BackCase = *(CR.Range.second-1);
2446
2447 // Get the MachineFunction which holds the current MBB. This is used when
2448 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00002449 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002450
Anton Korobeynikovd34167a2009-05-08 18:51:34 +00002451 // If target does not have legal shift left, do not emit bit tests at all.
Matt Arsenault599c0af2013-10-21 19:24:15 +00002452 if (!TLI->isOperationLegal(ISD::SHL, PTy))
Anton Korobeynikovd34167a2009-05-08 18:51:34 +00002453 return false;
2454
Anton Korobeynikov23218582008-12-23 22:25:27 +00002455 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002456 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2457 I!=E; ++I) {
2458 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002459 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002460 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002461
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002462 // Count unique destinations
2463 SmallSet<MachineBasicBlock*, 4> Dests;
2464 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2465 Dests.insert(I->BB);
2466 if (Dests.size() > 3)
2467 // Don't bother the code below, if there are too much unique destinations
2468 return false;
2469 }
David Greene4b69d992010-01-05 01:24:57 +00002470 DEBUG(dbgs() << "Total number of unique destinations: "
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002471 << Dests.size() << '\n'
2472 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00002473
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002474 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002475 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
2476 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002477 APInt cmpRange = maxValue - minValue;
2478
David Greene4b69d992010-01-05 01:24:57 +00002479 DEBUG(dbgs() << "Compare range: " << cmpRange << '\n'
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002480 << "Low bound: " << minValue << '\n'
2481 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00002482
Dan Gohmane0567812010-04-08 23:03:40 +00002483 if (cmpRange.uge(IntPtrBits) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002484 (!(Dests.size() == 1 && numCmps >= 3) &&
2485 !(Dests.size() == 2 && numCmps >= 5) &&
2486 !(Dests.size() >= 3 && numCmps >= 6)))
2487 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002488
David Greene4b69d992010-01-05 01:24:57 +00002489 DEBUG(dbgs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00002490 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
2491
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002492 // Optimize the case where all the case values fit in a
2493 // word without having to subtract minValue. In this case,
2494 // we can optimize away the subtraction.
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002495 if (minValue.isNonNegative() && maxValue.slt(IntPtrBits)) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002496 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002497 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002498 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002499 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002500
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002501 CaseBitsVector CasesBits;
2502 unsigned i, count = 0;
2503
2504 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2505 MachineBasicBlock* Dest = I->BB;
2506 for (i = 0; i < count; ++i)
2507 if (Dest == CasesBits[i].BB)
2508 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002509
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002510 if (i == count) {
2511 assert((count < 3) && "Too much destinations to test!");
Manman Ren1a710fd2012-08-24 18:14:27 +00002512 CasesBits.push_back(CaseBits(0, Dest, 0, 0/*Weight*/));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002513 count++;
2514 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002515
2516 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
2517 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
2518
2519 uint64_t lo = (lowValue - lowBound).getZExtValue();
2520 uint64_t hi = (highValue - lowBound).getZExtValue();
Manman Ren1a710fd2012-08-24 18:14:27 +00002521 CasesBits[i].ExtraWeight += I->ExtraWeight;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002522
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002523 for (uint64_t j = lo; j <= hi; j++) {
2524 CasesBits[i].Mask |= 1ULL << j;
2525 CasesBits[i].Bits++;
2526 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002527
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002528 }
2529 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00002530
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002531 BitTestInfo BTC;
2532
2533 // Figure out which block is immediately after the current one.
2534 MachineFunction::iterator BBI = CR.CaseBB;
2535 ++BBI;
2536
2537 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2538
David Greene4b69d992010-01-05 01:24:57 +00002539 DEBUG(dbgs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002540 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
David Greene4b69d992010-01-05 01:24:57 +00002541 DEBUG(dbgs() << "Mask: " << CasesBits[i].Mask
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002542 << ", Bits: " << CasesBits[i].Bits
2543 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002544
2545 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2546 CurMF->insert(BBI, CaseBB);
2547 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2548 CaseBB,
Manman Ren1a710fd2012-08-24 18:14:27 +00002549 CasesBits[i].BB, CasesBits[i].ExtraWeight));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002550
2551 // Put SV in a virtual register to make it available from the new blocks.
2552 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002553 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002554
2555 BitTestBlock BTB(lowBound, cmpRange, SV,
Evan Chengd08e5b42011-01-06 01:02:44 +00002556 -1U, MVT::Other, (CR.CaseBB == SwitchBB),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002557 CR.CaseBB, Default, BTC);
2558
Dan Gohman99be8ae2010-04-19 22:41:47 +00002559 if (CR.CaseBB == SwitchBB)
2560 visitBitTestHeader(BTB, SwitchBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002561
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002562 BitTestCases.push_back(BTB);
2563
2564 return true;
2565}
2566
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002567/// Clusterify - Transform simple list of Cases into list of CaseRange's
Dan Gohman2048b852009-11-23 18:04:58 +00002568size_t SelectionDAGBuilder::Clusterify(CaseVector& Cases,
2569 const SwitchInst& SI) {
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002570 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002571
Manman Ren1a710fd2012-08-24 18:14:27 +00002572 BranchProbabilityInfo *BPI = FuncInfo.BPI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002573 // Start with "simple" cases
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002574 for (SwitchInst::ConstCaseIt i = SI.case_begin(), e = SI.case_end();
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002575 i != e; ++i) {
2576 const BasicBlock *SuccBB = i.getCaseSuccessor();
Jakub Staszakc8f34de2011-07-29 22:25:21 +00002577 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SuccBB];
2578
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002579 uint32_t ExtraWeight =
2580 BPI ? BPI->getEdgeWeight(SI.getParent(), i.getSuccessorIndex()) : 0;
2581
2582 Cases.push_back(Case(i.getCaseValue(), i.getCaseValue(),
2583 SMBB, ExtraWeight));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002584 }
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002585 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Stephen Lin155615d2013-07-08 00:37:03 +00002586
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002587 // Merge case into clusters
2588 if (Cases.size() >= 2)
2589 // Must recompute end() each iteration because it may be
2590 // invalidated by erase if we hold on to it
2591 for (CaseItr I = Cases.begin(), J = llvm::next(Cases.begin());
2592 J != Cases.end(); ) {
2593 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2594 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
2595 MachineBasicBlock* nextBB = J->BB;
2596 MachineBasicBlock* currentBB = I->BB;
Stephen Lin155615d2013-07-08 00:37:03 +00002597
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002598 // If the two neighboring cases go to the same destination, merge them
2599 // into a single case.
2600 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
2601 I->High = J->High;
2602 I->ExtraWeight += J->ExtraWeight;
2603 J = Cases.erase(J);
2604 } else {
2605 I = J++;
2606 }
2607 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002608
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002609 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2610 if (I->Low != I->High)
2611 // A range counts double, since it requires two compares.
2612 ++numCmps;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002613 }
2614
2615 return numCmps;
2616}
2617
Jakob Stoklund Olesen2622f462010-09-30 19:44:31 +00002618void SelectionDAGBuilder::UpdateSplitBlock(MachineBasicBlock *First,
2619 MachineBasicBlock *Last) {
2620 // Update JTCases.
2621 for (unsigned i = 0, e = JTCases.size(); i != e; ++i)
2622 if (JTCases[i].first.HeaderBB == First)
2623 JTCases[i].first.HeaderBB = Last;
2624
2625 // Update BitTestCases.
2626 for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i)
2627 if (BitTestCases[i].Parent == First)
2628 BitTestCases[i].Parent = Last;
2629}
2630
Dan Gohman46510a72010-04-15 01:51:59 +00002631void SelectionDAGBuilder::visitSwitch(const SwitchInst &SI) {
Dan Gohman84023e02010-07-10 09:00:22 +00002632 MachineBasicBlock *SwitchMBB = FuncInfo.MBB;
Dan Gohman99be8ae2010-04-19 22:41:47 +00002633
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002634 // Figure out which block is immediately after the current one.
2635 MachineBasicBlock *NextBlock = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002636 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2637
2638 // If there is only the default destination, branch to it if it is not the
2639 // next basic block. Otherwise, just fall through.
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00002640 if (!SI.getNumCases()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002641 // Update machine-CFG edges.
2642
2643 // If this is not a fall-through branch, emit the branch.
Dan Gohman99be8ae2010-04-19 22:41:47 +00002644 SwitchMBB->addSuccessor(Default);
Bill Wendling4533cac2010-01-28 21:51:40 +00002645 if (Default != NextBlock)
Andrew Trickac6d9be2013-05-25 02:42:55 +00002646 DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(),
Bill Wendling4533cac2010-01-28 21:51:40 +00002647 MVT::Other, getControlRoot(),
2648 DAG.getBasicBlock(Default)));
Bill Wendling49fcff82009-12-21 22:30:11 +00002649
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002650 return;
2651 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002652
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002653 // If there are any non-default case statements, create a vector of Cases
2654 // representing each one, and sort the vector so that we can efficiently
2655 // create a binary search tree from them.
2656 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002657 size_t numCmps = Clusterify(Cases, SI);
David Greene4b69d992010-01-05 01:24:57 +00002658 DEBUG(dbgs() << "Clusterify finished. Total clusters: " << Cases.size()
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002659 << ". Total compares: " << numCmps << '\n');
Duncan Sands17001ce2011-10-18 12:44:00 +00002660 (void)numCmps;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002661
2662 // Get the Value to be switched on and default basic blocks, which will be
2663 // inserted into CaseBlock records, representing basic blocks in the binary
2664 // search tree.
Eli Friedmanbb5a7442011-09-29 20:21:17 +00002665 const Value *SV = SI.getCondition();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002666
2667 // Push the initial CaseRec onto the worklist
2668 CaseRecVector WorkList;
Dan Gohman99be8ae2010-04-19 22:41:47 +00002669 WorkList.push_back(CaseRec(SwitchMBB,0,0,
2670 CaseRange(Cases.begin(),Cases.end())));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002671
2672 while (!WorkList.empty()) {
2673 // Grab a record representing a case range to process off the worklist
2674 CaseRec CR = WorkList.back();
2675 WorkList.pop_back();
2676
Dan Gohman99be8ae2010-04-19 22:41:47 +00002677 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default, SwitchMBB))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002678 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002679
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002680 // If the range has few cases (two or less) emit a series of specific
2681 // tests.
Dan Gohman99be8ae2010-04-19 22:41:47 +00002682 if (handleSmallSwitchRange(CR, WorkList, SV, Default, SwitchMBB))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002683 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002684
Sebastian Pop1a37d7e2012-09-25 20:35:36 +00002685 // If the switch has more than N blocks, and is at least 40% dense, and the
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002686 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002687 // lowering the switch to a binary tree of conditional branches.
Sebastian Pop1a37d7e2012-09-25 20:35:36 +00002688 // N defaults to 4 and is controlled via TLS.getMinimumJumpTableEntries().
Dan Gohman99be8ae2010-04-19 22:41:47 +00002689 if (handleJTSwitchCase(CR, WorkList, SV, Default, SwitchMBB))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002690 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002691
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002692 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2693 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
Dan Gohman99be8ae2010-04-19 22:41:47 +00002694 handleBTSplitSwitchCase(CR, WorkList, SV, Default, SwitchMBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002695 }
2696}
2697
Dan Gohman46510a72010-04-15 01:51:59 +00002698void SelectionDAGBuilder::visitIndirectBr(const IndirectBrInst &I) {
Dan Gohman84023e02010-07-10 09:00:22 +00002699 MachineBasicBlock *IndirectBrMBB = FuncInfo.MBB;
Dan Gohman99be8ae2010-04-19 22:41:47 +00002700
Jakob Stoklund Olesen598b24c2010-02-11 00:34:18 +00002701 // Update machine-CFG edges with unique successors.
Nadav Rotemee0ce152012-10-23 21:05:33 +00002702 SmallSet<BasicBlock*, 32> Done;
2703 for (unsigned i = 0, e = I.getNumSuccessors(); i != e; ++i) {
2704 BasicBlock *BB = I.getSuccessor(i);
2705 bool Inserted = Done.insert(BB);
2706 if (!Inserted)
2707 continue;
2708
2709 MachineBasicBlock *Succ = FuncInfo.MBBMap[BB];
Jakub Staszak7cc2b072011-06-16 20:22:37 +00002710 addSuccessorWithWeight(IndirectBrMBB, Succ);
2711 }
Dan Gohmaneef55dc2009-10-27 22:10:34 +00002712
Andrew Trickac6d9be2013-05-25 02:42:55 +00002713 DAG.setRoot(DAG.getNode(ISD::BRIND, getCurSDLoc(),
Bill Wendling4533cac2010-01-28 21:51:40 +00002714 MVT::Other, getControlRoot(),
2715 getValue(I.getAddress())));
Bill Wendling49fcff82009-12-21 22:30:11 +00002716}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002717
Dan Gohman46510a72010-04-15 01:51:59 +00002718void SelectionDAGBuilder::visitFSub(const User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002719 // -0.0 - X --> fneg
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002720 Type *Ty = I.getType();
Chris Lattner2ca5c862011-02-15 00:14:00 +00002721 if (isa<Constant>(I.getOperand(0)) &&
2722 I.getOperand(0) == ConstantFP::getZeroValueForNegation(Ty)) {
2723 SDValue Op2 = getValue(I.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00002724 setValue(&I, DAG.getNode(ISD::FNEG, getCurSDLoc(),
Chris Lattner2ca5c862011-02-15 00:14:00 +00002725 Op2.getValueType(), Op2));
2726 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002727 }
Bill Wendling49fcff82009-12-21 22:30:11 +00002728
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002729 visitBinary(I, ISD::FSUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002730}
2731
Dan Gohman46510a72010-04-15 01:51:59 +00002732void SelectionDAGBuilder::visitBinary(const User &I, unsigned OpCode) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002733 SDValue Op1 = getValue(I.getOperand(0));
2734 SDValue Op2 = getValue(I.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00002735 setValue(&I, DAG.getNode(OpCode, getCurSDLoc(),
Bill Wendling4533cac2010-01-28 21:51:40 +00002736 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002737}
2738
Dan Gohman46510a72010-04-15 01:51:59 +00002739void SelectionDAGBuilder::visitShift(const User &I, unsigned Opcode) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002740 SDValue Op1 = getValue(I.getOperand(0));
2741 SDValue Op2 = getValue(I.getOperand(1));
Owen Anderson95771af2011-02-25 21:41:48 +00002742
Bill Wendlingba54bca2013-06-19 21:36:55 +00002743 EVT ShiftTy = TM.getTargetLowering()->getShiftAmountTy(Op2.getValueType());
Owen Anderson95771af2011-02-25 21:41:48 +00002744
Chris Lattnerd3027732011-02-13 09:02:52 +00002745 // Coerce the shift amount to the right type if we can.
2746 if (!I.getType()->isVectorTy() && Op2.getValueType() != ShiftTy) {
Chris Lattner915eeb42011-02-13 09:10:56 +00002747 unsigned ShiftSize = ShiftTy.getSizeInBits();
2748 unsigned Op2Size = Op2.getValueType().getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +00002749 SDLoc DL = getCurSDLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002750
Dan Gohman57fc82d2009-04-09 03:51:29 +00002751 // If the operand is smaller than the shift count type, promote it.
Chris Lattnerd3027732011-02-13 09:02:52 +00002752 if (ShiftSize > Op2Size)
2753 Op2 = DAG.getNode(ISD::ZERO_EXTEND, DL, ShiftTy, Op2);
Owen Anderson95771af2011-02-25 21:41:48 +00002754
Dan Gohman57fc82d2009-04-09 03:51:29 +00002755 // If the operand is larger than the shift count type but the shift
2756 // count type has enough bits to represent any shift value, truncate
2757 // it now. This is a common case and it exposes the truncate to
2758 // optimization early.
Chris Lattnerd3027732011-02-13 09:02:52 +00002759 else if (ShiftSize >= Log2_32_Ceil(Op2.getValueType().getSizeInBits()))
2760 Op2 = DAG.getNode(ISD::TRUNCATE, DL, ShiftTy, Op2);
2761 // Otherwise we'll need to temporarily settle for some other convenient
Chris Lattnere0751182011-02-13 19:09:16 +00002762 // type. Type legalization will make adjustments once the shiftee is split.
Chris Lattnerd3027732011-02-13 09:02:52 +00002763 else
Chris Lattnere0751182011-02-13 19:09:16 +00002764 Op2 = DAG.getZExtOrTrunc(Op2, DL, MVT::i32);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002765 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002766
Andrew Trickac6d9be2013-05-25 02:42:55 +00002767 setValue(&I, DAG.getNode(Opcode, getCurSDLoc(),
Bill Wendling4533cac2010-01-28 21:51:40 +00002768 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002769}
2770
Benjamin Kramer9c640302011-07-08 10:31:30 +00002771void SelectionDAGBuilder::visitSDiv(const User &I) {
Benjamin Kramer9c640302011-07-08 10:31:30 +00002772 SDValue Op1 = getValue(I.getOperand(0));
2773 SDValue Op2 = getValue(I.getOperand(1));
2774
2775 // Turn exact SDivs into multiplications.
2776 // FIXME: This should be in DAGCombiner, but it doesn't have access to the
2777 // exact bit.
Benjamin Kramer3492a4a2011-07-08 12:08:24 +00002778 if (isa<BinaryOperator>(&I) && cast<BinaryOperator>(&I)->isExact() &&
2779 !isa<ConstantSDNode>(Op1) &&
Benjamin Kramer9c640302011-07-08 10:31:30 +00002780 isa<ConstantSDNode>(Op2) && !cast<ConstantSDNode>(Op2)->isNullValue())
Bill Wendlingba54bca2013-06-19 21:36:55 +00002781 setValue(&I, TM.getTargetLowering()->BuildExactSDIV(Op1, Op2,
2782 getCurSDLoc(), DAG));
Benjamin Kramer9c640302011-07-08 10:31:30 +00002783 else
Andrew Trickac6d9be2013-05-25 02:42:55 +00002784 setValue(&I, DAG.getNode(ISD::SDIV, getCurSDLoc(), Op1.getValueType(),
Benjamin Kramer9c640302011-07-08 10:31:30 +00002785 Op1, Op2));
2786}
2787
Dan Gohman46510a72010-04-15 01:51:59 +00002788void SelectionDAGBuilder::visitICmp(const User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002789 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
Dan Gohman46510a72010-04-15 01:51:59 +00002790 if (const ICmpInst *IC = dyn_cast<ICmpInst>(&I))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002791 predicate = IC->getPredicate();
Dan Gohman46510a72010-04-15 01:51:59 +00002792 else if (const ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002793 predicate = ICmpInst::Predicate(IC->getPredicate());
2794 SDValue Op1 = getValue(I.getOperand(0));
2795 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002796 ISD::CondCode Opcode = getICmpCondCode(predicate);
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00002797
Bill Wendlingba54bca2013-06-19 21:36:55 +00002798 EVT DestVT = TM.getTargetLowering()->getValueType(I.getType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002799 setValue(&I, DAG.getSetCC(getCurSDLoc(), DestVT, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002800}
2801
Dan Gohman46510a72010-04-15 01:51:59 +00002802void SelectionDAGBuilder::visitFCmp(const User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002803 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
Dan Gohman46510a72010-04-15 01:51:59 +00002804 if (const FCmpInst *FC = dyn_cast<FCmpInst>(&I))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002805 predicate = FC->getPredicate();
Dan Gohman46510a72010-04-15 01:51:59 +00002806 else if (const ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002807 predicate = FCmpInst::Predicate(FC->getPredicate());
2808 SDValue Op1 = getValue(I.getOperand(0));
2809 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002810 ISD::CondCode Condition = getFCmpCondCode(predicate);
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002811 if (TM.Options.NoNaNsFPMath)
2812 Condition = getFCmpCodeWithoutNaN(Condition);
Bill Wendlingba54bca2013-06-19 21:36:55 +00002813 EVT DestVT = TM.getTargetLowering()->getValueType(I.getType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002814 setValue(&I, DAG.getSetCC(getCurSDLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002815}
2816
Dan Gohman46510a72010-04-15 01:51:59 +00002817void SelectionDAGBuilder::visitSelect(const User &I) {
Owen Andersone50ed302009-08-10 22:56:29 +00002818 SmallVector<EVT, 4> ValueVTs;
Bill Wendlingba54bca2013-06-19 21:36:55 +00002819 ComputeValueVTs(*TM.getTargetLowering(), I.getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002820 unsigned NumValues = ValueVTs.size();
Bill Wendling49fcff82009-12-21 22:30:11 +00002821 if (NumValues == 0) return;
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002822
Bill Wendling49fcff82009-12-21 22:30:11 +00002823 SmallVector<SDValue, 4> Values(NumValues);
2824 SDValue Cond = getValue(I.getOperand(0));
2825 SDValue TrueVal = getValue(I.getOperand(1));
2826 SDValue FalseVal = getValue(I.getOperand(2));
Duncan Sands28b77e92011-09-06 19:07:46 +00002827 ISD::NodeType OpCode = Cond.getValueType().isVector() ?
2828 ISD::VSELECT : ISD::SELECT;
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002829
Bill Wendling4533cac2010-01-28 21:51:40 +00002830 for (unsigned i = 0; i != NumValues; ++i)
Andrew Trickac6d9be2013-05-25 02:42:55 +00002831 Values[i] = DAG.getNode(OpCode, getCurSDLoc(),
Duncan Sands28b77e92011-09-06 19:07:46 +00002832 TrueVal.getNode()->getValueType(TrueVal.getResNo()+i),
Chris Lattnerb3e87b22010-03-12 07:15:36 +00002833 Cond,
Bill Wendling49fcff82009-12-21 22:30:11 +00002834 SDValue(TrueVal.getNode(),
2835 TrueVal.getResNo() + i),
2836 SDValue(FalseVal.getNode(),
2837 FalseVal.getResNo() + i));
2838
Andrew Trickac6d9be2013-05-25 02:42:55 +00002839 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(),
Bill Wendling4533cac2010-01-28 21:51:40 +00002840 DAG.getVTList(&ValueVTs[0], NumValues),
2841 &Values[0], NumValues));
Bill Wendling49fcff82009-12-21 22:30:11 +00002842}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002843
Dan Gohman46510a72010-04-15 01:51:59 +00002844void SelectionDAGBuilder::visitTrunc(const User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002845 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2846 SDValue N = getValue(I.getOperand(0));
Bill Wendlingba54bca2013-06-19 21:36:55 +00002847 EVT DestVT = TM.getTargetLowering()->getValueType(I.getType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002848 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurSDLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002849}
2850
Dan Gohman46510a72010-04-15 01:51:59 +00002851void SelectionDAGBuilder::visitZExt(const User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002852 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2853 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2854 SDValue N = getValue(I.getOperand(0));
Bill Wendlingba54bca2013-06-19 21:36:55 +00002855 EVT DestVT = TM.getTargetLowering()->getValueType(I.getType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002856 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurSDLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002857}
2858
Dan Gohman46510a72010-04-15 01:51:59 +00002859void SelectionDAGBuilder::visitSExt(const User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002860 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2861 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2862 SDValue N = getValue(I.getOperand(0));
Bill Wendlingba54bca2013-06-19 21:36:55 +00002863 EVT DestVT = TM.getTargetLowering()->getValueType(I.getType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002864 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurSDLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002865}
2866
Dan Gohman46510a72010-04-15 01:51:59 +00002867void SelectionDAGBuilder::visitFPTrunc(const User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002868 // FPTrunc is never a no-op cast, no need to check
2869 SDValue N = getValue(I.getOperand(0));
Bill Wendlingba54bca2013-06-19 21:36:55 +00002870 const TargetLowering *TLI = TM.getTargetLowering();
2871 EVT DestVT = TLI->getValueType(I.getType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002872 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurSDLoc(),
Pete Cooperf57e1c22012-01-17 01:54:07 +00002873 DestVT, N,
Bill Wendlingba54bca2013-06-19 21:36:55 +00002874 DAG.getTargetConstant(0, TLI->getPointerTy())));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002875}
2876
Stephen Lin09f8ca32013-07-06 21:44:25 +00002877void SelectionDAGBuilder::visitFPExt(const User &I) {
Hal Finkel46bb70c2011-10-18 03:51:57 +00002878 // FPExt is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002879 SDValue N = getValue(I.getOperand(0));
Bill Wendlingba54bca2013-06-19 21:36:55 +00002880 EVT DestVT = TM.getTargetLowering()->getValueType(I.getType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002881 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurSDLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002882}
2883
Dan Gohman46510a72010-04-15 01:51:59 +00002884void SelectionDAGBuilder::visitFPToUI(const User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002885 // FPToUI is never a no-op cast, no need to check
2886 SDValue N = getValue(I.getOperand(0));
Bill Wendlingba54bca2013-06-19 21:36:55 +00002887 EVT DestVT = TM.getTargetLowering()->getValueType(I.getType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002888 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurSDLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002889}
2890
Dan Gohman46510a72010-04-15 01:51:59 +00002891void SelectionDAGBuilder::visitFPToSI(const User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002892 // FPToSI is never a no-op cast, no need to check
2893 SDValue N = getValue(I.getOperand(0));
Bill Wendlingba54bca2013-06-19 21:36:55 +00002894 EVT DestVT = TM.getTargetLowering()->getValueType(I.getType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002895 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurSDLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002896}
2897
Dan Gohman46510a72010-04-15 01:51:59 +00002898void SelectionDAGBuilder::visitUIToFP(const User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002899 // UIToFP is never a no-op cast, no need to check
2900 SDValue N = getValue(I.getOperand(0));
Bill Wendlingba54bca2013-06-19 21:36:55 +00002901 EVT DestVT = TM.getTargetLowering()->getValueType(I.getType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002902 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurSDLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002903}
2904
Stephen Lin09f8ca32013-07-06 21:44:25 +00002905void SelectionDAGBuilder::visitSIToFP(const User &I) {
Bill Wendling181b6272008-10-19 20:34:04 +00002906 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002907 SDValue N = getValue(I.getOperand(0));
Bill Wendlingba54bca2013-06-19 21:36:55 +00002908 EVT DestVT = TM.getTargetLowering()->getValueType(I.getType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002909 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurSDLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002910}
2911
Dan Gohman46510a72010-04-15 01:51:59 +00002912void SelectionDAGBuilder::visitPtrToInt(const User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002913 // What to do depends on the size of the integer and the size of the pointer.
2914 // We can either truncate, zero extend, or no-op, accordingly.
2915 SDValue N = getValue(I.getOperand(0));
Bill Wendlingba54bca2013-06-19 21:36:55 +00002916 EVT DestVT = TM.getTargetLowering()->getValueType(I.getType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002917 setValue(&I, DAG.getZExtOrTrunc(N, getCurSDLoc(), DestVT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002918}
2919
Dan Gohman46510a72010-04-15 01:51:59 +00002920void SelectionDAGBuilder::visitIntToPtr(const User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002921 // What to do depends on the size of the integer and the size of the pointer.
2922 // We can either truncate, zero extend, or no-op, accordingly.
2923 SDValue N = getValue(I.getOperand(0));
Bill Wendlingba54bca2013-06-19 21:36:55 +00002924 EVT DestVT = TM.getTargetLowering()->getValueType(I.getType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002925 setValue(&I, DAG.getZExtOrTrunc(N, getCurSDLoc(), DestVT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002926}
2927
Dan Gohman46510a72010-04-15 01:51:59 +00002928void SelectionDAGBuilder::visitBitCast(const User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002929 SDValue N = getValue(I.getOperand(0));
Bill Wendlingba54bca2013-06-19 21:36:55 +00002930 EVT DestVT = TM.getTargetLowering()->getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002931
Bill Wendling49fcff82009-12-21 22:30:11 +00002932 // BitCast assures us that source and destination are the same size so this is
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002933 // either a BITCAST or a no-op.
Bill Wendling4533cac2010-01-28 21:51:40 +00002934 if (DestVT != N.getValueType())
Andrew Trickac6d9be2013-05-25 02:42:55 +00002935 setValue(&I, DAG.getNode(ISD::BITCAST, getCurSDLoc(),
Bill Wendling4533cac2010-01-28 21:51:40 +00002936 DestVT, N)); // convert types.
2937 else
Bill Wendling49fcff82009-12-21 22:30:11 +00002938 setValue(&I, N); // noop cast.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002939}
2940
Dan Gohman46510a72010-04-15 01:51:59 +00002941void SelectionDAGBuilder::visitInsertElement(const User &I) {
Tom Stellard425b76c2013-08-05 22:22:01 +00002942 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002943 SDValue InVec = getValue(I.getOperand(0));
2944 SDValue InVal = getValue(I.getOperand(1));
Tom Stellard425b76c2013-08-05 22:22:01 +00002945 SDValue InIdx = DAG.getSExtOrTrunc(getValue(I.getOperand(2)),
2946 getCurSDLoc(), TLI.getVectorIdxTy());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002947 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurSDLoc(),
Bill Wendlingba54bca2013-06-19 21:36:55 +00002948 TM.getTargetLowering()->getValueType(I.getType()),
Bill Wendling4533cac2010-01-28 21:51:40 +00002949 InVec, InVal, InIdx));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002950}
2951
Dan Gohman46510a72010-04-15 01:51:59 +00002952void SelectionDAGBuilder::visitExtractElement(const User &I) {
Tom Stellard425b76c2013-08-05 22:22:01 +00002953 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002954 SDValue InVec = getValue(I.getOperand(0));
Tom Stellard425b76c2013-08-05 22:22:01 +00002955 SDValue InIdx = DAG.getSExtOrTrunc(getValue(I.getOperand(1)),
2956 getCurSDLoc(), TLI.getVectorIdxTy());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002957 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurSDLoc(),
Bill Wendlingba54bca2013-06-19 21:36:55 +00002958 TM.getTargetLowering()->getValueType(I.getType()),
2959 InVec, InIdx));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002960}
2961
Craig Topper51578342012-01-04 09:23:09 +00002962// Utility for visitShuffleVector - Return true if every element in Mask,
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00002963// beginning from position Pos and ending in Pos+Size, falls within the
Craig Topper51578342012-01-04 09:23:09 +00002964// specified sequential range [L, L+Pos). or is undef.
2965static bool isSequentialInRange(const SmallVectorImpl<int> &Mask,
Craig Topper23de31b2012-04-11 03:06:35 +00002966 unsigned Pos, unsigned Size, int Low) {
2967 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
Craig Topper51578342012-01-04 09:23:09 +00002968 if (Mask[i] >= 0 && Mask[i] != Low)
Nate Begeman9008ca62009-04-27 18:41:29 +00002969 return false;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002970 return true;
2971}
2972
Dan Gohman46510a72010-04-15 01:51:59 +00002973void SelectionDAGBuilder::visitShuffleVector(const User &I) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002974 SDValue Src1 = getValue(I.getOperand(0));
2975 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002976
Chris Lattner56243b82012-01-26 02:51:13 +00002977 SmallVector<int, 8> Mask;
2978 ShuffleVectorInst::getShuffleMask(cast<Constant>(I.getOperand(2)), Mask);
2979 unsigned MaskNumElts = Mask.size();
Bill Wendlingba54bca2013-06-19 21:36:55 +00002980
2981 const TargetLowering *TLI = TM.getTargetLowering();
2982 EVT VT = TLI->getValueType(I.getType());
Owen Andersone50ed302009-08-10 22:56:29 +00002983 EVT SrcVT = Src1.getValueType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00002984 unsigned SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002985
Mon P Wangc7849c22008-11-16 05:06:27 +00002986 if (SrcNumElts == MaskNumElts) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002987 setValue(&I, DAG.getVectorShuffle(VT, getCurSDLoc(), Src1, Src2,
Bill Wendling4533cac2010-01-28 21:51:40 +00002988 &Mask[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002989 return;
2990 }
2991
2992 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002993 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2994 // Mask is longer than the source vectors and is a multiple of the source
2995 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002996 // lengths match.
Craig Topper51578342012-01-04 09:23:09 +00002997 if (SrcNumElts*2 == MaskNumElts) {
2998 // First check for Src1 in low and Src2 in high
2999 if (isSequentialInRange(Mask, 0, SrcNumElts, 0) &&
3000 isSequentialInRange(Mask, SrcNumElts, SrcNumElts, SrcNumElts)) {
3001 // The shuffle is concatenating two vectors together.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003002 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurSDLoc(),
Craig Topper51578342012-01-04 09:23:09 +00003003 VT, Src1, Src2));
3004 return;
3005 }
3006 // Then check for Src2 in low and Src1 in high
3007 if (isSequentialInRange(Mask, 0, SrcNumElts, SrcNumElts) &&
3008 isSequentialInRange(Mask, SrcNumElts, SrcNumElts, 0)) {
3009 // The shuffle is concatenating two vectors together.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003010 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurSDLoc(),
Craig Topper51578342012-01-04 09:23:09 +00003011 VT, Src2, Src1));
3012 return;
3013 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00003014 }
3015
Mon P Wangc7849c22008-11-16 05:06:27 +00003016 // Pad both vectors with undefs to make them the same length as the mask.
3017 unsigned NumConcat = MaskNumElts / SrcNumElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00003018 bool Src1U = Src1.getOpcode() == ISD::UNDEF;
3019 bool Src2U = Src2.getOpcode() == ISD::UNDEF;
Dale Johannesene8d72302009-02-06 23:05:02 +00003020 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00003021
Nate Begeman9008ca62009-04-27 18:41:29 +00003022 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
3023 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
Mon P Wang230e4fa2008-11-21 04:25:21 +00003024 MOps1[0] = Src1;
3025 MOps2[0] = Src2;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00003026
3027 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003028 getCurSDLoc(), VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003029 &MOps1[0], NumConcat);
3030 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003031 getCurSDLoc(), VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003032 &MOps2[0], NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00003033
Mon P Wangaeb06d22008-11-10 04:46:22 +00003034 // Readjust mask for new input vector length.
Nate Begeman9008ca62009-04-27 18:41:29 +00003035 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003036 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003037 int Idx = Mask[i];
Craig Topper23de31b2012-04-11 03:06:35 +00003038 if (Idx >= (int)SrcNumElts)
3039 Idx -= SrcNumElts - MaskNumElts;
3040 MappedOps.push_back(Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00003041 }
Bill Wendlingb85b6e82009-12-21 22:42:14 +00003042
Andrew Trickac6d9be2013-05-25 02:42:55 +00003043 setValue(&I, DAG.getVectorShuffle(VT, getCurSDLoc(), Src1, Src2,
Bill Wendling4533cac2010-01-28 21:51:40 +00003044 &MappedOps[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00003045 return;
3046 }
3047
Mon P Wangc7849c22008-11-16 05:06:27 +00003048 if (SrcNumElts > MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00003049 // Analyze the access pattern of the vector to see if we can extract
3050 // two subvectors and do the shuffle. The analysis is done by calculating
3051 // the range of elements the mask access on both vectors.
Craig Topper10612dc2012-04-08 23:15:04 +00003052 int MinRange[2] = { static_cast<int>(SrcNumElts),
3053 static_cast<int>(SrcNumElts)};
Mon P Wangc7849c22008-11-16 05:06:27 +00003054 int MaxRange[2] = {-1, -1};
3055
Nate Begeman5a5ca152009-04-29 05:20:52 +00003056 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003057 int Idx = Mask[i];
Craig Topper10612dc2012-04-08 23:15:04 +00003058 unsigned Input = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003059 if (Idx < 0)
3060 continue;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00003061
Nate Begeman5a5ca152009-04-29 05:20:52 +00003062 if (Idx >= (int)SrcNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003063 Input = 1;
3064 Idx -= SrcNumElts;
Mon P Wangaeb06d22008-11-10 04:46:22 +00003065 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003066 if (Idx > MaxRange[Input])
3067 MaxRange[Input] = Idx;
3068 if (Idx < MinRange[Input])
3069 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00003070 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00003071
Mon P Wangc7849c22008-11-16 05:06:27 +00003072 // Check if the access is smaller than the vector size and can we find
3073 // a reasonable extract index.
Craig Topper10612dc2012-04-08 23:15:04 +00003074 int RangeUse[2] = { -1, -1 }; // 0 = Unused, 1 = Extract, -1 = Can not
3075 // Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00003076 int StartIdx[2]; // StartIdx to extract from
Craig Topper10612dc2012-04-08 23:15:04 +00003077 for (unsigned Input = 0; Input < 2; ++Input) {
3078 if (MinRange[Input] >= (int)SrcNumElts && MaxRange[Input] < 0) {
Mon P Wangc7849c22008-11-16 05:06:27 +00003079 RangeUse[Input] = 0; // Unused
3080 StartIdx[Input] = 0;
Craig Topperf873dde2012-04-08 17:53:33 +00003081 continue;
Mon P Wang230e4fa2008-11-21 04:25:21 +00003082 }
Craig Topperf873dde2012-04-08 17:53:33 +00003083
3084 // Find a good start index that is a multiple of the mask length. Then
3085 // see if the rest of the elements are in range.
3086 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
3087 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts &&
3088 StartIdx[Input] + MaskNumElts <= SrcNumElts)
3089 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00003090 }
3091
Bill Wendling636e2582009-08-21 18:16:06 +00003092 if (RangeUse[0] == 0 && RangeUse[1] == 0) {
Bill Wendling4533cac2010-01-28 21:51:40 +00003093 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00003094 return;
3095 }
Craig Topper10612dc2012-04-08 23:15:04 +00003096 if (RangeUse[0] >= 0 && RangeUse[1] >= 0) {
Mon P Wangc7849c22008-11-16 05:06:27 +00003097 // Extract appropriate subvector and generate a vector shuffle
Craig Topper10612dc2012-04-08 23:15:04 +00003098 for (unsigned Input = 0; Input < 2; ++Input) {
Bill Wendling87710f02009-12-21 23:47:40 +00003099 SDValue &Src = Input == 0 ? Src1 : Src2;
Bill Wendlingb85b6e82009-12-21 22:42:14 +00003100 if (RangeUse[Input] == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00003101 Src = DAG.getUNDEF(VT);
Bill Wendlingb85b6e82009-12-21 22:42:14 +00003102 else
Andrew Trickac6d9be2013-05-25 02:42:55 +00003103 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurSDLoc(), VT,
Tom Stellard425b76c2013-08-05 22:22:01 +00003104 Src, DAG.getConstant(StartIdx[Input],
3105 TLI->getVectorIdxTy()));
Mon P Wangaeb06d22008-11-10 04:46:22 +00003106 }
Bill Wendlingb85b6e82009-12-21 22:42:14 +00003107
Mon P Wangc7849c22008-11-16 05:06:27 +00003108 // Calculate new mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00003109 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003110 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003111 int Idx = Mask[i];
Craig Topper23de31b2012-04-11 03:06:35 +00003112 if (Idx >= 0) {
3113 if (Idx < (int)SrcNumElts)
3114 Idx -= StartIdx[0];
3115 else
3116 Idx -= SrcNumElts + StartIdx[1] - MaskNumElts;
3117 }
3118 MappedOps.push_back(Idx);
Mon P Wangc7849c22008-11-16 05:06:27 +00003119 }
Bill Wendlingb85b6e82009-12-21 22:42:14 +00003120
Andrew Trickac6d9be2013-05-25 02:42:55 +00003121 setValue(&I, DAG.getVectorShuffle(VT, getCurSDLoc(), Src1, Src2,
Bill Wendling4533cac2010-01-28 21:51:40 +00003122 &MappedOps[0]));
Mon P Wangc7849c22008-11-16 05:06:27 +00003123 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00003124 }
3125 }
3126
Mon P Wangc7849c22008-11-16 05:06:27 +00003127 // We can't use either concat vectors or extract subvectors so fall back to
3128 // replacing the shuffle with extract and build vector.
3129 // to insert and build vector.
Owen Andersone50ed302009-08-10 22:56:29 +00003130 EVT EltVT = VT.getVectorElementType();
Tom Stellard425b76c2013-08-05 22:22:01 +00003131 EVT IdxVT = TLI->getVectorIdxTy();
Mon P Wangaeb06d22008-11-10 04:46:22 +00003132 SmallVector<SDValue,8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003133 for (unsigned i = 0; i != MaskNumElts; ++i) {
Craig Topper23de31b2012-04-11 03:06:35 +00003134 int Idx = Mask[i];
3135 SDValue Res;
3136
3137 if (Idx < 0) {
3138 Res = DAG.getUNDEF(EltVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00003139 } else {
Craig Topper23de31b2012-04-11 03:06:35 +00003140 SDValue &Src = Idx < (int)SrcNumElts ? Src1 : Src2;
3141 if (Idx >= (int)SrcNumElts) Idx -= SrcNumElts;
Bill Wendlingb85b6e82009-12-21 22:42:14 +00003142
Andrew Trickac6d9be2013-05-25 02:42:55 +00003143 Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurSDLoc(),
Tom Stellard425b76c2013-08-05 22:22:01 +00003144 EltVT, Src, DAG.getConstant(Idx, IdxVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00003145 }
Craig Topper23de31b2012-04-11 03:06:35 +00003146
3147 Ops.push_back(Res);
Mon P Wangaeb06d22008-11-10 04:46:22 +00003148 }
Bill Wendlingb85b6e82009-12-21 22:42:14 +00003149
Andrew Trickac6d9be2013-05-25 02:42:55 +00003150 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurSDLoc(),
Bill Wendling4533cac2010-01-28 21:51:40 +00003151 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003152}
3153
Dan Gohman46510a72010-04-15 01:51:59 +00003154void SelectionDAGBuilder::visitInsertValue(const InsertValueInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003155 const Value *Op0 = I.getOperand(0);
3156 const Value *Op1 = I.getOperand(1);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003157 Type *AggTy = I.getType();
3158 Type *ValTy = Op1->getType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003159 bool IntoUndef = isa<UndefValue>(Op0);
3160 bool FromUndef = isa<UndefValue>(Op1);
3161
Jay Foadfc6d3a42011-07-13 10:26:04 +00003162 unsigned LinearIndex = ComputeLinearIndex(AggTy, I.getIndices());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003163
Bill Wendlingba54bca2013-06-19 21:36:55 +00003164 const TargetLowering *TLI = TM.getTargetLowering();
Owen Andersone50ed302009-08-10 22:56:29 +00003165 SmallVector<EVT, 4> AggValueVTs;
Bill Wendlingba54bca2013-06-19 21:36:55 +00003166 ComputeValueVTs(*TLI, AggTy, AggValueVTs);
Owen Andersone50ed302009-08-10 22:56:29 +00003167 SmallVector<EVT, 4> ValValueVTs;
Bill Wendlingba54bca2013-06-19 21:36:55 +00003168 ComputeValueVTs(*TLI, ValTy, ValValueVTs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003169
3170 unsigned NumAggValues = AggValueVTs.size();
3171 unsigned NumValValues = ValValueVTs.size();
3172 SmallVector<SDValue, 4> Values(NumAggValues);
3173
3174 SDValue Agg = getValue(Op0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003175 unsigned i = 0;
3176 // Copy the beginning value(s) from the original aggregate.
3177 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00003178 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003179 SDValue(Agg.getNode(), Agg.getResNo() + i);
3180 // Copy values from the inserted value(s).
Rafael Espindola3fa82832011-05-13 15:18:06 +00003181 if (NumValValues) {
3182 SDValue Val = getValue(Op1);
3183 for (; i != LinearIndex + NumValValues; ++i)
3184 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
3185 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
3186 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003187 // Copy remaining value(s) from the original aggregate.
3188 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00003189 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003190 SDValue(Agg.getNode(), Agg.getResNo() + i);
3191
Andrew Trickac6d9be2013-05-25 02:42:55 +00003192 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(),
Bill Wendling4533cac2010-01-28 21:51:40 +00003193 DAG.getVTList(&AggValueVTs[0], NumAggValues),
3194 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003195}
3196
Dan Gohman46510a72010-04-15 01:51:59 +00003197void SelectionDAGBuilder::visitExtractValue(const ExtractValueInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003198 const Value *Op0 = I.getOperand(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003199 Type *AggTy = Op0->getType();
3200 Type *ValTy = I.getType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003201 bool OutOfUndef = isa<UndefValue>(Op0);
3202
Jay Foadfc6d3a42011-07-13 10:26:04 +00003203 unsigned LinearIndex = ComputeLinearIndex(AggTy, I.getIndices());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003204
Bill Wendlingba54bca2013-06-19 21:36:55 +00003205 const TargetLowering *TLI = TM.getTargetLowering();
Owen Andersone50ed302009-08-10 22:56:29 +00003206 SmallVector<EVT, 4> ValValueVTs;
Bill Wendlingba54bca2013-06-19 21:36:55 +00003207 ComputeValueVTs(*TLI, ValTy, ValValueVTs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003208
3209 unsigned NumValValues = ValValueVTs.size();
Rafael Espindola3fa82832011-05-13 15:18:06 +00003210
3211 // Ignore a extractvalue that produces an empty object
3212 if (!NumValValues) {
3213 setValue(&I, DAG.getUNDEF(MVT(MVT::Other)));
3214 return;
3215 }
3216
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003217 SmallVector<SDValue, 4> Values(NumValValues);
3218
3219 SDValue Agg = getValue(Op0);
3220 // Copy out the selected value(s).
3221 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
3222 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00003223 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00003224 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00003225 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003226
Andrew Trickac6d9be2013-05-25 02:42:55 +00003227 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(),
Bill Wendling4533cac2010-01-28 21:51:40 +00003228 DAG.getVTList(&ValValueVTs[0], NumValValues),
3229 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003230}
3231
Dan Gohman46510a72010-04-15 01:51:59 +00003232void SelectionDAGBuilder::visitGetElementPtr(const User &I) {
Matt Arsenaultff718122013-10-21 20:03:54 +00003233 Value *Op0 = I.getOperand(0);
Nadav Rotem1c239202012-02-28 14:13:19 +00003234 // Note that the pointer operand may be a vector of pointers. Take the scalar
3235 // element which holds a pointer.
Matt Arsenaultff718122013-10-21 20:03:54 +00003236 Type *Ty = Op0->getType()->getScalarType();
3237 unsigned AS = Ty->getPointerAddressSpace();
3238 SDValue N = getValue(Op0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003239
Dan Gohman46510a72010-04-15 01:51:59 +00003240 for (GetElementPtrInst::const_op_iterator OI = I.op_begin()+1, E = I.op_end();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003241 OI != E; ++OI) {
Dan Gohman46510a72010-04-15 01:51:59 +00003242 const Value *Idx = *OI;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003243 if (StructType *StTy = dyn_cast<StructType>(Ty)) {
Duncan Sandsb2df01a2012-11-13 13:01:58 +00003244 unsigned Field = cast<Constant>(Idx)->getUniqueInteger().getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003245 if (Field) {
3246 // N = N + Offset
3247 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003248 N = DAG.getNode(ISD::ADD, getCurSDLoc(), N.getValueType(), N,
Duncan Sandsb2df01a2012-11-13 13:01:58 +00003249 DAG.getConstant(Offset, N.getValueType()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003250 }
Bill Wendlinge1a90422009-12-21 23:10:19 +00003251
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003252 Ty = StTy->getElementType(Field);
3253 } else {
3254 Ty = cast<SequentialType>(Ty)->getElementType();
3255
3256 // If this is a constant subscript, handle it quickly.
Bill Wendlingba54bca2013-06-19 21:36:55 +00003257 const TargetLowering *TLI = TM.getTargetLowering();
Dan Gohman46510a72010-04-15 01:51:59 +00003258 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
Dan Gohmane368b462010-06-18 14:22:04 +00003259 if (CI->isZero()) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003260 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +00003261 TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00003262 SDValue OffsVal;
Tom Stellardda25cd32013-08-26 15:05:36 +00003263 EVT PTy = TLI->getPointerTy(AS);
Owen Anderson77547be2009-08-10 18:56:59 +00003264 unsigned PtrBits = PTy.getSizeInBits();
Bill Wendlinge1a90422009-12-21 23:10:19 +00003265 if (PtrBits < 64)
Tom Stellardda25cd32013-08-26 15:05:36 +00003266 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurSDLoc(), PTy,
Owen Anderson825b72b2009-08-11 20:47:22 +00003267 DAG.getConstant(Offs, MVT::i64));
Bill Wendlinge1a90422009-12-21 23:10:19 +00003268 else
Tom Stellardda25cd32013-08-26 15:05:36 +00003269 OffsVal = DAG.getConstant(Offs, PTy);
Bill Wendlinge1a90422009-12-21 23:10:19 +00003270
Andrew Trickac6d9be2013-05-25 02:42:55 +00003271 N = DAG.getNode(ISD::ADD, getCurSDLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00003272 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003273 continue;
3274 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003275
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003276 // N = N + Idx * ElementSize;
Tom Stellardda25cd32013-08-26 15:05:36 +00003277 APInt ElementSize = APInt(TLI->getPointerSizeInBits(AS),
Dan Gohman7abbd042009-10-23 17:57:43 +00003278 TD->getTypeAllocSize(Ty));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003279 SDValue IdxN = getValue(Idx);
3280
3281 // If the index is smaller or larger than intptr_t, truncate or extend
3282 // it.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003283 IdxN = DAG.getSExtOrTrunc(IdxN, getCurSDLoc(), N.getValueType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003284
3285 // If this is a multiply by a power of two, turn it into a shl
3286 // immediately. This is a very common case.
3287 if (ElementSize != 1) {
Dan Gohman7abbd042009-10-23 17:57:43 +00003288 if (ElementSize.isPowerOf2()) {
3289 unsigned Amt = ElementSize.logBase2();
Andrew Trickac6d9be2013-05-25 02:42:55 +00003290 IdxN = DAG.getNode(ISD::SHL, getCurSDLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003291 N.getValueType(), IdxN,
Nadav Rotem16087692011-12-05 06:29:09 +00003292 DAG.getConstant(Amt, IdxN.getValueType()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003293 } else {
Duncan Sandsb2df01a2012-11-13 13:01:58 +00003294 SDValue Scale = DAG.getConstant(ElementSize, IdxN.getValueType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003295 IdxN = DAG.getNode(ISD::MUL, getCurSDLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003296 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003297 }
3298 }
3299
Andrew Trickac6d9be2013-05-25 02:42:55 +00003300 N = DAG.getNode(ISD::ADD, getCurSDLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003301 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003302 }
3303 }
Bill Wendlinge1a90422009-12-21 23:10:19 +00003304
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003305 setValue(&I, N);
3306}
3307
Dan Gohman46510a72010-04-15 01:51:59 +00003308void SelectionDAGBuilder::visitAlloca(const AllocaInst &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003309 // If this is a fixed sized alloca in the entry block of the function,
3310 // allocate it statically on the stack.
3311 if (FuncInfo.StaticAllocaMap.count(&I))
3312 return; // getValue will auto-populate this.
3313
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003314 Type *Ty = I.getAllocatedType();
Bill Wendlingba54bca2013-06-19 21:36:55 +00003315 const TargetLowering *TLI = TM.getTargetLowering();
3316 uint64_t TySize = TLI->getDataLayout()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003317 unsigned Align =
Bill Wendlingba54bca2013-06-19 21:36:55 +00003318 std::max((unsigned)TLI->getDataLayout()->getPrefTypeAlignment(Ty),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003319 I.getAlignment());
3320
3321 SDValue AllocSize = getValue(I.getArraySize());
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00003322
Bill Wendlingba54bca2013-06-19 21:36:55 +00003323 EVT IntPtr = TLI->getPointerTy();
Dan Gohmanf75a7d32010-05-28 01:14:11 +00003324 if (AllocSize.getValueType() != IntPtr)
Andrew Trickac6d9be2013-05-25 02:42:55 +00003325 AllocSize = DAG.getZExtOrTrunc(AllocSize, getCurSDLoc(), IntPtr);
Dan Gohmanf75a7d32010-05-28 01:14:11 +00003326
Andrew Trickac6d9be2013-05-25 02:42:55 +00003327 AllocSize = DAG.getNode(ISD::MUL, getCurSDLoc(), IntPtr,
Dan Gohmanf75a7d32010-05-28 01:14:11 +00003328 AllocSize,
3329 DAG.getConstant(TySize, IntPtr));
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00003330
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003331 // Handle alignment. If the requested alignment is less than or equal to
3332 // the stack alignment, ignore it. If the size is greater than or equal to
3333 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00003334 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003335 if (Align <= StackAlign)
3336 Align = 0;
3337
3338 // Round the size of the allocation up to the stack alignment size
3339 // by add SA-1 to the size.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003340 AllocSize = DAG.getNode(ISD::ADD, getCurSDLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003341 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003342 DAG.getIntPtrConstant(StackAlign-1));
Bill Wendling856ff412009-12-22 00:12:37 +00003343
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003344 // Mask out the low bits for alignment purposes.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003345 AllocSize = DAG.getNode(ISD::AND, getCurSDLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003346 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003347 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
3348
3349 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Owen Anderson825b72b2009-08-11 20:47:22 +00003350 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003351 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurSDLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00003352 VTs, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003353 setValue(&I, DSA);
3354 DAG.setRoot(DSA.getValue(1));
Bill Wendling856ff412009-12-22 00:12:37 +00003355
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003356 // Inform the Frame Information that we have just allocated a variable-sized
3357 // object.
Bob Wilson8f637ad2013-02-08 20:35:15 +00003358 FuncInfo.MF->getFrameInfo()->CreateVariableSizedObject(Align ? Align : 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003359}
3360
Dan Gohman46510a72010-04-15 01:51:59 +00003361void SelectionDAGBuilder::visitLoad(const LoadInst &I) {
Eli Friedman327236c2011-08-24 20:50:09 +00003362 if (I.isAtomic())
3363 return visitAtomicLoad(I);
3364
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003365 const Value *SV = I.getOperand(0);
3366 SDValue Ptr = getValue(SV);
3367
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003368 Type *Ty = I.getType();
David Greene1e559442010-02-15 17:00:31 +00003369
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003370 bool isVolatile = I.isVolatile();
David Greene1e559442010-02-15 17:00:31 +00003371 bool isNonTemporal = I.getMetadata("nontemporal") != 0;
Pete Cooperd752e0f2011-11-08 18:42:53 +00003372 bool isInvariant = I.getMetadata("invariant.load") != 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003373 unsigned Alignment = I.getAlignment();
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00003374 const MDNode *TBAAInfo = I.getMetadata(LLVMContext::MD_tbaa);
Rafael Espindola95d594c2012-03-31 18:14:00 +00003375 const MDNode *Ranges = I.getMetadata(LLVMContext::MD_range);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003376
Owen Andersone50ed302009-08-10 22:56:29 +00003377 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003378 SmallVector<uint64_t, 4> Offsets;
Bill Wendlingba54bca2013-06-19 21:36:55 +00003379 ComputeValueVTs(*TM.getTargetLowering(), Ty, ValueVTs, &Offsets);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003380 unsigned NumValues = ValueVTs.size();
3381 if (NumValues == 0)
3382 return;
3383
3384 SDValue Root;
3385 bool ConstantMemory = false;
Andrew Trickde91f3c2010-11-12 17:50:46 +00003386 if (I.isVolatile() || NumValues > MaxParallelChains)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003387 // Serialize volatile loads with other side effects.
3388 Root = getRoot();
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00003389 else if (AA->pointsToConstantMemory(
3390 AliasAnalysis::Location(SV, AA->getTypeStoreSize(Ty), TBAAInfo))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003391 // Do not serialize (non-volatile) loads of constant memory with anything.
3392 Root = DAG.getEntryNode();
3393 ConstantMemory = true;
3394 } else {
3395 // Do not serialize non-volatile loads against each other.
3396 Root = DAG.getRoot();
3397 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003398
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003399 SmallVector<SDValue, 4> Values(NumValues);
Andrew Trickde91f3c2010-11-12 17:50:46 +00003400 SmallVector<SDValue, 4> Chains(std::min(unsigned(MaxParallelChains),
3401 NumValues));
Owen Andersone50ed302009-08-10 22:56:29 +00003402 EVT PtrVT = Ptr.getValueType();
Andrew Trickde91f3c2010-11-12 17:50:46 +00003403 unsigned ChainI = 0;
3404 for (unsigned i = 0; i != NumValues; ++i, ++ChainI) {
3405 // Serializing loads here may result in excessive register pressure, and
3406 // TokenFactor places arbitrary choke points on the scheduler. SD scheduling
3407 // could recover a bit by hoisting nodes upward in the chain by recognizing
3408 // they are side-effect free or do not alias. The optimizer should really
3409 // avoid this case by converting large object/array copies to llvm.memcpy
3410 // (MaxParallelChains should always remain as failsafe).
3411 if (ChainI == MaxParallelChains) {
3412 assert(PendingLoads.empty() && "PendingLoads must be serialized first");
Andrew Trickac6d9be2013-05-25 02:42:55 +00003413 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurSDLoc(),
Andrew Trickde91f3c2010-11-12 17:50:46 +00003414 MVT::Other, &Chains[0], ChainI);
3415 Root = Chain;
3416 ChainI = 0;
3417 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00003418 SDValue A = DAG.getNode(ISD::ADD, getCurSDLoc(),
Bill Wendling856ff412009-12-22 00:12:37 +00003419 PtrVT, Ptr,
3420 DAG.getConstant(Offsets[i], PtrVT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00003421 SDValue L = DAG.getLoad(ValueVTs[i], getCurSDLoc(), Root,
Michael J. Spencere70c5262010-10-16 08:25:21 +00003422 A, MachinePointerInfo(SV, Offsets[i]), isVolatile,
Rafael Espindola95d594c2012-03-31 18:14:00 +00003423 isNonTemporal, isInvariant, Alignment, TBAAInfo,
3424 Ranges);
Bill Wendling856ff412009-12-22 00:12:37 +00003425
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003426 Values[i] = L;
Andrew Trickde91f3c2010-11-12 17:50:46 +00003427 Chains[ChainI] = L.getValue(1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003428 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003429
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003430 if (!ConstantMemory) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003431 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurSDLoc(),
Andrew Trickde91f3c2010-11-12 17:50:46 +00003432 MVT::Other, &Chains[0], ChainI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003433 if (isVolatile)
3434 DAG.setRoot(Chain);
3435 else
3436 PendingLoads.push_back(Chain);
3437 }
3438
Andrew Trickac6d9be2013-05-25 02:42:55 +00003439 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(),
Bill Wendling4533cac2010-01-28 21:51:40 +00003440 DAG.getVTList(&ValueVTs[0], NumValues),
3441 &Values[0], NumValues));
Bill Wendling856ff412009-12-22 00:12:37 +00003442}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003443
Dan Gohman46510a72010-04-15 01:51:59 +00003444void SelectionDAGBuilder::visitStore(const StoreInst &I) {
Eli Friedman327236c2011-08-24 20:50:09 +00003445 if (I.isAtomic())
3446 return visitAtomicStore(I);
3447
Dan Gohman46510a72010-04-15 01:51:59 +00003448 const Value *SrcV = I.getOperand(0);
3449 const Value *PtrV = I.getOperand(1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003450
Owen Andersone50ed302009-08-10 22:56:29 +00003451 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003452 SmallVector<uint64_t, 4> Offsets;
Bill Wendlingba54bca2013-06-19 21:36:55 +00003453 ComputeValueVTs(*TM.getTargetLowering(), SrcV->getType(), ValueVTs, &Offsets);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003454 unsigned NumValues = ValueVTs.size();
3455 if (NumValues == 0)
3456 return;
3457
3458 // Get the lowered operands. Note that we do this after
3459 // checking if NumResults is zero, because with zero results
3460 // the operands won't have values in the map.
3461 SDValue Src = getValue(SrcV);
3462 SDValue Ptr = getValue(PtrV);
3463
3464 SDValue Root = getRoot();
Andrew Trickde91f3c2010-11-12 17:50:46 +00003465 SmallVector<SDValue, 4> Chains(std::min(unsigned(MaxParallelChains),
3466 NumValues));
Owen Andersone50ed302009-08-10 22:56:29 +00003467 EVT PtrVT = Ptr.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003468 bool isVolatile = I.isVolatile();
David Greene1e559442010-02-15 17:00:31 +00003469 bool isNonTemporal = I.getMetadata("nontemporal") != 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003470 unsigned Alignment = I.getAlignment();
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00003471 const MDNode *TBAAInfo = I.getMetadata(LLVMContext::MD_tbaa);
Bill Wendling856ff412009-12-22 00:12:37 +00003472
Andrew Trickde91f3c2010-11-12 17:50:46 +00003473 unsigned ChainI = 0;
3474 for (unsigned i = 0; i != NumValues; ++i, ++ChainI) {
3475 // See visitLoad comments.
3476 if (ChainI == MaxParallelChains) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003477 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurSDLoc(),
Andrew Trickde91f3c2010-11-12 17:50:46 +00003478 MVT::Other, &Chains[0], ChainI);
3479 Root = Chain;
3480 ChainI = 0;
3481 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00003482 SDValue Add = DAG.getNode(ISD::ADD, getCurSDLoc(), PtrVT, Ptr,
Bill Wendling856ff412009-12-22 00:12:37 +00003483 DAG.getConstant(Offsets[i], PtrVT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00003484 SDValue St = DAG.getStore(Root, getCurSDLoc(),
Andrew Trickde91f3c2010-11-12 17:50:46 +00003485 SDValue(Src.getNode(), Src.getResNo() + i),
3486 Add, MachinePointerInfo(PtrV, Offsets[i]),
3487 isVolatile, isNonTemporal, Alignment, TBAAInfo);
3488 Chains[ChainI] = St;
Bill Wendling856ff412009-12-22 00:12:37 +00003489 }
3490
Andrew Trickac6d9be2013-05-25 02:42:55 +00003491 SDValue StoreNode = DAG.getNode(ISD::TokenFactor, getCurSDLoc(),
Andrew Trickde91f3c2010-11-12 17:50:46 +00003492 MVT::Other, &Chains[0], ChainI);
Devang Patel7e13efa2010-10-26 22:14:52 +00003493 DAG.setRoot(StoreNode);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003494}
3495
Eli Friedman26689ac2011-08-03 21:06:02 +00003496static SDValue InsertFenceForAtomic(SDValue Chain, AtomicOrdering Order,
Eli Friedman327236c2011-08-24 20:50:09 +00003497 SynchronizationScope Scope,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003498 bool Before, SDLoc dl,
Eli Friedman26689ac2011-08-03 21:06:02 +00003499 SelectionDAG &DAG,
3500 const TargetLowering &TLI) {
3501 // Fence, if necessary
3502 if (Before) {
Eli Friedman069e2ed2011-08-26 02:59:24 +00003503 if (Order == AcquireRelease || Order == SequentiallyConsistent)
Eli Friedman26689ac2011-08-03 21:06:02 +00003504 Order = Release;
3505 else if (Order == Acquire || Order == Monotonic)
3506 return Chain;
3507 } else {
3508 if (Order == AcquireRelease)
3509 Order = Acquire;
3510 else if (Order == Release || Order == Monotonic)
3511 return Chain;
3512 }
3513 SDValue Ops[3];
3514 Ops[0] = Chain;
Eli Friedman327236c2011-08-24 20:50:09 +00003515 Ops[1] = DAG.getConstant(Order, TLI.getPointerTy());
3516 Ops[2] = DAG.getConstant(Scope, TLI.getPointerTy());
Eli Friedman26689ac2011-08-03 21:06:02 +00003517 return DAG.getNode(ISD::ATOMIC_FENCE, dl, MVT::Other, Ops, 3);
3518}
3519
Eli Friedmanff030482011-07-28 21:48:00 +00003520void SelectionDAGBuilder::visitAtomicCmpXchg(const AtomicCmpXchgInst &I) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003521 SDLoc dl = getCurSDLoc();
Eli Friedman26689ac2011-08-03 21:06:02 +00003522 AtomicOrdering Order = I.getOrdering();
Eli Friedman327236c2011-08-24 20:50:09 +00003523 SynchronizationScope Scope = I.getSynchScope();
Eli Friedman26689ac2011-08-03 21:06:02 +00003524
3525 SDValue InChain = getRoot();
3526
Bill Wendlingba54bca2013-06-19 21:36:55 +00003527 const TargetLowering *TLI = TM.getTargetLowering();
3528 if (TLI->getInsertFencesForAtomic())
Eli Friedman327236c2011-08-24 20:50:09 +00003529 InChain = InsertFenceForAtomic(InChain, Order, Scope, true, dl,
Bill Wendlingba54bca2013-06-19 21:36:55 +00003530 DAG, *TLI);
Eli Friedman26689ac2011-08-03 21:06:02 +00003531
Eli Friedman55ba8162011-07-29 03:05:32 +00003532 SDValue L =
Eli Friedman26689ac2011-08-03 21:06:02 +00003533 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl,
Craig Topper0ff11902013-08-15 02:44:19 +00003534 getValue(I.getCompareOperand()).getSimpleValueType(),
Eli Friedman26689ac2011-08-03 21:06:02 +00003535 InChain,
Eli Friedman55ba8162011-07-29 03:05:32 +00003536 getValue(I.getPointerOperand()),
3537 getValue(I.getCompareOperand()),
3538 getValue(I.getNewValOperand()),
3539 MachinePointerInfo(I.getPointerOperand()), 0 /* Alignment */,
Bill Wendlingba54bca2013-06-19 21:36:55 +00003540 TLI->getInsertFencesForAtomic() ? Monotonic : Order,
Eli Friedman327236c2011-08-24 20:50:09 +00003541 Scope);
Eli Friedman26689ac2011-08-03 21:06:02 +00003542
3543 SDValue OutChain = L.getValue(1);
3544
Bill Wendlingba54bca2013-06-19 21:36:55 +00003545 if (TLI->getInsertFencesForAtomic())
Eli Friedman327236c2011-08-24 20:50:09 +00003546 OutChain = InsertFenceForAtomic(OutChain, Order, Scope, false, dl,
Bill Wendlingba54bca2013-06-19 21:36:55 +00003547 DAG, *TLI);
Eli Friedman26689ac2011-08-03 21:06:02 +00003548
Eli Friedman55ba8162011-07-29 03:05:32 +00003549 setValue(&I, L);
Eli Friedman26689ac2011-08-03 21:06:02 +00003550 DAG.setRoot(OutChain);
Eli Friedmanff030482011-07-28 21:48:00 +00003551}
3552
3553void SelectionDAGBuilder::visitAtomicRMW(const AtomicRMWInst &I) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003554 SDLoc dl = getCurSDLoc();
Eli Friedman55ba8162011-07-29 03:05:32 +00003555 ISD::NodeType NT;
3556 switch (I.getOperation()) {
David Blaikie4d6ccb52012-01-20 21:51:11 +00003557 default: llvm_unreachable("Unknown atomicrmw operation");
Eli Friedman55ba8162011-07-29 03:05:32 +00003558 case AtomicRMWInst::Xchg: NT = ISD::ATOMIC_SWAP; break;
3559 case AtomicRMWInst::Add: NT = ISD::ATOMIC_LOAD_ADD; break;
3560 case AtomicRMWInst::Sub: NT = ISD::ATOMIC_LOAD_SUB; break;
3561 case AtomicRMWInst::And: NT = ISD::ATOMIC_LOAD_AND; break;
3562 case AtomicRMWInst::Nand: NT = ISD::ATOMIC_LOAD_NAND; break;
3563 case AtomicRMWInst::Or: NT = ISD::ATOMIC_LOAD_OR; break;
3564 case AtomicRMWInst::Xor: NT = ISD::ATOMIC_LOAD_XOR; break;
3565 case AtomicRMWInst::Max: NT = ISD::ATOMIC_LOAD_MAX; break;
3566 case AtomicRMWInst::Min: NT = ISD::ATOMIC_LOAD_MIN; break;
3567 case AtomicRMWInst::UMax: NT = ISD::ATOMIC_LOAD_UMAX; break;
3568 case AtomicRMWInst::UMin: NT = ISD::ATOMIC_LOAD_UMIN; break;
3569 }
Eli Friedman26689ac2011-08-03 21:06:02 +00003570 AtomicOrdering Order = I.getOrdering();
Eli Friedman327236c2011-08-24 20:50:09 +00003571 SynchronizationScope Scope = I.getSynchScope();
Eli Friedman26689ac2011-08-03 21:06:02 +00003572
3573 SDValue InChain = getRoot();
3574
Bill Wendlingba54bca2013-06-19 21:36:55 +00003575 const TargetLowering *TLI = TM.getTargetLowering();
3576 if (TLI->getInsertFencesForAtomic())
Eli Friedman327236c2011-08-24 20:50:09 +00003577 InChain = InsertFenceForAtomic(InChain, Order, Scope, true, dl,
Bill Wendlingba54bca2013-06-19 21:36:55 +00003578 DAG, *TLI);
Eli Friedman26689ac2011-08-03 21:06:02 +00003579
Eli Friedman55ba8162011-07-29 03:05:32 +00003580 SDValue L =
Eli Friedman26689ac2011-08-03 21:06:02 +00003581 DAG.getAtomic(NT, dl,
Craig Topper0ff11902013-08-15 02:44:19 +00003582 getValue(I.getValOperand()).getSimpleValueType(),
Eli Friedman26689ac2011-08-03 21:06:02 +00003583 InChain,
Eli Friedman55ba8162011-07-29 03:05:32 +00003584 getValue(I.getPointerOperand()),
3585 getValue(I.getValOperand()),
3586 I.getPointerOperand(), 0 /* Alignment */,
Bill Wendlingba54bca2013-06-19 21:36:55 +00003587 TLI->getInsertFencesForAtomic() ? Monotonic : Order,
Eli Friedman327236c2011-08-24 20:50:09 +00003588 Scope);
Eli Friedman26689ac2011-08-03 21:06:02 +00003589
3590 SDValue OutChain = L.getValue(1);
3591
Bill Wendlingba54bca2013-06-19 21:36:55 +00003592 if (TLI->getInsertFencesForAtomic())
Eli Friedman327236c2011-08-24 20:50:09 +00003593 OutChain = InsertFenceForAtomic(OutChain, Order, Scope, false, dl,
Bill Wendlingba54bca2013-06-19 21:36:55 +00003594 DAG, *TLI);
Eli Friedman26689ac2011-08-03 21:06:02 +00003595
Eli Friedman55ba8162011-07-29 03:05:32 +00003596 setValue(&I, L);
Eli Friedman26689ac2011-08-03 21:06:02 +00003597 DAG.setRoot(OutChain);
Eli Friedmanff030482011-07-28 21:48:00 +00003598}
3599
Eli Friedman47f35132011-07-25 23:16:38 +00003600void SelectionDAGBuilder::visitFence(const FenceInst &I) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003601 SDLoc dl = getCurSDLoc();
Bill Wendlingba54bca2013-06-19 21:36:55 +00003602 const TargetLowering *TLI = TM.getTargetLowering();
Eli Friedman14648462011-07-27 22:21:52 +00003603 SDValue Ops[3];
3604 Ops[0] = getRoot();
Bill Wendlingba54bca2013-06-19 21:36:55 +00003605 Ops[1] = DAG.getConstant(I.getOrdering(), TLI->getPointerTy());
3606 Ops[2] = DAG.getConstant(I.getSynchScope(), TLI->getPointerTy());
Eli Friedman14648462011-07-27 22:21:52 +00003607 DAG.setRoot(DAG.getNode(ISD::ATOMIC_FENCE, dl, MVT::Other, Ops, 3));
Eli Friedman47f35132011-07-25 23:16:38 +00003608}
3609
Eli Friedman327236c2011-08-24 20:50:09 +00003610void SelectionDAGBuilder::visitAtomicLoad(const LoadInst &I) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003611 SDLoc dl = getCurSDLoc();
Eli Friedman327236c2011-08-24 20:50:09 +00003612 AtomicOrdering Order = I.getOrdering();
3613 SynchronizationScope Scope = I.getSynchScope();
3614
3615 SDValue InChain = getRoot();
3616
Bill Wendlingba54bca2013-06-19 21:36:55 +00003617 const TargetLowering *TLI = TM.getTargetLowering();
3618 EVT VT = TLI->getValueType(I.getType());
Eli Friedman327236c2011-08-24 20:50:09 +00003619
Evan Cheng607acd62013-02-06 02:06:33 +00003620 if (I.getAlignment() < VT.getSizeInBits() / 8)
Eli Friedmanfe731212011-09-13 20:50:54 +00003621 report_fatal_error("Cannot generate unaligned atomic load");
3622
Eli Friedman327236c2011-08-24 20:50:09 +00003623 SDValue L =
3624 DAG.getAtomic(ISD::ATOMIC_LOAD, dl, VT, VT, InChain,
3625 getValue(I.getPointerOperand()),
3626 I.getPointerOperand(), I.getAlignment(),
Bill Wendlingba54bca2013-06-19 21:36:55 +00003627 TLI->getInsertFencesForAtomic() ? Monotonic : Order,
Eli Friedman327236c2011-08-24 20:50:09 +00003628 Scope);
3629
3630 SDValue OutChain = L.getValue(1);
3631
Bill Wendlingba54bca2013-06-19 21:36:55 +00003632 if (TLI->getInsertFencesForAtomic())
Eli Friedman327236c2011-08-24 20:50:09 +00003633 OutChain = InsertFenceForAtomic(OutChain, Order, Scope, false, dl,
Bill Wendlingba54bca2013-06-19 21:36:55 +00003634 DAG, *TLI);
Eli Friedman327236c2011-08-24 20:50:09 +00003635
3636 setValue(&I, L);
3637 DAG.setRoot(OutChain);
3638}
3639
3640void SelectionDAGBuilder::visitAtomicStore(const StoreInst &I) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003641 SDLoc dl = getCurSDLoc();
Eli Friedman327236c2011-08-24 20:50:09 +00003642
3643 AtomicOrdering Order = I.getOrdering();
3644 SynchronizationScope Scope = I.getSynchScope();
3645
3646 SDValue InChain = getRoot();
3647
Bill Wendlingba54bca2013-06-19 21:36:55 +00003648 const TargetLowering *TLI = TM.getTargetLowering();
3649 EVT VT = TLI->getValueType(I.getValueOperand()->getType());
Eli Friedmanfe731212011-09-13 20:50:54 +00003650
Evan Cheng607acd62013-02-06 02:06:33 +00003651 if (I.getAlignment() < VT.getSizeInBits() / 8)
Eli Friedmanfe731212011-09-13 20:50:54 +00003652 report_fatal_error("Cannot generate unaligned atomic store");
3653
Bill Wendlingba54bca2013-06-19 21:36:55 +00003654 if (TLI->getInsertFencesForAtomic())
Eli Friedman327236c2011-08-24 20:50:09 +00003655 InChain = InsertFenceForAtomic(InChain, Order, Scope, true, dl,
Bill Wendlingba54bca2013-06-19 21:36:55 +00003656 DAG, *TLI);
Eli Friedman327236c2011-08-24 20:50:09 +00003657
3658 SDValue OutChain =
Eli Friedmanfe731212011-09-13 20:50:54 +00003659 DAG.getAtomic(ISD::ATOMIC_STORE, dl, VT,
Eli Friedman327236c2011-08-24 20:50:09 +00003660 InChain,
3661 getValue(I.getPointerOperand()),
3662 getValue(I.getValueOperand()),
3663 I.getPointerOperand(), I.getAlignment(),
Bill Wendlingba54bca2013-06-19 21:36:55 +00003664 TLI->getInsertFencesForAtomic() ? Monotonic : Order,
Eli Friedman327236c2011-08-24 20:50:09 +00003665 Scope);
3666
Bill Wendlingba54bca2013-06-19 21:36:55 +00003667 if (TLI->getInsertFencesForAtomic())
Eli Friedman327236c2011-08-24 20:50:09 +00003668 OutChain = InsertFenceForAtomic(OutChain, Order, Scope, false, dl,
Bill Wendlingba54bca2013-06-19 21:36:55 +00003669 DAG, *TLI);
Eli Friedman327236c2011-08-24 20:50:09 +00003670
3671 DAG.setRoot(OutChain);
3672}
3673
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003674/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
3675/// node.
Dan Gohman46510a72010-04-15 01:51:59 +00003676void SelectionDAGBuilder::visitTargetIntrinsic(const CallInst &I,
Dan Gohman2048b852009-11-23 18:04:58 +00003677 unsigned Intrinsic) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003678 bool HasChain = !I.doesNotAccessMemory();
3679 bool OnlyLoad = HasChain && I.onlyReadsMemory();
3680
3681 // Build the operand list.
3682 SmallVector<SDValue, 8> Ops;
3683 if (HasChain) { // If this intrinsic has side-effects, chainify it.
3684 if (OnlyLoad) {
3685 // We don't need to serialize loads against other loads.
3686 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003687 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003688 Ops.push_back(getRoot());
3689 }
3690 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00003691
3692 // Info is set by getTgtMemInstrinsic
3693 TargetLowering::IntrinsicInfo Info;
Bill Wendlingba54bca2013-06-19 21:36:55 +00003694 const TargetLowering *TLI = TM.getTargetLowering();
3695 bool IsTgtIntrinsic = TLI->getTgtMemIntrinsic(Info, I, Intrinsic);
Mon P Wang3efcd4a2008-11-01 20:24:53 +00003696
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003697 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Bob Wilson65ffec42010-09-21 17:56:22 +00003698 if (!IsTgtIntrinsic || Info.opc == ISD::INTRINSIC_VOID ||
3699 Info.opc == ISD::INTRINSIC_W_CHAIN)
Bill Wendlingba54bca2013-06-19 21:36:55 +00003700 Ops.push_back(DAG.getTargetConstant(Intrinsic, TLI->getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003701
3702 // Add all operands of the call to the operand list.
Gabor Greif0635f352010-06-25 09:38:13 +00003703 for (unsigned i = 0, e = I.getNumArgOperands(); i != e; ++i) {
3704 SDValue Op = getValue(I.getArgOperand(i));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003705 Ops.push_back(Op);
3706 }
3707
Owen Andersone50ed302009-08-10 22:56:29 +00003708 SmallVector<EVT, 4> ValueVTs;
Bill Wendlingba54bca2013-06-19 21:36:55 +00003709 ComputeValueVTs(*TLI, I.getType(), ValueVTs);
Bill Wendling856ff412009-12-22 00:12:37 +00003710
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003711 if (HasChain)
Owen Anderson825b72b2009-08-11 20:47:22 +00003712 ValueVTs.push_back(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003713
Bob Wilson8d919552009-07-31 22:41:21 +00003714 SDVTList VTs = DAG.getVTList(ValueVTs.data(), ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003715
3716 // Create the node.
3717 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00003718 if (IsTgtIntrinsic) {
3719 // This is target intrinsic that touches memory
Andrew Trickac6d9be2013-05-25 02:42:55 +00003720 Result = DAG.getMemIntrinsicNode(Info.opc, getCurSDLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00003721 VTs, &Ops[0], Ops.size(),
Chris Lattnere9ba5dd2010-09-21 04:57:15 +00003722 Info.memVT,
3723 MachinePointerInfo(Info.ptrVal, Info.offset),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00003724 Info.align, Info.vol,
3725 Info.readMem, Info.writeMem);
Bill Wendling856ff412009-12-22 00:12:37 +00003726 } else if (!HasChain) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003727 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurSDLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00003728 VTs, &Ops[0], Ops.size());
Benjamin Kramerf0127052010-01-05 13:12:22 +00003729 } else if (!I.getType()->isVoidTy()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003730 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurSDLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00003731 VTs, &Ops[0], Ops.size());
Bill Wendling856ff412009-12-22 00:12:37 +00003732 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003733 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurSDLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00003734 VTs, &Ops[0], Ops.size());
Bill Wendling856ff412009-12-22 00:12:37 +00003735 }
3736
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003737 if (HasChain) {
3738 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
3739 if (OnlyLoad)
3740 PendingLoads.push_back(Chain);
3741 else
3742 DAG.setRoot(Chain);
3743 }
Bill Wendling856ff412009-12-22 00:12:37 +00003744
Benjamin Kramerf0127052010-01-05 13:12:22 +00003745 if (!I.getType()->isVoidTy()) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003746 if (VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00003747 EVT VT = TLI->getValueType(PTy);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003748 Result = DAG.getNode(ISD::BITCAST, getCurSDLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003749 }
Bill Wendling856ff412009-12-22 00:12:37 +00003750
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003751 setValue(&I, Result);
3752 }
3753}
3754
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003755/// GetSignificand - Get the significand and build it into a floating-point
3756/// number with exponent of 1:
3757///
3758/// Op = (Op & 0x007fffff) | 0x3f800000;
3759///
Matt Beaumont-Gay50e75bf2013-02-25 18:11:18 +00003760/// where Op is the hexadecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003761static SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00003762GetSignificand(SelectionDAG &DAG, SDValue Op, SDLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003763 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3764 DAG.getConstant(0x007fffff, MVT::i32));
3765 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
3766 DAG.getConstant(0x3f800000, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003767 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003768}
3769
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003770/// GetExponent - Get the exponent:
3771///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003772/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003773///
Matt Beaumont-Gay50e75bf2013-02-25 18:11:18 +00003774/// where Op is the hexadecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003775static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003776GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003777 SDLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003778 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3779 DAG.getConstant(0x7f800000, MVT::i32));
3780 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003781 DAG.getConstant(23, TLI.getPointerTy()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003782 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
3783 DAG.getConstant(127, MVT::i32));
Bill Wendling4533cac2010-01-28 21:51:40 +00003784 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003785}
3786
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003787/// getF32Constant - Get 32-bit floating point constant.
3788static SDValue
3789getF32Constant(SelectionDAG &DAG, unsigned Flt) {
Tim Northover0a29cb02013-01-22 09:46:31 +00003790 return DAG.getConstantFP(APFloat(APFloat::IEEEsingle, APInt(32, Flt)),
3791 MVT::f32);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003792}
3793
Craig Topper538cd482012-11-24 18:52:06 +00003794/// expandExp - Lower an exp intrinsic. Handles the special sequences for
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003795/// limited-precision mode.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003796static SDValue expandExp(SDLoc dl, SDValue Op, SelectionDAG &DAG,
Craig Topper538cd482012-11-24 18:52:06 +00003797 const TargetLowering &TLI) {
3798 if (Op.getValueType() == MVT::f32 &&
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003799 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003800
3801 // Put the exponent in the right bit position for later addition to the
3802 // final result:
3803 //
3804 // #define LOG2OFe 1.4426950f
3805 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Owen Anderson825b72b2009-08-11 20:47:22 +00003806 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003807 getF32Constant(DAG, 0x3fb8aa3b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003808 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003809
3810 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003811 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3812 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003813
3814 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003815 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003816 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendling856ff412009-12-22 00:12:37 +00003817
Craig Topperb3157722012-11-24 08:22:37 +00003818 SDValue TwoToFracPartOfX;
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003819 if (LimitFloatPrecision <= 6) {
3820 // For floating-point precision of 6:
3821 //
3822 // TwoToFractionalPartOfX =
3823 // 0.997535578f +
3824 // (0.735607626f + 0.252464424f * x) * x;
3825 //
3826 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003827 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003828 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003829 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003830 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003831 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
Craig Topperb3157722012-11-24 08:22:37 +00003832 TwoToFracPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
3833 getF32Constant(DAG, 0x3f7f5e7e));
Craig Topper08ac4692012-11-16 20:01:39 +00003834 } else if (LimitFloatPrecision <= 12) {
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003835 // For floating-point precision of 12:
3836 //
3837 // TwoToFractionalPartOfX =
3838 // 0.999892986f +
3839 // (0.696457318f +
3840 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3841 //
3842 // 0.000107046256 error, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003843 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003844 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003845 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003846 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003847 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3848 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003849 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003850 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
Craig Topperb3157722012-11-24 08:22:37 +00003851 TwoToFracPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
3852 getF32Constant(DAG, 0x3f7ff8fd));
Craig Topper08ac4692012-11-16 20:01:39 +00003853 } else { // LimitFloatPrecision <= 18
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003854 // For floating-point precision of 18:
3855 //
3856 // TwoToFractionalPartOfX =
3857 // 0.999999982f +
3858 // (0.693148872f +
3859 // (0.240227044f +
3860 // (0.554906021e-1f +
3861 // (0.961591928e-2f +
3862 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3863 //
3864 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003865 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003866 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003867 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003868 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003869 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3870 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003871 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003872 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3873 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003874 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003875 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3876 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003877 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003878 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3879 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003880 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003881 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
Craig Topperb3157722012-11-24 08:22:37 +00003882 TwoToFracPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
3883 getF32Constant(DAG, 0x3f800000));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003884 }
Craig Topperb3157722012-11-24 08:22:37 +00003885
3886 // Add the exponent into the result in integer domain.
3887 SDValue t13 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, TwoToFracPartOfX);
Craig Topper538cd482012-11-24 18:52:06 +00003888 return DAG.getNode(ISD::BITCAST, dl, MVT::f32,
3889 DAG.getNode(ISD::ADD, dl, MVT::i32,
3890 t13, IntegerPartOfX));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003891 }
3892
Craig Topper538cd482012-11-24 18:52:06 +00003893 // No special expansion.
3894 return DAG.getNode(ISD::FEXP, dl, Op.getValueType(), Op);
Dale Johannesen59e577f2008-09-05 18:38:42 +00003895}
3896
Craig Topper5d1e0892012-11-23 18:38:31 +00003897/// expandLog - Lower a log intrinsic. Handles the special sequences for
Bill Wendling39150252008-09-09 20:39:27 +00003898/// limited-precision mode.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003899static SDValue expandLog(SDLoc dl, SDValue Op, SelectionDAG &DAG,
Craig Topper5d1e0892012-11-23 18:38:31 +00003900 const TargetLowering &TLI) {
3901 if (Op.getValueType() == MVT::f32 &&
Bill Wendling39150252008-09-09 20:39:27 +00003902 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003903 SDValue Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003904
3905 // Scale the exponent by log(2) [0.69314718f].
Bill Wendling46ada192010-03-02 01:55:18 +00003906 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00003907 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003908 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003909
3910 // Get the significand and build it into a floating-point number with
3911 // exponent of 1.
Bill Wendling46ada192010-03-02 01:55:18 +00003912 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003913
Craig Topperdf0ea8d2012-11-16 19:08:44 +00003914 SDValue LogOfMantissa;
Bill Wendling39150252008-09-09 20:39:27 +00003915 if (LimitFloatPrecision <= 6) {
3916 // For floating-point precision of 6:
3917 //
3918 // LogofMantissa =
3919 // -1.1609546f +
3920 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003921 //
Bill Wendling39150252008-09-09 20:39:27 +00003922 // error 0.0034276066, which is better than 8 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003923 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003924 getF32Constant(DAG, 0xbe74c456));
Owen Anderson825b72b2009-08-11 20:47:22 +00003925 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003926 getF32Constant(DAG, 0x3fb3a2b1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003927 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
Craig Topperdf0ea8d2012-11-16 19:08:44 +00003928 LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
3929 getF32Constant(DAG, 0x3f949a29));
Craig Topper08ac4692012-11-16 20:01:39 +00003930 } else if (LimitFloatPrecision <= 12) {
Bill Wendling39150252008-09-09 20:39:27 +00003931 // For floating-point precision of 12:
3932 //
3933 // LogOfMantissa =
3934 // -1.7417939f +
3935 // (2.8212026f +
3936 // (-1.4699568f +
3937 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3938 //
3939 // error 0.000061011436, which is 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003940 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003941 getF32Constant(DAG, 0xbd67b6d6));
Owen Anderson825b72b2009-08-11 20:47:22 +00003942 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003943 getF32Constant(DAG, 0x3ee4f4b8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003944 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3945 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003946 getF32Constant(DAG, 0x3fbc278b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003947 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3948 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003949 getF32Constant(DAG, 0x40348e95));
Owen Anderson825b72b2009-08-11 20:47:22 +00003950 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
Craig Topperdf0ea8d2012-11-16 19:08:44 +00003951 LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
3952 getF32Constant(DAG, 0x3fdef31a));
Craig Topper08ac4692012-11-16 20:01:39 +00003953 } else { // LimitFloatPrecision <= 18
Bill Wendling39150252008-09-09 20:39:27 +00003954 // For floating-point precision of 18:
3955 //
3956 // LogOfMantissa =
3957 // -2.1072184f +
3958 // (4.2372794f +
3959 // (-3.7029485f +
3960 // (2.2781945f +
3961 // (-0.87823314f +
3962 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3963 //
3964 // error 0.0000023660568, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003965 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003966 getF32Constant(DAG, 0xbc91e5ac));
Owen Anderson825b72b2009-08-11 20:47:22 +00003967 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003968 getF32Constant(DAG, 0x3e4350aa));
Owen Anderson825b72b2009-08-11 20:47:22 +00003969 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3970 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003971 getF32Constant(DAG, 0x3f60d3e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003972 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3973 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003974 getF32Constant(DAG, 0x4011cdf0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003975 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3976 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003977 getF32Constant(DAG, 0x406cfd1c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003978 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3979 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003980 getF32Constant(DAG, 0x408797cb));
Owen Anderson825b72b2009-08-11 20:47:22 +00003981 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
Craig Topperdf0ea8d2012-11-16 19:08:44 +00003982 LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
3983 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003984 }
Craig Topperdf0ea8d2012-11-16 19:08:44 +00003985
Craig Topper5d1e0892012-11-23 18:38:31 +00003986 return DAG.getNode(ISD::FADD, dl, MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003987 }
3988
Craig Topper5d1e0892012-11-23 18:38:31 +00003989 // No special expansion.
3990 return DAG.getNode(ISD::FLOG, dl, Op.getValueType(), Op);
Dale Johannesen59e577f2008-09-05 18:38:42 +00003991}
3992
Craig Topper5d1e0892012-11-23 18:38:31 +00003993/// expandLog2 - Lower a log2 intrinsic. Handles the special sequences for
Bill Wendling3eb59402008-09-09 00:28:24 +00003994/// limited-precision mode.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003995static SDValue expandLog2(SDLoc dl, SDValue Op, SelectionDAG &DAG,
Craig Topper5d1e0892012-11-23 18:38:31 +00003996 const TargetLowering &TLI) {
3997 if (Op.getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003998 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003999 SDValue Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00004000
Bill Wendling39150252008-09-09 20:39:27 +00004001 // Get the exponent.
Bill Wendling46ada192010-03-02 01:55:18 +00004002 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling856ff412009-12-22 00:12:37 +00004003
Bill Wendling3eb59402008-09-09 00:28:24 +00004004 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00004005 // exponent of 1.
Bill Wendling46ada192010-03-02 01:55:18 +00004006 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004007
Bill Wendling3eb59402008-09-09 00:28:24 +00004008 // Different possible minimax approximations of significand in
4009 // floating-point for various degrees of accuracy over [1,2].
Craig Topperdf0ea8d2012-11-16 19:08:44 +00004010 SDValue Log2ofMantissa;
Bill Wendling3eb59402008-09-09 00:28:24 +00004011 if (LimitFloatPrecision <= 6) {
4012 // For floating-point precision of 6:
4013 //
4014 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
4015 //
4016 // error 0.0049451742, which is more than 7 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004017 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004018 getF32Constant(DAG, 0xbeb08fe0));
Owen Anderson825b72b2009-08-11 20:47:22 +00004019 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004020 getF32Constant(DAG, 0x40019463));
Owen Anderson825b72b2009-08-11 20:47:22 +00004021 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
Craig Topperdf0ea8d2012-11-16 19:08:44 +00004022 Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4023 getF32Constant(DAG, 0x3fd6633d));
Craig Topper08ac4692012-11-16 20:01:39 +00004024 } else if (LimitFloatPrecision <= 12) {
Bill Wendling3eb59402008-09-09 00:28:24 +00004025 // For floating-point precision of 12:
4026 //
4027 // Log2ofMantissa =
4028 // -2.51285454f +
4029 // (4.07009056f +
4030 // (-2.12067489f +
4031 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004032 //
Bill Wendling3eb59402008-09-09 00:28:24 +00004033 // error 0.0000876136000, which is better than 13 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004034 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004035 getF32Constant(DAG, 0xbda7262e));
Owen Anderson825b72b2009-08-11 20:47:22 +00004036 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004037 getF32Constant(DAG, 0x3f25280b));
Owen Anderson825b72b2009-08-11 20:47:22 +00004038 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4039 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004040 getF32Constant(DAG, 0x4007b923));
Owen Anderson825b72b2009-08-11 20:47:22 +00004041 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4042 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004043 getF32Constant(DAG, 0x40823e2f));
Owen Anderson825b72b2009-08-11 20:47:22 +00004044 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
Craig Topperdf0ea8d2012-11-16 19:08:44 +00004045 Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
4046 getF32Constant(DAG, 0x4020d29c));
Craig Topper08ac4692012-11-16 20:01:39 +00004047 } else { // LimitFloatPrecision <= 18
Bill Wendling3eb59402008-09-09 00:28:24 +00004048 // For floating-point precision of 18:
4049 //
4050 // Log2ofMantissa =
4051 // -3.0400495f +
4052 // (6.1129976f +
4053 // (-5.3420409f +
4054 // (3.2865683f +
4055 // (-1.2669343f +
4056 // (0.27515199f -
4057 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
4058 //
4059 // error 0.0000018516, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004060 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004061 getF32Constant(DAG, 0xbcd2769e));
Owen Anderson825b72b2009-08-11 20:47:22 +00004062 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004063 getF32Constant(DAG, 0x3e8ce0b9));
Owen Anderson825b72b2009-08-11 20:47:22 +00004064 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4065 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004066 getF32Constant(DAG, 0x3fa22ae7));
Owen Anderson825b72b2009-08-11 20:47:22 +00004067 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4068 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004069 getF32Constant(DAG, 0x40525723));
Owen Anderson825b72b2009-08-11 20:47:22 +00004070 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4071 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004072 getF32Constant(DAG, 0x40aaf200));
Owen Anderson825b72b2009-08-11 20:47:22 +00004073 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
4074 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004075 getF32Constant(DAG, 0x40c39dad));
Owen Anderson825b72b2009-08-11 20:47:22 +00004076 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
Craig Topperdf0ea8d2012-11-16 19:08:44 +00004077 Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
4078 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00004079 }
Craig Topperdf0ea8d2012-11-16 19:08:44 +00004080
Craig Topper5d1e0892012-11-23 18:38:31 +00004081 return DAG.getNode(ISD::FADD, dl, MVT::f32, LogOfExponent, Log2ofMantissa);
Dale Johannesen853244f2008-09-05 23:49:37 +00004082 }
Bill Wendling3eb59402008-09-09 00:28:24 +00004083
Craig Topper5d1e0892012-11-23 18:38:31 +00004084 // No special expansion.
4085 return DAG.getNode(ISD::FLOG2, dl, Op.getValueType(), Op);
Dale Johannesen59e577f2008-09-05 18:38:42 +00004086}
4087
Craig Topper5d1e0892012-11-23 18:38:31 +00004088/// expandLog10 - Lower a log10 intrinsic. Handles the special sequences for
Bill Wendling3eb59402008-09-09 00:28:24 +00004089/// limited-precision mode.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004090static SDValue expandLog10(SDLoc dl, SDValue Op, SelectionDAG &DAG,
Craig Topper5d1e0892012-11-23 18:38:31 +00004091 const TargetLowering &TLI) {
4092 if (Op.getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00004093 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004094 SDValue Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00004095
Bill Wendling39150252008-09-09 20:39:27 +00004096 // Scale the exponent by log10(2) [0.30102999f].
Bill Wendling46ada192010-03-02 01:55:18 +00004097 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00004098 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004099 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00004100
4101 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00004102 // exponent of 1.
Bill Wendling46ada192010-03-02 01:55:18 +00004103 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00004104
Craig Topperdf0ea8d2012-11-16 19:08:44 +00004105 SDValue Log10ofMantissa;
Bill Wendling3eb59402008-09-09 00:28:24 +00004106 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00004107 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004108 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00004109 // Log10ofMantissa =
4110 // -0.50419619f +
4111 // (0.60948995f - 0.10380950f * x) * x;
4112 //
4113 // error 0.0014886165, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004114 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004115 getF32Constant(DAG, 0xbdd49a13));
Owen Anderson825b72b2009-08-11 20:47:22 +00004116 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004117 getF32Constant(DAG, 0x3f1c0789));
Owen Anderson825b72b2009-08-11 20:47:22 +00004118 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
Craig Topperdf0ea8d2012-11-16 19:08:44 +00004119 Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4120 getF32Constant(DAG, 0x3f011300));
Craig Topper08ac4692012-11-16 20:01:39 +00004121 } else if (LimitFloatPrecision <= 12) {
Bill Wendling3eb59402008-09-09 00:28:24 +00004122 // For floating-point precision of 12:
4123 //
4124 // Log10ofMantissa =
4125 // -0.64831180f +
4126 // (0.91751397f +
4127 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
4128 //
4129 // error 0.00019228036, which is better than 12 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004130 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004131 getF32Constant(DAG, 0x3d431f31));
Owen Anderson825b72b2009-08-11 20:47:22 +00004132 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004133 getF32Constant(DAG, 0x3ea21fb2));
Owen Anderson825b72b2009-08-11 20:47:22 +00004134 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4135 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004136 getF32Constant(DAG, 0x3f6ae232));
Owen Anderson825b72b2009-08-11 20:47:22 +00004137 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
Craig Topperdf0ea8d2012-11-16 19:08:44 +00004138 Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
4139 getF32Constant(DAG, 0x3f25f7c3));
Craig Topper08ac4692012-11-16 20:01:39 +00004140 } else { // LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00004141 // For floating-point precision of 18:
4142 //
4143 // Log10ofMantissa =
4144 // -0.84299375f +
4145 // (1.5327582f +
4146 // (-1.0688956f +
4147 // (0.49102474f +
4148 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
4149 //
4150 // error 0.0000037995730, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004151 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004152 getF32Constant(DAG, 0x3c5d51ce));
Owen Anderson825b72b2009-08-11 20:47:22 +00004153 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004154 getF32Constant(DAG, 0x3e00685a));
Owen Anderson825b72b2009-08-11 20:47:22 +00004155 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4156 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004157 getF32Constant(DAG, 0x3efb6798));
Owen Anderson825b72b2009-08-11 20:47:22 +00004158 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4159 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004160 getF32Constant(DAG, 0x3f88d192));
Owen Anderson825b72b2009-08-11 20:47:22 +00004161 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4162 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004163 getF32Constant(DAG, 0x3fc4316c));
Owen Anderson825b72b2009-08-11 20:47:22 +00004164 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
Craig Topperdf0ea8d2012-11-16 19:08:44 +00004165 Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
4166 getF32Constant(DAG, 0x3f57ce70));
Bill Wendling3eb59402008-09-09 00:28:24 +00004167 }
Craig Topperdf0ea8d2012-11-16 19:08:44 +00004168
Craig Topper5d1e0892012-11-23 18:38:31 +00004169 return DAG.getNode(ISD::FADD, dl, MVT::f32, LogOfExponent, Log10ofMantissa);
Dale Johannesen852680a2008-09-05 21:27:19 +00004170 }
Bill Wendling3eb59402008-09-09 00:28:24 +00004171
Craig Topper5d1e0892012-11-23 18:38:31 +00004172 // No special expansion.
4173 return DAG.getNode(ISD::FLOG10, dl, Op.getValueType(), Op);
Dale Johannesen59e577f2008-09-05 18:38:42 +00004174}
4175
Craig Topper538cd482012-11-24 18:52:06 +00004176/// expandExp2 - Lower an exp2 intrinsic. Handles the special sequences for
Bill Wendlinge10c8142008-09-09 22:39:21 +00004177/// limited-precision mode.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004178static SDValue expandExp2(SDLoc dl, SDValue Op, SelectionDAG &DAG,
Craig Topper538cd482012-11-24 18:52:06 +00004179 const TargetLowering &TLI) {
4180 if (Op.getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00004181 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004182 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00004183
4184 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00004185 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
4186 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00004187
4188 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00004189 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00004190 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00004191
Craig Topperb3157722012-11-24 08:22:37 +00004192 SDValue TwoToFractionalPartOfX;
Bill Wendlinge10c8142008-09-09 22:39:21 +00004193 if (LimitFloatPrecision <= 6) {
4194 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004195 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00004196 // TwoToFractionalPartOfX =
4197 // 0.997535578f +
4198 // (0.735607626f + 0.252464424f * x) * x;
4199 //
4200 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004201 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004202 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00004203 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004204 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00004205 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
Craig Topperb3157722012-11-24 08:22:37 +00004206 TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4207 getF32Constant(DAG, 0x3f7f5e7e));
Craig Topper08ac4692012-11-16 20:01:39 +00004208 } else if (LimitFloatPrecision <= 12) {
Bill Wendlinge10c8142008-09-09 22:39:21 +00004209 // For floating-point precision of 12:
4210 //
4211 // TwoToFractionalPartOfX =
4212 // 0.999892986f +
4213 // (0.696457318f +
4214 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
4215 //
4216 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004217 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004218 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00004219 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004220 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00004221 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4222 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004223 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00004224 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
Craig Topperb3157722012-11-24 08:22:37 +00004225 TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
4226 getF32Constant(DAG, 0x3f7ff8fd));
Craig Topper08ac4692012-11-16 20:01:39 +00004227 } else { // LimitFloatPrecision <= 18
Bill Wendlinge10c8142008-09-09 22:39:21 +00004228 // For floating-point precision of 18:
4229 //
4230 // TwoToFractionalPartOfX =
4231 // 0.999999982f +
4232 // (0.693148872f +
4233 // (0.240227044f +
4234 // (0.554906021e-1f +
4235 // (0.961591928e-2f +
4236 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
4237 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004238 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004239 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00004240 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004241 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00004242 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4243 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004244 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00004245 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4246 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004247 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00004248 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
4249 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004250 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00004251 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
4252 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004253 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00004254 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
Craig Topperb3157722012-11-24 08:22:37 +00004255 TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
4256 getF32Constant(DAG, 0x3f800000));
Bill Wendlinge10c8142008-09-09 22:39:21 +00004257 }
Craig Topperb3157722012-11-24 08:22:37 +00004258
4259 // Add the exponent into the result in integer domain.
4260 SDValue t13 = DAG.getNode(ISD::BITCAST, dl, MVT::i32,
4261 TwoToFractionalPartOfX);
Craig Topper538cd482012-11-24 18:52:06 +00004262 return DAG.getNode(ISD::BITCAST, dl, MVT::f32,
4263 DAG.getNode(ISD::ADD, dl, MVT::i32,
4264 t13, IntegerPartOfX));
Dale Johannesen601d3c02008-09-05 01:48:15 +00004265 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00004266
Craig Topper538cd482012-11-24 18:52:06 +00004267 // No special expansion.
4268 return DAG.getNode(ISD::FEXP2, dl, Op.getValueType(), Op);
Dale Johannesen601d3c02008-09-05 01:48:15 +00004269}
4270
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004271/// visitPow - Lower a pow intrinsic. Handles the special sequences for
4272/// limited-precision mode with x == 10.0f.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004273static SDValue expandPow(SDLoc dl, SDValue LHS, SDValue RHS,
Craig Topper327e4cb2012-11-25 08:08:58 +00004274 SelectionDAG &DAG, const TargetLowering &TLI) {
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004275 bool IsExp10 = false;
Craig Topper327e4cb2012-11-25 08:08:58 +00004276 if (LHS.getValueType() == MVT::f32 && LHS.getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004277 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
Craig Topper327e4cb2012-11-25 08:08:58 +00004278 if (ConstantFPSDNode *LHSC = dyn_cast<ConstantFPSDNode>(LHS)) {
4279 APFloat Ten(10.0f);
4280 IsExp10 = LHSC->isExactlyValue(Ten);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004281 }
4282 }
4283
Craig Topperc1aa6382012-11-25 00:48:58 +00004284 if (IsExp10) {
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004285 // Put the exponent in the right bit position for later addition to the
4286 // final result:
4287 //
4288 // #define LOG2OF10 3.3219281f
4289 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Craig Topper327e4cb2012-11-25 08:08:58 +00004290 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, RHS,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004291 getF32Constant(DAG, 0x40549a78));
Owen Anderson825b72b2009-08-11 20:47:22 +00004292 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004293
4294 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00004295 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
4296 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004297
4298 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00004299 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00004300 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004301
Craig Topper915562e2012-11-25 00:15:07 +00004302 SDValue TwoToFractionalPartOfX;
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004303 if (LimitFloatPrecision <= 6) {
4304 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004305 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004306 // twoToFractionalPartOfX =
4307 // 0.997535578f +
4308 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004309 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004310 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004311 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004312 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00004313 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004314 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00004315 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
Craig Topper915562e2012-11-25 00:15:07 +00004316 TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4317 getF32Constant(DAG, 0x3f7f5e7e));
Craig Topper08ac4692012-11-16 20:01:39 +00004318 } else if (LimitFloatPrecision <= 12) {
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004319 // For floating-point precision of 12:
4320 //
4321 // TwoToFractionalPartOfX =
4322 // 0.999892986f +
4323 // (0.696457318f +
4324 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
4325 //
4326 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004327 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004328 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00004329 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004330 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00004331 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4332 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004333 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00004334 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
Craig Topper915562e2012-11-25 00:15:07 +00004335 TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
4336 getF32Constant(DAG, 0x3f7ff8fd));
Craig Topper08ac4692012-11-16 20:01:39 +00004337 } else { // LimitFloatPrecision <= 18
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004338 // For floating-point precision of 18:
4339 //
4340 // TwoToFractionalPartOfX =
4341 // 0.999999982f +
4342 // (0.693148872f +
4343 // (0.240227044f +
4344 // (0.554906021e-1f +
4345 // (0.961591928e-2f +
4346 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
4347 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00004348 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004349 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00004350 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004351 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00004352 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4353 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004354 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00004355 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4356 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004357 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00004358 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
4359 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004360 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00004361 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
4362 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00004363 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00004364 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
Craig Topper915562e2012-11-25 00:15:07 +00004365 TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
4366 getF32Constant(DAG, 0x3f800000));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004367 }
Craig Topper915562e2012-11-25 00:15:07 +00004368
4369 SDValue t13 = DAG.getNode(ISD::BITCAST, dl,MVT::i32,TwoToFractionalPartOfX);
Craig Topper327e4cb2012-11-25 08:08:58 +00004370 return DAG.getNode(ISD::BITCAST, dl, MVT::f32,
4371 DAG.getNode(ISD::ADD, dl, MVT::i32,
4372 t13, IntegerPartOfX));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004373 }
4374
Craig Topper327e4cb2012-11-25 08:08:58 +00004375 // No special expansion.
4376 return DAG.getNode(ISD::FPOW, dl, LHS.getValueType(), LHS, RHS);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004377}
4378
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004379
4380/// ExpandPowI - Expand a llvm.powi intrinsic.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004381static SDValue ExpandPowI(SDLoc DL, SDValue LHS, SDValue RHS,
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004382 SelectionDAG &DAG) {
4383 // If RHS is a constant, we can expand this out to a multiplication tree,
4384 // otherwise we end up lowering to a call to __powidf2 (for example). When
4385 // optimizing for size, we only want to do this if the expansion would produce
4386 // a small number of multiplies, otherwise we do the full expansion.
4387 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
4388 // Get the exponent as a positive value.
4389 unsigned Val = RHSC->getSExtValue();
4390 if ((int)Val < 0) Val = -Val;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004391
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004392 // powi(x, 0) -> 1.0
4393 if (Val == 0)
4394 return DAG.getConstantFP(1.0, LHS.getValueType());
4395
Dan Gohmanae541aa2010-04-15 04:33:49 +00004396 const Function *F = DAG.getMachineFunction().getFunction();
Bill Wendling831737d2012-12-30 10:32:01 +00004397 if (!F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
4398 Attribute::OptimizeForSize) ||
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004399 // If optimizing for size, don't insert too many multiplies. This
4400 // inserts up to 5 multiplies.
4401 CountPopulation_32(Val)+Log2_32(Val) < 7) {
4402 // We use the simple binary decomposition method to generate the multiply
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004403 // sequence. There are more optimal ways to do this (for example,
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004404 // powi(x,15) generates one more multiply than it should), but this has
4405 // the benefit of being both really simple and much better than a libcall.
4406 SDValue Res; // Logically starts equal to 1.0
4407 SDValue CurSquare = LHS;
4408 while (Val) {
Mikhail Glushenkovbfdfea82010-01-01 04:41:36 +00004409 if (Val & 1) {
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004410 if (Res.getNode())
4411 Res = DAG.getNode(ISD::FMUL, DL,Res.getValueType(), Res, CurSquare);
4412 else
4413 Res = CurSquare; // 1.0*CurSquare.
Mikhail Glushenkovbfdfea82010-01-01 04:41:36 +00004414 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004415
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004416 CurSquare = DAG.getNode(ISD::FMUL, DL, CurSquare.getValueType(),
4417 CurSquare, CurSquare);
4418 Val >>= 1;
4419 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00004420
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004421 // If the original was negative, invert the result, producing 1/(x*x*x).
4422 if (RHSC->getSExtValue() < 0)
4423 Res = DAG.getNode(ISD::FDIV, DL, LHS.getValueType(),
4424 DAG.getConstantFP(1.0, LHS.getValueType()), Res);
4425 return Res;
4426 }
4427 }
4428
4429 // Otherwise, expand to a libcall.
4430 return DAG.getNode(ISD::FPOWI, DL, LHS.getValueType(), LHS, RHS);
4431}
4432
Devang Patel227dfdb2011-05-16 21:24:05 +00004433// getTruncatedArgReg - Find underlying register used for an truncated
4434// argument.
4435static unsigned getTruncatedArgReg(const SDValue &N) {
4436 if (N.getOpcode() != ISD::TRUNCATE)
4437 return 0;
4438
4439 const SDValue &Ext = N.getOperand(0);
Stephen Lin09f8ca32013-07-06 21:44:25 +00004440 if (Ext.getOpcode() == ISD::AssertZext ||
4441 Ext.getOpcode() == ISD::AssertSext) {
Devang Patel227dfdb2011-05-16 21:24:05 +00004442 const SDValue &CFR = Ext.getOperand(0);
4443 if (CFR.getOpcode() == ISD::CopyFromReg)
4444 return cast<RegisterSDNode>(CFR.getOperand(1))->getReg();
Craig Topper7eb46d82012-04-11 04:55:51 +00004445 if (CFR.getOpcode() == ISD::TRUNCATE)
4446 return getTruncatedArgReg(CFR);
Devang Patel227dfdb2011-05-16 21:24:05 +00004447 }
4448 return 0;
4449}
4450
Evan Cheng2ad0fcf2010-04-28 23:08:54 +00004451/// EmitFuncArgumentDbgValue - If the DbgValueInst is a dbg_value of a function
4452/// argument, create the corresponding DBG_VALUE machine instruction for it now.
4453/// At the end of instruction selection, they will be inserted to the entry BB.
Evan Cheng9e8a2b92010-04-29 01:40:30 +00004454bool
Devang Patel78a06e52010-08-25 20:39:26 +00004455SelectionDAGBuilder::EmitFuncArgumentDbgValue(const Value *V, MDNode *Variable,
Michael J. Spencere70c5262010-10-16 08:25:21 +00004456 int64_t Offset,
Dan Gohman5d11ea32010-05-01 00:33:16 +00004457 const SDValue &N) {
Devang Patel0b48ead2010-08-31 22:22:42 +00004458 const Argument *Arg = dyn_cast<Argument>(V);
4459 if (!Arg)
Evan Cheng9e8a2b92010-04-29 01:40:30 +00004460 return false;
Evan Cheng2ad0fcf2010-04-28 23:08:54 +00004461
Devang Patel719f6a92010-04-29 20:40:36 +00004462 MachineFunction &MF = DAG.getMachineFunction();
Devang Patela90b3052010-11-02 17:01:30 +00004463 const TargetInstrInfo *TII = DAG.getTarget().getInstrInfo();
Devang Patela90b3052010-11-02 17:01:30 +00004464
Devang Patela83ce982010-04-29 18:50:36 +00004465 // Ignore inlined function arguments here.
4466 DIVariable DV(Variable);
Devang Patel719f6a92010-04-29 20:40:36 +00004467 if (DV.isInlinedFnArgument(MF.getFunction()))
Devang Patela83ce982010-04-29 18:50:36 +00004468 return false;
4469
David Blaikie6d9dbd52013-06-16 20:34:15 +00004470 Optional<MachineOperand> Op;
Devang Patel9aee3352011-09-08 22:59:09 +00004471 // Some arguments' frame index is recorded during argument lowering.
David Blaikie6d9dbd52013-06-16 20:34:15 +00004472 if (int FI = FuncInfo.getArgumentFrameIndex(Arg))
4473 Op = MachineOperand::CreateFI(FI);
Devang Patel0b48ead2010-08-31 22:22:42 +00004474
David Blaikie6d9dbd52013-06-16 20:34:15 +00004475 if (!Op && N.getNode()) {
4476 unsigned Reg;
Devang Patel227dfdb2011-05-16 21:24:05 +00004477 if (N.getOpcode() == ISD::CopyFromReg)
4478 Reg = cast<RegisterSDNode>(N.getOperand(1))->getReg();
4479 else
4480 Reg = getTruncatedArgReg(N);
4481 if (Reg && TargetRegisterInfo::isVirtualRegister(Reg)) {
Evan Cheng2ad0fcf2010-04-28 23:08:54 +00004482 MachineRegisterInfo &RegInfo = MF.getRegInfo();
4483 unsigned PR = RegInfo.getLiveInPhysReg(Reg);
4484 if (PR)
4485 Reg = PR;
4486 }
David Blaikie6d9dbd52013-06-16 20:34:15 +00004487 if (Reg)
4488 Op = MachineOperand::CreateReg(Reg, false);
Evan Cheng2ad0fcf2010-04-28 23:08:54 +00004489 }
4490
David Blaikie6d9dbd52013-06-16 20:34:15 +00004491 if (!Op) {
Devang Patela90b3052010-11-02 17:01:30 +00004492 // Check if ValueMap has reg number.
Evan Chenga36acad2010-04-29 06:33:38 +00004493 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
Devang Patel8bc9ef72010-11-02 17:19:03 +00004494 if (VMI != FuncInfo.ValueMap.end())
David Blaikie6d9dbd52013-06-16 20:34:15 +00004495 Op = MachineOperand::CreateReg(VMI->second, false);
Evan Chenga36acad2010-04-29 06:33:38 +00004496 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004497
David Blaikie6d9dbd52013-06-16 20:34:15 +00004498 if (!Op && N.getNode())
Devang Patela90b3052010-11-02 17:01:30 +00004499 // Check if frame index is available.
4500 if (LoadSDNode *LNode = dyn_cast<LoadSDNode>(N.getNode()))
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004501 if (FrameIndexSDNode *FINode =
David Blaikie6d9dbd52013-06-16 20:34:15 +00004502 dyn_cast<FrameIndexSDNode>(LNode->getBasePtr().getNode()))
4503 Op = MachineOperand::CreateFI(FINode->getIndex());
Devang Patel8bc9ef72010-11-02 17:19:03 +00004504
David Blaikie6d9dbd52013-06-16 20:34:15 +00004505 if (!Op)
Devang Patel8bc9ef72010-11-02 17:19:03 +00004506 return false;
Devang Patela90b3052010-11-02 17:01:30 +00004507
Adrian Prantl893ae832013-07-10 01:53:30 +00004508 // FIXME: This does not handle register-indirect values at offset 0.
4509 bool IsIndirect = Offset != 0;
David Blaikie6d9dbd52013-06-16 20:34:15 +00004510 if (Op->isReg())
Adrian Prantl35176402013-07-09 20:28:37 +00004511 FuncInfo.ArgDbgValues.push_back(BuildMI(MF, getCurDebugLoc(),
4512 TII->get(TargetOpcode::DBG_VALUE),
Adrian Prantl893ae832013-07-10 01:53:30 +00004513 IsIndirect,
Adrian Prantl35176402013-07-09 20:28:37 +00004514 Op->getReg(), Offset, Variable));
4515 else
4516 FuncInfo.ArgDbgValues.push_back(
David Blaikie6d9dbd52013-06-16 20:34:15 +00004517 BuildMI(MF, getCurDebugLoc(), TII->get(TargetOpcode::DBG_VALUE))
4518 .addOperand(*Op).addImm(Offset).addMetadata(Variable));
Adrian Prantl35176402013-07-09 20:28:37 +00004519
Evan Cheng9e8a2b92010-04-29 01:40:30 +00004520 return true;
Evan Cheng2ad0fcf2010-04-28 23:08:54 +00004521}
Chris Lattnerf031e8a2010-01-01 03:32:16 +00004522
Douglas Gregor7d9663c2010-05-11 06:17:44 +00004523// VisualStudio defines setjmp as _setjmp
Michael J. Spencer1f409602010-09-24 19:48:47 +00004524#if defined(_MSC_VER) && defined(setjmp) && \
4525 !defined(setjmp_undefined_for_msvc)
4526# pragma push_macro("setjmp")
4527# undef setjmp
4528# define setjmp_undefined_for_msvc
Douglas Gregor7d9663c2010-05-11 06:17:44 +00004529#endif
4530
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004531/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
4532/// we want to emit this as a call to a named external function, return the name
4533/// otherwise lower it and return null.
4534const char *
Dan Gohman46510a72010-04-15 01:51:59 +00004535SelectionDAGBuilder::visitIntrinsicCall(const CallInst &I, unsigned Intrinsic) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00004536 const TargetLowering *TLI = TM.getTargetLowering();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004537 SDLoc sdl = getCurSDLoc();
Dale Johannesen66978ee2009-01-31 02:22:37 +00004538 DebugLoc dl = getCurDebugLoc();
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004539 SDValue Res;
4540
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004541 switch (Intrinsic) {
4542 default:
4543 // By default, turn this into a target intrinsic node.
4544 visitTargetIntrinsic(I, Intrinsic);
4545 return 0;
4546 case Intrinsic::vastart: visitVAStart(I); return 0;
4547 case Intrinsic::vaend: visitVAEnd(I); return 0;
4548 case Intrinsic::vacopy: visitVACopy(I); return 0;
4549 case Intrinsic::returnaddress:
Bill Wendlingba54bca2013-06-19 21:36:55 +00004550 setValue(&I, DAG.getNode(ISD::RETURNADDR, sdl, TLI->getPointerTy(),
Gabor Greif0635f352010-06-25 09:38:13 +00004551 getValue(I.getArgOperand(0))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004552 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00004553 case Intrinsic::frameaddress:
Bill Wendlingba54bca2013-06-19 21:36:55 +00004554 setValue(&I, DAG.getNode(ISD::FRAMEADDR, sdl, TLI->getPointerTy(),
Gabor Greif0635f352010-06-25 09:38:13 +00004555 getValue(I.getArgOperand(0))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004556 return 0;
4557 case Intrinsic::setjmp:
Bill Wendlingba54bca2013-06-19 21:36:55 +00004558 return &"_setjmp"[!TLI->usesUnderscoreSetJmp()];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004559 case Intrinsic::longjmp:
Bill Wendlingba54bca2013-06-19 21:36:55 +00004560 return &"_longjmp"[!TLI->usesUnderscoreLongJmp()];
Chris Lattner824b9582008-11-21 16:42:48 +00004561 case Intrinsic::memcpy: {
Mon P Wang20adc9d2010-04-04 03:10:48 +00004562 // Assert for address < 256 since we support only user defined address
4563 // spaces.
Gabor Greif0635f352010-06-25 09:38:13 +00004564 assert(cast<PointerType>(I.getArgOperand(0)->getType())->getAddressSpace()
Mon P Wang20adc9d2010-04-04 03:10:48 +00004565 < 256 &&
Gabor Greif0635f352010-06-25 09:38:13 +00004566 cast<PointerType>(I.getArgOperand(1)->getType())->getAddressSpace()
Mon P Wang20adc9d2010-04-04 03:10:48 +00004567 < 256 &&
4568 "Unknown address space");
Gabor Greif0635f352010-06-25 09:38:13 +00004569 SDValue Op1 = getValue(I.getArgOperand(0));
4570 SDValue Op2 = getValue(I.getArgOperand(1));
4571 SDValue Op3 = getValue(I.getArgOperand(2));
4572 unsigned Align = cast<ConstantInt>(I.getArgOperand(3))->getZExtValue();
Chandler Carruthaf23f8e2013-02-25 14:20:21 +00004573 if (!Align)
4574 Align = 1; // @llvm.memcpy defines 0 and 1 to both mean no alignment.
Gabor Greif0635f352010-06-25 09:38:13 +00004575 bool isVol = cast<ConstantInt>(I.getArgOperand(4))->getZExtValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004576 DAG.setRoot(DAG.getMemcpy(getRoot(), sdl, Op1, Op2, Op3, Align, isVol, false,
Chris Lattnere72f2022010-09-21 05:40:29 +00004577 MachinePointerInfo(I.getArgOperand(0)),
4578 MachinePointerInfo(I.getArgOperand(1))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004579 return 0;
4580 }
Chris Lattner824b9582008-11-21 16:42:48 +00004581 case Intrinsic::memset: {
Mon P Wang20adc9d2010-04-04 03:10:48 +00004582 // Assert for address < 256 since we support only user defined address
4583 // spaces.
Gabor Greif0635f352010-06-25 09:38:13 +00004584 assert(cast<PointerType>(I.getArgOperand(0)->getType())->getAddressSpace()
Mon P Wang20adc9d2010-04-04 03:10:48 +00004585 < 256 &&
4586 "Unknown address space");
Gabor Greif0635f352010-06-25 09:38:13 +00004587 SDValue Op1 = getValue(I.getArgOperand(0));
4588 SDValue Op2 = getValue(I.getArgOperand(1));
4589 SDValue Op3 = getValue(I.getArgOperand(2));
4590 unsigned Align = cast<ConstantInt>(I.getArgOperand(3))->getZExtValue();
Chandler Carruthaf23f8e2013-02-25 14:20:21 +00004591 if (!Align)
4592 Align = 1; // @llvm.memset defines 0 and 1 to both mean no alignment.
Gabor Greif0635f352010-06-25 09:38:13 +00004593 bool isVol = cast<ConstantInt>(I.getArgOperand(4))->getZExtValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004594 DAG.setRoot(DAG.getMemset(getRoot(), sdl, Op1, Op2, Op3, Align, isVol,
Chris Lattnere72f2022010-09-21 05:40:29 +00004595 MachinePointerInfo(I.getArgOperand(0))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004596 return 0;
4597 }
Chris Lattner824b9582008-11-21 16:42:48 +00004598 case Intrinsic::memmove: {
Mon P Wang20adc9d2010-04-04 03:10:48 +00004599 // Assert for address < 256 since we support only user defined address
4600 // spaces.
Gabor Greif0635f352010-06-25 09:38:13 +00004601 assert(cast<PointerType>(I.getArgOperand(0)->getType())->getAddressSpace()
Mon P Wang20adc9d2010-04-04 03:10:48 +00004602 < 256 &&
Gabor Greif0635f352010-06-25 09:38:13 +00004603 cast<PointerType>(I.getArgOperand(1)->getType())->getAddressSpace()
Mon P Wang20adc9d2010-04-04 03:10:48 +00004604 < 256 &&
4605 "Unknown address space");
Gabor Greif0635f352010-06-25 09:38:13 +00004606 SDValue Op1 = getValue(I.getArgOperand(0));
4607 SDValue Op2 = getValue(I.getArgOperand(1));
4608 SDValue Op3 = getValue(I.getArgOperand(2));
4609 unsigned Align = cast<ConstantInt>(I.getArgOperand(3))->getZExtValue();
Chandler Carruthaf23f8e2013-02-25 14:20:21 +00004610 if (!Align)
4611 Align = 1; // @llvm.memmove defines 0 and 1 to both mean no alignment.
Gabor Greif0635f352010-06-25 09:38:13 +00004612 bool isVol = cast<ConstantInt>(I.getArgOperand(4))->getZExtValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004613 DAG.setRoot(DAG.getMemmove(getRoot(), sdl, Op1, Op2, Op3, Align, isVol,
Chris Lattnere72f2022010-09-21 05:40:29 +00004614 MachinePointerInfo(I.getArgOperand(0)),
4615 MachinePointerInfo(I.getArgOperand(1))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004616 return 0;
4617 }
Bill Wendling92c1e122009-02-13 02:16:35 +00004618 case Intrinsic::dbg_declare: {
Dan Gohman46510a72010-04-15 01:51:59 +00004619 const DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Devang Patelac1ceb32009-10-09 22:42:28 +00004620 MDNode *Variable = DI.getVariable();
Dan Gohman46510a72010-04-15 01:51:59 +00004621 const Value *Address = DI.getAddress();
Manman Rencbafae62013-06-28 05:43:10 +00004622 DIVariable DIVar(Variable);
4623 assert((!DIVar || DIVar.isVariable()) &&
4624 "Variable in DbgDeclareInst should be either null or a DIVariable.");
4625 if (!Address || !DIVar) {
Eric Christopher8f2a88d2012-03-15 21:33:41 +00004626 DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
Dale Johannesen8ac38f22010-02-08 21:53:27 +00004627 return 0;
Eric Christopher8f2a88d2012-03-15 21:33:41 +00004628 }
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00004629
Devang Patel3f74a112010-09-02 21:29:42 +00004630 // Check if address has undef value.
4631 if (isa<UndefValue>(Address) ||
4632 (Address->use_empty() && !isa<Argument>(Address))) {
Eric Christopher24413672012-02-23 03:39:39 +00004633 DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
Devang Patel3f74a112010-09-02 21:29:42 +00004634 return 0;
4635 }
4636
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00004637 SDValue &N = NodeMap[Address];
Devang Patel0b48ead2010-08-31 22:22:42 +00004638 if (!N.getNode() && isa<Argument>(Address))
4639 // Check unused arguments map.
4640 N = UnusedArgNodeMap[Address];
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00004641 SDDbgValue *SDV;
4642 if (N.getNode()) {
Devang Patel8e741ed2010-09-02 21:02:27 +00004643 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
4644 Address = BCI->getOperand(0);
Eric Christopher178606d2012-02-24 01:59:08 +00004645 // Parameters are handled specially.
4646 bool isParameter =
4647 (DIVariable(Variable).getTag() == dwarf::DW_TAG_arg_variable ||
4648 isa<Argument>(Address));
4649
Devang Patel8e741ed2010-09-02 21:02:27 +00004650 const AllocaInst *AI = dyn_cast<AllocaInst>(Address);
4651
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00004652 if (isParameter && !AI) {
4653 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(N.getNode());
4654 if (FINode)
4655 // Byval parameter. We have a frame index at this point.
4656 SDV = DAG.getDbgValue(Variable, FINode->getIndex(),
4657 0, dl, SDNodeOrder);
Devang Patelafeaae72010-12-06 22:39:26 +00004658 else {
Devang Patel227dfdb2011-05-16 21:24:05 +00004659 // Address is an argument, so try to emit its dbg value using
4660 // virtual register info from the FuncInfo.ValueMap.
4661 EmitFuncArgumentDbgValue(Address, Variable, 0, N);
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00004662 return 0;
Devang Patelafeaae72010-12-06 22:39:26 +00004663 }
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00004664 } else if (AI)
4665 SDV = DAG.getDbgValue(Variable, N.getNode(), N.getResNo(),
4666 0, dl, SDNodeOrder);
Devang Patelafeaae72010-12-06 22:39:26 +00004667 else {
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00004668 // Can't do anything with other non-AI cases yet.
Eric Christopher24413672012-02-23 03:39:39 +00004669 DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
Eric Christopher178606d2012-02-24 01:59:08 +00004670 DEBUG(dbgs() << "non-AllocaInst issue for Address: \n\t");
4671 DEBUG(Address->dump());
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00004672 return 0;
Devang Patelafeaae72010-12-06 22:39:26 +00004673 }
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00004674 DAG.AddDbgValue(SDV, N.getNode(), isParameter);
4675 } else {
Gabor Greiffb4032f2010-10-01 10:32:19 +00004676 // If Address is an argument then try to emit its dbg value using
Michael J. Spencere70c5262010-10-16 08:25:21 +00004677 // virtual register info from the FuncInfo.ValueMap.
Devang Patel6cd467b2010-08-26 22:53:27 +00004678 if (!EmitFuncArgumentDbgValue(Address, Variable, 0, N)) {
Devang Patel1397fdc2010-09-15 14:48:53 +00004679 // If variable is pinned by a alloca in dominating bb then
4680 // use StaticAllocaMap.
4681 if (const AllocaInst *AI = dyn_cast<AllocaInst>(Address)) {
Devang Patel27ede1b2010-09-15 18:13:55 +00004682 if (AI->getParent() != DI.getParent()) {
4683 DenseMap<const AllocaInst*, int>::iterator SI =
4684 FuncInfo.StaticAllocaMap.find(AI);
4685 if (SI != FuncInfo.StaticAllocaMap.end()) {
4686 SDV = DAG.getDbgValue(Variable, SI->second,
4687 0, dl, SDNodeOrder);
4688 DAG.AddDbgValue(SDV, 0, false);
4689 return 0;
4690 }
Devang Patel1397fdc2010-09-15 14:48:53 +00004691 }
4692 }
Eric Christopher0822e012012-02-23 03:39:43 +00004693 DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
Devang Patel6cd467b2010-08-26 22:53:27 +00004694 }
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00004695 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004696 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00004697 }
Dale Johannesen904c2fa2010-02-01 19:54:53 +00004698 case Intrinsic::dbg_value: {
Dan Gohman46510a72010-04-15 01:51:59 +00004699 const DbgValueInst &DI = cast<DbgValueInst>(I);
Manman Rencbafae62013-06-28 05:43:10 +00004700 DIVariable DIVar(DI.getVariable());
4701 assert((!DIVar || DIVar.isVariable()) &&
4702 "Variable in DbgValueInst should be either null or a DIVariable.");
4703 if (!DIVar)
Dale Johannesen904c2fa2010-02-01 19:54:53 +00004704 return 0;
4705
4706 MDNode *Variable = DI.getVariable();
Devang Patel00190342010-03-15 19:15:44 +00004707 uint64_t Offset = DI.getOffset();
Dan Gohman46510a72010-04-15 01:51:59 +00004708 const Value *V = DI.getValue();
Dale Johannesen904c2fa2010-02-01 19:54:53 +00004709 if (!V)
4710 return 0;
Devang Patel00190342010-03-15 19:15:44 +00004711
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00004712 SDDbgValue *SDV;
Devang Patel57871242011-08-03 23:13:55 +00004713 if (isa<ConstantInt>(V) || isa<ConstantFP>(V) || isa<UndefValue>(V)) {
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00004714 SDV = DAG.getDbgValue(Variable, V, Offset, dl, SDNodeOrder);
4715 DAG.AddDbgValue(SDV, 0, false);
Devang Patel00190342010-03-15 19:15:44 +00004716 } else {
Dale Johannesenbdc09d92010-07-16 00:02:08 +00004717 // Do not use getValue() in here; we don't want to generate code at
4718 // this point if it hasn't been done yet.
Devang Patel9126c0d2010-06-01 19:59:01 +00004719 SDValue N = NodeMap[V];
4720 if (!N.getNode() && isa<Argument>(V))
4721 // Check unused arguments map.
4722 N = UnusedArgNodeMap[V];
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00004723 if (N.getNode()) {
Devang Patel78a06e52010-08-25 20:39:26 +00004724 if (!EmitFuncArgumentDbgValue(V, Variable, Offset, N)) {
Evan Cheng9e8a2b92010-04-29 01:40:30 +00004725 SDV = DAG.getDbgValue(Variable, N.getNode(),
4726 N.getResNo(), Offset, dl, SDNodeOrder);
4727 DAG.AddDbgValue(SDV, N.getNode(), false);
4728 }
Devang Patela778f5c2011-02-18 22:43:42 +00004729 } else if (!V->use_empty() ) {
Dale Johannesenbdc09d92010-07-16 00:02:08 +00004730 // Do not call getValue(V) yet, as we don't want to generate code.
4731 // Remember it for later.
4732 DanglingDebugInfo DDI(&DI, dl, SDNodeOrder);
4733 DanglingDebugInfoMap[V] = DDI;
Devang Patel0991dfb2010-08-27 22:25:51 +00004734 } else {
Devang Patel00190342010-03-15 19:15:44 +00004735 // We may expand this to cover more cases. One case where we have no
Devang Patelafeaae72010-12-06 22:39:26 +00004736 // data available is an unreferenced parameter.
Eric Christopher0822e012012-02-23 03:39:43 +00004737 DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00004738 }
Devang Patel00190342010-03-15 19:15:44 +00004739 }
4740
4741 // Build a debug info table entry.
Dan Gohman46510a72010-04-15 01:51:59 +00004742 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(V))
Dale Johannesen904c2fa2010-02-01 19:54:53 +00004743 V = BCI->getOperand(0);
Dan Gohman46510a72010-04-15 01:51:59 +00004744 const AllocaInst *AI = dyn_cast<AllocaInst>(V);
Dale Johannesen904c2fa2010-02-01 19:54:53 +00004745 // Don't handle byval struct arguments or VLAs, for example.
Eric Christopher7e1e18f2012-03-26 06:10:32 +00004746 if (!AI) {
Eric Christopher9fc5c832012-03-28 07:34:36 +00004747 DEBUG(dbgs() << "Dropping debug location info for:\n " << DI << "\n");
4748 DEBUG(dbgs() << " Last seen at:\n " << *V << "\n");
Dale Johannesen904c2fa2010-02-01 19:54:53 +00004749 return 0;
Eric Christopher7e1e18f2012-03-26 06:10:32 +00004750 }
Dale Johannesen904c2fa2010-02-01 19:54:53 +00004751 DenseMap<const AllocaInst*, int>::iterator SI =
4752 FuncInfo.StaticAllocaMap.find(AI);
4753 if (SI == FuncInfo.StaticAllocaMap.end())
4754 return 0; // VLAs.
4755 int FI = SI->second;
Michael J. Spencere70c5262010-10-16 08:25:21 +00004756
Chris Lattner512063d2010-04-05 06:19:28 +00004757 MachineModuleInfo &MMI = DAG.getMachineFunction().getMMI();
4758 if (!DI.getDebugLoc().isUnknown() && MMI.hasDebugInfo())
4759 MMI.setVariableDbgInfo(Variable, FI, DI.getDebugLoc());
Dale Johannesen904c2fa2010-02-01 19:54:53 +00004760 return 0;
4761 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004762
Duncan Sandsb01bbdc2009-10-14 16:11:37 +00004763 case Intrinsic::eh_typeid_for: {
Chris Lattner512063d2010-04-05 06:19:28 +00004764 // Find the type id for the given typeinfo.
Gabor Greif0635f352010-06-25 09:38:13 +00004765 GlobalVariable *GV = ExtractTypeInfo(I.getArgOperand(0));
Chris Lattner512063d2010-04-05 06:19:28 +00004766 unsigned TypeID = DAG.getMachineFunction().getMMI().getTypeIDFor(GV);
4767 Res = DAG.getConstant(TypeID, MVT::i32);
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004768 setValue(&I, Res);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004769 return 0;
4770 }
4771
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004772 case Intrinsic::eh_return_i32:
4773 case Intrinsic::eh_return_i64:
Chris Lattner512063d2010-04-05 06:19:28 +00004774 DAG.getMachineFunction().getMMI().setCallsEHReturn(true);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004775 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, sdl,
Chris Lattner512063d2010-04-05 06:19:28 +00004776 MVT::Other,
4777 getControlRoot(),
Gabor Greif0635f352010-06-25 09:38:13 +00004778 getValue(I.getArgOperand(0)),
4779 getValue(I.getArgOperand(1))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004780 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004781 case Intrinsic::eh_unwind_init:
Chris Lattner512063d2010-04-05 06:19:28 +00004782 DAG.getMachineFunction().getMMI().setCallsUnwindInit(true);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004783 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004784 case Intrinsic::eh_dwarf_cfa: {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004785 SDValue CfaArg = DAG.getSExtOrTrunc(getValue(I.getArgOperand(0)), sdl,
Bill Wendlingba54bca2013-06-19 21:36:55 +00004786 TLI->getPointerTy());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004787 SDValue Offset = DAG.getNode(ISD::ADD, sdl,
Tom Stellardedd08f72013-08-26 15:06:10 +00004788 CfaArg.getValueType(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004789 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, sdl,
Tom Stellardedd08f72013-08-26 15:06:10 +00004790 CfaArg.getValueType()),
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004791 CfaArg);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004792 SDValue FA = DAG.getNode(ISD::FRAMEADDR, sdl,
Bill Wendlingba54bca2013-06-19 21:36:55 +00004793 TLI->getPointerTy(),
4794 DAG.getConstant(0, TLI->getPointerTy()));
Tom Stellardedd08f72013-08-26 15:06:10 +00004795 setValue(&I, DAG.getNode(ISD::ADD, sdl, FA.getValueType(),
Bill Wendling4533cac2010-01-28 21:51:40 +00004796 FA, Offset));
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004797 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004798 }
Jim Grosbachca752c92010-01-28 01:45:32 +00004799 case Intrinsic::eh_sjlj_callsite: {
Chris Lattner512063d2010-04-05 06:19:28 +00004800 MachineModuleInfo &MMI = DAG.getMachineFunction().getMMI();
Gabor Greif0635f352010-06-25 09:38:13 +00004801 ConstantInt *CI = dyn_cast<ConstantInt>(I.getArgOperand(0));
Jim Grosbachca752c92010-01-28 01:45:32 +00004802 assert(CI && "Non-constant call site value in eh.sjlj.callsite!");
Chris Lattner512063d2010-04-05 06:19:28 +00004803 assert(MMI.getCurrentCallSite() == 0 && "Overlapping call sites!");
Jim Grosbachca752c92010-01-28 01:45:32 +00004804
Chris Lattner512063d2010-04-05 06:19:28 +00004805 MMI.setCurrentCallSite(CI->getZExtValue());
Jim Grosbachca752c92010-01-28 01:45:32 +00004806 return 0;
4807 }
Bill Wendling6ef94172011-09-28 03:36:43 +00004808 case Intrinsic::eh_sjlj_functioncontext: {
4809 // Get and store the index of the function context.
4810 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bill Wendlingadbf7b22011-09-28 03:52:41 +00004811 AllocaInst *FnCtx =
4812 cast<AllocaInst>(I.getArgOperand(0)->stripPointerCasts());
Bill Wendling6ef94172011-09-28 03:36:43 +00004813 int FI = FuncInfo.StaticAllocaMap[FnCtx];
4814 MFI->setFunctionContextIndex(FI);
4815 return 0;
4816 }
Jim Grosbach23ff7cf2010-05-26 20:22:18 +00004817 case Intrinsic::eh_sjlj_setjmp: {
Bill Wendlingce370cf2011-10-07 21:25:38 +00004818 SDValue Ops[2];
4819 Ops[0] = getRoot();
4820 Ops[1] = getValue(I.getArgOperand(0));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004821 SDValue Op = DAG.getNode(ISD::EH_SJLJ_SETJMP, sdl,
Bill Wendlingce370cf2011-10-07 21:25:38 +00004822 DAG.getVTList(MVT::i32, MVT::Other),
4823 Ops, 2);
4824 setValue(&I, Op.getValue(0));
4825 DAG.setRoot(Op.getValue(1));
Jim Grosbach23ff7cf2010-05-26 20:22:18 +00004826 return 0;
4827 }
Jim Grosbach5eb19512010-05-22 01:06:18 +00004828 case Intrinsic::eh_sjlj_longjmp: {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004829 DAG.setRoot(DAG.getNode(ISD::EH_SJLJ_LONGJMP, sdl, MVT::Other,
Jim Grosbache4ad3872010-10-19 23:27:08 +00004830 getRoot(), getValue(I.getArgOperand(0))));
4831 return 0;
4832 }
Jim Grosbachca752c92010-01-28 01:45:32 +00004833
Dale Johannesen0488fb62010-09-30 23:57:10 +00004834 case Intrinsic::x86_mmx_pslli_w:
4835 case Intrinsic::x86_mmx_pslli_d:
4836 case Intrinsic::x86_mmx_pslli_q:
4837 case Intrinsic::x86_mmx_psrli_w:
4838 case Intrinsic::x86_mmx_psrli_d:
4839 case Intrinsic::x86_mmx_psrli_q:
4840 case Intrinsic::x86_mmx_psrai_w:
4841 case Intrinsic::x86_mmx_psrai_d: {
4842 SDValue ShAmt = getValue(I.getArgOperand(1));
4843 if (isa<ConstantSDNode>(ShAmt)) {
4844 visitTargetIntrinsic(I, Intrinsic);
4845 return 0;
4846 }
4847 unsigned NewIntrinsic = 0;
4848 EVT ShAmtVT = MVT::v2i32;
4849 switch (Intrinsic) {
4850 case Intrinsic::x86_mmx_pslli_w:
4851 NewIntrinsic = Intrinsic::x86_mmx_psll_w;
4852 break;
4853 case Intrinsic::x86_mmx_pslli_d:
4854 NewIntrinsic = Intrinsic::x86_mmx_psll_d;
4855 break;
4856 case Intrinsic::x86_mmx_pslli_q:
4857 NewIntrinsic = Intrinsic::x86_mmx_psll_q;
4858 break;
4859 case Intrinsic::x86_mmx_psrli_w:
4860 NewIntrinsic = Intrinsic::x86_mmx_psrl_w;
4861 break;
4862 case Intrinsic::x86_mmx_psrli_d:
4863 NewIntrinsic = Intrinsic::x86_mmx_psrl_d;
4864 break;
4865 case Intrinsic::x86_mmx_psrli_q:
4866 NewIntrinsic = Intrinsic::x86_mmx_psrl_q;
4867 break;
4868 case Intrinsic::x86_mmx_psrai_w:
4869 NewIntrinsic = Intrinsic::x86_mmx_psra_w;
4870 break;
4871 case Intrinsic::x86_mmx_psrai_d:
4872 NewIntrinsic = Intrinsic::x86_mmx_psra_d;
4873 break;
4874 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
4875 }
4876
4877 // The vector shift intrinsics with scalars uses 32b shift amounts but
4878 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
4879 // to be zero.
4880 // We must do this early because v2i32 is not a legal type.
Dale Johannesen0488fb62010-09-30 23:57:10 +00004881 SDValue ShOps[2];
4882 ShOps[0] = ShAmt;
4883 ShOps[1] = DAG.getConstant(0, MVT::i32);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004884 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, sdl, ShAmtVT, &ShOps[0], 2);
Bill Wendlingba54bca2013-06-19 21:36:55 +00004885 EVT DestVT = TLI->getValueType(I.getType());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004886 ShAmt = DAG.getNode(ISD::BITCAST, sdl, DestVT, ShAmt);
4887 Res = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, sdl, DestVT,
Dale Johannesen0488fb62010-09-30 23:57:10 +00004888 DAG.getConstant(NewIntrinsic, MVT::i32),
4889 getValue(I.getArgOperand(0)), ShAmt);
4890 setValue(&I, Res);
4891 return 0;
4892 }
Pete Cooperd18134f2012-02-24 03:51:49 +00004893 case Intrinsic::x86_avx_vinsertf128_pd_256:
4894 case Intrinsic::x86_avx_vinsertf128_ps_256:
Craig Topperb45c9692012-04-07 22:32:29 +00004895 case Intrinsic::x86_avx_vinsertf128_si_256:
4896 case Intrinsic::x86_avx2_vinserti128: {
Bill Wendlingba54bca2013-06-19 21:36:55 +00004897 EVT DestVT = TLI->getValueType(I.getType());
4898 EVT ElVT = TLI->getValueType(I.getArgOperand(1)->getType());
Pete Cooperd18134f2012-02-24 03:51:49 +00004899 uint64_t Idx = (cast<ConstantInt>(I.getArgOperand(2))->getZExtValue() & 1) *
4900 ElVT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004901 Res = DAG.getNode(ISD::INSERT_SUBVECTOR, sdl, DestVT,
Pete Cooperd18134f2012-02-24 03:51:49 +00004902 getValue(I.getArgOperand(0)),
4903 getValue(I.getArgOperand(1)),
Tom Stellard425b76c2013-08-05 22:22:01 +00004904 DAG.getConstant(Idx, TLI->getVectorIdxTy()));
Craig Topperf6dc7922012-09-05 05:48:09 +00004905 setValue(&I, Res);
4906 return 0;
4907 }
4908 case Intrinsic::x86_avx_vextractf128_pd_256:
4909 case Intrinsic::x86_avx_vextractf128_ps_256:
4910 case Intrinsic::x86_avx_vextractf128_si_256:
4911 case Intrinsic::x86_avx2_vextracti128: {
Bill Wendlingba54bca2013-06-19 21:36:55 +00004912 EVT DestVT = TLI->getValueType(I.getType());
Craig Topperf6dc7922012-09-05 05:48:09 +00004913 uint64_t Idx = (cast<ConstantInt>(I.getArgOperand(1))->getZExtValue() & 1) *
4914 DestVT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004915 Res = DAG.getNode(ISD::EXTRACT_SUBVECTOR, sdl, DestVT,
Craig Topperf6dc7922012-09-05 05:48:09 +00004916 getValue(I.getArgOperand(0)),
Tom Stellard425b76c2013-08-05 22:22:01 +00004917 DAG.getConstant(Idx, TLI->getVectorIdxTy()));
Pete Cooperd18134f2012-02-24 03:51:49 +00004918 setValue(&I, Res);
4919 return 0;
4920 }
Mon P Wang77cdf302008-11-10 20:54:11 +00004921 case Intrinsic::convertff:
4922 case Intrinsic::convertfsi:
4923 case Intrinsic::convertfui:
4924 case Intrinsic::convertsif:
4925 case Intrinsic::convertuif:
4926 case Intrinsic::convertss:
4927 case Intrinsic::convertsu:
4928 case Intrinsic::convertus:
4929 case Intrinsic::convertuu: {
4930 ISD::CvtCode Code = ISD::CVT_INVALID;
4931 switch (Intrinsic) {
Craig Topperc42e6402012-04-11 04:34:11 +00004932 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Mon P Wang77cdf302008-11-10 20:54:11 +00004933 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4934 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4935 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4936 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4937 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4938 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4939 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4940 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4941 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4942 }
Bill Wendlingba54bca2013-06-19 21:36:55 +00004943 EVT DestVT = TLI->getValueType(I.getType());
Gabor Greif0635f352010-06-25 09:38:13 +00004944 const Value *Op1 = I.getArgOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004945 Res = DAG.getConvertRndSat(DestVT, sdl, getValue(Op1),
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004946 DAG.getValueType(DestVT),
4947 DAG.getValueType(getValue(Op1).getValueType()),
Gabor Greif0635f352010-06-25 09:38:13 +00004948 getValue(I.getArgOperand(1)),
4949 getValue(I.getArgOperand(2)),
Bill Wendlingd0283fa2009-12-22 00:40:51 +00004950 Code);
4951 setValue(&I, Res);
Mon P Wang77cdf302008-11-10 20:54:11 +00004952 return 0;
4953 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004954 case Intrinsic::powi:
Andrew Trickac6d9be2013-05-25 02:42:55 +00004955 setValue(&I, ExpandPowI(sdl, getValue(I.getArgOperand(0)),
Gabor Greif0635f352010-06-25 09:38:13 +00004956 getValue(I.getArgOperand(1)), DAG));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004957 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004958 case Intrinsic::log:
Bill Wendlingba54bca2013-06-19 21:36:55 +00004959 setValue(&I, expandLog(sdl, getValue(I.getArgOperand(0)), DAG, *TLI));
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004960 return 0;
4961 case Intrinsic::log2:
Bill Wendlingba54bca2013-06-19 21:36:55 +00004962 setValue(&I, expandLog2(sdl, getValue(I.getArgOperand(0)), DAG, *TLI));
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004963 return 0;
4964 case Intrinsic::log10:
Bill Wendlingba54bca2013-06-19 21:36:55 +00004965 setValue(&I, expandLog10(sdl, getValue(I.getArgOperand(0)), DAG, *TLI));
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004966 return 0;
4967 case Intrinsic::exp:
Bill Wendlingba54bca2013-06-19 21:36:55 +00004968 setValue(&I, expandExp(sdl, getValue(I.getArgOperand(0)), DAG, *TLI));
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004969 return 0;
4970 case Intrinsic::exp2:
Bill Wendlingba54bca2013-06-19 21:36:55 +00004971 setValue(&I, expandExp2(sdl, getValue(I.getArgOperand(0)), DAG, *TLI));
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004972 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004973 case Intrinsic::pow:
Andrew Trickac6d9be2013-05-25 02:42:55 +00004974 setValue(&I, expandPow(sdl, getValue(I.getArgOperand(0)),
Bill Wendlingba54bca2013-06-19 21:36:55 +00004975 getValue(I.getArgOperand(1)), DAG, *TLI));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004976 return 0;
Craig Topper9bd4dd72012-11-16 07:48:23 +00004977 case Intrinsic::sqrt:
Peter Collingbourneb34d3aa2012-05-28 21:48:37 +00004978 case Intrinsic::fabs:
Craig Topper9bd4dd72012-11-16 07:48:23 +00004979 case Intrinsic::sin:
4980 case Intrinsic::cos:
Dan Gohman27db99f2012-07-26 17:43:27 +00004981 case Intrinsic::floor:
Craig Topper49010472012-11-15 06:51:10 +00004982 case Intrinsic::ceil:
Craig Topper49010472012-11-15 06:51:10 +00004983 case Intrinsic::trunc:
Craig Topper49010472012-11-15 06:51:10 +00004984 case Intrinsic::rint:
Hal Finkel41418d12013-08-07 22:49:12 +00004985 case Intrinsic::nearbyint:
4986 case Intrinsic::round: {
Craig Topper9bd4dd72012-11-16 07:48:23 +00004987 unsigned Opcode;
4988 switch (Intrinsic) {
4989 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
4990 case Intrinsic::sqrt: Opcode = ISD::FSQRT; break;
4991 case Intrinsic::fabs: Opcode = ISD::FABS; break;
4992 case Intrinsic::sin: Opcode = ISD::FSIN; break;
4993 case Intrinsic::cos: Opcode = ISD::FCOS; break;
4994 case Intrinsic::floor: Opcode = ISD::FFLOOR; break;
4995 case Intrinsic::ceil: Opcode = ISD::FCEIL; break;
4996 case Intrinsic::trunc: Opcode = ISD::FTRUNC; break;
4997 case Intrinsic::rint: Opcode = ISD::FRINT; break;
4998 case Intrinsic::nearbyint: Opcode = ISD::FNEARBYINT; break;
Hal Finkel41418d12013-08-07 22:49:12 +00004999 case Intrinsic::round: Opcode = ISD::FROUND; break;
Craig Topper9bd4dd72012-11-16 07:48:23 +00005000 }
5001
Andrew Trickac6d9be2013-05-25 02:42:55 +00005002 setValue(&I, DAG.getNode(Opcode, sdl,
Craig Topper49010472012-11-15 06:51:10 +00005003 getValue(I.getArgOperand(0)).getValueType(),
5004 getValue(I.getArgOperand(0))));
5005 return 0;
Craig Topper9bd4dd72012-11-16 07:48:23 +00005006 }
Hal Finkel66d1fa62013-08-19 23:35:46 +00005007 case Intrinsic::copysign:
5008 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, sdl,
5009 getValue(I.getArgOperand(0)).getValueType(),
5010 getValue(I.getArgOperand(0)),
5011 getValue(I.getArgOperand(1))));
5012 return 0;
Cameron Zwarich33390842011-07-08 21:39:21 +00005013 case Intrinsic::fma:
Andrew Trickac6d9be2013-05-25 02:42:55 +00005014 setValue(&I, DAG.getNode(ISD::FMA, sdl,
Cameron Zwarich33390842011-07-08 21:39:21 +00005015 getValue(I.getArgOperand(0)).getValueType(),
5016 getValue(I.getArgOperand(0)),
5017 getValue(I.getArgOperand(1)),
5018 getValue(I.getArgOperand(2))));
5019 return 0;
Lang Hames5afba6f2012-06-05 19:07:46 +00005020 case Intrinsic::fmuladd: {
Bill Wendlingba54bca2013-06-19 21:36:55 +00005021 EVT VT = TLI->getValueType(I.getType());
Lang Hamese0231412012-06-22 01:09:09 +00005022 if (TM.Options.AllowFPOpFusion != FPOpFusion::Strict &&
Stephen Line54885a2013-07-09 18:16:56 +00005023 TLI->isFMAFasterThanFMulAndFAdd(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005024 setValue(&I, DAG.getNode(ISD::FMA, sdl,
Lang Hames5afba6f2012-06-05 19:07:46 +00005025 getValue(I.getArgOperand(0)).getValueType(),
5026 getValue(I.getArgOperand(0)),
5027 getValue(I.getArgOperand(1)),
5028 getValue(I.getArgOperand(2))));
5029 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005030 SDValue Mul = DAG.getNode(ISD::FMUL, sdl,
Lang Hames5afba6f2012-06-05 19:07:46 +00005031 getValue(I.getArgOperand(0)).getValueType(),
5032 getValue(I.getArgOperand(0)),
5033 getValue(I.getArgOperand(1)));
Andrew Trickac6d9be2013-05-25 02:42:55 +00005034 SDValue Add = DAG.getNode(ISD::FADD, sdl,
Lang Hames5afba6f2012-06-05 19:07:46 +00005035 getValue(I.getArgOperand(0)).getValueType(),
5036 Mul,
5037 getValue(I.getArgOperand(2)));
5038 setValue(&I, Add);
5039 }
5040 return 0;
5041 }
Anton Korobeynikovbe5b0322010-03-14 18:42:15 +00005042 case Intrinsic::convert_to_fp16:
Andrew Trickac6d9be2013-05-25 02:42:55 +00005043 setValue(&I, DAG.getNode(ISD::FP32_TO_FP16, sdl,
Gabor Greif0635f352010-06-25 09:38:13 +00005044 MVT::i16, getValue(I.getArgOperand(0))));
Anton Korobeynikovbe5b0322010-03-14 18:42:15 +00005045 return 0;
5046 case Intrinsic::convert_from_fp16:
Andrew Trickac6d9be2013-05-25 02:42:55 +00005047 setValue(&I, DAG.getNode(ISD::FP16_TO_FP32, sdl,
Gabor Greif0635f352010-06-25 09:38:13 +00005048 MVT::f32, getValue(I.getArgOperand(0))));
Anton Korobeynikovbe5b0322010-03-14 18:42:15 +00005049 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005050 case Intrinsic::pcmarker: {
Gabor Greif0635f352010-06-25 09:38:13 +00005051 SDValue Tmp = getValue(I.getArgOperand(0));
Andrew Trickac6d9be2013-05-25 02:42:55 +00005052 DAG.setRoot(DAG.getNode(ISD::PCMARKER, sdl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005053 return 0;
5054 }
5055 case Intrinsic::readcyclecounter: {
5056 SDValue Op = getRoot();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005057 Res = DAG.getNode(ISD::READCYCLECOUNTER, sdl,
Bill Wendlingd0283fa2009-12-22 00:40:51 +00005058 DAG.getVTList(MVT::i64, MVT::Other),
5059 &Op, 1);
5060 setValue(&I, Res);
5061 DAG.setRoot(Res.getValue(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005062 return 0;
5063 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005064 case Intrinsic::bswap:
Andrew Trickac6d9be2013-05-25 02:42:55 +00005065 setValue(&I, DAG.getNode(ISD::BSWAP, sdl,
Gabor Greif0635f352010-06-25 09:38:13 +00005066 getValue(I.getArgOperand(0)).getValueType(),
5067 getValue(I.getArgOperand(0))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005068 return 0;
5069 case Intrinsic::cttz: {
Gabor Greif0635f352010-06-25 09:38:13 +00005070 SDValue Arg = getValue(I.getArgOperand(0));
Chandler Carruth63974b22011-12-13 01:56:10 +00005071 ConstantInt *CI = cast<ConstantInt>(I.getArgOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00005072 EVT Ty = Arg.getValueType();
Chandler Carruth63974b22011-12-13 01:56:10 +00005073 setValue(&I, DAG.getNode(CI->isZero() ? ISD::CTTZ : ISD::CTTZ_ZERO_UNDEF,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005074 sdl, Ty, Arg));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005075 return 0;
5076 }
5077 case Intrinsic::ctlz: {
Gabor Greif0635f352010-06-25 09:38:13 +00005078 SDValue Arg = getValue(I.getArgOperand(0));
Chandler Carruth63974b22011-12-13 01:56:10 +00005079 ConstantInt *CI = cast<ConstantInt>(I.getArgOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00005080 EVT Ty = Arg.getValueType();
Chandler Carruth63974b22011-12-13 01:56:10 +00005081 setValue(&I, DAG.getNode(CI->isZero() ? ISD::CTLZ : ISD::CTLZ_ZERO_UNDEF,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005082 sdl, Ty, Arg));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005083 return 0;
5084 }
5085 case Intrinsic::ctpop: {
Gabor Greif0635f352010-06-25 09:38:13 +00005086 SDValue Arg = getValue(I.getArgOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00005087 EVT Ty = Arg.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005088 setValue(&I, DAG.getNode(ISD::CTPOP, sdl, Ty, Arg));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005089 return 0;
5090 }
5091 case Intrinsic::stacksave: {
5092 SDValue Op = getRoot();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005093 Res = DAG.getNode(ISD::STACKSAVE, sdl,
Bill Wendlingba54bca2013-06-19 21:36:55 +00005094 DAG.getVTList(TLI->getPointerTy(), MVT::Other), &Op, 1);
Bill Wendlingd0283fa2009-12-22 00:40:51 +00005095 setValue(&I, Res);
5096 DAG.setRoot(Res.getValue(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005097 return 0;
5098 }
5099 case Intrinsic::stackrestore: {
Gabor Greif0635f352010-06-25 09:38:13 +00005100 Res = getValue(I.getArgOperand(0));
Andrew Trickac6d9be2013-05-25 02:42:55 +00005101 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, sdl, MVT::Other, getRoot(), Res));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005102 return 0;
5103 }
Bill Wendling57344502008-11-18 11:01:33 +00005104 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00005105 // Emit code into the DAG to store the stack guard onto the stack.
5106 MachineFunction &MF = DAG.getMachineFunction();
5107 MachineFrameInfo *MFI = MF.getFrameInfo();
Bill Wendlingba54bca2013-06-19 21:36:55 +00005108 EVT PtrTy = TLI->getPointerTy();
Bill Wendlingb2a42982008-11-06 02:29:10 +00005109
Gabor Greif0635f352010-06-25 09:38:13 +00005110 SDValue Src = getValue(I.getArgOperand(0)); // The guard's value.
5111 AllocaInst *Slot = cast<AllocaInst>(I.getArgOperand(1));
Bill Wendlingb2a42982008-11-06 02:29:10 +00005112
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00005113 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00005114 MFI->setStackProtectorIndex(FI);
5115
5116 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
5117
5118 // Store the stack protector onto the stack.
Andrew Trickac6d9be2013-05-25 02:42:55 +00005119 Res = DAG.getStore(getRoot(), sdl, Src, FIN,
Chris Lattner84bd98a2010-09-21 18:58:22 +00005120 MachinePointerInfo::getFixedStack(FI),
5121 true, false, 0);
Bill Wendlingd0283fa2009-12-22 00:40:51 +00005122 setValue(&I, Res);
5123 DAG.setRoot(Res);
Bill Wendlingb2a42982008-11-06 02:29:10 +00005124 return 0;
5125 }
Eric Christopher7b5e6172009-10-27 00:52:25 +00005126 case Intrinsic::objectsize: {
5127 // If we don't know by now, we're never going to know.
Gabor Greif0635f352010-06-25 09:38:13 +00005128 ConstantInt *CI = dyn_cast<ConstantInt>(I.getArgOperand(1));
Eric Christopher7b5e6172009-10-27 00:52:25 +00005129
5130 assert(CI && "Non-constant type in __builtin_object_size?");
5131
Gabor Greif0635f352010-06-25 09:38:13 +00005132 SDValue Arg = getValue(I.getCalledValue());
Eric Christopher7e5d2ff2009-10-28 21:32:16 +00005133 EVT Ty = Arg.getValueType();
5134
Dan Gohmane368b462010-06-18 14:22:04 +00005135 if (CI->isZero())
Bill Wendlingd0283fa2009-12-22 00:40:51 +00005136 Res = DAG.getConstant(-1ULL, Ty);
Eric Christopher7b5e6172009-10-27 00:52:25 +00005137 else
Bill Wendlingd0283fa2009-12-22 00:40:51 +00005138 Res = DAG.getConstant(0, Ty);
5139
5140 setValue(&I, Res);
Eric Christopher7b5e6172009-10-27 00:52:25 +00005141 return 0;
5142 }
Justin Holewinskic2b7f5f2013-05-21 14:37:16 +00005143 case Intrinsic::annotation:
5144 case Intrinsic::ptr_annotation:
5145 // Drop the intrinsic, but forward the value
5146 setValue(&I, getValue(I.getOperand(0)));
5147 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005148 case Intrinsic::var_annotation:
5149 // Discard annotate attributes
5150 return 0;
5151
5152 case Intrinsic::init_trampoline: {
Gabor Greif0635f352010-06-25 09:38:13 +00005153 const Function *F = cast<Function>(I.getArgOperand(1)->stripPointerCasts());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005154
5155 SDValue Ops[6];
5156 Ops[0] = getRoot();
Gabor Greif0635f352010-06-25 09:38:13 +00005157 Ops[1] = getValue(I.getArgOperand(0));
5158 Ops[2] = getValue(I.getArgOperand(1));
5159 Ops[3] = getValue(I.getArgOperand(2));
5160 Ops[4] = DAG.getSrcValue(I.getArgOperand(0));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005161 Ops[5] = DAG.getSrcValue(F);
5162
Andrew Trickac6d9be2013-05-25 02:42:55 +00005163 Res = DAG.getNode(ISD::INIT_TRAMPOLINE, sdl, MVT::Other, Ops, 6);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005164
Duncan Sands4a544a72011-09-06 13:37:06 +00005165 DAG.setRoot(Res);
5166 return 0;
5167 }
5168 case Intrinsic::adjust_trampoline: {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005169 setValue(&I, DAG.getNode(ISD::ADJUST_TRAMPOLINE, sdl,
Bill Wendlingba54bca2013-06-19 21:36:55 +00005170 TLI->getPointerTy(),
Duncan Sands4a544a72011-09-06 13:37:06 +00005171 getValue(I.getArgOperand(0))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005172 return 0;
5173 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005174 case Intrinsic::gcroot:
5175 if (GFI) {
Bill Wendling95dd4422012-05-01 22:50:45 +00005176 const Value *Alloca = I.getArgOperand(0)->stripPointerCasts();
Gabor Greif0635f352010-06-25 09:38:13 +00005177 const Constant *TypeMap = cast<Constant>(I.getArgOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005178
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005179 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
5180 GFI->addStackRoot(FI->getIndex(), TypeMap);
5181 }
5182 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005183 case Intrinsic::gcread:
5184 case Intrinsic::gcwrite:
Torok Edwinc23197a2009-07-14 16:55:14 +00005185 llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!");
Bill Wendlingd0283fa2009-12-22 00:40:51 +00005186 case Intrinsic::flt_rounds:
Andrew Trickac6d9be2013-05-25 02:42:55 +00005187 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, sdl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005188 return 0;
Jakub Staszak9da99342011-07-06 18:22:43 +00005189
5190 case Intrinsic::expect: {
5191 // Just replace __builtin_expect(exp, c) with EXP.
5192 setValue(&I, getValue(I.getArgOperand(0)));
5193 return 0;
5194 }
5195
Shuxin Yang970755e2012-10-19 20:11:16 +00005196 case Intrinsic::debugtrap:
Evan Cheng4da0c7c2011-04-08 21:37:21 +00005197 case Intrinsic::trap: {
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005198 StringRef TrapFuncName = TM.Options.getTrapFunctionName();
Evan Cheng4da0c7c2011-04-08 21:37:21 +00005199 if (TrapFuncName.empty()) {
Stephen Lin155615d2013-07-08 00:37:03 +00005200 ISD::NodeType Op = (Intrinsic == Intrinsic::trap) ?
Shuxin Yang970755e2012-10-19 20:11:16 +00005201 ISD::TRAP : ISD::DEBUGTRAP;
Andrew Trickac6d9be2013-05-25 02:42:55 +00005202 DAG.setRoot(DAG.getNode(Op, sdl,MVT::Other, getRoot()));
Evan Cheng4da0c7c2011-04-08 21:37:21 +00005203 return 0;
5204 }
5205 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00005206 TargetLowering::
5207 CallLoweringInfo CLI(getRoot(), I.getType(),
Evan Cheng4da0c7c2011-04-08 21:37:21 +00005208 false, false, false, false, 0, CallingConv::C,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00005209 /*isTailCall=*/false,
5210 /*doesNotRet=*/false, /*isReturnValueUsed=*/true,
Bill Wendlingba54bca2013-06-19 21:36:55 +00005211 DAG.getExternalSymbol(TrapFuncName.data(),
5212 TLI->getPointerTy()),
Andrew Trickac6d9be2013-05-25 02:42:55 +00005213 Args, DAG, sdl);
Bill Wendlingba54bca2013-06-19 21:36:55 +00005214 std::pair<SDValue, SDValue> Result = TLI->LowerCallTo(CLI);
Evan Cheng4da0c7c2011-04-08 21:37:21 +00005215 DAG.setRoot(Result.second);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005216 return 0;
Evan Cheng4da0c7c2011-04-08 21:37:21 +00005217 }
Shuxin Yang970755e2012-10-19 20:11:16 +00005218
Bill Wendlingef375462008-11-21 02:38:44 +00005219 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00005220 case Intrinsic::sadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00005221 case Intrinsic::usub_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00005222 case Intrinsic::ssub_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00005223 case Intrinsic::umul_with_overflow:
Craig Topperc42e6402012-04-11 04:34:11 +00005224 case Intrinsic::smul_with_overflow: {
5225 ISD::NodeType Op;
5226 switch (Intrinsic) {
5227 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
5228 case Intrinsic::uadd_with_overflow: Op = ISD::UADDO; break;
5229 case Intrinsic::sadd_with_overflow: Op = ISD::SADDO; break;
5230 case Intrinsic::usub_with_overflow: Op = ISD::USUBO; break;
5231 case Intrinsic::ssub_with_overflow: Op = ISD::SSUBO; break;
5232 case Intrinsic::umul_with_overflow: Op = ISD::UMULO; break;
5233 case Intrinsic::smul_with_overflow: Op = ISD::SMULO; break;
5234 }
5235 SDValue Op1 = getValue(I.getArgOperand(0));
5236 SDValue Op2 = getValue(I.getArgOperand(1));
Bill Wendling7cdc3c82008-11-21 02:03:52 +00005237
Craig Topperc42e6402012-04-11 04:34:11 +00005238 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005239 setValue(&I, DAG.getNode(Op, sdl, VTs, Op1, Op2));
Craig Topperc42e6402012-04-11 04:34:11 +00005240 return 0;
5241 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005242 case Intrinsic::prefetch: {
Bruno Cardoso Lopes9a767332011-06-14 04:58:37 +00005243 SDValue Ops[5];
Dale Johannesen1de4aa92010-10-26 23:11:10 +00005244 unsigned rw = cast<ConstantInt>(I.getArgOperand(1))->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005245 Ops[0] = getRoot();
Gabor Greif0635f352010-06-25 09:38:13 +00005246 Ops[1] = getValue(I.getArgOperand(0));
5247 Ops[2] = getValue(I.getArgOperand(1));
5248 Ops[3] = getValue(I.getArgOperand(2));
Bruno Cardoso Lopes9a767332011-06-14 04:58:37 +00005249 Ops[4] = getValue(I.getArgOperand(3));
Andrew Trickac6d9be2013-05-25 02:42:55 +00005250 DAG.setRoot(DAG.getMemIntrinsicNode(ISD::PREFETCH, sdl,
Dale Johannesen1de4aa92010-10-26 23:11:10 +00005251 DAG.getVTList(MVT::Other),
Bruno Cardoso Lopes9a767332011-06-14 04:58:37 +00005252 &Ops[0], 5,
Dale Johannesen1de4aa92010-10-26 23:11:10 +00005253 EVT::getIntegerVT(*Context, 8),
5254 MachinePointerInfo(I.getArgOperand(0)),
5255 0, /* align */
5256 false, /* volatile */
5257 rw==0, /* read */
5258 rw==1)); /* write */
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005259 return 0;
5260 }
Duncan Sandsf07c9492009-11-10 09:08:09 +00005261 case Intrinsic::lifetime_start:
Nadav Rotemc05d3062012-09-06 09:17:37 +00005262 case Intrinsic::lifetime_end: {
Nadav Rotemc05d3062012-09-06 09:17:37 +00005263 bool IsStart = (Intrinsic == Intrinsic::lifetime_start);
Nadav Rotem9a2ae002012-09-10 08:43:23 +00005264 // Stack coloring is not enabled in O0, discard region information.
5265 if (TM.getOptLevel() == CodeGenOpt::None)
5266 return 0;
Nadav Rotemc05d3062012-09-06 09:17:37 +00005267
Nadav Rotem9a2ae002012-09-10 08:43:23 +00005268 SmallVector<Value *, 4> Allocas;
5269 GetUnderlyingObjects(I.getArgOperand(1), Allocas, TD);
5270
Craig Topperf22fd3f2013-07-03 05:11:49 +00005271 for (SmallVectorImpl<Value*>::iterator Object = Allocas.begin(),
5272 E = Allocas.end(); Object != E; ++Object) {
Nadav Rotem9a2ae002012-09-10 08:43:23 +00005273 AllocaInst *LifetimeObject = dyn_cast_or_null<AllocaInst>(*Object);
5274
5275 // Could not find an Alloca.
5276 if (!LifetimeObject)
5277 continue;
5278
5279 int FI = FuncInfo.StaticAllocaMap[LifetimeObject];
5280
5281 SDValue Ops[2];
5282 Ops[0] = getRoot();
Bill Wendlingba54bca2013-06-19 21:36:55 +00005283 Ops[1] = DAG.getFrameIndex(FI, TLI->getPointerTy(), true);
Nadav Rotem9a2ae002012-09-10 08:43:23 +00005284 unsigned Opcode = (IsStart ? ISD::LIFETIME_START : ISD::LIFETIME_END);
5285
Andrew Trickac6d9be2013-05-25 02:42:55 +00005286 Res = DAG.getNode(Opcode, sdl, MVT::Other, Ops, 2);
Nadav Rotem9a2ae002012-09-10 08:43:23 +00005287 DAG.setRoot(Res);
5288 }
Nadav Rotem5882e562013-02-01 19:25:23 +00005289 return 0;
Nadav Rotemc05d3062012-09-06 09:17:37 +00005290 }
5291 case Intrinsic::invariant_start:
Duncan Sandsf07c9492009-11-10 09:08:09 +00005292 // Discard region information.
Bill Wendlingba54bca2013-06-19 21:36:55 +00005293 setValue(&I, DAG.getUNDEF(TLI->getPointerTy()));
Duncan Sandsf07c9492009-11-10 09:08:09 +00005294 return 0;
5295 case Intrinsic::invariant_end:
Duncan Sandsf07c9492009-11-10 09:08:09 +00005296 // Discard region information.
5297 return 0;
Michael Gottesman657484f2013-08-20 07:00:16 +00005298 case Intrinsic::stackprotectorcheck: {
5299 // Do not actually emit anything for this basic block. Instead we initialize
5300 // the stack protector descriptor and export the guard variable so we can
5301 // access it in FinishBasicBlock.
5302 const BasicBlock *BB = I.getParent();
5303 SPDescriptor.initialize(BB, FuncInfo.MBBMap[BB], I);
5304 ExportFromCurrentBlock(SPDescriptor.getGuard());
5305
5306 // Flush our exports since we are going to process a terminator.
5307 (void)getControlRoot();
5308 return 0;
5309 }
Nuno Lopes85b40892012-06-28 22:30:12 +00005310 case Intrinsic::donothing:
5311 // ignore
5312 return 0;
Andrew Trick2343e3b2013-10-31 17:18:24 +00005313 case Intrinsic::experimental_stackmap: {
5314 visitStackmap(I);
5315 return 0;
5316 }
5317 case Intrinsic::experimental_patchpoint_void:
5318 case Intrinsic::experimental_patchpoint_i64: {
5319 visitPatchpoint(I);
5320 return 0;
5321 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005322 }
5323}
5324
Dan Gohman46510a72010-04-15 01:51:59 +00005325void SelectionDAGBuilder::LowerCallTo(ImmutableCallSite CS, SDValue Callee,
Dan Gohman2048b852009-11-23 18:04:58 +00005326 bool isTailCall,
5327 MachineBasicBlock *LandingPad) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00005328 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
5329 FunctionType *FTy = cast<FunctionType>(PT->getElementType());
5330 Type *RetTy = FTy->getReturnType();
Chris Lattner512063d2010-04-05 06:19:28 +00005331 MachineModuleInfo &MMI = DAG.getMachineFunction().getMMI();
Chris Lattner16112732010-03-14 01:41:15 +00005332 MCSymbol *BeginLabel = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005333
5334 TargetLowering::ArgListTy Args;
5335 TargetLowering::ArgListEntry Entry;
5336 Args.reserve(CS.arg_size());
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005337
5338 // Check whether the function can return without sret-demotion.
Dan Gohman84023e02010-07-10 09:00:22 +00005339 SmallVector<ISD::OutputArg, 4> Outs;
Bill Wendlingba54bca2013-06-19 21:36:55 +00005340 const TargetLowering *TLI = TM.getTargetLowering();
5341 GetReturnInfo(RetTy, CS.getAttributes(), Outs, *TLI);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005342
Bill Wendlingba54bca2013-06-19 21:36:55 +00005343 bool CanLowerReturn = TLI->CanLowerReturn(CS.getCallingConv(),
5344 DAG.getMachineFunction(),
5345 FTy->isVarArg(), Outs,
5346 FTy->getContext());
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005347
5348 SDValue DemoteStackSlot;
Chris Lattnerecf42c42010-09-21 16:36:31 +00005349 int DemoteStackIdx = -100;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005350
5351 if (!CanLowerReturn) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00005352 uint64_t TySize = TLI->getDataLayout()->getTypeAllocSize(
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005353 FTy->getReturnType());
Bill Wendlingba54bca2013-06-19 21:36:55 +00005354 unsigned Align = TLI->getDataLayout()->getPrefTypeAlignment(
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005355 FTy->getReturnType());
5356 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattnerecf42c42010-09-21 16:36:31 +00005357 DemoteStackIdx = MF.getFrameInfo()->CreateStackObject(TySize, Align, false);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00005358 Type *StackSlotPtrType = PointerType::getUnqual(FTy->getReturnType());
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005359
Bill Wendlingba54bca2013-06-19 21:36:55 +00005360 DemoteStackSlot = DAG.getFrameIndex(DemoteStackIdx, TLI->getPointerTy());
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005361 Entry.Node = DemoteStackSlot;
5362 Entry.Ty = StackSlotPtrType;
5363 Entry.isSExt = false;
5364 Entry.isZExt = false;
5365 Entry.isInReg = false;
5366 Entry.isSRet = true;
5367 Entry.isNest = false;
5368 Entry.isByVal = false;
Stephen Lin456ca042013-04-20 05:14:40 +00005369 Entry.isReturned = false;
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005370 Entry.Alignment = Align;
5371 Args.push_back(Entry);
5372 RetTy = Type::getVoidTy(FTy->getContext());
5373 }
5374
Dan Gohman46510a72010-04-15 01:51:59 +00005375 for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005376 i != e; ++i) {
Rafael Espindola3fa82832011-05-13 15:18:06 +00005377 const Value *V = *i;
5378
5379 // Skip empty types
5380 if (V->getType()->isEmptyTy())
5381 continue;
5382
5383 SDValue ArgNode = getValue(V);
5384 Entry.Node = ArgNode; Entry.Ty = V->getType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005385
Andrew Trick2343e3b2013-10-31 17:18:24 +00005386 // Skip the first return-type Attribute to get to params.
5387 Entry.setAttributes(&CS, i - CS.arg_begin() + 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005388 Args.push_back(Entry);
5389 }
5390
Chris Lattner512063d2010-04-05 06:19:28 +00005391 if (LandingPad) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005392 // Insert a label before the invoke call to mark the try range. This can be
5393 // used to detect deletion of the invoke via the MachineModuleInfo.
Chris Lattner512063d2010-04-05 06:19:28 +00005394 BeginLabel = MMI.getContext().CreateTempSymbol();
Jim Grosbach1b747ad2009-08-11 00:09:57 +00005395
Jim Grosbachca752c92010-01-28 01:45:32 +00005396 // For SjLj, keep track of which landing pads go with which invokes
5397 // so as to maintain the ordering of pads in the LSDA.
Chris Lattner512063d2010-04-05 06:19:28 +00005398 unsigned CallSiteIndex = MMI.getCurrentCallSite();
Jim Grosbachca752c92010-01-28 01:45:32 +00005399 if (CallSiteIndex) {
Chris Lattner512063d2010-04-05 06:19:28 +00005400 MMI.setCallSiteBeginLabel(BeginLabel, CallSiteIndex);
Bill Wendling30e67402011-10-05 22:24:35 +00005401 LPadToCallSiteMap[LandingPad].push_back(CallSiteIndex);
Bill Wendlinga8512ed2011-10-04 22:00:35 +00005402
Jim Grosbachca752c92010-01-28 01:45:32 +00005403 // Now that the call site is handled, stop tracking it.
Chris Lattner512063d2010-04-05 06:19:28 +00005404 MMI.setCurrentCallSite(0);
Jim Grosbachca752c92010-01-28 01:45:32 +00005405 }
5406
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005407 // Both PendingLoads and PendingExports must be flushed here;
5408 // this call might not return.
5409 (void)getRoot();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005410 DAG.setRoot(DAG.getEHLabel(getCurSDLoc(), getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005411 }
5412
Dan Gohman98ca4f22009-08-05 01:29:28 +00005413 // Check if target-independent constraints permit a tail call here.
Bill Wendlingba54bca2013-06-19 21:36:55 +00005414 // Target-dependent constraints are checked within TLI->LowerCallTo.
5415 if (isTailCall && !isInTailCallPosition(CS, *TLI))
Dan Gohman98ca4f22009-08-05 01:29:28 +00005416 isTailCall = false;
5417
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00005418 TargetLowering::
5419 CallLoweringInfo CLI(getRoot(), RetTy, FTy, isTailCall, Callee, Args, DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005420 getCurSDLoc(), CS);
Bill Wendlingba54bca2013-06-19 21:36:55 +00005421 std::pair<SDValue,SDValue> Result = TLI->LowerCallTo(CLI);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005422 assert((isTailCall || Result.second.getNode()) &&
5423 "Non-null chain expected with non-tail call!");
5424 assert((Result.second.getNode() || !Result.first.getNode()) &&
5425 "Null value expected with tail call!");
Bill Wendlinge80ae832009-12-22 00:50:32 +00005426 if (Result.first.getNode()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005427 setValue(CS.getInstruction(), Result.first);
Bill Wendlinge80ae832009-12-22 00:50:32 +00005428 } else if (!CanLowerReturn && Result.second.getNode()) {
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005429 // The instruction result is the result of loading from the
5430 // hidden sret parameter.
5431 SmallVector<EVT, 1> PVTs;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00005432 Type *PtrRetTy = PointerType::getUnqual(FTy->getReturnType());
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005433
Bill Wendlingba54bca2013-06-19 21:36:55 +00005434 ComputeValueVTs(*TLI, PtrRetTy, PVTs);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005435 assert(PVTs.size() == 1 && "Pointers should fit in one register");
5436 EVT PtrVT = PVTs[0];
Eli Friedman2db0e9e2012-05-25 00:09:29 +00005437
5438 SmallVector<EVT, 4> RetTys;
5439 SmallVector<uint64_t, 4> Offsets;
5440 RetTy = FTy->getReturnType();
Bill Wendlingba54bca2013-06-19 21:36:55 +00005441 ComputeValueVTs(*TLI, RetTy, RetTys, &Offsets);
Eli Friedman2db0e9e2012-05-25 00:09:29 +00005442
5443 unsigned NumValues = RetTys.size();
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005444 SmallVector<SDValue, 4> Values(NumValues);
5445 SmallVector<SDValue, 4> Chains(NumValues);
5446
5447 for (unsigned i = 0; i < NumValues; ++i) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005448 SDValue Add = DAG.getNode(ISD::ADD, getCurSDLoc(), PtrVT,
Bill Wendlinge80ae832009-12-22 00:50:32 +00005449 DemoteStackSlot,
5450 DAG.getConstant(Offsets[i], PtrVT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00005451 SDValue L = DAG.getLoad(RetTys[i], getCurSDLoc(), Result.second, Add,
Chris Lattnerecf42c42010-09-21 16:36:31 +00005452 MachinePointerInfo::getFixedStack(DemoteStackIdx, Offsets[i]),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005453 false, false, false, 1);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005454 Values[i] = L;
5455 Chains[i] = L.getValue(1);
5456 }
Bill Wendlinge80ae832009-12-22 00:50:32 +00005457
Andrew Trickac6d9be2013-05-25 02:42:55 +00005458 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurSDLoc(),
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005459 MVT::Other, &Chains[0], NumValues);
5460 PendingLoads.push_back(Chain);
Michael J. Spencere70c5262010-10-16 08:25:21 +00005461
Bill Wendling4533cac2010-01-28 21:51:40 +00005462 setValue(CS.getInstruction(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00005463 DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(),
Bill Wendling4533cac2010-01-28 21:51:40 +00005464 DAG.getVTList(&RetTys[0], RetTys.size()),
Eli Friedman2db0e9e2012-05-25 00:09:29 +00005465 &Values[0], Values.size()));
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00005466 }
Bill Wendlinge80ae832009-12-22 00:50:32 +00005467
Evan Cheng8380c032011-04-01 19:42:22 +00005468 if (!Result.second.getNode()) {
Andrew Trick2343e3b2013-10-31 17:18:24 +00005469 // As a special case, a null chain means that a tail call has been emitted
5470 // and the DAG root is already updated.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005471 HasTailCall = true;
Tim Northovere5a81a12013-07-06 12:58:45 +00005472
5473 // Since there's no actual continuation from this block, nothing can be
5474 // relying on us setting vregs for them.
5475 PendingExports.clear();
Evan Cheng8380c032011-04-01 19:42:22 +00005476 } else {
5477 DAG.setRoot(Result.second);
Evan Cheng8380c032011-04-01 19:42:22 +00005478 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005479
Chris Lattner512063d2010-04-05 06:19:28 +00005480 if (LandingPad) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005481 // Insert a label at the end of the invoke call to mark the try range. This
5482 // can be used to detect deletion of the invoke via the MachineModuleInfo.
Chris Lattner512063d2010-04-05 06:19:28 +00005483 MCSymbol *EndLabel = MMI.getContext().CreateTempSymbol();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005484 DAG.setRoot(DAG.getEHLabel(getCurSDLoc(), getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005485
5486 // Inform MachineModuleInfo of range.
Chris Lattner512063d2010-04-05 06:19:28 +00005487 MMI.addInvoke(LandingPad, BeginLabel, EndLabel);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005488 }
5489}
5490
Chris Lattner8047d9a2009-12-24 00:37:38 +00005491/// IsOnlyUsedInZeroEqualityComparison - Return true if it only matters that the
5492/// value is equal or not-equal to zero.
Dan Gohman46510a72010-04-15 01:51:59 +00005493static bool IsOnlyUsedInZeroEqualityComparison(const Value *V) {
5494 for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end();
Chris Lattner8047d9a2009-12-24 00:37:38 +00005495 UI != E; ++UI) {
Dan Gohman46510a72010-04-15 01:51:59 +00005496 if (const ICmpInst *IC = dyn_cast<ICmpInst>(*UI))
Chris Lattner8047d9a2009-12-24 00:37:38 +00005497 if (IC->isEquality())
Dan Gohman46510a72010-04-15 01:51:59 +00005498 if (const Constant *C = dyn_cast<Constant>(IC->getOperand(1)))
Chris Lattner8047d9a2009-12-24 00:37:38 +00005499 if (C->isNullValue())
5500 continue;
5501 // Unknown instruction.
5502 return false;
5503 }
5504 return true;
5505}
5506
Dan Gohman46510a72010-04-15 01:51:59 +00005507static SDValue getMemCmpLoad(const Value *PtrVal, MVT LoadVT,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00005508 Type *LoadTy,
Chris Lattner8047d9a2009-12-24 00:37:38 +00005509 SelectionDAGBuilder &Builder) {
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005510
Chris Lattner8047d9a2009-12-24 00:37:38 +00005511 // Check to see if this load can be trivially constant folded, e.g. if the
5512 // input is from a string literal.
Dan Gohman46510a72010-04-15 01:51:59 +00005513 if (const Constant *LoadInput = dyn_cast<Constant>(PtrVal)) {
Chris Lattner8047d9a2009-12-24 00:37:38 +00005514 // Cast pointer to the type we really want to load.
Dan Gohman46510a72010-04-15 01:51:59 +00005515 LoadInput = ConstantExpr::getBitCast(const_cast<Constant *>(LoadInput),
Chris Lattner8047d9a2009-12-24 00:37:38 +00005516 PointerType::getUnqual(LoadTy));
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005517
Dan Gohman46510a72010-04-15 01:51:59 +00005518 if (const Constant *LoadCst =
5519 ConstantFoldLoadFromConstPtr(const_cast<Constant *>(LoadInput),
5520 Builder.TD))
Chris Lattner8047d9a2009-12-24 00:37:38 +00005521 return Builder.getValue(LoadCst);
5522 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005523
Chris Lattner8047d9a2009-12-24 00:37:38 +00005524 // Otherwise, we have to emit the load. If the pointer is to unfoldable but
5525 // still constant memory, the input chain can be the entry node.
5526 SDValue Root;
5527 bool ConstantMemory = false;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005528
Chris Lattner8047d9a2009-12-24 00:37:38 +00005529 // Do not serialize (non-volatile) loads of constant memory with anything.
5530 if (Builder.AA->pointsToConstantMemory(PtrVal)) {
5531 Root = Builder.DAG.getEntryNode();
5532 ConstantMemory = true;
5533 } else {
5534 // Do not serialize non-volatile loads against each other.
5535 Root = Builder.DAG.getRoot();
5536 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005537
Chris Lattner8047d9a2009-12-24 00:37:38 +00005538 SDValue Ptr = Builder.getValue(PtrVal);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005539 SDValue LoadVal = Builder.DAG.getLoad(LoadVT, Builder.getCurSDLoc(), Root,
Chris Lattnerecf42c42010-09-21 16:36:31 +00005540 Ptr, MachinePointerInfo(PtrVal),
David Greene1e559442010-02-15 17:00:31 +00005541 false /*volatile*/,
Stephen Lin155615d2013-07-08 00:37:03 +00005542 false /*nontemporal*/,
Pete Cooperd752e0f2011-11-08 18:42:53 +00005543 false /*isinvariant*/, 1 /* align=1 */);
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005544
Chris Lattner8047d9a2009-12-24 00:37:38 +00005545 if (!ConstantMemory)
5546 Builder.PendingLoads.push_back(LoadVal.getValue(1));
5547 return LoadVal;
5548}
5549
Richard Sandiford6a079fe2013-08-16 10:55:47 +00005550/// processIntegerCallValue - Record the value for an instruction that
5551/// produces an integer result, converting the type where necessary.
5552void SelectionDAGBuilder::processIntegerCallValue(const Instruction &I,
5553 SDValue Value,
5554 bool IsSigned) {
5555 EVT VT = TM.getTargetLowering()->getValueType(I.getType(), true);
5556 if (IsSigned)
5557 Value = DAG.getSExtOrTrunc(Value, getCurSDLoc(), VT);
5558 else
5559 Value = DAG.getZExtOrTrunc(Value, getCurSDLoc(), VT);
5560 setValue(&I, Value);
5561}
Chris Lattner8047d9a2009-12-24 00:37:38 +00005562
5563/// visitMemCmpCall - See if we can lower a call to memcmp in an optimized form.
5564/// If so, return true and lower it, otherwise return false and it will be
5565/// lowered like a normal call.
Dan Gohman46510a72010-04-15 01:51:59 +00005566bool SelectionDAGBuilder::visitMemCmpCall(const CallInst &I) {
Chris Lattner8047d9a2009-12-24 00:37:38 +00005567 // Verify that the prototype makes sense. int memcmp(void*,void*,size_t)
Gabor Greif37387d52010-06-30 12:55:46 +00005568 if (I.getNumArgOperands() != 3)
Chris Lattner8047d9a2009-12-24 00:37:38 +00005569 return false;
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005570
Gabor Greif0635f352010-06-25 09:38:13 +00005571 const Value *LHS = I.getArgOperand(0), *RHS = I.getArgOperand(1);
Duncan Sands1df98592010-02-16 11:11:14 +00005572 if (!LHS->getType()->isPointerTy() || !RHS->getType()->isPointerTy() ||
Gabor Greif0635f352010-06-25 09:38:13 +00005573 !I.getArgOperand(2)->getType()->isIntegerTy() ||
Duncan Sands1df98592010-02-16 11:11:14 +00005574 !I.getType()->isIntegerTy())
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005575 return false;
5576
Richard Sandiford6a079fe2013-08-16 10:55:47 +00005577 const Value *Size = I.getArgOperand(2);
5578 const ConstantInt *CSize = dyn_cast<ConstantInt>(Size);
5579 if (CSize && CSize->getZExtValue() == 0) {
Richard Sandifordac168b82013-08-12 10:28:10 +00005580 EVT CallVT = TM.getTargetLowering()->getValueType(I.getType(), true);
5581 setValue(&I, DAG.getConstant(0, CallVT));
5582 return true;
5583 }
5584
Richard Sandifordac168b82013-08-12 10:28:10 +00005585 const TargetSelectionDAGInfo &TSI = DAG.getSelectionDAGInfo();
5586 std::pair<SDValue, SDValue> Res =
5587 TSI.EmitTargetCodeForMemcmp(DAG, getCurSDLoc(), DAG.getRoot(),
Richard Sandiford6a079fe2013-08-16 10:55:47 +00005588 getValue(LHS), getValue(RHS), getValue(Size),
5589 MachinePointerInfo(LHS),
5590 MachinePointerInfo(RHS));
Richard Sandifordac168b82013-08-12 10:28:10 +00005591 if (Res.first.getNode()) {
Richard Sandiford6a079fe2013-08-16 10:55:47 +00005592 processIntegerCallValue(I, Res.first, true);
5593 PendingLoads.push_back(Res.second);
Richard Sandifordac168b82013-08-12 10:28:10 +00005594 return true;
5595 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005596
Chris Lattner8047d9a2009-12-24 00:37:38 +00005597 // memcmp(S1,S2,2) != 0 -> (*(short*)LHS != *(short*)RHS) != 0
5598 // memcmp(S1,S2,4) != 0 -> (*(int*)LHS != *(int*)RHS) != 0
Richard Sandiford6a079fe2013-08-16 10:55:47 +00005599 if (CSize && IsOnlyUsedInZeroEqualityComparison(&I)) {
Chris Lattner04b091a2009-12-24 01:07:17 +00005600 bool ActuallyDoIt = true;
5601 MVT LoadVT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00005602 Type *LoadTy;
Richard Sandiford6a079fe2013-08-16 10:55:47 +00005603 switch (CSize->getZExtValue()) {
Chris Lattner04b091a2009-12-24 01:07:17 +00005604 default:
5605 LoadVT = MVT::Other;
5606 LoadTy = 0;
5607 ActuallyDoIt = false;
5608 break;
5609 case 2:
5610 LoadVT = MVT::i16;
Richard Sandiford6a079fe2013-08-16 10:55:47 +00005611 LoadTy = Type::getInt16Ty(CSize->getContext());
Chris Lattner04b091a2009-12-24 01:07:17 +00005612 break;
5613 case 4:
5614 LoadVT = MVT::i32;
Richard Sandiford6a079fe2013-08-16 10:55:47 +00005615 LoadTy = Type::getInt32Ty(CSize->getContext());
Chris Lattner04b091a2009-12-24 01:07:17 +00005616 break;
5617 case 8:
5618 LoadVT = MVT::i64;
Richard Sandiford6a079fe2013-08-16 10:55:47 +00005619 LoadTy = Type::getInt64Ty(CSize->getContext());
Chris Lattner04b091a2009-12-24 01:07:17 +00005620 break;
5621 /*
5622 case 16:
5623 LoadVT = MVT::v4i32;
Richard Sandiford6a079fe2013-08-16 10:55:47 +00005624 LoadTy = Type::getInt32Ty(CSize->getContext());
Chris Lattner04b091a2009-12-24 01:07:17 +00005625 LoadTy = VectorType::get(LoadTy, 4);
5626 break;
5627 */
5628 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005629
Chris Lattner04b091a2009-12-24 01:07:17 +00005630 // This turns into unaligned loads. We only do this if the target natively
5631 // supports the MVT we'll be loading or if it is small enough (<= 4) that
5632 // we'll only produce a small number of byte loads.
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005633
Chris Lattner04b091a2009-12-24 01:07:17 +00005634 // Require that we can find a legal MVT, and only do this if the target
5635 // supports unaligned loads of that type. Expanding into byte loads would
5636 // bloat the code.
Bill Wendlingba54bca2013-06-19 21:36:55 +00005637 const TargetLowering *TLI = TM.getTargetLowering();
Richard Sandiford6a079fe2013-08-16 10:55:47 +00005638 if (ActuallyDoIt && CSize->getZExtValue() > 4) {
Chris Lattner04b091a2009-12-24 01:07:17 +00005639 // TODO: Handle 5 byte compare as 4-byte + 1 byte.
5640 // TODO: Handle 8 byte compare on x86-32 as two 32-bit loads.
Bill Wendlingba54bca2013-06-19 21:36:55 +00005641 if (!TLI->isTypeLegal(LoadVT) ||!TLI->allowsUnalignedMemoryAccesses(LoadVT))
Chris Lattner04b091a2009-12-24 01:07:17 +00005642 ActuallyDoIt = false;
5643 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005644
Chris Lattner04b091a2009-12-24 01:07:17 +00005645 if (ActuallyDoIt) {
5646 SDValue LHSVal = getMemCmpLoad(LHS, LoadVT, LoadTy, *this);
5647 SDValue RHSVal = getMemCmpLoad(RHS, LoadVT, LoadTy, *this);
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005648
Andrew Trickac6d9be2013-05-25 02:42:55 +00005649 SDValue Res = DAG.getSetCC(getCurSDLoc(), MVT::i1, LHSVal, RHSVal,
Chris Lattner04b091a2009-12-24 01:07:17 +00005650 ISD::SETNE);
Richard Sandiford6a079fe2013-08-16 10:55:47 +00005651 processIntegerCallValue(I, Res, false);
Chris Lattner04b091a2009-12-24 01:07:17 +00005652 return true;
5653 }
Chris Lattner8047d9a2009-12-24 00:37:38 +00005654 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00005655
5656
Chris Lattner8047d9a2009-12-24 00:37:38 +00005657 return false;
5658}
5659
Richard Sandiford8c201582013-08-20 09:38:48 +00005660/// visitMemChrCall -- See if we can lower a memchr call into an optimized
5661/// form. If so, return true and lower it, otherwise return false and it
5662/// will be lowered like a normal call.
5663bool SelectionDAGBuilder::visitMemChrCall(const CallInst &I) {
5664 // Verify that the prototype makes sense. void *memchr(void *, int, size_t)
5665 if (I.getNumArgOperands() != 3)
5666 return false;
5667
5668 const Value *Src = I.getArgOperand(0);
5669 const Value *Char = I.getArgOperand(1);
5670 const Value *Length = I.getArgOperand(2);
5671 if (!Src->getType()->isPointerTy() ||
5672 !Char->getType()->isIntegerTy() ||
5673 !Length->getType()->isIntegerTy() ||
5674 !I.getType()->isPointerTy())
5675 return false;
5676
5677 const TargetSelectionDAGInfo &TSI = DAG.getSelectionDAGInfo();
5678 std::pair<SDValue, SDValue> Res =
5679 TSI.EmitTargetCodeForMemchr(DAG, getCurSDLoc(), DAG.getRoot(),
5680 getValue(Src), getValue(Char), getValue(Length),
5681 MachinePointerInfo(Src));
5682 if (Res.first.getNode()) {
5683 setValue(&I, Res.first);
5684 PendingLoads.push_back(Res.second);
5685 return true;
5686 }
5687
5688 return false;
5689}
5690
Richard Sandiford4fc73552013-08-16 11:29:37 +00005691/// visitStrCpyCall -- See if we can lower a strcpy or stpcpy call into an
5692/// optimized form. If so, return true and lower it, otherwise return false
5693/// and it will be lowered like a normal call.
5694bool SelectionDAGBuilder::visitStrCpyCall(const CallInst &I, bool isStpcpy) {
5695 // Verify that the prototype makes sense. char *strcpy(char *, char *)
5696 if (I.getNumArgOperands() != 2)
5697 return false;
5698
5699 const Value *Arg0 = I.getArgOperand(0), *Arg1 = I.getArgOperand(1);
5700 if (!Arg0->getType()->isPointerTy() ||
5701 !Arg1->getType()->isPointerTy() ||
5702 !I.getType()->isPointerTy())
5703 return false;
5704
5705 const TargetSelectionDAGInfo &TSI = DAG.getSelectionDAGInfo();
5706 std::pair<SDValue, SDValue> Res =
5707 TSI.EmitTargetCodeForStrcpy(DAG, getCurSDLoc(), getRoot(),
5708 getValue(Arg0), getValue(Arg1),
5709 MachinePointerInfo(Arg0),
5710 MachinePointerInfo(Arg1), isStpcpy);
5711 if (Res.first.getNode()) {
5712 setValue(&I, Res.first);
5713 DAG.setRoot(Res.second);
5714 return true;
5715 }
5716
5717 return false;
5718}
5719
Richard Sandiforde1b2af72013-08-16 11:21:54 +00005720/// visitStrCmpCall - See if we can lower a call to strcmp in an optimized form.
5721/// If so, return true and lower it, otherwise return false and it will be
5722/// lowered like a normal call.
5723bool SelectionDAGBuilder::visitStrCmpCall(const CallInst &I) {
5724 // Verify that the prototype makes sense. int strcmp(void*,void*)
5725 if (I.getNumArgOperands() != 2)
5726 return false;
5727
5728 const Value *Arg0 = I.getArgOperand(0), *Arg1 = I.getArgOperand(1);
5729 if (!Arg0->getType()->isPointerTy() ||
5730 !Arg1->getType()->isPointerTy() ||
5731 !I.getType()->isIntegerTy())
5732 return false;
5733
5734 const TargetSelectionDAGInfo &TSI = DAG.getSelectionDAGInfo();
5735 std::pair<SDValue, SDValue> Res =
5736 TSI.EmitTargetCodeForStrcmp(DAG, getCurSDLoc(), DAG.getRoot(),
5737 getValue(Arg0), getValue(Arg1),
5738 MachinePointerInfo(Arg0),
5739 MachinePointerInfo(Arg1));
5740 if (Res.first.getNode()) {
5741 processIntegerCallValue(I, Res.first, true);
5742 PendingLoads.push_back(Res.second);
5743 return true;
5744 }
5745
5746 return false;
5747}
5748
Richard Sandiford19262ee2013-08-16 11:41:43 +00005749/// visitStrLenCall -- See if we can lower a strlen call into an optimized
5750/// form. If so, return true and lower it, otherwise return false and it
5751/// will be lowered like a normal call.
5752bool SelectionDAGBuilder::visitStrLenCall(const CallInst &I) {
5753 // Verify that the prototype makes sense. size_t strlen(char *)
5754 if (I.getNumArgOperands() != 1)
5755 return false;
5756
5757 const Value *Arg0 = I.getArgOperand(0);
5758 if (!Arg0->getType()->isPointerTy() || !I.getType()->isIntegerTy())
5759 return false;
5760
5761 const TargetSelectionDAGInfo &TSI = DAG.getSelectionDAGInfo();
5762 std::pair<SDValue, SDValue> Res =
5763 TSI.EmitTargetCodeForStrlen(DAG, getCurSDLoc(), DAG.getRoot(),
5764 getValue(Arg0), MachinePointerInfo(Arg0));
5765 if (Res.first.getNode()) {
5766 processIntegerCallValue(I, Res.first, false);
5767 PendingLoads.push_back(Res.second);
5768 return true;
5769 }
5770
5771 return false;
5772}
5773
5774/// visitStrNLenCall -- See if we can lower a strnlen call into an optimized
5775/// form. If so, return true and lower it, otherwise return false and it
5776/// will be lowered like a normal call.
5777bool SelectionDAGBuilder::visitStrNLenCall(const CallInst &I) {
5778 // Verify that the prototype makes sense. size_t strnlen(char *, size_t)
5779 if (I.getNumArgOperands() != 2)
5780 return false;
5781
5782 const Value *Arg0 = I.getArgOperand(0), *Arg1 = I.getArgOperand(1);
5783 if (!Arg0->getType()->isPointerTy() ||
5784 !Arg1->getType()->isIntegerTy() ||
5785 !I.getType()->isIntegerTy())
5786 return false;
5787
5788 const TargetSelectionDAGInfo &TSI = DAG.getSelectionDAGInfo();
5789 std::pair<SDValue, SDValue> Res =
5790 TSI.EmitTargetCodeForStrnlen(DAG, getCurSDLoc(), DAG.getRoot(),
5791 getValue(Arg0), getValue(Arg1),
5792 MachinePointerInfo(Arg0));
5793 if (Res.first.getNode()) {
5794 processIntegerCallValue(I, Res.first, false);
5795 PendingLoads.push_back(Res.second);
5796 return true;
5797 }
5798
5799 return false;
5800}
5801
Bob Wilson53624a22012-08-03 23:29:17 +00005802/// visitUnaryFloatCall - If a call instruction is a unary floating-point
5803/// operation (as expected), translate it to an SDNode with the specified opcode
5804/// and return true.
5805bool SelectionDAGBuilder::visitUnaryFloatCall(const CallInst &I,
5806 unsigned Opcode) {
5807 // Sanity check that it really is a unary floating-point call.
5808 if (I.getNumArgOperands() != 1 ||
5809 !I.getArgOperand(0)->getType()->isFloatingPointTy() ||
5810 I.getType() != I.getArgOperand(0)->getType() ||
5811 !I.onlyReadsMemory())
5812 return false;
5813
5814 SDValue Tmp = getValue(I.getArgOperand(0));
Andrew Trickac6d9be2013-05-25 02:42:55 +00005815 setValue(&I, DAG.getNode(Opcode, getCurSDLoc(), Tmp.getValueType(), Tmp));
Bob Wilson53624a22012-08-03 23:29:17 +00005816 return true;
5817}
Chris Lattner8047d9a2009-12-24 00:37:38 +00005818
Dan Gohman46510a72010-04-15 01:51:59 +00005819void SelectionDAGBuilder::visitCall(const CallInst &I) {
Chris Lattner598751e2010-07-05 05:36:21 +00005820 // Handle inline assembly differently.
5821 if (isa<InlineAsm>(I.getCalledValue())) {
5822 visitInlineAsm(&I);
5823 return;
5824 }
Michael J. Spencere70c5262010-10-16 08:25:21 +00005825
Michael J. Spencer391b43b2010-10-21 20:49:23 +00005826 MachineModuleInfo &MMI = DAG.getMachineFunction().getMMI();
Michael J. Spencerc9c137b2012-02-22 19:06:13 +00005827 ComputeUsesVAFloatArgument(I, &MMI);
Michael J. Spencer391b43b2010-10-21 20:49:23 +00005828
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005829 const char *RenameFn = 0;
5830 if (Function *F = I.getCalledFunction()) {
5831 if (F->isDeclaration()) {
Chris Lattner598751e2010-07-05 05:36:21 +00005832 if (const TargetIntrinsicInfo *II = TM.getIntrinsicInfo()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00005833 if (unsigned IID = II->getIntrinsicID(F)) {
5834 RenameFn = visitIntrinsicCall(I, IID);
5835 if (!RenameFn)
5836 return;
5837 }
5838 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005839 if (unsigned IID = F->getIntrinsicID()) {
5840 RenameFn = visitIntrinsicCall(I, IID);
5841 if (!RenameFn)
5842 return;
5843 }
5844 }
5845
5846 // Check for well-known libc/libm calls. If the function is internal, it
5847 // can't be a library call.
Bob Wilson982dc842012-08-03 21:26:24 +00005848 LibFunc::Func Func;
5849 if (!F->hasLocalLinkage() && F->hasName() &&
5850 LibInfo->getLibFunc(F->getName(), Func) &&
5851 LibInfo->hasOptimizedCodeGen(Func)) {
5852 switch (Func) {
5853 default: break;
5854 case LibFunc::copysign:
5855 case LibFunc::copysignf:
5856 case LibFunc::copysignl:
Gabor Greif37387d52010-06-30 12:55:46 +00005857 if (I.getNumArgOperands() == 2 && // Basic sanity checks.
Gabor Greif0635f352010-06-25 09:38:13 +00005858 I.getArgOperand(0)->getType()->isFloatingPointTy() &&
5859 I.getType() == I.getArgOperand(0)->getType() &&
Bob Wilson53624a22012-08-03 23:29:17 +00005860 I.getType() == I.getArgOperand(1)->getType() &&
5861 I.onlyReadsMemory()) {
Gabor Greif0635f352010-06-25 09:38:13 +00005862 SDValue LHS = getValue(I.getArgOperand(0));
5863 SDValue RHS = getValue(I.getArgOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00005864 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurSDLoc(),
Bill Wendling0d580132009-12-23 01:28:19 +00005865 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005866 return;
5867 }
Bob Wilson982dc842012-08-03 21:26:24 +00005868 break;
5869 case LibFunc::fabs:
5870 case LibFunc::fabsf:
5871 case LibFunc::fabsl:
Bob Wilson53624a22012-08-03 23:29:17 +00005872 if (visitUnaryFloatCall(I, ISD::FABS))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005873 return;
Bob Wilson982dc842012-08-03 21:26:24 +00005874 break;
5875 case LibFunc::sin:
5876 case LibFunc::sinf:
5877 case LibFunc::sinl:
Bob Wilson53624a22012-08-03 23:29:17 +00005878 if (visitUnaryFloatCall(I, ISD::FSIN))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005879 return;
Bob Wilson982dc842012-08-03 21:26:24 +00005880 break;
5881 case LibFunc::cos:
5882 case LibFunc::cosf:
5883 case LibFunc::cosl:
Bob Wilson53624a22012-08-03 23:29:17 +00005884 if (visitUnaryFloatCall(I, ISD::FCOS))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005885 return;
Bob Wilson982dc842012-08-03 21:26:24 +00005886 break;
5887 case LibFunc::sqrt:
5888 case LibFunc::sqrtf:
5889 case LibFunc::sqrtl:
Preston Gurdb704d232013-05-27 15:44:35 +00005890 case LibFunc::sqrt_finite:
5891 case LibFunc::sqrtf_finite:
5892 case LibFunc::sqrtl_finite:
Bob Wilson53624a22012-08-03 23:29:17 +00005893 if (visitUnaryFloatCall(I, ISD::FSQRT))
Dale Johannesen52fb79b2009-09-25 17:23:22 +00005894 return;
Bob Wilson982dc842012-08-03 21:26:24 +00005895 break;
5896 case LibFunc::floor:
5897 case LibFunc::floorf:
5898 case LibFunc::floorl:
Bob Wilson53624a22012-08-03 23:29:17 +00005899 if (visitUnaryFloatCall(I, ISD::FFLOOR))
Owen Anderson4a4fdf32011-12-08 19:32:14 +00005900 return;
Bob Wilson982dc842012-08-03 21:26:24 +00005901 break;
5902 case LibFunc::nearbyint:
5903 case LibFunc::nearbyintf:
5904 case LibFunc::nearbyintl:
Bob Wilson53624a22012-08-03 23:29:17 +00005905 if (visitUnaryFloatCall(I, ISD::FNEARBYINT))
Owen Anderson4a4fdf32011-12-08 19:32:14 +00005906 return;
Bob Wilson982dc842012-08-03 21:26:24 +00005907 break;
5908 case LibFunc::ceil:
5909 case LibFunc::ceilf:
5910 case LibFunc::ceill:
Bob Wilson53624a22012-08-03 23:29:17 +00005911 if (visitUnaryFloatCall(I, ISD::FCEIL))
Owen Anderson4a4fdf32011-12-08 19:32:14 +00005912 return;
Bob Wilson982dc842012-08-03 21:26:24 +00005913 break;
5914 case LibFunc::rint:
5915 case LibFunc::rintf:
5916 case LibFunc::rintl:
Bob Wilson53624a22012-08-03 23:29:17 +00005917 if (visitUnaryFloatCall(I, ISD::FRINT))
Owen Anderson4a4fdf32011-12-08 19:32:14 +00005918 return;
Bob Wilson982dc842012-08-03 21:26:24 +00005919 break;
Hal Finkel41418d12013-08-07 22:49:12 +00005920 case LibFunc::round:
5921 case LibFunc::roundf:
5922 case LibFunc::roundl:
5923 if (visitUnaryFloatCall(I, ISD::FROUND))
5924 return;
5925 break;
Bob Wilson982dc842012-08-03 21:26:24 +00005926 case LibFunc::trunc:
5927 case LibFunc::truncf:
5928 case LibFunc::truncl:
Bob Wilson53624a22012-08-03 23:29:17 +00005929 if (visitUnaryFloatCall(I, ISD::FTRUNC))
Owen Anderson4a4fdf32011-12-08 19:32:14 +00005930 return;
Bob Wilson982dc842012-08-03 21:26:24 +00005931 break;
5932 case LibFunc::log2:
5933 case LibFunc::log2f:
5934 case LibFunc::log2l:
Bob Wilson53624a22012-08-03 23:29:17 +00005935 if (visitUnaryFloatCall(I, ISD::FLOG2))
Owen Anderson4e0adfa2011-12-15 00:54:12 +00005936 return;
Bob Wilson982dc842012-08-03 21:26:24 +00005937 break;
5938 case LibFunc::exp2:
5939 case LibFunc::exp2f:
5940 case LibFunc::exp2l:
Bob Wilson53624a22012-08-03 23:29:17 +00005941 if (visitUnaryFloatCall(I, ISD::FEXP2))
Owen Anderson4e0adfa2011-12-15 00:54:12 +00005942 return;
Bob Wilson982dc842012-08-03 21:26:24 +00005943 break;
5944 case LibFunc::memcmp:
Chris Lattner8047d9a2009-12-24 00:37:38 +00005945 if (visitMemCmpCall(I))
5946 return;
Bob Wilson982dc842012-08-03 21:26:24 +00005947 break;
Richard Sandiford8c201582013-08-20 09:38:48 +00005948 case LibFunc::memchr:
5949 if (visitMemChrCall(I))
5950 return;
5951 break;
Richard Sandiford4fc73552013-08-16 11:29:37 +00005952 case LibFunc::strcpy:
5953 if (visitStrCpyCall(I, false))
5954 return;
5955 break;
5956 case LibFunc::stpcpy:
5957 if (visitStrCpyCall(I, true))
5958 return;
5959 break;
Richard Sandiforde1b2af72013-08-16 11:21:54 +00005960 case LibFunc::strcmp:
5961 if (visitStrCmpCall(I))
5962 return;
5963 break;
Richard Sandiford19262ee2013-08-16 11:41:43 +00005964 case LibFunc::strlen:
5965 if (visitStrLenCall(I))
5966 return;
5967 break;
5968 case LibFunc::strnlen:
5969 if (visitStrNLenCall(I))
5970 return;
5971 break;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005972 }
5973 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005974 }
Michael J. Spencere70c5262010-10-16 08:25:21 +00005975
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005976 SDValue Callee;
5977 if (!RenameFn)
Gabor Greif0635f352010-06-25 09:38:13 +00005978 Callee = getValue(I.getCalledValue());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005979 else
Bill Wendlingba54bca2013-06-19 21:36:55 +00005980 Callee = DAG.getExternalSymbol(RenameFn,
5981 TM.getTargetLowering()->getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005982
Bill Wendling0d580132009-12-23 01:28:19 +00005983 // Check if we can potentially perform a tail call. More detailed checking is
5984 // be done within LowerCallTo, after more information about the call is known.
Evan Cheng11e67932010-01-26 23:13:04 +00005985 LowerCallTo(&I, Callee, I.isTailCall());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005986}
5987
Benjamin Kramer7d706ed2011-03-26 16:35:10 +00005988namespace {
Dan Gohman462f6b52010-05-29 17:53:24 +00005989
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005990/// AsmOperandInfo - This contains information for each constraint that we are
5991/// lowering.
Benjamin Kramer7d706ed2011-03-26 16:35:10 +00005992class SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00005993public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005994 /// CallOperand - If this is the result output operand or a clobber
5995 /// this is null, otherwise it is the incoming operand to the CallInst.
5996 /// This gets modified as the asm is processed.
5997 SDValue CallOperand;
5998
5999 /// AssignedRegs - If this is a register or register class operand, this
6000 /// contains the set of register corresponding to the operand.
6001 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006002
John Thompsoneac6e1d2010-09-13 18:15:37 +00006003 explicit SDISelAsmOperandInfo(const TargetLowering::AsmOperandInfo &info)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006004 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
6005 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006006
Owen Andersone50ed302009-08-10 22:56:29 +00006007 /// getCallOperandValEVT - Return the EVT of the Value* that this operand
Chris Lattner81249c92008-10-17 17:05:25 +00006008 /// corresponds to. If there is no Value* for this operand, it returns
Owen Anderson825b72b2009-08-11 20:47:22 +00006009 /// MVT::Other.
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00006010 EVT getCallOperandValEVT(LLVMContext &Context,
Owen Anderson1d0be152009-08-13 21:58:54 +00006011 const TargetLowering &TLI,
Micah Villmow3574eca2012-10-08 16:38:25 +00006012 const DataLayout *TD) const {
Owen Anderson825b72b2009-08-11 20:47:22 +00006013 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006014
Chris Lattner81249c92008-10-17 17:05:25 +00006015 if (isa<BasicBlock>(CallOperandVal))
6016 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006017
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006018 llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006019
Eric Christophercef81b72011-05-09 20:04:43 +00006020 // FIXME: code duplicated from TargetLowering::ParseConstraints().
Chris Lattner81249c92008-10-17 17:05:25 +00006021 // If this is an indirect operand, the operand is a pointer to the
6022 // accessed type.
Bob Wilsone261b0c2009-12-22 18:34:19 +00006023 if (isIndirect) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006024 llvm::PointerType *PtrTy = dyn_cast<PointerType>(OpTy);
Bob Wilsone261b0c2009-12-22 18:34:19 +00006025 if (!PtrTy)
Chris Lattner75361b62010-04-07 22:58:41 +00006026 report_fatal_error("Indirect operand for inline asm not a pointer!");
Bob Wilsone261b0c2009-12-22 18:34:19 +00006027 OpTy = PtrTy->getElementType();
6028 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006029
Eric Christophercef81b72011-05-09 20:04:43 +00006030 // Look for vector wrapped in a struct. e.g. { <16 x i8> }.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006031 if (StructType *STy = dyn_cast<StructType>(OpTy))
Eric Christophercef81b72011-05-09 20:04:43 +00006032 if (STy->getNumElements() == 1)
6033 OpTy = STy->getElementType(0);
6034
Chris Lattner81249c92008-10-17 17:05:25 +00006035 // If OpTy is not a single value, it may be a struct/union that we
6036 // can tile with integers.
6037 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
6038 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
6039 switch (BitSize) {
6040 default: break;
6041 case 1:
6042 case 8:
6043 case 16:
6044 case 32:
6045 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00006046 case 128:
Owen Anderson1d0be152009-08-13 21:58:54 +00006047 OpTy = IntegerType::get(Context, BitSize);
Chris Lattner81249c92008-10-17 17:05:25 +00006048 break;
6049 }
6050 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006051
Chris Lattner81249c92008-10-17 17:05:25 +00006052 return TLI.getValueType(OpTy, true);
6053 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006054};
Dan Gohman462f6b52010-05-29 17:53:24 +00006055
John Thompson44ab89e2010-10-29 17:29:13 +00006056typedef SmallVector<SDISelAsmOperandInfo,16> SDISelAsmOperandInfoVector;
6057
Benjamin Kramer7d706ed2011-03-26 16:35:10 +00006058} // end anonymous namespace
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006059
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006060/// GetRegistersForValue - Assign registers (virtual or physical) for the
6061/// specified operand. We prefer to assign virtual registers, to allow the
Bob Wilson266d9452009-12-17 05:07:36 +00006062/// register allocator to handle the assignment process. However, if the asm
6063/// uses features that we can't model on machineinstrs, we have SDISel do the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006064/// allocation. This produces generally horrible, but correct, code.
6065///
6066/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006067///
Benjamin Kramer7d706ed2011-03-26 16:35:10 +00006068static void GetRegistersForValue(SelectionDAG &DAG,
6069 const TargetLowering &TLI,
Andrew Trickac6d9be2013-05-25 02:42:55 +00006070 SDLoc DL,
Benjamin Kramer8b93ff22012-02-24 14:01:17 +00006071 SDISelAsmOperandInfo &OpInfo) {
Benjamin Kramer7d706ed2011-03-26 16:35:10 +00006072 LLVMContext &Context = *DAG.getContext();
Owen Anderson23b9b192009-08-12 00:36:31 +00006073
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006074 MachineFunction &MF = DAG.getMachineFunction();
6075 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006076
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006077 // If this is a constraint for a single physreg, or a constraint for a
6078 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006079 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006080 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
6081 OpInfo.ConstraintVT);
6082
6083 unsigned NumRegs = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00006084 if (OpInfo.ConstraintVT != MVT::Other) {
Chris Lattner01426e12008-10-21 00:45:36 +00006085 // If this is a FP input in an integer register (or visa versa) insert a bit
6086 // cast of the input value. More generally, handle any case where the input
6087 // value disagrees with the register class we plan to stick this in.
6088 if (OpInfo.Type == InlineAsm::isInput &&
6089 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
Owen Andersone50ed302009-08-10 22:56:29 +00006090 // Try to convert to the first EVT that the reg class contains. If the
Chris Lattner01426e12008-10-21 00:45:36 +00006091 // types are identical size, use a bitcast to convert (e.g. two differing
6092 // vector types).
Patrik Hagglund8963fec2012-12-19 12:23:01 +00006093 MVT RegVT = *PhysReg.second->vt_begin();
Chris Lattner01426e12008-10-21 00:45:36 +00006094 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Benjamin Kramer7d706ed2011-03-26 16:35:10 +00006095 OpInfo.CallOperand = DAG.getNode(ISD::BITCAST, DL,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00006096 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00006097 OpInfo.ConstraintVT = RegVT;
6098 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
6099 // If the input is a FP value and we want it in FP registers, do a
6100 // bitcast to the corresponding integer type. This turns an f64 value
6101 // into i64, which can be passed with two i32 values on a 32-bit
6102 // machine.
Patrik Hagglund8963fec2012-12-19 12:23:01 +00006103 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Benjamin Kramer7d706ed2011-03-26 16:35:10 +00006104 OpInfo.CallOperand = DAG.getNode(ISD::BITCAST, DL,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00006105 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00006106 OpInfo.ConstraintVT = RegVT;
6107 }
6108 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006109
Owen Anderson23b9b192009-08-12 00:36:31 +00006110 NumRegs = TLI.getNumRegisters(Context, OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00006111 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006112
Patrik Hagglund8963fec2012-12-19 12:23:01 +00006113 MVT RegVT;
Owen Andersone50ed302009-08-10 22:56:29 +00006114 EVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006115
6116 // If this is a constraint for a specific physical register, like {r17},
6117 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00006118 if (unsigned AssignedReg = PhysReg.first) {
6119 const TargetRegisterClass *RC = PhysReg.second;
Owen Anderson825b72b2009-08-11 20:47:22 +00006120 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00006121 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006122
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006123 // Get the actual register value type. This is important, because the user
6124 // may have asked for (e.g.) the AX register in i32 type. We need to
6125 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00006126 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006127
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006128 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00006129 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006130
6131 // If this is an expanded reference, add the rest of the regs to Regs.
6132 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00006133 TargetRegisterClass::iterator I = RC->begin();
6134 for (; *I != AssignedReg; ++I)
6135 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006136
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006137 // Already added the first reg.
6138 --NumRegs; ++I;
6139 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00006140 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006141 Regs.push_back(*I);
6142 }
6143 }
Bill Wendling651ad132009-12-22 01:25:10 +00006144
Dan Gohman7451d3e2010-05-29 17:03:36 +00006145 OpInfo.AssignedRegs = RegsForValue(Regs, RegVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006146 return;
6147 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006148
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006149 // Otherwise, if this was a reference to an LLVM register class, create vregs
6150 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00006151 if (const TargetRegisterClass *RC = PhysReg.second) {
6152 RegVT = *RC->vt_begin();
Owen Anderson825b72b2009-08-11 20:47:22 +00006153 if (OpInfo.ConstraintVT == MVT::Other)
Evan Chengfb112882009-03-23 08:01:15 +00006154 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006155
Evan Chengfb112882009-03-23 08:01:15 +00006156 // Create the appropriate number of virtual registers.
6157 MachineRegisterInfo &RegInfo = MF.getRegInfo();
6158 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00006159 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006160
Dan Gohman7451d3e2010-05-29 17:03:36 +00006161 OpInfo.AssignedRegs = RegsForValue(Regs, RegVT, ValueVT);
Evan Chengfb112882009-03-23 08:01:15 +00006162 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006163 }
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00006164
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006165 // Otherwise, we couldn't allocate enough registers for this.
6166}
6167
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006168/// visitInlineAsm - Handle a call to an InlineAsm object.
6169///
Dan Gohman46510a72010-04-15 01:51:59 +00006170void SelectionDAGBuilder::visitInlineAsm(ImmutableCallSite CS) {
6171 const InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006172
6173 /// ConstraintOperands - Information about all of the constraints.
John Thompson44ab89e2010-10-29 17:29:13 +00006174 SDISelAsmOperandInfoVector ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006175
Bill Wendlingba54bca2013-06-19 21:36:55 +00006176 const TargetLowering *TLI = TM.getTargetLowering();
Evan Chengce1cdac2011-05-06 20:52:23 +00006177 TargetLowering::AsmOperandInfoVector
Bill Wendlingba54bca2013-06-19 21:36:55 +00006178 TargetConstraints = TLI->ParseConstraints(CS);
Evan Chengce1cdac2011-05-06 20:52:23 +00006179
John Thompsoneac6e1d2010-09-13 18:15:37 +00006180 bool hasMemory = false;
Michael J. Spencere70c5262010-10-16 08:25:21 +00006181
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006182 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
6183 unsigned ResNo = 0; // ResNo - The result number of the next output.
John Thompsoneac6e1d2010-09-13 18:15:37 +00006184 for (unsigned i = 0, e = TargetConstraints.size(); i != e; ++i) {
6185 ConstraintOperands.push_back(SDISelAsmOperandInfo(TargetConstraints[i]));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006186 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Michael J. Spencere70c5262010-10-16 08:25:21 +00006187
Patrik Hagglundc698d3a2012-12-19 15:19:11 +00006188 MVT OpVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006189
6190 // Compute the value type for each operand.
6191 switch (OpInfo.Type) {
6192 case InlineAsm::isOutput:
6193 // Indirect outputs just consume an argument.
6194 if (OpInfo.isIndirect) {
Dan Gohman46510a72010-04-15 01:51:59 +00006195 OpInfo.CallOperandVal = const_cast<Value *>(CS.getArgument(ArgNo++));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006196 break;
6197 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006198
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006199 // The return value of the call is this value. As such, there is no
6200 // corresponding argument.
Nick Lewycky8de34002011-09-30 22:19:53 +00006201 assert(!CS.getType()->isVoidTy() && "Bad inline asm!");
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006202 if (StructType *STy = dyn_cast<StructType>(CS.getType())) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00006203 OpVT = TLI->getSimpleValueType(STy->getElementType(ResNo));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006204 } else {
6205 assert(ResNo == 0 && "Asm only has one result!");
Bill Wendlingba54bca2013-06-19 21:36:55 +00006206 OpVT = TLI->getSimpleValueType(CS.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006207 }
6208 ++ResNo;
6209 break;
6210 case InlineAsm::isInput:
Dan Gohman46510a72010-04-15 01:51:59 +00006211 OpInfo.CallOperandVal = const_cast<Value *>(CS.getArgument(ArgNo++));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006212 break;
6213 case InlineAsm::isClobber:
6214 // Nothing to do.
6215 break;
6216 }
6217
6218 // If this is an input or an indirect output, process the call argument.
6219 // BasicBlocks are labels, currently appearing only in asm's.
6220 if (OpInfo.CallOperandVal) {
Dan Gohman46510a72010-04-15 01:51:59 +00006221 if (const BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006222 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00006223 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006224 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006225 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006226
Bill Wendlingba54bca2013-06-19 21:36:55 +00006227 OpVT = OpInfo.getCallOperandValEVT(*DAG.getContext(), *TLI, TD).
Patrik Hagglundc698d3a2012-12-19 15:19:11 +00006228 getSimpleVT();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006229 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006230
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006231 OpInfo.ConstraintVT = OpVT;
Michael J. Spencere70c5262010-10-16 08:25:21 +00006232
John Thompsoneac6e1d2010-09-13 18:15:37 +00006233 // Indirect operand accesses access memory.
6234 if (OpInfo.isIndirect)
6235 hasMemory = true;
6236 else {
6237 for (unsigned j = 0, ee = OpInfo.Codes.size(); j != ee; ++j) {
Evan Chengce1cdac2011-05-06 20:52:23 +00006238 TargetLowering::ConstraintType
Bill Wendlingba54bca2013-06-19 21:36:55 +00006239 CType = TLI->getConstraintType(OpInfo.Codes[j]);
John Thompsoneac6e1d2010-09-13 18:15:37 +00006240 if (CType == TargetLowering::C_Memory) {
6241 hasMemory = true;
6242 break;
6243 }
6244 }
6245 }
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006246 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006247
John Thompsoneac6e1d2010-09-13 18:15:37 +00006248 SDValue Chain, Flag;
6249
6250 // We won't need to flush pending loads if this asm doesn't touch
6251 // memory and is nonvolatile.
6252 if (hasMemory || IA->hasSideEffects())
6253 Chain = getRoot();
6254 else
6255 Chain = DAG.getRoot();
6256
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006257 // Second pass over the constraints: compute which constraint option to use
6258 // and assign registers to constraints that want a specific physreg.
John Thompsoneac6e1d2010-09-13 18:15:37 +00006259 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006260 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006261
John Thompson54584742010-09-24 22:24:05 +00006262 // If this is an output operand with a matching input operand, look up the
6263 // matching input. If their types mismatch, e.g. one is an integer, the
6264 // other is floating point, or their sizes are different, flag it as an
6265 // error.
6266 if (OpInfo.hasMatchingInput()) {
6267 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
Michael J. Spencere70c5262010-10-16 08:25:21 +00006268
John Thompson54584742010-09-24 22:24:05 +00006269 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Bill Wendling96cb1122012-07-19 00:04:14 +00006270 std::pair<unsigned, const TargetRegisterClass*> MatchRC =
Bill Wendlingba54bca2013-06-19 21:36:55 +00006271 TLI->getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
6272 OpInfo.ConstraintVT);
Bill Wendling96cb1122012-07-19 00:04:14 +00006273 std::pair<unsigned, const TargetRegisterClass*> InputRC =
Bill Wendlingba54bca2013-06-19 21:36:55 +00006274 TLI->getRegForInlineAsmConstraint(Input.ConstraintCode,
6275 Input.ConstraintVT);
John Thompson54584742010-09-24 22:24:05 +00006276 if ((OpInfo.ConstraintVT.isInteger() !=
6277 Input.ConstraintVT.isInteger()) ||
Eric Christopher5427ede2011-07-14 20:13:52 +00006278 (MatchRC.second != InputRC.second)) {
John Thompson54584742010-09-24 22:24:05 +00006279 report_fatal_error("Unsupported asm: input constraint"
6280 " with a matching output constraint of"
6281 " incompatible type!");
6282 }
6283 Input.ConstraintVT = OpInfo.ConstraintVT;
6284 }
6285 }
6286
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006287 // Compute the constraint code and ConstraintType to use.
Bill Wendlingba54bca2013-06-19 21:36:55 +00006288 TLI->ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006289
Eric Christopherfffe3632013-01-11 18:12:39 +00006290 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
6291 OpInfo.Type == InlineAsm::isClobber)
6292 continue;
6293
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006294 // If this is a memory input, and if the operand is not indirect, do what we
6295 // need to to provide an address for the memory input.
6296 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
6297 !OpInfo.isIndirect) {
Evan Chengce1cdac2011-05-06 20:52:23 +00006298 assert((OpInfo.isMultipleAlternative ||
6299 (OpInfo.Type == InlineAsm::isInput)) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006300 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006301
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006302 // Memory operands really want the address of the value. If we don't have
6303 // an indirect input, put it in the constpool if we can, otherwise spill
6304 // it to a stack slot.
Eric Christophere0b42c02011-06-03 17:21:23 +00006305 // TODO: This isn't quite right. We need to handle these according to
6306 // the addressing mode that the constraint wants. Also, this may take
6307 // an additional register for the computation and we don't want that
6308 // either.
Eric Christopher471e4222011-06-08 23:55:35 +00006309
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006310 // If the operand is a float, integer, or vector constant, spill to a
6311 // constant pool entry to get its address.
Dan Gohman46510a72010-04-15 01:51:59 +00006312 const Value *OpVal = OpInfo.CallOperandVal;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006313 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
Chris Lattnera78fa8c2012-01-27 03:08:05 +00006314 isa<ConstantVector>(OpVal) || isa<ConstantDataVector>(OpVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006315 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
Bill Wendlingba54bca2013-06-19 21:36:55 +00006316 TLI->getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006317 } else {
6318 // Otherwise, create a stack slot and emit a store to it before the
6319 // asm.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006320 Type *Ty = OpVal->getType();
Bill Wendlingba54bca2013-06-19 21:36:55 +00006321 uint64_t TySize = TLI->getDataLayout()->getTypeAllocSize(Ty);
6322 unsigned Align = TLI->getDataLayout()->getPrefTypeAlignment(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006323 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006324 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align, false);
Bill Wendlingba54bca2013-06-19 21:36:55 +00006325 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI->getPointerTy());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006326 Chain = DAG.getStore(Chain, getCurSDLoc(),
Chris Lattnerecf42c42010-09-21 16:36:31 +00006327 OpInfo.CallOperand, StackSlot,
6328 MachinePointerInfo::getFixedStack(SSFI),
David Greene1e559442010-02-15 17:00:31 +00006329 false, false, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006330 OpInfo.CallOperand = StackSlot;
6331 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006332
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006333 // There is no longer a Value* corresponding to this operand.
6334 OpInfo.CallOperandVal = 0;
Bill Wendling651ad132009-12-22 01:25:10 +00006335
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006336 // It is now an indirect operand.
6337 OpInfo.isIndirect = true;
6338 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006339
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006340 // If this constraint is for a specific register, allocate it before
6341 // anything else.
6342 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Bill Wendlingba54bca2013-06-19 21:36:55 +00006343 GetRegistersForValue(DAG, *TLI, getCurSDLoc(), OpInfo);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006344 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006345
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006346 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00006347 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006348 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
6349 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006350
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006351 // C_Register operands have already been allocated, Other/Memory don't need
6352 // to be.
6353 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Bill Wendlingba54bca2013-06-19 21:36:55 +00006354 GetRegistersForValue(DAG, *TLI, getCurSDLoc(), OpInfo);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006355 }
6356
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006357 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
6358 std::vector<SDValue> AsmNodeOperands;
6359 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
6360 AsmNodeOperands.push_back(
Dan Gohmanf2d7fb32010-01-04 21:00:54 +00006361 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(),
Bill Wendlingba54bca2013-06-19 21:36:55 +00006362 TLI->getPointerTy()));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006363
Chris Lattnerdecc2672010-04-07 05:20:54 +00006364 // If we have a !srcloc metadata node associated with it, we want to attach
6365 // this to the ultimately generated inline asm machineinstr. To do this, we
6366 // pass in the third operand as this (potentially null) inline asm MDNode.
6367 const MDNode *SrcLoc = CS.getInstruction()->getMetadata("srcloc");
6368 AsmNodeOperands.push_back(DAG.getMDNode(SrcLoc));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006369
Chad Rosier3d716882012-10-30 19:11:54 +00006370 // Remember the HasSideEffect, AlignStack, AsmDialect, MayLoad and MayStore
6371 // bits as operand 3.
Evan Chengc36b7062011-01-07 23:50:32 +00006372 unsigned ExtraInfo = 0;
6373 if (IA->hasSideEffects())
6374 ExtraInfo |= InlineAsm::Extra_HasSideEffects;
6375 if (IA->isAlignStack())
6376 ExtraInfo |= InlineAsm::Extra_IsAlignStack;
Chad Rosier77fffa62012-09-05 22:17:43 +00006377 // Set the asm dialect.
Chad Rosier2f1d8152012-09-05 22:40:13 +00006378 ExtraInfo |= IA->getDialect() * InlineAsm::Extra_AsmDialect;
Chad Rosier3d716882012-10-30 19:11:54 +00006379
6380 // Determine if this InlineAsm MayLoad or MayStore based on the constraints.
6381 for (unsigned i = 0, e = TargetConstraints.size(); i != e; ++i) {
6382 TargetLowering::AsmOperandInfo &OpInfo = TargetConstraints[i];
6383
6384 // Compute the constraint code and ConstraintType to use.
Bill Wendlingba54bca2013-06-19 21:36:55 +00006385 TLI->ComputeConstraintToUse(OpInfo, SDValue());
Chad Rosier3d716882012-10-30 19:11:54 +00006386
Chad Rosierdfa4cec2012-10-30 20:01:12 +00006387 // Ideally, we would only check against memory constraints. However, the
6388 // meaning of an other constraint can be target-specific and we can't easily
6389 // reason about it. Therefore, be conservative and set MayLoad/MayStore
6390 // for other constriants as well.
Chad Rosier3d716882012-10-30 19:11:54 +00006391 if (OpInfo.ConstraintType == TargetLowering::C_Memory ||
6392 OpInfo.ConstraintType == TargetLowering::C_Other) {
6393 if (OpInfo.Type == InlineAsm::isInput)
6394 ExtraInfo |= InlineAsm::Extra_MayLoad;
6395 else if (OpInfo.Type == InlineAsm::isOutput)
6396 ExtraInfo |= InlineAsm::Extra_MayStore;
Eric Christopherfffe3632013-01-11 18:12:39 +00006397 else if (OpInfo.Type == InlineAsm::isClobber)
6398 ExtraInfo |= (InlineAsm::Extra_MayLoad | InlineAsm::Extra_MayStore);
Chad Rosier3d716882012-10-30 19:11:54 +00006399 }
6400 }
6401
Evan Chengc36b7062011-01-07 23:50:32 +00006402 AsmNodeOperands.push_back(DAG.getTargetConstant(ExtraInfo,
Bill Wendlingba54bca2013-06-19 21:36:55 +00006403 TLI->getPointerTy()));
Dale Johannesenf1e309e2010-07-02 20:16:09 +00006404
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006405 // Loop over all of the inputs, copying the operand values into the
6406 // appropriate registers and processing the output regs.
6407 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006408
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006409 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
6410 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006411
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006412 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
6413 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
6414
6415 switch (OpInfo.Type) {
6416 case InlineAsm::isOutput: {
6417 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
6418 OpInfo.ConstraintType != TargetLowering::C_Register) {
6419 // Memory output, or 'other' output (e.g. 'X' constraint).
6420 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
6421
6422 // Add information to the INLINEASM node to know about this output.
Chris Lattnerdecc2672010-04-07 05:20:54 +00006423 unsigned OpFlags = InlineAsm::getFlagWord(InlineAsm::Kind_Mem, 1);
6424 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlags,
Bill Wendlingba54bca2013-06-19 21:36:55 +00006425 TLI->getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006426 AsmNodeOperands.push_back(OpInfo.CallOperand);
6427 break;
6428 }
6429
6430 // Otherwise, this is a register or register class output.
6431
6432 // Copy the output from the appropriate register. Find a register that
6433 // we can use.
Chris Lattnerfcd70902012-01-03 23:51:01 +00006434 if (OpInfo.AssignedRegs.Regs.empty()) {
6435 LLVMContext &Ctx = *DAG.getContext();
Stephen Lin155615d2013-07-08 00:37:03 +00006436 Ctx.emitError(CS.getInstruction(),
Chris Lattnerfcd70902012-01-03 23:51:01 +00006437 "couldn't allocate output register for constraint '" +
Eric Christopher1a54c572013-07-31 01:26:24 +00006438 Twine(OpInfo.ConstraintCode) + "'");
6439 return;
Chris Lattnerfcd70902012-01-03 23:51:01 +00006440 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006441
6442 // If this is an indirect operand, store through the pointer after the
6443 // asm.
6444 if (OpInfo.isIndirect) {
6445 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
6446 OpInfo.CallOperandVal));
6447 } else {
6448 // This is the result value of the call.
Benjamin Kramerf0127052010-01-05 13:12:22 +00006449 assert(!CS.getType()->isVoidTy() && "Bad inline asm!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006450 // Concatenate this output onto the outputs list.
6451 RetValRegs.append(OpInfo.AssignedRegs);
6452 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006453
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006454 // Add information to the INLINEASM node to know that this register is
6455 // set.
Eric Christopherb0bee812013-07-30 22:50:44 +00006456 OpInfo.AssignedRegs
6457 .AddInlineAsmOperands(OpInfo.isEarlyClobber
6458 ? InlineAsm::Kind_RegDefEarlyClobber
6459 : InlineAsm::Kind_RegDef,
6460 false, 0, DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006461 break;
6462 }
6463 case InlineAsm::isInput: {
6464 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006465
Chris Lattner6bdcda32008-10-17 16:47:46 +00006466 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006467 // If this is required to match an output register we have already set,
6468 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00006469 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006470
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006471 // Scan until we find the definition we already emitted of this operand.
6472 // When we find it, create a RegsForValue operand.
Chris Lattnerdecc2672010-04-07 05:20:54 +00006473 unsigned CurOp = InlineAsm::Op_FirstOperand;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006474 for (; OperandNo; --OperandNo) {
6475 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00006476 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006477 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Chris Lattnerdecc2672010-04-07 05:20:54 +00006478 assert((InlineAsm::isRegDefKind(OpFlag) ||
6479 InlineAsm::isRegDefEarlyClobberKind(OpFlag) ||
6480 InlineAsm::isMemKind(OpFlag)) && "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00006481 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006482 }
6483
Evan Cheng697cbbf2009-03-20 18:03:34 +00006484 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006485 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Chris Lattnerdecc2672010-04-07 05:20:54 +00006486 if (InlineAsm::isRegDefKind(OpFlag) ||
6487 InlineAsm::isRegDefEarlyClobberKind(OpFlag)) {
Evan Cheng697cbbf2009-03-20 18:03:34 +00006488 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Chris Lattner6129c372010-04-08 00:09:16 +00006489 if (OpInfo.isIndirect) {
6490 // This happens on gcc/testsuite/gcc.dg/pr8788-1.c
Dan Gohman99be8ae2010-04-19 22:41:47 +00006491 LLVMContext &Ctx = *DAG.getContext();
Eric Christopher1a54c572013-07-31 01:26:24 +00006492 Ctx.emitError(CS.getInstruction(), "inline asm not supported yet:"
6493 " don't know how to handle tied "
6494 "indirect register inputs");
6495 return;
Chris Lattner6129c372010-04-08 00:09:16 +00006496 }
Michael J. Spencere70c5262010-10-16 08:25:21 +00006497
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006498 RegsForValue MatchedRegs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006499 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Patrik Hagglunda61b17c2012-12-13 06:34:11 +00006500 MVT RegVT = AsmNodeOperands[CurOp+1].getSimpleValueType();
Evan Chengfb112882009-03-23 08:01:15 +00006501 MatchedRegs.RegVTs.push_back(RegVT);
6502 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00006503 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Chad Rosier2871ba92013-04-24 22:53:10 +00006504 i != e; ++i) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00006505 if (const TargetRegisterClass *RC = TLI->getRegClassFor(RegVT))
Chad Rosier2871ba92013-04-24 22:53:10 +00006506 MatchedRegs.Regs.push_back(RegInfo.createVirtualRegister(RC));
6507 else {
6508 LLVMContext &Ctx = *DAG.getContext();
Eric Christopher1a54c572013-07-31 01:26:24 +00006509 Ctx.emitError(CS.getInstruction(),
6510 "inline asm error: This value"
Chad Rosier2871ba92013-04-24 22:53:10 +00006511 " type register class is not natively supported!");
Eric Christopher1a54c572013-07-31 01:26:24 +00006512 return;
Chad Rosier2871ba92013-04-24 22:53:10 +00006513 }
6514 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006515 // Use the produced MatchedRegs object to
Andrew Trickac6d9be2013-05-25 02:42:55 +00006516 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurSDLoc(),
Bill Wendlingf18eb582012-09-26 06:16:18 +00006517 Chain, &Flag, CS.getInstruction());
Chris Lattnerdecc2672010-04-07 05:20:54 +00006518 MatchedRegs.AddInlineAsmOperands(InlineAsm::Kind_RegUse,
Evan Chengfb112882009-03-23 08:01:15 +00006519 true, OpInfo.getMatchedOperand(),
Bill Wendling46ada192010-03-02 01:55:18 +00006520 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006521 break;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006522 }
Michael J. Spencere70c5262010-10-16 08:25:21 +00006523
Chris Lattnerdecc2672010-04-07 05:20:54 +00006524 assert(InlineAsm::isMemKind(OpFlag) && "Unknown matching constraint!");
6525 assert(InlineAsm::getNumOperandRegisters(OpFlag) == 1 &&
6526 "Unexpected number of operands");
6527 // Add information to the INLINEASM node to know about this input.
6528 // See InlineAsm.h isUseOperandTiedToDef.
6529 OpFlag = InlineAsm::getFlagWordForMatchingOp(OpFlag,
6530 OpInfo.getMatchedOperand());
6531 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Bill Wendlingba54bca2013-06-19 21:36:55 +00006532 TLI->getPointerTy()));
Chris Lattnerdecc2672010-04-07 05:20:54 +00006533 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
6534 break;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006535 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006536
Dale Johannesenb5611a62010-07-13 20:17:05 +00006537 // Treat indirect 'X' constraint as memory.
Michael J. Spencere70c5262010-10-16 08:25:21 +00006538 if (OpInfo.ConstraintType == TargetLowering::C_Other &&
6539 OpInfo.isIndirect)
Dale Johannesenb5611a62010-07-13 20:17:05 +00006540 OpInfo.ConstraintType = TargetLowering::C_Memory;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006541
Dale Johannesenb5611a62010-07-13 20:17:05 +00006542 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006543 std::vector<SDValue> Ops;
Bill Wendlingba54bca2013-06-19 21:36:55 +00006544 TLI->LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode,
6545 Ops, DAG);
Chris Lattnerfcd70902012-01-03 23:51:01 +00006546 if (Ops.empty()) {
6547 LLVMContext &Ctx = *DAG.getContext();
6548 Ctx.emitError(CS.getInstruction(),
6549 "invalid operand for inline asm constraint '" +
Eric Christopher1a54c572013-07-31 01:26:24 +00006550 Twine(OpInfo.ConstraintCode) + "'");
6551 return;
Chris Lattnerfcd70902012-01-03 23:51:01 +00006552 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006553
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006554 // Add information to the INLINEASM node to know about this input.
Chris Lattnerdecc2672010-04-07 05:20:54 +00006555 unsigned ResOpType =
6556 InlineAsm::getFlagWord(InlineAsm::Kind_Imm, Ops.size());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006557 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Bill Wendlingba54bca2013-06-19 21:36:55 +00006558 TLI->getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006559 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
6560 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +00006561 }
Michael J. Spencere70c5262010-10-16 08:25:21 +00006562
Chris Lattnerdecc2672010-04-07 05:20:54 +00006563 if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006564 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
Bill Wendlingba54bca2013-06-19 21:36:55 +00006565 assert(InOperandVal.getValueType() == TLI->getPointerTy() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006566 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006567
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006568 // Add information to the INLINEASM node to know about this input.
Chris Lattnerdecc2672010-04-07 05:20:54 +00006569 unsigned ResOpType = InlineAsm::getFlagWord(InlineAsm::Kind_Mem, 1);
Dale Johannesen86b49f82008-09-24 01:07:17 +00006570 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Bill Wendlingba54bca2013-06-19 21:36:55 +00006571 TLI->getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006572 AsmNodeOperands.push_back(InOperandVal);
6573 break;
6574 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006575
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006576 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
6577 OpInfo.ConstraintType == TargetLowering::C_Register) &&
6578 "Unknown constraint type!");
Eric Christopher9eb4f8a2012-07-02 21:16:43 +00006579
6580 // TODO: Support this.
6581 if (OpInfo.isIndirect) {
6582 LLVMContext &Ctx = *DAG.getContext();
6583 Ctx.emitError(CS.getInstruction(),
6584 "Don't know how to handle indirect register inputs yet "
Eric Christopher1a54c572013-07-31 01:26:24 +00006585 "for constraint '" +
6586 Twine(OpInfo.ConstraintCode) + "'");
6587 return;
Eric Christopher9eb4f8a2012-07-02 21:16:43 +00006588 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006589
6590 // Copy the input into the appropriate registers.
Chris Lattnerfcd70902012-01-03 23:51:01 +00006591 if (OpInfo.AssignedRegs.Regs.empty()) {
6592 LLVMContext &Ctx = *DAG.getContext();
Stephen Lin155615d2013-07-08 00:37:03 +00006593 Ctx.emitError(CS.getInstruction(),
Chris Lattnerfcd70902012-01-03 23:51:01 +00006594 "couldn't allocate input reg for constraint '" +
Eric Christopher1a54c572013-07-31 01:26:24 +00006595 Twine(OpInfo.ConstraintCode) + "'");
6596 return;
Chris Lattnerfcd70902012-01-03 23:51:01 +00006597 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006598
Andrew Trickac6d9be2013-05-25 02:42:55 +00006599 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurSDLoc(),
Bill Wendlingf18eb582012-09-26 06:16:18 +00006600 Chain, &Flag, CS.getInstruction());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006601
Chris Lattnerdecc2672010-04-07 05:20:54 +00006602 OpInfo.AssignedRegs.AddInlineAsmOperands(InlineAsm::Kind_RegUse, false, 0,
Bill Wendling46ada192010-03-02 01:55:18 +00006603 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006604 break;
6605 }
6606 case InlineAsm::isClobber: {
6607 // Add the clobbered value to the operand list, so that the register
6608 // allocator is aware that the physreg got clobbered.
6609 if (!OpInfo.AssignedRegs.Regs.empty())
Jakob Stoklund Olesenf792fa92011-06-27 04:08:33 +00006610 OpInfo.AssignedRegs.AddInlineAsmOperands(InlineAsm::Kind_Clobber,
Bill Wendling46ada192010-03-02 01:55:18 +00006611 false, 0, DAG,
Bill Wendling651ad132009-12-22 01:25:10 +00006612 AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006613 break;
6614 }
6615 }
6616 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006617
Chris Lattnerdecc2672010-04-07 05:20:54 +00006618 // Finish up input operands. Set the input chain and add the flag last.
Dale Johannesenf1e309e2010-07-02 20:16:09 +00006619 AsmNodeOperands[InlineAsm::Op_InputChain] = Chain;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006620 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006621
Andrew Trickac6d9be2013-05-25 02:42:55 +00006622 Chain = DAG.getNode(ISD::INLINEASM, getCurSDLoc(),
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006623 DAG.getVTList(MVT::Other, MVT::Glue),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006624 &AsmNodeOperands[0], AsmNodeOperands.size());
6625 Flag = Chain.getValue(1);
6626
6627 // If this asm returns a register value, copy the result from that register
6628 // and set it as the value of the call.
6629 if (!RetValRegs.Regs.empty()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006630 SDValue Val = RetValRegs.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(),
Bill Wendling12931302012-09-26 04:04:19 +00006631 Chain, &Flag, CS.getInstruction());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006632
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006633 // FIXME: Why don't we do this for inline asms with MRVs?
6634 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00006635 EVT ResultType = TLI->getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006636
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006637 // If any of the results of the inline asm is a vector, it may have the
6638 // wrong width/num elts. This can happen for register classes that can
6639 // contain multiple different value types. The preg or vreg allocated may
6640 // not have the same VT as was expected. Convert it to the right type
6641 // with bit_convert.
6642 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006643 Val = DAG.getNode(ISD::BITCAST, getCurSDLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00006644 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00006645
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006646 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006647 ResultType.isInteger() && Val.getValueType().isInteger()) {
6648 // If a result value was tied to an input value, the computed result may
6649 // have a wider width than the expected result. Extract the relevant
6650 // portion.
Andrew Trickac6d9be2013-05-25 02:42:55 +00006651 Val = DAG.getNode(ISD::TRUNCATE, getCurSDLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00006652 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006653
Chris Lattner2a0b96c2008-10-18 18:49:30 +00006654 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00006655 }
Dan Gohman95915732008-10-18 01:03:45 +00006656
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006657 setValue(CS.getInstruction(), Val);
Dale Johannesenec65a7d2009-04-14 00:56:56 +00006658 // Don't need to use this as a chain in this case.
6659 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
6660 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006661 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006662
Dan Gohman46510a72010-04-15 01:51:59 +00006663 std::vector<std::pair<SDValue, const Value *> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006664
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006665 // Process indirect outputs, first output all of the flagged copies out of
6666 // physregs.
6667 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
6668 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Dan Gohman46510a72010-04-15 01:51:59 +00006669 const Value *Ptr = IndirectStoresToEmit[i].second;
Andrew Trickac6d9be2013-05-25 02:42:55 +00006670 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(),
Bill Wendling12931302012-09-26 04:04:19 +00006671 Chain, &Flag, IA);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006672 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
6673 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006674
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006675 // Emit the non-flagged stores from the physregs.
6676 SmallVector<SDValue, 8> OutChains;
Bill Wendling651ad132009-12-22 01:25:10 +00006677 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006678 SDValue Val = DAG.getStore(Chain, getCurSDLoc(),
Bill Wendling651ad132009-12-22 01:25:10 +00006679 StoresToEmit[i].first,
6680 getValue(StoresToEmit[i].second),
Chris Lattner84bd98a2010-09-21 18:58:22 +00006681 MachinePointerInfo(StoresToEmit[i].second),
David Greene1e559442010-02-15 17:00:31 +00006682 false, false, 0);
Bill Wendling651ad132009-12-22 01:25:10 +00006683 OutChains.push_back(Val);
Bill Wendling651ad132009-12-22 01:25:10 +00006684 }
6685
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006686 if (!OutChains.empty())
Andrew Trickac6d9be2013-05-25 02:42:55 +00006687 Chain = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006688 &OutChains[0], OutChains.size());
Bill Wendling651ad132009-12-22 01:25:10 +00006689
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006690 DAG.setRoot(Chain);
6691}
6692
Dan Gohman46510a72010-04-15 01:51:59 +00006693void SelectionDAGBuilder::visitVAStart(const CallInst &I) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006694 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurSDLoc(),
Bill Wendlingc1d3c942009-12-23 00:44:51 +00006695 MVT::Other, getRoot(),
Gabor Greif0635f352010-06-25 09:38:13 +00006696 getValue(I.getArgOperand(0)),
6697 DAG.getSrcValue(I.getArgOperand(0))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006698}
6699
Dan Gohman46510a72010-04-15 01:51:59 +00006700void SelectionDAGBuilder::visitVAArg(const VAArgInst &I) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00006701 const TargetLowering *TLI = TM.getTargetLowering();
6702 const DataLayout &TD = *TLI->getDataLayout();
6703 SDValue V = DAG.getVAArg(TLI->getValueType(I.getType()), getCurSDLoc(),
Dale Johannesena04b7572009-02-03 23:04:43 +00006704 getRoot(), getValue(I.getOperand(0)),
Rafael Espindolacbeeae22010-07-11 04:01:49 +00006705 DAG.getSrcValue(I.getOperand(0)),
Rafael Espindola9d544d02010-07-12 18:11:17 +00006706 TD.getABITypeAlignment(I.getType()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006707 setValue(&I, V);
6708 DAG.setRoot(V.getValue(1));
6709}
6710
Dan Gohman46510a72010-04-15 01:51:59 +00006711void SelectionDAGBuilder::visitVAEnd(const CallInst &I) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006712 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurSDLoc(),
Bill Wendlingc1d3c942009-12-23 00:44:51 +00006713 MVT::Other, getRoot(),
Gabor Greif0635f352010-06-25 09:38:13 +00006714 getValue(I.getArgOperand(0)),
6715 DAG.getSrcValue(I.getArgOperand(0))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006716}
6717
Dan Gohman46510a72010-04-15 01:51:59 +00006718void SelectionDAGBuilder::visitVACopy(const CallInst &I) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006719 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurSDLoc(),
Bill Wendlingc1d3c942009-12-23 00:44:51 +00006720 MVT::Other, getRoot(),
Gabor Greif0635f352010-06-25 09:38:13 +00006721 getValue(I.getArgOperand(0)),
6722 getValue(I.getArgOperand(1)),
6723 DAG.getSrcValue(I.getArgOperand(0)),
6724 DAG.getSrcValue(I.getArgOperand(1))));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006725}
6726
Andrew Trick2343e3b2013-10-31 17:18:24 +00006727/// \brief Lower an argument list according to the target calling convention.
6728///
6729/// \return A tuple of <return-value, token-chain>
6730///
6731/// This is a helper for lowering intrinsics that follow a target calling
6732/// convention or require stack pointer adjustment. Only a subset of the
6733/// intrinsic's operands need to participate in the calling convention.
6734std::pair<SDValue, SDValue>
6735SelectionDAGBuilder::LowerCallOperands(const CallInst &CI, unsigned ArgIdx,
Juergen Ributzka623d2e62013-11-08 23:28:16 +00006736 unsigned NumArgs, SDValue Callee,
6737 bool useVoidTy) {
Andrew Trick2343e3b2013-10-31 17:18:24 +00006738 TargetLowering::ArgListTy Args;
6739 Args.reserve(NumArgs);
6740
6741 // Populate the argument list.
6742 // Attributes for args start at offset 1, after the return attribute.
6743 ImmutableCallSite CS(&CI);
6744 for (unsigned ArgI = ArgIdx, ArgE = ArgIdx + NumArgs, AttrI = ArgIdx + 1;
6745 ArgI != ArgE; ++ArgI) {
6746 const Value *V = CI.getOperand(ArgI);
6747
6748 assert(!V->getType()->isEmptyTy() && "Empty type passed to intrinsic.");
6749
6750 TargetLowering::ArgListEntry Entry;
6751 Entry.Node = getValue(V);
6752 Entry.Ty = V->getType();
6753 Entry.setAttributes(&CS, AttrI);
6754 Args.push_back(Entry);
6755 }
6756
Juergen Ributzka623d2e62013-11-08 23:28:16 +00006757 Type *retTy = useVoidTy ? Type::getVoidTy(*DAG.getContext()) : CI.getType();
6758 TargetLowering::CallLoweringInfo CLI(getRoot(), retTy, /*retSExt*/ false,
6759 /*retZExt*/ false, /*isVarArg*/ false, /*isInReg*/ false, NumArgs,
6760 CI.getCallingConv(), /*isTailCall*/ false, /*doesNotReturn*/ false,
Andrew Trick2343e3b2013-10-31 17:18:24 +00006761 /*isReturnValueUsed*/ CI.use_empty(), Callee, Args, DAG, getCurSDLoc());
6762
6763 const TargetLowering *TLI = TM.getTargetLowering();
6764 return TLI->LowerCallTo(CLI);
6765}
6766
6767/// \brief Lower llvm.experimental.stackmap directly to its target opcode.
6768void SelectionDAGBuilder::visitStackmap(const CallInst &CI) {
6769 // void @llvm.experimental.stackmap(i32 <id>, i32 <numShadowBytes>,
6770 // [live variables...])
6771
6772 assert(CI.getType()->isVoidTy() && "Stackmap cannot return a value.");
6773
6774 SDValue Callee = getValue(CI.getCalledValue());
6775
6776 // Lower into a call sequence with no args and no return value.
6777 std::pair<SDValue, SDValue> Result = LowerCallOperands(CI, 0, 0, Callee);
6778 // Set the root to the target-lowered call chain.
6779 SDValue Chain = Result.second;
6780 DAG.setRoot(Chain);
6781
6782 /// Get a call instruction from the call sequence chain.
6783 /// Tail calls are not allowed.
6784 SDNode *CallEnd = Chain.getNode();
6785 assert(CallEnd->getOpcode() == ISD::CALLSEQ_END &&
6786 "Expected a callseq node.");
6787 SDNode *Call = CallEnd->getOperand(0).getNode();
6788 bool hasGlue = Call->getGluedNode();
6789
Andrew Trick2343e3b2013-10-31 17:18:24 +00006790 // Replace the target specific call node with the stackmap intrinsic.
6791 SmallVector<SDValue, 8> Ops;
6792
6793 // Add the <id> and <numShadowBytes> constants.
6794 for (unsigned i = 0; i < 2; ++i) {
6795 SDValue tmp = getValue(CI.getOperand(i));
6796 Ops.push_back(DAG.getTargetConstant(
6797 cast<ConstantSDNode>(tmp)->getZExtValue(), MVT::i32));
6798 }
6799 // Push live variables for the stack map.
6800 for (unsigned i = 2, e = CI.getNumArgOperands(); i != e; ++i)
6801 Ops.push_back(getValue(CI.getArgOperand(i)));
6802
6803 // Push the chain (this is originally the first operand of the call, but
6804 // becomes now the last or second to last operand).
6805 Ops.push_back(*(Call->op_begin()));
6806
6807 // Push the glue flag (last operand).
6808 if (hasGlue)
6809 Ops.push_back(*(Call->op_end()-1));
6810
Andrew Trick2343e3b2013-10-31 17:18:24 +00006811 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trickdc8224d2013-11-05 22:44:04 +00006812
6813 // Replace the target specific call node with a STACKMAP node.
6814 MachineSDNode *MN = DAG.getMachineNode(TargetOpcode::STACKMAP, getCurSDLoc(),
6815 NodeTys, Ops);
6816
6817 // StackMap generates no value, so nothing goes in the NodeMap.
6818
6819 // Fixup the consumers of the intrinsic. The chain and glue may be used in the
6820 // call sequence.
6821 DAG.ReplaceAllUsesWith(Call, MN);
6822
6823 DAG.DeleteNode(Call);
Andrew Trick2343e3b2013-10-31 17:18:24 +00006824}
6825
6826/// \brief Lower llvm.experimental.patchpoint directly to its target opcode.
6827void SelectionDAGBuilder::visitPatchpoint(const CallInst &CI) {
6828 // void|i64 @llvm.experimental.patchpoint.void|i64(i32 <id>,
Juergen Ributzka623d2e62013-11-08 23:28:16 +00006829 // i32 <numNopBytes>,
6830 // i8* <target>,
6831 // i32 <numArgs>,
6832 // [Args...],
6833 // [live variables...])
Andrew Trick2343e3b2013-10-31 17:18:24 +00006834
Juergen Ributzka623d2e62013-11-08 23:28:16 +00006835 unsigned CC = CI.getCallingConv();
6836 bool isAnyRegCC = CC == CallingConv::AnyReg;
6837 bool hasDef = !CI.getType()->isVoidTy();
Andrew Trick2343e3b2013-10-31 17:18:24 +00006838 SDValue Callee = getValue(CI.getOperand(2)); // <target>
6839
6840 // Get the real number of arguments participating in the call <numArgs>
6841 unsigned NumArgs =
Juergen Ributzka623d2e62013-11-08 23:28:16 +00006842 cast<ConstantSDNode>(getValue(CI.getArgOperand(3)))->getZExtValue();
Andrew Trick2343e3b2013-10-31 17:18:24 +00006843
6844 // Skip the four meta args: <id>, <numNopBytes>, <target>, <numArgs>
6845 assert(CI.getNumArgOperands() >= NumArgs + 4 &&
6846 "Not enough arguments provided to the patchpoint intrinsic");
6847
Juergen Ributzka623d2e62013-11-08 23:28:16 +00006848 // For AnyRegCC the arguments are lowered later on manually.
6849 unsigned NumCallArgs = isAnyRegCC ? 0 : NumArgs;
Andrew Trick2343e3b2013-10-31 17:18:24 +00006850 std::pair<SDValue, SDValue> Result =
Juergen Ributzka623d2e62013-11-08 23:28:16 +00006851 LowerCallOperands(CI, 4, NumCallArgs, Callee, isAnyRegCC);
6852
Andrew Trick2343e3b2013-10-31 17:18:24 +00006853 // Set the root to the target-lowered call chain.
6854 SDValue Chain = Result.second;
6855 DAG.setRoot(Chain);
6856
6857 SDNode *CallEnd = Chain.getNode();
Juergen Ributzka623d2e62013-11-08 23:28:16 +00006858 if (hasDef && (CallEnd->getOpcode() == ISD::CopyFromReg))
6859 CallEnd = CallEnd->getOperand(0).getNode();
6860
Andrew Trick2343e3b2013-10-31 17:18:24 +00006861 /// Get a call instruction from the call sequence chain.
6862 /// Tail calls are not allowed.
6863 assert(CallEnd->getOpcode() == ISD::CALLSEQ_END &&
6864 "Expected a callseq node.");
6865 SDNode *Call = CallEnd->getOperand(0).getNode();
6866 bool hasGlue = Call->getGluedNode();
6867
6868 // Replace the target specific call node with the patchable intrinsic.
6869 SmallVector<SDValue, 8> Ops;
6870
6871 // Add the <id> and <numNopBytes> constants.
6872 for (unsigned i = 0; i < 2; ++i) {
6873 SDValue tmp = getValue(CI.getOperand(i));
6874 Ops.push_back(DAG.getTargetConstant(
6875 cast<ConstantSDNode>(tmp)->getZExtValue(), MVT::i32));
6876 }
6877 // Assume that the Callee is a constant address.
6878 Ops.push_back(
6879 DAG.getIntPtrConstant(cast<ConstantSDNode>(Callee)->getZExtValue()));
6880
Juergen Ributzka623d2e62013-11-08 23:28:16 +00006881 // Adjust <numArgs> to account for any arguments that have been passed on the
6882 // stack instead.
Andrew Trick2343e3b2013-10-31 17:18:24 +00006883 // Call Node: Chain, Target, {Args}, RegMask, [Glue]
Juergen Ributzka623d2e62013-11-08 23:28:16 +00006884 unsigned NumCallRegArgs = Call->getNumOperands() - (hasGlue ? 4 : 3);
6885 NumCallRegArgs = isAnyRegCC ? NumArgs : NumCallRegArgs;
6886 Ops.push_back(DAG.getTargetConstant(NumCallRegArgs, MVT::i32));
6887
6888 // Add the calling convention
6889 Ops.push_back(DAG.getTargetConstant(CC, MVT::i32));
6890
6891 // Add the arguments we omitted previously. The register allocator should
6892 // place these in any free register.
6893 if (isAnyRegCC)
6894 for (unsigned i = 4, e = NumArgs + 4; i != e; ++i)
6895 Ops.push_back(getValue(CI.getArgOperand(i)));
Andrew Trick2343e3b2013-10-31 17:18:24 +00006896
6897 // Push the arguments from the call instruction.
6898 SDNode::op_iterator e = hasGlue ? Call->op_end()-2 : Call->op_end()-1;
6899 for (SDNode::op_iterator i = Call->op_begin()+2; i != e; ++i)
6900 Ops.push_back(*i);
6901
6902 // Push live variables for the stack map.
6903 for (unsigned i = NumArgs + 4, e = CI.getNumArgOperands(); i != e; ++i) {
6904 SDValue OpVal = getValue(CI.getArgOperand(i));
6905 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(OpVal)) {
6906 Ops.push_back(
Andrew Trick3d74dea2013-10-31 22:11:56 +00006907 DAG.getTargetConstant(StackMaps::ConstantOp, MVT::i64));
6908 Ops.push_back(
Andrew Trick2343e3b2013-10-31 17:18:24 +00006909 DAG.getTargetConstant(C->getSExtValue(), MVT::i64));
6910 } else
6911 Ops.push_back(OpVal);
6912 }
6913
6914 // Push the register mask info.
6915 if (hasGlue)
6916 Ops.push_back(*(Call->op_end()-2));
6917 else
6918 Ops.push_back(*(Call->op_end()-1));
6919
6920 // Push the chain (this is originally the first operand of the call, but
6921 // becomes now the last or second to last operand).
6922 Ops.push_back(*(Call->op_begin()));
6923
6924 // Push the glue flag (last operand).
6925 if (hasGlue)
6926 Ops.push_back(*(Call->op_end()-1));
6927
Juergen Ributzka623d2e62013-11-08 23:28:16 +00006928 SDVTList NodeTys;
6929 if (isAnyRegCC && hasDef) {
6930 // Create the return types based on the intrinsic definition
6931 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6932 SmallVector<EVT, 3> ValueVTs;
6933 ComputeValueVTs(TLI, CI.getType(), ValueVTs);
6934 assert(ValueVTs.size() == 1 && "Expected only one return value type.");
Andrew Trickdc8224d2013-11-05 22:44:04 +00006935
Juergen Ributzka623d2e62013-11-08 23:28:16 +00006936 // There is always a chain and a glue type at the end
6937 ValueVTs.push_back(MVT::Other);
6938 ValueVTs.push_back(MVT::Glue);
6939 NodeTys = DAG.getVTList(ValueVTs.data(), ValueVTs.size());
6940 } else
6941 NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
6942
6943 // Replace the target specific call node with a PATCHPOINT node.
Andrew Trickdc8224d2013-11-05 22:44:04 +00006944 MachineSDNode *MN = DAG.getMachineNode(TargetOpcode::PATCHPOINT,
6945 getCurSDLoc(), NodeTys, Ops);
6946
Juergen Ributzka623d2e62013-11-08 23:28:16 +00006947 // Update the NodeMap.
6948 if (hasDef) {
6949 if (isAnyRegCC)
6950 setValue(&CI, SDValue(MN, 0));
6951 else
6952 setValue(&CI, Result.first);
6953 }
Andrew Trickdc8224d2013-11-05 22:44:04 +00006954
6955 // Fixup the consumers of the intrinsic. The chain and glue may be used in the
Juergen Ributzka623d2e62013-11-08 23:28:16 +00006956 // call sequence. Furthermore the location of the chain and glue can change
6957 // when the AnyReg calling convention is used and the intrinsic returns a
6958 // value.
6959 if (isAnyRegCC && hasDef) {
6960 SDValue From[] = {SDValue(Call, 0), SDValue(Call, 1)};
6961 SDValue To[] = {SDValue(MN, 1), SDValue(MN, 2)};
6962 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
6963 } else
6964 DAG.ReplaceAllUsesWith(Call, MN);
Andrew Trickdc8224d2013-11-05 22:44:04 +00006965 DAG.DeleteNode(Call);
Andrew Trick2343e3b2013-10-31 17:18:24 +00006966}
6967
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006968/// TargetLowering::LowerCallTo - This is the default LowerCallTo
Dan Gohman98ca4f22009-08-05 01:29:28 +00006969/// implementation, which just calls LowerCall.
6970/// FIXME: When all targets are
6971/// migrated to using LowerCall, this hook should be integrated into SDISel.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006972std::pair<SDValue, SDValue>
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00006973TargetLowering::LowerCallTo(TargetLowering::CallLoweringInfo &CLI) const {
Stephen Lin3484da92013-04-30 22:49:28 +00006974 // Handle the incoming return values from the call.
6975 CLI.Ins.clear();
6976 SmallVector<EVT, 4> RetTys;
6977 ComputeValueVTs(*this, CLI.RetTy, RetTys);
6978 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
6979 EVT VT = RetTys[I];
6980 MVT RegisterVT = getRegisterType(CLI.RetTy->getContext(), VT);
6981 unsigned NumRegs = getNumRegisters(CLI.RetTy->getContext(), VT);
6982 for (unsigned i = 0; i != NumRegs; ++i) {
6983 ISD::InputArg MyFlags;
6984 MyFlags.VT = RegisterVT;
Tom Stellardd0716b02013-10-23 00:44:24 +00006985 MyFlags.ArgVT = VT;
Stephen Lin3484da92013-04-30 22:49:28 +00006986 MyFlags.Used = CLI.IsReturnValueUsed;
6987 if (CLI.RetSExt)
6988 MyFlags.Flags.setSExt();
6989 if (CLI.RetZExt)
6990 MyFlags.Flags.setZExt();
6991 if (CLI.IsInReg)
6992 MyFlags.Flags.setInReg();
6993 CLI.Ins.push_back(MyFlags);
6994 }
6995 }
6996
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006997 // Handle all of the outgoing arguments.
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00006998 CLI.Outs.clear();
6999 CLI.OutVals.clear();
7000 ArgListTy &Args = CLI.Args;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007001 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00007002 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007003 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
7004 for (unsigned Value = 0, NumValues = ValueVTs.size();
7005 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00007006 EVT VT = ValueVTs[Value];
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007007 Type *ArgTy = VT.getTypeForEVT(CLI.RetTy->getContext());
Chris Lattner2a0b96c2008-10-18 18:49:30 +00007008 SDValue Op = SDValue(Args[i].Node.getNode(),
7009 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007010 ISD::ArgFlagsTy Flags;
7011 unsigned OriginalAlignment =
Micah Villmow3574eca2012-10-08 16:38:25 +00007012 getDataLayout()->getABITypeAlignment(ArgTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007013
7014 if (Args[i].isZExt)
7015 Flags.setZExt();
7016 if (Args[i].isSExt)
7017 Flags.setSExt();
7018 if (Args[i].isInReg)
7019 Flags.setInReg();
7020 if (Args[i].isSRet)
7021 Flags.setSRet();
7022 if (Args[i].isByVal) {
7023 Flags.setByVal();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007024 PointerType *Ty = cast<PointerType>(Args[i].Ty);
7025 Type *ElementTy = Ty->getElementType();
Micah Villmow3574eca2012-10-08 16:38:25 +00007026 Flags.setByValSize(getDataLayout()->getTypeAllocSize(ElementTy));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007027 // For ByVal, alignment should come from FE. BE will guess if this
7028 // info is not there but there are cases it cannot get right.
Chris Lattner9db20f32011-05-22 23:23:02 +00007029 unsigned FrameAlign;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007030 if (Args[i].Alignment)
7031 FrameAlign = Args[i].Alignment;
Chris Lattner9db20f32011-05-22 23:23:02 +00007032 else
7033 FrameAlign = getByValTypeAlignment(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007034 Flags.setByValAlign(FrameAlign);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007035 }
7036 if (Args[i].isNest)
7037 Flags.setNest();
7038 Flags.setOrigAlign(OriginalAlignment);
7039
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +00007040 MVT PartVT = getRegisterType(CLI.RetTy->getContext(), VT);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007041 unsigned NumParts = getNumRegisters(CLI.RetTy->getContext(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007042 SmallVector<SDValue, 4> Parts(NumParts);
7043 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
7044
7045 if (Args[i].isSExt)
7046 ExtendKind = ISD::SIGN_EXTEND;
7047 else if (Args[i].isZExt)
7048 ExtendKind = ISD::ZERO_EXTEND;
7049
Stephen Lin3484da92013-04-30 22:49:28 +00007050 // Conservatively only handle 'returned' on non-vectors for now
7051 if (Args[i].isReturned && !Op.getValueType().isVector()) {
7052 assert(CLI.RetTy == Args[i].Ty && RetTys.size() == NumValues &&
7053 "unexpected use of 'returned'");
7054 // Before passing 'returned' to the target lowering code, ensure that
7055 // either the register MVT and the actual EVT are the same size or that
7056 // the return value and argument are extended in the same way; in these
7057 // cases it's safe to pass the argument register value unchanged as the
7058 // return register value (although it's at the target's option whether
7059 // to do so)
7060 // TODO: allow code generation to take advantage of partially preserved
7061 // registers rather than clobbering the entire register when the
7062 // parameter extension method is not compatible with the return
7063 // extension method
7064 if ((NumParts * PartVT.getSizeInBits() == VT.getSizeInBits()) ||
7065 (ExtendKind != ISD::ANY_EXTEND &&
7066 CLI.RetSExt == Args[i].isSExt && CLI.RetZExt == Args[i].isZExt))
7067 Flags.setReturned();
7068 }
7069
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007070 getCopyToParts(CLI.DAG, CLI.DL, Op, &Parts[0], NumParts,
Bill Wendlingf18eb582012-09-26 06:16:18 +00007071 PartVT, CLI.CS ? CLI.CS->getInstruction() : 0, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007072
Dan Gohman98ca4f22009-08-05 01:29:28 +00007073 for (unsigned j = 0; j != NumParts; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007074 // if it isn't first piece, alignment must be 1
Tom Stellardd0716b02013-10-23 00:44:24 +00007075 ISD::OutputArg MyFlags(Flags, Parts[j].getValueType(), VT,
Manman Ren0a1544d2012-11-01 23:49:58 +00007076 i < CLI.NumFixedArgs,
7077 i, j*Parts[j].getValueType().getStoreSize());
Dan Gohman98ca4f22009-08-05 01:29:28 +00007078 if (NumParts > 1 && j == 0)
7079 MyFlags.Flags.setSplit();
7080 else if (j != 0)
7081 MyFlags.Flags.setOrigAlign(1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007082
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007083 CLI.Outs.push_back(MyFlags);
7084 CLI.OutVals.push_back(Parts[j]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007085 }
7086 }
7087 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00007088
Dan Gohman98ca4f22009-08-05 01:29:28 +00007089 SmallVector<SDValue, 4> InVals;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007090 CLI.Chain = LowerCall(CLI, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00007091
7092 // Verify that the target's LowerCall behaved as expected.
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007093 assert(CLI.Chain.getNode() && CLI.Chain.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00007094 "LowerCall didn't return a valid chain!");
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007095 assert((!CLI.IsTailCall || InVals.empty()) &&
Dan Gohman5e866062009-08-06 15:37:27 +00007096 "LowerCall emitted a return value for a tail call!");
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007097 assert((CLI.IsTailCall || InVals.size() == CLI.Ins.size()) &&
Dan Gohman5e866062009-08-06 15:37:27 +00007098 "LowerCall didn't emit the correct number of values!");
Dan Gohman98ca4f22009-08-05 01:29:28 +00007099
7100 // For a tail call, the return value is merely live-out and there aren't
7101 // any nodes in the DAG representing it. Return a special value to
7102 // indicate that a tail call has been emitted and no more Instructions
7103 // should be processed in the current block.
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007104 if (CLI.IsTailCall) {
7105 CLI.DAG.setRoot(CLI.Chain);
Dan Gohman98ca4f22009-08-05 01:29:28 +00007106 return std::make_pair(SDValue(), SDValue());
7107 }
7108
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007109 DEBUG(for (unsigned i = 0, e = CLI.Ins.size(); i != e; ++i) {
Evan Chengaf1871f2010-03-11 19:38:18 +00007110 assert(InVals[i].getNode() &&
7111 "LowerCall emitted a null value!");
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007112 assert(EVT(CLI.Ins[i].VT) == InVals[i].getValueType() &&
Evan Chengaf1871f2010-03-11 19:38:18 +00007113 "LowerCall emitted a value with the wrong type!");
7114 });
7115
Dan Gohman98ca4f22009-08-05 01:29:28 +00007116 // Collect the legal value parts into potentially illegal values
7117 // that correspond to the original function's return values.
7118 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007119 if (CLI.RetSExt)
Dan Gohman98ca4f22009-08-05 01:29:28 +00007120 AssertOp = ISD::AssertSext;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007121 else if (CLI.RetZExt)
Dan Gohman98ca4f22009-08-05 01:29:28 +00007122 AssertOp = ISD::AssertZext;
7123 SmallVector<SDValue, 4> ReturnValues;
7124 unsigned CurReg = 0;
7125 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00007126 EVT VT = RetTys[I];
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +00007127 MVT RegisterVT = getRegisterType(CLI.RetTy->getContext(), VT);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007128 unsigned NumRegs = getNumRegisters(CLI.RetTy->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00007129
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007130 ReturnValues.push_back(getCopyFromParts(CLI.DAG, CLI.DL, &InVals[CurReg],
Bill Wendling12931302012-09-26 04:04:19 +00007131 NumRegs, RegisterVT, VT, NULL,
Bill Wendling4533cac2010-01-28 21:51:40 +00007132 AssertOp));
Dan Gohman98ca4f22009-08-05 01:29:28 +00007133 CurReg += NumRegs;
7134 }
7135
7136 // For a function returning void, there is no return value. We can't create
7137 // such a node, so we just return a null return value in that case. In
Chris Lattner7a2bdde2011-04-15 05:18:47 +00007138 // that case, nothing will actually look at the value.
Dan Gohman98ca4f22009-08-05 01:29:28 +00007139 if (ReturnValues.empty())
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007140 return std::make_pair(SDValue(), CLI.Chain);
Dan Gohman98ca4f22009-08-05 01:29:28 +00007141
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007142 SDValue Res = CLI.DAG.getNode(ISD::MERGE_VALUES, CLI.DL,
7143 CLI.DAG.getVTList(&RetTys[0], RetTys.size()),
Dan Gohman98ca4f22009-08-05 01:29:28 +00007144 &ReturnValues[0], ReturnValues.size());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00007145 return std::make_pair(Res, CLI.Chain);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007146}
7147
Duncan Sands9fbc7e22009-01-21 09:00:29 +00007148void TargetLowering::LowerOperationWrapper(SDNode *N,
7149 SmallVectorImpl<SDValue> &Results,
Dan Gohmand858e902010-04-17 15:26:15 +00007150 SelectionDAG &DAG) const {
Duncan Sands9fbc7e22009-01-21 09:00:29 +00007151 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00007152 if (Res.getNode())
7153 Results.push_back(Res);
7154}
7155
Dan Gohmand858e902010-04-17 15:26:15 +00007156SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Torok Edwinc23197a2009-07-14 16:55:14 +00007157 llvm_unreachable("LowerOperation not implemented for this target!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007158}
7159
Dan Gohman46510a72010-04-15 01:51:59 +00007160void
7161SelectionDAGBuilder::CopyValueToVirtualRegister(const Value *V, unsigned Reg) {
Dan Gohman28a17352010-07-01 01:59:43 +00007162 SDValue Op = getNonRegisterValue(V);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007163 assert((Op.getOpcode() != ISD::CopyFromReg ||
7164 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
7165 "Copy from a reg to the same reg!");
7166 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
7167
Bill Wendlingba54bca2013-06-19 21:36:55 +00007168 const TargetLowering *TLI = TM.getTargetLowering();
7169 RegsForValue RFV(V->getContext(), *TLI, Reg, V->getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007170 SDValue Chain = DAG.getEntryNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007171 RFV.getCopyToRegs(Op, DAG, getCurSDLoc(), Chain, 0, V);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007172 PendingExports.push_back(Chain);
7173}
7174
7175#include "llvm/CodeGen/SelectionDAGISel.h"
7176
Eli Friedman23d32432011-05-05 16:53:34 +00007177/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
7178/// entry block, return true. This includes arguments used by switches, since
7179/// the switch may expand into multiple basic blocks.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00007180static bool isOnlyUsedInEntryBlock(const Argument *A, bool FastISel) {
Eli Friedman23d32432011-05-05 16:53:34 +00007181 // With FastISel active, we may be splitting blocks, so force creation
7182 // of virtual registers for all non-dead arguments.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00007183 if (FastISel)
Eli Friedman23d32432011-05-05 16:53:34 +00007184 return A->use_empty();
7185
7186 const BasicBlock *Entry = A->getParent()->begin();
7187 for (Value::const_use_iterator UI = A->use_begin(), E = A->use_end();
7188 UI != E; ++UI) {
7189 const User *U = *UI;
7190 if (cast<Instruction>(U)->getParent() != Entry || isa<SwitchInst>(U))
7191 return false; // Use not in entry block.
7192 }
7193 return true;
7194}
7195
Eli Bendersky6437d382013-02-28 23:09:18 +00007196void SelectionDAGISel::LowerArguments(const Function &F) {
Dan Gohman2048b852009-11-23 18:04:58 +00007197 SelectionDAG &DAG = SDB->DAG;
Andrew Trickac6d9be2013-05-25 02:42:55 +00007198 SDLoc dl = SDB->getCurSDLoc();
Bill Wendlingba54bca2013-06-19 21:36:55 +00007199 const TargetLowering *TLI = getTargetLowering();
Bill Wendling6a2e7ac2013-06-06 00:43:09 +00007200 const DataLayout *TD = TLI->getDataLayout();
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00007201 SmallVector<ISD::InputArg, 16> Ins;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007202
Dan Gohman7451d3e2010-05-29 17:03:36 +00007203 if (!FuncInfo->CanLowerReturn) {
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00007204 // Put in an sret pointer parameter before all the other parameters.
7205 SmallVector<EVT, 1> ValueVTs;
Bill Wendlingba54bca2013-06-19 21:36:55 +00007206 ComputeValueVTs(*getTargetLowering(),
7207 PointerType::getUnqual(F.getReturnType()), ValueVTs);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00007208
7209 // NOTE: Assuming that a pointer will never break down to more than one VT
7210 // or one register.
7211 ISD::ArgFlagsTy Flags;
7212 Flags.setSRet();
Bill Wendling6a2e7ac2013-06-06 00:43:09 +00007213 MVT RegisterVT = TLI->getRegisterType(*DAG.getContext(), ValueVTs[0]);
Tom Stellardd0716b02013-10-23 00:44:24 +00007214 ISD::InputArg RetArg(Flags, RegisterVT, ValueVTs[0], true, 0, 0);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00007215 Ins.push_back(RetArg);
7216 }
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00007217
Dan Gohman98ca4f22009-08-05 01:29:28 +00007218 // Set up the incoming argument description vector.
Dan Gohman98ca4f22009-08-05 01:29:28 +00007219 unsigned Idx = 1;
Dan Gohman46510a72010-04-15 01:51:59 +00007220 for (Function::const_arg_iterator I = F.arg_begin(), E = F.arg_end();
Dan Gohman98ca4f22009-08-05 01:29:28 +00007221 I != E; ++I, ++Idx) {
Owen Andersone50ed302009-08-10 22:56:29 +00007222 SmallVector<EVT, 4> ValueVTs;
Bill Wendling6a2e7ac2013-06-06 00:43:09 +00007223 ComputeValueVTs(*TLI, I->getType(), ValueVTs);
Dan Gohman98ca4f22009-08-05 01:29:28 +00007224 bool isArgValueUsed = !I->use_empty();
Tom Stellardd0716b02013-10-23 00:44:24 +00007225 unsigned PartBase = 0;
Dan Gohman98ca4f22009-08-05 01:29:28 +00007226 for (unsigned Value = 0, NumValues = ValueVTs.size();
7227 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00007228 EVT VT = ValueVTs[Value];
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007229 Type *ArgTy = VT.getTypeForEVT(*DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00007230 ISD::ArgFlagsTy Flags;
7231 unsigned OriginalAlignment =
7232 TD->getABITypeAlignment(ArgTy);
7233
Bill Wendling39cd0c82012-12-30 12:45:13 +00007234 if (F.getAttributes().hasAttribute(Idx, Attribute::ZExt))
Dan Gohman98ca4f22009-08-05 01:29:28 +00007235 Flags.setZExt();
Bill Wendling39cd0c82012-12-30 12:45:13 +00007236 if (F.getAttributes().hasAttribute(Idx, Attribute::SExt))
Dan Gohman98ca4f22009-08-05 01:29:28 +00007237 Flags.setSExt();
Bill Wendling39cd0c82012-12-30 12:45:13 +00007238 if (F.getAttributes().hasAttribute(Idx, Attribute::InReg))
Dan Gohman98ca4f22009-08-05 01:29:28 +00007239 Flags.setInReg();
Bill Wendling39cd0c82012-12-30 12:45:13 +00007240 if (F.getAttributes().hasAttribute(Idx, Attribute::StructRet))
Dan Gohman98ca4f22009-08-05 01:29:28 +00007241 Flags.setSRet();
Bill Wendling39cd0c82012-12-30 12:45:13 +00007242 if (F.getAttributes().hasAttribute(Idx, Attribute::ByVal)) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00007243 Flags.setByVal();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007244 PointerType *Ty = cast<PointerType>(I->getType());
7245 Type *ElementTy = Ty->getElementType();
Chris Lattner9db20f32011-05-22 23:23:02 +00007246 Flags.setByValSize(TD->getTypeAllocSize(ElementTy));
Dan Gohman98ca4f22009-08-05 01:29:28 +00007247 // For ByVal, alignment should be passed from FE. BE will guess if
7248 // this info is not there but there are cases it cannot get right.
Chris Lattner9db20f32011-05-22 23:23:02 +00007249 unsigned FrameAlign;
Dan Gohman98ca4f22009-08-05 01:29:28 +00007250 if (F.getParamAlignment(Idx))
7251 FrameAlign = F.getParamAlignment(Idx);
Chris Lattner9db20f32011-05-22 23:23:02 +00007252 else
Bill Wendling6a2e7ac2013-06-06 00:43:09 +00007253 FrameAlign = TLI->getByValTypeAlignment(ElementTy);
Dan Gohman98ca4f22009-08-05 01:29:28 +00007254 Flags.setByValAlign(FrameAlign);
Dan Gohman98ca4f22009-08-05 01:29:28 +00007255 }
Bill Wendling39cd0c82012-12-30 12:45:13 +00007256 if (F.getAttributes().hasAttribute(Idx, Attribute::Nest))
Dan Gohman98ca4f22009-08-05 01:29:28 +00007257 Flags.setNest();
7258 Flags.setOrigAlign(OriginalAlignment);
7259
Bill Wendling6a2e7ac2013-06-06 00:43:09 +00007260 MVT RegisterVT = TLI->getRegisterType(*CurDAG->getContext(), VT);
7261 unsigned NumRegs = TLI->getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00007262 for (unsigned i = 0; i != NumRegs; ++i) {
Tom Stellardd0716b02013-10-23 00:44:24 +00007263 ISD::InputArg MyFlags(Flags, RegisterVT, VT, isArgValueUsed,
7264 Idx-1, PartBase+i*RegisterVT.getStoreSize());
Dan Gohman98ca4f22009-08-05 01:29:28 +00007265 if (NumRegs > 1 && i == 0)
7266 MyFlags.Flags.setSplit();
7267 // if it isn't first piece, alignment must be 1
7268 else if (i > 0)
7269 MyFlags.Flags.setOrigAlign(1);
7270 Ins.push_back(MyFlags);
7271 }
Tom Stellardd0716b02013-10-23 00:44:24 +00007272 PartBase += VT.getStoreSize();
Dan Gohman98ca4f22009-08-05 01:29:28 +00007273 }
7274 }
7275
7276 // Call the target to set up the argument values.
7277 SmallVector<SDValue, 8> InVals;
Bill Wendling6a2e7ac2013-06-06 00:43:09 +00007278 SDValue NewRoot = TLI->LowerFormalArguments(DAG.getRoot(), F.getCallingConv(),
7279 F.isVarArg(), Ins,
7280 dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00007281
7282 // Verify that the target's LowerFormalArguments behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00007283 assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00007284 "LowerFormalArguments didn't return a valid chain!");
7285 assert(InVals.size() == Ins.size() &&
7286 "LowerFormalArguments didn't emit the correct number of values!");
Bill Wendling3ea58b62009-12-22 21:35:02 +00007287 DEBUG({
7288 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
7289 assert(InVals[i].getNode() &&
7290 "LowerFormalArguments emitted a null value!");
Duncan Sands1440e8b2010-11-03 11:35:31 +00007291 assert(EVT(Ins[i].VT) == InVals[i].getValueType() &&
Bill Wendling3ea58b62009-12-22 21:35:02 +00007292 "LowerFormalArguments emitted a value with the wrong type!");
7293 }
7294 });
Bill Wendling3ea3c242009-12-22 02:10:19 +00007295
Dan Gohman5e866062009-08-06 15:37:27 +00007296 // Update the DAG with the new chain value resulting from argument lowering.
Dan Gohman98ca4f22009-08-05 01:29:28 +00007297 DAG.setRoot(NewRoot);
7298
7299 // Set up the argument values.
7300 unsigned i = 0;
7301 Idx = 1;
Dan Gohman7451d3e2010-05-29 17:03:36 +00007302 if (!FuncInfo->CanLowerReturn) {
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00007303 // Create a virtual register for the sret pointer, and put in a copy
7304 // from the sret argument into it.
7305 SmallVector<EVT, 1> ValueVTs;
Bill Wendling6a2e7ac2013-06-06 00:43:09 +00007306 ComputeValueVTs(*TLI, PointerType::getUnqual(F.getReturnType()), ValueVTs);
Patrik Hagglunda61b17c2012-12-13 06:34:11 +00007307 MVT VT = ValueVTs[0].getSimpleVT();
Bill Wendling6a2e7ac2013-06-06 00:43:09 +00007308 MVT RegVT = TLI->getRegisterType(*CurDAG->getContext(), VT);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00007309 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Bill Wendling46ada192010-03-02 01:55:18 +00007310 SDValue ArgValue = getCopyFromParts(DAG, dl, &InVals[0], 1,
Bill Wendling12931302012-09-26 04:04:19 +00007311 RegVT, VT, NULL, AssertOp);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00007312
Dan Gohman2048b852009-11-23 18:04:58 +00007313 MachineFunction& MF = SDB->DAG.getMachineFunction();
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00007314 MachineRegisterInfo& RegInfo = MF.getRegInfo();
Bill Wendling6a2e7ac2013-06-06 00:43:09 +00007315 unsigned SRetReg = RegInfo.createVirtualRegister(TLI->getRegClassFor(RegVT));
Dan Gohman7451d3e2010-05-29 17:03:36 +00007316 FuncInfo->DemoteRegister = SRetReg;
Andrew Trickac6d9be2013-05-25 02:42:55 +00007317 NewRoot = SDB->DAG.getCopyToReg(NewRoot, SDB->getCurSDLoc(),
Mikhail Glushenkovb3c01992010-01-01 04:41:22 +00007318 SRetReg, ArgValue);
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00007319 DAG.setRoot(NewRoot);
Bill Wendling3ea3c242009-12-22 02:10:19 +00007320
Kenneth Uildriksc158dde2009-11-11 19:59:24 +00007321 // i indexes lowered arguments. Bump it past the hidden sret argument.
7322 // Idx indexes LLVM arguments. Don't touch it.
7323 ++i;
7324 }
Bill Wendling3ea3c242009-12-22 02:10:19 +00007325
Dan Gohman46510a72010-04-15 01:51:59 +00007326 for (Function::const_arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
Dan Gohman98ca4f22009-08-05 01:29:28 +00007327 ++I, ++Idx) {
7328 SmallVector<SDValue, 4> ArgValues;
Owen Andersone50ed302009-08-10 22:56:29 +00007329 SmallVector<EVT, 4> ValueVTs;
Bill Wendling6a2e7ac2013-06-06 00:43:09 +00007330 ComputeValueVTs(*TLI, I->getType(), ValueVTs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007331 unsigned NumValues = ValueVTs.size();
Devang Patel9126c0d2010-06-01 19:59:01 +00007332
7333 // If this argument is unused then remember its value. It is used to generate
7334 // debugging information.
Adrian Prantldf688032013-05-16 23:44:12 +00007335 if (I->use_empty() && NumValues) {
Devang Patel9126c0d2010-06-01 19:59:01 +00007336 SDB->setUnusedArgValue(I, InVals[i]);
7337
Adrian Prantldf688032013-05-16 23:44:12 +00007338 // Also remember any frame index for use in FastISel.
7339 if (FrameIndexSDNode *FI =
7340 dyn_cast<FrameIndexSDNode>(InVals[i].getNode()))
7341 FuncInfo->setArgumentFrameIndex(I, FI->getIndex());
7342 }
7343
Eli Friedman23d32432011-05-05 16:53:34 +00007344 for (unsigned Val = 0; Val != NumValues; ++Val) {
7345 EVT VT = ValueVTs[Val];
Bill Wendling6a2e7ac2013-06-06 00:43:09 +00007346 MVT PartVT = TLI->getRegisterType(*CurDAG->getContext(), VT);
7347 unsigned NumParts = TLI->getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00007348
7349 if (!I->use_empty()) {
7350 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Bill Wendling39cd0c82012-12-30 12:45:13 +00007351 if (F.getAttributes().hasAttribute(Idx, Attribute::SExt))
Dan Gohman98ca4f22009-08-05 01:29:28 +00007352 AssertOp = ISD::AssertSext;
Bill Wendling39cd0c82012-12-30 12:45:13 +00007353 else if (F.getAttributes().hasAttribute(Idx, Attribute::ZExt))
Dan Gohman98ca4f22009-08-05 01:29:28 +00007354 AssertOp = ISD::AssertZext;
7355
Bill Wendling46ada192010-03-02 01:55:18 +00007356 ArgValues.push_back(getCopyFromParts(DAG, dl, &InVals[i],
Bill Wendling3ea3c242009-12-22 02:10:19 +00007357 NumParts, PartVT, VT,
Bill Wendling12931302012-09-26 04:04:19 +00007358 NULL, AssertOp));
Dan Gohman98ca4f22009-08-05 01:29:28 +00007359 }
Bill Wendling3ea3c242009-12-22 02:10:19 +00007360
Dan Gohman98ca4f22009-08-05 01:29:28 +00007361 i += NumParts;
7362 }
Bill Wendling3ea3c242009-12-22 02:10:19 +00007363
Eli Friedman23d32432011-05-05 16:53:34 +00007364 // We don't need to do anything else for unused arguments.
7365 if (ArgValues.empty())
7366 continue;
7367
Devang Patel9aee3352011-09-08 22:59:09 +00007368 // Note down frame index.
7369 if (FrameIndexSDNode *FI =
Bill Wendling96cb1122012-07-19 00:04:14 +00007370 dyn_cast<FrameIndexSDNode>(ArgValues[0].getNode()))
Devang Patel9aee3352011-09-08 22:59:09 +00007371 FuncInfo->setArgumentFrameIndex(I, FI->getIndex());
Devang Patel0b48ead2010-08-31 22:22:42 +00007372
Eli Friedman23d32432011-05-05 16:53:34 +00007373 SDValue Res = DAG.getMergeValues(&ArgValues[0], NumValues,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007374 SDB->getCurSDLoc());
Devang Patel9aee3352011-09-08 22:59:09 +00007375
Eli Friedman23d32432011-05-05 16:53:34 +00007376 SDB->setValue(I, Res);
Nick Lewycky8a8d4792011-12-02 22:16:29 +00007377 if (!TM.Options.EnableFastISel && Res.getOpcode() == ISD::BUILD_PAIR) {
Stephen Lin155615d2013-07-08 00:37:03 +00007378 if (LoadSDNode *LNode =
Devang Patel9aee3352011-09-08 22:59:09 +00007379 dyn_cast<LoadSDNode>(Res.getOperand(0).getNode()))
7380 if (FrameIndexSDNode *FI =
7381 dyn_cast<FrameIndexSDNode>(LNode->getBasePtr().getNode()))
7382 FuncInfo->setArgumentFrameIndex(I, FI->getIndex());
7383 }
Bill Wendling3ea3c242009-12-22 02:10:19 +00007384
Eli Friedman23d32432011-05-05 16:53:34 +00007385 // If this argument is live outside of the entry block, insert a copy from
7386 // wherever we got it to the vreg that other BB's will reference it as.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00007387 if (!TM.Options.EnableFastISel && Res.getOpcode() == ISD::CopyFromReg) {
Eli Friedman23d32432011-05-05 16:53:34 +00007388 // If we can, though, try to skip creating an unnecessary vreg.
7389 // FIXME: This isn't very clean... it would be nice to make this more
Eli Friedman7f33d672011-05-10 21:50:58 +00007390 // general. It's also subtly incompatible with the hacks FastISel
7391 // uses with vregs.
Eli Friedman23d32432011-05-05 16:53:34 +00007392 unsigned Reg = cast<RegisterSDNode>(Res.getOperand(1))->getReg();
7393 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
7394 FuncInfo->ValueMap[I] = Reg;
7395 continue;
7396 }
7397 }
Nick Lewycky8a8d4792011-12-02 22:16:29 +00007398 if (!isOnlyUsedInEntryBlock(I, TM.Options.EnableFastISel)) {
Eli Friedman23d32432011-05-05 16:53:34 +00007399 FuncInfo->InitializeRegForValue(I);
Dan Gohman2048b852009-11-23 18:04:58 +00007400 SDB->CopyToExportRegsIfNeeded(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007401 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007402 }
Bill Wendling3ea3c242009-12-22 02:10:19 +00007403
Dan Gohman98ca4f22009-08-05 01:29:28 +00007404 assert(i == InVals.size() && "Argument register count mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007405
7406 // Finally, if the target has anything special to do, allow it to do so.
7407 // FIXME: this should insert code into the DAG!
Dan Gohman64652652010-04-14 20:17:22 +00007408 EmitFunctionEntryCode();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007409}
7410
7411/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
7412/// ensure constants are generated when needed. Remember the virtual registers
7413/// that need to be added to the Machine PHI nodes as input. We cannot just
7414/// directly add them, because expansion might result in multiple MBB's for one
7415/// BB. As such, the start of the BB might correspond to a different MBB than
7416/// the end.
7417///
7418void
Dan Gohmanf81eca02010-04-22 20:46:50 +00007419SelectionDAGBuilder::HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB) {
Dan Gohman46510a72010-04-15 01:51:59 +00007420 const TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007421
7422 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
7423
7424 // Check successor nodes' PHI nodes that expect a constant to be available
7425 // from this block.
7426 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
Dan Gohman46510a72010-04-15 01:51:59 +00007427 const BasicBlock *SuccBB = TI->getSuccessor(succ);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007428 if (!isa<PHINode>(SuccBB->begin())) continue;
Dan Gohmanf81eca02010-04-22 20:46:50 +00007429 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00007430
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007431 // If this terminator has multiple identical successors (common for
7432 // switches), only handle each succ once.
7433 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00007434
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007435 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007436
7437 // At this point we know that there is a 1-1 correspondence between LLVM PHI
7438 // nodes and Machine PHI nodes, but the incoming operands have not been
7439 // emitted yet.
Dan Gohman46510a72010-04-15 01:51:59 +00007440 for (BasicBlock::const_iterator I = SuccBB->begin();
7441 const PHINode *PN = dyn_cast<PHINode>(I); ++I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007442 // Ignore dead phi's.
7443 if (PN->use_empty()) continue;
7444
Rafael Espindola3fa82832011-05-13 15:18:06 +00007445 // Skip empty types
7446 if (PN->getType()->isEmptyTy())
7447 continue;
7448
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007449 unsigned Reg;
Dan Gohman46510a72010-04-15 01:51:59 +00007450 const Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007451
Dan Gohman46510a72010-04-15 01:51:59 +00007452 if (const Constant *C = dyn_cast<Constant>(PHIOp)) {
Dan Gohmanf81eca02010-04-22 20:46:50 +00007453 unsigned &RegOut = ConstantsOut[C];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007454 if (RegOut == 0) {
Dan Gohman89496d02010-07-02 00:10:16 +00007455 RegOut = FuncInfo.CreateRegs(C->getType());
Dan Gohmanf81eca02010-04-22 20:46:50 +00007456 CopyValueToVirtualRegister(C, RegOut);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007457 }
7458 Reg = RegOut;
7459 } else {
Dan Gohmanc25ad632010-07-01 01:33:21 +00007460 DenseMap<const Value *, unsigned>::iterator I =
7461 FuncInfo.ValueMap.find(PHIOp);
7462 if (I != FuncInfo.ValueMap.end())
7463 Reg = I->second;
7464 else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007465 assert(isa<AllocaInst>(PHIOp) &&
Dan Gohmanf81eca02010-04-22 20:46:50 +00007466 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007467 "Didn't codegen value into a register!??");
Dan Gohman89496d02010-07-02 00:10:16 +00007468 Reg = FuncInfo.CreateRegs(PHIOp->getType());
Dan Gohmanf81eca02010-04-22 20:46:50 +00007469 CopyValueToVirtualRegister(PHIOp, Reg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007470 }
7471 }
7472
7473 // Remember that this register needs to added to the machine PHI node as
7474 // the input for this MBB.
Owen Andersone50ed302009-08-10 22:56:29 +00007475 SmallVector<EVT, 4> ValueVTs;
Bill Wendlingba54bca2013-06-19 21:36:55 +00007476 const TargetLowering *TLI = TM.getTargetLowering();
7477 ComputeValueVTs(*TLI, PN->getType(), ValueVTs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007478 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
Owen Andersone50ed302009-08-10 22:56:29 +00007479 EVT VT = ValueVTs[vti];
Bill Wendlingba54bca2013-06-19 21:36:55 +00007480 unsigned NumRegisters = TLI->getNumRegisters(*DAG.getContext(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007481 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
Dan Gohmanf81eca02010-04-22 20:46:50 +00007482 FuncInfo.PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00007483 Reg += NumRegisters;
7484 }
7485 }
7486 }
Bill Wendlingba54bca2013-06-19 21:36:55 +00007487
Dan Gohmanf81eca02010-04-22 20:46:50 +00007488 ConstantsOut.clear();
Dan Gohman3df24e62008-09-03 23:12:08 +00007489}
Michael Gottesman657484f2013-08-20 07:00:16 +00007490
7491/// Add a successor MBB to ParentMBB< creating a new MachineBB for BB if SuccMBB
7492/// is 0.
7493MachineBasicBlock *
7494SelectionDAGBuilder::StackProtectorDescriptor::
7495AddSuccessorMBB(const BasicBlock *BB,
7496 MachineBasicBlock *ParentMBB,
7497 MachineBasicBlock *SuccMBB) {
7498 // If SuccBB has not been created yet, create it.
7499 if (!SuccMBB) {
7500 MachineFunction *MF = ParentMBB->getParent();
7501 MachineFunction::iterator BBI = ParentMBB;
7502 SuccMBB = MF->CreateMachineBasicBlock(BB);
7503 MF->insert(++BBI, SuccMBB);
7504 }
7505 // Add it as a successor of ParentMBB.
7506 ParentMBB->addSuccessor(SuccMBB);
7507 return SuccMBB;
7508}