Home | History | Annotate | Download | only in gcc

Lines Matching defs:omp_for

77    "top-level" OMP_FOR statement, returns a pointer to that statement;
80 A "top-level" OMP_FOR statement is one that is possibly accompanied by
82 OMP_FOR possibly wrapped in a singleton bind and a singleton try
83 statement to allow for a local loop variable, but not an OMP_FOR
85 non-singleton bind containing only assignments and then an OMP_FOR
100 /* Accept an OMP_FOR statement, or a try statement containing only
101 a single OMP_FOR. */
119 OMP_FOR at the end. No other kinds of statements allowed. */
512 transform_kernels_loop_clauses (gimple *omp_for,
528 tree loop_clauses = gimple_omp_for_clauses (omp_for);
585 tree auto_clause = build_omp_clause (gimple_location (omp_for),
590 gimple_omp_for_set_clauses (omp_for, loop_clauses);
601 gimple *body = gimple_omp_body (omp_for);
630 which must be identical to, or a bind containing, the loop OMP_FOR.
641 'seq'/'independent'/'auto' clause. Nested loops inside OMP_FOR are treated
645 make_region_loop_nest (gimple *omp_for, gimple_seq stmts,
666 dump_printf_loc (MSG_NOTE, omp_for,
670 clauses = transform_kernels_loop_clauses (omp_for,
679 dump_printf_loc (MSG_NOTE, omp_for,
705 gimple_set_location (parallel_region, gimple_location (omp_for));
712 OMP_FOR loop and associated setup/cleanup code. Recurse into binds but
1079 gimple *omp_for = top_level_omp_for_in_stmt (stmt);
1080 omp_for_loops.safe_push (omp_for != NULL);
1081 if (omp_for != NULL)
1297 gimple *omp_for = top_level_omp_for_in_stmt (stmt);
1299 if (omp_for != NULL)
1302 if (omp_for != NULL
1336 = make_region_loop_nest (omp_for, parallel_seq,
1345 if (omp_for != NULL)
1349 dump_printf_loc (MSG_MISSED_OPTIMIZATION, omp_for,