Home
last modified time | relevance | path

Searched full:section (Results 1 – 25 of 5912) sorted by relevance

12345678910>>...237

/llvm-project/llvm/test/tools/llvm-tli-checker/
H A Dps4-tli-check.yaml79 # Omitting the Section attribute makes it undefined.
86 Section: .text
91 Section: .text
95 Section: .text
99 Section: .text
103 Section: .text
107 Section: .text
111 Section: .text
115 Section: .text
119 Section
[all...]
/llvm-project/clang/test/Sema/
H A Dpragma-clang-section.c3 #pragma clang section bss = "mybss.1" data = "mydata.1" rodata = "myrodata.1" text = "mytext.1" // expected-note 2 {{#pragma entered here}}
4 #pragma clang section bss="" data="" rodata="" text=""
5 #pragma clang section
7 #pragma clang section dss="mybss.2" // expected-error {{expected one of [bss|data|rodata|text|relro] section kind in '#pragma clang section'}}
8 #pragma clang section deta="mydata.2" // expected-error {{expected one of [bss|data|rodata|text|relro] section kind in '#pragma clang section'}}
9 #pragma clang section rodet
[all...]
H A Dattr-section.c3 int x __attribute__((section(
4 42))); // expected-error {{expected string literal as argument of 'section' attribute}}
6 int y __attribute__((section(
7 …"sadf"))); // expected-error {{mach-o section specifier requires a segment and section separated b…
11 …__attribute__((section("NEAR,x"))) int n1; // expected-error {{'section' attribute only applies to… in test()
12 __attribute__((section("NEAR,x"))) static int n2; // ok. in test()
16 void __attribute__((section("foo,zed"))) test2(void); // expected-note {{previous attribute is here…
17 void __attribute__((section("bar,zed"))) test2(void) {} // expected-warning {{section does not matc… in test2()
19 enum __attribute__((section("NEAR,x"))) e { one }; // expected-error {{'section' attribute only app…
23 extern int a __attribute__((section("foo,zed"))); // expected-warning {{section attribute is specif…
[all …]
/llvm-project/llvm/test/tools/llvm-objcopy/MachO/
H A Donly-section.test1 ## Show that if --only-section is given, llvm-objcopy removes all sections
10 ## Specify one section. The output file should contain only that section.
11 # RUN: llvm-objcopy --only-section __TEXT,__text %t %t3
12 # RUN: llvm-readobj --sections --section-data --macho-segment %t3 \
13 # RUN: | FileCheck %s --check-prefix=ONLY-TEXT-SECTION
15 # ONLY-TEXT-SECTION: Sections [
16 # ONLY-TEXT-SECTION-NEXT: Section {
17 # ONLY-TEXT-SECTION-NEXT: Index: 0
18 # ONLY-TEXT-SECTION-NEXT: Name: __text (5F 5F 74 65 78 74 00 00 00 00 00 00 00 00 00 00)
19 # ONLY-TEXT-SECTION-NEXT: Segment: __TEXT (5F 5F 54 45 58 54 00 00 00 00 00 00 00 00 00 00)
[all …]
/llvm-project/llvm/test/CodeGen/X86/
H A Dexplicit-section-mergeable.ll1 ; RUN: llc < %s -mtriple=x86_64 -unique-section-names=0 -data-sections 2>&1 \
7 ; CHECK: .section .asm_mergeable1,"aMS",@progbits,2{{$}}
8 ; CHECK-NEXT: .section .asm_nonmergeable1,"a",@progbits{{$}}
9 ; CHECK-NEXT: .section .asm_mergeable2,"aMS",@progbits,2{{$}}
10 ; CHECK-NEXT: .section .asm_nonmergeable2,"a",@progbits{{$}}
12 ;; Test implicit section assignment for symbols
13 ; CHECK: .section .data,"aw",@progbits,unique,1
16 ;; Create a uniquified symbol (as -unique-section-names=0) to test the uniqueID
20 ;; Test implicit section assignment for symbols to ensure that the symbols
22 ; CHECK: .section .rodata,"a",@progbits,unique,2
[all …]
H A Delf-unique-sections-by-flags.ll1 ; Test that global values with the same specified section produces multiple
9 ; Normal function goes in .text, or in it's own named section with -function-sections.
14 ; FNSECTIONS: .section .text.fn_text,"ax",@progbits{{$}}
19 ; It should be emitted to a new section with a new name, not expected to require unique.
24 ; FNSECTIONS: .section .text.fn_text2,"ax",@progbits{{$}}
29 define i32 @fn_s1() section "s1" {
33 ; CHECK: .section s1,"ax",@progbits{{$}}
37 define i32 @fn_s2() section "s2" {
41 ; CHECK: .section s2,"ax",@progbits{{$}}
45 ; A second function in s2 should share the same .section
[all...]
/llvm-project/clang/test/Analysis/
H A Dblock-in-critical-section.cpp61 m.lock(); // expected-note 5{{Entering critical section here}} in testBlockInCriticalSectionWithStdMutex()
62 sleep(3); // expected-warning {{Call to blocking function 'sleep' inside of critical section}} in testBlockInCriticalSectionWithStdMutex()
63 // expected-note@-1 {{Call to blocking function 'sleep' inside of critical section}} in testBlockInCriticalSectionWithStdMutex()
64 getc(stream); // expected-warning {{Call to blocking function 'getc' inside of critical section}} in testBlockInCriticalSectionWithStdMutex()
65 // expected-note@-1 {{Call to blocking function 'getc' inside of critical section}} in testBlockInCriticalSectionWithStdMutex()
66 …(str, stream); // expected-warning {{Call to blocking function 'fgets' inside of critical section}} in testBlockInCriticalSectionWithStdMutex()
67 // expected-note@-1 {{Call to blocking function 'fgets' inside of critical section}} in testBlockInCriticalSectionWithStdMutex()
68 …d, buf, count); // expected-warning {{Call to blocking function 'read' inside of critical section}} in testBlockInCriticalSectionWithStdMutex()
69 // expected-note@-1 {{Call to blocking function 'read' inside of critical section}} in testBlockInCriticalSectionWithStdMutex()
70 … count, flags); // expected-warning {{Call to blocking function 'recv' inside of critical section}} in testBlockInCriticalSectionWithStdMutex()
[all …]
/llvm-project/clang/test/CodeGen/
H A Dclang-sections-attribute.c3 // Test interaction between __attribute__((section())) and '#pragma clang
4 // section' directives. The attribute should always have higher priority than
8 #pragma clang section text=".ext_fun_pragma"
9 void ext_fun(void) __attribute__((section(".ext_fun_attr")));
11 #pragma clang section text=""
13 void ext_fun2(void) __attribute__((section(".ext_fun2_attr")));
14 #pragma clang section text=".ext_fun2_pragma"
16 #pragma clang section text=""
18 #pragma clang section text=".int_fun_pragma"
19 static void int_fun(void) __attribute__((section(".int_fun_attr"), used));
[all …]
/llvm-project/llvm/test/tools/llvm-readobj/ELF/
H A Drelocation-errors.test8 # LLVM-NEXT: Section (3) .rel.text {
9section with index 3: unable to read an entry with index 4278124286 from SHT_SYMTAB section with i…
10section with index 3: unable to read an entry with index 4278124286 from SHT_SYMTAB section with i…
13 # LLVM-NEXT: warning: '[[FILE]]': invalid section index: 255
14 # LLVM-NEXT: 0x4 R_X86_64_NONE <section 255>{{$}}
16 …XT: warning: '[[FILE]]': a section [index 2] has an invalid sh_name (0xfefefefe) offset which goes…
17 # LLVM-NEXT: 0x6 R_X86_64_NONE <section 2>{{$}}
19 # LLVM-NEXT: Section (4) .rela.text {
20 # LLVM-NEXT: warning: '[[FILE]]': unable to print relocation 0 in SHT_RELA section with index 4: in…
24 # GNU: Relocation section '.rel.text' at offset 0x41 contains 7 entries:
[all …]
H A Dsection-symbols.test1 ## ELF section symbols use the corresponding section names when printing
3 ## are printed if the section is somehow invalid.
14 # LLVM1-NEXT: Section (5) .rela.foo {
17 # LLVM1-NEXT: warning: '[[FILE]]': invalid section index: 67
18 # LLVM1-NEXT: 0x3 R_X86_64_NONE <section 67> 0x0
22 # LLVM1-NEXT: warning: '[[FILE]]': invalid section index: 66
23 # LLVM1-NEXT: 0x7 R_X86_64_NONE <section 66> 0x0
31 # LLVM1: Name: <section 67> (0)
35 # LLVM1: Name: <section 66> (0)
37 …LVM1: warning: '[[FILE]]': a section [index 3] has an invalid sh_name (0xffff) offset which goes p…
[all …]
H A Dgroups.test6 # RUN: llvm-readobj --elf-section-groups %t.o | FileCheck %s
7 # RUN: llvm-readobj --elf-section-groups %t.o --elf-output-style=JSON --pretty-print | FileCheck %s…
18 # CHECK-NEXT: Section(s) in group [
30 # CHECK-NEXT: Section(s) in group [
36 # GNU: COMDAT group section [ 1] `.group' [foo] contains 2 sections:
40 # GNU: COMDAT group section [ 2] `.group1' [bar] contains 2 sections:
142 Section: .text.foo
145 Section: .text.bar
148 ## Check that we report a warning and continue dumping when a section is included
152 # RUN: llvm-readobj --section-groups %t.dup.o 2>&1 | FileCheck %s -DFILE=%t.dup.o --check-prefix=DU…
[all …]
/llvm-project/llvm/test/tools/yaml2obj/ELF/
H A Dsection-headers.yaml1 ## Check we can use "SectionHeaderTable" tag to reorder section header entries.
4 ## section without the unique prefix. The section header table describes sections
6 # RUN: yaml2obj %s --docnum=1 -o %t1 -DSEC1=".section (1)" -DSEC2=".section (2)" -DSEC3=".section.f…
7 # RUN: llvm-readelf --section-headers %t1 | FileCheck %s --check-prefix=NO-OP
9 # NO-OP: Section Headers:
12 # NO-OP-NEXT: [ 1] .section PROGBITS 0000000000000000 000040 000010 00 0 0 0
13 # NO-OP-NEXT: [ 2] .section PROGBITS 0000000000000000 000050 000020 00 0 0 0
14 # NO-OP-NEXT: [ 3] .section.foo PROGBITS 0000000000000000 0000a0 000040 00 0 0 0
24 - Name: .section (1)
27 - Name: .section (2)
[all …]
/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp26 Section::~Section() = default;
46 static void commonSectionMapping(IO &IO, WasmYAML::Section &Section) { in commonSectionMapping() argument
47 IO.mapRequired("Type", Section.Type); in commonSectionMapping()
48 IO.mapOptional("Relocations", Section.Relocations); in commonSectionMapping()
49 IO.mapOptional("HeaderSecSizeEncodingLen", Section.HeaderSecSizeEncodingLen); in commonSectionMapping()
52 static void sectionMapping(IO &IO, WasmYAML::DylinkSection &Section) { in sectionMapping() argument
53 commonSectionMapping(IO, Section); in sectionMapping()
54 IO.mapRequired("Name", Section in sectionMapping()
64 sectionMapping(IO & IO,WasmYAML::NameSection & Section) sectionMapping() argument
72 sectionMapping(IO & IO,WasmYAML::LinkingSection & Section) sectionMapping() argument
82 sectionMapping(IO & IO,WasmYAML::ProducersSection & Section) sectionMapping() argument
90 sectionMapping(IO & IO,WasmYAML::TargetFeaturesSection & Section) sectionMapping() argument
96 sectionMapping(IO & IO,WasmYAML::CustomSection & Section) sectionMapping() argument
102 sectionMapping(IO & IO,WasmYAML::TypeSection & Section) sectionMapping() argument
107 sectionMapping(IO & IO,WasmYAML::ImportSection & Section) sectionMapping() argument
112 sectionMapping(IO & IO,WasmYAML::FunctionSection & Section) sectionMapping() argument
117 sectionMapping(IO & IO,WasmYAML::TableSection & Section) sectionMapping() argument
122 sectionMapping(IO & IO,WasmYAML::MemorySection & Section) sectionMapping() argument
127 sectionMapping(IO & IO,WasmYAML::TagSection & Section) sectionMapping() argument
132 sectionMapping(IO & IO,WasmYAML::GlobalSection & Section) sectionMapping() argument
137 sectionMapping(IO & IO,WasmYAML::ExportSection & Section) sectionMapping() argument
142 sectionMapping(IO & IO,WasmYAML::StartSection & Section) sectionMapping() argument
147 sectionMapping(IO & IO,WasmYAML::ElemSection & Section) sectionMapping() argument
152 sectionMapping(IO & IO,WasmYAML::CodeSection & Section) sectionMapping() argument
157 sectionMapping(IO & IO,WasmYAML::DataSection & Section) sectionMapping() argument
162 sectionMapping(IO & IO,WasmYAML::DataCountSection & Section) sectionMapping() argument
168 mapping(IO & IO,std::unique_ptr<WasmYAML::Section> & Section) mapping() argument
[all...]
H A DWasmEmitter.cpp33 void writeRelocSection(raw_ostream &OS, WasmYAML::Section &Sec,
38 void writeSectionContent(raw_ostream &OS, WasmYAML::CustomSection &Section);
39 void writeSectionContent(raw_ostream &OS, WasmYAML::TypeSection &Section);
40 void writeSectionContent(raw_ostream &OS, WasmYAML::ImportSection &Section);
41 void writeSectionContent(raw_ostream &OS, WasmYAML::FunctionSection &Section);
42 void writeSectionContent(raw_ostream &OS, WasmYAML::TableSection &Section);
43 void writeSectionContent(raw_ostream &OS, WasmYAML::MemorySection &Section);
44 void writeSectionContent(raw_ostream &OS, WasmYAML::TagSection &Section);
45 void writeSectionContent(raw_ostream &OS, WasmYAML::GlobalSection &Section);
46 void writeSectionContent(raw_ostream &OS, WasmYAML::ExportSection &Section);
163 writeSectionContent(raw_ostream & OS,WasmYAML::DylinkSection & Section) writeSectionContent() argument
186 writeSectionContent(raw_ostream & OS,WasmYAML::LinkingSection & Section) writeSectionContent() argument
271 writeSectionContent(raw_ostream & OS,WasmYAML::NameSection & Section) writeSectionContent() argument
315 writeSectionContent(raw_ostream & OS,WasmYAML::ProducersSection & Section) writeSectionContent() argument
337 writeSectionContent(raw_ostream & OS,WasmYAML::TargetFeaturesSection & Section) writeSectionContent() argument
347 writeSectionContent(raw_ostream & OS,WasmYAML::CustomSection & Section) writeSectionContent() argument
365 writeSectionContent(raw_ostream & OS,WasmYAML::TypeSection & Section) writeSectionContent() argument
385 writeSectionContent(raw_ostream & OS,WasmYAML::ImportSection & Section) writeSectionContent() argument
422 writeSectionContent(raw_ostream & OS,WasmYAML::FunctionSection & Section) writeSectionContent() argument
429 writeSectionContent(raw_ostream & OS,WasmYAML::ExportSection & Section) writeSectionContent() argument
439 writeSectionContent(raw_ostream & OS,WasmYAML::StartSection & Section) writeSectionContent() argument
444 writeSectionContent(raw_ostream & OS,WasmYAML::TableSection & Section) writeSectionContent() argument
459 writeSectionContent(raw_ostream & OS,WasmYAML::MemorySection & Section) writeSectionContent() argument
466 writeSectionContent(raw_ostream & OS,WasmYAML::TagSection & Section) writeSectionContent() argument
475 writeSectionContent(raw_ostream & OS,WasmYAML::GlobalSection & Section) writeSectionContent() argument
491 writeSectionContent(raw_ostream & OS,WasmYAML::ElemSection & Section) writeSectionContent() argument
519 writeSectionContent(raw_ostream & OS,WasmYAML::CodeSection & Section) writeSectionContent() argument
547 writeSectionContent(raw_ostream & OS,WasmYAML::DataSection & Section) writeSectionContent() argument
561 writeSectionContent(raw_ostream & OS,WasmYAML::DataCountSection & Section) writeSectionContent() argument
[all...]
/llvm-project/lld/test/COFF/
H A Doutput-chars.test4 # RUN: lld-link /out:%t.dll /entry:__ImageBase /dll %t.obj /section:.foo,rwe
5 # RUN: llvm-readobj --sections %t.dll | FileCheck --check-prefix=SECTION %s
7 # RUN: llvm-readobj --sections --section-data %t.dll | FileCheck --check-prefix=MERGE %s
8 # RUN: lld-link /out:%t.dll /entry:__ImageBase /dll %t.obj /merge:.foo=.bar /section:.foo,rwe
9 # RUN: llvm-readobj --sections %t.dll | FileCheck --check-prefix=MERGE-SECTION %s
24 # SECTION: Name: .foo
25 # SECTION: Characteristics [
26 # SECTION-NEXT: IMAGE_SCN_CNT_INITIALIZED_DATA
27 # SECTION-NEXT: IMAGE_SCN_MEM_EXECUTE
28 # SECTION-NEXT: IMAGE_SCN_MEM_READ
[all …]
/llvm-project/llvm/test/MC/COFF/
H A Dsection.s5 .section .foo$bar; .long 1
6 .section .foo@bar; .long 1
7 .section ABCDEFGHIJKLMNOPQRSTUVWXYZ; .long 1
8 .section abcdefghijklmnopqrstuvwxyz; .long 1
9 .section _0123456789; .long 1
12 // CHECK: Section {
15 // CHECK: Section {
18 // CHECK: Section {
21 // CHECK: Section {
24 // CHECK: Section {
[all …]
/llvm-project/lld/test/ELF/
H A Dicf-safe.s18 # CHECK: selected section {{.*}}:(.rodata.h3)
19 # CHECK-NEXT: removing identical section {{.*}}:(.rodata.h4)
20 # CHECK-NEXT: selected section {{.*}}:(.text.f3)
21 # CHECK-NEXT: removing identical section {{.*}}:(.text.f4)
22 # CHECK-NEXT: selected section {{.*}}:(.rodata.g3)
23 # CHECK-NEXT: removing identical section {{.*}}:(.rodata.g4)
24 # CHECK-NEXT: selected section {{.*}}:(.rodata.l3)
25 # CHECK-NEXT: removing identical section {{.*}}:(.rodata.l4)
26 # CHECK-NEXT: selected section {{.*}}:(.text)
27 # CHECK-NEXT: removing identical section {{.*}}:(.text)
[all …]
/llvm-project/llvm/test/tools/llvm-objcopy/ELF/
H A Dset-section-flags.test3 # Single flags on a section with no flags:
4 # RUN: llvm-objcopy --set-section-flags=.foo=alloc \
5 # RUN: --set-section-flags=.baz=alloc --set-section-flags=.rela.baz=alloc %t %t.alloc
7 # RUN: llvm-objcopy --set-section-flags=.foo=load \
8 # RUN: --set-section-flags=.baz=load --set-section-flags=.rela.baz=load %t %t.load
10 # RUN: llvm-objcopy --set-section-flags=.foo=noload \
11 # RUN: --set-section-flags=.baz=noload --set-section-flags=.rela.baz=noload %t %t.noload
13 # RUN: llvm-objcopy --set-section-flags=.foo=readonly \
14 # RUN: --set-section-flags=.baz=readonly --set-section-flags=.rela.baz=readonly %t %t.readonly
16 # RUN: llvm-objcopy --set-section-flags=.foo=exclude \
[all …]
H A Dshared-strtab-shstrtab.s3 ## It is possible for the section header table and symbol table to share the
4 ## same string table for storing section and symbol names. This test shows that
12 # RUN: llvm-readobj --section-headers %t.o \
19 # RUN: llvm-readobj --section-headers --symbols %t.basic \
28 ## Case 2: renaming a section.
29 # RUN: llvm-objcopy %t.o %t.rename-section --rename-section .foo=.oof
30 # RUN: llvm-readobj --section-headers --symbols %t.rename-section \
31 # RUN: | FileCheck %s --check-prefix=SECTION-RENAME --implicit-check-not=.shstrtab
33 # SECTION-RENAME: Sections [
34 # SECTION-RENAME: Name: .strtab (
[all …]
/llvm-project/lldb/test/API/functionalities/gdb_remote_client/
H A Dmsp430.yaml151 Section: __interrupt_vector_31
155 Section: .rodata
159 Section: .rodata2
163 Section: .text
167 Section: .data
171 Section: .bss
175 Section: .noinit
179 Section: .persistent
183 Section: .MSP430.attributes
186 Section: .comment
[all …]
/llvm-project/llvm/test/MC/ELF/
H A Dsection.s12 .section .note.GNU-stack,"",@progbits
13 .section .note.GNU-stack2,"",%progbits
14 .section .note.GNU-,"",@progbits
15 .section -.note.GNU,"","progbits"
16 .section src/stack.c,"",@progbits
17 .section ~!@$%^&*()_-+={[}]|\\:<>,"",@progbits
28 .section .init
29 .section .fini
30 .section .rodata
31 .section ze
[all...]
/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDebugLineSectionEmitter.h23 /// This class emits specified line table into the .debug_line section.
36 // Get descriptor for output .debug_line section. in emit()
101 SectionDescriptor &Section) { in emitLineTablePrologue() argument
103 Section.emitIntVal(P.getVersion(), 2); in emitLineTablePrologue()
106 Section.emitIntVal(P.getAddressSize(), 1); in emitLineTablePrologue()
109 Section.emitIntVal(P.SegSelectorSize, 1); in emitLineTablePrologue()
113 Section.emitOffset(0xBADDEF); in emitLineTablePrologue()
115 uint64_t OffsetAfterPrologueLength = Section.OS.tell(); in emitLineTablePrologue()
116 emitLineTableProloguePayload(P, Section); in emitLineTablePrologue()
117 uint64_t OffsetAfterPrologueEnd = Section in emitLineTablePrologue()
128 emitLineTablePrologueV2IncludeAndFileTable(const DWARFDebugLine::Prologue & P,SectionDescriptor & Section) emitLineTablePrologueV2IncludeAndFileTable() argument
170 emitLineTablePrologueV5IncludeAndFileTable(const DWARFDebugLine::Prologue & P,SectionDescriptor & Section) emitLineTablePrologueV5IncludeAndFileTable() argument
269 emitLineTableProloguePayload(const DWARFDebugLine::Prologue & P,SectionDescriptor & Section) emitLineTableProloguePayload() argument
296 emitLineTableRows(const DWARFDebugLine::LineTable & LineTable,SectionDescriptor & Section) emitLineTableRows() argument
[all...]
/llvm-project/llvm/test/tools/obj2yaml/ELF/
H A Dsymbol.yaml29 ## Check how we dump unnamed section symbols.
30 ## Check we are able to handle the section symbol for the null section.
31 ## Document we name them with a section name they describe.
34 # RUN: obj2yaml %t2 | FileCheck %s --check-prefix=SECTION-SYM
36 # SECTION-SYM: --- !ELF
37 # SECTION-SYM-NEXT: FileHeader:
38 # SECTION-SYM-NEXT: Class: ELFCLASS64
39 # SECTION-SYM-NEXT: Data: ELFDATA2LSB
40 # SECTION-SYM-NEXT: Type: ET_REL
41 # SECTION-SYM-NEXT: Sections:
[all …]
/llvm-project/clang/test/CodeGenCXX/
H A Dclang-sections.cpp3 // Test that global variables, statics and functions are attached section-attributes
4 // as per '#pragma clang section' directives.
7 // test with names for each section
9 #pragma clang section bss = "__BSS,__mybss1" data = "__DATA,__mydata1" rodata = "__RODATA,__myrodat…
10 #pragma clang section text = "__TEXT,__mytext1"
12 #pragma clang section bss="my_bss.1" data="my_data.1" rodata="my_rodata.1"
13 #pragma clang section text="my_text.1"
26 #pragma clang section bss=""
29 #pragma clang section data = "" bss = "__BSS,__mybss2" text = "__TEXT,__mytext2"
31 #pragma clang section data="" bss="my_bss.2" text="my_text.2"
[all …]
/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXTargetStreamer.cpp50 const MCSection *Section) { in isDwarfSection()
53 if (!Section || Section->isText()) in isDwarfSection()
55 return Section == FI->getDwarfAbbrevSection() || in isDwarfSection()
56 Section == FI->getDwarfInfoSection() || in isDwarfSection()
57 Section == FI->getDwarfMacinfoSection() || in isDwarfSection()
58 Section == FI->getDwarfFrameSection() || in isDwarfSection()
59 Section == FI->getDwarfAddrSection() || in isDwarfSection()
60 Section == FI->getDwarfRangesSection() || in isDwarfSection()
61 Section in isDwarfSection()
46 isDwarfSection(const MCObjectFileInfo * FI,const MCSection * Section) isDwarfSection() argument
86 changeSection(const MCSection * CurSection,MCSection * Section,uint32_t SubSection,raw_ostream & OS) changeSection() argument
[all...]

12345678910>>...237