isa_traits.hh revision 7158:195780d97b1b
16657Snate@binkert.org/*
26657Snate@binkert.org * Copyright (c) 2010 ARM Limited
36657Snate@binkert.org * All rights reserved
46657Snate@binkert.org *
56657Snate@binkert.org * The license below extends only to copyright in the software and shall
66657Snate@binkert.org * not be construed as granting a license to any other intellectual
76657Snate@binkert.org * property including but not limited to intellectual property relating
86657Snate@binkert.org * to a hardware implementation of the functionality of the software
96657Snate@binkert.org * licensed hereunder.  You may use the software subject to the license
106657Snate@binkert.org * terms below provided that you ensure that this notice is replicated
116657Snate@binkert.org * unmodified and in its entirety in all distributions of the software,
126657Snate@binkert.org * modified or unmodified, in source code or in binary form.
136657Snate@binkert.org *
146657Snate@binkert.org * Copyright (c) 2003-2005 The Regents of The University of Michigan
156657Snate@binkert.org * Copyright (c) 2007-2008 The Florida State University
166657Snate@binkert.org * All rights reserved.
176657Snate@binkert.org *
186657Snate@binkert.org * Redistribution and use in source and binary forms, with or without
196657Snate@binkert.org * modification, are permitted provided that the following conditions are
206657Snate@binkert.org * met: redistributions of source code must retain the above copyright
216657Snate@binkert.org * notice, this list of conditions and the following disclaimer;
226657Snate@binkert.org * redistributions in binary form must reproduce the above copyright
236657Snate@binkert.org * notice, this list of conditions and the following disclaimer in the
246657Snate@binkert.org * documentation and/or other materials provided with the distribution;
256657Snate@binkert.org * neither the name of the copyright holders nor the names of its
266657Snate@binkert.org * contributors may be used to endorse or promote products derived from
276657Snate@binkert.org * this software without specific prior written permission.
286657Snate@binkert.org *
296657Snate@binkert.org * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
306657Snate@binkert.org * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
316657Snate@binkert.org * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
326657Snate@binkert.org * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
336657Snate@binkert.org * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
346657Snate@binkert.org * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
356657Snate@binkert.org * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
366657Snate@binkert.org * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
376657Snate@binkert.org * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
386657Snate@binkert.org * (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
51namespace LittleEndianGuest {};
52
53#define TARGET_ARM
54
55class StaticInstPtr;
56
57namespace ArmISA
58{
59    using namespace LittleEndianGuest;
60
61    StaticInstPtr decodeInst(ExtMachInst);
62
63    // ARM DOES NOT have a delay slot
64    #define ISA_HAS_DELAY_SLOT 0
65
66    const Addr PageShift = 12;
67    const Addr PageBytes = ULL(1) << PageShift;
68    const Addr Page_Mask = ~(PageBytes - 1);
69    const Addr PageOffset = PageBytes - 1;
70
71
72    ////////////////////////////////////////////////////////////////////////
73    //
74    //  Translation stuff
75    //
76
77    const Addr PteShift = 3;
78    const Addr NPtePageShift = PageShift - PteShift;
79    const Addr NPtePage = ULL(1) << NPtePageShift;
80    const Addr PteMask = NPtePage - 1;
81
82    //// All 'Mapped' segments go through the TLB
83    //// All other segments are translated by dropping the MSB, to give
84    //// the corresponding physical address
85    // User Segment - Mapped
86    const Addr USegBase = ULL(0x0);
87    const Addr USegEnd = ULL(0x7FFFFFFF);
88
89    // Kernel Segment 0 - Unmapped
90    const Addr KSeg0End = ULL(0x9FFFFFFF);
91    const Addr KSeg0Base =  ULL(0x80000000);
92    const Addr KSeg0Mask = ULL(0x1FFFFFFF);
93
94    // For loading... XXX This maybe could be USegEnd?? --ali
95    const Addr LoadAddrMask = ULL(0xffffffffff);
96
97    const unsigned VABits = 32;
98    const unsigned PABits = 32; // Is this correct?
99    const Addr VAddrImplMask = (ULL(1) << VABits) - 1;
100    const Addr VAddrUnImplMask = ~VAddrImplMask;
101    inline Addr VAddrImpl(Addr a) { return a & VAddrImplMask; }
102    inline Addr VAddrVPN(Addr a) { return a >> ArmISA::PageShift; }
103    inline Addr VAddrOffset(Addr a) { return a & ArmISA::PageOffset; }
104
105    const Addr PAddrImplMask = (ULL(1) << PABits) - 1;
106
107    // return a no-op instruction... used for instruction fetch faults
108    const ExtMachInst NoopMachInst = 0x00000000;
109
110    const int LogVMPageSize = 12;	// 4K bytes
111    const int VMPageSize = (1 << LogVMPageSize);
112
113    const int BranchPredAddrShiftAmt = 2; // instructions are 4-byte aligned
114
115    const int MachineBytes = 4;
116    const int WordBytes = 4;
117    const int HalfwordBytes = 2;
118    const int ByteBytes = 1;
119
120    const uint32_t HighVecs = 0xFFFF0000;
121
122    // Memory accesses cannot be unaligned
123    const bool HasUnalignedMemAcc = false;
124};
125
126using namespace ArmISA;
127
128#endif // __ARCH_ARM_ISA_TRAITS_HH__
129