Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:StaticAllocas

140   void findInsts(Function &F, SmallVectorImpl<AllocaInst *> &StaticAllocas,
150 /// \brief Allocate space for all static allocas in \p StaticAllocas,
157 ArrayRef<AllocaInst *> StaticAllocas,
406 SmallVectorImpl<AllocaInst *> &StaticAllocas,
421 StaticAllocas.push_back(AI);
514 IRBuilder<> &IRB, Function &F, ArrayRef<AllocaInst *> StaticAllocas,
517 if (StaticAllocas.empty() && ByValArguments.empty())
522 StackColoring SSC(F, StaticAllocas);
548 for (AllocaInst *AI : StaticAllocas) {
612 for (AllocaInst *AI : StaticAllocas) {
760 SmallVector<AllocaInst *, 16> StaticAllocas;
774 findInsts(F, StaticAllocas, DynamicAllocas, ByValArguments, Returns,
777 if (StaticAllocas.empty() && DynamicAllocas.empty() &&
781 if (!StaticAllocas.empty() || !DynamicAllocas.empty() ||
815 moveStaticAllocasToUnsafeStack(IRB, F, StaticAllocas, ByValArguments,