Searched refs:Cie (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugFrame.cpp | 205 const CIE *Cie = Fde->getLinkedCIE(); in create() local 206 if (Cie == nullptr) in create() 212 if (Cie->cfis().empty() && Fde->cfis().empty()) in create() 219 if (Error CieError = UT.parseRows(Cie->cfis(), Row, nullptr)) in create() 234 Expected<UnwindTable> UnwindTable::create(const CIE *Cie) { in create() argument 236 if (Cie->cfis().empty()) in create() 241 if (Error CieError = UT.parseRows(Cie->cfis(), Row, nullptr)) in create() 1061 auto Cie = std::make_unique<CIE>( in parse() local 1064 CIEs[StartOffset] = Cie.get(); in parse() 1065 Entries.push_back(std::move(Cie)); in parse() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFDebugFrame.h | 362 static Expected<UnwindTable> create(const CIE *Cie); 632 uint64_t InitialLocation, uint64_t AddressRange, CIE *Cie, in FDE() argument 635 Cie ? Cie->getCodeAlignmentFactor() : 0, in FDE() 636 Cie ? Cie->getDataAlignmentFactor() : 0, Arch), in FDE() 638 AddressRange(AddressRange), LinkedCIE(Cie), LSDAAddress(LSDAAddress) {} in FDE()
|