/external/llvm/test/MC/ELF/ |
section-quoting.s | 4 .section bar-"foo" 5 .section "foo" 6 .section "foo bar" 8 // CHECK: .section "bar-\"foo\"" 9 // CHECK: .section foo 10 // CHECK: .section "foo bar"
|
bad-section.s | 5 // CHECK: .section "foo"-bar 9 .section "foo"-bar
|
section-sym-err.s | 3 .section foo
|
section.s | 5 .section .note.GNU-stack,"",@progbits 6 .section .note.GNU-stack2,"",%progbits 7 .section .note.GNU-,"",@progbits 8 .section -.note.GNU,"","progbits" 17 .section .init 18 .section .fini 19 .section .rodata 20 .section zed, "" 22 // CHECK: Section { 37 // CHECK-NEXT: Section { [all...] |
bad-expr3.s | 7 .section .zed 9 .section .bah
|
section-unique-err1.s | 5 .section .text,"ax",@progbits,unique, "abc"
|
section-unique-err2.s | 5 .section .text,"ax",@progbits,unique, -1
|
section-unique-err3.s | 5 .section .text,"ax",@progbits,unique, 4294967295
|
section-unique-err4.s | 5 .section .text,"ax",@progbits,unique 1
|
/development/ndk/platforms/android-21/arch-mips64/src/ |
crtend_so.S | 1 .section .init_array, "aw" 4 .section .fini_array, "aw"
|
/development/ndk/platforms/android-3/arch-arm/src/ |
crtend_so.S | 33 .section .init_array, "aw" 36 .section .fini_array, "aw"
|
crtend.S | 29 .section .preinit_array, "aw" 32 .section .init_array, "aw" 35 .section .fini_array, "aw" 38 .section .ctors, "aw"
|
__dso_handle_so.h | 35 __attribute__ ((section (".data")))
|
/development/ndk/platforms/android-9/arch-mips/src/ |
crtend_so.S | 1 .section .init_array, "aw" 4 .section .fini_array, "aw"
|
/external/llvm/test/MC/COFF/ |
section.s | 4 .section .foo$bar; .long 1 5 .section .foo@bar; .long 1 6 .section ABCDEFGHIJKLMNOPQRSTUVWXYZ; .long 1 7 .section abcdefghijklmnopqrstuvwxyz; .long 1 8 .section _0123456789; .long 1 11 // CHECK: Section { 14 // CHECK: Section { 17 // CHECK: Section { 20 // CHECK: Section { 23 // CHECK: Section { [all...] |
section-invalid-flags.s | 4 // CHECK: error: conflicting section flags 'b' and 'd' 5 .section s_db,"db"; .long 1 7 // CHECK: error: conflicting section flags 'b' and 'd' 8 .section s_bd,"bd"; .long 1 11 .section .stack, "w", @nobits
|
section-passthru-flags.s | 2 .section .klaatu,"wn" 3 // CHECK: .section .klaatu,"wn" 4 .section .barada,"y" 5 // CHECK: .section .barada,"y" 6 .section .nikto,"dws" 7 // CHECK: .section .nikto,"dws"
|
linkonce.s | 1 // Test section manipulation via .linkonce directive. 6 .section s1 10 .section s2 14 .section s3 18 .section s4 22 .section s5 26 .section s6 29 .section s7 33 .section s8 37 .section .foo$ba [all...] |
/external/llvm/test/MC/ARM/ |
dwarf-asm-no-code.s | 7 .section .data, "aw"
|
/external/llvm/test/LTO/X86/Inputs/ |
bcsection.macho.s | 1 .section .llvmbc,.llvmbc
|
bcsection.s | 1 .section .llvmbc
|
/external/llvm/test/MC/MachO/ |
section-attributes.s | 4 // CHECK: # Section 1 6 .section __TEXT,__objc_opt_ro
|
/external/llvm/test/tools/gold/Inputs/ |
bcsection.s | 1 .section .llvmbc
|
/external/clang/test/Sema/ |
attr-section.c | 3 int x __attribute__((section( 4 42))); // expected-error {{'section' attribute requires a string}} 8 int y __attribute__((section( 9 "sadf"))); // expected-error {{mach-o section specifier requires a segment and section separated by a comma}} 13 __attribute__((section("NEAR,x"))) int n1; // expected-error {{'section' attribute only applies to functions and global variables}} 14 __attribute__((section("NEAR,x"))) static int n2; // ok. 18 void __attribute__((section("foo,zed"))) test2(void); // expected-note {{previous attribute is here}} 19 void __attribute__((section("bar,zed"))) test2(void) {} // expected-warning {{section does not match previous declaration} [all...] |
/development/ndk/platforms/android-9/arch-x86/src/ |
crtend.S | 1 .section .preinit_array, "aw" 4 .section .init_array, "aw" 7 .section .fini_array, "aw" 10 .section .eh_frame,"a",@progbits
|