Home | History | Annotate | Download | only in LD

Lines Matching full:pregion

32 EhFrame::Record::Record(llvm::StringRef pRegion)
33 : RegionFragment(pRegion) {
44 EhFrame::CIE::CIE(llvm::StringRef pRegion)
45 : EhFrame::Record(pRegion),
56 EhFrame::FDE::FDE(llvm::StringRef pRegion, EhFrame::CIE& pCIE)
57 : EhFrame::Record(pRegion), m_pCIE(&pCIE) {
73 EhFrame::GeneratedCIE::GeneratedCIE(llvm::StringRef pRegion)
74 : EhFrame::CIE(pRegion) {
84 EhFrame::GeneratedFDE::GeneratedFDE(llvm::StringRef pRegion, CIE &pCIE)
85 : EhFrame::FDE(pRegion, pCIE) {