LLVM 22.0.0git
|
Inspect an eh-frame CFI record. More...
#include "llvm/ExecutionEngine/JITLink/EHFrameSupport.h"
Public Member Functions | |
bool | isFDE () const |
Returns true if this frame is an FDE, false for a CIE. | |
bool | isCIE () const |
Returns true if this frame is a CIE, false for an FDE. | |
Edge * | getPersonalityEdge () const |
If this is a CIE record, returns the Edge pointing at the personality function, if any. | |
Edge * | getCIEEdge () const |
If this is an FDE record, returns the Edge pointing to the CIE. | |
Edge * | getPCBeginEdge () const |
If this is an FDE record, returns the Edge pointing at the PC-begin symbol. | |
Edge * | getLSDAEdge () const |
If this is an FDE record, returns the Edge pointing at the LSDA, if any. |
Static Public Member Functions | |
static LLVM_ABI EHFrameCFIBlockInspector | FromEdgeScan (Block &B) |
Identify CFI record type and edges based on number and order of edges in the given block only. |
Inspect an eh-frame CFI record.
Definition at line 26 of file EHFrameSupport.h.
|
static |
Identify CFI record type and edges based on number and order of edges in the given block only.
This assumes that the block contains one CFI record that has already been split out and fixed by the DWARFRecordSplitter and EHFrameEdgeFixer passes.
Zero or one outgoing edges: Record is CIE. If present, edge points to personality.
Two or three outgoing edges: Record is an FDE. First edge points to CIE, second to PC-begin, third (if present) to LSDA.
It is illegal to call this function on a block with four or more edges.
Definition at line 641 of file EHFrameSupport.cpp.
References assert(), B(), LHS, llvm::make_pointer_range(), RHS, llvm::SmallVectorTemplateCommon< T, typename >::size(), and llvm::sort().
|
inline |
If this is an FDE record, returns the Edge pointing to the CIE.
If this is a CIE record, returns null.
The result is not valid if any modification has been made to the block after parsing.
Definition at line 61 of file EHFrameSupport.h.
|
inline |
|
inline |
If this is an FDE record, returns the Edge pointing at the PC-begin symbol.
If this a CIE record, returns null.
Definition at line 66 of file EHFrameSupport.h.
|
inline |
If this is a CIE record, returns the Edge pointing at the personality function, if any.
It is illegal to call this method on FDE records.
Definition at line 51 of file EHFrameSupport.h.
References assert(), isCIE(), and PersonalityEdge.
|
inline |
Returns true if this frame is a CIE, false for an FDE.
Definition at line 46 of file EHFrameSupport.h.
Referenced by getPersonalityEdge().
|
inline |
Returns true if this frame is an FDE, false for a CIE.
Definition at line 43 of file EHFrameSupport.h.
Referenced by getLSDAEdge().
Edge* llvm::jitlink::EHFrameCFIBlockInspector::LSDAEdge |
Definition at line 83 of file EHFrameSupport.h.
Referenced by getLSDAEdge().
Edge* llvm::jitlink::EHFrameCFIBlockInspector::PersonalityEdge |
Definition at line 82 of file EHFrameSupport.h.
Referenced by getPersonalityEdge().