Lines Matching refs:octx
3165 for (omp_context *octx = ctx; octx != NULL; octx = octx->outer)
3166 if (is_gimple_omp (octx->stmt)
3167 && is_gimple_omp_oacc (octx->stmt))
3445 for (omp_context *octx = ctx->outer;
3446 octx; octx = octx->outer)
3448 switch (gimple_code (octx->stmt))
3453 if (gimple_omp_target_kind (octx->stmt)
3465 if (gimple_omp_task_taskloop_p (octx->stmt)
3466 && octx->outer
3467 && is_taskloop_ctx (octx->outer))
3470 = gimple_omp_for_clauses (octx->outer->stmt);
4135 omp_context *octx = ctx;
4137 octx = ctx->outer;
4138 if (octx->order_concurrent && omp_runtime_api_call (fndecl))
10059 omp_context *octx = ctx->outer;
10060 gcc_assert (octx);
10061 if (octx->scan_exclusive && !has_clauses)
10082 bool input_phase = has_clauses ^ octx->scan_inclusive;
10083 bool is_simd = (gimple_code (octx->stmt) == GIMPLE_OMP_FOR
10084 && gimple_omp_for_kind (octx->stmt) == GF_OMP_FOR_KIND_SIMD);
10085 bool is_for = (gimple_code (octx->stmt) == GIMPLE_OMP_FOR
10086 && gimple_omp_for_kind (octx->stmt) == GF_OMP_FOR_KIND_FOR
10087 && !gimple_omp_for_combined_p (octx->stmt));
10088 bool is_for_simd = is_simd && gimple_omp_for_combined_into_p (octx->stmt);
10089 if (is_for_simd && octx->for_simd_scan_phase)
10092 if (tree c = omp_find_clause (gimple_omp_for_clauses (octx->stmt),
10099 : octx->scan_inclusive ? 2 : 3);
10108 for (tree c = gimple_omp_for_clauses (octx->stmt);
10115 tree new_var = lookup_decl (var, octx);
10145 var2 = lookup_decl (v, octx);
10146 if (octx->scan_exclusive)
10147 var4 = lookup_decl (var2, octx);
10150 var3 = maybe_lookup_decl (var4 ? var4 : var2, octx);
10156 if (octx->scan_exclusive)
10172 var2 = build_outer_var_ref (var, octx);
10175 var3 = maybe_lookup_decl (new_vard, octx);
10178 else if (is_simd && octx->scan_exclusive && !input_phase)
10180 var4 = maybe_lookup_decl (var3, octx);
10194 && octx->scan_exclusive
10218 tree ref = build_outer_var_ref (var, octx);
10229 lower_omp (&tseq, octx);
10242 if (octx->scan_exclusive)
10259 lower_omp (&tseq, octx);
10266 if (octx->scan_inclusive)
10298 if (octx->scan_inclusive)
10313 if (octx->scan_exclusive && !input_phase && lane0)
10330 lower_omp (gimple_omp_body_ptr (stmt), octx);
10390 omp_context *octx;
10394 for (octx = ctx->outer; octx; octx = octx->outer)
10395 if (is_gimple_omp_offloaded (octx->stmt))