cregit-Linux how code gets into the kernel

Release 4.10 tools/perf/arch/x86/include/dwarf-regs-table.h

#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

Overall Contributors

PersonTokensPropCommitsCommitProp
masami hiramatsumasami hiramatsu7498.67%150.00%
arnaldo carvalho de meloarnaldo carvalho de melo11.33%150.00%
Total75100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.