xref: /qemu/target/loongarch/translate.h (revision 17ffe331)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * LoongArch translation routines.
4  *
5  * Copyright (c) 2021 Loongson Technology Corporation Limited
6  */
7 
8 #ifndef TARGET_LOONGARCH_TRANSLATE_H
9 #define TARGET_LOONGARCH_TRANSLATE_H
10 
11 #include "exec/translator.h"
12 
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__); }
16 
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_IOCSR(C) (FIELD_EX32((C)->cpucfg1, CPUCFG1, IOCSR))
27 
28 /*
29  * If an operation is being performed on less than TARGET_LONG_BITS,
30  * it may require the inputs to be sign- or zero-extended; which will
31  * depend on the exact operation being performed.
32  */
33 typedef enum {
34     EXT_NONE,
35     EXT_SIGN,
36     EXT_ZERO,
37 } DisasExtend;
38 
39 typedef struct DisasContext {
40     DisasContextBase base;
41     target_ulong page_start;
42     uint32_t opcode;
43     uint16_t mem_idx;
44     uint16_t plv;
45     int vl;   /* Vector length */
46     TCGv zero;
47     bool la64; /* LoongArch64 mode */
48     bool va32; /* 32-bit virtual address */
49     uint32_t cpucfg1;
50     uint32_t cpucfg2;
51 } DisasContext;
52 
53 void generate_exception(DisasContext *ctx, int excp);
54 
55 extern TCGv cpu_gpr[32], cpu_pc;
56 extern TCGv_i32 cpu_fscr0;
57 extern TCGv_i64 cpu_fpr[32];
58 
59 #endif
60