From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 927 invoked by alias); 1 Jul 2013 07:43:18 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 878 invoked by uid 89); 1 Jul 2013 07:43:18 -0000 X-Spam-SWARE-Status: No, score=-6.8 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.1 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Mon, 01 Jul 2013 07:43:17 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r617hGRj023779 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 1 Jul 2013 03:43:16 -0400 Received: from psique.redhat.com (ovpn-113-175.phx2.redhat.com [10.3.113.175]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r617gssb017377; Mon, 1 Jul 2013 03:43:15 -0400 From: Sergio Durigan Junior To: GDB Patches Cc: Sergio Durigan Junior Subject: [PATCH 16/17] Xtensa support Date: Mon, 01 Jul 2013 07:43:00 -0000 Message-Id: <1372664545-3947-17-git-send-email-sergiodj@redhat.com> In-Reply-To: <1372664545-3947-1-git-send-email-sergiodj@redhat.com> References: <1372664545-3947-1-git-send-email-sergiodj@redhat.com> X-SW-Source: 2013-07/txt/msg00013.txt.bz2 Xtensa target support. It uses a different value for SIGRTMAX, therefore we have to handle it here. 2013-07-01 Sergio Durigan Junior * xtensa-linux-tdep.c: Define enum with differences between Xtensa and x86. (xtensa_linux_gdb_signal_to_target): New function. (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target to xtensa_linux_gdb_signal_to_target. --- gdb/xtensa-linux-tdep.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/gdb/xtensa-linux-tdep.c b/gdb/xtensa-linux-tdep.c index b7f11b9..3d1c356 100644 --- a/gdb/xtensa-linux-tdep.c +++ b/gdb/xtensa-linux-tdep.c @@ -23,6 +23,52 @@ #include "solib-svr4.h" #include "symtab.h" +/* This enum represents the signals' numbers on the Xtensa + architecture. It just contains the signal definitions which are + different from x86. + + It is derived from the file , + from the Linux kernel tree. */ + +enum + { + XTENSA_LINUX_SIGRTMIN = 32, + XTENSA_LINUX_SIGRTMAX = 63, + }; + +/* Implementation of `gdbarch_gdb_signal_to_target', as defined in + gdbarch.h. */ + +static int +xtensa_linux_gdb_signal_to_target (struct gdbarch *gdbarch, + enum gdb_signal signal) +{ + switch (signal) + { + /* GDB_SIGNAL_REALTIME_32 is not continuous in , + therefore we have to handle it here. */ + case GDB_SIGNAL_REALTIME_32: + return XTENSA_LINUX_SIGRTMIN; + + /* GDB_SIGNAL_REALTIME_64 is not valid on Xtensa. */ + case GDB_SIGNAL_REALTIME_64: + return -1; + } + + /* GDB_SIGNAL_REALTIME_33 to _63 are continuous. + + Xtensa does not have _64. */ + if (signal >= GDB_SIGNAL_REALTIME_33 + && signal <= GDB_SIGNAL_REALTIME_63) + { + int offset = signal - GDB_SIGNAL_REALTIME_33; + + return XTENSA_LINUX_SIGRTMIN + 1 + offset; + } + + return linux_gdb_signal_to_target (gdbarch, signal); +} + /* OS specific initialization of gdbarch. */ static void @@ -32,6 +78,9 @@ xtensa_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch) set_solib_svr4_fetch_link_map_offsets (gdbarch, svr4_ilp32_fetch_link_map_offsets); + + set_gdbarch_gdb_signal_to_target (gdbarch, + xtensa_linux_gdb_signal_to_target); } /* Provide a prototype to silence -Wmissing-prototypes. */ -- 1.7.11.7