Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifdef DEFINE_DWARF_REGSTR_TABLE
0003 /* This is included in perf/util/dwarf-regs.c */
0004 
0005 static const char * const x86_32_regstr_tbl[] = {
0006     "%ax", "%cx", "%dx", "%bx", "$stack",/* Stack address instead of %sp */
0007     "%bp", "%si", "%di",
0008 };
0009 
0010 static const char * const x86_64_regstr_tbl[] = {
0011     "%ax", "%dx", "%cx", "%bx", "%si", "%di",
0012     "%bp", "%sp", "%r8", "%r9", "%r10", "%r11",
0013     "%r12", "%r13", "%r14", "%r15",
0014 };
0015 #endif