Lines Matching refs:Cie
253 CIE *Cie) in FDE() argument
256 LinkedCIE(Cie) {} in FDE()
405 const CIE *Cie = dyn_cast<CIE>(this); in dumpInstructions() local
407 if (!Cie) in dumpInstructions()
408 Cie = cast<FDE>(this)->getLinkedCIE(); in dumpInstructions()
409 if (Cie) { in dumpInstructions()
410 CodeAlignmentFactor = Cie->getCodeAlignmentFactor(); in dumpInstructions()
411 DataAlignmentFactor = Cie->getDataAlignmentFactor(); in dumpInstructions()
484 auto Cie = make_unique<CIE>(StartOffset, Length, Version, in parse() local
488 CIEs[StartOffset] = Cie.get(); in parse()
489 Entries.emplace_back(std::move(Cie)); in parse()