enum class DWARFLinker::WorklistItemType
Description
The distinct types of work performed by the work loop.
Declared at: llvm/include/llvm/DWARFLinker/DWARFLinker.h:335
Enumerators
Name | Value | Comment |
---|---|---|
LookForDIEsToKeep | 0 | Given a DIE, look for DIEs to be kept. |
LookForChildDIEsToKeep | 1 | Given a DIE, look for children of this DIE to be kept. |
LookForRefDIEsToKeep | 2 | Given a DIE, look for DIEs referencing this DIE to be kept. |
LookForParentDIEsToKeep | 3 | Given a DIE, look for parent DIEs to be kept. |
UpdateChildIncompleteness | 4 | Given a DIE, update its incompleteness based on whether its children are incomplete. |
UpdateRefIncompleteness | 5 | Given a DIE, update its incompleteness based on whether the DIEs it references are incomplete. |
MarkODRCanonicalDie | 6 | Given a DIE, mark it as ODR Canonical if applicable. |