Searched refs:CurEntry (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/llvm/clang/lib/Lex/ |
| H A D | InitHeaderSearch.cpp | 490 const DirectoryLookup &CurEntry = SearchList[i].Lookup; in RemoveDuplicates() local 492 if (CurEntry.isNormalDir()) { in RemoveDuplicates() 494 if (SeenDirs.insert(CurEntry.getDir()).second) in RemoveDuplicates() 496 } else if (CurEntry.isFramework()) { in RemoveDuplicates() 498 if (SeenFrameworkDirs.insert(CurEntry.getFrameworkDir()).second) in RemoveDuplicates() 501 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?"); in RemoveDuplicates() 503 if (SeenHeaderMaps.insert(CurEntry.getHeaderMap()).second) in RemoveDuplicates() 514 if (CurEntry.getDirCharacteristic() != SrcMgr::C_User) { in RemoveDuplicates() 523 if (SearchEntry.getLookupType() != CurEntry.getLookupType()) in RemoveDuplicates() 527 if (CurEntry.isNormalDir()) in RemoveDuplicates() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/DWP/ |
| H A D | DWP.cpp | 489 uint32_t (&ContributionOffsets)[8], UnitIndexEntry &CurEntry, in handleSection() argument 601 UnitIndexEntry CurEntry = {}; in write() local 620 UncompressedSections, ContributionOffsets, CurEntry, in write() 647 CurEntry.Contributions[Index].setOffset(ContributionOffsets[Index]); in write() 648 CurEntry.Contributions[Index].setLength(Pair.second); in write() 649 ContributionOffsets[Index] += CurEntry.Contributions[Index].getLength32(); in write() 666 UnitIndexEntry Entry = CurEntry; in write() 713 Out, TypeIndexEntries, TypesSection, CurTypesSection, CurEntry, in write() 738 auto P = IndexEntries.insert(std::make_pair(E.getSignature(), CurEntry)); in write() 809 TypeInputSection, CurEntry, in write()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DWP/ |
| H A D | DWP.h | 74 uint32_t (&ContributionOffsets)[8], UnitIndexEntry &CurEntry,
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-rtdyld/ |
| H A D | llvm-rtdyld.cpp | 741 auto *CurEntry = Worklist.front(); in remapSectionsAndSymbols() local 747 if (NextSectionAddr + CurEntry->MB.allocatedSize() + TargetSectionSep <= in remapSectionsAndSymbols() 753 Dyld.mapSectionAddress(CurEntry->MB.base(), NextSectionAddr); in remapSectionsAndSymbols() 754 AlreadyAllocated[NextSectionAddr] = CurEntry->MB.allocatedSize(); in remapSectionsAndSymbols()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfDebug.cpp | 1778 auto CurEntry = DebugLoc.rbegin(); in buildLocationList() local 1780 dbgs() << CurEntry->getValues().size() << " Values:\n"; in buildLocationList() 1781 for (auto &Value : CurEntry->getValues()) in buildLocationList() 1786 auto PrevEntry = std::next(CurEntry); in buildLocationList() 1787 if (PrevEntry != DebugLoc.rend() && PrevEntry->MergeRanges(*CurEntry)) in buildLocationList() 1811 auto *CurEntry = DebugLoc.begin(); in buildLocationList() local 1812 auto *NextEntry = std::next(CurEntry); in buildLocationList() 1822 if (CurEntry->getEndSym() != RangeMBB->getEndSymbol() || in buildLocationList() 1824 CurEntry->getValues() != NextEntry->getValues()) in buildLocationList() 1827 CurEntry = NextEntry; in buildLocationList() [all …]
|