Deleted Added
sdiff udiff text old ( 12234:78ece221f9f5 ) new ( 12616:4b463b4dc098 )
full compact
1// -*- mode:c++ -*-
2
3// Copyright (c) 2007 MIPS Technologies, Inc.
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met: redistributions of source code must retain the above copyright

--- 32 unchanged lines hidden (view full) ---

41 {
42 protected:
43
44 /// Constructor
45 TlbOp(const char *mnem, MachInst _machInst, OpClass __opClass) : MipsStaticInst(mnem, _machInst, __opClass)
46 {
47 }
48
49 std::string generateDisassembly(
50 Addr pc, const SymbolTable *symtab) const override;
51 };
52}};
53
54output decoder {{
55 std::string TlbOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
56 {
57 return "Disassembly of integer instruction\n";
58 }

--- 24 unchanged lines hidden ---