-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathdart_api_state.h
812 lines (692 loc) · 26.3 KB
/
dart_api_state.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#ifndef RUNTIME_VM_DART_API_STATE_H_
#define RUNTIME_VM_DART_API_STATE_H_
#include "include/dart_api.h"
#include "platform/utils.h"
#include "vm/bitfield.h"
#include "vm/dart_api_impl.h"
#include "vm/flags.h"
#include "vm/growable_array.h"
#include "vm/handles.h"
#include "vm/handles_impl.h"
#include "vm/heap/weak_table.h"
#include "vm/object.h"
#include "vm/os.h"
#include "vm/os_thread.h"
#include "vm/raw_object.h"
#include "vm/thread_pool.h"
#include "vm/visitor.h"
namespace dart {
// Implementation of Zone support for very fast allocation of small chunks
// of memory. The chunks cannot be deallocated individually, but instead
// zones support deallocating all chunks in one fast operation when the
// scope is exited.
class ApiZone {
public:
// Create an empty zone.
ApiZone() : zone_() {
Thread* thread = Thread::Current();
Zone* zone = thread != nullptr ? thread->zone() : nullptr;
zone_.Link(zone);
if (thread != nullptr) {
thread->set_zone(&zone_);
}
if (FLAG_trace_zones) {
OS::PrintErr("*** Starting a new Api zone 0x%" Px "(0x%" Px ")\n",
reinterpret_cast<intptr_t>(this),
reinterpret_cast<intptr_t>(&zone_));
}
}
// Delete all memory associated with the zone.
~ApiZone() {
Thread* thread = Thread::Current();
#if defined(DEBUG)
if (thread == nullptr) {
ASSERT(zone_.handles()->CountScopedHandles() == 0);
ASSERT(zone_.handles()->CountZoneHandles() == 0);
}
#endif
if ((thread != nullptr) && (thread->zone() == &zone_)) {
thread->set_zone(zone_.previous_);
}
if (FLAG_trace_zones) {
OS::PrintErr("*** Deleting Api zone 0x%" Px "(0x%" Px ")\n",
reinterpret_cast<intptr_t>(this),
reinterpret_cast<intptr_t>(&zone_));
}
}
// Allocates an array sized to hold 'len' elements of type
// 'ElementType'. Checks for integer overflow when performing the
// size computation.
template <class ElementType>
ElementType* Alloc(intptr_t len) {
return zone_.Alloc<ElementType>(len);
}
// Allocates an array sized to hold 'len' elements of type
// 'ElementType'. The new array is initialized from the memory of
// 'old_array' up to 'old_len'.
template <class ElementType>
ElementType* Realloc(ElementType* old_array,
intptr_t old_len,
intptr_t new_len) {
return zone_.Realloc<ElementType>(old_array, old_len, new_len);
}
// Allocates 'size' bytes of memory in the zone; expands the zone by
// allocating new segments of memory on demand using 'new'.
//
// It is preferred to use Alloc<T>() instead, as that function can
// check for integer overflow. If you use AllocUnsafe, you are
// responsible for avoiding integer overflow yourself.
uword AllocUnsafe(intptr_t size) { return zone_.AllocUnsafe(size); }
// Compute the total size of this zone. This includes wasted space that is
// due to internal fragmentation in the segments.
intptr_t SizeInBytes() const { return zone_.SizeInBytes(); }
Zone* GetZone() { return &zone_; }
void Reinit(Thread* thread) {
if (thread == nullptr) {
zone_.Link(nullptr);
} else {
zone_.Link(thread->zone());
thread->set_zone(&zone_);
}
}
void Reset(Thread* thread) {
if ((thread != nullptr) && (thread->zone() == &zone_)) {
thread->set_zone(zone_.previous_);
}
zone_.Reset();
}
private:
Zone zone_;
template <typename T>
friend class ApiGrowableArray;
DISALLOW_COPY_AND_ASSIGN(ApiZone);
};
// Implementation of local handles which are handed out from every
// dart API call, these handles are valid only in the present scope
// and are destroyed when a Dart_ExitScope() is called.
class LocalHandle {
public:
// Accessors.
ObjectPtr ptr() const { return ptr_; }
void set_ptr(ObjectPtr ptr) { ptr_ = ptr; }
static intptr_t ptr_offset() { return OFFSET_OF(LocalHandle, ptr_); }
Dart_Handle apiHandle() { return reinterpret_cast<Dart_Handle>(this); }
private:
LocalHandle() {}
~LocalHandle() {}
ObjectPtr ptr_;
DISALLOW_ALLOCATION(); // Allocated through AllocateHandle methods.
DISALLOW_COPY_AND_ASSIGN(LocalHandle);
};
// A distinguished callback which indicates that a persistent handle
// should not be deleted from the dart api.
void ProtectedHandleCallback(void* peer);
// Implementation of persistent handles which are handed out through the
// dart API.
class PersistentHandle {
public:
// Accessors.
ObjectPtr ptr() const { return ptr_; }
void set_ptr(ObjectPtr ref) { ptr_ = ref; }
void set_ptr(const LocalHandle& ref) { ptr_ = ref.ptr(); }
void set_ptr(const Object& object) { ptr_ = object.ptr(); }
ObjectPtr* raw_addr() { return &ptr_; }
Dart_PersistentHandle apiHandle() {
return reinterpret_cast<Dart_PersistentHandle>(this);
}
static intptr_t ptr_offset() { return OFFSET_OF(PersistentHandle, ptr_); }
static PersistentHandle* Cast(Dart_PersistentHandle handle);
private:
friend class PersistentHandles;
PersistentHandle() {}
~PersistentHandle() {}
// Overload the ptr_ field as a next pointer when adding freed
// handles to the free list.
PersistentHandle* Next() {
return reinterpret_cast<PersistentHandle*>(static_cast<uword>(ptr_));
}
void SetNext(PersistentHandle* free_list) {
ptr_ = static_cast<ObjectPtr>(reinterpret_cast<uword>(free_list));
ASSERT(!ptr_->IsHeapObject());
}
void FreeHandle(PersistentHandle* free_list) {
#if defined(DEBUG)
Thread* thread = Thread::Current();
ASSERT(thread->MayAllocateHandles());
#endif // DEBUG
SetNext(free_list);
}
ObjectPtr ptr_;
DISALLOW_ALLOCATION(); // Allocated through AllocateHandle methods.
DISALLOW_COPY_AND_ASSIGN(PersistentHandle);
};
// Implementation of persistent handles which are handed out through the
// dart API.
class FinalizablePersistentHandle {
public:
static FinalizablePersistentHandle* New(IsolateGroup* isolate_group,
const Object& object,
void* peer,
Dart_HandleFinalizer callback,
intptr_t external_size,
bool auto_delete);
// Accessors.
ObjectPtr ptr() const { return ptr_; }
ObjectPtr* ptr_addr() { return &ptr_; }
static intptr_t ptr_offset() {
return OFFSET_OF(FinalizablePersistentHandle, ptr_);
}
void* peer() const { return peer_; }
Dart_HandleFinalizer callback() const { return callback_; }
Dart_WeakPersistentHandle ApiWeakPersistentHandle() {
return reinterpret_cast<Dart_WeakPersistentHandle>(this);
}
Dart_FinalizableHandle ApiFinalizableHandle() {
return reinterpret_cast<Dart_FinalizableHandle>(this);
}
bool auto_delete() const { return auto_delete_; }
bool IsFinalizedNotFreed() const {
return ptr_ == static_cast<ObjectPtr>(reinterpret_cast<uword>(this));
}
intptr_t external_size() const {
return ExternalSizeInWordsBits::decode(external_data_) * kWordSize;
}
bool SetExternalSize(intptr_t size, IsolateGroup* isolate_group) {
// This method only behaves correctly when external_size() has not been
// previously modified.
ASSERT(external_size() == 0);
if (size < 0 || (size >> kWordSizeLog2) > kMaxAddrSpaceInWords) {
return false;
}
set_external_size(size);
if (SpaceForExternal() == Heap::kNew) {
SetExternalNewSpaceBit();
}
return isolate_group->heap()->AllocatedExternal(external_size(),
SpaceForExternal());
}
// Called when the referent becomes unreachable.
void UpdateUnreachable(IsolateGroup* isolate_group) {
EnsureFreedExternal(isolate_group);
Finalize(isolate_group, this);
}
// Called when the referent has moved, potentially between generations.
void UpdateRelocated(IsolateGroup* isolate_group) {
if (IsSetNewSpaceBit() && (SpaceForExternal() == Heap::kOld)) {
isolate_group->heap()->PromotedExternal(external_size());
ClearExternalNewSpaceBit();
}
}
// Idempotent. Called when the handle is explicitly deleted or the
// referent becomes unreachable.
void EnsureFreedExternal(IsolateGroup* isolate_group) {
isolate_group->heap()->FreedExternal(external_size(), SpaceForExternal());
set_external_size(0);
}
static FinalizablePersistentHandle* Cast(Dart_WeakPersistentHandle handle);
static FinalizablePersistentHandle* Cast(Dart_FinalizableHandle handle);
private:
// This bit of external_data_ is true if the referent was created in new
// space and UpdateRelocated has not yet detected any promotion.
using ExternalNewSpaceBit = BitField<uword, bool>;
// This part of external_data_ is the number of externally allocated bytes.
using ExternalSizeInWordsBits =
BitField<uword, intptr_t, ExternalNewSpaceBit::kNextBit>;
friend class FinalizablePersistentHandles;
FinalizablePersistentHandle()
: ptr_(nullptr), peer_(nullptr), external_data_(0), callback_(nullptr) {}
~FinalizablePersistentHandle() {}
static void Finalize(IsolateGroup* isolate_group,
FinalizablePersistentHandle* handle);
// Overload the ptr_ field as a next pointer when adding freed
// handles to the free list.
FinalizablePersistentHandle* Next() {
return reinterpret_cast<FinalizablePersistentHandle*>(
static_cast<uword>(ptr_));
}
void SetNext(FinalizablePersistentHandle* free_list) {
ptr_ = static_cast<ObjectPtr>(reinterpret_cast<uword>(free_list));
ASSERT(!ptr_->IsHeapObject());
}
void SetFinalizedNotFreed() {
// `handle->raw_ != Object::null()` or the GC will finalize again.
SetNext(this);
}
void FreeHandle(FinalizablePersistentHandle* free_list) {
Clear();
SetNext(free_list);
}
void Clear() {
ptr_ = Object::null();
peer_ = nullptr;
external_data_ = 0;
callback_ = nullptr;
auto_delete_ = false;
}
void set_ptr(ObjectPtr raw) { ptr_ = raw; }
void set_ptr(const LocalHandle& ref) { ptr_ = ref.ptr(); }
void set_ptr(const Object& object) { ptr_ = object.ptr(); }
void set_peer(void* peer) { peer_ = peer; }
void set_callback(Dart_HandleFinalizer callback) { callback_ = callback; }
void set_auto_delete(bool auto_delete) { auto_delete_ = auto_delete; }
void set_external_size(intptr_t size) {
intptr_t size_in_words = Utils::RoundUp(size, kObjectAlignment) / kWordSize;
ASSERT(ExternalSizeInWordsBits::is_valid(size_in_words));
external_data_ =
ExternalSizeInWordsBits::update(size_in_words, external_data_);
}
bool IsSetNewSpaceBit() const {
return ExternalNewSpaceBit::decode(external_data_);
}
void SetExternalNewSpaceBit() {
external_data_ = ExternalNewSpaceBit::update(true, external_data_);
}
void ClearExternalNewSpaceBit() {
external_data_ = ExternalNewSpaceBit::update(false, external_data_);
}
// Returns the space to charge for the external size.
Heap::Space SpaceForExternal() const {
// Non-heap and VM-heap objects count as old space here.
return ptr_->IsImmediateOrOldObject() ? Heap::kOld : Heap::kNew;
}
ObjectPtr ptr_;
void* peer_;
uword external_data_;
Dart_HandleFinalizer callback_;
bool auto_delete_;
DISALLOW_ALLOCATION(); // Allocated through AllocateHandle methods.
DISALLOW_COPY_AND_ASSIGN(FinalizablePersistentHandle);
};
// Local handles repository structure.
static constexpr int kLocalHandleSizeInWords = sizeof(LocalHandle) / kWordSize;
static constexpr int kLocalHandlesPerChunk = 64;
static constexpr int kOffsetOfRawPtrInLocalHandle = 0;
class LocalHandles : Handles<kLocalHandleSizeInWords,
kLocalHandlesPerChunk,
kOffsetOfRawPtrInLocalHandle> {
public:
LocalHandles()
: Handles<kLocalHandleSizeInWords,
kLocalHandlesPerChunk,
kOffsetOfRawPtrInLocalHandle>() {
if (FLAG_trace_handles) {
OS::PrintErr("*** Starting a new Local handle block 0x%" Px "\n",
reinterpret_cast<intptr_t>(this));
}
}
~LocalHandles() {
if (FLAG_trace_handles) {
OS::PrintErr("*** Handle Counts for 0x(%" Px "):Scoped = %d\n",
reinterpret_cast<intptr_t>(this), CountHandles());
OS::PrintErr("*** Deleting Local handle block 0x%" Px "\n",
reinterpret_cast<intptr_t>(this));
}
}
// Visit all object pointers stored in the various handles.
void VisitObjectPointers(ObjectPointerVisitor* visitor) {
visitor->set_gc_root_type("local handle");
Handles<kLocalHandleSizeInWords, kLocalHandlesPerChunk,
kOffsetOfRawPtrInLocalHandle>::VisitObjectPointers(visitor);
visitor->clear_gc_root_type();
}
// Reset the local handles block for reuse.
void Reset() {
Handles<kLocalHandleSizeInWords, kLocalHandlesPerChunk,
kOffsetOfRawPtrInLocalHandle>::Reset();
}
// Allocates a handle in the current handle scope. This handle is valid only
// in the current handle scope and is destroyed when the current handle
// scope ends.
LocalHandle* AllocateHandle() {
return reinterpret_cast<LocalHandle*>(AllocateScopedHandle());
}
// Validate if passed in handle is a Local Handle.
bool IsValidHandle(Dart_Handle object) const {
return IsValidScopedHandle(reinterpret_cast<uword>(object));
}
// Returns a count of active handles (used for testing purposes).
int CountHandles() const { return CountScopedHandles(); }
private:
DISALLOW_COPY_AND_ASSIGN(LocalHandles);
};
// Persistent handles repository structure.
static constexpr int kPersistentHandleSizeInWords =
sizeof(PersistentHandle) / kWordSize;
static constexpr int kPersistentHandlesPerChunk = 64;
static constexpr int kOffsetOfRawPtrInPersistentHandle = 0;
class PersistentHandles : Handles<kPersistentHandleSizeInWords,
kPersistentHandlesPerChunk,
kOffsetOfRawPtrInPersistentHandle> {
public:
PersistentHandles()
: Handles<kPersistentHandleSizeInWords,
kPersistentHandlesPerChunk,
kOffsetOfRawPtrInPersistentHandle>(),
free_list_(nullptr) {
if (FLAG_trace_handles) {
OS::PrintErr("*** Starting a new Persistent handle block 0x%" Px "\n",
reinterpret_cast<intptr_t>(this));
}
}
~PersistentHandles() {
free_list_ = nullptr;
if (FLAG_trace_handles) {
OS::PrintErr("*** Handle Counts for 0x(%" Px "):Scoped = %d\n",
reinterpret_cast<intptr_t>(this), CountHandles());
OS::PrintErr("*** Deleting Persistent handle block 0x%" Px "\n",
reinterpret_cast<intptr_t>(this));
}
}
// Accessors.
PersistentHandle* free_list() const { return free_list_; }
void set_free_list(PersistentHandle* value) { free_list_ = value; }
// Visit all object pointers stored in the various handles.
void VisitObjectPointers(ObjectPointerVisitor* visitor) {
visitor->set_gc_root_type("persistent handle");
Handles<kPersistentHandleSizeInWords, kPersistentHandlesPerChunk,
kOffsetOfRawPtrInPersistentHandle>::VisitObjectPointers(visitor);
visitor->clear_gc_root_type();
}
// Visit all the handles.
void Visit(HandleVisitor* visitor) {
Handles<kPersistentHandleSizeInWords, kPersistentHandlesPerChunk,
kOffsetOfRawPtrInPersistentHandle>::Visit(visitor);
}
// Allocates a persistent handle, these have to be destroyed explicitly
// by calling FreeHandle.
PersistentHandle* AllocateHandle() {
PersistentHandle* handle;
if (free_list_ != nullptr) {
handle = free_list_;
free_list_ = handle->Next();
} else {
handle = reinterpret_cast<PersistentHandle*>(AllocateScopedHandle());
}
handle->set_ptr(Object::null());
return handle;
}
void FreeHandle(PersistentHandle* handle) {
handle->FreeHandle(free_list());
set_free_list(handle);
}
// Validate if passed in handle is a Persistent Handle.
bool IsValidHandle(Dart_PersistentHandle object) const {
return IsValidScopedHandle(reinterpret_cast<uword>(object));
}
bool IsFreeHandle(Dart_PersistentHandle object) const {
PersistentHandle* handle = free_list_;
while (handle != nullptr) {
if (handle == reinterpret_cast<PersistentHandle*>(object)) {
return true;
}
handle = handle->Next();
}
return false;
}
// Returns a count of active handles (used for testing purposes).
int CountHandles() const { return CountScopedHandles(); }
private:
PersistentHandle* free_list_;
DISALLOW_COPY_AND_ASSIGN(PersistentHandles);
};
// Finalizable persistent handles repository structure.
static constexpr int kFinalizablePersistentHandleSizeInWords =
sizeof(FinalizablePersistentHandle) / kWordSize;
static constexpr int kFinalizablePersistentHandlesPerChunk = 64;
static constexpr int kOffsetOfRawPtrInFinalizablePersistentHandle = 0;
class FinalizablePersistentHandles
: Handles<kFinalizablePersistentHandleSizeInWords,
kFinalizablePersistentHandlesPerChunk,
kOffsetOfRawPtrInFinalizablePersistentHandle> {
public:
FinalizablePersistentHandles()
: Handles<kFinalizablePersistentHandleSizeInWords,
kFinalizablePersistentHandlesPerChunk,
kOffsetOfRawPtrInFinalizablePersistentHandle>(),
free_list_(nullptr) {}
~FinalizablePersistentHandles() { free_list_ = nullptr; }
// Accessors.
FinalizablePersistentHandle* free_list() const { return free_list_; }
void set_free_list(FinalizablePersistentHandle* value) { free_list_ = value; }
// Visit all handles stored in the various handle blocks.
void VisitHandles(HandleVisitor* visitor) {
Handles<kFinalizablePersistentHandleSizeInWords,
kFinalizablePersistentHandlesPerChunk,
kOffsetOfRawPtrInFinalizablePersistentHandle>::Visit(visitor);
}
// Visit all object pointers stored in the various handles.
void VisitObjectPointers(ObjectPointerVisitor* visitor) {
visitor->set_gc_root_type("weak persistent handle");
Handles<kFinalizablePersistentHandleSizeInWords,
kFinalizablePersistentHandlesPerChunk,
kOffsetOfRawPtrInFinalizablePersistentHandle>::
VisitObjectPointers(visitor);
visitor->clear_gc_root_type();
}
// Allocates a persistent handle, these have to be destroyed explicitly
// by calling FreeHandle.
FinalizablePersistentHandle* AllocateHandle() {
FinalizablePersistentHandle* handle;
if (free_list_ != nullptr) {
handle = free_list_;
free_list_ = handle->Next();
handle->set_ptr(Object::null());
return handle;
}
handle =
reinterpret_cast<FinalizablePersistentHandle*>(AllocateScopedHandle());
handle->Clear();
return handle;
}
void ClearHandle(FinalizablePersistentHandle* handle) {
handle->Clear();
handle->SetFinalizedNotFreed();
}
void FreeHandle(FinalizablePersistentHandle* handle) {
handle->FreeHandle(free_list());
set_free_list(handle);
}
// Validate if passed in handle is a Persistent Handle.
bool IsValidHandle(Dart_WeakPersistentHandle object) const {
return IsValidScopedHandle(reinterpret_cast<uword>(object));
}
bool IsValidHandle(Dart_FinalizableHandle object) const {
return IsValidScopedHandle(reinterpret_cast<uword>(object));
}
bool IsFreeHandle(Dart_WeakPersistentHandle object) const {
FinalizablePersistentHandle* handle = free_list_;
while (handle != nullptr) {
if (handle == reinterpret_cast<FinalizablePersistentHandle*>(object)) {
return true;
}
handle = handle->Next();
}
return false;
}
// Returns a count of active handles (used for testing purposes).
int CountHandles() const { return CountScopedHandles(); }
private:
FinalizablePersistentHandle* free_list_;
DISALLOW_COPY_AND_ASSIGN(FinalizablePersistentHandles);
};
// Structure used for the implementation of local scopes used in dart_api.
// These local scopes manage handles and memory allocated in the scope.
class ApiLocalScope {
public:
ApiLocalScope(ApiLocalScope* previous, uword stack_marker)
: previous_(previous), stack_marker_(stack_marker) {}
~ApiLocalScope() { previous_ = nullptr; }
// Reinit the ApiLocalScope to new values.
void Reinit(Thread* thread, ApiLocalScope* previous, uword stack_marker) {
previous_ = previous;
stack_marker_ = stack_marker;
zone_.Reinit(thread);
}
// Reset the ApiLocalScope so that it can be reused again.
void Reset(Thread* thread) {
local_handles_.Reset();
zone_.Reset(thread);
previous_ = nullptr;
stack_marker_ = 0;
}
// Accessors.
ApiLocalScope* previous() const { return previous_; }
uword stack_marker() const { return stack_marker_; }
void set_previous(ApiLocalScope* value) { previous_ = value; }
LocalHandles* local_handles() { return &local_handles_; }
Zone* zone() { return zone_.GetZone(); }
private:
ApiLocalScope* previous_;
uword stack_marker_;
LocalHandles local_handles_;
ApiZone zone_;
DISALLOW_COPY_AND_ASSIGN(ApiLocalScope);
};
class ApiNativeScope {
public:
ApiNativeScope() {
// Currently no support for nesting native scopes.
ASSERT(Current() == nullptr);
OSThread::SetThreadLocal(Api::api_native_key_,
reinterpret_cast<uword>(this));
}
~ApiNativeScope() {
ASSERT(Current() == this);
OSThread::SetThreadLocal(Api::api_native_key_, 0);
}
static inline ApiNativeScope* Current() {
return reinterpret_cast<ApiNativeScope*>(
OSThread::GetThreadLocal(Api::api_native_key_));
}
Zone* zone() {
Zone* result = zone_.GetZone();
ASSERT(result->handles()->CountScopedHandles() == 0);
ASSERT(result->handles()->CountZoneHandles() == 0);
return result;
}
private:
ApiZone zone_;
};
// Api growable arrays use a zone for allocation. The constructor
// picks the zone from the current isolate if in an isolate
// environment. When outside an isolate environment it picks the zone
// from the current native scope.
template <typename T>
class ApiGrowableArray : public BaseGrowableArray<T, ValueObject, Zone> {
public:
explicit ApiGrowableArray(int initial_capacity)
: BaseGrowableArray<T, ValueObject, Zone>(
initial_capacity,
ApiNativeScope::Current()->zone()) {}
ApiGrowableArray()
: BaseGrowableArray<T, ValueObject, Zone>(
ApiNativeScope::Current()->zone()) {}
ApiGrowableArray(intptr_t initial_capacity, Zone* zone)
: BaseGrowableArray<T, ValueObject, Zone>(initial_capacity, zone) {}
};
// Implementation of the API State used in dart api for maintaining
// local scopes, persistent handles etc. These are setup on a per isolate
// group basis and destroyed when the isolate group is shutdown.
class ApiState {
public:
ApiState() : persistent_handles_(), weak_persistent_handles_() {}
void MergeOtherApiState(ApiState* api_state);
void VisitObjectPointersUnlocked(ObjectPointerVisitor* visitor) {
persistent_handles_.VisitObjectPointers(visitor);
if (visitor->visit_weak_persistent_handles()) {
weak_persistent_handles_.VisitObjectPointers(visitor);
}
}
void VisitWeakHandlesUnlocked(HandleVisitor* visitor) {
weak_persistent_handles_.VisitHandles(visitor);
}
PersistentHandle* AllocatePersistentHandle() {
MutexLocker ml(&mutex_);
return persistent_handles_.AllocateHandle();
}
void FreePersistentHandle(PersistentHandle* ref) {
MutexLocker ml(&mutex_);
persistent_handles_.FreeHandle(ref);
}
FinalizablePersistentHandle* AllocateWeakPersistentHandle() {
MutexLocker ml(&mutex_);
return weak_persistent_handles_.AllocateHandle();
}
void ClearWeakPersistentHandle(FinalizablePersistentHandle* weak_ref) {
MutexLocker ml(&mutex_);
weak_persistent_handles_.ClearHandle(weak_ref);
}
void FreeWeakPersistentHandle(FinalizablePersistentHandle* weak_ref) {
MutexLocker ml(&mutex_);
weak_persistent_handles_.FreeHandle(weak_ref);
}
bool IsValidPersistentHandle(Dart_PersistentHandle object) {
MutexLocker ml(&mutex_);
return persistent_handles_.IsValidHandle(object);
}
bool IsActivePersistentHandle(Dart_PersistentHandle object) {
MutexLocker ml(&mutex_);
return persistent_handles_.IsValidHandle(object) &&
!persistent_handles_.IsFreeHandle(object);
}
bool IsValidWeakPersistentHandle(Dart_WeakPersistentHandle object) {
MutexLocker ml(&mutex_);
return weak_persistent_handles_.IsValidHandle(object);
}
bool IsValidFinalizableHandle(Dart_FinalizableHandle object) {
MutexLocker ml(&mutex_);
return weak_persistent_handles_.IsValidHandle(object);
}
bool IsActiveWeakPersistentHandle(Dart_WeakPersistentHandle object) {
MutexLocker ml(&mutex_);
return weak_persistent_handles_.IsValidHandle(object) &&
!weak_persistent_handles_.IsFreeHandle(object);
}
int CountPersistentHandles() {
MutexLocker ml(&mutex_);
return persistent_handles_.CountHandles();
}
void RunWithLockedPersistentHandles(
std::function<void(PersistentHandles&)> fun) {
MutexLocker ml(&mutex_);
fun(persistent_handles_);
}
void RunWithLockedWeakPersistentHandles(
std::function<void(FinalizablePersistentHandles&)> fun) {
MutexLocker ml(&mutex_);
fun(weak_persistent_handles_);
}
WeakTable* acquired_table() { return &acquired_table_; }
private:
Mutex mutex_;
PersistentHandles persistent_handles_;
FinalizablePersistentHandles weak_persistent_handles_;
WeakTable acquired_table_;
DISALLOW_COPY_AND_ASSIGN(ApiState);
};
inline FinalizablePersistentHandle* FinalizablePersistentHandle::New(
IsolateGroup* isolate_group,
const Object& object,
void* peer,
Dart_HandleFinalizer callback,
intptr_t external_size,
bool auto_delete) {
ApiState* state = isolate_group->api_state();
ASSERT(state != nullptr);
FinalizablePersistentHandle* ref = state->AllocateWeakPersistentHandle();
ref->set_ptr(object);
ref->set_peer(peer);
ref->set_callback(callback);
ref->set_auto_delete(auto_delete);
// This may trigger GC, so it must be called last.
if (!(ref->SetExternalSize(external_size, isolate_group))) {
state->FreeWeakPersistentHandle(ref);
return nullptr;
}
return ref;
}
} // namespace dart
#endif // RUNTIME_VM_DART_API_STATE_H_