29 #ifndef SRC_SIM_MEM_STATE_HH 30 #define SRC_SIM_MEM_STATE_HH 37 #include "config/the_isa.hh" 38 #include "debug/Vma.hh" 66 Addr max_stack_size,
Addr next_thread_stack_base,
126 const std::string&
name=
"anon",
int sim_fd=-1,
Addr getBrkPoint() const
Get/set base addresses and sizes for the stack and data segments of the process' memory.
Process * _ownerProcess
Owner process of MemState.
void setBrkPoint(Addr brk_point)
Addr getStackBase() const
const std::string & name()
MemState & operator=(const MemState &in)
void mapRegion(Addr start_addr, Addr length, const std::string &name="anon", int sim_fd=-1, Addr offset=0)
Add a new memory region.
void serialize(CheckpointOut &cp) const override
Serialize an object.
void setMaxStackSize(Addr max_stack)
Addr _endBrkPoint
Keeps record of the furthest mapped heap location.
void setStackBase(Addr stack_base)
void updateBrkRegion(Addr old_brk, Addr new_brk)
Change the end of a process' program break.
Addr getMaxStackSize() const
void setMmapEnd(Addr mmap_end)
void resetOwner(Process *owner)
Change the Process owner in case this MemState is copied.
void unmapRegion(Addr start_addr, Addr length)
Unmap a pre-existing region.
bool fixupFault(Addr vaddr)
Attempt to fix up a fault at vaddr by allocating a page.
std::string printVmaList()
Print the list of VMAs in a format similar to /proc/self/maps.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
void paramOut(CheckpointOut &cp, const string &name, ExtMachInst const &machInst)
Addr _nextThreadStackBase
std::list< VMA > _vmaList
The _vmaList member is a list of virtual memory areas in the target application space that have been ...
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
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.
This class holds the memory state for the Process class and all of its derived, architecture-specific...
Addr getStackSize() const
Addr getNextThreadStackBase() const
void setNextThreadStackBase(Addr ntsb)
Declarations of a non-full system Page Table.
std::ostream CheckpointOut
void setStackMin(Addr stack_min)
void setStackSize(Addr stack_size)
void paramIn(CheckpointIn &cp, const string &name, ExtMachInst &machInst)
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...
void remapRegion(Addr start_addr, Addr new_start_addr, Addr length)
Remap a pre-existing region.
MemState(Process *owner, Addr brk_point, Addr stack_base, Addr max_stack_size, Addr next_thread_stack_base, Addr mmap_end)
Addr extendMmap(Addr length)