| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | DDG.h | 521 static NodeRef getEntryNode(DataDependenceGraph *DG) { 522 return &DG->getRoot(); 524 static nodes_iterator nodes_begin(DataDependenceGraph *DG) { 525 return DG->begin(); 527 static nodes_iterator nodes_end(DataDependenceGraph *DG) { return DG->end(); } 562 static NodeRef getEntryNode(const DataDependenceGraph *DG) { 563 return &DG->getRoot(); 565 static nodes_iterator nodes_begin(const DataDependenceGraph *DG) { 566 return DG->begin(); 568 static nodes_iterator nodes_end(const DataDependenceGraph *DG) { [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
| H A D | BottleneckAnalysis.cpp | 302 DG.getCriticalSequence(Seq); in printCriticalSequence() 446 DG(S.size() * 3), Iterations(NumIter), TotalCycles(0), in BottleneckAnalysis() 457 DG.addRegisterDep(From, To + SourceSize, RegID, Cost); in addRegisterDep() 458 DG.addRegisterDep(From + SourceSize, To + (SourceSize * 2), RegID, Cost); in addRegisterDep() 461 DG.addRegisterDep(From + SourceSize, To + SourceSize, RegID, Cost); in addRegisterDep() 469 DG.addMemoryDep(From, To + SourceSize, Cost); in addMemoryDep() 470 DG.addMemoryDep(From + SourceSize, To + (SourceSize * 2), Cost); in addMemoryDep() 473 DG.addMemoryDep(From + SourceSize, To + SourceSize, Cost); in addMemoryDep() 481 DG.addResourceDep(From, To + SourceSize, Mask, Cost); in addResourceDep() 482 DG.addResourceDep(From + SourceSize, To + (SourceSize * 2), Mask, Cost); in addResourceDep() [all …]
|
| H A D | BottleneckAnalysis.h | 293 DependencyGraph DG; variable 345 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 | 126 bool HandleTopLevelDecl(DeclGroupRef DG) override { in HandleTopLevelDecl() argument 127 return IndexCtx->indexDeclGroupRef(DG); in HandleTopLevelDecl() 130 void HandleInterestingDecl(DeclGroupRef DG) override { in HandleInterestingDecl() argument 134 void HandleTopLevelDeclInObjCContainer(DeclGroupRef DG) override { in HandleTopLevelDeclInObjCContainer() argument 135 IndexCtx->indexDeclGroupRef(DG); in HandleTopLevelDeclInObjCContainer()
|
| H A D | IndexBody.cpp | 390 DeclGroupRef DG = S->getDeclGroup(); in VisitDeclStmt() local 391 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) { in VisitDeclStmt()
|
| H A D | IndexingContext.h | 126 bool indexDeclGroupRef(DeclGroupRef DG);
|
| 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 | 344 void storeTopLevelDecls(DeclGroupRef DG); 390 bool AnalysisConsumer::HandleTopLevelDecl(DeclGroupRef DG) { in HandleTopLevelDecl() argument 391 storeTopLevelDecls(DG); in HandleTopLevelDecl() 395 void AnalysisConsumer::HandleTopLevelDeclInObjCContainer(DeclGroupRef DG) { in HandleTopLevelDeclInObjCContainer() argument 396 storeTopLevelDecls(DG); in HandleTopLevelDeclInObjCContainer() 399 void AnalysisConsumer::storeTopLevelDecls(DeclGroupRef DG) { in storeTopLevelDecls() argument 400 for (auto &I : DG) { in storeTopLevelDecls()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateDeductionGuide.cpp | 1259 if (auto *DG = dyn_cast<CXXDeductionGuideDecl>(G)) { in DeclareImplicitDeductionGuidesForTypeAlias() local 1260 if (SourceDeductionGuides.contains(DG)) in DeclareImplicitDeductionGuidesForTypeAlias() 1264 SemaRef.Context.getTrivialTypeSourceInfo(DG->getType()); in DeclareImplicitDeductionGuidesForTypeAlias() 1269 for (unsigned I = 0, N = DG->getNumParams(); I != N; ++I) { in DeclareImplicitDeductionGuidesForTypeAlias() 1270 const auto *P = DG->getParamDecl(I); in DeclareImplicitDeductionGuidesForTypeAlias() 1274 DG->getParamDecl(I)->getBeginLoc(), P->getLocation(), nullptr, in DeclareImplicitDeductionGuidesForTypeAlias() 1281 /*Constructor=*/nullptr, DG->getExplicitSpecifier(), FunctionType, in DeclareImplicitDeductionGuidesForTypeAlias() 1283 AliasTemplate->getEndLoc(), DG->isImplicit())); in DeclareImplicitDeductionGuidesForTypeAlias() 1284 Transformed->setSourceDeductionGuide(DG); in DeclareImplicitDeductionGuidesForTypeAlias() 1293 if (const AssociatedConstraint &RC = DG->getTrailingRequiresClause()) { in DeclareImplicitDeductionGuidesForTypeAlias()
|
| H A D | SemaStmt.cpp | 77 DeclGroupRef DG = dg.get(); in ActOnDeclStmt() local 80 if (DG.isNull()) return StmtError(); in ActOnDeclStmt() 82 return new (Context) DeclStmt(DG, StartLoc, EndLoc); in ActOnDeclStmt() 86 DeclGroupRef DG = dg.get(); in ActOnForEachDeclStmt() local 90 if (DG.isNull() || !DG.isSingleDecl()) in ActOnForEachDeclStmt() 93 Decl *decl = DG.getSingleDecl(); in ActOnForEachDeclStmt()
|
| /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 | ParseStmt.cpp | 1977 DeclGroupPtrTy DG; in ParseForStatement() local 1983 DG = Actions.ConvertDeclToDeclGroup(D); in ParseForStatement() 1984 FirstPart = Actions.ActOnDeclStmt(DG, DeclStart, Tok.getLocation()); in ParseForStatement() 1986 DG = ParseAliasDeclarationInInitStatement(DeclaratorContext::ForInit, in ParseForStatement() 1988 FirstPart = Actions.ActOnDeclStmt(DG, DeclStart, Tok.getLocation()); in ParseForStatement() 1994 DG = ParseSimpleDeclaration( in ParseForStatement() 1997 FirstPart = Actions.ActOnDeclStmt(DG, DeclStart, Tok.getLocation()); in ParseForStatement() 2007 Actions.ActOnForEachDeclStmt(DG); in ParseForStatement() 2014 DG); in ParseForStatement()
|
| H A D | ParseExprCXX.cpp | 1857 DeclGroupPtrTy DG; in ParseAliasDeclarationInInitStatement() local 1860 DG = ParseUsingDeclaration(Context, {}, DeclStart, DeclEnd, Attrs, AS_none); in ParseAliasDeclarationInInitStatement() 1861 if (!DG) in ParseAliasDeclarationInInitStatement() 1862 return DG; in ParseAliasDeclarationInInitStatement() 1869 return DG; in ParseAliasDeclarationInInitStatement() 1958 DeclGroupPtrTy DG; in ParseCXXCondition() local 1961 DG = ParseAliasDeclarationInInitStatement( in ParseCXXCondition() 1965 DG = ParseSimpleDeclaration(DeclaratorContext::SelectionInit, DeclEnd, in ParseCXXCondition() 1968 *InitStmt = Actions.ActOnDeclStmt(DG, DeclStart, DeclEnd); in ParseCXXCondition() 1979 DeclGroupPtrTy DG = ParseSimpleDeclaration( in ParseCXXCondition() local [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | Core.cpp | 2307 if (auto DG = IPLS.CurDefGeneratorStack.back().lock()) { in OL_resumeLookupAfterGeneration() local 2309 std::lock_guard<std::mutex> Lock(DG->M); in OL_resumeLookupAfterGeneration() 2313 if (DG->PendingLookups.empty()) { in OL_resumeLookupAfterGeneration() 2314 DG->InUse = false; in OL_resumeLookupAfterGeneration() 2319 LS = std::move(DG->PendingLookups.front()); in OL_resumeLookupAfterGeneration() 2320 DG->PendingLookups.pop_front(); in OL_resumeLookupAfterGeneration() 2440 auto DG = IPLS->CurDefGeneratorStack.back().lock(); in OL_applyQueryPhase1() local 2442 if (!DG) in OL_applyQueryPhase1() 2457 std::lock_guard<std::mutex> Lock(DG->M); in OL_applyQueryPhase1() 2458 if (DG->InUse) { in OL_applyQueryPhase1() [all …]
|
| H A D | OrcV2CBindings.cpp | 417 void LLVMOrcDisposeDefinitionGenerator(LLVMOrcDefinitionGeneratorRef DG) { in LLVMOrcDisposeDefinitionGenerator() argument 418 std::unique_ptr<DefinitionGenerator> TmpDG(unwrap(DG)); in LLVMOrcDisposeDefinitionGenerator() 642 LLVMOrcDefinitionGeneratorRef DG) { in LLVMOrcJITDylibAddGenerator() argument 643 unwrap(JD)->addGenerator(std::unique_ptr<DefinitionGenerator>(unwrap(DG))); in LLVMOrcJITDylibAddGenerator() 649 auto DG = std::make_unique<CAPIDefinitionGenerator>(Dispose, Ctx, F); in LLVMOrcCreateCustomCAPIDefinitionGenerator() local 650 return wrap(DG.release()); in LLVMOrcCreateCustomCAPIDefinitionGenerator()
|
| /freebsd/sys/contrib/device-tree/Bindings/rtc/ |
| H A D | epson,rtc7301.txt | 1 EPSON TOYOCOM RTC-7301SF/DG
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Stmt.h | 1623 DeclGroupRef DG; 1628 : Stmt(DeclStmtClass), DG(dg), StartLoc(startLoc), EndLoc(endLoc) {} 1635 bool isSingleDecl() const { return DG.isSingleDecl(); } 1637 const Decl *getSingleDecl() const { return DG.getSingleDecl(); } 1638 Decl *getSingleDecl() { return DG.getSingleDecl(); } 1640 const DeclGroupRef getDeclGroup() const { return DG; } 1641 DeclGroupRef getDeclGroup() { return DG; } 1642 void setDeclGroup(DeclGroupRef DGR) { DG = DGR; } 1656 return child_range(child_iterator(DG.begin(), DG.end()), 1657 child_iterator(DG.end(), DG.end())); [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | Attributor.cpp | 2119 << DG.SyntheticRoot.Deps.size() in runTillFixpoint() 2131 Worklist.insert_range(DG.SyntheticRoot); in runTillFixpoint() 2135 size_t NumAAs = DG.SyntheticRoot.Deps.size(); in runTillFixpoint() 2202 ChangedAAs.append(DG.SyntheticRoot.begin() + NumAAs, in runTillFixpoint() 2203 DG.SyntheticRoot.end()); in runTillFixpoint() 2265 size_t NumFinalAAs = DG.SyntheticRoot.Deps.size(); in manifestAttributes() 2270 for (auto &DepAA : DG.SyntheticRoot.Deps) { in manifestAttributes() 2323 if (NumFinalAAs != DG.SyntheticRoot.Deps.size()) { in manifestAttributes() 2324 auto DepIt = DG.SyntheticRoot.Deps.begin(); in manifestAttributes() 2327 for (unsigned u = NumFinalAAs; u < DG.SyntheticRoot.Deps.size(); in manifestAttributes() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | ModuleBuilder.cpp | 181 bool HandleTopLevelDecl(DeclGroupRef DG) override { in HandleTopLevelDecl() argument 189 for (auto &I : DG) in HandleTopLevelDecl()
|
| /freebsd/crypto/openssl/test/certs/ |
| H A D | ee-key-4096.pem | 32 u6+0SRArXNPc6m612h3y2NSJVv5v9gy+4kchLj8AgLXvz2gCxFNyT6ZxvZzOK+DG
|
| /freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | Orc.h | 631 LLVMOrcDisposeDefinitionGenerator(LLVMOrcDefinitionGeneratorRef DG); 982 LLVMOrcDefinitionGeneratorRef 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 | 302 bool HandleTopLevelDecl(DeclGroupRef DG) override { in HandleTopLevelDecl() argument 303 Action.Callbacks.HandleTopLevelDecl(DG); in HandleTopLevelDecl() 826 void PreambleCallbacks::HandleTopLevelDecl(DeclGroupRef DG) {} in HandleTopLevelDecl() argument
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 261 void RewriteForwardClassDecl(const SmallVectorImpl<Decl *> &DG); 279 void RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG); 680 SmallVector<Decl *, 8> DG; in HandleTopLevelSingleDecl() local 686 DG.push_back(*DI); in HandleTopLevelSingleDecl() 692 RewriteForwardClassDecl(DG); in HandleTopLevelSingleDecl() 699 SmallVector<Decl *, 8> DG; in HandleTopLevelSingleDecl() local 705 DG.push_back(*DI); in HandleTopLevelSingleDecl() 711 RewriteForwardProtocolDecl(DG); in HandleTopLevelSingleDecl() 1030 RewriteObjC::RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG) { in RewriteForwardProtocolDecl() argument 1031 SourceLocation LocStart = DG[0]->getBeginLoc(); in RewriteForwardProtocolDecl()
|
| H A D | RewriteModernObjC.cpp | 314 void RewriteForwardClassDecl(const SmallVectorImpl<Decl *> &DG); 332 void RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG); 749 SmallVector<Decl *, 8> DG; in HandleTopLevelSingleDecl() local 755 DG.push_back(*DI); in HandleTopLevelSingleDecl() 761 RewriteForwardClassDecl(DG); in HandleTopLevelSingleDecl() 774 SmallVector<Decl *, 8> DG; in HandleTopLevelSingleDecl() local 780 DG.push_back(*DI); in HandleTopLevelSingleDecl() 786 RewriteForwardProtocolDecl(DG); in HandleTopLevelSingleDecl() 1197 RewriteModernObjC::RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG) { in RewriteForwardProtocolDecl() argument 1198 SourceLocation LocStart = DG[0]->getBeginLoc(); in RewriteForwardProtocolDecl()
|