Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDPlaceSafepoints.cpp577 std::vector<CallSite> ParsePointNeeded; in runOnFunction() local
670 ParsePointNeeded.insert(ParsePointNeeded.end(), RuntimeCalls.begin(), in runOnFunction()
682 ParsePointNeeded.insert(ParsePointNeeded.end(), Calls.begin(), Calls.end()); in runOnFunction()
690 unique_unsorted(ParsePointNeeded); in runOnFunction()
695 if (!ParsePointNeeded.empty()) in runOnFunction()
702 Results.reserve(ParsePointNeeded.size()); in runOnFunction()
703 for (size_t i = 0; i < ParsePointNeeded.size(); i++) { in runOnFunction()
704 CallSite &CS = ParsePointNeeded[i]; in runOnFunction()
719 assert(Results.size() == ParsePointNeeded.size()); in runOnFunction()
722 for (size_t i = 0; i < ParsePointNeeded.size(); i++) { in runOnFunction()
[all …]
HDRewriteStatepointsForGC.cpp2396 SmallVector<CallSite, 64> ParsePointNeeded; in runOnFunction() local
2402 ParsePointNeeded.push_back(CallSite(&I)); in runOnFunction()
2418 if (ParsePointNeeded.empty()) in runOnFunction()
2431 MadeChange |= insertParsePoints(F, DT, this, ParsePointNeeded); in runOnFunction()