isa_traits.hh (3591:5c36532efd3c) isa_traits.hh (3964:3a843f30940e)
1/*
2 * Copyright (c) 2003-2005 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;

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

127#endif
128
129 // Constants Related to the number of registers
130
131 const int NumIntArchRegs = 32;
132 const int NumPALShadowRegs = 8;
133 const int NumFloatArchRegs = 32;
134 // @todo: Figure out what this number really should be.
1/*
2 * Copyright (c) 2003-2005 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;

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

127#endif
128
129 // Constants Related to the number of registers
130
131 const int NumIntArchRegs = 32;
132 const int NumPALShadowRegs = 8;
133 const int NumFloatArchRegs = 32;
134 // @todo: Figure out what this number really should be.
135 const int NumMiscArchRegs = 32;
135 const int NumMiscArchRegs = 77;
136
137 const int NumIntRegs = NumIntArchRegs + NumPALShadowRegs;
138 const int NumFloatRegs = NumFloatArchRegs;
139 const int NumMiscRegs = NumMiscArchRegs;
140
141 const int TotalNumRegs = NumIntRegs + NumFloatRegs +
142 NumMiscRegs + NumInternalProcRegs;
143

--- 42 unchanged lines hidden ---
136
137 const int NumIntRegs = NumIntArchRegs + NumPALShadowRegs;
138 const int NumFloatRegs = NumFloatArchRegs;
139 const int NumMiscRegs = NumMiscArchRegs;
140
141 const int TotalNumRegs = NumIntRegs + NumFloatRegs +
142 NumMiscRegs + NumInternalProcRegs;
143

--- 42 unchanged lines hidden ---