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.cpp1510 auto FindIndex = [](ArrayRef<Value *> LiveVec, Value *Val) { in CreateGCRelocates() argument
1511 auto ValIt = llvm::find(LiveVec, Val); in CreateGCRelocates()
1512 assert(ValIt != LiveVec.end() && "Val not found in LiveVec!"); in CreateGCRelocates()
1513 size_t Index = std::distance(LiveVec.begin(), ValIt); in CreateGCRelocates()
1514 assert(Index < LiveVec.size() && "Bug in std::find?"); in CreateGCRelocates()
1948 SmallVector<Value *, 64> BaseVec, LiveVec; in makeStatepointExplicit() local
1949 LiveVec.reserve(LiveSet.size()); in makeStatepointExplicit()
1952 LiveVec.push_back(L); in makeStatepointExplicit()
1957 assert(LiveVec.size() == BaseVec.size()); in makeStatepointExplicit()
1960 makeStatepointExplicitImpl(Call, BaseVec, LiveVec, Result, Replacements, in makeStatepointExplicit()