isa.hh (10698:829adc48e175) isa.hh (10905:a6ca6831e775)
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;

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

87 fpcr = 0;
88 uniq = 0;
89 lock_flag = 0;
90 lock_addr = 0;
91 intr_flag = 0;
92 memset(ipr, 0, sizeof(ipr));
93 }
94
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;

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

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

--- 30 unchanged lines hidden ---
97
98 int
99 flattenIntIndex(int reg) const
100 {
101 return reg;
102 }
103
104 int

--- 30 unchanged lines hidden ---