base.isa (12106:7784fac1b159) base.isa (12614:0bc465e1f5fb)
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

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

58 std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
59
60 public:
61 void
62 advancePC(MipsISA::PCState &pc) const
63 {
64 pc.advance();
65 }
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

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

58 std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
59
60 public:
61 void
62 advancePC(MipsISA::PCState &pc) const
63 {
64 pc.advance();
65 }
66
67 size_t
68 asBytes(void *buf, size_t max_size) override
69 {
70 return simpleAsBytes(buf, max_size, machInst);
71 }
66 };
67
68}};
69
70//Ouputs to decoder.cc
71output decoder {{
72
73 void MipsStaticInst::printReg(std::ostream &os, RegId reg) const

--- 45 unchanged lines hidden ---
72 };
73
74}};
75
76//Ouputs to decoder.cc
77output decoder {{
78
79 void MipsStaticInst::printReg(std::ostream &os, RegId reg) const

--- 45 unchanged lines hidden ---