Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ELF constants and data structures |
| 3 | * |
| 4 | * Derived from: |
| 5 | * $FreeBSD: src/sys/sys/elf32.h,v 1.8.14.1 2005/12/30 22:13:58 marcel Exp $ |
| 6 | * $FreeBSD: src/sys/sys/elf64.h,v 1.10.14.1 2005/12/30 22:13:58 marcel Exp $ |
| 7 | * $FreeBSD: src/sys/sys/elf_common.h,v 1.15.8.1 2005/12/30 22:13:58 marcel Exp $ |
| 8 | * $FreeBSD: src/sys/alpha/include/elf.h,v 1.14 2003/09/25 01:10:22 peter Exp $ |
| 9 | * $FreeBSD: src/sys/amd64/include/elf.h,v 1.18 2004/08/03 08:21:48 dfr Exp $ |
| 10 | * $FreeBSD: src/sys/arm/include/elf.h,v 1.5.2.1 2006/06/30 21:42:52 cognet Exp $ |
| 11 | * $FreeBSD: src/sys/i386/include/elf.h,v 1.16 2004/08/02 19:12:17 dfr Exp $ |
| 12 | * $FreeBSD: src/sys/powerpc/include/elf.h,v 1.7 2004/11/02 09:47:01 ssouhlal Exp $ |
| 13 | * $FreeBSD: src/sys/sparc64/include/elf.h,v 1.12 2003/09/25 01:10:26 peter Exp $ |
Michael Hudson-Doyle | 299117e | 2014-08-27 20:18:56 -0700 | [diff] [blame] | 14 | * "ELF for the ARMĀ® 64-bit Architecture (AArch64)" (ARM IHI 0056B) |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 15 | * |
| 16 | * Copyright (c) 1996-1998 John D. Polstra. All rights reserved. |
| 17 | * Copyright (c) 2001 David E. O'Brien |
| 18 | * Portions Copyright 2009 The Go Authors. All rights reserved. |
| 19 | * |
| 20 | * Redistribution and use in source and binary forms, with or without |
| 21 | * modification, are permitted provided that the following conditions |
| 22 | * are met: |
| 23 | * 1. Redistributions of source code must retain the above copyright |
| 24 | * notice, this list of conditions and the following disclaimer. |
| 25 | * 2. Redistributions in binary form must reproduce the above copyright |
| 26 | * notice, this list of conditions and the following disclaimer in the |
| 27 | * documentation and/or other materials provided with the distribution. |
| 28 | * |
| 29 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 30 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 31 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 32 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 33 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 34 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 35 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 36 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 37 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 38 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 39 | * SUCH DAMAGE. |
| 40 | */ |
| 41 | |
| 42 | package elf |
| 43 | |
| 44 | import "strconv" |
| 45 | |
| 46 | /* |
| 47 | * Constants |
| 48 | */ |
| 49 | |
| 50 | // Indexes into the Header.Ident array. |
| 51 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 52 | EI_CLASS = 4 /* Class of machine. */ |
| 53 | EI_DATA = 5 /* Data format. */ |
| 54 | EI_VERSION = 6 /* ELF format version. */ |
| 55 | EI_OSABI = 7 /* Operating system / ABI identification */ |
| 56 | EI_ABIVERSION = 8 /* ABI version */ |
| 57 | EI_PAD = 9 /* Start of padding (per SVR4 ABI). */ |
| 58 | EI_NIDENT = 16 /* Size of e_ident array. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 59 | ) |
| 60 | |
| 61 | // Initial magic number for ELF files. |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 62 | const ELFMAG = "\177ELF" |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 63 | |
| 64 | // Version is found in Header.Ident[EI_VERSION] and Header.Version. |
| 65 | type Version byte |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 66 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 67 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 68 | EV_NONE Version = 0 |
| 69 | EV_CURRENT Version = 1 |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 70 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 71 | |
| 72 | var versionStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 73 | {0, "EV_NONE"}, |
| 74 | {1, "EV_CURRENT"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 75 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 76 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 77 | func (i Version) String() string { return stringName(uint32(i), versionStrings, false) } |
| 78 | func (i Version) GoString() string { return stringName(uint32(i), versionStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 79 | |
| 80 | // Class is found in Header.Ident[EI_CLASS] and Header.Class. |
| 81 | type Class byte |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 82 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 83 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 84 | ELFCLASSNONE Class = 0 /* Unknown class. */ |
| 85 | ELFCLASS32 Class = 1 /* 32-bit architecture. */ |
| 86 | ELFCLASS64 Class = 2 /* 64-bit architecture. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 87 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 88 | |
| 89 | var classStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 90 | {0, "ELFCLASSNONE"}, |
| 91 | {1, "ELFCLASS32"}, |
| 92 | {2, "ELFCLASS64"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 93 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 94 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 95 | func (i Class) String() string { return stringName(uint32(i), classStrings, false) } |
| 96 | func (i Class) GoString() string { return stringName(uint32(i), classStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 97 | |
| 98 | // Data is found in Header.Ident[EI_DATA] and Header.Data. |
| 99 | type Data byte |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 100 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 101 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 102 | ELFDATANONE Data = 0 /* Unknown data format. */ |
| 103 | ELFDATA2LSB Data = 1 /* 2's complement little-endian. */ |
| 104 | ELFDATA2MSB Data = 2 /* 2's complement big-endian. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 105 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 106 | |
| 107 | var dataStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 108 | {0, "ELFDATANONE"}, |
| 109 | {1, "ELFDATA2LSB"}, |
| 110 | {2, "ELFDATA2MSB"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 111 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 112 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 113 | func (i Data) String() string { return stringName(uint32(i), dataStrings, false) } |
| 114 | func (i Data) GoString() string { return stringName(uint32(i), dataStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 115 | |
| 116 | // OSABI is found in Header.Ident[EI_OSABI] and Header.OSABI. |
| 117 | type OSABI byte |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 118 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 119 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 120 | ELFOSABI_NONE OSABI = 0 /* UNIX System V ABI */ |
| 121 | ELFOSABI_HPUX OSABI = 1 /* HP-UX operating system */ |
| 122 | ELFOSABI_NETBSD OSABI = 2 /* NetBSD */ |
| 123 | ELFOSABI_LINUX OSABI = 3 /* GNU/Linux */ |
| 124 | ELFOSABI_HURD OSABI = 4 /* GNU/Hurd */ |
| 125 | ELFOSABI_86OPEN OSABI = 5 /* 86Open common IA32 ABI */ |
| 126 | ELFOSABI_SOLARIS OSABI = 6 /* Solaris */ |
| 127 | ELFOSABI_AIX OSABI = 7 /* AIX */ |
| 128 | ELFOSABI_IRIX OSABI = 8 /* IRIX */ |
| 129 | ELFOSABI_FREEBSD OSABI = 9 /* FreeBSD */ |
| 130 | ELFOSABI_TRU64 OSABI = 10 /* TRU64 UNIX */ |
| 131 | ELFOSABI_MODESTO OSABI = 11 /* Novell Modesto */ |
| 132 | ELFOSABI_OPENBSD OSABI = 12 /* OpenBSD */ |
| 133 | ELFOSABI_OPENVMS OSABI = 13 /* Open VMS */ |
| 134 | ELFOSABI_NSK OSABI = 14 /* HP Non-Stop Kernel */ |
| 135 | ELFOSABI_ARM OSABI = 97 /* ARM */ |
| 136 | ELFOSABI_STANDALONE OSABI = 255 /* Standalone (embedded) application */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 137 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 138 | |
| 139 | var osabiStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 140 | {0, "ELFOSABI_NONE"}, |
| 141 | {1, "ELFOSABI_HPUX"}, |
| 142 | {2, "ELFOSABI_NETBSD"}, |
| 143 | {3, "ELFOSABI_LINUX"}, |
| 144 | {4, "ELFOSABI_HURD"}, |
| 145 | {5, "ELFOSABI_86OPEN"}, |
| 146 | {6, "ELFOSABI_SOLARIS"}, |
| 147 | {7, "ELFOSABI_AIX"}, |
| 148 | {8, "ELFOSABI_IRIX"}, |
| 149 | {9, "ELFOSABI_FREEBSD"}, |
| 150 | {10, "ELFOSABI_TRU64"}, |
| 151 | {11, "ELFOSABI_MODESTO"}, |
| 152 | {12, "ELFOSABI_OPENBSD"}, |
| 153 | {13, "ELFOSABI_OPENVMS"}, |
| 154 | {14, "ELFOSABI_NSK"}, |
| 155 | {97, "ELFOSABI_ARM"}, |
| 156 | {255, "ELFOSABI_STANDALONE"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 157 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 158 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 159 | func (i OSABI) String() string { return stringName(uint32(i), osabiStrings, false) } |
| 160 | func (i OSABI) GoString() string { return stringName(uint32(i), osabiStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 161 | |
| 162 | // Type is found in Header.Type. |
| 163 | type Type uint16 |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 164 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 165 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 166 | ET_NONE Type = 0 /* Unknown type. */ |
| 167 | ET_REL Type = 1 /* Relocatable. */ |
| 168 | ET_EXEC Type = 2 /* Executable. */ |
| 169 | ET_DYN Type = 3 /* Shared object. */ |
| 170 | ET_CORE Type = 4 /* Core file. */ |
| 171 | ET_LOOS Type = 0xfe00 /* First operating system specific. */ |
| 172 | ET_HIOS Type = 0xfeff /* Last operating system-specific. */ |
| 173 | ET_LOPROC Type = 0xff00 /* First processor-specific. */ |
| 174 | ET_HIPROC Type = 0xffff /* Last processor-specific. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 175 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 176 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 177 | var typeStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 178 | {0, "ET_NONE"}, |
| 179 | {1, "ET_REL"}, |
| 180 | {2, "ET_EXEC"}, |
| 181 | {3, "ET_DYN"}, |
| 182 | {4, "ET_CORE"}, |
| 183 | {0xfe00, "ET_LOOS"}, |
| 184 | {0xfeff, "ET_HIOS"}, |
| 185 | {0xff00, "ET_LOPROC"}, |
| 186 | {0xffff, "ET_HIPROC"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 187 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 188 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 189 | func (i Type) String() string { return stringName(uint32(i), typeStrings, false) } |
| 190 | func (i Type) GoString() string { return stringName(uint32(i), typeStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 191 | |
| 192 | // Machine is found in Header.Machine. |
| 193 | type Machine uint16 |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 194 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 195 | const ( |
Michael Hudson-Doyle | 299117e | 2014-08-27 20:18:56 -0700 | [diff] [blame] | 196 | EM_NONE Machine = 0 /* Unknown machine. */ |
| 197 | EM_M32 Machine = 1 /* AT&T WE32100. */ |
| 198 | EM_SPARC Machine = 2 /* Sun SPARC. */ |
| 199 | EM_386 Machine = 3 /* Intel i386. */ |
| 200 | EM_68K Machine = 4 /* Motorola 68000. */ |
| 201 | EM_88K Machine = 5 /* Motorola 88000. */ |
| 202 | EM_860 Machine = 7 /* Intel i860. */ |
| 203 | EM_MIPS Machine = 8 /* MIPS R3000 Big-Endian only. */ |
| 204 | EM_S370 Machine = 9 /* IBM System/370. */ |
| 205 | EM_MIPS_RS3_LE Machine = 10 /* MIPS R3000 Little-Endian. */ |
| 206 | EM_PARISC Machine = 15 /* HP PA-RISC. */ |
| 207 | EM_VPP500 Machine = 17 /* Fujitsu VPP500. */ |
| 208 | EM_SPARC32PLUS Machine = 18 /* SPARC v8plus. */ |
| 209 | EM_960 Machine = 19 /* Intel 80960. */ |
| 210 | EM_PPC Machine = 20 /* PowerPC 32-bit. */ |
| 211 | EM_PPC64 Machine = 21 /* PowerPC 64-bit. */ |
| 212 | EM_S390 Machine = 22 /* IBM System/390. */ |
| 213 | EM_V800 Machine = 36 /* NEC V800. */ |
| 214 | EM_FR20 Machine = 37 /* Fujitsu FR20. */ |
| 215 | EM_RH32 Machine = 38 /* TRW RH-32. */ |
| 216 | EM_RCE Machine = 39 /* Motorola RCE. */ |
| 217 | EM_ARM Machine = 40 /* ARM. */ |
| 218 | EM_SH Machine = 42 /* Hitachi SH. */ |
| 219 | EM_SPARCV9 Machine = 43 /* SPARC v9 64-bit. */ |
| 220 | EM_TRICORE Machine = 44 /* Siemens TriCore embedded processor. */ |
| 221 | EM_ARC Machine = 45 /* Argonaut RISC Core. */ |
| 222 | EM_H8_300 Machine = 46 /* Hitachi H8/300. */ |
| 223 | EM_H8_300H Machine = 47 /* Hitachi H8/300H. */ |
| 224 | EM_H8S Machine = 48 /* Hitachi H8S. */ |
| 225 | EM_H8_500 Machine = 49 /* Hitachi H8/500. */ |
| 226 | EM_IA_64 Machine = 50 /* Intel IA-64 Processor. */ |
| 227 | EM_MIPS_X Machine = 51 /* Stanford MIPS-X. */ |
| 228 | EM_COLDFIRE Machine = 52 /* Motorola ColdFire. */ |
| 229 | EM_68HC12 Machine = 53 /* Motorola M68HC12. */ |
| 230 | EM_MMA Machine = 54 /* Fujitsu MMA. */ |
| 231 | EM_PCP Machine = 55 /* Siemens PCP. */ |
| 232 | EM_NCPU Machine = 56 /* Sony nCPU. */ |
| 233 | EM_NDR1 Machine = 57 /* Denso NDR1 microprocessor. */ |
| 234 | EM_STARCORE Machine = 58 /* Motorola Star*Core processor. */ |
| 235 | EM_ME16 Machine = 59 /* Toyota ME16 processor. */ |
| 236 | EM_ST100 Machine = 60 /* STMicroelectronics ST100 processor. */ |
| 237 | EM_TINYJ Machine = 61 /* Advanced Logic Corp. TinyJ processor. */ |
| 238 | EM_X86_64 Machine = 62 /* Advanced Micro Devices x86-64 */ |
| 239 | EM_AARCH64 Machine = 183 /* ARM 64-bit Architecture (AArch64) */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 240 | |
| 241 | /* Non-standard or deprecated. */ |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 242 | EM_486 Machine = 6 /* Intel i486. */ |
| 243 | EM_MIPS_RS4_BE Machine = 10 /* MIPS R4000 Big-Endian */ |
| 244 | EM_ALPHA_STD Machine = 41 /* Digital Alpha (standard value). */ |
| 245 | EM_ALPHA Machine = 0x9026 /* Alpha (written in the absence of an ABI) */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 246 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 247 | |
| 248 | var machineStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 249 | {0, "EM_NONE"}, |
| 250 | {1, "EM_M32"}, |
| 251 | {2, "EM_SPARC"}, |
| 252 | {3, "EM_386"}, |
| 253 | {4, "EM_68K"}, |
| 254 | {5, "EM_88K"}, |
| 255 | {7, "EM_860"}, |
| 256 | {8, "EM_MIPS"}, |
| 257 | {9, "EM_S370"}, |
| 258 | {10, "EM_MIPS_RS3_LE"}, |
| 259 | {15, "EM_PARISC"}, |
| 260 | {17, "EM_VPP500"}, |
| 261 | {18, "EM_SPARC32PLUS"}, |
| 262 | {19, "EM_960"}, |
| 263 | {20, "EM_PPC"}, |
| 264 | {21, "EM_PPC64"}, |
| 265 | {22, "EM_S390"}, |
| 266 | {36, "EM_V800"}, |
| 267 | {37, "EM_FR20"}, |
| 268 | {38, "EM_RH32"}, |
| 269 | {39, "EM_RCE"}, |
| 270 | {40, "EM_ARM"}, |
| 271 | {42, "EM_SH"}, |
| 272 | {43, "EM_SPARCV9"}, |
| 273 | {44, "EM_TRICORE"}, |
| 274 | {45, "EM_ARC"}, |
| 275 | {46, "EM_H8_300"}, |
| 276 | {47, "EM_H8_300H"}, |
| 277 | {48, "EM_H8S"}, |
| 278 | {49, "EM_H8_500"}, |
| 279 | {50, "EM_IA_64"}, |
| 280 | {51, "EM_MIPS_X"}, |
| 281 | {52, "EM_COLDFIRE"}, |
| 282 | {53, "EM_68HC12"}, |
| 283 | {54, "EM_MMA"}, |
| 284 | {55, "EM_PCP"}, |
| 285 | {56, "EM_NCPU"}, |
| 286 | {57, "EM_NDR1"}, |
| 287 | {58, "EM_STARCORE"}, |
| 288 | {59, "EM_ME16"}, |
| 289 | {60, "EM_ST100"}, |
| 290 | {61, "EM_TINYJ"}, |
| 291 | {62, "EM_X86_64"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 292 | |
| 293 | /* Non-standard or deprecated. */ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 294 | {6, "EM_486"}, |
| 295 | {10, "EM_MIPS_RS4_BE"}, |
| 296 | {41, "EM_ALPHA_STD"}, |
| 297 | {0x9026, "EM_ALPHA"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 298 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 299 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 300 | func (i Machine) String() string { return stringName(uint32(i), machineStrings, false) } |
| 301 | func (i Machine) GoString() string { return stringName(uint32(i), machineStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 302 | |
| 303 | // Special section indices. |
| 304 | type SectionIndex int |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 305 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 306 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 307 | SHN_UNDEF SectionIndex = 0 /* Undefined, missing, irrelevant. */ |
| 308 | SHN_LORESERVE SectionIndex = 0xff00 /* First of reserved range. */ |
| 309 | SHN_LOPROC SectionIndex = 0xff00 /* First processor-specific. */ |
| 310 | SHN_HIPROC SectionIndex = 0xff1f /* Last processor-specific. */ |
| 311 | SHN_LOOS SectionIndex = 0xff20 /* First operating system-specific. */ |
| 312 | SHN_HIOS SectionIndex = 0xff3f /* Last operating system-specific. */ |
| 313 | SHN_ABS SectionIndex = 0xfff1 /* Absolute values. */ |
| 314 | SHN_COMMON SectionIndex = 0xfff2 /* Common data. */ |
Matthew Dempsky | a01d907 | 2015-07-24 14:52:57 -0700 | [diff] [blame] | 315 | SHN_XINDEX SectionIndex = 0xffff /* Escape; index stored elsewhere. */ |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 316 | SHN_HIRESERVE SectionIndex = 0xffff /* Last of reserved range. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 317 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 318 | |
| 319 | var shnStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 320 | {0, "SHN_UNDEF"}, |
| 321 | {0xff00, "SHN_LOPROC"}, |
| 322 | {0xff20, "SHN_LOOS"}, |
| 323 | {0xfff1, "SHN_ABS"}, |
| 324 | {0xfff2, "SHN_COMMON"}, |
| 325 | {0xffff, "SHN_XINDEX"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 326 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 327 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 328 | func (i SectionIndex) String() string { return stringName(uint32(i), shnStrings, false) } |
| 329 | func (i SectionIndex) GoString() string { return stringName(uint32(i), shnStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 330 | |
| 331 | // Section type. |
| 332 | type SectionType uint32 |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 333 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 334 | const ( |
Russ Cox | 09092a7 | 2011-04-27 23:21:03 -0400 | [diff] [blame] | 335 | SHT_NULL SectionType = 0 /* inactive */ |
| 336 | SHT_PROGBITS SectionType = 1 /* program defined information */ |
| 337 | SHT_SYMTAB SectionType = 2 /* symbol table section */ |
| 338 | SHT_STRTAB SectionType = 3 /* string table section */ |
| 339 | SHT_RELA SectionType = 4 /* relocation section with addends */ |
| 340 | SHT_HASH SectionType = 5 /* symbol hash table section */ |
| 341 | SHT_DYNAMIC SectionType = 6 /* dynamic section */ |
| 342 | SHT_NOTE SectionType = 7 /* note section */ |
| 343 | SHT_NOBITS SectionType = 8 /* no space section */ |
| 344 | SHT_REL SectionType = 9 /* relocation section - no addends */ |
| 345 | SHT_SHLIB SectionType = 10 /* reserved - purpose unknown */ |
| 346 | SHT_DYNSYM SectionType = 11 /* dynamic symbol table section */ |
| 347 | SHT_INIT_ARRAY SectionType = 14 /* Initialization function pointers. */ |
| 348 | SHT_FINI_ARRAY SectionType = 15 /* Termination function pointers. */ |
| 349 | SHT_PREINIT_ARRAY SectionType = 16 /* Pre-initialization function ptrs. */ |
| 350 | SHT_GROUP SectionType = 17 /* Section group. */ |
| 351 | SHT_SYMTAB_SHNDX SectionType = 18 /* Section indexes (see SHN_XINDEX). */ |
| 352 | SHT_LOOS SectionType = 0x60000000 /* First of OS specific semantics */ |
| 353 | SHT_GNU_ATTRIBUTES SectionType = 0x6ffffff5 /* GNU object attributes */ |
| 354 | SHT_GNU_HASH SectionType = 0x6ffffff6 /* GNU hash table */ |
| 355 | SHT_GNU_LIBLIST SectionType = 0x6ffffff7 /* GNU prelink library list */ |
| 356 | SHT_GNU_VERDEF SectionType = 0x6ffffffd /* GNU version definition section */ |
| 357 | SHT_GNU_VERNEED SectionType = 0x6ffffffe /* GNU version needs section */ |
| 358 | SHT_GNU_VERSYM SectionType = 0x6fffffff /* GNU version symbol table */ |
| 359 | SHT_HIOS SectionType = 0x6fffffff /* Last of OS specific semantics */ |
| 360 | SHT_LOPROC SectionType = 0x70000000 /* reserved range for processor */ |
| 361 | SHT_HIPROC SectionType = 0x7fffffff /* specific section header types */ |
| 362 | SHT_LOUSER SectionType = 0x80000000 /* reserved range for application */ |
| 363 | SHT_HIUSER SectionType = 0xffffffff /* specific indexes */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 364 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 365 | |
| 366 | var shtStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 367 | {0, "SHT_NULL"}, |
| 368 | {1, "SHT_PROGBITS"}, |
| 369 | {2, "SHT_SYMTAB"}, |
| 370 | {3, "SHT_STRTAB"}, |
| 371 | {4, "SHT_RELA"}, |
| 372 | {5, "SHT_HASH"}, |
| 373 | {6, "SHT_DYNAMIC"}, |
| 374 | {7, "SHT_NOTE"}, |
| 375 | {8, "SHT_NOBITS"}, |
| 376 | {9, "SHT_REL"}, |
| 377 | {10, "SHT_SHLIB"}, |
| 378 | {11, "SHT_DYNSYM"}, |
| 379 | {14, "SHT_INIT_ARRAY"}, |
| 380 | {15, "SHT_FINI_ARRAY"}, |
| 381 | {16, "SHT_PREINIT_ARRAY"}, |
| 382 | {17, "SHT_GROUP"}, |
| 383 | {18, "SHT_SYMTAB_SHNDX"}, |
| 384 | {0x60000000, "SHT_LOOS"}, |
Russ Cox | 09092a7 | 2011-04-27 23:21:03 -0400 | [diff] [blame] | 385 | {0x6ffffff5, "SHT_GNU_ATTRIBUTES"}, |
| 386 | {0x6ffffff6, "SHT_GNU_HASH"}, |
| 387 | {0x6ffffff7, "SHT_GNU_LIBLIST"}, |
| 388 | {0x6ffffffd, "SHT_GNU_VERDEF"}, |
| 389 | {0x6ffffffe, "SHT_GNU_VERNEED"}, |
| 390 | {0x6fffffff, "SHT_GNU_VERSYM"}, |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 391 | {0x70000000, "SHT_LOPROC"}, |
| 392 | {0x7fffffff, "SHT_HIPROC"}, |
| 393 | {0x80000000, "SHT_LOUSER"}, |
| 394 | {0xffffffff, "SHT_HIUSER"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 395 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 396 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 397 | func (i SectionType) String() string { return stringName(uint32(i), shtStrings, false) } |
| 398 | func (i SectionType) GoString() string { return stringName(uint32(i), shtStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 399 | |
| 400 | // Section flags. |
| 401 | type SectionFlag uint32 |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 402 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 403 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 404 | SHF_WRITE SectionFlag = 0x1 /* Section contains writable data. */ |
| 405 | SHF_ALLOC SectionFlag = 0x2 /* Section occupies memory. */ |
| 406 | SHF_EXECINSTR SectionFlag = 0x4 /* Section contains instructions. */ |
| 407 | SHF_MERGE SectionFlag = 0x10 /* Section may be merged. */ |
| 408 | SHF_STRINGS SectionFlag = 0x20 /* Section contains strings. */ |
| 409 | SHF_INFO_LINK SectionFlag = 0x40 /* sh_info holds section index. */ |
| 410 | SHF_LINK_ORDER SectionFlag = 0x80 /* Special ordering requirements. */ |
| 411 | SHF_OS_NONCONFORMING SectionFlag = 0x100 /* OS-specific processing required. */ |
| 412 | SHF_GROUP SectionFlag = 0x200 /* Member of section group. */ |
| 413 | SHF_TLS SectionFlag = 0x400 /* Section contains TLS data. */ |
Austin Clements | 7648387 | 2015-12-02 12:20:29 -0500 | [diff] [blame] | 414 | SHF_COMPRESSED SectionFlag = 0x800 /* Section is compressed. */ |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 415 | SHF_MASKOS SectionFlag = 0x0ff00000 /* OS-specific semantics. */ |
| 416 | SHF_MASKPROC SectionFlag = 0xf0000000 /* Processor-specific semantics. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 417 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 418 | |
| 419 | var shfStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 420 | {0x1, "SHF_WRITE"}, |
| 421 | {0x2, "SHF_ALLOC"}, |
| 422 | {0x4, "SHF_EXECINSTR"}, |
| 423 | {0x10, "SHF_MERGE"}, |
| 424 | {0x20, "SHF_STRINGS"}, |
| 425 | {0x40, "SHF_INFO_LINK"}, |
| 426 | {0x80, "SHF_LINK_ORDER"}, |
| 427 | {0x100, "SHF_OS_NONCONFORMING"}, |
| 428 | {0x200, "SHF_GROUP"}, |
| 429 | {0x400, "SHF_TLS"}, |
Austin Clements | 7648387 | 2015-12-02 12:20:29 -0500 | [diff] [blame] | 430 | {0x800, "SHF_COMPRESSED"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 431 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 432 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 433 | func (i SectionFlag) String() string { return flagName(uint32(i), shfStrings, false) } |
| 434 | func (i SectionFlag) GoString() string { return flagName(uint32(i), shfStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 435 | |
Austin Clements | 7648387 | 2015-12-02 12:20:29 -0500 | [diff] [blame] | 436 | // Section compression type. |
| 437 | type CompressionType int |
| 438 | |
| 439 | const ( |
| 440 | COMPRESS_ZLIB CompressionType = 1 /* ZLIB compression. */ |
| 441 | COMPRESS_LOOS CompressionType = 0x60000000 /* First OS-specific. */ |
| 442 | COMPRESS_HIOS CompressionType = 0x6fffffff /* Last OS-specific. */ |
| 443 | COMPRESS_LOPROC CompressionType = 0x70000000 /* First processor-specific type. */ |
| 444 | COMPRESS_HIPROC CompressionType = 0x7fffffff /* Last processor-specific type. */ |
| 445 | ) |
| 446 | |
| 447 | var compressionStrings = []intName{ |
| 448 | {0, "COMPRESS_ZLIB"}, |
| 449 | {0x60000000, "COMPRESS_LOOS"}, |
| 450 | {0x6fffffff, "COMPRESS_HIOS"}, |
| 451 | {0x70000000, "COMPRESS_LOPROC"}, |
| 452 | {0x7fffffff, "COMPRESS_HIPROC"}, |
| 453 | } |
| 454 | |
| 455 | func (i CompressionType) String() string { return stringName(uint32(i), compressionStrings, false) } |
| 456 | func (i CompressionType) GoString() string { return stringName(uint32(i), compressionStrings, true) } |
| 457 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 458 | // Prog.Type |
| 459 | type ProgType int |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 460 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 461 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 462 | PT_NULL ProgType = 0 /* Unused entry. */ |
| 463 | PT_LOAD ProgType = 1 /* Loadable segment. */ |
| 464 | PT_DYNAMIC ProgType = 2 /* Dynamic linking information segment. */ |
| 465 | PT_INTERP ProgType = 3 /* Pathname of interpreter. */ |
| 466 | PT_NOTE ProgType = 4 /* Auxiliary information. */ |
| 467 | PT_SHLIB ProgType = 5 /* Reserved (not used). */ |
| 468 | PT_PHDR ProgType = 6 /* Location of program header itself. */ |
| 469 | PT_TLS ProgType = 7 /* Thread local storage segment */ |
| 470 | PT_LOOS ProgType = 0x60000000 /* First OS-specific. */ |
| 471 | PT_HIOS ProgType = 0x6fffffff /* Last OS-specific. */ |
| 472 | PT_LOPROC ProgType = 0x70000000 /* First processor-specific type. */ |
| 473 | PT_HIPROC ProgType = 0x7fffffff /* Last processor-specific type. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 474 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 475 | |
| 476 | var ptStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 477 | {0, "PT_NULL"}, |
| 478 | {1, "PT_LOAD"}, |
| 479 | {2, "PT_DYNAMIC"}, |
| 480 | {3, "PT_INTERP"}, |
| 481 | {4, "PT_NOTE"}, |
| 482 | {5, "PT_SHLIB"}, |
| 483 | {6, "PT_PHDR"}, |
| 484 | {7, "PT_TLS"}, |
| 485 | {0x60000000, "PT_LOOS"}, |
| 486 | {0x6fffffff, "PT_HIOS"}, |
| 487 | {0x70000000, "PT_LOPROC"}, |
| 488 | {0x7fffffff, "PT_HIPROC"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 489 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 490 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 491 | func (i ProgType) String() string { return stringName(uint32(i), ptStrings, false) } |
| 492 | func (i ProgType) GoString() string { return stringName(uint32(i), ptStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 493 | |
| 494 | // Prog.Flag |
| 495 | type ProgFlag uint32 |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 496 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 497 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 498 | PF_X ProgFlag = 0x1 /* Executable. */ |
| 499 | PF_W ProgFlag = 0x2 /* Writable. */ |
| 500 | PF_R ProgFlag = 0x4 /* Readable. */ |
| 501 | PF_MASKOS ProgFlag = 0x0ff00000 /* Operating system-specific. */ |
| 502 | PF_MASKPROC ProgFlag = 0xf0000000 /* Processor-specific. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 503 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 504 | |
| 505 | var pfStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 506 | {0x1, "PF_X"}, |
| 507 | {0x2, "PF_W"}, |
| 508 | {0x4, "PF_R"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 509 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 510 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 511 | func (i ProgFlag) String() string { return flagName(uint32(i), pfStrings, false) } |
| 512 | func (i ProgFlag) GoString() string { return flagName(uint32(i), pfStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 513 | |
| 514 | // Dyn.Tag |
| 515 | type DynTag int |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 516 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 517 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 518 | DT_NULL DynTag = 0 /* Terminating entry. */ |
| 519 | DT_NEEDED DynTag = 1 /* String table offset of a needed shared library. */ |
| 520 | DT_PLTRELSZ DynTag = 2 /* Total size in bytes of PLT relocations. */ |
| 521 | DT_PLTGOT DynTag = 3 /* Processor-dependent address. */ |
| 522 | DT_HASH DynTag = 4 /* Address of symbol hash table. */ |
| 523 | DT_STRTAB DynTag = 5 /* Address of string table. */ |
| 524 | DT_SYMTAB DynTag = 6 /* Address of symbol table. */ |
| 525 | DT_RELA DynTag = 7 /* Address of ElfNN_Rela relocations. */ |
| 526 | DT_RELASZ DynTag = 8 /* Total size of ElfNN_Rela relocations. */ |
| 527 | DT_RELAENT DynTag = 9 /* Size of each ElfNN_Rela relocation entry. */ |
| 528 | DT_STRSZ DynTag = 10 /* Size of string table. */ |
| 529 | DT_SYMENT DynTag = 11 /* Size of each symbol table entry. */ |
| 530 | DT_INIT DynTag = 12 /* Address of initialization function. */ |
| 531 | DT_FINI DynTag = 13 /* Address of finalization function. */ |
| 532 | DT_SONAME DynTag = 14 /* String table offset of shared object name. */ |
| 533 | DT_RPATH DynTag = 15 /* String table offset of library path. [sup] */ |
| 534 | DT_SYMBOLIC DynTag = 16 /* Indicates "symbolic" linking. [sup] */ |
| 535 | DT_REL DynTag = 17 /* Address of ElfNN_Rel relocations. */ |
| 536 | DT_RELSZ DynTag = 18 /* Total size of ElfNN_Rel relocations. */ |
| 537 | DT_RELENT DynTag = 19 /* Size of each ElfNN_Rel relocation. */ |
| 538 | DT_PLTREL DynTag = 20 /* Type of relocation used for PLT. */ |
| 539 | DT_DEBUG DynTag = 21 /* Reserved (not used). */ |
| 540 | DT_TEXTREL DynTag = 22 /* Indicates there may be relocations in non-writable segments. [sup] */ |
| 541 | DT_JMPREL DynTag = 23 /* Address of PLT relocations. */ |
| 542 | DT_BIND_NOW DynTag = 24 /* [sup] */ |
| 543 | DT_INIT_ARRAY DynTag = 25 /* Address of the array of pointers to initialization functions */ |
| 544 | DT_FINI_ARRAY DynTag = 26 /* Address of the array of pointers to termination functions */ |
| 545 | DT_INIT_ARRAYSZ DynTag = 27 /* Size in bytes of the array of initialization functions. */ |
Robert Hencke | f999e14 | 2014-04-29 12:44:40 -0400 | [diff] [blame] | 546 | DT_FINI_ARRAYSZ DynTag = 28 /* Size in bytes of the array of termination functions. */ |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 547 | DT_RUNPATH DynTag = 29 /* String table offset of a null-terminated library search path string. */ |
| 548 | DT_FLAGS DynTag = 30 /* Object specific flag values. */ |
| 549 | DT_ENCODING DynTag = 32 /* Values greater than or equal to DT_ENCODING |
Robert Griesemer | 6a4940e | 2009-11-05 15:35:02 -0800 | [diff] [blame] | 550 | and less than DT_LOOS follow the rules for |
| 551 | the interpretation of the d_un union |
| 552 | as follows: even == 'd_ptr', even == 'd_val' |
| 553 | or none */ |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 554 | DT_PREINIT_ARRAY DynTag = 32 /* Address of the array of pointers to pre-initialization functions. */ |
| 555 | DT_PREINIT_ARRAYSZ DynTag = 33 /* Size in bytes of the array of pre-initialization functions. */ |
| 556 | DT_LOOS DynTag = 0x6000000d /* First OS-specific */ |
| 557 | DT_HIOS DynTag = 0x6ffff000 /* Last OS-specific */ |
Russ Cox | 09092a7 | 2011-04-27 23:21:03 -0400 | [diff] [blame] | 558 | DT_VERSYM DynTag = 0x6ffffff0 |
| 559 | DT_VERNEED DynTag = 0x6ffffffe |
| 560 | DT_VERNEEDNUM DynTag = 0x6fffffff |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 561 | DT_LOPROC DynTag = 0x70000000 /* First processor-specific type. */ |
| 562 | DT_HIPROC DynTag = 0x7fffffff /* Last processor-specific type. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 563 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 564 | |
| 565 | var dtStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 566 | {0, "DT_NULL"}, |
| 567 | {1, "DT_NEEDED"}, |
| 568 | {2, "DT_PLTRELSZ"}, |
| 569 | {3, "DT_PLTGOT"}, |
| 570 | {4, "DT_HASH"}, |
| 571 | {5, "DT_STRTAB"}, |
| 572 | {6, "DT_SYMTAB"}, |
| 573 | {7, "DT_RELA"}, |
| 574 | {8, "DT_RELASZ"}, |
| 575 | {9, "DT_RELAENT"}, |
| 576 | {10, "DT_STRSZ"}, |
| 577 | {11, "DT_SYMENT"}, |
| 578 | {12, "DT_INIT"}, |
| 579 | {13, "DT_FINI"}, |
| 580 | {14, "DT_SONAME"}, |
| 581 | {15, "DT_RPATH"}, |
| 582 | {16, "DT_SYMBOLIC"}, |
| 583 | {17, "DT_REL"}, |
| 584 | {18, "DT_RELSZ"}, |
| 585 | {19, "DT_RELENT"}, |
| 586 | {20, "DT_PLTREL"}, |
| 587 | {21, "DT_DEBUG"}, |
| 588 | {22, "DT_TEXTREL"}, |
| 589 | {23, "DT_JMPREL"}, |
| 590 | {24, "DT_BIND_NOW"}, |
| 591 | {25, "DT_INIT_ARRAY"}, |
| 592 | {26, "DT_FINI_ARRAY"}, |
| 593 | {27, "DT_INIT_ARRAYSZ"}, |
| 594 | {28, "DT_FINI_ARRAYSZ"}, |
| 595 | {29, "DT_RUNPATH"}, |
| 596 | {30, "DT_FLAGS"}, |
| 597 | {32, "DT_ENCODING"}, |
| 598 | {32, "DT_PREINIT_ARRAY"}, |
| 599 | {33, "DT_PREINIT_ARRAYSZ"}, |
| 600 | {0x6000000d, "DT_LOOS"}, |
| 601 | {0x6ffff000, "DT_HIOS"}, |
Russ Cox | 09092a7 | 2011-04-27 23:21:03 -0400 | [diff] [blame] | 602 | {0x6ffffff0, "DT_VERSYM"}, |
| 603 | {0x6ffffffe, "DT_VERNEED"}, |
| 604 | {0x6fffffff, "DT_VERNEEDNUM"}, |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 605 | {0x70000000, "DT_LOPROC"}, |
| 606 | {0x7fffffff, "DT_HIPROC"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 607 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 608 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 609 | func (i DynTag) String() string { return stringName(uint32(i), dtStrings, false) } |
| 610 | func (i DynTag) GoString() string { return stringName(uint32(i), dtStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 611 | |
| 612 | // DT_FLAGS values. |
| 613 | type DynFlag int |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 614 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 615 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 616 | DF_ORIGIN DynFlag = 0x0001 /* Indicates that the object being loaded may |
Robert Griesemer | 07b6bec | 2009-11-05 22:05:43 -0800 | [diff] [blame] | 617 | make reference to the |
| 618 | $ORIGIN substitution string */ |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 619 | DF_SYMBOLIC DynFlag = 0x0002 /* Indicates "symbolic" linking. */ |
| 620 | DF_TEXTREL DynFlag = 0x0004 /* Indicates there may be relocations in non-writable segments. */ |
| 621 | DF_BIND_NOW DynFlag = 0x0008 /* Indicates that the dynamic linker should |
Robert Griesemer | 6a4940e | 2009-11-05 15:35:02 -0800 | [diff] [blame] | 622 | process all relocations for the object |
| 623 | containing this entry before transferring |
| 624 | control to the program. */ |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 625 | DF_STATIC_TLS DynFlag = 0x0010 /* Indicates that the shared object or |
Robert Griesemer | 6a4940e | 2009-11-05 15:35:02 -0800 | [diff] [blame] | 626 | executable contains code using a static |
| 627 | thread-local storage scheme. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 628 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 629 | |
| 630 | var dflagStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 631 | {0x0001, "DF_ORIGIN"}, |
| 632 | {0x0002, "DF_SYMBOLIC"}, |
| 633 | {0x0004, "DF_TEXTREL"}, |
| 634 | {0x0008, "DF_BIND_NOW"}, |
| 635 | {0x0010, "DF_STATIC_TLS"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 636 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 637 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 638 | func (i DynFlag) String() string { return flagName(uint32(i), dflagStrings, false) } |
| 639 | func (i DynFlag) GoString() string { return flagName(uint32(i), dflagStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 640 | |
| 641 | // NType values; used in core files. |
| 642 | type NType int |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 643 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 644 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 645 | NT_PRSTATUS NType = 1 /* Process status. */ |
| 646 | NT_FPREGSET NType = 2 /* Floating point registers. */ |
| 647 | NT_PRPSINFO NType = 3 /* Process state info. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 648 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 649 | |
| 650 | var ntypeStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 651 | {1, "NT_PRSTATUS"}, |
| 652 | {2, "NT_FPREGSET"}, |
| 653 | {3, "NT_PRPSINFO"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 654 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 655 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 656 | func (i NType) String() string { return stringName(uint32(i), ntypeStrings, false) } |
| 657 | func (i NType) GoString() string { return stringName(uint32(i), ntypeStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 658 | |
| 659 | /* Symbol Binding - ELFNN_ST_BIND - st_info */ |
| 660 | type SymBind int |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 661 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 662 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 663 | STB_LOCAL SymBind = 0 /* Local symbol */ |
| 664 | STB_GLOBAL SymBind = 1 /* Global symbol */ |
| 665 | STB_WEAK SymBind = 2 /* like global - lower precedence */ |
| 666 | STB_LOOS SymBind = 10 /* Reserved range for operating system */ |
| 667 | STB_HIOS SymBind = 12 /* specific semantics. */ |
| 668 | STB_LOPROC SymBind = 13 /* reserved range for processor */ |
| 669 | STB_HIPROC SymBind = 15 /* specific semantics. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 670 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 671 | |
| 672 | var stbStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 673 | {0, "STB_LOCAL"}, |
| 674 | {1, "STB_GLOBAL"}, |
| 675 | {2, "STB_WEAK"}, |
| 676 | {10, "STB_LOOS"}, |
| 677 | {12, "STB_HIOS"}, |
| 678 | {13, "STB_LOPROC"}, |
| 679 | {15, "STB_HIPROC"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 680 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 681 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 682 | func (i SymBind) String() string { return stringName(uint32(i), stbStrings, false) } |
| 683 | func (i SymBind) GoString() string { return stringName(uint32(i), stbStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 684 | |
| 685 | /* Symbol type - ELFNN_ST_TYPE - st_info */ |
| 686 | type SymType int |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 687 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 688 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 689 | STT_NOTYPE SymType = 0 /* Unspecified type. */ |
| 690 | STT_OBJECT SymType = 1 /* Data object. */ |
| 691 | STT_FUNC SymType = 2 /* Function. */ |
| 692 | STT_SECTION SymType = 3 /* Section. */ |
| 693 | STT_FILE SymType = 4 /* Source file. */ |
| 694 | STT_COMMON SymType = 5 /* Uninitialized common block. */ |
| 695 | STT_TLS SymType = 6 /* TLS object. */ |
| 696 | STT_LOOS SymType = 10 /* Reserved range for operating system */ |
| 697 | STT_HIOS SymType = 12 /* specific semantics. */ |
| 698 | STT_LOPROC SymType = 13 /* reserved range for processor */ |
| 699 | STT_HIPROC SymType = 15 /* specific semantics. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 700 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 701 | |
| 702 | var sttStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 703 | {0, "STT_NOTYPE"}, |
| 704 | {1, "STT_OBJECT"}, |
| 705 | {2, "STT_FUNC"}, |
| 706 | {3, "STT_SECTION"}, |
| 707 | {4, "STT_FILE"}, |
| 708 | {5, "STT_COMMON"}, |
| 709 | {6, "STT_TLS"}, |
| 710 | {10, "STT_LOOS"}, |
| 711 | {12, "STT_HIOS"}, |
| 712 | {13, "STT_LOPROC"}, |
| 713 | {15, "STT_HIPROC"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 714 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 715 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 716 | func (i SymType) String() string { return stringName(uint32(i), sttStrings, false) } |
| 717 | func (i SymType) GoString() string { return stringName(uint32(i), sttStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 718 | |
| 719 | /* Symbol visibility - ELFNN_ST_VISIBILITY - st_other */ |
| 720 | type SymVis int |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 721 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 722 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 723 | STV_DEFAULT SymVis = 0x0 /* Default visibility (see binding). */ |
| 724 | STV_INTERNAL SymVis = 0x1 /* Special meaning in relocatable objects. */ |
| 725 | STV_HIDDEN SymVis = 0x2 /* Not visible. */ |
| 726 | STV_PROTECTED SymVis = 0x3 /* Visible but not preemptible. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 727 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 728 | |
| 729 | var stvStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 730 | {0x0, "STV_DEFAULT"}, |
| 731 | {0x1, "STV_INTERNAL"}, |
| 732 | {0x2, "STV_HIDDEN"}, |
| 733 | {0x3, "STV_PROTECTED"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 734 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 735 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 736 | func (i SymVis) String() string { return stringName(uint32(i), stvStrings, false) } |
| 737 | func (i SymVis) GoString() string { return stringName(uint32(i), stvStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 738 | |
| 739 | /* |
| 740 | * Relocation types. |
| 741 | */ |
| 742 | |
| 743 | // Relocation types for x86-64. |
| 744 | type R_X86_64 int |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 745 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 746 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 747 | R_X86_64_NONE R_X86_64 = 0 /* No relocation. */ |
| 748 | R_X86_64_64 R_X86_64 = 1 /* Add 64 bit symbol value. */ |
| 749 | R_X86_64_PC32 R_X86_64 = 2 /* PC-relative 32 bit signed sym value. */ |
| 750 | R_X86_64_GOT32 R_X86_64 = 3 /* PC-relative 32 bit GOT offset. */ |
| 751 | R_X86_64_PLT32 R_X86_64 = 4 /* PC-relative 32 bit PLT offset. */ |
| 752 | R_X86_64_COPY R_X86_64 = 5 /* Copy data from shared object. */ |
| 753 | R_X86_64_GLOB_DAT R_X86_64 = 6 /* Set GOT entry to data address. */ |
| 754 | R_X86_64_JMP_SLOT R_X86_64 = 7 /* Set GOT entry to code address. */ |
| 755 | R_X86_64_RELATIVE R_X86_64 = 8 /* Add load address of shared object. */ |
| 756 | R_X86_64_GOTPCREL R_X86_64 = 9 /* Add 32 bit signed pcrel offset to GOT. */ |
| 757 | R_X86_64_32 R_X86_64 = 10 /* Add 32 bit zero extended symbol value */ |
| 758 | R_X86_64_32S R_X86_64 = 11 /* Add 32 bit sign extended symbol value */ |
| 759 | R_X86_64_16 R_X86_64 = 12 /* Add 16 bit zero extended symbol value */ |
| 760 | R_X86_64_PC16 R_X86_64 = 13 /* Add 16 bit signed extended pc relative symbol value */ |
| 761 | R_X86_64_8 R_X86_64 = 14 /* Add 8 bit zero extended symbol value */ |
| 762 | R_X86_64_PC8 R_X86_64 = 15 /* Add 8 bit signed extended pc relative symbol value */ |
| 763 | R_X86_64_DTPMOD64 R_X86_64 = 16 /* ID of module containing symbol */ |
| 764 | R_X86_64_DTPOFF64 R_X86_64 = 17 /* Offset in TLS block */ |
| 765 | R_X86_64_TPOFF64 R_X86_64 = 18 /* Offset in static TLS block */ |
| 766 | R_X86_64_TLSGD R_X86_64 = 19 /* PC relative offset to GD GOT entry */ |
| 767 | R_X86_64_TLSLD R_X86_64 = 20 /* PC relative offset to LD GOT entry */ |
| 768 | R_X86_64_DTPOFF32 R_X86_64 = 21 /* Offset in TLS block */ |
| 769 | R_X86_64_GOTTPOFF R_X86_64 = 22 /* PC relative offset to IE GOT entry */ |
| 770 | R_X86_64_TPOFF32 R_X86_64 = 23 /* Offset in static TLS block */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 771 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 772 | |
| 773 | var rx86_64Strings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 774 | {0, "R_X86_64_NONE"}, |
| 775 | {1, "R_X86_64_64"}, |
| 776 | {2, "R_X86_64_PC32"}, |
| 777 | {3, "R_X86_64_GOT32"}, |
| 778 | {4, "R_X86_64_PLT32"}, |
| 779 | {5, "R_X86_64_COPY"}, |
| 780 | {6, "R_X86_64_GLOB_DAT"}, |
| 781 | {7, "R_X86_64_JMP_SLOT"}, |
| 782 | {8, "R_X86_64_RELATIVE"}, |
| 783 | {9, "R_X86_64_GOTPCREL"}, |
| 784 | {10, "R_X86_64_32"}, |
| 785 | {11, "R_X86_64_32S"}, |
| 786 | {12, "R_X86_64_16"}, |
| 787 | {13, "R_X86_64_PC16"}, |
| 788 | {14, "R_X86_64_8"}, |
| 789 | {15, "R_X86_64_PC8"}, |
| 790 | {16, "R_X86_64_DTPMOD64"}, |
| 791 | {17, "R_X86_64_DTPOFF64"}, |
| 792 | {18, "R_X86_64_TPOFF64"}, |
| 793 | {19, "R_X86_64_TLSGD"}, |
| 794 | {20, "R_X86_64_TLSLD"}, |
| 795 | {21, "R_X86_64_DTPOFF32"}, |
| 796 | {22, "R_X86_64_GOTTPOFF"}, |
| 797 | {23, "R_X86_64_TPOFF32"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 798 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 799 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 800 | func (i R_X86_64) String() string { return stringName(uint32(i), rx86_64Strings, false) } |
| 801 | func (i R_X86_64) GoString() string { return stringName(uint32(i), rx86_64Strings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 802 | |
Michael Hudson-Doyle | 299117e | 2014-08-27 20:18:56 -0700 | [diff] [blame] | 803 | // Relocation types for AArch64 (aka arm64) |
| 804 | type R_AARCH64 int |
| 805 | |
| 806 | const ( |
| 807 | R_AARCH64_NONE R_AARCH64 = 0 |
| 808 | R_AARCH64_P32_ABS32 R_AARCH64 = 1 |
| 809 | R_AARCH64_P32_ABS16 R_AARCH64 = 2 |
| 810 | R_AARCH64_P32_PREL32 R_AARCH64 = 3 |
| 811 | R_AARCH64_P32_PREL16 R_AARCH64 = 4 |
| 812 | R_AARCH64_P32_MOVW_UABS_G0 R_AARCH64 = 5 |
| 813 | R_AARCH64_P32_MOVW_UABS_G0_NC R_AARCH64 = 6 |
| 814 | R_AARCH64_P32_MOVW_UABS_G1 R_AARCH64 = 7 |
| 815 | R_AARCH64_P32_MOVW_SABS_G0 R_AARCH64 = 8 |
| 816 | R_AARCH64_P32_LD_PREL_LO19 R_AARCH64 = 9 |
| 817 | R_AARCH64_P32_ADR_PREL_LO21 R_AARCH64 = 10 |
| 818 | R_AARCH64_P32_ADR_PREL_PG_HI21 R_AARCH64 = 11 |
| 819 | R_AARCH64_P32_ADD_ABS_LO12_NC R_AARCH64 = 12 |
| 820 | R_AARCH64_P32_LDST8_ABS_LO12_NC R_AARCH64 = 13 |
| 821 | R_AARCH64_P32_LDST16_ABS_LO12_NC R_AARCH64 = 14 |
| 822 | R_AARCH64_P32_LDST32_ABS_LO12_NC R_AARCH64 = 15 |
| 823 | R_AARCH64_P32_LDST64_ABS_LO12_NC R_AARCH64 = 16 |
| 824 | R_AARCH64_P32_LDST128_ABS_LO12_NC R_AARCH64 = 17 |
| 825 | R_AARCH64_P32_TSTBR14 R_AARCH64 = 18 |
| 826 | R_AARCH64_P32_CONDBR19 R_AARCH64 = 19 |
| 827 | R_AARCH64_P32_JUMP26 R_AARCH64 = 20 |
| 828 | R_AARCH64_P32_CALL26 R_AARCH64 = 21 |
| 829 | R_AARCH64_P32_GOT_LD_PREL19 R_AARCH64 = 25 |
| 830 | R_AARCH64_P32_ADR_GOT_PAGE R_AARCH64 = 26 |
| 831 | R_AARCH64_P32_LD32_GOT_LO12_NC R_AARCH64 = 27 |
| 832 | R_AARCH64_P32_TLSGD_ADR_PAGE21 R_AARCH64 = 81 |
| 833 | R_AARCH64_P32_TLSGD_ADD_LO12_NC R_AARCH64 = 82 |
| 834 | R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21 R_AARCH64 = 103 |
| 835 | R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC R_AARCH64 = 104 |
| 836 | R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19 R_AARCH64 = 105 |
| 837 | R_AARCH64_P32_TLSLE_MOVW_TPREL_G1 R_AARCH64 = 106 |
| 838 | R_AARCH64_P32_TLSLE_MOVW_TPREL_G0 R_AARCH64 = 107 |
| 839 | R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC R_AARCH64 = 108 |
| 840 | R_AARCH64_P32_TLSLE_ADD_TPREL_HI12 R_AARCH64 = 109 |
| 841 | R_AARCH64_P32_TLSLE_ADD_TPREL_LO12 R_AARCH64 = 110 |
| 842 | R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC R_AARCH64 = 111 |
| 843 | R_AARCH64_P32_TLSDESC_LD_PREL19 R_AARCH64 = 122 |
| 844 | R_AARCH64_P32_TLSDESC_ADR_PREL21 R_AARCH64 = 123 |
| 845 | R_AARCH64_P32_TLSDESC_ADR_PAGE21 R_AARCH64 = 124 |
| 846 | R_AARCH64_P32_TLSDESC_LD32_LO12_NC R_AARCH64 = 125 |
| 847 | R_AARCH64_P32_TLSDESC_ADD_LO12_NC R_AARCH64 = 126 |
| 848 | R_AARCH64_P32_TLSDESC_CALL R_AARCH64 = 127 |
| 849 | R_AARCH64_P32_COPY R_AARCH64 = 180 |
| 850 | R_AARCH64_P32_GLOB_DAT R_AARCH64 = 181 |
| 851 | R_AARCH64_P32_JUMP_SLOT R_AARCH64 = 182 |
| 852 | R_AARCH64_P32_RELATIVE R_AARCH64 = 183 |
| 853 | R_AARCH64_P32_TLS_DTPMOD R_AARCH64 = 184 |
| 854 | R_AARCH64_P32_TLS_DTPREL R_AARCH64 = 185 |
| 855 | R_AARCH64_P32_TLS_TPREL R_AARCH64 = 186 |
| 856 | R_AARCH64_P32_TLSDESC R_AARCH64 = 187 |
| 857 | R_AARCH64_P32_IRELATIVE R_AARCH64 = 188 |
| 858 | R_AARCH64_NULL R_AARCH64 = 256 |
| 859 | R_AARCH64_ABS64 R_AARCH64 = 257 |
| 860 | R_AARCH64_ABS32 R_AARCH64 = 258 |
| 861 | R_AARCH64_ABS16 R_AARCH64 = 259 |
| 862 | R_AARCH64_PREL64 R_AARCH64 = 260 |
| 863 | R_AARCH64_PREL32 R_AARCH64 = 261 |
| 864 | R_AARCH64_PREL16 R_AARCH64 = 262 |
| 865 | R_AARCH64_MOVW_UABS_G0 R_AARCH64 = 263 |
| 866 | R_AARCH64_MOVW_UABS_G0_NC R_AARCH64 = 264 |
| 867 | R_AARCH64_MOVW_UABS_G1 R_AARCH64 = 265 |
| 868 | R_AARCH64_MOVW_UABS_G1_NC R_AARCH64 = 266 |
| 869 | R_AARCH64_MOVW_UABS_G2 R_AARCH64 = 267 |
| 870 | R_AARCH64_MOVW_UABS_G2_NC R_AARCH64 = 268 |
| 871 | R_AARCH64_MOVW_UABS_G3 R_AARCH64 = 269 |
| 872 | R_AARCH64_MOVW_SABS_G0 R_AARCH64 = 270 |
| 873 | R_AARCH64_MOVW_SABS_G1 R_AARCH64 = 271 |
| 874 | R_AARCH64_MOVW_SABS_G2 R_AARCH64 = 272 |
| 875 | R_AARCH64_LD_PREL_LO19 R_AARCH64 = 273 |
| 876 | R_AARCH64_ADR_PREL_LO21 R_AARCH64 = 274 |
| 877 | R_AARCH64_ADR_PREL_PG_HI21 R_AARCH64 = 275 |
| 878 | R_AARCH64_ADR_PREL_PG_HI21_NC R_AARCH64 = 276 |
| 879 | R_AARCH64_ADD_ABS_LO12_NC R_AARCH64 = 277 |
| 880 | R_AARCH64_LDST8_ABS_LO12_NC R_AARCH64 = 278 |
| 881 | R_AARCH64_TSTBR14 R_AARCH64 = 279 |
| 882 | R_AARCH64_CONDBR19 R_AARCH64 = 280 |
| 883 | R_AARCH64_JUMP26 R_AARCH64 = 282 |
| 884 | R_AARCH64_CALL26 R_AARCH64 = 283 |
| 885 | R_AARCH64_LDST16_ABS_LO12_NC R_AARCH64 = 284 |
| 886 | R_AARCH64_LDST32_ABS_LO12_NC R_AARCH64 = 285 |
| 887 | R_AARCH64_LDST64_ABS_LO12_NC R_AARCH64 = 286 |
| 888 | R_AARCH64_LDST128_ABS_LO12_NC R_AARCH64 = 299 |
| 889 | R_AARCH64_GOT_LD_PREL19 R_AARCH64 = 309 |
| 890 | R_AARCH64_ADR_GOT_PAGE R_AARCH64 = 311 |
| 891 | R_AARCH64_LD64_GOT_LO12_NC R_AARCH64 = 312 |
| 892 | R_AARCH64_TLSGD_ADR_PAGE21 R_AARCH64 = 513 |
| 893 | R_AARCH64_TLSGD_ADD_LO12_NC R_AARCH64 = 514 |
| 894 | R_AARCH64_TLSIE_MOVW_GOTTPREL_G1 R_AARCH64 = 539 |
| 895 | R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC R_AARCH64 = 540 |
| 896 | R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 R_AARCH64 = 541 |
| 897 | R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC R_AARCH64 = 542 |
| 898 | R_AARCH64_TLSIE_LD_GOTTPREL_PREL19 R_AARCH64 = 543 |
| 899 | R_AARCH64_TLSLE_MOVW_TPREL_G2 R_AARCH64 = 544 |
| 900 | R_AARCH64_TLSLE_MOVW_TPREL_G1 R_AARCH64 = 545 |
| 901 | R_AARCH64_TLSLE_MOVW_TPREL_G1_NC R_AARCH64 = 546 |
| 902 | R_AARCH64_TLSLE_MOVW_TPREL_G0 R_AARCH64 = 547 |
| 903 | R_AARCH64_TLSLE_MOVW_TPREL_G0_NC R_AARCH64 = 548 |
| 904 | R_AARCH64_TLSLE_ADD_TPREL_HI12 R_AARCH64 = 549 |
| 905 | R_AARCH64_TLSLE_ADD_TPREL_LO12 R_AARCH64 = 550 |
| 906 | R_AARCH64_TLSLE_ADD_TPREL_LO12_NC R_AARCH64 = 551 |
| 907 | R_AARCH64_TLSDESC_LD_PREL19 R_AARCH64 = 560 |
| 908 | R_AARCH64_TLSDESC_ADR_PREL21 R_AARCH64 = 561 |
| 909 | R_AARCH64_TLSDESC_ADR_PAGE21 R_AARCH64 = 562 |
| 910 | R_AARCH64_TLSDESC_LD64_LO12_NC R_AARCH64 = 563 |
| 911 | R_AARCH64_TLSDESC_ADD_LO12_NC R_AARCH64 = 564 |
| 912 | R_AARCH64_TLSDESC_OFF_G1 R_AARCH64 = 565 |
| 913 | R_AARCH64_TLSDESC_OFF_G0_NC R_AARCH64 = 566 |
| 914 | R_AARCH64_TLSDESC_LDR R_AARCH64 = 567 |
| 915 | R_AARCH64_TLSDESC_ADD R_AARCH64 = 568 |
| 916 | R_AARCH64_TLSDESC_CALL R_AARCH64 = 569 |
| 917 | R_AARCH64_COPY R_AARCH64 = 1024 |
| 918 | R_AARCH64_GLOB_DAT R_AARCH64 = 1025 |
| 919 | R_AARCH64_JUMP_SLOT R_AARCH64 = 1026 |
| 920 | R_AARCH64_RELATIVE R_AARCH64 = 1027 |
| 921 | R_AARCH64_TLS_DTPMOD64 R_AARCH64 = 1028 |
| 922 | R_AARCH64_TLS_DTPREL64 R_AARCH64 = 1029 |
| 923 | R_AARCH64_TLS_TPREL64 R_AARCH64 = 1030 |
| 924 | R_AARCH64_TLSDESC R_AARCH64 = 1031 |
| 925 | R_AARCH64_IRELATIVE R_AARCH64 = 1032 |
| 926 | ) |
| 927 | |
| 928 | var raarch64Strings = []intName{ |
| 929 | {0, "R_AARCH64_NONE"}, |
| 930 | {1, "R_AARCH64_P32_ABS32"}, |
| 931 | {2, "R_AARCH64_P32_ABS16"}, |
| 932 | {3, "R_AARCH64_P32_PREL32"}, |
| 933 | {4, "R_AARCH64_P32_PREL16"}, |
| 934 | {5, "R_AARCH64_P32_MOVW_UABS_G0"}, |
| 935 | {6, "R_AARCH64_P32_MOVW_UABS_G0_NC"}, |
| 936 | {7, "R_AARCH64_P32_MOVW_UABS_G1"}, |
| 937 | {8, "R_AARCH64_P32_MOVW_SABS_G0"}, |
| 938 | {9, "R_AARCH64_P32_LD_PREL_LO19"}, |
| 939 | {10, "R_AARCH64_P32_ADR_PREL_LO21"}, |
| 940 | {11, "R_AARCH64_P32_ADR_PREL_PG_HI21"}, |
| 941 | {12, "R_AARCH64_P32_ADD_ABS_LO12_NC"}, |
| 942 | {13, "R_AARCH64_P32_LDST8_ABS_LO12_NC"}, |
| 943 | {14, "R_AARCH64_P32_LDST16_ABS_LO12_NC"}, |
| 944 | {15, "R_AARCH64_P32_LDST32_ABS_LO12_NC"}, |
| 945 | {16, "R_AARCH64_P32_LDST64_ABS_LO12_NC"}, |
| 946 | {17, "R_AARCH64_P32_LDST128_ABS_LO12_NC"}, |
| 947 | {18, "R_AARCH64_P32_TSTBR14"}, |
| 948 | {19, "R_AARCH64_P32_CONDBR19"}, |
| 949 | {20, "R_AARCH64_P32_JUMP26"}, |
| 950 | {21, "R_AARCH64_P32_CALL26"}, |
| 951 | {25, "R_AARCH64_P32_GOT_LD_PREL19"}, |
| 952 | {26, "R_AARCH64_P32_ADR_GOT_PAGE"}, |
| 953 | {27, "R_AARCH64_P32_LD32_GOT_LO12_NC"}, |
| 954 | {81, "R_AARCH64_P32_TLSGD_ADR_PAGE21"}, |
| 955 | {82, "R_AARCH64_P32_TLSGD_ADD_LO12_NC"}, |
| 956 | {103, "R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21"}, |
| 957 | {104, "R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC"}, |
| 958 | {105, "R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19"}, |
| 959 | {106, "R_AARCH64_P32_TLSLE_MOVW_TPREL_G1"}, |
| 960 | {107, "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0"}, |
| 961 | {108, "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC"}, |
| 962 | {109, "R_AARCH64_P32_TLSLE_ADD_TPREL_HI12"}, |
| 963 | {110, "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12"}, |
| 964 | {111, "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC"}, |
| 965 | {122, "R_AARCH64_P32_TLSDESC_LD_PREL19"}, |
| 966 | {123, "R_AARCH64_P32_TLSDESC_ADR_PREL21"}, |
| 967 | {124, "R_AARCH64_P32_TLSDESC_ADR_PAGE21"}, |
| 968 | {125, "R_AARCH64_P32_TLSDESC_LD32_LO12_NC"}, |
| 969 | {126, "R_AARCH64_P32_TLSDESC_ADD_LO12_NC"}, |
| 970 | {127, "R_AARCH64_P32_TLSDESC_CALL"}, |
| 971 | {180, "R_AARCH64_P32_COPY"}, |
| 972 | {181, "R_AARCH64_P32_GLOB_DAT"}, |
| 973 | {182, "R_AARCH64_P32_JUMP_SLOT"}, |
| 974 | {183, "R_AARCH64_P32_RELATIVE"}, |
| 975 | {184, "R_AARCH64_P32_TLS_DTPMOD"}, |
| 976 | {185, "R_AARCH64_P32_TLS_DTPREL"}, |
| 977 | {186, "R_AARCH64_P32_TLS_TPREL"}, |
| 978 | {187, "R_AARCH64_P32_TLSDESC"}, |
| 979 | {188, "R_AARCH64_P32_IRELATIVE"}, |
| 980 | {256, "R_AARCH64_NULL"}, |
| 981 | {257, "R_AARCH64_ABS64"}, |
| 982 | {258, "R_AARCH64_ABS32"}, |
| 983 | {259, "R_AARCH64_ABS16"}, |
| 984 | {260, "R_AARCH64_PREL64"}, |
| 985 | {261, "R_AARCH64_PREL32"}, |
| 986 | {262, "R_AARCH64_PREL16"}, |
| 987 | {263, "R_AARCH64_MOVW_UABS_G0"}, |
| 988 | {264, "R_AARCH64_MOVW_UABS_G0_NC"}, |
| 989 | {265, "R_AARCH64_MOVW_UABS_G1"}, |
| 990 | {266, "R_AARCH64_MOVW_UABS_G1_NC"}, |
| 991 | {267, "R_AARCH64_MOVW_UABS_G2"}, |
| 992 | {268, "R_AARCH64_MOVW_UABS_G2_NC"}, |
| 993 | {269, "R_AARCH64_MOVW_UABS_G3"}, |
| 994 | {270, "R_AARCH64_MOVW_SABS_G0"}, |
| 995 | {271, "R_AARCH64_MOVW_SABS_G1"}, |
| 996 | {272, "R_AARCH64_MOVW_SABS_G2"}, |
| 997 | {273, "R_AARCH64_LD_PREL_LO19"}, |
| 998 | {274, "R_AARCH64_ADR_PREL_LO21"}, |
| 999 | {275, "R_AARCH64_ADR_PREL_PG_HI21"}, |
| 1000 | {276, "R_AARCH64_ADR_PREL_PG_HI21_NC"}, |
| 1001 | {277, "R_AARCH64_ADD_ABS_LO12_NC"}, |
| 1002 | {278, "R_AARCH64_LDST8_ABS_LO12_NC"}, |
| 1003 | {279, "R_AARCH64_TSTBR14"}, |
| 1004 | {280, "R_AARCH64_CONDBR19"}, |
| 1005 | {282, "R_AARCH64_JUMP26"}, |
| 1006 | {283, "R_AARCH64_CALL26"}, |
| 1007 | {284, "R_AARCH64_LDST16_ABS_LO12_NC"}, |
| 1008 | {285, "R_AARCH64_LDST32_ABS_LO12_NC"}, |
| 1009 | {286, "R_AARCH64_LDST64_ABS_LO12_NC"}, |
| 1010 | {299, "R_AARCH64_LDST128_ABS_LO12_NC"}, |
| 1011 | {309, "R_AARCH64_GOT_LD_PREL19"}, |
| 1012 | {311, "R_AARCH64_ADR_GOT_PAGE"}, |
| 1013 | {312, "R_AARCH64_LD64_GOT_LO12_NC"}, |
| 1014 | {513, "R_AARCH64_TLSGD_ADR_PAGE21"}, |
| 1015 | {514, "R_AARCH64_TLSGD_ADD_LO12_NC"}, |
| 1016 | {539, "R_AARCH64_TLSIE_MOVW_GOTTPREL_G1"}, |
| 1017 | {540, "R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC"}, |
| 1018 | {541, "R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21"}, |
| 1019 | {542, "R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC"}, |
| 1020 | {543, "R_AARCH64_TLSIE_LD_GOTTPREL_PREL19"}, |
| 1021 | {544, "R_AARCH64_TLSLE_MOVW_TPREL_G2"}, |
| 1022 | {545, "R_AARCH64_TLSLE_MOVW_TPREL_G1"}, |
| 1023 | {546, "R_AARCH64_TLSLE_MOVW_TPREL_G1_NC"}, |
| 1024 | {547, "R_AARCH64_TLSLE_MOVW_TPREL_G0"}, |
| 1025 | {548, "R_AARCH64_TLSLE_MOVW_TPREL_G0_NC"}, |
| 1026 | {549, "R_AARCH64_TLSLE_ADD_TPREL_HI12"}, |
| 1027 | {550, "R_AARCH64_TLSLE_ADD_TPREL_LO12"}, |
| 1028 | {551, "R_AARCH64_TLSLE_ADD_TPREL_LO12_NC"}, |
| 1029 | {560, "R_AARCH64_TLSDESC_LD_PREL19"}, |
| 1030 | {561, "R_AARCH64_TLSDESC_ADR_PREL21"}, |
| 1031 | {562, "R_AARCH64_TLSDESC_ADR_PAGE21"}, |
| 1032 | {563, "R_AARCH64_TLSDESC_LD64_LO12_NC"}, |
| 1033 | {564, "R_AARCH64_TLSDESC_ADD_LO12_NC"}, |
| 1034 | {565, "R_AARCH64_TLSDESC_OFF_G1"}, |
| 1035 | {566, "R_AARCH64_TLSDESC_OFF_G0_NC"}, |
| 1036 | {567, "R_AARCH64_TLSDESC_LDR"}, |
| 1037 | {568, "R_AARCH64_TLSDESC_ADD"}, |
| 1038 | {569, "R_AARCH64_TLSDESC_CALL"}, |
| 1039 | {1024, "R_AARCH64_COPY"}, |
| 1040 | {1025, "R_AARCH64_GLOB_DAT"}, |
| 1041 | {1026, "R_AARCH64_JUMP_SLOT"}, |
| 1042 | {1027, "R_AARCH64_RELATIVE"}, |
| 1043 | {1028, "R_AARCH64_TLS_DTPMOD64"}, |
| 1044 | {1029, "R_AARCH64_TLS_DTPREL64"}, |
| 1045 | {1030, "R_AARCH64_TLS_TPREL64"}, |
| 1046 | {1031, "R_AARCH64_TLSDESC"}, |
| 1047 | {1032, "R_AARCH64_IRELATIVE"}, |
| 1048 | } |
| 1049 | |
| 1050 | func (i R_AARCH64) String() string { return stringName(uint32(i), raarch64Strings, false) } |
| 1051 | func (i R_AARCH64) GoString() string { return stringName(uint32(i), raarch64Strings, true) } |
| 1052 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1053 | // Relocation types for Alpha. |
| 1054 | type R_ALPHA int |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1055 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1056 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1057 | R_ALPHA_NONE R_ALPHA = 0 /* No reloc */ |
| 1058 | R_ALPHA_REFLONG R_ALPHA = 1 /* Direct 32 bit */ |
| 1059 | R_ALPHA_REFQUAD R_ALPHA = 2 /* Direct 64 bit */ |
| 1060 | R_ALPHA_GPREL32 R_ALPHA = 3 /* GP relative 32 bit */ |
| 1061 | R_ALPHA_LITERAL R_ALPHA = 4 /* GP relative 16 bit w/optimization */ |
| 1062 | R_ALPHA_LITUSE R_ALPHA = 5 /* Optimization hint for LITERAL */ |
| 1063 | R_ALPHA_GPDISP R_ALPHA = 6 /* Add displacement to GP */ |
| 1064 | R_ALPHA_BRADDR R_ALPHA = 7 /* PC+4 relative 23 bit shifted */ |
| 1065 | R_ALPHA_HINT R_ALPHA = 8 /* PC+4 relative 16 bit shifted */ |
| 1066 | R_ALPHA_SREL16 R_ALPHA = 9 /* PC relative 16 bit */ |
| 1067 | R_ALPHA_SREL32 R_ALPHA = 10 /* PC relative 32 bit */ |
| 1068 | R_ALPHA_SREL64 R_ALPHA = 11 /* PC relative 64 bit */ |
| 1069 | R_ALPHA_OP_PUSH R_ALPHA = 12 /* OP stack push */ |
| 1070 | R_ALPHA_OP_STORE R_ALPHA = 13 /* OP stack pop and store */ |
| 1071 | R_ALPHA_OP_PSUB R_ALPHA = 14 /* OP stack subtract */ |
| 1072 | R_ALPHA_OP_PRSHIFT R_ALPHA = 15 /* OP stack right shift */ |
| 1073 | R_ALPHA_GPVALUE R_ALPHA = 16 |
| 1074 | R_ALPHA_GPRELHIGH R_ALPHA = 17 |
| 1075 | R_ALPHA_GPRELLOW R_ALPHA = 18 |
| 1076 | R_ALPHA_IMMED_GP_16 R_ALPHA = 19 |
| 1077 | R_ALPHA_IMMED_GP_HI32 R_ALPHA = 20 |
| 1078 | R_ALPHA_IMMED_SCN_HI32 R_ALPHA = 21 |
| 1079 | R_ALPHA_IMMED_BR_HI32 R_ALPHA = 22 |
| 1080 | R_ALPHA_IMMED_LO32 R_ALPHA = 23 |
| 1081 | R_ALPHA_COPY R_ALPHA = 24 /* Copy symbol at runtime */ |
| 1082 | R_ALPHA_GLOB_DAT R_ALPHA = 25 /* Create GOT entry */ |
| 1083 | R_ALPHA_JMP_SLOT R_ALPHA = 26 /* Create PLT entry */ |
| 1084 | R_ALPHA_RELATIVE R_ALPHA = 27 /* Adjust by program base */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1085 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1086 | |
| 1087 | var ralphaStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 1088 | {0, "R_ALPHA_NONE"}, |
| 1089 | {1, "R_ALPHA_REFLONG"}, |
| 1090 | {2, "R_ALPHA_REFQUAD"}, |
| 1091 | {3, "R_ALPHA_GPREL32"}, |
| 1092 | {4, "R_ALPHA_LITERAL"}, |
| 1093 | {5, "R_ALPHA_LITUSE"}, |
| 1094 | {6, "R_ALPHA_GPDISP"}, |
| 1095 | {7, "R_ALPHA_BRADDR"}, |
| 1096 | {8, "R_ALPHA_HINT"}, |
| 1097 | {9, "R_ALPHA_SREL16"}, |
| 1098 | {10, "R_ALPHA_SREL32"}, |
| 1099 | {11, "R_ALPHA_SREL64"}, |
| 1100 | {12, "R_ALPHA_OP_PUSH"}, |
| 1101 | {13, "R_ALPHA_OP_STORE"}, |
| 1102 | {14, "R_ALPHA_OP_PSUB"}, |
| 1103 | {15, "R_ALPHA_OP_PRSHIFT"}, |
| 1104 | {16, "R_ALPHA_GPVALUE"}, |
| 1105 | {17, "R_ALPHA_GPRELHIGH"}, |
| 1106 | {18, "R_ALPHA_GPRELLOW"}, |
| 1107 | {19, "R_ALPHA_IMMED_GP_16"}, |
| 1108 | {20, "R_ALPHA_IMMED_GP_HI32"}, |
| 1109 | {21, "R_ALPHA_IMMED_SCN_HI32"}, |
| 1110 | {22, "R_ALPHA_IMMED_BR_HI32"}, |
| 1111 | {23, "R_ALPHA_IMMED_LO32"}, |
| 1112 | {24, "R_ALPHA_COPY"}, |
| 1113 | {25, "R_ALPHA_GLOB_DAT"}, |
| 1114 | {26, "R_ALPHA_JMP_SLOT"}, |
| 1115 | {27, "R_ALPHA_RELATIVE"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1116 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1117 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1118 | func (i R_ALPHA) String() string { return stringName(uint32(i), ralphaStrings, false) } |
| 1119 | func (i R_ALPHA) GoString() string { return stringName(uint32(i), ralphaStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1120 | |
| 1121 | // Relocation types for ARM. |
| 1122 | type R_ARM int |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1123 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1124 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1125 | R_ARM_NONE R_ARM = 0 /* No relocation. */ |
| 1126 | R_ARM_PC24 R_ARM = 1 |
| 1127 | R_ARM_ABS32 R_ARM = 2 |
| 1128 | R_ARM_REL32 R_ARM = 3 |
| 1129 | R_ARM_PC13 R_ARM = 4 |
| 1130 | R_ARM_ABS16 R_ARM = 5 |
| 1131 | R_ARM_ABS12 R_ARM = 6 |
| 1132 | R_ARM_THM_ABS5 R_ARM = 7 |
| 1133 | R_ARM_ABS8 R_ARM = 8 |
| 1134 | R_ARM_SBREL32 R_ARM = 9 |
| 1135 | R_ARM_THM_PC22 R_ARM = 10 |
| 1136 | R_ARM_THM_PC8 R_ARM = 11 |
| 1137 | R_ARM_AMP_VCALL9 R_ARM = 12 |
| 1138 | R_ARM_SWI24 R_ARM = 13 |
| 1139 | R_ARM_THM_SWI8 R_ARM = 14 |
| 1140 | R_ARM_XPC25 R_ARM = 15 |
| 1141 | R_ARM_THM_XPC22 R_ARM = 16 |
| 1142 | R_ARM_COPY R_ARM = 20 /* Copy data from shared object. */ |
| 1143 | R_ARM_GLOB_DAT R_ARM = 21 /* Set GOT entry to data address. */ |
| 1144 | R_ARM_JUMP_SLOT R_ARM = 22 /* Set GOT entry to code address. */ |
| 1145 | R_ARM_RELATIVE R_ARM = 23 /* Add load address of shared object. */ |
| 1146 | R_ARM_GOTOFF R_ARM = 24 /* Add GOT-relative symbol address. */ |
| 1147 | R_ARM_GOTPC R_ARM = 25 /* Add PC-relative GOT table address. */ |
| 1148 | R_ARM_GOT32 R_ARM = 26 /* Add PC-relative GOT offset. */ |
| 1149 | R_ARM_PLT32 R_ARM = 27 /* Add PC-relative PLT offset. */ |
| 1150 | R_ARM_GNU_VTENTRY R_ARM = 100 |
| 1151 | R_ARM_GNU_VTINHERIT R_ARM = 101 |
| 1152 | R_ARM_RSBREL32 R_ARM = 250 |
| 1153 | R_ARM_THM_RPC22 R_ARM = 251 |
| 1154 | R_ARM_RREL32 R_ARM = 252 |
| 1155 | R_ARM_RABS32 R_ARM = 253 |
| 1156 | R_ARM_RPC24 R_ARM = 254 |
| 1157 | R_ARM_RBASE R_ARM = 255 |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1158 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1159 | |
| 1160 | var rarmStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 1161 | {0, "R_ARM_NONE"}, |
| 1162 | {1, "R_ARM_PC24"}, |
| 1163 | {2, "R_ARM_ABS32"}, |
| 1164 | {3, "R_ARM_REL32"}, |
| 1165 | {4, "R_ARM_PC13"}, |
| 1166 | {5, "R_ARM_ABS16"}, |
| 1167 | {6, "R_ARM_ABS12"}, |
| 1168 | {7, "R_ARM_THM_ABS5"}, |
| 1169 | {8, "R_ARM_ABS8"}, |
| 1170 | {9, "R_ARM_SBREL32"}, |
| 1171 | {10, "R_ARM_THM_PC22"}, |
| 1172 | {11, "R_ARM_THM_PC8"}, |
| 1173 | {12, "R_ARM_AMP_VCALL9"}, |
| 1174 | {13, "R_ARM_SWI24"}, |
| 1175 | {14, "R_ARM_THM_SWI8"}, |
| 1176 | {15, "R_ARM_XPC25"}, |
| 1177 | {16, "R_ARM_THM_XPC22"}, |
| 1178 | {20, "R_ARM_COPY"}, |
| 1179 | {21, "R_ARM_GLOB_DAT"}, |
| 1180 | {22, "R_ARM_JUMP_SLOT"}, |
| 1181 | {23, "R_ARM_RELATIVE"}, |
| 1182 | {24, "R_ARM_GOTOFF"}, |
| 1183 | {25, "R_ARM_GOTPC"}, |
| 1184 | {26, "R_ARM_GOT32"}, |
| 1185 | {27, "R_ARM_PLT32"}, |
| 1186 | {100, "R_ARM_GNU_VTENTRY"}, |
| 1187 | {101, "R_ARM_GNU_VTINHERIT"}, |
| 1188 | {250, "R_ARM_RSBREL32"}, |
| 1189 | {251, "R_ARM_THM_RPC22"}, |
| 1190 | {252, "R_ARM_RREL32"}, |
| 1191 | {253, "R_ARM_RABS32"}, |
| 1192 | {254, "R_ARM_RPC24"}, |
| 1193 | {255, "R_ARM_RBASE"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1194 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1195 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1196 | func (i R_ARM) String() string { return stringName(uint32(i), rarmStrings, false) } |
| 1197 | func (i R_ARM) GoString() string { return stringName(uint32(i), rarmStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1198 | |
| 1199 | // Relocation types for 386. |
| 1200 | type R_386 int |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1201 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1202 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1203 | R_386_NONE R_386 = 0 /* No relocation. */ |
| 1204 | R_386_32 R_386 = 1 /* Add symbol value. */ |
| 1205 | R_386_PC32 R_386 = 2 /* Add PC-relative symbol value. */ |
| 1206 | R_386_GOT32 R_386 = 3 /* Add PC-relative GOT offset. */ |
| 1207 | R_386_PLT32 R_386 = 4 /* Add PC-relative PLT offset. */ |
| 1208 | R_386_COPY R_386 = 5 /* Copy data from shared object. */ |
| 1209 | R_386_GLOB_DAT R_386 = 6 /* Set GOT entry to data address. */ |
| 1210 | R_386_JMP_SLOT R_386 = 7 /* Set GOT entry to code address. */ |
| 1211 | R_386_RELATIVE R_386 = 8 /* Add load address of shared object. */ |
| 1212 | R_386_GOTOFF R_386 = 9 /* Add GOT-relative symbol address. */ |
| 1213 | R_386_GOTPC R_386 = 10 /* Add PC-relative GOT table address. */ |
| 1214 | R_386_TLS_TPOFF R_386 = 14 /* Negative offset in static TLS block */ |
| 1215 | R_386_TLS_IE R_386 = 15 /* Absolute address of GOT for -ve static TLS */ |
| 1216 | R_386_TLS_GOTIE R_386 = 16 /* GOT entry for negative static TLS block */ |
| 1217 | R_386_TLS_LE R_386 = 17 /* Negative offset relative to static TLS */ |
| 1218 | R_386_TLS_GD R_386 = 18 /* 32 bit offset to GOT (index,off) pair */ |
| 1219 | R_386_TLS_LDM R_386 = 19 /* 32 bit offset to GOT (index,zero) pair */ |
| 1220 | R_386_TLS_GD_32 R_386 = 24 /* 32 bit offset to GOT (index,off) pair */ |
| 1221 | R_386_TLS_GD_PUSH R_386 = 25 /* pushl instruction for Sun ABI GD sequence */ |
| 1222 | R_386_TLS_GD_CALL R_386 = 26 /* call instruction for Sun ABI GD sequence */ |
| 1223 | R_386_TLS_GD_POP R_386 = 27 /* popl instruction for Sun ABI GD sequence */ |
| 1224 | R_386_TLS_LDM_32 R_386 = 28 /* 32 bit offset to GOT (index,zero) pair */ |
| 1225 | R_386_TLS_LDM_PUSH R_386 = 29 /* pushl instruction for Sun ABI LD sequence */ |
| 1226 | R_386_TLS_LDM_CALL R_386 = 30 /* call instruction for Sun ABI LD sequence */ |
| 1227 | R_386_TLS_LDM_POP R_386 = 31 /* popl instruction for Sun ABI LD sequence */ |
| 1228 | R_386_TLS_LDO_32 R_386 = 32 /* 32 bit offset from start of TLS block */ |
| 1229 | R_386_TLS_IE_32 R_386 = 33 /* 32 bit offset to GOT static TLS offset entry */ |
| 1230 | R_386_TLS_LE_32 R_386 = 34 /* 32 bit offset within static TLS block */ |
| 1231 | R_386_TLS_DTPMOD32 R_386 = 35 /* GOT entry containing TLS index */ |
| 1232 | R_386_TLS_DTPOFF32 R_386 = 36 /* GOT entry containing TLS offset */ |
| 1233 | R_386_TLS_TPOFF32 R_386 = 37 /* GOT entry of -ve static TLS offset */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1234 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1235 | |
| 1236 | var r386Strings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 1237 | {0, "R_386_NONE"}, |
| 1238 | {1, "R_386_32"}, |
| 1239 | {2, "R_386_PC32"}, |
| 1240 | {3, "R_386_GOT32"}, |
| 1241 | {4, "R_386_PLT32"}, |
| 1242 | {5, "R_386_COPY"}, |
| 1243 | {6, "R_386_GLOB_DAT"}, |
| 1244 | {7, "R_386_JMP_SLOT"}, |
| 1245 | {8, "R_386_RELATIVE"}, |
| 1246 | {9, "R_386_GOTOFF"}, |
| 1247 | {10, "R_386_GOTPC"}, |
| 1248 | {14, "R_386_TLS_TPOFF"}, |
| 1249 | {15, "R_386_TLS_IE"}, |
| 1250 | {16, "R_386_TLS_GOTIE"}, |
| 1251 | {17, "R_386_TLS_LE"}, |
| 1252 | {18, "R_386_TLS_GD"}, |
| 1253 | {19, "R_386_TLS_LDM"}, |
| 1254 | {24, "R_386_TLS_GD_32"}, |
| 1255 | {25, "R_386_TLS_GD_PUSH"}, |
| 1256 | {26, "R_386_TLS_GD_CALL"}, |
| 1257 | {27, "R_386_TLS_GD_POP"}, |
| 1258 | {28, "R_386_TLS_LDM_32"}, |
| 1259 | {29, "R_386_TLS_LDM_PUSH"}, |
| 1260 | {30, "R_386_TLS_LDM_CALL"}, |
| 1261 | {31, "R_386_TLS_LDM_POP"}, |
| 1262 | {32, "R_386_TLS_LDO_32"}, |
| 1263 | {33, "R_386_TLS_IE_32"}, |
| 1264 | {34, "R_386_TLS_LE_32"}, |
| 1265 | {35, "R_386_TLS_DTPMOD32"}, |
| 1266 | {36, "R_386_TLS_DTPOFF32"}, |
| 1267 | {37, "R_386_TLS_TPOFF32"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1268 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1269 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1270 | func (i R_386) String() string { return stringName(uint32(i), r386Strings, false) } |
| 1271 | func (i R_386) GoString() string { return stringName(uint32(i), r386Strings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1272 | |
Yao Zhang | 7ff52e1 | 2015-09-10 09:15:19 -0400 | [diff] [blame] | 1273 | // Relocation types for MIPS. |
| 1274 | type R_MIPS int |
| 1275 | |
| 1276 | const ( |
| 1277 | R_MIPS_NONE R_MIPS = 0 |
| 1278 | R_MIPS_16 R_MIPS = 1 |
| 1279 | R_MIPS_32 R_MIPS = 2 |
| 1280 | R_MIPS_REL32 R_MIPS = 3 |
| 1281 | R_MIPS_26 R_MIPS = 4 |
| 1282 | R_MIPS_HI16 R_MIPS = 5 /* high 16 bits of symbol value */ |
| 1283 | R_MIPS_LO16 R_MIPS = 6 /* low 16 bits of symbol value */ |
| 1284 | R_MIPS_GPREL16 R_MIPS = 7 /* GP-relative reference */ |
| 1285 | R_MIPS_LITERAL R_MIPS = 8 /* Reference to literal section */ |
| 1286 | R_MIPS_GOT16 R_MIPS = 9 /* Reference to global offset table */ |
| 1287 | R_MIPS_PC16 R_MIPS = 10 /* 16 bit PC relative reference */ |
| 1288 | R_MIPS_CALL16 R_MIPS = 11 /* 16 bit call thru glbl offset tbl */ |
| 1289 | R_MIPS_GPREL32 R_MIPS = 12 |
| 1290 | R_MIPS_SHIFT5 R_MIPS = 16 |
| 1291 | R_MIPS_SHIFT6 R_MIPS = 17 |
| 1292 | R_MIPS_64 R_MIPS = 18 |
| 1293 | R_MIPS_GOT_DISP R_MIPS = 19 |
| 1294 | R_MIPS_GOT_PAGE R_MIPS = 20 |
| 1295 | R_MIPS_GOT_OFST R_MIPS = 21 |
| 1296 | R_MIPS_GOT_HI16 R_MIPS = 22 |
| 1297 | R_MIPS_GOT_LO16 R_MIPS = 23 |
| 1298 | R_MIPS_SUB R_MIPS = 24 |
| 1299 | R_MIPS_INSERT_A R_MIPS = 25 |
| 1300 | R_MIPS_INSERT_B R_MIPS = 26 |
| 1301 | R_MIPS_DELETE R_MIPS = 27 |
| 1302 | R_MIPS_HIGHER R_MIPS = 28 |
| 1303 | R_MIPS_HIGHEST R_MIPS = 29 |
| 1304 | R_MIPS_CALL_HI16 R_MIPS = 30 |
| 1305 | R_MIPS_CALL_LO16 R_MIPS = 31 |
| 1306 | R_MIPS_SCN_DISP R_MIPS = 32 |
| 1307 | R_MIPS_REL16 R_MIPS = 33 |
| 1308 | R_MIPS_ADD_IMMEDIATE R_MIPS = 34 |
| 1309 | R_MIPS_PJUMP R_MIPS = 35 |
| 1310 | R_MIPS_RELGOT R_MIPS = 36 |
| 1311 | R_MIPS_JALR R_MIPS = 37 |
| 1312 | |
| 1313 | R_MIPS_TLS_DTPMOD32 R_MIPS = 38 /* Module number 32 bit */ |
| 1314 | R_MIPS_TLS_DTPREL32 R_MIPS = 39 /* Module-relative offset 32 bit */ |
| 1315 | R_MIPS_TLS_DTPMOD64 R_MIPS = 40 /* Module number 64 bit */ |
| 1316 | R_MIPS_TLS_DTPREL64 R_MIPS = 41 /* Module-relative offset 64 bit */ |
| 1317 | R_MIPS_TLS_GD R_MIPS = 42 /* 16 bit GOT offset for GD */ |
| 1318 | R_MIPS_TLS_LDM R_MIPS = 43 /* 16 bit GOT offset for LDM */ |
| 1319 | R_MIPS_TLS_DTPREL_HI16 R_MIPS = 44 /* Module-relative offset, high 16 bits */ |
| 1320 | R_MIPS_TLS_DTPREL_LO16 R_MIPS = 45 /* Module-relative offset, low 16 bits */ |
| 1321 | R_MIPS_TLS_GOTTPREL R_MIPS = 46 /* 16 bit GOT offset for IE */ |
| 1322 | R_MIPS_TLS_TPREL32 R_MIPS = 47 /* TP-relative offset, 32 bit */ |
| 1323 | R_MIPS_TLS_TPREL64 R_MIPS = 48 /* TP-relative offset, 64 bit */ |
| 1324 | R_MIPS_TLS_TPREL_HI16 R_MIPS = 49 /* TP-relative offset, high 16 bits */ |
| 1325 | R_MIPS_TLS_TPREL_LO16 R_MIPS = 50 /* TP-relative offset, low 16 bits */ |
| 1326 | ) |
| 1327 | |
| 1328 | var rmipsStrings = []intName{ |
| 1329 | {0, "R_MIPS_NONE"}, |
| 1330 | {1, "R_MIPS_16"}, |
| 1331 | {2, "R_MIPS_32"}, |
| 1332 | {3, "R_MIPS_REL32"}, |
| 1333 | {4, "R_MIPS_26"}, |
| 1334 | {5, "R_MIPS_HI16"}, |
| 1335 | {6, "R_MIPS_LO16"}, |
| 1336 | {7, "R_MIPS_GPREL16"}, |
| 1337 | {8, "R_MIPS_LITERAL"}, |
| 1338 | {9, "R_MIPS_GOT16"}, |
| 1339 | {10, "R_MIPS_PC16"}, |
| 1340 | {11, "R_MIPS_CALL16"}, |
| 1341 | {12, "R_MIPS_GPREL32"}, |
| 1342 | {16, "R_MIPS_SHIFT5"}, |
| 1343 | {17, "R_MIPS_SHIFT6"}, |
| 1344 | {18, "R_MIPS_64"}, |
| 1345 | {19, "R_MIPS_GOT_DISP"}, |
| 1346 | {20, "R_MIPS_GOT_PAGE"}, |
| 1347 | {21, "R_MIPS_GOT_OFST"}, |
| 1348 | {22, "R_MIPS_GOT_HI16"}, |
| 1349 | {23, "R_MIPS_GOT_LO16"}, |
| 1350 | {24, "R_MIPS_SUB"}, |
| 1351 | {25, "R_MIPS_INSERT_A"}, |
| 1352 | {26, "R_MIPS_INSERT_B"}, |
| 1353 | {27, "R_MIPS_DELETE"}, |
| 1354 | {28, "R_MIPS_HIGHER"}, |
| 1355 | {29, "R_MIPS_HIGHEST"}, |
| 1356 | {30, "R_MIPS_CALL_HI16"}, |
| 1357 | {31, "R_MIPS_CALL_LO16"}, |
| 1358 | {32, "R_MIPS_SCN_DISP"}, |
| 1359 | {33, "R_MIPS_REL16"}, |
| 1360 | {34, "R_MIPS_ADD_IMMEDIATE"}, |
| 1361 | {35, "R_MIPS_PJUMP"}, |
| 1362 | {36, "R_MIPS_RELGOT"}, |
| 1363 | {37, "R_MIPS_JALR"}, |
| 1364 | {38, "R_MIPS_TLS_DTPMOD32"}, |
| 1365 | {39, "R_MIPS_TLS_DTPREL32"}, |
| 1366 | {40, "R_MIPS_TLS_DTPMOD64"}, |
| 1367 | {41, "R_MIPS_TLS_DTPREL64"}, |
| 1368 | {42, "R_MIPS_TLS_GD"}, |
| 1369 | {43, "R_MIPS_TLS_LDM"}, |
| 1370 | {44, "R_MIPS_TLS_DTPREL_HI16"}, |
| 1371 | {45, "R_MIPS_TLS_DTPREL_LO16"}, |
| 1372 | {46, "R_MIPS_TLS_GOTTPREL"}, |
| 1373 | {47, "R_MIPS_TLS_TPREL32"}, |
| 1374 | {48, "R_MIPS_TLS_TPREL64"}, |
| 1375 | {49, "R_MIPS_TLS_TPREL_HI16"}, |
| 1376 | {50, "R_MIPS_TLS_TPREL_LO16"}, |
| 1377 | } |
| 1378 | |
| 1379 | func (i R_MIPS) String() string { return stringName(uint32(i), rmipsStrings, false) } |
| 1380 | func (i R_MIPS) GoString() string { return stringName(uint32(i), rmipsStrings, true) } |
| 1381 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1382 | // Relocation types for PowerPC. |
| 1383 | type R_PPC int |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1384 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1385 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1386 | R_PPC_NONE R_PPC = 0 /* No relocation. */ |
| 1387 | R_PPC_ADDR32 R_PPC = 1 |
| 1388 | R_PPC_ADDR24 R_PPC = 2 |
| 1389 | R_PPC_ADDR16 R_PPC = 3 |
| 1390 | R_PPC_ADDR16_LO R_PPC = 4 |
| 1391 | R_PPC_ADDR16_HI R_PPC = 5 |
| 1392 | R_PPC_ADDR16_HA R_PPC = 6 |
| 1393 | R_PPC_ADDR14 R_PPC = 7 |
| 1394 | R_PPC_ADDR14_BRTAKEN R_PPC = 8 |
| 1395 | R_PPC_ADDR14_BRNTAKEN R_PPC = 9 |
| 1396 | R_PPC_REL24 R_PPC = 10 |
| 1397 | R_PPC_REL14 R_PPC = 11 |
| 1398 | R_PPC_REL14_BRTAKEN R_PPC = 12 |
| 1399 | R_PPC_REL14_BRNTAKEN R_PPC = 13 |
| 1400 | R_PPC_GOT16 R_PPC = 14 |
| 1401 | R_PPC_GOT16_LO R_PPC = 15 |
| 1402 | R_PPC_GOT16_HI R_PPC = 16 |
| 1403 | R_PPC_GOT16_HA R_PPC = 17 |
| 1404 | R_PPC_PLTREL24 R_PPC = 18 |
| 1405 | R_PPC_COPY R_PPC = 19 |
| 1406 | R_PPC_GLOB_DAT R_PPC = 20 |
| 1407 | R_PPC_JMP_SLOT R_PPC = 21 |
| 1408 | R_PPC_RELATIVE R_PPC = 22 |
| 1409 | R_PPC_LOCAL24PC R_PPC = 23 |
| 1410 | R_PPC_UADDR32 R_PPC = 24 |
| 1411 | R_PPC_UADDR16 R_PPC = 25 |
| 1412 | R_PPC_REL32 R_PPC = 26 |
| 1413 | R_PPC_PLT32 R_PPC = 27 |
| 1414 | R_PPC_PLTREL32 R_PPC = 28 |
| 1415 | R_PPC_PLT16_LO R_PPC = 29 |
| 1416 | R_PPC_PLT16_HI R_PPC = 30 |
| 1417 | R_PPC_PLT16_HA R_PPC = 31 |
| 1418 | R_PPC_SDAREL16 R_PPC = 32 |
| 1419 | R_PPC_SECTOFF R_PPC = 33 |
| 1420 | R_PPC_SECTOFF_LO R_PPC = 34 |
| 1421 | R_PPC_SECTOFF_HI R_PPC = 35 |
| 1422 | R_PPC_SECTOFF_HA R_PPC = 36 |
| 1423 | R_PPC_TLS R_PPC = 67 |
| 1424 | R_PPC_DTPMOD32 R_PPC = 68 |
| 1425 | R_PPC_TPREL16 R_PPC = 69 |
| 1426 | R_PPC_TPREL16_LO R_PPC = 70 |
| 1427 | R_PPC_TPREL16_HI R_PPC = 71 |
| 1428 | R_PPC_TPREL16_HA R_PPC = 72 |
| 1429 | R_PPC_TPREL32 R_PPC = 73 |
| 1430 | R_PPC_DTPREL16 R_PPC = 74 |
| 1431 | R_PPC_DTPREL16_LO R_PPC = 75 |
| 1432 | R_PPC_DTPREL16_HI R_PPC = 76 |
| 1433 | R_PPC_DTPREL16_HA R_PPC = 77 |
| 1434 | R_PPC_DTPREL32 R_PPC = 78 |
| 1435 | R_PPC_GOT_TLSGD16 R_PPC = 79 |
| 1436 | R_PPC_GOT_TLSGD16_LO R_PPC = 80 |
| 1437 | R_PPC_GOT_TLSGD16_HI R_PPC = 81 |
| 1438 | R_PPC_GOT_TLSGD16_HA R_PPC = 82 |
| 1439 | R_PPC_GOT_TLSLD16 R_PPC = 83 |
| 1440 | R_PPC_GOT_TLSLD16_LO R_PPC = 84 |
| 1441 | R_PPC_GOT_TLSLD16_HI R_PPC = 85 |
| 1442 | R_PPC_GOT_TLSLD16_HA R_PPC = 86 |
| 1443 | R_PPC_GOT_TPREL16 R_PPC = 87 |
| 1444 | R_PPC_GOT_TPREL16_LO R_PPC = 88 |
| 1445 | R_PPC_GOT_TPREL16_HI R_PPC = 89 |
| 1446 | R_PPC_GOT_TPREL16_HA R_PPC = 90 |
| 1447 | R_PPC_EMB_NADDR32 R_PPC = 101 |
| 1448 | R_PPC_EMB_NADDR16 R_PPC = 102 |
| 1449 | R_PPC_EMB_NADDR16_LO R_PPC = 103 |
| 1450 | R_PPC_EMB_NADDR16_HI R_PPC = 104 |
| 1451 | R_PPC_EMB_NADDR16_HA R_PPC = 105 |
| 1452 | R_PPC_EMB_SDAI16 R_PPC = 106 |
| 1453 | R_PPC_EMB_SDA2I16 R_PPC = 107 |
| 1454 | R_PPC_EMB_SDA2REL R_PPC = 108 |
| 1455 | R_PPC_EMB_SDA21 R_PPC = 109 |
| 1456 | R_PPC_EMB_MRKREF R_PPC = 110 |
| 1457 | R_PPC_EMB_RELSEC16 R_PPC = 111 |
| 1458 | R_PPC_EMB_RELST_LO R_PPC = 112 |
| 1459 | R_PPC_EMB_RELST_HI R_PPC = 113 |
| 1460 | R_PPC_EMB_RELST_HA R_PPC = 114 |
| 1461 | R_PPC_EMB_BIT_FLD R_PPC = 115 |
| 1462 | R_PPC_EMB_RELSDA R_PPC = 116 |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1463 | ) |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1464 | |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1465 | var rppcStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 1466 | {0, "R_PPC_NONE"}, |
| 1467 | {1, "R_PPC_ADDR32"}, |
| 1468 | {2, "R_PPC_ADDR24"}, |
| 1469 | {3, "R_PPC_ADDR16"}, |
| 1470 | {4, "R_PPC_ADDR16_LO"}, |
| 1471 | {5, "R_PPC_ADDR16_HI"}, |
| 1472 | {6, "R_PPC_ADDR16_HA"}, |
| 1473 | {7, "R_PPC_ADDR14"}, |
| 1474 | {8, "R_PPC_ADDR14_BRTAKEN"}, |
| 1475 | {9, "R_PPC_ADDR14_BRNTAKEN"}, |
| 1476 | {10, "R_PPC_REL24"}, |
| 1477 | {11, "R_PPC_REL14"}, |
| 1478 | {12, "R_PPC_REL14_BRTAKEN"}, |
| 1479 | {13, "R_PPC_REL14_BRNTAKEN"}, |
| 1480 | {14, "R_PPC_GOT16"}, |
| 1481 | {15, "R_PPC_GOT16_LO"}, |
| 1482 | {16, "R_PPC_GOT16_HI"}, |
| 1483 | {17, "R_PPC_GOT16_HA"}, |
| 1484 | {18, "R_PPC_PLTREL24"}, |
| 1485 | {19, "R_PPC_COPY"}, |
| 1486 | {20, "R_PPC_GLOB_DAT"}, |
| 1487 | {21, "R_PPC_JMP_SLOT"}, |
| 1488 | {22, "R_PPC_RELATIVE"}, |
| 1489 | {23, "R_PPC_LOCAL24PC"}, |
| 1490 | {24, "R_PPC_UADDR32"}, |
| 1491 | {25, "R_PPC_UADDR16"}, |
| 1492 | {26, "R_PPC_REL32"}, |
| 1493 | {27, "R_PPC_PLT32"}, |
| 1494 | {28, "R_PPC_PLTREL32"}, |
| 1495 | {29, "R_PPC_PLT16_LO"}, |
| 1496 | {30, "R_PPC_PLT16_HI"}, |
| 1497 | {31, "R_PPC_PLT16_HA"}, |
| 1498 | {32, "R_PPC_SDAREL16"}, |
| 1499 | {33, "R_PPC_SECTOFF"}, |
| 1500 | {34, "R_PPC_SECTOFF_LO"}, |
| 1501 | {35, "R_PPC_SECTOFF_HI"}, |
| 1502 | {36, "R_PPC_SECTOFF_HA"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1503 | |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 1504 | {67, "R_PPC_TLS"}, |
| 1505 | {68, "R_PPC_DTPMOD32"}, |
| 1506 | {69, "R_PPC_TPREL16"}, |
| 1507 | {70, "R_PPC_TPREL16_LO"}, |
| 1508 | {71, "R_PPC_TPREL16_HI"}, |
| 1509 | {72, "R_PPC_TPREL16_HA"}, |
| 1510 | {73, "R_PPC_TPREL32"}, |
| 1511 | {74, "R_PPC_DTPREL16"}, |
| 1512 | {75, "R_PPC_DTPREL16_LO"}, |
| 1513 | {76, "R_PPC_DTPREL16_HI"}, |
| 1514 | {77, "R_PPC_DTPREL16_HA"}, |
| 1515 | {78, "R_PPC_DTPREL32"}, |
| 1516 | {79, "R_PPC_GOT_TLSGD16"}, |
| 1517 | {80, "R_PPC_GOT_TLSGD16_LO"}, |
| 1518 | {81, "R_PPC_GOT_TLSGD16_HI"}, |
| 1519 | {82, "R_PPC_GOT_TLSGD16_HA"}, |
| 1520 | {83, "R_PPC_GOT_TLSLD16"}, |
| 1521 | {84, "R_PPC_GOT_TLSLD16_LO"}, |
| 1522 | {85, "R_PPC_GOT_TLSLD16_HI"}, |
| 1523 | {86, "R_PPC_GOT_TLSLD16_HA"}, |
| 1524 | {87, "R_PPC_GOT_TPREL16"}, |
| 1525 | {88, "R_PPC_GOT_TPREL16_LO"}, |
| 1526 | {89, "R_PPC_GOT_TPREL16_HI"}, |
| 1527 | {90, "R_PPC_GOT_TPREL16_HA"}, |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1528 | |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 1529 | {101, "R_PPC_EMB_NADDR32"}, |
| 1530 | {102, "R_PPC_EMB_NADDR16"}, |
| 1531 | {103, "R_PPC_EMB_NADDR16_LO"}, |
| 1532 | {104, "R_PPC_EMB_NADDR16_HI"}, |
| 1533 | {105, "R_PPC_EMB_NADDR16_HA"}, |
| 1534 | {106, "R_PPC_EMB_SDAI16"}, |
| 1535 | {107, "R_PPC_EMB_SDA2I16"}, |
| 1536 | {108, "R_PPC_EMB_SDA2REL"}, |
| 1537 | {109, "R_PPC_EMB_SDA21"}, |
| 1538 | {110, "R_PPC_EMB_MRKREF"}, |
| 1539 | {111, "R_PPC_EMB_RELSEC16"}, |
| 1540 | {112, "R_PPC_EMB_RELST_LO"}, |
| 1541 | {113, "R_PPC_EMB_RELST_HI"}, |
| 1542 | {114, "R_PPC_EMB_RELST_HA"}, |
| 1543 | {115, "R_PPC_EMB_BIT_FLD"}, |
| 1544 | {116, "R_PPC_EMB_RELSDA"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1545 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1546 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1547 | func (i R_PPC) String() string { return stringName(uint32(i), rppcStrings, false) } |
| 1548 | func (i R_PPC) GoString() string { return stringName(uint32(i), rppcStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1549 | |
Russ Cox | 09d92b6 | 2014-12-05 19:13:20 -0500 | [diff] [blame] | 1550 | // Relocation types for 64-bit PowerPC or Power Architecture processors. |
Shenghou Ma | 059d089 | 2014-08-11 23:43:34 -0400 | [diff] [blame] | 1551 | type R_PPC64 int |
| 1552 | |
| 1553 | const ( |
| 1554 | R_PPC64_NONE R_PPC64 = 0 |
| 1555 | R_PPC64_ADDR32 R_PPC64 = 1 |
| 1556 | R_PPC64_ADDR24 R_PPC64 = 2 |
| 1557 | R_PPC64_ADDR16 R_PPC64 = 3 |
| 1558 | R_PPC64_ADDR16_LO R_PPC64 = 4 |
| 1559 | R_PPC64_ADDR16_HI R_PPC64 = 5 |
| 1560 | R_PPC64_ADDR16_HA R_PPC64 = 6 |
| 1561 | R_PPC64_ADDR14 R_PPC64 = 7 |
| 1562 | R_PPC64_ADDR14_BRTAKEN R_PPC64 = 8 |
| 1563 | R_PPC64_ADDR14_BRNTAKEN R_PPC64 = 9 |
| 1564 | R_PPC64_REL24 R_PPC64 = 10 |
| 1565 | R_PPC64_REL14 R_PPC64 = 11 |
| 1566 | R_PPC64_REL14_BRTAKEN R_PPC64 = 12 |
| 1567 | R_PPC64_REL14_BRNTAKEN R_PPC64 = 13 |
| 1568 | R_PPC64_GOT16 R_PPC64 = 14 |
| 1569 | R_PPC64_GOT16_LO R_PPC64 = 15 |
| 1570 | R_PPC64_GOT16_HI R_PPC64 = 16 |
| 1571 | R_PPC64_GOT16_HA R_PPC64 = 17 |
| 1572 | R_PPC64_JMP_SLOT R_PPC64 = 21 |
| 1573 | R_PPC64_REL32 R_PPC64 = 26 |
| 1574 | R_PPC64_ADDR64 R_PPC64 = 38 |
| 1575 | R_PPC64_ADDR16_HIGHER R_PPC64 = 39 |
| 1576 | R_PPC64_ADDR16_HIGHERA R_PPC64 = 40 |
| 1577 | R_PPC64_ADDR16_HIGHEST R_PPC64 = 41 |
| 1578 | R_PPC64_ADDR16_HIGHESTA R_PPC64 = 42 |
| 1579 | R_PPC64_REL64 R_PPC64 = 44 |
| 1580 | R_PPC64_TOC16 R_PPC64 = 47 |
| 1581 | R_PPC64_TOC16_LO R_PPC64 = 48 |
| 1582 | R_PPC64_TOC16_HI R_PPC64 = 49 |
| 1583 | R_PPC64_TOC16_HA R_PPC64 = 50 |
| 1584 | R_PPC64_TOC R_PPC64 = 51 |
| 1585 | R_PPC64_ADDR16_DS R_PPC64 = 56 |
| 1586 | R_PPC64_ADDR16_LO_DS R_PPC64 = 57 |
| 1587 | R_PPC64_GOT16_DS R_PPC64 = 58 |
| 1588 | R_PPC64_GOT16_LO_DS R_PPC64 = 59 |
| 1589 | R_PPC64_TOC16_DS R_PPC64 = 63 |
| 1590 | R_PPC64_TOC16_LO_DS R_PPC64 = 64 |
| 1591 | R_PPC64_TLS R_PPC64 = 67 |
| 1592 | R_PPC64_DTPMOD64 R_PPC64 = 68 |
| 1593 | R_PPC64_TPREL16 R_PPC64 = 69 |
| 1594 | R_PPC64_TPREL16_LO R_PPC64 = 70 |
| 1595 | R_PPC64_TPREL16_HI R_PPC64 = 71 |
| 1596 | R_PPC64_TPREL16_HA R_PPC64 = 72 |
| 1597 | R_PPC64_TPREL64 R_PPC64 = 73 |
| 1598 | R_PPC64_DTPREL16 R_PPC64 = 74 |
| 1599 | R_PPC64_DTPREL16_LO R_PPC64 = 75 |
| 1600 | R_PPC64_DTPREL16_HI R_PPC64 = 76 |
| 1601 | R_PPC64_DTPREL16_HA R_PPC64 = 77 |
| 1602 | R_PPC64_DTPREL64 R_PPC64 = 78 |
| 1603 | R_PPC64_GOT_TLSGD16 R_PPC64 = 79 |
| 1604 | R_PPC64_GOT_TLSGD16_LO R_PPC64 = 80 |
| 1605 | R_PPC64_GOT_TLSGD16_HI R_PPC64 = 81 |
| 1606 | R_PPC64_GOT_TLSGD16_HA R_PPC64 = 82 |
| 1607 | R_PPC64_GOT_TLSLD16 R_PPC64 = 83 |
| 1608 | R_PPC64_GOT_TLSLD16_LO R_PPC64 = 84 |
| 1609 | R_PPC64_GOT_TLSLD16_HI R_PPC64 = 85 |
| 1610 | R_PPC64_GOT_TLSLD16_HA R_PPC64 = 86 |
| 1611 | R_PPC64_GOT_TPREL16_DS R_PPC64 = 87 |
| 1612 | R_PPC64_GOT_TPREL16_LO_DS R_PPC64 = 88 |
| 1613 | R_PPC64_GOT_TPREL16_HI R_PPC64 = 89 |
| 1614 | R_PPC64_GOT_TPREL16_HA R_PPC64 = 90 |
| 1615 | R_PPC64_GOT_DTPREL16_DS R_PPC64 = 91 |
| 1616 | R_PPC64_GOT_DTPREL16_LO_DS R_PPC64 = 92 |
| 1617 | R_PPC64_GOT_DTPREL16_HI R_PPC64 = 93 |
| 1618 | R_PPC64_GOT_DTPREL16_HA R_PPC64 = 94 |
| 1619 | R_PPC64_TPREL16_DS R_PPC64 = 95 |
| 1620 | R_PPC64_TPREL16_LO_DS R_PPC64 = 96 |
| 1621 | R_PPC64_TPREL16_HIGHER R_PPC64 = 97 |
| 1622 | R_PPC64_TPREL16_HIGHERA R_PPC64 = 98 |
| 1623 | R_PPC64_TPREL16_HIGHEST R_PPC64 = 99 |
| 1624 | R_PPC64_TPREL16_HIGHESTA R_PPC64 = 100 |
| 1625 | R_PPC64_DTPREL16_DS R_PPC64 = 101 |
| 1626 | R_PPC64_DTPREL16_LO_DS R_PPC64 = 102 |
| 1627 | R_PPC64_DTPREL16_HIGHER R_PPC64 = 103 |
| 1628 | R_PPC64_DTPREL16_HIGHERA R_PPC64 = 104 |
| 1629 | R_PPC64_DTPREL16_HIGHEST R_PPC64 = 105 |
| 1630 | R_PPC64_DTPREL16_HIGHESTA R_PPC64 = 106 |
| 1631 | R_PPC64_TLSGD R_PPC64 = 107 |
| 1632 | R_PPC64_TLSLD R_PPC64 = 108 |
| 1633 | R_PPC64_REL16 R_PPC64 = 249 |
| 1634 | R_PPC64_REL16_LO R_PPC64 = 250 |
| 1635 | R_PPC64_REL16_HI R_PPC64 = 251 |
| 1636 | R_PPC64_REL16_HA R_PPC64 = 252 |
| 1637 | ) |
| 1638 | |
| 1639 | var rppc64Strings = []intName{ |
| 1640 | {0, "R_PPC64_NONE"}, |
| 1641 | {1, "R_PPC64_ADDR32"}, |
| 1642 | {2, "R_PPC64_ADDR24"}, |
| 1643 | {3, "R_PPC64_ADDR16"}, |
| 1644 | {4, "R_PPC64_ADDR16_LO"}, |
| 1645 | {5, "R_PPC64_ADDR16_HI"}, |
| 1646 | {6, "R_PPC64_ADDR16_HA"}, |
| 1647 | {7, "R_PPC64_ADDR14"}, |
| 1648 | {8, "R_PPC64_ADDR14_BRTAKEN"}, |
| 1649 | {9, "R_PPC64_ADDR14_BRNTAKEN"}, |
| 1650 | {10, "R_PPC64_REL24"}, |
| 1651 | {11, "R_PPC64_REL14"}, |
| 1652 | {12, "R_PPC64_REL14_BRTAKEN"}, |
| 1653 | {13, "R_PPC64_REL14_BRNTAKEN"}, |
| 1654 | {14, "R_PPC64_GOT16"}, |
| 1655 | {15, "R_PPC64_GOT16_LO"}, |
| 1656 | {16, "R_PPC64_GOT16_HI"}, |
| 1657 | {17, "R_PPC64_GOT16_HA"}, |
| 1658 | {21, "R_PPC64_JMP_SLOT"}, |
| 1659 | {26, "R_PPC64_REL32"}, |
| 1660 | {38, "R_PPC64_ADDR64"}, |
| 1661 | {39, "R_PPC64_ADDR16_HIGHER"}, |
| 1662 | {40, "R_PPC64_ADDR16_HIGHERA"}, |
| 1663 | {41, "R_PPC64_ADDR16_HIGHEST"}, |
| 1664 | {42, "R_PPC64_ADDR16_HIGHESTA"}, |
| 1665 | {44, "R_PPC64_REL64"}, |
| 1666 | {47, "R_PPC64_TOC16"}, |
| 1667 | {48, "R_PPC64_TOC16_LO"}, |
| 1668 | {49, "R_PPC64_TOC16_HI"}, |
| 1669 | {50, "R_PPC64_TOC16_HA"}, |
| 1670 | {51, "R_PPC64_TOC"}, |
| 1671 | {56, "R_PPC64_ADDR16_DS"}, |
| 1672 | {57, "R_PPC64_ADDR16_LO_DS"}, |
| 1673 | {58, "R_PPC64_GOT16_DS"}, |
| 1674 | {59, "R_PPC64_GOT16_LO_DS"}, |
| 1675 | {63, "R_PPC64_TOC16_DS"}, |
| 1676 | {64, "R_PPC64_TOC16_LO_DS"}, |
| 1677 | {67, "R_PPC64_TLS"}, |
| 1678 | {68, "R_PPC64_DTPMOD64"}, |
| 1679 | {69, "R_PPC64_TPREL16"}, |
| 1680 | {70, "R_PPC64_TPREL16_LO"}, |
| 1681 | {71, "R_PPC64_TPREL16_HI"}, |
| 1682 | {72, "R_PPC64_TPREL16_HA"}, |
| 1683 | {73, "R_PPC64_TPREL64"}, |
| 1684 | {74, "R_PPC64_DTPREL16"}, |
| 1685 | {75, "R_PPC64_DTPREL16_LO"}, |
| 1686 | {76, "R_PPC64_DTPREL16_HI"}, |
| 1687 | {77, "R_PPC64_DTPREL16_HA"}, |
| 1688 | {78, "R_PPC64_DTPREL64"}, |
| 1689 | {79, "R_PPC64_GOT_TLSGD16"}, |
| 1690 | {80, "R_PPC64_GOT_TLSGD16_LO"}, |
| 1691 | {81, "R_PPC64_GOT_TLSGD16_HI"}, |
| 1692 | {82, "R_PPC64_GOT_TLSGD16_HA"}, |
| 1693 | {83, "R_PPC64_GOT_TLSLD16"}, |
| 1694 | {84, "R_PPC64_GOT_TLSLD16_LO"}, |
| 1695 | {85, "R_PPC64_GOT_TLSLD16_HI"}, |
| 1696 | {86, "R_PPC64_GOT_TLSLD16_HA"}, |
| 1697 | {87, "R_PPC64_GOT_TPREL16_DS"}, |
| 1698 | {88, "R_PPC64_GOT_TPREL16_LO_DS"}, |
| 1699 | {89, "R_PPC64_GOT_TPREL16_HI"}, |
| 1700 | {90, "R_PPC64_GOT_TPREL16_HA"}, |
| 1701 | {91, "R_PPC64_GOT_DTPREL16_DS"}, |
| 1702 | {92, "R_PPC64_GOT_DTPREL16_LO_DS"}, |
| 1703 | {93, "R_PPC64_GOT_DTPREL16_HI"}, |
| 1704 | {94, "R_PPC64_GOT_DTPREL16_HA"}, |
| 1705 | {95, "R_PPC64_TPREL16_DS"}, |
| 1706 | {96, "R_PPC64_TPREL16_LO_DS"}, |
| 1707 | {97, "R_PPC64_TPREL16_HIGHER"}, |
| 1708 | {98, "R_PPC64_TPREL16_HIGHERA"}, |
| 1709 | {99, "R_PPC64_TPREL16_HIGHEST"}, |
| 1710 | {100, "R_PPC64_TPREL16_HIGHESTA"}, |
| 1711 | {101, "R_PPC64_DTPREL16_DS"}, |
| 1712 | {102, "R_PPC64_DTPREL16_LO_DS"}, |
| 1713 | {103, "R_PPC64_DTPREL16_HIGHER"}, |
| 1714 | {104, "R_PPC64_DTPREL16_HIGHERA"}, |
| 1715 | {105, "R_PPC64_DTPREL16_HIGHEST"}, |
| 1716 | {106, "R_PPC64_DTPREL16_HIGHESTA"}, |
| 1717 | {107, "R_PPC64_TLSGD"}, |
| 1718 | {108, "R_PPC64_TLSLD"}, |
| 1719 | {249, "R_PPC64_REL16"}, |
| 1720 | {250, "R_PPC64_REL16_LO"}, |
| 1721 | {251, "R_PPC64_REL16_HI"}, |
| 1722 | {252, "R_PPC64_REL16_HA"}, |
| 1723 | } |
| 1724 | |
| 1725 | func (i R_PPC64) String() string { return stringName(uint32(i), rppc64Strings, false) } |
| 1726 | func (i R_PPC64) GoString() string { return stringName(uint32(i), rppc64Strings, true) } |
| 1727 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1728 | // Relocation types for SPARC. |
| 1729 | type R_SPARC int |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1730 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1731 | const ( |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1732 | R_SPARC_NONE R_SPARC = 0 |
| 1733 | R_SPARC_8 R_SPARC = 1 |
| 1734 | R_SPARC_16 R_SPARC = 2 |
| 1735 | R_SPARC_32 R_SPARC = 3 |
| 1736 | R_SPARC_DISP8 R_SPARC = 4 |
| 1737 | R_SPARC_DISP16 R_SPARC = 5 |
| 1738 | R_SPARC_DISP32 R_SPARC = 6 |
| 1739 | R_SPARC_WDISP30 R_SPARC = 7 |
| 1740 | R_SPARC_WDISP22 R_SPARC = 8 |
| 1741 | R_SPARC_HI22 R_SPARC = 9 |
| 1742 | R_SPARC_22 R_SPARC = 10 |
| 1743 | R_SPARC_13 R_SPARC = 11 |
| 1744 | R_SPARC_LO10 R_SPARC = 12 |
| 1745 | R_SPARC_GOT10 R_SPARC = 13 |
| 1746 | R_SPARC_GOT13 R_SPARC = 14 |
| 1747 | R_SPARC_GOT22 R_SPARC = 15 |
| 1748 | R_SPARC_PC10 R_SPARC = 16 |
| 1749 | R_SPARC_PC22 R_SPARC = 17 |
| 1750 | R_SPARC_WPLT30 R_SPARC = 18 |
| 1751 | R_SPARC_COPY R_SPARC = 19 |
| 1752 | R_SPARC_GLOB_DAT R_SPARC = 20 |
| 1753 | R_SPARC_JMP_SLOT R_SPARC = 21 |
| 1754 | R_SPARC_RELATIVE R_SPARC = 22 |
| 1755 | R_SPARC_UA32 R_SPARC = 23 |
| 1756 | R_SPARC_PLT32 R_SPARC = 24 |
| 1757 | R_SPARC_HIPLT22 R_SPARC = 25 |
| 1758 | R_SPARC_LOPLT10 R_SPARC = 26 |
| 1759 | R_SPARC_PCPLT32 R_SPARC = 27 |
| 1760 | R_SPARC_PCPLT22 R_SPARC = 28 |
| 1761 | R_SPARC_PCPLT10 R_SPARC = 29 |
| 1762 | R_SPARC_10 R_SPARC = 30 |
| 1763 | R_SPARC_11 R_SPARC = 31 |
| 1764 | R_SPARC_64 R_SPARC = 32 |
| 1765 | R_SPARC_OLO10 R_SPARC = 33 |
| 1766 | R_SPARC_HH22 R_SPARC = 34 |
| 1767 | R_SPARC_HM10 R_SPARC = 35 |
| 1768 | R_SPARC_LM22 R_SPARC = 36 |
| 1769 | R_SPARC_PC_HH22 R_SPARC = 37 |
| 1770 | R_SPARC_PC_HM10 R_SPARC = 38 |
| 1771 | R_SPARC_PC_LM22 R_SPARC = 39 |
| 1772 | R_SPARC_WDISP16 R_SPARC = 40 |
| 1773 | R_SPARC_WDISP19 R_SPARC = 41 |
| 1774 | R_SPARC_GLOB_JMP R_SPARC = 42 |
| 1775 | R_SPARC_7 R_SPARC = 43 |
| 1776 | R_SPARC_5 R_SPARC = 44 |
| 1777 | R_SPARC_6 R_SPARC = 45 |
| 1778 | R_SPARC_DISP64 R_SPARC = 46 |
| 1779 | R_SPARC_PLT64 R_SPARC = 47 |
| 1780 | R_SPARC_HIX22 R_SPARC = 48 |
| 1781 | R_SPARC_LOX10 R_SPARC = 49 |
| 1782 | R_SPARC_H44 R_SPARC = 50 |
| 1783 | R_SPARC_M44 R_SPARC = 51 |
| 1784 | R_SPARC_L44 R_SPARC = 52 |
| 1785 | R_SPARC_REGISTER R_SPARC = 53 |
| 1786 | R_SPARC_UA64 R_SPARC = 54 |
| 1787 | R_SPARC_UA16 R_SPARC = 55 |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1788 | ) |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1789 | |
| 1790 | var rsparcStrings = []intName{ |
Robert Griesemer | 3478891 | 2010-10-22 10:06:33 -0700 | [diff] [blame] | 1791 | {0, "R_SPARC_NONE"}, |
| 1792 | {1, "R_SPARC_8"}, |
| 1793 | {2, "R_SPARC_16"}, |
| 1794 | {3, "R_SPARC_32"}, |
| 1795 | {4, "R_SPARC_DISP8"}, |
| 1796 | {5, "R_SPARC_DISP16"}, |
| 1797 | {6, "R_SPARC_DISP32"}, |
| 1798 | {7, "R_SPARC_WDISP30"}, |
| 1799 | {8, "R_SPARC_WDISP22"}, |
| 1800 | {9, "R_SPARC_HI22"}, |
| 1801 | {10, "R_SPARC_22"}, |
| 1802 | {11, "R_SPARC_13"}, |
| 1803 | {12, "R_SPARC_LO10"}, |
| 1804 | {13, "R_SPARC_GOT10"}, |
| 1805 | {14, "R_SPARC_GOT13"}, |
| 1806 | {15, "R_SPARC_GOT22"}, |
| 1807 | {16, "R_SPARC_PC10"}, |
| 1808 | {17, "R_SPARC_PC22"}, |
| 1809 | {18, "R_SPARC_WPLT30"}, |
| 1810 | {19, "R_SPARC_COPY"}, |
| 1811 | {20, "R_SPARC_GLOB_DAT"}, |
| 1812 | {21, "R_SPARC_JMP_SLOT"}, |
| 1813 | {22, "R_SPARC_RELATIVE"}, |
| 1814 | {23, "R_SPARC_UA32"}, |
| 1815 | {24, "R_SPARC_PLT32"}, |
| 1816 | {25, "R_SPARC_HIPLT22"}, |
| 1817 | {26, "R_SPARC_LOPLT10"}, |
| 1818 | {27, "R_SPARC_PCPLT32"}, |
| 1819 | {28, "R_SPARC_PCPLT22"}, |
| 1820 | {29, "R_SPARC_PCPLT10"}, |
| 1821 | {30, "R_SPARC_10"}, |
| 1822 | {31, "R_SPARC_11"}, |
| 1823 | {32, "R_SPARC_64"}, |
| 1824 | {33, "R_SPARC_OLO10"}, |
| 1825 | {34, "R_SPARC_HH22"}, |
| 1826 | {35, "R_SPARC_HM10"}, |
| 1827 | {36, "R_SPARC_LM22"}, |
| 1828 | {37, "R_SPARC_PC_HH22"}, |
| 1829 | {38, "R_SPARC_PC_HM10"}, |
| 1830 | {39, "R_SPARC_PC_LM22"}, |
| 1831 | {40, "R_SPARC_WDISP16"}, |
| 1832 | {41, "R_SPARC_WDISP19"}, |
| 1833 | {42, "R_SPARC_GLOB_JMP"}, |
| 1834 | {43, "R_SPARC_7"}, |
| 1835 | {44, "R_SPARC_5"}, |
| 1836 | {45, "R_SPARC_6"}, |
| 1837 | {46, "R_SPARC_DISP64"}, |
| 1838 | {47, "R_SPARC_PLT64"}, |
| 1839 | {48, "R_SPARC_HIX22"}, |
| 1840 | {49, "R_SPARC_LOX10"}, |
| 1841 | {50, "R_SPARC_H44"}, |
| 1842 | {51, "R_SPARC_M44"}, |
| 1843 | {52, "R_SPARC_L44"}, |
| 1844 | {53, "R_SPARC_REGISTER"}, |
| 1845 | {54, "R_SPARC_UA64"}, |
| 1846 | {55, "R_SPARC_UA16"}, |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1847 | } |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1848 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1849 | func (i R_SPARC) String() string { return stringName(uint32(i), rsparcStrings, false) } |
| 1850 | func (i R_SPARC) GoString() string { return stringName(uint32(i), rsparcStrings, true) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1851 | |
Evan Shaw | d770105 | 2010-04-11 14:49:44 -0700 | [diff] [blame] | 1852 | // Magic number for the elf trampoline, chosen wisely to be an immediate value. |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1853 | const ARM_MAGIC_TRAMP_NUMBER = 0x5c000003 |
| 1854 | |
Evan Shaw | d770105 | 2010-04-11 14:49:44 -0700 | [diff] [blame] | 1855 | // ELF32 File header. |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1856 | type Header32 struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1857 | Ident [EI_NIDENT]byte /* File identification. */ |
| 1858 | Type uint16 /* File type. */ |
| 1859 | Machine uint16 /* Machine architecture. */ |
| 1860 | Version uint32 /* ELF format version. */ |
| 1861 | Entry uint32 /* Entry point. */ |
| 1862 | Phoff uint32 /* Program header file offset. */ |
| 1863 | Shoff uint32 /* Section header file offset. */ |
| 1864 | Flags uint32 /* Architecture-specific flags. */ |
| 1865 | Ehsize uint16 /* Size of ELF header in bytes. */ |
| 1866 | Phentsize uint16 /* Size of program header entry. */ |
| 1867 | Phnum uint16 /* Number of program header entries. */ |
| 1868 | Shentsize uint16 /* Size of section header entry. */ |
| 1869 | Shnum uint16 /* Number of section header entries. */ |
| 1870 | Shstrndx uint16 /* Section name strings section. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1871 | } |
| 1872 | |
Evan Shaw | d770105 | 2010-04-11 14:49:44 -0700 | [diff] [blame] | 1873 | // ELF32 Section header. |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1874 | type Section32 struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1875 | Name uint32 /* Section name (index into the section header string table). */ |
| 1876 | Type uint32 /* Section type. */ |
| 1877 | Flags uint32 /* Section flags. */ |
| 1878 | Addr uint32 /* Address in memory image. */ |
| 1879 | Off uint32 /* Offset in file. */ |
| 1880 | Size uint32 /* Size in bytes. */ |
| 1881 | Link uint32 /* Index of a related section. */ |
| 1882 | Info uint32 /* Depends on section type. */ |
| 1883 | Addralign uint32 /* Alignment in bytes. */ |
| 1884 | Entsize uint32 /* Size of each entry in section. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1885 | } |
| 1886 | |
Evan Shaw | d770105 | 2010-04-11 14:49:44 -0700 | [diff] [blame] | 1887 | // ELF32 Program header. |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1888 | type Prog32 struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1889 | Type uint32 /* Entry type. */ |
| 1890 | Off uint32 /* File offset of contents. */ |
| 1891 | Vaddr uint32 /* Virtual address in memory image. */ |
| 1892 | Paddr uint32 /* Physical address (not used). */ |
| 1893 | Filesz uint32 /* Size of contents in file. */ |
| 1894 | Memsz uint32 /* Size of contents in memory. */ |
| 1895 | Flags uint32 /* Access permission flags. */ |
| 1896 | Align uint32 /* Alignment in memory and file. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1897 | } |
| 1898 | |
Brad Fitzpatrick | 5fea2cc | 2016-03-01 23:21:55 +0000 | [diff] [blame^] | 1899 | // ELF32 Dynamic structure. The ".dynamic" section contains an array of them. |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1900 | type Dyn32 struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1901 | Tag int32 /* Entry type. */ |
| 1902 | Val uint32 /* Integer/Address value. */ |
Russ Cox | 22c98a3 | 2009-10-06 14:55:06 -0700 | [diff] [blame] | 1903 | } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1904 | |
Austin Clements | 7648387 | 2015-12-02 12:20:29 -0500 | [diff] [blame] | 1905 | // ELF32 Compression header. |
| 1906 | type Chdr32 struct { |
| 1907 | Type uint32 |
| 1908 | Size uint32 |
| 1909 | Addralign uint32 |
| 1910 | } |
| 1911 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1912 | /* |
| 1913 | * Relocation entries. |
| 1914 | */ |
| 1915 | |
| 1916 | // ELF32 Relocations that don't need an addend field. |
| 1917 | type Rel32 struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1918 | Off uint32 /* Location to be relocated. */ |
| 1919 | Info uint32 /* Relocation type and symbol index. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1920 | } |
| 1921 | |
| 1922 | // ELF32 Relocations that need an addend field. |
| 1923 | type Rela32 struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1924 | Off uint32 /* Location to be relocated. */ |
| 1925 | Info uint32 /* Relocation type and symbol index. */ |
| 1926 | Addend int32 /* Addend. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1927 | } |
| 1928 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1929 | func R_SYM32(info uint32) uint32 { return uint32(info >> 8) } |
| 1930 | func R_TYPE32(info uint32) uint32 { return uint32(info & 0xff) } |
| 1931 | func R_INFO32(sym, typ uint32) uint32 { return sym<<8 | typ } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1932 | |
| 1933 | // ELF32 Symbol. |
| 1934 | type Sym32 struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1935 | Name uint32 |
| 1936 | Value uint32 |
| 1937 | Size uint32 |
| 1938 | Info uint8 |
| 1939 | Other uint8 |
| 1940 | Shndx uint16 |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1941 | } |
| 1942 | |
Ian Lance Taylor | f32cde8 | 2009-11-02 12:53:06 -0800 | [diff] [blame] | 1943 | const Sym32Size = 16 |
| 1944 | |
Russ Cox | 37499eb | 2010-12-08 13:53:19 -0500 | [diff] [blame] | 1945 | func ST_BIND(info uint8) SymBind { return SymBind(info >> 4) } |
| 1946 | func ST_TYPE(info uint8) SymType { return SymType(info & 0xF) } |
| 1947 | func ST_INFO(bind SymBind, typ SymType) uint8 { |
| 1948 | return uint8(bind)<<4 | uint8(typ)&0xf |
| 1949 | } |
| 1950 | func ST_VISIBILITY(other uint8) SymVis { return SymVis(other & 3) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1951 | |
| 1952 | /* |
| 1953 | * ELF64 |
| 1954 | */ |
| 1955 | |
Evan Shaw | d770105 | 2010-04-11 14:49:44 -0700 | [diff] [blame] | 1956 | // ELF64 file header. |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1957 | type Header64 struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1958 | Ident [EI_NIDENT]byte /* File identification. */ |
| 1959 | Type uint16 /* File type. */ |
| 1960 | Machine uint16 /* Machine architecture. */ |
| 1961 | Version uint32 /* ELF format version. */ |
| 1962 | Entry uint64 /* Entry point. */ |
| 1963 | Phoff uint64 /* Program header file offset. */ |
| 1964 | Shoff uint64 /* Section header file offset. */ |
| 1965 | Flags uint32 /* Architecture-specific flags. */ |
| 1966 | Ehsize uint16 /* Size of ELF header in bytes. */ |
| 1967 | Phentsize uint16 /* Size of program header entry. */ |
| 1968 | Phnum uint16 /* Number of program header entries. */ |
| 1969 | Shentsize uint16 /* Size of section header entry. */ |
| 1970 | Shnum uint16 /* Number of section header entries. */ |
| 1971 | Shstrndx uint16 /* Section name strings section. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1972 | } |
| 1973 | |
Evan Shaw | d770105 | 2010-04-11 14:49:44 -0700 | [diff] [blame] | 1974 | // ELF64 Section header. |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1975 | type Section64 struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1976 | Name uint32 /* Section name (index into the section header string table). */ |
| 1977 | Type uint32 /* Section type. */ |
| 1978 | Flags uint64 /* Section flags. */ |
| 1979 | Addr uint64 /* Address in memory image. */ |
| 1980 | Off uint64 /* Offset in file. */ |
| 1981 | Size uint64 /* Size in bytes. */ |
| 1982 | Link uint32 /* Index of a related section. */ |
| 1983 | Info uint32 /* Depends on section type. */ |
| 1984 | Addralign uint64 /* Alignment in bytes. */ |
| 1985 | Entsize uint64 /* Size of each entry in section. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1986 | } |
| 1987 | |
Evan Shaw | d770105 | 2010-04-11 14:49:44 -0700 | [diff] [blame] | 1988 | // ELF64 Program header. |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1989 | type Prog64 struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 1990 | Type uint32 /* Entry type. */ |
| 1991 | Flags uint32 /* Access permission flags. */ |
| 1992 | Off uint64 /* File offset of contents. */ |
| 1993 | Vaddr uint64 /* Virtual address in memory image. */ |
| 1994 | Paddr uint64 /* Physical address (not used). */ |
| 1995 | Filesz uint64 /* Size of contents in file. */ |
| 1996 | Memsz uint64 /* Size of contents in memory. */ |
| 1997 | Align uint64 /* Alignment in memory and file. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 1998 | } |
| 1999 | |
Brad Fitzpatrick | 5fea2cc | 2016-03-01 23:21:55 +0000 | [diff] [blame^] | 2000 | // ELF64 Dynamic structure. The ".dynamic" section contains an array of them. |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2001 | type Dyn64 struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 2002 | Tag int64 /* Entry type. */ |
| 2003 | Val uint64 /* Integer/address value */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2004 | } |
| 2005 | |
Austin Clements | 7648387 | 2015-12-02 12:20:29 -0500 | [diff] [blame] | 2006 | // ELF64 Compression header. |
| 2007 | type Chdr64 struct { |
| 2008 | Type uint32 |
Austin Clements | ea5b9d5 | 2015-12-18 09:53:25 -0800 | [diff] [blame] | 2009 | _ uint32 /* Reserved. */ |
Austin Clements | 7648387 | 2015-12-02 12:20:29 -0500 | [diff] [blame] | 2010 | Size uint64 |
| 2011 | Addralign uint64 |
| 2012 | } |
| 2013 | |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2014 | /* |
| 2015 | * Relocation entries. |
| 2016 | */ |
| 2017 | |
| 2018 | /* ELF64 relocations that don't need an addend field. */ |
| 2019 | type Rel64 struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 2020 | Off uint64 /* Location to be relocated. */ |
| 2021 | Info uint64 /* Relocation type and symbol index. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2022 | } |
| 2023 | |
| 2024 | /* ELF64 relocations that need an addend field. */ |
| 2025 | type Rela64 struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 2026 | Off uint64 /* Location to be relocated. */ |
| 2027 | Info uint64 /* Relocation type and symbol index. */ |
| 2028 | Addend int64 /* Addend. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2029 | } |
| 2030 | |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 2031 | func R_SYM64(info uint64) uint32 { return uint32(info >> 32) } |
| 2032 | func R_TYPE64(info uint64) uint32 { return uint32(info) } |
| 2033 | func R_INFO(sym, typ uint32) uint64 { return uint64(sym)<<32 | uint64(typ) } |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2034 | |
Evan Shaw | d770105 | 2010-04-11 14:49:44 -0700 | [diff] [blame] | 2035 | // ELF64 symbol table entries. |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2036 | type Sym64 struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 2037 | Name uint32 /* String table index of name. */ |
| 2038 | Info uint8 /* Type and binding information. */ |
| 2039 | Other uint8 /* Reserved (not used). */ |
| 2040 | Shndx uint16 /* Section index of symbol. */ |
| 2041 | Value uint64 /* Symbol value. */ |
| 2042 | Size uint64 /* Size of associated object. */ |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2043 | } |
| 2044 | |
Ian Lance Taylor | f32cde8 | 2009-11-02 12:53:06 -0800 | [diff] [blame] | 2045 | const Sym64Size = 24 |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2046 | |
| 2047 | type intName struct { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 2048 | i uint32 |
| 2049 | s string |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2050 | } |
| 2051 | |
| 2052 | func stringName(i uint32, names []intName, goSyntax bool) string { |
| 2053 | for _, n := range names { |
| 2054 | if n.i == i { |
| 2055 | if goSyntax { |
Robert Griesemer | 40621d5 | 2009-11-09 12:07:39 -0800 | [diff] [blame] | 2056 | return "elf." + n.s |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2057 | } |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 2058 | return n.s |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2059 | } |
| 2060 | } |
| 2061 | |
| 2062 | // second pass - look for smaller to add with. |
| 2063 | // assume sorted already |
Robert Griesemer | baba292 | 2009-11-09 21:13:17 -0800 | [diff] [blame] | 2064 | for j := len(names) - 1; j >= 0; j-- { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 2065 | n := names[j] |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2066 | if n.i < i { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 2067 | s := n.s |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2068 | if goSyntax { |
Robert Griesemer | baba292 | 2009-11-09 21:13:17 -0800 | [diff] [blame] | 2069 | s = "elf." + s |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2070 | } |
Russ Cox | 2666b81 | 2011-12-05 15:48:46 -0500 | [diff] [blame] | 2071 | return s + "+" + strconv.FormatUint(uint64(i-n.i), 10) |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2072 | } |
| 2073 | } |
| 2074 | |
Russ Cox | 2666b81 | 2011-12-05 15:48:46 -0500 | [diff] [blame] | 2075 | return strconv.FormatUint(uint64(i), 10) |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2076 | } |
| 2077 | |
| 2078 | func flagName(i uint32, names []intName, goSyntax bool) string { |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 2079 | s := "" |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2080 | for _, n := range names { |
Robert Griesemer | baba292 | 2009-11-09 21:13:17 -0800 | [diff] [blame] | 2081 | if n.i&i == n.i { |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2082 | if len(s) > 0 { |
Robert Griesemer | 40621d5 | 2009-11-09 12:07:39 -0800 | [diff] [blame] | 2083 | s += "+" |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2084 | } |
| 2085 | if goSyntax { |
Robert Griesemer | 40621d5 | 2009-11-09 12:07:39 -0800 | [diff] [blame] | 2086 | s += "elf." |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2087 | } |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 2088 | s += n.s |
| 2089 | i -= n.i |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2090 | } |
| 2091 | } |
| 2092 | if len(s) == 0 { |
Russ Cox | 2666b81 | 2011-12-05 15:48:46 -0500 | [diff] [blame] | 2093 | return "0x" + strconv.FormatUint(uint64(i), 16) |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2094 | } |
| 2095 | if i != 0 { |
Russ Cox | 2666b81 | 2011-12-05 15:48:46 -0500 | [diff] [blame] | 2096 | s += "+0x" + strconv.FormatUint(uint64(i), 16) |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2097 | } |
Robert Griesemer | 1c72959 | 2009-12-15 15:27:16 -0800 | [diff] [blame] | 2098 | return s |
Russ Cox | 8195439 | 2009-08-31 16:08:12 -0700 | [diff] [blame] | 2099 | } |