misc.hh (7811:a8fc35183c10) misc.hh (12616:4b463b4dc098)
1/*
2 * Copyright (c) 2009 The University of Edinburgh
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

44 protected:
45
46 /// Constructor
47 MiscOp(const char *mnem, MachInst _machInst, OpClass __opClass)
48 : PowerStaticInst(mnem, _machInst, __opClass)
49 {
50 }
51
1/*
2 * Copyright (c) 2009 The University of Edinburgh
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

44 protected:
45
46 /// Constructor
47 MiscOp(const char *mnem, MachInst _machInst, OpClass __opClass)
48 : PowerStaticInst(mnem, _machInst, __opClass)
49 {
50 }
51
52 std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
52 std::string generateDisassembly(
53 Addr pc, const SymbolTable *symtab) const override;
53};
54
55} // namespace PowerISA
56
57#endif //__ARCH_POWER_INSTS_MISC_HH__
54};
55
56} // namespace PowerISA
57
58#endif //__ARCH_POWER_INSTS_MISC_HH__