| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |