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.h960 std::vector<BBRangeEntry> BBRanges;
965 assert(!BBRanges.empty());
966 return BBRanges.front().BaseAddress;
972 for (const auto &BBR : BBRanges)
981 for (size_t I = 0; I < BBRanges.size(); ++I)
982 if (BBRanges[I].BaseAddress == BaseAddress)
989 return BBRanges.front().BBEntries;
992 const std::vector<BBRangeEntry> &getBBRanges() const { return BBRanges; }
996 return std::equal(BBRanges.begin(), BBRanges.end(), Other.BBRanges.begin());
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h177 std::optional<std::vector<BBRangeEntry>> BBRanges; member
180 if (!BBRanges || BBRanges->empty()) in getFunctionAddress()
182 return BBRanges->front().BaseAddress; in getFunctionAddress()
187 if (!BBRanges) in hasAnyCallsiteOffsets()
189 for (const ELFYAML::BBAddrMapEntry::BBRangeEntry &BBR : *BBRanges) { in hasAnyCallsiteOffsets()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1472 (E.BBRanges && E.BBRanges->size() != 1); in writeSectionContent()
1480 E.NumBBRanges.value_or(E.BBRanges ? E.BBRanges->size() : 0); in writeSectionContent()
1483 if (!E.BBRanges) in writeSectionContent()
1488 for (const ELFYAML::BBAddrMapEntry::BBRangeEntry &BBR : *E.BBRanges) { in writeSectionContent()
H A DELFYAML.cpp1868 IO.mapOptional("BBRanges", E.BBRanges); in mapping()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp261 for (size_t I = 1; I < AddrMap.BBRanges.size(); ++I) in AddFunctionEntry()
262 RangeBaseAddrToFunctionAddr.emplace(AddrMap.BBRanges[I].BaseAddress, in AddFunctionEntry()
1537 FunctionMap->getAddrMap().BBRanges[I].BBEntries.size(); in collectBBAddrMapLabels()
1538 const auto &BBRange = FunctionMap->getAddrMap().BBRanges[*BBRangeIndex]; in collectBBAddrMapLabels()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp7924 for (const BBAddrMap::BBRangeEntry &BBR : AM.BBRanges) { in printBBAddrMaps()