2006-02-16 08:39:46 +01:00
|
|
|
// -*- mode:c++ -*-
|
|
|
|
|
2006-01-10 20:57:37 +01:00
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Integer operate instructions
|
|
|
|
//
|
|
|
|
|
2006-02-16 08:39:46 +01:00
|
|
|
//Outputs to decoder.hh
|
2006-01-10 20:57:37 +01:00
|
|
|
output header {{
|
2006-03-08 08:05:38 +01:00
|
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
2006-01-10 20:57:37 +01:00
|
|
|
/**
|
|
|
|
* 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-16 08:39:46 +01:00
|
|
|
IntOp(const char *mnem, MachInst _machInst, OpClass __opClass) :
|
2006-02-08 01:28:19 +01:00
|
|
|
MipsStaticInst(mnem, _machInst, __opClass)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class IntImmOp : public MipsStaticInst
|
|
|
|
{
|
|
|
|
protected:
|
2006-03-08 08:05:38 +01:00
|
|
|
|
|
|
|
int32_t imm;
|
2006-02-08 01:28:19 +01:00
|
|
|
|
|
|
|
/// Constructor
|
2006-02-16 08:39:46 +01:00
|
|
|
IntImmOp(const char *mnem, MachInst _machInst, OpClass __opClass) :
|
2006-02-08 01:28:19 +01:00
|
|
|
MipsStaticInst(mnem, _machInst, __opClass),imm(INTIMM)
|
2006-01-10 20:57:37 +01:00
|
|
|
{
|
2006-03-08 08:05:38 +01:00
|
|
|
//If Bit 15 is 1 then Sign Extend
|
|
|
|
int32_t temp = imm & 0x00008000;
|
|
|
|
|
|
|
|
if (temp > 0 && mnemonic != "lui") {
|
|
|
|
imm |= 0xFFFF0000;
|
|
|
|
}
|
2006-01-10 20:57:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
|
2006-03-08 08:05:38 +01:00
|
|
|
|
|
|
|
|
2006-01-10 20:57:37 +01:00
|
|
|
};
|
2006-02-04 05:04:06 +01:00
|
|
|
|
2006-01-10 20:57:37 +01:00
|
|
|
}};
|
|
|
|
|
2006-02-16 08:39:46 +01:00
|
|
|
//Outputs to decoder.cc
|
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
|
|
|
{
|
2006-03-08 08:05:38 +01:00
|
|
|
std::stringstream ss;
|
|
|
|
|
|
|
|
ccprintf(ss, "%-10s ", mnemonic);
|
|
|
|
|
|
|
|
// just print the first dest... if there's a second one,
|
|
|
|
// it's generally implicit
|
|
|
|
if (_numDestRegs > 0) {
|
|
|
|
printReg(ss, _destRegIdx[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
ss << ",";
|
|
|
|
|
|
|
|
// just print the first two source regs... if there's
|
|
|
|
// a third one, it's a read-modify-write dest (Rc),
|
|
|
|
// e.g. for CMOVxx
|
|
|
|
if (_numSrcRegs > 0) {
|
|
|
|
printReg(ss, _srcRegIdx[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_numSrcRegs > 1) {
|
|
|
|
ss << ",";
|
|
|
|
printReg(ss, _srcRegIdx[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ss.str();
|
2006-01-10 20:57:37 +01:00
|
|
|
}
|
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
|
|
|
{
|
2006-03-08 08:05:38 +01:00
|
|
|
std::stringstream ss;
|
|
|
|
|
|
|
|
ccprintf(ss, "%-10s ", mnemonic);
|
|
|
|
|
|
|
|
if (_numDestRegs > 0) {
|
|
|
|
printReg(ss, _destRegIdx[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
ss << ",";
|
|
|
|
|
|
|
|
if (_numSrcRegs > 0) {
|
|
|
|
printReg(ss, _srcRegIdx[0]);
|
|
|
|
ss << ",";
|
|
|
|
}
|
|
|
|
|
|
|
|
if( mnemonic == "lui")
|
|
|
|
ccprintf(ss, "%08p ", imm);
|
|
|
|
else
|
|
|
|
ss << (int) imm;
|
|
|
|
|
|
|
|
return ss.str();
|
2006-02-04 05:04:06 +01:00
|
|
|
}
|
2006-01-10 20:57:37 +01:00
|
|
|
|
2006-03-08 08:05:38 +01:00
|
|
|
}};
|
2006-02-16 08:39:46 +01:00
|
|
|
|
|
|
|
//Used by decoder.isa
|
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
|
|
|
|
2006-02-15 03:26:01 +01:00
|
|
|
# Figure out if we are creating a IntImmOp or a IntOp
|
2006-02-16 08:39:46 +01:00
|
|
|
# by looking at the instruction name
|
|
|
|
iop = InstObjParams(name, Name, 'IntOp', cblk, opt_flags)
|
2006-02-08 01:28:19 +01:00
|
|
|
strlen = len(name)
|
2006-02-15 03:26:01 +01:00
|
|
|
if name[strlen-1] == 'i' or name[strlen-2:] == 'iu':
|
2006-02-16 08:39:46 +01:00
|
|
|
iop = InstObjParams(name, Name, 'IntImmOp', cblk, opt_flags)
|
2006-02-08 01:28:19 +01:00
|
|
|
|
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
|
|
|
|
|
|
|
|