Searched refs:PromotableAllocas (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DSROA.h94 std::vector<AllocaInst *> PromotableAllocas; member in class:llvm::SROA
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp1701 SmallVector<AllocaInst *, 200> PromotableAllocas; local
1704 PromotableAllocas.reserve(Live.size());
1707 // "PromotableAllocas"
1714 PromotableAllocas.push_back(Alloca);
1865 assert(PromotableAllocas.size() == Live.size() + NumRematerializedValues &&
1867 if (!PromotableAllocas.empty()) {
1869 PromoteMemToReg(PromotableAllocas, DT);
H A DSROA.cpp4097 PromotableAllocas.erase(
4099 PromotableAllocas,
4101 PromotableAllocas.end());
4226 PromotableAllocas.push_back(NewAI);
4546 /// the PromotableAllocas list. If that list is empty, there is nothing to do.
4549 if (PromotableAllocas.empty())
4552 NumPromoted += PromotableAllocas.size();
4555 PromoteMemToReg(PromotableAllocas, *DT, AC);
4556 PromotableAllocas.clear();
4590 PromotableAllocas
[all...]

Completed in 132 milliseconds