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

Side by Side Diff: src/heap/heap.cc

Issue 1156993018: GlobalDictionary now stores PropertyDetails in PropertyCells. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 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 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/bits.h" 9 #include "src/base/bits.h"
10 #include "src/base/once.h" 10 #include "src/base/once.h"
(...skipping 2874 matching lines...) Expand 10 before | Expand all | Expand 10 after
2885 STATIC_ASSERT(PropertyCell::kSize <= Page::kMaxRegularHeapObjectSize); 2885 STATIC_ASSERT(PropertyCell::kSize <= Page::kMaxRegularHeapObjectSize);
2886 2886
2887 HeapObject* result; 2887 HeapObject* result;
2888 AllocationResult allocation = AllocateRaw(size, OLD_SPACE, OLD_SPACE); 2888 AllocationResult allocation = AllocateRaw(size, OLD_SPACE, OLD_SPACE);
2889 if (!allocation.To(&result)) return allocation; 2889 if (!allocation.To(&result)) return allocation;
2890 2890
2891 result->set_map_no_write_barrier(global_property_cell_map()); 2891 result->set_map_no_write_barrier(global_property_cell_map());
2892 PropertyCell* cell = PropertyCell::cast(result); 2892 PropertyCell* cell = PropertyCell::cast(result);
2893 cell->set_dependent_code(DependentCode::cast(empty_fixed_array()), 2893 cell->set_dependent_code(DependentCode::cast(empty_fixed_array()),
2894 SKIP_WRITE_BARRIER); 2894 SKIP_WRITE_BARRIER);
2895 cell->set_property_details(PropertyDetails(Smi::FromInt(0)));
2895 cell->set_value(the_hole_value()); 2896 cell->set_value(the_hole_value());
2896 return result; 2897 return result;
2897 } 2898 }
2898 2899
2899 2900
2900 AllocationResult Heap::AllocateWeakCell(HeapObject* value) { 2901 AllocationResult Heap::AllocateWeakCell(HeapObject* value) {
2901 int size = WeakCell::kSize; 2902 int size = WeakCell::kSize;
2902 STATIC_ASSERT(WeakCell::kSize <= Page::kMaxRegularHeapObjectSize); 2903 STATIC_ASSERT(WeakCell::kSize <= Page::kMaxRegularHeapObjectSize);
2903 HeapObject* result = NULL; 2904 HeapObject* result = NULL;
2904 { 2905 {
(...skipping 3705 matching lines...) Expand 10 before | Expand all | Expand 10 after
6610 *object_type = "CODE_TYPE"; \ 6611 *object_type = "CODE_TYPE"; \
6611 *object_sub_type = "CODE_AGE/" #name; \ 6612 *object_sub_type = "CODE_AGE/" #name; \
6612 return true; 6613 return true;
6613 CODE_AGE_LIST_COMPLETE(COMPARE_AND_RETURN_NAME) 6614 CODE_AGE_LIST_COMPLETE(COMPARE_AND_RETURN_NAME)
6614 #undef COMPARE_AND_RETURN_NAME 6615 #undef COMPARE_AND_RETURN_NAME
6615 } 6616 }
6616 return false; 6617 return false;
6617 } 6618 }
6618 } 6619 }
6619 } // namespace v8::internal 6620 } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/heap-snapshot-generator.cc ('k') | src/lookup-inl.h » ('j') | src/objects-inl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698