dwarf-regs-table.h 452 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifdef DEFINE_DWARF_REGSTR_TABLE
  3. /* This is included in perf/util/dwarf-regs.c */
  4. static const char * const x86_32_regstr_tbl[] = {
  5. "%ax", "%cx", "%dx", "%bx", "$stack",/* Stack address instead of %sp */
  6. "%bp", "%si", "%di",
  7. };
  8. static const char * const x86_64_regstr_tbl[] = {
  9. "%ax", "%dx", "%cx", "%bx", "%si", "%di",
  10. "%bp", "%sp", "%r8", "%r9", "%r10", "%r11",
  11. "%r12", "%r13", "%r14", "%r15",
  12. };
  13. #endif