1 #ifdef DEFINE_DWARF_REGSTR_TABLE
2 /* This is included in perf/util/dwarf-regs.c */
3 
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 
9 static const char * const x86_64_regstr_tbl[] = {
10 	"%ax", "%dx", "%cx", "%bx", "%si", "%di",
11 	"%bp", "%sp", "%r8", "%r9", "%r10", "%r11",
12 	"%r12", "%r13", "%r14", "%r15",
13 };
14 #endif
15