Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: runtime/vm/profiler_service.h

Issue 1826743002: Function profile should respect --show-invisible-frames (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | runtime/vm/profiler_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_PROFILER_SERVICE_H_ 5 #ifndef VM_PROFILER_SERVICE_H_
6 #define VM_PROFILER_SERVICE_H_ 6 #define VM_PROFILER_SERVICE_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 #include "vm/code_observers.h" 9 #include "vm/code_observers.h"
10 #include "vm/globals.h" 10 #include "vm/globals.h"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 ASSERT(name_ != NULL); 70 ASSERT(name_ != NULL);
71 return name_; 71 return name_;
72 } 72 }
73 73
74 const char* Name() const; 74 const char* Name() const;
75 75
76 RawFunction* function() const { 76 RawFunction* function() const {
77 return function_.raw(); 77 return function_.raw();
78 } 78 }
79 79
80 bool is_visible() const;
81
80 intptr_t table_index() const { 82 intptr_t table_index() const {
81 return table_index_; 83 return table_index_;
82 } 84 }
83 85
84 Kind kind() const { 86 Kind kind() const {
85 return kind_; 87 return kind_;
86 } 88 }
87 89
88 intptr_t exclusive_ticks() const { return exclusive_ticks_; } 90 intptr_t exclusive_ticks() const { return exclusive_ticks_; }
89 intptr_t inclusive_ticks() const { return inclusive_ticks_; } 91 intptr_t inclusive_ticks() const { return inclusive_ticks_; }
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 JSONStream* stream, 466 JSONStream* stream,
465 Profile::TagOrder tag_order, 467 Profile::TagOrder tag_order,
466 intptr_t extra_tags, 468 intptr_t extra_tags,
467 SampleFilter* filter, 469 SampleFilter* filter,
468 bool as_timline); 470 bool as_timline);
469 }; 471 };
470 472
471 } // namespace dart 473 } // namespace dart
472 474
473 #endif // VM_PROFILER_SERVICE_H_ 475 #endif // VM_PROFILER_SERVICE_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/profiler_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698