Lines Matching refs:Cie
242 CIE *Cie) in FDE() argument
245 LinkedCIE(Cie) {} in FDE()
394 const CIE *Cie = dyn_cast<CIE>(this); in dumpInstructions() local
396 if (!Cie) in dumpInstructions()
397 Cie = cast<FDE>(this)->getLinkedCIE(); in dumpInstructions()
398 if (Cie) { in dumpInstructions()
399 CodeAlignmentFactor = Cie->getCodeAlignmentFactor(); in dumpInstructions()
400 DataAlignmentFactor = Cie->getDataAlignmentFactor(); in dumpInstructions()
474 auto Cie = make_unique<CIE>(StartOffset, Length, Version, in parse() local
477 CIEs[StartOffset] = Cie.get(); in parse()
478 Entries.emplace_back(std::move(Cie)); in parse()