OSDN Git Service

- fixup asm. No object-code changes
[uclinux-h8/uClibc.git] / ldso / ldso / m68k / dl-sysdep.h
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Various assmbly language/system dependent hacks that are required
4  * so that we can minimize the amount of platform specific code. 
5  * Copyright (C) 2005 by Erik Andersen <andersen@codepoet.org>
6  */
7
8 /* Define this if the system uses RELOCA.  */
9 #define ELF_USES_RELOCA
10 #include <elf.h>
11 /* Initialization sequence for a GOT.  */
12 #define INIT_GOT(GOT_BASE,MODULE) \
13 do { \
14         GOT_BASE[2] = (unsigned long) _dl_linux_resolve; \
15         GOT_BASE[1] = (unsigned long) (MODULE); \
16 } while(0)
17
18 /* Here we define the magic numbers that this dynamic loader should accept */
19 #define MAGIC1 EM_68K
20 #undef  MAGIC2
21
22 /* Used for error messages */
23 #define ELF_TARGET "m68k"
24
25 struct elf_resolve;
26 extern unsigned long _dl_linux_resolver (struct elf_resolve *, int);
27
28 /* 4096 bytes alignment */
29 #define PAGE_ALIGN 0xfffff000
30 #define ADDR_ALIGN 0xfff
31 #define OFFS_ALIGN 0x7ffff000
32
33 /* ELF_RTYPE_CLASS_PLT iff TYPE describes relocation of a PLT entry, so
34    PLT entries should not be allowed to define the value.
35    ELF_RTYPE_CLASS_NOCOPY iff TYPE should not be allowed to resolve to one
36    of the main executable's symbols, as for a COPY reloc.  */
37 #define elf_machine_type_class(type) \
38   ((((type) == R_68K_JMP_SLOT) * ELF_RTYPE_CLASS_PLT)   \
39    | (((type) == R_68K_COPY) * ELF_RTYPE_CLASS_COPY))
40
41 /* Return the link-time address of _DYNAMIC.  Conveniently, this is the
42    first element of the GOT.  This must be inlined in a function which
43    uses global data.  */
44 static inline Elf32_Addr
45 elf_machine_dynamic (void)
46 {
47         register Elf32_Addr *got __asm__ ("%a5");
48         return *got;
49 }
50
51
52 /* Return the run-time load address of the shared object.  */
53 static inline Elf32_Addr
54 elf_machine_load_address (void)
55 {
56         Elf32_Addr addr;
57         __asm__ ("lea _dl_start(%%pc), %0\n\t"
58              "sub.l _dl_start@GOT.w(%%a5), %0"
59              : "=a" (addr));
60         return addr;
61 }
62
63 static inline void
64 elf_machine_relative (Elf32_Addr load_off, const Elf32_Addr rel_addr,
65                       Elf32_Word relative_count)
66 {
67          Elf32_Rela * rpnt = (void *)rel_addr;
68         --rpnt;
69         do {
70                 Elf32_Addr *const reloc_addr = (void *) (load_off + (++rpnt)->r_offset);
71
72                 *reloc_addr = load_off + rpnt->r_addend;
73         } while (--relative_count);
74 }