Lines Matching refs:AllocaVec
417 SmallVector<AllocaInst*, 16> AllocaVec; member
453 if (AllocaVec.empty()) return false; in runOnFunction()
481 AllocaVec.push_back(&AI); in visitAllocaInst()
541 void poisonRedZones(const ArrayRef<AllocaInst*> &AllocaVec, IRBuilder<> &IRB,
1382 const ArrayRef<AllocaInst*> &AllocaVec, IRBuilder<> &IRB, Value *ShadowBase, in poisonRedZones() argument
1401 for (size_t i = 0, n = AllocaVec.size(); i < n; i++) { in poisonRedZones()
1402 AllocaInst *AI = AllocaVec[i]; in poisonRedZones()
1435 bool LastAlloca = (i == AllocaVec.size() - 1); in poisonRedZones()
1472 (AllocaVec.size() + 1) * RedzoneSize(); in poisonStack()
1478 assert(AllocaVec.size() > 0); in poisonStack()
1479 Instruction *InsBefore = AllocaVec[0]; in poisonStack()
1521 StackDescription << AllocaVec.size() << " "; in poisonStack()
1536 for (size_t i = 0, n = AllocaVec.size(); i < n; i++) { in poisonStack()
1537 AllocaInst *AI = AllocaVec[i]; in poisonStack()
1576 poisonRedZones(AllocaVec, IRB, ShadowBase, true); in poisonStack()
1586 poisonRedZones(AllocaVec, IRBRet, ShadowBase, false); in poisonStack()
1626 for (size_t i = 0, n = AllocaVec.size(); i < n; i++) in poisonStack()
1627 AllocaVec[i]->eraseFromParent(); in poisonStack()