OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
759 return count; | 759 return count; |
760 } | 760 } |
761 #endif | 761 #endif |
762 | 762 |
763 | 763 |
764 void PagedSpace::Shrink() { | 764 void PagedSpace::Shrink() { |
765 // TODO(1614) Not implemented. | 765 // TODO(1614) Not implemented. |
766 } | 766 } |
767 | 767 |
768 | 768 |
769 bool PagedSpace::EnsureCapacity(int capacity) { | |
770 while (Capacity() < capacity) { | |
771 // Expand the space until it has the required capacity or expansion fails. | |
772 if (!Expand()) return false; | |
773 } | |
774 return true; | |
775 } | |
776 | |
777 | |
778 #ifdef DEBUG | 769 #ifdef DEBUG |
779 void PagedSpace::Print() { } | 770 void PagedSpace::Print() { } |
780 #endif | 771 #endif |
781 | 772 |
782 | 773 |
783 #ifdef DEBUG | 774 #ifdef DEBUG |
784 void PagedSpace::Verify(ObjectVisitor* visitor) { | 775 void PagedSpace::Verify(ObjectVisitor* visitor) { |
785 // We can only iterate over the pages if they were swept precisely. | 776 // We can only iterate over the pages if they were swept precisely. |
786 if (was_swept_conservatively_) return; | 777 if (was_swept_conservatively_) return; |
787 | 778 |
(...skipping 1732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2520 object->ShortPrint(); | 2511 object->ShortPrint(); |
2521 PrintF("\n"); | 2512 PrintF("\n"); |
2522 } | 2513 } |
2523 printf(" --------------------------------------\n"); | 2514 printf(" --------------------------------------\n"); |
2524 printf(" Marked: %x, LiveCount: %x\n", mark_size, LiveBytes()); | 2515 printf(" Marked: %x, LiveCount: %x\n", mark_size, LiveBytes()); |
2525 } | 2516 } |
2526 | 2517 |
2527 #endif // DEBUG | 2518 #endif // DEBUG |
2528 | 2519 |
2529 } } // namespace v8::internal | 2520 } } // namespace v8::internal |
OLD | NEW |