isa.hh (10698:829adc48e175) isa.hh (10905:a6ca6831e775)
1/*
2 * Copyright (c) 2009 The Regents of The University of Michigan
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;

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

92 }
93
94 int
95 flattenMiscIndex(int reg) const
96 {
97 return reg;
98 }
99
1/*
2 * Copyright (c) 2009 The Regents of The University of Michigan
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;

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

92 }
93
94 int
95 flattenMiscIndex(int reg) const
96 {
97 return reg;
98 }
99
100 void serialize(std::ostream &os);
101 void unserialize(Checkpoint *cp, const std::string &section);
100 void serialize(CheckpointOut &cp) const M5_ATTR_OVERRIDE;
101 void unserialize(CheckpointIn &cp) M5_ATTR_OVERRIDE;
102
102 void startup(ThreadContext *tc);
103
104 /// Explicitly import the otherwise hidden startup
105 using SimObject::startup;
106
107 };
108}
109
110#endif
103 void startup(ThreadContext *tc);
104
105 /// Explicitly import the otherwise hidden startup
106 using SimObject::startup;
107
108 };
109}
110
111#endif