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

Unified Diff: runtime/vm/raw_object.h

Issue 1054393003: Compress deopt instructions in memory using variable length encoding. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: landing Created 5 years, 8 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/object.cc ('k') | runtime/vm/raw_object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/raw_object.h
diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
index f4a537f0c85b54f69615e2920c5784a1b5144aae..0a3e5a2504a2c52877c4b87fb585c398dc5c4d7f 100644
--- a/runtime/vm/raw_object.h
+++ b/runtime/vm/raw_object.h
@@ -35,7 +35,6 @@ namespace dart {
V(Stackmap) \
V(LocalVarDescriptors) \
V(ExceptionHandlers) \
- V(DeoptInfo) \
V(Context) \
V(ContextScope) \
V(ICData) \
@@ -1244,19 +1243,6 @@ class RawExceptionHandlers : public RawObject {
};
-// Contains an array of deoptimization commands, e.g., move a specific register
-// into a specific slot of unoptimized frame.
-class RawDeoptInfo : public RawObject {
- RAW_HEAP_OBJECT_IMPLEMENTATION(DeoptInfo);
-
- RawSmi* length_; // Number of deoptimization commands
-
- // Variable length data follows here.
- intptr_t* data() { OPEN_ARRAY_START(intptr_t, intptr_t); }
- const intptr_t* data() const { OPEN_ARRAY_START(intptr_t, intptr_t); }
-};
-
-
class RawContext : public RawObject {
RAW_HEAP_OBJECT_IMPLEMENTATION(Context);
@@ -2154,7 +2140,6 @@ inline bool RawObject::IsVariableSizeClassId(intptr_t index) {
(index == kStackmapCid) ||
(index == kLocalVarDescriptorsCid) ||
(index == kExceptionHandlersCid) ||
- (index == kDeoptInfoCid) ||
(index == kCodeCid) ||
(index == kContextScopeCid) ||
(index == kInstanceCid) ||
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/raw_object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698