~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/perf/arch/riscv/util/unwind-libdw.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 /* Copyright (C) 2019 Hangzhou C-SKY Microsystems co.,ltd. */
  3 
  4 #include <elfutils/libdwfl.h>
  5 #include "perf_regs.h"
  6 #include "../../util/unwind-libdw.h"
  7 #include "../../util/perf_regs.h"
  8 #include "../../util/sample.h"
  9 
 10 bool libdw__arch_set_initial_registers(Dwfl_Thread *thread, void *arg)
 11 {
 12         struct unwind_info *ui = arg;
 13         struct regs_dump *user_regs = &ui->sample->user_regs;
 14         Dwarf_Word dwarf_regs[32];
 15 
 16 #define REG(r) ({                                               \
 17         Dwarf_Word val = 0;                                     \
 18         perf_reg_value(&val, user_regs, PERF_REG_RISCV_##r);    \
 19         val;                                                    \
 20 })
 21 
 22         dwarf_regs[0]  = 0;
 23         dwarf_regs[1]  = REG(RA);
 24         dwarf_regs[2]  = REG(SP);
 25         dwarf_regs[3]  = REG(GP);
 26         dwarf_regs[4]  = REG(TP);
 27         dwarf_regs[5]  = REG(T0);
 28         dwarf_regs[6]  = REG(T1);
 29         dwarf_regs[7]  = REG(T2);
 30         dwarf_regs[8]  = REG(S0);
 31         dwarf_regs[9]  = REG(S1);
 32         dwarf_regs[10] = REG(A0);
 33         dwarf_regs[11] = REG(A1);
 34         dwarf_regs[12] = REG(A2);
 35         dwarf_regs[13] = REG(A3);
 36         dwarf_regs[14] = REG(A4);
 37         dwarf_regs[15] = REG(A5);
 38         dwarf_regs[16] = REG(A6);
 39         dwarf_regs[17] = REG(A7);
 40         dwarf_regs[18] = REG(S2);
 41         dwarf_regs[19] = REG(S3);
 42         dwarf_regs[20] = REG(S4);
 43         dwarf_regs[21] = REG(S5);
 44         dwarf_regs[22] = REG(S6);
 45         dwarf_regs[23] = REG(S7);
 46         dwarf_regs[24] = REG(S8);
 47         dwarf_regs[25] = REG(S9);
 48         dwarf_regs[26] = REG(S10);
 49         dwarf_regs[27] = REG(S11);
 50         dwarf_regs[28] = REG(T3);
 51         dwarf_regs[29] = REG(T4);
 52         dwarf_regs[30] = REG(T5);
 53         dwarf_regs[31] = REG(T6);
 54         dwfl_thread_state_register_pc(thread, REG(PC));
 55 
 56         return dwfl_thread_state_registers(thread, 0, PERF_REG_RISCV_MAX,
 57                                            dwarf_regs);
 58 }
 59 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php