/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/ |
H A D | nsan_stats.cpp | 35 static uptr Key(CheckTypeT CheckType, u32 StackId) { in Key() argument 36 return static_cast<uptr>(CheckType) + in Key() 94 static const char *CheckTypeDisplay(CheckTypeT CheckType) { in CheckTypeDisplay() argument 95 switch (CheckType) { in CheckTypeDisplay()
|
H A D | nsan.cpp | 421 int32_t checkFT(const FT value, ShadowFT Shadow, CheckTypeT CheckType, in checkFT() argument 441 nsan_stats->AddCheck(CheckType, pc, bp, abs_err / largest); in checkFT() 485 switch (CheckType) { in checkFT() 535 nsan_stats->AddWarning(CheckType, pc, bp, abs_err / largest); in checkFT()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | DAGISelMatcherOpt.cpp | 148 Matcher *CheckType = MatcherPtr.release(); in ContractNodes() local 149 Matcher *CheckOpcode = CheckType->takeNext(); in ContractNodes() 154 CheckOpcode->setNext(CheckType); in ContractNodes() 155 CheckType->setNext(Tail); in ContractNodes() 399 FindNodeWithKind(OptionsToMatch[i], Matcher::CheckType)); in FactorNodes() 441 Matcher *M = FindNodeWithKind(OptionsToMatch[i], Matcher::CheckType); in FactorNodes()
|
H A D | DAGISelMatcherEmitter.cpp | 642 case Matcher::CheckType: in EmitMatcher() 1232 case Matcher::CheckType: in getOpcodeString()
|
/freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
H A D | Record.cpp | 1964 static void ProfileIsAOpInit(FoldingSetNodeID &ID, RecTy *CheckType, in ProfileIsAOpInit() argument 1966 ID.AddPointer(CheckType); in ProfileIsAOpInit() 1970 IsAOpInit *IsAOpInit::get(RecTy *CheckType, Init *Expr) { in get() argument 1973 ProfileIsAOpInit(ID, CheckType, Expr); in get() 1980 IsAOpInit *I = new (RK.Allocator) IsAOpInit(CheckType, Expr); in get() 1986 ProfileIsAOpInit(ID, CheckType, Expr); in Profile() 1992 if (TI->getType()->typeIsConvertibleTo(CheckType)) in Fold() 1995 if (isa<RecordRecTy>(CheckType)) { in Fold() 1999 if (!CheckType->typeIsConvertibleTo(TI->getType()) || isa<DefInit>(Expr)) in Fold() 2012 return get(CheckType, NewExpr)->Fold(); in resolveReferences() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/ |
H A D | Record.h | 1172 RecTy *CheckType; 1175 IsAOpInit(RecTy *CheckType, Init *Expr) in IsAOpInit() argument 1176 : TypedInit(IK_IsAOpInit, IntRecTy::get(CheckType->getRecordKeeper())), in IsAOpInit() 1177 CheckType(CheckType), Expr(Expr) {} in IsAOpInit() 1185 static IsAOpInit *get(RecTy *CheckType, Init *Expr); 1206 RecTy *CheckType; 1209 ExistsOpInit(RecTy *CheckType, Init *Expr) in ExistsOpInit() argument 1210 : TypedInit(IK_ExistsOpInit, IntRecTy::get(CheckType->getRecordKeeper())), in ExistsOpInit() 1211 CheckType(CheckType), Expr(Expr) {} in ExistsOpInit() 1219 static ExistsOpInit *get(RecTy *CheckType, Init *Expr);
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | LoopAccessAnalysis.h | 823 bool CheckType = true); 842 ScalarEvolution &SE, bool CheckType = true);
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | DAGISelMatcher.h | 72 CheckType, // Fail if not correct type. enumerator 139 case CheckType: in isSimplePredicateNode() 525 : Matcher(CheckType), Type(type), ResNo(resno) {} in CheckTypeMatcher() 530 static bool classof(const Matcher *N) { return N->getKind() == CheckType; } in classof()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | MIPatternMatch.h | 715 struct CheckType { 717 CheckType(const LLT Ty) : Ty(Ty) {} 724 inline CheckType m_SpecificType(LLT Ty) { return Ty; }
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | Sema.cpp | 2053 auto CheckType = [&](QualType Ty, bool IsRetTy = false) { in checkTypeSupport() local 2118 CheckType(Ty); in checkTypeSupport() 2121 CheckType(ParamTy); in checkTypeSupport() 2122 CheckType(FPTy->getReturnType(), /*IsRetTy=*/true); in checkTypeSupport() 2125 CheckType(FNPTy->getReturnType(), /*IsRetTy=*/true); in checkTypeSupport()
|
H A D | SemaDeclCXX.cpp | 5958 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel); 6049 void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL, in CheckType() function in __anon42c808801411::AbstractUsageInfo 6068 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractNone); in CheckAbstractClassUsage() 6079 Info.CheckType(VD, VD->getTypeSourceInfo()->getTypeLoc(), in CheckAbstractClassUsage() 6104 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType); in CheckAbstractClassUsage()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | LoopAccessAnalysis.cpp | 1561 bool CheckType) { in getPointersDiff() argument 1569 if (CheckType && ElemTyA != ElemTyB) in getPointersDiff() 1661 ScalarEvolution &SE, bool CheckType) { in isConsecutiveAccess() argument 1670 /*StrictCheck=*/true, CheckType); in isConsecutiveAccess()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGISel.cpp | 2866 LLVM_ATTRIBUTE_ALWAYS_INLINE static bool CheckType(MVT::SimpleValueType VT, in CheckType() function 2882 return ::CheckType(VT, N.getOperand(ChildNo), TLI, DL); in CheckChildType() 3037 Result = !::CheckType(VT, N, SDISel.TLI, SDISel.CurDAG->getDataLayout()); in IsPredicateKnownToFail() 3042 Result = !::CheckType(static_cast<MVT::SimpleValueType>(Table[Index++]), in IsPredicateKnownToFail() 3589 if (!::CheckType(VT, N, TLI, CurDAG->getDataLayout())) in SelectCodeCommon() 3595 if (!::CheckType( in SelectCodeCommon()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | NumericalStabilitySanitizer.cpp | 406 enum CheckType { enum in __anon1c7024df0111::CheckLoc 414 explicit CheckLoc(CheckType CheckTy) : CheckTy(CheckTy) {} in CheckLoc() 417 const CheckType CheckTy;
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ComplexDeinterleavingPass.cpp | 1728 auto CheckType = [&](ShuffleVectorInst *Shuffle) { in identifyDeinterleave() local 1742 if (!CheckType(Shuffle)) in identifyDeinterleave()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/ |
H A D | GlobalISelMatchTable.cpp | 1460 StringRef CheckType = in emitPredicateOpcodes() local 1462 Table << MatchTable::Opcode(CheckType) << MatchTable::Comment("MI") in emitPredicateOpcodes()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ASTImporter.cpp | 3535 bool CheckType(QualType T) { in CheckType() function in __anone38d232b0411::IsTypeDeclaredInsideVisitor 3561 return CheckType(T->getPointeeType()); in VisitPointerType() 3565 return CheckType(T->getPointeeTypeAsWritten()); in VisitReferenceType() 3603 return CheckType(T->getElementType()); in VisitConstantArrayType() 3629 return CheckType(Arg.getIntegralType()); in checkTemplateArgument() 3631 return CheckType(Arg.getAsType()); in checkTemplateArgument() 3639 return CheckType(Arg.getNullPtrType()); in checkTemplateArgument() 3641 return CheckType(Arg.getStructuralValueType()); in checkTemplateArgument() 3685 return Visitor.CheckType(RetT); in hasReturnTypeDeclaredInside()
|