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

Unified Diff: runtime/vm/isolate.h

Issue 1423473004: Switch profiler from isolates to threads [second landing] (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/debugger.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index 955d5e48f92f9a390f8abd68b034cea4e126cf00..f7beafac3b3a716afea4d8e251a979cb4133c448 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -549,27 +549,12 @@ class Isolate : public BaseIsolate {
return defer_finalization_count_ == 0;
}
- Mutex* profiler_data_mutex() {
- return &profiler_data_mutex_;
- }
-
- void set_profiler_data(IsolateProfilerData* profiler_data) {
- profiler_data_ = profiler_data;
- }
-
- IsolateProfilerData* profiler_data() const {
- return profiler_data_;
- }
-
void PrintJSON(JSONStream* stream, bool ref = true);
CompilerStats* compiler_stats() {
return compiler_stats_;
}
- // Returns the number of sampled threads.
- intptr_t ProfileInterrupt();
-
VMTagCounters* vm_tag_counters() {
return &vm_tag_counters_;
}
@@ -795,9 +780,6 @@ class Isolate : public BaseIsolate {
// Trace buffer support.
TraceBuffer* trace_buffer_;
- IsolateProfilerData* profiler_data_;
- Mutex profiler_data_mutex_;
-
VMTagCounters vm_tag_counters_;
RawGrowableObjectArray* tag_table_;
« no previous file with comments | « runtime/vm/debugger.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698