ladybird/Libraries/LibGC/HeapRoot.h

29 lines
464 B
C
Raw Normal View History

/*
* Copyright (c) 2023, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/SourceLocation.h>
namespace GC {
struct HeapRoot {
enum class Type {
HeapFunctionCapturedPointer,
Root,
MarkedVector,
ConservativeVector,
RegisterPointer,
StackPointer,
VM,
};
Type type;
SourceLocation const* location { nullptr };
};
}