| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | JumpDiagnostics.cpp | 70 SmallVector<GotoScope, 48> Scopes; member in __anond6565a0e0111::JumpScopeChecker 109 Scopes.push_back(GotoScope(~0U, ~0U, ~0U, SourceLocation())); in JumpScopeChecker() 130 assert(Scopes[B].ParentScope < B); in GetDeepestCommonScope() 131 B = Scopes[B].ParentScope; in GetDeepestCommonScope() 133 assert(Scopes[A].ParentScope < A); in GetDeepestCommonScope() 134 A = Scopes[A].ParentScope; in GetDeepestCommonScope() 237 Scopes.push_back(GotoScope(ParentScope, Diags.first, Diags.second, in BuildScopeInformation() 239 ParentScope = Scopes.size()-1; in BuildScopeInformation() 284 Scopes.push_back(GotoScope(ParentScope, in BuildScopeInformation() 286 ParentScope = Scopes.size()-1; in BuildScopeInformation() [all …]
|
| /netbsd-src/external/mpl/dhcp/dist/contrib/ms2isc/ |
| H A D | ms2isc.pl | 103 my (%opts, %GlobalOptions, %SuperScopes, %Scopes); 113 %Scopes = GetScopes ($opts{s}); 129 PrintSubnetConfig($outfile, \%GlobalOptions, \%{$Scopes{$j}}, $j, "\t", $opts{f}); 130 InsertIfUnique (\@Domains, $Scopes{$j}{domain}) if exists $Scopes{$j}{domain}; 131 delete $Scopes{$j}; 141 for $i (keys %Scopes) { 143 PrintSubnetConfig($outfile, \%GlobalOptions, \%{$Scopes{$i}}, $i, "", $opts{f}); 145 InsertIfUnique (\@Domains, $Scopes{$i}{domain}) if exists $Scopes{$i}{domain}; 298 my (%Scopes); 399 $Scopes{$Subnets[$i]}{disable} = hex($SSubnetState[0]) ? 1 : 0; [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
| H A D | TransAutoreleasePool.cpp | 95 scpI = info.Scopes.begin(), in ~AutoreleasePoolRewriter() 96 scpE = info.Scopes.end(); scpI != scpE; ++scpI) { in ~AutoreleasePoolRewriter() 119 scpI = info.Scopes.begin(), in ~AutoreleasePoolRewriter() 120 scpE = info.Scopes.end(); scpI != scpE; ++scpI) { in ~AutoreleasePoolRewriter() 150 scpI = info.Scopes.begin(), in ~AutoreleasePoolRewriter() 151 scpE = info.Scopes.end(); scpI != scpE; ++scpI) { in ~AutoreleasePoolRewriter() 164 SmallVector<PoolScope, 4> Scopes; in VisitCompoundStmt() local 179 Scopes.push_back(PoolScope()); in VisitCompoundStmt() 180 Scopes.back().PoolVar = VD; in VisitCompoundStmt() 181 Scopes.back().CompoundParent = S; in VisitCompoundStmt() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | VarBypassDetector.cpp | 24 Scopes = {{~0U, nullptr}}; in Init() 38 Scopes.push_back({ParentScope, VD}); in BuildScopeInformation() 39 ParentScope = Scopes.size() - 1; in BuildScopeInformation() 158 assert(Scopes[To].first < To); in Detect() 159 const auto &ScopeTo = Scopes[To]; in Detect() 163 assert(Scopes[From].first < From); in Detect() 164 From = Scopes[From].first; in Detect()
|
| H A D | MacroPPCallbacks.cpp | 78 return Scopes.back(); in getCurrentScope() 131 Scopes.push_back(Gen->getCGDebugInfo()->CreateTempMacroFile(getCurrentScope(), in FileEntered() 155 Scopes.pop_back(); in FileExited()
|
| H A D | VarBypassDetector.h | 42 llvm::SmallVector<std::pair<unsigned, const VarDecl *>, 48> Scopes; variable
|
| H A D | MacroPPCallbacks.h | 52 llvm::SmallVector<llvm::DIMacroFile *, 4> Scopes; variable
|
| H A D | CGAtomic.cpp | 729 auto Scopes = ScopeModel->getRuntimeValues(); in EmitAtomicOp() local 731 for (auto S : Scopes) in EmitAtomicOp() 742 for (auto S : Scopes) { in EmitAtomicOp()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| H A D | Function.h | 87 return llvm::make_range(Scopes.begin(), Scopes.end()); in scopes() 97 Scope &getScope(unsigned Idx) { return Scopes[Idx]; } in getScope() 123 Scopes = std::move(NewScopes); in setCode() 146 llvm::SmallVector<Scope, 2> Scopes; variable
|
| H A D | ByteCodeEmitter.cpp | 68 llvm::SmallVector<Scope, 2> Scopes; in compileFunc() local 70 Scopes.emplace_back(std::move(DS)); in compileFunc() 75 std::move(Scopes)); in compileFunc()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | DebugInfo.h | 146 return make_range(Scopes.begin(), Scopes.end()); in scopes() 153 unsigned scope_count() const { return Scopes.size(); } in scope_count() 160 SmallVector<DIScope *, 8> Scopes; variable
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | ScopedNoAliasAA.cpp | 118 bool ScopedNoAliasAAResult::mayAliasInScopes(const MDNode *Scopes, in mayAliasInScopes() argument 120 if (!Scopes || !NoAlias) in mayAliasInScopes() 134 collectMDInDomain(Scopes, Domain, ScopeNodes); in mayAliasInScopes()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | SyncScope.h | 130 static const unsigned Scopes[] = { in getRuntimeValues() local 133 return llvm::makeArrayRef(Scopes); in getRuntimeValues()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| H A D | ControlHeightReduction.cpp | 327 for (CHRScope *Scope : Scopes) { in ~CHR() 345 SmallVectorImpl<CHRScope *> &Scopes); 358 void classifyBiasedScopes(SmallVectorImpl<CHRScope *> &Scopes); 421 DenseSet<CHRScope *> Scopes; member in __anon566c75c30211::CHR 791 Scopes.insert(Result); in findScope() 851 Scopes.insert(Result); in findScope() 991 SmallVectorImpl<CHRScope *> &Scopes) { in findScopes() argument 1003 CHRScope *SubCHRScope = findScopes(SubR.get(), NextSubR, R, Scopes); in findScopes() 1033 Scopes.push_back(Sub); in findScopes() 1210 Scopes.insert(Tail); in splitScope() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
| H A D | ParseCXXInlineMethods.cpp | 279 MultiParseScope Scopes; member 283 : P(P), Scopes(P), CurTemplateDepthTracker(P.TemplateParameterDepth) { in ReenterTemplateScopeRAII() 286 P.ReenterTemplateScopes(Scopes, MaybeTemplated)); in ReenterTemplateScopeRAII() 304 Scopes.Enter(Scope::ClassScope|Scope::DeclScope); in ReenterClassScopeRAII() 337 InFunctionTemplateScope.Scopes.Enter(Scope::FunctionPrototypeScope | in ParseLexedMethodDeclaration() 500 InFunctionTemplateScope.Scopes.Exit(); in ParseLexedMethodDeclaration() 726 InDeclScope.Scopes.Enter(Scope::FnScope | Scope::DeclScope | in ParseLexedAttribute()
|
| H A D | ParseTemplate.cpp | 1643 MultiParseScope Scopes(*this); in ParseLateTemplatedFuncDef() local 1654 ReenterTemplateScopes(Scopes, cast<Decl>(DC))); in ParseLateTemplatedFuncDef() 1655 Scopes.Enter(Scope::DeclScope); in ParseLateTemplatedFuncDef()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| H A D | ScopedNoAliasAA.h | 49 bool mayAliasInScopes(const MDNode *Scopes, const MDNode *NoAlias) const;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | LoopVersioningLICM.cpp | 557 SmallVector<Metadata *, 4> Scopes{NewScope}, NoAliases{NewScope}; in setNoAliasToLoop() local 574 MDNode::get(Inst.getContext(), Scopes))); in setNoAliasToLoop()
|
| H A D | EarlyCSE.cpp | 643 Scopes(AvailableValues, AvailableLoads, AvailableInvariants, in StackNode() 672 NodeScope Scopes; member in __anon16fc0a160311::EarlyCSE::StackNode
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | MachineCSE.cpp | 756 SmallVector<MachineDomTreeNode*, 32> Scopes; in PerformCSE() local 766 Scopes.push_back(Node); in PerformCSE() 773 for (MachineDomTreeNode *Node : Scopes) { in PerformCSE()
|
| H A D | MachineLICM.cpp | 705 SmallVector<MachineDomTreeNode*, 32> Scopes; in HoistOutOfLoop() local 727 Scopes.push_back(Node); in HoistOutOfLoop() 748 if (Scopes.size() == 0) in HoistOutOfLoop() 757 for (MachineDomTreeNode *Node : Scopes) { in HoistOutOfLoop()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | CodeViewDebug.h | 349 void collectLexicalBlockInfo(SmallVectorImpl<LexicalScope *> &Scopes,
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | InlineFunction.cpp | 1071 SmallVector<Metadata *, 4> Scopes, NoAliases; in AddAliasScopeMetadata() local 1164 Scopes.push_back(NewScopes[A]); in AddAliasScopeMetadata() 1167 if (!Scopes.empty()) in AddAliasScopeMetadata() 1171 MDNode::get(CalledFunc->getContext(), Scopes))); in AddAliasScopeMetadata()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/ |
| H A D | InstrRefBasedImpl.cpp | 903 DenseMap<DebugVariable, const DILocation *> Scopes; member in __anon45b083930211::VLocTracker 921 Scopes[Var] = MI.getDebugLoc().get(); in defVar() 936 Scopes[Var] = MI.getDebugLoc().get(); in defVar() 3302 const DILocation *ScopeLoc = VTracker->Scopes[Var]; in ExtendRanges()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | DebugInfo.cpp | 144 Scopes.clear(); in reset() 346 Scopes.push_back(Scope); in addScope()
|