Home | History | Annotate | Download | only in LD

Lines Matching refs:CIE

86     result.kind = CIE;
97 // {CIE, FDE, CIEt}
100 // (CIE FDE*)+ CIEt
107 // CIE \ / CIEt
111 // | CIE |
115 // CIE FDE Term Unknown
121 /* CIE FDE Term Unknown */
175 // skip Length, Extended Length and CIE ID.
214 // we discard this CIE if the augumentation string is '\0'
216 EhFrame::CIE* cie = new EhFrame::CIE(pRegion);
217 cie->setFDEEncode(llvm::dwarf::DW_EH_PE_absptr);
218 pEhFrame.addCIE(*cie);
219 pEhFrame.getCIEMap().insert(std::make_pair(pToken.file_off, cie));
223 // the Augmentation String start with 'eh' is a CIE from gcc before 3.0,
325 // create and push back the CIE entry
326 EhFrame::CIE* cie = new EhFrame::CIE(pRegion);
327 cie->setFDEEncode(fde_encoding);
328 cie->setPersonalityOffset(pr_ptr_data_offset);
329 cie->setPersonalityName(pr_ptr_data);
330 cie->setAugmentationData(augdata);
331 pEhFrame.addCIE(*cie);
332 pEhFrame.getCIEMap().insert(std::make_pair(pToken.file_off, cie));