Home
last modified time | relevance | path

Searched refs:StaticAllocas (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/Transforms/Instrumentation/
DSafeStack.cpp128 void findInsts(Function &F, SmallVectorImpl<AllocaInst *> &StaticAllocas,
145 ArrayRef<AllocaInst *> StaticAllocas,
382 SmallVectorImpl<AllocaInst *> &StaticAllocas, in findInsts() argument
397 StaticAllocas.push_back(AI); in findInsts()
471 IRBuilder<> &IRB, Function &F, ArrayRef<AllocaInst *> StaticAllocas, in moveStaticAllocasToUnsafeStack() argument
473 if (StaticAllocas.empty() && ByValArguments.empty()) in moveStaticAllocasToUnsafeStack()
502 for (AllocaInst *AI : StaticAllocas) { in moveStaticAllocasToUnsafeStack()
553 for (AllocaInst *AI : StaticAllocas) { in moveStaticAllocasToUnsafeStack()
698 SmallVector<AllocaInst *, 16> StaticAllocas; in runOnFunction() local
712 findInsts(F, StaticAllocas, DynamicAllocas, ByValArguments, Returns, in runOnFunction()
[all …]
/external/llvm/include/llvm/Transforms/Utils/
DCloning.h220 SmallVector<AllocaInst *, 4> StaticAllocas; variable
227 StaticAllocas.clear(); in reset()
/external/llvm/lib/Transforms/Utils/
DInlineFunction.cpp892 IFI.StaticAllocas.push_back(cast<AllocaInst>(NewAlloca)); in HandleByValArgument()
1288 IFI.StaticAllocas.push_back(AI); in InlineFunction()
1294 IFI.StaticAllocas.push_back(cast<AllocaInst>(I)); in InlineFunction()
1306 for (auto &AI : IFI.StaticAllocas) in InlineFunction()
1351 if (InsertLifetime && !IFI.StaticAllocas.empty()) { in InlineFunction()
1353 for (unsigned ai = 0, ae = IFI.StaticAllocas.size(); ai != ae; ++ai) { in InlineFunction()
1354 AllocaInst *AI = IFI.StaticAllocas[ai]; in InlineFunction()
/external/llvm/lib/Transforms/IPO/
DInliner.cpp191 for (unsigned AllocaNo = 0, e = IFI.StaticAllocas.size(); in InlineCallIfPossible()
193 AllocaInst *AI = IFI.StaticAllocas[AllocaNo]; in InlineCallIfPossible()
257 IFI.StaticAllocas[AllocaNo] = nullptr; in InlineCallIfPossible()
/external/llvm/lib/Transforms/Scalar/
DPlaceSafepoints.cpp789 assert(IFI.StaticAllocas.empty() && "can't have allocs"); in INITIALIZE_PASS_DEPENDENCY()