Add qemu 2.4.0
[kvmfornfv.git] / qemu / target-unicore32 / helper.h
1 /*
2  * Copyright (C) 2010-2012 Guan Xuetao
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
6  * published by the Free Software Foundation, or (at your option) any
7  * later version. See the COPYING file in the top-level directory.
8  */
9
10 #ifndef CONFIG_USER_ONLY
11 DEF_HELPER_4(cp0_set, void, env, i32, i32, i32)
12 DEF_HELPER_3(cp0_get, i32, env, i32, i32)
13 DEF_HELPER_1(cp1_putc, void, i32)
14 #endif
15
16 DEF_HELPER_1(clz, i32, i32)
17 DEF_HELPER_1(clo, i32, i32)
18
19 DEF_HELPER_2(exception, void, env, i32)
20
21 DEF_HELPER_3(asr_write, void, env, i32, i32)
22 DEF_HELPER_1(asr_read, i32, env)
23
24 DEF_HELPER_2(get_user_reg, i32, env, i32)
25 DEF_HELPER_3(set_user_reg, void, env, i32, i32)
26
27 DEF_HELPER_3(add_cc, i32, env, i32, i32)
28 DEF_HELPER_3(adc_cc, i32, env, i32, i32)
29 DEF_HELPER_3(sub_cc, i32, env, i32, i32)
30 DEF_HELPER_3(sbc_cc, i32, env, i32, i32)
31
32 DEF_HELPER_2(shl, i32, i32, i32)
33 DEF_HELPER_2(shr, i32, i32, i32)
34 DEF_HELPER_2(sar, i32, i32, i32)
35 DEF_HELPER_3(shl_cc, i32, env, i32, i32)
36 DEF_HELPER_3(shr_cc, i32, env, i32, i32)
37 DEF_HELPER_3(sar_cc, i32, env, i32, i32)
38 DEF_HELPER_3(ror_cc, i32, env, i32, i32)
39
40 DEF_HELPER_1(ucf64_get_fpscr, i32, env)
41 DEF_HELPER_2(ucf64_set_fpscr, void, env, i32)
42
43 DEF_HELPER_3(ucf64_adds, f32, f32, f32, env)
44 DEF_HELPER_3(ucf64_addd, f64, f64, f64, env)
45 DEF_HELPER_3(ucf64_subs, f32, f32, f32, env)
46 DEF_HELPER_3(ucf64_subd, f64, f64, f64, env)
47 DEF_HELPER_3(ucf64_muls, f32, f32, f32, env)
48 DEF_HELPER_3(ucf64_muld, f64, f64, f64, env)
49 DEF_HELPER_3(ucf64_divs, f32, f32, f32, env)
50 DEF_HELPER_3(ucf64_divd, f64, f64, f64, env)
51 DEF_HELPER_1(ucf64_negs, f32, f32)
52 DEF_HELPER_1(ucf64_negd, f64, f64)
53 DEF_HELPER_1(ucf64_abss, f32, f32)
54 DEF_HELPER_1(ucf64_absd, f64, f64)
55 DEF_HELPER_4(ucf64_cmps, void, f32, f32, i32, env)
56 DEF_HELPER_4(ucf64_cmpd, void, f64, f64, i32, env)
57
58 DEF_HELPER_2(ucf64_sf2df, f64, f32, env)
59 DEF_HELPER_2(ucf64_df2sf, f32, f64, env)
60
61 DEF_HELPER_2(ucf64_si2sf, f32, f32, env)
62 DEF_HELPER_2(ucf64_si2df, f64, f32, env)
63
64 DEF_HELPER_2(ucf64_sf2si, f32, f32, env)
65 DEF_HELPER_2(ucf64_df2si, f32, f64, env)