* Makefile.in (acconfig_h): Remove incorrect macro.

(config_h): Define.
	(osabi.o): Update dependencies.
	* configure.tgt: Set gdb_osabi based on target triplet.
	* configure.in: Define GDB_OSABI_DEFAULT based on gdb_osabi.
	* configure: Regenerated.
	* config.in: Regenerated.
	* osabi.c: Include "arch-utils.h", "gdbcmd.h", and "command.h".
	(GDB_OSABI_DEFAULT): Define if not already defined.
	(user_osabi_state, user_selected_osabi, gdb_osabi_available_names)
	(set_osabi_string): New variables.
	(gdbarch_register_osabi): Add new OS ABI to
	gdb_osabi_available_names.
	(gdbarch_lookup_osabi): Honor specified and default OS ABIs.
	(set_osabi, show_osabi): New functions.
	(_initialize_gdb_osabi): Add "set osabi" and "show osabi" commands.
This commit is contained in:
Daniel Jacobowitz 2003-01-04 23:47:13 +00:00
parent 4be87837a2
commit b00a803742
7 changed files with 178 additions and 24 deletions

View file

@ -1,3 +1,22 @@
2002-01-04 Daniel Jacobowitz <drow@mvista.com>
* Makefile.in (acconfig_h): Remove incorrect macro.
(config_h): Define.
(osabi.o): Update dependencies.
* configure.tgt: Set gdb_osabi based on target triplet.
* configure.in: Define GDB_OSABI_DEFAULT based on gdb_osabi.
* configure: Regenerated.
* config.in: Regenerated.
* osabi.c: Include "arch-utils.h", "gdbcmd.h", and "command.h".
(GDB_OSABI_DEFAULT): Define if not already defined.
(user_osabi_state, user_selected_osabi, gdb_osabi_available_names)
(set_osabi_string): New variables.
(gdbarch_register_osabi): Add new OS ABI to
gdb_osabi_available_names.
(gdbarch_lookup_osabi): Honor specified and default OS ABIs.
(set_osabi, show_osabi): New functions.
(_initialize_gdb_osabi): Add "set osabi" and "show osabi" commands.
2003-01-04 Daniel Jacobowitz <drow@mvista.com> 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
* arch-utils.c (gdbarch_info_init): Set osabi to * arch-utils.c (gdbarch_info_init): Set osabi to

View file

@ -581,7 +581,6 @@ nm_h = @nm_h@
# gdb/ header files # gdb/ header files
# #
acconfig_h = acconfig.h
ada_lang_h = ada-lang.h $(value_h) $(gdbtypes_h) ada_lang_h = ada-lang.h $(value_h) $(gdbtypes_h)
alpha_tdep_h = alpha-tdep.h alpha_tdep_h = alpha-tdep.h
alphabsd_tdep_h = alphabsd-tdep.h alphabsd_tdep_h = alphabsd-tdep.h
@ -602,6 +601,7 @@ coff_solib_h = coff-solib.h
command_h = command.h command_h = command.h
complaints_h = complaints.h complaints_h = complaints.h
completer_h = completer.h completer_h = completer.h
config_h = config.h
cp_abi_h = cp-abi.h cp_abi_h = cp-abi.h
cp_support_h = cp-support.h cp_support_h = cp-support.h
dcache_h = dcache.h dcache_h = dcache.h
@ -1961,7 +1961,8 @@ ocd.o: ocd.c $(defs_h) $(gdbcore_h) $(gdb_string_h) $(frame_h) $(inferior_h) \
$(gdb_stabs_h) $(serial_h) $(ocd_h) $(regcache_h) $(gdb_stabs_h) $(serial_h) $(ocd_h) $(regcache_h)
op50-rom.o: op50-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \ op50-rom.o: op50-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
$(serial_h) $(serial_h)
osabi.o: osabi.c $(defs_h) $(gdb_string_h) $(osabi_h) $(elf_bfd_h) osabi.o: osabi.c $(defs_h) $(gdb_string_h) $(osabi_h) $(elf_bfd_h) \
$(gdbcmd_h) $(command_h) $(arch_utils_h)
p-lang.o: p-lang.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ p-lang.o: p-lang.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
$(expression_h) $(parser_defs_h) $(language_h) $(p_lang_h) \ $(expression_h) $(parser_defs_h) $(language_h) $(p_lang_h) \
$(valprint_h) $(valprint_h)

