Home
last modified time | relevance | path

Searched refs:wop1 (Results 1 – 6 of 6) sorted by relevance

/netbsd/src/external/gpl3/gdb/dist/sim/mips/
Dcp1.c543 sim_fpu wop1; in fp_test() local
553 sim_fpu_32to (&wop1, op1); in fp_test()
559 sim_fpu_64to (&wop1, op1); in fp_test()
568 if (sim_fpu_is_nan (&wop1) || sim_fpu_is_nan (&wop2)) in fp_test()
571 || sim_fpu_is_snan (&wop1) || sim_fpu_is_snan (&wop2)) in fp_test()
581 status |= sim_fpu_abs (&wop1, &wop1); in fp_test()
584 equal = sim_fpu_is_eq (&wop1, &wop2); in fp_test()
585 less = !equal && sim_fpu_is_lt (&wop1, &wop2); in fp_test()
747 sim_fpu wop1, wop2; in fp_r6_cmp() local
753 sim_fpu_32to (&wop1, op1); in fp_r6_cmp()
[all …]
/netbsd/src/external/gpl3/gdb/dist/sim/v850/
Dv850.igen2411 sim_fpu ans, wop1, wop2;
2414 sim_fpu_232to (&wop1, GR[reg1e+1], GR[reg1e]);
2416 TRACE_FP_INPUT_FPU2 (&wop1, &wop2);
2418 status = sim_fpu_add (&ans, &wop1, &wop2);
2433 sim_fpu ans, wop1, wop2;
2436 sim_fpu_32to (&wop1, GR[reg1]);
2438 TRACE_FP_INPUT_FPU2 (&wop1, &wop2);
2440 status = sim_fpu_add (&ans, &wop1, &wop2);
2456 sim_fpu ans, wop1, wop2;
2458 sim_fpu_232to (&wop1, GR[reg1e+1], GR[reg1e]);
[all …]
Dsimops.h82 int v850_float_compare(SIM_DESC sd, int cmp, sim_fpu wop1, sim_fpu wop2, int double_op_p);
Dsimops.c2907 v850_float_compare (SIM_DESC sd, int cmp, sim_fpu wop1, sim_fpu wop2, int double_op_p) in v850_float_compare() argument
2911 if (sim_fpu_is_nan (&wop1) || sim_fpu_is_nan (&wop2)) in v850_float_compare()
2976 else if (sim_fpu_is_infinity (&wop1) && sim_fpu_is_infinity (&wop2) in v850_float_compare()
2977 && sim_fpu_sign (&wop1) == sim_fpu_sign (&wop2)) in v850_float_compare()
3037 status = sim_fpu_cmp (&wop1, &wop2); in v850_float_compare()
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dsimplify-rtx.cc5078 wide_int wop1 = pop1; in simplify_const_binary_operation() local
5080 wop1 = wi::umod_trunc (wop1, GET_MODE_PRECISION (int_mode)); in simplify_const_binary_operation()
5081 else if (wi::geu_p (wop1, GET_MODE_PRECISION (int_mode))) in simplify_const_binary_operation()
5087 result = wi::lrshift (pop0, wop1); in simplify_const_binary_operation()
5091 result = wi::arshift (pop0, wop1); in simplify_const_binary_operation()
5095 result = wi::lshift (pop0, wop1); in simplify_const_binary_operation()
5099 if (wi::leu_p (wop1, wi::clrsb (pop0))) in simplify_const_binary_operation()
5100 result = wi::lshift (pop0, wop1); in simplify_const_binary_operation()
5110 else if (wi::leu_p (wop1, wi::clz (pop0))) in simplify_const_binary_operation()
5111 result = wi::lshift (pop0, wop1); in simplify_const_binary_operation()
Dexpmed.cc3886 rtx wop0, wop1; in expmed_mult_highpart_optab() local
3894 wop1 = convert_modes (wider_mode, mode, op1, unsignedp); in expmed_mult_highpart_optab()
3895 tem = expand_binop (wider_mode, smul_optab, wop0, wop1, 0, in expmed_mult_highpart_optab()