registers.hh (6329:5d8b91875859) registers.hh (7649:a6a6177a5ffa)
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;

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

96
97const int TotalDataRegs = NumIntRegs + NumFloatRegs;
98
99// These enumerate all the registers for dependence tracking.
100enum DependenceTags {
101 // 0..31 are the integer regs 0..31
102 // 32..63 are the FP regs 0..31, i.e. use (reg + FP_Base_DepTag)
103 FP_Base_DepTag = 40,
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;

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

96
97const int TotalDataRegs = NumIntRegs + NumFloatRegs;
98
99// These enumerate all the registers for dependence tracking.
100enum DependenceTags {
101 // 0..31 are the integer regs 0..31
102 // 32..63 are the FP regs 0..31, i.e. use (reg + FP_Base_DepTag)
103 FP_Base_DepTag = 40,
104 Ctrl_Base_DepTag = 72
104 Ctrl_Base_DepTag = 72,
105 Max_DepTag = Ctrl_Base_DepTag + NumMiscRegs + NumInternalProcRegs
105};
106
107} // namespace AlphaISA
108
109#endif // __ARCH_ALPHA_REGFILE_HH__
106};
107
108} // namespace AlphaISA
109
110#endif // __ARCH_ALPHA_REGFILE_HH__