Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DProfiledCallGraph.h40 class ProfiledCallGraph {
45 ProfiledCallGraph(StringMap<FunctionSamples> &ProfileMap) { in ProfiledCallGraph() function
53 ProfiledCallGraph(SampleContextTracker &ContextTracker) { in ProfiledCallGraph() function
139 struct GraphTraits<ProfiledCallGraph *>
141 static NodeRef getEntryNode(ProfiledCallGraph *PCG) {
145 static ChildIteratorType nodes_begin(ProfiledCallGraph *PCG) {
149 static ChildIteratorType nodes_end(ProfiledCallGraph *PCG) {
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp404 std::unique_ptr<ProfiledCallGraph> buildProfiledCallGraph(CallGraph &CG);
1629 std::unique_ptr<ProfiledCallGraph> in INITIALIZE_PASS_DEPENDENCY()
1631 std::unique_ptr<ProfiledCallGraph> ProfiledCG; in INITIALIZE_PASS_DEPENDENCY()
1633 ProfiledCG = std::make_unique<ProfiledCallGraph>(*ContextTracker); in INITIALIZE_PASS_DEPENDENCY()
1635 ProfiledCG = std::make_unique<ProfiledCallGraph>(Reader->getProfiles()); in INITIALIZE_PASS_DEPENDENCY()
1727 std::unique_ptr<ProfiledCallGraph> ProfiledCG = buildProfiledCallGraph(*CG); in buildFunctionOrder()
1728 scc_iterator<ProfiledCallGraph *> CGI = scc_begin(ProfiledCG.get()); in buildFunctionOrder()