Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Mike Frysinger via Gdb-patches <gdb-patches@sourceware.org>
To: gdb-patches@sourceware.org
Subject: [PATCH 2/3] sim: callback: generate signal map
Date: Sun, 20 Jun 2021 23:55:04 -0400	[thread overview]
Message-ID: <20210621035505.29431-2-vapier@gentoo.org> (raw)
In-Reply-To: <20210621035505.29431-1-vapier@gentoo.org>

We've been generating the syscall/errno/open maps, but not the signal
map, even though we've been including them in the source constants.
---
 sim/common/callback.c |  3 +++
 sim/common/gentmap.c  | 24 ++++++++++++++++++++++++
 2 files changed, 27 insertions(+)

diff --git a/sim/common/callback.c b/sim/common/callback.c
index 071e7b149b97..aca0112853c4 100644
--- a/sim/common/callback.c
+++ b/sim/common/callback.c
@@ -32,6 +32,7 @@
 #include <limits.h>
 #include <errno.h>
 #include <fcntl.h>
+#include <signal.h>
 #include <time.h>
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -56,6 +57,7 @@ void sim_cb_eprintf (host_callback *, const char *, ...);
 
 extern CB_TARGET_DEFS_MAP cb_init_syscall_map[];
 extern CB_TARGET_DEFS_MAP cb_init_errno_map[];
+extern CB_TARGET_DEFS_MAP cb_init_signal_map[];
 extern CB_TARGET_DEFS_MAP cb_init_open_map[];
 
 /* Make sure the FD provided is ok.  If not, return non-zero
@@ -676,6 +678,7 @@ os_init (host_callback *p)
 
   p->syscall_map = cb_init_syscall_map;
   p->errno_map = cb_init_errno_map;
+  p->signal_map = cb_init_signal_map;
   p->open_map = cb_init_open_map;
 
   return 1;
diff --git a/sim/common/gentmap.c b/sim/common/gentmap.c
index 254ec3f11195..f1f1bc2c03f3 100644
--- a/sim/common/gentmap.c
+++ b/sim/common/gentmap.c
@@ -23,6 +23,13 @@ static struct tdefs errno_tdefs[] =  {
   { 0, 0 }
 };
 
+static struct tdefs signal_tdefs[] = {
+#define signal_defs
+#include "nltvals.def"
+#undef signal_defs
+  { 0, 0 }
+};
+
 static struct tdefs open_tdefs[] = {
 #define open_defs
 #include "nltvals.def"
@@ -51,6 +58,11 @@ gen_targ_vals_h (void)
     printf ("#define TARGET_%s %d\n", t->symbol, t->value);
   printf ("\n");
 
+  printf ("/* signal values */\n");
+  for (t = &signal_tdefs[0]; t->symbol; ++t)
+    printf ("#define TARGET_%s %d\n", t->symbol, t->value);
+  printf ("\n");
+
   printf ("/* open flag values */\n");
   for (t = &open_tdefs[0]; t->symbol; ++t)
     printf ("#define TARGET_%s 0x%x\n", t->symbol, t->value);
@@ -70,6 +82,7 @@ gen_targ_map_c (void)
   printf ("#include \"defs.h\"\n");
   printf ("#include <errno.h>\n");
   printf ("#include <fcntl.h>\n");
+  printf ("#include <signal.h>\n");
   printf ("#include \"ansidecl.h\"\n");
   printf ("#include \"sim/callback.h\"\n");
   printf ("#include \"targ-vals.h\"\n");
@@ -98,6 +111,17 @@ gen_targ_map_c (void)
   printf ("  { 0, 0, 0 }\n");
   printf ("};\n\n");
 
+  printf ("/* signals mapping table */\n");
+  printf ("CB_TARGET_DEFS_MAP cb_init_signal_map[] = {\n");
+  for (t = &signal_tdefs[0]; t->symbol; ++t)
+    {
+      printf ("#ifdef %s\n", t->symbol);
+      printf ("  { \"%s\", %s, TARGET_%s },\n", t->symbol, t->symbol, t->symbol);
+      printf ("#endif\n");
+    }
+  printf ("  { 0, -1, -1 }\n");
+  printf ("};\n\n");
+
   printf ("/* open flags mapping table */\n");
   printf ("CB_TARGET_DEFS_MAP cb_init_open_map[] = {\n");
   for (t = &open_tdefs[0]; t->symbol; ++t)
-- 
2.31.1


  reply	other threads:[~2021-06-21  3:56 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-21  3:55 [PATCH 1/3] sim: callback: add a getpid interface Mike Frysinger via Gdb-patches
2021-06-21  3:55 ` Mike Frysinger via Gdb-patches [this message]
2021-06-21  3:55 ` [PATCH 3/3] sim: callback: add missing cb_target_to_host_signal Mike Frysinger via Gdb-patches
2021-06-21 22:58 ` [PATCH 1/3] sim: callback: add a getpid interface Christian Biesinger via Gdb-patches
2021-06-21 23:50   ` Mike Frysinger via Gdb-patches

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210621035505.29431-2-vapier@gentoo.org \
    --to=gdb-patches@sourceware.org \
    --cc=vapier@gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox