Lines Matching refs:CT
803 auto *&CT = (*Context.pImpl->DITypeMap)[&Identifier]; in buildODRType() local
804 if (!CT) in buildODRType()
805 return CT = DICompositeType::getDistinct( in buildODRType()
811 if (CT->getTag() != Tag) in buildODRType()
815 assert(CT->getRawIdentifier() == &Identifier && "Wrong ODR identifier?"); in buildODRType()
816 if (!CT->isForwardDecl() || (Flags & DINode::FlagFwdDecl)) in buildODRType()
817 return CT; in buildODRType()
820 CT->mutate(Tag, Line, RuntimeLang, SizeInBits, AlignInBits, OffsetInBits, in buildODRType()
826 assert((std::end(Ops) - std::begin(Ops)) == (int)CT->getNumOperands() && in buildODRType()
828 for (unsigned I = 0, E = CT->getNumOperands(); I != E; ++I) in buildODRType()
829 if (Ops[I] != CT->getOperand(I)) in buildODRType()
830 CT->setOperand(I, Ops[I]); in buildODRType()
831 return CT; in buildODRType()
845 auto *&CT = (*Context.pImpl->DITypeMap)[&Identifier]; in getODRType() local
846 if (!CT) { in getODRType()
847 CT = DICompositeType::getDistinct( in getODRType()
853 if (CT->getTag() != Tag) in getODRType()
856 return CT; in getODRType()