Deleted Added
sdiff udiff text old ( 3834:7eca9a10f056 ) new ( 3836:659b8c627478 )
full compact
1/*
2 * Copyright (c) 2006 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;

--- 17 unchanged lines hidden (view full) ---

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Ali Saidi
29 */
30
31#ifndef __ARCH_SPARC_TLB_HH__
32#define __ARCH_SPARC_TLB_HH__
33
34#include "arch/sparc/asi.hh"
35#include "arch/sparc/tlb_map.hh"
36#include "base/misc.hh"
37#include "mem/request.hh"
38#include "sim/faults.hh"
39#include "sim/sim_object.hh"
40
41class ThreadContext;
42class Packet;

--- 7 unchanged lines hidden (view full) ---

50 TlbMap lookupTable;;
51 typedef TlbMap::iterator MapIter;
52
53 TlbEntry *tlb;
54
55 int size;
56 int usedEntries;
57
58 uint64_t cacheState;
59 bool cacheValid;
60
61 enum FaultTypes {
62 OtherFault = 0,
63 PrivViolation = 0x1,
64 SideEffect = 0x2,
65 AtomicToIo = 0x4,
66 IllegalAsi = 0x8,
67 LoadFromNfo = 0x10,
68 VaOutOfRange = 0x20,

--- 41 unchanged lines hidden (view full) ---

110 void demapPage(Addr va, int partition_id, bool real, int context_id);
111
112 /** Checks if the virtual address provided is a valid one. */
113 bool validVirtualAddress(Addr va, bool am);
114
115 void writeSfsr(ThreadContext *tc, int reg, bool write, ContextType ct,
116 bool se, FaultTypes ft, int asi);
117
118 void TLB::clearUsedBits();
119
120
121 void writeTagAccess(ThreadContext *tc, int reg, Addr va, int context);
122
123 public:
124 TLB(const std::string &name, int size);
125
126 void dumpAll();
127
128 // Checkpointing
129 virtual void serialize(std::ostream &os);
130 virtual void unserialize(Checkpoint *cp, const std::string &section);
131};
132
133class ITB : public TLB
134{
135 public:
136 ITB(const std::string &name, int size) : TLB(name, size)
137 {
138 cacheEntry = NULL;
139 }
140
141 Fault translate(RequestPtr &req, ThreadContext *tc);
142 private:
143 void writeSfsr(ThreadContext *tc, bool write, ContextType ct,
144 bool se, FaultTypes ft, int asi);
145 void writeTagAccess(ThreadContext *tc, Addr va, int context);
146 TlbEntry *cacheEntry;
147 friend class DTB;
148};
149
150class DTB : public TLB
151{
152 public:
153 DTB(const std::string &name, int size) : TLB(name, size)
154 {
155 cacheEntry[0] = NULL;
156 cacheEntry[1] = NULL;
157 }
158
159 Fault translate(RequestPtr &req, ThreadContext *tc, bool write);
160 Tick doMmuRegRead(ThreadContext *tc, Packet *pkt);
161 Tick doMmuRegWrite(ThreadContext *tc, Packet *pkt);
162
163 private:
164 void writeSfr(ThreadContext *tc, Addr a, bool write, ContextType ct,
165 bool se, FaultTypes ft, int asi);
166 void writeTagAccess(ThreadContext *tc, Addr va, int context);
167
168 TlbEntry *cacheEntry[2];
169 ASI cacheAsi[2];
170};
171
172}
173
174#endif // __ARCH_SPARC_TLB_HH__