View file

@ -498,6 +498,9 @@
/* Define if <thread_db.h> has the TD_NOTALLOC error code. */ /* Define if <thread_db.h> has the TD_NOTALLOC error code. */
#undef THREAD_DB_HAS_TD_NOTALLOC #undef THREAD_DB_HAS_TD_NOTALLOC
/* Define to the default OS ABI for this configuration. */
#undef GDB_OSABI_DEFAULT
/* Define to be a string naming the default host character set. */ /* Define to be a string naming the default host character set. */
#undef GDB_DEFAULT_HOST_CHARSET #undef GDB_DEFAULT_HOST_CHARSET

43
gdb/configure vendored
View file

@ -9823,6 +9823,13 @@ case "${GDB_MULTI_ARCH}" in
*) { echo "configure: error: "GDB: Unknown GDB_MULTI_ARCH value ${GDB_MULTI_ARCH}"" 1>&2; exit 1; };; *) { echo "configure: error: "GDB: Unknown GDB_MULTI_ARCH value ${GDB_MULTI_ARCH}"" 1>&2; exit 1; };;
esac esac
if test x"${gdb_osabi}" != x ; then
cat >> confdefs.h <<EOF
#define GDB_OSABI_DEFAULT $gdb_osabi
EOF
fi
# Enable multi-ice-gdb-server. # Enable multi-ice-gdb-server.
# Check whether --enable-multi-ice or --disable-multi-ice was given. # Check whether --enable-multi-ice or --disable-multi-ice was given.
if test "${enable_multi_ice+set}" = set; then if test "${enable_multi_ice+set}" = set; then
@ -9841,7 +9848,7 @@ fi
# We only build gdbserver automatically if host and target are the same. # We only build gdbserver automatically if host and target are the same.
if test "x$target" = "x$host"; then if test "x$target" = "x$host"; then
echo $ac_n "checking whether gdbserver is supported on this host""... $ac_c" 1>&6 echo $ac_n "checking whether gdbserver is supported on this host""... $ac_c" 1>&6
echo "configure:9845: checking whether gdbserver is supported on this host" >&5 echo "configure:9852: checking whether gdbserver is supported on this host" >&5
if test "x$build_gdbserver" = xyes; then if test "x$build_gdbserver" = xyes; then
configdirs="$configdirs gdbserver" configdirs="$configdirs gdbserver"
echo "$ac_t""yes" 1>&6 echo "$ac_t""yes" 1>&6
@ -9905,12 +9912,12 @@ fi
echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6
echo "configure:9909: checking for Cygwin environment" >&5 echo "configure:9916: checking for Cygwin environment" >&5
if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 9914 "configure" #line 9921 "configure"
#include "confdefs.h" #include "confdefs.h"
int main() { int main() {
@ -9921,7 +9928,7 @@ int main() {
return __CYGWIN__; return __CYGWIN__;
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:9925: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then if { (eval echo configure:9932: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest* rm -rf conftest*
ac_cv_cygwin=yes ac_cv_cygwin=yes
else else
@ -9938,19 +9945,19 @@ echo "$ac_t""$ac_cv_cygwin" 1>&6
CYGWIN= CYGWIN=
test "$ac_cv_cygwin" = yes && CYGWIN=yes test "$ac_cv_cygwin" = yes && CYGWIN=yes
echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6
echo "configure:9942: checking for mingw32 environment" >&5 echo "configure:9949: checking for mingw32 environment" >&5
if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 9947 "configure" #line 9954 "configure"
#include "confdefs.h" #include "confdefs.h"
int main() { int main() {
return __MINGW32__; return __MINGW32__;
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:9954: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then if { (eval echo configure:9961: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest* rm -rf conftest*
ac_cv_mingw32=yes ac_cv_mingw32=yes
else else
@ -9969,7 +9976,7 @@ test "$ac_cv_mingw32" = yes && MINGW32=yes
echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
echo "configure:9973: checking for executable suffix" >&5 echo "configure:9980: checking for executable suffix" >&5
if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -9979,10 +9986,10 @@ else
rm -f conftest* rm -f conftest*
echo 'int main () { return 0; }' > conftest.$ac_ext echo 'int main () { return 0; }' > conftest.$ac_ext
ac_cv_exeext= ac_cv_exeext=
if { (eval echo configure:9983: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then if { (eval echo configure:9990: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
for file in conftest.*; do for file in conftest.*; do
case $file in case $file in
*.c | *.C | *.o | *.obj | *.ilk | *.pdb) ;; *.c | *.o | *.obj | *.ilk | *.pdb) ;;
*) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;
esac esac
done done
@ -10021,7 +10028,7 @@ fi
echo $ac_n "checking for iconv""... $ac_c" 1>&6 echo $ac_n "checking for iconv""... $ac_c" 1>&6
echo "configure:10025: checking for iconv" >&5 echo "configure:10032: checking for iconv" >&5
if eval "test \"`echo '$''{'am_cv_func_iconv'+set}'`\" = set"; then if eval "test \"`echo '$''{'am_cv_func_iconv'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -10029,7 +10036,7 @@ else
am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_func_iconv="no, consider installing GNU libiconv"
am_cv_lib_iconv=no am_cv_lib_iconv=no
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 10033 "configure" #line 10040 "configure"
#include "confdefs.h" #include "confdefs.h"
#include <stdlib.h> #include <stdlib.h>
#include <iconv.h> #include <iconv.h>
@ -10039,7 +10046,7 @@ iconv_t cd = iconv_open("","");
iconv_close(cd); iconv_close(cd);
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:10043: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:10050: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
am_cv_func_iconv=yes am_cv_func_iconv=yes
else else
@ -10051,7 +10058,7 @@ rm -f conftest*
am_save_LIBS="$LIBS" am_save_LIBS="$LIBS"
LIBS="$LIBS -liconv" LIBS="$LIBS -liconv"
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 10055 "configure" #line 10062 "configure"
#include "confdefs.h" #include "confdefs.h"
#include <stdlib.h> #include <stdlib.h>
#include <iconv.h> #include <iconv.h>
@ -10061,7 +10068,7 @@ iconv_t cd = iconv_open("","");
iconv_close(cd); iconv_close(cd);
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:10065: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:10072: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
am_cv_lib_iconv=yes am_cv_lib_iconv=yes
am_cv_func_iconv=yes am_cv_func_iconv=yes
@ -10082,13 +10089,13 @@ echo "$ac_t""$am_cv_func_iconv" 1>&6
EOF EOF
echo $ac_n "checking for iconv declaration""... $ac_c" 1>&6 echo $ac_n "checking for iconv declaration""... $ac_c" 1>&6
echo "configure:10086: checking for iconv declaration" >&5 echo "configure:10093: checking for iconv declaration" >&5
if eval "test \"`echo '$''{'am_cv_proto_iconv'+set}'`\" = set"; then if eval "test \"`echo '$''{'am_cv_proto_iconv'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 10092 "configure" #line 10099 "configure"
#include "confdefs.h" #include "confdefs.h"
#include <stdlib.h> #include <stdlib.h>
@ -10107,7 +10114,7 @@ int main() {
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:10111: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then if { (eval echo configure:10118: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest* rm -rf conftest*
am_cv_proto_iconv_arg1="" am_cv_proto_iconv_arg1=""
else else

View file

@ -1223,6 +1223,11 @@ case "${GDB_MULTI_ARCH}" in
*) AC_MSG_ERROR("GDB: Unknown GDB_MULTI_ARCH value ${GDB_MULTI_ARCH}");; *) AC_MSG_ERROR("GDB: Unknown GDB_MULTI_ARCH value ${GDB_MULTI_ARCH}");;
esac esac
if test x"${gdb_osabi}" != x ; then
AC_DEFINE_UNQUOTED(GDB_OSABI_DEFAULT, $gdb_osabi,
[Define to the default OS ABI for this configuration.])
fi
# Enable multi-ice-gdb-server. # Enable multi-ice-gdb-server.
AC_ARG_ENABLE(multi-ice, AC_ARG_ENABLE(multi-ice,
[ --enable-multi-ice build the multi-ice-gdb-server], [ --enable-multi-ice build the multi-ice-gdb-server],

View file

@ -281,3 +281,10 @@ v850) gdb_multi_arch=yes ;;
xstormy16) gdb_multi_arch=yes ;; xstormy16) gdb_multi_arch=yes ;;
mcore) gdb_multi_arch=yes ;; mcore) gdb_multi_arch=yes ;;
esac esac
# map target onto default OS ABI
case "${target}" in
*-*-linux*) gdb_osabi=GDB_OSABI_LINUX ;;
*-*-gnu*) gdb_osabi=GDB_OSABI_HURD ;;
esac

View file

@ -24,15 +24,32 @@
#include "gdb_string.h" #include "gdb_string.h"
#include "osabi.h" #include "osabi.h"
#include "arch-utils.h"
#include "gdbcmd.h"
#include "command.h"
#include "elf-bfd.h" #include "elf-bfd.h"
#ifndef GDB_OSABI_DEFAULT
#define GDB_OSABI_DEFAULT GDB_OSABI_UNKNOWN
#endif
/* State for the "set osabi" command. */
static enum { osabi_auto, osabi_default, osabi_user } user_osabi_state;
static enum gdb_osabi user_selected_osabi;
static const char *gdb_osabi_available_names[GDB_OSABI_INVALID + 3] = {
"auto",
"default",
"none",
NULL
};
static const char *set_osabi_string;
/* This table matches the indices assigned to enum gdb_osabi. Keep /* This table matches the indices assigned to enum gdb_osabi. Keep
them in sync. */ them in sync. */
static const char * const gdb_osabi_names[] = static const char * const gdb_osabi_names[] =
{ {
"<unknown>", "none",
"SVR4", "SVR4",
"GNU/Hurd", "GNU/Hurd",
@ -88,6 +105,7 @@ gdbarch_register_osabi (enum bfd_architecture arch, unsigned long machine,
{ {
struct gdb_osabi_handler **handler_p; struct gdb_osabi_handler **handler_p;
const struct bfd_arch_info *arch_info = bfd_lookup_arch (arch, machine); const struct bfd_arch_info *arch_info = bfd_lookup_arch (arch, machine);
const char **name_ptr;
/* Registering an OS ABI handler for "unknown" is not allowed. */ /* Registering an OS ABI handler for "unknown" is not allowed. */
if (osabi == GDB_OSABI_UNKNOWN) if (osabi == GDB_OSABI_UNKNOWN)
@ -128,6 +146,16 @@ gdbarch_register_osabi (enum bfd_architecture arch, unsigned long machine,
(*handler_p)->arch_info = arch_info; (*handler_p)->arch_info = arch_info;
(*handler_p)->osabi = osabi; (*handler_p)->osabi = osabi;
(*handler_p)->init_osabi = init_osabi; (*handler_p)->init_osabi = init_osabi;
/* Add this OS ABI to the list of enum values for "set osabi", if it isn't
already there. */
for (name_ptr = gdb_osabi_available_names; *name_ptr; name_ptr ++)
{
if (*name_ptr == gdbarch_osabi_name (osabi))
return;
}
*name_ptr++ = gdbarch_osabi_name (osabi);
*name_ptr = NULL;
} }
@ -171,8 +199,19 @@ gdbarch_lookup_osabi (bfd *abfd)
enum gdb_osabi osabi, match; enum gdb_osabi osabi, match;
int match_specific; int match_specific;
/* If we aren't in "auto" mode, return the specified OS ABI. */
if (user_osabi_state == osabi_user)
return user_selected_osabi;
/* If we don't have a binary, return the default OS ABI (if set) or
an inconclusive result (otherwise). */
if (abfd == NULL) if (abfd == NULL)
{
if (GDB_OSABI_DEFAULT != GDB_OSABI_UNKNOWN)
return GDB_OSABI_DEFAULT;
else
return GDB_OSABI_UNINITIALIZED; return GDB_OSABI_UNINITIALIZED;
}
match = GDB_OSABI_UNKNOWN; match = GDB_OSABI_UNKNOWN;
match_specific = 0; match_specific = 0;
@ -233,6 +272,11 @@ gdbarch_lookup_osabi (bfd *abfd)
} }
} }
/* If we didn't find a match, but a default was specified at configure
time, return the default. */
if (GDB_OSABI_DEFAULT != GDB_OSABI_UNKNOWN && match == GDB_OSABI_UNKNOWN)
return GDB_OSABI_DEFAULT;
else
return match; return match;
} }
@ -444,10 +488,66 @@ generic_elf_osabi_sniffer (bfd *abfd)
return osabi; return osabi;
} }
static void
set_osabi (char *args, int from_tty, struct cmd_list_element *c)
{
struct gdbarch_info info;
if (strcmp (set_osabi_string, "auto") == 0)
user_osabi_state = osabi_auto;
else if (strcmp (set_osabi_string, "default") == 0)
{
user_selected_osabi = GDB_OSABI_DEFAULT;
user_osabi_state = osabi_user;
}
else if (strcmp (set_osabi_string, "none") == 0)
{
user_selected_osabi = GDB_OSABI_UNKNOWN;
user_osabi_state = osabi_user;
}
else
{
int i;
for (i = 1; i < GDB_OSABI_INVALID; i++)
if (strcmp (set_osabi_string, gdbarch_osabi_name (i)) == 0)
{
user_selected_osabi = i;
user_osabi_state = osabi_user;
break;
}
if (i == GDB_OSABI_INVALID)
internal_error (__FILE__, __LINE__,
"Invalid OS ABI \"%s\" passed to command handler.",
set_osabi_string);
}
/* NOTE: At some point (true multiple architectures) we'll need to be more
graceful here. */
gdbarch_info_init (&info);
if (! gdbarch_update_p (info))
internal_error (__FILE__, __LINE__, "Updating OS ABI failed.");
}
void
show_osabi (char *args, int from_tty)
{
if (user_osabi_state == osabi_auto)
printf_filtered ("The current OS ABI is \"auto\" (currently \"%s\").\n",
gdbarch_osabi_name (gdbarch_osabi (current_gdbarch)));
else
printf_filtered ("The current OS ABI is \"%s\".\n",
gdbarch_osabi_name (user_selected_osabi));
if (GDB_OSABI_DEFAULT != GDB_OSABI_UNKNOWN)
printf_filtered ("The default OS ABI is \"%s\".\n",
gdbarch_osabi_name (GDB_OSABI_DEFAULT));
}
void void
_initialize_gdb_osabi (void) _initialize_gdb_osabi (void)
{ {
struct cmd_list_element *c;
if (strcmp (gdb_osabi_names[GDB_OSABI_INVALID], "<invalid>") != 0) if (strcmp (gdb_osabi_names[GDB_OSABI_INVALID], "<invalid>") != 0)
internal_error internal_error
(__FILE__, __LINE__, (__FILE__, __LINE__,
@ -457,4 +557,16 @@ _initialize_gdb_osabi (void)
gdbarch_register_osabi_sniffer (bfd_arch_unknown, gdbarch_register_osabi_sniffer (bfd_arch_unknown,
bfd_target_elf_flavour, bfd_target_elf_flavour,
generic_elf_osabi_sniffer); generic_elf_osabi_sniffer);
if (!GDB_MULTI_ARCH)
return;
/* Register the "set osabi" command. */
c = add_set_enum_cmd ("osabi", class_support, gdb_osabi_available_names,
&set_osabi_string, "Set OS ABI of target.", &setlist);
set_cmd_sfunc (c, set_osabi);
add_cmd ("osabi", class_support, show_osabi, "Show OS/ABI of target.",
&showlist);
user_osabi_state = osabi_auto;
} }