OLD | NEW |
---|---|
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
45 HT(parse, V8.Parse) \ | 45 HT(parse, V8.Parse) \ |
46 HT(parse_lazy, V8.ParseLazy) \ | 46 HT(parse_lazy, V8.ParseLazy) \ |
47 HT(pre_parse, V8.PreParse) \ | 47 HT(pre_parse, V8.PreParse) \ |
48 /* Total compilation times. */ \ | 48 /* Total compilation times. */ \ |
49 HT(compile, V8.Compile) \ | 49 HT(compile, V8.Compile) \ |
50 HT(compile_eval, V8.CompileEval) \ | 50 HT(compile_eval, V8.CompileEval) \ |
51 HT(compile_lazy, V8.CompileLazy) | 51 HT(compile_lazy, V8.CompileLazy) |
52 | 52 |
53 | 53 |
54 #define HISTOGRAM_PERCENTAGE_LIST(HP) \ | 54 #define HISTOGRAM_PERCENTAGE_LIST(HP) \ |
55 HP(external_fragmentation_total, \ | |
56 V8.MemoryExternalFragmentationTotal) \ | |
55 HP(external_fragmentation_new_space, \ | 57 HP(external_fragmentation_new_space, \ |
56 V8.MemoryExternalFragmentationNewSpace) \ | 58 V8.MemoryExternalFragmentationNewSpace) \ |
Michael Starzinger
2012/07/16 14:41:47
Let's remove this entry.
jochen (gone - plz use gerrit)
2012/07/16 14:59:11
Done.
| |
57 HP(external_fragmentation_old_pointer_space, \ | 59 HP(external_fragmentation_old_pointer_space, \ |
58 V8.MemoryExternalFragmentationOldPointerSpace) \ | 60 V8.MemoryExternalFragmentationOldPointerSpace) \ |
59 HP(external_fragmentation_old_data_space, \ | 61 HP(external_fragmentation_old_data_space, \ |
60 V8.MemoryExternalFragmentationOldDataSpace) \ | 62 V8.MemoryExternalFragmentationOldDataSpace) \ |
61 HP(external_fragmentation_code_space, \ | 63 HP(external_fragmentation_code_space, \ |
62 V8.MemoryExternalFragmentationCodeSpace) \ | 64 V8.MemoryExternalFragmentationCodeSpace) \ |
63 HP(external_fragmentation_map_space, \ | 65 HP(external_fragmentation_map_space, \ |
64 V8.MemoryExternalFragmentationMapSpace) \ | 66 V8.MemoryExternalFragmentationMapSpace) \ |
65 HP(external_fragmentation_cell_space, \ | 67 HP(external_fragmentation_cell_space, \ |
66 V8.MemoryExternalFragmentationCellSpace) \ | 68 V8.MemoryExternalFragmentationCellSpace) \ |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
372 // Sliding state window counters. | 374 // Sliding state window counters. |
373 StatsCounter state_counters_[kSlidingStateWindowCounterCount]; | 375 StatsCounter state_counters_[kSlidingStateWindowCounterCount]; |
374 friend class Isolate; | 376 friend class Isolate; |
375 | 377 |
376 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 378 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
377 }; | 379 }; |
378 | 380 |
379 } } // namespace v8::internal | 381 } } // namespace v8::internal |
380 | 382 |
381 #endif // V8_V8_COUNTERS_H_ | 383 #endif // V8_V8_COUNTERS_H_ |
OLD | NEW |