OSDN Git Service

- trim any trailing whitespace
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / bfin / bits / elf-fdpic.h
1 /* Copyright 2003, 2004 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
8
9 In addition to the permissions in the GNU Lesser General Public
10 License, the Free Software Foundation gives you unlimited
11 permission to link the compiled version of this file with other
12 programs, and to distribute those programs without any restriction
13 coming from the use of this file.  (The GNU Lesser General Public
14 License restrictions do apply in other respects; for example, they
15 cover modification of the file, and distribution when not linked
16 into another program.)
17
18 The GNU C Library is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 Library General Public License for more details.
22
23 You should have received a copy of the GNU Lesser General Public
24 License along with the GNU C Library; see the file COPYING.LIB.  If
25 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
26 Cambridge, MA 02139, USA.  */
27
28 #ifndef _BITS_ELF_FDPIC_H
29 #define _BITS_ELF_FDPIC_H
30
31 /* These data structures are described in the FDPIC ABI extension.
32    The kernel passes a process a memory map, such that for every LOAD
33    segment there is an elf32_fdpic_loadseg entry.  A pointer to an
34    elf32_fdpic_loadmap is passed in GR8 at start-up, and a pointer to
35    an additional such map is passed in GR9 for the interpreter, when
36    there is one.  */
37
38 #include <elf.h>
39
40 /* This data structure represents a PT_LOAD segment.  */
41 struct elf32_fdpic_loadseg
42 {
43   /* Core address to which the segment is mapped.  */
44   Elf32_Addr addr;
45   /* VMA recorded in the program header.  */
46   Elf32_Addr p_vaddr;
47   /* Size of this segment in memory.  */
48   Elf32_Word p_memsz;
49 };
50
51 struct elf32_fdpic_loadmap {
52   /* Protocol version number, must be zero.  */
53   Elf32_Half version;
54   /* Number of segments in this map.  */
55   Elf32_Half nsegs;
56   /* The actual memory map.  */
57   struct elf32_fdpic_loadseg segs[/*nsegs*/];
58 };
59
60 struct elf32_fdpic_loadaddr {
61   struct elf32_fdpic_loadmap *map;
62   void *got_value;
63 };
64
65 /* Map a pointer's VMA to its corresponding address according to the
66    load map.  */
67 inline static void *
68 __reloc_pointer (void *p,
69                  const struct elf32_fdpic_loadmap *map)
70 {
71   int c;
72
73 #if 0
74   if (map->version != 0)
75     /* Crash.  */
76     ((void(*)())0)();
77 #endif
78
79   /* No special provision is made for NULL.  We don't want NULL
80      addresses to go through relocation, so they shouldn't be in
81      .rofixup sections, and, if they're present in dynamic
82      relocations, they shall be mapped to the NULL address without
83      undergoing relocations.  */
84
85   for (c = 0;
86        /* Take advantage of the fact that the loadmap is ordered by
87           virtual addresses.  In general there will only be 2 entries,
88           so it's not profitable to do a binary search.  */
89        c < map->nsegs && p >= (void*)map->segs[c].p_vaddr;
90        c++)
91     {
92       /* This should be computed as part of the pointer comparison
93          above, but we want to use the carry in the comparison, so we
94          can't convert it to an integer type beforehand.  */
95       unsigned long offset = p - (void*)map->segs[c].p_vaddr;
96       /* We only check for one-past-the-end for the last segment,
97          assumed to be the data segment, because other cases are
98          ambiguous in the absence of padding between segments, and
99          rofixup already serves as padding between text and data.
100          Unfortunately, unless we special-case the last segment, we
101          fail to relocate the _end symbol.  */
102       if (offset < map->segs[c].p_memsz
103           || (offset == map->segs[c].p_memsz && c + 1 == map->nsegs))
104         return (char*)map->segs[c].addr + offset;
105     }
106
107   /* We might want to crash instead.  */
108   return (void*)-1;
109 }
110
111 # define __RELOC_POINTER(ptr, loadaddr) \
112   (__reloc_pointer ((void*)(ptr), \
113                     (loadaddr).map))
114
115 #endif /* _BITS_ELF_FDPIC_H */