OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 16 matching lines...) Expand all Loading... |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef V8GCController_h | 31 #ifndef V8GCController_h |
32 #define V8GCController_h | 32 #define V8GCController_h |
33 | 33 |
34 #include "core/CoreExport.h" | 34 #include "core/CoreExport.h" |
35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
36 #include "wtf/Allocator.h" | 36 #include "wtf/Allocator.h" |
| 37 #include <v8-profiler.h> |
37 #include <v8.h> | 38 #include <v8.h> |
38 | 39 |
39 namespace blink { | 40 namespace blink { |
40 | 41 |
41 class ExecutionContext; | 42 class ExecutionContext; |
42 class Node; | 43 class Node; |
43 | 44 |
44 class CORE_EXPORT V8GCController { | 45 class CORE_EXPORT V8GCController { |
45 STATIC_ONLY(V8GCController); | 46 STATIC_ONLY(V8GCController); |
46 | 47 |
47 public: | 48 public: |
48 static void gcPrologue(v8::Isolate*, v8::GCType, v8::GCCallbackFlags); | 49 static void gcPrologue(v8::Isolate*, v8::GCType, v8::GCCallbackFlags); |
49 static void gcEpilogue(v8::Isolate*, v8::GCType, v8::GCCallbackFlags); | 50 static void gcEpilogue(v8::Isolate*, v8::GCType, v8::GCCallbackFlags); |
50 | 51 |
51 static void collectGarbage(v8::Isolate*, bool onlyMinorGC = false); | 52 static void collectGarbage(v8::Isolate*, bool onlyMinorGC = false); |
52 // You should use collectAllGarbageForTesting() when you want to collect all | 53 // You should use collectAllGarbageForTesting() when you want to collect all |
53 // V8 & Blink objects. It runs multiple V8 GCs to collect references | 54 // V8 & Blink objects. It runs multiple V8 GCs to collect references |
54 // that cross the binding boundary. collectAllGarbage() also runs multipe | 55 // that cross the binding boundary. collectAllGarbage() also runs multipe |
55 // Oilpan GCs to collect a chain of persistent handles. | 56 // Oilpan GCs to collect a chain of persistent handles. |
56 static void collectAllGarbageForTesting(v8::Isolate*); | 57 static void collectAllGarbageForTesting(v8::Isolate*); |
57 | 58 |
58 static Node* opaqueRootForGC(v8::Isolate*, Node*); | 59 static Node* opaqueRootForGC(v8::Isolate*, Node*); |
59 | 60 |
60 static void traceDOMWrappers(v8::Isolate*, Visitor*); | 61 static void traceDOMWrappers(v8::Isolate*, Visitor*); |
61 static bool hasPendingActivity(v8::Isolate*, ExecutionContext*); | 62 static bool hasPendingActivity(v8::Isolate*, ExecutionContext*); |
| 63 |
| 64 static v8::HeapProfiler::RetainerInfos getRetainerInfos(v8::Isolate*); |
62 }; | 65 }; |
63 | 66 |
64 } // namespace blink | 67 } // namespace blink |
65 | 68 |
66 #endif // V8GCController_h | 69 #endif // V8GCController_h |
OLD | NEW |