blob: 9e3ab2454de758a1550e0bfc7a2f41408822d3b8 [file] [log] [blame]
Nick Lewycky50f02cb2011-12-02 22:16:29 +00001//===-- Analysis.cpp - CodeGen LLVM IR Analysis Utilities -----------------===//
Dan Gohman450aa642010-04-21 01:22:34 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Dan Gohman450aa642010-04-21 01:22:34 +00006//
7//===----------------------------------------------------------------------===//
8//
Eric Christopherdb5028b2014-06-10 20:07:29 +00009// This file defines several CodeGen-specific LLVM IR analysis utilities.
Dan Gohman450aa642010-04-21 01:22:34 +000010//
11//===----------------------------------------------------------------------===//
12
Eric Christopher09fc2762014-06-10 20:39:35 +000013#include "llvm/CodeGen/Analysis.h"
Eric Christopherdda00092014-06-25 22:36:37 +000014#include "llvm/Analysis/ValueTracking.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/CodeGen/MachineFunction.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000016#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000017#include "llvm/CodeGen/TargetLowering.h"
18#include "llvm/CodeGen/TargetSubtargetInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000019#include "llvm/IR/DataLayout.h"
20#include "llvm/IR/DerivedTypes.h"
21#include "llvm/IR/Function.h"
22#include "llvm/IR/Instructions.h"
23#include "llvm/IR/IntrinsicInst.h"
24#include "llvm/IR/LLVMContext.h"
25#include "llvm/IR/Module.h"
Dan Gohman450aa642010-04-21 01:22:34 +000026#include "llvm/Support/ErrorHandling.h"
27#include "llvm/Support/MathExtras.h"
Rafael Espindolaf21434c2014-07-30 19:42:16 +000028#include "llvm/Transforms/Utils/GlobalStatus.h"
Eric Christopherd9134482014-08-04 21:25:23 +000029
Dan Gohman450aa642010-04-21 01:22:34 +000030using namespace llvm;
31
Mehdi Amini8923cc52015-01-14 05:33:01 +000032/// Compute the linearized index of a member in a nested aggregate/struct/array
33/// by recursing and accumulating CurIndex as long as there are indices in the
34/// index list.
Chris Lattner229907c2011-07-18 04:54:35 +000035unsigned llvm::ComputeLinearIndex(Type *Ty,
Dan Gohman450aa642010-04-21 01:22:34 +000036 const unsigned *Indices,
37 const unsigned *IndicesEnd,
38 unsigned CurIndex) {
39 // Base case: We're done.
40 if (Indices && Indices == IndicesEnd)
41 return CurIndex;
42
43 // Given a struct type, recursively traverse the elements.
Chris Lattner229907c2011-07-18 04:54:35 +000044 if (StructType *STy = dyn_cast<StructType>(Ty)) {
Dan Gohman450aa642010-04-21 01:22:34 +000045 for (StructType::element_iterator EB = STy->element_begin(),
46 EI = EB,
47 EE = STy->element_end();
48 EI != EE; ++EI) {
49 if (Indices && *Indices == unsigned(EI - EB))
Dan Gohmanaadc5592010-10-06 16:18:29 +000050 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex);
Craig Topperc0196b12014-04-14 00:51:57 +000051 CurIndex = ComputeLinearIndex(*EI, nullptr, nullptr, CurIndex);
Dan Gohman450aa642010-04-21 01:22:34 +000052 }
Mehdi Amini7b068f62015-01-14 05:38:48 +000053 assert(!Indices && "Unexpected out of bound");
Dan Gohman450aa642010-04-21 01:22:34 +000054 return CurIndex;
55 }
56 // Given an array type, recursively traverse the elements.
Chris Lattner229907c2011-07-18 04:54:35 +000057 else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
58 Type *EltTy = ATy->getElementType();
Mehdi Amini8923cc52015-01-14 05:33:01 +000059 unsigned NumElts = ATy->getNumElements();
60 // Compute the Linear offset when jumping one element of the array
61 unsigned EltLinearOffset = ComputeLinearIndex(EltTy, nullptr, nullptr, 0);
Mehdi Amini7b068f62015-01-14 05:38:48 +000062 if (Indices) {
63 assert(*Indices < NumElts && "Unexpected out of bound");
Mehdi Amini8923cc52015-01-14 05:33:01 +000064 // If the indice is inside the array, compute the index to the requested
65 // elt and recurse inside the element with the end of the indices list
66 CurIndex += EltLinearOffset* *Indices;
67 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex);
Dan Gohman450aa642010-04-21 01:22:34 +000068 }
Mehdi Amini8923cc52015-01-14 05:33:01 +000069 CurIndex += EltLinearOffset*NumElts;
Dan Gohman450aa642010-04-21 01:22:34 +000070 return CurIndex;
71 }
72 // We haven't found the type we're looking for, so keep searching.
73 return CurIndex + 1;
74}
75
76/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
77/// EVTs that represent all the individual underlying
78/// non-aggregate types that comprise it.
79///
80/// If Offsets is non-null, it points to a vector to be filled in
81/// with the in-memory offsets of each of the individual values.
82///
Mehdi Amini56228da2015-07-09 01:57:34 +000083void llvm::ComputeValueVTs(const TargetLowering &TLI, const DataLayout &DL,
84 Type *Ty, SmallVectorImpl<EVT> &ValueVTs,
Dan Gohman450aa642010-04-21 01:22:34 +000085 SmallVectorImpl<uint64_t> *Offsets,
86 uint64_t StartingOffset) {
87 // Given a struct type, recursively traverse the elements.
Chris Lattner229907c2011-07-18 04:54:35 +000088 if (StructType *STy = dyn_cast<StructType>(Ty)) {
Mehdi Amini56228da2015-07-09 01:57:34 +000089 const StructLayout *SL = DL.getStructLayout(STy);
Dan Gohman450aa642010-04-21 01:22:34 +000090 for (StructType::element_iterator EB = STy->element_begin(),
91 EI = EB,
92 EE = STy->element_end();
93 EI != EE; ++EI)
Mehdi Amini56228da2015-07-09 01:57:34 +000094 ComputeValueVTs(TLI, DL, *EI, ValueVTs, Offsets,
Dan Gohman450aa642010-04-21 01:22:34 +000095 StartingOffset + SL->getElementOffset(EI - EB));
96 return;
97 }
98 // Given an array type, recursively traverse the elements.
Chris Lattner229907c2011-07-18 04:54:35 +000099 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
100 Type *EltTy = ATy->getElementType();
Mehdi Amini56228da2015-07-09 01:57:34 +0000101 uint64_t EltSize = DL.getTypeAllocSize(EltTy);
Dan Gohman450aa642010-04-21 01:22:34 +0000102 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
Mehdi Amini56228da2015-07-09 01:57:34 +0000103 ComputeValueVTs(TLI, DL, EltTy, ValueVTs, Offsets,
Dan Gohman450aa642010-04-21 01:22:34 +0000104 StartingOffset + i * EltSize);
105 return;
106 }
107 // Interpret void as zero return values.
108 if (Ty->isVoidTy())
109 return;
110 // Base case: we can get an EVT for this LLVM IR type.
Mehdi Amini44ede332015-07-09 02:09:04 +0000111 ValueVTs.push_back(TLI.getValueType(DL, Ty));
Dan Gohman450aa642010-04-21 01:22:34 +0000112 if (Offsets)
113 Offsets->push_back(StartingOffset);
114}
115
116/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
Reid Kleckner283bc2e2014-11-14 00:35:50 +0000117GlobalValue *llvm::ExtractTypeInfo(Value *V) {
Dan Gohman450aa642010-04-21 01:22:34 +0000118 V = V->stripPointerCasts();
Reid Kleckner283bc2e2014-11-14 00:35:50 +0000119 GlobalValue *GV = dyn_cast<GlobalValue>(V);
120 GlobalVariable *Var = dyn_cast<GlobalVariable>(V);
Dan Gohman450aa642010-04-21 01:22:34 +0000121
Reid Kleckner283bc2e2014-11-14 00:35:50 +0000122 if (Var && Var->getName() == "llvm.eh.catch.all.value") {
123 assert(Var->hasInitializer() &&
Dan Gohman450aa642010-04-21 01:22:34 +0000124 "The EH catch-all value must have an initializer");
Reid Kleckner283bc2e2014-11-14 00:35:50 +0000125 Value *Init = Var->getInitializer();
126 GV = dyn_cast<GlobalValue>(Init);
Dan Gohman450aa642010-04-21 01:22:34 +0000127 if (!GV) V = cast<ConstantPointerNull>(Init);
128 }
129
130 assert((GV || isa<ConstantPointerNull>(V)) &&
131 "TypeInfo must be a global variable or NULL");
132 return GV;
133}
134
135/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
136/// processed uses a memory 'm' constraint.
137bool
John Thompsone8360b72010-10-29 17:29:13 +0000138llvm::hasInlineAsmMemConstraint(InlineAsm::ConstraintInfoVector &CInfos,
Dan Gohman450aa642010-04-21 01:22:34 +0000139 const TargetLowering &TLI) {
140 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
141 InlineAsm::ConstraintInfo &CI = CInfos[i];
142 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
143 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
144 if (CType == TargetLowering::C_Memory)
145 return true;
146 }
147
148 // Indirect operand accesses access memory.
149 if (CI.isIndirect)
150 return true;
151 }
152
153 return false;
154}
155
156/// getFCmpCondCode - Return the ISD condition code corresponding to
157/// the given LLVM IR floating-point condition code. This includes
158/// consideration of global floating-point math flags.
159///
160ISD::CondCode llvm::getFCmpCondCode(FCmpInst::Predicate Pred) {
Dan Gohman450aa642010-04-21 01:22:34 +0000161 switch (Pred) {
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000162 case FCmpInst::FCMP_FALSE: return ISD::SETFALSE;
163 case FCmpInst::FCMP_OEQ: return ISD::SETOEQ;
164 case FCmpInst::FCMP_OGT: return ISD::SETOGT;
165 case FCmpInst::FCMP_OGE: return ISD::SETOGE;
166 case FCmpInst::FCMP_OLT: return ISD::SETOLT;
167 case FCmpInst::FCMP_OLE: return ISD::SETOLE;
168 case FCmpInst::FCMP_ONE: return ISD::SETONE;
169 case FCmpInst::FCMP_ORD: return ISD::SETO;
170 case FCmpInst::FCMP_UNO: return ISD::SETUO;
171 case FCmpInst::FCMP_UEQ: return ISD::SETUEQ;
172 case FCmpInst::FCMP_UGT: return ISD::SETUGT;
173 case FCmpInst::FCMP_UGE: return ISD::SETUGE;
174 case FCmpInst::FCMP_ULT: return ISD::SETULT;
175 case FCmpInst::FCMP_ULE: return ISD::SETULE;
176 case FCmpInst::FCMP_UNE: return ISD::SETUNE;
177 case FCmpInst::FCMP_TRUE: return ISD::SETTRUE;
David Blaikie46a9f012012-01-20 21:51:11 +0000178 default: llvm_unreachable("Invalid FCmp predicate opcode!");
Dan Gohman450aa642010-04-21 01:22:34 +0000179 }
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000180}
181
182ISD::CondCode llvm::getFCmpCodeWithoutNaN(ISD::CondCode CC) {
183 switch (CC) {
184 case ISD::SETOEQ: case ISD::SETUEQ: return ISD::SETEQ;
185 case ISD::SETONE: case ISD::SETUNE: return ISD::SETNE;
186 case ISD::SETOLT: case ISD::SETULT: return ISD::SETLT;
187 case ISD::SETOLE: case ISD::SETULE: return ISD::SETLE;
188 case ISD::SETOGT: case ISD::SETUGT: return ISD::SETGT;
189 case ISD::SETOGE: case ISD::SETUGE: return ISD::SETGE;
David Blaikie46a9f012012-01-20 21:51:11 +0000190 default: return CC;
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000191 }
Dan Gohman450aa642010-04-21 01:22:34 +0000192}
193
194/// getICmpCondCode - Return the ISD condition code corresponding to
195/// the given LLVM IR integer condition code.
196///
197ISD::CondCode llvm::getICmpCondCode(ICmpInst::Predicate Pred) {
198 switch (Pred) {
199 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
200 case ICmpInst::ICMP_NE: return ISD::SETNE;
201 case ICmpInst::ICMP_SLE: return ISD::SETLE;
202 case ICmpInst::ICMP_ULE: return ISD::SETULE;
203 case ICmpInst::ICMP_SGE: return ISD::SETGE;
204 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
205 case ICmpInst::ICMP_SLT: return ISD::SETLT;
206 case ICmpInst::ICMP_ULT: return ISD::SETULT;
207 case ICmpInst::ICMP_SGT: return ISD::SETGT;
208 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
209 default:
210 llvm_unreachable("Invalid ICmp predicate opcode!");
Dan Gohman450aa642010-04-21 01:22:34 +0000211 }
212}
213
Stephen Linffc44542013-04-20 04:27:51 +0000214static bool isNoopBitcast(Type *T1, Type *T2,
Michael Gottesmanc0659fa2013-07-22 21:05:47 +0000215 const TargetLoweringBase& TLI) {
Stephen Linffc44542013-04-20 04:27:51 +0000216 return T1 == T2 || (T1->isPointerTy() && T2->isPointerTy()) ||
217 (isa<VectorType>(T1) && isa<VectorType>(T2) &&
218 TLI.isTypeLegal(EVT::getEVT(T1)) && TLI.isTypeLegal(EVT::getEVT(T2)));
Chris Lattner4f3615d2012-06-01 05:01:15 +0000219}
220
Tim Northovera4415852013-08-06 09:12:35 +0000221/// Look through operations that will be free to find the earliest source of
222/// this value.
223///
224/// @param ValLoc If V has aggegate type, we will be interested in a particular
225/// scalar component. This records its address; the reverse of this list gives a
226/// sequence of indices appropriate for an extractvalue to locate the important
227/// value. This value is updated during the function and on exit will indicate
228/// similar information for the Value returned.
229///
230/// @param DataBits If this function looks through truncate instructions, this
231/// will record the smallest size attained.
232static const Value *getNoopInput(const Value *V,
233 SmallVectorImpl<unsigned> &ValLoc,
234 unsigned &DataBits,
Mehdi Amini44ede332015-07-09 02:09:04 +0000235 const TargetLoweringBase &TLI,
236 const DataLayout &DL) {
Stephen Linffc44542013-04-20 04:27:51 +0000237 while (true) {
Stephen Linffc44542013-04-20 04:27:51 +0000238 // Try to look through V1; if V1 is not an instruction, it can't be looked
239 // through.
Tim Northovera4415852013-08-06 09:12:35 +0000240 const Instruction *I = dyn_cast<Instruction>(V);
241 if (!I || I->getNumOperands() == 0) return V;
Craig Topperc0196b12014-04-14 00:51:57 +0000242 const Value *NoopInput = nullptr;
Tim Northovera4415852013-08-06 09:12:35 +0000243
244 Value *Op = I->getOperand(0);
245 if (isa<BitCastInst>(I)) {
246 // Look through truly no-op bitcasts.
247 if (isNoopBitcast(Op->getType(), I->getType(), TLI))
248 NoopInput = Op;
249 } else if (isa<GetElementPtrInst>(I)) {
250 // Look through getelementptr
251 if (cast<GetElementPtrInst>(I)->hasAllZeroIndices())
252 NoopInput = Op;
253 } else if (isa<IntToPtrInst>(I)) {
254 // Look through inttoptr.
255 // Make sure this isn't a truncating or extending cast. We could
256 // support this eventually, but don't bother for now.
257 if (!isa<VectorType>(I->getType()) &&
Mehdi Amini44ede332015-07-09 02:09:04 +0000258 DL.getPointerSizeInBits() ==
259 cast<IntegerType>(Op->getType())->getBitWidth())
Tim Northovera4415852013-08-06 09:12:35 +0000260 NoopInput = Op;
261 } else if (isa<PtrToIntInst>(I)) {
262 // Look through ptrtoint.
263 // Make sure this isn't a truncating or extending cast. We could
264 // support this eventually, but don't bother for now.
265 if (!isa<VectorType>(I->getType()) &&
Mehdi Amini44ede332015-07-09 02:09:04 +0000266 DL.getPointerSizeInBits() ==
267 cast<IntegerType>(I->getType())->getBitWidth())
Tim Northovera4415852013-08-06 09:12:35 +0000268 NoopInput = Op;
269 } else if (isa<TruncInst>(I) &&
270 TLI.allowTruncateForTailCall(Op->getType(), I->getType())) {
271 DataBits = std::min(DataBits, I->getType()->getPrimitiveSizeInBits());
272 NoopInput = Op;
Ahmed Bougacha8a413192017-01-03 21:42:43 +0000273 } else if (auto CS = ImmutableCallSite(I)) {
274 const Value *ReturnedOp = CS.getReturnedArgOperand();
Ahmed Bougacha6aff7442017-01-03 20:33:22 +0000275 if (ReturnedOp && isNoopBitcast(ReturnedOp->getType(), I->getType(), TLI))
276 NoopInput = ReturnedOp;
Tim Northovera4415852013-08-06 09:12:35 +0000277 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(V)) {
278 // Value may come from either the aggregate or the scalar
279 ArrayRef<unsigned> InsertLoc = IVI->getIndices();
Tim Northovere4310fe2015-05-06 20:07:38 +0000280 if (ValLoc.size() >= InsertLoc.size() &&
281 std::equal(InsertLoc.begin(), InsertLoc.end(), ValLoc.rbegin())) {
Tim Northovera4415852013-08-06 09:12:35 +0000282 // The type being inserted is a nested sub-type of the aggregate; we
283 // have to remove those initial indices to get the location we're
284 // interested in for the operand.
285 ValLoc.resize(ValLoc.size() - InsertLoc.size());
286 NoopInput = IVI->getInsertedValueOperand();
287 } else {
288 // The struct we're inserting into has the value we're interested in, no
289 // change of address.
290 NoopInput = Op;
291 }
292 } else if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(V)) {
293 // The part we're interested in will inevitably be some sub-section of the
294 // previous aggregate. Combine the two paths to obtain the true address of
295 // our element.
296 ArrayRef<unsigned> ExtractLoc = EVI->getIndices();
Benjamin Kramer4f6ac162015-02-28 10:11:12 +0000297 ValLoc.append(ExtractLoc.rbegin(), ExtractLoc.rend());
Tim Northovera4415852013-08-06 09:12:35 +0000298 NoopInput = Op;
Stephen Linffc44542013-04-20 04:27:51 +0000299 }
Tim Northovera4415852013-08-06 09:12:35 +0000300 // Terminate if we couldn't find anything to look through.
301 if (!NoopInput)
302 return V;
Stephen Linffc44542013-04-20 04:27:51 +0000303
Tim Northovera4415852013-08-06 09:12:35 +0000304 V = NoopInput;
Stephen Linffc44542013-04-20 04:27:51 +0000305 }
Stephen Linffc44542013-04-20 04:27:51 +0000306}
Chris Lattner4f3615d2012-06-01 05:01:15 +0000307
Tim Northovera4415852013-08-06 09:12:35 +0000308/// Return true if this scalar return value only has bits discarded on its path
309/// from the "tail call" to the "ret". This includes the obvious noop
310/// instructions handled by getNoopInput above as well as free truncations (or
311/// extensions prior to the call).
312static bool slotOnlyDiscardsData(const Value *RetVal, const Value *CallVal,
313 SmallVectorImpl<unsigned> &RetIndices,
314 SmallVectorImpl<unsigned> &CallIndices,
Tim Northover707d68f2013-08-12 09:45:46 +0000315 bool AllowDifferingSizes,
Mehdi Amini44ede332015-07-09 02:09:04 +0000316 const TargetLoweringBase &TLI,
317 const DataLayout &DL) {
Tim Northovera4415852013-08-06 09:12:35 +0000318
319 // Trace the sub-value needed by the return value as far back up the graph as
320 // possible, in the hope that it will intersect with the value produced by the
321 // call. In the simple case with no "returned" attribute, the hope is actually
322 // that we end up back at the tail call instruction itself.
323 unsigned BitsRequired = UINT_MAX;
Mehdi Amini44ede332015-07-09 02:09:04 +0000324 RetVal = getNoopInput(RetVal, RetIndices, BitsRequired, TLI, DL);
Tim Northovera4415852013-08-06 09:12:35 +0000325
326 // If this slot in the value returned is undef, it doesn't matter what the
327 // call puts there, it'll be fine.
328 if (isa<UndefValue>(RetVal))
329 return true;
330
331 // Now do a similar search up through the graph to find where the value
332 // actually returned by the "tail call" comes from. In the simple case without
333 // a "returned" attribute, the search will be blocked immediately and the loop
334 // a Noop.
335 unsigned BitsProvided = UINT_MAX;
Mehdi Amini44ede332015-07-09 02:09:04 +0000336 CallVal = getNoopInput(CallVal, CallIndices, BitsProvided, TLI, DL);
Tim Northovera4415852013-08-06 09:12:35 +0000337
338 // There's no hope if we can't actually trace them to (the same part of!) the
339 // same value.
340 if (CallVal != RetVal || CallIndices != RetIndices)
341 return false;
342
343 // However, intervening truncates may have made the call non-tail. Make sure
344 // all the bits that are needed by the "ret" have been provided by the "tail
345 // call". FIXME: with sufficiently cunning bit-tracking, we could look through
346 // extensions too.
Tim Northover707d68f2013-08-12 09:45:46 +0000347 if (BitsProvided < BitsRequired ||
348 (!AllowDifferingSizes && BitsProvided != BitsRequired))
Tim Northovera4415852013-08-06 09:12:35 +0000349 return false;
350
351 return true;
352}
353
354/// For an aggregate type, determine whether a given index is within bounds or
355/// not.
356static bool indexReallyValid(CompositeType *T, unsigned Idx) {
357 if (ArrayType *AT = dyn_cast<ArrayType>(T))
358 return Idx < AT->getNumElements();
359
360 return Idx < cast<StructType>(T)->getNumElements();
361}
362
363/// Move the given iterators to the next leaf type in depth first traversal.
364///
365/// Performs a depth-first traversal of the type as specified by its arguments,
366/// stopping at the next leaf node (which may be a legitimate scalar type or an
367/// empty struct or array).
368///
369/// @param SubTypes List of the partial components making up the type from
370/// outermost to innermost non-empty aggregate. The element currently
371/// represented is SubTypes.back()->getTypeAtIndex(Path.back() - 1).
372///
373/// @param Path Set of extractvalue indices leading from the outermost type
374/// (SubTypes[0]) to the leaf node currently represented.
375///
376/// @returns true if a new type was found, false otherwise. Calling this
377/// function again on a finished iterator will repeatedly return
378/// false. SubTypes.back()->getTypeAtIndex(Path.back()) is either an empty
379/// aggregate or a non-aggregate
Benjamin Kramerdf034492013-08-09 14:44:41 +0000380static bool advanceToNextLeafType(SmallVectorImpl<CompositeType *> &SubTypes,
381 SmallVectorImpl<unsigned> &Path) {
Tim Northovera4415852013-08-06 09:12:35 +0000382 // First march back up the tree until we can successfully increment one of the
383 // coordinates in Path.
384 while (!Path.empty() && !indexReallyValid(SubTypes.back(), Path.back() + 1)) {
385 Path.pop_back();
386 SubTypes.pop_back();
387 }
388
389 // If we reached the top, then the iterator is done.
390 if (Path.empty())
391 return false;
392
393 // We know there's *some* valid leaf now, so march back down the tree picking
394 // out the left-most element at each node.
395 ++Path.back();
396 Type *DeeperType = SubTypes.back()->getTypeAtIndex(Path.back());
397 while (DeeperType->isAggregateType()) {
398 CompositeType *CT = cast<CompositeType>(DeeperType);
399 if (!indexReallyValid(CT, 0))
400 return true;
401
402 SubTypes.push_back(CT);
403 Path.push_back(0);
404
405 DeeperType = CT->getTypeAtIndex(0U);
406 }
407
408 return true;
409}
410
411/// Find the first non-empty, scalar-like type in Next and setup the iterator
412/// components.
413///
414/// Assuming Next is an aggregate of some kind, this function will traverse the
415/// tree from left to right (i.e. depth-first) looking for the first
416/// non-aggregate type which will play a role in function return.
417///
418/// For example, if Next was {[0 x i64], {{}, i32, {}}, i32} then we would setup
419/// Path as [1, 1] and SubTypes as [Next, {{}, i32, {}}] to represent the first
420/// i32 in that type.
421static bool firstRealType(Type *Next,
422 SmallVectorImpl<CompositeType *> &SubTypes,
423 SmallVectorImpl<unsigned> &Path) {
424 // First initialise the iterator components to the first "leaf" node
425 // (i.e. node with no valid sub-type at any index, so {} does count as a leaf
426 // despite nominally being an aggregate).
427 while (Next->isAggregateType() &&
428 indexReallyValid(cast<CompositeType>(Next), 0)) {
429 SubTypes.push_back(cast<CompositeType>(Next));
430 Path.push_back(0);
431 Next = cast<CompositeType>(Next)->getTypeAtIndex(0U);
432 }
433
434 // If there's no Path now, Next was originally scalar already (or empty
435 // leaf). We're done.
436 if (Path.empty())
437 return true;
438
439 // Otherwise, use normal iteration to keep looking through the tree until we
440 // find a non-aggregate type.
441 while (SubTypes.back()->getTypeAtIndex(Path.back())->isAggregateType()) {
442 if (!advanceToNextLeafType(SubTypes, Path))
443 return false;
444 }
445
446 return true;
447}
448
449/// Set the iterator data-structures to the next non-empty, non-aggregate
450/// subtype.
Benjamin Kramerdf034492013-08-09 14:44:41 +0000451static bool nextRealType(SmallVectorImpl<CompositeType *> &SubTypes,
452 SmallVectorImpl<unsigned> &Path) {
Tim Northovera4415852013-08-06 09:12:35 +0000453 do {
454 if (!advanceToNextLeafType(SubTypes, Path))
455 return false;
456
457 assert(!Path.empty() && "found a leaf but didn't set the path?");
458 } while (SubTypes.back()->getTypeAtIndex(Path.back())->isAggregateType());
459
460 return true;
461}
462
463
Dan Gohman450aa642010-04-21 01:22:34 +0000464/// Test if the given instruction is in a position to be optimized
465/// with a tail-call. This roughly means that it's in a block with
466/// a return and there's nothing that needs to be scheduled
467/// between it and the return.
468///
469/// This function only tests target-independent requirements.
Juergen Ributzka480872b2014-07-16 00:01:22 +0000470bool llvm::isInTailCallPosition(ImmutableCallSite CS, const TargetMachine &TM) {
Dan Gohman450aa642010-04-21 01:22:34 +0000471 const Instruction *I = CS.getInstruction();
472 const BasicBlock *ExitBB = I->getParent();
Chandler Carruthedb12a82018-10-15 10:04:59 +0000473 const Instruction *Term = ExitBB->getTerminator();
Dan Gohman450aa642010-04-21 01:22:34 +0000474 const ReturnInst *Ret = dyn_cast<ReturnInst>(Term);
Dan Gohman450aa642010-04-21 01:22:34 +0000475
476 // The block must end in a return statement or unreachable.
477 //
478 // FIXME: Decline tailcall if it's not guaranteed and if the block ends in
479 // an unreachable, for now. The way tailcall optimization is currently
480 // implemented means it will add an epilogue followed by a jump. That is
481 // not profitable. Also, if the callee is a special function (e.g.
482 // longjmp on x86), it can end up causing miscompilation that has not
483 // been fully understood.
484 if (!Ret &&
Juergen Ributzka4ce98632014-07-11 20:50:47 +0000485 (!TM.Options.GuaranteedTailCallOpt || !isa<UnreachableInst>(Term)))
Chris Lattner4f3615d2012-06-01 05:01:15 +0000486 return false;
Dan Gohman450aa642010-04-21 01:22:34 +0000487
488 // If I will have a chain, make sure no other instruction that will have a
489 // chain interposes between I and the return.
David Majnemer0a92f862015-08-28 21:13:39 +0000490 if (I->mayHaveSideEffects() || I->mayReadFromMemory() ||
491 !isSafeToSpeculativelyExecute(I))
492 for (BasicBlock::const_iterator BBI = std::prev(ExitBB->end(), 2);; --BBI) {
493 if (&*BBI == I)
494 break;
495 // Debug info intrinsics do not get in the way of tail call optimization.
496 if (isa<DbgInfoIntrinsic>(BBI))
497 continue;
Robert Lougher18bfb3a2018-10-24 17:03:19 +0000498 // A lifetime end intrinsic should not stop tail call optimization.
499 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(BBI))
500 if (II->getIntrinsicID() == Intrinsic::lifetime_end)
501 continue;
David Majnemer0a92f862015-08-28 21:13:39 +0000502 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() ||
Duncan P. N. Exon Smith980f8f22015-10-09 18:23:49 +0000503 !isSafeToSpeculativelyExecute(&*BBI))
David Majnemer0a92f862015-08-28 21:13:39 +0000504 return false;
505 }
Dan Gohman450aa642010-04-21 01:22:34 +0000506
Eric Christopherf734a8b2015-02-20 18:44:17 +0000507 const Function *F = ExitBB->getParent();
Eric Christopherd9134482014-08-04 21:25:23 +0000508 return returnTypeIsEligibleForTailCall(
Eric Christopherf734a8b2015-02-20 18:44:17 +0000509 F, I, Ret, *TM.getSubtargetImpl(*F)->getTargetLowering());
Michael Gottesmance0e4c22013-08-20 08:36:50 +0000510}
511
Michael Kupersteinf79af6f2016-09-08 00:48:37 +0000512bool llvm::attributesPermitTailCall(const Function *F, const Instruction *I,
513 const ReturnInst *Ret,
514 const TargetLoweringBase &TLI,
515 bool *AllowDifferingSizes) {
516 // ADS may be null, so don't write to it directly.
517 bool DummyADS;
518 bool &ADS = AllowDifferingSizes ? *AllowDifferingSizes : DummyADS;
519 ADS = true;
520
Reid Klecknerb5180542017-03-21 16:57:19 +0000521 AttrBuilder CallerAttrs(F->getAttributes(), AttributeList::ReturnIndex);
Michael Kupersteinf79af6f2016-09-08 00:48:37 +0000522 AttrBuilder CalleeAttrs(cast<CallInst>(I)->getAttributes(),
Reid Klecknerb5180542017-03-21 16:57:19 +0000523 AttributeList::ReturnIndex);
Michael Kupersteinf79af6f2016-09-08 00:48:37 +0000524
David Green353cb3d2018-09-26 10:46:18 +0000525 // NoAlias and NonNull are completely benign as far as calling convention
526 // goes, they shouldn't affect whether the call is a tail call.
Bjorn Pettersson807f7322016-10-27 14:48:09 +0000527 CallerAttrs.removeAttribute(Attribute::NoAlias);
528 CalleeAttrs.removeAttribute(Attribute::NoAlias);
David Green353cb3d2018-09-26 10:46:18 +0000529 CallerAttrs.removeAttribute(Attribute::NonNull);
530 CalleeAttrs.removeAttribute(Attribute::NonNull);
Michael Kupersteinf79af6f2016-09-08 00:48:37 +0000531
532 if (CallerAttrs.contains(Attribute::ZExt)) {
533 if (!CalleeAttrs.contains(Attribute::ZExt))
534 return false;
535
536 ADS = false;
537 CallerAttrs.removeAttribute(Attribute::ZExt);
538 CalleeAttrs.removeAttribute(Attribute::ZExt);
539 } else if (CallerAttrs.contains(Attribute::SExt)) {
540 if (!CalleeAttrs.contains(Attribute::SExt))
541 return false;
542
543 ADS = false;
544 CallerAttrs.removeAttribute(Attribute::SExt);
545 CalleeAttrs.removeAttribute(Attribute::SExt);
546 }
547
Francis Visoiu Mistrihac6454a2019-01-09 19:46:15 +0000548 // Drop sext and zext return attributes if the result is not used.
549 // This enables tail calls for code like:
550 //
551 // define void @caller() {
552 // entry:
553 // %unused_result = tail call zeroext i1 @callee()
554 // br label %retlabel
555 // retlabel:
556 // ret void
557 // }
558 if (I->use_empty()) {
559 CalleeAttrs.removeAttribute(Attribute::SExt);
560 CalleeAttrs.removeAttribute(Attribute::ZExt);
561 }
562
Michael Kupersteinf79af6f2016-09-08 00:48:37 +0000563 // If they're still different, there's some facet we don't understand
564 // (currently only "inreg", but in future who knows). It may be OK but the
565 // only safe option is to reject the tail call.
566 return CallerAttrs == CalleeAttrs;
567}
568
Michael Gottesmance0e4c22013-08-20 08:36:50 +0000569bool llvm::returnTypeIsEligibleForTailCall(const Function *F,
570 const Instruction *I,
571 const ReturnInst *Ret,
572 const TargetLoweringBase &TLI) {
Dan Gohman450aa642010-04-21 01:22:34 +0000573 // If the block ends with a void return or unreachable, it doesn't matter
574 // what the call's return type is.
575 if (!Ret || Ret->getNumOperands() == 0) return true;
576
577 // If the return value is undef, it doesn't matter what the call's
578 // return type is.
579 if (isa<UndefValue>(Ret->getOperand(0))) return true;
580
Tim Northover707d68f2013-08-12 09:45:46 +0000581 // Make sure the attributes attached to each return are compatible.
Michael Kupersteinf79af6f2016-09-08 00:48:37 +0000582 bool AllowDifferingSizes;
583 if (!attributesPermitTailCall(F, I, Ret, TLI, &AllowDifferingSizes))
Dan Gohman450aa642010-04-21 01:22:34 +0000584 return false;
585
Tim Northovera4415852013-08-06 09:12:35 +0000586 const Value *RetVal = Ret->getOperand(0), *CallVal = I;
Wei Mi5d84d9b2017-09-08 16:44:52 +0000587 // Intrinsic like llvm.memcpy has no return value, but the expanded
588 // libcall may or may not have return value. On most platforms, it
589 // will be expanded as memcpy in libc, which returns the first
590 // argument. On other platforms like arm-none-eabi, memcpy may be
591 // expanded as library call without return value, like __aeabi_memcpy.
Wei Mi818d50a2017-09-06 16:05:17 +0000592 const CallInst *Call = cast<CallInst>(I);
593 if (Function *F = Call->getCalledFunction()) {
594 Intrinsic::ID IID = F->getIntrinsicID();
Wei Mi5d84d9b2017-09-08 16:44:52 +0000595 if (((IID == Intrinsic::memcpy &&
596 TLI.getLibcallName(RTLIB::MEMCPY) == StringRef("memcpy")) ||
597 (IID == Intrinsic::memmove &&
598 TLI.getLibcallName(RTLIB::MEMMOVE) == StringRef("memmove")) ||
599 (IID == Intrinsic::memset &&
600 TLI.getLibcallName(RTLIB::MEMSET) == StringRef("memset"))) &&
Wei Mi818d50a2017-09-06 16:05:17 +0000601 RetVal == Call->getArgOperand(0))
602 return true;
603 }
604
Tim Northovera4415852013-08-06 09:12:35 +0000605 SmallVector<unsigned, 4> RetPath, CallPath;
606 SmallVector<CompositeType *, 4> RetSubTypes, CallSubTypes;
607
608 bool RetEmpty = !firstRealType(RetVal->getType(), RetSubTypes, RetPath);
609 bool CallEmpty = !firstRealType(CallVal->getType(), CallSubTypes, CallPath);
610
611 // Nothing's actually returned, it doesn't matter what the callee put there
612 // it's a valid tail call.
613 if (RetEmpty)
614 return true;
615
616 // Iterate pairwise through each of the value types making up the tail call
617 // and the corresponding return. For each one we want to know whether it's
618 // essentially going directly from the tail call to the ret, via operations
619 // that end up not generating any code.
620 //
621 // We allow a certain amount of covariance here. For example it's permitted
622 // for the tail call to define more bits than the ret actually cares about
623 // (e.g. via a truncate).
624 do {
625 if (CallEmpty) {
626 // We've exhausted the values produced by the tail call instruction, the
627 // rest are essentially undef. The type doesn't really matter, but we need
628 // *something*.
629 Type *SlotType = RetSubTypes.back()->getTypeAtIndex(RetPath.back());
630 CallVal = UndefValue::get(SlotType);
631 }
632
633 // The manipulations performed when we're looking through an insertvalue or
634 // an extractvalue would happen at the front of the RetPath list, so since
635 // we have to copy it anyway it's more efficient to create a reversed copy.
Benjamin Kramer4f6ac162015-02-28 10:11:12 +0000636 SmallVector<unsigned, 4> TmpRetPath(RetPath.rbegin(), RetPath.rend());
637 SmallVector<unsigned, 4> TmpCallPath(CallPath.rbegin(), CallPath.rend());
Tim Northovera4415852013-08-06 09:12:35 +0000638
639 // Finally, we can check whether the value produced by the tail call at this
640 // index is compatible with the value we return.
Tim Northover707d68f2013-08-12 09:45:46 +0000641 if (!slotOnlyDiscardsData(RetVal, CallVal, TmpRetPath, TmpCallPath,
Mehdi Amini44ede332015-07-09 02:09:04 +0000642 AllowDifferingSizes, TLI,
643 F->getParent()->getDataLayout()))
Tim Northovera4415852013-08-06 09:12:35 +0000644 return false;
645
646 CallEmpty = !nextRealType(CallSubTypes, CallPath);
647 } while(nextRealType(RetSubTypes, RetPath));
648
649 return true;
Dan Gohman450aa642010-04-21 01:22:34 +0000650}
Rafael Espindolaf21434c2014-07-30 19:42:16 +0000651
Heejin Ahnd69acf32018-06-01 00:03:21 +0000652static void collectEHScopeMembers(
653 DenseMap<const MachineBasicBlock *, int> &EHScopeMembership, int EHScope,
654 const MachineBasicBlock *MBB) {
David Majnemer734d7c32016-01-22 18:49:50 +0000655 SmallVector<const MachineBasicBlock *, 16> Worklist = {MBB};
656 while (!Worklist.empty()) {
657 const MachineBasicBlock *Visiting = Worklist.pop_back_val();
Heejin Ahn1e4d3502018-05-23 00:32:46 +0000658 // Don't follow blocks which start new scopes.
David Majnemer734d7c32016-01-22 18:49:50 +0000659 if (Visiting->isEHPad() && Visiting != MBB)
660 continue;
David Blaikie7b54b522015-10-26 18:41:13 +0000661
Heejin Ahn1e4d3502018-05-23 00:32:46 +0000662 // Add this MBB to our scope.
Heejin Ahnd69acf32018-06-01 00:03:21 +0000663 auto P = EHScopeMembership.insert(std::make_pair(Visiting, EHScope));
David Majnemer734d7c32016-01-22 18:49:50 +0000664
665 // Don't revisit blocks.
666 if (!P.second) {
Heejin Ahnd69acf32018-06-01 00:03:21 +0000667 assert(P.first->second == EHScope && "MBB is part of two scopes!");
David Majnemer734d7c32016-01-22 18:49:50 +0000668 continue;
669 }
670
Heejin Ahn1e4d3502018-05-23 00:32:46 +0000671 // Returns are boundaries where scope transfer can occur, don't follow
David Majnemer734d7c32016-01-22 18:49:50 +0000672 // successors.
Heejin Ahned5e06b2018-08-21 19:44:11 +0000673 if (Visiting->isEHScopeReturnBlock())
David Majnemer734d7c32016-01-22 18:49:50 +0000674 continue;
675
676 for (const MachineBasicBlock *Succ : Visiting->successors())
677 Worklist.push_back(Succ);
David Majnemer16193552015-10-04 02:22:52 +0000678 }
David Majnemer16193552015-10-04 02:22:52 +0000679}
680
681DenseMap<const MachineBasicBlock *, int>
Heejin Ahn1e4d3502018-05-23 00:32:46 +0000682llvm::getEHScopeMembership(const MachineFunction &MF) {
Heejin Ahnd69acf32018-06-01 00:03:21 +0000683 DenseMap<const MachineBasicBlock *, int> EHScopeMembership;
David Majnemer16193552015-10-04 02:22:52 +0000684
685 // We don't have anything to do if there aren't any EH pads.
Heejin Ahn1e4d3502018-05-23 00:32:46 +0000686 if (!MF.hasEHScopes())
Heejin Ahnd69acf32018-06-01 00:03:21 +0000687 return EHScopeMembership;
David Majnemer16193552015-10-04 02:22:52 +0000688
David Majnemere4f9b092015-10-05 20:09:16 +0000689 int EntryBBNumber = MF.front().getNumber();
David Majnemer16193552015-10-04 02:22:52 +0000690 bool IsSEH = isAsynchronousEHPersonality(
Matthias Braunf1caa282017-12-15 22:22:58 +0000691 classifyEHPersonality(MF.getFunction().getPersonalityFn()));
David Majnemer16193552015-10-04 02:22:52 +0000692
693 const TargetInstrInfo *TII = MF.getSubtarget().getInstrInfo();
Heejin Ahnd69acf32018-06-01 00:03:21 +0000694 SmallVector<const MachineBasicBlock *, 16> EHScopeBlocks;
David Majnemere4f9b092015-10-05 20:09:16 +0000695 SmallVector<const MachineBasicBlock *, 16> UnreachableBlocks;
696 SmallVector<const MachineBasicBlock *, 16> SEHCatchPads;
David Majnemer16193552015-10-04 02:22:52 +0000697 SmallVector<std::pair<const MachineBasicBlock *, int>, 16> CatchRetSuccessors;
698 for (const MachineBasicBlock &MBB : MF) {
Heejin Ahn1e4d3502018-05-23 00:32:46 +0000699 if (MBB.isEHScopeEntry()) {
Heejin Ahnd69acf32018-06-01 00:03:21 +0000700 EHScopeBlocks.push_back(&MBB);
David Majnemere4f9b092015-10-05 20:09:16 +0000701 } else if (IsSEH && MBB.isEHPad()) {
702 SEHCatchPads.push_back(&MBB);
703 } else if (MBB.pred_empty()) {
704 UnreachableBlocks.push_back(&MBB);
705 }
David Majnemer16193552015-10-04 02:22:52 +0000706
707 MachineBasicBlock::const_iterator MBBI = MBB.getFirstTerminator();
Duncan P. N. Exon Smith2e7af972016-08-11 15:29:02 +0000708
Heejin Ahn1e4d3502018-05-23 00:32:46 +0000709 // CatchPads are not scopes for SEH so do not consider CatchRet to
710 // transfer control to another scope.
Reid Kleckner26f9e9e2016-08-11 16:00:43 +0000711 if (MBBI == MBB.end() || MBBI->getOpcode() != TII->getCatchReturnOpcode())
David Majnemer16193552015-10-04 02:22:52 +0000712 continue;
713
David Majnemere4f9b092015-10-05 20:09:16 +0000714 // FIXME: SEH CatchPads are not necessarily in the parent function:
715 // they could be inside a finally block.
David Majnemer16193552015-10-04 02:22:52 +0000716 const MachineBasicBlock *Successor = MBBI->getOperand(0).getMBB();
717 const MachineBasicBlock *SuccessorColor = MBBI->getOperand(1).getMBB();
David Majnemere4f9b092015-10-05 20:09:16 +0000718 CatchRetSuccessors.push_back(
719 {Successor, IsSEH ? EntryBBNumber : SuccessorColor->getNumber()});
David Majnemer16193552015-10-04 02:22:52 +0000720 }
721
722 // We don't have anything to do if there aren't any EH pads.
Heejin Ahnd69acf32018-06-01 00:03:21 +0000723 if (EHScopeBlocks.empty())
724 return EHScopeMembership;
David Majnemer16193552015-10-04 02:22:52 +0000725
726 // Identify all the basic blocks reachable from the function entry.
Heejin Ahnd69acf32018-06-01 00:03:21 +0000727 collectEHScopeMembers(EHScopeMembership, EntryBBNumber, &MF.front());
Heejin Ahn1e4d3502018-05-23 00:32:46 +0000728 // All blocks not part of a scope are in the parent function.
David Majnemere4f9b092015-10-05 20:09:16 +0000729 for (const MachineBasicBlock *MBB : UnreachableBlocks)
Heejin Ahnd69acf32018-06-01 00:03:21 +0000730 collectEHScopeMembers(EHScopeMembership, EntryBBNumber, MBB);
Heejin Ahn1e4d3502018-05-23 00:32:46 +0000731 // Next, identify all the blocks inside the scopes.
Heejin Ahnd69acf32018-06-01 00:03:21 +0000732 for (const MachineBasicBlock *MBB : EHScopeBlocks)
733 collectEHScopeMembers(EHScopeMembership, MBB->getNumber(), MBB);
Heejin Ahn1e4d3502018-05-23 00:32:46 +0000734 // SEH CatchPads aren't really scopes, handle them separately.
David Majnemere4f9b092015-10-05 20:09:16 +0000735 for (const MachineBasicBlock *MBB : SEHCatchPads)
Heejin Ahnd69acf32018-06-01 00:03:21 +0000736 collectEHScopeMembers(EHScopeMembership, EntryBBNumber, MBB);
David Majnemer16193552015-10-04 02:22:52 +0000737 // Finally, identify all the targets of a catchret.
738 for (std::pair<const MachineBasicBlock *, int> CatchRetPair :
739 CatchRetSuccessors)
Heejin Ahnd69acf32018-06-01 00:03:21 +0000740 collectEHScopeMembers(EHScopeMembership, CatchRetPair.second,
David Majnemer16193552015-10-04 02:22:52 +0000741 CatchRetPair.first);
Heejin Ahnd69acf32018-06-01 00:03:21 +0000742 return EHScopeMembership;
David Majnemer16193552015-10-04 02:22:52 +0000743}