gem5  v20.0.0.3
mem_state.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017-2020 Advanced Micro Devices, Inc.
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 
29 #ifndef SRC_SIM_MEM_STATE_HH
30 #define SRC_SIM_MEM_STATE_HH
31 
32 #include <list>
33 #include <memory>
34 #include <string>
35 #include <vector>
36 
37 #include "config/the_isa.hh"
38 #include "debug/Vma.hh"
39 #include "mem/page_table.hh"
41 #include "sim/serialize.hh"
42 #include "sim/vma.hh"
43 
44 class Process;
45 class ProcessParams;
46 class System;
47 
62 class MemState : public Serializable
63 {
64  public:
65  MemState(Process *owner, Addr brk_point, Addr stack_base,
66  Addr max_stack_size, Addr next_thread_stack_base,
67  Addr mmap_end);
68 
69  MemState& operator=(const MemState &in);
70 
74  void resetOwner(Process *owner);
75 
80  Addr getBrkPoint() const { return _brkPoint; }
81  Addr getStackBase() const { return _stackBase; }
82  Addr getStackSize() const { return _stackSize; }
83  Addr getMaxStackSize() const { return _maxStackSize; }
84  Addr getStackMin() const { return _stackMin; }
86  Addr getMmapEnd() const { return _mmapEnd; }
87  void setBrkPoint(Addr brk_point) { _brkPoint = brk_point; }
88  void setStackBase(Addr stack_base) { _stackBase = stack_base; }
89  void setStackSize(Addr stack_size) { _stackSize = stack_size; }
90  void setMaxStackSize(Addr max_stack) { _maxStackSize = max_stack; }
91  void setStackMin(Addr stack_min) { _stackMin = stack_min; }
93  void setMmapEnd(Addr mmap_end) { _mmapEnd = mmap_end; }
94 
95  /*
96  * Extend the end of the mmap region by length bytes. Once a contiguous
97  * region of free virtual memory is found the start of that region is
98  * returned.
99  */
101 
111  bool isUnmapped(Addr start_addr, Addr length);
112 
125  void mapRegion(Addr start_addr, Addr length,
126  const std::string& name="anon", int sim_fd=-1,
127  Addr offset=0);
128 
137  void unmapRegion(Addr start_addr, Addr length);
138 
149  void remapRegion(Addr start_addr, Addr new_start_addr, Addr length);
150 
158  void updateBrkRegion(Addr old_brk, Addr new_brk);
159 
168  bool fixupFault(Addr vaddr);
169 
181  void allocateMem(Addr vaddr, int64_t size, bool clobber = false);
182 
183  void
184  serialize(CheckpointOut &cp) const override
185  {
186  paramOut(cp, "brkPoint", _brkPoint);
187  paramOut(cp, "stackBase", _stackBase);
188  paramOut(cp, "stackSize", _stackSize);
189  paramOut(cp, "maxStackSize", _maxStackSize);
190  paramOut(cp, "stackMin", _stackMin);
191  paramOut(cp, "nextThreadStackBase", _nextThreadStackBase);
192  paramOut(cp, "mmapEnd", _mmapEnd);
193  }
194  void
196  {
197  paramIn(cp, "brkPoint", _brkPoint);
198  paramIn(cp, "stackBase", _stackBase);
199  paramIn(cp, "stackSize", _stackSize);
200  paramIn(cp, "maxStackSize", _maxStackSize);
201  paramIn(cp, "stackMin", _stackMin);
202  paramIn(cp, "nextThreadStackBase", _nextThreadStackBase);
203  paramIn(cp, "mmapEnd", _mmapEnd);
204  }
205 
209  std::string printVmaList();
210 
211  private:
216 
225 
230 
244 };
245 
246 #endif
Addr getBrkPoint() const
Get/set base addresses and sizes for the stack and data segments of the process&#39; memory.
Definition: mem_state.hh:80
Process * _ownerProcess
Owner process of MemState.
Definition: mem_state.hh:215
void setBrkPoint(Addr brk_point)
Definition: mem_state.hh:87
Addr getStackBase() const
Definition: mem_state.hh:81
const std::string & name()
Definition: trace.cc:50
MemState & operator=(const MemState &in)
Definition: mem_state.cc:53
Addr getMmapEnd() const
Definition: mem_state.hh:86
void mapRegion(Addr start_addr, Addr length, const std::string &name="anon", int sim_fd=-1, Addr offset=0)
Add a new memory region.
Definition: mem_state.cc:163
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: mem_state.hh:184
Addr _stackBase
Definition: mem_state.hh:219
Definition: system.hh:72
Bitfield< 23, 0 > offset
Definition: types.hh:152
void setMaxStackSize(Addr max_stack)
Definition: mem_state.hh:90
Definition: cprintf.cc:40
Addr _endBrkPoint
Keeps record of the furthest mapped heap location.
Definition: mem_state.hh:229
Addr _stackMin
Definition: mem_state.hh:222
void setStackBase(Addr stack_base)
Definition: mem_state.hh:88
Addr _stackSize
Definition: mem_state.hh:220
void updateBrkRegion(Addr old_brk, Addr new_brk)
Change the end of a process&#39; program break.
Definition: mem_state.cc:104
Addr getMaxStackSize() const
Definition: mem_state.hh:83
void setMmapEnd(Addr mmap_end)
Definition: mem_state.hh:93
void resetOwner(Process *owner)
Change the Process owner in case this MemState is copied.
Definition: mem_state.cc:73
void unmapRegion(Addr start_addr, Addr length)
Unmap a pre-existing region.
Definition: mem_state.cc:183
Addr getStackMin() const
Definition: mem_state.hh:84
bool fixupFault(Addr vaddr)
Attempt to fix up a fault at vaddr by allocating a page.
Definition: mem_state.cc:385
std::string printVmaList()
Print the list of VMAs in a format similar to /proc/self/maps.
Definition: mem_state.cc:479
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: mem_state.hh:195
void paramOut(CheckpointOut &cp, const string &name, ExtMachInst const &machInst)
Definition: types.cc:38
Addr _nextThreadStackBase
Definition: mem_state.hh:223
Addr _brkPoint
Definition: mem_state.hh:218
std::list< VMA > _vmaList
The _vmaList member is a list of virtual memory areas in the target application space that have been ...
Definition: mem_state.hh:243
Addr _mmapEnd
Definition: mem_state.hh:224
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
void allocateMem(Addr vaddr, int64_t size, bool clobber=false)
Given the vaddr and size, this method will chunk the allocation into page granularity and then reques...
Basic support for object serialization.
Definition: serialize.hh:166
This class holds the memory state for the Process class and all of its derived, architecture-specific...
Definition: mem_state.hh:62
Addr getStackSize() const
Definition: mem_state.hh:82
Addr getNextThreadStackBase() const
Definition: mem_state.hh:85
void setNextThreadStackBase(Addr ntsb)
Definition: mem_state.hh:92
Addr _maxStackSize
Definition: mem_state.hh:221
Declarations of a non-full system Page Table.
std::ostream CheckpointOut
Definition: serialize.hh:63
void setStackMin(Addr stack_min)
Definition: mem_state.hh:91
void setStackSize(Addr stack_size)
Definition: mem_state.hh:89
void paramIn(CheckpointIn &cp, const string &name, ExtMachInst &machInst)
Definition: types.cc:69
uint8_t length
Definition: inet.hh:329
Addr _pageBytes
Definition: mem_state.hh:217
bool isUnmapped(Addr start_addr, Addr length)
Check if any page in the virtual address range from start_addr to start_addr + length is already mapp...
Definition: mem_state.cc:79
void remapRegion(Addr start_addr, Addr new_start_addr, Addr length)
Remap a pre-existing region.
Definition: mem_state.cc:281
MemState(Process *owner, Addr brk_point, Addr stack_base, Addr max_stack_size, Addr next_thread_stack_base, Addr mmap_end)
Definition: mem_state.cc:41
Addr extendMmap(Addr length)
Definition: mem_state.cc:451

Generated on Fri Jul 3 2020 15:53:04 for gem5 by doxygen 1.8.13