HomeSort by: relevance | last modified time | path
    Searched refs:ProfiledCallGraph (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
ProfiledCallGraph.h 1 //===-- ProfiledCallGraph.h - Profiled Call Graph ----------------- C++ -*-===//
41 class ProfiledCallGraph {
46 ProfiledCallGraph(StringMap<FunctionSamples> &ProfileMap) {
54 ProfiledCallGraph(SampleContextTracker &ContextTracker) {
140 struct GraphTraits<ProfiledCallGraph *>
142 static NodeRef getEntryNode(ProfiledCallGraph *PCG) {
146 static ChildIteratorType nodes_begin(ProfiledCallGraph *PCG) {
150 static ChildIteratorType nodes_end(ProfiledCallGraph *PCG) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
CSPreInliner.cpp 45 ProfiledCallGraph ProfiledCG(ContextTracker);
49 scc_iterator<ProfiledCallGraph *> I = scc_begin(&ProfiledCG);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
SampleProfile.cpp 80 #include "llvm/Transforms/IPO/ProfiledCallGraph.h"
398 std::unique_ptr<ProfiledCallGraph> buildProfiledCallGraph(CallGraph &CG);
1625 std::unique_ptr<ProfiledCallGraph>
1627 std::unique_ptr<ProfiledCallGraph> ProfiledCG;
1629 ProfiledCG = std::make_unique<ProfiledCallGraph>(*ContextTracker);
1631 ProfiledCG = std::make_unique<ProfiledCallGraph>(Reader->getProfiles());
1723 std::unique_ptr<ProfiledCallGraph> ProfiledCG = buildProfiledCallGraph(*CG);
1724 scc_iterator<ProfiledCallGraph *> CGI = scc_begin(ProfiledCG.get());

Completed in 51 milliseconds