Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Scalar/
DPlaceSafepoints.cpp568 std::vector<CallSite> ParsePointNeeded; in runOnFunction() local
661 ParsePointNeeded.insert(ParsePointNeeded.end(), RuntimeCalls.begin(), in runOnFunction()
673 ParsePointNeeded.insert(ParsePointNeeded.end(), Calls.begin(), Calls.end()); in runOnFunction()
681 unique_unsorted(ParsePointNeeded); in runOnFunction()
686 if (!ParsePointNeeded.empty()) in runOnFunction()
693 Results.reserve(ParsePointNeeded.size()); in runOnFunction()
694 for (size_t i = 0; i < ParsePointNeeded.size(); i++) { in runOnFunction()
695 CallSite &CS = ParsePointNeeded[i]; in runOnFunction()
710 assert(Results.size() == ParsePointNeeded.size()); in runOnFunction()
713 for (size_t i = 0; i < ParsePointNeeded.size(); i++) { in runOnFunction()
[all …]
DRewriteStatepointsForGC.cpp2613 SmallVector<CallSite, 64> ParsePointNeeded; in runOnFunction() local
2619 ParsePointNeeded.push_back(CallSite(&I)); in runOnFunction()
2635 if (ParsePointNeeded.empty()) in runOnFunction()
2679 MadeChange |= insertParsePoints(F, DT, TTI, ParsePointNeeded); in runOnFunction()