isa.hh (6401:4e9d4c206930) isa.hh (6678:34191eea18c1)
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;

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

90 }
91
92 int
93 flattenFloatIndex(int reg)
94 {
95 return reg;
96 }
97
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;

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

90 }
91
92 int
93 flattenFloatIndex(int reg)
94 {
95 return reg;
96 }
97
98 void serialize(std::ostream &os)
98 void serialize(EventManager *em, std::ostream &os)
99 {}
99 {}
100 void unserialize(Checkpoint *cp, const std::string &section)
100 void unserialize(EventManager *em, Checkpoint *cp,
101 const std::string &section)
101 {}
102
103 ISA()
104 {
105 clear();
106 }
107 };
108}
109
110#endif
102 {}
103
104 ISA()
105 {
106 clear();
107 }
108 };
109}
110
111#endif