isa_traits.hh (3437:96977e433be6) isa_traits.hh (3601:03ab8cb8e64b)
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;

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

71 const int NumFloatRegs = 64;
72 const int NumMiscRegs = 40;
73
74 // These enumerate all the registers for dependence tracking.
75 enum DependenceTags {
76 // 0..31 are the integer regs 0..31
77 // 32..95 are the FP regs 0..31, i.e. use (reg + FP_Base_DepTag)
78 FP_Base_DepTag = NumIntRegs,
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;

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

71 const int NumFloatRegs = 64;
72 const int NumMiscRegs = 40;
73
74 // These enumerate all the registers for dependence tracking.
75 enum DependenceTags {
76 // 0..31 are the integer regs 0..31
77 // 32..95 are the FP regs 0..31, i.e. use (reg + FP_Base_DepTag)
78 FP_Base_DepTag = NumIntRegs,
79 Ctrl_Base_DepTag = NumIntRegs + NumFloatRegs,
80 //XXX These are here solely to get compilation and won't work
81 Fpcr_DepTag = 0,
82 Uniq_DepTag = 0
79 Ctrl_Base_DepTag = NumIntRegs + NumMicroIntRegs + NumFloatRegs,
83 };
84
85
86 // MAXTL - maximum trap level
87 const int MaxPTL = 2;
88 const int MaxTL = 6;
89 const int MaxGL = 3;
90 const int MaxPGL = 2;

--- 51 unchanged lines hidden ---
80 };
81
82
83 // MAXTL - maximum trap level
84 const int MaxPTL = 2;
85 const int MaxTL = 6;
86 const int MaxGL = 3;
87 const int MaxPGL = 2;

--- 51 unchanged lines hidden ---