enum class SymbolState

Description

Represents the state that a symbol has reached during materialization.

Declared at: llvm/include/llvm/ExecutionEngine/Orc/Core.h:824

Enumerators

NameValueComment
Invalid0
NeverSearched1No symbol should be in this state.
Materializing2Added to the symbol table, never queried.
Resolved3Queried, materialization begun.
Emitted4Assigned address, still materializing.
Ready63Emitted to memory, but waiting on transitive dependencies.