Statistics
| Branch: | Revision:

root / tcg / tcg-runtime.c @ c45851c4

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 7a3a5141 blueswir1
#include "cpu.h" // For TARGET_LONG_BITS
33 c896fe29 bellard
#include "tcg.h"
34 c896fe29 bellard
35 c896fe29 bellard
int64_t tcg_helper_shl_i64(int64_t arg1, int64_t arg2)
36 c896fe29 bellard
{
37 c896fe29 bellard
    return arg1 << arg2;
38 c896fe29 bellard
}
39 c896fe29 bellard
40 c896fe29 bellard
int64_t tcg_helper_shr_i64(int64_t arg1, int64_t arg2)
41 c896fe29 bellard
{
42 c896fe29 bellard
    return (uint64_t)arg1 >> arg2;
43 c896fe29 bellard
}
44 c896fe29 bellard
45 c896fe29 bellard
int64_t tcg_helper_sar_i64(int64_t arg1, int64_t arg2)
46 c896fe29 bellard
{
47 c896fe29 bellard
    return arg1 >> arg2;
48 c896fe29 bellard
}
49 c896fe29 bellard
50 c896fe29 bellard
int64_t tcg_helper_div_i64(int64_t arg1, int64_t arg2)
51 c896fe29 bellard
{
52 c896fe29 bellard
    return arg1 / arg2;
53 c896fe29 bellard
}
54 c896fe29 bellard
55 c896fe29 bellard
int64_t tcg_helper_rem_i64(int64_t arg1, int64_t arg2)
56 c896fe29 bellard
{
57 c7b76a0a balrog
    return arg1 % arg2;
58 c896fe29 bellard
}
59 c896fe29 bellard
60 c896fe29 bellard
uint64_t tcg_helper_divu_i64(uint64_t arg1, uint64_t arg2)
61 c896fe29 bellard
{
62 c896fe29 bellard
    return arg1 / arg2;
63 c896fe29 bellard
}
64 c896fe29 bellard
65 c896fe29 bellard
uint64_t tcg_helper_remu_i64(uint64_t arg1, uint64_t arg2)
66 c896fe29 bellard
{
67 c7b76a0a balrog
    return arg1 % arg2;
68 c896fe29 bellard
}