Home
last modified time | relevance | path

Searched refs:getTypeInfo (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp137 return getTypeInfo(Context.ShortTy); in getTypeInfoHelper()
139 return getTypeInfo(Context.IntTy); in getTypeInfoHelper()
141 return getTypeInfo(Context.LongTy); in getTypeInfoHelper()
143 return getTypeInfo(Context.LongLongTy); in getTypeInfoHelper()
145 return getTypeInfo(Context.Int128Ty); in getTypeInfoHelper()
148 return getTypeInfo(Context.ShortFractTy); in getTypeInfoHelper()
150 return getTypeInfo(Context.FractTy); in getTypeInfoHelper()
152 return getTypeInfo(Context.LongFractTy); in getTypeInfoHelper()
155 return getTypeInfo(Context.SatShortFractTy); in getTypeInfoHelper()
157 return getTypeInfo(Context.SatFractTy); in getTypeInfoHelper()
[all …]
H A DCodeGenTBAA.h180 llvm::MDNode *getTypeInfo(QualType QTy);
H A DCGAtomic.cpp58 TypeInfo ValueTI = C.getTypeInfo(ValueTy); in AtomicInfo()
62 TypeInfo AtomicTI = C.getTypeInfo(AtomicTy); in AtomicInfo()
H A DCGDebugInfo.cpp61 auto TI = Ctx.getTypeInfo(Ty); in getTypeAlignIfRequired()
1724 TypeInfo TI = CGM.getContext().getTypeInfo(type); in createFieldType()
5296 TypeInfo PtrInfo = C.getTypeInfo(C.VoidPtrTy); in EmitDeclareOfBlockLiteralArgVariable()
H A DMicrosoftCXXABI.cpp878 TypeInfo Info = getContext().getTypeInfo(RD->getTypeForDecl()); in getRecordArgABI()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCastToStructChecker.cpp91 unsigned ToWidth = Ctx.getTypeInfo(ToPointeeTy).Width; in VisitCastExpr()
92 unsigned OrigWidth = Ctx.getTypeInfo(OrigPointeeTy).Width; in VisitCastExpr()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DPass.cpp255 CFGOnlyList.push_back(P->getTypeInfo());
279 pushUnique(Preserved, PI->getTypeInfo()); in addRequiredID()
H A DPassRegistry.cpp52 PassInfoMap.insert(std::make_pair(PI.getTypeInfo(), &PI)).second; in registerPass()
H A DLegacyPassManager.cpp816 ImmutablePassMap[ImmPI->getTypeInfo()] = P; in addImmutablePass()
888 AvailableAnalysis[PI->getTypeInfo()] = P; in recordAvailableAnalysis()
1015 AvailableAnalysis.find(PI->getTypeInfo()); in freePass()
/freebsd/contrib/llvm-project/llvm/include/llvm/
H A DPassInfo.h71 const void *getTypeInfo() const { return PassID; } in getTypeInfo() function
H A DPassSupport.h147 : RegisterAGBase(RPB.getPassName(), &Interface::ID, RPB.getTypeInfo(), in RegisterAnalysisGroup()
/freebsd/contrib/llvm-project/clang/include/clang/APINotes/
H A DTypes.h561 return getTypeInfo(index + 1); in getParamTypeInfo()
564 NullabilityKind getReturnTypeInfo() const { return getTypeInfo(0); } in getReturnTypeInfo()
580 NullabilityKind getTypeInfo(unsigned index) const { in getTypeInfo() function
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DRandstruct.cpp117 uint64_t Width = Context.getTypeInfo(FD->getType()).Width; in randomizeStructureLayoutImpl()
H A DASTContext.cpp1816 TypeInfo Info = getTypeInfo(T); in getTypeInfoInChars()
1864 return getTypeInfo(T).AlignRequirement != AlignRequirementKind::None; in isAlignmentRequired()
1896 TypeInfo ASTContext::getTypeInfo(const Type *T) const { in getTypeInfo() function in ASTContext
1926 return getTypeInfo(cast<Class##Type>(T)->desugar().getTypePtr()); in getTypeInfoImpl()
1946 TypeInfo EltInfo = getTypeInfo(cast<ArrayType>(T)->getElementType()); in getTypeInfoImpl()
1961 TypeInfo EltInfo = getTypeInfo(VT->getElementType()); in getTypeInfoImpl()
1994 TypeInfo ElementInfo = getTypeInfo(MT->getElementType()); in getTypeInfoImpl()
2279 TypeInfo EltInfo = getTypeInfo(cast<ComplexType>(T)->getElementType()); in getTypeInfoImpl()
2285 return getTypeInfo(cast<ObjCObjectType>(T)->getBaseType().getTypePtr()); in getTypeInfoImpl()
2288 return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr()); in getTypeInfoImpl()
[all …]
H A DAPValue.cpp55 APValue::LValueBase APValue::LValueBase::getTypeInfo(TypeInfoLValue LV, in getTypeInfo() function in APValue::LValueBase
H A DExpr.cpp318 if (T->isIntegralOrEnumerationType() && Context.getTypeInfo(T).Width <= 64) in getStorageKind()
993 assert(V.getBitWidth() == C.getTypeInfo(type).Width && in FixedPointLiteral()
H A DItaniumMangle.cpp3988 unsigned VecSizeInBits = getASTContext().getTypeInfo(T).Width; in mangleAArch64FixedSveVectorType()
4059 unsigned VecSizeInBits = getASTContext().getTypeInfo(T).Width; in mangleRISCVFixedRVVVectorType()
H A DRecordLayoutBuilder.cpp1547 TypeInfo FieldInfo = Context.getTypeInfo(D->getType()); in LayoutBitField()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h2377 TypeInfo getTypeInfo(const Type *T) const;
2378 TypeInfo getTypeInfo(QualType T) const { return getTypeInfo(T.getTypePtr()); } in getTypeInfo() function
2384 uint64_t getTypeSize(QualType T) const { return getTypeInfo(T).Width; } in getTypeSize()
2385 uint64_t getTypeSize(const Type *T) const { return getTypeInfo(T).Width; } in getTypeSize()
2415 unsigned getTypeAlign(QualType T) const { return getTypeInfo(T).Align; } in getTypeAlign()
2416 unsigned getTypeAlign(const Type *T) const { return getTypeInfo(T).Align; } in getTypeAlign()
H A DPropertiesBase.td539 base = APValue::LValueBase::getTypeInfo(
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DPPC.cpp309 else if (PointerSize < Context.getTypeInfo(VarD->getType()).Width / 8) in setTargetAttributes()
H A DX86.cpp758 TypeInfo TI = getContext().getTypeInfo(Ty); in classifyArgumentType()
3250 TypeInfo Info = getContext().getTypeInfo(Ty); in classify()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetPassConfig.cpp423 return PI ? PI->getTypeInfo() : nullptr; in getPassIDFromName()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp3181 TypeInfo LeftTI = Context.getTypeInfo(left); in matchTypes()
3182 TypeInfo RightTI = Context.getTypeInfo(right); in matchTypes()
3238 TypeInfo LeftTI = Context.getTypeInfo(lt); in tryMatchRecordTypes()
3239 TypeInfo RightTI = Context.getTypeInfo(rt); in tryMatchRecordTypes()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp6392 getASTContext().getTypeInfo(ivar_qual_type.getTypePtr()); in GetChildCompilerTypeAtIndex()
6423 getASTContext().getTypeInfo(ivar_qual_type.getTypePtr()); in GetChildCompilerTypeAtIndex()
8765 getASTContext().getTypeInfo(typedef_qual_type); in DumpTypeValue()

12