558cc7f775
arch/alpha/types.hh: Moved the DependenceTags enum from types to constants. arch/sparc/faults.cc: arch/sparc/faults.hh: Corrected a misspelling of PriviledgeOpcode and PrivilegedAction. arch/sparc/isa/formats.isa: Fixups towards compiling. Added a few additional instruction formats. --HG-- extra : convert_revision : 4c5506877b71b8a5c8c45db41192cf759cdac374
46 lines
1 KiB
Text
46 lines
1 KiB
Text
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Unknown instructions
|
|
//
|
|
|
|
output header {{
|
|
/**
|
|
* Class for Unknown/Illegal instructions
|
|
*/
|
|
class Unknown : public SparcStaticInst
|
|
{
|
|
public:
|
|
|
|
// Constructor
|
|
Unknown(ExtMachInst _machInst) :
|
|
SparcStaticInst("unknown", _machInst, No_OpClass)
|
|
{
|
|
}
|
|
|
|
%(BasicExecDeclare)s
|
|
|
|
std::string generateDisassembly(Addr pc,
|
|
const SymbolTable *symtab) const;
|
|
|
|
};
|
|
}};
|
|
|
|
output decoder {{
|
|
std::string Unknown::generateDisassembly(Addr pc,
|
|
const SymbolTable *symtab) const
|
|
{
|
|
return "Unknown instruction\n";
|
|
}
|
|
}};
|
|
|
|
output exec {{
|
|
Fault Unknown::execute(%(CPU_exec_context)s *xc,
|
|
Trace::InstRecord *traceData) const
|
|
{
|
|
return new IllegalInstruction;
|
|
}
|
|
}};
|
|
|
|
def format Unknown() {{
|
|
decode_block = 'return new Unknown(machInst);\n'
|
|
}};
|