dwarf-regs.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Mapping of DWARF debug register numbers into register names.
  3. *
  4. * Copyright (C) 2010 Matt Fleming <matt@console-pimps.org>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. *
  20. */
  21. #include <stddef.h>
  22. #include <dwarf-regs.h>
  23. /*
  24. * Generic dwarf analysis helpers
  25. */
  26. #define SH_MAX_REGS 18
  27. const char *sh_regs_table[SH_MAX_REGS] = {
  28. "r0",
  29. "r1",
  30. "r2",
  31. "r3",
  32. "r4",
  33. "r5",
  34. "r6",
  35. "r7",
  36. "r8",
  37. "r9",
  38. "r10",
  39. "r11",
  40. "r12",
  41. "r13",
  42. "r14",
  43. "r15",
  44. "pc",
  45. "pr",
  46. };
  47. /* Return architecture dependent register string (for kprobe-tracer) */
  48. const char *get_arch_regstr(unsigned int n)
  49. {
  50. return (n < SH_MAX_REGS) ? sh_regs_table[n] : NULL;
  51. }