dwarf-regs-table.h 413 B

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