gem5
[DEVELOP-FOR-23.0]
|
Semihosting call information structure. More...
Public Types | |
template<typename ... Args> | |
using | Implementation = RetErrno(ArmSemihosting::*)(ThreadContext *tc, Args... args) |
using | Dispatcher = std::function< RetErrno(ArmSemihosting *sh, ThreadContext *tc)> |
using | Dumper = std::function< std::string(ThreadContext *tc)> |
Public Member Functions | |
template<typename ... Args> | |
SemiCall (const char *_name, Implementation< Args... > common) | |
template<typename ... Args32, typename ... Args64> | |
SemiCall (const char *_name, Implementation< Args32... > impl32, Implementation< Args64... > impl64) | |
Static Public Member Functions | |
template<typename ... Args> | |
static std::function< RetErrno(ThreadContext *tc, Args... args)> | wrapImpl (ArmSemihosting *sh, Implementation< Args... > impl) |
template<typename Abi , typename ... Args> | |
static Dispatcher | buildDispatcher (Implementation< Args... > impl) |
template<typename Abi , typename ... Args> | |
static Dumper | buildDumper (const char *name, Implementation< Args... > impl) |
Public Attributes | |
const char * | name |
Call name. More... | |
Dispatcher | call32 |
Dispatcher | call64 |
Dumper | dump32 |
Dumper | dump64 |
Semihosting call information structure.
This structure describes how a semi-hosting call is implemented. It contains debug information (e.g., the name of the call), and a way to invoke it in a particular context.
Definition at line 455 of file semihosting.hh.
using gem5::ArmSemihosting::SemiCall::Dispatcher = std::function<RetErrno(ArmSemihosting *sh, ThreadContext *tc)> |
Definition at line 479 of file semihosting.hh.
using gem5::ArmSemihosting::SemiCall::Dumper = std::function<std::string(ThreadContext *tc)> |
Definition at line 480 of file semihosting.hh.
using gem5::ArmSemihosting::SemiCall::Implementation = RetErrno (ArmSemihosting::*)(ThreadContext *tc, Args... args) |
Definition at line 463 of file semihosting.hh.
|
inline |
Definition at line 515 of file semihosting.hh.
|
inline |
Definition at line 524 of file semihosting.hh.
|
inlinestatic |
Definition at line 493 of file semihosting.hh.
References gem5::MipsISA::impl, gem5::ArmISA::sh, and wrapImpl().
|
inlinestatic |
Definition at line 505 of file semihosting.hh.
References gem5::dumpSimcall(), and name.
|
inlinestatic |
Definition at line 469 of file semihosting.hh.
References gem5::MipsISA::impl, and gem5::ArmISA::sh.
Referenced by buildDispatcher().
Dispatcher gem5::ArmSemihosting::SemiCall::call32 |
Definition at line 483 of file semihosting.hh.
Referenced by gem5::ArmSemihosting::call32().
Dispatcher gem5::ArmSemihosting::SemiCall::call64 |
Definition at line 484 of file semihosting.hh.
Referenced by gem5::ArmSemihosting::call64().
Dumper gem5::ArmSemihosting::SemiCall::dump32 |
Definition at line 487 of file semihosting.hh.
Referenced by gem5::ArmSemihosting::call32().
Dumper gem5::ArmSemihosting::SemiCall::dump64 |
Definition at line 488 of file semihosting.hh.
Referenced by gem5::ArmSemihosting::call64().
const char* gem5::ArmSemihosting::SemiCall::name |