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

Unified Diff: runtime/vm/il_printer.cc

Issue 11642003: Create and cache method extraction stub in the ICData. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: lazyly inject extractors as getters into class Created 7 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/flow_graph_optimizer.cc ('k') | runtime/vm/intermediate_language.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/il_printer.cc
diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
index 4a6fe3bd38d397b14803d01fbaf3999ddb7771fe..1f3156aa6348074e87a46b85203fd0c4986e03f9 100644
--- a/runtime/vm/il_printer.cc
+++ b/runtime/vm/il_printer.cc
@@ -372,7 +372,9 @@ void NativeCallInstr::PrintOperandsTo(BufferFormatter* f) const {
void StoreInstanceFieldInstr::PrintOperandsTo(BufferFormatter* f) const {
- f->Print("%s, ", String::Handle(field().name()).ToCString());
+ f->Print("%s {%"Pd"}, ",
+ String::Handle(field().name()).ToCString(),
+ field().Offset());
instance()->PrintTo(f);
f->Print(", ");
value()->PrintTo(f);
« no previous file with comments | « runtime/vm/flow_graph_optimizer.cc ('k') | runtime/vm/intermediate_language.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698