| /freebsd-12-stable/contrib/elftoolchain/libelf/ |
| D | libelf_chdr.c | 71 if (sh32->sh_type == SHT_NULL || sh32->sh_type == SHT_NOBITS) { in _libelf_getchdr() 87 if (sh64->sh_type == SHT_NULL || sh64->sh_type == SHT_NOBITS) { in _libelf_getchdr()
|
| D | elf_data.c | 97 elftype > ELF_T_LAST || (sh_type != SHT_NOBITS && in elf_getdata() 143 if (sh_type == SHT_NOBITS || sh_size == 0) { in elf_getdata() 260 if (sh_type != SHT_NOBITS && in elf_rawdata() 269 d->d_data.d_buf = (sh_type == SHT_NOBITS || sh_size == 0) ? NULL : in elf_rawdata()
|
| D | libelf_data.c | 56 case SHT_NOBITS: in _libelf_xlate_shtype()
|
| /freebsd-12-stable/contrib/elftoolchain/elfcopy/ |
| D | pe.c | 153 if (sh.sh_type == SHT_NOBITS) in create_pe() 180 if (sh.sh_type != SHT_NOBITS) in create_pe() 213 if (sh.sh_type != SHT_NOBITS) { in create_pe()
|
| D | binary.c | 78 sh.sh_type == SHT_NOBITS || in create_binary() 104 sh.sh_type == SHT_NOBITS || in create_binary()
|
| D | segments.c | 78 s->type != SHT_NOBITS) in add_to_inseg_list() 301 if (seg->v_sec[i]->type != SHT_NOBITS) in adjust_addr() 541 if (s->type != SHT_NOBITS) in copy_phdr()
|
| D | sections.c | 481 s->type = SHT_NOBITS; in create_scn() 921 case SHT_NOBITS: in section_type_alignment() 953 if (s->seg_tls != NULL && s->type == SHT_NOBITS && in resync_sections() 978 if (s->pseudo || (s->type != SHT_NOBITS && s->type != SHT_NULL)) in resync_sections() 1202 s->type == SHT_NOBITS && s->sz > 0) { in copy_shdr() 1364 if (s->type != SHT_NOBITS && s->type != SHT_NULL) in insert_sections()
|
| D | ascii.c | 127 sh.sh_type == SHT_NOBITS || in create_srec() 168 sh.sh_type == SHT_NOBITS || in create_srec() 433 sh.sh_type == SHT_NOBITS || in create_ihex()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/XCore/ |
| D | XCoreTargetObjectFile.cpp | 23 BSSSection = Ctx.getELFSection(".dp.bss", ELF::SHT_NOBITS, in Initialize() 26 BSSSectionLarge = Ctx.getELFSection(".dp.bss.large", ELF::SHT_NOBITS, in Initialize() 67 return ELF::SHT_NOBITS; in getXCoreSectionType()
|
| /freebsd-12-stable/contrib/binutils/include/elf/ |
| D | internal.h | 265 || sec_hdr->sh_type != SHT_NOBITS \ 279 && (sec_hdr->sh_type == SHT_NOBITS \
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/ |
| D | MCSectionELF.cpp | 139 else if (Type == ELF::SHT_NOBITS) in PrintSwitchToSection() 204 return getType() == ELF::SHT_NOBITS; in isVirtualSection()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| D | HexagonTargetObjectFile.cpp | 122 getContext().getELFSection(".sbss", ELF::SHT_NOBITS, in Initialize() 374 return getContext().getELFSection(Name.str(), ELF::SHT_NOBITS, in selectSmallSectionForGlobal() 389 return getContext().getELFSection(Name.str(), ELF::SHT_NOBITS, in selectSmallSectionForGlobal()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/M68k/ |
| D | M68kTargetObjectFile.cpp | 46 SmallBSSSection = getContext().getELFSection(".sbss", ELF::SHT_NOBITS, in Initialize()
|
| /freebsd-12-stable/contrib/llvm-project/lld/ELF/ |
| D | OutputSections.cpp | 86 return type == SHT_NOBITS || type == SHT_PROGBITS || type == SHT_INIT_ARRAY || in canMergeToProgbits() 139 type = SHT_NOBITS; in commitSection() 328 if (type == SHT_NOBITS) in writeTo() 562 relOsec->type == SHT_NOBITS in checkDynRelAddends()
|
| D | Target.cpp | 98 if (!isec->getParent() || (isec->type & SHT_NOBITS)) in getErrPlace()
|
| D | Writer.cpp | 1020 if (sec->type == SHT_NOBITS) in getSectionRank() 1175 if (os->type != SHT_NOBITS) in setReservedSymbolSections() 2324 if ((sec->flags & SHF_TLS) && sec->type == SHT_NOBITS) in needsPtLoad() 2602 if (os->type == SHT_NOBITS) in computeFileOffset() 2621 if (os->type == SHT_NOBITS) in setFileOffset() 2629 return sec.type != SHT_NOBITS && (sec.flags & SHF_ALLOC) && sec.size > 0; in assignFileOffsetsBinary() 2694 if (sec->type == SHT_NOBITS) in assignFileOffsets() 2712 if (last->type != SHT_NOBITS) in setPhdrs() 2797 if (sec->size > 0 && sec->type != SHT_NOBITS && in checkSections()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| D | ELFAsmParser.cpp | 103 return ParseSectionSwitch(".bss", ELF::SHT_NOBITS, in ParseSectionDirectiveBSS() 119 return ParseSectionSwitch(".tbss", ELF::SHT_NOBITS, in ParseSectionDirectiveTBSS() 609 Type = ELF::SHT_NOBITS; in ParseSectionArguments() 611 Type = ELF::SHT_NOBITS; in ParseSectionArguments() 624 Type = ELF::SHT_NOBITS; in ParseSectionArguments()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| D | RISCVTargetObjectFile.cpp | 23 SmallBSSSection = getContext().getELFSection(".sbss", ELF::SHT_NOBITS, in Initialize()
|
| /freebsd-12-stable/contrib/elftoolchain/libdwarf/ |
| D | libdwarf_elf_init.c | 263 if (sh.sh_type == SHT_NOBITS) in _dwarf_elf_init() 319 if (sh.sh_type == SHT_NOBITS) in _dwarf_elf_init()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| D | LanaiTargetObjectFile.cpp | 34 SmallBSSSection = getContext().getELFSection(".sbss", ELF::SHT_NOBITS, in Initialize()
|
| /freebsd-12-stable/usr.sbin/kldxref/ |
| D | ef_obj.c | 420 case SHT_NOBITS: in ef_obj_open() 502 case SHT_NOBITS: in ef_obj_open() 532 case SHT_NOBITS: in ef_obj_open()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ |
| D | Object.cpp | 171 if (Sec.Type != SHT_NOBITS) in visit() 1216 if (Sec.Type == SHT_NOBITS) { in sectionWithinSegment() 1732 case SHT_NOBITS: in makeSection() 1794 (Shdr.sh_type == SHT_NOBITS) ? (size_t)0 : Shdr.sh_size); in readSectionHeaders() 2099 if (Parent == nullptr || Sec.Type == SHT_NOBITS || Sec.Size == 0) in writeSegmentData() 2275 if (Sec.Type != SHT_NOBITS) in layoutSections() 2301 if (Sec.Type == SHT_NOBITS) { in layoutSectionsForOnlyKeepDebug() 2342 uint64_t Size = Sec->Type == SHT_NOBITS ? 0 : Sec->Size; in layoutSegmentsForOnlyKeepDebug() 2584 if (Sec.Type != SHT_NOBITS && Sec.Size > 0) in finalize() 2594 if (Sec.Type != SHT_NOBITS && Sec.Size > 0) { in finalize() [all …]
|
| D | ELFObjcopy.cpp | 109 if (Sec.Type == SHT_NOBITS && in setSectionFlagsAndType() 181 if (Sec.Type == SHT_NOBITS) in dumpSectionToFile() 664 Sec.Type = SHT_NOBITS; in handleArgs()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/ |
| D | MipsTargetObjectFile.cpp | 52 SmallBSSSection = getContext().getELFSection(".sbss", ELF::SHT_NOBITS, in Initialize()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| D | HexagonMCELFStreamer.cpp | 109 SectionName, ELF::SHT_NOBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC); in HexagonMCEmitCommonSymbol()
|