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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp1277 auto FindIndex = [](ArrayRef<Value *> LiveVec, Value *Val) {
1278 auto ValIt = llvm::find(LiveVec, Val);
1279 assert(ValIt != LiveVec.end() && "Val not found in LiveVec!");
1280 size_t Index = std::distance(LiveVec.begin(), ValIt);
1281 assert(Index < LiveVec.size() && "Bug in std::find?");
1609 SmallVector<Value *, 64> BaseVec, LiveVec; local
1610 LiveVec.reserve(LiveSet.size());
1613 LiveVec.push_back(L);
1618 assert(LiveVec
[all...]

Completed in 270 milliseconds