18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci#ifdef DEFINE_DWARF_REGSTR_TABLE
38c2ecf20Sopenharmony_ci/* This is included in perf/util/dwarf-regs.c */
48c2ecf20Sopenharmony_ci
58c2ecf20Sopenharmony_cistatic const char * const x86_32_regstr_tbl[] = {
68c2ecf20Sopenharmony_ci	"%ax", "%cx", "%dx", "%bx", "$stack",/* Stack address instead of %sp */
78c2ecf20Sopenharmony_ci	"%bp", "%si", "%di",
88c2ecf20Sopenharmony_ci};
98c2ecf20Sopenharmony_ci
108c2ecf20Sopenharmony_cistatic const char * const x86_64_regstr_tbl[] = {
118c2ecf20Sopenharmony_ci	"%ax", "%dx", "%cx", "%bx", "%si", "%di",
128c2ecf20Sopenharmony_ci	"%bp", "%sp", "%r8", "%r9", "%r10", "%r11",
138c2ecf20Sopenharmony_ci	"%r12", "%r13", "%r14", "%r15",
148c2ecf20Sopenharmony_ci};
158c2ecf20Sopenharmony_ci#endif
16