45 #include "debug/Semihosting.hh" 50 #include "params/ArmSemihosting.hh" 95 "r",
"rb",
"r+",
"r+b",
96 "w",
"wb",
"w+",
"w+b",
97 "a",
"ab",
"a+",
"a+b",
101 { 0x20000,
"semi:ADP_Stopped_BranchThroughZero" },
102 { 0x20001,
"semi:ADP_Stopped_UndefinedInstr" },
103 { 0x20002,
"semi:ADP_Stopped_SoftwareInterrupt" },
104 { 0x20003,
"semi:ADP_Stopped_PrefetchAbort" },
105 { 0x20004,
"semi:ADP_Stopped_DataAbort" },
106 { 0x20005,
"semi:ADP_Stopped_AddressException" },
107 { 0x20006,
"semi:ADP_Stopped_IRQ" },
108 { 0x20007,
"semi:ADP_Stopped_FIQ" },
110 { 0x20020,
"semi:ADP_Stopped_BreakPoint" },
111 { 0x20021,
"semi:ADP_Stopped_WatchPoint" },
112 { 0x20022,
"semi:ADP_Stopped_StepComplete" },
113 { 0x20023,
"semi:ADP_Stopped_RunTimeErrorUnknown" },
114 { 0x20024,
"semi:ADP_Stopped_InternalError" },
115 { 0x20025,
"semi:ADP_Stopped_UserInterruption" },
116 { 0x20026,
"semi:ADP_Stopped_ApplicationExit" },
117 { 0x20027,
"semi:ADP_Stopped_StackOverflow" },
118 { 0x20028,
"semi:ADP_Stopped_DivisionByZero" },
119 { 0x20029,
"semi:ADP_Stopped_DivisionByZero" },
124 0x53, 0x48, 0x46, 0x42,
132 {
"stdout", ::stdout},
134 {
"stderr", ::stderr},
139 cmdLine(p->cmd_line),
140 memReserve(p->mem_reserve),
141 stackSize(p->stack_size),
142 timeBase([p]{
struct tm t = p->time;
return mkutctime(&t); }()),
146 p->files_root_dir.back() !=
'/' ?
147 p->files_root_dir +
'/' :
p->files_root_dir),
155 files.push_back(
nullptr);
158 inform(
"Semihosting: Shifting elapsed ticks by %i bits.",
167 unrecognizedCall<Abi64>(
168 tc,
"Gem5 semihosting op (0x%x) disabled from here.",
op);
172 auto it =
calls.find(op);
173 if (it ==
calls.end()) {
174 unrecognizedCall<Abi64>(
175 tc,
"Unknown aarch64 semihosting call: op = 0x%x",
op);
180 DPRINTF(Semihosting,
"Semihosting call64: %s\n", call.
dump64(tc));
181 auto err = call.
call64(
this, tc);
183 DPRINTF(Semihosting,
"\t ->: 0x%x, %i\n", err.first, err.second);
193 unrecognizedCall<Abi32>(
194 tc,
"Gem5 semihosting op (0x%x) disabled from here.",
op);
198 auto it =
calls.find(op);
199 if (it ==
calls.end()) {
200 unrecognizedCall<Abi32>(
201 tc,
"Unknown aarch32 semihosting call: op = 0x%x",
op);
206 DPRINTF(Semihosting,
"Semihosting call32: %s\n", call.
dump32(tc));
207 auto err = call.
call32(
this, tc);
209 DPRINTF(Semihosting,
"\t ->: 0x%x, %i\n", err.first, err.second);
220 for (
int i = 0;
i <
files.size();
i++) {
235 paramIn(cp,
"num_files", num_files);
236 files.resize(num_files);
237 for (
int i = 0;
i < num_files;
i++)
244 static std::unique_ptr<PortProxy> port_proxy_s;
245 static System *secure_sys =
nullptr;
249 if (sys != secure_sys) {
261 return *port_proxy_s;
276 return std::string(buf.data());
281 int fmode,
size_t name_size)
285 DPRINTF(Semihosting,
"Semihosting SYS_OPEN(0x%x, %i[%s], %i)\n",
286 name_base, fmode, mode ? mode :
"-", name_size);
287 if (!mode || !name_base)
290 std::string fname =
readString(tc, name_base, name_size);
291 if (!fname.empty() && fname.front() !=
'/')
294 std::unique_ptr<ArmSemihosting::FileBase> file =
296 int64_t ret = file->open();
297 DPRINTF(Semihosting,
"Semihosting SYS_OPEN(\"%s\", %i[%s]): %i\n",
298 fname, fmode, mode, ret);
302 files.push_back(std::move(file));
310 if (handle >
files.size()) {
311 DPRINTF(Semihosting,
"Semihosting SYS_CLOSE(%i): Illegal file\n");
315 std::unique_ptr<FileBase> &file =
files[handle];
316 int64_t error = file->close();
317 DPRINTF(Semihosting,
"Semihosting SYS_CLOSE(%i[%s]): %i\n",
318 handle, file->fileName(), error);
324 files[handle].reset();
334 DPRINTF(Semihosting,
"Semihosting SYS_WRITEC('%c')\n", c);
343 DPRINTF(Semihosting,
"Semihosting SYS_WRITE0(...)\n");
347 std::cout.write(str.c_str(), str.size());
362 int64_t ret =
files[handle]->write(buffer.data(), buffer.size());
381 int64_t ret =
files[handle]->read(buffer.data(), buffer.size());
385 panic_if(ret > buffer.size(),
"Read longer than buffer size.");
390 return retOK(size - ret);
397 return retOK((
char)std::cin.
get());
403 return retOK(status < 0 ? 1 : 0);
412 int64_t ret =
files[handle]->isTTY();
416 return retOK(ret ? 1 : 0);
426 int64_t ret =
files[handle]->seek(pos);
440 int64_t ret =
files[handle]->flen();
453 char *
path = tmpnam(buf.data());
457 const size_t path_len = strlen(path);
458 if (path_len >= size)
468 std::string fname =
readString(tc, name_base, name_size);
470 if (
remove(fname.c_str()) != 0) {
479 Addr to_addr,
size_t to_size)
481 std::string from =
readString(tc, from_addr, from_size);
482 std::string to =
readString(tc, to_addr, to_size);
484 if (rename(from.c_str(), to.c_str()) != 0) {
506 const std::string cmd =
readString(tc, cmd_addr, cmd_size);
507 warn(
"Semihosting: SYS_SYSTEM not implemented. Guest tried to run: %s\n",
526 size_t size = size_arg.
read(tc, endian);
528 if (
cmdLine.size() + 1 < size) {
540 Addr &stack_base,
Addr &stack_limit)
544 fatal_if(memories.size() < 1,
"No memories reported from System");
545 warn_if(memories.size() > 1,
"Multiple physical memory ranges available. " 546 "Using first range heap/stack.");
549 Addr mem_end = memory.end();
553 const Addr phys_max = (1
ULL << 32) - 1;
555 "Physical memory out of range for a 32-bit guest.");
556 if (mem_end > phys_max) {
557 warn(
"Some physical memory out of range for a 32-bit guest.");
563 "Physical memory too small to fit desired stack and a heap.");
565 heap_base = mem_start;
567 stack_base = (mem_end + 1) & ~0x7ULL;
568 stack_limit = heap_limit;
570 inform(
"Reporting heap/stack info to guest:\n" 571 "\tHeap base: 0x%x\n" 572 "\tHeap limit: 0x%x\n" 573 "\tStack base: 0x%x\n" 574 "\tStack limit: 0x%x\n",
575 heap_base, heap_limit, stack_base, stack_limit);
581 uint64_t heap_base, heap_limit, stack_base, stack_limit;
582 gatherHeapInfo(tc,
false, heap_base, heap_limit, stack_base, stack_limit);
584 std::array<uint32_t, 4> block = {{
585 (uint32_t)heap_base, (uint32_t)heap_limit,
586 (uint32_t)stack_base, (uint32_t)stack_limit
596 uint64_t heap_base, heap_limit, stack_base, stack_limit;
597 gatherHeapInfo(tc,
true, heap_base, heap_limit, stack_base, stack_limit);
599 std::array<uint64_t, 4> block = {{
600 heap_base, heap_limit, stack_base, stack_limit
623 uint64_t code, uint64_t subcode)
648 low.
write(tc, tick, endian);
649 high.
write(tc, tick >> 32, endian);
700 template <
typename T>
705 template <
typename T>
713 template <
typename T>
715 public Argument<ArmSemihosting::Abi32, T>
717 template <
typename T>
719 public Argument<ArmSemihosting::Abi64, T>
731 if (PseudoInst::pseudoInst<SemiPseudoAbi32>(tc, func, ret))
744 if (PseudoInst::pseudoInst<SemiPseudoAbi64>(tc, func, ret))
752 const std::string &
name,
const char *
mode)
756 FILE *
f = fopen(name.c_str(),
mode);
758 fatal(
"Failed to open %s (%s): %s\n",
759 stream_name, name, strerror(errno));
767 std::unique_ptr<ArmSemihosting::FileBase>
771 std::unique_ptr<FileBase> file;
772 if (fname ==
":semihosting-features") {
775 file.reset(
new File(parent, fname.c_str(),
mode));
781 std::unique_ptr<ArmSemihosting::FileBase>
785 std::unique_ptr<FileBase> file;
792 std::string fname,
mode;
795 file = create(parent, fname, mode.c_str());
797 file->unserialize(cp);
886 const char *
_name,
const char *_perms)
901 panic_if(
file,
"Trying to open an already open file.\n");
903 if (
_name ==
":tt") {
904 if (
mode[0] ==
'r') {
906 }
else if (
mode[0] ==
'w') {
908 }
else if (
mode[0] ==
'a') {
911 warn(
"Unknown file mode for the ':tt' special file");
915 std::string real_mode(this->
mode);
918 if (in_cpt && real_mode[0] ==
'w')
921 file = fopen(
_name.c_str(), real_mode.c_str());
924 return file ? 0 : -errno;
930 panic_if(!
file,
"Trying to close an already closed file.\n");
953 size_t ret = fread(buffer, 1, size,
file);
957 return ferror(
file) ? -EINVAL : 0;
969 size_t ret = fwrite(buffer, 1, size,
file);
985 if (fseek(
file, _pos, SEEK_SET) == 0)
995 long pos = ftell(
file);
999 if (fseek(
file, 0, SEEK_END) != 0)
1006 if (fseek(
file, pos, SEEK_SET) != 0)
1020 panic_if(pos < 0,
"Failed to get file position.");
1037 if (fseek(
file, pos, SEEK_SET) != 0) {
1038 fatal(
"Failed seek to current position (%i) in '%s'", pos,
_name);
1052 ArmSemihostingParams::create()
void ccprintf(cp::Print &print)
void write(ThreadContext *tc, uint64_t val, ByteOrder endian)
Implementation of the ':semihosting-features' magic file.
RetErrno callHeapInfo64(ThreadContext *tc, Addr block_addr)
virtual System * getSystemPtr()=0
RetErrno callSeek(ThreadContext *tc, Handle handle, uint64_t pos)
int64_t flen() override
Get the length of a file in bytes.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
#define fatal(...)
This implements a cprintf based fatal() function.
bool sectionExists(const std::string §ion)
void serialize(CheckpointOut &cp) const override
Serialize an object.
void serialize(CheckpointOut &cp) const override
Serialize an object.
bool isTTY() const override
Check if a file corresponds to a TTY device.
void serialize(CheckpointOut &cp) const override
Serialize an object.
static FILE * getSTDIO(const char *stream_name, const std::string &name, const char *mode)
RetErrno callErrno(ThreadContext *tc)
static std::stack< std::string > path
State(const ThreadContext *tc)
ArmSemihosting(const ArmSemihostingParams *p)
static std::unique_ptr< FileBase > create(ArmSemihosting &parent, const std::string &fname, const char *mode)
std::vector< std::unique_ptr< FileBase > > files
static const std::map< const std::string, FILE * > stdioMap
virtual RegVal readIntReg(RegIndex reg_idx) const =0
RetErrno callTime(ThreadContext *tc)
void unserialize(CheckpointIn &cp) override
Unserialize an object.
This proxy attempts to translate virtual addresses using the TLBs.
void serialize(CheckpointOut &cp) const override
Serialize an object.
RetErrno callClose(ThreadContext *tc, Handle handle)
void unserialize(CheckpointIn &cp) override
Unserialize an object.
static RetErrno retError(SemiErrno e)
static void decodeAddrOffset(Addr offset, uint8_t &func)
bool call64(ThreadContext *tc, bool gem5_ops)
Perform an Arm Semihosting call from aarch64 code.
The request targets the secure memory space.
virtual PortProxy & getVirtProxy()=0
RetErrno callGem5PseudoOp32(ThreadContext *tc, uint32_t encoded_func)
T read(Addr address) const
Read sizeof(T) bytes from address and return as object T.
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
File(ArmSemihosting &_parent, const char *name, const char *mode)
double s
These variables equal the number of ticks in the unit of time they're named after in a double...
Tick Frequency
The simulated frequency of curTick(). (In ticks per second)
virtual int64_t read(uint8_t *buffer, uint64_t size)
Read data from file.
ThreadContext is the external interface to all thread state for anything outside of the CPU...
RetErrno callClock(ThreadContext *tc)
virtual int64_t seek(uint64_t pos)
Seek to an absolute position in the file.
RetErrno callWrite0(ThreadContext *tc, InPlaceArg str)
static const std::vector< const char * > fmodes
RetErrno callTickFreq(ThreadContext *tc)
const std::string cmdLine
static void store(ThreadContext *tc, const T &ret)
int64_t write(const uint8_t *buffer, uint64_t size) override
Write data to file.
RetErrno callElapsed64(ThreadContext *tc, InPlaceArg ticks)
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
#define UNSERIALIZE_SCALAR(scalar)
bool call32(ThreadContext *tc, bool gem5_ops)
Perform an Arm Semihosting call from aarch32 code.
Tick curTick()
The current simulated tick.
int64_t seek(uint64_t pos) override
Seek to an absolute position in the file.
std::string csprintf(const char *format, const Args &...args)
Internal state for open files.
int64_t seek(uint64_t pos) override
Seek to an absolute position in the file.
void writeBlob(Addr addr, const void *p, int size) const
Same as tryWriteBlob, but insists on success.
Semihosting for AArch32 and AArch64.
uint64_t semiTick(Tick tick) const
int64_t read(uint8_t *buffer, uint64_t size) override
Read data from file.
void paramOut(CheckpointOut &cp, const string &name, ExtMachInst const &machInst)
static PortProxy & portProxy(ThreadContext *tc)
static const std::map< uint32_t, SemiCall > calls
#define warn_if(cond,...)
Conditional warning macro that checks the supplied condition and only prints a warning if the conditi...
AddrRangeList getConfAddrRanges() const
Get the memory ranges for all memories that are to be reported to the configuration table...
int64_t openImpl(bool unserialize)
RetErrno callOpen(ThreadContext *tc, const Addr name_base, int fmode, size_t name_size)
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
std::ostream & operator<<(std::ostream &os, const ArmSemihosting::InPlaceArg &ipa)
std::pair< uint64_t, SemiErrno > RetErrno
int64_t read(uint8_t *buffer, uint64_t size) override
Read data from file.
RetErrno callElapsed32(ThreadContext *tc, InPlaceArg low, InPlaceArg high)
The physical memory encapsulates all memories in the system and provides basic functionality for acce...
RetErrno callGem5PseudoOp64(ThreadContext *tc, uint64_t encoded_func)
static void store(ThreadContext *tc, const T &ret)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
#define ULL(N)
uint64_t constant
RetErrno callRemove(ThreadContext *tc, Addr name_base, size_t name_size)
std::string readString(ThreadContext *tc, Addr ptr, size_t len)
static RetErrno retOK(uint64_t r)
RetErrno callReadC(ThreadContext *tc)
void readBlob(Addr addr, void *p, int size) const
Higher level interfaces based on the above.
RetErrno callFLen(ThreadContext *tc, Handle handle)
RetErrno callRename(ThreadContext *tc, Addr from_addr, size_t from_size, Addr to_addr, size_t to_size)
#define SERIALIZE_SCALAR(scalar)
static const std::vector< uint8_t > features
RetErrno callSystem(ThreadContext *tc, Addr cmd_addr, size_t cmd_size)
This object is a proxy for a port or other object which implements the functional response protocol...
void readString(std::string &str, Addr addr) const
Same as tryReadString, but insists on success.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
virtual const std::string name() const
void exitSimLoop(const std::string &message, int exit_code, Tick when, Tick repeat, bool serialize)
Schedule an event to exit the simulation loop (returning to Python) at the end of the current cycle (...
static const std::map< uint64_t, const char * > exitCodes
RetErrno callTmpNam(ThreadContext *tc, Addr buffer, uint64_t id, size_t size)
RetErrno callIsTTY(ThreadContext *tc, Handle handle)
std::ostream CheckpointOut
State(const ThreadContext *tc)
void semiExit(uint64_t code, uint64_t subcode)
static const std::string & currentSection()
Gets the fully-qualified name of the active section.
PhysicalMemory & getPhysMem()
Get a pointer to access the physical memory of the system.
const unsigned tickShift
Number of bits to right shift gem5 ticks to fit in a uint32_t.
void paramIn(CheckpointIn &cp, const string &name, ExtMachInst &machInst)
const time_t timeBase
Base time when the simulation started.
unsigned calcTickShift() const
RetErrno callIsError(ThreadContext *tc, int64_t status)
void write(Addr address, const T &data) const
Write object T to address.
RetErrno callExit64(ThreadContext *tc, uint64_t code, uint64_t subcode)
Semihosting call information structure.
RetErrno callRead(ThreadContext *tc, Handle handle, Addr buffer, size_t size)
bool inSecureState(ThreadContext *tc)
RetErrno callExit32(ThreadContext *tc, InPlaceArg code)
RetErrno callExitExtended(ThreadContext *tc, uint64_t code, uint64_t subcode)
uint64_t read(ThreadContext *tc, ByteOrder endian)
RetErrno callHeapInfo32(ThreadContext *tc, Addr block_addr)
virtual int64_t write(const uint8_t *buffer, uint64_t size)
Write data to file.
Scoped checkpoint section helper class.
RetErrno callWrite(ThreadContext *tc, Handle handle, Addr buffer, size_t size)
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
RetErrno callWriteC(ThreadContext *tc, InPlaceArg c)
virtual int64_t flen()
Get the length of a file in bytes.
time_t mkutctime(struct tm *time)
FileFeatures(ArmSemihosting &_parent, const char *name, const char *mode)
Abstract superclass for simulation objects.
RetErrno callGetCmdLine(ThreadContext *tc, Addr addr, InPlaceArg size_arg)
ByteOrder byteOrder(const ThreadContext *tc)
int64_t close() override
Close the file.
void gatherHeapInfo(ThreadContext *tc, bool aarch64, Addr &heap_base, Addr &heap_limit, Addr &stack_base, Addr &stack_limit)