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 // Warning: Using extractTypeNameFromFunctionName bloats binary size. |
| 38 // This function should be only used for debug and profiling purposes, |
| 39 // and should be never enabled on release builds. |
| 40 // TODO(kouhei): Move this inside #if when all dependencies are removed. |
37 WTF_EXPORT String extractTypeNameFromFunctionName(const char* funcName); | 41 WTF_EXPORT String extractTypeNameFromFunctionName(const char* funcName); |
38 | 42 |
39 template<typename T> | 43 template<typename T> |
40 inline const char* extractNameFunction() | 44 inline const char* extractNameFunction() |
41 { | 45 { |
42 return WTF_PRETTY_FUNCTION; | 46 return WTF_PRETTY_FUNCTION; |
43 } | 47 } |
44 | 48 |
45 #if ENABLE(INSTANCE_COUNTER) || ENABLE(GC_PROFILING) | 49 #if ENABLE(INSTANCE_COUNTER) || ENABLE(GC_PROFILING) |
46 WTF_EXPORT void incrementInstanceCount(const char* extractNameFunctionName, void
* ptr); | 50 WTF_EXPORT void incrementInstanceCount(const char* extractNameFunctionName, void
* ptr); |
47 WTF_EXPORT void decrementInstanceCount(const char* extractNameFunctionName, void
* ptr); | 51 WTF_EXPORT void decrementInstanceCount(const char* extractNameFunctionName, void
* ptr); |
48 | 52 |
49 template<typename T> | 53 template<typename T> |
50 inline void incrementInstanceCount(T* p) | 54 inline void incrementInstanceCount(T* p) |
51 { | 55 { |
52 incrementInstanceCount(extractNameFunction<T>(), p); | 56 incrementInstanceCount(extractNameFunction<T>(), p); |
53 } | 57 } |
54 | 58 |
55 template<typename T> | 59 template<typename T> |
56 inline void decrementInstanceCount(T* p) | 60 inline void decrementInstanceCount(T* p) |
57 { | 61 { |
58 decrementInstanceCount(extractNameFunction<T>(), p); | 62 decrementInstanceCount(extractNameFunction<T>(), p); |
59 } | 63 } |
60 | 64 |
61 #endif // ENABLE(INSTANCE_COUNTER) || ENABLE(GC_PROFILING) | 65 #endif // ENABLE(INSTANCE_COUNTER) || ENABLE(GC_PROFILING) |
62 | 66 |
63 } // namespace WTF | 67 } // namespace WTF |
64 | 68 |
65 #endif | 69 #endif |
OLD | NEW |