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

Side by Side Diff: src/heap/spaces.h

Issue 2312853005: Revert of [heap] Switch to 500k pages (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « src/heap/mark-compact.cc ('k') | test/cctest/heap/test-heap.cc » ('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 // 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 #ifndef V8_HEAP_SPACES_H_ 5 #ifndef V8_HEAP_SPACES_H_
6 #define V8_HEAP_SPACES_H_ 6 #define V8_HEAP_SPACES_H_
7 7
8 #include <list> 8 #include <list>
9 #include <memory> 9 #include <memory>
10 #include <unordered_set> 10 #include <unordered_set>
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 689
690 private: 690 private:
691 void InitializeReservedMemory() { reservation_.Reset(); } 691 void InitializeReservedMemory() { reservation_.Reset(); }
692 692
693 friend class MemoryAllocator; 693 friend class MemoryAllocator;
694 friend class MemoryChunkValidator; 694 friend class MemoryChunkValidator;
695 }; 695 };
696 696
697 DEFINE_OPERATORS_FOR_FLAGS(MemoryChunk::Flags) 697 DEFINE_OPERATORS_FOR_FLAGS(MemoryChunk::Flags)
698 698
699 static_assert(kMaxRegularHeapObjectSize <= MemoryChunk::kAllocatableMemory, 699 STATIC_ASSERT(kMaxRegularHeapObjectSize < MemoryChunk::kAllocatableMemory);
700 "kMaxRegularHeapObjectSize <= MemoryChunk::kAllocatableMemory");
701 700
702 // ----------------------------------------------------------------------------- 701 // -----------------------------------------------------------------------------
703 // A page is a memory chunk of a size 1MB. Large object pages may be larger. 702 // A page is a memory chunk of a size 1MB. Large object pages may be larger.
704 // 703 //
705 // The only way to get a page pointer is by calling factory methods: 704 // The only way to get a page pointer is by calling factory methods:
706 // Page* p = Page::FromAddress(addr); or 705 // Page* p = Page::FromAddress(addr); or
707 // Page* p = Page::FromTopOrLimit(top); 706 // Page* p = Page::FromTopOrLimit(top);
708 class Page : public MemoryChunk { 707 class Page : public MemoryChunk {
709 public: 708 public:
710 static const intptr_t kCopyAllFlags = ~0; 709 static const intptr_t kCopyAllFlags = ~0;
(...skipping 2231 matching lines...) Expand 10 before | Expand all | Expand 10 after
2942 PageIterator old_iterator_; 2941 PageIterator old_iterator_;
2943 PageIterator code_iterator_; 2942 PageIterator code_iterator_;
2944 PageIterator map_iterator_; 2943 PageIterator map_iterator_;
2945 LargePageIterator lo_iterator_; 2944 LargePageIterator lo_iterator_;
2946 }; 2945 };
2947 2946
2948 } // namespace internal 2947 } // namespace internal
2949 } // namespace v8 2948 } // namespace v8
2950 2949
2951 #endif // V8_HEAP_SPACES_H_ 2950 #endif // V8_HEAP_SPACES_H_
OLDNEW
« no previous file with comments | « src/heap/mark-compact.cc ('k') | test/cctest/heap/test-heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698