aboutsummaryrefslogtreecommitdiff
path: root/target/riscv/insn_trans/trans_svinval.c.inc
blob: f3cd7d5c0b53e4f7d8c4a7de4bba477a0737ec39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
 * RISC-V translation routines for the Svinval Standard Instruction Set.
 *
 * Copyright (c) 2020-2022 PLCT lab
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2 or later, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#define REQUIRE_SVINVAL(ctx) do {          \
    if (!ctx->cfg_ptr->ext_svinval) {      \
        return false;                      \
    }                                      \
} while (0)

static bool trans_sinval_vma(DisasContext *ctx, arg_sinval_vma *a)
{
    REQUIRE_SVINVAL(ctx);
    /* Do the same as sfence.vma currently */
    REQUIRE_EXT(ctx, RVS);
#ifndef CONFIG_USER_ONLY
    decode_save_opc(ctx);
    gen_helper_tlb_flush(cpu_env);
    return true;
#endif
    return false;
}

static bool trans_sfence_w_inval(DisasContext *ctx, arg_sfence_w_inval *a)
{
    REQUIRE_SVINVAL(ctx);
    REQUIRE_EXT(ctx, RVS);
    /* Do nothing currently */
    return true;
}

static bool trans_sfence_inval_ir(DisasContext *ctx, arg_sfence_inval_ir *a)
{
    REQUIRE_SVINVAL(ctx);
    REQUIRE_EXT(ctx, RVS);
    /* Do nothing currently */
    return true;
}

static bool trans_hinval_vvma(DisasContext *ctx, arg_hinval_vvma *a)
{
    REQUIRE_SVINVAL(ctx);
    /* Do the same as hfence.vvma currently */
    REQUIRE_EXT(ctx, RVH);
#ifndef CONFIG_USER_ONLY
    decode_save_opc(ctx);
    gen_helper_hyp_tlb_flush(cpu_env);
    return true;
#endif
    return false;
}

static bool trans_hinval_gvma(DisasContext *ctx, arg_hinval_gvma *a)
{
    REQUIRE_SVINVAL(ctx);
    /* Do the same as hfence.gvma currently */
    REQUIRE_EXT(ctx, RVH);
#ifndef CONFIG_USER_ONLY
    decode_save_opc(ctx);
    gen_helper_hyp_gvma_tlb_flush(cpu_env);
    return true;
#endif
    return false;
}