Searched refs:StaticAllocas (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | SafeStack.cpp | 143 void findInsts(Function &F, SmallVectorImpl<AllocaInst *> &StaticAllocas, 159 ArrayRef<AllocaInst *> StaticAllocas, 378 SmallVectorImpl<AllocaInst *> &StaticAllocas, in findInsts() argument 393 StaticAllocas.push_back(AI); in findInsts() 488 IRBuilder<> &IRB, Function &F, ArrayRef<AllocaInst *> StaticAllocas, in moveStaticAllocasToUnsafeStack() argument 491 if (StaticAllocas.empty() && ByValArguments.empty()) in moveStaticAllocasToUnsafeStack() 496 StackLifetime SSC(F, StaticAllocas, StackLifetime::LivenessType::May); in moveStaticAllocasToUnsafeStack() 531 for (AllocaInst *AI : StaticAllocas) { in moveStaticAllocasToUnsafeStack() 596 for (AllocaInst *AI : StaticAllocas) { in moveStaticAllocasToUnsafeStack() 759 SmallVector<AllocaInst *, 16> StaticAllocas; in run() local [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | Cloning.h | 221 SmallVector<AllocaInst *, 4> StaticAllocas; variable 239 StaticAllocas.clear(); in reset()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | InlineFunction.cpp | 1693 IFI.StaticAllocas.push_back(NewAlloca); in HandleByValArgument() 2525 IFI.StaticAllocas.push_back(AI); in InlineFunction() 2532 IFI.StaticAllocas.push_back(cast<AllocaInst>(I)); in InlineFunction() 2643 !IFI.StaticAllocas.empty()) { in InlineFunction() 2645 for (AllocaInst *AI : IFI.StaticAllocas) { in InlineFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | PlaceSafepoints.cpp | 661 assert(IFI.StaticAllocas.empty() && "can't have allocs"); in InsertSafepointPoll()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.cpp | 11280 SmallDenseMap<const AllocaInst *, StaticAllocaInfo, 8> StaticAllocas; in findArgumentCopyElisionCandidates() local 11282 StaticAllocas.reserve(NumArgs * 2); in findArgumentCopyElisionCandidates() 11291 auto Iter = StaticAllocas.insert({AI, Unknown}); in findArgumentCopyElisionCandidates()
|