Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/perf/arch/sh/include/dwarf-regs-table.h
26295 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifdef DEFINE_DWARF_REGSTR_TABLE
3
/* This is included in perf/util/dwarf-regs.c */
4
5
const char * const sh_regstr_tbl[] = {
6
"r0",
7
"r1",
8
"r2",
9
"r3",
10
"r4",
11
"r5",
12
"r6",
13
"r7",
14
"r8",
15
"r9",
16
"r10",
17
"r11",
18
"r12",
19
"r13",
20
"r14",
21
"r15",
22
"pc",
23
"pr",
24
};
25
26
#endif
27
28