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"
197 return ELF::R_X86_64_RELATIVE;
200 return ELF::R_386_RELATIVE;
204 return ELF::R_AARCH64_RELATIVE;
206 return ELF::R_ARM_RELATIVE;
209 return ELF::R_ARC_RELATIVE;
213 return ELF::R_HEX_RELATIVE;
219 return ELF::R_PPC64_RELATIVE;
221 return ELF::R_RISCV_RELATIVE;
223 return ELF::R_390_RELATIVE;
227 return ELF::R_SPARC_RELATIVE;
229 return ELF::R_CKCORE_RELATIVE;
231 return ELF::R_VE_RELATIVE;
237 return ELF::R_LARCH_RELATIVE;
338std::vector<typename ELFT::Rel>
373 std::vector<Elf_Rel> Relocs;
376 using Addr =
typename ELFT::uint;
379 for (Elf_Relr R :
relrs) {
380 typename ELFT::uint Entry = R;
381 if ((Entry & 1) == 0) {
383 Rel.r_offset = Entry;
384 Relocs.push_back(Rel);
386 Base = Entry +
sizeof(Addr);
390 if ((Entry & 1) != 0) {
392 Relocs.push_back(Rel);
394 Base += (CHAR_BIT *
sizeof(Entry) - 1) *
sizeof(Addr);
407 Hdr =
Data.getULEB128(&Hdr, &Err);
416 std::vector<Elf_Rel> Rels;
417 std::vector<Elf_Rela> Relas;
431 Relas[
I].r_offset = Crel.r_offset;
432 Relas[
I].setSymbolAndType(Crel.r_symidx, Crel.r_type,
false);
433 Relas[
I++].r_addend = Crel.r_addend;
435 Rels[
I].r_offset = Crel.r_offset;
436 Rels[
I++].setSymbolAndType(Crel.r_symidx, Crel.r_type,
false);
440 return std::move(Err);
441 return std::make_pair(std::move(Rels), std::move(Relas));
462 if (Content.
size() < 4 || Content[0] !=
'A' || Content[1] !=
'P' ||
463 Content[2] !=
'S' || Content[3] !=
'2')
464 return createError(
"invalid packed relocation header");
475 std::vector<Elf_Rela> Relocs;
476 Relocs.reserve(NumRelocs);
481 if (NumRelocsInGroup > NumRelocs)
482 return createError(
"relocation group unexpectedly large");
483 NumRelocs -= NumRelocsInGroup;
492 if (GroupedByOffsetDelta)
493 GroupOffsetDelta =
Data.getSLEB128(Cur);
497 GroupRInfo =
Data.getSLEB128(Cur);
499 if (GroupedByAddend && GroupHasAddend)
500 Addend +=
Data.getSLEB128(Cur);
505 for (
uint64_t I = 0; Cur &&
I != NumRelocsInGroup; ++
I) {
507 Offset += GroupedByOffsetDelta ? GroupOffsetDelta :
Data.getSLEB128(Cur);
509 R.r_info = GroupedByInfo ? GroupRInfo :
Data.getSLEB128(Cur);
510 if (GroupHasAddend && !GroupedByAddend)
511 Addend +=
Data.getSLEB128(Cur);
525#define DYNAMIC_STRINGIFY_ENUM(tag, value) \
529#define DYNAMIC_TAG(n, v)
533#define AARCH64_DYNAMIC_TAG(name, value) DYNAMIC_STRINGIFY_ENUM(name, value)
534#include "llvm/BinaryFormat/DynamicTags.def"
535#undef AARCH64_DYNAMIC_TAG
541#define HEXAGON_DYNAMIC_TAG(name, value) DYNAMIC_STRINGIFY_ENUM(name, value)
542#include "llvm/BinaryFormat/DynamicTags.def"
543#undef HEXAGON_DYNAMIC_TAG
549#define MIPS_DYNAMIC_TAG(name, value) DYNAMIC_STRINGIFY_ENUM(name, value)
550#include "llvm/BinaryFormat/DynamicTags.def"
551#undef MIPS_DYNAMIC_TAG
557#define PPC_DYNAMIC_TAG(name, value) DYNAMIC_STRINGIFY_ENUM(name, value)
558#include "llvm/BinaryFormat/DynamicTags.def"
559#undef PPC_DYNAMIC_TAG
565#define PPC64_DYNAMIC_TAG(name, value) DYNAMIC_STRINGIFY_ENUM(name, value)
566#include "llvm/BinaryFormat/DynamicTags.def"
567#undef PPC64_DYNAMIC_TAG
573#define RISCV_DYNAMIC_TAG(name, value) DYNAMIC_STRINGIFY_ENUM(name, value)
574#include "llvm/BinaryFormat/DynamicTags.def"
575#undef RISCV_DYNAMIC_TAG
582#define AARCH64_DYNAMIC_TAG(name, value)
583#define MIPS_DYNAMIC_TAG(name, value)
584#define HEXAGON_DYNAMIC_TAG(name, value)
585#define PPC_DYNAMIC_TAG(name, value)
586#define PPC64_DYNAMIC_TAG(name, value)
587#define RISCV_DYNAMIC_TAG(name, value)
589#define DYNAMIC_TAG_MARKER(name, value)
590#define DYNAMIC_TAG(name, value) case value: return #name;
591#include "llvm/BinaryFormat/DynamicTags.def"
593#undef AARCH64_DYNAMIC_TAG
594#undef MIPS_DYNAMIC_TAG
595#undef HEXAGON_DYNAMIC_TAG
596#undef PPC_DYNAMIC_TAG
597#undef PPC64_DYNAMIC_TAG
598#undef RISCV_DYNAMIC_TAG
599#undef DYNAMIC_TAG_MARKER
600#undef DYNAMIC_STRINGIFY_ENUM
616 if (!ProgramHeadersOrError)
617 return ProgramHeadersOrError.takeError();
619 for (
const Elf_Phdr &Phdr : *ProgramHeadersOrError) {
622 if (DynOffset >
end())
624 "dynamic section offset past file size: corrupted ELF");
625 Dyn =
ArrayRef(
reinterpret_cast<const Elf_Dyn *
>(DynOffset),
626 Phdr.p_filesz /
sizeof(Elf_Dyn));
635 if (!SectionsOrError)
636 return SectionsOrError.takeError();
638 for (
const Elf_Shdr &Sec : *SectionsOrError) {
654 return createError(
"invalid empty dynamic section");
656 if (Dyn.
back().d_tag != ELF::DT_NULL)
657 return createError(
"dynamic sections must be DT_NULL terminated");
666 if (!ProgramHeadersOrError)
667 return ProgramHeadersOrError.takeError();
671 for (
const Elf_Phdr &Phdr : *ProgramHeadersOrError)
673 LoadSegments.
push_back(
const_cast<Elf_Phdr *
>(&Phdr));
677 return A->p_vaddr <
B->p_vaddr;
681 WarnHandler(
"loadable segments are unsorted by virtual address"))
688 return VAddr < Phdr->p_vaddr;
691 if (
I == LoadSegments.
begin())
692 return createError(
"virtual address is not in any segment: 0x" +
695 const Elf_Phdr &Phdr = **
I;
696 uint64_t Delta = VAddr - Phdr.p_vaddr;
697 if (Delta >= Phdr.p_filesz)
698 return createError(
"virtual address is not in any segment: 0x" +
703 return createError(
"can't map virtual address 0x" +
705 Twine(&Phdr - (*ProgramHeadersOrError).data() + 1) +
706 ": the segment ends at 0x" +
708 ", which is greater than the file size (0x" +
719template <
typename IntTy, std::enable_if_t<std::is_
unsigned_v<IntTy>,
int> = 0>
721 Error &ULEBSizeErr) {
727 if (
Value > std::numeric_limits<IntTy>::max()) {
728 ULEBSizeErr =
createError(
"ULEB128 value at offset 0x" +
730 Twine(std::numeric_limits<IntTy>::digits) +
734 return static_cast<IntTy
>(
Value);
737template <
typename ELFT>
742 std::vector<PGOAnalysisMap> *PGOAnalyses) {
749 if (IsRelocatable && RelaSec) {
751 "Can't read a SHT_LLVM_BB_ADDR_MAP section in a relocatable "
752 "object file without providing a relocation section.");
756 return createError(
"unable to read CREL relocations for section " +
760 FunctionOffsetTranslations[Rela.r_offset] = Rela.r_addend;
766 return createError(
"unable to read relocations for section " +
770 FunctionOffsetTranslations[Rela.r_offset] = Rela.r_addend;
773 auto GetAddressForRelocation =
776 FunctionOffsetTranslations.
find(RelocationOffsetInSection);
777 if (FOTIterator == FunctionOffsetTranslations.
end()) {
778 return createError(
"failed to get relocation data for offset: " +
780 " in section " +
describe(EF, Sec));
782 return FOTIterator->second;
790 std::unique_ptr<uint8_t[]> DecompressedContent;
793 if (!SectionNameOrErr)
795 auto DecompressorOrErr =
797 EF.
isLE(), ELFT::Is64Bits);
798 if (!DecompressorOrErr)
799 return DecompressorOrErr.takeError();
800 size_t DecompressedSize = DecompressorOrErr->getDecompressedSize();
801 DecompressedContent = std::make_unique<uint8_t[]>(DecompressedSize);
804 if (
Error Err = DecompressorOrErr->decompress(DecompressedContentRef))
805 return std::move(Err);
806 Content = DecompressedContentRef;
810 std::vector<BBAddrMap> FunctionEntries;
827 GetAddressForRelocation(RelocationOffsetInSection);
830 return *AddressOrErr;
836 while (!ULEBSizeErr && !MetadataDecodeErr && Cur &&
838 Version =
Data.getU8(Cur);
842 return createError(
"unsupported SHT_LLVM_BB_ADDR_MAP version: " +
843 Twine(
static_cast<int>(Version)));
844 Feature = Version < 5 ?
Data.getU8(Cur) :
Data.getU16(Cur);
848 if (!FeatEnableOrErr)
849 return FeatEnableOrErr.takeError();
850 FeatEnable = *FeatEnableOrErr;
852 return createError(
"version should be >= 3 for SHT_LLVM_BB_ADDR_MAP when "
853 "callsite offsets feature is enabled: version = " +
854 Twine(
static_cast<int>(Version)) +
855 " feature = " +
Twine(
static_cast<int>(Feature)));
856 if (FeatEnable.
BBHash && Version < 4)
857 return createError(
"version should be >= 4 for SHT_LLVM_BB_ADDR_MAP when "
858 "basic block hash feature is enabled: version = " +
859 Twine(
static_cast<int>(Version)) +
860 " feature = " +
Twine(
static_cast<int>(Feature)));
862 return createError(
"version should be >= 5 for SHT_LLVM_BB_ADDR_MAP when "
863 "post link cfg feature is enabled: version = " +
864 Twine(
static_cast<int>(Version)) +
865 " feature = " +
Twine(
static_cast<int>(Feature)));
871 if (!Cur || ULEBSizeErr)
874 return createError(
"invalid zero number of BB ranges at offset " +
878 auto AddressOrErr = ExtractAddress();
880 return AddressOrErr.takeError();
881 RangeBaseAddress = *AddressOrErr;
884 std::vector<BBAddrMap::BBRangeEntry> BBRangeEntries;
886 for (
uint32_t BBRangeIndex = 0; BBRangeIndex < NumBBRanges;
890 auto AddressOrErr = ExtractAddress();
892 return AddressOrErr.takeError();
893 RangeBaseAddress = *AddressOrErr;
896 std::vector<BBAddrMap::BBEntry> BBEntries;
898 for (
uint32_t BlockIndex = 0; !MetadataDecodeErr && !ULEBSizeErr &&
899 Cur && (BlockIndex < NumBlocksInBBRange);
909 CallsiteEndOffsets.
reserve(NumCallsites);
913 LastCallsiteEndOffset +=
915 CallsiteEndOffsets.
push_back(LastCallsiteEndOffset);
919 LastCallsiteEndOffset;
924 if (!MetadataOrErr) {
925 MetadataDecodeErr = MetadataOrErr.
takeError();
928 BBEntries.push_back({
ID,
Offset + PrevBBEndOffset,
Size,
929 *MetadataOrErr, CallsiteEndOffsets, Hash});
932 TotalNumBlocks += BBEntries.size();
934 BBRangeEntries.push_back({RangeBaseAddress, std::move(BBEntries)});
936 FunctionEntries.push_back({std::move(BBRangeEntries)});
945 std::vector<PGOAnalysisMap::PGOBBEntry> PGOBBEntries;
948 !ULEBSizeErr && Cur && (BlockIndex < TotalNumBlocks);
979 PGOBBEntries.push_back(
984 PGOAnalyses->push_back(
990 if (!Cur || ULEBSizeErr || MetadataDecodeErr)
992 std::move(MetadataDecodeErr));
993 return FunctionEntries;
999 std::vector<PGOAnalysisMap> *PGOAnalyses)
const {
1000 size_t OriginalPGOSize = PGOAnalyses ? PGOAnalyses->size() : 0;
1003 if (!AddrMapsOrErr && PGOAnalyses)
1004 PGOAnalyses->resize(OriginalPGOSize);
1005 return std::move(AddrMapsOrErr);
1008template <
class ELFT>
1017 if (!DoesSectionMatch) {
1021 if (*DoesSectionMatch) {
1034 ": failed to get a relocated section: " +
1038 const Elf_Shdr *ContentsSec = *RelSecOrErr;
1040 if (!DoesRelTargetMatch) {
1044 if (*DoesRelTargetMatch)
1045 SecToRelocMap[ContentsSec] = &Sec;
1048 return std::move(Errors);
1049 return SecToRelocMap;
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
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
static IntTy readULEB128As(DataExtractor &Data, DataExtractor::Cursor &Cur, Error &ULEBSizeErr)
#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
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
const T & back() const
back - Get the last element.
size_t size() const
size - Get the array size.
bool empty() const
empty - Check if the array is empty.
static BranchProbability getRaw(uint32_t N)
iterator find(const_arg_type_t< KeyT > Val)
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)
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
void reserve(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - 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.
LLVM Value Representation.
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
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ RELOCATION_GROUPED_BY_OFFSET_DELTA_FLAG
@ RELOCATION_GROUPED_BY_INFO_FLAG
@ RELOCATION_GROUPED_BY_ADDEND_FLAG
@ RELOCATION_GROUP_HAS_ADDEND_FLAG
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)
static std::string describe(const ELFFile< ELFT > &Obj, const typename ELFT::Shdr &Sec)
static Error decodeCrel(ArrayRef< uint8_t > Content, function_ref< void(uint64_t, bool)> HdrHandler, function_ref< void(Elf_Crel_Impl< Is64 >)> EntryHandler)
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...
FunctionAddr VTableAddr uintptr_t uintptr_t Version
Error joinErrors(Error E1, Error E2)
Concatenate errors.
FunctionAddr VTableAddr Count
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.
FunctionAddr VTableAddr uintptr_t uintptr_t Data
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.
static Expected< Metadata > decode(uint32_t V)
bool hasPGOAnalysisBBData() const
static Expected< Features > decode(uint16_t Val)
bool hasPGOAnalysis() const