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

Side by Side Diff: src/compiler/zone-pool.h

Issue 1847543002: Expose a lower bound of malloc'd memory via heap statistics (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates Created 4 years, 8 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/compiler/wasm-compiler.cc ('k') | src/compiler/zone-pool.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_COMPILER_ZONE_POOL_H_ 5 #ifndef V8_COMPILER_ZONE_POOL_H_
6 #define V8_COMPILER_ZONE_POOL_H_ 6 #define V8_COMPILER_ZONE_POOL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <vector> 10 #include <vector>
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 typedef std::map<Zone*, size_t> InitialValues; 54 typedef std::map<Zone*, size_t> InitialValues;
55 55
56 ZonePool* const zone_pool_; 56 ZonePool* const zone_pool_;
57 InitialValues initial_values_; 57 InitialValues initial_values_;
58 size_t total_allocated_bytes_at_start_; 58 size_t total_allocated_bytes_at_start_;
59 size_t max_allocated_bytes_; 59 size_t max_allocated_bytes_;
60 60
61 DISALLOW_COPY_AND_ASSIGN(StatsScope); 61 DISALLOW_COPY_AND_ASSIGN(StatsScope);
62 }; 62 };
63 63
64 ZonePool(); 64 explicit ZonePool(base::AccountingAllocator* allocator);
65 ~ZonePool(); 65 ~ZonePool();
66 66
67 size_t GetMaxAllocatedBytes(); 67 size_t GetMaxAllocatedBytes();
68 size_t GetTotalAllocatedBytes(); 68 size_t GetTotalAllocatedBytes();
69 size_t GetCurrentAllocatedBytes(); 69 size_t GetCurrentAllocatedBytes();
70 70
71 private: 71 private:
72 Zone* NewEmptyZone(); 72 Zone* NewEmptyZone();
73 void ReturnZone(Zone* zone); 73 void ReturnZone(Zone* zone);
74 74
75 static const size_t kMaxUnusedSize = 3; 75 static const size_t kMaxUnusedSize = 3;
76 typedef std::vector<Zone*> Unused; 76 typedef std::vector<Zone*> Unused;
77 typedef std::vector<Zone*> Used; 77 typedef std::vector<Zone*> Used;
78 typedef std::vector<StatsScope*> Stats; 78 typedef std::vector<StatsScope*> Stats;
79 79
80 Unused unused_; 80 Unused unused_;
81 Used used_; 81 Used used_;
82 Stats stats_; 82 Stats stats_;
83 size_t max_allocated_bytes_; 83 size_t max_allocated_bytes_;
84 size_t total_deleted_bytes_; 84 size_t total_deleted_bytes_;
85 base::AccountingAllocator* allocator_;
85 86
86 DISALLOW_COPY_AND_ASSIGN(ZonePool); 87 DISALLOW_COPY_AND_ASSIGN(ZonePool);
87 }; 88 };
88 89
89 } // namespace compiler 90 } // namespace compiler
90 } // namespace internal 91 } // namespace internal
91 } // namespace v8 92 } // namespace v8
92 93
93 #endif 94 #endif
OLDNEW
« no previous file with comments | « src/compiler/wasm-compiler.cc ('k') | src/compiler/zone-pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698