Home | History | Annotate | Download | only in DebugInfo

Lines Matching refs:CIE

200 /// \brief DWARF Common Information Entry (CIE)
201 class CIE : public FrameEntry {
205 CIE(DataExtractor D, uint64_t Offset, uint64_t Length, uint8_t Version,
213 ~CIE() {
217 OS << format("%08x %08x %08x CIE",
248 // Each FDE has a CIE it's "linked to". Our FDE contains is constructed with
249 // an offset to the CIE (provided by parsing the FDE header). The CIE itself
263 OS << format("cie=%08x pc=%08x...%08x\n",
281 CIE *LinkedCIE;
341 // Note: this is specifically DWARFv3 CIE header structure. It was
351 Entry = new CIE(Data, StartOffset, Length, Version,
364 assert(Entry && "Expected Entry to be populated with CIE or FDE");