19#define STRINGIFY_ENUM_CASE(ns, name) \
23#define ELF_RELOC(name, value) STRINGIFY_ENUM_CASE(ELF, name)
30#include "llvm/BinaryFormat/ELFRelocs/M68k.def"
37#include "llvm/BinaryFormat/ELFRelocs/x86_64.def"
45#include "llvm/BinaryFormat/ELFRelocs/i386.def"
52#include "llvm/BinaryFormat/ELFRelocs/Mips.def"
59#include "llvm/BinaryFormat/ELFRelocs/AArch64.def"
66#include "llvm/BinaryFormat/ELFRelocs/ARM.def"
74#include "llvm/BinaryFormat/ELFRelocs/ARC.def"
81#include "llvm/BinaryFormat/ELFRelocs/AVR.def"
88#include "llvm/BinaryFormat/ELFRelocs/Hexagon.def"
95#include "llvm/BinaryFormat/ELFRelocs/Lanai.def"
102#include "llvm/BinaryFormat/ELFRelocs/PowerPC.def"
109#include "llvm/BinaryFormat/ELFRelocs/PowerPC64.def"
116#include "llvm/BinaryFormat/ELFRelocs/RISCV.def"
123#include "llvm/BinaryFormat/ELFRelocs/SystemZ.def"
132#include "llvm/BinaryFormat/ELFRelocs/Sparc.def"
139#include "llvm/BinaryFormat/ELFRelocs/AMDGPU.def"
146#include "llvm/BinaryFormat/ELFRelocs/BPF.def"
153#include "llvm/BinaryFormat/ELFRelocs/MSP430.def"
160#include "llvm/BinaryFormat/ELFRelocs/VE.def"
167#include "llvm/BinaryFormat/ELFRelocs/CSKY.def"
174#include "llvm/BinaryFormat/ELFRelocs/LoongArch.def"
181#include "llvm/BinaryFormat/ELFRelocs/Xtensa.def"
196#define ELF_RISCV_NONSTANDARD_RELOC(vendor, name, number) \
197 if (Vendor == #vendor && Type == number) \
200#include "llvm/BinaryFormat/ELFRelocs/RISCV_nonstandard.def"
202#undef ELF_RISCV_NONSTANDARD_RELOC
210 return ELF::R_X86_64_RELATIVE;
213 return ELF::R_386_RELATIVE;
217 return ELF::R_AARCH64_RELATIVE;
219 return ELF::R_ARM_RELATIVE;
222 return ELF::R_ARC_RELATIVE;
226 return ELF::R_HEX_RELATIVE;
232 return ELF::R_PPC64_RELATIVE;
234 return ELF::R_RISCV_RELATIVE;
236 return ELF::R_390_RELATIVE;
240 return ELF::R_SPARC_RELATIVE;
242 return ELF::R_CKCORE_RELATIVE;
244 return ELF::R_VE_RELATIVE;
250 return ELF::R_LARCH_RELATIVE;
352std::vector<typename ELFT::Rel>
387 std::vector<Elf_Rel> Relocs;
390 using Addr =
typename ELFT::uint;
393 for (Elf_Relr R :
relrs) {
394 typename ELFT::uint Entry = R;
395 if ((Entry & 1) == 0) {
397 Rel.r_offset = Entry;
398 Relocs.push_back(Rel);
400 Base = Entry +
sizeof(Addr);
404 if ((Entry & 1) != 0) {
406 Relocs.push_back(Rel);
408 Base += (CHAR_BIT *
sizeof(Entry) - 1) *
sizeof(Addr);
421 Hdr =
Data.getULEB128(&Hdr, &Err);
430 std::vector<Elf_Rel> Rels;
431 std::vector<Elf_Rela> Relas;
445 Relas[
I].r_offset = Crel.r_offset;
446 Relas[
I].setSymbolAndType(Crel.r_symidx, Crel.r_type,
false);
447 Relas[
I++].r_addend = Crel.r_addend;
449 Rels[
I].r_offset = Crel.r_offset;
450 Rels[
I++].setSymbolAndType(Crel.r_symidx, Crel.r_type,
false);
454 return std::move(Err);
455 return std::make_pair(std::move(Rels), std::move(Relas));
476 if (Content.
size() < 4 || Content[0] !=
'A' || Content[1] !=
'P' ||
477 Content[2] !=
'S' || Content[3] !=
'2')
478 return createError(
"invalid packed relocation header");
489 std::vector<Elf_Rela> Relocs;
490 Relocs.reserve(NumRelocs);
495 if (NumRelocsInGroup > NumRelocs)
496 return createError(
"relocation group unexpectedly large");
497 NumRelocs -= NumRelocsInGroup;
506 if (GroupedByOffsetDelta)
507 GroupOffsetDelta =
Data.getSLEB128(Cur);
511 GroupRInfo =
Data.getSLEB128(Cur);
513 if (GroupedByAddend && GroupHasAddend)
514 Addend +=
Data.getSLEB128(Cur);
519 for (
uint64_t I = 0; Cur &&
I != NumRelocsInGroup; ++
I) {
521 Offset += GroupedByOffsetDelta ? GroupOffsetDelta :
Data.getSLEB128(Cur);
523 R.r_info = GroupedByInfo ? GroupRInfo :
Data.getSLEB128(Cur);
524 if (GroupHasAddend && !GroupedByAddend)
525 Addend +=
Data.getSLEB128(Cur);
539#define DYNAMIC_STRINGIFY_ENUM(tag, value) \
543#define DYNAMIC_TAG(n, v)
547#define AARCH64_DYNAMIC_TAG(name, value) DYNAMIC_STRINGIFY_ENUM(name, value)
548#include "llvm/BinaryFormat/DynamicTags.def"
549#undef AARCH64_DYNAMIC_TAG
555#define HEXAGON_DYNAMIC_TAG(name, value) DYNAMIC_STRINGIFY_ENUM(name, value)
556#include "llvm/BinaryFormat/DynamicTags.def"
557#undef HEXAGON_DYNAMIC_TAG
563#define MIPS_DYNAMIC_TAG(name, value) DYNAMIC_STRINGIFY_ENUM(name, value)
564#include "llvm/BinaryFormat/DynamicTags.def"
565#undef MIPS_DYNAMIC_TAG
571#define PPC_DYNAMIC_TAG(name, value) DYNAMIC_STRINGIFY_ENUM(name, value)
572#include "llvm/BinaryFormat/DynamicTags.def"
573#undef PPC_DYNAMIC_TAG
579#define PPC64_DYNAMIC_TAG(name, value) DYNAMIC_STRINGIFY_ENUM(name, value)
580#include "llvm/BinaryFormat/DynamicTags.def"
581#undef PPC64_DYNAMIC_TAG
587#define RISCV_DYNAMIC_TAG(name, value) DYNAMIC_STRINGIFY_ENUM(name, value)
588#include "llvm/BinaryFormat/DynamicTags.def"
589#undef RISCV_DYNAMIC_TAG
597#define SPARC_DYNAMIC_TAG(name, value) DYNAMIC_STRINGIFY_ENUM(name, value)
598#include "llvm/BinaryFormat/DynamicTags.def"
599#undef SPARC_DYNAMIC_TAG
605#define X86_64_DYNAMIC_TAG(name, value) DYNAMIC_STRINGIFY_ENUM(name, value)
606#include "llvm/BinaryFormat/DynamicTags.def"
607#undef X86_64_DYNAMIC_TAG
614#define AARCH64_DYNAMIC_TAG(name, value)
615#define MIPS_DYNAMIC_TAG(name, value)
616#define HEXAGON_DYNAMIC_TAG(name, value)
617#define PPC_DYNAMIC_TAG(name, value)
618#define PPC64_DYNAMIC_TAG(name, value)
619#define RISCV_DYNAMIC_TAG(name, value)
620#define SPARC_DYNAMIC_TAG(name, value)
621#define X86_64_DYNAMIC_TAG(name, value)
623#define DYNAMIC_TAG_MARKER(name, value)
624#define DYNAMIC_TAG(name, value) case value: return #name;
625#include "llvm/BinaryFormat/DynamicTags.def"
627#undef AARCH64_DYNAMIC_TAG
628#undef MIPS_DYNAMIC_TAG
629#undef HEXAGON_DYNAMIC_TAG
630#undef PPC_DYNAMIC_TAG
631#undef PPC64_DYNAMIC_TAG
632#undef RISCV_DYNAMIC_TAG
633#undef SPARC_DYNAMIC_TAG
634#undef X86_64_DYNAMIC_TAG
635#undef DYNAMIC_TAG_MARKER
636#undef DYNAMIC_STRINGIFY_ENUM
652 if (!ProgramHeadersOrError)
653 return ProgramHeadersOrError.takeError();
655 for (
const Elf_Phdr &Phdr : *ProgramHeadersOrError) {
658 if (DynOffset >
end())
660 "dynamic section offset past file size: corrupted ELF");
661 Dyn =
ArrayRef(
reinterpret_cast<const Elf_Dyn *
>(DynOffset),
662 Phdr.p_filesz /
sizeof(Elf_Dyn));
671 if (!SectionsOrError)
672 return SectionsOrError.takeError();
674 for (
const Elf_Shdr &Sec : *SectionsOrError) {
690 return createError(
"invalid empty dynamic section");
692 if (Dyn.
back().d_tag != ELF::DT_NULL)
693 return createError(
"dynamic sections must be DT_NULL terminated");
702 if (!ProgramHeadersOrError)
703 return ProgramHeadersOrError.takeError();
707 for (
const Elf_Phdr &Phdr : *ProgramHeadersOrError)
709 LoadSegments.
push_back(
const_cast<Elf_Phdr *
>(&Phdr));
713 return A->p_vaddr <
B->p_vaddr;
717 WarnHandler(
"loadable segments are unsorted by virtual address"))
724 return VAddr < Phdr->p_vaddr;
727 if (
I == LoadSegments.
begin())
728 return createError(
"virtual address is not in any segment: 0x" +
731 const Elf_Phdr &Phdr = **
I;
732 uint64_t Delta = VAddr - Phdr.p_vaddr;
733 if (Delta >= Phdr.p_filesz)
734 return createError(
"virtual address is not in any segment: 0x" +
739 return createError(
"can't map virtual address 0x" +
741 Twine(&Phdr - (*ProgramHeadersOrError).data() + 1) +
742 ": the segment ends at 0x" +
744 ", which is greater than the file size (0x" +
757 ELFBBAddrMapAddressExtractor(
758 const DataExtractor &Data,
unsigned AddressSize,
bool IsRelocatable,
761 FunctionOffsetTranslations(std::move(FunctionOffsetTranslations)) {}
764 template <
typename ELFT>
773 if (IsRelocatable && RelaSec) {
775 "Can't read a SHT_LLVM_BB_ADDR_MAP section in a relocatable "
776 "object file without providing a relocation section.");
781 return createError(
"unable to read CREL relocations for section " +
785 FunctionOffsetTranslations[Rela.r_offset] = Rela.r_addend;
790 return createError(
"unable to read relocations for section " +
794 FunctionOffsetTranslations[Rela.r_offset] = Rela.r_addend;
799 return ELFBBAddrMapAddressExtractor(Data, AddressSize, IsRelocatable,
800 std::move(FunctionOffsetTranslations));
809 return *AddressOrErr;
810 auto FOTIterator = FunctionOffsetTranslations.find(
Offset);
811 if (FOTIterator == FunctionOffsetTranslations.end())
812 return createError(
"failed to get relocation data for offset: " +
814 return FOTIterator->second;
818template <
typename ELFT>
823 std::vector<PGOAnalysisMap> *PGOAnalyses) {
830 std::unique_ptr<uint8_t[]> DecompressedContent;
833 if (!SectionNameOrErr)
835 auto DecompressorOrErr =
837 EF.
isLE(), ELFT::Is64Bits);
838 if (!DecompressorOrErr)
839 return DecompressorOrErr.takeError();
840 size_t DecompressedSize = DecompressorOrErr->getDecompressedSize();
841 DecompressedContent = std::make_unique<uint8_t[]>(DecompressedSize);
844 if (
Error Err = DecompressorOrErr->decompress(DecompressedContentRef))
845 return std::move(Err);
846 Content = DecompressedContentRef;
850 auto ExtractorOrErr =
853 return ExtractorOrErr.takeError();
855 if (!BBAddrMapsOrErr)
858 return BBAddrMapsOrErr;
864 std::vector<PGOAnalysisMap> *PGOAnalyses)
const {
865 size_t OriginalPGOSize = PGOAnalyses ? PGOAnalyses->size() : 0;
868 if (!AddrMapsOrErr && PGOAnalyses)
869 PGOAnalyses->resize(OriginalPGOSize);
870 return std::move(AddrMapsOrErr);
882 if (!DoesSectionMatch) {
886 if (*DoesSectionMatch) {
899 ": failed to get a relocated section: " +
903 const Elf_Shdr *ContentsSec = *RelSecOrErr;
905 if (!DoesRelTargetMatch) {
909 if (*DoesRelTargetMatch)
910 SecToRelocMap[ContentsSec] = &Sec;
913 return std::move(Errors);
914 return SecToRelocMap;
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file declares common types and utilities for basic-block address maps.
bbsections Prepares for basic block sections
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_EXPORT_TEMPLATE
#define STRINGIFY_ENUM_CASE(ns, name)
static Expected< std::vector< BBAddrMap > > decodeBBAddrMapImpl(const ELFFile< ELFT > &EF, const typename ELFFile< ELFT >::Elf_Shdr &Sec, const typename ELFFile< ELFT >::Elf_Shdr *RelaSec, std::vector< PGOAnalysisMap > *PGOAnalyses)
Function const char TargetMachine * Machine
Represent a constant reference to an array (0 or more elements consecutively in memory),...
const T & back() const
Get the last element.
size_t size() const
Get the array size.
bool empty() const
Check if the array is empty.
Lightweight error class with error context and mandatory checking.
static ErrorSuccess success()
Create a success value.
Tagged union holding either a T or a Error.
Error takeError()
Take ownership of the stored error.
This class implements a map that also provides access to all stored values in a deterministic order.
std::pair< iterator, bool > try_emplace(const KeyT &Key, Ts &&...Args)
Represent a mutable reference to an array (0 or more elements consecutively in memory),...
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
static Twine utohexstr(uint64_t Val)
The instances of the Type class are immutable: once they are created, they are never changed.
static LLVM_ABI Expected< Decompressor > create(StringRef Name, StringRef Data, bool IsLE, bool Is64Bit)
Create decompressor object.
const Elf_Ehdr & getHeader() const
Expected< std::vector< Elf_Rela > > android_relas(const Elf_Shdr &Sec) const
std::string getDynamicTagAsString(unsigned Arch, uint64_t Type) const
Expected< std::vector< BBAddrMap > > decodeBBAddrMap(const Elf_Shdr &Sec, const Elf_Shdr *RelaSec=nullptr, std::vector< PGOAnalysisMap > *PGOAnalyses=nullptr) const
Returns a vector of BBAddrMap structs corresponding to each function within the text section that the...
uint32_t getRelativeRelocationType() const
Expected< ArrayRef< uint8_t > > getSectionContents(const Elf_Shdr &Sec) const
Expected< Elf_Rela_Range > relas(const Elf_Shdr &Sec) const
Expected< Elf_Phdr_Range > program_headers() const
Iterate over program header table.
size_t getBufSize() const
Expected< RelsOrRelas > decodeCrel(ArrayRef< uint8_t > Content) const
const uint8_t * end() const
Expected< uint64_t > getCrelHeader(ArrayRef< uint8_t > Content) const
Expected< Elf_Dyn_Range > dynamicEntries() const
const uint8_t * base() const
Expected< const uint8_t * > toMappedAddr(uint64_t VAddr, WarningHandler WarnHandler=&defaultWarningHandler) const
Expected< Elf_Relr_Range > relrs(const Elf_Shdr &Sec) const
Expected< MapVector< const Elf_Shdr *, const Elf_Shdr * > > getSectionAndRelocations(std::function< Expected< bool >(const Elf_Shdr &)> IsMatch) const
Returns a map from every section matching IsMatch to its relocation section, or nullptr if it has no ...
Expected< StringRef > getSectionName(const Elf_Shdr &Section, WarningHandler WarnHandler=&defaultWarningHandler) const
llvm::function_ref< Error(const Twine &Msg)> WarningHandler
Expected< ArrayRef< T > > getSectionContentsAsArray(const Elf_Shdr &Sec) const
Expected< RelsOrRelas > crels(const Elf_Shdr &Sec) const
std::vector< Elf_Rel > decode_relrs(Elf_Relr_Range relrs) const
@ RELOCATION_GROUPED_BY_OFFSET_DELTA_FLAG
@ RELOCATION_GROUPED_BY_INFO_FLAG
@ RELOCATION_GROUPED_BY_ADDEND_FLAG
@ RELOCATION_GROUP_HAS_ADDEND_FLAG
Error decodeCrel(ArrayRef< uint8_t > Content, function_ref< void(uint64_t, bool)> HdrHandler, function_ref< void(Elf_Crel_Impl< Is64 >)> EntryHandler)
Expected< const typename ELFT::Shdr * > getSection(typename ELFT::ShdrRange Sections, uint32_t Index)
Error createError(const Twine &Err)
LLVM_ABI StringRef getELFRelocationTypeName(uint32_t Machine, uint32_t Type)
LLVM_ABI uint32_t getELFRelativeRelocationType(uint32_t Machine)
LLVM_ABI StringRef getELFSectionTypeName(uint32_t Machine, uint32_t Type)
LLVM_ABI StringRef getRISCVVendorRelocationTypeName(uint32_t Type, StringRef Vendor)
LLVM_ABI Expected< std::vector< BBAddrMap > > decodeBBAddrMapPayload(AddressExtractor &Extractor, std::vector< PGOAnalysisMap > *PGOAnalyses=nullptr)
Decodes one BB address map section payload.
std::string describe(const ELFFile< ELFT > &Obj, const typename ELFT::Shdr &Sec)
This is an optimization pass for GlobalISel generic memory operations.
void stable_sort(R &&Range)
std::string utohexstr(uint64_t X, bool LowerCase=false, unsigned Width=0)
auto upper_bound(R &&Range, T &&Value)
Provide wrappers to std::upper_bound which take ranges instead of having to pass begin/end explicitly...
Error joinErrors(Error E1, Error E2)
Concatenate errors.
bool is_sorted(R &&Range, Compare C)
Wrapper function around std::is_sorted to check if elements in a range R are sorted with respect to a...
void cantFail(Error Err, const char *Msg=nullptr)
Report a fatal error if Err is a failure value.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
ArrayRef(const T &OneElt) -> ArrayRef< T >
std::string toString(const APInt &I, unsigned Radix, bool Signed, bool formatAsCLiteral=false, bool UpperCase=true, bool InsertSeparators=false)
StringRef toStringRef(bool B)
Construct a string ref from a boolean.