Home
last modified time | relevance | path

Searched refs:MapEntry (Results 1 – 9 of 9) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxMap.cpp26 class MapEntry { class
28 MapEntry() = default;
30 MapEntry(const MapEntry &rhs) = default;
132 m_entry = MapEntry(); in next()
140 MapEntry tree_min(MapEntry &&x) { in tree_min()
142 return MapEntry(); in tree_min()
143 MapEntry left(x.left()); in tree_min()
148 return MapEntry(); in tree_min()
154 return MapEntry(); in tree_min()
162 MapEntry rhs(x.parent()); in is_left_child()
[all …]
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfStringPool.cpp44 auto &MapEntry = getEntryImpl(Asm, Str); in getEntry() local
45 return EntryRef(MapEntry, false); in getEntry()
50 auto &MapEntry = getEntryImpl(Asm, Str); in getIndexedEntry() local
51 if (!MapEntry.getValue().isIndexed()) in getIndexedEntry()
52 MapEntry.getValue().Index = NumIndexedStrings++; in getIndexedEntry()
53 return EntryRef(MapEntry, true); in getIndexedEntry()
/freebsd-12.1/contrib/llvm/include/llvm/Transforms/Scalar/
H A DConstantHoisting.h133 for (auto MapEntry : ConstGEPCandMap) in releaseMemory() local
134 MapEntry.second.clear(); in releaseMemory()
137 for (auto MapEntry : ConstGEPInfoMap) in releaseMemory() local
138 MapEntry.second.clear(); in releaseMemory()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp281 for (const auto &MapEntry : CacheMap) { in fixCacheAfterWrite() local
284 if (Offset + Data.size() < MapEntry.first) in fixCacheAfterWrite()
286 for (const auto &Alloc : MapEntry.second) { in fixCacheAfterWrite()
289 if (MapEntry.first + Alloc.size() < Offset) in fixCacheAfterWrite()
295 std::make_pair(MapEntry.first, MapEntry.first + Alloc.size()); in fixCacheAfterWrite()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp934 for (auto &MapEntry : ConstGEPCandMap) in runImpl() local
935 if (!MapEntry.second.empty()) in runImpl()
936 findBaseConstants(MapEntry.first); in runImpl()
943 for (auto MapEntry : ConstGEPInfoMap) in runImpl() local
944 if (!MapEntry.second.empty()) in runImpl()
945 MadeChange |= emitBaseConstants(MapEntry.first); in runImpl()
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCAsmStreamer.cpp1780 uint8_t MapEntry = FixupMap[i * 8 + 0]; in AddEncodingComment() local
1782 if (FixupMap[i * 8 + j] == MapEntry) in AddEncodingComment()
1785 MapEntry = uint8_t(~0U); in AddEncodingComment()
1789 if (MapEntry != uint8_t(~0U)) { in AddEncodingComment()
1790 if (MapEntry == 0) { in AddEncodingComment()
1796 << char('A' + MapEntry - 1) << '\''; in AddEncodingComment()
1798 OS << char('A' + MapEntry - 1); in AddEncodingComment()
1812 if (uint8_t MapEntry = FixupMap[FixupBit]) { in AddEncodingComment() local
1814 OS << char('A' + MapEntry - 1); in AddEncodingComment()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp729 for (auto MapEntry : ImportedModuleFiles) { in writeIndex() local
730 auto *File = MapEntry.first; in writeIndex()
731 ImportedModuleFileInfo &Info = MapEntry.second; in writeIndex()
/freebsd-12.1/contrib/llvm/lib/IR/
H A DMetadata.cpp457 auto &MapEntry = I.first->getValue(); in get() local
459 return &MapEntry; in get()
460 MapEntry.Entry = &*I.first; in get()
461 return &MapEntry; in get()
/freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/
H A DVPlan.h1170 for (auto &MapEntry : Value2VPValue) in ~VPlan()
1171 if (MapEntry.second != BackedgeTakenCount) in ~VPlan()
1172 delete MapEntry.second; in ~VPlan()