HomeSort by: relevance | last modified time | path
    Searched defs:cast_lhs (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
gimple-ssa-strength-reduction.cc 3626 tree cast_lhs;
3630 cast_lhs = make_temp_ssa_name (to_type, NULL, "slsr");
3631 cast_stmt = gimple_build_assign (cast_lhs, NOP_EXPR, from_expr);
3641 return cast_lhs;
3617 tree cast_lhs; local
tree-ssa-math-opts.cc 3944 tree cast_lhs = gimple_assign_lhs (cur_use_stmt); local
3945 if (INTEGRAL_TYPE_P (TREE_TYPE (cast_lhs))
3946 && TYPE_UNSIGNED (TREE_TYPE (cast_lhs))
3947 && (TYPE_PRECISION (TREE_TYPE (cast_lhs))
3949 && single_imm_use (cast_lhs, &use, &cur_use_stmt))
3952 divlhs = cast_lhs;
4137 tree cast_lhs = NULL_TREE; local
4183 cast_lhs = gimple_assign_lhs (use_stmt);
4184 if (INTEGRAL_TYPE_P (TREE_TYPE (cast_lhs))
4185 && !TYPE_UNSIGNED (TREE_TYPE (cast_lhs))
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-ssa-strength-reduction.cc 3626 tree cast_lhs;
3630 cast_lhs = make_temp_ssa_name (to_type, NULL, "slsr");
3631 cast_stmt = gimple_build_assign (cast_lhs, NOP_EXPR, from_expr);
3641 return cast_lhs;
3617 tree cast_lhs; local
tree-ssa-math-opts.cc 3909 tree cast_lhs = NULL_TREE; local
3955 cast_lhs = gimple_assign_lhs (use_stmt);
3956 if (INTEGRAL_TYPE_P (TREE_TYPE (cast_lhs))
3957 && !TYPE_UNSIGNED (TREE_TYPE (cast_lhs))
3958 && (TYPE_PRECISION (TREE_TYPE (cast_lhs))
3962 cast_lhs = NULL_TREE;
3976 FOR_EACH_IMM_USE_FAST (use_p, iter, cast_lhs)
3990 cast_lhs = NULL_TREE;
4181 type = TREE_TYPE (cast_lhs);
4259 FOR_EACH_IMM_USE_STMT (use_stmt, iter, cast_lhs ? cast_lhs : lhs
    [all...]

Completed in 36 milliseconds