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/v8.h" | 5 #include "src/v8.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/base/platform/platform.h" | 9 #include "src/base/platform/platform.h" |
10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
560 isolate_->heap()->IterateStrongRoots(this, VISIT_ONLY_STRONG); | 560 isolate_->heap()->IterateStrongRoots(this, VISIT_ONLY_STRONG); |
561 isolate_->heap()->RepairFreeListsAfterDeserialization(); | 561 isolate_->heap()->RepairFreeListsAfterDeserialization(); |
562 isolate_->heap()->IterateWeakRoots(this, VISIT_ALL); | 562 isolate_->heap()->IterateWeakRoots(this, VISIT_ALL); |
563 | 563 |
564 isolate_->heap()->set_native_contexts_list( | 564 isolate_->heap()->set_native_contexts_list( |
565 isolate_->heap()->undefined_value()); | 565 isolate_->heap()->undefined_value()); |
566 isolate_->heap()->set_array_buffers_list( | 566 isolate_->heap()->set_array_buffers_list( |
567 isolate_->heap()->undefined_value()); | 567 isolate_->heap()->undefined_value()); |
568 isolate_->heap()->set_last_array_buffer_in_list( | 568 isolate_->heap()->set_last_array_buffer_in_list( |
569 isolate_->heap()->undefined_value()); | 569 isolate_->heap()->undefined_value()); |
| 570 isolate->heap()->set_new_array_buffer_views_list( |
| 571 isolate_->heap()->undefined_value()); |
570 | 572 |
571 // The allocation site list is build during root iteration, but if no sites | 573 // The allocation site list is build during root iteration, but if no sites |
572 // were encountered then it needs to be initialized to undefined. | 574 // were encountered then it needs to be initialized to undefined. |
573 if (isolate_->heap()->allocation_sites_list() == Smi::FromInt(0)) { | 575 if (isolate_->heap()->allocation_sites_list() == Smi::FromInt(0)) { |
574 isolate_->heap()->set_allocation_sites_list( | 576 isolate_->heap()->set_allocation_sites_list( |
575 isolate_->heap()->undefined_value()); | 577 isolate_->heap()->undefined_value()); |
576 } | 578 } |
577 | 579 |
578 // Update data pointers to the external strings containing natives sources. | 580 // Update data pointers to the external strings containing natives sources. |
579 for (int i = 0; i < Natives::GetBuiltinsCount(); i++) { | 581 for (int i = 0; i < Natives::GetBuiltinsCount(); i++) { |
(...skipping 2009 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2589 DisallowHeapAllocation no_gc; | 2591 DisallowHeapAllocation no_gc; |
2590 SerializedCodeData* scd = new SerializedCodeData(cached_data); | 2592 SerializedCodeData* scd = new SerializedCodeData(cached_data); |
2591 SanityCheckResult r = scd->SanityCheck(isolate, source); | 2593 SanityCheckResult r = scd->SanityCheck(isolate, source); |
2592 if (r == CHECK_SUCCESS) return scd; | 2594 if (r == CHECK_SUCCESS) return scd; |
2593 cached_data->Reject(); | 2595 cached_data->Reject(); |
2594 source->GetIsolate()->counters()->code_cache_reject_reason()->AddSample(r); | 2596 source->GetIsolate()->counters()->code_cache_reject_reason()->AddSample(r); |
2595 delete scd; | 2597 delete scd; |
2596 return NULL; | 2598 return NULL; |
2597 } | 2599 } |
2598 } } // namespace v8::internal | 2600 } } // namespace v8::internal |
OLD | NEW |