| /llvm-project-15.0.7/clang/test/SemaTemplate/ |
| H A D | template-id-printing.cpp | 56 namespace ULE { namespace 64 ULE::foo<T>; in test() 66 ULE::template foo<T>; in test()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/misc/ |
| H A D | UnusedUsingDeclsCheck.cpp | 148 if (const auto *ULE = Result.Nodes.getNodeAs<UnresolvedLookupExpr>("used")) { in check() local 149 for (const NamedDecl *ND : ULE->decls()) { in check()
|
| /llvm-project-15.0.7/llvm/test/Analysis/ScalarEvolution/ |
| H A D | finite-trip-count.ll | 51 define void @ULE(i32 %len) willreturn { 52 ; CHECK-LABEL: 'ULE' 53 ; CHECK-NEXT: Determining loop execution counts for: @ULE
|
| /llvm-project-15.0.7/llvm/test/CodeGen/SPIRV/instructions/ |
| H A D | ptrcmp.ll | 9 ; CHECK-DAG: OpName [[ULE:%.*]] "test_ule" 69 ; CHECK: [[ULE]] = OpFunction
|
| H A D | icmp.ll | 9 ; CHECK-DAG: OpName [[ULE:%.*]] "test_ule" 75 ; CHECK: [[ULE]] = OpFunction
|
| H A D | fcmp.ll | 11 ; CHECK-DAG: OpName [[ULE:%.*]] "test_ule" 107 ; CHECK: [[ULE]] = OpFunction
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/Arithmetic/IR/ |
| H A D | ArithmeticBase.td | 47 I64EnumAttrCase<"ULE", 12, "ule">,
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaOverload.cpp | 12827 if (ULE->requiresADL()) { in AddOverloadedCallCandidates() 12841 if (ULE->hasExplicitTemplateArgs()) { in AddOverloadedCallCandidates() 12852 if (ULE->requiresADL()) in AddOverloadedCallCandidates() 12853 AddArgumentDependentLookupCandidates(ULE->getName(), ULE->getExprLoc(), in AddOverloadedCallCandidates() 13047 SS.Adopt(ULE->getQualifierLoc()); in BuildRecoveryCallExpr() 13052 if (ULE->hasExplicitTemplateArgs()) { in BuildRecoveryCallExpr() 13057 LookupResult R(SemaRef, ULE->getName(), ULE->getNameLoc(), in BuildRecoveryCallExpr() 13134 if (ULE->requiresADL()) { in buildOverloadedCallSet() 13141 if (ULE->decls_begin() != ULE->decls_end() && in buildOverloadedCallSet() 13142 ULE->decls_begin() + 1 == ULE->decls_end() && in buildOverloadedCallSet() [all …]
|
| H A D | SemaTemplateVariadic.cpp | 1228 UnresolvedLookupExpr *ULE = nullptr; in ActOnCXXFoldExpr() local 1240 ULE = cast<UnresolvedLookupExpr>(Callee.get()); in ActOnCXXFoldExpr() 1244 return BuildCXXFoldExpr(ULE, LParenLoc, LHS, Opc, EllipsisLoc, RHS, RParenLoc, in ActOnCXXFoldExpr()
|
| H A D | Sema.cpp | 2560 if (const auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in IsCPUDispatchCPUSpecificMultiVersion() local 2561 if (ULE->getNumDecls() == 0) in IsCPUDispatchCPUSpecificMultiVersion() 2564 const NamedDecl *ND = *ULE->decls_begin(); in IsCPUDispatchCPUSpecificMultiVersion()
|
| H A D | TreeTransform.h | 9875 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPReductionClause() local 9877 for (auto *D : ULE->decls()) { in TransformOMPReductionClause() 9886 NameInfo, /*ADL=*/true, ULE->isOverloaded(), in TransformOMPReductionClause() 9923 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPTaskReductionClause() local 9925 for (auto *D : ULE->decls()) { in TransformOMPTaskReductionClause() 9968 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPInReductionClause() local 9970 for (auto *D : ULE->decls()) { in TransformOMPInReductionClause() 10148 auto *ULE = cast<UnresolvedLookupExpr>(E); in transformOMPMappableExprListClause() local 10150 for (auto *D : ULE->decls()) { in transformOMPMappableExprListClause() 14917 Functions.append(ULE->decls_begin(), ULE->decls_end()); in RebuildCXXOperatorCallExpr() [all …]
|
| H A D | SemaExpr.cpp | 3245 UnresolvedLookupExpr *ULE in BuildDeclarationNameExpr() local 3252 return ULE; in BuildDeclarationNameExpr() 6617 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(Fn)) { in ActOnCallExpr() local 6618 if (ULE->hasExplicitTemplateArgs() && in ActOnCallExpr() 6619 ULE->decls_begin() == ULE->decls_end()) { in ActOnCallExpr() 6623 << ULE->getName(); in ActOnCallExpr() 6720 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(ovl)) in BuildCallExpr() local 6722 Scope, Fn, ULE, LParenLoc, ArgExprs, RParenLoc, ExecConfig, in BuildCallExpr() 15776 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in isQualifiedMemberAccess() local 15777 if (!ULE->getQualifier()) in isQualifiedMemberAccess() [all …]
|
| H A D | SemaDeclAttr.cpp | 3598 } else if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in handleCleanupAttr() local 3599 if (ULE->hasExplicitTemplateArgs()) in handleCleanupAttr() 3601 FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true); in handleCleanupAttr() 3602 NI = ULE->getNameInfo(); in handleCleanupAttr() 3606 if (ULE->getType() == S.Context.OverloadTy) in handleCleanupAttr() 3607 S.NoteAllOverloadCandidates(ULE); in handleCleanupAttr()
|
| H A D | SemaDecl.cpp | 1275 auto *ULE = cast<UnresolvedLookupExpr>(E); in ActOnNameClassifiedAsOverloadSet() local 1276 if ((*ULE->decls_begin())->isCXXClassMember()) { in ActOnNameClassifiedAsOverloadSet() 1278 SS.Adopt(ULE->getQualifierLoc()); in ActOnNameClassifiedAsOverloadSet() 1281 LookupResult Result(*this, ULE->getName(), ULE->getNameLoc(), in ActOnNameClassifiedAsOverloadSet() 1283 Result.setNamingClass(ULE->getNamingClass()); in ActOnNameClassifiedAsOverloadSet() 1284 for (auto I = ULE->decls_begin(), E = ULE->decls_end(); I != E; ++I) in ActOnNameClassifiedAsOverloadSet() 1293 return ULE; in ActOnNameClassifiedAsOverloadSet()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | JSONNodeDumper.cpp | 1315 const UnresolvedLookupExpr *ULE) { in VisitUnresolvedLookupExpr() argument 1316 JOS.attribute("usesADL", ULE->requiresADL()); in VisitUnresolvedLookupExpr() 1317 JOS.attribute("name", ULE->getName().getAsString()); in VisitUnresolvedLookupExpr() 1319 JOS.attributeArray("lookups", [this, ULE] { in VisitUnresolvedLookupExpr() 1320 for (const NamedDecl *D : ULE->decls()) in VisitUnresolvedLookupExpr()
|
| H A D | ItaniumMangle.cpp | 4530 const UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(E); in mangleExpression() local 4531 mangleUnresolvedName(ULE->getQualifier(), ULE->getName(), in mangleExpression() 4532 ULE->getTemplateArgs(), ULE->getNumTemplateArgs(), in mangleExpression()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | ExprCXX.h | 3982 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingResults() local 3983 return ULE->getTrailingObjects<DeclAccessPair>(); in getTrailingResults() 3991 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingASTTemplateKWAndArgsInfo() local 3992 return ULE->getTrailingObjects<ASTTemplateKWAndArgsInfo>(); in getTrailingASTTemplateKWAndArgsInfo() 3998 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingTemplateArgumentLoc() local 3999 return ULE->getTrailingObjects<TemplateArgumentLoc>(); in getTrailingTemplateArgumentLoc() 4005 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getNamingClass() local 4006 return ULE->getNamingClass(); in getNamingClass()
|
| H A D | JSONNodeDumper.h | 283 void VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *ULE);
|
| /llvm-project-15.0.7/mlir/lib/Dialect/Arithmetic/IR/ |
| H A D | ArithmeticOps.cpp | 1415 case arith::CmpFPredicate::ULE: in applyCmpPredicate() 1467 case CmpFPredicate::ULE: in convertToIntegerPredicate()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/ |
| H A D | neon-compare-instructions.ll | 3371 ; UGE = ULE with swapped operands, ULE implemented as !OGT. 3391 ; UGE = ULE with swapped operands, ULE implemented as !OGT. 3411 ; UGE = ULE with swapped operands, ULE implemented as !OGT. 3490 ; ULE implemented as !OGT. 3510 ; ULE implemented as !OGT. 3530 ; ULE implemented as !OGT. 4305 ; ULE with zero = !OGT 4325 ; ULE with zero = !OGT 4345 ; ULE with zero = !OGT 5874 ; ULE with zero = !OGT
|
| H A D | sve-fixed-length-int-compares.ll | 607 ; ICMP ULE
|
| H A D | sve-fixed-length-fp-compares.ll | 573 ; FCMP ULE
|
| /llvm-project-15.0.7/mlir/lib/Conversion/ArithmeticToSPIRV/ |
| H A D | ArithmeticToSPIRV.cpp | 779 DISPATCH(arith::CmpFPredicate::ULE, spirv::FUnordLessThanEqualOp); in matchAndRewrite()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/CSKY/ |
| H A D | br.ll | 492 ;ULE 1849 ;ULE 3553 ;ULE 4786 ;ULE 5988 ;ULE
|
| /llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/ |
| H A D | minmax_reduction.ll | 320 ; ULE -> UGT
|