OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 16 matching lines...) Expand all Loading... |
27 #define InstanceCounter_h | 27 #define InstanceCounter_h |
28 | 28 |
29 #include "wtf/Compiler.h" | 29 #include "wtf/Compiler.h" |
30 #include "wtf/WTFExport.h" | 30 #include "wtf/WTFExport.h" |
31 | 31 |
32 namespace WTF { | 32 namespace WTF { |
33 | 33 |
34 class String; | 34 class String; |
35 WTF_EXPORT String dumpRefCountedInstanceCounts(); | 35 WTF_EXPORT String dumpRefCountedInstanceCounts(); |
36 | 36 |
37 #if ENABLE(INSTANCE_COUNTER) || ENABLE(GC_PROFILING) | 37 #if ENABLE(INSTANCE_COUNTER) || ENABLE(GC_PROFILING) || ENABLE(DETAILED_MEMORY_I
NFRA) |
38 WTF_EXPORT void incrementInstanceCount(const char* extractNameFunctionName, void
* ptr); | 38 WTF_EXPORT void incrementInstanceCount(const char* extractNameFunctionName, void
* ptr); |
39 WTF_EXPORT void decrementInstanceCount(const char* extractNameFunctionName, void
* ptr); | 39 WTF_EXPORT void decrementInstanceCount(const char* extractNameFunctionName, void
* ptr); |
40 | 40 |
41 WTF_EXPORT String extractTypeNameFromFunctionName(const char* funcName); | 41 WTF_EXPORT String extractTypeNameFromFunctionName(const char* funcName); |
42 | 42 |
43 template<typename T> | 43 template<typename T> |
44 inline const char* extractNameFunction() | 44 inline const char* extractNameFunction() |
45 { | 45 { |
46 return WTF_PRETTY_FUNCTION; | 46 return WTF_PRETTY_FUNCTION; |
47 } | 47 } |
48 | 48 |
49 | 49 |
50 template<typename T> | 50 template<typename T> |
51 inline void incrementInstanceCount(T* p) | 51 inline void incrementInstanceCount(T* p) |
52 { | 52 { |
53 incrementInstanceCount(extractNameFunction<T>(), p); | 53 incrementInstanceCount(extractNameFunction<T>(), p); |
54 } | 54 } |
55 | 55 |
56 template<typename T> | 56 template<typename T> |
57 inline void decrementInstanceCount(T* p) | 57 inline void decrementInstanceCount(T* p) |
58 { | 58 { |
59 decrementInstanceCount(extractNameFunction<T>(), p); | 59 decrementInstanceCount(extractNameFunction<T>(), p); |
60 } | 60 } |
61 | 61 |
62 #endif // ENABLE(INSTANCE_COUNTER) || ENABLE(GC_PROFILING) | 62 #endif // ENABLE(INSTANCE_COUNTER) || ENABLE(GC_PROFILING) |
63 | 63 |
64 } // namespace WTF | 64 } // namespace WTF |
65 | 65 |
66 #endif | 66 #endif |
OLD | NEW |