/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenACC.cpp | 355 SemaOpenACC::OpenACCParsedClause &Clause) { in checkAlreadyHasClauseOfKind() argument 357 return C->getClauseKind() == Clause.getClauseKind(); in checkAlreadyHasClauseOfKind() 360 S.Diag(Clause.getBeginLoc(), diag::err_acc_duplicate_clause_disallowed) in checkAlreadyHasClauseOfKind() 361 << Clause.getDirectiveKind() << Clause.getClauseKind(); in checkAlreadyHasClauseOfKind() 448 OpenACCClause *Visit(SemaOpenACC::OpenACCParsedClause &Clause) { in Visit() argument 449 switch (Clause.getClauseKind()) { in Visit() 464 SemaRef.Diag(Clause.getBeginLoc(), diag::err_acc_clause_cannot_combine) in Visit() 465 << Clause.getClauseKind() << (*Itr)->getClauseKind(); in Visit() 473 return Visit##CLAUSE_NAME##Clause(Clause); in Visit() 477 SemaRef.Diag(Clause.getBeginLoc(), diag::warn_acc_deprecated_alias_name) \ in Visit() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | OpenMPClause.cpp | 349 auto *Clause = in Create() local 352 Clause->setLoopNumIterations(I, nullptr); in Create() 353 Clause->setLoopCounter(I, nullptr); in Create() 355 return Clause; in Create() 361 auto *Clause = new (Mem) OMPOrderedClause(NumLoops); in CreateEmpty() local 363 Clause->setLoopNumIterations(I, nullptr); in CreateEmpty() 364 Clause->setLoopCounter(I, nullptr); in CreateEmpty() 366 return Clause; in CreateEmpty() 407 auto *Clause = in Create() local 409 Clause->setLParenLoc(LParenLoc); in Create() [all …]
|
H A D | StmtProfile.cpp | 2483 for (const OpenACCClause *Clause : Clauses) { in VisitOpenACCClauseList() local 2486 Visit(Clause); in VisitOpenACCClauseList() 2491 void Visit##CLAUSE_NAME##Clause(const OpenACC##CLAUSE_NAME##Clause &Clause); 2498 const OpenACCDefaultClause &Clause) {} in VisitDefaultClause() argument 2500 void OpenACCClauseProfiler::VisitIfClause(const OpenACCIfClause &Clause) { in VisitIfClause() argument 2501 assert(Clause.hasConditionExpr() && in VisitIfClause() 2503 Profiler.VisitStmt(Clause.getConditionExpr()); in VisitIfClause() 2506 void OpenACCClauseProfiler::VisitCopyClause(const OpenACCCopyClause &Clause) { in VisitCopyClause() argument 2507 for (auto *E : Clause.getVarList()) in VisitCopyClause() 2511 const OpenACCCopyInClause &Clause) { in VisitCopyInClause() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenACC/ |
H A D | ACC.td | 35 def ACCC_Async : Clause<"async"> { 41 def ACCC_Auto : Clause<"auto"> {} 44 def ACCC_Attach : Clause<"attach"> { 49 def ACCC_Bind : Clause<"bind"> { 54 def ACCC_Capture : Clause<"capture"> { 58 def ACCC_Collapse : Clause<"collapse"> { 63 def ACCC_Copy : Clause<"copy"> { 69 def ACCC_Copyin : Clause<"copyin"> { 75 def ACCC_Copyout : Clause<"copyout"> { 81 def ACCC_Create : Clause<"create"> { [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | DirectiveEmitter.cpp | 87 Clause C{R}; in GenerateEnumClauseVal() 349 Clause C{R}; in GenerateGetKindClauseVal() 880 Clause Clause{C}; in GenerateFlangClauseParserClass() local 881 if (!Clause.getFlangClass().empty()) { in GenerateFlangClauseParserClass() 882 OS << "WRAPPER_CLASS(" << Clause.getFormattedParserClassName() << ", "; in GenerateFlangClauseParserClass() 883 if (Clause.isValueOptional() && Clause.isValueList()) { in GenerateFlangClauseParserClass() 884 OS << "std::optional<std::list<" << Clause.getFlangClass() << ">>"; in GenerateFlangClauseParserClass() 885 } else if (Clause.isValueOptional()) { in GenerateFlangClauseParserClass() 886 OS << "std::optional<" << Clause.getFlangClass() << ">"; in GenerateFlangClauseParserClass() 887 } else if (Clause.isValueList()) { in GenerateFlangClauseParserClass() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | ConstructCompositionT.h | 57 ClauseTy makeClause(llvm::omp::Clause clauseId, S &&specific) { in makeClause() 64 Presence checkPresence(llvm::omp::Clause clauseId); 79 std::unordered_map<llvm::omp::Clause, llvm::BitVector> clausePresence; 81 std::unordered_map<llvm::omp::Clause, ClauseSet> clauseSets; 136 case llvm::omp::Clause::OMPC_if: in ConstructCompositionT() 137 case llvm::omp::Clause::OMPC_reduction: in ConstructCompositionT() 138 case llvm::omp::Clause::OMPC_shared: in ConstructCompositionT() 139 case llvm::omp::Clause::OMPC_private: in ConstructCompositionT() 140 case llvm::omp::Clause::OMPC_firstprivate: in ConstructCompositionT() 141 case llvm::omp::Clause::OMPC_lastprivate: in ConstructCompositionT() [all …]
|
H A D | OMP.td | 35 def OMPC_Acquire : Clause<"acquire"> { 38 def OMPC_AcqRel : Clause<"acq_rel"> { 41 def OMPC_AdjustArgs : Clause<"adjust_args"> { 43 def OMPC_Affinity : Clause<"affinity"> { 46 def OMPC_Align : Clause<"align"> { 49 def OMPC_Aligned : Clause<"aligned"> { 53 def OMPC_Allocate : Clause<"allocate"> { 57 def OMPC_Allocator : Clause<"allocator"> { 61 def OMPC_AppendArgs : Clause<"append_args"> { 63 def OMPC_At : Clause<"at"> { [all …]
|
H A D | ConstructDecompositionT.h | 140 ClauseTy *makeClause(llvm::omp::Clause clauseId, S &&specific) { in makeClause() 207 template <typename Clause> 208 bool applyClause(Clause &&clause, const ClauseTy *node); 541 llvm::omp::Clause::OMPC_shared, in applyClause() 583 llvm::omp::Clause::OMPC_shared, in applyClause() 593 return c->id == llvm::omp::Clause::OMPC_lastprivate; in applyClause() 608 llvm::omp::Clause::OMPC_firstprivate, in applyClause() 657 return c->id == llvm::omp::Clause::OMPC_firstprivate; in applyClause() 675 llvm::omp::Clause::OMPC_shared, in applyClause() 684 llvm::omp::Clause::OMPC_shared, in applyClause() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenACCClause.h | 857 for (const OpenACCClause *Clause : List) in VisitClauseList() local 858 Visit(Clause); in VisitClauseList() 868 Visit##CLAUSE_NAME##Clause(*cast<OpenACC##CLAUSE_NAME##Clause>(C)); \ in Visit() 872 Visit##CLAUSE_NAME##Clause(*cast<OpenACC##CLAUSE_NAME##Clause>(C)); \ in Visit() 883 void Visit##CLAUSE_NAME##Clause( \ 884 const OpenACC##CLAUSE_NAME##Clause &Clause) { \ 885 return getDerived().Visit##CLAUSE_NAME##Clause(Clause); \ 900 for (const OpenACCClause *Clause : List) { in VisitClauseList() local 901 Visit(Clause); in VisitClauseList() 903 if (Clause != List.back()) in VisitClauseList() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | R600ControlFlowFinalizer.cpp | 437 const DebugLoc &DL, ClauseFile &Clause, in EmitFetchClause() argument 439 CounterPropagateAddr(*Clause.first, CfCount); in EmitFetchClause() 440 MachineBasicBlock *BB = Clause.first->getParent(); in EmitFetchClause() 442 for (MachineInstr *MI : Clause.second) in EmitFetchClause() 444 CfCount += 2 * Clause.second.size(); in EmitFetchClause() 448 ClauseFile &Clause, unsigned &CfCount) { in EmitALUClause() argument 449 Clause.first->getOperand(0).setImm(0); in EmitALUClause() 450 CounterPropagateAddr(*Clause.first, CfCount); in EmitALUClause() 451 MachineBasicBlock *BB = Clause.first->getParent(); in EmitALUClause() 453 for (MachineInstr *MI : Clause.second) in EmitALUClause() [all …]
|
/freebsd/sys/dev/mdio/ |
H A D | mdio_if.m | 94 * @param devad The MDIO IEEE 802.3 Clause 45 device address, or 95 * MDIO_DEVADDR_NONE to request Clause 22 register addressing. 111 * @param devad The MDIO IEEE 802.3 Clause 45 device address, or 112 * MDIO_DEVADDR_NONE to request Clause 22 register addressing.
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/ |
H A D | DirectiveEmitter.h | 144 class Clause : public BaseRecord { 146 explicit Clause(const llvm::Record *Def) : BaseRecord(Def) {} in Clause() function 217 Clause getClause() const { return Clause{Def->getValueAsDef("clause")}; } in getClause()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | WatchedLiteralsSolver.cpp | 324 llvm::ArrayRef<Literal> Clause = CNF.clauseLiterals(LitWatcher); in watchedByUnitClause() local 331 assert(Clause.front() == Lit); in watchedByUnitClause() 333 if (isUnit(Clause)) in watchedByUnitClause() 340 bool isUnit(llvm::ArrayRef<Literal> Clause) const { in isUnit() 341 return llvm::all_of(Clause.drop_front(), in isUnit()
|
/freebsd/sys/contrib/device-tree/Bindings/net/ |
H A D | cortina.txt | 8 devices make use of registers that are not compatible with Clause 45 or 9 Clause 22, therefore they need to be described using the
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseOpenMP.cpp | 616 OMPClause *Clause = in ParseOpenMPDeclareMapperDirective() local 618 if (Clause) in ParseOpenMPDeclareMapperDirective() 619 Clauses.push_back(Clause); in ParseOpenMPDeclareMapperDirective() 1655 OMPClause *Clause = in ParseOpenMPClauses() local 1660 if (Clause != nullptr) in ParseOpenMPClauses() 1661 Clauses.push_back(Clause); in ParseOpenMPClauses() 2121 OMPClause *Clause = ParseOpenMPClause(OMPD_allocate, CKind, in ParseOpenMPDeclarativeDirectiveWithExtDecl() local 2126 if (Clause != nullptr) in ParseOpenMPDeclarativeDirectiveWithExtDecl() 2127 Clauses.push_back(Clause); in ParseOpenMPDeclarativeDirectiveWithExtDecl() 2160 OMPClause *Clause = ParseOpenMPClause(OMPD_requires, CKind, in ParseOpenMPDeclarativeDirectiveWithExtDecl() local [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | WinException.cpp | 1250 for (ClrClause &Clause : Clauses) { in emitCLRExceptionTable() 1300 getOffsetPlusOne(Clause.StartLabel, FuncBeginSym); in emitCLRExceptionTable() 1301 const MCExpr *ClauseEnd = getOffsetPlusOne(Clause.EndLabel, FuncBeginSym); in emitCLRExceptionTable() 1303 const ClrEHUnwindMapEntry &Entry = FuncInfo.ClrEHUnwindMap[Clause.State]; in emitCLRExceptionTable() 1307 MCSymbol *EndSym = EndSymbolMap[Clause.State]; in emitCLRExceptionTable() 1325 if (Clause.EnclosingState != MinClauseMap[Clause.State]) { in emitCLRExceptionTable() 1328 assert(Clause.EnclosingState > MinClauseMap[Clause.State]); in emitCLRExceptionTable()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/Directive/ |
H A D | DirectiveBase.td | 32 // Optional prefix used for the generation of the enumerator in the Clause 70 class Clause<string c> { 119 class VersionedClause<Clause c, int min = 1, int max = 0x7FFFFFFF> { 121 Clause clause = c;
|
/freebsd/sys/contrib/device-tree/src/arm/st/ |
H A D | stm32h750.dtsi | 1 /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */
|
/freebsd/sys/dev/vmware/pvscsi/ |
H A D | LICENSE | 2 These files are provided under a dual BSD-2 Clause/GPLv2 license. When 5 BSD-2 Clause License
|
/freebsd/sys/dev/vmware/vmci/ |
H A D | LICENSE | 2 These files are provided under a dual BSD-2 Clause/GPLv2 license. When 5 BSD-2 Clause License
|
/freebsd/sys/contrib/device-tree/src/arm64/realtek/ |
H A D | rtd1619.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause)
|
/freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
H A D | sc7280-herobrine-pro-sku.dtsi | 1 // SPDX-License-Identifier: BSD-3-Clause
|
H A D | msm8996-pmi8996-sony-xperia-tone-kagura.dts | 1 // SPDX-License-Identifier: BSD-3-Clause
|
/freebsd/sys/contrib/device-tree/src/arm64/st/ |
H A D | stm32mp25xf.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-3-Clause)
|
H A D | stm32mp25xc.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-3-Clause)
|