Lines Matching refs:CT
418 auto *&CT = (*Context.pImpl->DITypeMap)[&Identifier]; in buildODRType() local
419 if (!CT) in buildODRType()
420 return CT = DICompositeType::getDistinct( in buildODRType()
426 assert(CT->getRawIdentifier() == &Identifier && "Wrong ODR identifier?"); in buildODRType()
427 if (!CT->isForwardDecl() || (Flags & DINode::FlagFwdDecl)) in buildODRType()
428 return CT; in buildODRType()
431 CT->mutate(Tag, Line, RuntimeLang, SizeInBits, AlignInBits, OffsetInBits, in buildODRType()
436 assert((std::end(Ops) - std::begin(Ops)) == (int)CT->getNumOperands() && in buildODRType()
438 for (unsigned I = 0, E = CT->getNumOperands(); I != E; ++I) in buildODRType()
439 if (Ops[I] != CT->getOperand(I)) in buildODRType()
440 CT->setOperand(I, Ops[I]); in buildODRType()
441 return CT; in buildODRType()
453 auto *&CT = (*Context.pImpl->DITypeMap)[&Identifier]; in getODRType() local
454 if (!CT) in getODRType()
455 CT = DICompositeType::getDistinct( in getODRType()
459 return CT; in getODRType()