Home
last modified time | relevance | path

Searched refs:SHT_NOBITS (Results 1 – 25 of 57) sorted by relevance

123

/external/elfutils/src/libasm/
Dasm_adduleb128.c48 if (asmscn->type == SHT_NOBITS && unlikely (num != 0))
84 if (likely (asmscn->type != SHT_NOBITS))
Dasm_addsleb128.c48 if (asmscn->type == SHT_NOBITS && unlikely (num != 0))
88 if (likely (asmscn->type != SHT_NOBITS))
Dasm_addint8.c61 if (asmscn->type == SHT_NOBITS && unlikely (num != 0))
111 if (likely (asmscn->type == SHT_NOBITS))
Dasm_newscn.c93 else if (type == SHT_NOBITS) in text_newscn()
179 || (type != SHT_PROGBITS && unlikely (type != SHT_NOBITS)))
Dasm_addstrz.c51 if (unlikely (asmscn->type == SHT_NOBITS))
/external/llvm/lib/Target/XCore/
DXCoreTargetObjectFile.cpp24 BSSSection = Ctx.getELFSection(".dp.bss", ELF::SHT_NOBITS, in Initialize()
27 BSSSectionLarge = Ctx.getELFSection(".dp.bss.large", ELF::SHT_NOBITS, in Initialize()
68 return ELF::SHT_NOBITS; in getXCoreSectionType()
/external/llvm/lib/MC/
DMCSectionELF.cpp133 else if (Type == ELF::SHT_NOBITS) in PrintSwitchToSection()
165 return getType() == ELF::SHT_NOBITS; in isVirtualSection()
DMCObjectFileInfo.cpp397 BSSSection = Ctx->getELFSection(".bss", ELF::SHT_NOBITS, in InitELFMCObjectFileInfo()
414 ".tbss", ELF::SHT_NOBITS, ELF::SHF_ALLOC | ELF::SHF_TLS | ELF::SHF_WRITE); in InitELFMCObjectFileInfo()
/external/elfutils/src/libebl/
Deblcheckreloctargettype.c42 if (sh_type == SHT_PROGBITS || sh_type == SHT_NOBITS) in ebl_check_reloc_target_type()
/external/google-breakpad/src/common/linux/
Dsynth_elf.cc126 } else if (section.type_ == SHT_NOBITS) { in AppendSection()
155 if (sections_[i].type_ != SHT_NOBITS) { in AddSegment()
Dsynth_elf_unittest.cc284 int bss_idx = elf.AddSection(".bss", bss, SHT_NOBITS); in TYPED_TEST()
340 EXPECT_EQ(static_cast<unsigned int>(SHT_NOBITS), shdr[2].sh_type); in TYPED_TEST()
/external/elfutils/src/libelf/
Delf32_offscn.c84 && runp->data[i].shdr.ELFW(e,LIBELFBITS)->sh_type != SHT_NOBITS)
Delf32_checksum.c114 if (shdr->sh_type == SHT_NOBITS)
Delf32_updatenull.c322 + (shdr->sh_type != SHT_NOBITS in __elfw2()
361 if (shdr->sh_type != SHT_NOBITS) in __elfw2()
Delf32_updatefile.c288 if (shdr->sh_type == SHT_NOBITS) in __elfw2()
668 if (shdr->sh_type == SHT_NOBITS) in __elfw2()
/external/llvm/lib/Target/Hexagon/
DHexagonTargetObjectFile.cpp38 SmallBSSSection = getContext().getELFSection(".sbss", ELF::SHT_NOBITS, in Initialize()
/external/llvm/lib/MC/MCParser/
DELFAsmParser.cpp93 return ParseSectionSwitch(".bss", ELF::SHT_NOBITS, in ParseSectionDirectiveBSS()
109 return ParseSectionSwitch(".tbss", ELF::SHT_NOBITS, in ParseSectionDirectiveTBSS()
509 Type = ELF::SHT_NOBITS; in ParseSectionArguments()
/external/llvm/lib/Target/Mips/
DMipsTargetObjectFile.cpp46 SmallBSSSection = getContext().getELFSection(".sbss", ELF::SHT_NOBITS, in Initialize()
/external/elfutils/src/src/
Delfcmp.c501 assert (shdr1->sh_type == SHT_NOBITS in main()
503 assert (shdr2->sh_type == SHT_NOBITS in main()
507 || (shdr1->sh_type != SHT_NOBITS in main()
Dunstrip.c545 if (shdr->sh_type != SHT_NOBITS && shdr->sh_link == new_sh_link) in adjust_all_relocs()
1122 && undo_sec->shdr.sh_type == SHT_NOBITS) in find_alloc_sections_prelink()
1131 && undo_sec->shdr.sh_type == SHT_NOBITS)) in find_alloc_sections_prelink()
1366 if (shdr->sh_type != SHT_NOBITS) in copy_elided_sections()
1526 + (shdr_mem.sh_type == SHT_NOBITS in copy_elided_sections()
1802 if (shdr->sh_type != SHT_NOBITS) in copy_elided_sections()
Delflint.c2688 return shdr != NULL && shdr->sh_type == SHT_NOBITS; in in_nobits_scn()
3396 { ".bss", 5, SHT_NOBITS, exact, SHF_ALLOC | SHF_WRITE, 0 },
3424 { ".tbss", 6, SHT_NOBITS, exact, SHF_ALLOC | SHF_WRITE | SHF_TLS, 0 },
3536 good_type = SHT_NOBITS; in check_sections()
3541 && (shdr->sh_type != SHT_NOBITS in check_sections()
3742 case SHT_NOBITS: in check_sections()
3779 && shdr->sh_type == SHT_NOBITS))) in check_sections()
3788 if (shdr->sh_type == SHT_NOBITS) in check_sections()
3806 if (shdr->sh_type != SHT_NOBITS) in check_sections()
4298 ? SHT_NOBITS : SHT_PROGBITS) in check_program_header()
/external/kernel-headers/original/uapi/linux/
Delf.h274 #define SHT_NOBITS 8 macro
/external/elfutils/src/libdw/
Ddwarf_begin_elf.c90 if (unlikely (shdr->sh_type == SHT_NOBITS)) in check_section()
/external/elfutils/src/tests/
Dupdate4.c239 shdr->sh_type = SHT_NOBITS; in main()
/external/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp769 const uint64_t section_size = header.sh_type == SHT_NOBITS ? 0 : header.sh_size; in GetSectionHeaderInfo()
865 const uint64_t file_size = header.sh_type == SHT_NOBITS ? 0 : header.sh_size; in CreateSections()
1735 CASE_AND_STREAM(s, SHT_NOBITS , kStrWidth); in DumpELFSectionHeader_sh_type()

123