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

Side by Side Diff: src/heap.h

Issue 25655004: Print out how many AllocationMementos were found during mark-sweep. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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 | « no previous file | src/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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 1868 matching lines...) Expand 10 before | Expand all | Expand 10 after
1879 int always_allocate_scope_depth_; 1879 int always_allocate_scope_depth_;
1880 int linear_allocation_scope_depth_; 1880 int linear_allocation_scope_depth_;
1881 1881
1882 // For keeping track of context disposals. 1882 // For keeping track of context disposals.
1883 int contexts_disposed_; 1883 int contexts_disposed_;
1884 1884
1885 int global_ic_age_; 1885 int global_ic_age_;
1886 1886
1887 bool flush_monomorphic_ics_; 1887 bool flush_monomorphic_ics_;
1888 1888
1889 // AllocationMementos found on scavenge. 1889 // AllocationMementos found in new space.
1890 int allocation_mementos_found_on_scavenge_; 1890 int allocation_mementos_found_;
1891 1891
1892 int scan_on_scavenge_pages_; 1892 int scan_on_scavenge_pages_;
1893 1893
1894 NewSpace new_space_; 1894 NewSpace new_space_;
1895 OldSpace* old_pointer_space_; 1895 OldSpace* old_pointer_space_;
1896 OldSpace* old_data_space_; 1896 OldSpace* old_data_space_;
1897 OldSpace* code_space_; 1897 OldSpace* code_space_;
1898 MapSpace* map_space_; 1898 MapSpace* map_space_;
1899 CellSpace* cell_space_; 1899 CellSpace* cell_space_;
1900 PropertyCellSpace* property_cell_space_; 1900 PropertyCellSpace* property_cell_space_;
(...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after
3033 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 3033 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
3034 3034
3035 private: 3035 private:
3036 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3036 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3037 }; 3037 };
3038 #endif // DEBUG 3038 #endif // DEBUG
3039 3039
3040 } } // namespace v8::internal 3040 } } // namespace v8::internal
3041 3041
3042 #endif // V8_HEAP_H_ 3042 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « no previous file | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698