Merge zizzer:/bk/newmem

into  pb15.local:/Users/ali/work/m5.newmem

--HG--
extra : convert_revision : e0057583132ce545eb1867b446484e8984b97282
This commit is contained in:
Ali Saidi 2007-02-22 01:15:16 -05:00
commit b750d6a597

View file

@ -1009,6 +1009,7 @@ decode OP default Unknown::unknown()
0x80: Trap::shutdown({{fault = new IllegalInstruction;}});
0x81: FailUnimpl::siam();
}
#if FULL_SYSTEM
// M5 special opcodes use the reserved IMPDEP2A opcode space
0x37: decode M5FUNC {
// we have 7 bits of space here to play with...
@ -1019,6 +1020,9 @@ decode OP default Unknown::unknown()
}}, No_OpClass, IsNonSpeculative);
}
#else
0x37: Trap::impdep2({{fault = new IllegalInstruction;}});
#endif
0x38: Branch::jmpl({{
Addr target = Rs1 + Rs2_or_imm13;
if(target & 0x3)