| Index: src/heap/store-buffer.cc
|
| diff --git a/src/heap/store-buffer.cc b/src/heap/store-buffer.cc
|
| index 1c1676a229fc00d21c0f8634b1bc0d5da99f6ef1..551df2746f3dbe85b266273c1c2ae78815a9604e 100644
|
| --- a/src/heap/store-buffer.cc
|
| +++ b/src/heap/store-buffer.cc
|
| @@ -494,6 +494,11 @@ void StoreBuffer::IteratePointersToNewSpace(ObjectSlotCallback slot_callback) {
|
| obj_address + FixedTypedArrayBase::kBasePointerOffset,
|
| obj_address + FixedTypedArrayBase::kHeaderSize,
|
| slot_callback);
|
| + } else if (heap_object->IsBytecodeArray()) {
|
| + FindPointersToNewSpaceInRegion(
|
| + obj_address + BytecodeArray::kConstantPoolOffset,
|
| + obj_address + BytecodeArray::kHeaderSize,
|
| + slot_callback);
|
| } else if (FLAG_unbox_double_fields) {
|
| LayoutDescriptorHelper helper(heap_object->map());
|
| DCHECK(!helper.all_fields_tagged());
|
|
|