aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/arch/x86/include/dwarf-regs-table.h
blob: 39ac7cbb525b4f9a997fbde7b13c10e592f2a14b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifdef DEFINE_DWARF_REGSTR_TABLE
/* This is included in perf/util/dwarf-regs.c */

static const char * const x86_32_regstr_tbl[] = {
	"%ax", "%cx", "%dx", "%bx", "$stack",/* Stack address instead of %sp */
	"%bp", "%si", "%di",
};

static const char * const x86_64_regstr_tbl[] = {
	"%ax", "dx", "%cx", "%bx", "%si", "%di",
	"%bp", "%sp", "%r8", "%r9", "%r10", "%r11",
	"%r12", "%r13", "%r14", "%r15",
};
#endif