| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/ |
| HD | XCoreTargetObjectFile.cpp | 29 DataSection = Ctx.getELFSection(".dp.data", ELF::SHT_PROGBITS, in Initialize() 32 DataSectionLarge = Ctx.getELFSection(".dp.data.large", ELF::SHT_PROGBITS, in Initialize() 35 DataRelROSection = Ctx.getELFSection(".dp.rodata", ELF::SHT_PROGBITS, in Initialize() 39 ".dp.rodata.large", ELF::SHT_PROGBITS, in Initialize() 42 Ctx.getELFSection(".cp.rodata", ELF::SHT_PROGBITS, in Initialize() 45 Ctx.getELFSection(".cp.rodata.large", ELF::SHT_PROGBITS, in Initialize() 48 ".cp.rodata.cst4", ELF::SHT_PROGBITS, in Initialize() 51 ".cp.rodata.cst8", ELF::SHT_PROGBITS, in Initialize() 54 ".cp.rodata.cst16", ELF::SHT_PROGBITS, in Initialize() 57 Ctx.getELFSection(".cp.rodata.string", ELF::SHT_PROGBITS, in Initialize() [all …]
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AVR/ |
| HD | AVRTargetObjectFile.cpp | 25 Ctx.getELFSection(".progmem.data", ELF::SHT_PROGBITS, ELF::SHF_ALLOC); in Initialize() 27 Ctx.getELFSection(".progmem1.data", ELF::SHT_PROGBITS, ELF::SHF_ALLOC); in Initialize() 29 Ctx.getELFSection(".progmem2.data", ELF::SHT_PROGBITS, ELF::SHF_ALLOC); in Initialize() 31 Ctx.getELFSection(".progmem3.data", ELF::SHT_PROGBITS, ELF::SHF_ALLOC); in Initialize() 33 Ctx.getELFSection(".progmem4.data", ELF::SHT_PROGBITS, ELF::SHF_ALLOC); in Initialize() 35 Ctx.getELFSection(".progmem5.data", ELF::SHT_PROGBITS, ELF::SHF_ALLOC); in Initialize()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| HD | RISCVTargetObjectFile.cpp | 33 ".sdata", ELF::SHT_PROGBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC); in Initialize() 37 getContext().getELFSection(".srodata", ELF::SHT_PROGBITS, ELF::SHF_ALLOC); in Initialize() 39 ".srodata.cst4", ELF::SHT_PROGBITS, ELF::SHF_ALLOC | ELF::SHF_MERGE, 4); in Initialize() 41 ".srodata.cst8", ELF::SHT_PROGBITS, ELF::SHF_ALLOC | ELF::SHF_MERGE, 8); in Initialize() 43 ".srodata.cst16", ELF::SHT_PROGBITS, ELF::SHF_ALLOC | ELF::SHF_MERGE, 16); in Initialize() 45 ".srodata.cst32", ELF::SHT_PROGBITS, ELF::SHF_ALLOC | ELF::SHF_MERGE, 32); in Initialize()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/ |
| HD | MCObjectFileInfo.cpp | 381 : ELF::SHT_PROGBITS; in initELFMCObjectFileInfo() 393 TextSection = Ctx->getELFSection(".text", ELF::SHT_PROGBITS, in initELFMCObjectFileInfo() 396 DataSection = Ctx->getELFSection(".data", ELF::SHT_PROGBITS, in initELFMCObjectFileInfo() 400 Ctx->getELFSection(".rodata", ELF::SHT_PROGBITS, ELF::SHF_ALLOC); in initELFMCObjectFileInfo() 403 Ctx->getELFSection(".tdata", ELF::SHT_PROGBITS, in initELFMCObjectFileInfo() 409 DataRelROSection = Ctx->getELFSection(".data.rel.ro", ELF::SHT_PROGBITS, in initELFMCObjectFileInfo() 413 Ctx->getELFSection(".rodata.cst4", ELF::SHT_PROGBITS, in initELFMCObjectFileInfo() 417 Ctx->getELFSection(".rodata.cst8", ELF::SHT_PROGBITS, in initELFMCObjectFileInfo() 421 Ctx->getELFSection(".rodata.cst16", ELF::SHT_PROGBITS, in initELFMCObjectFileInfo() 425 Ctx->getELFSection(".rodata.cst32", ELF::SHT_PROGBITS, in initELFMCObjectFileInfo() [all …]
|
| HD | MCAsmInfoELF.cpp | 28 return Ctx.getELFSection(".note.GNU-stack", ELF::SHT_PROGBITS, 0); in getNonexecutableStackSection()
|
| HD | MCSectionELF.cpp | 149 else if (Type == ELF::SHT_PROGBITS) in printSwitchToSection()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| HD | ELFAsmParser.cpp | 92 return ParseSectionSwitch(".data", ELF::SHT_PROGBITS, in ParseSectionDirectiveData() 97 return ParseSectionSwitch(".text", ELF::SHT_PROGBITS, in ParseSectionDirectiveText() 107 return ParseSectionSwitch(".rodata", ELF::SHT_PROGBITS, in ParseSectionDirectiveRoData() 112 return ParseSectionSwitch(".tdata", ELF::SHT_PROGBITS, in ParseSectionDirectiveTData() 124 return ParseSectionSwitch(".data.rel", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRel() 129 return ParseSectionSwitch(".data.rel.ro", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRelRo() 135 return ParseSectionSwitch(".eh_frame", ELF::SHT_PROGBITS, in ParseSectionDirectiveEhFrame() 528 return SectionName == ".eh_frame" && Type == ELF::SHT_PROGBITS; in allowSectionTypeMismatch() 534 return SectionName.starts_with(".debug_") && Type == ELF::SHT_PROGBITS; in allowSectionTypeMismatch() 634 unsigned Type = ELF::SHT_PROGBITS; in ParseSectionArguments() [all …]
|
| /freebsd-13-stable/usr.sbin/btxld/ |
| HD | elfh.c | 101 htole32(SHT_PROGBITS), /* sh_type */ 113 htole32(SHT_PROGBITS), /* sh_type */
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| HD | HexagonTargetObjectFile.cpp | 117 getContext().getELFSection(".sdata", ELF::SHT_PROGBITS, in Initialize() 181 return getContext().getELFSection(GO->getSection(), ELF::SHT_PROGBITS, in getExplicitSectionGlobal() 184 return getContext().getELFSection(GO->getSection(), ELF::SHT_PROGBITS, in getExplicitSectionGlobal() 419 return getContext().getELFSection(Name.str(), ELF::SHT_PROGBITS, in selectSmallSectionForGlobal()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Xtensa/MCTargetDesc/ |
| HD | XtensaTargetStreamer.cpp | 92 SectionName, ELF::SHT_PROGBITS, ELF::SHF_EXECINSTR | ELF::SHF_ALLOC); in emitLiteral() 112 SectionName, ELF::SHT_PROGBITS, ELF::SHF_EXECINSTR | ELF::SHF_ALLOC); in startLiteralSection()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| HD | R600AsmPrinter.cpp | 113 Context.getELFSection(".AMDGPU.config", ELF::SHT_PROGBITS, 0); in runOnMachineFunction() 122 Context.getELFSection(".AMDGPU.csdata", ELF::SHT_PROGBITS, 0); in runOnMachineFunction()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/M68k/ |
| HD | M68kTargetObjectFile.cpp | 44 ".sdata", ELF::SHT_PROGBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC); in Initialize()
|
| /freebsd-13-stable/contrib/elftoolchain/libelf/ |
| HD | libelf_data.c | 62 case SHT_PROGBITS: in _libelf_xlate_shtype()
|
| /freebsd-13-stable/usr.sbin/kldxref/ |
| HD | ef_obj.c | 303 case SHT_PROGBITS: in ef_obj_open() 384 case SHT_PROGBITS: in ef_obj_open() 388 if (shdr[i].sh_type == SHT_PROGBITS) { in ef_obj_open()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| HD | ErlangGCPrinter.cpp | 49 ".note.gc", ELF::SHT_PROGBITS, 0)); in finishAssembly()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| HD | LanaiTargetObjectFile.cpp | 33 ".sdata", ELF::SHT_PROGBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC); in Initialize()
|
| /freebsd-13-stable/sys/cddl/contrib/opensolaris/uts/common/ctf/ |
| HD | ctf_mod.c | 130 ctfsect.cts_type = SHT_PROGBITS; in ctf_modopen()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/ |
| HD | ARMTargetObjectFile.cpp | 47 unsigned Type = ELF::SHT_PROGBITS; in Initialize()
|
| /freebsd-13-stable/sys/kern/ |
| HD | link_elf_obj.c | 400 case SHT_PROGBITS: in link_elf_link_preload() 486 case SHT_PROGBITS: in link_elf_link_preload() 496 if (shdr[i].sh_type == SHT_PROGBITS) in link_elf_link_preload() 813 case SHT_PROGBITS: in link_elf_load_file() 936 case SHT_PROGBITS: in link_elf_load_file() 1015 case SHT_PROGBITS: in link_elf_load_file() 1056 } else if (shdr[i].sh_type == SHT_PROGBITS) in link_elf_load_file() 1100 if (shdr[i].sh_type == SHT_PROGBITS in link_elf_load_file()
|
| /freebsd-13-stable/contrib/elftoolchain/libdwarf/ |
| HD | libdwarf_str.c | 156 ret = _dwarf_section_callback(dbg, ds, SHT_PROGBITS, 0, 0, 0, error); in _dwarf_strtab_gen()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/ |
| HD | MipsTargetObjectFile.cpp | 49 ".sdata", ELF::SHT_PROGBITS, in Initialize()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| HD | MSP430AsmPrinter.cpp | 171 ELF::SHT_PROGBITS, ELF::SHF_ALLOC | ELF::SHF_EXECINSTR); in EmitInterruptVectorSection()
|
| /freebsd-13-stable/contrib/llvm-project/lld/ELF/ |
| HD | SyntheticSections.cpp | 91 auto *sec = make<MergeInputSection>(SHF_MERGE | SHF_STRINGS, SHT_PROGBITS, 1, in createCommentSection() 268 return make<InputSection>(ctx.internalFile, SHF_ALLOC, SHT_PROGBITS, 1, in createInterpSection() 382 : SyntheticSection(SHF_ALLOC, SHT_PROGBITS, 1, ".eh_frame") {} in EhFrameSection() 651 : SyntheticSection(SHF_ALLOC | SHF_WRITE, SHT_PROGBITS, in GotSection() 734 : SyntheticSection(SHF_ALLOC | SHF_WRITE | SHF_MIPS_GPREL, SHT_PROGBITS, 16, in MipsGotSection() 1165 : SyntheticSection(SHF_ALLOC | SHF_WRITE, SHT_PROGBITS, config->wordsize, in GotPltSection() 1218 config->emachine == EM_PPC64 ? SHT_NOBITS : SHT_PROGBITS, in IgotPltSection() 2538 : SyntheticSection(SHF_ALLOC | SHF_EXECINSTR, SHT_PROGBITS, 16, ".plt"), in PltSection() 2598 : SyntheticSection(SHF_ALLOC | SHF_EXECINSTR, SHT_PROGBITS, 16, ".iplt") { in IpltSection() 2704 : SyntheticSection(SHF_ALLOC | SHF_EXECINSTR, SHT_PROGBITS, 16, ".plt") {} in IBTPltSection() [all …]
|
| /freebsd-13-stable/cddl/contrib/opensolaris/lib/libctf/common/ |
| HD | ctf_lib.c | 259 ctfsect.cts_type = SHT_PROGBITS; in ctf_fdopen() 398 if (shp->sh_type == SHT_PROGBITS && in ctf_fdopen()
|
| /freebsd-13-stable/lib/libc/gen/ |
| HD | nlist.c | 282 nl->n_type = sh->sh_type == SHT_PROGBITS ? in elf_sym_to_nlist()
|