gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
isa_traits.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010, 2012 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2003-2005 The Regents of The University of Michigan
15  * Copyright (c) 2007-2008 The Florida State University
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  *
41  * Authors: Gabe Black
42  * Stephen Hines
43  */
44 
45 #ifndef __ARCH_ARM_ISA_TRAITS_HH__
46 #define __ARCH_ARM_ISA_TRAITS_HH__
47 
48 #include "arch/arm/types.hh"
49 #include "base/types.hh"
50 #include "cpu/static_inst_fwd.hh"
51 
52 namespace ArmISA
53 {
55 
57 
58  const Addr PageShift = 12;
59  const Addr PageBytes = ULL(1) << PageShift;
60  const Addr Page_Mask = ~(PageBytes - 1);
61  const Addr PageOffset = PageBytes - 1;
62 
63 
65  //
66  // Translation stuff
67  //
68 
69  const Addr PteShift = 3;
70  const Addr NPtePageShift = PageShift - PteShift;
71  const Addr NPtePage = ULL(1) << NPtePageShift;
72  const Addr PteMask = NPtePage - 1;
73 
77  // User Segment - Mapped
78  const Addr USegBase = ULL(0x0);
79  const Addr USegEnd = ULL(0x7FFFFFFF);
80 
81  const unsigned VABits = 32;
82  const unsigned PABits = 32; // Is this correct?
83  const Addr VAddrImplMask = (ULL(1) << VABits) - 1;
84  const Addr VAddrUnImplMask = ~VAddrImplMask;
85  inline Addr VAddrImpl(Addr a) { return a & VAddrImplMask; }
86  inline Addr VAddrVPN(Addr a) { return a >> ArmISA::PageShift; }
87  inline Addr VAddrOffset(Addr a) { return a & ArmISA::PageOffset; }
88 
89  const Addr PAddrImplMask = (ULL(1) << PABits) - 1;
90 
91  // Max. physical address range in bits supported by the architecture
92  const unsigned MaxPhysAddrRange = 48;
93 
94  const int MachineBytes = 4;
95 
96  const uint32_t HighVecs = 0xFFFF0000;
97 
98  // Memory accesses cannot be unaligned
99  const bool HasUnalignedMemAcc = true;
100 
101  const bool CurThreadInfoImplemented = false;
102  const int CurThreadInfoReg = -1;
103 
105  {
110  INT_SEV, // Special interrupt for recieving SEV's
114  };
115 } // namespace ArmISA
116 
117 using namespace ArmISA;
118 
119 #endif // __ARCH_ARM_ISA_TRAITS_HH__
Addr VAddrVPN(Addr a)
Definition: isa_traits.hh:86
const bool CurThreadInfoImplemented
Definition: isa_traits.hh:101
const unsigned VABits
Definition: isa_traits.hh:81
const Addr PageShift
Definition: isa_traits.hh:58
Bitfield< 8 > a
const Addr USegEnd
Definition: isa_traits.hh:79
StaticInstPtr decodeInst(ExtMachInst)
Definition: ccregs.hh:42
const int CurThreadInfoReg
Definition: isa_traits.hh:102
InterruptTypes
Definition: isa_traits.hh:104
const Addr PteShift
Definition: isa_traits.hh:69
const Addr PageOffset
Definition: isa_traits.hh:61
const Addr USegBase
Definition: isa_traits.hh:78
const Addr Page_Mask
Definition: isa_traits.hh:60
const Addr PAddrImplMask
Definition: isa_traits.hh:89
Addr VAddrImpl(Addr a)
Definition: isa_traits.hh:85
const Addr VAddrImplMask
Definition: isa_traits.hh:83
const Addr PteMask
Definition: isa_traits.hh:72
ByteOrder
Definition: types.hh:247
Addr VAddrOffset(Addr a)
Definition: isa_traits.hh:87
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
const Addr NPtePageShift
Definition: isa_traits.hh:70
#define ULL(N)
uint64_t constant
Definition: types.hh:50
const Addr NPtePage
Definition: isa_traits.hh:71
const bool HasUnalignedMemAcc
Definition: isa_traits.hh:99
const unsigned MaxPhysAddrRange
Definition: isa_traits.hh:92
const unsigned PABits
Definition: isa_traits.hh:82
const uint32_t HighVecs
Definition: isa_traits.hh:96
const Addr PageBytes
Definition: isa_traits.hh:59
const Addr VAddrUnImplMask
Definition: isa_traits.hh:84
const ByteOrder GuestByteOrder
Definition: isa_traits.hh:54
const int MachineBytes
Definition: isa_traits.hh:94

Generated on Fri Feb 28 2020 16:26:56 for gem5 by doxygen 1.8.13