opcdec.isa (12236:126ac9da6050) opcdec.isa (12616:4b463b4dc098)
1// -*- mode:c++ -*-
2
3// Copyright (c) 2003-2005 The Regents of The University of Michigan
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

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

43 {
44 public:
45 /// Constructor
46 OpcdecFault(ExtMachInst _machInst)
47 : AlphaStaticInst("opcdec fault", _machInst, No_OpClass)
48 {
49 }
50
1// -*- mode:c++ -*-
2
3// Copyright (c) 2003-2005 The Regents of The University of Michigan
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

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

43 {
44 public:
45 /// Constructor
46 OpcdecFault(ExtMachInst _machInst)
47 : AlphaStaticInst("opcdec fault", _machInst, No_OpClass)
48 {
49 }
50
51 Fault execute(ExecContext *, Trace::InstRecord *) const;
51 Fault execute(ExecContext *, Trace::InstRecord *) const override;
52
52
53 std::string
54 generateDisassembly(Addr pc, const SymbolTable *symtab) const;
53 std::string generateDisassembly(
54 Addr pc, const SymbolTable *symtab) const override;
55 };
56}};
57
58output decoder {{
59 std::string
60 OpcdecFault::generateDisassembly(Addr pc, const SymbolTable *symtab) const
61 {
62 return csprintf("%-10s (inst 0x%x, opcode 0x%x)",

--- 16 unchanged lines hidden ---
55 };
56}};
57
58output decoder {{
59 std::string
60 OpcdecFault::generateDisassembly(Addr pc, const SymbolTable *symtab) const
61 {
62 return csprintf("%-10s (inst 0x%x, opcode 0x%x)",

--- 16 unchanged lines hidden ---