Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp1505 auto FindIndex = [](ArrayRef<Value *> LiveVec, Value *Val) { in CreateGCRelocates() argument
1506 auto ValIt = llvm::find(LiveVec, Val); in CreateGCRelocates()
1507 assert(ValIt != LiveVec.end() && "Val not found in LiveVec!"); in CreateGCRelocates()
1508 size_t Index = std::distance(LiveVec.begin(), ValIt); in CreateGCRelocates()
1509 assert(Index < LiveVec.size() && "Bug in std::find?"); in CreateGCRelocates()
1942 SmallVector<Value *, 64> BaseVec, LiveVec; in makeStatepointExplicit() local
1943 LiveVec.reserve(LiveSet.size()); in makeStatepointExplicit()
1946 LiveVec.push_back(L); in makeStatepointExplicit()
1951 assert(LiveVec.size() == BaseVec.size()); in makeStatepointExplicit()
1954 makeStatepointExplicitImpl(Call, BaseVec, LiveVec, Result, Replacements, in makeStatepointExplicit()