tests/data/qobject/qdict.txt: Avoid non-inclusive words
[qemu/kevin.git] / target / loongarch / translate.h
blob195f53573a0b91283b73f79622b535ef2262dd28
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 * LoongArch translation routines.
5 * Copyright (c) 2021 Loongson Technology Corporation Limited
6 */
8 #ifndef TARGET_LOONGARCH_TRANSLATE_H
9 #define TARGET_LOONGARCH_TRANSLATE_H
11 #include "exec/translator.h"
13 #define TRANS(NAME, AVAIL, FUNC, ...) \
14 static bool trans_##NAME(DisasContext *ctx, arg_##NAME * a) \
15 { return avail_##AVAIL(ctx) && FUNC(ctx, a, __VA_ARGS__); }
17 #define avail_ALL(C) true
18 #define avail_64(C) (FIELD_EX32((C)->cpucfg1, CPUCFG1, ARCH) == \
19 CPUCFG1_ARCH_LA64)
20 #define avail_FP(C) (FIELD_EX32((C)->cpucfg2, CPUCFG2, FP))
21 #define avail_FP_SP(C) (FIELD_EX32((C)->cpucfg2, CPUCFG2, FP_SP))
22 #define avail_FP_DP(C) (FIELD_EX32((C)->cpucfg2, CPUCFG2, FP_DP))
23 #define avail_LSPW(C) (FIELD_EX32((C)->cpucfg2, CPUCFG2, LSPW))
24 #define avail_LAM(C) (FIELD_EX32((C)->cpucfg2, CPUCFG2, LAM))
25 #define avail_LSX(C) (FIELD_EX32((C)->cpucfg2, CPUCFG2, LSX))
26 #define avail_LASX(C) (FIELD_EX32((C)->cpucfg2, CPUCFG2, LASX))
27 #define avail_IOCSR(C) (FIELD_EX32((C)->cpucfg1, CPUCFG1, IOCSR))
30 * If an operation is being performed on less than TARGET_LONG_BITS,
31 * it may require the inputs to be sign- or zero-extended; which will
32 * depend on the exact operation being performed.
34 typedef enum {
35 EXT_NONE,
36 EXT_SIGN,
37 EXT_ZERO,
38 } DisasExtend;
40 typedef struct DisasContext {
41 DisasContextBase base;
42 target_ulong page_start;
43 uint32_t opcode;
44 uint16_t mem_idx;
45 uint16_t plv;
46 int vl; /* Vector length */
47 TCGv zero;
48 bool la64; /* LoongArch64 mode */
49 bool va32; /* 32-bit virtual address */
50 uint32_t cpucfg1;
51 uint32_t cpucfg2;
52 } DisasContext;
54 void generate_exception(DisasContext *ctx, int excp);
56 extern TCGv cpu_gpr[32], cpu_pc;
57 extern TCGv_i32 cpu_fscr0;
58 extern TCGv_i64 cpu_fpr[32];
60 #endif