Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:StaticAllocas

156   void findInsts(Function &F, SmallVectorImpl<AllocaInst *> &StaticAllocas,
166 /// Allocate space for all static allocas in \p StaticAllocas,
173 ArrayRef<AllocaInst *> StaticAllocas,
376 SmallVectorImpl<AllocaInst *> &StaticAllocas,
391 StaticAllocas.push_back(AI);
484 IRBuilder<> &IRB, Function &F, ArrayRef<AllocaInst *> StaticAllocas,
487 if (StaticAllocas.empty() && ByValArguments.empty())
492 StackColoring SSC(F, StaticAllocas);
518 for (AllocaInst *AI : StaticAllocas) {
583 for (AllocaInst *AI : StaticAllocas) {
749 SmallVector<AllocaInst *, 16> StaticAllocas;
763 findInsts(F, StaticAllocas, DynamicAllocas, ByValArguments, Returns,
766 if (StaticAllocas.empty() && DynamicAllocas.empty() &&
770 if (!StaticAllocas.empty() || !DynamicAllocas.empty() ||
810 moveStaticAllocasToUnsafeStack(IRB, F, StaticAllocas, ByValArguments,