Statistics
| Branch: | Revision:

root / tcg / tcg-runtime.c @ 8c5e95d8

History | View | Annotate | Download (1.9 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 c896fe29 bellard
#include <stdarg.h>
25 c896fe29 bellard
#include <stdlib.h>
26 c896fe29 bellard
#include <stdio.h>
27 c896fe29 bellard
#include <string.h>
28 c896fe29 bellard
#include <inttypes.h>
29 c896fe29 bellard
30 c896fe29 bellard
#include "config.h"
31 c896fe29 bellard
#include "osdep.h"
32 c896fe29 bellard
#include "tcg.h"
33 c896fe29 bellard
34 c896fe29 bellard
int64_t tcg_helper_shl_i64(int64_t arg1, int64_t arg2)
35 c896fe29 bellard
{
36 c896fe29 bellard
    return arg1 << arg2;
37 c896fe29 bellard
}
38 c896fe29 bellard
39 c896fe29 bellard
int64_t tcg_helper_shr_i64(int64_t arg1, int64_t arg2)
40 c896fe29 bellard
{
41 c896fe29 bellard
    return (uint64_t)arg1 >> arg2;
42 c896fe29 bellard
}
43 c896fe29 bellard
44 c896fe29 bellard
int64_t tcg_helper_sar_i64(int64_t arg1, int64_t arg2)
45 c896fe29 bellard
{
46 c896fe29 bellard
    return arg1 >> arg2;
47 c896fe29 bellard
}
48 c896fe29 bellard
49 c896fe29 bellard
int64_t tcg_helper_div_i64(int64_t arg1, int64_t arg2)
50 c896fe29 bellard
{
51 c896fe29 bellard
    return arg1 / arg2;
52 c896fe29 bellard
}
53 c896fe29 bellard
54 c896fe29 bellard
int64_t tcg_helper_rem_i64(int64_t arg1, int64_t arg2)
55 c896fe29 bellard
{
56 c7b76a0a balrog
    return arg1 % arg2;
57 c896fe29 bellard
}
58 c896fe29 bellard
59 c896fe29 bellard
uint64_t tcg_helper_divu_i64(uint64_t arg1, uint64_t arg2)
60 c896fe29 bellard
{
61 c896fe29 bellard
    return arg1 / arg2;
62 c896fe29 bellard
}
63 c896fe29 bellard
64 c896fe29 bellard
uint64_t tcg_helper_remu_i64(uint64_t arg1, uint64_t arg2)
65 c896fe29 bellard
{
66 c7b76a0a balrog
    return arg1 % arg2;
67 c896fe29 bellard
}