cpu,sim-se: move error checks in syscall methods
authorBrandon Potter <brandon.potter@amd.com>
Sun, 1 Dec 2019 19:23:22 +0000 (14:23 -0500)
committerBrandon Potter <Brandon.Potter@amd.com>
Tue, 3 Dec 2019 16:52:59 +0000 (16:52 +0000)
There is a check on a global flag denoting that the simulator
has been configured to run in fullsystem mode. The check is
conducted at runtime during calls to syscall methods.

The high-level models are checking the flag when the check
could be conducted further down the call chain (nearer to the
actual Process invocation). Moving the checks should result
in less copy-pasta as new models are developed. It might be
argued that the checks should stay in place since an error
would detected earlier; that may be true, but the error
would be the same and the simulation should fail in either
case. This arrangement requires fewer lines of code.

The changeset also changes the check into a fatal error
instead of a panic since usage (in fs mode) should result
in immediate corruption.

Change-Id: If387e27f166ac1374f3fe8b7befe3546e69adba7
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/23240
Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Tested-by: kokoro <noreply+kokoro@google.com>
src/cpu/minor/exec_context.hh
src/cpu/o3/dyn_inst_impl.hh
src/cpu/o3/thread_state.hh
src/cpu/simple/exec_context.hh
src/cpu/simple_thread.hh

index 87787f011c2c41135b3754b7105a00a1252b560e..66e313eb37dfea032ff7523f492475011c9fdbdc 100644 (file)
@@ -389,9 +389,6 @@ class ExecContext : public ::ExecContext
     void
     syscall(int64_t callnum, Fault *fault) override
     {
-        if (FullSystem)
-            panic("Syscall emulation isn't available in FS mode.\n");
-
         thread.syscall(callnum, fault);
     }
 
index fbeb3c2915b611fe6b5b8972f9107a83077c434f..22d89ec0b9364419be7f03d279bcd9e0bd7145bc 100644 (file)
@@ -45,7 +45,6 @@
 
 #include "base/cp_annotate.hh"
 #include "cpu/o3/dyn_inst.hh"
-#include "sim/full_system.hh"
 #include "debug/O3PipeView.hh"
 
 template <class Impl>
@@ -195,9 +194,6 @@ template <class Impl>
 void
 BaseO3DynInst<Impl>::syscall(int64_t callnum, Fault *fault)
 {
-    if (FullSystem)
-        panic("Syscall emulation isn't available in FS mode.\n");
-
     // HACK: check CPU's nextPC before and after syscall. If it
     // changes, update this instruction's nextPC because the syscall
     // must have changed the nextPC.
index a4a12330f322895978087e74d24b8d96bba6e324..a0c3a8171b59e53e9817a59e5a5b5600eaa75d43 100644 (file)
@@ -150,6 +150,7 @@ struct O3ThreadState : public ThreadState {
     /** Handles the syscall. */
     void syscall(int64_t callnum, Fault *fault)
     {
+        fatal_if(FullSystem, "System call emulation is unavailable!");
         process->syscall(callnum, tc, fault);
     }
 
index 91f7ec5268f77a44763d4b0f55a8ea9c2191c101..4d26dfe2aa3e2b5ab20b47e46c309562ab3eb37a 100644 (file)
@@ -499,9 +499,6 @@ class SimpleExecContext : public ExecContext {
     void
     syscall(int64_t callnum, Fault *fault) override
     {
-        if (FullSystem)
-            panic("Syscall emulation isn't available in FS mode.");
-
         thread->syscall(callnum, fault);
     }
 
index f25e62249786eea775559c87e1deacf901417a65..387e74546d2c229b6b8e0c507419bb51e549e442 100644 (file)
@@ -66,6 +66,7 @@
 #include "mem/request.hh"
 #include "sim/byteswap.hh"
 #include "sim/eventq.hh"
+#include "sim/full_system.hh"
 #include "sim/process.hh"
 #include "sim/serialize.hh"
 #include "sim/system.hh"
@@ -610,6 +611,7 @@ class SimpleThread : public ThreadState, public ThreadContext
     void
     syscall(int64_t callnum, Fault *fault) override
     {
+        fatal_if(FullSystem, "System call emulation is unavailable!");
         process->syscall(callnum, this, fault);
     }