mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
target/openrisc: Form the spr index from tcg
Rather than pass base+offset to the helper, pass the full index. In most cases the base is r0 and optimization yields a constant. Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Stafford Horne <shorne@gmail.com>
This commit is contained in:
parent
01ec3ec930
commit
c28fa81f91
3 changed files with 14 additions and 15 deletions
|
@ -27,13 +27,11 @@
|
|||
|
||||
#define TO_SPR(group, number) (((group) << 11) + (number))
|
||||
|
||||
void HELPER(mtspr)(CPUOpenRISCState *env,
|
||||
target_ulong ra, target_ulong rb, target_ulong offset)
|
||||
void HELPER(mtspr)(CPUOpenRISCState *env, target_ulong spr, target_ulong rb)
|
||||
{
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
OpenRISCCPU *cpu = openrisc_env_get_cpu(env);
|
||||
CPUState *cs = CPU(cpu);
|
||||
int spr = (ra | offset);
|
||||
int idx;
|
||||
|
||||
switch (spr) {
|
||||
|
@ -202,13 +200,12 @@ void HELPER(mtspr)(CPUOpenRISCState *env,
|
|||
#endif
|
||||
}
|
||||
|
||||
target_ulong HELPER(mfspr)(CPUOpenRISCState *env,
|
||||
target_ulong rd, target_ulong ra, uint32_t offset)
|
||||
target_ulong HELPER(mfspr)(CPUOpenRISCState *env, target_ulong rd,
|
||||
target_ulong spr)
|
||||
{
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
OpenRISCCPU *cpu = openrisc_env_get_cpu(env);
|
||||
CPUState *cs = CPU(cpu);
|
||||
int spr = (ra | offset);
|
||||
int idx;
|
||||
|
||||
switch (spr) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue