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

Side by Side Diff: src/v8-counters.h

Issue 5985012: Rename write buffers to store buffers. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 years, 11 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/v8.cc ('k') | src/write-buffer.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 SC(total_old_codegen_source_size, V8.TotalOldCodegenSourceSize) \ 101 SC(total_old_codegen_source_size, V8.TotalOldCodegenSourceSize) \
102 /* Amount of source code compiled with the full codegen. */ \ 102 /* Amount of source code compiled with the full codegen. */ \
103 SC(total_full_codegen_source_size, V8.TotalFullCodegenSourceSize) \ 103 SC(total_full_codegen_source_size, V8.TotalFullCodegenSourceSize) \
104 /* Number of contexts created from scratch. */ \ 104 /* Number of contexts created from scratch. */ \
105 SC(contexts_created_from_scratch, V8.ContextsCreatedFromScratch) \ 105 SC(contexts_created_from_scratch, V8.ContextsCreatedFromScratch) \
106 /* Number of contexts created by partial snapshot. */ \ 106 /* Number of contexts created by partial snapshot. */ \
107 SC(contexts_created_by_snapshot, V8.ContextsCreatedBySnapshot) \ 107 SC(contexts_created_by_snapshot, V8.ContextsCreatedBySnapshot) \
108 /* Number of code objects found from pc. */ \ 108 /* Number of code objects found from pc. */ \
109 SC(pc_to_code, V8.PcToCode) \ 109 SC(pc_to_code, V8.PcToCode) \
110 SC(pc_to_code_cached, V8.PcToCodeCached) \ 110 SC(pc_to_code_cached, V8.PcToCodeCached) \
111 /* The write-buffer implementation of the write barrier. */ \ 111 /* The store-buffer implementation of the write barrier. */ \
112 SC(write_buffer_compactions, V8.WriteBufferCompactions) \ 112 SC(store_buffer_compactions, V8.StoreBufferCompactions) \
113 SC(write_buffer_overflows, V8.WriteBufferOverflows) 113 SC(store_buffer_overflows, V8.StoreBufferOverflows)
114 114
115 115
116 #define STATS_COUNTER_LIST_2(SC) \ 116 #define STATS_COUNTER_LIST_2(SC) \
117 /* Number of code stubs. */ \ 117 /* Number of code stubs. */ \
118 SC(code_stubs, V8.CodeStubs) \ 118 SC(code_stubs, V8.CodeStubs) \
119 /* Amount of stub code. */ \ 119 /* Amount of stub code. */ \
120 SC(total_stubs_code_size, V8.TotalStubsCodeSize) \ 120 SC(total_stubs_code_size, V8.TotalStubsCodeSize) \
121 /* Amount of (JS) compiled code. */ \ 121 /* Amount of (JS) compiled code. */ \
122 SC(total_compiled_code_size, V8.TotalCompiledCodeSize) \ 122 SC(total_compiled_code_size, V8.TotalCompiledCodeSize) \
123 SC(gc_compactor_caused_by_request, V8.GCCompactorCausedByRequest) \ 123 SC(gc_compactor_caused_by_request, V8.GCCompactorCausedByRequest) \
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 stats_counter_count 291 stats_counter_count
292 }; 292 };
293 293
294 // Sliding state window counters. 294 // Sliding state window counters.
295 static StatsCounter state_counters[]; 295 static StatsCounter state_counters[];
296 }; 296 };
297 297
298 } } // namespace v8::internal 298 } } // namespace v8::internal
299 299
300 #endif // V8_V8_COUNTERS_H_ 300 #endif // V8_V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/v8.cc ('k') | src/write-buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698