isa_traits.hh (3414:b57e400b2933) isa_traits.hh (3421:d984945e5869)
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;

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

81
82 // MAXTL - maximum trap level
83 const int MaxPTL = 2;
84 const int MaxTL = 6;
85 const int MaxGL = 3;
86 const int MaxPGL = 2;
87
88 // NWINDOWS - number of register windows, can be 3 to 32
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;

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

81
82 // MAXTL - maximum trap level
83 const int MaxPTL = 2;
84 const int MaxTL = 6;
85 const int MaxGL = 3;
86 const int MaxPGL = 2;
87
88 // NWINDOWS - number of register windows, can be 3 to 32
89 const int NWindows = 32;
89 const int NWindows = 8;
90
91 // semantically meaningful register indices
92 const int ZeroReg = 0; // architecturally meaningful
93 // the rest of these depend on the ABI
94 const int StackPointerReg = 14;
95 const int ReturnAddressReg = 31; // post call, precall is 15
96 const int ReturnValueReg = 8; // Post return, 24 is pre-return.
97 const int FramePointerReg = 30;

--- 40 unchanged lines hidden ---
90
91 // semantically meaningful register indices
92 const int ZeroReg = 0; // architecturally meaningful
93 // the rest of these depend on the ABI
94 const int StackPointerReg = 14;
95 const int ReturnAddressReg = 31; // post call, precall is 15
96 const int ReturnValueReg = 8; // Post return, 24 is pre-return.
97 const int FramePointerReg = 30;

--- 40 unchanged lines hidden ---