Deleted Added
sdiff udiff text old ( 3454:26850ac19a39 ) new ( 3457:7479ebe49444 )
full compact
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;

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

29 * Gabe Black
30 */
31
32#ifndef __ARCH_ALPHA_ISA_TRAITS_HH__
33#define __ARCH_ALPHA_ISA_TRAITS_HH__
34
35namespace LittleEndianGuest {}
36
37#include "arch/alpha/ipr.hh"
38#include "arch/alpha/types.hh"
39#include "config/full_system.hh"
40#include "sim/host.hh"
41
42class StaticInstPtr;
43
44namespace AlphaISA
45{

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

128 mode_executive = 1, // executive (unused by unix)
129 mode_supervisor = 2, // supervisor (unused by unix)
130 mode_user = 3, // user mode
131 mode_number // number of modes
132 };
133
134#endif
135
136 // Constants Related to the number of registers
137
138 const int NumIntArchRegs = 32;
139 const int NumPALShadowRegs = 8;
140 const int NumFloatArchRegs = 32;
141 // @todo: Figure out what this number really should be.
142 const int NumMiscArchRegs = 32;
143

--- 52 unchanged lines hidden ---