162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 262306a36Sopenharmony_ci#ifdef DEFINE_DWARF_REGSTR_TABLE 362306a36Sopenharmony_ci/* This is included in perf/util/dwarf-regs.c */ 462306a36Sopenharmony_ci 562306a36Sopenharmony_cistatic const char * const x86_32_regstr_tbl[] = { 662306a36Sopenharmony_ci "%ax", "%cx", "%dx", "%bx", "$stack",/* Stack address instead of %sp */ 762306a36Sopenharmony_ci "%bp", "%si", "%di", 862306a36Sopenharmony_ci}; 962306a36Sopenharmony_ci 1062306a36Sopenharmony_cistatic const char * const x86_64_regstr_tbl[] = { 1162306a36Sopenharmony_ci "%ax", "%dx", "%cx", "%bx", "%si", "%di", 1262306a36Sopenharmony_ci "%bp", "%sp", "%r8", "%r9", "%r10", "%r11", 1362306a36Sopenharmony_ci "%r12", "%r13", "%r14", "%r15", 1462306a36Sopenharmony_ci}; 1562306a36Sopenharmony_ci#endif 16