mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
4949f6185e
TEST=ci Change-Id: Ib7bae6df6becf0ed696a4c00257cedaf46f750aa Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/311148 Reviewed-by: Alexander Aprelev <aam@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
// Copyright (c) 2022, 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.
|
|
|
|
// Logic shared between the Scavenger and Marker.
|
|
|
|
#include "vm/heap/gc_shared.h"
|
|
|
|
#include "vm/dart_api_state.h"
|
|
#include "vm/heap/scavenger.h"
|
|
#include "vm/log.h"
|
|
#include "vm/message_handler.h"
|
|
#include "vm/object.h"
|
|
|
|
namespace dart {
|
|
|
|
void GCLinkedLists::Release() {
|
|
#define FOREACH(type, var) var.Release();
|
|
GC_LINKED_LIST(FOREACH)
|
|
#undef FOREACH
|
|
}
|
|
|
|
bool GCLinkedLists::IsEmpty() {
|
|
#define FOREACH(type, var) \
|
|
if (!var.IsEmpty()) { \
|
|
return false; \
|
|
}
|
|
GC_LINKED_LIST(FOREACH)
|
|
return true;
|
|
#undef FOREACH
|
|
}
|
|
|
|
void GCLinkedLists::FlushInto(GCLinkedLists* to) {
|
|
#define FOREACH(type, var) var.FlushInto(&to->var);
|
|
GC_LINKED_LIST(FOREACH)
|
|
#undef FOREACH
|
|
}
|
|
|
|
Heap::Space SpaceForExternal(FinalizerEntryPtr raw_entry) {
|
|
// As with WeakTables, Smis are "old".
|
|
return raw_entry->untag()->value()->IsImmediateOrOldObject() ? Heap::kOld
|
|
: Heap::kNew;
|
|
}
|
|
|
|
} // namespace dart
|