Lines Matching refs:CIE
44 /** \class CIE
46 * The CIE structure refers to LSB Core Spec 4.1, chap.10.6. Exception Frames.
48 class CIE : public RegionFragment
51 CIE(MemoryRegion& pRegion);
68 const CIE& pCIE,
71 const CIE& getCIE() const { return m_CIE; }
76 const CIE& m_CIE;
80 typedef std::vector<CIE*> CIEList;
115 /// addCIE - add a CIE entry in EhFrame
116 void addCIE(CIE& pCIE);
121 // ----- CIE ----- //
127 const CIE& cie_front() const { return *m_CIEs.front(); }
128 CIE& cie_front() { return *m_CIEs.front(); }
129 const CIE& cie_back () const { return *m_CIEs.back(); }
130 CIE& cie_back () { return *m_CIEs.back(); }