| OLD | NEW | 
|---|
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 #ifndef V8_COUNTERS_H_ | 5 #ifndef V8_COUNTERS_H_ | 
| 6 #define V8_COUNTERS_H_ | 6 #define V8_COUNTERS_H_ | 
| 7 | 7 | 
| 8 #include "include/v8.h" | 8 #include "include/v8.h" | 
| 9 #include "src/allocation.h" | 9 #include "src/allocation.h" | 
| 10 #include "src/base/platform/elapsed-timer.h" | 10 #include "src/base/platform/elapsed-timer.h" | 
| (...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 670   V(CompileCode)                                    \ | 670   V(CompileCode)                                    \ | 
| 671   V(CompileCodeLazy)                                \ | 671   V(CompileCodeLazy)                                \ | 
| 672   V(CompileDeserialize)                             \ | 672   V(CompileDeserialize)                             \ | 
| 673   V(CompileEval)                                    \ | 673   V(CompileEval)                                    \ | 
| 674   V(CompileFullCode)                                \ | 674   V(CompileFullCode)                                \ | 
| 675   V(CompileIgnition)                                \ | 675   V(CompileIgnition)                                \ | 
| 676   V(CompileSerialize)                               \ | 676   V(CompileSerialize)                               \ | 
| 677   V(DeoptimizeCode)                                 \ | 677   V(DeoptimizeCode)                                 \ | 
| 678   V(FunctionCallback)                               \ | 678   V(FunctionCallback)                               \ | 
| 679   V(GC)                                             \ | 679   V(GC)                                             \ | 
|  | 680   V(GenericNamedPropertyDefinerCallback)            \ | 
| 680   V(GenericNamedPropertyDeleterCallback)            \ | 681   V(GenericNamedPropertyDeleterCallback)            \ | 
| 681   V(GenericNamedPropertyQueryCallback)              \ | 682   V(GenericNamedPropertyQueryCallback)              \ | 
| 682   V(GenericNamedPropertySetterCallback)             \ | 683   V(GenericNamedPropertySetterCallback)             \ | 
|  | 684   V(IndexedPropertyDefinerCallback)                 \ | 
| 683   V(IndexedPropertyDeleterCallback)                 \ | 685   V(IndexedPropertyDeleterCallback)                 \ | 
| 684   V(IndexedPropertyGetterCallback)                  \ | 686   V(IndexedPropertyGetterCallback)                  \ | 
| 685   V(IndexedPropertyQueryCallback)                   \ | 687   V(IndexedPropertyQueryCallback)                   \ | 
| 686   V(IndexedPropertySetterCallback)                  \ | 688   V(IndexedPropertySetterCallback)                  \ | 
| 687   V(InvokeFunctionCallback)                         \ | 689   V(InvokeFunctionCallback)                         \ | 
| 688   V(JS_Execution)                                   \ | 690   V(JS_Execution)                                   \ | 
| 689   V(Map_SetPrototype)                               \ | 691   V(Map_SetPrototype)                               \ | 
| 690   V(Map_TransitionToAccessorProperty)               \ | 692   V(Map_TransitionToAccessorProperty)               \ | 
| 691   V(Map_TransitionToDataProperty)                   \ | 693   V(Map_TransitionToDataProperty)                   \ | 
| 692   V(Object_DeleteProperty)                          \ | 694   V(Object_DeleteProperty)                          \ | 
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1238 | 1240 | 
| 1239   explicit Counters(Isolate* isolate); | 1241   explicit Counters(Isolate* isolate); | 
| 1240 | 1242 | 
| 1241   DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1243   DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 
| 1242 }; | 1244 }; | 
| 1243 | 1245 | 
| 1244 }  // namespace internal | 1246 }  // namespace internal | 
| 1245 }  // namespace v8 | 1247 }  // namespace v8 | 
| 1246 | 1248 | 
| 1247 #endif  // V8_COUNTERS_H_ | 1249 #endif  // V8_COUNTERS_H_ | 
| OLD | NEW | 
|---|