HomeSort by: relevance | last modified time | path
    Searched refs:AddrDieMap (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFUnit.cpp 644 auto B = AddrDieMap.upper_bound(R.LowPC);
645 if (B != AddrDieMap.begin() && R.LowPC < (--B)->second.first) {
649 AddrDieMap[R.HighPC] = B->second;
651 AddrDieMap[B->first].first = R.LowPC;
653 AddrDieMap[R.LowPC] = std::make_pair(R.HighPC, Die);
658 // Parent DIEs are added to the AddrDieMap prior to the Children DIEs to
659 // simplify the logic to update AddrDieMap. The child's range will always
669 if (AddrDieMap.empty())
671 auto R = AddrDieMap.upper_bound(Address);
672 if (R == AddrDieMap.begin()
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnit.h 238 std::map<uint64_t, std::pair<uint64_t, DWARFDie>> AddrDieMap;

Completed in 43 milliseconds