Home | History | Annotate | Download | only in gcc

Lines Matching defs:cond_var

3877   tree mem = NULL_TREE, cond_var = NULL_TREE, condtemp = NULL_TREE;
3886 cond_var = OMP_CLAUSE_DECL (c);
4246 if (cond_var)
4248 tree itype = TREE_TYPE (cond_var);
4272 assign_stmt = gimple_build_assign (cond_var, t);
4455 if (cond_var)
4457 tree itype = TREE_TYPE (cond_var);
4467 t2 = fold_build2 (PLUS_EXPR, itype, cond_var, t2);
4470 assign_stmt = gimple_build_assign (cond_var, t2);
4866 tree cond_var = NULL_TREE, condtemp = NULL_TREE;
4950 cond_var = OMP_CLAUSE_DECL (c);
5259 if (cond_var)
5261 tree itype = TREE_TYPE (cond_var);
5283 assign_stmt = gimple_build_assign (cond_var, t);
5374 if (cond_var)
5376 tree itype = TREE_TYPE (cond_var);
5384 t2 = fold_build2 (PLUS_EXPR, itype, cond_var, t2);
5387 assign_stmt = gimple_build_assign (cond_var, t2);
5657 tree cond_var = NULL_TREE, condtemp = NULL_TREE;
5745 cond_var = OMP_CLAUSE_DECL (c);
5966 if (cond_var)
5968 tree itype = TREE_TYPE (cond_var);
5990 assign_stmt = gimple_build_assign (cond_var, t);
6078 if (cond_var)
6080 tree itype = TREE_TYPE (cond_var);
6088 t2 = fold_build2 (PLUS_EXPR, itype, cond_var, t2);
6091 assign_stmt = gimple_build_assign (cond_var, t2);
6364 tree cond_var = condtemp ? OMP_CLAUSE_DECL (condtemp) : NULL_TREE;
6638 if (cond_var)
6644 expand_omp_build_assign (&gsi, cond_var,
6645 build_one_cst (TREE_TYPE (cond_var)));
6647 expand_omp_build_assign (&gsi, cond_var,
6648 fold_convert (TREE_TYPE (cond_var), n1));
6696 if (cond_var)
6702 t = fold_build2 (PLUS_EXPR, TREE_TYPE (cond_var), cond_var,
6703 build_one_cst (TREE_TYPE (cond_var)));
6705 t = fold_build2 (PLUS_EXPR, TREE_TYPE (cond_var), cond_var,
6706 fold_convert (TREE_TYPE (cond_var), step));
6707 expand_omp_build_assign (&gsi, cond_var, t);
8327 tree cond_var = NULL_TREE;
8350 cond_var = OMP_CLAUSE_DECL (c);
8373 tree t = build2 (PLUS_EXPR, TREE_TYPE (cond_var),
8374 vin, build_one_cst (TREE_TYPE (cond_var)));
8375 expand_omp_build_assign (&gsi, cond_var, t, false);
8490 if (cond_var)
8492 tree t = build2 (PLUS_EXPR, TREE_TYPE (cond_var),
8493 vnext, build_one_cst (TREE_TYPE (cond_var)));
8494 expand_omp_build_assign (&si, cond_var, t, false);