Home
last modified time | relevance | path

Searched refs:ProfileTree (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/profiler/
Dprofile-generator.h171 class ProfileTree; variable
175 inline ProfileNode(ProfileTree* tree, CodeEntry* entry, ProfileNode* parent);
210 ProfileTree* tree_;
226 class ProfileTree {
228 explicit ProfileTree(Isolate* isolate);
229 ~ProfileTree();
265 DISALLOW_COPY_AND_ASSIGN(ProfileTree);
279 const ProfileTree* top_down() const { return &top_down_; } in top_down()
304 ProfileTree top_down_;
Dprofile-generator.cc293 ProfileTree::ProfileTree(Isolate* isolate) in ProfileTree() function in v8::internal::ProfileTree
301 ProfileTree::~ProfileTree() { in ~ProfileTree()
307 unsigned ProfileTree::GetFunctionId(const ProfileNode* node) { in GetFunctionId()
317 ProfileNode* ProfileTree::AddPathFromEnd(const std::vector<CodeEntry*>& path, in AddPathFromEnd()
367 void ProfileTree::TraverseDepthFirst(Callback* callback) { in TraverseDepthFirst()
Dprofile-generator-inl.h32 ProfileNode::ProfileNode(ProfileTree* tree, CodeEntry* entry, in ProfileNode()