Home
last modified time | relevance | path

Searched full:sections (Results 1 – 25 of 2180) sorted by relevance

12345678910>>...88

/external/llvm/test/CodeGen/X86/
Dglobal-sections.ll5 …%s -mtriple=i386-unknown-linux-gnu -data-sections -function-sections | FileCheck %s -check-prefix=…
6 … < %s -mtriple=i386-unknown-linux-gnu -function-sections | FileCheck %s -check-prefix=LINUX-FUNC-S…
7 …mtriple=x86_64-pc-linux -data-sections -function-sections -relocation-model=pic | FileCheck %s -ch…
8 …N: llc < %s -mtriple=i686-pc-win32 -data-sections -function-sections | FileCheck %s -check-prefix=…
9 … RUN: llc < %s -mtriple=i686-pc-win32 -function-sections | FileCheck %s -check-prefix=WIN32-FUNC-S…
15 ; WIN32-SECTIONS: .section .text,"xr",one_only,_F1
16 ; WIN32-SECTIONS: .globl _F1
42 ; LINUX-SECTIONS: .section .text.F2,"ax",@progbits
43 ; LINUX-SECTIONS: .size F2,
44 ; LINUX-SECTIONS-NEXT: .cfi_endproc
[all …]
Dglobal-sections-comdat.ll2 …c < %s -mtriple=i386-unknown-linux -data-sections -function-sections | FileCheck %s -check-prefix=…
3 …e=i386-unknown-linux -data-sections -function-sections -unique-section-names=false | FileCheck %s …
31 ; LINUX-SECTIONS: .section .text.F1,"axG",@progbits,F1,comdat
32 ; LINUX-SECTIONS: .size F1,
33 ; LINUX-SECTIONS-NEXT: .cfi_endproc
34 ; LINUX-SECTIONS-NEXT: .section .rodata.F1,"aG",@progbits,F1,comdat
36 ; LINUX-SECTIONS-SHORT: .section .text,"axG",@progbits,F1,comdat
37 ; LINUX-SECTIONS-SHORT: .size F1,
38 ; LINUX-SECTIONS-SHORT-NEXT: .cfi_endproc
39 ; LINUX-SECTIONS-SHORT-NEXT: .section .rodata,"aG",@progbits,F1,comdat
[all …]
/external/clang/test/OpenMP/
Dparallel_sections_misc_messages.c5 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp parallel sections'}}
6 #pragma omp parallel sections
8 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp parallel sections'}}
9 #pragma omp parallel sections foo
13 #pragma omp parallel sections in test_no_clause()
18 // expected-error@+2 {{the statement for '#pragma omp parallel sections' must be a compound stateme… in test_no_clause()
19 #pragma omp parallel sections in test_no_clause()
22 #pragma omp parallel sections in test_no_clause()
25 …foo(); // expected-error {{statement in 'omp parallel sections' directive must be enclosed into a … in test_no_clause()
37 #pragma omp parallel sections in test_branch_protected_scope()
[all …]
Dsections_misc_messages.c5 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp sections'}}
6 #pragma omp sections
8 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp sections'}}
9 #pragma omp sections foo
13 #pragma omp sections in test_no_clause()
18 // expected-error@+2 {{the statement for '#pragma omp sections' must be a compound statement}} in test_no_clause()
19 #pragma omp sections in test_no_clause()
22 #pragma omp sections in test_no_clause()
25 …foo(); // expected-error {{statement in 'omp sections' directive must be enclosed into a section r… in test_no_clause()
37 #pragma omp sections in test_branch_protected_scope()
[all …]
Dparallel_sections_if_messages.cpp14 #pragma omp parallel sections if // expected-error {{expected '(' after 'if'}} in tmain()
18 …#pragma omp parallel sections if ( // expected-error {{expected expression}} expected-error {{expe… in tmain()
22 #pragma omp parallel sections if () // expected-error {{expected expression}} in tmain()
26 …#pragma omp parallel sections if (argc // expected-error {{expected ')'}} expected-note {{to match… in tmain()
30 …#pragma omp parallel sections if (argc)) // expected-warning {{extra tokens at the end of '#pragma… in tmain()
34 #pragma omp parallel sections if (argc > 0 ? argv[1] : argv[2]) in tmain()
38 …#pragma omp parallel sections if (foobool(argc)), if (true) // expected-error {{directive '#pragma… in tmain()
42 #pragma omp parallel sections if (S) // expected-error {{'S' does not refer to a value}} in tmain()
46 …#pragma omp parallel sections if (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to… in tmain()
50 …#pragma omp parallel sections if (argc argc) // expected-error {{expected ')'}} expected-note {{to… in tmain()
[all …]
Dparallel_sections_firstprivate_messages.cpp69 #pragma omp parallel sections firstprivate // expected-error {{expected '(' after 'firstprivate'}} in foomain()
73 #pragma omp parallel sections firstprivate( // expected-error {{expected expression}} expected-erro… in foomain()
77 #pragma omp parallel sections firstprivate() // expected-error {{expected expression}} in foomain()
81 #pragma omp parallel sections firstprivate(argc // expected-error {{expected ')'}} expected-note {{… in foomain()
85 #pragma omp parallel sections firstprivate(argc, // expected-error {{expected expression}} expected… in foomain()
89 #pragma omp parallel sections firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expect… in foomain()
93 #pragma omp parallel sections firstprivate(argc) in foomain()
97 #pragma omp parallel sections firstprivate(S1) // expected-error {{'S1' does not refer to a value}} in foomain()
101 #pragma omp parallel sections firstprivate(a, b) // expected-error {{firstprivate variable with inc… in foomain()
105 #pragma omp parallel sections firstprivate(argv[1]) // expected-error {{expected variable name}} in foomain()
[all …]
Dsections_firstprivate_messages.cpp70 #pragma omp sections firstprivate // expected-error {{expected '(' after 'firstprivate'}} in foomain()
75 #pragma omp sections firstprivate( // expected-error {{expected expression}} expected-error {{expec… in foomain()
80 #pragma omp sections firstprivate() // expected-error {{expected expression}} in foomain()
85 #pragma omp sections firstprivate(argc // expected-error {{expected ')'}} expected-note {{to match … in foomain()
90 #pragma omp sections firstprivate(argc, // expected-error {{expected expression}} expected-error {{… in foomain()
95 #pragma omp sections firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variab… in foomain()
100 #pragma omp sections firstprivate(argc) in foomain()
105 #pragma omp sections firstprivate(S1) // expected-error {{'S1' does not refer to a value}} in foomain()
110 #pragma omp sections firstprivate(a, b) // expected-error {{firstprivate variable with incomplete t… in foomain()
115 #pragma omp sections firstprivate(argv[1]) // expected-error {{expected variable name}} in foomain()
[all …]
Dparallel_sections_lastprivate_messages.cpp70 #pragma omp parallel sections lastprivate // expected-error {{expected '(' after 'lastprivate'}} in foomain()
74 #pragma omp parallel sections lastprivate( // expected-error {{expected expression}} expected-error… in foomain()
78 #pragma omp parallel sections lastprivate() // expected-error {{expected expression}} in foomain()
82 #pragma omp parallel sections lastprivate(argc // expected-error {{expected ')'}} expected-note {{t… in foomain()
86 #pragma omp parallel sections lastprivate(argc, // expected-error {{expected expression}} expected-… in foomain()
90 #pragma omp parallel sections lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expecte… in foomain()
94 #pragma omp parallel sections lastprivate(argc) in foomain()
98 #pragma omp parallel sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}} in foomain()
102 #pragma omp parallel sections lastprivate(a, b) // expected-error {{lastprivate variable with incom… in foomain()
106 #pragma omp parallel sections lastprivate(argv[1]) // expected-error {{expected variable name}} in foomain()
[all …]
Dsections_lastprivate_messages.cpp71 #pragma omp sections lastprivate // expected-error {{expected '(' after 'lastprivate'}} in foomain()
76 #pragma omp sections lastprivate( // expected-error {{expected expression}} expected-error {{expect… in foomain()
81 #pragma omp sections lastprivate() // expected-error {{expected expression}} in foomain()
86 #pragma omp sections lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match t… in foomain()
91 #pragma omp sections lastprivate(argc, // expected-error {{expected expression}} expected-error {{e… in foomain()
96 #pragma omp sections lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variabl… in foomain()
101 #pragma omp sections lastprivate(argc) in foomain()
106 #pragma omp sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}} in foomain()
111 #pragma omp sections lastprivate(a, b) // expected-error {{lastprivate variable with incomplete typ… in foomain()
116 #pragma omp sections lastprivate(argv[1]) // expected-error {{expected variable name}} in foomain()
[all …]
Dparallel_sections_messages.cpp6 #pragma omp parallel sections // expected-error {{unexpected OpenMP directive '#pragma omp parallel…
9 #pragma omp parallel sections {// expected-warning {{extra tokens at the end of '#pragma omp parall… in main()
13 #pragma omp parallel sections( // expected-warning {{extra tokens at the end of '#pragma omp parall… in main()
17 #pragma omp parallel sections[ // expected-warning {{extra tokens at the end of '#pragma omp parall… in main()
21 #pragma omp parallel sections] // expected-warning {{extra tokens at the end of '#pragma omp parall… in main()
25 #pragma omp parallel sections) // expected-warning {{extra tokens at the end of '#pragma omp parall… in main()
29 #pragma omp parallel sections } // expected-warning {{extra tokens at the end of '#pragma omp paral… in main()
33 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel sections' are ignored}} in main()
34 #pragma omp parallel sections unknown() in main()
41 #pragma omp parallel sections in main()
[all …]
Dsections_private_messages.cpp33 #pragma omp sections private(a) private(this->a) in S4()
47 #pragma omp sections private(a) private(this->a) private(s.a) // expected-error {{expected variable… in operator =()
63 #pragma omp sections private(a) private(this->a) in S6()
70 #pragma omp sections private(a) private(this->a) private(s.a) // expected-error {{expected variable… in operator =()
86 #pragma omp sections private(a) private(this->a) private(T::a) in S7()
93 #pragma omp sections private(a) private(this->a) private(s.a) private(s.T::a) // expected-error 2 {… in operator =()
111 #pragma omp sections private // expected-error {{expected '(' after 'private'}} in foomain()
115 #pragma omp sections private( // expected-error {{expected expression}} expected-error {{expected '… in foomain()
119 #pragma omp sections private() // expected-error {{expected expression}} in foomain()
123 #pragma omp sections private(argc // expected-error {{expected ')'}} expected-note {{to match this … in foomain()
[all …]
Dparallel_sections_private_messages.cpp33 #pragma omp parallel sections private(a) private(this->a) in S4()
47 #pragma omp parallel sections private(a) private(this->a) private(s.a) // expected-error {{expected… in operator =()
63 #pragma omp parallel sections private(a) private(this->a) in S6()
70 #pragma omp parallel sections private(a) private(this->a) private(s.a) // expected-error {{expected… in operator =()
86 #pragma omp parallel sections private(a) private(this->a) private(T::a) in S7()
93 #pragma omp parallel sections private(a) private(this->a) private(s.a) private(s.T::a) // expected-… in operator =()
111 #pragma omp parallel sections private // expected-error {{expected '(' after 'private'}} in foomain()
115 #pragma omp parallel sections private( // expected-error {{expected expression}} expected-error {{e… in foomain()
119 #pragma omp parallel sections private() // expected-error {{expected expression}} in foomain()
123 #pragma omp parallel sections private(argc // expected-error {{expected ')'}} expected-note {{to ma… in foomain()
[all …]
Dparallel_sections_reduction_messages.cpp84 #pragma omp parallel sections reduction // expected-error {{expected '(' after 'reduction'}} in tmain()
88sections reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extr… in tmain()
92 #pragma omp parallel sections reduction( // expected-error {{expected unqualified-id}} expected-war… in tmain()
96 #pragma omp parallel sections reduction(- // expected-warning {{missing ':' after reduction identif… in tmain()
100 #pragma omp parallel sections reduction() // expected-error {{expected unqualified-id}} expected-wa… in tmain()
104 #pragma omp parallel sections reduction(*) // expected-warning {{missing ':' after reduction identi… in tmain()
108 #pragma omp parallel sections reduction(\) // expected-error {{expected unqualified-id}} expected-w… in tmain()
112 #pragma omp parallel sections reduction(& : argc // expected-error {{expected ')'}} expected-note {… in tmain()
116 #pragma omp parallel sections reduction(| : argc, // expected-error {{expected expression}} expecte… in tmain()
120 #pragma omp parallel sections reduction(|| : argc ? i : argc) // expected-error 2 {{expected variab… in tmain()
[all …]
Dsections_reduction_messages.cpp85 #pragma omp sections reduction // expected-error {{expected '(' after 'reduction'}} in tmain()
90 …a omp sections reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {… in tmain()
95 #pragma omp sections reduction( // expected-error {{expected unqualified-id}} expected-warning {{mi… in tmain()
100 #pragma omp sections reduction(- // expected-warning {{missing ':' after reduction identifier - ign… in tmain()
105 #pragma omp sections reduction() // expected-error {{expected unqualified-id}} expected-warning {{m… in tmain()
110 #pragma omp sections reduction(*) // expected-warning {{missing ':' after reduction identifier - ig… in tmain()
115 #pragma omp sections reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{… in tmain()
120 #pragma omp sections reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match… in tmain()
125 #pragma omp sections reduction(| : argc, // expected-error {{expected expression}} expected-error {… in tmain()
130 #pragma omp sections reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable name, … in tmain()
[all …]
Dparallel_sections_num_threads_messages.cpp14 #pragma omp parallel sections num_threads // expected-error {{expected '(' after 'num_threads'}} in tmain()
16 …#pragma omp parallel sections num_threads ( // expected-error {{expected expression}} expected-err… in tmain()
18 #pragma omp parallel sections num_threads () // expected-error {{expected expression}} in tmain()
20 …#pragma omp parallel sections num_threads (argc // expected-error {{expected ')'}} expected-note {… in tmain()
22 …#pragma omp parallel sections num_threads (argc)) // expected-warning {{extra tokens at the end of… in tmain()
24 …#pragma omp parallel sections num_threads ((argc > 0) ? argv[1] : argv[2]) // expected-error 2 {{e… in tmain()
26 …arallel sections num_threads (foobool(argc)), num_threads (true), num_threads (-5) // expected-err… in tmain()
28 #pragma omp parallel sections num_threads (S) // expected-error {{'S' does not refer to a value}} in tmain()
30 …#pragma omp parallel sections num_threads (argv[1]=2) // expected-error {{expected ')'}} expected-… in tmain()
32 #pragma omp parallel sections num_threads (argc) in tmain()
[all …]
Dparallel_sections_shared_messages.cpp66 #pragma omp parallel sections shared // expected-error {{expected '(' after 'shared'}} in main()
68 #pragma omp parallel sections shared( // expected-error {{expected expression}} expected-error {{ex… in main()
70 #pragma omp parallel sections shared() // expected-error {{expected expression}} in main()
72 #pragma omp parallel sections shared(argc // expected-error {{expected ')'}} expected-note {{to mat… in main()
74 #pragma omp parallel sections shared(argc, // expected-error {{expected expression}} expected-error… in main()
76 #pragma omp parallel sections shared(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected var… in main()
78 #pragma omp parallel sections shared(argc) in main()
80 #pragma omp parallel sections shared(S1) // expected-error {{'S1' does not refer to a value}} in main()
82 #pragma omp parallel sections shared(a, b, c, d, f) in main()
84 #pragma omp parallel sections shared(argv[1]) // expected-error {{expected variable name}} in main()
[all …]
Dparallel_sections_default_messages.cpp6 #pragma omp parallel sections default // expected-error {{expected '(' after 'default'}} in main()
8 #pragma omp parallel sections default( // expected-error {{expected 'none' or 'shared' in OpenMP cl… in main()
10 #pragma omp parallel sections default() // expected-error {{expected 'none' or 'shared' in OpenMP c… in main()
12 #pragma omp parallel sections default(none // expected-error {{expected ')'}} expected-note {{to ma… in main()
14 #pragma omp parallel sections default(shared), default(shared) // expected-error {{directive '#prag… in main()
16 #pragma omp parallel sections default(x) // expected-error {{expected 'none' or 'shared' in OpenMP … in main()
26 #pragma omp parallel sections default(none) in main()
31 #pragma omp parallel sections default(none) in main()
33 #pragma omp parallel sections default(shared) in main()
Dparallel_sections_proc_bind_messages.cpp6 #pragma omp parallel sections proc_bind // expected-error {{expected '(' after 'proc_bind'}} in main()
8 #pragma omp parallel sections proc_bind( // expected-error {{expected 'master', 'close' or 'spread'… in main()
10 #pragma omp parallel sections proc_bind() // expected-error {{expected 'master', 'close' or 'spread… in main()
12 #pragma omp parallel sections proc_bind(master // expected-error {{expected ')'}} expected-note {{t… in main()
14 #pragma omp parallel sections proc_bind(close), proc_bind(spread) // expected-error {{directive '#p… in main()
16 #pragma omp parallel sections proc_bind(x) // expected-error {{expected 'master', 'close' or 'sprea… in main()
19 #pragma omp parallel sections proc_bind(master) in main()
22 #pragma omp parallel sections proc_bind(close) in main()
24 #pragma omp parallel sections proc_bind(spread) in main()
Dparallel_sections_copyin_messages.cpp63 #pragma omp parallel sections copyin // expected-error {{expected '(' after 'copyin'}} in main()
67 #pragma omp parallel sections copyin( // expected-error {{expected expression}} expected-error {{ex… in main()
71 #pragma omp parallel sections copyin() // expected-error {{expected expression}} in main()
75 #pragma omp parallel sections copyin(k // expected-error {{expected ')'}} expected-note {{to match … in main()
79 #pragma omp parallel sections copyin(h, // expected-error {{expected expression}} expected-error {{… in main()
83 #pragma omp parallel sections copyin(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected var… in main()
87 #pragma omp parallel sections copyin(l) // expected-error {{'operator=' is a private member of 'S4'… in main()
91 #pragma omp parallel sections copyin(S1) // expected-error {{'S1' does not refer to a value}} in main()
95 #pragma omp parallel sections copyin(argv[1]) // expected-error {{expected variable name}} in main()
99 #pragma omp parallel sections copyin(i) // expected-error {{copyin variable must be threadprivate}} in main()
[all …]
/external/llvm/test/Object/
Dobj2yaml-sectiongroup.test5 RUN: llvm-readobj -sections %t2.o.elf | FileCheck %s -check-prefix=SECTIONS
13 #SECTIONS: Format: ELF64-x86-64
14 #SECTIONS: Arch: x86_64
15 #SECTIONS: AddressSize: 64bit
16 #SECTIONS: Section {
17 #SECTIONS: Index: 1
18 #SECTIONS: Name: .group (21)
19 #SECTIONS: Type: SHT_GROUP (0x11)
20 #SECTIONS: Flags [ (0x0)
21 #SECTIONS: ]
[all …]
/external/clang/test/Driver/
Dfunction-sections.c1 // Test handling of -f(no-)function-sections and -f(no-)data-sections
3 // CHECK-FS: -ffunction-sections
4 // CHECK-NOFS-NOT: -ffunction-sections
5 // CHECK-DS: -fdata-sections
6 // CHECK-NODS-NOT: -fdata-sections
16 // RUN: -ffunction-sections \
21 // RUN: -fno-function-sections \
26 // RUN: -ffunction-sections -fno-function-sections \
31 // RUN: -fno-function-sections -ffunction-sections \
36 // RUN: -ffunction-sections -fno-function-sections -ffunction-sections \
[all …]
Dwasm-toolchain.c2 // enabling -ffunction-sections, -fdata-sections, and -fvisibility=hidden by
6 …sm32-unknown-unknown" {{.*}} "-fvisibility" "hidden" {{.*}} "-ffunction-sections" "-fdata-sections"
8 // Ditto, but ensure that a user -fno-function-sections disables the
9 // default -ffunction-sections.
11 // RUN: %clang %s -### -target wasm32-unknown-unknown -fno-function-sections 2>&1 | FileCheck -chec…
12 // NO_FUNCTION_SECTIONS-NOT: function-sections
14 // Ditto, but ensure that a user -fno-data-sections disables the
15 // default -fdata-sections.
17 // RUN: %clang %s -### -target wasm32-unknown-unknown -fno-data-sections 2>&1 | FileCheck -check-pr…
18 // NO_DATA_SECTIONS-NOT: data-sections
[all …]
/external/openssh/
DPROTOCOL.krl5 The KRL consists of a header and zero or more sections. The header is:
24 Following the header are zero or more sections, each consisting of:
42 These sections use type KRL_SECTION_CERTIFICATES to revoke certificates by
55 Followed by one or more sections:
80 These sections use type KRL_SECTION_CERT_SERIAL_RANGE and hold
93 Bitmap sections use type KRL_SECTION_CERT_SERIAL_BITMAP and revoke keys
104 2.4. Revoked key ID sections
106 KRL_SECTION_CERT_KEY_ID sections revoke particular certificate "key
116 3. Explicit key sections
118 These sections, identified as KRL_SECTION_EXPLICIT_KEY, revoke keys
[all …]
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
DMachODump.cpp126 static void DumpAddress(uint64_t Address, ArrayRef<Section> Sections, in DumpAddress() argument
128 for (unsigned i = 0; i != Sections.size(); ++i) { in DumpAddress()
129 uint64_t addr = Address-Sections[i].Address; in DumpAddress()
130 if (Sections[i].Address <= Address && in DumpAddress()
131 Sections[i].Address + Sections[i].Size > Address) { in DumpAddress()
132 StringRef bytes = MachOObj->getData(Sections[i].Offset, in DumpAddress()
133 Sections[i].Size); in DumpAddress()
135 if (!strcmp(Sections[i].Name, "__cstring")) in DumpAddress()
138 if (!strcmp(Sections[i].Name, "__cfstring")) in DumpAddress()
217 std::vector<Section> &Sections, in getSectionsAndSymbols() argument
[all …]
/external/compiler-rt/test/profile/Linux/
Dcoverage_shared.test2 RUN: %clang_profgen -fdata-sections -ffunction-sections -fcoverage-mapping -c -o %t.d/a.shared.o -f…
3 RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -fcoverage-…
4 RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -o %t-share…
6 RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -o %t-stati…

12345678910>>...88