Linux Perf
dwarf-regs.c
Go to the documentation of this file.
1 /*
2  * Mapping of DWARF debug register numbers into register names.
3  *
4  * Copyright (C) 2010 Will Deacon, ARM Ltd.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  */
10 
11 #include <errno.h>
12 #include <stddef.h>
13 #include <string.h>
14 #include <dwarf-regs.h>
15 #include <linux/ptrace.h> /* for struct user_pt_regs */
16 #include <linux/stringify.h>
17 #include "util.h"
18 
19 struct pt_regs_dwarfnum {
20  const char *name;
21  unsigned int dwarfnum;
22 };
23 
24 #define REG_DWARFNUM_NAME(r, num) {.name = r, .dwarfnum = num}
25 #define GPR_DWARFNUM_NAME(num) \
26  {.name = __stringify(%x##num), .dwarfnum = num}
27 #define REG_DWARFNUM_END {.name = NULL, .dwarfnum = 0}
28 #define DWARFNUM2OFFSET(index) \
29  (index * sizeof((struct user_pt_regs *)0)->regs[0])
30 
31 /*
32  * Reference:
33  * http://infocenter.arm.com/help/topic/com.arm.doc.ihi0057b/IHI0057B_aadwarf64.pdf
34  */
35 static const struct pt_regs_dwarfnum regdwarfnum_table[] = {
66  REG_DWARFNUM_NAME("%lr", 30),
67  REG_DWARFNUM_NAME("%sp", 31),
69 };
70 
79 const char *get_arch_regstr(unsigned int n)
80 {
81  const struct pt_regs_dwarfnum *roff;
82  for (roff = regdwarfnum_table; roff->name != NULL; roff++)
83  if (roff->dwarfnum == n)
84  return roff->name;
85  return NULL;
86 }
87 
89 {
90  const struct pt_regs_dwarfnum *roff;
91 
92  for (roff = regdwarfnum_table; roff->name != NULL; roff++)
93  if (!strcmp(roff->name, name))
94  return DWARFNUM2OFFSET(roff->dwarfnum);
95  return -EINVAL;
96 }
unsigned int dwarfnum
Definition: dwarf-regs.c:17
#define REG_DWARFNUM_END
Definition: dwarf-regs.c:27
int regs_query_register_offset(const char *name)
Definition: dwarf-regs.c:88
#define REG_DWARFNUM_NAME(r, num)
Definition: dwarf-regs.c:24
#define DWARFNUM2OFFSET(index)
Definition: dwarf-regs.c:28
const char * name
Definition: dwarf-regs.c:16
static const struct pt_regs_dwarfnum regdwarfnum_table[]
Definition: dwarf-regs.c:35
#define GPR_DWARFNUM_NAME(num)
Definition: dwarf-regs.c:25
const char * get_arch_regstr(unsigned int n)
Definition: dwarf-regs.c:57