Home
last modified time | relevance | path

Searched refs:BBRanges (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFTypes.h945 std::vector<BBRangeEntry> BBRanges;
950 assert(!BBRanges.empty());
951 return BBRanges.front().BaseAddress;
957 for (const auto &BBR : BBRanges)
966 for (size_t I = 0; I < BBRanges.size(); ++I)
967 if (BBRanges[I].BaseAddress == BaseAddress)
974 return BBRanges.front().BBEntries;
977 const std::vector<BBRangeEntry> &getBBRanges() const { return BBRanges; }
981 return std::equal(BBRanges.begin(), BBRanges.end(), Other.BBRanges.begin());
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h176 std::optional<std::vector<BBRangeEntry>> BBRanges; member
179 if (!BBRanges || BBRanges->empty()) in getFunctionAddress()
181 return BBRanges->front().BaseAddress; in getFunctionAddress()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1479 (E.BBRanges && E.BBRanges->size() != 1); in writeSectionContent()
1487 E.NumBBRanges.value_or(E.BBRanges ? E.BBRanges->size() : 0); in writeSectionContent()
1490 if (!E.BBRanges) in writeSectionContent()
1493 for (const ELFYAML::BBAddrMapEntry::BBRangeEntry &BBR : *E.BBRanges) { in writeSectionContent()
H A DELFYAML.cpp1834 IO.mapOptional("BBRanges", E.BBRanges); in mapping()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp262 for (size_t I = 1; I < AddrMap.BBRanges.size(); ++I) in AddFunctionEntry()
263 RangeBaseAddrToFunctionAddr.emplace(AddrMap.BBRanges[I].BaseAddress, in AddFunctionEntry()
1466 FunctionMap->getAddrMap().BBRanges[I].BBEntries.size(); in collectBBAddrMapLabels()
1467 const auto &BBRange = FunctionMap->getAddrMap().BBRanges[*BBRangeIndex]; in collectBBAddrMapLabels()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp7809 for (const BBAddrMap::BBRangeEntry &BBR : AM.BBRanges) { in printBBAddrMaps()