| 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.
|
|
|