qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

trans_fcnv.c.inc (1494B)


      1 /* SPDX-License-Identifier: GPL-2.0-or-later */
      2 /*
      3  * Copyright (c) 2021 Loongson Technology Corporation Limited
      4  */
      5 
      6 TRANS(fcvt_s_d, gen_ff, gen_helper_fcvt_s_d)
      7 TRANS(fcvt_d_s, gen_ff, gen_helper_fcvt_d_s)
      8 TRANS(ftintrm_w_s, gen_ff, gen_helper_ftintrm_w_s)
      9 TRANS(ftintrm_w_d, gen_ff, gen_helper_ftintrm_w_d)
     10 TRANS(ftintrm_l_s, gen_ff, gen_helper_ftintrm_l_s)
     11 TRANS(ftintrm_l_d, gen_ff, gen_helper_ftintrm_l_d)
     12 TRANS(ftintrp_w_s, gen_ff, gen_helper_ftintrp_w_s)
     13 TRANS(ftintrp_w_d, gen_ff, gen_helper_ftintrp_w_d)
     14 TRANS(ftintrp_l_s, gen_ff, gen_helper_ftintrp_l_s)
     15 TRANS(ftintrp_l_d, gen_ff, gen_helper_ftintrp_l_d)
     16 TRANS(ftintrz_w_s, gen_ff, gen_helper_ftintrz_w_s)
     17 TRANS(ftintrz_w_d, gen_ff, gen_helper_ftintrz_w_d)
     18 TRANS(ftintrz_l_s, gen_ff, gen_helper_ftintrz_l_s)
     19 TRANS(ftintrz_l_d, gen_ff, gen_helper_ftintrz_l_d)
     20 TRANS(ftintrne_w_s, gen_ff, gen_helper_ftintrne_w_s)
     21 TRANS(ftintrne_w_d, gen_ff, gen_helper_ftintrne_w_d)
     22 TRANS(ftintrne_l_s, gen_ff, gen_helper_ftintrne_l_s)
     23 TRANS(ftintrne_l_d, gen_ff, gen_helper_ftintrne_l_d)
     24 TRANS(ftint_w_s, gen_ff, gen_helper_ftint_w_s)
     25 TRANS(ftint_w_d, gen_ff, gen_helper_ftint_w_d)
     26 TRANS(ftint_l_s, gen_ff, gen_helper_ftint_l_s)
     27 TRANS(ftint_l_d, gen_ff, gen_helper_ftint_l_d)
     28 TRANS(ffint_s_w, gen_ff, gen_helper_ffint_s_w)
     29 TRANS(ffint_s_l, gen_ff, gen_helper_ffint_s_l)
     30 TRANS(ffint_d_w, gen_ff, gen_helper_ffint_d_w)
     31 TRANS(ffint_d_l, gen_ff, gen_helper_ffint_d_l)
     32 TRANS(frint_s, gen_ff, gen_helper_frint_s)
     33 TRANS(frint_d, gen_ff, gen_helper_frint_d)