Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DDwarfUnit.cpp550 if (auto *CTy = dyn_cast<DICompositeType>(Ty)) { in isUnsignedDIType() local
553 if (CTy->getTag() == dwarf::DW_TAG_enumeration_type) in isUnsignedDIType()
765 else if (auto *CTy = dyn_cast<DICompositeType>(Ty)) { in getOrCreateTypeDIE() local
767 if (MDString *TypeId = CTy->getRawIdentifier()) { in getOrCreateTypeDIE()
768 DD->addDwarfTypeUnitType(getCU(), TypeId->getString(), TyDIE, CTy); in getOrCreateTypeDIE()
772 constructTypeDIE(TyDIE, CTy); in getOrCreateTypeDIE()
909 void DwarfUnit::constructTypeDIE(DIE &Buffer, const DISubroutineType *CTy) { in constructTypeDIE() argument
911 auto Elements = cast<DISubroutineType>(CTy)->getTypeArray(); in constructTypeDIE()
931 if (CTy->getCC() && CTy->getCC() != dwarf::DW_CC_normal) in constructTypeDIE()
933 CTy->getCC()); in constructTypeDIE()
[all …]
DDwarfUnit.h303 void constructTypeDIE(DIE &Buffer, const DICompositeType *CTy);
345 void constructTypeDIE(DIE &Buffer, const DISubroutineType *CTy);
347 void constructArrayTypeDIE(DIE &Buffer, const DICompositeType *CTy);
348 void constructEnumTypeDIE(DIE &Buffer, const DICompositeType *CTy);
DCodeViewDebug.cpp2307 const auto *CTy = cast<DICompositeType>(Ty); in getCompleteTypeIndex() local
2308 auto InsertResult = CompleteTypeIndices.insert({CTy, TypeIndex()}); in getCompleteTypeIndex()
2318 if (!CTy->getName().empty() || !CTy->getIdentifier().empty()) { in getCompleteTypeIndex()
2319 TypeIndex FwdDeclTI = getTypeIndex(CTy); in getCompleteTypeIndex()
2324 if (CTy->isForwardDecl()) in getCompleteTypeIndex()
2329 switch (CTy->getTag()) { in getCompleteTypeIndex()
2332 TI = lowerCompleteTypeClass(CTy); in getCompleteTypeIndex()
2335 TI = lowerCompleteTypeUnion(CTy); in getCompleteTypeIndex()
2345 CompleteTypeIndices[CTy] = TI; in getCompleteTypeIndex()
DDwarfDebug.cpp2330 const DICompositeType *CTy) { in addDwarfTypeUnitType() argument
2337 auto Ins = TypeSignatures.insert(std::make_pair(CTy, 0)); in addDwarfTypeUnitType()
2350 TypeUnitsUnderConstruction.emplace_back(std::move(OwnedUnit), CTy); in addDwarfTypeUnitType()
2372 NewTU.setType(NewTU.createTypeDIE(CTy)); in addDwarfTypeUnitType()
2392 CU.constructTypeDIE(RefDie, cast<DICompositeType>(CTy)); in addDwarfTypeUnitType()
DDwarfDebug.h520 DIE &Die, const DICompositeType *CTy);
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfUnit.cpp516 if (auto *CTy = dyn_cast<DICompositeType>(Ty)) { in isUnsignedDIType() local
519 if (CTy->getTag() == dwarf::DW_TAG_enumeration_type) in isUnsignedDIType()
720 else if (auto *CTy = dyn_cast<DICompositeType>(Ty)) { in getOrCreateTypeDIE() local
722 if (MDString *TypeId = CTy->getRawIdentifier()) { in getOrCreateTypeDIE()
723 DD->addDwarfTypeUnitType(getCU(), TypeId->getString(), TyDIE, CTy); in getOrCreateTypeDIE()
727 constructTypeDIE(TyDIE, CTy); in getOrCreateTypeDIE()
857 void DwarfUnit::constructTypeDIE(DIE &Buffer, const DISubroutineType *CTy) { in constructTypeDIE() argument
859 auto Elements = cast<DISubroutineType>(CTy)->getTypeArray(); in constructTypeDIE()
879 if (CTy->getCC() && CTy->getCC() != dwarf::DW_CC_normal) in constructTypeDIE()
881 CTy->getCC()); in constructTypeDIE()
[all …]
DDwarfUnit.h318 void constructTypeDIE(DIE &Buffer, const DICompositeType *CTy);
339 void constructArrayTypeDIE(DIE &Buffer, const DICompositeType *CTy);
340 void constructEnumTypeDIE(DIE &Buffer, const DICompositeType *CTy);
DCodeViewDebug.cpp1785 const auto *CTy = cast<DICompositeType>(Ty); in getCompleteTypeIndex() local
1786 auto InsertResult = CompleteTypeIndices.insert({CTy, TypeIndex()}); in getCompleteTypeIndex()
1795 TypeIndex FwdDeclTI = getTypeIndex(CTy); in getCompleteTypeIndex()
1800 if (CTy->isForwardDecl()) in getCompleteTypeIndex()
1804 switch (CTy->getTag()) { in getCompleteTypeIndex()
1807 TI = lowerCompleteTypeClass(CTy); in getCompleteTypeIndex()
1810 TI = lowerCompleteTypeUnion(CTy); in getCompleteTypeIndex()
DDwarfDebug.cpp1872 const DICompositeType *CTy) { in addDwarfTypeUnitType() argument
1879 auto Ins = TypeSignatures.insert(std::make_pair(CTy, 0)); in addDwarfTypeUnitType()
1893 std::make_pair(std::move(OwnedUnit), CTy)); in addDwarfTypeUnitType()
1910 NewTU.setType(NewTU.createTypeDIE(CTy)); in addDwarfTypeUnitType()
1930 CU.constructTypeDIE(RefDie, cast<DICompositeType>(CTy)); in addDwarfTypeUnitType()
DDwarfDebug.h480 DIE &Die, const DICompositeType *CTy);
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.cpp711 void CompileUnit::constructTypeDIE(DIE &Buffer, DICompositeType CTy) { in constructTypeDIE() argument
713 StringRef Name = CTy.getName(); in constructTypeDIE()
715 uint64_t Size = CTy.getSizeInBits() >> 3; in constructTypeDIE()
716 unsigned Tag = CTy.getTag(); in constructTypeDIE()
722 constructArrayTypeDIE(Buffer, &CTy); in constructTypeDIE()
725 DIArray Elements = CTy.getTypeArray(); in constructTypeDIE()
740 DIArray Elements = CTy.getTypeArray(); in constructTypeDIE()
767 DIArray Elements = CTy.getTypeArray(); in constructTypeDIE()
809 if (CTy.isAppleBlockExtension()) in constructTypeDIE()
812 unsigned RLang = CTy.getRunTimeLang(); in constructTypeDIE()
[all …]
DDwarfCompileUnit.h268 DICompositeType CTy);
275 DICompositeType *CTy);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/FuzzMutate/
DOperations.cpp248 auto *CTy = cast<CompositeType>(Cur[0]->getType()); in validInsertValueIndex() local
251 CTy->getTypeAtIndex(CI->getZExtValue()) == Cur[1]->getType()) in validInsertValueIndex()
258 auto *CTy = cast<CompositeType>(Cur[0]->getType()); in validInsertValueIndex() local
259 for (int I = 0, E = getAggregateNumElements(CTy); I < E; ++I) in validInsertValueIndex()
260 if (CTy->getTypeAtIndex(I) == Cur[1]->getType()) in validInsertValueIndex()
/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.cpp418 auto *CTy = DICompositeType::get( in createEnumerationType() local
422 AllEnumTypes.push_back(CTy); in createEnumerationType()
423 trackIfUnresolved(CTy); in createEnumerationType()
424 return CTy; in createEnumerationType()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DDIBuilder.cpp508 auto *CTy = DICompositeType::get( in createEnumerationType() local
513 AllEnumTypes.push_back(CTy); in createEnumerationType()
514 trackIfUnresolved(CTy); in createEnumerationType()
515 return CTy; in createEnumerationType()
/external/clang/lib/AST/
DASTDiagnostic.cpp147 const Class##Type *CTy = cast<Class##Type>(Ty); \ in Desugar()
148 if (CTy->isSugared()) { \ in Desugar()
150 Underlying = CTy->desugar(); \ in Desugar()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DScalarEvolutionExpander.cpp458 Type *CTy; in expandAddToGEP() local
460 if (U->isOffsetOf(CTy, FieldNo) && CTy == STy) { in expandAddToGEP()
DScalarEvolution.cpp210 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()
2616 const SCEV *ScalarEvolution::getOffsetOfExpr(Type *CTy, in getOffsetOfExpr() argument
2618 Constant *C = ConstantExpr::getOffsetOf(CTy, FieldNo); in getOffsetOfExpr()
2622 Type *Ty = getEffectiveSCEVType(PointerType::getUnqual(CTy)); in getOffsetOfExpr()
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DScalarEvolution.h632 const SCEV *getOffsetOfExpr(Type *CTy, Constant *FieldNo);
/external/clang/lib/CodeGen/
DCGExprScalar.cpp2926 if (auto *CTy = LHSTy->getAs<ComplexType>()) { in EmitCompare() local
2928 CETy = CTy->getElementType(); in EmitCompare()
2934 if (auto *CTy = RHSTy->getAs<ComplexType>()) { in EmitCompare() local
2937 CTy->getElementType()) && in EmitCompare()
2939 (void)CTy; in EmitCompare()
DTargetInfo.cpp1152 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) in is32Or64BitBasicType() local
1153 Ty = CTy->getElementType(); in is32Or64BitBasicType()
3692 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) { in EmitVAArg() local
3694 (void)CTy; in EmitVAArg()
4026 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) in getParamTypeAlignment() local
4027 Ty = CTy->getElementType(); in getParamTypeAlignment()
4349 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) { in EmitVAArg() local
4367 llvm::Type *EltTy = CGF.ConvertTypeForMem(CTy->getElementType()); in EmitVAArg()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp227 Type *CTy; in print() local
229 if (U->isOffsetOf(CTy, FieldNo)) { in print()
230 OS << "offsetof(" << *CTy << ", "; in print()
424 bool SCEVUnknown::isOffsetOf(Type *&CTy, Constant *&FieldNo) const { in isOffsetOf() argument
437 CTy = Ty; in isOffsetOf()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DScalarEvolution.cpp314 Type *CTy; in print() local
316 if (U->isOffsetOf(CTy, FieldNo)) { in print()
317 OS << "offsetof(" << *CTy << ", "; in print()
505 bool SCEVUnknown::isOffsetOf(Type *&CTy, Constant *&FieldNo) const { in isOffsetOf() argument
518 CTy = Ty; in isOffsetOf()
/external/honggfuzz/examples/apache-httpd/corpus_http2/
D03d7e517425430613d18e6cf09f06f50.000b6ce7.honggfuzz.cov9962 �5Z�B��G�N9�춞t{�6;]p��CTyw�k������^�^�Lu����7��gP+�b��AB�r�Xp~N��KΌ�����ϕ]�g0����%`0��…
11362 �5Z�B��G�N9�춞t{�6;]p��CTyw�k������^�^�Lu����7��gP+�b��AB�r�Xp~N��KΌ�����ϕ]�g0����%`0��…

12