dwarf-regs.c (0cce284537fb42d9c28b9b31038ffc9b464555f5) dwarf-regs.c (877a7a11050ee4d465364c57f8fbf78f6b1a2559)
1/*
2 * dwarf-regs.c : Mapping of DWARF debug register numbers into register names.
3 *
4 * Written by: Masami Hiramatsu <mhiramat@kernel.org>
5 */
6
7#include <util.h>
8#include <debug.h>
9#include <dwarf-regs.h>
10#include <elf.h>
1/*
2 * dwarf-regs.c : Mapping of DWARF debug register numbers into register names.
3 *
4 * Written by: Masami Hiramatsu <mhiramat@kernel.org>
5 */
6
7#include <util.h>
8#include <debug.h>
9#include <dwarf-regs.h>
10#include <elf.h>
11#include <linux/kernel.h>
11
12#ifndef EM_AARCH64
13#define EM_AARCH64 183 /* ARM 64 bit */
14#endif
15
16/* Define const char * {arch}_register_tbl[] */
17#define DEFINE_DWARF_REGSTR_TABLE
18#include "../arch/x86/include/dwarf-regs-table.h"

--- 41 unchanged lines hidden ---
12
13#ifndef EM_AARCH64
14#define EM_AARCH64 183 /* ARM 64 bit */
15#endif
16
17/* Define const char * {arch}_register_tbl[] */
18#define DEFINE_DWARF_REGSTR_TABLE
19#include "../arch/x86/include/dwarf-regs-table.h"

--- 41 unchanged lines hidden ---