Home | History | Annotate | Download | only in LD

Lines Matching refs:CIE

43   /** \class CIE
45 * The CIE structure refers to LSB Core Spec 4.1, chap.10.6. Exception Frames.
47 class CIE : public RegionFragment
50 CIE(MemoryRegion& pRegion);
67 const CIE& pCIE,
70 const CIE& getCIE() const { return m_CIE; }
75 const CIE& m_CIE;
79 typedef std::vector<CIE*> CIEList;
112 /// addCIE - add a CIE entry in EhFrame
113 void addCIE(CIE& pCIE);
118 // ----- CIE ----- //
124 const CIE& cie_front() const { return *m_CIEs.front(); }
125 CIE& cie_front() { return *m_CIEs.front(); }
126 const CIE& cie_back () const { return *m_CIEs.back(); }
127 CIE& cie_back () { return *m_CIEs.back(); }