/external/clang/test/OpenMP/ |
for_simd_simdlen_messages.cpp | 14 #pragma omp for simd simdlen // expected-error {{expected '(' after 'simdlen'}} 16 #pragma omp for simd simdlen ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 18 #pragma omp for simd simdlen () // expected-error {{expected expression}} 23 #pragma omp for simd simdlen (argc 25 // expected-error@+1 {{argument to 'simdlen' clause must be a strictly positive integer value}} 26 #pragma omp for simd simdlen (ST // expected-error {{expected ')'}} expected-note {{to match this '('}} 28 #pragma omp for simd simdlen (1)) // expected-warning {{extra tokens at the end of '#pragma omp for simd' are ignored}} 30 #pragma omp for simd simdlen ((ST > 0) ? 1 + ST : 2) 32 // expected-error@+3 2 {{directive '#pragma omp for simd' cannot contain more than one 'simdlen' clause} [all...] |
parallel_for_simd_simdlen_messages.cpp | 14 #pragma omp parallel for simd simdlen // expected-error {{expected '(' after 'simdlen'}} 16 #pragma omp parallel for simd simdlen ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 18 #pragma omp parallel for simd simdlen () // expected-error {{expected expression}} 23 #pragma omp parallel for simd simdlen (argc 25 // expected-error@+1 {{argument to 'simdlen' clause must be a strictly positive integer value}} 26 #pragma omp parallel for simd simdlen (ST // expected-error {{expected ')'}} expected-note {{to match this '('}} 28 #pragma omp parallel for simd simdlen (1)) // expected-warning {{extra tokens at the end of '#pragma omp parallel for simd' are ignored}} 30 #pragma omp parallel for simd simdlen ((ST > 0) ? 1 + ST : 2) 32 // expected-error@+3 2 {{directive '#pragma omp parallel for simd' cannot contain more than one 'simdlen' clause} [all...] |
simd_simdlen_messages.cpp | 14 #pragma omp simd simdlen // expected-error {{expected '(' after 'simdlen'}} 16 #pragma omp simd simdlen ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 18 #pragma omp simd simdlen () // expected-error {{expected expression}} 23 #pragma omp simd simdlen (argc 25 // expected-error@+1 {{argument to 'simdlen' clause must be a strictly positive integer value}} 26 #pragma omp simd simdlen (ST // expected-error {{expected ')'}} expected-note {{to match this '('}} 28 #pragma omp simd simdlen (1)) // expected-warning {{extra tokens at the end of '#pragma omp simd' are ignored}} 30 #pragma omp simd simdlen ((ST > 0) ? 1 + ST : 2) 32 // expected-error@+3 2 {{directive '#pragma omp simd' cannot contain more than one 'simdlen' clause} [all...] |
taskloop_simd_simdlen_messages.cpp | 14 #pragma omp taskloop simd simdlen // expected-error {{expected '(' after 'simdlen'}} 16 #pragma omp taskloop simd simdlen ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 18 #pragma omp taskloop simd simdlen () // expected-error {{expected expression}} 23 #pragma omp taskloop simd simdlen (argc 25 // expected-error@+1 {{argument to 'simdlen' clause must be a strictly positive integer value}} 26 #pragma omp taskloop simd simdlen (ST // expected-error {{expected ')'}} expected-note {{to match this '('}} 28 #pragma omp taskloop simd simdlen (1)) // expected-warning {{extra tokens at the end of '#pragma omp taskloop simd' are ignored}} 30 #pragma omp taskloop simd simdlen ((ST > 0) ? 1 + ST : 2) 32 // expected-error@+3 2 {{directive '#pragma omp taskloop simd' cannot contain more than one 'simdlen' clause} [all...] |
for_simd_ast_print.cpp | 38 #pragma omp for simd private(val) safelen(7) linear(lin : -5) lastprivate(res) simdlen(5) 39 // CHECK-NEXT: #pragma omp for simd private(val) safelen(7) linear(lin: -5) lastprivate(res) simdlen(5) 47 #pragma omp for simd safelen(clen-1) simdlen(clen-1) 48 // CHECK-NEXT: #pragma omp for simd safelen(clen - 1) simdlen(clen - 1) 65 #pragma omp for simd safelen(LEN) linear(k1,k2:LEN) aligned(a:LEN) simdlen(LEN) 80 // CHECK-NEXT: #pragma omp for simd safelen(4) linear(k1,k2: 4) aligned(a: 4) simdlen(4) 117 #pragma omp for simd aligned(a:CLEN) linear(a:CLEN) safelen(CLEN) collapse( 1 ) simdlen(CLEN) 118 // CHECK-NEXT: #pragma omp for simd aligned(a: CLEN) linear(a: CLEN) safelen(CLEN) collapse(1) simdlen(CLEN)
|
parallel_for_simd_ast_print.cpp | 38 #pragma omp parallel for simd private(val) safelen(7) linear(lin : -5) lastprivate(res) simdlen(5) if(7) 39 // CHECK-NEXT: #pragma omp parallel for simd private(val) safelen(7) linear(lin: -5) lastprivate(res) simdlen(5) if(7) 47 #pragma omp parallel for simd safelen(clen-1) simdlen(clen-1) 48 // CHECK-NEXT: #pragma omp parallel for simd safelen(clen - 1) simdlen(clen - 1) 65 #pragma omp parallel for simd safelen(LEN) linear(k1,k2:LEN) aligned(a:LEN) simdlen(LEN) 80 // CHECK-NEXT: #pragma omp parallel for simd safelen(4) linear(k1,k2: 4) aligned(a: 4) simdlen(4) 117 #pragma omp parallel for simd aligned(a:CLEN) linear(a:CLEN) safelen(CLEN) collapse( 1 ) simdlen(CLEN) 118 // CHECK-NEXT: #pragma omp parallel for simd aligned(a: CLEN) linear(a: CLEN) safelen(CLEN) collapse(1) simdlen(CLEN)
|
simd_ast_print.cpp | 41 #pragma omp simd private(val) safelen(7) linear(lin : -5) lastprivate(res) simdlen(5) linear(ref(ref)) 42 // CHECK-NEXT: #pragma omp simd private(val) safelen(7) linear(lin: -5) lastprivate(res) simdlen(5) linear(ref(ref)) 50 #pragma omp simd safelen(clen-1) simdlen(clen-1) 51 // CHECK-NEXT: #pragma omp simd safelen(clen - 1) simdlen(clen - 1) 68 #pragma omp simd safelen(LEN) linear(k1,k2:LEN) aligned(a:LEN) simdlen(LEN) 83 // CHECK-NEXT: #pragma omp simd safelen(4) linear(k1,k2: 4) aligned(a: 4) simdlen(4) 119 #pragma omp simd aligned(a:CLEN) linear(a:CLEN) safelen(CLEN) collapse( 1 ) simdlen(CLEN) linear(val(ref): CLEN) 120 // CHECK-NEXT: #pragma omp simd aligned(a: CLEN) linear(a: CLEN) safelen(CLEN) collapse(1) simdlen(CLEN) linear(val(ref): CLEN)
|
for_simd_misc_messages.c | 173 #pragma omp for simd simdlen 177 #pragma omp for simd simdlen( 181 #pragma omp for simd simdlen() 185 #pragma omp for simd simdlen(, 189 #pragma omp for simd simdlen(, ) 194 #pragma omp for simd simdlen 4) 199 #pragma omp for simd simdlen(4 204 #pragma omp for simd simdlen(4, 209 #pragma omp for simd simdlen(4, ) 212 #pragma omp for simd simdlen(4 [all...] |
parallel_for_simd_misc_messages.c | 173 #pragma omp parallel for simd simdlen 177 #pragma omp parallel for simd simdlen( 181 #pragma omp parallel for simd simdlen() 185 #pragma omp parallel for simd simdlen(, 189 #pragma omp parallel for simd simdlen(, ) 194 #pragma omp parallel for simd simdlen 4) 199 #pragma omp parallel for simd simdlen(4 204 #pragma omp parallel for simd simdlen(4, 209 #pragma omp parallel for simd simdlen(4, ) 212 #pragma omp parallel for simd simdlen(4 [all...] |
simd_misc_messages.c | 172 #pragma omp simd simdlen 176 #pragma omp simd simdlen( 180 #pragma omp simd simdlen() 184 #pragma omp simd simdlen(, 188 #pragma omp simd simdlen(, ) 193 #pragma omp simd simdlen 4) 198 #pragma omp simd simdlen(4 203 #pragma omp simd simdlen(4, 208 #pragma omp simd simdlen(4, ) 211 #pragma omp simd simdlen(4 [all...] |
taskloop_simd_ast_print.cpp | 24 #pragma omp taskloop simd private(argc, b), firstprivate(c, d), lastprivate(d, f) collapse(N) shared(g) if (c) final(d) mergeable priority(f) simdlen(N) nogroup num_tasks(N) 37 // CHECK-NEXT: #pragma omp taskloop simd private(argc,b) firstprivate(c,d) lastprivate(d,f) collapse(N) shared(g) if(c) final(d) mergeable priority(f) simdlen(N) nogroup num_tasks(N) 63 #pragma omp taskloop simd private(argc, b), firstprivate(argv, c), lastprivate(d, f) collapse(2) shared(g) if(argc) mergeable priority(argc) simdlen(16) grainsize(argc) 68 // CHECK-NEXT: #pragma omp taskloop simd private(argc,b) firstprivate(argv,c) lastprivate(d,f) collapse(2) shared(g) if(argc) mergeable priority(argc) simdlen(16) grainsize(argc)
|
simd_metadata.c | 45 #pragma omp simd safelen(16) linear(t) aligned(c:32) aligned(a,b) simdlen(8) 76 #pragma omp simd linear(t) aligned(c:32) aligned(a,b) simdlen(8)
|
/external/clang/include/clang/Basic/ |
OpenMPKinds.def | 139 OPENMP_CLAUSE(simdlen, OMPSimdlenClause) 193 OPENMP_SIMD_CLAUSE(simdlen) 217 OPENMP_FOR_SIMD_CLAUSE(simdlen) 294 OPENMP_PARALLEL_FOR_SIMD_CLAUSE(simdlen) 397 OPENMP_TASKLOOP_SIMD_CLAUSE(simdlen)
|
DiagnosticSemaKinds.td | [all...] |
/external/clang/lib/Parse/ |
ParseOpenMP.cpp | 417 /// simdlen-clause | threads-clause | simd-clause | num_teams-clause | 450 // Only one simdlen clause can appear on a simd directive. 556 /// 'collapse', 'safelen', 'num_threads', 'simdlen', 'num_teams', 557 /// 'thread_limit', 'simdlen', 'priority', 'grainsize', 'num_tasks' or 'hint'. 568 /// simdlen-clause: 569 /// 'simdlen' '(' expression ')' [all...] |
/external/clang/include/clang/AST/ |
OpenMPClause.h | 398 /// \brief This represents 'simdlen' clause in the '#pragma omp ...' 402 /// #pragma omp simd simdlen(4) 404 /// In this example directive '#pragma omp simd' has clause 'simdlen' 406 /// If the 'simdlen' clause is used then it specifies the preferred number of 407 /// iterations to be executed concurrently. The parameter of the 'simdlen' 415 Stmt *Simdlen; 417 /// \brief Set simdlen. 418 void setSimdlen(Expr *Len) { Simdlen = Len; } 421 /// \brief Build 'simdlen' clause. 430 Simdlen(Len) { [all...] |
/external/clang/lib/Sema/ |
SemaOpenMP.cpp | [all...] |
TreeTransform.h | [all...] |
/external/clang/lib/AST/ |
StmtPrinter.cpp | 630 OS << "simdlen("; [all...] |
/external/clang/include/clang/Sema/ |
Sema.h | [all...] |