tlbop.isa revision 2632:1bb2f91485ea
1////////////////////////////////////////////////////////////////////
2//
3// TlbOp instructions
4//
5
6output header {{
7        /**
8         * Base class for integer operations.
9         */
10        class TlbOp : public MipsStaticInst
11        {
12                protected:
13
14                /// Constructor
15                TlbOp(const char *mnem, MachInst _machInst, OpClass __opClass) : MipsStaticInst(mnem, _machInst, __opClass)
16                {
17                }
18
19                std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
20        };
21}};
22
23output decoder {{
24        std::string TlbOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
25        {
26                return "Disassembly of integer instruction\n";
27        }
28}};
29
30def template TlbOpExecute {{
31        Fault %(class_name)s::execute(%(CPU_exec_context)s *xc, Trace::InstRecord *traceData) const
32        {
33                //Call into the trap handler with the appropriate fault
34                return No_Fault;
35        }
36
37                //Write the resulting state to the execution context
38                %(op_wb)s;
39
40                return No_Fault;
41        }
42}};
43
44// Primary format for integer operate instructions:
45def format TlbOp(code, *opt_flags) {{
46        orig_code = code
47        cblk = CodeBlock(code)
48        iop = InstObjParams(name, Name, 'MipsStaticInst', cblk, opt_flags)
49        header_output = BasicDeclare.subst(iop)
50        decoder_output = BasicConstructor.subst(iop)
51        decode_block = BasicDecodeWithMnemonic.subst(iop)
52        exec_output = TlbOpExecute.subst(iop)
53}};
54