Clean up indentation in isa_desc.
arch/alpha/isa_desc: Little bit of re-ordering and indentation clean-up. --HG-- extra : convert_revision : e538ff89d8b507c3e1aa68a032578fcaa645d7ee
This commit is contained in:
parent
d60de7122d
commit
310f608757
1 changed files with 26 additions and 27 deletions
|
@ -2660,6 +2660,28 @@ decode OPCODE default Unknown::unknown() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
format HwMoveIPR {
|
||||||
|
0x19: hw_mfpr({{
|
||||||
|
// this instruction is only valid in PAL mode
|
||||||
|
if (!xc->inPalMode()) {
|
||||||
|
fault = Unimplemented_Opcode_Fault;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
Ra = xc->readIpr(ipr_index, fault);
|
||||||
|
}
|
||||||
|
}});
|
||||||
|
0x1d: hw_mtpr({{
|
||||||
|
// this instruction is only valid in PAL mode
|
||||||
|
if (!xc->inPalMode()) {
|
||||||
|
fault = Unimplemented_Opcode_Fault;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
xc->setIpr(ipr_index, Ra);
|
||||||
|
if (traceData) { traceData->setData(Ra); }
|
||||||
|
}
|
||||||
|
}});
|
||||||
|
}
|
||||||
|
|
||||||
format BasicOperate {
|
format BasicOperate {
|
||||||
0x1e: hw_rei({{ xc->hwrei(); }}, IsSerializing);
|
0x1e: hw_rei({{ xc->hwrei(); }}, IsSerializing);
|
||||||
|
|
||||||
|
@ -2700,35 +2722,12 @@ decode OPCODE default Unknown::unknown() {
|
||||||
AlphaPseudo::readfile(xc->xcBase());
|
AlphaPseudo::readfile(xc->xcBase());
|
||||||
}}, IsNonSpeculative);
|
}}, IsNonSpeculative);
|
||||||
0x51: m5break({{
|
0x51: m5break({{
|
||||||
AlphaPseudo::debugbreak(xc->xcBase());
|
AlphaPseudo::debugbreak(xc->xcBase());
|
||||||
}}, IsNonSpeculative);
|
}}, IsNonSpeculative);
|
||||||
0x52: m5switchcpu({{
|
0x52: m5switchcpu({{
|
||||||
AlphaPseudo::switchcpu(xc->xcBase());
|
AlphaPseudo::switchcpu(xc->xcBase());
|
||||||
}}, IsNonSpeculative);
|
}}, IsNonSpeculative);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
format HwMoveIPR {
|
|
||||||
0x19: hw_mfpr({{
|
|
||||||
// this instruction is only valid in PAL mode
|
|
||||||
if (!xc->inPalMode()) {
|
|
||||||
fault = Unimplemented_Opcode_Fault;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Ra = xc->readIpr(ipr_index, fault);
|
|
||||||
}
|
|
||||||
}});
|
|
||||||
0x1d: hw_mtpr({{
|
|
||||||
// this instruction is only valid in PAL mode
|
|
||||||
if (!xc->inPalMode()) {
|
|
||||||
fault = Unimplemented_Opcode_Fault;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
xc->setIpr(ipr_index, Ra);
|
|
||||||
if (traceData) { traceData->setData(Ra); }
|
|
||||||
}
|
|
||||||
}});
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue