HomeSort by: relevance | last modified time | path
    Searched refs:clauses (Results 1 - 25 of 71) sorted by relevancy

1 2 3

  /src/external/gpl3/gcc/dist/gcc/
omp-oacc-kernels-decompose.cc 45 - The entire 'kernels' region is turned into a 'data' region with clauses
46 taken from the 'kernels' region. New 'create' clauses are added for all
51 get an 'auto' clause added; other clauses are preserved on the loop
65 clauses use the original 'kernels' construct's 'async' argument
70 /*TODO Things are conceptually wrong here: 'loop' clauses may be hidden behind
151 tree clauses = gimple_omp_for_clauses (stmt); local
152 if (omp_find_clause (clauses, OMP_CLAUSE_INDEPENDENT))
158 else if (omp_find_clause (clauses, OMP_CLAUSE_SEQ))
252 tree clauses = gimple_omp_for_clauses (stmt); local
254 for (tree clause = clauses; clause; clause = OMP_CLAUSE_CHAIN (clause)
    [all...]
gimple.h 598 tree clauses; variable
631 tree clauses; variable
654 Clauses. */
655 tree clauses; variable
722 tree clauses; variable
756 tree clauses; variable
5251 /* Return the clauses associated with OMP_CRITICAL statement CRIT_STMT. */
5256 return crit_stmt->clauses;
5260 /* Return a pointer to the clauses associated with OMP critical statement
5266 return &crit_stmt->clauses;
    [all...]
omp-general.h 108 trait-properties can variously be identifiers, strings, clauses, or
153 extern tree omp_find_clause (tree clauses, enum omp_clause_code kind);
181 extern void oacc_set_fn_attrib (tree fn, tree clauses, vec<tree> *args);
184 extern tree oacc_build_routine_dims (tree clauses);
gimple.cc 937 CLAUSES are clauses for this critical block. */
940 gimple_build_omp_critical (gimple_seq body, tree name, tree clauses)
945 gimple_omp_critical_set_clauses (p, clauses);
956 CLAUSES are any of the construct's clauses.
961 gimple_build_omp_for (gimple_seq body, int kind, tree clauses, size_t collapse,
967 gimple_omp_for_set_clauses (p, clauses);
982 CLAUSES are the OMP parallel construct's clauses
    [all...]
omp-low.cc 3 sharing and copying clauses, offloading to accelerators, and more.
67 clauses. The second phase expands code for the constructs, as well as
122 /* A hash map from the reduction clauses to the registered array
134 /* A tree_list of the reduction clauses in this context. This is
136 clauses in scan_omp_for and is not guaranteed to contain a valid
140 /* A tree_list of the reduction clauses in outer contexts. This is
142 clauses in scan_omp_for and is not guaranteed to contain a valid
694 even private vars in its linear etc. clauses.
1145 specified by CLAUSES. */
1148 scan_sharing_clauses (tree clauses, omp_context *ctx
2505 tree clauses = gimple_omp_parallel_clauses (ctx->stmt); local
2558 tree clauses = gimple_omp_task_clauses (ctx->stmt); local
2766 tree clauses = gimple_omp_for_clauses (stmt); local
3101 tree clauses = gimple_omp_target_clauses (stmt); local
3511 tree clauses local
4164 tree clauses = gimple_omp_for_clauses (as_a <gomp_for *> (stmt)); local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
omp-oacc-kernels-decompose.cc 45 - The entire 'kernels' region is turned into a 'data' region with clauses
46 taken from the 'kernels' region. New 'create' clauses are added for all
51 get an 'auto' clause added; other clauses are preserved on the loop
65 clauses use the original 'kernels' construct's 'async' argument
70 /*TODO Things are conceptually wrong here: 'loop' clauses may be hidden behind
151 tree clauses = gimple_omp_for_clauses (stmt); local
152 if (omp_find_clause (clauses, OMP_CLAUSE_INDEPENDENT))
158 else if (omp_find_clause (clauses, OMP_CLAUSE_SEQ))
251 tree clauses = gimple_omp_for_clauses (stmt); local
253 for (tree clause = clauses; clause; clause = OMP_CLAUSE_CHAIN (clause)
    [all...]
gimple.h 596 tree clauses; variable
629 tree clauses; variable
652 Clauses. */
653 tree clauses; variable
720 tree clauses; variable
754 tree clauses; variable
5164 /* Return the clauses associated with OMP_CRITICAL statement CRIT_STMT. */
5169 return crit_stmt->clauses;
5173 /* Return a pointer to the clauses associated with OMP critical statement
5179 return &crit_stmt->clauses;
    [all...]
omp-general.h 94 extern tree omp_find_clause (tree clauses, enum omp_clause_code kind);
118 extern void oacc_set_fn_attrib (tree fn, tree clauses, vec<tree> *args);
121 extern tree oacc_build_routine_dims (tree clauses);
gimple.cc 919 CLAUSES are clauses for this critical block. */
922 gimple_build_omp_critical (gimple_seq body, tree name, tree clauses)
927 gimple_omp_critical_set_clauses (p, clauses);
938 CLAUSES are any of the construct's clauses.
943 gimple_build_omp_for (gimple_seq body, int kind, tree clauses, size_t collapse,
949 gimple_omp_for_set_clauses (p, clauses);
964 CLAUSES are the OMP parallel construct's clauses
    [all...]
omp-low.cc 3 sharing and copying clauses, offloading to accelerators, and more.
67 clauses. The second phase expands code for the constructs, as well as
122 /* A hash map from the reduction clauses to the registered array
134 /* A tree_list of the reduction clauses in this context. This is
136 clauses in scan_omp_for and is not guaranteed to contain a valid
140 /* A tree_list of the reduction clauses in outer contexts. This is
142 clauses in scan_omp_for and is not guaranteed to contain a valid
691 even private vars in its linear etc. clauses.
1142 specified by CLAUSES. */
1145 scan_sharing_clauses (tree clauses, omp_context *ctx
2464 tree clauses = gimple_omp_parallel_clauses (ctx->stmt); local
2517 tree clauses = gimple_omp_task_clauses (ctx->stmt); local
2725 tree clauses = gimple_omp_for_clauses (stmt); local
3059 tree clauses = gimple_omp_target_clauses (stmt); local
3469 tree clauses local
4204 tree clauses = gimple_omp_for_clauses (as_a <gomp_for *> (stmt)); local
    [all...]
omp-general.cc 22 /* Find an OMP clause of type KIND within CLAUSES. */
52 omp_find_clause (tree clauses, enum omp_clause_code kind)
54 for (; clauses ; clauses = OMP_CLAUSE_CHAIN (clauses))
55 if (OMP_CLAUSE_CODE (clauses) == kind)
56 return clauses;
286 no schedule/dist_schedule clauses currently). */
2647 /* Look for compute grid dimension clauses and convert to an attribute
2686 /* Scan CLAUSES for launch dimensions and attach them to the oac
    [all...]
  /src/external/gpl3/gcc/dist/gcc/c-family/
c-omp.cc 46 c_finish_oacc_wait (location_t loc, tree parms, tree clauses)
55 if (omp_find_clause (clauses, OMP_CLAUSE_ASYNC))
56 t = OMP_CLAUSE_ASYNC_EXPR (clauses);
94 c_finish_omp_masked (location_t loc, tree body, tree clauses)
99 OMP_MASKED_CLAUSES (stmt) = clauses;
108 c_finish_omp_taskgroup (location_t loc, tree body, tree clauses)
113 OMP_TASKGROUP_CLAUSES (stmt) = clauses;
123 c_finish_omp_critical (location_t loc, tree body, tree name, tree clauses)
125 gcc_assert (!clauses || OMP_CLAUSE_CODE (clauses) == OMP_CLAUSE_HINT)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-omp.cc 46 c_finish_oacc_wait (location_t loc, tree parms, tree clauses)
55 if (omp_find_clause (clauses, OMP_CLAUSE_ASYNC))
56 t = OMP_CLAUSE_ASYNC_EXPR (clauses);
94 c_finish_omp_masked (location_t loc, tree body, tree clauses)
99 OMP_MASKED_CLAUSES (stmt) = clauses;
108 c_finish_omp_taskgroup (location_t loc, tree body, tree clauses)
113 OMP_TASKGROUP_CLAUSES (stmt) = clauses;
123 c_finish_omp_critical (location_t loc, tree body, tree name, tree clauses)
125 gcc_assert (!clauses || OMP_CLAUSE_CODE (clauses) == OMP_CLAUSE_HINT)
    [all...]
  /src/external/mpl/bind/dist/tests/isccfg/
parser_test.c 190 const void *clauses = NULL; local
193 name = cfg_map_firstclause(&cfg_type_zoneopts, &clauses, &idx);
195 assert_non_null(clauses);
202 const void *clauses = NULL; local
205 name = cfg_map_firstclause(&cfg_type_zoneopts, &clauses, &idx);
207 assert_non_null(clauses);
211 name = cfg_map_nextclause(&cfg_type_zoneopts, &clauses, &idx);
213 assert_non_null(clauses);
215 assert_null(clauses);
grammar_test.c 73 const void *clauses = NULL; local
76 found_name = cfg_map_firstclause(map, &clauses, &idx);
78 found_name = cfg_map_nextclause(map, &clauses, &idx);
81 return ((cfg_clausedef_t *)clauses) + idx;
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-parser.cc 1480 tree clauses;
12861 clauses. */
12953 check_no_duplicate_clause (tree clauses, enum omp_clause_code code,
12956 if (tree c = omp_find_clause (clauses, code))
12957 error_at (OMP_CLAUSE_LOCATION (c), "too many %qs clauses", name);
13332 common case for OpenACC and OpenMP clauses. The optional ALLOW_DEREF
13339 /* The clauses location. */
13783 error_at (location, "too many %<if%> clauses with %qs modifier",
13790 error_at (location, "too many %<if%> clauses");
13792 error_at (location, "too many %<if%> clauses without modifier")
1478 tree clauses; member in struct:oacc_routine_data
16615 tree clauses = NULL; local
16831 tree clauses = NULL; local
17193 tree stmt, clauses; local
17230 tree stmt, clauses, block; local
17261 tree clauses, stmt, t, decl; local
17429 tree clauses, stmt; local
17484 tree stmt, clauses, block; local
17524 tree clauses = c_parser_oacc_all_clauses (parser, mask, p_name, local
17649 tree clauses; local
17655 tree clauses = c_parser_oacc_all_clauses (parser, mask, p_name); local
17864 tree clauses = c_parser_oacc_all_clauses (parser, OACC_UPDATE_CLAUSE_MASK, local
17896 tree clauses, list = NULL_TREE, stmt = NULL_TREE; local
18056 tree clauses = NULL_TREE; local
18941 tree stmt, name = NULL_TREE, clauses = NULL_TREE; local
19158 tree clauses = NULL_TREE; local
19657 tree block, clauses, ret; local
19702 tree block, clauses, ret; local
19760 tree block, clauses, ret; local
19840 tree block, clauses, ret; local
19902 tree block, clauses, ret; local
20002 tree clauses local
20011 tree clauses = c_parser_omp_all_clauses (parser, OMP_ORDERED_CLAUSE_MASK, local
20120 tree block, clauses, ret; local
20176 tree stmt, clauses, block; local
20418 tree clauses, block; local
20444 tree clauses local
20489 tree clauses = c_parser_omp_all_clauses (parser, OMP_TASKGROUP_CLAUSE_MASK, local
20515 tree clauses = c_parser_omp_all_clauses (parser, OMP_CANCEL_CLAUSE_MASK, local
20537 tree clauses; local
20595 tree clauses, block, ret; local
20685 tree clauses, block, ret; local
20781 tree clauses local
20864 tree clauses local
20923 tree clauses local
21009 tree clauses local
21317 auto_vec<c_token> clauses; local
21897 vec<c_token> &clauses = *pclauses; local
21987 tree clauses = NULL_TREE; local
22129 vec<c_token> clauses = vNULL; local
22740 tree clauses, block, ret; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/c/
c-parser.cc 1576 tree clauses;
15012 clauses. */
15104 check_no_duplicate_clause (tree clauses, enum omp_clause_code code,
15107 if (tree c = omp_find_clause (clauses, code))
15108 error_at (OMP_CLAUSE_LOCATION (c), "too many %qs clauses", name);
15591 common case for OpenACC and OpenMP clauses. The optional ALLOW_DEREF
15598 /* The clauses location. */
16128 error_at (location, "too many %<if%> clauses with %qs modifier",
16135 error_at (location, "too many %<if%> clauses");
16137 error_at (location, "too many %<if%> clauses without modifier")
1574 tree clauses; member in struct:oacc_routine_data
19250 tree clauses = NULL; local
19476 tree clauses = NULL; local
19862 tree stmt, clauses = NULL_TREE; local
19921 tree stmt, clauses, block; local
19952 tree clauses, stmt, t, decl; local
20120 tree clauses, stmt; local
20175 tree stmt, clauses, block; local
20220 tree clauses = c_parser_oacc_all_clauses (parser, mask, p_name, local
20349 tree clauses; local
20355 tree clauses = c_parser_oacc_all_clauses (parser, mask, p_name, local
20567 tree clauses = c_parser_oacc_all_clauses (parser, OACC_UPDATE_CLAUSE_MASK, local
20599 tree clauses, list = NULL_TREE, stmt = NULL_TREE; local
20910 tree clauses = NULL_TREE; local
21813 tree stmt, name = NULL_TREE, clauses = NULL_TREE; local
22139 tree clauses = NULL_TREE; local
22715 tree block, clauses, ret; local
22760 tree block, clauses, ret; local
22809 tree block, clauses, ret; local
22889 tree block, clauses, ret; local
22951 tree block, clauses, ret; local
23060 tree clauses local
23069 tree clauses = c_parser_omp_all_clauses (parser, OMP_ORDERED_CLAUSE_MASK, local
23180 tree block, clauses, ret; local
23236 tree stmt, clauses, block; local
23481 tree clauses, block; local
23509 tree clauses local
23554 tree clauses = c_parser_omp_all_clauses (parser, OMP_TASKGROUP_CLAUSE_MASK, local
23580 tree clauses = c_parser_omp_all_clauses (parser, OMP_CANCEL_CLAUSE_MASK, local
23602 tree clauses; local
23660 tree clauses, block, ret; local
23750 tree clauses, block, ret; local
23850 tree clauses local
23941 tree clauses local
24008 tree clauses local
24118 tree clauses local
24455 auto_vec<c_token> clauses; local
24980 vec<c_token> &clauses = *pclauses; local
25150 tree clauses = NULL_TREE; local
25300 tree clauses local
25442 vec<c_token> clauses = vNULL; local
26056 tree clauses, block, ret; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/fortran/
trans-openmp.cc 286 /* Cray pointees shouldn't be listed in any clauses and should be
303 disallowed in OpenMP clauses. They are represented as PARM_DECLs
347 disallowed in OpenMP clauses. They are represented as PARM_DECLs
539 /* Handle allocatable components in OpenMP clauses. */
769 /* Allocatable arrays and scalars in PRIVATE clauses need to be set to
961 /* Allocatable arrays in FIRSTPRIVATE clauses need to be allocated
1319 /* Allocatable arrays in LINEAR clauses need to be allocated
1450 /* Allocatable arrays in FIRSTPRIVATE/LASTPRIVATE etc. clauses need
2630 gfc_omp_namelist N2 (all clauses) if we haven't done so already. */
2693 gfc_trans_omp_clauses (stmtblock_t *block, gfc_omp_clauses *clauses,
4996 gfc_omp_clauses *clauses = code->ext.omp_clauses; local
5730 gfc_omp_clauses *clauses = code->ext.omp_clauses; local
7823 tree clauses = gfc_trans_omp_clauses (&block, local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
trans-openmp.cc 243 /* Cray pointees shouldn't be listed in any clauses and should be
260 disallowed in OpenMP clauses. They are represented as PARM_DECLs
487 /* Handle allocatable components in OpenMP clauses. */
717 /* Allocatable arrays and scalars in PRIVATE clauses need to be set to
909 /* Allocatable arrays in FIRSTPRIVATE clauses need to be allocated
1267 /* Allocatable arrays in LINEAR clauses need to be allocated
1398 /* Allocatable arrays in FIRSTPRIVATE/LASTPRIVATE etc. clauses need
2563 gfc_trans_omp_clauses (stmtblock_t *block, gfc_omp_clauses *clauses,
2576 if (clauses == NULL)
2581 gfc_omp_namelist *n = clauses->lists[list]
4501 gfc_omp_clauses *clauses = code->ext.omp_clauses; local
5044 gfc_omp_clauses *clauses = code->ext.omp_clauses; local
7058 tree clauses = gfc_trans_omp_clauses (&block, local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
parser.cc 1452 /* Finalize #pragma omp declare simd clauses after FNDECL has been parsed,
24048 clauses, and #pragma acc routine clauses.
24473 /* Check for trivial parameter-declaration-clauses. */
25498 error_at (loc, "either all initializer clauses should be designated "
    [all...]
parser.h 226 tree clauses; member in struct:cp_oacc_routine_data
  /src/external/mpl/bind/dist/lib/isccfg/include/isccfg/
cfg.h 583 cfg_map_firstclause(const cfg_type_t *map, const void **clauses,
586 cfg_map_nextclause(const cfg_type_t *map, const void **clauses,
  /src/external/mpl/dhcp/bind/dist/lib/isccfg/include/isccfg/
cfg.h 578 cfg_map_firstclause(const cfg_type_t *map, const void **clauses,
581 cfg_map_nextclause(const cfg_type_t *map, const void **clauses,
  /src/external/gpl3/gcc/dist/gcc/cp/
parser.cc 1615 /* Finalize #pragma omp declare simd clauses after FNDECL has been parsed,
2215 tree clauses;
24896 clauses, and #pragma acc routine clauses.
25351 /* Check for trivial parameter-declaration-clauses. */
26501 error_at (loc, "either all initializer clauses should be designated "
    [all...]
parser.h 233 tree clauses; member in struct:cp_oacc_routine_data

Completed in 121 milliseconds

1 2 3