page_table.hh (12460:0f221912b014) page_table.hh (12461:a4cb506cda74)
1/*
2 * Copyright (c) 2014 Advanced Micro Devices, Inc.
3 * Copyright (c) 2003 The Regents of The University of Michigan
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * Authors: Steve Reinhardt
30 */
31
32/**
33 * @file
34 * Declarations of a non-full system Page Table.
35 */
36
37#ifndef __MEM_PAGE_TABLE_HH__
38#define __MEM_PAGE_TABLE_HH__
39
40#include <string>
41#include <unordered_map>
42
1/*
2 * Copyright (c) 2014 Advanced Micro Devices, Inc.
3 * Copyright (c) 2003 The Regents of The University of Michigan
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * Authors: Steve Reinhardt
30 */
31
32/**
33 * @file
34 * Declarations of a non-full system Page Table.
35 */
36
37#ifndef __MEM_PAGE_TABLE_HH__
38#define __MEM_PAGE_TABLE_HH__
39
40#include <string>
41#include <unordered_map>
42
43#include "arch/isa_traits.hh"
44#include "arch/tlb.hh"
45#include "base/intmath.hh"
46#include "base/types.hh"
43#include "base/intmath.hh"
44#include "base/types.hh"
47#include "config/the_isa.hh"
48#include "mem/request.hh"
49#include "sim/serialize.hh"
50
51class ThreadContext;
52
53class EmulationPageTable : public Serializable
54{
45#include "mem/request.hh"
46#include "sim/serialize.hh"
47
48class ThreadContext;
49
50class EmulationPageTable : public Serializable
51{
52 public:
53 struct Entry
54 {
55 Addr paddr;
56 uint64_t flags;
57
58 Entry(Addr paddr, uint64_t flags) : paddr(paddr), flags(flags) {}
59 Entry() {}
60 };
61
55 protected:
62 protected:
56 typedef std::unordered_map<Addr, TheISA::TlbEntry *> PTable;
63 typedef std::unordered_map<Addr, Entry> PTable;
57 typedef PTable::iterator PTableItr;
58 PTable pTable;
59
60 const Addr pageSize;
61 const Addr offsetMask;
62
64 typedef PTable::iterator PTableItr;
65 PTable pTable;
66
67 const Addr pageSize;
68 const Addr offsetMask;
69
63 const uint64_t pid;
70 const uint64_t _pid;
64 const std::string _name;
65
66 public:
67
68 EmulationPageTable(
69 const std::string &__name, uint64_t _pid, Addr _pageSize) :
70 pageSize(_pageSize), offsetMask(mask(floorLog2(_pageSize))),
71 const std::string _name;
72
73 public:
74
75 EmulationPageTable(
76 const std::string &__name, uint64_t _pid, Addr _pageSize) :
77 pageSize(_pageSize), offsetMask(mask(floorLog2(_pageSize))),
71 pid(_pid), _name(__name)
78 _pid(_pid), _name(__name)
72 {
73 assert(isPowerOf2(pageSize));
74 }
75
79 {
80 assert(isPowerOf2(pageSize));
81 }
82
76 virtual ~EmulationPageTable();
83 uint64_t pid() const { return _pid; };
77
84
85 virtual ~EmulationPageTable() {};
86
78 /* generic page table mapping flags
79 * unset | set
80 * bit 0 - no-clobber | clobber
81 * bit 2 - cacheable | uncacheable
82 * bit 3 - read-write | read-only
83 */
84 enum MappingFlags : uint32_t {
85 Clobber = 1,
86 Uncacheable = 4,
87 ReadOnly = 8,
88 };
89
90 virtual void initState(ThreadContext* tc) {};
91
92 // for DPRINTF compatibility
93 const std::string name() const { return _name; }
94
95 Addr pageAlign(Addr a) { return (a & ~offsetMask); }
96 Addr pageOffset(Addr a) { return (a & offsetMask); }
97
98 /**
99 * Maps a virtual memory region to a physical memory region.
100 * @param vaddr The starting virtual address of the region.
101 * @param paddr The starting physical address where the region is mapped.
102 * @param size The length of the region.
103 * @param flags Generic mapping flags that can be set by or-ing values
104 * from MappingFlags enum.
105 */
106 virtual void map(Addr vaddr, Addr paddr, int64_t size, uint64_t flags = 0);
107 virtual void remap(Addr vaddr, int64_t size, Addr new_vaddr);
108 virtual void unmap(Addr vaddr, int64_t size);
109
110 /**
111 * Check if any pages in a region are already allocated
112 * @param vaddr The starting virtual address of the region.
113 * @param size The length of the region.
114 * @return True if no pages in the region are mapped.
115 */
116 virtual bool isUnmapped(Addr vaddr, int64_t size);
117
118 /**
119 * Lookup function
120 * @param vaddr The virtual address.
121 * @return The page table entry corresponding to vaddr.
122 */
87 /* generic page table mapping flags
88 * unset | set
89 * bit 0 - no-clobber | clobber
90 * bit 2 - cacheable | uncacheable
91 * bit 3 - read-write | read-only
92 */
93 enum MappingFlags : uint32_t {
94 Clobber = 1,
95 Uncacheable = 4,
96 ReadOnly = 8,
97 };
98
99 virtual void initState(ThreadContext* tc) {};
100
101 // for DPRINTF compatibility
102 const std::string name() const { return _name; }
103
104 Addr pageAlign(Addr a) { return (a & ~offsetMask); }
105 Addr pageOffset(Addr a) { return (a & offsetMask); }
106
107 /**
108 * Maps a virtual memory region to a physical memory region.
109 * @param vaddr The starting virtual address of the region.
110 * @param paddr The starting physical address where the region is mapped.
111 * @param size The length of the region.
112 * @param flags Generic mapping flags that can be set by or-ing values
113 * from MappingFlags enum.
114 */
115 virtual void map(Addr vaddr, Addr paddr, int64_t size, uint64_t flags = 0);
116 virtual void remap(Addr vaddr, int64_t size, Addr new_vaddr);
117 virtual void unmap(Addr vaddr, int64_t size);
118
119 /**
120 * Check if any pages in a region are already allocated
121 * @param vaddr The starting virtual address of the region.
122 * @param size The length of the region.
123 * @return True if no pages in the region are mapped.
124 */
125 virtual bool isUnmapped(Addr vaddr, int64_t size);
126
127 /**
128 * Lookup function
129 * @param vaddr The virtual address.
130 * @return The page table entry corresponding to vaddr.
131 */
123 virtual TheISA::TlbEntry *lookup(Addr vaddr);
132 const Entry *lookup(Addr vaddr);
124
125 /**
126 * Translate function
127 * @param vaddr The virtual address.
128 * @param paddr Physical address from translation.
129 * @return True if translation exists
130 */
131 bool translate(Addr vaddr, Addr &paddr);
132
133 /**
134 * Simplified translate function (just check for translation)
135 * @param vaddr The virtual address.
136 * @return True if translation exists
137 */
138 bool translate(Addr vaddr) { Addr dummy; return translate(vaddr, dummy); }
139
140 /**
141 * Perform a translation on the memory request, fills in paddr
142 * field of req.
143 * @param req The memory request.
144 */
145 Fault translate(RequestPtr req);
146
147 void getMappings(std::vector<std::pair<Addr, Addr>> *addr_mappings);
148
149 void serialize(CheckpointOut &cp) const override;
150 void unserialize(CheckpointIn &cp) override;
151};
152
153#endif // __MEM_PAGE_TABLE_HH__
133
134 /**
135 * Translate function
136 * @param vaddr The virtual address.
137 * @param paddr Physical address from translation.
138 * @return True if translation exists
139 */
140 bool translate(Addr vaddr, Addr &paddr);
141
142 /**
143 * Simplified translate function (just check for translation)
144 * @param vaddr The virtual address.
145 * @return True if translation exists
146 */
147 bool translate(Addr vaddr) { Addr dummy; return translate(vaddr, dummy); }
148
149 /**
150 * Perform a translation on the memory request, fills in paddr
151 * field of req.
152 * @param req The memory request.
153 */
154 Fault translate(RequestPtr req);
155
156 void getMappings(std::vector<std::pair<Addr, Addr>> *addr_mappings);
157
158 void serialize(CheckpointOut &cp) const override;
159 void unserialize(CheckpointIn &cp) override;
160};
161
162#endif // __MEM_PAGE_TABLE_HH__