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

Unified Diff: src/assembler.cc

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/assembler.h ('k') | src/disassembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/assembler.cc
===================================================================
--- src/assembler.cc (revision 10578)
+++ src/assembler.cc (working copy)
@@ -603,8 +603,13 @@
return "statement position";
case RelocInfo::EXTERNAL_REFERENCE:
return "external reference";
+#ifndef V8_TARGET_ARCH_ARM
case RelocInfo::INTERNAL_REFERENCE:
return "internal reference";
+#else
+ case RelocInfo::MAP_SIGNATURE:
+ return "map signature";
+#endif
case RelocInfo::DEBUG_BREAK_SLOT:
#ifndef ENABLE_DEBUGGER_SUPPORT
UNREACHABLE();
@@ -659,6 +664,9 @@
void RelocInfo::Verify() {
switch (rmode_) {
case EMBEDDED_OBJECT:
+#ifdef V8_TARGET_ARCH_ARM
+ case MAP_SIGNATURE:
+#endif
Object::VerifyPointer(target_object());
break;
case GLOBAL_PROPERTY_CELL:
@@ -689,7 +697,9 @@
case POSITION:
case STATEMENT_POSITION:
case EXTERNAL_REFERENCE:
+#ifndef V8_TARGET_ARCH_ARM
case INTERNAL_REFERENCE:
+#endif
case DEBUG_BREAK_SLOT:
case NONE:
break;
« no previous file with comments | « src/assembler.h ('k') | src/disassembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698