| Index: runtime/vm/profiler.cc
|
| diff --git a/runtime/vm/profiler.cc b/runtime/vm/profiler.cc
|
| index 4b5b6b57ed76c134eae8ec625903165a6056fdcd..1ec1e7fce8df5326cf19970796218e8febced13d 100644
|
| --- a/runtime/vm/profiler.cc
|
| +++ b/runtime/vm/profiler.cc
|
| @@ -292,6 +292,11 @@ class CodeRegion : public ZoneAllocated {
|
| }
|
| }
|
|
|
| + void DebugPrint() {
|
| + printf("%s [%" Px ", %" Px ") %s\n", name_, start(), end(),
|
| + KindToCString(kind_));
|
| + }
|
| +
|
| void AddTickAtAddress(uintptr_t pc) {
|
| const intptr_t length = address_table_->length();
|
| intptr_t i = 0;
|
|
|