mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 06:01:23 +00:00
MIPS: math-emu: Use helpers to manipulate CAUSEF_BD flag.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
5a7ebbf893
commit
e7e9cae5db
2 changed files with 8 additions and 8 deletions
|
@ -933,17 +933,17 @@ static int cop1Emulate(struct pt_regs *xcp, struct mips_fpu_struct *ctx,
|
||||||
int pc_inc;
|
int pc_inc;
|
||||||
|
|
||||||
/* XXX NEC Vr54xx bug workaround */
|
/* XXX NEC Vr54xx bug workaround */
|
||||||
if (xcp->cp0_cause & CAUSEF_BD) {
|
if (delay_slot(xcp)) {
|
||||||
if (dec_insn.micro_mips_mode) {
|
if (dec_insn.micro_mips_mode) {
|
||||||
if (!mm_isBranchInstr(xcp, dec_insn, &contpc))
|
if (!mm_isBranchInstr(xcp, dec_insn, &contpc))
|
||||||
xcp->cp0_cause &= ~CAUSEF_BD;
|
clear_delay_slot(xcp);
|
||||||
} else {
|
} else {
|
||||||
if (!isBranchInstr(xcp, dec_insn, &contpc))
|
if (!isBranchInstr(xcp, dec_insn, &contpc))
|
||||||
xcp->cp0_cause &= ~CAUSEF_BD;
|
clear_delay_slot(xcp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (xcp->cp0_cause & CAUSEF_BD) {
|
if (delay_slot(xcp)) {
|
||||||
/*
|
/*
|
||||||
* The instruction to be emulated is in a branch delay slot
|
* The instruction to be emulated is in a branch delay slot
|
||||||
* which means that we have to emulate the branch instruction
|
* which means that we have to emulate the branch instruction
|
||||||
|
@ -1178,7 +1178,7 @@ static int cop1Emulate(struct pt_regs *xcp, struct mips_fpu_struct *ctx,
|
||||||
case bc_op:{
|
case bc_op:{
|
||||||
int likely = 0;
|
int likely = 0;
|
||||||
|
|
||||||
if (xcp->cp0_cause & CAUSEF_BD)
|
if (delay_slot(xcp))
|
||||||
return SIGILL;
|
return SIGILL;
|
||||||
|
|
||||||
#if __mips >= 4
|
#if __mips >= 4
|
||||||
|
@ -1201,7 +1201,7 @@ static int cop1Emulate(struct pt_regs *xcp, struct mips_fpu_struct *ctx,
|
||||||
return SIGILL;
|
return SIGILL;
|
||||||
}
|
}
|
||||||
|
|
||||||
xcp->cp0_cause |= CAUSEF_BD;
|
set_delay_slot(xcp);
|
||||||
if (cond) {
|
if (cond) {
|
||||||
/* branch taken: emulate dslot
|
/* branch taken: emulate dslot
|
||||||
* instruction
|
* instruction
|
||||||
|
@ -1321,7 +1321,7 @@ sigill:
|
||||||
|
|
||||||
/* we did it !! */
|
/* we did it !! */
|
||||||
xcp->cp0_epc = contpc;
|
xcp->cp0_epc = contpc;
|
||||||
xcp->cp0_cause &= ~CAUSEF_BD;
|
clear_delay_slot(xcp);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -59,7 +59,7 @@ int mips_dsemul(struct pt_regs *regs, mips_instruction ir, unsigned long cpc)
|
||||||
(ir == 0)) {
|
(ir == 0)) {
|
||||||
/* NOP is easy */
|
/* NOP is easy */
|
||||||
regs->cp0_epc = cpc;
|
regs->cp0_epc = cpc;
|
||||||
regs->cp0_cause &= ~CAUSEF_BD;
|
clear_delay_slot(regs);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#ifdef DSEMUL_TRACE
|
#ifdef DSEMUL_TRACE
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue