Lines Matching refs:Cie
286 CIE *Cie) in FDE() argument
289 LinkedCIE(Cie) {} in FDE()
438 const CIE *Cie = dyn_cast<CIE>(this); in dumpInstructions() local
440 if (!Cie) in dumpInstructions()
441 Cie = cast<FDE>(this)->getLinkedCIE(); in dumpInstructions()
442 if (Cie) { in dumpInstructions()
443 CodeAlignmentFactor = Cie->getCodeAlignmentFactor(); in dumpInstructions()
444 DataAlignmentFactor = Cie->getDataAlignmentFactor(); in dumpInstructions()
614 auto Cie = make_unique<CIE>(StartOffset, Length, Version, in parse() local
620 CIEs[StartOffset] = Cie.get(); in parse()
621 Entries.emplace_back(std::move(Cie)); in parse()
627 CIE *Cie = CIEs[IsEH ? (StartStructureOffset - CIEPointer) : CIEPointer]; in parse() local
631 if (!Cie) in parse()
635 Cie->getFDEPointerEncoding()); in parse()
637 Cie->getFDEPointerEncoding()); in parse()
639 StringRef AugmentationString = Cie->getAugmentationString(); in parse()
648 if (Cie->getLSDAPointerEncoding() != DW_EH_PE_omit) in parse()
649 readPointer(Data, Offset, Cie->getLSDAPointerEncoding()); in parse()
661 Cie)); in parse()