/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | global-sections.ll | 5 …%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 …]
|
D | global-sections-comdat.ll | 2 …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/llvm/test/CodeGen/X86/ |
D | global-sections.ll | 5 …%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 …]
|
D | global-sections-comdat.ll | 2 …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/ |
D | parallel_sections_misc_messages.c | 5 // 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 …]
|
D | sections_misc_messages.c | 5 // 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 …]
|
D | parallel_sections_if_messages.cpp | 14 #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 …]
|
D | parallel_sections_firstprivate_messages.cpp | 69 #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 …]
|
D | sections_firstprivate_messages.cpp | 70 #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 …]
|
D | parallel_sections_lastprivate_messages.cpp | 70 #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 …]
|
D | sections_lastprivate_messages.cpp | 71 #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 …]
|
D | parallel_sections_messages.cpp | 6 #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 …]
|
D | sections_private_messages.cpp | 33 #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 …]
|
D | parallel_sections_private_messages.cpp | 33 #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 …]
|
D | parallel_sections_reduction_messages.cpp | 84 #pragma omp parallel sections reduction // expected-error {{expected '(' after 'reduction'}} in tmain() 88 … sections 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 …]
|
D | sections_reduction_messages.cpp | 85 #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 …]
|
D | parallel_sections_num_threads_messages.cpp | 14 #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 …]
|
D | parallel_sections_shared_messages.cpp | 66 #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 …]
|
/external/clang/test/Driver/ |
D | function-sections.c | 1 // 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 …]
|
D | wasm-toolchain.c | 2 // 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/swiftshader/third_party/llvm-7.0/llvm/test/Object/ |
D | obj2yaml-sectiongroup.test | 5 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/llvm/test/Object/ |
D | obj2yaml-sectiongroup.test | 5 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/openssh/ |
D | PROTOCOL.krl | 5 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/bcc/tools/ |
D | criticalstat_example.txt | 1 Demonstrations of criticalstat: Find long atomic critical sections in the kernel. 3 criticalstat traces and reports occurences of atomic critical sections in the 5 sections frequently occur due to use of spinlocks, or if interrupts or 8 sections are a source of long latency/responsive issues for real-time systems. 23 Trace long critical sections 27 -p, --preemptoff Find long sections where preemption was off 28 -i, --irqoff Find long sections where IRQ was off 34 ./criticalstat -p # find sections with preemption disabled for more than 100 uS 35 ./criticalstat -d 500 # find sections with IRQs disabled for more than 500 uS 36 ./criticalstat -p -d 500 # find sections with preemption disabled for more than 500 uS [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/ |
D | xray-section-group.ll | 1 ; RUN: llc -filetype=asm -o - -mtriple=mips-unknown-linux-gnu -function-sections < %s | FileCheck %s 2 ; RUN: llc -filetype=asm -o - -mtriple=mipsel-unknown-linux-gnu -function-sections < %s | FileCheck… 3 ; RUN: llc -filetype=obj -o %t -mtriple=mips-unknown-linux-gnu -function-sections < %s 4 ; RUN: llvm-readobj -sections %t | FileCheck %s --check-prefix=CHECK-OBJ 5 ; RUN: llc -filetype=obj -o %t -mtriple=mipsel-unknown-linux-gnu -function-sections < %s 6 ; RUN: llvm-readobj -sections %t | FileCheck %s --check-prefix=CHECK-OBJ 7 ; RUN: llc -filetype=asm -o - -mtriple=mips64-unknown-linux-gnu -function-sections < %s | FileCheck… 8 ; RUN: llc -filetype=asm -o - -mtriple=mips64el-unknown-linux-gnu -function-sections < %s | FileChe… 9 ; RUN: llc -filetype=obj -o %t -mtriple=mips64-unknown-linux-gnu -function-sections < %s 10 ; RUN: llvm-readobj -sections %t | FileCheck %s --check-prefix=CHECK-OBJ [all …]
|