| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium 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 #include "sky/engine/config.h" | 5 #include "sky/engine/config.h" |
| 6 #include "sky/engine/tonic/dart_gc_controller.h" | 6 #include "sky/engine/tonic/dart_gc_controller.h" |
| 7 | 7 |
| 8 #include "base/trace_event/trace_event.h" |
| 8 #include "dart/runtime/include/dart_api.h" | 9 #include "dart/runtime/include/dart_api.h" |
| 9 #include "sky/engine/tonic/dart_gc_context.h" | 10 #include "sky/engine/tonic/dart_gc_context.h" |
| 10 #include "sky/engine/tonic/dart_gc_visitor.h" | 11 #include "sky/engine/tonic/dart_gc_visitor.h" |
| 11 #include "sky/engine/tonic/dart_wrappable.h" | 12 #include "sky/engine/tonic/dart_wrappable.h" |
| 12 | 13 |
| 13 namespace blink { | 14 namespace blink { |
| 14 namespace { | 15 namespace { |
| 15 | 16 |
| 16 DartGCContext* g_gc_context = nullptr; | 17 DartGCContext* g_gc_context = nullptr; |
| 17 | 18 |
| 18 DartWrappable* GetWrappable(intptr_t* fields) { | 19 DartWrappable* GetWrappable(intptr_t* fields) { |
| 19 return reinterpret_cast<DartWrappable*>(fields[DartWrappable::kPeerIndex]); | 20 return reinterpret_cast<DartWrappable*>(fields[DartWrappable::kPeerIndex]); |
| 20 } | 21 } |
| 21 | 22 |
| 22 void Visit(void* isolate_callback_data, | 23 void Visit(void* isolate_callback_data, |
| 23 Dart_WeakPersistentHandle handle, | 24 Dart_WeakPersistentHandle handle, |
| 24 intptr_t native_field_count, | 25 intptr_t native_field_count, |
| 25 intptr_t* native_fields) { | 26 intptr_t* native_fields) { |
| 26 if (!native_field_count) | 27 if (!native_field_count) |
| 27 return; | 28 return; |
| 28 DCHECK(native_field_count == DartWrappable::kNumberOfNativeFields); | 29 DCHECK(native_field_count == DartWrappable::kNumberOfNativeFields); |
| 29 DartGCVisitor visitor(g_gc_context); | 30 DartGCVisitor visitor(g_gc_context); |
| 30 GetWrappable(native_fields)->AcceptDartGCVisitor(visitor); | 31 GetWrappable(native_fields)->AcceptDartGCVisitor(visitor); |
| 31 } | 32 } |
| 32 | 33 |
| 33 } // namespace | 34 } // namespace |
| 34 | 35 |
| 35 void DartGCPrologue() { | 36 void DartGCPrologue() { |
| 37 TRACE_EVENT_ASYNC_BEGIN0("sky", "DartGC", 0); |
| 38 |
| 36 Dart_EnterScope(); | 39 Dart_EnterScope(); |
| 37 DCHECK(!g_gc_context); | 40 DCHECK(!g_gc_context); |
| 38 g_gc_context = new DartGCContext(); | 41 g_gc_context = new DartGCContext(); |
| 39 Dart_VisitPrologueWeakHandles(Visit); | 42 Dart_VisitPrologueWeakHandles(Visit); |
| 40 } | 43 } |
| 41 | 44 |
| 42 void DartGCEpilogue() { | 45 void DartGCEpilogue() { |
| 43 delete g_gc_context; | 46 delete g_gc_context; |
| 44 g_gc_context = nullptr; | 47 g_gc_context = nullptr; |
| 45 Dart_ExitScope(); | 48 Dart_ExitScope(); |
| 49 |
| 50 TRACE_EVENT_ASYNC_END0("sky", "DartGC", 0); |
| 46 } | 51 } |
| 47 | 52 |
| 48 } // namespace blink | 53 } // namespace blink |
| OLD | NEW |