| /netbsd/src/crypto/external/bsd/openssl/dist/crypto/bn/asm/ |
| D | vis3-mont.pl | 94 ($ovf,$i)=($t0,$t1); 202 addxc %g0, %g0, $ovf ! upmost overflow bit 279 subcc %g0, $ovf, %g0 ! move upmost overflow to CCR.xcc 281 addxc %g0, %g0, $ovf 315 subccc $ovf, %g0, $ovf ! handle upmost overflow bit
|
| D | ppc64-mont.pl | 123 $rp="r3"; $ovf="r3"; 798 srdi $ovf,$t7,48 889 srwi $ovf,$t5,16 1360 add $carry,$carry,$ovf ; consume upmost overflow 1365 srdi $ovf,$t7,48 1460 addc $t6,$t6,$ovf 1471 srwi $ovf,$t5,16 1507 subfe $ovf,$i,$ovf ; handle upmost overflow bit 1524 and $t0,$t0,$ovf 1525 and $t1,$t1,$ovf [all …]
|
| D | sparct4-mont.pl | 707 ($ovf,$i)=($t0,$t1); 782 addxc %g0, %g0, $ovf ! upmost overflow bit 858 subcc %g0, $ovf, %g0 ! move upmost overflow to CCR.xcc 860 addxc %g0, %g0, $ovf 893 subccc $ovf, %g0, $ovf ! handle upmost overflow bit 951 ($ovf,$i)=($t0,$t1); 1027 addxc %g0, %g0, $ovf ! upmost overflow bit 1104 subcc %g0, $ovf, %g0 ! move upmost overflow to CCR.xcc 1106 addxc %g0, %g0, $ovf 1139 subccc $ovf, %g0, $ovf ! handle upmost overflow bit
|
| D | ppc-mont.pl | 113 my $ovf=$rp; 151 addi $ovf,$num,$FRAME 152 subf $ovf,$ovf,$sp ; $sp-$ovf 153 and $ovf,$ovf,$tj ; minimize TLB usage 154 subf $ovf,$sp,$ovf ; $ovf-$sp 157 $STUX $sp,$sp,$ovf 229 li $ovf,0 231 addze $ovf,$ovf ; upmost overflow bit 294 addic $ovf,$ovf,-1 ; move upmost overflow to XER[CA] 295 li $ovf,0 [all …]
|
| D | armv8-mont.pl | 59 $ovf, $i,$j,$tp,$tj) = map("x$_",6..17,19..24); 174 adc $ovf,xzr,xzr // upmost overflow bit 235 adcs $hi1,$nhi,$ovf 236 adc $ovf,xzr,xzr 243 adc $ovf,$ovf,xzr // upmost overflow bit 266 sbcs $ovf,$ovf,xzr // did it borrow?
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | value-range.cc | 233 wi::overflow_type ovf; in irange_set_anti_range() local 238 wide_int lim1 = wi::sub (w_min, 1, sign, &ovf); in irange_set_anti_range() 239 gcc_checking_assert (ovf != wi::OVF_OVERFLOW); in irange_set_anti_range() 247 wide_int lim2 = wi::add (w_max, 1, sign, &ovf); in irange_set_anti_range() 248 gcc_checking_assert (ovf != wi::OVF_OVERFLOW); in irange_set_anti_range() 1875 wi::overflow_type ovf; in invert() local 1886 tmp = subtract_one (orig_range.lower_bound (), ttype, ovf); in invert() 1888 if (ovf) in invert() 1900 tmp = wi::add (wi::to_wide (orig_range.m_base[j]), 1, sign, &ovf); in invert() 1903 ttype, ovf); in invert() [all …]
|
| D | vr-values.cc | 1061 tree op0, tree op1, bool *ovf, gimple *s = NULL) in check_for_binary_op_overflow() argument 1094 *ovf = arith_overflowed_p (subcode, type, vr0min, in check_for_binary_op_overflow() 1097 subcode == MINUS_EXPR ? vr1min : vr1max) != *ovf) in check_for_binary_op_overflow() 1101 if (arith_overflowed_p (subcode, type, vr0min, vr1max) != *ovf in check_for_binary_op_overflow() 1102 || arith_overflowed_p (subcode, type, vr0max, vr1min) != *ovf) in check_for_binary_op_overflow() 1105 if (*ovf) in check_for_binary_op_overflow() 1291 bool ovf = false; in extract_range_basic() local 1293 op0, op1, &ovf)) in extract_range_basic() 1294 vr->set (build_int_cst (type, ovf)); in extract_range_basic() 4093 bool ovf = false; in simplify_internal_call_using_ranges() local [all …]
|
| D | tree-ssa-phiopt.cc | 773 wi::overflow_type ovf; in two_value_replacement() local 783 wi::add (min + (wi::neg_p (a) ? 0 : 1), a, SIGNED, &ovf); in two_value_replacement() 784 if (ovf) in two_value_replacement() 797 wi::sub (a, min + (wi::neg_p (min) ? 0 : 1), SIGNED, &ovf); in two_value_replacement() 798 if (ovf) in two_value_replacement()
|
| D | tree-ssa-loop-manip.cc | 102 bool ovf; in create_iv() local 104 if (!tree_expr_nonnegative_warnv_p (step, &ovf) in create_iv()
|
| D | tree-ssa-math-opts.cc | 4249 tree ovf = make_ssa_name (type); in match_arith_overflow() local 4250 g2 = gimple_build_assign (ovf, IMAGPART_EXPR, in match_arith_overflow() 4284 gimple_cond_set_lhs (cond_stmt, ovf); in match_arith_overflow() 4293 gimple_assign_set_rhs1 (use_stmt, ovf); in match_arith_overflow() 4303 boolean_type_node, ovf, in match_arith_overflow()
|
| D | tree-vrp.cc | 573 combine_bound (enum tree_code code, wide_int &wi, wi::overflow_type &ovf, in combine_bound() argument 584 wi = wi::sub (wi::to_wide (op0), wi::to_wide (op1), sgn, &ovf); in combine_bound() 586 wi = wi::add (wi::to_wide (op0), wi::to_wide (op1), sgn, &ovf); in combine_bound() 593 wi = wi::neg (wi::to_wide (op1), &ovf); in combine_bound()
|
| D | tree-data-ref.cc | 4280 bool ovf; in lambda_matrix_row_add() local 4281 lambda_int tem = mul_hwi (mat[r1][i], const1, &ovf); in lambda_matrix_row_add() 4282 if (ovf) in lambda_matrix_row_add() 4284 lambda_int tem2 = add_hwi (mat[r2][i], tem, &ovf); in lambda_matrix_row_add() 4285 if (ovf || tem2 == HOST_WIDE_INT_MIN) in lambda_matrix_row_add()
|
| D | match.pd | 5206 wi::overflow_type ovf; 5208 TYPE_SIGN (TREE_TYPE (@1)), &ovf); 5210 (if (ovf) 5219 wi::overflow_type ovf; 5221 TYPE_SIGN (TREE_TYPE (@1)), &ovf); 5223 (if (ovf) 5914 (for ovf (IFN_ADD_OVERFLOW IFN_SUB_OVERFLOW IFN_MUL_OVERFLOW) 5916 (ovf (convert@2 @0) @1) 5921 (ovf @0 @1))) 5923 (ovf @1 (convert@2 @0)) [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/bfd/ |
| D | elf64-bpf.c | 38 #define BPF_HOWTO(type, right, size, bits, pcrel, left, ovf, func, name, \ argument 57 #define BPF_HOWTO(type, right, size, bits, pcrel, left, ovf, func, name, \ argument
|
| D | elfxx-loongarch.c | 46 #define LOONGARCH_HOWTO(type, right, size, bits, pcrel, left, ovf, func, \ argument 48 { HOWTO(type, right, size, bits, pcrel, left, ovf, func, name, \
|
| D | coff-aarch64.c | 246 #define HOW(type, right, size, bits, pcrel, left, ovf, func, mask) \ argument 247 HOWTO (type, right, size, bits, pcrel, left, complain_overflow_##ovf, \
|
| /netbsd/src/external/gpl3/binutils/dist/bfd/ |
| D | elf64-bpf.c | 38 #define BPF_HOWTO(type, right, size, bits, pcrel, left, ovf, func, name, \ argument 57 #define BPF_HOWTO(type, right, size, bits, pcrel, left, ovf, func, name, \ argument
|
| D | coff-aarch64.c | 246 #define HOW(type, right, size, bits, pcrel, left, ovf, func, mask) \ argument 247 HOWTO (type, right, size, bits, pcrel, left, complain_overflow_##ovf, \
|
| D | elfxx-loongarch.c | 46 #define LOONGARCH_HOWTO(type, right, size, bits, pcrel, left, ovf, func, \ argument 48 { HOWTO(type, right, size, bits, pcrel, left, ovf, func, name, \
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/rs6000/ |
| D | rs6000-call.cc | 2469 tree gpr, fpr, ovf, sav, t; in rs6000_va_start() local 2488 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist), in rs6000_va_start() 2527 t = make_tree (TREE_TYPE (ovf), crtl->args.internal_arg_pointer); in rs6000_va_start() 2530 t = build2 (MODIFY_EXPR, TREE_TYPE (ovf), ovf, t); in rs6000_va_start() 2558 tree gpr, fpr, ovf, sav, reg, t, u; in rs6000_gimplify_va_arg() local 2655 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist), in rs6000_gimplify_va_arg() 2763 t = ovf; in rs6000_gimplify_va_arg() 2780 gimplify_assign (unshare_expr (ovf), t, pre_p); in rs6000_gimplify_va_arg()
|
| /netbsd/src/external/bsd/file/dist/magic/magdir/ |
| D | archive | 34 # check for 1st member name with ovf suffix 35 >>>>>>>>0 regex \^.{1,96}[.](ovf) 37 # if 1st member name without digits and without used image suffix and without *.ovf then it is a TA… 179 # assuming *.ovf comes first 186 # assuming name[100] like: DOS-0.9.ovf FreeDOS_1.ovf Win98SE_DE.ovf
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/s390/ |
| D | s390.cc | 12727 tree gpr, fpr, ovf, sav, t; in s390_va_start() local 12737 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), valist, f_ovf, NULL_TREE); in s390_va_start() 12791 t = make_tree (TREE_TYPE (ovf), virtual_incoming_args_rtx); in s390_va_start() 12793 t = make_tree (TREE_TYPE (ovf), cfun->machine->split_stack_varargs_pointer); in s390_va_start() 12803 t = build2 (MODIFY_EXPR, TREE_TYPE (ovf), ovf, t); in s390_va_start() 12853 tree gpr, fpr, ovf, sav, reg, t, u; in s390_gimplify_va_arg() local 12872 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), valist, f_ovf, NULL_TREE); in s390_gimplify_va_arg() 12997 t = ovf; in s390_gimplify_va_arg() 13010 gimplify_assign (ovf, t, pre_p); in s390_gimplify_va_arg()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/i386/ |
| D | i386.cc | 4568 tree gpr, fpr, ovf, sav, t; in ix86_va_start() local 4636 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist), in ix86_va_start() 4665 type = TREE_TYPE (ovf); in ix86_va_start() 4674 t = build2 (MODIFY_EXPR, type, ovf, t); in ix86_va_start() 4701 tree gpr, fpr, ovf, sav, t; in ix86_gimplify_va_arg() local 4725 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), valist, f_ovf, NULL_TREE); in ix86_gimplify_va_arg() 4971 t = ovf; in ix86_gimplify_va_arg() 4975 t = fold_build_pointer_plus_hwi (ovf, align - 1); in ix86_gimplify_va_arg() 4984 gimplify_assign (unshare_expr (ovf), t, pre_p); in ix86_gimplify_va_arg()
|
| /netbsd/src/external/gpl3/binutils/lib/libbfd/arch/sh3eb/ |
| D | bfd.h | 3219 #define HOWTO(type, right, size, bits, pcrel, left, ovf, func, name, \ argument 3221 { (unsigned) type, HOWTO_RSIZE (size), bits, right, left, ovf, \
|
| /netbsd/src/external/gpl3/gdb/lib/libbfd/arch/alpha/ |
| D | bfd-in3.h | 3240 #define HOWTO(type, right, size, bits, pcrel, left, ovf, func, name, \ argument 3242 { (unsigned) type, HOWTO_RSIZE (size), bits, right, left, ovf, \
|