1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * Copyright (c) 2007-2008 The Florida State University
5 * Copyright (c) 2009 The University of Edinburgh
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

141 int OffsetMask;
142
143 bool
144 Valid()
145 {
146 return (V0 | V1);
147 };
148
149 void serialize(std::ostream &os);
150
151 void unserialize(Checkpoint *cp, const std::string &section);
149 void serialize(CheckpointOut &cp) const;
150 void unserialize(CheckpointIn &cp);
151};
152
153} // namespace PowerISA
154
155#endif // __ARCH_POWER_PAGETABLE_H__
156