/external/llvm/lib/MC/ |
D | MCSectionELF.cpp | 69 if (Flags & ELF::SHF_EXECINSTR) in PrintSwitchToSection() 82 if (Flags & ELF::SHF_EXECINSTR) in PrintSwitchToSection() 135 return getFlags() & ELF::SHF_EXECINSTR; in UseCodeAlign()
|
D | MCELFStreamer.cpp | 140 ELF::SHF_EXECINSTR | in SetSectionText()
|
D | MCObjectFileInfo.cpp | 281 ELF::SHF_EXECINSTR | in InitELFMCObjectFileInfo()
|
/external/elfutils/backends/ |
D | alpha_symbol.c | 88 & (SHF_WRITE | SHF_EXECINSTR)) == (SHF_WRITE | SHF_EXECINSTR) in alpha_check_special_section()
|
D | sparc_symbol.c | 76 if ((shdr->sh_flags & (SHF_WRITE | SHF_EXECINSTR)) in sparc_check_special_section() 77 == (SHF_WRITE | SHF_EXECINSTR)) in sparc_check_special_section()
|
/external/elfutils/libasm/ |
D | asm_newscn.c | 77 if (flags & SHF_EXECINSTR) in text_newscn() 173 if (unlikely ((flags & ~(SHF_WRITE | SHF_ALLOC | SHF_EXECINSTR | SHF_MERGE
|
/external/elfutils/tests/ |
D | asm-tst1.c | 100 scn1 = asm_newscn (ctx, ".text", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR); in main() 200 if ((cnt == 1 && shdr->sh_flags != (SHF_ALLOC | SHF_EXECINSTR)) in main()
|
D | update4.c | 140 shdr->sh_flags = SHF_ALLOC | SHF_EXECINSTR; in main() 212 shdr->sh_flags = SHF_ALLOC | SHF_EXECINSTR; in main() 248 shdr->sh_flags = SHF_ALLOC | SHF_EXECINSTR; in main()
|
/external/llvm/lib/MC/MCParser/ |
D | ELFAsmParser.cpp | 87 ELF::SHF_EXECINSTR | in ParseSectionDirectiveText() 265 if (Flags & ELF::SHF_EXECINSTR) in computeSectionKind() 281 flags |= ELF::SHF_EXECINSTR; in parseSectionFlags() 346 Flags |= ELF::SHF_EXECINSTR; in ParseDirectiveSection()
|
/external/elfutils/libelf/ |
D | elf-knowledge.h | 100 & (SHF_WRITE | SHF_ALLOC | SHF_EXECINSTR | SHF_LINK_ORDER \
|
D | elf.h | 364 #define SHF_EXECINSTR (1 << 2) /* Executable */ macro
|
/external/kernel-headers/original/linux/ |
D | elf.h | 257 #define SHF_EXECINSTR 0x4 macro
|
/external/elfutils/src/ |
D | elflint.c | 3324 { ".fini", 6, SHT_PROGBITS, exact, SHF_ALLOC | SHF_EXECINSTR, 0 }, 3328 { ".init", 6, SHT_PROGBITS, exact, SHF_ALLOC | SHF_EXECINSTR, 0 }, 3346 { ".text", 6, SHT_PROGBITS, exact, SHF_ALLOC | SHF_EXECINSTR, 0 }, 3580 #define ALL_SH_FLAGS (SHF_WRITE | SHF_ALLOC | SHF_EXECINSTR | SHF_MERGE \ in check_sections() 3637 if (shdr->sh_flags & SHF_EXECINSTR) in check_sections() 3708 if ((shdr->sh_flags & SHF_EXECINSTR) != 0) in check_sections()
|
D | objdump.c | 742 && (shdr->sh_flags & SHF_EXECINSTR) != 0) in show_disasm()
|
D | ldgeneric.c | 1372 && (shdr->sh_flags & SHF_EXECINSTR) == 0 in add_relocatable_file() 2504 SHF_ALLOC | SHF_EXECINSTR, in ld_generic_generate_sections()
|
D | ChangeLog | 64 * elflint.c (check_sections): Add checks on SHF_EXECINSTR sections:
|
D | readelf.c | 864 if (shdr->sh_flags & SHF_EXECINSTR) in print_shdr()
|
/external/llvm/lib/CodeGen/ |
D | TargetLoweringObjectFileImpl.cpp | 153 Flags |= ELF::SHF_EXECINSTR; in getELFSectionFlags()
|
/external/llvm/include/llvm/Support/ |
D | ELF.h | 773 SHF_EXECINSTR = 0x4, enumerator
|
/external/qemu/ |
D | elf.h | 1089 #define SHF_EXECINSTR 0x4 macro
|
/external/valgrind/main/VEX/unused/ |
D | linker.c | 981 && (hdr.sh_flags & SHF_ALLOC) && (hdr.sh_flags & SHF_EXECINSTR)) { in ocGetNames_ELF()
|
/external/valgrind/main/VEX/switchback/ |
D | linker.c | 1142 && (hdr.sh_flags & SHF_ALLOC) && (hdr.sh_flags & SHF_EXECINSTR)) {
|
/external/llvm/include/llvm/Object/ |
D | ELF.h | 880 case (ELF::SHF_ALLOC | ELF::SHF_EXECINSTR): 1075 if (sec->sh_flags & ELF::SHF_EXECINSTR)
|
/external/valgrind/main/perf/ |
D | tinycc.c | 371 #define SHF_EXECINSTR (1 << 2) /* Executable */ macro 19275 SHF_ALLOC | SHF_EXECINSTR); in tcc_output_file() 20842 text_section = new_section(s, ".text", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR); in tcc_new()
|