Contributors: 3
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Masami Hiramatsu |
74 |
97.37% |
1 |
33.33% |
Arnaldo Carvalho de Melo |
1 |
1.32% |
1 |
33.33% |
Greg Kroah-Hartman |
1 |
1.32% |
1 |
33.33% |
Total |
76 |
|
3 |
|
/* SPDX-License-Identifier: GPL-2.0 */
#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