]> git.proxmox.com Git - mirror_qemu.git/blame - target-unicore32/helper.h
9pfs: use coroutine_fn annotation in hw/9pfs/9p.[ch]
[mirror_qemu.git] / target-unicore32 / helper.h
CommitLineData
6e64da3c 1/*
527d9979 2 * Copyright (C) 2010-2012 Guan Xuetao
6e64da3c
GX
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
2b3bc6c0
AF
6 * published by the Free Software Foundation, or (at your option) any
7 * later version. See the COPYING file in the top-level directory.
6e64da3c 8 */
6e64da3c 9
527d9979
GX
10#ifndef CONFIG_USER_ONLY
11DEF_HELPER_4(cp0_set, void, env, i32, i32, i32)
12DEF_HELPER_3(cp0_get, i32, env, i32, i32)
13DEF_HELPER_1(cp1_putc, void, i32)
14#endif
15
6e64da3c
GX
16DEF_HELPER_1(clz, i32, i32)
17DEF_HELPER_1(clo, i32, i32)
18
04a130ea 19DEF_HELPER_2(exception, void, env, i32)
6e64da3c 20
04a130ea
BS
21DEF_HELPER_3(asr_write, void, env, i32, i32)
22DEF_HELPER_1(asr_read, i32, env)
6e64da3c 23
04a130ea
BS
24DEF_HELPER_2(get_user_reg, i32, env, i32)
25DEF_HELPER_3(set_user_reg, void, env, i32, i32)
6e64da3c 26
04a130ea
BS
27DEF_HELPER_3(add_cc, i32, env, i32, i32)
28DEF_HELPER_3(adc_cc, i32, env, i32, i32)
29DEF_HELPER_3(sub_cc, i32, env, i32, i32)
30DEF_HELPER_3(sbc_cc, i32, env, i32, i32)
6e64da3c
GX
31
32DEF_HELPER_2(shl, i32, i32, i32)
33DEF_HELPER_2(shr, i32, i32, i32)
34DEF_HELPER_2(sar, i32, i32, i32)
04a130ea
BS
35DEF_HELPER_3(shl_cc, i32, env, i32, i32)
36DEF_HELPER_3(shr_cc, i32, env, i32, i32)
37DEF_HELPER_3(sar_cc, i32, env, i32, i32)
38DEF_HELPER_3(ror_cc, i32, env, i32, i32)
6e64da3c 39
6e64da3c
GX
40DEF_HELPER_1(ucf64_get_fpscr, i32, env)
41DEF_HELPER_2(ucf64_set_fpscr, void, env, i32)
42
43DEF_HELPER_3(ucf64_adds, f32, f32, f32, env)
44DEF_HELPER_3(ucf64_addd, f64, f64, f64, env)
45DEF_HELPER_3(ucf64_subs, f32, f32, f32, env)
46DEF_HELPER_3(ucf64_subd, f64, f64, f64, env)
47DEF_HELPER_3(ucf64_muls, f32, f32, f32, env)
48DEF_HELPER_3(ucf64_muld, f64, f64, f64, env)
49DEF_HELPER_3(ucf64_divs, f32, f32, f32, env)
50DEF_HELPER_3(ucf64_divd, f64, f64, f64, env)
51DEF_HELPER_1(ucf64_negs, f32, f32)
52DEF_HELPER_1(ucf64_negd, f64, f64)
53DEF_HELPER_1(ucf64_abss, f32, f32)
54DEF_HELPER_1(ucf64_absd, f64, f64)
55DEF_HELPER_4(ucf64_cmps, void, f32, f32, i32, env)
56DEF_HELPER_4(ucf64_cmpd, void, f64, f64, i32, env)
57
58DEF_HELPER_2(ucf64_sf2df, f64, f32, env)
59DEF_HELPER_2(ucf64_df2sf, f32, f64, env)
60
61DEF_HELPER_2(ucf64_si2sf, f32, f32, env)
62DEF_HELPER_2(ucf64_si2df, f64, f32, env)
63
64DEF_HELPER_2(ucf64_sf2si, f32, f32, env)
65DEF_HELPER_2(ucf64_df2si, f32, f64, env)