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;

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

83 fpcr = 0;
84 uniq = 0;
85 lock_flag = 0;
86 lock_addr = 0;
87 intr_flag = 0;
88 memset(ipr, 0, sizeof(ipr));
89 }
90
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;

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

83 fpcr = 0;
84 uniq = 0;
85 lock_flag = 0;
86 lock_addr = 0;
87 intr_flag = 0;
88 memset(ipr, 0, sizeof(ipr));
89 }
90
91 void serialize(EventManager *em, std::ostream &os);
92 void unserialize(EventManager *em, Checkpoint *cp,
93 const std::string &section);
91 void serialize(std::ostream &os);
92 void unserialize(Checkpoint *cp, const std::string &section);
94
95 int
96 flattenIntIndex(int reg)
97 {
98 return reg;
99 }
100
101 int

--- 12 unchanged lines hidden ---
93
94 int
95 flattenIntIndex(int reg)
96 {
97 return reg;
98 }
99
100 int

--- 12 unchanged lines hidden ---