Home
last modified time | relevance | path

Searched refs:uns (Results 1 – 25 of 78) sorted by relevance

1234

/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Ddouble-int.cc346 div_and_round_double (unsigned code, int uns, in div_and_round_double() argument
373 if (!uns) in div_and_round_double()
576 if (!uns && *hrem < 0) in div_and_round_double()
578 if (!uns && hden < 0) in div_and_round_double()
691 double_int::max_value (unsigned int prec, bool uns) in max_value() argument
693 return double_int::mask (prec - (uns ? 0 : 1)); in max_value()
700 double_int::min_value (unsigned int prec, bool uns) in min_value() argument
702 if (uns) in min_value()
715 double_int::ext (unsigned prec, bool uns) const in ext()
717 if (uns) in ext()
[all …]
H A Ddouble-int.h71 static double_int max_value (unsigned int prec, bool uns);
72 static double_int min_value (unsigned int prec, bool uns);
96 bool fits_hwi (bool uns) const;
160 double_int ext (unsigned prec, bool uns) const;
171 int cmp (double_int b, bool uns) const;
182 double_int max (double_int b, bool uns);
186 double_int min (double_int b, bool uns);
H A Doptabs-query.h96 get_vec_cmp_icode (machine_mode vmode, machine_mode mask_mode, bool uns) in get_vec_cmp_icode() argument
98 optab tab = uns ? vec_cmpu_optab : vec_cmp_optab; in get_vec_cmp_icode()
115 get_vcond_icode (machine_mode vmode, machine_mode cmode, bool uns) in get_vcond_icode() argument
118 if (uns) in get_vcond_icode()
H A Dinternal-fn.cc760 int uns = TYPE_UNSIGNED (TREE_TYPE (TREE_TYPE (lhs))); in expand_arith_overflow_result_store() local
761 lres = convert_modes (tgtmode, mode, res, uns); in expand_arith_overflow_result_store()
763 do_compare_rtx_and_jump (res, convert_modes (mode, tgtmode, lres, uns), in expand_arith_overflow_result_store()
774 int uns = TYPE_UNSIGNED (TREE_TYPE (TREE_TYPE (lhs))); in expand_arith_overflow_result_store() local
776 if (uns) in expand_arith_overflow_result_store()
1361 rtx op0, rtx op1, bool uns) in can_widen_mult_without_libcall() argument
1373 op0 = convert_modes (wmode, mode, op0, uns); in can_widen_mult_without_libcall()
1377 op1 = convert_modes (wmode, mode, op1, uns); in can_widen_mult_without_libcall()
1380 rtx ret = expand_mult (wmode, op0, op1, NULL_RTX, uns, true); in can_widen_mult_without_libcall()
1411 bool uns = unsr_p; in expand_mul_overflow() local
[all …]
H A Dtree-pretty-print.h57 extern void pp_double_int (pretty_printer *pp, double_int d, bool uns);
H A Dtree-ssa-loop-manip.cc1620 bool uns; in canonicalize_loop_ivs() local
1629 uns = POINTER_TYPE_P (type) | TYPE_UNSIGNED (type); in canonicalize_loop_ivs()
1632 unsigned_p = uns; in canonicalize_loop_ivs()
1634 unsigned_p |= uns; in canonicalize_loop_ivs()
H A Dtree-scalar-evolution.cc1809 tree uns = unsigned_type_for (type); in interpret_rhs_expr() local
1812 chrec1 = chrec_convert (uns, chrec1, at_stmt); in interpret_rhs_expr()
1816 tree one = build_int_cst (uns, 1); in interpret_rhs_expr()
1817 chrec2 = fold_build2 (LSHIFT_EXPR, uns, one, chrec2); in interpret_rhs_expr()
1818 res = chrec_fold_multiply (uns, chrec1, chrec2); in interpret_rhs_expr()
H A Dtree-affine.cc1012 int uns, rev, vol; in get_inner_reference_aff() local
1015 &uns, &rev, &vol); in get_inner_reference_aff()
H A Dtree.cc7850 int uns in get_unwidened() local
7888 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op))) in get_unwidened()
7893 if ((uns in get_unwidened()
7897 uns = 1; in get_unwidened()
7930 int uns = 0; in get_narrower() local
7973 uns = TYPE_UNSIGNED (TREE_TYPE (op)); in get_narrower()
7977 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op))) in get_narrower()
7986 uns = TYPE_UNSIGNED (TREE_TYPE (op)); in get_narrower()
8022 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1))) in get_narrower()
8026 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1)); in get_narrower()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Ddouble-int.c346 div_and_round_double (unsigned code, int uns, in div_and_round_double() argument
373 if (!uns) in div_and_round_double()
576 if (!uns && *hrem < 0) in div_and_round_double()
578 if (!uns && hden < 0) in div_and_round_double()
691 double_int::max_value (unsigned int prec, bool uns) in max_value() argument
693 return double_int::mask (prec - (uns ? 0 : 1)); in max_value()
700 double_int::min_value (unsigned int prec, bool uns) in min_value() argument
702 if (uns) in min_value()
715 double_int::ext (unsigned prec, bool uns) const in ext() argument
717 if (uns) in ext()
[all …]
H A Ddouble-int.h71 static double_int max_value (unsigned int prec, bool uns);
72 static double_int min_value (unsigned int prec, bool uns);
96 bool fits_hwi (bool uns) const;
160 double_int ext (unsigned prec, bool uns) const;
171 int cmp (double_int b, bool uns) const;
182 double_int max (double_int b, bool uns);
186 double_int min (double_int b, bool uns);
H A Doptabs-query.h96 get_vec_cmp_icode (machine_mode vmode, machine_mode mask_mode, bool uns) in get_vec_cmp_icode() argument
98 optab tab = uns ? vec_cmpu_optab : vec_cmp_optab; in get_vec_cmp_icode()
115 get_vcond_icode (machine_mode vmode, machine_mode cmode, bool uns) in get_vcond_icode() argument
118 if (uns) in get_vcond_icode()
H A Dinternal-fn.c619 int uns = TYPE_UNSIGNED (TREE_TYPE (TREE_TYPE (lhs))); in expand_arith_overflow_result_store() local
620 lres = convert_modes (tgtmode, mode, res, uns); in expand_arith_overflow_result_store()
622 do_compare_rtx_and_jump (res, convert_modes (mode, tgtmode, lres, uns), in expand_arith_overflow_result_store()
633 int uns = TYPE_UNSIGNED (TREE_TYPE (TREE_TYPE (lhs))); in expand_arith_overflow_result_store() local
635 if (uns) in expand_arith_overflow_result_store()
1220 rtx op0, rtx op1, bool uns) in can_widen_mult_without_libcall() argument
1232 op0 = convert_modes (wmode, mode, op0, uns); in can_widen_mult_without_libcall()
1236 op1 = convert_modes (wmode, mode, op1, uns); in can_widen_mult_without_libcall()
1239 rtx ret = expand_mult (wmode, op0, op1, NULL_RTX, uns, true); in can_widen_mult_without_libcall()
1266 bool uns = unsr_p; in expand_mul_overflow() local
[all …]
H A Dtree-pretty-print.h55 extern void pp_double_int (pretty_printer *pp, double_int d, bool uns);
H A Dtree-ssa-loop-manip.c1543 bool uns; in canonicalize_loop_ivs() local
1552 uns = POINTER_TYPE_P (type) | TYPE_UNSIGNED (type); in canonicalize_loop_ivs()
1555 unsigned_p = uns; in canonicalize_loop_ivs()
1557 unsigned_p |= uns; in canonicalize_loop_ivs()
H A Dtree-scalar-evolution.c1809 tree uns = unsigned_type_for (type); in interpret_rhs_expr() local
1812 chrec1 = chrec_convert (uns, chrec1, at_stmt); in interpret_rhs_expr()
1816 tree one = build_int_cst (uns, 1); in interpret_rhs_expr()
1817 chrec2 = fold_build2 (LSHIFT_EXPR, uns, one, chrec2); in interpret_rhs_expr()
1818 res = chrec_fold_multiply (uns, chrec1, chrec2); in interpret_rhs_expr()
H A Dtree-affine.c1003 int uns, rev, vol; in get_inner_reference_aff() local
1006 &uns, &rev, &vol); in get_inner_reference_aff()
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/microblaze/
H A Dumodsi3.S62 # Check if (uns)r6 is greater than (uns)r5. In that case, just return r5
H A Dudivsi3.S62 # Check if (uns)r6 is greater than (uns)r5. In that case, just return 0
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/microblaze/
H A Dudivsi3.S62 # Check if (uns)r6 is greater than (uns)r5. In that case, just return 0
H A Dumodsi3.S62 # Check if (uns)r6 is greater than (uns)r5. In that case, just return r5
/netbsd-src/games/quiz/datfiles/
H A Dcollectives104 {H|h}uns:horde
/netbsd-src/external/gpl3/gcc/dist/gcc/config/csky/
H A Dcsky_insn_fpu.md47 (define_code_attr fixsuop [(fix "") (unsigned_fix "uns")])
51 (define_code_attr floatsuop [(float "") (unsigned_float "uns")])
/netbsd-src/external/bsd/pcc/dist/pcc/cc/cxxcom/
H A Dpftn.c1731 int class, qual, sig, uns, cmplx, imag, err; member
1829 if (tc->sig || tc->uns) in typwalk()
1834 if (tc->sig || tc->uns) in typwalk()
1836 tc->uns = 1; in typwalk()
1870 if ((tc.cmplx && tc.imag) || tc.sig || tc.uns || in typenode()
1887 if (tc.sig || tc.uns) { in typenode()
1892 if (tc.uns) in typenode()
/netbsd-src/external/bsd/pcc/dist/pcc/cc/ccom/
H A Dpftn.c1715 int class, qual, sig, uns, cmplx, imag, err, align; member
1830 if (tc->sig || tc->uns) in typwalk()
1835 if (tc->sig || tc->uns) in typwalk()
1837 tc->uns = 1; in typwalk()
1872 if ((tc.cmplx && tc.imag) || tc.sig || tc.uns || in typenode()
1889 if (tc.sig || tc.uns) { in typenode()
1894 if (tc.uns) in typenode()

1234