Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFUnit.cpp483 auto B = AddrDieMap.upper_bound(R.LowPC); in updateAddressDieMap()
484 if (B != AddrDieMap.begin() && R.LowPC < (--B)->second.first) { in updateAddressDieMap()
488 AddrDieMap[R.HighPC] = B->second; in updateAddressDieMap()
490 AddrDieMap[B->first].first = R.LowPC; in updateAddressDieMap()
492 AddrDieMap[R.LowPC] = std::make_pair(R.HighPC, Die); in updateAddressDieMap()
508 if (AddrDieMap.empty()) in getSubroutineForAddress()
510 auto R = AddrDieMap.upper_bound(Address); in getSubroutineForAddress()
511 if (R == AddrDieMap.begin()) in getSubroutineForAddress()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFUnit.h288 std::map<uint64_t, std::pair<uint64_t, DWARFDie>> AddrDieMap; variable