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 3324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3335 | 3335 |
3336 // Relocate the copy. | 3336 // Relocate the copy. |
3337 DCHECK(IsAligned(bit_cast<intptr_t>(new_code->address()), kCodeAlignment)); | 3337 DCHECK(IsAligned(bit_cast<intptr_t>(new_code->address()), kCodeAlignment)); |
3338 DCHECK(isolate_->code_range() == NULL || !isolate_->code_range()->valid() || | 3338 DCHECK(isolate_->code_range() == NULL || !isolate_->code_range()->valid() || |
3339 isolate_->code_range()->contains(code->address()) || | 3339 isolate_->code_range()->contains(code->address()) || |
3340 obj_size <= code_space()->AreaSize()); | 3340 obj_size <= code_space()->AreaSize()); |
3341 new_code->Relocate(new_addr - old_addr); | 3341 new_code->Relocate(new_addr - old_addr); |
3342 return new_code; | 3342 return new_code; |
3343 } | 3343 } |
3344 | 3344 |
| 3345 AllocationResult Heap::CopyBytecodeArray(BytecodeArray* bytecode_array) { |
| 3346 int size = BytecodeArray::SizeFor(bytecode_array->length()); |
| 3347 HeapObject* result = nullptr; |
| 3348 { |
| 3349 AllocationResult allocation = AllocateRaw(size, OLD_SPACE); |
| 3350 if (!allocation.To(&result)) return allocation; |
| 3351 } |
| 3352 |
| 3353 result->set_map_no_write_barrier(bytecode_array_map()); |
| 3354 BytecodeArray* copy = BytecodeArray::cast(result); |
| 3355 copy->set_length(bytecode_array->length()); |
| 3356 copy->set_frame_size(bytecode_array->frame_size()); |
| 3357 copy->set_parameter_count(bytecode_array->parameter_count()); |
| 3358 copy->set_constant_pool(bytecode_array->constant_pool()); |
| 3359 copy->set_handler_table(bytecode_array->handler_table()); |
| 3360 copy->set_source_position_table(bytecode_array->source_position_table()); |
| 3361 bytecode_array->CopyTo(copy); |
| 3362 return copy; |
| 3363 } |
3345 | 3364 |
3346 AllocationResult Heap::CopyCode(Code* code, Vector<byte> reloc_info) { | 3365 AllocationResult Heap::CopyCode(Code* code, Vector<byte> reloc_info) { |
3347 // Allocate ByteArray before the Code object, so that we do not risk | 3366 // Allocate ByteArray before the Code object, so that we do not risk |
3348 // leaving uninitialized Code object (and breaking the heap). | 3367 // leaving uninitialized Code object (and breaking the heap). |
3349 ByteArray* reloc_info_array = nullptr; | 3368 ByteArray* reloc_info_array = nullptr; |
3350 { | 3369 { |
3351 AllocationResult allocation = | 3370 AllocationResult allocation = |
3352 AllocateByteArray(reloc_info.length(), TENURED); | 3371 AllocateByteArray(reloc_info.length(), TENURED); |
3353 if (!allocation.To(&reloc_info_array)) return allocation; | 3372 if (!allocation.To(&reloc_info_array)) return allocation; |
3354 } | 3373 } |
(...skipping 2878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6233 } | 6252 } |
6234 | 6253 |
6235 | 6254 |
6236 // static | 6255 // static |
6237 int Heap::GetStaticVisitorIdForMap(Map* map) { | 6256 int Heap::GetStaticVisitorIdForMap(Map* map) { |
6238 return StaticVisitorBase::GetVisitorId(map); | 6257 return StaticVisitorBase::GetVisitorId(map); |
6239 } | 6258 } |
6240 | 6259 |
6241 } // namespace internal | 6260 } // namespace internal |
6242 } // namespace v8 | 6261 } // namespace v8 |
OLD | NEW |