Home
last modified time | relevance | path

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

1234

/external/llvm/lib/MC/
DMCObjectFileInfo.cpp386 EHSectionType = ELF::SHT_PROGBITS; in InitELFMCObjectFileInfo()
400 TextSection = Ctx->getELFSection(".text", ELF::SHT_PROGBITS, in InitELFMCObjectFileInfo()
403 DataSection = Ctx->getELFSection(".data", ELF::SHT_PROGBITS, in InitELFMCObjectFileInfo()
407 Ctx->getELFSection(".rodata", ELF::SHT_PROGBITS, ELF::SHF_ALLOC); in InitELFMCObjectFileInfo()
410 Ctx->getELFSection(".tdata", ELF::SHT_PROGBITS, in InitELFMCObjectFileInfo()
416 DataRelSection = Ctx->getELFSection(".data.rel", ELF::SHT_PROGBITS, in InitELFMCObjectFileInfo()
419 DataRelLocalSection = Ctx->getELFSection(".data.rel.local", ELF::SHT_PROGBITS, in InitELFMCObjectFileInfo()
422 DataRelROSection = Ctx->getELFSection(".data.rel.ro", ELF::SHT_PROGBITS, in InitELFMCObjectFileInfo()
426 ".data.rel.ro.local", ELF::SHT_PROGBITS, ELF::SHF_ALLOC | ELF::SHF_WRITE); in InitELFMCObjectFileInfo()
429 Ctx->getELFSection(".rodata.cst4", ELF::SHT_PROGBITS, in InitELFMCObjectFileInfo()
[all …]
DMCAsmInfoELF.cpp25 return Ctx.getELFSection(".note.GNU-stack", ELF::SHT_PROGBITS, 0); in getNonexecutableStackSection()
/external/llvm/test/MC/AsmParser/
Dsection_names.s34 # CHECK-NEXT: Type: SHT_PROGBITS
36 # CHECK-NEXT: Type: SHT_PROGBITS
38 # CHECK-NEXT: Type: SHT_PROGBITS
42 # CHECK-NEXT: Type: SHT_PROGBITS
44 # CHECK-NEXT: Type: SHT_PROGBITS
48 # CHECK-NEXT: Type: SHT_PROGBITS
50 # CHECK-NEXT: Type: SHT_PROGBITS
54 # CHECK-NEXT: Type: SHT_PROGBITS
56 # CHECK-NEXT: Type: SHT_PROGBITS
Dsection.s52 # CHECK-NEXT: Type: SHT_PROGBITS
68 # CHECK-NEXT: Type: SHT_PROGBITS
84 # CHECK-NEXT: Type: SHT_PROGBITS
100 # CHECK-NEXT: Type: SHT_PROGBITS
116 # CHECK-NEXT: Type: SHT_PROGBITS
/external/llvm/lib/Target/XCore/
DXCoreTargetObjectFile.cpp30 DataSection = Ctx.getELFSection(".dp.data", ELF::SHT_PROGBITS, in Initialize()
33 DataSectionLarge = Ctx.getELFSection(".dp.data.large", ELF::SHT_PROGBITS, in Initialize()
36 DataRelROSection = Ctx.getELFSection(".dp.rodata", ELF::SHT_PROGBITS, in Initialize()
40 ".dp.rodata.large", ELF::SHT_PROGBITS, in Initialize()
43 Ctx.getELFSection(".cp.rodata", ELF::SHT_PROGBITS, in Initialize()
46 Ctx.getELFSection(".cp.rodata.large", ELF::SHT_PROGBITS, in Initialize()
49 ".cp.rodata.cst4", ELF::SHT_PROGBITS, in Initialize()
52 ".cp.rodata.cst8", ELF::SHT_PROGBITS, in Initialize()
55 ".cp.rodata.cst16", ELF::SHT_PROGBITS, in Initialize()
58 Ctx.getELFSection(".cp.rodata.string", ELF::SHT_PROGBITS, in Initialize()
[all …]
/external/google-breakpad/src/common/linux/
Dfile_id_unittest.cc139 elf.AddSection(".text", text, SHT_PROGBITS); in TYPED_TEST()
167 elf.AddSection(".text", text, SHT_PROGBITS); in TYPED_TEST()
199 elf.AddSection(".text", text, SHT_PROGBITS); in TYPED_TEST()
232 elf1.AddSection(".foo", foo_1, SHT_PROGBITS); in TYPED_TEST()
235 elf1.AddSection(".text", text_1, SHT_PROGBITS); in TYPED_TEST()
250 elf2.AddSection(".foo", foo_2, SHT_PROGBITS); in TYPED_TEST()
252 elf2.AddSection(".text", text_2, SHT_PROGBITS); in TYPED_TEST()
Ddump_symbols_unittest.cc98 elf.AddSection(".text", text, SHT_PROGBITS); in TEST_F()
138 elf.AddSection(".text", text, SHT_PROGBITS); in TEST_F()
Ddump_symbols.cc604 elf_header->e_machine == EM_MIPS ? SHT_MIPS_DWARF : SHT_PROGBITS; in LoadSymbols()
618 FindElfSectionByName<ElfClass>(".stab", SHT_PROGBITS, in LoadSymbols()
704 FindElfSectionByName<ElfClass>(".eh_frame", SHT_PROGBITS, in LoadSymbols()
711 FindElfSectionByName<ElfClass>(".got", SHT_PROGBITS, in LoadSymbols()
715 FindElfSectionByName<ElfClass>(".text", SHT_PROGBITS, in LoadSymbols()
736 = FindElfSectionByName<ElfClass>(".gnu_debuglink", SHT_PROGBITS, in LoadSymbols()
/external/llvm/lib/MC/MCParser/
DELFAsmParser.cpp83 return ParseSectionSwitch(".data", ELF::SHT_PROGBITS, in ParseSectionDirectiveData()
88 return ParseSectionSwitch(".text", ELF::SHT_PROGBITS, in ParseSectionDirectiveText()
98 return ParseSectionSwitch(".rodata", ELF::SHT_PROGBITS, in ParseSectionDirectiveRoData()
103 return ParseSectionSwitch(".tdata", ELF::SHT_PROGBITS, in ParseSectionDirectiveTData()
115 return ParseSectionSwitch(".data.rel", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRel()
121 return ParseSectionSwitch(".data.rel.ro", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRelRo()
127 return ParseSectionSwitch(".data.rel.ro.local", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRelRoLocal()
133 return ParseSectionSwitch(".eh_frame", ELF::SHT_PROGBITS, in ParseSectionDirectiveEhFrame()
490 unsigned Type = ELF::SHT_PROGBITS; in ParseSectionArguments()
511 Type = ELF::SHT_PROGBITS; in ParseSectionArguments()
/external/elfutils/src/tests/
Dasm-tst1.c92 scn1 = asm_newscn (ctx, ".text", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR); in main()
93 scn2 = asm_newscn (ctx, ".data", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE); in main()
186 if (shdr->sh_type != (cnt == 3 ? SHT_STRTAB : SHT_PROGBITS)) in main()
Dasm-tst6.c74 scn = asm_newscn_ingrp (ctx, ".data", SHT_PROGBITS, in main()
114 scn = asm_newscn_ingrp (ctx, ".stab", SHT_PROGBITS, 0, grp); in main()
Dupdate4.c131 shdr->sh_type = SHT_PROGBITS; in main()
167 shdr->sh_type = SHT_PROGBITS; in main()
203 shdr->sh_type = SHT_PROGBITS; in main()
Dasm-tst2.c91 scn1 = asm_newscn (ctx, ".data", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE); in main()
202 if (shdr->sh_type != (cnt == 2 ? SHT_STRTAB : SHT_PROGBITS)) in main()
Dasm-tst9.c111 scn = asm_newscn (ctx, ".data", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE); in main()
236 if (shdr->sh_type != (cnt == 2 ? SHT_STRTAB : SHT_PROGBITS)) in main()
Dasm-tst3.c46 [1] = SHT_PROGBITS,
83 scn1 = asm_newscn (ctx, ".data", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE); in main()
/external/llvm/test/Object/
Dyaml2obj-elf-multi-doc.test22 Type: SHT_PROGBITS
44 Type: SHT_PROGBITS
Dreadobj-shared-object.test55 ELF: Type: SHT_PROGBITS
63 ELF: Type: SHT_PROGBITS
70 ELF: Type: SHT_PROGBITS
87 ELF: Type: SHT_PROGBITS
95 ELF: Type: SHT_PROGBITS
Dobj2yaml.test200 ELF-MIPSEL-NEXT: Type: SHT_PROGBITS
229 ELF-MIPSEL-NEXT: Type: SHT_PROGBITS
239 ELF-MIPSEL-NEXT: Type: SHT_PROGBITS
243 ELF-MIPSEL-NEXT: Type: SHT_PROGBITS
307 ELF-MIPS64EL-NEXT: Type: SHT_PROGBITS
312 ELF-MIPS64EL-NEXT: Type: SHT_PROGBITS
336 ELF-MIPS64EL-NEXT: Type: SHT_PROGBITS
369 ELF-X86-64-NEXT: Type: SHT_PROGBITS
374 ELF-X86-64-NEXT: Type: SHT_PROGBITS
380 ELF-X86-64-NEXT: Type: SHT_PROGBITS
/external/llvm/test/MC/ELF/
Dentsize.ll25 ; 64-NEXT: Type: SHT_PROGBITS
42 ; 64-NEXT: Type: SHT_PROGBITS
/external/elfutils/src/libasm/
Dasm_newscn.c91 if (type == SHT_PROGBITS) in text_newscn()
179 || (type != SHT_PROGBITS && unlikely (type != SHT_NOBITS)))
/external/llvm/test/MC/ARM/
Deh-link.s13 @ CHECK-NEXT: Type: SHT_PROGBITS
48 @ CHECK-NEXT: Type: SHT_PROGBITS
Deh-directive-section-comdat.s66 @ CHECK: Type: SHT_PROGBITS (0x1)
84 @ CHECK: Type: SHT_PROGBITS (0x1)
/external/elfutils/src/libebl/
Deblcheckreloctargettype.c42 if (sh_type == SHT_PROGBITS || sh_type == SHT_NOBITS) in ebl_check_reloc_target_type()
/external/llvm/test/MC/PowerPC/
Dppc64-fixup-apply.s66 # CHECK-NEXT: Type: SHT_PROGBITS
94 # CHECK-NEXT: Type: SHT_PROGBITS
Dppc64-initial-cfa.s17 # STATIC-NEXT: Type: SHT_PROGBITS
58 # PIC-NEXT: Type: SHT_PROGBITS

1234