Chromium Code Reviews| Index: src/objects-inl.h |
| diff --git a/src/objects-inl.h b/src/objects-inl.h |
| index 36e7eb1758769709f12c17d6abf609f422dd9359..e0c60700c95a9924450bd6d04a5204e6ed0bc36c 100644 |
| --- a/src/objects-inl.h |
| +++ b/src/objects-inl.h |
| @@ -1480,6 +1480,23 @@ int HeapObject::Size() { |
| } |
| +bool HeapObject::MayContainNewSpacePointers() { |
| + InstanceType type = map()->instance_type(); |
| + if (type <= LAST_NAME_TYPE) { |
| + if (type == SYMBOL_TYPE) { |
| + return true; |
| + } |
| + ASSERT(type < FIRST_NONSTRING_TYPE); |
| + // There are four string representations: sequential strings, external |
| + // strings, cons strings, and sliced strings. |
| + // Only the latter two contain non-map-word pointers to heap objects. |
| + return ((type & kIsIndirectStringMask) == kIsIndirectStringTag); |
| + } |
| + if (type == CONSTANT_POOL_ARRAY_TYPE) return false; |
|
rmcilroy
2014/07/24 10:24:48
nit - add a comment here that the ConstantPoolArra
Hannes Payer (out of office)
2014/07/24 10:40:08
Done.
|
| + return (type > LAST_DATA_TYPE); |
| +} |
| + |
| + |
| void HeapObject::IteratePointers(ObjectVisitor* v, int start, int end) { |
| v->VisitPointers(reinterpret_cast<Object**>(FIELD_ADDR(this, start)), |
| reinterpret_cast<Object**>(FIELD_ADDR(this, end))); |