| /freebsd/sys/arm/conf/ |
| H A D | ARMADA38X | 20 options SCHED_ULE # ULE scheduler
|
| H A D | ZEDBOARD | 28 options SCHED_ULE # ULE scheduler
|
| H A D | TEGRA124 | 25 options SCHED_ULE # ULE scheduler
|
| H A D | GENERIC | 61 options SCHED_ULE # ULE scheduler
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOverload.cpp | 14254 void Sema::AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE, in AddOverloadedCallCandidates() argument 14277 if (ULE->requiresADL()) { in AddOverloadedCallCandidates() 14278 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(), in AddOverloadedCallCandidates() 14279 E = ULE->decls_end(); I != E; ++I) { in AddOverloadedCallCandidates() 14291 if (ULE->hasExplicitTemplateArgs()) { in AddOverloadedCallCandidates() 14292 ULE->copyTemplateArgumentsInto(TABuffer); in AddOverloadedCallCandidates() 14296 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(), in AddOverloadedCallCandidates() 14297 E = ULE->decls_end(); I != E; ++I) in AddOverloadedCallCandidates() 14302 if (ULE->requiresADL()) in AddOverloadedCallCandidates() 14303 AddArgumentDependentLookupCandidates(ULE->getName(), ULE->getExprLoc(), in AddOverloadedCallCandidates() [all …]
|
| H A D | SemaTemplateVariadic.cpp | 1432 UnresolvedLookupExpr *ULE = nullptr; in ActOnCXXFoldExpr() local 1444 ULE = cast<UnresolvedLookupExpr>(Callee.get()); in ActOnCXXFoldExpr() 1448 return BuildCXXFoldExpr(ULE, LParenLoc, LHS, Opc, EllipsisLoc, RHS, RParenLoc, in ActOnCXXFoldExpr()
|
| H A D | SemaDeclAttr.cpp | 1783 } else if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(DeallocE)) { in handleRestrictAttr() local 1784 DeallocFD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true); in handleRestrictAttr() 1785 DeallocNI = ULE->getNameInfo(); in handleRestrictAttr() 1789 if (ULE->getType() == S.Context.OverloadTy) in handleRestrictAttr() 1790 S.NoteAllOverloadCandidates(ULE); in handleRestrictAttr() 3672 } else if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in handleCleanupAttr() local 3673 if (ULE->hasExplicitTemplateArgs()) in handleCleanupAttr() 3675 FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true); in handleCleanupAttr() 3676 NI = ULE->getNameInfo(); in handleCleanupAttr() 3680 if (ULE->getType() == S.Context.OverloadTy) in handleCleanupAttr() [all …]
|
| H A D | SemaExpr.cpp | 3242 UnresolvedLookupExpr *ULE = UnresolvedLookupExpr::Create( in BuildDeclarationNameExpr() local 3247 return ULE; in BuildDeclarationNameExpr() 6522 if (const auto *ULE = dyn_cast<UnresolvedLookupExpr>(Fn); in ActOnCallExpr() local 6523 ULE && ULE->hasExplicitTemplateArgs() && in ActOnCallExpr() 6524 ULE->decls_begin() == ULE->decls_end()) { in ActOnCallExpr() 6526 << ULE->getName(); in ActOnCallExpr() 6658 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(ovl)) in BuildCallExpr() local 6660 Scope, Fn, ULE, LParenLoc, ArgExprs, RParenLoc, ExecConfig, in BuildCallExpr() 15902 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in isQualifiedMemberAccess() local 15903 if (!ULE->getQualifier()) in isQualifiedMemberAccess() [all …]
|
| H A D | Sema.cpp | 2810 if (const auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in IsCPUDispatchCPUSpecificMultiVersion() local 2811 if (ULE->getNumDecls() == 0) in IsCPUDispatchCPUSpecificMultiVersion() 2814 const NamedDecl *ND = *ULE->decls_begin(); in IsCPUDispatchCPUSpecificMultiVersion()
|
| H A D | TreeTransform.h | 4050 ExprResult RebuildCXXFoldExpr(UnresolvedLookupExpr *ULE, in RebuildCXXFoldExpr() argument 4056 return getSema().BuildCXXFoldExpr(ULE, LParenLoc, LHS, Operator, in RebuildCXXFoldExpr() 11042 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPReductionClause() local 11044 for (auto *D : ULE->decls()) { in TransformOMPReductionClause() 11089 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPTaskReductionClause() local 11091 for (auto *D : ULE->decls()) { in TransformOMPTaskReductionClause() 11135 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPInReductionClause() local 11137 for (auto *D : ULE->decls()) { in TransformOMPInReductionClause() 11317 auto *ULE = cast<UnresolvedLookupExpr>(E); in transformOMPMappableExprListClause() local 11319 for (auto *D : ULE->decls()) { in transformOMPMappableExprListClause() [all …]
|
| /freebsd/sys/arm64/conf/ |
| H A D | std.arm64 | 7 options SCHED_ULE # ULE scheduler
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | JSONNodeDumper.cpp | 1468 const UnresolvedLookupExpr *ULE) { in VisitUnresolvedLookupExpr() argument 1469 JOS.attribute("usesADL", ULE->requiresADL()); in VisitUnresolvedLookupExpr() 1470 JOS.attribute("name", ULE->getName().getAsString()); in VisitUnresolvedLookupExpr() 1472 JOS.attributeArray("lookups", [this, ULE] { in VisitUnresolvedLookupExpr() 1473 for (const NamedDecl *D : ULE->decls()) in VisitUnresolvedLookupExpr()
|
| H A D | ItaniumMangle.cpp | 5300 const UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(E); in mangleExpression() local 5301 mangleUnresolvedName(ULE->getQualifier(), ULE->getName(), in mangleExpression() 5302 ULE->getTemplateArgs(), ULE->getNumTemplateArgs(), in mangleExpression()
|
| /freebsd/sys/amd64/conf/ |
| H A D | MINIMAL | 36 options SCHED_ULE # ULE scheduler
|
| H A D | FIRECRACKER | 25 options SCHED_ULE # ULE scheduler
|
| H A D | GENERIC | 26 options SCHED_ULE # ULE scheduler
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ExprCXX.h | 4215 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingResults() local 4216 return ULE->getTrailingObjects<DeclAccessPair>(); in getTrailingResults() 4224 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingASTTemplateKWAndArgsInfo() local 4225 return ULE->getTrailingObjects<ASTTemplateKWAndArgsInfo>(); in getTrailingASTTemplateKWAndArgsInfo() 4231 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingTemplateArgumentLoc() local 4232 return ULE->getTrailingObjects<TemplateArgumentLoc>(); in getTrailingTemplateArgumentLoc() 4238 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getNamingClass() local 4239 return ULE->getNamingClass(); in getNamingClass()
|
| H A D | JSONNodeDumper.h | 304 void VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *ULE);
|
| /freebsd/sys/i386/conf/ |
| H A D | MINIMAL | 44 options SCHED_ULE # ULE scheduler
|
| H A D | GENERIC | 30 options SCHED_ULE # ULE scheduler
|
| /freebsd/sys/riscv/conf/ |
| H A D | GENERIC | 26 options SCHED_ULE # ULE scheduler
|
| /freebsd/sys/powerpc/conf/ |
| H A D | GENERIC | 35 options SCHED_ULE # ULE scheduler
|
| H A D | GENERIC64LE | 36 options SCHED_ULE # ULE scheduler
|
| H A D | GENERIC64 | 37 options SCHED_ULE # ULE scheduler
|
| /freebsd/ |
| H A D | RELNOTES | 108 It is now possible to compile both the 4BSD and ULE schedulers into the
|