DwarfCfiFindCie
Description
Find a CIE by its .eh_frame offset (used to link FDE -> CIE).
Usage example (Cross-references)
Usage examples (Cross-references)
out->cie_offset = cie_offset;
const DwarfCie *cie = DwarfCfiFindCie(cfi, cie_offset);
if (!cie)
return false; }
const DwarfCie *DwarfCfiFindCie(const DwarfCfi *self, u64 cie_offset) {
if (!self)
return NULL; return false;
}
const DwarfCie *cie = DwarfCfiFindCie(cfi, fde->cie_offset);
if (!cie)
return false;
Last updated on