Home
last modified time | relevance | path

Searched refs:AddressToSymbolId (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DSymbolCache.cpp335 auto Iter = AddressToSymbolId.find({Sect, Offset}); in findFunctionSymbolBySectOffset()
336 if (Iter != AddressToSymbolId.end()) in findFunctionSymbolBySectOffset()
362 auto Found = AddressToSymbolId.find({PS.Segment, PS.CodeOffset}); in findFunctionSymbolBySectOffset()
363 if (Found != AddressToSymbolId.end()) in findFunctionSymbolBySectOffset()
368 AddressToSymbolId.insert({{PS.Segment, PS.CodeOffset}, Id}); in findFunctionSymbolBySectOffset()
/external/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
DSymbolCache.h66 mutable DenseMap<std::pair<uint32_t, uint32_t>, SymIndexId> AddressToSymbolId; variable