Searched refs:CTy (Results 1 – 8 of 8) sorted by relevance
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfCompileUnit.cpp | 686 void CompileUnit::constructTypeDIE(DIE &Buffer, DICompositeType CTy) { in constructTypeDIE() argument 688 StringRef Name = CTy.getName(); in constructTypeDIE() 690 uint64_t Size = CTy.getSizeInBits() >> 3; in constructTypeDIE() 691 unsigned Tag = CTy.getTag(); in constructTypeDIE() 697 constructArrayTypeDIE(Buffer, &CTy); in constructTypeDIE() 700 DIArray Elements = CTy.getTypeArray(); in constructTypeDIE() 715 DIArray Elements = CTy.getTypeArray(); in constructTypeDIE() 742 DIArray Elements = CTy.getTypeArray(); in constructTypeDIE() 784 if (CTy.isAppleBlockExtension()) in constructTypeDIE() 787 unsigned RLang = CTy.getRunTimeLang(); in constructTypeDIE() [all …]
|
D | DwarfCompileUnit.h | 257 DICompositeType CTy); 264 DICompositeType *CTy);
|
/external/clang/lib/AST/ |
D | ASTDiagnostic.cpp | 83 const Class##Type *CTy = cast<Class##Type>(Ty); \ in Desugar() 84 if (CTy->isSugared()) { \ in Desugar() 86 Underlying = CTy->desugar(); \ in Desugar()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ExprEngine.cpp | 2974 QualType CTy = in VisitBinaryOperator() local 2976 CTy = getContext().getCanonicalType(CTy); in VisitBinaryOperator() 2988 SVal Result = svalBuilder.evalCast(evalBinOp(state, Op, V, RightV, CTy), in VisitBinaryOperator() 2989 B->getType(), CTy); in VisitBinaryOperator() 3007 Result = svalBuilder.evalCast(LHSVal, CTy, LTy); in VisitBinaryOperator() 3012 LHSVal = svalBuilder.evalCast(Result, LTy, CTy); in VisitBinaryOperator()
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolutionExpander.cpp | 454 Type *CTy; in expandAddToGEP() local 456 if (U->isOffsetOf(CTy, FieldNo) && CTy == STy) { in expandAddToGEP()
|
D | ScalarEvolution.cpp | 210 Type *CTy; in print() local 212 if (U->isOffsetOf(CTy, FieldNo)) { in print() 213 OS << "offsetof(" << *CTy << ", "; in print() 399 bool SCEVUnknown::isOffsetOf(Type *&CTy, Constant *&FieldNo) const { in isOffsetOf() argument 412 CTy = Ty; in isOffsetOf() 2521 const SCEV *ScalarEvolution::getOffsetOfExpr(Type *CTy, in getOffsetOfExpr() argument 2523 Constant *C = ConstantExpr::getOffsetOf(CTy, FieldNo); in getOffsetOfExpr() 2527 Type *Ty = getEffectiveSCEVType(PointerType::getUnqual(CTy)); in getOffsetOfExpr()
|
/external/llvm/include/llvm/Analysis/ |
D | ScalarEvolution.h | 565 const SCEV *getOffsetOfExpr(Type *CTy, Constant *FieldNo);
|
/external/clang/lib/CodeGen/ |
D | CGExpr.cpp | 580 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) { in GetUndefRValue() local 581 llvm::Type *EltTy = ConvertType(CTy->getElementType()); in GetUndefRValue()
|