28,29d27
< //
< // Authors: Korey Sewell
31,35d28
< ////////////////////////////////////////////////////////////////////
< //
< // Unimplemented instructions
< //
<
106,108d98
< #ifdef SS_COMPATIBLE_DISASSEMBLY
< return csprintf("%-10s", mnemonic);
< #else
110d99
< #endif
130c119
< warn("instruction '%s' unimplemented\n", mnemonic);
---
> warn("\tinstruction '%s' unimplemented\n", mnemonic);
149,173d137
< output header {{
< /**
< * Static instruction class for unknown (illegal) instructions.
< * These cause simulator termination if they are executed in a
< * non-speculative mode. This is a leaf class.
< */
< class Unknown : public MipsStaticInst
< {
< public:
< /// Constructor
< Unknown(MachInst _machInst)
< : MipsStaticInst("unknown", _machInst, No_OpClass)
< {
< // don't call execute() (which panics) if we're on a
< // speculative path
< flags[IsNonSpeculative] = true;
< }
<
< %(BasicExecDeclare)s
<
< std::string
< generateDisassembly(Addr pc, const SymbolTable *symtab) const;
< };
< }};
<