Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/opt/
H A DPassPrinters.cpp58 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage()
86 getAnalysisID<Pass>(PassToPrint->getTypeInfo()) in runOnSCC()
95 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage()
120 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out, &M); in runOnModule()
127 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage()
152 getAnalysisID<Pass>(PassToPrint->getTypeInfo()) in runOnLoop()
160 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage()
187 getAnalysisID<Pass>(PassToPrint->getTypeInfo()) in runOnRegion()
195 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage()
221 getAnalysisID<Pass>(PassToPrint->getTypeInfo()) in runOnBasicBlock()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp134 return getTypeInfo(Context.ShortTy); in getTypeInfoHelper()
136 return getTypeInfo(Context.IntTy); in getTypeInfoHelper()
138 return getTypeInfo(Context.LongTy); in getTypeInfoHelper()
140 return getTypeInfo(Context.LongLongTy); in getTypeInfoHelper()
142 return getTypeInfo(Context.Int128Ty); in getTypeInfoHelper()
166 return getTypeInfo(cast<ArrayType>(Ty)->getElementType()); in getTypeInfoHelper()
188 llvm::MDNode *CodeGenTBAA::getTypeInfo(QualType QTy) { in getTypeInfo() function in CodeGenTBAA
228 return TBAAAccessInfo(getTypeInfo(AccessType), Size); in getAccessInfo()
274 llvm::MDNode *TBAAType = MayAlias ? getChar() : getTypeInfo(QTy); in CollectFields()
303 getBaseTypeInfo(FieldQTy) : getTypeInfo(FieldQTy); in getBaseTypeInfoHelper()
H A DCodeGenTBAA.h178 llvm::MDNode *getTypeInfo(QualType QTy);
H A DCGAtomic.cpp60 TypeInfo ValueTI = C.getTypeInfo(ValueTy); in AtomicInfo()
64 TypeInfo AtomicTI = C.getTypeInfo(AtomicTy); in AtomicInfo()
H A DCGDebugInfo.cpp53 auto TI = Ctx.getTypeInfo(Ty); in getTypeAlignIfRequired()
1253 TypeInfo TI = CGM.getContext().getTypeInfo(type); in createFieldType()
4074 TypeInfo PtrInfo = C.getTypeInfo(C.VoidPtrTy); in EmitDeclareOfBlockLiteralArgVariable()
H A DCodeGenModule.cpp626 return TBAA->getTypeInfo(QTy); in getTBAATypeInfo()
H A DTargetInfo.cpp3912 TypeInfo Info = getContext().getTypeInfo(Ty); in classify()
H A DCGBuiltin.cpp439 unsigned Width = Type->isBooleanType() ? 1 : context.getTypeInfo(Type).Width; in getIntegerWidthAndSignedness()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCastToStructChecker.cpp92 unsigned ToWidth = Ctx.getTypeInfo(ToPointeeTy).Width; in VisitCastExpr()
93 unsigned OrigWidth = Ctx.getTypeInfo(OrigPointeeTy).Width; in VisitCastExpr()
/freebsd-12.1/contrib/llvm/lib/IR/
H A DPass.cpp272 CFGOnlyList.push_back(P->getTypeInfo()); in passEnumerate()
295 if (PI) Preserved.push_back(PI->getTypeInfo()); in addPreserved()
H A DPassRegistry.cpp61 PassInfoMap.insert(std::make_pair(PI.getTypeInfo(), &PI)).second; in registerPass()
H A DLegacyPassManager.cpp851 ImmutablePassMap[ImmPI->getTypeInfo()] = P; in addImmutablePass()
930 AvailableAnalysis[II[i]->getTypeInfo()] = P; in recordAvailableAnalysis()
1059 AvailableAnalysis.find(II[i]->getTypeInfo()); in freePass()
/freebsd-12.1/contrib/llvm/include/llvm/
H A DPassInfo.h72 const void *getTypeInfo() const { return PassID; } in getTypeInfo() function
H A DPassSupport.h129 : RegisterAGBase(RPB.getPassName(), &Interface::ID, RPB.getTypeInfo(), in RegisterAnalysisGroup()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DASTContext.h2063 TypeInfo getTypeInfo(const Type *T) const;
2064 TypeInfo getTypeInfo(QualType T) const { return getTypeInfo(T.getTypePtr()); } in getTypeInfo() function
2070 uint64_t getTypeSize(QualType T) const { return getTypeInfo(T).Width; } in getTypeSize()
2071 uint64_t getTypeSize(const Type *T) const { return getTypeInfo(T).Width; } in getTypeSize()
2091 unsigned getTypeAlign(QualType T) const { return getTypeInfo(T).Align; } in getTypeAlign()
2092 unsigned getTypeAlign(const Type *T) const { return getTypeInfo(T).Align; } in getTypeAlign()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DTargetPassConfig.cpp345 return PI ? PI->getTypeInfo() : nullptr; in getPassIDFromName()
871 const char *TID = (const char *)(TPI->getTypeInfo()); in addMachinePasses()
872 const char *IID = (const char *)(IPI->getTypeInfo()); in addMachinePasses()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp1695 TypeInfo Info = getTypeInfo(T); in getTypeInfoInChars()
1706 return getTypeInfo(T).AlignIsRequired; in isAlignmentRequired()
1737 TypeInfo ASTContext::getTypeInfo(const Type *T) const { in getTypeInfo() function in ASTContext
1767 return getTypeInfo(cast<Class##Type>(T)->desugar().getTypePtr()); in getTypeInfoImpl()
1787 TypeInfo EltInfo = getTypeInfo(CAT->getElementType()); in getTypeInfoImpl()
1801 TypeInfo EltInfo = getTypeInfo(VT->getElementType()); in getTypeInfoImpl()
2046 return getTypeInfo(cast<SubstTemplateTypeParmType>(T)-> in getTypeInfoImpl()
2054 return getTypeInfo(A->getDeducedType().getTypePtr()); in getTypeInfoImpl()
2084 return getTypeInfo( in getTypeInfoImpl()
2089 TypeInfo Info = getTypeInfo(cast<AtomicType>(T)->getValueType()); in getTypeInfoImpl()
[all …]
H A DRecordLayoutBuilder.cpp1451 TypeInfo FieldInfo = Context.getTypeInfo(D->getType()); in LayoutBitField()
H A DExpr.cpp809 assert(V.getBitWidth() == C.getTypeInfo(type).Width && in FixedPointLiteral()
H A DExprConstant.cpp9905 Info.Ctx.getTypeInfo(E->getType()).Width); in VisitUnaryOperator()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp6784 getASTContext()->getTypeInfo(ivar_qual_type.getTypePtr()); in GetChildCompilerTypeAtIndex()
6815 getASTContext()->getTypeInfo(ivar_qual_type.getTypePtr()); in GetChildCompilerTypeAtIndex()
9155 getASTContext()->getTypeInfo(base_class_qual_type); in DumpValue()
9201 getASTContext()->getTypeInfo(field_type); in DumpValue()
9290 getASTContext()->getTypeInfo(element_qual_type); in DumpValue()
9359 getASTContext()->getTypeInfo(typedef_qual_type); in DumpValue()
9384 getASTContext()->getTypeInfo(elaborated_qual_type); in DumpValue()
9409 getASTContext()->getTypeInfo(elaborated_qual_type); in DumpValue()
9435 getASTContext()->getTypeInfo(desugar_qual_type); in DumpValue()
9489 getASTContext()->getTypeInfo(typedef_qual_type); in DumpTypeValue()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclObjC.cpp3135 TypeInfo LeftTI = Context.getTypeInfo(left); in matchTypes()
3136 TypeInfo RightTI = Context.getTypeInfo(right); in matchTypes()
3192 TypeInfo LeftTI = Context.getTypeInfo(lt); in tryMatchRecordTypes()
3193 TypeInfo RightTI = Context.getTypeInfo(rt); in tryMatchRecordTypes()
H A DSemaExpr.cpp3410 unsigned bit_width = Context.getTypeInfo(Ty).Width; in ActOnNumericConstant()