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

Side by Side Diff: src/spaces.cc

Issue 7993003: GC Cleanup + Set max old generation size to 700MB on ia32 and max executable size to 128 MB (on i... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « src/spaces.h ('k') | src/spaces-inl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/spaces.h ('k') | src/spaces-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698