Statistics
| Branch: | Revision:

root / tcg-runtime.c @ 2dedf83e

History | View | Annotate | Download (1.8 kB)

1 c896fe29 bellard
/*
2 c896fe29 bellard
 * Tiny Code Generator for QEMU
3 c896fe29 bellard
 *
4 c896fe29 bellard
 * Copyright (c) 2008 Fabrice Bellard
5 c896fe29 bellard
 *
6 c896fe29 bellard
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 c896fe29 bellard
 * of this software and associated documentation files (the "Software"), to deal
8 c896fe29 bellard
 * in the Software without restriction, including without limitation the rights
9 c896fe29 bellard
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 c896fe29 bellard
 * copies of the Software, and to permit persons to whom the Software is
11 c896fe29 bellard
 * furnished to do so, subject to the following conditions:
12 c896fe29 bellard
 *
13 c896fe29 bellard
 * The above copyright notice and this permission notice shall be included in
14 c896fe29 bellard
 * all copies or substantial portions of the Software.
15 c896fe29 bellard
 *
16 c896fe29 bellard
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 c896fe29 bellard
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 c896fe29 bellard
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 c896fe29 bellard
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 c896fe29 bellard
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 c896fe29 bellard
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 c896fe29 bellard
 * THE SOFTWARE.
23 c896fe29 bellard
 */
24 96e132e2 Blue Swirl
#include <stdint.h>
25 c896fe29 bellard
26 96e132e2 Blue Swirl
#include "tcg/tcg-runtime.h"
27 c896fe29 bellard
28 c896fe29 bellard
int64_t tcg_helper_shl_i64(int64_t arg1, int64_t arg2)
29 c896fe29 bellard
{
30 c896fe29 bellard
    return arg1 << arg2;
31 c896fe29 bellard
}
32 c896fe29 bellard
33 c896fe29 bellard
int64_t tcg_helper_shr_i64(int64_t arg1, int64_t arg2)
34 c896fe29 bellard
{
35 c896fe29 bellard
    return (uint64_t)arg1 >> arg2;
36 c896fe29 bellard
}
37 c896fe29 bellard
38 c896fe29 bellard
int64_t tcg_helper_sar_i64(int64_t arg1, int64_t arg2)
39 c896fe29 bellard
{
40 c896fe29 bellard
    return arg1 >> arg2;
41 c896fe29 bellard
}
42 c896fe29 bellard
43 c896fe29 bellard
int64_t tcg_helper_div_i64(int64_t arg1, int64_t arg2)
44 c896fe29 bellard
{
45 c896fe29 bellard
    return arg1 / arg2;
46 c896fe29 bellard
}
47 c896fe29 bellard
48 c896fe29 bellard
int64_t tcg_helper_rem_i64(int64_t arg1, int64_t arg2)
49 c896fe29 bellard
{
50 c7b76a0a balrog
    return arg1 % arg2;
51 c896fe29 bellard
}
52 c896fe29 bellard
53 c896fe29 bellard
uint64_t tcg_helper_divu_i64(uint64_t arg1, uint64_t arg2)
54 c896fe29 bellard
{
55 c896fe29 bellard
    return arg1 / arg2;
56 c896fe29 bellard
}
57 c896fe29 bellard
58 c896fe29 bellard
uint64_t tcg_helper_remu_i64(uint64_t arg1, uint64_t arg2)
59 c896fe29 bellard
{
60 c7b76a0a balrog
    return arg1 % arg2;
61 c896fe29 bellard
}