td_symbol_list.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /* Return list of symbols the library can request.
  2. Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Contributed by Ulrich Drepper <drepper@redhat.com>, 2001.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, write to the Free
  15. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  16. 02111-1307 USA. */
  17. #include <assert.h>
  18. #ifndef __UCLIBC__
  19. #include <gnu/lib-names.h>
  20. #endif
  21. #include "thread_dbP.h"
  22. #ifdef HAVE_ASM_GLOBAL_DOT_NAME
  23. # define DOT "." /* PPC64 requires . prefix on code symbols. */
  24. #else
  25. # define DOT /* No prefix. */
  26. #endif
  27. static const char *symbol_list_arr[] =
  28. {
  29. # define DB_STRUCT(type) \
  30. [SYM_SIZEOF_##type] = "_thread_db_sizeof_" #type,
  31. # define DB_STRUCT_FIELD(type, field) \
  32. [SYM_##type##_FIELD_##field] = "_thread_db_" #type "_" #field,
  33. # define DB_SYMBOL(name) \
  34. [SYM_##name] = #name,
  35. # define DB_FUNCTION(name) \
  36. [SYM_##name] = DOT #name,
  37. # define DB_VARIABLE(name) \
  38. [SYM_##name] = #name, \
  39. [SYM_DESC_##name] = "_thread_db_" #name,
  40. # include "structs.def"
  41. # undef DB_STRUCT
  42. # undef DB_FUNCTION
  43. # undef DB_SYMBOL
  44. # undef DB_VARIABLE
  45. [SYM_TH_UNIQUE_CONST_THREAD_AREA] = "_thread_db_const_thread_area",
  46. [SYM_TH_UNIQUE_REGISTER64] = "_thread_db_register64",
  47. [SYM_TH_UNIQUE_REGISTER32] = "_thread_db_register32",
  48. [SYM_TH_UNIQUE_REGISTER32_THREAD_AREA] = "_thread_db_register32_thread_area",
  49. [SYM_TH_UNIQUE_REGISTER64_THREAD_AREA] = "_thread_db_register64_thread_area",
  50. [SYM_NUM_MESSAGES] = NULL
  51. };
  52. const char **
  53. td_symbol_list (void)
  54. {
  55. return symbol_list_arr;
  56. }
  57. ps_err_e
  58. td_lookup (struct ps_prochandle *ps, int idx, psaddr_t *sym_addr)
  59. {
  60. ps_err_e result;
  61. assert (idx >= 0 && idx < SYM_NUM_MESSAGES);
  62. result = ps_pglobal_lookup (ps, LIBPTHREAD_SO, symbol_list_arr[idx],
  63. sym_addr);
  64. #ifdef HAVE_ASM_GLOBAL_DOT_NAME
  65. /* For PowerPC, 64-bit uses dot symbols but 32-bit does not.
  66. We could be a 64-bit libthread_db debugging a 32-bit libpthread. */
  67. if (result == PS_NOSYM && symbol_list_arr[idx][0] == '.')
  68. result = ps_pglobal_lookup (ps, LIBPTHREAD_SO, &symbol_list_arr[idx][1],
  69. sym_addr);
  70. #endif
  71. return result;
  72. }