gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
isa_traits.hh
Go to the documentation of this file.
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;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * Authors: Steve Reinhardt
29  * Gabe Black
30  */
31 
32 #ifndef __ARCH_ALPHA_ISA_TRAITS_HH__
33 #define __ARCH_ALPHA_ISA_TRAITS_HH__
34 
35 namespace LittleEndianGuest {}
36 
37 #include "arch/alpha/ipr.hh"
38 #include "arch/alpha/types.hh"
39 #include "base/types.hh"
40 #include "cpu/static_inst_fwd.hh"
41 
42 namespace AlphaISA {
43 
44 using namespace LittleEndianGuest;
45 
47 
48 // Alpha Does NOT have a delay slot
49 #define ISA_HAS_DELAY_SLOT 0
50 
51 const Addr PageShift = 13;
52 const Addr PageBytes = ULL(1) << PageShift;
53 const Addr PageMask = ~(PageBytes - 1);
55 
57 //
58 // Translation stuff
59 //
60 
61 const Addr PteShift = 3;
64 const Addr PteMask = NPtePage - 1;
65 
66 // User Virtual
67 const Addr USegBase = ULL(0x0);
68 const Addr USegEnd = ULL(0x000003ffffffffff);
69 
70 // Kernel Direct Mapped
71 const Addr K0SegBase = ULL(0xfffffc0000000000);
72 const Addr K0SegEnd = ULL(0xfffffdffffffffff);
73 
74 // Kernel Virtual
75 const Addr K1SegBase = ULL(0xfffffe0000000000);
76 const Addr K1SegEnd = ULL(0xffffffffffffffff);
77 
79 //
80 // Interrupt levels
81 //
83 {
86 
89 
96 
98 
100 };
101 
102 // EV5 modes
104 {
105  mode_kernel = 0, // kernel
106  mode_executive = 1, // executive (unused by unix)
107  mode_supervisor = 2, // supervisor (unused by unix)
108  mode_user = 3, // user mode
109  mode_number // number of modes
110 };
111 
112 const int MachineBytes = 8;
113 
114 // return a no-op instruction... used for instruction fetch faults
115 // Alpha UNOP (ldq_u r31,0(r0))
116 const ExtMachInst NoopMachInst = 0x2ffe0000;
117 
118 // Memory accesses cannot be unaligned
119 const bool HasUnalignedMemAcc = false;
120 
121 const bool CurThreadInfoImplemented = true;
123 
124 } // namespace AlphaISA
125 
126 #endif // __ARCH_ALPHA_ISA_TRAITS_HH__
const Addr K1SegEnd
Definition: isa_traits.hh:76
const Addr USegBase
Definition: isa_traits.hh:67
const Addr NPtePage
Definition: isa_traits.hh:63
const Addr K1SegBase
Definition: isa_traits.hh:75
const Addr PageShift
Definition: isa_traits.hh:51
const Addr USegEnd
Definition: isa_traits.hh:68
StaticInstPtr decodeInst(ExtMachInst)
const bool CurThreadInfoImplemented
Definition: isa_traits.hh:121
const bool HasUnalignedMemAcc
Definition: isa_traits.hh:119
const Addr PageOffset
Definition: isa_traits.hh:54
const Addr PteShift
Definition: isa_traits.hh:61
const Addr K0SegEnd
Definition: isa_traits.hh:72
const Addr NPtePageShift
Definition: isa_traits.hh:62
const Addr PageMask
Definition: isa_traits.hh:53
const ExtMachInst NoopMachInst
Definition: isa_traits.hh:116
const Addr PteMask
Definition: isa_traits.hh:64
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
uint64_t ExtMachInst
Definition: types.hh:41
#define ULL(N)
uint64_t constant
Definition: types.hh:50
const Addr PageBytes
Definition: isa_traits.hh:52
const int MachineBytes
Definition: isa_traits.hh:112
const int CurThreadInfoReg
Definition: isa_traits.hh:122
const Addr K0SegBase
Definition: isa_traits.hh:71

Generated on Fri Jun 9 2017 13:03:35 for gem5 by doxygen 1.8.6