Statistics
| Branch: | Revision:

root / tcg / tcg-runtime.h @ 6b64b624

History | View | Annotate | Download (706 Bytes)

1 96e132e2 Blue Swirl
#ifndef TCG_RUNTIME_H
2 96e132e2 Blue Swirl
#define TCG_RUNTIME_H
3 96e132e2 Blue Swirl
4 96e132e2 Blue Swirl
/* tcg-runtime.c */
5 31d66551 Aurelien Jarno
int32_t tcg_helper_div_i32(int32_t arg1, int32_t arg2);
6 31d66551 Aurelien Jarno
int32_t tcg_helper_rem_i32(int32_t arg1, int32_t arg2);
7 31d66551 Aurelien Jarno
uint32_t tcg_helper_divu_i32(uint32_t arg1, uint32_t arg2);
8 31d66551 Aurelien Jarno
uint32_t tcg_helper_remu_i32(uint32_t arg1, uint32_t arg2);
9 31d66551 Aurelien Jarno
10 96e132e2 Blue Swirl
int64_t tcg_helper_shl_i64(int64_t arg1, int64_t arg2);
11 96e132e2 Blue Swirl
int64_t tcg_helper_shr_i64(int64_t arg1, int64_t arg2);
12 96e132e2 Blue Swirl
int64_t tcg_helper_sar_i64(int64_t arg1, int64_t arg2);
13 96e132e2 Blue Swirl
int64_t tcg_helper_div_i64(int64_t arg1, int64_t arg2);
14 96e132e2 Blue Swirl
int64_t tcg_helper_rem_i64(int64_t arg1, int64_t arg2);
15 96e132e2 Blue Swirl
uint64_t tcg_helper_divu_i64(uint64_t arg1, uint64_t arg2);
16 96e132e2 Blue Swirl
uint64_t tcg_helper_remu_i64(uint64_t arg1, uint64_t arg2);
17 96e132e2 Blue Swirl
18 96e132e2 Blue Swirl
#endif