Home
last modified time | relevance | path

Searched refs:CTy (Results 1 – 10 of 10) sorted by relevance

/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfUnit.cpp976 DICompositeType CTy(Ty); in getOrCreateTypeDIE() local
978 if (MDString *TypeId = CTy.getIdentifier()) { in getOrCreateTypeDIE()
979 DD->addDwarfTypeUnitType(getCU(), TypeId->getString(), TyDIE, CTy); in getOrCreateTypeDIE()
983 constructTypeDIE(TyDIE, CTy); in getOrCreateTypeDIE()
1148 void DwarfUnit::constructTypeDIE(DIE &Buffer, DICompositeType CTy) { in constructTypeDIE() argument
1150 StringRef Name = CTy.getName(); in constructTypeDIE()
1152 uint64_t Size = CTy.getSizeInBits() >> 3; in constructTypeDIE()
1157 constructArrayTypeDIE(Buffer, CTy); in constructTypeDIE()
1160 constructEnumTypeDIE(Buffer, CTy); in constructTypeDIE()
1164 DIArray Elements = CTy.getTypeArray(); in constructTypeDIE()
[all …]
DDwarfUnit.h446 void constructTypeDIE(DIE &Buffer, DICompositeType CTy);
472 void constructArrayTypeDIE(DIE &Buffer, DICompositeType CTy);
475 void constructEnumTypeDIE(DIE &Buffer, DICompositeType CTy);
DDwarfDebug.h599 DIE &Die, DICompositeType CTy);
DDwarfDebug.cpp2393 DICompositeType CTy) { in addDwarfTypeUnitType() argument
2400 const DwarfTypeUnit *&TU = DwarfTypeUnits[CTy]; in addDwarfTypeUnitType()
2416 std::make_pair(std::move(OwnedUnit), CTy)); in addDwarfTypeUnitType()
2434 NewTU.setType(NewTU.createTypeDIE(CTy)); in addDwarfTypeUnitType()
2454 CU.constructTypeDIE(RefDie, CTy); in addDwarfTypeUnitType()
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineC.cpp135 QualType CTy = in VisitBinaryOperator() local
137 CTy = getContext().getCanonicalType(CTy); in VisitBinaryOperator()
149 SVal Result = svalBuilder.evalCast(evalBinOp(state, Op, V, RightV, CTy), in VisitBinaryOperator()
150 B->getType(), CTy); in VisitBinaryOperator()
164 Result = svalBuilder.evalCast(LHSVal, CTy, LTy); in VisitBinaryOperator()
169 LHSVal = svalBuilder.evalCast(Result, LTy, CTy); in VisitBinaryOperator()
/external/llvm/lib/IR/
DDIBuilder.cpp772 DICompositeType CTy(MDNode::get(VMContext, Elts)); in createEnumerationType() local
773 AllEnumTypes.push_back(CTy); in createEnumerationType()
775 retainType(CTy); in createEnumerationType()
776 return CTy; in createEnumerationType()
/external/clang/lib/AST/
DASTDiagnostic.cpp93 const Class##Type *CTy = cast<Class##Type>(Ty); \ in Desugar()
94 if (CTy->isSugared()) { \ in Desugar()
96 Underlying = CTy->desugar(); \ in Desugar()
/external/llvm/lib/Analysis/
DScalarEvolutionExpander.cpp483 Type *CTy; in expandAddToGEP() local
485 if (U->isOffsetOf(CTy, FieldNo) && CTy == STy) { in expandAddToGEP()
DScalarEvolution.cpp228 Type *CTy; in print() local
230 if (U->isOffsetOf(CTy, FieldNo)) { in print()
231 OS << "offsetof(" << *CTy << ", "; in print()
427 bool SCEVUnknown::isOffsetOf(Type *&CTy, Constant *&FieldNo) const { in isOffsetOf() argument
440 CTy = Ty; in isOffsetOf()
/external/clang/lib/CodeGen/
DTargetInfo.cpp286 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) in is32Or64BitBasicType() local
287 Ty = CTy->getElementType(); in is32Or64BitBasicType()
3002 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) in isAlignedParamType() local
3003 Ty = CTy->getElementType(); in isAlignedParamType()
3119 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) { in EmitVAArg() local
3120 BaseTy = CTy->getElementType(); in EmitVAArg()