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

Unified Diff: src/objects-visiting-inl.h

Issue 9315032: ARM: Use ubfx and movw instructions to avoid a PC-relative load on Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 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 | « src/objects.cc ('k') | src/platform.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-visiting-inl.h
===================================================================
--- src/objects-visiting-inl.h (revision 10578)
+++ src/objects-visiting-inl.h (working copy)
@@ -103,6 +103,9 @@
RelocInfo::ModeMask(RelocInfo::JS_RETURN) |
RelocInfo::ModeMask(RelocInfo::DEBUG_BREAK_SLOT) |
RelocInfo::ModeMask(RelocInfo::RUNTIME_ENTRY);
+#ifdef V8_TARGET_ARCH_ARM
+ mode_mask |= RelocInfo::ModeMask(RelocInfo::MAP_SIGNATURE);
+#endif
// There are two places where we iterate code bodies: here and the
// templated CodeIterateBody (below). They should be kept in sync.
@@ -127,6 +130,9 @@
RelocInfo::ModeMask(RelocInfo::JS_RETURN) |
RelocInfo::ModeMask(RelocInfo::DEBUG_BREAK_SLOT) |
RelocInfo::ModeMask(RelocInfo::RUNTIME_ENTRY);
+#ifdef V8_TARGET_ARCH_ARM
+ mode_mask |= RelocInfo::ModeMask(RelocInfo::MAP_SIGNATURE);
+#endif
// There are two places where we iterate code bodies: here and the
// non-templated CodeIterateBody (above). They should be kept in sync.
« no previous file with comments | « src/objects.cc ('k') | src/platform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698