Home
last modified time | relevance | path

Searched refs:SHT_RELR (Results 1 – 18 of 18) sorted by relevance

/llvm-project-15.0.7/llvm/test/tools/obj2yaml/ELF/
H A Drelr-section.yaml1 ## Test how we dump SHT_RELR sections for 32 and 64-bit targets.
18 # ELF64LE-NEXT: Type: SHT_RELR
23 # ELF32LE-NEXT: Type: SHT_RELR
28 # ELF64BE-NEXT: Type: SHT_RELR
33 # ELF32BE-NEXT: Type: SHT_RELR
43 Type: SHT_RELR
52 # CONTENT-NEXT: Type: SHT_RELR
62 Type: SHT_RELR
65 ## Test we are able to dump a SHT_RELR section when sh_entsize is invalid.
72 # ENTSIZE-NEXT: Type: SHT_RELR
[all …]
/llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/
H A Drelr-section.yaml1 ## Test how we create SHT_RELR sections.
3 ## Test that the content of SHT_RELR sections for 64-bit little endian targets is correct.
8 # LE64-NEXT: Type: SHT_RELR
41 Type: SHT_RELR
52 # LE32-NEXT: Type: SHT_RELR
83 Type: SHT_RELR
103 Type: SHT_RELR
126 Type: SHT_RELR
136 Type: SHT_RELR
154 Type: SHT_RELR
[all …]
H A Dreloc-sec-entry-size.yaml37 Type: SHT_RELR
46 Type: SHT_RELR
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/
H A Drelr-relocs.test1 ## This is a test to test how SHT_RELR sections are dumped.
82 Type: SHT_RELR
152 Type: SHT_RELR
161 ## for a SHT_RELR/SHT_ANDROID_RELR section.
163 ## Case A: check the case when relocations can't be read from an SHT_RELR section.
166 # RUN: FileCheck -DFILE=%t2.broken --check-prefix=BROKEN-LLVM %s -DSECNAME=SHT_RELR
168 # RUN: FileCheck -DFILE=%t2.broken --check-prefix=BROKEN-GNU %s -DSECNAME=SHT_RELR
189 ## Check the behavior when the sh_link field of the SHT_RELR/SHT_ANDROID_RELR section
H A Dsection-types.test39 # LLVM: Type: SHT_RELR
184 Type: SHT_RELR
H A Ddynamic-reloc.test82 Type: SHT_RELR
/llvm-project-15.0.7/llvm/test/tools/llvm-size/
H A Delf-sysv.test113 Type: SHT_RELR
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DDynamicTags.def83 // Experimental support for SHT_RELR sections. For details, see proposal
101 // Android's experimental support for SHT_RELR sections.
H A DELF.h993 SHT_RELR = 19, // Relocation entries; only offsets. enumerator
/llvm-project-15.0.7/llvm/lib/Object/
H A DELF.cpp286 STRINGIFY_ENUM_CASE(ELF, SHT_RELR); in getELFSectionTypeName()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DOpts.td61 def raw_relr : FF<"raw-relr", "Do not decode relocations in SHT_RELR section, display raw contents"…
H A DELFDumper.cpp3558 bool IsRelr = SType == ELF::SHT_RELR || SType == ELF::SHT_ANDROID_RELR; in printRelocHeaderFields()
3589 Sec.sh_type == ELF::SHT_RELR || Sec.sh_type == ELF::SHT_ANDROID_REL || in isRelocationSec()
3607 if (!opts::RawRelr && (Sec.sh_type == ELF::SHT_RELR || in printRelocations()
5846 if (Sec.sh_type != ELF::SHT_RELR && Sec.sh_type != ELF::SHT_ANDROID_RELR) { in forEachRelocationDo()
5874 case ELF::SHT_RELR: in forEachRelocationDo()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h91 case ELF::SHT_RELR: in LLVM_YAML_STRONG_TYPEDEF()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DELFYAML.cpp653 ECase(SHT_RELR); in enumeration()
1581 case ELF::SHT_RELR: in mapping()
/llvm-project-15.0.7/lld/ELF/
H A DOptions.td317 "Use SHT_ANDROID_RELR / DT_ANDROID_RELR* tags instead of SHT_RELR / DT_RELR*",
318 "Use SHT_RELR / DT_RELR* tags (default)">;
H A DSyntheticSections.h544 d->type == llvm::ELF::SHT_RELR); in classof()
H A DSyntheticSections.cpp1738 config->useAndroidRelrTags ? SHT_ANDROID_RELR : SHT_RELR, in RelrBaseSection()
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Delf2yaml.cpp600 case ELF::SHT_RELR: in dumpSections()