| /llvm-project-15.0.7/llvm/utils/TableGen/ |
| H A D | DAGISelMatcherOpt.cpp | 152 Matcher *CheckType = MatcherPtr.release(); in ContractNodes() local 153 Matcher *CheckOpcode = CheckType->takeNext(); in ContractNodes() 158 CheckOpcode->setNext(CheckType); in ContractNodes() 159 CheckType->setNext(Tail); in ContractNodes() 370 Matcher::CheckType)); in FactorNodes() 412 Matcher* M = FindNodeWithKind(NewOptionsToMatch[i], Matcher::CheckType); in FactorNodes()
|
| H A D | DAGISelMatcher.h | 64 CheckType, // Fail if not correct type. enumerator 128 case CheckType: in isSimplePredicateNode() 502 : Matcher(CheckType), Type(type), ResNo(resno) {} in CheckTypeMatcher() 508 return N->getKind() == CheckType; in classof()
|
| H A D | DAGISelMatcherEmitter.cpp | 572 case Matcher::CheckType: in EmitMatcher() 1045 case Matcher::CheckType: return "OPC_CheckType"; break; in getOpcodeString()
|
| H A D | GlobalISelEmitter.cpp | 1846 StringRef CheckType = Insts.size() == 1 ? in emitPredicateOpcodes() local 1848 Table << MatchTable::Opcode(CheckType) << MatchTable::Comment("MI") in emitPredicateOpcodes()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/ |
| H A D | ClangTidyModule.h | 59 template <typename CheckType> void registerCheck(llvm::StringRef CheckName) { in registerCheck() 62 return std::make_unique<CheckType>(Name, Context); in registerCheck()
|
| /llvm-project-15.0.7/llvm/lib/TableGen/ |
| H A D | Record.cpp | 1604 ID.AddPointer(CheckType); in ProfileIsAOpInit() 1608 IsAOpInit *IsAOpInit::get(RecTy *CheckType, Init *Expr) { in get() argument 1611 ProfileIsAOpInit(ID, CheckType, Expr); in get() 1624 ProfileIsAOpInit(ID, CheckType, Expr); in Profile() 1630 if (TI->getType()->typeIsConvertibleTo(CheckType)) in Fold() 1633 if (isa<RecordRecTy>(CheckType)) { in Fold() 1650 return get(CheckType, NewExpr)->Fold(); in resolveReferences() 1659 return (Twine("!isa<") + CheckType->getAsString() + ">(" + in getAsString() 1666 ID.AddPointer(CheckType); in ProfileExistsOpInit() 1672 ProfileExistsOpInit(ID, CheckType, Expr); in get() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 1069 RecTy *CheckType; 1072 IsAOpInit(RecTy *CheckType, Init *Expr) in IsAOpInit() argument 1073 : TypedInit(IK_IsAOpInit, IntRecTy::get(CheckType->getRecordKeeper())), in IsAOpInit() 1074 CheckType(CheckType), Expr(Expr) {} in IsAOpInit() 1082 static IsAOpInit *get(RecTy *CheckType, Init *Expr); 1103 RecTy *CheckType; 1106 ExistsOpInit(RecTy *CheckType, Init *Expr) in ExistsOpInit() argument 1107 : TypedInit(IK_ExistsOpInit, IntRecTy::get(CheckType->getRecordKeeper())), in ExistsOpInit() 1108 CheckType(CheckType), Expr(Expr) {} in ExistsOpInit() 1116 static ExistsOpInit *get(RecTy *CheckType, Init *Expr);
|
| /llvm-project-15.0.7/llvm/include/llvm/Analysis/ |
| H A D | LoopAccessAnalysis.h | 745 bool CheckType = true); 764 ScalarEvolution &SE, bool CheckType = true);
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | MIPatternMatch.h | 637 struct CheckType { 639 CheckType(const LLT Ty) : Ty(Ty) {} 646 inline CheckType m_SpecificType(LLT Ty) { return Ty; }
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | Sema.cpp | 1969 auto CheckType = [&](QualType Ty, bool IsRetTy = false) { in checkTypeSupport() local 2013 CheckType(Ty); in checkTypeSupport() 2016 CheckType(ParamTy); in checkTypeSupport() 2017 CheckType(FPTy->getReturnType(), /*IsRetTy=*/true); in checkTypeSupport() 2020 CheckType(FNPTy->getReturnType(), /*IsRetTy=*/true); in checkTypeSupport()
|
| H A D | SemaDeclCXX.cpp | 5862 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel); 5953 void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL, in CheckType() function in __anonc19065b01411::AbstractUsageInfo 5972 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractNone); in CheckAbstractClassUsage() 5983 Info.CheckType(VD, VD->getTypeSourceInfo()->getTypeLoc(), in CheckAbstractClassUsage() 6008 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType); in CheckAbstractClassUsage()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGISel.cpp | 2537 CheckType(const unsigned char *MatcherTable, unsigned &MatcherIndex, SDValue N, in CheckType() function 2552 return ::CheckType(MatcherTable, MatcherIndex, N.getOperand(ChildNo), TLI, in CheckChildType() 2675 Result = !::CheckType(Table, Index, N, SDISel.TLI, in IsPredicateKnownToFail() 2680 Result = !::CheckType(Table, Index, N.getValue(Res), SDISel.TLI, in IsPredicateKnownToFail() 3115 if (!::CheckType(MatcherTable, MatcherIndex, N, TLI, in SelectCodeCommon() 3122 if (!::CheckType(MatcherTable, MatcherIndex, N.getValue(Res), TLI, in SelectCodeCommon()
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | LoopAccessAnalysis.cpp | 1430 bool CheckType) { in getPointersDiff() argument 1442 if (CheckType && ElemTyA != ElemTyB) in getPointersDiff() 1539 ScalarEvolution &SE, bool CheckType) { in isConsecutiveAccess() argument 1547 /*StrictCheck=*/true, CheckType); in isConsecutiveAccess()
|
| /llvm-project-15.0.7/mlir/include/mlir/IR/ |
| H A D | OpBase.td | 91 // if you have a predicate in the form `CPred<"CheckType($_self)">, the argument 92 // type of the function `CheckType` should be `mlir::Type`.
|