mirror of https://github.com/xemu-project/xemu.git
SPARC: Add asr17 register support
This register is activated by CPU_FEATURE_ASR17 in the feature field. Signed-off-by: Fabien Chouteau <chouteau@adacore.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
b04d989054
commit
4a2ba23284
|
@ -267,6 +267,7 @@ typedef struct sparc_def_t {
|
||||||
#define CPU_FEATURE_CMT (1 << 12)
|
#define CPU_FEATURE_CMT (1 << 12)
|
||||||
#define CPU_FEATURE_GL (1 << 13)
|
#define CPU_FEATURE_GL (1 << 13)
|
||||||
#define CPU_FEATURE_TA0_SHUTDOWN (1 << 14) /* Shutdown on "ta 0x0" */
|
#define CPU_FEATURE_TA0_SHUTDOWN (1 << 14) /* Shutdown on "ta 0x0" */
|
||||||
|
#define CPU_FEATURE_ASR17 (1 << 15)
|
||||||
#ifndef TARGET_SPARC64
|
#ifndef TARGET_SPARC64
|
||||||
#define CPU_DEFAULT_FEATURES (CPU_FEATURE_FLOAT | CPU_FEATURE_SWAP | \
|
#define CPU_DEFAULT_FEATURES (CPU_FEATURE_FLOAT | CPU_FEATURE_SWAP | \
|
||||||
CPU_FEATURE_MUL | CPU_FEATURE_DIV | \
|
CPU_FEATURE_MUL | CPU_FEATURE_DIV | \
|
||||||
|
|
|
@ -1288,7 +1288,8 @@ static const sparc_def_t sparc_defs[] = {
|
||||||
.mmu_sfsr_mask = 0xffffffff,
|
.mmu_sfsr_mask = 0xffffffff,
|
||||||
.mmu_trcr_mask = 0xffffffff,
|
.mmu_trcr_mask = 0xffffffff,
|
||||||
.nwindows = 8,
|
.nwindows = 8,
|
||||||
.features = CPU_DEFAULT_FEATURES | CPU_FEATURE_TA0_SHUTDOWN,
|
.features = CPU_DEFAULT_FEATURES | CPU_FEATURE_TA0_SHUTDOWN |
|
||||||
|
CPU_FEATURE_ASR17,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
|
@ -2067,6 +2067,17 @@ static void disas_sparc_insn(DisasContext * dc)
|
||||||
case 0x10 ... 0x1f: /* implementation-dependent in the
|
case 0x10 ... 0x1f: /* implementation-dependent in the
|
||||||
SPARCv8 manual, rdy on the
|
SPARCv8 manual, rdy on the
|
||||||
microSPARC II */
|
microSPARC II */
|
||||||
|
/* Read Asr17 */
|
||||||
|
if (rs1 == 0x11 && dc->def->features & CPU_FEATURE_ASR17) {
|
||||||
|
TCGv r_const;
|
||||||
|
|
||||||
|
/* Read Asr17 for a Leon3 monoprocessor */
|
||||||
|
r_const = tcg_const_tl((1 << 8)
|
||||||
|
| (dc->def->nwindows - 1));
|
||||||
|
gen_movl_TN_reg(rd, r_const);
|
||||||
|
tcg_temp_free(r_const);
|
||||||
|
break;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
gen_movl_TN_reg(rd, cpu_y);
|
gen_movl_TN_reg(rd, cpu_y);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue