Home
last modified time | relevance | path

Searched refs:SHT_PROGBITS (Results 1 – 25 of 82) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/
HDXCoreTargetObjectFile.cpp29 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/
HDAVRTargetObjectFile.cpp25 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/
HDRISCVTargetObjectFile.cpp33 ".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/
HDMCObjectFileInfo.cpp381 : 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 …]
HDMCAsmInfoELF.cpp28 return Ctx.getELFSection(".note.GNU-stack", ELF::SHT_PROGBITS, 0); in getNonexecutableStackSection()
HDMCSectionELF.cpp149 else if (Type == ELF::SHT_PROGBITS) in printSwitchToSection()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
HDELFAsmParser.cpp92 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/
HDelfh.c101 htole32(SHT_PROGBITS), /* sh_type */
113 htole32(SHT_PROGBITS), /* sh_type */
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
HDHexagonTargetObjectFile.cpp117 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/
HDXtensaTargetStreamer.cpp92 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/
HDR600AsmPrinter.cpp113 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/
HDM68kTargetObjectFile.cpp44 ".sdata", ELF::SHT_PROGBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC); in Initialize()
/freebsd-13-stable/contrib/elftoolchain/libelf/
HDlibelf_data.c62 case SHT_PROGBITS: in _libelf_xlate_shtype()
/freebsd-13-stable/usr.sbin/kldxref/
HDef_obj.c303 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/
HDErlangGCPrinter.cpp49 ".note.gc", ELF::SHT_PROGBITS, 0)); in finishAssembly()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
HDLanaiTargetObjectFile.cpp33 ".sdata", ELF::SHT_PROGBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC); in Initialize()
/freebsd-13-stable/sys/cddl/contrib/opensolaris/uts/common/ctf/
HDctf_mod.c130 ctfsect.cts_type = SHT_PROGBITS; in ctf_modopen()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
HDARMTargetObjectFile.cpp47 unsigned Type = ELF::SHT_PROGBITS; in Initialize()
/freebsd-13-stable/sys/kern/
HDlink_elf_obj.c400 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/
HDlibdwarf_str.c156 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/
HDMipsTargetObjectFile.cpp49 ".sdata", ELF::SHT_PROGBITS, in Initialize()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
HDMSP430AsmPrinter.cpp171 ELF::SHT_PROGBITS, ELF::SHF_ALLOC | ELF::SHF_EXECINSTR); in EmitInterruptVectorSection()
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
HDSyntheticSections.cpp91 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/
HDctf_lib.c259 ctfsect.cts_type = SHT_PROGBITS; in ctf_fdopen()
398 if (shp->sh_type == SHT_PROGBITS && in ctf_fdopen()
/freebsd-13-stable/lib/libc/gen/
HDnlist.c282 nl->n_type = sh->sh_type == SHT_PROGBITS ? in elf_sym_to_nlist()

1234