]> git.proxmox.com Git - mirror_qemu.git/blame - target/openrisc/helper.h
slirp: Make RA build more flexible
[mirror_qemu.git] / target / openrisc / helper.h
CommitLineData
b6a71ef7
JL
1/*
2 * OpenRISC helper defines
3 *
4 * Copyright (c) 2011-2012 Jia Liu <proljc@gmail.com>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 */
19
1d7d4034 20/* exception */
9fba702b 21DEF_HELPER_FLAGS_2(exception, TCG_CALL_NO_WG, void, env, i32)
97458071
RH
22DEF_HELPER_FLAGS_1(ove_cy, TCG_CALL_NO_WG, void, env)
23DEF_HELPER_FLAGS_1(ove_ov, TCG_CALL_NO_WG, void, env)
24DEF_HELPER_FLAGS_1(ove_cyov, TCG_CALL_NO_WG, void, env)
1d7d4034 25
5b569507 26/* float */
9fba702b
RH
27DEF_HELPER_FLAGS_2(itofd, TCG_CALL_NO_WG, i64, env, i64)
28DEF_HELPER_FLAGS_2(itofs, TCG_CALL_NO_WG, i32, env, i32)
29DEF_HELPER_FLAGS_2(ftoid, TCG_CALL_NO_WG, i64, env, i64)
30DEF_HELPER_FLAGS_2(ftois, TCG_CALL_NO_WG, i32, env, i32)
5b569507 31
762e22ed
RH
32DEF_HELPER_FLAGS_4(float_madd_s, TCG_CALL_NO_WG, i32, env, i32, i32, i32)
33DEF_HELPER_FLAGS_4(float_madd_d, TCG_CALL_NO_WG, i64, env, i64, i64, i64)
5b569507
JL
34
35#define FOP_CALC(op) \
9fba702b
RH
36DEF_HELPER_FLAGS_3(float_ ## op ## _s, TCG_CALL_NO_WG, i32, env, i32, i32) \
37DEF_HELPER_FLAGS_3(float_ ## op ## _d, TCG_CALL_NO_WG, i64, env, i64, i64)
5b569507
JL
38FOP_CALC(add)
39FOP_CALC(sub)
40FOP_CALC(mul)
41FOP_CALC(div)
42FOP_CALC(rem)
43#undef FOP_CALC
44
45#define FOP_CMP(op) \
9fba702b
RH
46DEF_HELPER_FLAGS_3(float_ ## op ## _s, TCG_CALL_NO_WG, i32, env, i32, i32) \
47DEF_HELPER_FLAGS_3(float_ ## op ## _d, TCG_CALL_NO_WG, i64, env, i64, i64)
5b569507
JL
48FOP_CMP(eq)
49FOP_CMP(lt)
50FOP_CMP(le)
51FOP_CMP(ne)
52FOP_CMP(gt)
53FOP_CMP(ge)
54#undef FOP_CMP
55
b6a71ef7
JL
56/* interrupt */
57DEF_HELPER_FLAGS_1(rfe, 0, void, env)
58
4dd044c6
JL
59/* sys */
60DEF_HELPER_FLAGS_4(mtspr, 0, void, env, tl, tl, tl)
9fba702b 61DEF_HELPER_FLAGS_4(mfspr, TCG_CALL_NO_WG, tl, env, tl, tl, tl)