gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
semihosting.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018, 2019 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #ifndef __ARCH_ARM_SEMIHOSTING_HH__
39 #define __ARCH_ARM_SEMIHOSTING_HH__
40 
41 #include <cstdio>
42 #include <functional>
43 #include <map>
44 #include <memory>
45 #include <utility>
46 #include <vector>
47 
48 #include "arch/arm/intregs.hh"
49 #include "arch/arm/utility.hh"
50 #include "cpu/thread_context.hh"
51 #include "mem/port_proxy.hh"
52 #include "sim/guest_abi.hh"
53 #include "sim/sim_object.hh"
54 
55 struct ArmSemihostingParams;
56 class SerialDevice;
57 
72 class ArmSemihosting : public SimObject
73 {
74  public:
75 
76  static PortProxy &portProxy(ThreadContext *tc);
77 
78  struct AbiBase
79  {
80  template <typename Arg>
81  class StateBase
82  {
83  private:
86 
87  public:
88  StateBase(const ThreadContext *tc, Addr arg_pointer) :
89  argPointer(arg_pointer), endian(ArmISA::byteOrder(tc))
90  {}
91 
92  /*
93  * These two methods are used to both read an argument or its
94  * address, and to move position on to the next location. Normally
95  * State would be more passive, but since it behaves almost the
96  * same no matter what the argument type is we can simplify and
97  * consolidate a little bit by centralizing these methods.
98  */
99 
100  // Return the address of an argument slot and move past it.
101  Addr
103  {
104  Addr addr = argPointer;
105  argPointer += sizeof(Arg);
106  return addr;
107  }
108 
109  // Read the value in an argument slot and move past it.
110  Arg
111  get(ThreadContext *tc)
112  {
113  Arg arg = ArmSemihosting::portProxy(tc).read<Arg>(
114  argPointer, endian);
115  argPointer += sizeof(Arg);
116  return arg;
117  }
118 
119  using ArgType = Arg;
120  };
121  };
122 
123  struct Abi64 : public AbiBase
124  {
125  class State : public StateBase<uint64_t>
126  {
127  public:
128  // For 64 bit semihosting, the params are pointer to by X1.
129  explicit State(const ThreadContext *tc) :
130  StateBase<uint64_t>(tc, tc->readIntReg(ArmISA::INTREG_X1))
131  {}
132  };
133  };
134 
135  struct Abi32 : public AbiBase
136  {
137  class State : public StateBase<uint64_t>
138  {
139  public:
140  // For 32 bit semihosting, the params are pointer to by R1.
141  explicit State(const ThreadContext *tc) :
142  StateBase<uint64_t>(tc, tc->readIntReg(ArmISA::INTREG_R1))
143  {}
144  };
145  };
146 
147  // Use this argument type when you need to modify an argument in place.
148  // This will give you the address of the argument itself and the size of
149  // each argument slot, rather than the actual value of the argument.
150  struct InPlaceArg
151  {
153  size_t size;
154 
155  InPlaceArg(Addr _addr, size_t _size) : addr(_addr), size(_size) {}
156 
157  // A helper function to read the argument since the guest ABI mechanism
158  // didn't do that for us.
159  uint64_t
161  {
162  auto &proxy = ArmSemihosting::portProxy(tc);
163  if (size == 8)
164  return proxy.read<uint64_t>(addr, endian);
165  else if (size == 4)
166  return proxy.read<uint32_t>(addr, endian);
167  else
168  panic("Unexpected semihosting argument size %d.", size);
169  }
170 
171  // A helper function to write to the argument's slot in the params.
172  void
174  {
175  auto &proxy = ArmSemihosting::portProxy(tc);
176  if (size == 8)
177  proxy.write<uint64_t>(addr, val, endian);
178  else if (size == 4)
179  proxy.write<uint32_t>(addr, val, endian);
180  else
181  panic("Unexpected semihosting argument size %d.", size);
182  }
183  };
184 
185  enum Operation {
186  SYS_OPEN = 0x01,
187  SYS_CLOSE = 0x02,
188  SYS_WRITEC = 0x03,
189  SYS_WRITE0 = 0x04,
190  SYS_WRITE = 0x05,
191  SYS_READ = 0x06,
192  SYS_READC = 0x07,
193  SYS_ISERROR = 0x08,
194  SYS_ISTTY = 0x09,
195  SYS_SEEK = 0x0A,
196  SYS_FLEN = 0x0C,
197  SYS_TMPNAM = 0x0D,
198  SYS_REMOVE = 0x0E,
199  SYS_RENAME = 0x0F,
200  SYS_CLOCK = 0x10,
201  SYS_TIME = 0x11,
202  SYS_SYSTEM = 0x12,
203  SYS_ERRNO = 0x13,
205  SYS_HEAPINFO = 0x16,
206  SYS_EXIT = 0x18,
208  SYS_ELAPSED = 0x30,
209  SYS_TICKFREQ = 0x31,
210 
212 
214  };
215 
216  ArmSemihosting(const ArmSemihostingParams *p);
217 
219  bool call64(ThreadContext *tc, bool gem5_ops);
221  bool call32(ThreadContext *tc, bool gem5_ops);
222 
223  public: // SimObject and related interfaces
224  void serialize(CheckpointOut &cp) const override;
225  void unserialize(CheckpointIn &cp) override;
226 
227  protected: // Configuration
228  const std::string cmdLine;
231 
236  const time_t timeBase;
237 
239  const unsigned tickShift;
240 
241  protected: // Internal state
242  typedef uint64_t SemiErrno;
243  SemiErrno semiErrno;
244 
245  protected: // File IO
259  class FileBase : public Serializable
260  {
261  public:
262  FileBase(ArmSemihosting &_parent, const char *name, const char *_mode)
263  : parent(_parent), _name(name), mode(_mode) {}
264  virtual ~FileBase() {};
265 
266  FileBase() = delete;
267  FileBase(FileBase &) = delete;
268 
269  static std::unique_ptr<FileBase> create(
270  ArmSemihosting &parent, const std::string &fname,
271  const char *mode);
272  static std::unique_ptr<FileBase> create(
273  ArmSemihosting &parent, CheckpointIn &cp, const std::string &sec);
274 
275  void serialize(CheckpointOut &cp) const override;
276  void unserialize(CheckpointIn &cp) override;
277 
278  const std::string &fileName() { return _name; }
279 
280  public:
296  virtual int64_t open() { return 0; }
297 
303  virtual int64_t close() { return 0; }
304 
310  virtual bool isTTY() const { return false; }
311 
317  virtual int64_t read(uint8_t *buffer, uint64_t size);
318 
324  virtual int64_t write(const uint8_t *buffer, uint64_t size);
325 
332  virtual int64_t seek(uint64_t pos);
333 
339  virtual int64_t flen();
340 
343  protected:
345  std::string _name;
346  std::string mode;
347  };
348 
350  class FileFeatures : public FileBase
351  {
352  public:
353  FileFeatures(ArmSemihosting &_parent,
354  const char *name, const char *mode);
355 
356  void serialize(CheckpointOut &cp) const override;
357  void unserialize(CheckpointIn &cp) override;
358 
359  int64_t read(uint8_t *buffer, uint64_t size) override;
360  int64_t seek(uint64_t pos) override;
361 
362  protected:
363  size_t pos;
364  };
365 
366  class File : public FileBase
367  {
368  public:
369  File(ArmSemihosting &_parent, const char *name, const char *mode);
370  ~File();
371 
372  void serialize(CheckpointOut &cp) const override;
373  void unserialize(CheckpointIn &cp) override;
374 
375  int64_t open() override { return openImpl(false); }
376  int64_t close() override;
377  bool isTTY() const override;
378  int64_t read(uint8_t *buffer, uint64_t size) override;
379  int64_t write(const uint8_t *buffer, uint64_t size) override;
380  int64_t seek(uint64_t pos) override;
381  int64_t flen() override;
382 
383  protected:
384  int64_t openImpl(bool unserialize);
385  bool needClose() const { return !isTTY(); }
386 
387  FILE *file;
388  };
389 
390  std::string filesRootDir;
392  using Handle = size_t;
393  FILE *stdin;
394  FILE *stdout;
395  FILE *stderr;
396 
397  protected: // Helper functions
398  unsigned
400  {
401  int msb = findMsbSet(SimClock::Frequency);
402  return msb > 31 ? msb - 31 : 0;
403  }
404  uint64_t
405  semiTick(Tick tick) const
406  {
407  return tick >> tickShift;
408  }
409  void semiExit(uint64_t code, uint64_t subcode);
410  std::string readString(ThreadContext *tc, Addr ptr, size_t len);
411 
412  public:
414 
415  private:
416  static RetErrno
417  retError(SemiErrno e)
418  {
419  return RetErrno((uint64_t)-1, e);
420  }
421 
422  static RetErrno
423  retOK(uint64_t r)
424  {
425  return RetErrno(r, 0);
426  }
427 
435  struct SemiCall
436  {
438  const char *name;
439 
440  // A type for member functions implementing semihosting calls.
441  template <typename ...Args>
442  using Implementation =
443  RetErrno (ArmSemihosting::*)(ThreadContext *tc, Args... args);
444 
445  // Since guest ABI doesn't know how to call member function pointers,
446  // this template builds a wrapper that takes care of that.
447  template <typename ...Args>
448  static inline std::function<RetErrno(ThreadContext *tc, Args... args)>
450  {
451  return [sh, impl](ThreadContext *tc, Args... args) {
452  return (sh->*impl)(tc, args...);
453  };
454  }
455 
456  // A type for functions which dispatch semihosting calls through the
457  // guest ABI mechanism.
458  using Dispatcher =
459  std::function<RetErrno(ArmSemihosting *sh, ThreadContext *tc)>;
460  using Dumper = std::function<std::string(ThreadContext *tc)>;
461 
462  // Dispatchers for 32 and 64 bits.
465 
466  // Dumpers which print semihosting calls and their arguments.
469 
470  // A function which builds a dispatcher for a semihosting call.
471  template <typename Abi, typename ...Args>
472  static inline Dispatcher
474  {
475  // This lambda is the dispatcher we're building.
476  return [impl](ArmSemihosting *sh, ThreadContext *tc) {
477  auto wrapper = wrapImpl(sh, impl);
478  return invokeSimcall<Abi>(tc, wrapper);
479  };
480  }
481 
482  // A function which builds a dumper for a semihosting call.
483  template <typename Abi, typename ...Args>
484  static inline Dumper
486  {
487  // This lambda is the dumper we're building.
488  return [name](ThreadContext *tc) -> std::string {
489  return dumpSimcall<Abi, RetErrno, Args...>(name, tc);
490  };
491  }
492 
493  // When there's one implementation, use it for both 32 and 64 bits.
494  template <typename ...Args>
495  SemiCall(const char *_name, Implementation<Args...> common) :
496  name(_name), call32(buildDispatcher<Abi32>(common)),
497  call64(buildDispatcher<Abi64>(common)),
498  dump32(buildDumper<Abi32>(_name, common)),
499  dump64(buildDumper<Abi64>(_name, common))
500  {}
501 
502  // When there are two, use one for 32 bits and one for 64 bits.
503  template <typename ...Args32, typename ...Args64>
504  SemiCall(const char *_name, Implementation<Args32...> impl32,
505  Implementation<Args64...> impl64) :
506  name(_name), call32(buildDispatcher<Abi32>(impl32)),
507  call64(buildDispatcher<Abi64>(impl64)),
508  dump32(buildDumper<Abi32>(_name, impl32)),
509  dump64(buildDumper<Abi64>(_name, impl64))
510  {}
511  };
512 
513  RetErrno callOpen(ThreadContext *tc, const Addr name_base,
514  int fmode, size_t name_size);
515  RetErrno callClose(ThreadContext *tc, Handle handle);
516  RetErrno callWriteC(ThreadContext *tc, InPlaceArg c);
517  RetErrno callWrite0(ThreadContext *tc, InPlaceArg str);
518  RetErrno callWrite(ThreadContext *tc, Handle handle,
519  Addr buffer, size_t size);
520  RetErrno callRead(ThreadContext *tc, Handle handle,
521  Addr buffer, size_t size);
522  RetErrno callReadC(ThreadContext *tc);
523  RetErrno callIsError(ThreadContext *tc, int64_t status);
524  RetErrno callIsTTY(ThreadContext *tc, Handle handle);
525  RetErrno callSeek(ThreadContext *tc, Handle handle, uint64_t pos);
526  RetErrno callFLen(ThreadContext *tc, Handle handle);
527  RetErrno callTmpNam(ThreadContext *tc, Addr buffer,
528  uint64_t id, size_t size);
529  RetErrno callRemove(ThreadContext *tc, Addr name_base, size_t name_size);
530  RetErrno callRename(ThreadContext *tc, Addr from_addr, size_t from_size,
531  Addr to_addr, size_t to_size);
532  RetErrno callClock(ThreadContext *tc);
533  RetErrno callTime(ThreadContext *tc);
534  RetErrno callSystem(ThreadContext *tc, Addr cmd_addr, size_t cmd_size);
535  RetErrno callErrno(ThreadContext *tc);
536  RetErrno callGetCmdLine(ThreadContext *tc, Addr addr, InPlaceArg size_arg);
537 
538  void gatherHeapInfo(ThreadContext *tc, bool aarch64,
539  Addr &heap_base, Addr &heap_limit,
540  Addr &stack_base, Addr &stack_limit);
541  RetErrno callHeapInfo32(ThreadContext *tc, Addr block_addr);
542  RetErrno callHeapInfo64(ThreadContext *tc, Addr block_addr);
543  RetErrno callExit32(ThreadContext *tc, InPlaceArg code);
544  RetErrno callExit64(ThreadContext *tc, uint64_t code, uint64_t subcode);
545  RetErrno callExitExtended(ThreadContext *tc, uint64_t code,
546  uint64_t subcode);
547 
548  RetErrno callElapsed32(ThreadContext *tc, InPlaceArg low, InPlaceArg high);
549  RetErrno callElapsed64(ThreadContext *tc, InPlaceArg ticks);
550  RetErrno callTickFreq(ThreadContext *tc);
551 
552  RetErrno callGem5PseudoOp32(ThreadContext *tc, uint32_t encoded_func);
553  RetErrno callGem5PseudoOp64(ThreadContext *tc, uint64_t encoded_func);
554 
555  template <typename Abi>
556  void
557  unrecognizedCall(ThreadContext *tc, const char *format, uint64_t op)
558  {
559  warn(format, op);
560  std::function<RetErrno(ThreadContext *tc)> retErr =
561  [](ThreadContext *tc) { return retError(EINVAL); };
562  invokeSimcall<Abi>(tc, retErr);
563  }
564 
565  static FILE *getSTDIO(const char *stream_name,
566  const std::string &name, const char *mode);
567 
568  static const std::map<uint32_t, SemiCall> calls;
570  static const std::map<uint64_t, const char *> exitCodes;
572  static const std::map<const std::string, FILE *> stdioMap;
573 };
574 
575 std::ostream &operator << (
576  std::ostream &os, const ArmSemihosting::InPlaceArg &ipa);
577 
578 namespace GuestABI
579 {
580 
581 template <typename Arg>
582 struct Argument<ArmSemihosting::Abi64, Arg,
583  typename std::enable_if<std::is_integral<Arg>::value>::type>
584 {
585  static Arg
587  {
588  return state.get(tc);
589  }
590 };
591 
592 template <typename Arg>
593 struct Argument<ArmSemihosting::Abi32, Arg,
594  typename std::enable_if<std::is_integral<Arg>::value>::type>
595 {
596  static Arg
598  {
599  if (std::is_signed<Arg>::value)
600  return sext<32>(state.get(tc));
601  else
602  return state.get(tc);
603  }
604 };
605 
606 template <typename Abi>
607 struct Argument<Abi, ArmSemihosting::InPlaceArg, typename std::enable_if<
608  std::is_base_of<ArmSemihosting::AbiBase, Abi>::value>::type>
609 {
611  get(ThreadContext *tc, typename Abi::State &state)
612  {
614  state.getAddr(), sizeof(typename Abi::State::ArgType));
615  }
616 };
617 
618 template <>
620 {
621  static void
623  {
624  tc->setIntReg(ArmISA::INTREG_R0, err.first);
625  }
626 };
627 
628 template <>
630 {
631  static void
633  {
634  tc->setIntReg(ArmISA::INTREG_X0, err.first);
635  }
636 };
637 
638 } // namespace GuestABI
639 
640 #endif // __ARCH_ARM_SEMIHOSTING_HH__
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
std::string dumpSimcall(std::string name, ThreadContext *tc, std::function< Ret(ThreadContext *, Args...)> target=std::function< Ret(ThreadContext *, Args...)>())
Definition: guest_abi.hh:107
void write(ThreadContext *tc, uint64_t val, ByteOrder endian)
Definition: semihosting.hh:173
Implementation of the &#39;:semihosting-features&#39; magic file.
Definition: semihosting.hh:350
RetErrno callHeapInfo64(ThreadContext *tc, Addr block_addr)
Definition: semihosting.cc:594
RetErrno callSeek(ThreadContext *tc, Handle handle, uint64_t pos)
Definition: semihosting.cc:421
State(const ThreadContext *tc)
Definition: semihosting.hh:129
static Dispatcher buildDispatcher(Implementation< Args... > impl)
Definition: semihosting.hh:473
STL pair class.
Definition: stl.hh:58
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: semihosting.cc:215
static FILE * getSTDIO(const char *stream_name, const std::string &name, const char *mode)
Definition: semihosting.cc:751
RetErrno callErrno(ThreadContext *tc)
Definition: semihosting.cc:514
ArmSemihosting(const ArmSemihostingParams *p)
Definition: semihosting.cc:137
std::vector< std::unique_ptr< FileBase > > files
Definition: semihosting.hh:391
static const std::map< const std::string, FILE * > stdioMap
Definition: semihosting.hh:572
RetErrno callTime(ThreadContext *tc)
Definition: semihosting.cc:498
RetErrno callClose(ThreadContext *tc, Handle handle)
Definition: semihosting.cc:308
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: semihosting.cc:230
static RetErrno retError(SemiErrno e)
Definition: semihosting.hh:417
Bitfield< 8, 7 > sh
ip6_addr_t addr
Definition: inet.hh:330
bool call64(ThreadContext *tc, bool gem5_ops)
Perform an Arm Semihosting call from aarch64 code.
Definition: semihosting.cc:163
RetErrno callGem5PseudoOp32(ThreadContext *tc, uint32_t encoded_func)
Definition: semihosting.cc:725
T read(Addr address) const
Read sizeof(T) bytes from address and return as object T.
Definition: port_proxy.hh:282
StateBase(const ThreadContext *tc, Addr arg_pointer)
Definition: semihosting.hh:88
SemiCall(const char *_name, Implementation< Args32... > impl32, Implementation< Args64... > impl64)
Definition: semihosting.hh:504
const char * name
Call name.
Definition: semihosting.hh:438
Definition: ccregs.hh:41
Definition: cprintf.cc:40
Bitfield< 4, 0 > mode
Tick Frequency
The simulated frequency of curTick(). (In ticks per second)
Definition: core.cc:46
ThreadContext is the external interface to all thread state for anything outside of the CPU...
RetErrno callClock(ThreadContext *tc)
Definition: semihosting.cc:492
Bitfield< 17 > os
Definition: misc.hh:803
STL vector class.
Definition: stl.hh:37
RetErrno callWrite0(ThreadContext *tc, InPlaceArg str)
Definition: semihosting.cc:341
Bitfield< 63 > val
Definition: misc.hh:769
virtual int64_t open()
Open the the file.
Definition: semihosting.hh:296
static void store(ThreadContext *tc, const ArmSemihosting::RetErrno &err)
Definition: semihosting.hh:622
static const std::vector< const char * > fmodes
Definition: semihosting.hh:569
State(const ThreadContext *tc)
Definition: semihosting.hh:141
std::function< std::string(ThreadContext *tc)> Dumper
Definition: semihosting.hh:460
RetErrno callTickFreq(ThreadContext *tc)
Definition: semihosting.cc:664
const Addr memReserve
Definition: semihosting.hh:229
const std::string cmdLine
Definition: semihosting.hh:228
Bitfield< 5, 0 > status
Bitfield< 19, 16 > impl
Definition: mt_constants.hh:87
RetErrno(ArmSemihosting::*)(ThreadContext *tc, Args... args) Implementation
Definition: semihosting.hh:443
RetErrno callElapsed64(ThreadContext *tc, InPlaceArg ticks)
Definition: semihosting.cc:656
uint8_t type
Definition: inet.hh:328
bool call32(ThreadContext *tc, bool gem5_ops)
Perform an Arm Semihosting call from aarch32 code.
Definition: semihosting.cc:189
bool needClose() const
Definition: semihosting.hh:385
PortProxy Object Declaration.
Internal state for open files.
Definition: semihosting.hh:259
virtual bool isTTY() const
Check if a file corresponds to a TTY device.
Definition: semihosting.hh:310
static std::function< RetErrno(ThreadContext *tc, Args... args)> wrapImpl(ArmSemihosting *sh, Implementation< Args... > impl)
Definition: semihosting.hh:449
uint64_t Tick
Tick count type.
Definition: types.hh:61
const std::string & fileName()
Definition: semihosting.hh:278
Semihosting for AArch32 and AArch64.
Definition: semihosting.hh:72
uint64_t semiTick(Tick tick) const
Definition: semihosting.hh:405
ByteOrder
Definition: types.hh:245
static PortProxy & portProxy(ThreadContext *tc)
Definition: semihosting.cc:242
static const std::map< uint32_t, SemiCall > calls
Definition: semihosting.hh:568
Bitfield< 18, 16 > len
FileBase(ArmSemihosting &_parent, const char *name, const char *_mode)
Definition: semihosting.hh:262
RetErrno callOpen(ThreadContext *tc, const Addr name_base, int fmode, size_t name_size)
Definition: semihosting.cc:280
std::function< RetErrno(ArmSemihosting *sh, ThreadContext *tc)> Dispatcher
Definition: semihosting.hh:459
std::pair< uint64_t, SemiErrno > RetErrno
Definition: semihosting.hh:413
InPlaceArg(Addr _addr, size_t _size)
Definition: semihosting.hh:155
RetErrno callElapsed32(ThreadContext *tc, InPlaceArg low, InPlaceArg high)
Definition: semihosting.cc:642
Base class for serial devices such as terminals.
Definition: serial.hh:90
RetErrno callGem5PseudoOp64(ThreadContext *tc, uint64_t encoded_func)
Definition: semihosting.cc:738
virtual void setIntReg(RegIndex reg_idx, RegVal val)=0
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
RetErrno callRemove(ThreadContext *tc, Addr name_base, size_t name_size)
Definition: semihosting.cc:466
std::string readString(ThreadContext *tc, Addr ptr, size_t len)
Definition: semihosting.cc:269
static RetErrno retOK(uint64_t r)
Definition: semihosting.hh:423
RetErrno callReadC(ThreadContext *tc)
Definition: semihosting.cc:395
Bitfield< 34 > aarch64
Definition: types.hh:89
Basic support for object serialization.
Definition: serialize.hh:166
RetErrno callFLen(ThreadContext *tc, Handle handle)
Definition: semihosting.cc:435
RetErrno callRename(ThreadContext *tc, Addr from_addr, size_t from_size, Addr to_addr, size_t to_size)
Definition: semihosting.cc:478
static const std::vector< uint8_t > features
Definition: semihosting.hh:571
RetErrno callSystem(ThreadContext *tc, Addr cmd_addr, size_t cmd_size)
Definition: semihosting.cc:504
This object is a proxy for a port or other object which implements the functional response protocol...
Definition: port_proxy.hh:80
Bitfield< 9 > e
virtual const std::string name() const
Definition: sim_object.hh:129
const Addr stackSize
Definition: semihosting.hh:230
static const std::map< uint64_t, const char * > exitCodes
Definition: semihosting.hh:570
Bitfield< 29 > c
RetErrno callTmpNam(ThreadContext *tc, Addr buffer, uint64_t id, size_t size)
Definition: semihosting.cc:449
RetErrno callIsTTY(ThreadContext *tc, Handle handle)
Definition: semihosting.cc:407
std::ostream CheckpointOut
Definition: serialize.hh:63
Bitfield< 31, 29 > format
void semiExit(uint64_t code, uint64_t subcode)
Definition: semihosting.cc:630
virtual int64_t close()
Close the file.
Definition: semihosting.hh:303
static Dumper buildDumper(const char *name, Implementation< Args... > impl)
Definition: semihosting.hh:485
int findMsbSet(uint64_t val)
Returns the bit position of the MSB that is set in the input.
Definition: bitfield.hh:203
uint64_t SemiErrno
Definition: semihosting.hh:242
const unsigned tickShift
Number of bits to right shift gem5 ticks to fit in a uint32_t.
Definition: semihosting.hh:239
const time_t timeBase
Base time when the simulation started.
Definition: semihosting.hh:236
int64_t open() override
Open the the file.
Definition: semihosting.hh:375
unsigned calcTickShift() const
Definition: semihosting.hh:399
RetErrno callIsError(ThreadContext *tc, int64_t status)
Definition: semihosting.cc:401
#define warn(...)
Definition: logging.hh:208
RetErrno callExit64(ThreadContext *tc, uint64_t code, uint64_t subcode)
Definition: semihosting.cc:615
Semihosting call information structure.
Definition: semihosting.hh:435
RetErrno callRead(ThreadContext *tc, Handle handle, Addr buffer, size_t size)
Definition: semihosting.cc:374
Bitfield< 4 > op
Definition: types.hh:78
static void store(ThreadContext *tc, const ArmSemihosting::RetErrno &err)
Definition: semihosting.hh:632
void unrecognizedCall(ThreadContext *tc, const char *format, uint64_t op)
Definition: semihosting.hh:557
RetErrno callExit32(ThreadContext *tc, InPlaceArg code)
Definition: semihosting.cc:608
RetErrno callExitExtended(ThreadContext *tc, uint64_t code, uint64_t subcode)
Definition: semihosting.cc:622
uint64_t read(ThreadContext *tc, ByteOrder endian)
Definition: semihosting.hh:160
RetErrno callHeapInfo32(ThreadContext *tc, Addr block_addr)
Definition: semihosting.cc:579
RetErrno callWrite(ThreadContext *tc, Handle handle, Addr buffer, size_t size)
Definition: semihosting.cc:353
Bitfield< 0 > p
RetErrno callWriteC(ThreadContext *tc, InPlaceArg c)
Definition: semihosting.cc:330
Abstract superclass for simulation objects.
Definition: sim_object.hh:93
SemiErrno semiErrno
Definition: semihosting.hh:243
SemiCall(const char *_name, Implementation< Args... > common)
Definition: semihosting.hh:495
ArmSemihosting & parent
Definition: semihosting.hh:344
RetErrno callGetCmdLine(ThreadContext *tc, Addr addr, InPlaceArg size_arg)
Definition: semihosting.cc:521
ByteOrder byteOrder(const ThreadContext *tc)
Definition: utility.hh:437
void gatherHeapInfo(ThreadContext *tc, bool aarch64, Addr &heap_base, Addr &heap_limit, Addr &stack_base, Addr &stack_limit)
Definition: semihosting.cc:538
std::ostream & operator<<(std::ostream &os, const ArmSemihosting::InPlaceArg &ipa)
std::string filesRootDir
Definition: semihosting.hh:390

Generated on Thu May 28 2020 16:11:02 for gem5 by doxygen 1.8.13