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

Unified Diff: runtime/vm/isolate.h

Issue 145323002: Post-meetup feature extravaganza. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/debugger_api_impl.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
===================================================================
--- runtime/vm/isolate.h (revision 32126)
+++ runtime/vm/isolate.h (working copy)
@@ -35,6 +35,7 @@
class ICData;
class Instance;
class IsolateProfilerData;
+class IsolateSpawnState;
class LongJumpScope;
class MessageHandler;
class Mutex;
@@ -237,8 +238,8 @@
bool is_runnable() const { return is_runnable_; }
void set_is_runnable(bool value) { is_runnable_ = value; }
- uword spawn_data() const { return spawn_data_; }
- void set_spawn_data(uword value) { spawn_data_ = value; }
+ IsolateSpawnState* spawn_state() const { return spawn_state_; }
+ void set_spawn_state(IsolateSpawnState* value) { spawn_state_ = value; }
static const intptr_t kNoDeoptId = -1;
static const intptr_t kDeoptIdStep = 2;
@@ -378,8 +379,6 @@
deopt_context_ = value;
}
- static char* GetStatus(const char* request);
-
intptr_t BlockClassFinalization() {
ASSERT(defer_finalization_count_ >= 0);
return defer_finalization_count_++;
@@ -407,18 +406,14 @@
return profiler_data_;
}
+ void PrintToJSONStream(JSONStream* stream);
+
private:
Isolate();
void BuildName(const char* name_prefix);
void PrintInvokedFunctions();
- static bool FetchStacktrace();
- static bool FetchStackFrameDetails();
- char* GetStatusDetails();
- char* GetStatusStacktrace();
- char* GetStatusStackFrame(intptr_t index);
- char* DoStacktraceInterrupt(Dart_IsolateInterruptCallback cb);
template<class T> T* AllocateReusableHandle();
static ThreadLocalKey isolate_key;
@@ -450,7 +445,7 @@
uword stack_limit_;
uword saved_stack_limit_;
MessageHandler* message_handler_;
- uword spawn_data_;
+ IsolateSpawnState* spawn_state_;
bool is_runnable_;
GcPrologueCallbacks gc_prologue_callbacks_;
GcEpilogueCallbacks gc_epilogue_callbacks_;
« no previous file with comments | « runtime/vm/debugger_api_impl.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698