OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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/base/bits.h" | 7 #include "src/base/bits.h" |
8 #include "src/base/platform/platform.h" | 8 #include "src/base/platform/platform.h" |
9 #include "src/full-codegen.h" | 9 #include "src/full-codegen.h" |
10 #include "src/heap/mark-compact.h" | 10 #include "src/heap/mark-compact.h" |
(...skipping 2960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2971 | 2971 |
2972 void LargeObjectSpace::FreeUnmarkedObjects() { | 2972 void LargeObjectSpace::FreeUnmarkedObjects() { |
2973 LargePage* previous = NULL; | 2973 LargePage* previous = NULL; |
2974 LargePage* current = first_page_; | 2974 LargePage* current = first_page_; |
2975 while (current != NULL) { | 2975 while (current != NULL) { |
2976 HeapObject* object = current->GetObject(); | 2976 HeapObject* object = current->GetObject(); |
2977 // Can this large page contain pointers to non-trivial objects. No other | 2977 // Can this large page contain pointers to non-trivial objects. No other |
2978 // pointer object is this big. | 2978 // pointer object is this big. |
2979 bool is_pointer_object = object->IsFixedArray(); | 2979 bool is_pointer_object = object->IsFixedArray(); |
2980 MarkBit mark_bit = Marking::MarkBitFrom(object); | 2980 MarkBit mark_bit = Marking::MarkBitFrom(object); |
2981 if (mark_bit.Get()) { | 2981 if (Marking::IsMarked(mark_bit)) { |
2982 mark_bit.Clear(); | 2982 Marking::BlackToWhite(mark_bit); |
2983 Page::FromAddress(object->address())->ResetProgressBar(); | 2983 Page::FromAddress(object->address())->ResetProgressBar(); |
2984 Page::FromAddress(object->address())->ResetLiveBytes(); | 2984 Page::FromAddress(object->address())->ResetLiveBytes(); |
2985 previous = current; | 2985 previous = current; |
2986 current = current->next_page(); | 2986 current = current->next_page(); |
2987 } else { | 2987 } else { |
2988 LargePage* page = current; | 2988 LargePage* page = current; |
2989 // Cut the chunk out from the chunk list. | 2989 // Cut the chunk out from the chunk list. |
2990 current = current->next_page(); | 2990 current = current->next_page(); |
2991 if (previous == NULL) { | 2991 if (previous == NULL) { |
2992 first_page_ = current; | 2992 first_page_ = current; |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3127 | 3127 |
3128 void Page::Print() { | 3128 void Page::Print() { |
3129 // Make a best-effort to print the objects in the page. | 3129 // Make a best-effort to print the objects in the page. |
3130 PrintF("Page@%p in %s\n", this->address(), | 3130 PrintF("Page@%p in %s\n", this->address(), |
3131 AllocationSpaceName(this->owner()->identity())); | 3131 AllocationSpaceName(this->owner()->identity())); |
3132 printf(" --------------------------------------\n"); | 3132 printf(" --------------------------------------\n"); |
3133 HeapObjectIterator objects(this, heap()->GcSafeSizeOfOldObjectFunction()); | 3133 HeapObjectIterator objects(this, heap()->GcSafeSizeOfOldObjectFunction()); |
3134 unsigned mark_size = 0; | 3134 unsigned mark_size = 0; |
3135 for (HeapObject* object = objects.Next(); object != NULL; | 3135 for (HeapObject* object = objects.Next(); object != NULL; |
3136 object = objects.Next()) { | 3136 object = objects.Next()) { |
3137 bool is_marked = Marking::MarkBitFrom(object).Get(); | 3137 bool is_marked = Marking::IsMarked(Marking::MarkBitFrom(object)); |
3138 PrintF(" %c ", (is_marked ? '!' : ' ')); // Indent a little. | 3138 PrintF(" %c ", (is_marked ? '!' : ' ')); // Indent a little. |
3139 if (is_marked) { | 3139 if (is_marked) { |
3140 mark_size += heap()->GcSafeSizeOfOldObjectFunction()(object); | 3140 mark_size += heap()->GcSafeSizeOfOldObjectFunction()(object); |
3141 } | 3141 } |
3142 object->ShortPrint(); | 3142 object->ShortPrint(); |
3143 PrintF("\n"); | 3143 PrintF("\n"); |
3144 } | 3144 } |
3145 printf(" --------------------------------------\n"); | 3145 printf(" --------------------------------------\n"); |
3146 printf(" Marked: %x, LiveCount: %x\n", mark_size, LiveBytes()); | 3146 printf(" Marked: %x, LiveCount: %x\n", mark_size, LiveBytes()); |
3147 } | 3147 } |
3148 | 3148 |
3149 #endif // DEBUG | 3149 #endif // DEBUG |
3150 } | 3150 } |
3151 } // namespace v8::internal | 3151 } // namespace v8::internal |
OLD | NEW |