/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | AddressRanges.h | 76 typename Collection::const_iterator It = find(Addr, Addr + 1); in getRangeThatContains() local 77 if (It == Ranges.end()) in getRangeThatContains() 80 return *It; in getRangeThatContains() 100 auto It = in find() local 105 if (It == Ranges.begin()) in find() 108 --It; in find() 109 if (End > AddressRange(*It).end()) in find() 112 return It; in find() 127 auto It = llvm::upper_bound(Ranges, Range); in insert() local 128 auto It2 = It; in insert() [all …]
|
H A D | CoalescingBitVector.h | 87 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; ++It) in count() local 88 Bits += 1 + It.stop() - It.start(); in count() 108 for (auto It = Other.Intervals.begin(), End = Other.Intervals.end(); in set() local 109 It != End; ++It) in set() 110 insert(It.start(), It.stop()); in set() 121 const auto It = Intervals.find(Index); in test() local 122 if (It == Intervals.end()) in test() 124 assert(It.stop() >= Index && "Interval must end after Index"); in test() 125 return It.start() <= Index; in test() 136 auto It = Intervals.find(Index); in reset() local [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_leb128.h | 17 template <typename T, typename It> 18 It EncodeSLEB128(T value, It begin, It end) { in EncodeSLEB128() 35 template <typename T, typename It> 36 It DecodeSLEB128(It begin, It end, T* v) { in DecodeSLEB128() 54 template <typename T, typename It> 55 It EncodeULEB128(T value, It begin, It end) { in EncodeULEB128() 68 template <typename T, typename It> 69 It DecodeULEB128(It begin, It end, T* v) { in DecodeULEB128()
|
/freebsd/contrib/ntp/ntpq/ |
H A D | ntpq-opts.def | 226 .It Ic ? Op Ar command 227 .It Ic help Op Ar command 237 .It Ic addvars Ar name Ns Oo \&= Ns Ar value Oc Ns Op ,... 238 .It Ic rmvars Ar name Ns Op ,... 239 .It Ic clearvars 240 .It Ic showvars 272 .It Ic authenticate Op Cm yes Ns | Ns Cm no 291 .It Ic cooked 302 .It Ic debug Op Cm more Ns | Ns Cm less Ns | Ns Cm off 305 .It Ic delay Op Ar milliseconds [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclLookups.h | 29 StoredDeclsMap::iterator It, End; variable 39 all_lookups_iterator(StoredDeclsMap::iterator It, in all_lookups_iterator() argument 41 : It(It), End(End) {} in all_lookups_iterator() 43 DeclarationName getLookupName() const { return It->first; } in getLookupName() 45 reference operator*() const { return It->second.getLookupResult(); } 46 pointer operator->() const { return It->second.getLookupResult(); } 53 ++It; 54 } while (It != End && 55 It->first == DeclarationName::getUsingDirectiveName()); 67 return x.It == y.It; [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/ |
H A D | CodeRegion.cpp | 50 auto It = ActiveRegions.find(Description); in beginRegion() local 51 if (It != ActiveRegions.end()) { in beginRegion() 52 const CodeRegion &R = *Regions[It->second]; in beginRegion() 82 auto It = ActiveRegions.begin(); in endRegion() local 83 Regions[It->second]->setEndLocation(Loc); in endRegion() 84 ActiveRegions.erase(It); in endRegion() 96 auto It = ActiveRegions.find(Description); in endRegion() local 97 if (It != ActiveRegions.end()) { in endRegion() 98 Regions[It->second]->setEndLocation(Loc); in endRegion() 99 ActiveRegions.erase(It); in endRegion() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | MacroExpansionContext.cpp | 61 MacroExpansionContext::ExpansionRangeMap::iterator It; in MacroExpands() local 63 std::tie(It, Inserted) = in MacroExpands() 67 It->getFirst().print(llvm::dbgs(), SM); llvm::dbgs() << " to "; in MacroExpands() 68 It->getSecond().print(llvm::dbgs(), SM); in MacroExpands() 71 if (SM.isBeforeInTranslationUnit(It->getSecond(), ExpansionEnd)) { in MacroExpands() 72 It->getSecond() = ExpansionEnd; in MacroExpands() 74 llvm::dbgs() << "remaps "; It->getFirst().print(llvm::dbgs(), SM); in MacroExpands() 75 llvm::dbgs() << " to "; It->getSecond().print(llvm::dbgs(), SM); in MacroExpands() 110 const auto It = ExpandedTokens.find_as(MacroExpansionLoc); in getExpandedText() local 111 if (It == ExpandedTokens.end()) in getExpandedText() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerDataFlowTrace.h | 53 auto It = Functions.find(FunctionId); in GetCounter() local 54 if (It == Functions.end()) in GetCounter() 56 const auto &Counters = It->second; in GetCounter() 63 auto It = Functions.find(FunctionId); in GetNumberOfBlocks() local 64 if (It == Functions.end()) return 0; in GetNumberOfBlocks() 65 const auto &Counters = It->second; in GetNumberOfBlocks() 70 auto It = Functions.find(FunctionId); in GetNumberOfCoveredBlocks() local 71 if (It == Functions.end()) return 0; in GetNumberOfCoveredBlocks() 72 const auto &Counters = It->second; in GetNumberOfCoveredBlocks() 123 auto It = Traces.find(InputSha1); in Get() local [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | R600OptimizeVectorRegisters.cpp | 153 for (auto &It : ToMerge->RegToChan) { in tryMergeVector() local 155 Untouched->RegToChan.find(It.first); in tryMergeVector() 157 Remap.emplace_back(It.second, (*PosInUntouched).second); in tryMergeVector() 162 Remap.emplace_back(It.second, Untouched->UndefReg[CurrentUndexIdx++]); in tryMergeVector() 190 for (const auto &It : RSI->RegToChan) { in RebuildVector() local 192 unsigned SubReg = It.first; in RebuildVector() 193 unsigned Swizzle = It.second; in RebuildVector() 216 for (MachineRegisterInfo::use_instr_iterator It = MRI->use_instr_begin(Reg), in RebuildVector() local 217 E = MRI->use_instr_end(); It != E; ++It) { in RebuildVector() 218 LLVM_DEBUG(dbgs() << " "; (*It).dump(); dbgs() << " ->"); in RebuildVector() [all …]
|
H A D | R600MachineCFGStructurizer.cpp | 189 int countActiveBlock(MBBVector::const_iterator It, 324 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB); in getSCCNum() local 325 if (It == BlockInfoMap.end()) in getSCCNum() 327 return (*It).second->SccNum; in getSCCNum() 332 LoopLandInfoMap::const_iterator It = LLInfoMap.find(LoopRep); in getLoopLandInfo() local 333 if (It == LLInfoMap.end()) in getLoopLandInfo() 335 return (*It).second; in getLoopLandInfo() 347 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB); in isRetiredBlock() local 348 if (It == BlockInfoMap.end()) in isRetiredBlock() 350 return (*It).second->IsRetired; in isRetiredBlock() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | SwiftErrorValueTracking.cpp | 29 auto It = VRegDefMap.find(Key); in getOrCreateVReg() local 34 if (It == VRegDefMap.end()) { in getOrCreateVReg() 42 return It->second; in getOrCreateVReg() 53 auto It = VRegDefUses.find(Key); in getOrCreateVRegDefAt() local 54 if (It != VRegDefUses.end()) in getOrCreateVRegDefAt() 55 return It->second; in getOrCreateVRegDefAt() 68 auto It = VRegDefUses.find(Key); in getOrCreateVRegUseAt() local 69 if (It != VRegDefUses.end()) in getOrCreateVRegUseAt() 70 return It->second; in getOrCreateVRegUseAt() 129 // We will always generate a copy from the argument. It i in createEntriesInEntryBlock() 265 for (auto It = Begin; It != End; ++It) { preassignVRegs() local [all...] |
H A D | FixupStatepointCallerSaved.cpp | 127 for (auto It = ++(RI.getReverse()); It != E; ++It) { in performCopyPropagation() local 128 if (It->readsRegister(Reg, &TRI) && !Use) in performCopyPropagation() 129 Use = &*It; in performCopyPropagation() 130 if (It->modifiesRegister(Reg, &TRI)) { in performCopyPropagation() 131 Def = &*It; in performCopyPropagation() 241 for (auto &It : Cache) in reset() local 242 It.second.Index = 0; in reset() 253 auto It = GlobalIndices.find(EHPad); in getFrameIndex() local 254 if (It != GlobalIndices.end()) { in getFrameIndex() 255 auto &Vec = It->second; in getFrameIndex() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/ |
H A D | Graph.h | 213 auto It = NL.find(A); in begin() local 214 if (It == NL.end()) in begin() 216 return iterator(It->second.begin(), &M, A); in begin() 220 auto It = NL.find(A); in cbegin() local 221 if (It == NL.end()) in cbegin() 223 return const_iterator(It->second.begin(), &M, A); in cbegin() 229 auto It = NL.find(A); in end() local 230 if (It == NL.end()) in end() 232 return iterator(It->second.end(), &M, A); in end() 235 auto It in cend() local 399 auto It = Vertices.find(I); at() local 408 auto It = Vertices.find(I); at() local 418 auto It = Edges.find(I); at() local 427 auto It = Edges.find(I); at() local [all...] |
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | InterfaceFile.cpp | 97 auto It = lower_bound( in inlineLibrary() local 103 if (Overwrite && It != Documents.end() && in inlineLibrary() 104 Reexport->getInstallName() == (*It)->getInstallName()) { in inlineLibrary() 105 std::replace(Documents.begin(), Documents.end(), *It, in inlineLibrary() 110 if ((It != Documents.end()) && in inlineLibrary() 111 !(Reexport->getInstallName() < (*It)->getInstallName())) in inlineLibrary() 114 Documents.emplace(It, std::move(Reexport)); in inlineLibrary() 173 for (const auto &It : umbrellas()) { in merge() local 174 if (!It.second.empty()) in merge() 175 IF->addParentUmbrella(It.first, It.second); in merge() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | BlockCoverageInference.cpp | 68 auto It = PredecessorDependencies.find(&BB); in getDependencies() local 69 if (It != PredecessorDependencies.end()) in getDependencies() 70 Dependencies.set_union(It->second); in getDependencies() 71 It = SuccessorDependencies.find(&BB); in getDependencies() 72 if (It != SuccessorDependencies.end()) in getDependencies() 73 Dependencies.set_union(It->second); in getDependencies() 93 auto It = PredecessorDependencies.find(&BB); in shouldInstrumentBlock() local 94 if (It != PredecessorDependencies.end() && It->second.size()) in shouldInstrumentBlock() 96 It = SuccessorDependencies.find(&BB); in shouldInstrumentBlock() 97 if (It != SuccessorDependencies.end() && It->second.size()) in shouldInstrumentBlock() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/ |
H A D | SymbolFileBreakpad.cpp | 205 LineIterator It(*m_objfile_sp, Record::Func, data.bookmark), in ParseCompileUnitAtIndex() local 207 assert(Record::classify(*It) == Record::Func); in ParseCompileUnitAtIndex() 208 ++It; // Skip FUNC record. in ParseCompileUnitAtIndex() 210 while (It != End && Record::classify(*It) == Record::Inline) in ParseCompileUnitAtIndex() 211 ++It; in ParseCompileUnitAtIndex() 213 if (It != End) { in ParseCompileUnitAtIndex() 214 auto record = LineRecord::parse(*It); in ParseCompileUnitAtIndex() 245 LineIterator It(*m_objfile_sp, Record::Func, data.bookmark); in GetOrCreateFunction() local 246 assert(Record::classify(*It) == Record::Func); in GetOrCreateFunction() 248 if (auto record = FuncRecord::parse(*It)) { in GetOrCreateFunction() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | CFG.h | 52 USE_iterator It; variable 56 while (!It.atEnd()) { in advancePastNonTerminators() 57 if (auto *Inst = dyn_cast<Instruction>(*It)) in advancePastNonTerminators() 61 ++It; in advancePastNonTerminators() 67 explicit inline PredIterator(Ptr *bb) : It(bb->user_begin()) { in PredIterator() 70 inline PredIterator(Ptr *bb, bool) : It(bb->user_end()) {} in PredIterator() 72 inline bool operator==(const Self& x) const { return It == x.It; } 76 assert(!It.atEnd() && "pred_iterator out of range!"); 77 return cast<Instruction>(*It)->getParent(); 82 assert(!It.atEnd() && "pred_iterator out of range!"); [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Record.cpp | 40 auto It = FieldMap.find(FD); in getField() local 41 assert(It != FieldMap.end() && "Missing field"); in getField() 42 return It->second; in getField() 46 auto It = BaseMap.find(FD); in getBase() local 47 assert(It != BaseMap.end() && "Missing base"); in getBase() 48 return It->second; in getBase() 60 auto It = VirtualBaseMap.find(FD); in getVirtualBase() local 61 assert(It != VirtualBaseMap.end() && "Missing virtual base"); in getVirtualBase() 62 return It->second; in getVirtualBase()
|
H A D | Program.cpp | 22 auto It = NativePointerIndices.find(Ptr); in getOrCreateNativePointer() local 23 if (It != NativePointerIndices.end()) in getOrCreateNativePointer() 24 return It->second; in getOrCreateNativePointer() 110 if (auto It = GlobalIndices.find(VD); It != GlobalIndices.end()) in getGlobal() local 111 return It->second; in getGlobal() 116 if (auto It = GlobalIndices.find(P); It != GlobalIndices.end()) { in getGlobal() local 117 Index = It->second; in getGlobal() 130 if (auto It = GlobalIndices.find(E); It != GlobalIndices.end()) in getGlobal() local 131 return It->second; in getGlobal() 149 if (auto It = DummyVariables.find(VD); It != DummyVariables.end()) in getOrCreateDummy() local [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | AssignmentTrackingAnalysis.h | 74 const auto *It = VarLocRecords.begin(); in locs_begin() 75 std::advance(It, SingleVarLocEnd); in locs_begin() 76 return It; in locs_begin() 81 const auto *It = VarLocRecords.begin(); in locs_end() local 82 std::advance(It, Span.first); in locs_end() 83 return It; in locs_end() 89 const auto *It = VarLocRecords.begin(); 90 std::advance(It, Span.second); 91 return It; 66 const auto *It = VarLocRecords.begin(); single_locs_end() local 73 const auto *It = VarLocRecords.begin(); locs_begin() local
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | LoopUnrollAndJam.cpp | 361 for (unsigned It = 1; It != Count; ++It) { in UnrollAndJamLoop() local 371 BasicBlock *New = CloneBasicBlock(*BB, VMap, "." + Twine(It)); in UnrollAndJamLoop() 397 PrevItValueMap[New] = (It == 1 ? *BB : LastValueMap[*BB]); in UnrollAndJamLoop() 402 const_cast<Value *>(It == 1 ? VI->first : LastValueMap[VI->first]); in UnrollAndJamLoop() 410 DT->addNewBlock(New, ForeBlocksLast[It - 1]); in UnrollAndJamLoop() 412 DT->addNewBlock(New, SubLoopBlocksLast[It - 1]); in UnrollAndJamLoop() 414 DT->addNewBlock(New, AftBlocksLast[It - 1]); in UnrollAndJamLoop() 439 for (PHINode &Phi : ForeBlocksFirst[It]->phis()) { in UnrollAndJamLoop() 440 Value *OldValue = Phi.getIncomingValueForBlock(AftBlocksLast[It]); in UnrollAndJamLoop() 447 Phi.setIncomingBlock(0, ForeBlocksLast[It - 1]); in UnrollAndJamLoop() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/ |
H A D | func-id-helper.cpp | 27 auto It = FunctionAddresses.find(FuncId); in SymbolOrNumber() local 28 if (It == FunctionAddresses.end()) { in SymbolOrNumber() 34 ModuleAddress.Address = It->second; in SymbolOrNumber() 41 F << "@(" << std::hex << It->second << ")"; in SymbolOrNumber() 46 F << "@(" << std::hex << It->second << ")"; in SymbolOrNumber() 55 auto It = FunctionAddresses.find(FuncId); in FileLineAndColumn() local 56 if (It == FunctionAddresses.end()) in FileLineAndColumn() 61 ModuleAddress.Address = It->second; in FileLineAndColumn()
|
/freebsd/contrib/llvm-project/llvm/lib/SandboxIR/ |
H A D | SandboxIR.cpp | 257 assert(It != ItE && "Already at end!"); in operator ++() 258 ++It; in operator ++() 259 if (It == ItE) in operator ++() 261 Instruction &NextI = *cast<sandboxir::Instruction>(Ctx->getValue(&*It)); in operator ++() 264 It = std::next(It, Num - 1); in operator ++() 269 assert(It != BB->begin() && "Already at begin!"); in operator --() 270 if (It == BB->end()) { in operator --() 271 --It; in operator --() 277 assert(std::prev(It, Num - 1) != BB->begin() && "Already at begin!"); in operator --() 278 It = std::prev(It, Num); in operator --() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ |
H A D | BlotMapVector.h | 80 typename MapTy::iterator It = Map.find(Key); in find() local 81 if (It == Map.end()) in find() 83 return Vector.begin() + It->second; in find() 87 typename MapTy::const_iterator It = Map.find(Key); in find() local 88 if (It == Map.end()) in find() 90 return Vector.begin() + It->second; in find() 97 typename MapTy::iterator It = Map.find(Key); in blot() local 98 if (It == Map.end()) in blot() 100 Vector[It->second].first = KeyT(); in blot() 101 Map.erase(It); in blot()
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
H A D | OutputSections.h | 318 SectionsSetTy::const_iterator It = SectionDescriptors.find(SectionKind); in getSectionDescriptor() local 320 if (It == SectionDescriptors.end()) in getSectionDescriptor() 326 return *It->second; in getSectionDescriptor() 333 SectionsSetTy::iterator It = SectionDescriptors.find(SectionKind); in getSectionDescriptor() local 335 if (It == SectionDescriptors.end()) in getSectionDescriptor() 341 assert(It->second.get() != nullptr); in getSectionDescriptor() 343 return *It->second; in getSectionDescriptor() 350 SectionsSetTy::const_iterator It = SectionDescriptors.find(SectionKind); in tryGetSectionDescriptor() local 352 if (It == SectionDescriptors.end()) in tryGetSectionDescriptor() 355 return It->second.get(); in tryGetSectionDescriptor() [all …]
|