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

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: ready for review. Created 8 years 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/il_printer.cc
diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
index b3410f59672437030e25bc7b112ed3fba2154c82..11763115dc41f987d4e5689bfbf1757582bef79e 100644
--- a/runtime/vm/il_printer.cc
+++ b/runtime/vm/il_printer.cc
@@ -362,7 +362,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);

Powered by Google App Engine
This is Rietveld 408576698