isa.hh revision 7427:1267715c2112
1/*
2 * Copyright (c) 2010 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) 2009 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Gabe Black
41 */
42
43#ifndef __ARCH_ARM_ISA_HH__
44#define __ARCH_ARM_ISA_HH__
45
46#include "arch/arm/registers.hh"
47#include "arch/arm/tlb.hh"
48#include "arch/arm/types.hh"
49
50class ThreadContext;
51class Checkpoint;
52class EventManager;
53
54namespace ArmISA
55{
56    class ISA
57    {
58      protected:
59        MiscReg miscRegs[NumMiscRegs];
60        const IntRegIndex *intRegMap;
61
62        void
63        updateRegMap(CPSR cpsr)
64        {
65            switch (cpsr.mode) {
66              case MODE_USER:
67              case MODE_SYSTEM:
68                intRegMap = IntRegUsrMap;
69                break;
70              case MODE_FIQ:
71                intRegMap = IntRegFiqMap;
72                break;
73              case MODE_IRQ:
74                intRegMap = IntRegIrqMap;
75                break;
76              case MODE_SVC:
77                intRegMap = IntRegSvcMap;
78                break;
79              case MODE_MON:
80                intRegMap = IntRegMonMap;
81                break;
82              case MODE_ABORT:
83                intRegMap = IntRegAbtMap;
84                break;
85              case MODE_UNDEFINED:
86                intRegMap = IntRegUndMap;
87                break;
88              default:
89                panic("Unrecognized mode setting in CPSR.\n");
90            }
91        }
92
93      public:
94        void clear();
95
96        MiscReg readMiscRegNoEffect(int misc_reg);
97        MiscReg readMiscReg(int misc_reg, ThreadContext *tc);
98        void setMiscRegNoEffect(int misc_reg, const MiscReg &val);
99        void setMiscReg(int misc_reg, const MiscReg &val, ThreadContext *tc);
100
101        int
102        flattenIntIndex(int reg)
103        {
104            assert(reg >= 0);
105            if (reg < NUM_ARCH_INTREGS) {
106                return intRegMap[reg];
107            } else if (reg < NUM_INTREGS) {
108                return reg;
109            } else {
110                int mode = reg / intRegsPerMode;
111                reg = reg % intRegsPerMode;
112                switch (mode) {
113                  case MODE_USER:
114                  case MODE_SYSTEM:
115                    return INTREG_USR(reg);
116                  case MODE_FIQ:
117                    return INTREG_FIQ(reg);
118                  case MODE_IRQ:
119                    return INTREG_IRQ(reg);
120                  case MODE_SVC:
121                    return INTREG_SVC(reg);
122                  case MODE_MON:
123                    return INTREG_MON(reg);
124                  case MODE_ABORT:
125                    return INTREG_ABT(reg);
126                  case MODE_UNDEFINED:
127                    return INTREG_UND(reg);
128                  default:
129                    panic("Flattening into an unknown mode.\n");
130                }
131            }
132        }
133
134        int
135        flattenFloatIndex(int reg)
136        {
137            return reg;
138        }
139
140        void serialize(EventManager *em, std::ostream &os)
141        {}
142        void unserialize(EventManager *em, Checkpoint *cp,
143                const std::string &section)
144        {}
145
146        ISA()
147        {
148            SCTLR sctlr;
149            sctlr = 0;
150            miscRegs[MISCREG_SCTLR_RST] = sctlr;
151
152            clear();
153        }
154    };
155}
156
157#endif
158