Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/
H A DInitHeaderSearch.cpp483 const DirectoryLookup &CurEntry = SearchList[i]; in RemoveDuplicates() local
485 if (CurEntry.isNormalDir()) { in RemoveDuplicates()
487 if (SeenDirs.insert(CurEntry.getDir()).second) in RemoveDuplicates()
489 } else if (CurEntry.isFramework()) { in RemoveDuplicates()
496 if (SeenHeaderMaps.insert(CurEntry.getHeaderMap()).second) in RemoveDuplicates()
507 if (CurEntry.getDirCharacteristic() != SrcMgr::C_User) { in RemoveDuplicates()
516 if (SearchEntry.getLookupType() != CurEntry.getLookupType()) in RemoveDuplicates()
520 if (CurEntry.isNormalDir()) in RemoveDuplicates()
521 isSame = SearchEntry.getDir() == CurEntry.getDir(); in RemoveDuplicates()
522 else if (CurEntry.isFramework()) in RemoveDuplicates()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/DWP/
H A DDWP.cpp474 uint32_t (&ContributionOffsets)[8], UnitIndexEntry &CurEntry, in handleSection() argument
581 UnitIndexEntry CurEntry = {}; in write() local
600 UncompressedSections, ContributionOffsets, CurEntry, in write()
627 CurEntry.Contributions[Index].Offset = ContributionOffsets[Index]; in write()
629 (CurEntry.Contributions[Index].Length = Pair.second); in write()
646 UnitIndexEntry Entry = CurEntry; in write()
686 Out, TypeIndexEntries, TypesSection, CurTypesSection, CurEntry, in write()
711 auto P = IndexEntries.insert(std::make_pair(E.getSignature(), CurEntry)); in write()
782 TypeInputSection, CurEntry, in write()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DWP/
H A DDWP.h74 uint32_t (&ContributionOffsets)[8], UnitIndexEntry &CurEntry,
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp692 auto *CurEntry = Worklist.front(); in remapSectionsAndSymbols() local
698 if (NextSectionAddr + CurEntry->MB.allocatedSize() + TargetSectionSep <= in remapSectionsAndSymbols()
704 Dyld.mapSectionAddress(CurEntry->MB.base(), NextSectionAddr); in remapSectionsAndSymbols()
705 AlreadyAllocated[NextSectionAddr] = CurEntry->MB.allocatedSize(); in remapSectionsAndSymbols()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1758 auto CurEntry = DebugLoc.rbegin(); in buildLocationList() local
1760 dbgs() << CurEntry->getValues().size() << " Values:\n"; in buildLocationList()
1761 for (auto &Value : CurEntry->getValues()) in buildLocationList()
1766 auto PrevEntry = std::next(CurEntry); in buildLocationList()
1767 if (PrevEntry != DebugLoc.rend() && PrevEntry->MergeRanges(*CurEntry)) in buildLocationList()
1791 auto *CurEntry = DebugLoc.begin(); in buildLocationList() local
1792 auto *NextEntry = std::next(CurEntry); in buildLocationList()
1802 if (CurEntry->getEndSym() != RangeMBB->getEndSymbol() || in buildLocationList()
1804 CurEntry->getValues() != NextEntry->getValues()) in buildLocationList()
1807 CurEntry = NextEntry; in buildLocationList()
[all …]