diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/alpha/faults.hh | 1 | ||||
-rw-r--r-- | arch/alpha/isa_traits.hh | 4 | ||||
-rwxr-xr-x | arch/isa_parser.py | 3 |
3 files changed, 8 insertions, 0 deletions
diff --git a/arch/alpha/faults.hh b/arch/alpha/faults.hh index 45ac122dc..a49a1c4f0 100644 --- a/arch/alpha/faults.hh +++ b/arch/alpha/faults.hh @@ -47,6 +47,7 @@ enum Fault { Fen_Fault, // FP not-enabled fault Pal_Fault, // call_pal S/W interrupt Integer_Overflow_Fault, + Fake_Mem_Fault, Num_Faults // number of faults }; diff --git a/arch/alpha/isa_traits.hh b/arch/alpha/isa_traits.hh index 9327fa88b..9c7709a60 100644 --- a/arch/alpha/isa_traits.hh +++ b/arch/alpha/isa_traits.hh @@ -148,6 +148,10 @@ static const Addr PageOffset = PageBytes - 1; NumIntRegs + NumFloatRegs + NumMiscRegs + NumInternalProcRegs }; + enum { + TotalDataRegs = NumIntRegs + NumFloatRegs + }; + typedef union { IntReg intreg; FloatReg fpreg; diff --git a/arch/isa_parser.py b/arch/isa_parser.py index 18e4b0a45..8187cf188 100755 --- a/arch/isa_parser.py +++ b/arch/isa_parser.py @@ -639,6 +639,9 @@ CpuModel('FastCPU', 'fast_cpu_exec.cc', CpuModel('FullCPU', 'full_cpu_exec.cc', '#include "cpu/full_cpu/dyn_inst.hh"', { 'CPU_exec_context': 'DynInst' }) +CpuModel('AlphaFullCPU', 'alpha_full_cpu_exec.cc', + '#include "cpu/beta_cpu/alpha_dyn_inst.hh"', + { 'CPU_exec_context': 'AlphaDynInst<AlphaSimpleImpl>' }) # Expand template with CPU-specific references into a dictionary with # an entry for each CPU model name. The entry key is the model name |