Searched refs:CurEntry (Results 1 – 5 of 5) sorted by relevance
| /src/contrib/llvm-project/clang/lib/Lex/ |
| H A D | InitHeaderSearch.cpp | 380 const DirectoryLookup &CurEntry = SearchList[i].Lookup; in RemoveDuplicates() local 382 if (CurEntry.isNormalDir()) { in RemoveDuplicates() 384 if (SeenDirs.insert(CurEntry.getDir()).second) in RemoveDuplicates() 386 } else if (CurEntry.isFramework()) { in RemoveDuplicates() 388 if (SeenFrameworkDirs.insert(CurEntry.getFrameworkDir()).second) in RemoveDuplicates() 391 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?"); in RemoveDuplicates() 393 if (SeenHeaderMaps.insert(CurEntry.getHeaderMap()).second) in RemoveDuplicates() 404 if (CurEntry.getDirCharacteristic() != SrcMgr::C_User) { in RemoveDuplicates() 413 if (SearchEntry.getLookupType() != CurEntry.getLookupType()) in RemoveDuplicates() 417 if (CurEntry.isNormalDir()) in RemoveDuplicates() [all …]
|
| /src/contrib/llvm-project/llvm/lib/DWP/ |
| H A D | DWP.cpp | 563 uint32_t (&ContributionOffsets)[8], UnitIndexEntry &CurEntry, in handleSection() argument 677 UnitIndexEntry CurEntry = {}; in write() local 696 UncompressedSections, ContributionOffsets, CurEntry, in write() 723 CurEntry.Contributions[Index].setOffset(ContributionOffsets[Index]); in write() 724 CurEntry.Contributions[Index].setLength(Pair.second); in write() 726 ContributionOffsets[Index] += CurEntry.Contributions[Index].getLength32(); in write() 757 UnitIndexEntry Entry = CurEntry; in write() 815 Out, TypeIndexEntries, TypesSection, CurTypesSection, CurEntry, in write() 844 auto P = IndexEntries.insert(std::make_pair(E.getSignature(), CurEntry)); in write() 916 CurEntry, ContributionOffsets[TypesContributionIndex], in write()
|
| /src/contrib/llvm-project/llvm/include/llvm/DWP/ |
| H A D | DWP.h | 81 uint32_t (&ContributionOffsets)[8], UnitIndexEntry &CurEntry,
|
| /src/contrib/llvm-project/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()
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfDebug.cpp | 1795 auto CurEntry = DebugLoc.rbegin(); in buildLocationList() local 1797 dbgs() << CurEntry->getValues().size() << " Values:\n"; in buildLocationList() 1798 for (auto &Value : CurEntry->getValues()) in buildLocationList() 1803 auto PrevEntry = std::next(CurEntry); in buildLocationList() 1804 if (PrevEntry != DebugLoc.rend() && PrevEntry->MergeRanges(*CurEntry)) in buildLocationList() 1828 auto *CurEntry = DebugLoc.begin(); in buildLocationList() local 1829 auto *NextEntry = std::next(CurEntry); in buildLocationList() 1839 if (CurEntry->getEndSym() != RangeMBB->getEndSymbol() || in buildLocationList() 1841 CurEntry->getValues() != NextEntry->getValues()) in buildLocationList() 1844 CurEntry = NextEntry; in buildLocationList() [all …]
|