gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
isa.cc
Go to the documentation of this file.
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 #include "arch/alpha/isa.hh"
32 
33 #include <cassert>
34 
35 #include "base/misc.hh"
36 #include "cpu/thread_context.hh"
37 #include "params/AlphaISA.hh"
38 #include "sim/serialize.hh"
39 
40 namespace AlphaISA
41 {
42 
44  : SimObject(p), system(p->system)
45 {
46  clear();
48 }
49 
50 const AlphaISAParams *
51 ISA::params() const
52 {
53  return dynamic_cast<const Params *>(_params);
54 }
55 
56 void
58 {
64 }
65 
66 void
68 {
74 }
75 
76 
77 MiscReg
78 ISA::readMiscRegNoEffect(int misc_reg, ThreadID tid) const
79 {
80  switch (misc_reg) {
81  case MISCREG_FPCR:
82  return fpcr;
83  case MISCREG_UNIQ:
84  return uniq;
85  case MISCREG_LOCKFLAG:
86  return lock_flag;
87  case MISCREG_LOCKADDR:
88  return lock_addr;
89  case MISCREG_INTR:
90  return intr_flag;
91  default:
92  assert(misc_reg < NumInternalProcRegs);
93  return ipr[misc_reg];
94  }
95 }
96 
97 MiscReg
98 ISA::readMiscReg(int misc_reg, ThreadContext *tc, ThreadID tid)
99 {
100  switch (misc_reg) {
101  case MISCREG_FPCR:
102  return fpcr;
103  case MISCREG_UNIQ:
104  return uniq;
105  case MISCREG_LOCKFLAG:
106  return lock_flag;
107  case MISCREG_LOCKADDR:
108  return lock_addr;
109  case MISCREG_INTR:
110  return intr_flag;
111  default:
112  return readIpr(misc_reg, tc);
113  }
114 }
115 
116 void
117 ISA::setMiscRegNoEffect(int misc_reg, const MiscReg &val, ThreadID tid)
118 {
119  switch (misc_reg) {
120  case MISCREG_FPCR:
121  fpcr = val;
122  return;
123  case MISCREG_UNIQ:
124  uniq = val;
125  return;
126  case MISCREG_LOCKFLAG:
127  lock_flag = val;
128  return;
129  case MISCREG_LOCKADDR:
130  lock_addr = val;
131  return;
132  case MISCREG_INTR:
133  intr_flag = val;
134  return;
135  default:
136  assert(misc_reg < NumInternalProcRegs);
137  ipr[misc_reg] = val;
138  return;
139  }
140 }
141 
142 void
143 ISA::setMiscReg(int misc_reg, const MiscReg &val, ThreadContext *tc,
144  ThreadID tid)
145 {
146  switch (misc_reg) {
147  case MISCREG_FPCR:
148  fpcr = val;
149  return;
150  case MISCREG_UNIQ:
151  uniq = val;
152  return;
153  case MISCREG_LOCKFLAG:
154  lock_flag = val;
155  return;
156  case MISCREG_LOCKADDR:
157  lock_addr = val;
158  return;
159  case MISCREG_INTR:
160  intr_flag = val;
161  return;
162  default:
163  setIpr(misc_reg, val, tc);
164  return;
165  }
166 }
167 
168 }
169 
171 AlphaISAParams::create()
172 {
173  return new AlphaISA::ISA(this);
174 }
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: isa.cc:57
const Params * params() const
Definition: isa.cc:51
void initializeIprTable()
Definition: ipr.cc:129
InternalProcReg readIpr(int idx, ThreadContext *tc)
Definition: ev5.cc:93
MiscReg readMiscReg(int misc_reg, ThreadContext *tc, ThreadID tid=0)
Definition: isa.cc:98
InternalProcReg ipr[NumInternalProcRegs]
Definition: isa.hh:68
void setMiscRegNoEffect(int misc_reg, const MiscReg &val, ThreadID tid=0)
Definition: isa.cc:117
uint64_t MiscReg
Definition: registers.hh:54
int intr_flag
Definition: isa.hh:66
void setMiscReg(int misc_reg, const MiscReg &val, ThreadContext *tc, ThreadID tid=0)
Definition: isa.cc:143
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Bitfield< 63 > val
Definition: misc.hh:770
uint64_t fpcr
Definition: isa.hh:62
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:145
system
Definition: isa.cc:226
void setIpr(int idx, InternalProcReg val, ThreadContext *tc)
Definition: ev5.cc:202
Addr lock_addr
Definition: isa.hh:65
#define SERIALIZE_ARRAY(member, size)
Definition: serialize.hh:158
uint64_t uniq
Definition: isa.hh:63
void clear()
Definition: isa.hh:85
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:143
#define UNSERIALIZE_ARRAY(member, size)
Definition: serialize.hh:161
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:171
std::ostream CheckpointOut
Definition: serialize.hh:67
const SimObjectParams * _params
Cached copy of the object parameters.
Definition: sim_object.hh:107
ISA(Params *p)
Definition: isa.cc:43
MiscReg readMiscRegNoEffect(int misc_reg, ThreadID tid=0) const
Definition: isa.cc:78
bool lock_flag
Definition: isa.hh:64
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: isa.cc:67
Bitfield< 0 > p
Abstract superclass for simulation objects.
Definition: sim_object.hh:94
AlphaISAParams Params
Definition: isa.hh:56

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