1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/* HPPA ELF support for BFD.
Copyright (C) 1993, 1994 Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
/* This file holds definitions specific to the HPPA ELF ABI. Note
that most of this is not actually implemented by BFD. */
/* Processor specific flags for the ELF header e_flags field. */
/* Target processor IDs to be placed in the low 16 bits of the flags
field. Note these names are shared with SOM, and therefore do not
follow ELF naming conventions. */
/* PA 1.0 big endian. */
#ifndef CPU_PA_RISC1_0
#define CPU_PA_RISC1_0 0x0000020b
#endif
/* PA 1.1 big endian. */
#ifndef CPU_PA_RISC1_1
#define CPU_PA_RISC1_1 0x00000210
#endif
/* PA 1.0 little endian (unsupported) is 0x0000028b. */
/* PA 1.1 little endian (unsupported) is 0x00000290. */
/* Trap null address dereferences. */
#define ELF_PARISC_TRAPNIL 0x00010000
/* .PARISC.archext section is present. */
#define EF_PARISC_EXT 0x00020000
/* Processor specific section types. */
/* Holds the global offset table, a table of pointers to external
data. */
#define SHT_PARISC_GOT SHT_LOPROC+0
/* Nonloadable section containing information in architecture
extensions used by the code. */
#define SHT_PARISC_ARCH SHT_LOPROC+1
/* Section in which $global$ is defined. */
#define SHT_PARISC_GLOBAL SHT_LOPROC+2
/* Section holding millicode routines (mul, div, rem, dyncall, etc. */
#define SHT_PARISC_MILLI SHT_LOPROC+3
/* Section holding unwind information for use by debuggers. */
#define SHT_PARISC_UNWIND SHT_LOPROC+4
/* Section holding the procedure linkage table. */
#define SHT_PARISC_PLT SHT_LOPROC+5
/* Short initialized and uninitialized data. */
#define SHT_PARISC_SDATA SHT_LOPROC+6
#define SHT_PARISC_SBSS SHT_LOPROC+7
/* Optional section holding argument location/relocation info. */
#define SHT_PARISC_SYMEXTN SHT_LOPROC+8
/* Option section for linker stubs. */
#define SHT_PARISC_STUBS SHT_LOPROC+9
/* Processor specific section flags. */
/* This section is near the global data pointer and thus allows short
addressing modes to be used. */
#define SHF_PARISC_SHORT 0x20000000
/* Processor specific symbol types. */
/* Millicode function entry point. */
#define STT_PARISC_MILLICODE STT_LOPROC+0
|