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

Unified Diff: runtime/vm/isolate.h

Issue 678763004: Make CTX allocatable by the register allocator. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: incorporated latest comments Created 6 years, 2 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
Index: runtime/vm/isolate.h
===================================================================
--- runtime/vm/isolate.h (revision 41393)
+++ runtime/vm/isolate.h (working copy)
@@ -187,12 +187,6 @@
return OFFSET_OF(Isolate, object_store_);
}
- RawContext* top_context() const { return top_context_; }
- void set_top_context(RawContext* value) { top_context_ = value; }
- static intptr_t top_context_offset() {
- return OFFSET_OF(Isolate, top_context_);
- }
-
uword top_exit_frame_info() const { return top_exit_frame_info_; }
void set_top_exit_frame_info(uword value) { top_exit_frame_info_ = value; }
static intptr_t top_exit_frame_info_offset() {
@@ -640,7 +634,6 @@
uint64_t terminate_capability_;
Heap* heap_;
ObjectStore* object_store_;
- RawContext* top_context_;
uword top_exit_frame_info_;
void* init_callback_data_;
Dart_EnvironmentCallback environment_callback_;

Powered by Google App Engine
This is Rietveld 408576698