Lines Matching defs:StaticAllocas
143 void findInsts(Function &F, SmallVectorImpl<AllocaInst *> &StaticAllocas,
153 /// Allocate space for all static allocas in \p StaticAllocas,
159 ArrayRef<AllocaInst *> StaticAllocas,
378 SmallVectorImpl<AllocaInst *> &StaticAllocas,
393 StaticAllocas.push_back(AI);
488 IRBuilder<> &IRB, Function &F, ArrayRef<AllocaInst *> StaticAllocas,
491 if (StaticAllocas.empty() && ByValArguments.empty())
496 StackLifetime SSC(F, StaticAllocas, StackLifetime::LivenessType::May);
531 for (AllocaInst *AI : StaticAllocas) {
596 for (AllocaInst *AI : StaticAllocas) {
759 SmallVector<AllocaInst *, 16> StaticAllocas;
773 findInsts(F, StaticAllocas, DynamicAllocas, ByValArguments, Returns,
776 if (StaticAllocas.empty() && DynamicAllocas.empty() &&
780 if (!StaticAllocas.empty() || !DynamicAllocas.empty() ||
825 IRB, F, StaticAllocas, ByValArguments, BasePointer, StackGuardSlot);