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

Unified Diff: src/heap/spaces.h

Issue 1128023005: Remove static logging of memory allocations (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/globals.h ('k') | src/log.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/spaces.h
diff --git a/src/heap/spaces.h b/src/heap/spaces.h
index f165663af6cbd442427bb1f6e3b2948118b7386a..7ea318d3fa2a4e31c5377918e4561431e1ba4ac8 100644
--- a/src/heap/spaces.h
+++ b/src/heap/spaces.h
@@ -2253,9 +2253,6 @@ class SemiSpace : public Space {
friend class SemiSpaceIterator;
friend class NewSpacePageIterator;
-
- public:
- TRACK_MEMORY("SemiSpace")
};
@@ -2625,9 +2622,6 @@ class NewSpace : public Space {
SlowAllocateRaw(int size_in_bytes, AllocationAlignment alignment);
friend class SemiSpaceIterator;
-
- public:
- TRACK_MEMORY("NewSpace")
};
@@ -2641,9 +2635,6 @@ class OldSpace : public PagedSpace {
OldSpace(Heap* heap, intptr_t max_capacity, AllocationSpace id,
Executability executable)
: PagedSpace(heap, max_capacity, id, executable) {}
-
- public:
- TRACK_MEMORY("OldSpace")
};
@@ -2689,9 +2680,6 @@ class MapSpace : public PagedSpace {
}
const int max_map_space_pages_;
-
- public:
- TRACK_MEMORY("MapSpace")
};
@@ -2785,9 +2773,6 @@ class LargeObjectSpace : public Space {
HashMap chunk_map_;
friend class LargeObjectIterator;
-
- public:
- TRACK_MEMORY("LargeObjectSpace")
};
« no previous file with comments | « src/globals.h ('k') | src/log.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698