Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 1e28eed17697bcf343c6743f0028cc3b5dd88bf0 authored by Linus Torvalds on 14 March 2021, 21:41:02 UTC
Linux 5.12-rc3
Tip revision: 1e28eed
dwarf-regs-table.h
/* 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
back to top