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

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

Issue 257563004: Unify and simplify the FastCloneShallowArrayStub (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review feedback Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/mips/full-codegen-mips.cc ('k') | src/x64/code-stubs-x64.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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 SC(alive_after_last_gc, V8.AliveAfterLastGC) \ 121 SC(alive_after_last_gc, V8.AliveAfterLastGC) \
122 SC(objs_since_last_young, V8.ObjsSinceLastYoung) \ 122 SC(objs_since_last_young, V8.ObjsSinceLastYoung) \
123 SC(objs_since_last_full, V8.ObjsSinceLastFull) \ 123 SC(objs_since_last_full, V8.ObjsSinceLastFull) \
124 SC(string_table_capacity, V8.StringTableCapacity) \ 124 SC(string_table_capacity, V8.StringTableCapacity) \
125 SC(number_of_symbols, V8.NumberOfSymbols) \ 125 SC(number_of_symbols, V8.NumberOfSymbols) \
126 SC(script_wrappers, V8.ScriptWrappers) \ 126 SC(script_wrappers, V8.ScriptWrappers) \
127 SC(call_initialize_stubs, V8.CallInitializeStubs) \ 127 SC(call_initialize_stubs, V8.CallInitializeStubs) \
128 SC(call_premonomorphic_stubs, V8.CallPreMonomorphicStubs) \ 128 SC(call_premonomorphic_stubs, V8.CallPreMonomorphicStubs) \
129 SC(call_normal_stubs, V8.CallNormalStubs) \ 129 SC(call_normal_stubs, V8.CallNormalStubs) \
130 SC(call_megamorphic_stubs, V8.CallMegamorphicStubs) \ 130 SC(call_megamorphic_stubs, V8.CallMegamorphicStubs) \
131 SC(inlined_copyied_elements, V8.InlinedCopiedElements) \
131 SC(arguments_adaptors, V8.ArgumentsAdaptors) \ 132 SC(arguments_adaptors, V8.ArgumentsAdaptors) \
132 SC(compilation_cache_hits, V8.CompilationCacheHits) \ 133 SC(compilation_cache_hits, V8.CompilationCacheHits) \
133 SC(compilation_cache_misses, V8.CompilationCacheMisses) \ 134 SC(compilation_cache_misses, V8.CompilationCacheMisses) \
134 SC(string_ctor_calls, V8.StringConstructorCalls) \ 135 SC(string_ctor_calls, V8.StringConstructorCalls) \
135 SC(string_ctor_conversions, V8.StringConstructorConversions) \ 136 SC(string_ctor_conversions, V8.StringConstructorConversions) \
136 SC(string_ctor_cached_number, V8.StringConstructorCachedNumber) \ 137 SC(string_ctor_cached_number, V8.StringConstructorCachedNumber) \
137 SC(string_ctor_string_value, V8.StringConstructorStringValue) \ 138 SC(string_ctor_string_value, V8.StringConstructorStringValue) \
138 SC(string_ctor_gc_required, V8.StringConstructorGCRequired) \ 139 SC(string_ctor_gc_required, V8.StringConstructorGCRequired) \
139 /* Amount of evaled source code. */ \ 140 /* Amount of evaled source code. */ \
140 SC(total_eval_size, V8.TotalEvalSize) \ 141 SC(total_eval_size, V8.TotalEvalSize) \
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 friend class Isolate; 427 friend class Isolate;
427 428
428 explicit Counters(Isolate* isolate); 429 explicit Counters(Isolate* isolate);
429 430
430 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 431 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
431 }; 432 };
432 433
433 } } // namespace v8::internal 434 } } // namespace v8::internal
434 435
435 #endif // V8_V8_COUNTERS_H_ 436 #endif // V8_V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/mips/full-codegen-mips.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698