2006-01-10 20:57:37 +01:00
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Integer operate instructions
|
|
|
|
//
|
|
|
|
|
|
|
|
output header {{
|
|
|
|
/**
|
|
|
|
* Base class for integer operations.
|
|
|
|
*/
|
2006-02-04 05:04:06 +01:00
|
|
|
class IntOp : public MipsStaticInst
|
2006-01-10 20:57:37 +01:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
|
|
|
|
/// Constructor
|
2006-02-08 01:28:19 +01:00
|
|
|
IntegerOp(const char *mnem, MachInst _machInst, OpClass __opClass) :
|
|
|
|
MipsStaticInst(mnem, _machInst, __opClass)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class IntImmOp : public MipsStaticInst
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
uint16_t imm;
|
|
|
|
|
|
|
|
/// Constructor
|
|
|
|
IntegerOp(const char *mnem, MachInst _machInst, OpClass __opClass) :
|
|
|
|
MipsStaticInst(mnem, _machInst, __opClass),imm(INTIMM)
|
2006-01-10 20:57:37 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
|
|
|
|
};
|
2006-02-04 05:04:06 +01:00
|
|
|
|
2006-01-10 20:57:37 +01:00
|
|
|
}};
|
|
|
|
|
|
|
|
output decoder {{
|
2006-02-04 05:04:06 +01:00
|
|
|
std::string IntOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
|
2006-01-10 20:57:37 +01:00
|
|
|
{
|
|
|
|
return "Disassembly of integer instruction\n";
|
|
|
|
}
|
2006-02-04 05:04:06 +01:00
|
|
|
|
2006-02-08 00:36:08 +01:00
|
|
|
std::string IntImmOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
|
2006-02-04 05:04:06 +01:00
|
|
|
{
|
|
|
|
return "Disassembly of integer immediate instruction\n";
|
|
|
|
}
|
2006-01-10 20:57:37 +01:00
|
|
|
}};
|
|
|
|
|
|
|
|
// Primary format for integer operate instructions:
|
2006-02-08 00:36:08 +01:00
|
|
|
def format IntOp(code, *opt_flags) {{
|
2006-01-10 20:57:37 +01:00
|
|
|
orig_code = code
|
|
|
|
cblk = CodeBlock(code)
|
2006-02-08 01:28:19 +01:00
|
|
|
|
|
|
|
//Figure out if we are creating a IntImmOp or a IntOp
|
|
|
|
strlen = len(name)
|
|
|
|
if ( name[strlen-1] = 'i' or ( name[strlen-2:] = 'iu'))
|
|
|
|
iop = InstObjParams(name, Name, 'IntOp', cblk, opt_flags)
|
|
|
|
else:
|
|
|
|
iop = InstObjParams(name, Name, 'IntImmOp', cblk, opt_flags)
|
|
|
|
|
2006-01-10 20:57:37 +01:00
|
|
|
header_output = BasicDeclare.subst(iop)
|
|
|
|
decoder_output = BasicConstructor.subst(iop)
|
2006-02-08 01:28:19 +01:00
|
|
|
decode_block = OperateNopCheckDecode.subst(iop)
|
|
|
|
exec_output = BasicExecute.subst(iop)
|
2006-01-10 20:57:37 +01:00
|
|
|
}};
|
|
|
|
|
2006-02-08 01:28:19 +01:00
|
|
|
|
|
|
|
|