Lines Matching refs:cur_op
495 tree cur_op, mulcst, tem; in expand_vector_divmod() local
682 cur_op = add_rshift (gsi, type, op0, shift_temps); in expand_vector_divmod()
683 if (cur_op != NULL_TREE) in expand_vector_divmod()
685 cur_op = gimplify_build1 (gsi, VIEW_CONVERT_EXPR, in expand_vector_divmod()
686 uns_type, cur_op); in expand_vector_divmod()
689 cur_op = add_rshift (gsi, uns_type, cur_op, shift_temps); in expand_vector_divmod()
690 if (cur_op != NULL_TREE) in expand_vector_divmod()
692 type, cur_op); in expand_vector_divmod()
721 cur_op = add_rshift (gsi, type, op0, shifts); in expand_vector_divmod()
722 if (cur_op != NULL_TREE) in expand_vector_divmod()
723 return cur_op; in expand_vector_divmod()
733 cur_op = gimplify_build2 (gsi, PLUS_EXPR, type, op0, addend); in expand_vector_divmod()
734 cur_op = add_rshift (gsi, type, cur_op, shifts); in expand_vector_divmod()
735 if (cur_op != NULL_TREE) in expand_vector_divmod()
736 return cur_op; in expand_vector_divmod()
766 cur_op = gimplify_build2 (gsi, PLUS_EXPR, type, op0, in expand_vector_divmod()
768 cur_op = gimplify_build2 (gsi, BIT_AND_EXPR, type, in expand_vector_divmod()
769 cur_op, mask); in expand_vector_divmod()
776 cur_op, addend); in expand_vector_divmod()
789 cur_op = op0; in expand_vector_divmod()
798 cur_op = add_rshift (gsi, type, cur_op, pre_shifts); in expand_vector_divmod()
799 if (cur_op == NULL_TREE) in expand_vector_divmod()
827 cur_op = gimplify_build2 (gsi, MULT_HIGHPART_EXPR, type, cur_op, mulcst); in expand_vector_divmod()
835 cur_op = add_rshift (gsi, type, cur_op, post_shifts); in expand_vector_divmod()
847 tem = gimplify_build2 (gsi, MINUS_EXPR, type, op0, cur_op); in expand_vector_divmod()
853 tem = gimplify_build2 (gsi, PLUS_EXPR, type, cur_op, tem); in expand_vector_divmod()
854 cur_op = add_rshift (gsi, type, tem, post_shifts); in expand_vector_divmod()
855 if (cur_op == NULL_TREE) in expand_vector_divmod()
875 cur_op = gimplify_build2 (gsi, PLUS_EXPR, type, cur_op, op0); in expand_vector_divmod()
877 cur_op = add_rshift (gsi, type, cur_op, post_shifts); in expand_vector_divmod()
878 if (cur_op == NULL_TREE) in expand_vector_divmod()
888 cur_op = gimplify_build2 (gsi, MINUS_EXPR, type, cur_op, tem); in expand_vector_divmod()
890 cur_op = gimplify_build2 (gsi, MINUS_EXPR, type, tem, cur_op); in expand_vector_divmod()
897 return cur_op; in expand_vector_divmod()
923 tem = gimplify_build2 (gsi, MULT_EXPR, type, cur_op, op1); in expand_vector_divmod()