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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 DCHECK(isolate_->handle_scope_implementer()->blocks()->is_empty()); | 559 DCHECK(isolate_->handle_scope_implementer()->blocks()->is_empty()); |
560 isolate_->heap()->IterateSmiRoots(this); | 560 isolate_->heap()->IterateSmiRoots(this); |
561 isolate_->heap()->IterateStrongRoots(this, VISIT_ONLY_STRONG); | 561 isolate_->heap()->IterateStrongRoots(this, VISIT_ONLY_STRONG); |
562 isolate_->heap()->RepairFreeListsAfterDeserialization(); | 562 isolate_->heap()->RepairFreeListsAfterDeserialization(); |
563 isolate_->heap()->IterateWeakRoots(this, VISIT_ALL); | 563 isolate_->heap()->IterateWeakRoots(this, VISIT_ALL); |
564 | 564 |
565 isolate_->heap()->set_native_contexts_list( | 565 isolate_->heap()->set_native_contexts_list( |
566 isolate_->heap()->undefined_value()); | 566 isolate_->heap()->undefined_value()); |
567 isolate_->heap()->set_array_buffers_list( | 567 isolate_->heap()->set_array_buffers_list( |
568 isolate_->heap()->undefined_value()); | 568 isolate_->heap()->undefined_value()); |
| 569 isolate_->heap()->set_last_array_buffer_in_list( |
| 570 isolate_->heap()->undefined_value()); |
569 isolate->heap()->set_new_array_buffer_views_list( | 571 isolate->heap()->set_new_array_buffer_views_list( |
570 isolate_->heap()->undefined_value()); | 572 isolate_->heap()->undefined_value()); |
571 | 573 |
572 // The allocation site list is build during root iteration, but if no sites | 574 // The allocation site list is build during root iteration, but if no sites |
573 // were encountered then it needs to be initialized to undefined. | 575 // were encountered then it needs to be initialized to undefined. |
574 if (isolate_->heap()->allocation_sites_list() == Smi::FromInt(0)) { | 576 if (isolate_->heap()->allocation_sites_list() == Smi::FromInt(0)) { |
575 isolate_->heap()->set_allocation_sites_list( | 577 isolate_->heap()->set_allocation_sites_list( |
576 isolate_->heap()->undefined_value()); | 578 isolate_->heap()->undefined_value()); |
577 } | 579 } |
578 | 580 |
(...skipping 1949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2528 DisallowHeapAllocation no_gc; | 2530 DisallowHeapAllocation no_gc; |
2529 SerializedCodeData* scd = new SerializedCodeData(cached_data); | 2531 SerializedCodeData* scd = new SerializedCodeData(cached_data); |
2530 SanityCheckResult r = scd->SanityCheck(isolate, source); | 2532 SanityCheckResult r = scd->SanityCheck(isolate, source); |
2531 if (r == CHECK_SUCCESS) return scd; | 2533 if (r == CHECK_SUCCESS) return scd; |
2532 cached_data->Reject(); | 2534 cached_data->Reject(); |
2533 source->GetIsolate()->counters()->code_cache_reject_reason()->AddSample(r); | 2535 source->GetIsolate()->counters()->code_cache_reject_reason()->AddSample(r); |
2534 delete scd; | 2536 delete scd; |
2535 return NULL; | 2537 return NULL; |
2536 } | 2538 } |
2537 } } // namespace v8::internal | 2539 } } // namespace v8::internal |
OLD | NEW |