isa.hh (9384:877293183bdf) isa.hh (9425:a24092160ec7)
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;

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

80 {
81 if (reg >= NUM_FLOATREGS) {
82 reg = FLOATREG_STACK(reg - NUM_FLOATREGS,
83 regVal[MISCREG_X87_TOP]);
84 }
85 return reg;
86 }
87
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;

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

80 {
81 if (reg >= NUM_FLOATREGS) {
82 reg = FLOATREG_STACK(reg - NUM_FLOATREGS,
83 regVal[MISCREG_X87_TOP]);
84 }
85 return reg;
86 }
87
88 void serialize(EventManager *em, std::ostream &os);
89 void unserialize(EventManager *em, Checkpoint *cp,
90 const std::string &section);
88 void serialize(std::ostream &os);
89 void unserialize(Checkpoint *cp, const std::string &section);
91 };
92}
93
94#endif
90 };
91}
92
93#endif