| /llvm-project-15.0.7/llvm/unittests/ProfileData/ |
| H A D | CoverageMappingTest.cpp | 393 ASSERT_EQ(2U, Segments.size()); in TEST_P() 411 ASSERT_EQ(3U, Segments.size()); in TEST_P() 467 ASSERT_EQ(8U, Segments.size()); in TEST_P() 495 ASSERT_EQ(7U, Segments.size()); in TEST_P() 520 ASSERT_EQ(5U, Segments.size()); in TEST_P() 545 ASSERT_EQ(5U, Segments.size()); in TEST_P() 572 ASSERT_EQ(1U, Segments.size()); in TEST_P() 626 ASSERT_EQ(8U, Segments.size()); in TEST_P() 665 ASSERT_EQ(7U, Segments.size()); in TEST_P() 708 ASSERT_EQ(2U, Segments.size()); in TEST_P() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | LiveIntervalUnion.h | 62 LiveSegments Segments; // union of virtual reg segments variable 65 explicit LiveIntervalUnion(Allocator &a) : Segments(a) {} in LiveIntervalUnion() 69 SegmentIter begin() { return Segments.begin(); } in begin() 70 SegmentIter end() { return Segments.end(); } in end() 71 SegmentIter find(SlotIndex x) { return Segments.find(x); } in find() 73 ConstSegmentIter end() const { return Segments.end(); } in end() 76 bool empty() const { return Segments.empty(); } in empty() 77 SlotIndex startIndex() const { return Segments.start(); } in startIndex() 78 SlotIndex endIndex() const { return Segments.stop(); } in endIndex() 82 const Map &getMap() const { return Segments; } in getMap() [all …]
|
| /llvm-project-15.0.7/llvm/utils/TableGen/ |
| H A D | VarLenCodeEmitterGen.h | 34 SmallVector<EncodingSegment, 4> Segments; variable 54 using const_iterator = decltype(Segments)::const_iterator; 56 const_iterator begin() const { return Segments.begin(); } in begin() 57 const_iterator end() const { return Segments.end(); } in end() 58 size_t getNumSegments() const { return Segments.size(); } in getNumSegments()
|
| H A D | VarLenCodeEmitterGen.cpp | 92 for (const auto &S : Segments) in VarLenInst() 112 Segments.push_back({BI->getNumBits(), BI}); in buildRec() 117 Segments.push_back({1, BI}); in buildRec() 142 Segments.push_back( in buildRec() 177 Segments.push_back({NumBits, in buildRec() 181 Segments.push_back({NumBits, DI, CustomEncoder}); in buildRec()
|
| /llvm-project-15.0.7/llvm/lib/ProfileData/Coverage/ |
| H A D | CoverageMapping.cpp | 417 std::vector<CoverageSegment> &Segments; member in __anon5c062acd0311::SegmentBuilder 420 SegmentBuilder(std::vector<CoverageSegment> &Segments) : Segments(Segments) {} in SegmentBuilder() argument 433 const auto &Last = Segments.back(); in startSegment() 624 SegmentBuilder Builder(Segments); in buildSegments() 641 const auto &L = Segments[I - 1]; in buildSegments() 642 const auto &R = Segments[I]; in buildSegments() 653 return Segments; in buildSegments() 851 if (Segments.size()) in operator ++() 852 WrappedSegment = Segments.back(); in operator ++() 853 Segments.clear(); in operator ++() [all …]
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | LiveIntervalUnion.cpp | 38 SegmentIter SegPos = Segments.find(RegPos->start); in unify() 66 SegmentIter SegPos = Segments.find(RegPos->start); in extract() 89 for (LiveSegments::const_iterator SI = Segments.begin(); SI.valid(); ++SI) { in print() 99 for (SegmentIter SI = Segments.begin(); SI.valid(); ++SI) in verify() 107 for (LiveSegments::const_iterator SI = Segments.begin(); SI.valid(); ++SI) { in getOneVReg()
|
| /llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
| H A D | TargetProcessControlTypes.h | 81 std::vector<SegFinalizeRequest> Segments; member 92 std::vector<SharedMemorySegFinalizeRequest> Segments; member 212 return FRAL::size(FR.Segments, FR.Actions); in size() 217 return FRAL::serialize(OB, FR.Segments, FR.Actions); in serialize() 221 return FRAL::deserialize(IB, FR.Segments, FR.Actions); in deserialize() 253 return FRAL::size(FR.Segments, FR.Actions); in size() 258 return FRAL::serialize(OB, FR.Segments, FR.Actions); in serialize() 263 return FRAL::deserialize(IB, FR.Segments, FR.Actions); in deserialize()
|
| /llvm-project-15.0.7/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageViewText.cpp | 103 CoverageSegmentArray Segments = LCS.getLineSegments(); in renderLine() local 115 for (const auto *S : Segments) { in renderLine() 179 CoverageSegmentArray Segments = Line.getLineSegments(); in renderRegionMarkers() local 182 if (Segments.size() > 1) in renderRegionMarkers() 183 Segments = Segments.drop_back(); in renderRegionMarkers() 186 for (const auto *S : Segments) { in renderRegionMarkers()
|
| H A D | SourceCoverageViewHTML.cpp | 511 CoverageSegmentArray Segments = LCS.getLineSegments(); in renderLine() local 519 Snip(LCol - 1, Segments.empty() ? 0 : (Segments.front()->Col - 1)); in renderLine() 521 for (unsigned I = 1, E = Segments.size(); I < E; ++I) in renderLine() 522 Snip(LCol - 1, Segments[I]->Col - LCol); in renderLine() 555 for (unsigned I = 0, E = Segments.size(); I < E; ++I) { in renderLine() 556 const auto *CurSeg = Segments[I]; in renderLine() 569 if (Color && Segments.empty()) in renderLine() 588 for (unsigned I = 0, E = Segments.size() - 1; I < E; ++I) { in renderLine() 589 const auto *CurSeg = Segments[I]; in renderLine()
|
| H A D | SourceCoverageView.cpp | 122 CoverageSegmentArray Segments = LCS.getLineSegments(); in shouldRenderRegionMarkers() local 123 if (Segments.empty()) in shouldRenderRegionMarkers() 125 for (unsigned I = 0, E = Segments.size() - 1; I < E; ++I) { in shouldRenderRegionMarkers() 126 const auto *CurSeg = Segments[I]; in shouldRenderRegionMarkers()
|
| /llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/JITLink/ |
| H A D | JITLinkMemoryManager.h | 271 return {Segments.begin(), Segments.end()}; in segments() 284 SegmentMap Segments; variable 320 SegmentMap Segments, OnCreatedFunction OnCreated); 324 SegmentMap Segments);
|
| /llvm-project-15.0.7/llvm/test/ObjectYAML/wasm/ |
| H A D | elem_section.yaml | 15 Segments: 32 # CHECK: Segments:
|
| H A D | data_section.yaml | 10 Segments: 59 # CHECK-NEXT: Segments:
|
| H A D | multiple-tables.yaml | 49 Segments: 110 # CHECK-NEXT: Segments:
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-readobj/wasm/ |
| H A D | globals.test | 10 Segments: 23 # CHECK-NEXT: Segments [
|
| /llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/ |
| H A D | SymbolIndexManager.cpp | 38 int Segments = 0; in similarityScore() local 42 ++Segments; in similarityScore() 44 MaxSegments = std::max(Segments, MaxSegments); in similarityScore()
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | JITLinkMemoryManager.cpp | 31 auto &Seg = Segments[{Sec.getMemProt(), Sec.getMemDeallocPolicy()}]; in BasicLayout() 50 for (auto &KV : Segments) { in BasicLayout() 102 for (auto &KV : Segments) { in apply() 146 const JITLinkDylib *JD, SegmentMap Segments, in Create() argument 162 for (auto &KV : Segments) { in Create() 201 SegmentMap Segments) { in Create() argument 204 Create(MemMgr, JD, std::move(Segments), in Create()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/minidump/ |
| H A D | RegisterContextMinidump_x86_32.h | 121 Segments = x86_32_Flag | 0x00000004, enumerator 127 Full = Control | Integer | Segments,
|
| H A D | RegisterContextMinidump_x86_64.h | 167 Segments = x86_64_Flag | 0x00000004, enumerator 173 All = Full | Segments | DebugRegisters,
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/ |
| H A D | MemoryMapper.cpp | 64 for (auto &Segment : AI.Segments) { in initialize() 296 FR.Segments.reserve(AI.Segments.size()); in initialize() 298 for (auto Segment : AI.Segments) { in initialize() 309 FR.Segments.push_back(SegReq); in initialize()
|
| /llvm-project-15.0.7/lld/test/wasm/ |
| H A D | tls-non-shared-memory-basic.s | 29 # CHECK-NEXT: Segments: 56 # PIC-NEXT: Segments:
|
| H A D | data-segment-merging.ll | 17 ; MERGE-NEXT: Segments: 43 ; SEPARATE-NEXT: Segments: 88 ; PASSIVE-MERGE-NEXT: Segments: 113 ; PASSIVE-SEPARATE-NEXT: Segments:
|
| /llvm-project-15.0.7/llvm/unittests/ExecutionEngine/Orc/ |
| H A D | MemoryMapperTest.cpp | 98 Alloc1.Segments.push_back(Seg1); in TEST() 122 Alloc2.Segments.push_back(Seg2); in TEST() 174 Alloc3.Segments.push_back(Seg3); in TEST()
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/TargetProcess/ |
| H A D | SimpleExecutorMemoryManager.cpp | 41 if (FR.Segments.empty()) { in finalize() 51 for (auto &Seg : FR.Segments) in finalize() 110 for (auto &Seg : FR.Segments) { in finalize()
|
| /llvm-project-15.0.7/clang/lib/Tooling/DependencyScanning/ |
| H A D | ModuleDepCollector.cpp | 115 SmallVector<StringRef> Segments; in splitString() local 116 StringRef(S).split(Segments, Separator, /*MaxSplit=*/-1, /*KeepEmpty=*/false); in splitString() 118 Result.reserve(Segments.size()); in splitString() 119 for (StringRef Segment : Segments) in splitString()
|