2006-02-22 09:33:35 +01:00
|
|
|
// -*- mode:c++ -*-
|
|
|
|
|
2006-01-10 20:57:37 +01:00
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2006-02-03 09:38:27 +01:00
|
|
|
// Floating Point operate instructions
|
2006-01-10 20:57:37 +01:00
|
|
|
//
|
|
|
|
|
|
|
|
output header {{
|
|
|
|
/**
|
2006-02-22 09:33:35 +01:00
|
|
|
* Base class for FP operations.
|
2006-01-10 20:57:37 +01:00
|
|
|
*/
|
2006-02-03 09:38:27 +01:00
|
|
|
class FPOp : public MipsStaticInst
|
2006-01-10 20:57:37 +01:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
|
|
|
|
/// Constructor
|
2006-02-03 09:38:27 +01:00
|
|
|
FPOp(const char *mnem, MachInst _machInst, OpClass __opClass) : MipsStaticInst(mnem, _machInst, __opClass)
|
2006-01-10 20:57:37 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
|
|
|
|
};
|
|
|
|
}};
|
|
|
|
|
|
|
|
output decoder {{
|
2006-02-03 09:38:27 +01:00
|
|
|
std::string FPOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
|
2006-01-10 20:57:37 +01:00
|
|
|
{
|
|
|
|
return "Disassembly of integer instruction\n";
|
|
|
|
}
|
|
|
|
}};
|
|
|
|
|
|
|
|
|
2006-04-27 11:07:11 +02:00
|
|
|
// Primary format for float operate instructions:
|
2006-02-22 09:33:35 +01:00
|
|
|
def format FloatOp(code, *flags) {{
|
|
|
|
iop = InstObjParams(name, Name, 'MipsStaticInst', CodeBlock(code), flags)
|
2006-01-10 20:57:37 +01:00
|
|
|
header_output = BasicDeclare.subst(iop)
|
|
|
|
decoder_output = BasicConstructor.subst(iop)
|
2006-02-22 09:33:35 +01:00
|
|
|
decode_block = BasicDecode.subst(iop)
|
|
|
|
exec_output = BasicExecute.subst(iop)
|
2006-02-15 04:43:14 +01:00
|
|
|
}};
|
|
|
|
|
2006-04-27 11:07:11 +02:00
|
|
|
// Primary format for float64 operate instructions:
|
2006-02-22 09:33:35 +01:00
|
|
|
def format Float64Op(code, *flags) {{
|
|
|
|
iop = InstObjParams(name, Name, 'MipsStaticInst', CodeBlock(code), flags)
|
2006-01-10 20:57:37 +01:00
|
|
|
header_output = BasicDeclare.subst(iop)
|
|
|
|
decoder_output = BasicConstructor.subst(iop)
|
2006-02-22 09:33:35 +01:00
|
|
|
decode_block = BasicDecode.subst(iop)
|
|
|
|
exec_output = BasicExecute.subst(iop)
|
2006-01-10 20:57:37 +01:00
|
|
|
}};
|