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

Unified Diff: runtime/vm/deopt_instructions.h

Issue 254723003: Remember all deopt reasons in ic_data, not just the last one. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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/compiler.cc ('k') | runtime/vm/deopt_instructions.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/deopt_instructions.h
===================================================================
--- runtime/vm/deopt_instructions.h (revision 35455)
+++ runtime/vm/deopt_instructions.h (working copy)
@@ -89,7 +89,7 @@
RawCode* code() const { return code_; }
- DeoptReasonId deopt_reason() const { return deopt_reason_; }
+ ICData::DeoptReasonId deopt_reason() const { return deopt_reason_; }
RawDeoptInfo* deopt_info() const { return deopt_info_; }
@@ -191,7 +191,7 @@
intptr_t* cpu_registers_;
fpu_register_t* fpu_registers_;
intptr_t num_args_;
- DeoptReasonId deopt_reason_;
+ ICData::DeoptReasonId deopt_reason_;
intptr_t caller_fp_;
Isolate* isolate_;
« no previous file with comments | « runtime/vm/compiler.cc ('k') | runtime/vm/deopt_instructions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698