35 #include "config/the_isa.hh" 121 : _buffer(nullptr), _length(length)
125 struct stat file_stat;
126 if (fstat(fd, &file_stat) > 0) {
127 panic(
"Cannot stat file: %s\n", strerror(errno));
131 panic_if(offset > file_stat.st_size,
132 "Tried to mmap with offset greater than file size");
133 _length = std::min((
size_t)(file_stat.st_size - offset),
_length);
138 MAP_PRIVATE, fd, offset);
140 panic(
"Failed to map file into host address space: %s",
144 panic(
"Tried to mmap 0 bytes");
152 "mmap: failed to unmap file-backed host memory: %s",
#define panic(...)
This implements a cprintf based panic() function.
bool isStrictSuperset(const AddrRange &range) const
Returns true if desired range exists within this virtual memory area and does not include the start a...
void fillMemPages(Addr start, Addr size, PortProxy &port) const
Copy memory from a buffer which resides on the host machine into a section of memory on the target...
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
void sliceRegionRight(Addr slice_addr)
Remove the address range to the right of slice_addr.
bool hasHostBuf() const
Check if the virtual memory area has an equivalent buffer on the host machine.
void writeBlob(Addr addr, const void *p, int size) const
Same as tryWriteBlob, but insists on success.
Addr end() const
Get the end address of the range.
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
MappedFileBuffer(int fd, size_t length, off_t offset)
This object is a proxy for a port or other object which implements the functional response protocol...
void * _hostBuf
Host buffer ptr for this virtual memory area.
std::shared_ptr< MappedFileBuffer > _origHostBuf
The host file backing will be chopped up and reassigned as pages are mapped, remapped, and unmapped.
Addr start() const
Get the start address of the range.
void sliceRegionLeft(Addr slice_addr)
Remove the address range to the left of slice_addr.
Addr _pageBytes
Number of bytes in an OS page.
AddrRange _addrRange
Address range for this virtual memory area.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
uint64_t _hostBufLen
Length of host buffer for this virtual memory area.