mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
perf dwarf-regs: Add EM_HOST and EF_HOST defines
Computed from the build architecture defines, EM_HOST and EF_HOST give values that can be used in dwarf register lookup. Place in dwarf-regs.h so the value can be shared. Move some dwarf-regs.c constants used for EM_HOST to dwarf-regs.h. Add CSky constants that may be missing. In disasm.c add an include of dwarf-regs.h as the included arch/*/annotate/instructions.c files make use of the constants and we want the elf.h/dwarf-regs.h dependency to be explicit. Reviewed-by: Masami Hiramatsu (Google) <mhiramat@kernel.org> Signed-off-by: Ian Rogers <irogers@google.com> Cc: Anup Patel <anup@brainfault.org> Cc: Yang Jihong <yangjihong@bytedance.com> Cc: Palmer Dabbelt <palmer@dabbelt.com> Cc: David S. Miller <davem@davemloft.net> Cc: Albert Ou <aou@eecs.berkeley.edu> Cc: Shenlin Liang <liangshenlin@eswincomputing.com> Cc: Nick Terrell <terrelln@fb.com> Cc: Guilherme Amadio <amadio@gentoo.org> Cc: Steinar H. Gunderson <sesse@google.com> Cc: Changbin Du <changbin.du@huawei.com> Cc: Alexander Lobakin <aleksander.lobakin@intel.com> Cc: Przemek Kitszel <przemyslaw.kitszel@intel.com> Cc: Huacai Chen <chenhuacai@kernel.org> Cc: Guo Ren <guoren@kernel.org> Cc: Masahiro Yamada <masahiroy@kernel.org> Cc: Will Deacon <will@kernel.org> Cc: James Clark <james.clark@linaro.org> Cc: Mike Leach <mike.leach@linaro.org> Cc: Chen Pei <cp0613@linux.alibaba.com> Cc: Leo Yan <leo.yan@linux.dev> Cc: Oliver Upton <oliver.upton@linux.dev> Cc: Aditya Gupta <adityag@linux.ibm.com> Cc: Kajol Jain <kjain@linux.ibm.com> Cc: Athira Rajeev <atrajeev@linux.vnet.ibm.com> Cc: linux-arm-kernel@lists.infradead.org Cc: linux-riscv@lists.infradead.org Cc: Bibo Mao <maobibo@loongson.cn> Cc: John Garry <john.g.garry@oracle.com> Cc: Atish Patra <atishp@rivosinc.com> Cc: Dima Kogan <dima@secretsauce.net> Cc: Paul Walmsley <paul.walmsley@sifive.com> Cc: Dr. David Alan Gilbert <linux@treblig.org> Cc: linux-csky@vger.kernel.org Link: https://lore.kernel.org/r/20241108234606.429459-4-irogers@google.com Signed-off-by: Namhyung Kim <namhyung@kernel.org>
This commit is contained in:
parent
6ac75289b2
commit
ae894b7792
@ -18,6 +18,7 @@
|
||||
#include "disasm.h"
|
||||
#include "disasm_bpf.h"
|
||||
#include "dso.h"
|
||||
#include "dwarf-regs.h"
|
||||
#include "env.h"
|
||||
#include "evsel.h"
|
||||
#include "map.h"
|
||||
|
@ -13,14 +13,6 @@
|
||||
#include <errno.h>
|
||||
#include <linux/kernel.h>
|
||||
|
||||
#ifndef EM_AARCH64
|
||||
#define EM_AARCH64 183 /* ARM 64 bit */
|
||||
#endif
|
||||
|
||||
#ifndef EM_LOONGARCH
|
||||
#define EM_LOONGARCH 258 /* LoongArch */
|
||||
#endif
|
||||
|
||||
/* Define const char * {arch}_register_tbl[] */
|
||||
#define DEFINE_DWARF_REGSTR_TABLE
|
||||
#include "../arch/x86/include/dwarf-regs-table.h"
|
||||
|
@ -2,6 +2,88 @@
|
||||
#ifndef _PERF_DWARF_REGS_H_
|
||||
#define _PERF_DWARF_REGS_H_
|
||||
#include "annotate.h"
|
||||
#include <elf.h>
|
||||
|
||||
#ifndef EM_AARCH64
|
||||
#define EM_AARCH64 183 /* ARM 64 bit */
|
||||
#endif
|
||||
|
||||
#ifndef EM_CSKY
|
||||
#define EM_CSKY 252 /* C-SKY */
|
||||
#endif
|
||||
#ifndef EF_CSKY_ABIV1
|
||||
#define EF_CSKY_ABIV1 0X10000000
|
||||
#endif
|
||||
#ifndef EF_CSKY_ABIV2
|
||||
#define EF_CSKY_ABIV2 0X20000000
|
||||
#endif
|
||||
|
||||
#ifndef EM_LOONGARCH
|
||||
#define EM_LOONGARCH 258 /* LoongArch */
|
||||
#endif
|
||||
|
||||
/* EM_HOST gives the ELF machine for host, EF_HOST gives additional flags. */
|
||||
#if defined(__x86_64__)
|
||||
#define EM_HOST EM_X86_64
|
||||
#elif defined(__i386__)
|
||||
#define EM_HOST EM_386
|
||||
#elif defined(__aarch64__)
|
||||
#define EM_HOST EM_AARCH64
|
||||
#elif defined(__arm__)
|
||||
#define EM_HOST EM_ARM
|
||||
#elif defined(__alpha__)
|
||||
#define EM_HOST EM_ALPHA
|
||||
#elif defined(__arc__)
|
||||
#define EM_HOST EM_ARC
|
||||
#elif defined(__AVR__)
|
||||
#define EM_HOST EM_AVR
|
||||
#elif defined(__AVR32__)
|
||||
#define EM_HOST EM_AVR32
|
||||
#elif defined(__bfin__)
|
||||
#define EM_HOST EM_BLACKFIN
|
||||
#elif defined(__csky__)
|
||||
#define EM_HOST EM_CSKY
|
||||
#if defined(__CSKYABIV2__)
|
||||
#define EF_HOST EF_CSKY_ABIV2
|
||||
#else
|
||||
#define EF_HOST EF_CSKY_ABIV1
|
||||
#endif
|
||||
#elif defined(__cris__)
|
||||
#define EM_HOST EM_CRIS
|
||||
#elif defined(__hppa__) // HP PA-RISC
|
||||
#define EM_HOST EM_PARISC
|
||||
#elif defined(__loongarch__)
|
||||
#define EM_HOST EM_LOONGARCH
|
||||
#elif defined(__mips__)
|
||||
#define EM_HOST EM_MIPS
|
||||
#elif defined(__m32r__)
|
||||
#define EM_HOST EM_M32R
|
||||
#elif defined(__microblaze__)
|
||||
#define EM_HOST EM_MICROBLAZE
|
||||
#elif defined(__MSP430__)
|
||||
#define EM_HOST EM_MSP430
|
||||
#elif defined(__powerpc64__)
|
||||
#define EM_HOST EM_PPC64
|
||||
#elif defined(__powerpc__)
|
||||
#define EM_HOST EM_PPC
|
||||
#elif defined(__riscv)
|
||||
#define EM_HOST EM_RISCV
|
||||
#elif defined(__s390x__)
|
||||
#define EM_HOST EM_S390
|
||||
#elif defined(__sh__)
|
||||
#define EM_HOST EM_SH
|
||||
#elif defined(__sparc64__) || defined(__sparc__)
|
||||
#define EM_HOST EM_SPARC
|
||||
#elif defined(__xtensa__)
|
||||
#define EM_HOST EM_XTENSA
|
||||
#else
|
||||
/* Unknown host ELF machine type. */
|
||||
#define EM_HOST EM_NONE
|
||||
#endif
|
||||
|
||||
#if !defined(EF_HOST)
|
||||
#define EF_HOST 0
|
||||
#endif
|
||||
|
||||
#define DWARF_REG_PC 0xd3af9c /* random number */
|
||||
#define DWARF_REG_FB 0xd3affb /* random number */
|
||||
|
Loading…
Reference in New Issue
Block a user