isa.hh revision 6735:6437ad24a8a0
1/*
2 * Copyright (c) 2009 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: Gabe Black
29 */
30
31#ifndef __ARCH_ARM_ISA_HH__
32#define __ARCH_MRM_ISA_HH__
33
34#include "arch/arm/registers.hh"
35#include "arch/arm/types.hh"
36
37class ThreadContext;
38class Checkpoint;
39class EventManager;
40
41namespace ArmISA
42{
43    class ISA
44    {
45      protected:
46        MiscReg miscRegs[NumMiscRegs];
47        const IntRegIndex *intRegMap;
48
49        void
50        updateRegMap(CPSR cpsr)
51        {
52            switch (cpsr.mode) {
53              case MODE_USER:
54              case MODE_SYSTEM:
55                intRegMap = IntRegUsrMap;
56                break;
57              case MODE_FIQ:
58                intRegMap = IntRegFiqMap;
59                break;
60              case MODE_IRQ:
61                intRegMap = IntRegIrqMap;
62                break;
63              case MODE_SVC:
64                intRegMap = IntRegSvcMap;
65                break;
66              case MODE_MON:
67                intRegMap = IntRegMonMap;
68                break;
69              case MODE_ABORT:
70                intRegMap = IntRegAbtMap;
71                break;
72              case MODE_UNDEFINED:
73                intRegMap = IntRegUndMap;
74                break;
75              default:
76                panic("Unrecognized mode setting in CPSR.\n");
77            }
78        }
79
80      public:
81        void clear()
82        {
83            memset(miscRegs, 0, sizeof(miscRegs));
84            CPSR cpsr = 0;
85            cpsr.mode = MODE_USER;
86            miscRegs[MISCREG_CPSR] = cpsr;
87            updateRegMap(cpsr);
88
89            SCTLR sctlr = 0;
90            sctlr.nmfi = 1;
91            sctlr.rao1 = 1;
92            sctlr.rao2 = 1;
93            sctlr.rao3 = 1;
94            sctlr.rao4 = 1;
95
96            //XXX We need to initialize the rest of the state.
97        }
98
99        MiscReg
100        readMiscRegNoEffect(int misc_reg)
101        {
102            assert(misc_reg < NumMiscRegs);
103            return miscRegs[misc_reg];
104        }
105
106        MiscReg
107        readMiscReg(int misc_reg, ThreadContext *tc)
108        {
109            assert(misc_reg < NumMiscRegs);
110            return miscRegs[misc_reg];
111        }
112
113        void
114        setMiscRegNoEffect(int misc_reg, const MiscReg &val)
115        {
116            assert(misc_reg < NumMiscRegs);
117            miscRegs[misc_reg] = val;
118        }
119
120        void
121        setMiscReg(int misc_reg, const MiscReg &val, ThreadContext *tc)
122        {
123            if (misc_reg == MISCREG_CPSR) {
124                updateRegMap(val);
125            }
126            assert(misc_reg < NumMiscRegs);
127            miscRegs[misc_reg] = val;
128        }
129
130        int
131        flattenIntIndex(int reg)
132        {
133            assert(reg >= 0);
134            if (reg < NUM_ARCH_INTREGS) {
135                return intRegMap[reg];
136            } else if (reg < NUM_INTREGS) {
137                return reg;
138            } else {
139                reg -= NUM_INTREGS;
140                assert(reg < NUM_ARCH_INTREGS);
141                return reg;
142            }
143        }
144
145        int
146        flattenFloatIndex(int reg)
147        {
148            return reg;
149        }
150
151        void serialize(EventManager *em, std::ostream &os)
152        {}
153        void unserialize(EventManager *em, Checkpoint *cp,
154                const std::string &section)
155        {}
156
157        ISA()
158        {
159            clear();
160        }
161    };
162}
163
164#endif
165