malta.hh (8741:491297d019f3) malta.hh (10905:a6ca6831e775)
1/*
2 * Copyright (c) 2004-2005 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;

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

130
131 Addr
132 calcPciMemAddr(Addr addr)
133 {
134 panic("Need implementation\n");
135 M5_DUMMY_RETURN
136 }
137
1/*
2 * Copyright (c) 2004-2005 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;

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

130
131 Addr
132 calcPciMemAddr(Addr addr)
133 {
134 panic("Need implementation\n");
135 M5_DUMMY_RETURN
136 }
137
138 /**
139 * Serialize this object to the given output stream.
140 * @param os The stream to serialize to.
141 */
142 virtual void serialize(std::ostream &os);
143
144 /**
145 * Reconstruct the state of this object from a checkpoint.
146 * @param cp The checkpoint use.
147 * @param section The section name of this object
148 */
149 virtual void unserialize(Checkpoint *cp, const std::string &section);
138 void serialize(CheckpointOut &cp) const M5_ATTR_OVERRIDE;
139 void unserialize(CheckpointIn &cp) M5_ATTR_OVERRIDE;
150};
151
152#endif // __DEV_MALTA_HH__
140};
141
142#endif // __DEV_MALTA_HH__