Home
last modified time | relevance | path

Searched refs:ShFlags (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/
H A Doverride-shflags.yaml48 ShFlags: 0x000000001
51 ShFlags: 0x000000002
54 ShFlags: 0x000000003
57 ShFlags: 0x000000004
60 ShFlags: 0x000000005
64 ShFlags: 0x0AB00000
67 ShFlags: 0xC0000000
70 ShFlags: 0xFFFFFFFF
72 ## ShFlags is used when we want to work around the flag values validation.
77 # ERR: error: ShFlags and Flags cannot be used together
[all …]
H A Dnone-value.yaml34 ShFlags: [[TEST=<none>]]
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/
H A Dsection-flags-os-proc.test100 ShFlags: 0x00100000
103 ShFlags: 0x0FE00000
106 ShFlags: 0x0FF00000
109 ShFlags: 0x10000000
112 ShFlags: 0xE0000000
115 ShFlags: 0xF0000000
118 ShFlags: 0x10100000
121 ShFlags: 0xEFE00000
124 ShFlags: 0xFFF00000
132 ShFlags: 0x80000000
[all …]
H A Dsection-flags-solaris.test30 ShFlags: 0x00100000
33 ShFlags: 0x0FE00000
36 ShFlags: 0x0FF00000
H A Dsection-details.test82 ShFlags: 0xffffffffffffffff
131 ShFlags: 0x000f0003
134 ShFlags: 0x000f0000
H A Dsection-flags.test189 ShFlags: 0x000f0000
/llvm-project-15.0.7/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp288 uint32_t ShFlags = 0) const { in fillStrTabShdr() argument
290 StrTab.Shdr.sh_flags = ShFlags; in fillStrTabShdr()
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Delf2yaml.cpp209 ELFYAML::ELF_SHF ShFlags = RawSec->Flags.value_or(ELFYAML::ELF_SHF(0)); in shouldPrintSection() local
212 return ShFlags != ELFYAML::ELF_SHF(ELF::SHF_MERGE | ELF::SHF_STRINGS); in shouldPrintSection()
214 return ShFlags != ELFYAML::ELF_SHF{0}; in shouldPrintSection()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1329 !Section.ShFlags && !Section.ShType && !Section.ShAddrAlign)); in commonSectionMapping()
1334 IO.mapOptional("ShFlags", Section.ShFlags); in commonSectionMapping()
1724 if (RawSection->Flags && RawSection->ShFlags) in validate()
H A DELFEmitter.cpp638 if (From->ShFlags) in overrideFields()
639 To.sh_flags = *From->ShFlags; in overrideFields()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h270 Optional<llvm::yaml::Hex64> ShFlags; member