Home
last modified time | relevance | path

Searched refs:TAG_Special (Results 1 – 13 of 13) sorted by relevance

/openbmc/linux/arch/x86/math-emu/
H A Derrors.c186 case TAG_Special: in FPU_printall()
392 0) | TAG_Special; in real_1op_NaN()
394 return TAG_Special; in real_1op_NaN()
422 if (taga == TAG_Special) in real_2op_NaN()
424 if (tagb == TAG_Special) in real_2op_NaN()
440 TAG_Special; in real_2op_NaN()
484 return TAG_Special; in real_2op_NaN()
521 tag = TAG_Special; in FPU_divide_by_zero()
566 return TAG_Special; in denormal_operand()
569 return TAG_Special | FPU_Exception; in denormal_operand()
[all …]
H A Dreg_mul.c53 if (taga == TAG_Special) in FPU_mul()
55 if (tagb == TAG_Special) in FPU_mul()
100 FPU_copy_to_regi(a, TAG_Special, deststnr); in FPU_mul()
102 return TAG_Special; in FPU_mul()
104 FPU_copy_to_regi(b, TAG_Special, deststnr); in FPU_mul()
106 return TAG_Special; in FPU_mul()
H A Dfpu_trig.c256 if (tag == TAG_Special) in f2xm1()
332 if (st0_tag == TAG_Special) in fptan()
396 if (st0_tag == TAG_Special) in fxtract()
479 if (st0_tag == TAG_Special) in fsqrt_()
539 if (st0_tag == TAG_Special) in frndint_()
585 if (tag == TAG_Special) in f_sin()
668 if (tag == TAG_Special) in f_cos()
713 if (st0_tag == TAG_Special) in fsincos()
960 if (st0_tag == TAG_Special) in do_fprem()
962 if (st1_tag == TAG_Special) in do_fprem()
[all …]
H A Dreg_add_sub.c95 if (taga == TAG_Special) in FPU_add()
97 if (tagb == TAG_Special) in FPU_add()
226 if (taga == TAG_Special) in FPU_sub()
228 if (tagb == TAG_Special) in FPU_sub()
300 tagb = TAG_Special; in add_sub_specials()
312 taga = TAG_Special; in add_sub_specials()
318 FPU_copy_to_regi(a, TAG_Special, deststnr); in add_sub_specials()
325 FPU_copy_to_regi(b, TAG_Special, deststnr); in add_sub_specials()
H A Dreg_divide.c90 if (taga == TAG_Special) in FPU_div()
92 if (tagb == TAG_Special) in FPU_div()
139 if (tag == TAG_Special) in FPU_div()
146 if (tag == TAG_Special) in FPU_div()
162 FPU_copy_to_regi(a, TAG_Special, deststnr); in FPU_div()
H A Dreg_ld_str.c63 return TAG_Special; in FPU_tagof()
68 return TAG_Special; in FPU_tagof()
75 return TAG_Special; in FPU_tagof()
116 tag = TAG_Special; in FPU_load_double()
190 tag = TAG_Special; in FPU_load_single()
495 } else if (st0_tag == TAG_Special) { in FPU_store_double()
676 } else if (st0_tag == TAG_Special) { in FPU_store_single()
763 } else if (st0_tag == TAG_Special) { in FPU_store_int64()
812 } else if (st0_tag == TAG_Special) { in FPU_store_int32()
1104 FPU_settag(i, TAG_Special); in fldenv()
[all …]
H A Dfpu_etc.c50 case TAG_Special: in ftst_()
102 case TAG_Special: in fxam()
H A Dfpu_entry.c318 if (((st0_tag == TAG_Special) && isNaN(st0_ptr)) in math_emulate()
319 || ((loaded_tag == TAG_Special) in math_emulate()
333 if (loaded_tag == TAG_Special) in math_emulate()
364 TAG_Special in math_emulate()
H A Dload_store.c126 if ((loaded_tag == TAG_Special) in FPU_load_store()
145 if ((loaded_tag == TAG_Special) in FPU_load_store()
H A Dreg_compare.c36 if (tagb == TAG_Special) in compare()
38 if (st0_tag == TAG_Special) in compare()
H A Dreg_round.S601 movl TAG_Special,%edx
610 movl TAG_Special,%edx
H A Dfpu_emu.h56 #define TAG_Special Const(2) /* De-normal, + or - infinity, macro
H A Dpoly_sin.c213 FPU_copy_to_reg0(&CONST_QNaN, TAG_Special); in poly_cos()