mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-30 21:42:06 -06:00
cpu: Replace ENV_GET_CPU with env_cpu
Now that we have both ArchCPU and CPUArchState, we can define this generically instead of via macro in each target's cpu.h. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Acked-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
2161a612b4
commit
29a0af618d
59 changed files with 175 additions and 197 deletions
|
@ -283,8 +283,6 @@ static inline AlphaCPU *alpha_env_get_cpu(CPUAlphaState *env)
|
|||
return container_of(env, AlphaCPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(alpha_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(AlphaCPU, env)
|
||||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
|
|
|
@ -922,8 +922,6 @@ void arm_cpu_post_init(Object *obj);
|
|||
|
||||
uint64_t arm_cpu_mp_affinity(int idx, uint8_t clustersz);
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(arm_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(ARMCPU, env)
|
||||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
|
|
|
@ -587,7 +587,7 @@ static void contextidr_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbiall_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
|
||||
tlb_flush_all_cpus_synced(cs);
|
||||
}
|
||||
|
@ -595,7 +595,7 @@ static void tlbiall_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbiasid_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
|
||||
tlb_flush_all_cpus_synced(cs);
|
||||
}
|
||||
|
@ -603,7 +603,7 @@ static void tlbiasid_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbimva_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
|
||||
tlb_flush_page_all_cpus_synced(cs, value & TARGET_PAGE_MASK);
|
||||
}
|
||||
|
@ -611,7 +611,7 @@ static void tlbimva_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbimvaa_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
|
||||
tlb_flush_page_all_cpus_synced(cs, value & TARGET_PAGE_MASK);
|
||||
}
|
||||
|
@ -686,7 +686,7 @@ static void tlbimvaa_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbiall_nsnh_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
|
||||
tlb_flush_by_mmuidx(cs,
|
||||
ARMMMUIdxBit_S12NSE1 |
|
||||
|
@ -697,7 +697,7 @@ static void tlbiall_nsnh_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbiall_nsnh_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
|
||||
tlb_flush_by_mmuidx_all_cpus_synced(cs,
|
||||
ARMMMUIdxBit_S12NSE1 |
|
||||
|
@ -714,7 +714,7 @@ static void tlbiipas2_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
* translation information.
|
||||
* This must NOP if EL2 isn't implemented or SCR_EL3.NS is zero.
|
||||
*/
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
uint64_t pageaddr;
|
||||
|
||||
if (!arm_feature(env, ARM_FEATURE_EL2) || !(env->cp15.scr_el3 & SCR_NS)) {
|
||||
|
@ -729,7 +729,7 @@ static void tlbiipas2_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbiipas2_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
uint64_t pageaddr;
|
||||
|
||||
if (!arm_feature(env, ARM_FEATURE_EL2) || !(env->cp15.scr_el3 & SCR_NS)) {
|
||||
|
@ -745,7 +745,7 @@ static void tlbiipas2_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbiall_hyp_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
|
||||
tlb_flush_by_mmuidx(cs, ARMMMUIdxBit_S1E2);
|
||||
}
|
||||
|
@ -753,7 +753,7 @@ static void tlbiall_hyp_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbiall_hyp_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
|
||||
tlb_flush_by_mmuidx_all_cpus_synced(cs, ARMMMUIdxBit_S1E2);
|
||||
}
|
||||
|
@ -761,7 +761,7 @@ static void tlbiall_hyp_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbimva_hyp_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
uint64_t pageaddr = value & ~MAKE_64BIT_MASK(0, 12);
|
||||
|
||||
tlb_flush_page_by_mmuidx(cs, pageaddr, ARMMMUIdxBit_S1E2);
|
||||
|
@ -770,7 +770,7 @@ static void tlbimva_hyp_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbimva_hyp_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
uint64_t pageaddr = value & ~MAKE_64BIT_MASK(0, 12);
|
||||
|
||||
tlb_flush_page_by_mmuidx_all_cpus_synced(cs, pageaddr,
|
||||
|
@ -1921,7 +1921,7 @@ static void csselr_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
|
||||
static uint64_t isr_read(CPUARMState *env, const ARMCPRegInfo *ri)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
uint64_t hcr_el2 = arm_hcr_el2_eff(env);
|
||||
uint64_t ret = 0;
|
||||
|
||||
|
@ -3773,7 +3773,7 @@ static CPAccessResult aa64_cacheop_access(CPUARMState *env,
|
|||
static void tlbi_aa64_vmalle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
bool sec = arm_is_secure_below_el3(env);
|
||||
|
||||
if (sec) {
|
||||
|
@ -3790,7 +3790,7 @@ static void tlbi_aa64_vmalle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbi_aa64_vmalle1_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
|
||||
if (tlb_force_broadcast(env)) {
|
||||
tlbi_aa64_vmalle1is_write(env, NULL, value);
|
||||
|
@ -3861,7 +3861,7 @@ static void tlbi_aa64_alle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
* stage 2 translations, whereas most other scopes only invalidate
|
||||
* stage 1 translations.
|
||||
*/
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
bool sec = arm_is_secure_below_el3(env);
|
||||
bool has_el2 = arm_feature(env, ARM_FEATURE_EL2);
|
||||
|
||||
|
@ -3884,7 +3884,7 @@ static void tlbi_aa64_alle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbi_aa64_alle2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
|
||||
tlb_flush_by_mmuidx_all_cpus_synced(cs, ARMMMUIdxBit_S1E2);
|
||||
}
|
||||
|
@ -3892,7 +3892,7 @@ static void tlbi_aa64_alle2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbi_aa64_alle3is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
|
||||
tlb_flush_by_mmuidx_all_cpus_synced(cs, ARMMMUIdxBit_S1E3);
|
||||
}
|
||||
|
@ -3975,7 +3975,7 @@ static void tlbi_aa64_vae1_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbi_aa64_vae2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
uint64_t pageaddr = sextract64(value << 12, 0, 56);
|
||||
|
||||
tlb_flush_page_by_mmuidx_all_cpus_synced(cs, pageaddr,
|
||||
|
@ -3985,7 +3985,7 @@ static void tlbi_aa64_vae2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbi_aa64_vae3is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
uint64_t pageaddr = sextract64(value << 12, 0, 56);
|
||||
|
||||
tlb_flush_page_by_mmuidx_all_cpus_synced(cs, pageaddr,
|
||||
|
@ -4017,7 +4017,7 @@ static void tlbi_aa64_ipas2e1_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static void tlbi_aa64_ipas2e1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
uint64_t pageaddr;
|
||||
|
||||
if (!arm_feature(env, ARM_FEATURE_EL2) || !(env->cp15.scr_el3 & SCR_NS)) {
|
||||
|
|
|
@ -188,8 +188,6 @@ static inline CRISCPU *cris_env_get_cpu(CPUCRISState *env)
|
|||
return container_of(env, CRISCPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(cris_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(CRISCPU, env)
|
||||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
|
|
|
@ -227,7 +227,6 @@ static inline HPPACPU *hppa_env_get_cpu(CPUHPPAState *env)
|
|||
return container_of(env, HPPACPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(hppa_env_get_cpu(e))
|
||||
#define ENV_OFFSET offsetof(HPPACPU, env)
|
||||
|
||||
typedef CPUHPPAState CPUArchState;
|
||||
|
|
|
@ -77,7 +77,7 @@ static void atomic_store_3(CPUHPPAState *env, target_ulong addr, uint32_t val,
|
|||
}
|
||||
#else
|
||||
/* FIXME -- we can do better. */
|
||||
cpu_loop_exit_atomic(ENV_GET_CPU(env), ra);
|
||||
cpu_loop_exit_atomic(env_cpu(env), ra);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -1485,8 +1485,6 @@ static inline X86CPU *x86_env_get_cpu(CPUX86State *env)
|
|||
return container_of(env, X86CPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(x86_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(X86CPU, env)
|
||||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
|
|
|
@ -67,7 +67,7 @@ int valid_hax_tunnel_size(uint16_t size)
|
|||
|
||||
hax_fd hax_vcpu_get_fd(CPUArchState *env)
|
||||
{
|
||||
struct hax_vcpu_state *vcpu = ENV_GET_CPU(env)->hax_vcpu;
|
||||
struct hax_vcpu_state *vcpu = env_cpu(env)->hax_vcpu;
|
||||
if (!vcpu) {
|
||||
return HAX_INVALID_FD;
|
||||
}
|
||||
|
@ -409,7 +409,7 @@ static int hax_handle_io(CPUArchState *env, uint32_t df, uint16_t port,
|
|||
|
||||
static int hax_vcpu_interrupt(CPUArchState *env)
|
||||
{
|
||||
CPUState *cpu = ENV_GET_CPU(env);
|
||||
CPUState *cpu = env_cpu(env);
|
||||
struct hax_vcpu_state *vcpu = cpu->hax_vcpu;
|
||||
struct hax_tunnel *ht = vcpu->tunnel;
|
||||
|
||||
|
@ -461,7 +461,7 @@ void hax_raise_event(CPUState *cpu)
|
|||
static int hax_vcpu_hax_exec(CPUArchState *env)
|
||||
{
|
||||
int ret = 0;
|
||||
CPUState *cpu = ENV_GET_CPU(env);
|
||||
CPUState *cpu = env_cpu(env);
|
||||
X86CPU *x86_cpu = X86_CPU(cpu);
|
||||
struct hax_vcpu_state *vcpu = cpu->hax_vcpu;
|
||||
struct hax_tunnel *ht = vcpu->tunnel;
|
||||
|
|
|
@ -75,8 +75,8 @@ static inline uint64_t decode_bytes(CPUX86State *env, struct x86_decode *decode,
|
|||
VM_PANIC_EX("%s invalid size %d\n", __func__, size);
|
||||
break;
|
||||
}
|
||||
target_ulong va = linear_rip(ENV_GET_CPU(env), RIP(env)) + decode->len;
|
||||
vmx_read_mem(ENV_GET_CPU(env), &val, va, size);
|
||||
target_ulong va = linear_rip(env_cpu(env), RIP(env)) + decode->len;
|
||||
vmx_read_mem(env_cpu(env), &val, va, size);
|
||||
decode->len += size;
|
||||
|
||||
return val;
|
||||
|
@ -1772,7 +1772,7 @@ void calc_modrm_operand32(CPUX86State *env, struct x86_decode *decode,
|
|||
if (4 == decode->modrm.rm) {
|
||||
ptr += get_sib_val(env, decode, &seg);
|
||||
} else if (!decode->modrm.mod && 5 == decode->modrm.rm) {
|
||||
if (x86_is_long_mode(ENV_GET_CPU(env))) {
|
||||
if (x86_is_long_mode(env_cpu(env))) {
|
||||
ptr += RIP(env) + decode->len;
|
||||
} else {
|
||||
ptr = decode->displacement;
|
||||
|
@ -1877,7 +1877,7 @@ static void decode_prefix(CPUX86State *env, struct x86_decode *decode)
|
|||
decode->addr_size_override = byte;
|
||||
break;
|
||||
case PREFIX_REX ... (PREFIX_REX + 0xf):
|
||||
if (x86_is_long_mode(ENV_GET_CPU(env))) {
|
||||
if (x86_is_long_mode(env_cpu(env))) {
|
||||
decode->rex.rex = byte;
|
||||
break;
|
||||
}
|
||||
|
@ -1892,16 +1892,16 @@ static void decode_prefix(CPUX86State *env, struct x86_decode *decode)
|
|||
void set_addressing_size(CPUX86State *env, struct x86_decode *decode)
|
||||
{
|
||||
decode->addressing_size = -1;
|
||||
if (x86_is_real(ENV_GET_CPU(env)) || x86_is_v8086(ENV_GET_CPU(env))) {
|
||||
if (x86_is_real(env_cpu(env)) || x86_is_v8086(env_cpu(env))) {
|
||||
if (decode->addr_size_override) {
|
||||
decode->addressing_size = 4;
|
||||
} else {
|
||||
decode->addressing_size = 2;
|
||||
}
|
||||
} else if (!x86_is_long_mode(ENV_GET_CPU(env))) {
|
||||
} else if (!x86_is_long_mode(env_cpu(env))) {
|
||||
/* protected */
|
||||
struct vmx_segment cs;
|
||||
vmx_read_segment_descriptor(ENV_GET_CPU(env), &cs, R_CS);
|
||||
vmx_read_segment_descriptor(env_cpu(env), &cs, R_CS);
|
||||
/* check db */
|
||||
if ((cs.ar >> 14) & 1) {
|
||||
if (decode->addr_size_override) {
|
||||
|
@ -1929,16 +1929,16 @@ void set_addressing_size(CPUX86State *env, struct x86_decode *decode)
|
|||
void set_operand_size(CPUX86State *env, struct x86_decode *decode)
|
||||
{
|
||||
decode->operand_size = -1;
|
||||
if (x86_is_real(ENV_GET_CPU(env)) || x86_is_v8086(ENV_GET_CPU(env))) {
|
||||
if (x86_is_real(env_cpu(env)) || x86_is_v8086(env_cpu(env))) {
|
||||
if (decode->op_size_override) {
|
||||
decode->operand_size = 4;
|
||||
} else {
|
||||
decode->operand_size = 2;
|
||||
}
|
||||
} else if (!x86_is_long_mode(ENV_GET_CPU(env))) {
|
||||
} else if (!x86_is_long_mode(env_cpu(env))) {
|
||||
/* protected */
|
||||
struct vmx_segment cs;
|
||||
vmx_read_segment_descriptor(ENV_GET_CPU(env), &cs, R_CS);
|
||||
vmx_read_segment_descriptor(env_cpu(env), &cs, R_CS);
|
||||
/* check db */
|
||||
if ((cs.ar >> 14) & 1) {
|
||||
if (decode->op_size_override) {
|
||||
|
@ -2188,5 +2188,5 @@ target_ulong decode_linear_addr(CPUX86State *env, struct x86_decode *decode,
|
|||
default:
|
||||
break;
|
||||
}
|
||||
return linear_addr_size(ENV_GET_CPU(env), addr, decode->addressing_size, seg);
|
||||
return linear_addr_size(env_cpu(env), addr, decode->addressing_size, seg);
|
||||
}
|
||||
|
|
|
@ -182,12 +182,12 @@ void write_val_ext(struct CPUX86State *env, target_ulong ptr, target_ulong val,
|
|||
write_val_to_reg(ptr, val, size);
|
||||
return;
|
||||
}
|
||||
vmx_write_mem(ENV_GET_CPU(env), ptr, &val, size);
|
||||
vmx_write_mem(env_cpu(env), ptr, &val, size);
|
||||
}
|
||||
|
||||
uint8_t *read_mmio(struct CPUX86State *env, target_ulong ptr, int bytes)
|
||||
{
|
||||
vmx_read_mem(ENV_GET_CPU(env), env->hvf_emul->mmio_buf, ptr, bytes);
|
||||
vmx_read_mem(env_cpu(env), env->hvf_emul->mmio_buf, ptr, bytes);
|
||||
return env->hvf_emul->mmio_buf;
|
||||
}
|
||||
|
||||
|
@ -399,17 +399,18 @@ static void exec_out(struct CPUX86State *env, struct x86_decode *decode)
|
|||
{
|
||||
switch (decode->opcode[0]) {
|
||||
case 0xe6:
|
||||
hvf_handle_io(ENV_GET_CPU(env), decode->op[0].val, &AL(env), 1, 1, 1);
|
||||
hvf_handle_io(env_cpu(env), decode->op[0].val, &AL(env), 1, 1, 1);
|
||||
break;
|
||||
case 0xe7:
|
||||
hvf_handle_io(ENV_GET_CPU(env), decode->op[0].val, &RAX(env), 1,
|
||||
hvf_handle_io(env_cpu(env), decode->op[0].val, &RAX(env), 1,
|
||||
decode->operand_size, 1);
|
||||
break;
|
||||
case 0xee:
|
||||
hvf_handle_io(ENV_GET_CPU(env), DX(env), &AL(env), 1, 1, 1);
|
||||
hvf_handle_io(env_cpu(env), DX(env), &AL(env), 1, 1, 1);
|
||||
break;
|
||||
case 0xef:
|
||||
hvf_handle_io(ENV_GET_CPU(env), DX(env), &RAX(env), 1, decode->operand_size, 1);
|
||||
hvf_handle_io(env_cpu(env), DX(env), &RAX(env), 1,
|
||||
decode->operand_size, 1);
|
||||
break;
|
||||
default:
|
||||
VM_PANIC("Bad out opcode\n");
|
||||
|
@ -423,10 +424,11 @@ static void exec_in(struct CPUX86State *env, struct x86_decode *decode)
|
|||
target_ulong val = 0;
|
||||
switch (decode->opcode[0]) {
|
||||
case 0xe4:
|
||||
hvf_handle_io(ENV_GET_CPU(env), decode->op[0].val, &AL(env), 0, 1, 1);
|
||||
hvf_handle_io(env_cpu(env), decode->op[0].val, &AL(env), 0, 1, 1);
|
||||
break;
|
||||
case 0xe5:
|
||||
hvf_handle_io(ENV_GET_CPU(env), decode->op[0].val, &val, 0, decode->operand_size, 1);
|
||||
hvf_handle_io(env_cpu(env), decode->op[0].val, &val, 0,
|
||||
decode->operand_size, 1);
|
||||
if (decode->operand_size == 2) {
|
||||
AX(env) = val;
|
||||
} else {
|
||||
|
@ -434,10 +436,10 @@ static void exec_in(struct CPUX86State *env, struct x86_decode *decode)
|
|||
}
|
||||
break;
|
||||
case 0xec:
|
||||
hvf_handle_io(ENV_GET_CPU(env), DX(env), &AL(env), 0, 1, 1);
|
||||
hvf_handle_io(env_cpu(env), DX(env), &AL(env), 0, 1, 1);
|
||||
break;
|
||||
case 0xed:
|
||||
hvf_handle_io(ENV_GET_CPU(env), DX(env), &val, 0, decode->operand_size, 1);
|
||||
hvf_handle_io(env_cpu(env), DX(env), &val, 0, decode->operand_size, 1);
|
||||
if (decode->operand_size == 2) {
|
||||
AX(env) = val;
|
||||
} else {
|
||||
|
@ -484,12 +486,13 @@ static inline void string_rep(struct CPUX86State *env, struct x86_decode *decode
|
|||
|
||||
static void exec_ins_single(struct CPUX86State *env, struct x86_decode *decode)
|
||||
{
|
||||
target_ulong addr = linear_addr_size(ENV_GET_CPU(env), RDI(env), decode->addressing_size,
|
||||
R_ES);
|
||||
target_ulong addr = linear_addr_size(env_cpu(env), RDI(env),
|
||||
decode->addressing_size, R_ES);
|
||||
|
||||
hvf_handle_io(ENV_GET_CPU(env), DX(env), env->hvf_emul->mmio_buf, 0,
|
||||
hvf_handle_io(env_cpu(env), DX(env), env->hvf_emul->mmio_buf, 0,
|
||||
decode->operand_size, 1);
|
||||
vmx_write_mem(ENV_GET_CPU(env), addr, env->hvf_emul->mmio_buf, decode->operand_size);
|
||||
vmx_write_mem(env_cpu(env), addr, env->hvf_emul->mmio_buf,
|
||||
decode->operand_size);
|
||||
|
||||
string_increment_reg(env, R_EDI, decode);
|
||||
}
|
||||
|
@ -509,8 +512,9 @@ static void exec_outs_single(struct CPUX86State *env, struct x86_decode *decode)
|
|||
{
|
||||
target_ulong addr = decode_linear_addr(env, decode, RSI(env), R_DS);
|
||||
|
||||
vmx_read_mem(ENV_GET_CPU(env), env->hvf_emul->mmio_buf, addr, decode->operand_size);
|
||||
hvf_handle_io(ENV_GET_CPU(env), DX(env), env->hvf_emul->mmio_buf, 1,
|
||||
vmx_read_mem(env_cpu(env), env->hvf_emul->mmio_buf, addr,
|
||||
decode->operand_size);
|
||||
hvf_handle_io(env_cpu(env), DX(env), env->hvf_emul->mmio_buf, 1,
|
||||
decode->operand_size, 1);
|
||||
|
||||
string_increment_reg(env, R_ESI, decode);
|
||||
|
@ -534,8 +538,8 @@ static void exec_movs_single(struct CPUX86State *env, struct x86_decode *decode)
|
|||
target_ulong val;
|
||||
|
||||
src_addr = decode_linear_addr(env, decode, RSI(env), R_DS);
|
||||
dst_addr = linear_addr_size(ENV_GET_CPU(env), RDI(env), decode->addressing_size,
|
||||
R_ES);
|
||||
dst_addr = linear_addr_size(env_cpu(env), RDI(env),
|
||||
decode->addressing_size, R_ES);
|
||||
|
||||
val = read_val_ext(env, src_addr, decode->operand_size);
|
||||
write_val_ext(env, dst_addr, val, decode->operand_size);
|
||||
|
@ -561,8 +565,8 @@ static void exec_cmps_single(struct CPUX86State *env, struct x86_decode *decode)
|
|||
target_ulong dst_addr;
|
||||
|
||||
src_addr = decode_linear_addr(env, decode, RSI(env), R_DS);
|
||||
dst_addr = linear_addr_size(ENV_GET_CPU(env), RDI(env), decode->addressing_size,
|
||||
R_ES);
|
||||
dst_addr = linear_addr_size(env_cpu(env), RDI(env),
|
||||
decode->addressing_size, R_ES);
|
||||
|
||||
decode->op[0].type = X86_VAR_IMMEDIATE;
|
||||
decode->op[0].val = read_val_ext(env, src_addr, decode->operand_size);
|
||||
|
@ -591,9 +595,10 @@ static void exec_stos_single(struct CPUX86State *env, struct x86_decode *decode)
|
|||
target_ulong addr;
|
||||
target_ulong val;
|
||||
|
||||
addr = linear_addr_size(ENV_GET_CPU(env), RDI(env), decode->addressing_size, R_ES);
|
||||
addr = linear_addr_size(env_cpu(env), RDI(env),
|
||||
decode->addressing_size, R_ES);
|
||||
val = read_reg(env, R_EAX, decode->operand_size);
|
||||
vmx_write_mem(ENV_GET_CPU(env), addr, &val, decode->operand_size);
|
||||
vmx_write_mem(env_cpu(env), addr, &val, decode->operand_size);
|
||||
|
||||
string_increment_reg(env, R_EDI, decode);
|
||||
}
|
||||
|
@ -614,9 +619,10 @@ static void exec_scas_single(struct CPUX86State *env, struct x86_decode *decode)
|
|||
{
|
||||
target_ulong addr;
|
||||
|
||||
addr = linear_addr_size(ENV_GET_CPU(env), RDI(env), decode->addressing_size, R_ES);
|
||||
addr = linear_addr_size(env_cpu(env), RDI(env),
|
||||
decode->addressing_size, R_ES);
|
||||
decode->op[1].type = X86_VAR_IMMEDIATE;
|
||||
vmx_read_mem(ENV_GET_CPU(env), &decode->op[1].val, addr, decode->operand_size);
|
||||
vmx_read_mem(env_cpu(env), &decode->op[1].val, addr, decode->operand_size);
|
||||
|
||||
EXEC_2OP_FLAGS_CMD(env, decode, -, SET_FLAGS_OSZAPC_SUB, false);
|
||||
string_increment_reg(env, R_EDI, decode);
|
||||
|
@ -641,7 +647,7 @@ static void exec_lods_single(struct CPUX86State *env, struct x86_decode *decode)
|
|||
target_ulong val = 0;
|
||||
|
||||
addr = decode_linear_addr(env, decode, RSI(env), R_DS);
|
||||
vmx_read_mem(ENV_GET_CPU(env), &val, addr, decode->operand_size);
|
||||
vmx_read_mem(env_cpu(env), &val, addr, decode->operand_size);
|
||||
write_reg(env, R_EAX, val, decode->operand_size);
|
||||
|
||||
string_increment_reg(env, R_ESI, decode);
|
||||
|
@ -753,7 +759,7 @@ void simulate_rdmsr(struct CPUState *cpu)
|
|||
|
||||
static void exec_rdmsr(struct CPUX86State *env, struct x86_decode *decode)
|
||||
{
|
||||
simulate_rdmsr(ENV_GET_CPU(env));
|
||||
simulate_rdmsr(env_cpu(env));
|
||||
RIP(env) += decode->len;
|
||||
}
|
||||
|
||||
|
@ -851,7 +857,7 @@ void simulate_wrmsr(struct CPUState *cpu)
|
|||
|
||||
static void exec_wrmsr(struct CPUX86State *env, struct x86_decode *decode)
|
||||
{
|
||||
simulate_wrmsr(ENV_GET_CPU(env));
|
||||
simulate_wrmsr(env_cpu(env));
|
||||
RIP(env) += decode->len;
|
||||
}
|
||||
|
||||
|
|
|
@ -89,7 +89,7 @@ void helper_cmpxchg8b(CPUX86State *env, target_ulong a0)
|
|||
}
|
||||
CC_SRC = eflags;
|
||||
#else
|
||||
cpu_loop_exit_atomic(ENV_GET_CPU(env), GETPC());
|
||||
cpu_loop_exit_atomic(env_cpu(env), GETPC());
|
||||
#endif /* CONFIG_ATOMIC64 */
|
||||
}
|
||||
|
||||
|
@ -158,7 +158,7 @@ void helper_cmpxchg16b(CPUX86State *env, target_ulong a0)
|
|||
}
|
||||
CC_SRC = eflags;
|
||||
} else {
|
||||
cpu_loop_exit_atomic(ENV_GET_CPU(env), ra);
|
||||
cpu_loop_exit_atomic(env_cpu(env), ra);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -200,8 +200,6 @@ static inline LM32CPU *lm32_env_get_cpu(CPULM32State *env)
|
|||
return container_of(env, LM32CPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(lm32_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(LM32CPU, env)
|
||||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
|
|
|
@ -168,8 +168,6 @@ static inline M68kCPU *m68k_env_get_cpu(CPUM68KState *env)
|
|||
return container_of(env, M68kCPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(m68k_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(M68kCPU, env)
|
||||
|
||||
void m68k_cpu_do_interrupt(CPUState *cpu);
|
||||
|
|
|
@ -781,7 +781,7 @@ static void do_cas2l(CPUM68KState *env, uint32_t regs, uint32_t a1, uint32_t a2,
|
|||
#endif
|
||||
{
|
||||
/* Tell the main loop we need to serialize this insn. */
|
||||
cpu_loop_exit_atomic(ENV_GET_CPU(env), ra);
|
||||
cpu_loop_exit_atomic(env_cpu(env), ra);
|
||||
}
|
||||
} else {
|
||||
/* We're executing in a serial context -- no need to be atomic. */
|
||||
|
|
|
@ -315,8 +315,6 @@ static inline MicroBlazeCPU *mb_env_get_cpu(CPUMBState *env)
|
|||
return container_of(env, MicroBlazeCPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(mb_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(MicroBlazeCPU, env)
|
||||
|
||||
void mb_cpu_do_interrupt(CPUState *cs);
|
||||
|
|
|
@ -1076,8 +1076,6 @@ static inline MIPSCPU *mips_env_get_cpu(CPUMIPSState *env)
|
|||
return container_of(env, MIPSCPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(mips_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(MIPSCPU, env)
|
||||
|
||||
void mips_cpu_list(void);
|
||||
|
|
|
@ -95,8 +95,6 @@ static inline MoxieCPU *moxie_env_get_cpu(CPUMoxieState *env)
|
|||
return container_of(env, MoxieCPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(moxie_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(MoxieCPU, env)
|
||||
|
||||
void moxie_cpu_do_interrupt(CPUState *cs);
|
||||
|
|
|
@ -199,8 +199,6 @@ static inline Nios2CPU *nios2_env_get_cpu(CPUNios2State *env)
|
|||
return NIOS2_CPU(container_of(env, Nios2CPU, env));
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(nios2_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(Nios2CPU, env)
|
||||
|
||||
void nios2_tcg_init(void);
|
||||
|
|
|
@ -102,7 +102,7 @@ unsigned int mmu_translate(CPUNios2State *env,
|
|||
|
||||
static void mmu_flush_pid(CPUNios2State *env, uint32_t pid)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
Nios2CPU *cpu = nios2_env_get_cpu(env);
|
||||
int idx;
|
||||
MMU_LOG(qemu_log("TLB Flush PID %d\n", pid));
|
||||
|
@ -126,7 +126,7 @@ static void mmu_flush_pid(CPUNios2State *env, uint32_t pid)
|
|||
|
||||
void mmu_write(CPUNios2State *env, uint32_t rn, uint32_t v)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
Nios2CPU *cpu = nios2_env_get_cpu(env);
|
||||
|
||||
MMU_LOG(qemu_log("mmu_write %08X = %08X\n", rn, v));
|
||||
|
|
|
@ -46,7 +46,7 @@ void helper_check_interrupts(CPUNios2State *env)
|
|||
|
||||
void helper_raise_exception(CPUNios2State *env, uint32_t index)
|
||||
{
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
cs->exception_index = index;
|
||||
cpu_loop_exit(cs);
|
||||
}
|
||||
|
|
|
@ -322,8 +322,6 @@ static inline OpenRISCCPU *openrisc_env_get_cpu(CPUOpenRISCState *env)
|
|||
return container_of(env, OpenRISCCPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(openrisc_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(OpenRISCCPU, env)
|
||||
|
||||
void cpu_openrisc_list(void);
|
||||
|
|
|
@ -1208,8 +1208,6 @@ static inline PowerPCCPU *ppc_env_get_cpu(CPUPPCState *env)
|
|||
return container_of(env, PowerPCCPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(ppc_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(PowerPCCPU, env)
|
||||
|
||||
PowerPCCPUClass *ppc_cpu_class_by_pvr(uint32_t pvr);
|
||||
|
|
|
@ -522,7 +522,7 @@ static inline int get_segment_6xx_tlb(CPUPPCState *env, mmu_ctx_t *ctx,
|
|||
ret = ppc6xx_tlb_check(env, ctx, eaddr, rw, type);
|
||||
#if defined(DUMP_PAGE_TABLES)
|
||||
if (qemu_loglevel_mask(CPU_LOG_MMU)) {
|
||||
CPUState *cs = ENV_GET_CPU(env);
|
||||
CPUState *cs = env_cpu(env);
|
||||
hwaddr curaddr;
|
||||
uint32_t a0, a1, a2, a3;
|
||||
|
||||
|
|
|
@ -244,7 +244,6 @@ extern const char * const riscv_fpr_regnames[];
|
|||
extern const char * const riscv_excp_names[];
|
||||
extern const char * const riscv_intr_names[];
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(riscv_env_get_cpu(e))
|
||||
#define ENV_OFFSET offsetof(RISCVCPU, env)
|
||||
|
||||
void riscv_cpu_do_interrupt(CPUState *cpu);
|
||||
|
|
|
@ -168,8 +168,6 @@ static inline S390CPU *s390_env_get_cpu(CPUS390XState *env)
|
|||
return container_of(env, S390CPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(s390_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(S390CPU, env)
|
||||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
|
|
|
@ -96,7 +96,7 @@ static int cpu_write_ac_reg(CPUS390XState *env, uint8_t *mem_buf, int n)
|
|||
switch (n) {
|
||||
case S390_A0_REGNUM ... S390_A15_REGNUM:
|
||||
env->aregs[n] = ldl_p(mem_buf);
|
||||
cpu_synchronize_post_init(ENV_GET_CPU(env));
|
||||
cpu_synchronize_post_init(env_cpu(env));
|
||||
return 4;
|
||||
default:
|
||||
return 0;
|
||||
|
@ -201,9 +201,9 @@ static int cpu_write_c_reg(CPUS390XState *env, uint8_t *mem_buf, int n)
|
|||
case S390_C0_REGNUM ... S390_C15_REGNUM:
|
||||
env->cregs[n] = ldtul_p(mem_buf);
|
||||
if (tcg_enabled()) {
|
||||
tlb_flush(ENV_GET_CPU(env));
|
||||
tlb_flush(env_cpu(env));
|
||||
}
|
||||
cpu_synchronize_post_init(ENV_GET_CPU(env));
|
||||
cpu_synchronize_post_init(env_cpu(env));
|
||||
return 8;
|
||||
default:
|
||||
return 0;
|
||||
|
@ -251,35 +251,35 @@ static int cpu_write_virt_reg(CPUS390XState *env, uint8_t *mem_buf, int n)
|
|||
switch (n) {
|
||||
case S390_VIRT_CKC_REGNUM:
|
||||
env->ckc = ldtul_p(mem_buf);
|
||||
cpu_synchronize_post_init(ENV_GET_CPU(env));
|
||||
cpu_synchronize_post_init(env_cpu(env));
|
||||
return 8;
|
||||
case S390_VIRT_CPUTM_REGNUM:
|
||||
env->cputm = ldtul_p(mem_buf);
|
||||
cpu_synchronize_post_init(ENV_GET_CPU(env));
|
||||
cpu_synchronize_post_init(env_cpu(env));
|
||||
return 8;
|
||||
case S390_VIRT_BEA_REGNUM:
|
||||
env->gbea = ldtul_p(mem_buf);
|
||||
cpu_synchronize_post_init(ENV_GET_CPU(env));
|
||||
cpu_synchronize_post_init(env_cpu(env));
|
||||
return 8;
|
||||
case S390_VIRT_PREFIX_REGNUM:
|
||||
env->psa = ldtul_p(mem_buf);
|
||||
cpu_synchronize_post_init(ENV_GET_CPU(env));
|
||||
cpu_synchronize_post_init(env_cpu(env));
|
||||
return 8;
|
||||
case S390_VIRT_PP_REGNUM:
|
||||
env->pp = ldtul_p(mem_buf);
|
||||
cpu_synchronize_post_init(ENV_GET_CPU(env));
|
||||
cpu_synchronize_post_init(env_cpu(env));
|
||||
return 8;
|
||||
case S390_VIRT_PFT_REGNUM:
|
||||
env->pfault_token = ldtul_p(mem_buf);
|
||||
cpu_synchronize_post_init(ENV_GET_CPU(env));
|
||||
cpu_synchronize_post_init(env_cpu(env));
|
||||
return 8;
|
||||
case S390_VIRT_PFS_REGNUM:
|
||||
env->pfault_select = ldtul_p(mem_buf);
|
||||
cpu_synchronize_post_init(ENV_GET_CPU(env));
|
||||
cpu_synchronize_post_init(env_cpu(env));
|
||||
return 8;
|
||||
case S390_VIRT_PFC_REGNUM:
|
||||
env->pfault_compare = ldtul_p(mem_buf);
|
||||
cpu_synchronize_post_init(ENV_GET_CPU(env));
|
||||
cpu_synchronize_post_init(env_cpu(env));
|
||||
return 8;
|
||||
default:
|
||||
return 0;
|
||||
|
@ -303,7 +303,7 @@ static int cpu_read_gs_reg(CPUS390XState *env, uint8_t *mem_buf, int n)
|
|||
static int cpu_write_gs_reg(CPUS390XState *env, uint8_t *mem_buf, int n)
|
||||
{
|
||||
env->gscb[n] = ldtul_p(mem_buf);
|
||||
cpu_synchronize_post_init(ENV_GET_CPU(env));
|
||||
cpu_synchronize_post_init(env_cpu(env));
|
||||
return 8;
|
||||
}
|
||||
|
||||
|
|
|
@ -1461,7 +1461,7 @@ static uint32_t do_csst(CPUS390XState *env, uint32_t r3, uint64_t a1,
|
|||
#endif
|
||||
if ((HAVE_CMPXCHG128 ? 0 : fc + 2 > max) ||
|
||||
(HAVE_ATOMIC128 ? 0 : sc > max)) {
|
||||
cpu_loop_exit_atomic(ENV_GET_CPU(env), ra);
|
||||
cpu_loop_exit_atomic(env_cpu(env), ra);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -212,8 +212,6 @@ static inline SuperHCPU *sh_env_get_cpu(CPUSH4State *env)
|
|||
return container_of(env, SuperHCPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(sh_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(SuperHCPU, env)
|
||||
|
||||
void superh_cpu_do_interrupt(CPUState *cpu);
|
||||
|
|
|
@ -107,7 +107,7 @@ void helper_trapa(CPUSH4State *env, uint32_t tra)
|
|||
void helper_exclusive(CPUSH4State *env)
|
||||
{
|
||||
/* We do not want cpu_restore_state to run. */
|
||||
cpu_loop_exit_atomic(ENV_GET_CPU(env), 0);
|
||||
cpu_loop_exit_atomic(env_cpu(env), 0);
|
||||
}
|
||||
|
||||
void helper_movcal(CPUSH4State *env, uint32_t address, uint32_t value)
|
||||
|
|
|
@ -537,8 +537,6 @@ static inline SPARCCPU *sparc_env_get_cpu(CPUSPARCState *env)
|
|||
return container_of(env, SPARCCPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(sparc_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(SPARCCPU, env)
|
||||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
|
|
|
@ -143,8 +143,6 @@ static inline TileGXCPU *tilegx_env_get_cpu(CPUTLGState *env)
|
|||
return container_of(env, TileGXCPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(tilegx_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(TileGXCPU, env)
|
||||
|
||||
/* TILE-Gx memory attributes */
|
||||
|
|
|
@ -213,8 +213,6 @@ static inline TriCoreCPU *tricore_env_get_cpu(CPUTriCoreState *env)
|
|||
return TRICORE_CPU(container_of(env, TriCoreCPU, env));
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(tricore_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(TriCoreCPU, env)
|
||||
|
||||
hwaddr tricore_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr);
|
||||
|
|
|
@ -81,8 +81,6 @@ static inline UniCore32CPU *uc32_env_get_cpu(CPUUniCore32State *env)
|
|||
return container_of(env, UniCore32CPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(uc32_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(UniCore32CPU, env)
|
||||
|
||||
void uc32_cpu_do_interrupt(CPUState *cpu);
|
||||
|
|
|
@ -564,8 +564,6 @@ static inline XtensaCPU *xtensa_env_get_cpu(const CPUXtensaState *env)
|
|||
return container_of(env, XtensaCPU, env);
|
||||
}
|
||||
|
||||
#define ENV_GET_CPU(e) CPU(xtensa_env_get_cpu(e))
|
||||
|
||||
#define ENV_OFFSET offsetof(XtensaCPU, env)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue