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

Side by Side Diff: src/objects.cc

Issue 904633003: Just visit young array buffers during scavenge. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <sstream> 5 #include <sstream>
6 6
7 #include "src/v8.h" 7 #include "src/v8.h"
8 8
9 #include "src/accessors.h" 9 #include "src/accessors.h"
10 #include "src/allocation-site-scopes.h" 10 #include "src/allocation-site-scopes.h"
(...skipping 16780 matching lines...) Expand 10 before | Expand all | Expand 10 after
16791 Runtime::SetupArrayBufferAllocatingData(isolate, buffer, 16791 Runtime::SetupArrayBufferAllocatingData(isolate, buffer,
16792 fixed_typed_array->DataSize(), false); 16792 fixed_typed_array->DataSize(), false);
16793 memcpy(buffer->backing_store(), 16793 memcpy(buffer->backing_store(),
16794 fixed_typed_array->DataPtr(), 16794 fixed_typed_array->DataPtr(),
16795 fixed_typed_array->DataSize()); 16795 fixed_typed_array->DataSize());
16796 Handle<ExternalArray> new_elements = 16796 Handle<ExternalArray> new_elements =
16797 isolate->factory()->NewExternalArray( 16797 isolate->factory()->NewExternalArray(
16798 fixed_typed_array->length(), typed_array->type(), 16798 fixed_typed_array->length(), typed_array->type(),
16799 static_cast<uint8_t*>(buffer->backing_store())); 16799 static_cast<uint8_t*>(buffer->backing_store()));
16800 16800
16801 buffer->set_weak_first_view(*typed_array); 16801 Heap* heap = isolate->heap();
16802 DCHECK(typed_array->weak_next() == isolate->heap()->undefined_value()); 16802 if (heap->InNewSpace(*typed_array)) {
16803 DCHECK(typed_array->weak_next() == isolate->heap()->undefined_value());
16804 typed_array->set_weak_next(heap->new_array_buffers_view_list());
16805 heap->set_new_array_buffers_view_list(*typed_array);
16806 } else {
16807 buffer->set_weak_first_view(*typed_array);
16808 DCHECK(typed_array->weak_next() == isolate->heap()->undefined_value());
16809 }
16803 typed_array->set_buffer(*buffer); 16810 typed_array->set_buffer(*buffer);
16804 JSObject::SetMapAndElements(typed_array, new_map, new_elements); 16811 JSObject::SetMapAndElements(typed_array, new_map, new_elements);
16805 16812
16806 return buffer; 16813 return buffer;
16807 } 16814 }
16808 16815
16809 16816
16810 Handle<JSArrayBuffer> JSTypedArray::GetBuffer() { 16817 Handle<JSArrayBuffer> JSTypedArray::GetBuffer() {
16811 Handle<Object> result(buffer(), GetIsolate()); 16818 Handle<Object> result(buffer(), GetIsolate());
16812 if (*result != Smi::FromInt(0)) { 16819 if (*result != Smi::FromInt(0)) {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
16875 Handle<DependentCode> codes = 16882 Handle<DependentCode> codes =
16876 DependentCode::Insert(handle(cell->dependent_code(), info->isolate()), 16883 DependentCode::Insert(handle(cell->dependent_code(), info->isolate()),
16877 DependentCode::kPropertyCellChangedGroup, 16884 DependentCode::kPropertyCellChangedGroup,
16878 info->object_wrapper()); 16885 info->object_wrapper());
16879 if (*codes != cell->dependent_code()) cell->set_dependent_code(*codes); 16886 if (*codes != cell->dependent_code()) cell->set_dependent_code(*codes);
16880 info->dependencies(DependentCode::kPropertyCellChangedGroup)->Add( 16887 info->dependencies(DependentCode::kPropertyCellChangedGroup)->Add(
16881 cell, info->zone()); 16888 cell, info->zone());
16882 } 16889 }
16883 16890
16884 } } // namespace v8::internal 16891 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698