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

Unified Diff: runtime/vm/isolate.h

Issue 1299653003: Migrate LongJumpScope to Thread. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Assert current isolate. Created 5 years, 4 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/dart_entry.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 4f75d3f0dfcc0548e33a7a447c0292b0b02fdf44..9f54497d4c41840db46b6d79ec892ab0d7da599e 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -51,7 +51,6 @@ class IsolateSpawnState;
class InterruptableThreadState;
class Library;
class Log;
-class LongJumpScope;
class MessageHandler;
class Mutex;
class Object;
@@ -238,9 +237,6 @@ class Isolate : public BaseIsolate {
ApiState* api_state() const { return api_state_; }
void set_api_state(ApiState* value) { api_state_ = value; }
- LongJumpScope* long_jump_base() const { return long_jump_base_; }
- void set_long_jump_base(LongJumpScope* value) { long_jump_base_ = value; }
-
TimerList& timer_list() { return timer_list_; }
void set_init_callback_data(void* value) {
@@ -271,6 +267,7 @@ class Isolate : public BaseIsolate {
// Returns the current C++ stack pointer. Equivalent taking the address of a
// stack allocated local, but plays well with AddressSanitizer.
+ // TODO(koda): Move to Thread.
static uword GetCurrentStackPointer();
// Returns true if any of the interrupts specified by 'interrupt_bits' are
@@ -823,7 +820,6 @@ class Isolate : public BaseIsolate {
Flags flags_;
Random random_;
Simulator* simulator_;
- LongJumpScope* long_jump_base_;
TimerList timer_list_;
intptr_t deopt_id_;
Mutex* mutex_; // protects stack_limit_ and saved_stack_limit_.
« no previous file with comments | « runtime/vm/dart_entry.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698