Home
last modified time | relevance | path

Searched refs:CurEntry (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DInitHeaderSearch.cpp286 const DirectoryLookup &CurEntry = SearchList[i].Lookup; in RemoveDuplicates() local
288 if (CurEntry.isNormalDir()) { in RemoveDuplicates()
290 if (SeenDirs.insert(CurEntry.getDir()).second) in RemoveDuplicates()
292 } else if (CurEntry.isFramework()) { in RemoveDuplicates()
294 if (SeenFrameworkDirs.insert(CurEntry.getFrameworkDir()).second) in RemoveDuplicates()
297 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?"); in RemoveDuplicates()
299 if (SeenHeaderMaps.insert(CurEntry.getHeaderMap()).second) in RemoveDuplicates()
310 if (CurEntry.getDirCharacteristic() != SrcMgr::C_User) { in RemoveDuplicates()
319 if (SearchEntry.getLookupType() != CurEntry.getLookupType()) in RemoveDuplicates()
323 if (CurEntry.isNormalDir()) in RemoveDuplicates()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DWP/
H A DDWP.cpp560 uint32_t (&ContributionOffsets)[8], UnitIndexEntry &CurEntry, in handleSection() argument
674 UnitIndexEntry CurEntry = {}; in write() local
693 UncompressedSections, ContributionOffsets, CurEntry, in write()
720 CurEntry.Contributions[Index].setOffset(ContributionOffsets[Index]); in write()
721 CurEntry.Contributions[Index].setLength(Pair.second); in write()
723 ContributionOffsets[Index] += CurEntry.Contributions[Index].getLength32(); in write()
754 UnitIndexEntry Entry = CurEntry; in write()
812 Out, TypeIndexEntries, TypesSection, CurTypesSection, CurEntry, in write()
841 auto P = IndexEntries.insert(std::make_pair(E.getSignature(), CurEntry)); in write()
913 CurEntry, ContributionOffsets[TypesContributionIndex], in write()
/freebsd/contrib/llvm-project/llvm/include/llvm/DWP/
H A DDWP.h80 uint32_t (&ContributionOffsets)[8], UnitIndexEntry &CurEntry,
/freebsd/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp741 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()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1801 auto CurEntry = DebugLoc.rbegin(); in buildLocationList() local
1803 dbgs() << CurEntry->getValues().size() << " Values:\n"; in buildLocationList()
1804 for (auto &Value : CurEntry->getValues()) in buildLocationList()
1809 auto PrevEntry = std::next(CurEntry); in buildLocationList()
1810 if (PrevEntry != DebugLoc.rend() && PrevEntry->MergeRanges(*CurEntry)) in buildLocationList()
1837 auto *CurEntry = DebugLoc.begin(); in buildLocationList() local
1838 auto *NextEntry = std::next(CurEntry); in buildLocationList()
1849 CurEntry->getEndSym() != RangeIt->second.EndLabel) || in buildLocationList()
1851 CurEntry->getValues() != NextEntry->getValues()) in buildLocationList()
1855 CurEntry = NextEntry; in buildLocationList()
[all …]