OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 "src/heap/heap.h" | 5 #include "src/heap/heap.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/api.h" | 8 #include "src/api.h" |
9 #include "src/ast/scopeinfo.h" | 9 #include "src/ast/scopeinfo.h" |
10 #include "src/base/bits.h" | 10 #include "src/base/bits.h" |
(...skipping 3339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3350 | 3350 |
3351 // Relocate the copy. | 3351 // Relocate the copy. |
3352 DCHECK(IsAligned(bit_cast<intptr_t>(new_code->address()), kCodeAlignment)); | 3352 DCHECK(IsAligned(bit_cast<intptr_t>(new_code->address()), kCodeAlignment)); |
3353 DCHECK(isolate_->code_range() == NULL || !isolate_->code_range()->valid() || | 3353 DCHECK(isolate_->code_range() == NULL || !isolate_->code_range()->valid() || |
3354 isolate_->code_range()->contains(code->address()) || | 3354 isolate_->code_range()->contains(code->address()) || |
3355 obj_size <= code_space()->AreaSize()); | 3355 obj_size <= code_space()->AreaSize()); |
3356 new_code->Relocate(new_addr - old_addr); | 3356 new_code->Relocate(new_addr - old_addr); |
3357 return new_code; | 3357 return new_code; |
3358 } | 3358 } |
3359 | 3359 |
| 3360 AllocationResult Heap::CopyBytecodeArray(BytecodeArray* bytecode_array) { |
| 3361 int size = BytecodeArray::SizeFor(bytecode_array->length()); |
| 3362 HeapObject* result = nullptr; |
| 3363 { |
| 3364 AllocationResult allocation = AllocateRaw(size, OLD_SPACE); |
| 3365 if (!allocation.To(&result)) return allocation; |
| 3366 } |
| 3367 |
| 3368 result->set_map_no_write_barrier(bytecode_array_map()); |
| 3369 BytecodeArray* copy = BytecodeArray::cast(result); |
| 3370 copy->set_length(bytecode_array->length()); |
| 3371 copy->set_frame_size(bytecode_array->frame_size()); |
| 3372 copy->set_parameter_count(bytecode_array->parameter_count()); |
| 3373 copy->set_constant_pool(bytecode_array->constant_pool()); |
| 3374 copy->set_handler_table(bytecode_array->handler_table()); |
| 3375 copy->set_source_position_table(bytecode_array->source_position_table()); |
| 3376 bytecode_array->CopyTo(copy); |
| 3377 return copy; |
| 3378 } |
3360 | 3379 |
3361 AllocationResult Heap::CopyCode(Code* code, Vector<byte> reloc_info) { | 3380 AllocationResult Heap::CopyCode(Code* code, Vector<byte> reloc_info) { |
3362 // Allocate ByteArray before the Code object, so that we do not risk | 3381 // Allocate ByteArray before the Code object, so that we do not risk |
3363 // leaving uninitialized Code object (and breaking the heap). | 3382 // leaving uninitialized Code object (and breaking the heap). |
3364 ByteArray* reloc_info_array = nullptr; | 3383 ByteArray* reloc_info_array = nullptr; |
3365 { | 3384 { |
3366 AllocationResult allocation = | 3385 AllocationResult allocation = |
3367 AllocateByteArray(reloc_info.length(), TENURED); | 3386 AllocateByteArray(reloc_info.length(), TENURED); |
3368 if (!allocation.To(&reloc_info_array)) return allocation; | 3387 if (!allocation.To(&reloc_info_array)) return allocation; |
3369 } | 3388 } |
(...skipping 2917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6287 } | 6306 } |
6288 | 6307 |
6289 | 6308 |
6290 // static | 6309 // static |
6291 int Heap::GetStaticVisitorIdForMap(Map* map) { | 6310 int Heap::GetStaticVisitorIdForMap(Map* map) { |
6292 return StaticVisitorBase::GetVisitorId(map); | 6311 return StaticVisitorBase::GetVisitorId(map); |
6293 } | 6312 } |
6294 | 6313 |
6295 } // namespace internal | 6314 } // namespace internal |
6296 } // namespace v8 | 6315 } // namespace v8 |
OLD | NEW |