Coverage Report

Created: 2025-06-24 06:45

/src/binutils-gdb/include/elf/spu.h
Line
Count
Source (jump to first uncovered line)
1
/* SPU ELF support for BFD.
2
3
   Copyright (C) 2006-2025 Free Software Foundation, Inc.
4
5
   This file is part of BFD, the Binary File Descriptor library.
6
7
   This program is free software; you can redistribute it and/or modify
8
   it under the terms of the GNU General Public License as published by
9
   the Free Software Foundation; either version 3 of the License, or
10
   (at your option) any later version.
11
12
   This program is distributed in the hope that it will be useful,
13
   but WITHOUT ANY WARRANTY; without even the implied warranty of
14
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
   GNU General Public License for more details.
16
17
   You should have received a copy of the GNU General Public License
18
   along with this program; if not, write to the Free Software Foundation,
19
   Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
20
21
#ifndef _ELF_SPU_H
22
#define _ELF_SPU_H
23
24
#include "elf/reloc-macros.h"
25
26
/* elf32-spu.c depends on these being consecutive. */
27
2.12k
START_RELOC_NUMBERS (elf_spu_reloc_type)
28
2.12k
     RELOC_NUMBER (R_SPU_NONE,    0)
29
47
     RELOC_NUMBER (R_SPU_ADDR10,  1)
30
58
     RELOC_NUMBER (R_SPU_ADDR16,  2)
31
22
     RELOC_NUMBER (R_SPU_ADDR16_HI,   3)
32
55
     RELOC_NUMBER (R_SPU_ADDR16_LO,   4)
33
3
     RELOC_NUMBER (R_SPU_ADDR18,  5)
34
15
     RELOC_NUMBER (R_SPU_ADDR32,  6)
35
3
     RELOC_NUMBER (R_SPU_REL16,     7)
36
10
     RELOC_NUMBER (R_SPU_ADDR7,     8)
37
60
     RELOC_NUMBER (R_SPU_REL9,    9)
38
9
     RELOC_NUMBER (R_SPU_REL9I,    10)
39
11
     RELOC_NUMBER (R_SPU_ADDR10I,  11)
40
6
     RELOC_NUMBER (R_SPU_ADDR16I,  12)
41
19
     RELOC_NUMBER (R_SPU_REL32,    13)
42
7
     RELOC_NUMBER (R_SPU_ADDR16X,  14)
43
4
     RELOC_NUMBER (R_SPU_PPU32,    15)
44
28
     RELOC_NUMBER (R_SPU_PPU64,    16)
45
23
     RELOC_NUMBER (R_SPU_ADD_PIC,  17)
46
969
END_RELOC_NUMBERS (R_SPU_max)
47
48
/* Program header extensions */
49
50
/* Mark a PT_LOAD segment as containing an overlay which should not
51
   initially be loaded.  */
52
2.15k
#define PF_OVERLAY    (1 << 27)
53
54
/* SPU Dynamic Object Information.  */
55
#define PT_SPU_INFO             0x70000000
56
57
/* SPU plugin information */
58
0
#define SPU_PLUGIN_NAME         "SPUNAME"
59
0
#define SPU_PTNOTE_SPUNAME  ".note.spu_name"
60
61
#endif /* _ELF_SPU_H */