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

TOMOYO Linux Cross Reference
Linux/arch/riscv/include/uapi/asm/elf.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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 /*
  2  * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com>
  3  * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
  4  * Copyright (C) 2012 Regents of the University of California
  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 as published by
  8  * the Free Software Foundation; either version 2 of the License, or
  9  * (at your option) any later version.
 10  */
 11 
 12 #ifndef _UAPI_ASM_RISCV_ELF_H
 13 #define _UAPI_ASM_RISCV_ELF_H
 14 
 15 #include <asm/ptrace.h>
 16 
 17 /* ELF register definitions */
 18 typedef unsigned long elf_greg_t;
 19 typedef struct user_regs_struct elf_gregset_t;
 20 #define ELF_NGREG (sizeof(elf_gregset_t) / sizeof(elf_greg_t))
 21 
 22 /* We don't support f without d, or q.  */
 23 typedef __u64 elf_fpreg_t;
 24 typedef union __riscv_fp_state elf_fpregset_t;
 25 #define ELF_NFPREG (sizeof(struct __riscv_d_ext_state) / sizeof(elf_fpreg_t))
 26 
 27 #if __riscv_xlen == 64
 28 #define ELF_RISCV_R_SYM(r_info)         ELF64_R_SYM(r_info)
 29 #define ELF_RISCV_R_TYPE(r_info)        ELF64_R_TYPE(r_info)
 30 #else
 31 #define ELF_RISCV_R_SYM(r_info)         ELF32_R_SYM(r_info)
 32 #define ELF_RISCV_R_TYPE(r_info)        ELF32_R_TYPE(r_info)
 33 #endif
 34 
 35 /*
 36  * RISC-V relocation types
 37  */
 38 
 39 /* Relocation types used by the dynamic linker */
 40 #define R_RISCV_NONE            0
 41 #define R_RISCV_32              1
 42 #define R_RISCV_64              2
 43 #define R_RISCV_RELATIVE        3
 44 #define R_RISCV_COPY            4
 45 #define R_RISCV_JUMP_SLOT       5
 46 #define R_RISCV_TLS_DTPMOD32    6
 47 #define R_RISCV_TLS_DTPMOD64    7
 48 #define R_RISCV_TLS_DTPREL32    8
 49 #define R_RISCV_TLS_DTPREL64    9
 50 #define R_RISCV_TLS_TPREL32     10
 51 #define R_RISCV_TLS_TPREL64     11
 52 #define R_RISCV_IRELATIVE       58
 53 
 54 /* Relocation types not used by the dynamic linker */
 55 #define R_RISCV_BRANCH          16
 56 #define R_RISCV_JAL             17
 57 #define R_RISCV_CALL            18
 58 #define R_RISCV_CALL_PLT        19
 59 #define R_RISCV_GOT_HI20        20
 60 #define R_RISCV_TLS_GOT_HI20    21
 61 #define R_RISCV_TLS_GD_HI20     22
 62 #define R_RISCV_PCREL_HI20      23
 63 #define R_RISCV_PCREL_LO12_I    24
 64 #define R_RISCV_PCREL_LO12_S    25
 65 #define R_RISCV_HI20            26
 66 #define R_RISCV_LO12_I          27
 67 #define R_RISCV_LO12_S          28
 68 #define R_RISCV_TPREL_HI20      29
 69 #define R_RISCV_TPREL_LO12_I    30
 70 #define R_RISCV_TPREL_LO12_S    31
 71 #define R_RISCV_TPREL_ADD       32
 72 #define R_RISCV_ADD8            33
 73 #define R_RISCV_ADD16           34
 74 #define R_RISCV_ADD32           35
 75 #define R_RISCV_ADD64           36
 76 #define R_RISCV_SUB8            37
 77 #define R_RISCV_SUB16           38
 78 #define R_RISCV_SUB32           39
 79 #define R_RISCV_SUB64           40
 80 #define R_RISCV_GNU_VTINHERIT   41
 81 #define R_RISCV_GNU_VTENTRY     42
 82 #define R_RISCV_ALIGN           43
 83 #define R_RISCV_RVC_BRANCH      44
 84 #define R_RISCV_RVC_JUMP        45
 85 #define R_RISCV_GPREL_I         47
 86 #define R_RISCV_GPREL_S         48
 87 #define R_RISCV_TPREL_I         49
 88 #define R_RISCV_TPREL_S         50
 89 #define R_RISCV_RELAX           51
 90 #define R_RISCV_SUB6            52
 91 #define R_RISCV_SET6            53
 92 #define R_RISCV_SET8            54
 93 #define R_RISCV_SET16           55
 94 #define R_RISCV_SET32           56
 95 #define R_RISCV_32_PCREL        57
 96 #define R_RISCV_PLT32           59
 97 #define R_RISCV_SET_ULEB128     60
 98 #define R_RISCV_SUB_ULEB128     61
 99 
100 
101 #endif /* _UAPI_ASM_RISCV_ELF_H */
102 

~ [ 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