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

Unified Diff: runtime/vm/intrinsifier_arm.cc

Issue 583583007: 1. Add user tag to the pointers traversed in the object store (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 3 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/lib/profiler.cc ('k') | runtime/vm/intrinsifier_arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intrinsifier_arm.cc
===================================================================
--- runtime/vm/intrinsifier_arm.cc (revision 40496)
+++ runtime/vm/intrinsifier_arm.cc (working copy)
@@ -1623,8 +1623,7 @@
Isolate* isolate = Isolate::Current();
// Set return value to default tag address.
__ LoadImmediate(R0,
- reinterpret_cast<uword>(isolate->object_store()) +
- ObjectStore::default_tag_offset());
+ reinterpret_cast<uword>(isolate) + Isolate::default_tag_offset());
__ ldr(R0, Address(R0, 0));
__ Ret();
}
« no previous file with comments | « runtime/lib/profiler.cc ('k') | runtime/vm/intrinsifier_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698