/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | DDG.h | 517 static NodeRef getEntryNode(DataDependenceGraph *DG) { 518 return &DG->getRoot(); 520 static nodes_iterator nodes_begin(DataDependenceGraph *DG) { 521 return DG->begin(); 523 static nodes_iterator nodes_end(DataDependenceGraph *DG) { return DG->end(); } 558 static NodeRef getEntryNode(const DataDependenceGraph *DG) { 559 return &DG->getRoot(); 561 static nodes_iterator nodes_begin(const DataDependenceGraph *DG) { 562 return DG->begin(); 564 static nodes_iterator nodes_end(const DataDependenceGraph *DG) { [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
H A D | BottleneckAnalysis.cpp | 303 DG.getCriticalSequence(Seq); in printCriticalSequence() 447 DG(S.size() * 3), Iterations(NumIter), TotalCycles(0), in BottleneckAnalysis() 458 DG.addRegisterDep(From, To + SourceSize, RegID, Cost); in addRegisterDep() 459 DG.addRegisterDep(From + SourceSize, To + (SourceSize * 2), RegID, Cost); in addRegisterDep() 462 DG.addRegisterDep(From + SourceSize, To + SourceSize, RegID, Cost); in addRegisterDep() 470 DG.addMemoryDep(From, To + SourceSize, Cost); in addMemoryDep() 471 DG.addMemoryDep(From + SourceSize, To + (SourceSize * 2), Cost); in addMemoryDep() 474 DG.addMemoryDep(From + SourceSize, To + SourceSize, Cost); in addMemoryDep() 482 DG.addResourceDep(From, To + SourceSize, Mask, Cost); in addResourceDep() 483 DG.addResourceDep(From + SourceSize, To + (SourceSize * 2), Mask, Cost); in addResourceDep() [all …]
|
H A D | BottleneckAnalysis.h | 290 DependencyGraph DG; variable 341 void dump(raw_ostream &OS, MCInstPrinter &MCIP) const { DG.dump(OS, MCIP); } in dump()
|
/freebsd/contrib/llvm-project/clang/lib/Index/ |
H A D | IndexingAction.cpp | 128 bool HandleTopLevelDecl(DeclGroupRef DG) override { in HandleTopLevelDecl() argument 129 return IndexCtx->indexDeclGroupRef(DG); in HandleTopLevelDecl() 132 void HandleInterestingDecl(DeclGroupRef DG) override { in HandleInterestingDecl() argument 136 void HandleTopLevelDeclInObjCContainer(DeclGroupRef DG) override { in HandleTopLevelDeclInObjCContainer() argument 137 IndexCtx->indexDeclGroupRef(DG); in HandleTopLevelDeclInObjCContainer()
|
H A D | IndexBody.cpp | 392 DeclGroupRef DG = S->getDeclGroup(); in VisitDeclStmt() local 393 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) { in VisitDeclStmt()
|
H A D | IndexDecl.cpp | 818 bool IndexingContext::indexDeclGroupRef(DeclGroupRef DG) { in indexDeclGroupRef() argument 819 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) in indexDeclGroupRef()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ |
H A D | AnalysisConsumer.cpp | 353 void storeTopLevelDecls(DeclGroupRef DG); 368 bool AnalysisConsumer::HandleTopLevelDecl(DeclGroupRef DG) { in HandleTopLevelDecl() argument 369 storeTopLevelDecls(DG); in HandleTopLevelDecl() 373 void AnalysisConsumer::HandleTopLevelDeclInObjCContainer(DeclGroupRef DG) { in HandleTopLevelDeclInObjCContainer() argument 374 storeTopLevelDecls(DG); in HandleTopLevelDeclInObjCContainer() 377 void AnalysisConsumer::storeTopLevelDecls(DeclGroupRef DG) { in storeTopLevelDecls() argument 378 for (auto &I : DG) { in storeTopLevelDecls()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | Core.cpp | 2311 if (auto DG = IPLS.CurDefGeneratorStack.back().lock()) { in OL_resumeLookupAfterGeneration() local 2313 std::lock_guard<std::mutex> Lock(DG->M); in OL_resumeLookupAfterGeneration() 2317 if (DG->PendingLookups.empty()) { in OL_resumeLookupAfterGeneration() 2318 DG->InUse = false; in OL_resumeLookupAfterGeneration() 2323 LS = std::move(DG->PendingLookups.front()); in OL_resumeLookupAfterGeneration() 2324 DG->PendingLookups.pop_front(); in OL_resumeLookupAfterGeneration() 2395 for (auto &DG : reverse(JD.DefGenerators)) in OL_applyQueryPhase1() local 2396 IPLS->CurDefGeneratorStack.push_back(DG); in OL_applyQueryPhase1() 2444 auto DG = IPLS->CurDefGeneratorStack.back().lock(); in OL_applyQueryPhase1() local 2446 if (!DG) in OL_applyQueryPhase1() [all …]
|
H A D | OrcV2CBindings.cpp | 416 void LLVMOrcDisposeDefinitionGenerator(LLVMOrcDefinitionGeneratorRef DG) { in LLVMOrcDisposeDefinitionGenerator() argument 417 std::unique_ptr<DefinitionGenerator> TmpDG(unwrap(DG)); in LLVMOrcDisposeDefinitionGenerator() 641 LLVMOrcDefinitionGeneratorRef DG) { in LLVMOrcJITDylibAddGenerator() argument 642 unwrap(JD)->addGenerator(std::unique_ptr<DefinitionGenerator>(unwrap(DG))); in LLVMOrcJITDylibAddGenerator() 648 auto DG = std::make_unique<CAPIDefinitionGenerator>(Dispose, Ctx, F); in LLVMOrcCreateCustomCAPIDefinitionGenerator() local 649 return wrap(DG.release()); in LLVMOrcCreateCustomCAPIDefinitionGenerator()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | ModuleBuilder.cpp | 181 bool HandleTopLevelDecl(DeclGroupRef DG) override { in HandleTopLevelDecl() argument 189 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) in HandleTopLevelDecl()
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseHLSL.cpp | 22 static bool validateDeclsInsideHLSLBuffer(Parser::DeclGroupPtrTy DG, in validateDeclsInsideHLSLBuffer() argument 26 if (!DG) in validateDeclsInsideHLSLBuffer() 28 DeclGroupRef Decls = DG.get(); in validateDeclsInsideHLSLBuffer()
|
H A D | ParseExprCXX.cpp | 2082 DeclGroupPtrTy DG; in ParseAliasDeclarationInInitStatement() local 2085 DG = ParseUsingDeclaration(Context, {}, DeclStart, DeclEnd, Attrs, AS_none); in ParseAliasDeclarationInInitStatement() 2086 if (!DG) in ParseAliasDeclarationInInitStatement() 2087 return DG; in ParseAliasDeclarationInInitStatement() 2094 return DG; in ParseAliasDeclarationInInitStatement() 2208 DeclGroupPtrTy DG; in ParseCXXCondition() local 2211 DG = ParseAliasDeclarationInInitStatement( in ParseCXXCondition() 2215 DG = ParseSimpleDeclaration(DeclaratorContext::SelectionInit, DeclEnd, in ParseCXXCondition() 2218 *InitStmt = Actions.ActOnDeclStmt(DG, DeclStart, DeclEnd); in ParseCXXCondition() 2229 DeclGroupPtrTy DG = ParseSimpleDeclaration( in ParseCXXCondition() local [all …]
|
H A D | ParseStmt.cpp | 2103 DeclGroupPtrTy DG; in ParseForStatement() local 2106 DG = ParseAliasDeclarationInInitStatement(DeclaratorContext::ForInit, in ParseForStatement() 2108 FirstPart = Actions.ActOnDeclStmt(DG, DeclStart, Tok.getLocation()); in ParseForStatement() 2114 DG = ParseSimpleDeclaration( in ParseForStatement() 2117 FirstPart = Actions.ActOnDeclStmt(DG, DeclStart, Tok.getLocation()); in ParseForStatement() 2127 Actions.ActOnForEachDeclStmt(DG); in ParseForStatement() 2134 DG); in ParseForStatement()
|
/freebsd/sys/contrib/device-tree/Bindings/rtc/ |
H A D | epson,rtc7301.txt | 1 EPSON TOYOCOM RTC-7301SF/DG
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | Attributor.cpp | 2126 << DG.SyntheticRoot.Deps.size() in runTillFixpoint() 2138 Worklist.insert(DG.SyntheticRoot.begin(), DG.SyntheticRoot.end()); in runTillFixpoint() 2142 size_t NumAAs = DG.SyntheticRoot.Deps.size(); in runTillFixpoint() 2209 ChangedAAs.append(DG.SyntheticRoot.begin() + NumAAs, in runTillFixpoint() 2210 DG.SyntheticRoot.end()); in runTillFixpoint() 2273 size_t NumFinalAAs = DG.SyntheticRoot.Deps.size(); in manifestAttributes() 2278 for (auto &DepAA : DG.SyntheticRoot.Deps) { in manifestAttributes() 2331 if (NumFinalAAs != DG.SyntheticRoot.Deps.size()) { in manifestAttributes() 2332 auto DepIt = DG.SyntheticRoot.Deps.begin(); in manifestAttributes() 2335 for (unsigned u = NumFinalAAs; u < DG.SyntheticRoot.Deps.size(); in manifestAttributes() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaTemplateDeductionGuide.cpp | 1206 if (auto *DG = dyn_cast<CXXDeductionGuideDecl>(G)) { in DeclareImplicitDeductionGuidesForTypeAlias() local 1209 SemaRef.Context.getTrivialTypeSourceInfo(DG->getType()); in DeclareImplicitDeductionGuidesForTypeAlias() 1214 for (unsigned I = 0, N = DG->getNumParams(); I != N; ++I) { in DeclareImplicitDeductionGuidesForTypeAlias() 1215 const auto *P = DG->getParamDecl(I); in DeclareImplicitDeductionGuidesForTypeAlias() 1219 DG->getParamDecl(I)->getBeginLoc(), P->getLocation(), nullptr, in DeclareImplicitDeductionGuidesForTypeAlias() 1226 /*Constructor=*/nullptr, DG->getExplicitSpecifier(), FunctionType, in DeclareImplicitDeductionGuidesForTypeAlias() 1228 AliasTemplate->getEndLoc(), DG->isImplicit())); in DeclareImplicitDeductionGuidesForTypeAlias() 1235 if (auto *RC = DG->getTrailingRequiresClause()) { in DeclareImplicitDeductionGuidesForTypeAlias()
|
H A D | SemaStmt.cpp | 81 DeclGroupRef DG = dg.get(); in ActOnDeclStmt() local 84 if (DG.isNull()) return StmtError(); in ActOnDeclStmt() 86 return new (Context) DeclStmt(DG, StartLoc, EndLoc); in ActOnDeclStmt() 90 DeclGroupRef DG = dg.get(); in ActOnForEachDeclStmt() local 94 if (DG.isNull() || !DG.isSingleDecl()) in ActOnForEachDeclStmt() 97 Decl *decl = DG.getSingleDecl(); in ActOnForEachDeclStmt()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Stmt.h | 1498 DeclGroupRef DG; 1503 : Stmt(DeclStmtClass), DG(dg), StartLoc(startLoc), EndLoc(endLoc) {} 1510 bool isSingleDecl() const { return DG.isSingleDecl(); } 1512 const Decl *getSingleDecl() const { return DG.getSingleDecl(); } 1513 Decl *getSingleDecl() { return DG.getSingleDecl(); } 1515 const DeclGroupRef getDeclGroup() const { return DG; } 1516 DeclGroupRef getDeclGroup() { return DG; } 1517 void setDeclGroup(DeclGroupRef DGR) { DG = DGR; } 1531 return child_range(child_iterator(DG.begin(), DG.end()), 1532 child_iterator(DG.end(), DG.end())); [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
H A D | Orc.h | 623 void LLVMOrcDisposeDefinitionGenerator(LLVMOrcDefinitionGeneratorRef DG); 973 LLVMOrcDefinitionGeneratorRef DG);
|
/freebsd/crypto/openssl/test/certs/ |
H A D | ee-key-4096.pem | 32 u6+0SRArXNPc6m612h3y2NSJVv5v9gy+4kchLj8AgLXvz2gCxFNyT6ZxvZzOK+DG
|
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/ |
H A D | PrecompiledPreamble.h | 230 virtual void HandleTopLevelDecl(DeclGroupRef DG);
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | PrecompiledPreamble.cpp | 303 bool HandleTopLevelDecl(DeclGroupRef DG) override { in HandleTopLevelDecl() argument 304 Action.Callbacks.HandleTopLevelDecl(DG); in HandleTopLevelDecl() 828 void PreambleCallbacks::HandleTopLevelDecl(DeclGroupRef DG) {} in HandleTopLevelDecl() argument
|
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/ |
H A D | ObjCMT.cpp | 137 bool HandleTopLevelDecl(DeclGroupRef DG) override { in HandleTopLevelDecl() argument 138 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) in HandleTopLevelDecl() 142 void HandleInterestingDecl(DeclGroupRef DG) override { in HandleInterestingDecl() argument 145 void HandleTopLevelDeclInObjCContainer(DeclGroupRef DG) override { in HandleTopLevelDeclInObjCContainer() argument 146 ObjCMigrateASTConsumer::HandleTopLevelDecl(DG); in HandleTopLevelDeclInObjCContainer()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
H A D | RewriteModernObjC.cpp | 315 void RewriteForwardClassDecl(const SmallVectorImpl<Decl *> &DG); 333 void RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG); 750 SmallVector<Decl *, 8> DG; in HandleTopLevelSingleDecl() local 756 DG.push_back(*DI); in HandleTopLevelSingleDecl() 762 RewriteForwardClassDecl(DG); in HandleTopLevelSingleDecl() 775 SmallVector<Decl *, 8> DG; in HandleTopLevelSingleDecl() local 781 DG.push_back(*DI); in HandleTopLevelSingleDecl() 787 RewriteForwardProtocolDecl(DG); in HandleTopLevelSingleDecl() 1198 RewriteModernObjC::RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG) { in RewriteForwardProtocolDecl() argument 1199 SourceLocation LocStart = DG[0]->getBeginLoc(); in RewriteForwardProtocolDecl()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaOpenMP.h | 788 DeclGroupPtrTy DG, OMPDeclareSimdDeclAttr::BranchStateTy BS, 806 checkOpenMPDeclareVariantFunction(DeclGroupPtrTy DG, Expr *VariantRef,
|