3 @@ -411,6 +411,17 @@ ifeq ($(TARGET_ARCH),microblaze)
7 +ifeq ($(TARGET_ARCH),ubicom32)
8 + OPTIMIZATION+=-fstrict-aliasing
9 + CPU_CFLAGS-$(CONFIG_UBICOM32_V3)+=-march=ubicom32v3
10 + CPU_CFLAGS-$(CONFIG_UBICOM32_V4)+=-march=ubicom32v4
11 +ifeq ($(UCLIBC_FORMAT_FDPIC_ELF),y)
12 + CPU_CFLAGS-y:=-mfdpic
13 + CPU_LDFLAGS-y += -Wl,-melf32ubicom32fdpic
18 ifeq ($(TARGET_ARCH),v850)
21 --- a/extra/Configs/Config.in
22 +++ b/extra/Configs/Config.in
23 @@ -73,6 +73,9 @@ config TARGET_sh64
27 +config TARGET_ubicom32
33 @@ -174,6 +177,10 @@ if TARGET_sparc
34 source "extra/Configs/Config.sparc"
38 +source "extra/Configs/Config.ubicom32"
42 source "extra/Configs/Config.v850"
44 --- a/extra/Configs/Config.in.arch
45 +++ b/extra/Configs/Config.in.arch
46 @@ -148,7 +148,7 @@ config UCLIBC_HAS_SOFT_FLOAT
48 bool "Enable full C99 math library support"
49 depends on UCLIBC_HAS_FLOATS
53 If you want the uClibc math library to contain the full set C99
54 math library features, then answer Y. If you leave this set to
56 +++ b/extra/Configs/Config.ubicom32
59 +# For a description of the syntax of this configuration file,
60 +# see extra/config/Kconfig-language.txt
67 +config FORCE_OPTIONS_FOR_ARCH
70 + select ARCH_BIG_ENDIAN
71 + select ARCH_HAS_NO_MMU
74 + prompt "Target Processor Architecture"
75 + default CONFIG_UC_UBICOM32_V3
77 + This selects the instruction set architecture of your Ubicom32 CPU. This
78 + information is used for optimizing purposes. To build a library that
79 + will run on any Ubicom32 CPU, you can specify "v3" here.
80 + If you pick anything other than "v3," there is no
81 + guarantee that uClibc will even run on anything other than the
82 + selected processor type.
84 + You should probably select the Ubicom32 ISA that best matches the
85 + CPU you will be using on your device. uClibc will be tuned
86 + for that architecture.
88 + If you don't know what to do, choose "v3"
90 +config CONFIG_UC_UBICOM32_V3
93 +config CONFIG_UC_UBICOM32_V4
104 @@ -331,6 +331,8 @@ typedef struct
106 #define EM_XSTORMY16 0xad45
108 +#define EM_UBICOM32 0xde3d /* Ubicom32; no ABI */
110 /* FRV magic number - no EABI available??. */
111 #define EM_CYGNUS_FRV 0x5441
113 @@ -3036,6 +3038,55 @@ typedef Elf32_Addr Elf32_Conflict;
114 /* Keep this the last entry. */
115 #define R_XTENSA_NUM 50
117 +/* Ubicom32 ELF relocation types */
118 +#define R_UBICOM32_NONE 0
119 +#define R_UBICOM32_16 1
120 +#define R_UBICOM32_32 2
121 +#define R_UBICOM32_LO16 3
122 +#define R_UBICOM32_HI16 4
123 +#define R_UBICOM32_21_PCREL 5
124 +#define R_UBICOM32_24_PCREL 6
125 +#define R_UBICOM32_HI24 7
126 +#define R_UBICOM32_LO7_S 8
127 +#define R_UBICOM32_LO7_2_S 9
128 +#define R_UBICOM32_LO7_4_S 10
129 +#define R_UBICOM32_LO7_D 11
130 +#define R_UBICOM32_LO7_2_D 12
131 +#define R_UBICOM32_LO7_4_D 13
132 +#define R_UBICOM32_32_HARVARD 14
133 +#define R_UBICOM32_LO7_CALLI 15
134 +#define R_UBICOM32_LO16_CALLI 16
135 +#define R_UBICOM32_GOT_HI24 17
136 +#define R_UBICOM32_GOT_LO7_S 18
137 +#define R_UBICOM32_GOT_LO7_2_S 19
138 +#define R_UBICOM32_GOT_LO7_4_S 20
139 +#define R_UBICOM32_GOT_LO7_D 21
140 +#define R_UBICOM32_GOT_LO7_2_D 22
141 +#define R_UBICOM32_GOT_LO7_4_D 23
142 +#define R_UBICOM32_FUNCDESC_GOT_HI24 24
143 +#define R_UBICOM32_FUNCDESC_GOT_LO7_S 25
144 +#define R_UBICOM32_FUNCDESC_GOT_LO7_2_S 26
145 +#define R_UBICOM32_FUNCDESC_GOT_LO7_4_S 27
146 +#define R_UBICOM32_FUNCDESC_GOT_LO7_D 28
147 +#define R_UBICOM32_FUNCDESC_GOT_LO7_2_D 29
148 +#define R_UBICOM32_FUNCDESC_GOT_LO7_4_D 30
149 +#define R_UBICOM32_GOT_LO7_CALLI 31
150 +#define R_UBICOM32_FUNCDESC_GOT_LO7_CALLI 32
151 +#define R_UBICOM32_FUNCDESC_VALUE 33
152 +#define R_UBICOM32_FUNCDESC 34
153 +#define R_UBICOM32_GOTOFFSET_LO 35
154 +#define R_UBICOM32_GOTOFFSET_HI 36
155 +#define R_UBICOM32_FUNCDESC_GOTOFFSET_LO 37
156 +#define R_UBICOM32_FUNCDESC_GOTOFFSET_HI 38
157 +#define R_UBICOM32_GNU_VTINHERIT 200
158 +#define R_UBICOM32_GNU_VTENTRY 201
160 +/* Ubicom32 Flags. */
161 +#define EF_UBICOM32_V3 0x00000001 /* -fmarch=ubicom32v3 */
162 +#define EF_UBICOM32_V4 0x00000002 /* -fmarch=ubicom32v4 */
163 +#define EF_UBICOM32_PIC 0x80000000 /* -fpic */
164 +#define EF_UBICOM32_FDPIC 0x40000000 /* -mfdpic */
169 --- a/include/features.h
170 +++ b/include/features.h
171 @@ -422,4 +422,10 @@ uClibc was built without large file supp
175 +#ifndef libc_hidden_proto
176 +#define libc_hidden_proto(name, attrs...)
178 +#ifndef libm_hidden_proto
179 +#define libm_hidden_proto(name, attrs...)
181 #endif /* features.h */
182 --- a/ldso/ldso/dl-startup.c
183 +++ b/ldso/ldso/dl-startup.c
184 @@ -165,10 +165,13 @@ DL_START(unsigned long args)
188 +#if !defined __FDPIC__
189 /* locate the ELF header. We need this done as soon as possible
190 * (esp since SEND_STDERR() needs this on some platforms... */
191 if (!auxvt[AT_BASE].a_un.a_val)
192 auxvt[AT_BASE].a_un.a_val = elf_machine_load_address();
195 DL_INIT_LOADADDR_BOOT(load_addr, auxvt[AT_BASE].a_un.a_val);
196 header = (ElfW(Ehdr) *) auxvt[AT_BASE].a_un.a_val;
198 --- a/ldso/ldso/ldso.c
199 +++ b/ldso/ldso/ldso.c
200 @@ -179,10 +179,12 @@ void _dl_get_ready_to_run(struct elf_res
201 _dl_progname = argv[0];
204 +#if 0 // blackfin does this, we do to avoid die during reloc
205 if (_start == (void *) auxvt[AT_ENTRY].a_un.a_val) {
206 _dl_dprintf(_dl_debug_file, "Standalone execution is not supported yet\n");
211 /* Start to build the tables of the modules that are required for
212 * this beast to run. We start with the basic executable, and then
214 +++ b/ldso/ldso/ubicom32/dl-debug.h
216 +/* vi: set sw=4 ts=4: */
217 +/* Ubicom32 ELF shared library loader suppport
219 + * Copyright (c) 2009 Ubicom Inc.
220 + * Copyright (c) 1994-2000 Eric Youngdale, Peter MacDonald,
221 + * David Engel, Hongjiu Lu and Mitch D'Souza
222 + * Copyright (C) 2001-2004 Erik Andersen
224 + * All rights reserved.
226 + * Redistribution and use in source and binary forms, with or without
227 + * modification, are permitted provided that the following conditions
229 + * 1. Redistributions of source code must retain the above copyright
230 + * notice, this list of conditions and the following disclaimer.
231 + * 2. The name of the above contributors may not be
232 + * used to endorse or promote products derived from this software
233 + * without specific prior written permission.
235 + * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND
236 + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
237 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
238 + * ARE DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE
239 + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
240 + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
241 + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
242 + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
243 + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
244 + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
248 +static const char *_dl_reltypes_tab[] =
250 + "R_UBICOM32_NONE", /* 0 */
255 + "R_UBICOM32_21_PCREL", /* 5 */
256 + "R_UBICOM32_24_PCREL",
258 + "R_UBICOM32_LO7_S",
259 + "R_UBICOM32_LO7_2_S",
260 + "R_UBICOM32_LO7_4_S", /* 10 */
261 + "R_UBICOM32_LO7_D",
262 + "R_UBICOM32_LO7_2_D",
263 + "R_UBICOM32_LO7_4_D",
264 + "R_UBICOM32_32_HARVARD",
265 + "R_UBICOM32_LO7_CALLI", /* 15 */
266 + "R_UBICOM32_LO16_CALLI",
267 + "R_UBICOM32_GOT_HI24",
268 + "R_UBICOM32_GOT_LO7_S",
269 + "R_UBICOM32_GOT_LO7_2_S"
270 + "R_UBICOM32_GOT_LO7_4_S", /* 20 */
271 + "R_UBICOM32_GOT_LO7_D",
272 + "R_UBICOM32_GOT_LO7_2_D",
273 + "R_UBICOM32_GOT_LO7_4_D",
274 + "R_UBICOM32_FUNCDESC_GOT_HI24 24",
275 + "R_UBICOM32_FUNCDESC_GOT_LO7_S", /* 25 */
276 + "R_UBICOM32_FUNCDESC_GOT_LO7_2_S",
277 + "R_UBICOM32_FUNCDESC_GOT_LO7_4_S",
278 + "R_UBICOM32_FUNCDESC_GOT_LO7_D",
279 + "R_UBICOM32_FUNCDESC_GOT_LO7_2_D",
280 + "R_UBICOM32_FUNCDESC_GOT_LO7_4_D", /* 30 */
281 + "R_UBICOM32_GOT_LO7_CALLI",
282 + "R_UBICOM32_FUNCDESC_VALUE",
283 + "R_UBICOM32_FUNCDESC",
285 + [200] "R_UBICOM32_GNU_VTINHERIT" , "R_UBICOM32_GNU_VTENTRY"
289 +++ b/ldso/ldso/ubicom32/dl-inlines.h
291 + /* Copyright (C) 2003, 2004 Red Hat, Inc.
292 + Contributed by Alexandre Oliva <aoliva@redhat.com>
294 +This file is part of uClibc.
296 +uClibc is free software; you can redistribute it and/or modify it
297 +under the terms of the GNU Lesser General Public License as
298 +published by the Free Software Foundation; either version 2.1 of the
299 +License, or (at your option) any later version.
301 +uClibc is distributed in the hope that it will be useful, but WITHOUT
302 +ANY WARRANTY; without even the implied warranty of
303 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
304 +Library General Public License for more details.
306 +You should have received a copy of the GNU Lesser General Public
307 +License along with uClibc; see the file COPYING.LIB. If not, write to
308 +the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
311 +//#include <bfin_sram.h>
312 +#define SRAM_TEST(x) 0
314 +# define _dl_assert(expr)
317 +/* Initialize a DL_LOADADDR_TYPE given a got pointer and a complete
319 +static __always_inline void
320 +__dl_init_loadaddr_map (struct elf32_fdpic_loadaddr *loadaddr, Elf32_Addr dl_boot_got_pointer,
321 + struct elf32_fdpic_loadmap *map)
323 + if (map->version != 0)
325 + SEND_EARLY_STDERR ("Invalid loadmap version number\n");
328 + if (map->nsegs == 0)
330 + SEND_EARLY_STDERR ("Invalid segment count in loadmap\n");
333 + loadaddr->got_value = (void*)dl_boot_got_pointer;
334 + loadaddr->map = map;
337 +/* Figure out how many LOAD segments there are in the given headers,
338 + and allocate a block for the load map big enough for them.
339 + got_value will be properly initialized later on, with INIT_GOT. */
340 +static __always_inline int
341 +__dl_init_loadaddr (struct elf32_fdpic_loadaddr *loadaddr, Elf32_Phdr *ppnt,
347 + for (i = 0; i < pcnt; i++)
348 + if (ppnt[i].p_type == PT_LOAD)
351 + loadaddr->got_value = 0;
353 + size = sizeof (struct elf32_fdpic_loadmap)
354 + + sizeof (struct elf32_fdpic_loadseg) * count;
355 + loadaddr->map = _dl_malloc (size);
356 + if (! loadaddr->map)
359 + loadaddr->map->version = 0;
360 + loadaddr->map->nsegs = 0;
365 +#if defined (__SUPPORT_LD_DEBUG__)
366 +extern char *_dl_debug;
367 +extern int _dl_debug_file;
370 +/* Incrementally initialize a load map. */
371 +static __always_inline void
372 +__dl_init_loadaddr_hdr (struct elf32_fdpic_loadaddr loadaddr, void *addr,
373 + Elf32_Phdr *phdr, int maxsegs)
375 + struct elf32_fdpic_loadseg *segdata;
377 + if (loadaddr.map->nsegs == maxsegs)
380 + segdata = &loadaddr.map->segs[loadaddr.map->nsegs++];
381 + segdata->addr = (Elf32_Addr) addr;
382 + segdata->p_vaddr = phdr->p_vaddr;
383 + segdata->p_memsz = phdr->p_memsz;
385 +#if defined (__SUPPORT_LD_DEBUG__)
388 + _dl_dprintf(_dl_debug_file, "%i: mapped %x at %x, size %x\n",
389 + loadaddr.map->nsegs-1,
390 + segdata->p_vaddr, segdata->addr, segdata->p_memsz);
395 +static __always_inline void __dl_loadaddr_unmap
396 +(struct elf32_fdpic_loadaddr loadaddr, struct funcdesc_ht *funcdesc_ht);
398 +/* Figure out whether the given address is in one of the mapped
400 +static __always_inline int
401 +__dl_addr_in_loadaddr (void *p, struct elf32_fdpic_loadaddr loadaddr)
403 + struct elf32_fdpic_loadmap *map = loadaddr.map;
406 + for (c = 0; c < map->nsegs; c++)
407 + if ((void*)map->segs[c].addr <= p
408 + && (char*)p < (char*)map->segs[c].addr + map->segs[c].p_memsz)
414 +static __always_inline void * _dl_funcdesc_for (void *entry_point, void *got_value);
416 +/* The hashcode handling code below is heavily inspired in libiberty's
417 + hashtab code, but with most adaptation points and support for
418 + deleting elements removed.
420 + Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
421 + Contributed by Vladimir Makarov (vmakarov@cygnus.com). */
423 +static __always_inline unsigned long
424 +higher_prime_number (unsigned long n)
426 + /* These are primes that are near, but slightly smaller than, a
428 + static const unsigned long primes[] = {
430 + (unsigned long) 13,
431 + (unsigned long) 31,
432 + (unsigned long) 61,
433 + (unsigned long) 127,
434 + (unsigned long) 251,
435 + (unsigned long) 509,
436 + (unsigned long) 1021,
437 + (unsigned long) 2039,
438 + (unsigned long) 4093,
439 + (unsigned long) 8191,
440 + (unsigned long) 16381,
441 + (unsigned long) 32749,
442 + (unsigned long) 65521,
443 + (unsigned long) 131071,
444 + (unsigned long) 262139,
445 + (unsigned long) 524287,
446 + (unsigned long) 1048573,
447 + (unsigned long) 2097143,
448 + (unsigned long) 4194301,
449 + (unsigned long) 8388593,
450 + (unsigned long) 16777213,
451 + (unsigned long) 33554393,
452 + (unsigned long) 67108859,
453 + (unsigned long) 134217689,
454 + (unsigned long) 268435399,
455 + (unsigned long) 536870909,
456 + (unsigned long) 1073741789,
457 + (unsigned long) 2147483647,
459 + ((unsigned long) 2147483647) + ((unsigned long) 2147483644),
462 + const unsigned long *low = &primes[0];
463 + const unsigned long *high = &primes[sizeof(primes) / sizeof(primes[0])];
465 + while (low != high)
467 + const unsigned long *mid = low + (high - low) / 2;
475 + /* If we've run out of primes, abort. */
478 + fprintf (stderr, "Cannot find prime bigger than %lu\n", n);
488 + /* Table itself. */
489 + struct funcdesc_value **entries;
491 + /* Current size (in entries) of the hash table */
494 + /* Current number of elements. */
498 +static __always_inline int
499 +hash_pointer (const void *p)
501 + return (int) ((long)p >> 3);
504 +static __always_inline struct funcdesc_ht *
507 + struct funcdesc_ht *ht = _dl_malloc (sizeof (struct funcdesc_ht));
512 + ht->entries = _dl_malloc (sizeof (struct funcdesc_ht_value *) * ht->size);
516 + ht->n_elements = 0;
518 + _dl_memset (ht->entries, 0, sizeof (struct funcdesc_ht_value *) * ht->size);
523 +/* This is only called from _dl_loadaddr_unmap, so it's safe to call
524 + _dl_free(). See the discussion below. */
525 +static __always_inline void
526 +htab_delete (struct funcdesc_ht *htab)
530 + for (i = htab->size - 1; i >= 0; i--)
531 + if (htab->entries[i])
532 + _dl_free (htab->entries[i]);
534 + _dl_free (htab->entries);
538 +/* Similar to htab_find_slot, but without several unwanted side effects:
539 + - Does not call htab->eq_f when it finds an existing entry.
540 + - Does not change the count of elements/searches/collisions in the
542 + This function also assumes there are no deleted entries in the table.
543 + HASH is the hash value for the element to be inserted. */
545 +static __always_inline struct funcdesc_value **
546 +find_empty_slot_for_expand (struct funcdesc_ht *htab, int hash)
548 + size_t size = htab->size;
549 + unsigned int index = hash % size;
550 + struct funcdesc_value **slot = htab->entries + index;
556 + hash2 = 1 + hash % (size - 2);
563 + slot = htab->entries + index;
569 +/* The following function changes size of memory allocated for the
570 + entries and repeatedly inserts the table elements. The occupancy
571 + of the table after the call will be about 50%. Naturally the hash
572 + table must already exist. Remember also that the place of the
573 + table entries is changed. If memory allocation failures are allowed,
574 + this function will return zero, indicating that the table could not be
575 + expanded. If all goes well, it will return a non-zero value. */
577 +static __always_inline int
578 +htab_expand (struct funcdesc_ht *htab)
580 + struct funcdesc_value **oentries;
581 + struct funcdesc_value **olimit;
582 + struct funcdesc_value **p;
583 + struct funcdesc_value **nentries;
586 + oentries = htab->entries;
587 + olimit = oentries + htab->size;
589 + /* Resize only when table after removal of unused elements is either
590 + too full or too empty. */
591 + if (htab->n_elements * 2 > htab->size)
592 + nsize = higher_prime_number (htab->n_elements * 2);
594 + nsize = htab->size;
596 + nentries = _dl_malloc (sizeof (struct funcdesc_value *) * nsize);
597 + _dl_memset (nentries, 0, sizeof (struct funcdesc_value *) * nsize);
598 + if (nentries == NULL)
600 + htab->entries = nentries;
601 + htab->size = nsize;
607 + *find_empty_slot_for_expand (htab, hash_pointer ((*p)->entry_point))
612 + while (p < olimit);
614 +#if 0 /* We can't tell whether this was allocated by the _dl_malloc()
615 + built into ld.so or malloc() in the main executable or libc,
616 + and calling free() for something that wasn't malloc()ed could
617 + do Very Bad Things (TM). Take the conservative approach
618 + here, potentially wasting as much memory as actually used by
619 + the hash table, even if multiple growths occur. That's not
620 + so bad as to require some overengineered solution that would
621 + enable us to keep track of how it was allocated. */
622 + _dl_free (oentries);
627 +/* This function searches for a hash table slot containing an entry
628 + equal to the given element. To delete an entry, call this with
629 + INSERT = 0, then call htab_clear_slot on the slot returned (possibly
630 + after doing some checks). To insert an entry, call this with
631 + INSERT = 1, then write the value you want into the returned slot.
632 + When inserting an entry, NULL may be returned if memory allocation
635 +static __always_inline struct funcdesc_value **
636 +htab_find_slot (struct funcdesc_ht *htab, void *ptr, int insert)
638 + unsigned int index;
641 + struct funcdesc_value **entry;
643 + if (htab->size * 3 <= htab->n_elements * 4
644 + && htab_expand (htab) == 0)
647 + hash = hash_pointer (ptr);
650 + index = hash % size;
652 + entry = &htab->entries[index];
655 + else if ((*entry)->entry_point == ptr)
658 + hash2 = 1 + hash % (size - 2);
665 + entry = &htab->entries[index];
668 + else if ((*entry)->entry_point == ptr)
676 + htab->n_elements++;
681 +_dl_funcdesc_for (void *entry_point, void *got_value)
683 + struct elf_resolve *tpnt = ((void**)got_value)[2];
684 + struct funcdesc_ht *ht = tpnt->funcdesc_ht;
685 + struct funcdesc_value **entry;
687 + _dl_assert (got_value == tpnt->loadaddr.got_value);
691 + ht = htab_create ();
694 + tpnt->funcdesc_ht = ht;
697 + entry = htab_find_slot (ht, entry_point, 1);
700 + _dl_assert ((*entry)->entry_point == entry_point);
701 + return _dl_stabilize_funcdesc (*entry);
704 + *entry = _dl_malloc (sizeof (struct funcdesc_value));
705 + (*entry)->entry_point = entry_point;
706 + (*entry)->got_value = got_value;
708 + return _dl_stabilize_funcdesc (*entry);
711 +static __always_inline void const *
712 +_dl_lookup_address (void const *address)
714 + struct elf_resolve *rpnt;
715 + struct funcdesc_value const *fd;
717 + /* Make sure we don't make assumptions about its alignment. */
718 + __asm__ ("" : "+r" (address));
720 + if ((Elf32_Addr)address & 7)
721 + /* It's not a function descriptor. */
724 + fd = (struct funcdesc_value const *)address;
726 + for (rpnt = _dl_loaded_modules; rpnt; rpnt = rpnt->next)
728 + if (! rpnt->funcdesc_ht)
731 + if (fd->got_value != rpnt->loadaddr.got_value)
734 + address = htab_find_slot (rpnt->funcdesc_ht, (void*)fd->entry_point, 0);
736 + if (address && *(struct funcdesc_value *const*)address == fd)
738 + address = (*(struct funcdesc_value *const*)address)->entry_point;
749 +__dl_loadaddr_unmap (struct elf32_fdpic_loadaddr loadaddr,
750 + struct funcdesc_ht *funcdesc_ht)
754 + for (i = 0; i < loadaddr.map->nsegs; i++)
756 + struct elf32_fdpic_loadseg *segdata;
758 + segdata = loadaddr.map->segs + i;
762 + A more cleaner way is to add type for struct elf32_fdpic_loadseg,
763 + and release the memory according to the type.
764 + Currently, we hardcode the memory address of L1 SRAM. */
765 + if ((segdata->addr & 0xff800000) == 0xff800000)
767 + _dl_sram_free ((void *)segdata->addr);
771 + offs = (segdata->p_vaddr & ADDR_ALIGN);
772 + _dl_munmap ((void*)segdata->addr - offs,
773 + segdata->p_memsz + offs);
775 + /* _dl_unmap is only called for dlopen()ed libraries, for which
776 + calling free() is safe, or before we've completed the initial
777 + relocation, in which case calling free() is probably pointless,
779 + _dl_free (loadaddr.map);
781 + htab_delete (funcdesc_ht);
784 +#if 0 /* XXX TODO will look at enabling this if we decide to add support for OCM
786 +// OLD BLACKFIN CODE
787 +static __always_inline int
788 +__dl_is_special_segment (Elf32_Ehdr *epnt,
791 + if (ppnt->p_type != PT_LOAD)
794 + if ((epnt->e_flags & EF_BFIN_CODE_IN_L1)
795 + && !(ppnt->p_flags & PF_W)
796 + && (ppnt->p_flags & PF_X))
799 + if ((epnt->e_flags & EF_BFIN_DATA_IN_L1)
800 + && (ppnt->p_flags & PF_W)
801 + && !(ppnt->p_flags & PF_X))
804 + /* 0xff700000, 0xff800000, 0xff900000 and 0xffa00000 are also used in
805 + GNU ld and linux kernel. They need to be keep synchronized. */
806 + if (ppnt->p_vaddr == 0xff700000
807 + || ppnt->p_vaddr == 0xff800000
808 + || ppnt->p_vaddr == 0xff900000
809 + || ppnt->p_vaddr == 0xffa00000)
815 +static __always_inline char *
816 +__dl_map_segment (Elf32_Ehdr *epnt,
821 + char *status, *tryaddr, *l1addr;
825 + if (((epnt->e_flags & EF_BFIN_CODE_IN_L1) || ppnt->p_vaddr == 0xffa00000)
826 + && !(ppnt->p_flags & PF_W)
827 + && (ppnt->p_flags & PF_X)) {
828 + status = (char *) _dl_mmap
830 + size = (ppnt->p_vaddr & ADDR_ALIGN) + ppnt->p_filesz,
831 + LXFLAGS(ppnt->p_flags),
832 + flags | MAP_EXECUTABLE | MAP_DENYWRITE,
833 + infile, ppnt->p_offset & OFFS_ALIGN);
834 + if (_dl_mmap_check_error(status)
835 + || (tryaddr && tryaddr != status))
837 + l1addr = (char *) _dl_sram_alloc (ppnt->p_filesz, L1_INST_SRAM);
838 + if (l1addr != NULL)
839 + _dl_dma_memcpy (l1addr, status + (ppnt->p_vaddr & ADDR_ALIGN), ppnt->p_filesz);
840 + _dl_munmap (status, size);
841 + if (l1addr == NULL)
842 + _dl_dprintf(2, "%s:%i: L1 allocation failed\n", _dl_progname, __LINE__);
846 + if (((epnt->e_flags & EF_BFIN_DATA_IN_L1)
847 + || ppnt->p_vaddr == 0xff700000
848 + || ppnt->p_vaddr == 0xff800000
849 + || ppnt->p_vaddr == 0xff900000)
850 + && (ppnt->p_flags & PF_W)
851 + && !(ppnt->p_flags & PF_X)) {
852 + if (ppnt->p_vaddr == 0xff800000)
853 + l1addr = (char *) _dl_sram_alloc (ppnt->p_memsz, L1_DATA_A_SRAM);
854 + else if (ppnt->p_vaddr == 0xff900000)
855 + l1addr = (char *) _dl_sram_alloc (ppnt->p_memsz, L1_DATA_B_SRAM);
857 + l1addr = (char *) _dl_sram_alloc (ppnt->p_memsz, L1_DATA_SRAM);
858 + if (l1addr == NULL) {
859 + _dl_dprintf(2, "%s:%i: L1 allocation failed\n", _dl_progname, __LINE__);
861 + if (_DL_PREAD (infile, l1addr, ppnt->p_filesz, ppnt->p_offset) != ppnt->p_filesz) {
862 + _dl_sram_free (l1addr);
865 + if (ppnt->p_filesz < ppnt->p_memsz)
866 + _dl_memset (l1addr + ppnt->p_filesz, 0, ppnt->p_memsz - ppnt->p_filesz);
874 +++ b/ldso/ldso/ubicom32/dl-startup.h
877 + Copyright (C) 2009 Ubicom, Inc.
878 + Copyright (C) 2003 Red Hat, Inc.
879 + Contributed by Alexandre Oliva <aoliva@redhat.com>
881 +This file is part of uClibc.
883 +uClibc is free software; you can redistribute it and/or modify it
884 +under the terms of the GNU Lesser General Public License as
885 +published by the Free Software Foundation; either version 2.1 of the
886 +License, or (at your option) any later version.
888 +uClibc is distributed in the hope that it will be useful, but WITHOUT
889 +ANY WARRANTY; without even the implied warranty of
890 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
891 +Library General Public License for more details.
893 +You should have received a copy of the GNU Lesser General Public
894 +License along with uClibc; see the file COPYING.LIB. If not, write to
895 +the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
898 +/* Any assembly language/system dependent hacks needed to setup
899 + * boot1.c so it will work as expected and cope with whatever platform
900 + * specific wierdness is needed for this architecture.
902 + * We override the default _dl_boot function, and replace it with a
903 + * bit of asm. Then call the real _dl_boot function, which is now
904 + * named _dl_boot2. */
906 +/* At program start-up, p0 contains a pointer to a
907 + elf32_fdpic_loadmap that describes how the executable was loaded
908 + into memory. p1 contains a pointer to the interpreter (our!)
909 + loadmap, if there is an interpreter, or 0 if we're being run as an
910 + executable. p2 holds a pointer to the interpreter's dynamic
911 + section, if there is an interpreter, or to the executable's dynamic
912 + section, otherwise. If the executable is not dynamic, gr18 is 0.
914 + We rely on the fact that the linker adds a pointer to the
915 + _GLOBAL_OFFSET_TABLE_ as the last ROFIXUP entry, and that
916 + __self_reloc returns the relocated pointer to us, so that we can
917 + use this value to initialize the PIC register. */
921 + * _dl_boot is the entry point for ldso.
923 + * The kernel leaves the main apps args on the stack (positive offsets), and
924 + * communicates the load maps as follows
926 + * - d1 is set to the exec_map_addr (struct elf32_fdpic_loadmap *), which is the
927 + * current state of the mapped application.
929 + * - d2 is set to interp_map_addr (struct elf32_fdpic_loadmap *), which is use
930 + * by ldso to relocate itself.
932 + * - d3 is dynamic_addr which as far as I can tell is the stack pointer.
934 + * - a1 is set to zero and will later be initialised to ldso _dl_fini funcdesc
939 + " .global _start \n\t"
940 + " .type _start,@function \n\t"
943 + * Jump to .Lcall storing the location .Lcall in a5
945 + " call a5, .Lcall \n\t"
948 + * Reserve and Push inputs to stack.
949 + * 32 byte stack layout as follows
950 + * offset 0 exec_map_addr
951 + * 4 interp_map_addr
954 + * 16 dl_main_funcdesc structure for _dl_boot
955 + * (12 bytes sizeof funcdesc_value)
957 + * 32 start of &original stack
959 + " pdec sp, 32(sp); reserve stack space \n\t"
960 + " move.4 0(sp), d1 ; exec_map_addr \n\t"
961 + " move.4 4(sp), d2 ; interp_map_addr \n\t"
962 + " move.4 8(sp), d3; dynamic_addr \n\t"
965 + * Load linker version of .Lcall in to d0
967 + " moveai a3, #%hi(.Lcall) \n\t"
968 + " lea.1 d0, %lo(.Lcall)(a3) \n\t"
971 + * Determine the offset from loaded .Lcall and put it in d0.
973 + " sub.4 d0, a5, d0 \n\t"
976 + * Load linker version of __ROFIXUP_LIST__ and __ROFIXUP_END__ in to d1
979 + " moveai a3, #%hi(__ROFIXUP_LIST__) \n\t"
980 + " lea.1 d1, %lo(__ROFIXUP_LIST__)(a3) \n\t"
981 + " moveai a3, #%hi(__ROFIXUP_END__) \n\t"
982 + " lea.1 d2, %lo(__ROFIXUP_END__)(a3) \n\t"
984 + * Use offset determined above to find the loaded versions.
986 + " add.4 d1, d1, d0 \n\t"
987 + " add.4 d2, d2, d0 \n\t"
990 + * Load interp_map_addr into d0, if interp_map_addr is null use
993 + " move.4 d0, 4(sp) ; load interp_map_addr \n\t"
994 + " cmpi d0, #0 \n\t"
996 + " move.4 d0, 0(sp) ; load exec_map_addr \n\t"
999 + * call __self_reloc(map, void ***p, void ***e)
1000 + * it returns the the GOT in d0.
1002 + "1: call a5, __self_reloc ; returns a0 in d0 \n\t"
1003 + " move.4 a0, d0 ; set GOT \n\t"
1004 + " move.4 a2, d0 ; save GOT \n\t"
1007 + * now setup to call
1008 + * _dl_start (Elf32_Addr dl_boot_got_pointer, (d0)
1009 + * struct elf32_fdpic_loadmap *dl_boot_progmap, (d1)
1010 + * struct elf32_fdpic_loadmap *dl_boot_ldsomap, (d2)
1011 + * Elf32_Dyn *dl_boot_ldso_dyn_pointer, (d3)
1012 + * struct funcdesc_value *dl_main_funcdesc, (d4)
1013 + * unsigned long args (d5)
1015 + * NOTE: for dl_main_funcdesc we reserved space on the stack for this
1018 + " move.4 d1, 0(sp) ; d1 = exec_map_addr \n\t"
1019 + " move.4 d2, 4(sp) ; d2 = interp_map_addr \n\t"
1020 + " move.4 d3, 8(sp) ; d3 = dynamic_addr \n\t"
1021 + " lea.1 d4, 16(sp) ; d4 = &dl_main_funcdesc \n\t"
1022 + " lea.1 d5, 32(sp) ; d5 = original stack ptr (args)\n\t"
1023 + " call a5, _dl_start \n\t"
1026 + * Setup to call the main entry point, starting with passing our FINI
1027 + * ptr() to the user in a1 (remember we saved the got in a2)
1029 + " movei d15, #%got_funcdesc_lo(_dl_fini) \n\t"
1030 + " move.4 a1, (a2, d15) \n\t"
1033 + * restore the load map from the kernel.
1035 + " move.4 d1, 0(sp) ; restore exec_map_addr \n\t"
1036 + " move.4 d2, 4(sp) ; restore interp_map_addr \n\t"
1037 + " move.4 d3, 8(sp) ; restore dynamic_addr \n\t"
1040 + * _dl_start returned the main apps entry point in dl_main_funcdesc,
1041 + * load that information now.
1043 + " move.4 a5, 16(sp) ; a5 = dl_main_funcdesc.entry_point \n\t"
1044 + " move.4 a0, 20(sp) ; a0 = dl_main_funcdesc.got_value \n\t"
1045 + " lea.1 sp, 32(sp); restore original stack ptr (args) \n\t"
1046 + " calli a5, 0(a5) \n\t"
1047 + " bkpt -1; should never get here \n\t"
1048 + " .size _start, . - _start \n\t"
1052 +#define DL_START(X) \
1053 +static void __attribute__ ((used)) \
1054 +_dl_start (Elf32_Addr dl_boot_got_pointer, \
1055 + struct elf32_fdpic_loadmap *dl_boot_progmap, \
1056 + struct elf32_fdpic_loadmap *dl_boot_ldsomap, \
1057 + Elf32_Dyn *dl_boot_ldso_dyn_pointer, \
1058 + struct funcdesc_value *dl_main_funcdesc, \
1061 +struct elf32_fdpic_loadmap;
1064 + * Get a pointer to the argv array. On many platforms this can be just
1065 + * the address if the first argument, on other platforms we need to
1066 + * do something a little more subtle here.
1068 +#define GET_ARGV(ARGVP, ARGS) ARGVP = (((unsigned long*) ARGS) + 1)
1071 + * Here is a macro to perform a relocation. This is only used when
1072 + * bootstrapping the dynamic loader. RELP is the relocation that we
1073 + * are performing, REL is the pointer to the address we are relocating.
1074 + * SYMBOL is the symbol involved in the relocation, and LOAD is the
1077 +#define PERFORM_BOOTSTRAP_RELOC(RELP,REL,SYMBOL,LOAD,SYMTAB) \
1078 + switch(ELF32_R_TYPE((RELP)->r_info)){ \
1079 + case R_UBICOM32_32: \
1080 + *(REL) += (SYMBOL); \
1082 + case R_UBICOM32_FUNCDESC_VALUE: \
1084 + struct funcdesc_value fv = { \
1085 + (void*)((SYMBOL) + *(REL)), \
1086 + (LOAD).got_value \
1088 + *(struct funcdesc_value volatile *)(REL) = fv; \
1096 + * Transfer control to the user's application, once the dynamic loader
1097 + * is done. We return the address of the function's entry point to
1098 + * _dl_boot, see boot1_arch.h.
1100 +#define START() do { \
1101 + struct elf_resolve *exec_mod = _dl_loaded_modules; \
1102 + dl_main_funcdesc->entry_point = _dl_elf_main; \
1103 + while (exec_mod->libtype != elf_executable) \
1104 + exec_mod = exec_mod->next; \
1105 + dl_main_funcdesc->got_value = exec_mod->loadaddr.got_value; \
1109 +++ b/ldso/ldso/ubicom32/dl-syscalls.h
1111 +/* Copyright (C) 2003, 2004 Red Hat, Inc.
1112 + Contributed by Alexandre Oliva <aoliva@redhat.com>
1114 +This file is part of uClibc.
1116 +uClibc is free software; you can redistribute it and/or modify it
1117 +under the terms of the GNU Lesser General Public License as
1118 +published by the Free Software Foundation; either version 2.1 of the
1119 +License, or (at your option) any later version.
1121 +uClibc is distributed in the hope that it will be useful, but WITHOUT
1122 +ANY WARRANTY; without even the implied warranty of
1123 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1124 +Library General Public License for more details.
1126 +You should have received a copy of the GNU Lesser General Public
1127 +License along with uClibc; see the file COPYING.LIB. If not, write to
1128 +the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
1131 +/* We can't use the real errno in ldso, since it has not yet
1132 + * been dynamicly linked in yet. */
1133 +#include "sys/syscall.h"
1134 +extern int _dl_errno;
1136 +#define __set_errno(X) {(_dl_errno) = (X);}
1137 +#include <sys/mman.h>
1139 +/* The code below is extracted from libc/sysdeps/linux/frv/_mmap.c */
1141 +#if defined(DYNAMIC_LOADER_IN_SIMULATOR) && DYNAMIC_LOADER_IN_SIMULATOR
1142 +#define __NR___syscall_mmap2 __NR_mmap2
1143 +static __inline__ _syscall6(__ptr_t, __syscall_mmap2, __ptr_t, addr,
1144 + size_t, len, int, prot, int, flags, int, fd, off_t, offset);
1146 +/* Make sure we don't get another definition of _dl_mmap from the
1147 + machine-independent code. */
1151 +/* This is always 12, even on architectures where PAGE_SHIFT != 12. */
1152 +# ifndef MMAP2_PAGE_SHIFT
1153 +# define MMAP2_PAGE_SHIFT 12
1156 +#include <bits/uClibc_page.h> /* for PAGE_SIZE */
1157 +static __always_inline void *_dl_memset(void*,int,size_t);
1158 +static __always_inline ssize_t _dl_pread(int fd, void *buf, size_t count, off_t offset);
1161 +_dl_mmap(__ptr_t addr, size_t len, int prot, int flags, int fd, __off_t offset)
1163 + size_t plen = (len + PAGE_SIZE - 1) & -PAGE_SIZE;
1165 +/* This is a hack to enable the dynamic loader to run within a
1166 + simulator that doesn't support mmap, with a number of very ugly
1167 + tricks. Also, it's not as useful as it sounds, since only dynamic
1168 + executables without DT_NEEDED dependencies can be run. AFAIK, they
1169 + can only be created with -pie. This trick suffices to enable the
1170 + dynamic loader to obtain a blank page that it maps early in the
1172 + if ((flags & MAP_FIXED) == 0)
1174 + void *_dl_mmap_base = 0;
1177 + if (! _dl_mmap_base)
1180 + __asm__ ("mov sp, %0" : "=r" (stack));
1181 + _dl_mmap_base = (void *)(((long)stack + 2 * PAGE_SIZE) & -PAGE_SIZE);
1183 + if (((void **)_dl_mmap_base)[0] == _dl_mmap_base
1184 + && ((void **)_dl_mmap_base)[1023] == _dl_mmap_base
1185 + && (((void **)_dl_mmap_base)[177]
1186 + == ((void **)_dl_mmap_base)[771]))
1188 + while (((void**)_dl_mmap_base)[177])
1190 + _dl_mmap_base = ((void**)_dl_mmap_base)[177];
1191 + if (!(((void **)_dl_mmap_base)[0] == _dl_mmap_base
1192 + && ((void **)_dl_mmap_base)[1023] == _dl_mmap_base
1193 + && (((void **)_dl_mmap_base)[177]
1194 + == ((void**)_dl_mmap_base)[771])))
1201 + for (i = 0; i < (int)PAGE_SIZE; i++)
1202 + if (*(char*)(_dl_mmap_base + i))
1204 + if (i != PAGE_SIZE)
1206 + _dl_mmap_base = (void*)((long)_dl_mmap_base + PAGE_SIZE);
1209 + ((void**)_dl_mmap_base)[-1] =
1210 + ((void**)_dl_mmap_base)[0] =
1211 + ((void**)_dl_mmap_base)[1023] =
1216 + if (_dl_mmap_base)
1218 + if (!(((void **)_dl_mmap_base)[0] == _dl_mmap_base
1219 + && ((void **)_dl_mmap_base)[1023] == _dl_mmap_base
1220 + && (((void **)_dl_mmap_base)[177]
1221 + == ((void**)_dl_mmap_base)[771])))
1223 + ret = (__ptr_t)((char*)_dl_mmap_base + PAGE_SIZE);
1225 + ((void**)_dl_mmap_base)[177] =
1226 + ((void**)_dl_mmap_base)[771] =
1227 + (char*)_dl_mmap_base + plen + PAGE_SIZE;
1228 + ((void**)_dl_mmap_base)[0] =
1229 + ((void**)_dl_mmap_base)[1023] =
1233 + if ((flags & MAP_ANONYMOUS) != 0)
1235 + _dl_memset (ret, 0, plen);
1239 + flags |= MAP_FIXED;
1242 + if (offset & ((1 << MMAP2_PAGE_SHIFT) - 1)) {
1244 + __set_errno (EINVAL);
1246 + return MAP_FAILED;
1248 + if ((flags & MAP_FIXED) != 0)
1250 + if (_dl_pread(fd, addr, len, offset) != (ssize_t)len)
1251 + return (void*)MAP_FAILED;
1253 + _dl_memset (addr + len, 0, plen - len);
1256 + return(__syscall_mmap2(addr, len, prot, flags, fd, (off_t) (offset >> MMAP2_PAGE_SHIFT)));
1260 +#ifdef __NR_pread64
1261 +#ifdef DYNAMIC_LOADER_IN_SIMULATOR
1262 +#include <unistd.h>
1264 +#define __NR___syscall_lseek __NR_lseek
1265 +static __always_inline unsigned long _dl_read(int fd, const void *buf, unsigned long count);
1267 +static __always_inline _syscall3(__off_t, __syscall_lseek, int, fd, __off_t, offset,
1269 +static __always_inline ssize_t
1270 +_dl_pread(int fd, void *buf, size_t count, off_t offset)
1272 + __off_t orig = __syscall_lseek (fd, 0, SEEK_CUR);
1278 + if (__syscall_lseek (fd, offset, SEEK_SET) != offset)
1281 + ret = _dl_read (fd, buf, count);
1283 + if (__syscall_lseek (fd, orig, SEEK_SET) != orig)
1289 +#define __NR___syscall_pread __NR_pread64
1290 +static __always_inline _syscall5(ssize_t, __syscall_pread, int, fd, void *, buf,
1291 + size_t, count, off_t, offset_hi, off_t, offset_lo);
1293 +static __always_inline ssize_t
1294 +_dl_pread(int fd, void *buf, size_t count, off_t offset)
1296 + return(__syscall_pread(fd,buf,count,__LONG_LONG_PAIR (offset >> 31, offset)));
1301 +#ifdef __NR_sram_alloc
1302 +#define __NR__dl_sram_alloc __NR_sram_alloc
1303 +static __always_inline _syscall2(__ptr_t, _dl_sram_alloc,
1304 + size_t, len, unsigned long, flags);
1307 +#ifdef __NR_sram_free
1308 +#define __NR__dl_sram_free __NR_sram_free
1309 +static __always_inline _syscall1(int, _dl_sram_free, __ptr_t, addr);
1312 +#ifdef __NR_dma_memcpy
1313 +#define __NR__dl_dma_memcpy __NR_dma_memcpy
1314 +static __always_inline _syscall3(__ptr_t, _dl_dma_memcpy,
1315 + __ptr_t, dest, __ptr_t, src, size_t, len);
1318 +++ b/ldso/ldso/ubicom32/dl-sysdep.h
1320 + /* Copyright (C) 2003, 2004 Red Hat, Inc.
1321 + Contributed by Alexandre Oliva <aoliva@redhat.com>
1322 + Based on ../i386/dl-sysdep.h
1324 +This file is part of uClibc.
1326 +uClibc is free software; you can redistribute it and/or modify it
1327 +under the terms of the GNU Lesser General Public License as
1328 +published by the Free Software Foundation; either version 2.1 of the
1329 +License, or (at your option) any later version.
1331 +uClibc is distributed in the hope that it will be useful, but WITHOUT
1332 +ANY WARRANTY; without even the implied warranty of
1333 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1334 +Library General Public License for more details.
1336 +You should have received a copy of the GNU Lesser General Public
1337 +License along with uClibc; see the file COPYING.LIB. If not, write to
1338 +the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
1342 + * Various assembly language/system dependent hacks that are required
1343 + * so that we can minimize the amount of platform specific code.
1347 + * Define this if the system uses RELOCA.
1349 +#undef ELF_USES_RELOCA
1351 +/* JMPREL relocs are inside the DT_RELA table. */
1352 +#define ELF_MACHINE_PLTREL_OVERLAP
1354 +#define DL_NO_COPY_RELOCS
1356 +#define HAVE_DL_INLINES_H
1359 + * Initialization sequence for a GOT. Copy the resolver function
1360 + * descriptor and the pointer to the elf_resolve/link_map data
1361 + * structure. Initialize the got_value in the module while at that.
1363 +#define INIT_GOT(GOT_BASE,MODULE) \
1365 + (MODULE)->loadaddr.got_value = (GOT_BASE); \
1366 + GOT_BASE[0] = ((unsigned long *)&_dl_linux_resolve)[0]; \
1367 + GOT_BASE[1] = ((unsigned long *)&_dl_linux_resolve)[1]; \
1368 + GOT_BASE[2] = (unsigned long) MODULE; \
1371 +/* Here we define the magic numbers that this dynamic loader should accept */
1372 +#define MAGIC1 EM_UBICOM32
1375 +/* Used for error messages */
1376 +#define ELF_TARGET "UBICOM32"
1378 +struct elf_resolve;
1380 +struct funcdesc_value
1382 + void *entry_point;
1384 +/*int relocation; not sure if this required, but it does exist */
1387 +extern int _dl_linux_resolve(void) __attribute__((__visibility__("hidden")));
1388 +extern struct funcdesc_value volatile *__attribute__((__visibility__("hidden")))
1389 + _dl_linux_resolver (struct elf_resolve *tpnt, int reloc_entry);
1391 +/* 4KiB page alignment. Should perhaps be made dynamic using
1392 + getpagesize(), based on AT_PAGESZ from auxvt? */
1393 +#define PAGE_ALIGN 0xfffff000
1394 +#define ADDR_ALIGN 0xfff
1395 +#define OFFS_ALIGN 0x7ffff000
1397 +struct funcdesc_ht;
1400 + * This asm does a quick relcation of string S (which is stored in the text
1401 + * section as thats all we can use
1403 +#undef SEND_EARLY_STDERR
1404 +#define SEND_EARLY_STDERR(S) \
1406 + static const char __attribute__((section(".text"))) __s[] = (S); \
1407 + const char *__p, *__scratch; \
1409 + " call a3, 1f; \n\t" \
1410 + "1: movei %0, #%%got_lo(1b) \n\t" \
1411 + " move.4 %0, (%3, %0) \n\t" \
1412 + " sub.4 %1, a3, %0; \n\t" \
1413 + " add.4 %1, %1, %2; \n\t" \
1414 + : "=&d" (__scratch), "=&d" (__p) \
1415 + : "d" (__s), "a" (dl_boot_got_pointer) \
1416 + : "a3", "a4", "d15"); \
1417 + SEND_STDERR (__p); \
1419 + for (__t = 0; __t < 0x100000; __t++) __asm__ __volatile__ (""); } \
1422 +#define DL_LOADADDR_TYPE struct elf32_fdpic_loadaddr
1424 +#define DL_RELOC_ADDR(LOADADDR, ADDR) \
1425 + ((ElfW(Addr))__reloc_pointer ((void*)(ADDR), (LOADADDR).map))
1427 +#define DL_ADDR_TO_FUNC_PTR(ADDR, LOADADDR) \
1428 + ((void(*)(void)) _dl_funcdesc_for ((void*)(ADDR), (LOADADDR).got_value))
1430 +#define _dl_stabilize_funcdesc(val) \
1431 + ({ __asm__ ("" : "+m" (*(val))); (val); })
1433 +#define DL_CALL_FUNC_AT_ADDR(ADDR, LOADADDR, SIGNATURE, ...) \
1434 + ({ struct funcdesc_value fd = { (void*)(ADDR), (LOADADDR).got_value }; \
1435 + void (*pf)(void) = (void*) _dl_stabilize_funcdesc (&fd); \
1436 + (* SIGNATURE pf)(__VA_ARGS__); })
1438 +#define DL_INIT_LOADADDR_BOOT(LOADADDR, BASEADDR) \
1439 + (__dl_init_loadaddr_map (&(LOADADDR), dl_boot_got_pointer, \
1440 + dl_boot_ldsomap ?: dl_boot_progmap))
1442 +#define DL_INIT_LOADADDR_PROG(LOADADDR, BASEADDR) \
1443 + (__dl_init_loadaddr_map (&(LOADADDR), 0, dl_boot_progmap))
1445 +#define DL_INIT_LOADADDR_EXTRA_DECLS \
1446 + int dl_init_loadaddr_load_count;
1447 +#define DL_INIT_LOADADDR(LOADADDR, BASEADDR, PHDR, PHDRCNT) \
1448 + (dl_init_loadaddr_load_count = \
1449 + __dl_init_loadaddr (&(LOADADDR), (PHDR), (PHDRCNT)))
1450 +#define DL_INIT_LOADADDR_HDR(LOADADDR, ADDR, PHDR) \
1451 + (__dl_init_loadaddr_hdr ((LOADADDR), (ADDR), (PHDR), \
1452 + dl_init_loadaddr_load_count))
1453 +#define DL_LOADADDR_UNMAP(LOADADDR, LEN) \
1454 + (__dl_loadaddr_unmap ((LOADADDR), (NULL)))
1455 +#define DL_LIB_UNMAP(LIB, LEN) \
1456 + (__dl_loadaddr_unmap ((LIB)->loadaddr, (LIB)->funcdesc_ht))
1457 +#define DL_LOADADDR_BASE(LOADADDR) \
1458 + ((LOADADDR).got_value)
1460 +/* This is called from dladdr(), such that we map a function
1461 + descriptor's address to the function's entry point before trying to
1462 + find in which library it's defined. */
1463 +#define DL_LOOKUP_ADDRESS(ADDRESS) (_dl_lookup_address (ADDRESS))
1465 +#define DL_ADDR_IN_LOADADDR(ADDR, TPNT, TFROM) \
1466 + (! (TFROM) && __dl_addr_in_loadaddr ((void*)(ADDR), (TPNT)->loadaddr))
1469 + * Compute the GOT address. On several platforms, we use assembly
1470 + * here. on FR-V FDPIC, there's no way to compute the GOT address,
1471 + * since the offset between text and data is not fixed, so we arrange
1472 + * for the assembly _dl_boot to pass this value as an argument to
1474 +#define DL_BOOT_COMPUTE_GOT(got) ((got) = dl_boot_got_pointer)
1476 +#define DL_BOOT_COMPUTE_DYN(dpnt, got, load_addr) \
1477 + ((dpnt) = dl_boot_ldso_dyn_pointer)
1479 +/* We only support loading FDPIC independently-relocatable shared
1480 + libraries. It probably wouldn't be too hard to support loading
1481 + shared libraries that require relocation by the same amount, but we
1482 + don't know that they exist or would be useful, and the dynamic
1483 + loader code could leak the whole-library map unless we keeping a
1484 + bit more state for DL_LOADADDR_UNMAP and DL_LIB_UNMAP, so let's
1485 + keep things simple for now. */
1486 +#define DL_CHECK_LIB_TYPE(epnt, piclib, _dl_progname, libname) \
1489 + if (((epnt)->e_flags & EF_UBICOM32_FDPIC) && ! ((epnt)->e_flags & EF_UBICOM32_PIC)) \
1493 + _dl_internal_error_number = LD_ERROR_NOTDYN; \
1494 + _dl_dprintf(2, "%s: '%s' is not an FDPIC shared library" \
1495 + "\n", (_dl_progname), (libname)); \
1496 + _dl_close(infile); \
1503 +/* We want want to apply all relocations in the interpreter during
1504 + bootstrap. Because of this, we have to skip the interpreter
1505 + relocations in _dl_parse_relocation_information(), see
1507 +#define DL_SKIP_BOOTSTRAP_RELOC(SYMTAB, INDEX, STRTAB) 0
1509 +#ifdef __NR_pread64
1510 +#define _DL_PREAD(FD, BUF, SIZE, OFFSET) \
1511 + (_dl_pread((FD), (BUF), (SIZE), (OFFSET)))
1514 +/* We want to return to dlsym() a function descriptor if the symbol
1515 + turns out to be a function. */
1516 +#define DL_FIND_HASH_VALUE(TPNT, TYPE_CLASS, SYM) \
1517 + (((TYPE_CLASS) & ELF_RTYPE_CLASS_DLSYM) \
1518 + && ELF32_ST_TYPE((SYM)->st_info) == STT_FUNC \
1519 + ? _dl_funcdesc_for ((void *)DL_RELOC_ADDR ((TPNT)->loadaddr, (SYM)->st_value), \
1520 + (TPNT)->loadaddr.got_value) \
1521 + : DL_RELOC_ADDR ((TPNT)->loadaddr, (SYM)->st_value))
1523 +#if 0 /* XXX TODO will look at enabling this if we decide to add support for OCM
1526 +#define DL_IS_SPECIAL_SEGMENT(EPNT, PPNT) \
1527 + __dl_is_special_segment(EPNT, PPNT)
1528 +#define DL_MAP_SEGMENT(EPNT, PPNT, INFILE, FLAGS) \
1529 + __dl_map_segment (EPNT, PPNT, INFILE, FLAGS)
1534 +#define DL_GET_READY_TO_RUN_EXTRA_PARMS \
1535 + , struct elf32_fdpic_loadmap *dl_boot_progmap, Elf32_Addr dl_boot_got_pointer
1536 +#define DL_GET_READY_TO_RUN_EXTRA_ARGS \
1537 + , dl_boot_progmap, dl_boot_got_pointer
1549 +static __inline__ void
1550 +elf_machine_relative (DL_LOADADDR_TYPE load_off, const Elf32_Addr rel_addr,
1551 + Elf32_Word relative_count)
1554 + Elf32_Rel * rpnt = (void *) rel_addr;
1557 + Elf32_Addr *const reloc_addr = (void *) (load_off + (++rpnt)->r_offset);
1559 + *reloc_addr = DL_RELOC_ADDR (load_off, *reloc_addr);
1560 + } while (--relative_count);
1564 +++ b/ldso/ldso/ubicom32/elfinterp.c
1566 +/* Blackfin ELF shared library loader suppport
1567 + Copyright (C) 2003, 2004 Red Hat, Inc.
1568 + Contributed by Alexandre Oliva <aoliva@redhat.com>
1569 + Lots of code copied from ../i386/elfinterp.c, so:
1570 + Copyright (c) 1994-2000 Eric Youngdale, Peter MacDonald,
1571 + David Engel, Hongjiu Lu and Mitch D'Souza
1572 + Copyright (C) 2001-2002, Erik Andersen
1573 + All rights reserved.
1575 +This file is part of uClibc.
1577 +uClibc is free software; you can redistribute it and/or modify it
1578 +under the terms of the GNU Lesser General Public License as
1579 +published by the Free Software Foundation; either version 2.1 of the
1580 +License, or (at your option) any later version.
1582 +uClibc is distributed in the hope that it will be useful, but WITHOUT
1583 +ANY WARRANTY; without even the implied warranty of
1584 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1585 +Library General Public License for more details.
1587 +You should have received a copy of the GNU Lesser General Public
1588 +License along with uClibc; see the file COPYING.LIB. If not, write to
1589 +the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
1592 +#include <sys/cdefs.h> /* __attribute_used__ */
1594 +/* Program to load an ELF binary on a linux system, and run it.
1595 + References to symbols in sharable libraries can be resolved by either
1596 + an ELF sharable library or a linux style of shared library. */
1598 +/* Disclaimer: I have never seen any AT&T source code for SVr4, nor have
1599 + I ever taken any courses on internals. This program was developed using
1600 + information available through the book "UNIX SYSTEM V RELEASE 4,
1601 + Programmers guide: Ansi C and Programming Support Tools", which did
1602 + a more than adequate job of explaining everything required to get this
1604 +extern int _dl_ubicom32_resolve_pending(void) __attribute__((__visibility__("hidden")));
1606 +struct funcdesc_value volatile *__attribute__((__visibility__("hidden")))
1607 +_dl_linux_resolver (struct elf_resolve *tpnt, int reloc_entry)
1610 + ELF_RELOC *this_reloc;
1612 + ElfW(Sym) *symtab;
1615 + struct elf_resolve *new_tpnt;
1617 + struct funcdesc_value funcval;
1618 + struct funcdesc_value volatile *got_entry;
1621 + rel_addr = (char *)tpnt->dynamic_info[DT_JMPREL];
1623 + this_reloc = (ELF_RELOC *)(intptr_t)(rel_addr + reloc_entry);
1624 + reloc_type = ELF_R_TYPE(this_reloc->r_info);
1625 + symtab_index = ELF_R_SYM(this_reloc->r_info);
1627 + symtab = (Elf32_Sym *) tpnt->dynamic_info[DT_SYMTAB];
1628 + strtab = (char *) tpnt->dynamic_info[DT_STRTAB];
1629 + symname= strtab + symtab[symtab_index].st_name;
1631 + if (reloc_type != R_UBICOM32_FUNCDESC_VALUE) {
1632 + _dl_dprintf(2, "%s: Incorrect relocation type in jump relocations\n",
1637 + /* Address of GOT entry fix up */
1638 + got_entry = (struct funcdesc_value *) DL_RELOC_ADDR(tpnt->loadaddr, this_reloc->r_offset);
1640 + /* Get the address to be used to fill in the GOT entry. */
1641 + new_addr = _dl_lookup_hash(symname, tpnt->symbol_scope, NULL, 0, &new_tpnt);
1643 + new_addr = _dl_lookup_hash(symname, NULL, NULL, 0, &new_tpnt);
1645 + _dl_dprintf(2, "%s: can't resolve symbol '%s'\n",
1646 + _dl_progname, symname);
1651 + funcval.entry_point = new_addr;
1652 + funcval.got_value = new_tpnt->loadaddr.got_value;
1654 +#if defined (__SUPPORT_LD_DEBUG__)
1655 + if (_dl_debug_bindings) {
1656 + _dl_dprintf(_dl_debug_file, "\nresolve function: %s", symname);
1657 + if (_dl_debug_detail)
1658 + _dl_dprintf(_dl_debug_file,
1659 + "\n\tpatched (%x,%x) ==> (%x,%x) @ %x\n",
1660 + got_entry->entry_point, got_entry->got_value,
1661 + funcval.entry_point, funcval.got_value,
1664 + if (1 || !_dl_debug_nofixups) {
1665 + got_entry->entry_point = ((unsigned long *)&_dl_ubicom32_resolve_pending)[0];
1666 + got_entry->got_value = funcval.got_value;
1667 + got_entry->entry_point = funcval.entry_point;
1671 + * initially set the entry point to resolve pending before starting
1672 + * the update. This has the effect of putting all other requests in a
1673 + * holding pattern until the resolution is completed.
1675 + got_entry->entry_point = ((unsigned long *)&_dl_ubicom32_resolve_pending)[0];
1676 + got_entry->got_value = funcval.got_value;
1677 + got_entry->entry_point = funcval.entry_point;
1684 +_dl_parse(struct elf_resolve *tpnt, struct dyn_elf *scope,
1685 + unsigned long rel_addr, unsigned long rel_size,
1686 + int (*reloc_fnc) (struct elf_resolve *tpnt, struct dyn_elf *scope,
1687 + ELF_RELOC *rpnt, ElfW(Sym) *symtab, char *strtab))
1691 + ElfW(Sym) *symtab;
1695 + /* Now parse the relocation information */
1696 + rpnt = (ELF_RELOC *) rel_addr;
1697 + rel_size = rel_size / sizeof(ELF_RELOC);
1699 + symtab = (ElfW(Sym) *) tpnt->dynamic_info[DT_SYMTAB];
1700 + strtab = (char *) tpnt->dynamic_info[DT_STRTAB];
1702 + for (i = 0; i < rel_size; i++, rpnt++) {
1705 + symtab_index = ELF_R_SYM(rpnt->r_info);
1706 + debug_sym(symtab,strtab,symtab_index);
1707 + debug_reloc(symtab,strtab,rpnt);
1709 + res = reloc_fnc (tpnt, scope, rpnt, symtab, strtab);
1711 + if (res==0) continue;
1713 + _dl_dprintf(2, "\n%s: ",_dl_progname);
1716 + _dl_dprintf(2, "symbol '%s': ", strtab + symtab[symtab_index].st_name);
1719 + int reloc_type = ELF_R_TYPE(rpnt->r_info);
1720 +#if defined (__SUPPORT_LD_DEBUG__)
1721 + _dl_dprintf(2, "can't handle reloc type %s\n ", _dl_reltypes(reloc_type));
1723 + _dl_dprintf(2, "can't handle reloc type %x\n", reloc_type);
1726 + } else if (res >0) {
1727 + _dl_dprintf(2, "can't resolve symbol\n");
1735 +_dl_do_reloc (struct elf_resolve *tpnt,struct dyn_elf *scope,
1736 + ELF_RELOC *rpnt, ElfW(Sym) *symtab, char *strtab)
1741 + unsigned long reloc_value = 0, *reloc_addr;
1742 + struct { unsigned long v; } __attribute__((__packed__))
1743 + *reloc_addr_packed;
1744 + unsigned long symbol_addr;
1745 + struct elf_resolve *symbol_tpnt;
1746 + struct funcdesc_value funcval;
1747 +#if defined (__SUPPORT_LD_DEBUG__)
1748 + unsigned long old_val;
1751 + reloc_addr = (unsigned long *) DL_RELOC_ADDR(tpnt->loadaddr, rpnt->r_offset);
1752 + __asm__ ("" : "=r" (reloc_addr_packed) : "0" (reloc_addr));
1753 + reloc_type = ELF_R_TYPE(rpnt->r_info);
1754 + symtab_index = ELF_R_SYM(rpnt->r_info);
1756 + symname = strtab + symtab[symtab_index].st_name;
1758 + if (ELF_ST_BIND (symtab[symtab_index].st_info) == STB_LOCAL) {
1759 + symbol_addr = (unsigned long) DL_RELOC_ADDR(tpnt->loadaddr, symtab[symtab_index].st_value);
1760 + symbol_tpnt = tpnt;
1763 + symbol_addr = (unsigned long)
1764 + _dl_lookup_hash(symname, scope, NULL, 0, &symbol_tpnt);
1767 + * We want to allow undefined references to weak symbols - this might
1768 + * have been intentional. We should not be linking local symbols
1769 + * here, so all bases should be covered.
1772 + if (!symbol_addr && ELF_ST_BIND(symtab[symtab_index].st_info) != STB_WEAK) {
1773 + _dl_dprintf (2, "%s: can't resolve symbol '%s'\n",
1774 + _dl_progname, strtab + symtab[symtab_index].st_name);
1779 +#if defined (__SUPPORT_LD_DEBUG__)
1780 + if (_dl_debug_reloc && _dl_debug_detail)
1782 + if ((long)reloc_addr_packed & 3)
1783 + old_val = reloc_addr_packed->v;
1785 + old_val = *reloc_addr;
1790 + switch (reloc_type) {
1791 + case R_UBICOM32_NONE:
1793 + case R_UBICOM32_32:
1794 + if ((long)reloc_addr_packed & 3)
1795 + reloc_value = reloc_addr_packed->v += symbol_addr;
1797 + reloc_value = *reloc_addr += symbol_addr;
1799 + case R_UBICOM32_FUNCDESC_VALUE:
1800 + funcval.entry_point = (void*)symbol_addr;
1801 + /* The addend of FUNCDESC_VALUE
1802 + relocations referencing global
1803 + symbols must be ignored, because it
1804 + may hold the address of a lazy PLT
1806 + if (ELF_ST_BIND(symtab[symtab_index].st_info) == STB_LOCAL)
1807 + funcval.entry_point += *reloc_addr;
1808 + reloc_value = (unsigned long)funcval.entry_point;
1811 + = symbol_tpnt->loadaddr.got_value;
1813 + funcval.got_value = 0;
1815 +/// XXX this is my best guess as to what I should be doing, but I'm
1816 +/// putting a break-point here so I can inspect the first time this is
1819 + " move.4 4(%0), 4(%1) \n\t"
1820 + " move.4 0(%0), 0(%1) \n\t" /* Must to entry_point last */
1822 + : "a" (reloc_addr), "a" (&funcval)
1825 + case R_UBICOM32_FUNCDESC:
1826 + if ((long)reloc_addr_packed & 3)
1827 + reloc_value = reloc_addr_packed->v;
1829 + reloc_value = *reloc_addr;
1831 + reloc_value = (unsigned long)_dl_funcdesc_for
1832 + ((char *)symbol_addr + reloc_value,
1833 + symbol_tpnt->loadaddr.got_value);
1836 + if ((long)reloc_addr_packed & 3)
1837 + reloc_addr_packed->v = reloc_value;
1839 + *reloc_addr = reloc_value;
1844 +#if defined (__SUPPORT_LD_DEBUG__)
1845 + if (_dl_debug_reloc && _dl_debug_detail) {
1846 + _dl_dprintf(_dl_debug_file, "\tpatched: %x ==> %x @ %x", old_val, reloc_value, reloc_addr);
1847 + switch (reloc_type) {
1848 + case R_UBICOM32_FUNCDESC_VALUE:
1849 + _dl_dprintf(_dl_debug_file, " got %x", ((struct funcdesc_value *)reloc_value)->got_value);
1851 + case R_UBICOM32_FUNCDESC:
1852 + if (! reloc_value)
1854 + _dl_dprintf(_dl_debug_file, " funcdesc (%x,%x)",
1855 + ((struct funcdesc_value *)reloc_value)->entry_point,
1856 + ((struct funcdesc_value *)reloc_value)->got_value);
1866 +_dl_do_lazy_reloc (struct elf_resolve *tpnt,
1867 + struct dyn_elf *scope __attribute__((unused)),
1868 + ELF_RELOC *rpnt, ElfW(Sym) *symtab __attribute__((unused)),
1869 + char *strtab __attribute__((unused)))
1872 + struct funcdesc_value volatile *reloc_addr;
1873 + struct funcdesc_value funcval;
1874 +#if defined (__SUPPORT_LD_DEBUG__)
1875 + unsigned long old_val;
1878 + reloc_addr = (struct funcdesc_value *) DL_RELOC_ADDR(tpnt->loadaddr, rpnt->r_offset);
1879 + reloc_type = ELF_R_TYPE(rpnt->r_info);
1881 +#if defined (__SUPPORT_LD_DEBUG__)
1882 + old_val = (unsigned long)reloc_addr->entry_point;
1884 + switch (reloc_type) {
1885 + case R_UBICOM32_NONE:
1887 + case R_UBICOM32_FUNCDESC_VALUE:
1888 + funcval = *reloc_addr;
1889 + funcval.entry_point = (void*)DL_RELOC_ADDR(tpnt->loadaddr, funcval.entry_point);
1890 + funcval.got_value = tpnt->loadaddr.got_value;
1891 + *reloc_addr = funcval;
1896 +#if defined (__SUPPORT_LD_DEBUG__)
1897 + if (_dl_debug_reloc && _dl_debug_detail)
1898 + _dl_dprintf(_dl_debug_file, "\tpatched: %x ==> %x @ %x", old_val, reloc_addr->entry_point, reloc_addr);
1905 +_dl_parse_lazy_relocation_information
1906 +(struct dyn_elf *rpnt, unsigned long rel_addr, unsigned long rel_size)
1908 + _dl_parse(rpnt->dyn, NULL, rel_addr, rel_size, _dl_do_lazy_reloc);
1912 +_dl_parse_relocation_information
1913 +(struct dyn_elf *rpnt, unsigned long rel_addr, unsigned long rel_size)
1915 + return _dl_parse(rpnt->dyn, rpnt->dyn->symbol_scope, rel_addr, rel_size, _dl_do_reloc);
1919 +/* We don't have copy relocs. */
1921 +_dl_parse_copy_information
1922 +(struct dyn_elf *rpnt __attribute__((unused)),
1923 + unsigned long rel_addr __attribute__((unused)),
1924 + unsigned long rel_size __attribute__((unused)))
1929 +#ifndef IS_IN_libdl
1930 +# include "../../libc/sysdeps/linux/ubicom32/crtreloc.c"
1933 +++ b/ldso/ldso/ubicom32/resolve.S
1935 + /* Copyright (C) 2003 Red Hat, Inc.
1936 + Contributed by Alexandre Oliva <aoliva@redhat.com>
1938 + Copyright (C) 2009 Ubicom Inc.
1939 + Ported to Ubicom32 by Ubicom Inc.
1941 +This file is part of uClibc.
1943 +uClibc is free software; you can redistribute it and/or modify it
1944 +under the terms of the GNU Lesser General Public License as
1945 +published by the Free Software Foundation; either version 2.1 of the
1946 +License, or (at your option) any later version.
1948 +uClibc is distributed in the hope that it will be useful, but WITHOUT
1949 +ANY WARRANTY; without even the implied warranty of
1950 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1951 +Library General Public License for more details.
1953 +You should have received a copy of the GNU Lesser General Public
1954 +License along with uClibc; see the file COPYING.LIB. If not, write to
1955 +the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
1960 + * The function below is tail-called by resolver stubs when a lazily-bound *
1961 + * function is called. It must preserve all registers that could * be used to
1962 + * pass arguments to the actual function.
1964 + * On entry to the function d0-d13 contain parameters to the actual function of
1967 + * a5 contains the return address
1968 + * a0 is pointing to the GOT table for the original function
1969 + * (a0) _dl_linux_resolve
1970 + * 4(a0) GOT for _dl_linux_resolve
1971 + * 8(a0) is pointer to "structure elf_resolve" of the module where the call
1974 + * a3 is pointing to the function descriptor in the GOT table, and 8(a3) the
1975 + * resolver lookup information.
1977 + * _dl_linux_resolve calls _dl_linux_resolver passing it pointer to
1978 + * struct elf_resolve and the relocation entry.
1980 + * _dl_linux_resolver() figures out where the jump symbol is _really_ supposed
1981 + * to have jumped to and returns that to us. Once we have that, we prepare to
1982 + * tail-call the actual function, clean up after ourselves, restoring the
1983 + * original arguments, then jump to the fixed up address.
1988 + * Here is what the linker will use for the PLT.
1990 +sample_PLT_functionX: /* (at entry a0 contains GOT for this library) */
1991 + movei d15, # -%lo(got_funcdescX) ; load offset for GOT
1992 + lea.4 a3, (a0, d15) ; a4 is now the function descriptor
1993 + move.4 a4, 0(a3) ; get entry_point
1994 + move.4 a0, 4(a3) ; set new GOT
1997 + * jump to resovled function OR PLT_trampoline Nat had some code here
1998 + * that uses the stack instead of a3 to reduces hazards.
2003 +sample_PLT_trampoline:
2005 + * find the old got by undoing what was done above. An alternative
2006 + * could have been to ‘save’ the old got in say d14 but that would add 1
2007 + * instruction to every PLT and there is only 1 PLT trampoline per library.
2009 + ret (a0) ; jump to _dl_linux_resolve
2015 + .hidden _dl_linux_resolve
2016 + .global _dl_linux_resolve
2017 + .type _dl_linux_resolve,@function
2019 + /* Preserve arguments and return address */
2020 + move.4 -4(sp)++, d0
2021 + move.4 -4(sp)++, d1
2022 + move.4 -4(sp)++, d2
2023 + move.4 -4(sp)++, d3
2024 + move.4 -4(sp)++, d4
2025 + move.4 -4(sp)++, d5
2026 + move.4 -4(sp)++, d6
2027 + move.4 -4(sp)++, d7
2028 + move.4 -4(sp)++, d8
2029 + move.4 -4(sp)++, d9
2030 + move.4 -4(sp)++, d10
2031 + move.4 -4(sp)++, d11
2032 + move.4 -4(sp)++, d12
2033 + move.4 -4(sp)++, d13
2034 + move.4 -4(sp)++, a5
2036 + /* Prepare to call _dl_linux_resolver. */
2037 + move.4 d0, 8(a0) ; reference to elf_resolve
2038 + /* Not aligned for space reasons. */
2039 + move.4 d1, mac_hi ; reference to GOT table entry which
2040 + ; contains the relocation information.
2042 + move.4 a0, 4(a0) ; switch to GOT for _dl_linux_resolve
2043 + call a5, _dl_linux_resolver;
2045 + /* Move aside return value that contains the FUNCDESC_VALUE. */
2049 + /* Restore arguments. */
2050 + move.4 a5, (sp)4++
2051 + move.4 d13, (sp)4++
2052 + move.4 d12, (sp)4++
2053 + move.4 d11, (sp)4++
2054 + move.4 d10, (sp)4++
2055 + move.4 d9, (sp)4++
2056 + move.4 d8, (sp)4++
2057 + move.4 d7, (sp)4++
2058 + move.4 d6, (sp)4++
2059 + move.4 d5, (sp)4++
2060 + move.4 d4, (sp)4++
2061 + move.4 d3, (sp)4++
2062 + move.4 d2, (sp)4++
2063 + move.4 d1, (sp)4++
2064 + move.4 d0, (sp)4++
2066 + /* Now jump to the actual function. */
2067 + /* a3 contains func_desc resolution */
2068 + move.4 a4, 0(a3) ; address of function X
2069 + move.4 a0, 4(a3) ; switch to GOT for function X
2070 + calli a4, 0(a4) ; call through a4, a5 remains
2072 + .size _dl_linux_resolve, . - _dl_linux_resolve
2074 + .hidden _dl_ubicom32_resolve_pending
2075 + .global _dl_ubicom32_resolve_pending
2076 + .type _dl_ubicom32_resolve_pending,@function
2078 +_dl_ubicom32_resolve_pending:
2080 + * A special function that is used to ensure thread saftly when the fd
2081 + * for a particular resolution is being updated.
2083 + * At entry, a3 must point to the FD. While the FD is being updated the
2084 + * entry_point will continue to point to _dl_ubicom32_resolve_pending so
2085 + * we will effectively spin until the resolver update is complete.
2088 + move.4 a4, 0(a3) ; get entry_point
2089 + move.4 a0, 4(a3) ; set new GOT
2092 + * jump to resovled function or back to _dl_ubicom32_resolve_pending.
2095 + .size _dl_ubicom32_resolve_pending, . - _dl_ubicom32_resolve_pending
2096 --- a/libc/misc/Makefile.in
2097 +++ b/libc/misc/Makefile.in
2098 @@ -12,7 +12,9 @@ include $(top_srcdir)libc/misc/assert/Ma
2099 include $(top_srcdir)libc/misc/ctype/Makefile.in
2100 include $(top_srcdir)libc/misc/dirent/Makefile.in
2101 include $(top_srcdir)libc/misc/error/Makefile.in
2102 +ifneq ($(ARCH_HAS_NO_LDSO),y)
2103 include $(top_srcdir)libc/misc/elf/Makefile.in
2105 include $(top_srcdir)libc/misc/file/Makefile.in
2106 include $(top_srcdir)libc/misc/fnmatch/Makefile.in
2107 include $(top_srcdir)libc/misc/ftw/Makefile.in
2108 --- a/libc/misc/elf/dl-iterate-phdr.c
2109 +++ b/libc/misc/elf/dl-iterate-phdr.c
2115 +#include <memory.h>
2116 /* we want this in libc but nowhere else */
2119 @@ -60,7 +60,11 @@ dl_iterate_phdr (int (*callback) (struct
2120 /* This entry describes this statically-linked program itself. */
2121 struct dl_phdr_info info;
2123 +#if !defined(__FDPIC__)
2126 + memset(&info.dlpi_addr, 0, sizeof(info.dlpi_addr));
2128 info.dlpi_name = "";
2129 info.dlpi_phdr = _dl_phdr;
2130 info.dlpi_phnum = _dl_phnum;
2131 --- a/libc/stdlib/malloc/malloc.c
2132 +++ b/libc/stdlib/malloc/malloc.c
2133 @@ -25,7 +25,7 @@ libc_hidden_proto(sbrk)
2135 /* The malloc heap. We provide a bit of initial static space so that
2136 programs can do a little mallocing without mmaping in more space. */
2137 -HEAP_DECLARE_STATIC_FREE_AREA (initial_fa, 256);
2138 +HEAP_DECLARE_STATIC_FREE_AREA (initial_fa, 32768);
2139 struct heap_free_area *__malloc_heap = HEAP_INIT_WITH_FA (initial_fa);
2140 #ifdef HEAP_USE_LOCKING
2141 malloc_mutex_t __malloc_heap_lock = PTHREAD_MUTEX_INITIALIZER;
2143 +++ b/libc/string/ubicom32/Makefile
2145 +# Makefile for uClibc
2147 +# Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
2149 +# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
2152 +top_srcdir:=../../../
2153 +top_builddir:=../../../
2155 +include $(top_builddir)Rules.mak
2156 +include ../Makefile.in
2157 +include $(top_srcdir)Makerules
2159 +++ b/libc/string/ubicom32/memcpy.c
2161 +/* Copy memory to memory until the specified number of bytes
2162 + has been copied. Overlap is NOT handled correctly.
2163 + Copyright (C) 1991, 1997, 2003 Free Software Foundation, Inc.
2164 + This file is part of the GNU C Library.
2165 + Contributed by Torbjorn Granlund (tege@sics.se).
2167 + The GNU C Library is free software; you can redistribute it and/or
2168 + modify it under the terms of the GNU Lesser General Public
2169 + License as published by the Free Software Foundation; either
2170 + version 2.1 of the License, or (at your option) any later version.
2172 + The GNU C Library is distributed in the hope that it will be useful,
2173 + but WITHOUT ANY WARRANTY; without even the implied warranty of
2174 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2175 + Lesser General Public License for more details.
2177 + You should have received a copy of the GNU Lesser General Public
2178 + License along with the GNU C Library; if not, write to the Free
2179 + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
2180 + 02111-1307 USA. */
2182 +#include <string.h>
2184 +typedef unsigned long addr_t;
2186 +libc_hidden_proto(memcpy)
2188 +void *memcpy (void *dest, const void *src, size_t n)
2190 + void *dest_ret = dest;
2191 + void *aligned_start;
2193 + if (likely((((addr_t)dest ^ (addr_t)src) & 3) == 0) && likely(n > 6)) {
2195 + n -= (4 - (addr_t)dest) & 0x03;
2197 + __asm__ volatile (
2198 + " call %4, 99f \n\t" // load %4 with address of 99
2199 + "99: movei d15, #%%lo(1f-99b) \n\t" // load d15 with offset to 1 from 99
2200 + " add.4 %4, %4, d15 \n\t" // add difference
2202 + " sub.4 d15, #0, %2 \n\t" // set up for jump table
2203 + " and.4 d15, #(32-1), d15 \n\t" // d15 = (-m) & (32 - 1)
2204 + " lea.4 %4, (%4,d15) \n\t"
2206 + " bfextu d15, %0, #2 \n\t" // d15 = (dest & 3)
2207 + " jmpne.w.f 100f \n\t"
2208 + " calli %4, 0(%4) \n\t" // 4-byte alignment
2210 + "100: cmpi d15, #2 \n\t"
2211 + " jmpne.s.f 101f \n\t"
2212 + " move.2 (%0)2++, (%1)2++ \n\t"
2213 + " calli %4, 0(%4) \n\t" // 2-byte alignment
2215 + "101: move.1 (%0)1++, (%1)1++ \n\t"
2216 + " jmpgt.s.f 102f \n\t" // 3-byte alignment
2217 + " move.2 (%0)2++, (%1)2++ \n\t" // 1-byte alignment
2218 + "102: calli %4, 0(%4) \n\t"
2220 + "200: cmpi %3, #2 \n\t"
2221 + " jmplt.s.f 201f \n\t"
2222 + " move.2 (%0)2++, (%1)2++ \n\t"
2223 + " jmpeq.s.t 2f \n\t"
2224 + "201: move.1 (%0)1++, (%1)1++ \n\t"
2225 + " jmpt.w.t 2f \n\t"
2227 + "1: .rept 25 \n\t"
2228 + " movea (%0)4++, (%1)4++ \n\t"
2231 + " move.4 (%0)4++, (%1)4++ \n\t"
2233 + " add.4 %2, #-32, %2 \n\t"
2234 + " jmpgt.w.f 1b \n\t"
2236 + " and.4 %3, #3, %3 \n\t" // check n
2237 + " jmpne.w.f 200b \n\t"
2239 + : "+a"(dest), "+a"(src), "+d"(m), "+d"(n), "=a"(aligned_start)
2241 + : "d15", "memory", "cc"
2247 + if (likely((((addr_t)dest ^ (addr_t)src) & 1) == 0) && likely(n > 2)) {
2249 + n -= (addr_t)dest & 0x01;
2251 + __asm__ volatile (
2252 + " call %4, 99f \n\t" // load %4 with address of 99
2253 + "99: movei d15, #%%lo(1f-99b) \n\t" // load d15 with offset to 1 from 99
2254 + " add.4 %4, %4, d15 \n\t" // add difference
2256 + " sub.4 d15, #0, %2 \n\t" // set up for jump table
2257 + " and.4 d15, #(32-1), d15 \n\t" // d15 = (-m) & (32 - 1)
2258 + " lea.4 %4, (%4,d15) \n\t"
2260 + " btst %0, #0 \n\t" // check bit 0
2261 + " jmpne.w.f 100f \n\t"
2262 + " calli %4, 0(%4) \n\t" // 4-byte alignment
2264 + "100: move.1 (%0)1++, (%1)1++ \n\t"
2265 + " calli %4, 0(%4) \n\t"
2267 + "200: move.1 (%0)1++, (%1)1++ \n\t"
2268 + " jmpt.w.t 2f \n\t"
2270 + "1: .rept 32 \n\t"
2271 + " move.2 (%0)2++, (%1)2++ \n\t"
2273 + " add.4 %2, #-32, %2 \n\t"
2274 + " jmpgt.w.f 1b \n\t"
2276 + " and.4 %3, #1, %3 \n\t" // check n
2277 + " jmpne.w.f 200b \n\t"
2280 + : "+a"(dest), "+a"(src), "+d"(m), "+d"(n), "=a"(aligned_start)
2282 + : "d15", "memory", "cc"
2287 + __asm__ volatile (
2288 + " call %3, 99f \n\t" // load %3 with address of 99
2289 + "99: movei d15, #%%lo(1f-99b) \n\t" // load d15 with offset to 1 from 99
2290 + " add.4 %3, %3, d15 \n\t" // add difference
2292 + " sub.4 d15, #0, %2 \n\t"
2293 + " jmpeq.w.f 2f \n\t"
2294 + " and.4 d15, #(16-1), d15 \n\t" // d15 = (-n) & (16 - 1)
2295 + " lea.4 %3, (%3,d15) \n\t"
2296 + " calli %3, 0(%3) \n\t"
2298 + "1: .rept 16 \n\t"
2299 + " move.1 (%0)1++, (%1)1++ \n\t"
2301 + " add.4 %2, #-16, %2 \n\t"
2302 + " jmpgt.w.f 1b \n\t"
2305 + : "+a"(dest), "+a"(src), "+d"(n), "=a"(aligned_start)
2307 + : "d15", "memory", "cc"
2312 +libc_hidden_def(memcpy)
2314 +++ b/libc/string/ubicom32/memset.c
2316 +/* Copyright (C) 1991, 1997, 2003 Free Software Foundation, Inc.
2317 + This file is part of the GNU C Library.
2319 + The GNU C Library is free software; you can redistribute it and/or
2320 + modify it under the terms of the GNU Lesser General Public
2321 + License as published by the Free Software Foundation; either
2322 + version 2.1 of the License, or (at your option) any later version.
2324 + The GNU C Library is distributed in the hope that it will be useful,
2325 + but WITHOUT ANY WARRANTY; without even the implied warranty of
2326 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2327 + Lesser General Public License for more details.
2329 + You should have received a copy of the GNU Lesser General Public
2330 + License along with the GNU C Library; if not, write to the Free
2331 + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
2332 + 02111-1307 USA. */
2334 +#include <string.h>
2336 +typedef unsigned long addr_t;
2338 +libc_hidden_proto(memset)
2339 +void *memset (void *s, int c, size_t n)
2342 + void *aligned_start;
2343 + if (likely(n > 6)) {
2345 + n -= (4 - (addr_t)s) & 0x03;
2347 + __asm__ volatile (
2348 + " call %4, 99f \n\t" // load %4 with address of 99
2349 + "99: movei d15, #%%lo(1f-99b) \n\t" // load d15 with offset to 1 from 99
2350 + " add.4 %4, %4, d15 \n\t" // add difference
2352 + " sub.4 d15, #0, %2 \n\t" // set up for jump table
2353 + " and.4 d15, #(32-1), d15 \n\t" // d15 = (-m) & (32 - 1)
2354 + " shmrg.1 %1, %1, %1 \n\t"
2355 + " shmrg.2 %1, %1, %1 \n\t" // %1 = (c<<24)|(c<<16)|(c<<8)|c
2356 + " lea.4 %4, (%4,d15) \n\t"
2358 + " bfextu d15, %0, #2 \n\t" // d15 = (s & 3)
2359 + " jmpne.w.f 100f \n\t"
2360 + " calli %4, 0(%4) \n\t" // 4-byte alignment
2362 + "100: cmpi d15, #2 \n\t"
2363 + " jmpne.s.f 101f \n\t"
2364 + " move.2 (%0)2++, %1 \n\t"
2365 + " calli %4, 0(%4) \n\t" // 2-byte alignment
2367 + "101: move.1 (%0)1++, %1 \n\t"
2368 + " jmpgt.s.f 102f \n\t" // 3-byte alignment
2369 + " move.2 (%0)2++, %1 \n\t" // 1-byte alignment
2370 + "102: calli %4, 0(%4) \n\t"
2372 + "200: cmpi %3, #2 \n\t"
2373 + " jmplt.s.f 201f \n\t"
2374 + " move.2 (%0)2++, %1 \n\t"
2375 + " jmpeq.s.t 2f \n\t"
2376 + "201: move.1 (%0)1++, %1 \n\t"
2377 + " jmpt.w.t 2f \n\t"
2379 + "1: .rept 25 \n\t"
2380 + " movea (%0)4++, %1 \n\t"
2383 + " move.4 (%0)4++, %1 \n\t"
2385 + " add.4 %2, #-32, %2 \n\t"
2386 + " jmpgt.w.f 1b \n\t"
2388 + " and.4 %3, #3, %3 \n\t" // test bit 1 of n
2389 + " jmpne.w.f 200b \n\t"
2391 + : "+a"(s), "+d"(c), "+d"(m), "+d"(n), "=a"(aligned_start)
2393 + : "d15", "memory", "cc"
2399 + __asm__ volatile (
2400 + " call %3, 99f \n\t" // load %3 with address of 99
2401 + "99: movei d15, #%%lo(1f-99b) \n\t" // load d15 with offset to 1 from 99
2402 + " add.4 %3, %3, d15 \n\t" // add difference
2404 + " sub.4 d15, #0, %2 \n\t"
2405 + " jmpeq.w.f 2f \n\t"
2406 + " and.4 d15, #(8-1), d15 \n\t" // d15 = (-%2) & (16 - 1)
2407 + " lea.4 %3, (%3,d15) \n\t"
2408 + " calli %3, 0(%3) \n\t"
2411 + " move.1 (%0)1++, %1 \n\t"
2415 + : "+a"(s), "+d"(c), "+d"(n), "=a"(aligned_start)
2417 + : "d15", "memory", "cc"
2422 +libc_hidden_def(memset)
2423 --- a/libc/sysdeps/linux/common/sys/user.h
2424 +++ b/libc/sysdeps/linux/common/sys/user.h
2427 +/* As of linux v2.6.25 this is not part of the exported linux headers */
2428 #include <linux/user.h>
2431 +++ b/libc/sysdeps/linux/ubicom32/Makefile
2433 +# Makefile for uClibc
2435 +# Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
2437 +# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
2440 +top_srcdir=../../../../
2441 +top_builddir=../../../../
2443 +include $(top_builddir)Rules.mak
2444 +include Makefile.arch
2445 +include $(top_srcdir)Makerules
2447 +++ b/libc/sysdeps/linux/ubicom32/Makefile.arch
2449 +# Makefile for uClibc
2451 +# Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
2453 +# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
2470 + syscall.c __syscall_error.c
2473 + clone.S setjmp.S vfork.S
2475 +ARCH_CFLAGS := $(CPU_CFLAGS-y)
2476 +include $(top_srcdir)libc/sysdeps/linux/Makefile.commonarch
2478 +++ b/libc/sysdeps/linux/ubicom32/__syscall_error.c
2481 +#include <features.h>
2483 +/* This routine is jumped to by some of the syscall handlers, to stash
2484 + * an error number into errno. */
2485 +int __syscall_error(int err_no) attribute_hidden;
2486 +int __syscall_error(int err_no)
2488 + __set_errno(err_no);
2492 +++ b/libc/sysdeps/linux/ubicom32/bits/elf-fdpic.h
2494 +/* Copyright 2003, 2004 Free Software Foundation, Inc.
2495 +This file is part of the GNU C Library.
2497 +The GNU C Library is free software; you can redistribute it and/or
2498 +modify it under the terms of the GNU Lesser General Public License as
2499 +published by the Free Software Foundation; either version 2.1 of the
2500 +License, or (at your option) any later version.
2502 +In addition to the permissions in the GNU Lesser General Public
2503 +License, the Free Software Foundation gives you unlimited
2504 +permission to link the compiled version of this file with other
2505 +programs, and to distribute those programs without any restriction
2506 +coming from the use of this file. (The GNU Lesser General Public
2507 +License restrictions do apply in other respects; for example, they
2508 +cover modification of the file, and distribution when not linked
2509 +into another program.)
2511 +The GNU C Library is distributed in the hope that it will be useful,
2512 +but WITHOUT ANY WARRANTY; without even the implied warranty of
2513 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2514 +Library General Public License for more details.
2516 +You should have received a copy of the GNU Lesser General Public
2517 +License along with the GNU C Library; see the file COPYING.LIB. If
2518 +not, write to the Free Software Foundation, Inc., 675 Mass Ave,
2519 +Cambridge, MA 02139, USA. */
2521 +#ifndef _BITS_ELF_FDPIC_H
2522 +#define _BITS_ELF_FDPIC_H
2524 +/* These data structures are described in the FDPIC ABI extension.
2525 + The kernel passes a process a memory map, such that for every LOAD
2526 + segment there is an elf32_fdpic_loadseg entry. A pointer to an
2527 + elf32_fdpic_loadmap is passed in d8 at start-up, and a pointer to
2528 + an additional such map is passed in d9 for the interpreter, when
2533 +/* This data structure represents a PT_LOAD segment. */
2534 +struct elf32_fdpic_loadseg
2536 + /* Core address to which the segment is mapped. */
2538 + /* VMA recorded in the program header. */
2539 + Elf32_Addr p_vaddr;
2540 + /* Size of this segment in memory. */
2541 + Elf32_Word p_memsz;
2544 +struct elf32_fdpic_loadmap {
2545 + /* Protocol version number, must be zero. */
2546 + Elf32_Half version;
2547 + /* Number of segments in this map. */
2549 + /* The actual memory map. */
2550 + struct elf32_fdpic_loadseg segs[/*nsegs*/];
2553 +struct elf32_fdpic_loadaddr {
2554 + struct elf32_fdpic_loadmap *map;
2558 +/* Map a pointer's VMA to its corresponding address according to the
2560 +static __always_inline void *
2561 +__reloc_pointer (void *p,
2562 + const struct elf32_fdpic_loadmap *map)
2567 + if (map->version != 0)
2572 + /* No special provision is made for NULL. We don't want NULL
2573 + addresses to go through relocation, so they shouldn't be in
2574 + .rofixup sections, and, if they're present in dynamic
2575 + relocations, they shall be mapped to the NULL address without
2576 + undergoing relocations. */
2579 + /* Take advantage of the fact that the loadmap is ordered by
2580 + virtual addresses. In general there will only be 2 entries,
2581 + so it's not profitable to do a binary search. */
2582 + c < map->nsegs && p >= (void*)map->segs[c].p_vaddr;
2585 + /* This should be computed as part of the pointer comparison
2586 + above, but we want to use the carry in the comparison, so we
2587 + can't convert it to an integer type beforehand. */
2588 + unsigned long offset = p - (void*)map->segs[c].p_vaddr;
2589 + /* We only check for one-past-the-end for the last segment,
2590 + assumed to be the data segment, because other cases are
2591 + ambiguous in the absence of padding between segments, and
2592 + rofixup already serves as padding between text and data.
2593 + Unfortunately, unless we special-case the last segment, we
2594 + fail to relocate the _end symbol. */
2595 + if (offset < map->segs[c].p_memsz
2596 + || (offset == map->segs[c].p_memsz && c + 1 == map->nsegs))
2597 + return (char*)map->segs[c].addr + offset;
2600 + /* We might want to crash instead. */
2604 +# define __RELOC_POINTER(ptr, loadaddr) \
2605 + (__reloc_pointer ((void*)(ptr), \
2608 +#endif /* _BITS_ELF_FDPIC_H */
2610 +++ b/libc/sysdeps/linux/ubicom32/bits/endian.h
2612 +/* Ubicom32 is big-endian. */
2615 +# error "Never use <bits/endian.h> directly; include <endian.h> instead."
2618 +#define __BYTE_ORDER __BIG_ENDIAN
2620 +++ b/libc/sysdeps/linux/ubicom32/bits/fcntl.h
2622 +/* O_*, F_*, FD_* bit values for Linux.
2623 + Copyright (C) 2000 Free Software Foundation, Inc.
2624 + This file is part of the GNU C Library.
2626 + The GNU C Library is free software; you can redistribute it and/or
2627 + modify it under the terms of the GNU Lesser General Public
2628 + License as published by the Free Software Foundation; either
2629 + version 2.1 of the License, or (at your option) any later version.
2631 + The GNU C Library is distributed in the hope that it will be useful,
2632 + but WITHOUT ANY WARRANTY; without even the implied warranty of
2633 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2634 + Lesser General Public License for more details.
2636 + You should have received a copy of the GNU Lesser General Public
2637 + License along with the GNU C Library; if not, write to the Free
2638 + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
2639 + 02111-1307 USA. */
2642 +# error "Never use <bits/fcntl.h> directly; include <fcntl.h> instead."
2646 +#include <sys/types.h>
2648 +# include <bits/uio.h>
2651 +/* open/fcntl - O_SYNC is only implemented on blocks devices and on files
2652 + located on an ext2 file system */
2653 +#define O_ACCMODE 0003
2654 +#define O_RDONLY 00
2655 +#define O_WRONLY 01
2657 +#define O_CREAT 0100 /* not fcntl */
2658 +#define O_EXCL 0200 /* not fcntl */
2659 +#define O_NOCTTY 0400 /* not fcntl */
2660 +#define O_TRUNC 01000 /* not fcntl */
2661 +#define O_APPEND 02000
2662 +#define O_NONBLOCK 04000
2663 +#define O_NDELAY O_NONBLOCK
2664 +#define O_SYNC 010000
2665 +#define O_FSYNC O_SYNC
2666 +#define O_ASYNC 020000
2669 +# define O_DIRECTORY 040000 /* Must be a directory. */
2670 +# define O_NOFOLLOW 0100000 /* Do not follow links. */
2671 +# define O_DIRECT 0200000 /* Direct disk access. */
2672 +# define O_STREAMING 04000000/* streaming access */
2675 +/* For now Linux has synchronisity options for data and read operations.
2676 + We define the symbols here but let them do the same as O_SYNC since
2677 + this is a superset. */
2678 +#if defined __USE_POSIX199309 || defined __USE_UNIX98
2679 +# define O_DSYNC O_SYNC /* Synchronize data. */
2680 +# define O_RSYNC O_SYNC /* Synchronize read operations. */
2683 +#ifdef __USE_LARGEFILE64
2684 +# define O_LARGEFILE 0400000
2687 +/* Values for the second argument to `fcntl'. */
2688 +#define F_DUPFD 0 /* Duplicate file descriptor. */
2689 +#define F_GETFD 1 /* Get file descriptor flags. */
2690 +#define F_SETFD 2 /* Set file descriptor flags. */
2691 +#define F_GETFL 3 /* Get file status flags. */
2692 +#define F_SETFL 4 /* Set file status flags. */
2693 +#ifndef __USE_FILE_OFFSET64
2694 +# define F_GETLK 5 /* Get record locking info. */
2695 +# define F_SETLK 6 /* Set record locking info (non-blocking). */
2696 +# define F_SETLKW 7 /* Set record locking info (blocking). */
2698 +# define F_GETLK F_GETLK64 /* Get record locking info. */
2699 +# define F_SETLK F_SETLK64 /* Set record locking info (non-blocking).*/
2700 +# define F_SETLKW F_SETLKW64 /* Set record locking info (blocking). */
2702 +#define F_GETLK64 12 /* Get record locking info. */
2703 +#define F_SETLK64 13 /* Set record locking info (non-blocking). */
2704 +#define F_SETLKW64 14 /* Set record locking info (blocking). */
2706 +#if defined __USE_BSD || defined __USE_XOPEN2K
2707 +# define F_SETOWN 8 /* Get owner of socket (receiver of SIGIO). */
2708 +# define F_GETOWN 9 /* Set owner of socket (receiver of SIGIO). */
2712 +# define F_SETSIG 10 /* Set number of signal to be sent. */
2713 +# define F_GETSIG 11 /* Get number of signal to be sent. */
2717 +# define F_SETLEASE 1024 /* Set a lease. */
2718 +# define F_GETLEASE 1025 /* Enquire what lease is active. */
2719 +# define F_NOTIFY 1026 /* Request notfications on a directory. */
2722 +/* For F_[GET|SET]FL. */
2723 +#define FD_CLOEXEC 1 /* actually anything with low bit set goes */
2725 +/* For posix fcntl() and `l_type' field of a `struct flock' for lockf(). */
2726 +#define F_RDLCK 0 /* Read lock. */
2727 +#define F_WRLCK 1 /* Write lock. */
2728 +#define F_UNLCK 2 /* Remove lock. */
2730 +/* For old implementation of bsd flock(). */
2731 +#define F_EXLCK 4 /* or 3 */
2732 +#define F_SHLCK 8 /* or 4 */
2735 +/* Operations for bsd flock(), also used by the kernel implementation. */
2736 +# define LOCK_SH 1 /* shared lock */
2737 +# define LOCK_EX 2 /* exclusive lock */
2738 +# define LOCK_NB 4 /* or'd with one of the above to prevent
2740 +# define LOCK_UN 8 /* remove lock */
2744 +# define LOCK_MAND 32 /* This is a mandatory flock: */
2745 +# define LOCK_READ 64 /* ... which allows concurrent read operations. */
2746 +# define LOCK_WRITE 128 /* ... which allows concurrent write operations. */
2747 +# define LOCK_RW 192 /* ... Which allows concurrent read & write operations. */
2751 +/* Types of directory notifications that may be requested with F_NOTIFY. */
2752 +# define DN_ACCESS 0x00000001 /* File accessed. */
2753 +# define DN_MODIFY 0x00000002 /* File modified. */
2754 +# define DN_CREATE 0x00000004 /* File created. */
2755 +# define DN_DELETE 0x00000008 /* File removed. */
2756 +# define DN_RENAME 0x00000010 /* File renamed. */
2757 +# define DN_ATTRIB 0x00000020 /* File changed attibutes. */
2758 +# define DN_MULTISHOT 0x80000000 /* Don't remove notifier. */
2763 + short int l_type; /* Type of lock: F_RDLCK, F_WRLCK, or F_UNLCK. */
2764 + short int l_whence; /* Where `l_start' is relative to (like `lseek'). */
2765 +#ifndef __USE_FILE_OFFSET64
2766 + __off_t l_start; /* Offset where the lock begins. */
2767 + __off_t l_len; /* Size of the locked area; zero means until EOF. */
2769 + __off64_t l_start; /* Offset where the lock begins. */
2770 + __off64_t l_len; /* Size of the locked area; zero means until EOF. */
2772 + __pid_t l_pid; /* Process holding the lock. */
2775 +#ifdef __USE_LARGEFILE64
2778 + short int l_type; /* Type of lock: F_RDLCK, F_WRLCK, or F_UNLCK. */
2779 + short int l_whence; /* Where `l_start' is relative to (like `lseek'). */
2780 + __off64_t l_start; /* Offset where the lock begins. */
2781 + __off64_t l_len; /* Size of the locked area; zero means until EOF. */
2782 + __pid_t l_pid; /* Process holding the lock. */
2786 +/* Define some more compatibility macros to be backward compatible with
2787 + BSD systems which did not managed to hide these kernel macros. */
2789 +# define FAPPEND O_APPEND
2790 +# define FFSYNC O_FSYNC
2791 +# define FASYNC O_ASYNC
2792 +# define FNONBLOCK O_NONBLOCK
2793 +# define FNDELAY O_NDELAY
2794 +#endif /* Use BSD. */
2796 +/* Advise to `posix_fadvise'. */
2797 +#ifdef __USE_XOPEN2K
2798 +# define POSIX_FADV_NORMAL 0 /* No further special treatment. */
2799 +# define POSIX_FADV_RANDOM 1 /* Expect random page references. */
2800 +# define POSIX_FADV_SEQUENTIAL 2 /* Expect sequential page references. */
2801 +# define POSIX_FADV_WILLNEED 3 /* Will need these pages. */
2802 +# define POSIX_FADV_DONTNEED 4 /* Don't need these pages. */
2803 +# define POSIX_FADV_NOREUSE 5 /* Data will be accessed once. */
2807 +# define SYNC_FILE_RANGE_WAIT_BEFORE 1 /* Wait upon writeout of all pages
2808 + in the range before performing the
2810 +# define SYNC_FILE_RANGE_WRITE 2 /* Initiate writeout of all those
2811 + dirty pages in the range which are
2812 + not presently under writeback. */
2813 +# define SYNC_FILE_RANGE_WAIT_AFTER 4 /* Wait upon writeout of all pages in
2814 + the range after performing the
2822 +/* Provide kernel hint to read ahead. */
2823 +extern ssize_t readahead (int __fd, __off64_t __offset, size_t __count)
2826 +/* Selective file content synch'ing. */
2827 +extern int sync_file_range (int __fd, __off64_t __from, __off64_t __to,
2828 + unsigned int __flags);
2830 +/* Splice address range into a pipe. */
2831 +extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
2832 + size_t __count, unsigned int __flags);
2834 +/* Splice two files together. */
2835 +extern ssize_t splice (int __fdin, __off64_t *__offin, int __fdout,
2836 + __off64_t *__offout, size_t __len,
2837 + unsigned int __flags);
2839 +/* In-kernel implementation of tee for pipe buffers. */
2840 +extern ssize_t tee (int __fdin, int __fdout, size_t __len,
2841 + unsigned int __flags);
2847 +++ b/libc/sysdeps/linux/ubicom32/bits/kernel_stat.h
2849 +#ifndef _BITS_STAT_STRUCT_H
2850 +#define _BITS_STAT_STRUCT_H
2853 +#error bits/kernel_stat.h is for internal uClibc use only!
2856 +/* This file provides whatever this particular arch's kernel thinks
2857 + * struct kernel_stat should look like... It turns out each arch has a
2858 + * different opinion on the subject... */
2860 +struct kernel_stat {
2861 + unsigned short st_dev;
2862 + unsigned short __pad1;
2863 + unsigned long st_ino;
2864 + unsigned short st_mode;
2865 + unsigned short st_nlink;
2866 + unsigned short st_uid;
2867 + unsigned short st_gid;
2868 + unsigned short st_rdev;
2869 + unsigned short __pad2;
2870 + unsigned long st_size;
2871 + unsigned long st_blksize;
2872 + unsigned long st_blocks;
2873 + unsigned long st_atime;
2874 + unsigned long __unused1;
2875 + unsigned long st_mtime;
2876 + unsigned long __unused2;
2877 + unsigned long st_ctime;
2878 + unsigned long __unused3;
2879 + unsigned long __unused4;
2880 + unsigned long __unused5;
2883 +struct kernel_stat64 {
2884 + unsigned char __pad0[6];
2885 + unsigned short st_dev;
2886 + unsigned char __pad1[4];
2887 +#define _HAVE_STAT64___ST_INO
2888 + unsigned long __st_ino;
2889 + unsigned int st_mode;
2890 + unsigned int st_nlink;
2891 + unsigned long st_uid;
2892 + unsigned long st_gid;
2893 + unsigned char __pad2[6];
2894 + unsigned short st_rdev;
2895 + unsigned char __pad3[4];
2896 + long long st_size;
2897 + unsigned long st_blksize;
2898 + unsigned long st_blocks; /* Number 512-byte blocks allocated. */
2899 + unsigned long __pad4; /* future possible st_blocks high bits */
2900 + unsigned long st_atime;
2901 + unsigned long __pad5;
2902 + unsigned long st_mtime;
2903 + unsigned long __pad6;
2904 + unsigned long st_ctime;
2905 + unsigned long __pad7; /* will be high 32 bits of ctime someday */
2906 + unsigned long long st_ino;
2909 +#endif /* _BITS_STAT_STRUCT_H */
2911 +++ b/libc/sysdeps/linux/ubicom32/bits/kernel_types.h
2913 +/* Note that we use the exact same include guard #define names
2914 + * as asm/posix_types.h. This will avoid gratuitous conflicts
2915 + * with the posix_types.h kernel header, and will ensure that
2916 + * our private content, and not the kernel header, will win.
2919 +#ifndef __ARCH_UBICOM32_POSIX_TYPES_H
2920 +#define __ARCH_UBICOM32_POSIX_TYPES_H
2922 +typedef unsigned long __kernel_dev_t;
2923 +typedef unsigned long __kernel_ino_t;
2924 +typedef unsigned short __kernel_mode_t;
2925 +typedef unsigned short __kernel_nlink_t;
2926 +typedef long __kernel_off_t;
2927 +typedef int __kernel_pid_t;
2928 +typedef unsigned short __kernel_ipc_pid_t;
2929 +typedef unsigned short __kernel_uid_t;
2930 +typedef unsigned short __kernel_gid_t;
2931 +typedef unsigned int __kernel_size_t;
2932 +typedef int __kernel_ssize_t;
2933 +typedef int __kernel_ptrdiff_t;
2934 +typedef long __kernel_time_t;
2935 +typedef long __kernel_suseconds_t;
2936 +typedef long __kernel_clock_t;
2937 +typedef int __kernel_daddr_t;
2938 +typedef char * __kernel_caddr_t;
2939 +typedef unsigned short __kernel_uid16_t;
2940 +typedef unsigned short __kernel_gid16_t;
2941 +typedef unsigned int __kernel_uid32_t;
2942 +typedef unsigned int __kernel_gid32_t;
2943 +typedef unsigned short __kernel_old_uid_t;
2944 +typedef unsigned short __kernel_old_gid_t;
2945 +typedef unsigned short __kernel_old_dev_t;
2946 +typedef long long __kernel_loff_t;
2956 +#endif /* __ARCH_UBICOM32_POSIX_TYPES_H */
2958 +++ b/libc/sysdeps/linux/ubicom32/bits/mman.h
2960 +/* Definitions for POSIX memory map interface. Linux/m68k version.
2961 + Copyright (C) 1997, 2000, 2003, 2005 Free Software Foundation, Inc.
2962 + This file is part of the GNU C Library.
2964 + The GNU C Library is free software; you can redistribute it and/or
2965 + modify it under the terms of the GNU Lesser General Public
2966 + License as published by the Free Software Foundation; either
2967 + version 2.1 of the License, or (at your option) any later version.
2969 + The GNU C Library is distributed in the hope that it will be useful,
2970 + but WITHOUT ANY WARRANTY; without even the implied warranty of
2971 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2972 + Lesser General Public License for more details.
2974 + You should have received a copy of the GNU Lesser General Public
2975 + License along with the GNU C Library; if not, write to the Free
2976 + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
2977 + 02111-1307 USA. */
2979 +#ifndef _SYS_MMAN_H
2980 +# error "Never use <bits/mman.h> directly; include <sys/mman.h> instead."
2983 +/* The following definitions basically come from the kernel headers.
2984 + But the kernel header is not namespace clean. */
2987 +/* Protections are chosen from these bits, OR'd together. The
2988 + implementation does not necessarily support PROT_EXEC or PROT_WRITE
2989 + without PROT_READ. The only guarantees are that no writing will be
2990 + allowed without PROT_WRITE and no access will be allowed for PROT_NONE. */
2992 +#define PROT_READ 0x1 /* Page can be read. */
2993 +#define PROT_WRITE 0x2 /* Page can be written. */
2994 +#define PROT_EXEC 0x4 /* Page can be executed. */
2995 +#define PROT_NONE 0x0 /* Page can not be accessed. */
2996 +#define PROT_GROWSDOWN 0x01000000 /* Extend change to start of
2997 + growsdown vma (mprotect only). */
2998 +#define PROT_GROWSUP 0x02000000 /* Extend change to start of
2999 + growsup vma (mprotect only). */
3001 +/* Sharing types (must choose one and only one of these). */
3002 +#define MAP_SHARED 0x01 /* Share changes. */
3003 +#define MAP_PRIVATE 0x02 /* Changes are private. */
3005 +# define MAP_TYPE 0x0f /* Mask for type of mapping. */
3009 +#define MAP_FIXED 0x10 /* Interpret addr exactly. */
3011 +# define MAP_FILE 0
3012 +# define MAP_ANONYMOUS 0x20 /* Don't use a file. */
3013 +# define MAP_ANON MAP_ANONYMOUS
3016 +/* These are Linux-specific. */
3018 +# define MAP_GROWSDOWN 0x00100 /* Stack-like segment. */
3019 +# define MAP_DENYWRITE 0x00800 /* ETXTBSY */
3020 +# define MAP_EXECUTABLE 0x01000 /* Mark it as an executable. */
3021 +# define MAP_LOCKED 0x02000 /* Lock the mapping. */
3022 +# define MAP_NORESERVE 0x04000 /* Don't check for reservations. */
3023 +# define MAP_POPULATE 0x08000 /* Populate (prefault) pagetables. */
3024 +# define MAP_NONBLOCK 0x10000 /* Do not block on IO. */
3027 +/* Flags to `msync'. */
3028 +#define MS_ASYNC 1 /* Sync memory asynchronously. */
3029 +#define MS_SYNC 4 /* Synchronous memory sync. */
3030 +#define MS_INVALIDATE 2 /* Invalidate the caches. */
3032 +/* Flags for `mlockall'. */
3033 +#define MCL_CURRENT 1 /* Lock all currently mapped pages. */
3034 +#define MCL_FUTURE 2 /* Lock all additions to address
3037 +/* Flags for `mremap'. */
3039 +# define MREMAP_MAYMOVE 1
3040 +# define MREMAP_FIXED 2
3043 +/* Advice to `madvise'. */
3045 +# define MADV_NORMAL 0 /* No further special treatment. */
3046 +# define MADV_RANDOM 1 /* Expect random page references. */
3047 +# define MADV_SEQUENTIAL 2 /* Expect sequential page references. */
3048 +# define MADV_WILLNEED 3 /* Will need these pages. */
3049 +# define MADV_DONTNEED 4 /* Don't need these pages. */
3050 +# define MADV_DONTFORK 10 /* Do not inherit across fork. */
3051 +# define MADV_DOFORK 11 /* Do inherit across fork. */
3054 +/* The POSIX people had to invent similar names for the same things. */
3055 +#ifdef __USE_XOPEN2K
3056 +# define POSIX_MADV_NORMAL 0 /* No further special treatment. */
3057 +# define POSIX_MADV_RANDOM 1 /* Expect random page references. */
3058 +# define POSIX_MADV_SEQUENTIAL 2 /* Expect sequential page references. */
3059 +# define POSIX_MADV_WILLNEED 3 /* Will need these pages. */
3060 +# define POSIX_MADV_DONTNEED 4 /* Don't need these pages. */
3063 +++ b/libc/sysdeps/linux/ubicom32/bits/setjmp.h
3065 +/* Define the machine-dependent type `jmp_buf'. Ubicom32 version.
3066 + Copyright (C) 1992,93,95,97,2000 Free Software Foundation, Inc.
3067 + This file is part of the GNU C Library.
3069 + The GNU C Library is free software; you can redistribute it and/or
3070 + modify it under the terms of the GNU Lesser General Public
3071 + License as published by the Free Software Foundation; either
3072 + version 2.1 of the License, or (at your option) any later version.
3074 + The GNU C Library is distributed in the hope that it will be useful,
3075 + but WITHOUT ANY WARRANTY; without even the implied warranty of
3076 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3077 + Lesser General Public License for more details.
3079 + You should have received a copy of the GNU Lesser General Public
3080 + License along with the GNU C Library; if not, write to the Free
3081 + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
3082 + 02111-1307 USA. */
3084 +#ifndef _BITS_SETJMP_H
3085 +#define _BITS_SETJMP_H 1
3087 +#if !defined _SETJMP_H && !defined _PTHREAD_H
3088 +# error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
3093 + * This is the structure where we are going to save D10-D13, A0, A1, A2, A5, A6 and SP(A7).
3094 + * A5 is the return address. Call to setjmp will save these. Call to longjmp will return
3095 + * Control to the address in A5.
3097 +typedef struct setjmp_save_struct {
3098 + unsigned long d10; /* D10 */
3099 + unsigned long d11; /* D11 */
3100 + unsigned long d12; /* D12 */
3101 + unsigned long d13; /* D13 */
3102 + unsigned long a1; /* A1 */
3103 + unsigned long a2; /* A2 */
3104 + unsigned long a5; /* A5 return address. */
3105 + unsigned long a6; /* A6 */
3106 + unsigned long sp; /* A7 stack pointer. */
3111 +/* Test if longjmp to JMPBUF would unwind the frame
3112 + containing a local variable at ADDRESS. */
3113 +#define _JMPBUF_UNWINDS(jmpbuf, address) \
3114 + ((void *) (address) < (void*)(jmpbuf)->sp)
3116 +#endif /* bits/setjmp.h */
3118 +++ b/libc/sysdeps/linux/ubicom32/bits/stackinfo.h
3120 +/* Copyright (C) 1999 Free Software Foundation, Inc.
3121 + This file is part of the GNU C Library.
3123 + The GNU C Library is free software; you can redistribute it and/or
3124 + modify it under the terms of the GNU Lesser General Public
3125 + License as published by the Free Software Foundation; either
3126 + version 2.1 of the License, or (at your option) any later version.
3128 + The GNU C Library is distributed in the hope that it will be useful,
3129 + but WITHOUT ANY WARRANTY; without even the implied warranty of
3130 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3131 + Lesser General Public License for more details.
3133 + You should have received a copy of the GNU Lesser General Public
3134 + License along with the GNU C Library; if not, write to the Free
3135 + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
3136 + 02111-1307 USA. */
3138 +/* This file contains a bit of information about the stack allocation
3139 + of the processor. */
3141 +#ifndef _STACKINFO_H
3142 +#define _STACKINFO_H 1
3144 +/* On Ubicom32 the stack grows down. */
3145 +#define _STACK_GROWS_DOWN 1
3147 +#endif /* stackinfo.h */
3149 +++ b/libc/sysdeps/linux/ubicom32/bits/syscalls.h
3151 +#ifndef _BITS_SYSCALLS_H
3152 +#define _BITS_SYSCALLS_H
3154 +# error "Never use <bits/syscalls.h> directly; include <sys/syscall.h> instead."
3157 +/* m68k headers does stupid stuff with __NR_iopl / __NR_vm86:
3158 + * #define __NR_iopl not supported
3159 + * #define __NR_vm86 not supported
3164 +#ifndef __ASSEMBLER__
3168 +/* Linux takes system call arguments in registers:
3170 + syscall number %d8
3179 +#define __syscall_return(type, res) \
3181 + if (likely((unsigned long)(res) < (unsigned long)(-125))) { \
3182 + return (type) (res); \
3184 + /* avoid using res which is declared to be in register d0; \
3185 + errno might expand to a function call and clobber it. */ \
3186 + int __err = -(res); \
3187 + __set_errno(__err); \
3188 + return (type) -1; \
3192 +extern void __illegally_sized_syscall_arg1 (void);
3193 +extern void __illegally_sized_syscall_arg2 (void);
3194 +extern void __illegally_sized_syscall_arg3 (void);
3195 +extern void __illegally_sized_syscall_arg4 (void);
3196 +extern void __illegally_sized_syscall_arg5 (void);
3197 +extern void __illegally_sized_syscall_arg6 (void);
3199 +#define __loadargs_0(name, dummy) \
3202 +#define __loadargs_1(name, __arg1) \
3203 + __loadargs_0(name, 0); \
3204 + if (__builtin_classify_type (__arg1) != 5 && sizeof (__arg1) > 4) \
3205 + __illegally_sized_syscall_arg1 (); \
3206 + d0_retval = (long int) __arg1
3207 +#define __loadargs_2(name, __arg1, __arg2) \
3208 + __loadargs_1(name, __arg1); \
3209 + if (__builtin_classify_type (__arg2) != 5 && sizeof (__arg2) > 4) \
3210 + __illegally_sized_syscall_arg2 (); \
3211 + d1 = (long int) __arg2
3213 +#define __loadargs_3(name, __arg1, __arg2, __arg3) \
3214 + __loadargs_2(name, __arg1, __arg2); \
3215 + if (__builtin_classify_type (__arg3) != 5 && sizeof (__arg3) > 4) \
3216 + __illegally_sized_syscall_arg3 (); \
3217 + d2 = (long int) __arg3
3219 +#define __loadargs_4(name, __arg1, __arg2, __arg3, __arg4) \
3220 + __loadargs_3(name, __arg1, __arg2, __arg3); \
3221 + if (__builtin_classify_type (__arg4) != 5 && sizeof (__arg4) > 4) \
3222 + __illegally_sized_syscall_arg4 (); \
3223 + d3 = (long int)__arg4
3225 +#define __loadargs_5(name, __arg1, __arg2, __arg3, __arg4, __arg5) \
3226 + __loadargs_4(name, __arg1, __arg2, __arg3, __arg4); \
3227 + if (__builtin_classify_type (__arg5) != 5 && sizeof (__arg5) > 4) \
3228 + __illegally_sized_syscall_arg5 (); \
3229 + d4 = (long int)__arg5
3231 +#define __loadargs_6(name, __arg1, __arg2, __arg3, __arg4, __arg5, __arg6) \
3232 + __loadargs_5(name, __arg1, __arg2, __arg3, __arg4, __arg5); \
3233 + if (__builtin_classify_type (__arg6) != 5 && sizeof (__arg6) > 4) \
3234 + __illegally_sized_syscall_arg6 (); \
3235 + d5 = (long int)__arg6
3237 +#define __internal_syscall_body(name, nr, args...) \
3238 + register long int d0_retval __asm__ ("d0"); \
3239 + register long int d1 __asm__ ("d1"); \
3240 + register long int d2 __asm__ ("d2"); \
3241 + register long int d3 __asm__ ("d3"); \
3242 + register long int d4 __asm__ ("d4"); \
3243 + register long int d5 __asm__ ("d5"); \
3244 + register long int d8 __asm__ ("d8"); \
3245 + __loadargs_##nr (__NR_##name, args); \
3246 + __asm__ __volatile__ ( \
3247 + " moveai a5, #%%hi(0x40400000)\n\t" \
3248 + " calli a5, 16(a5)\n\t" \
3249 + : "+r" (d0_retval), "+r" (d1), "+r" (d2), "+r" (d3), \
3250 + "+r" (d4), "+r" (d5), "+r" (d8) : \
3251 + : "cc", "memory", \
3252 + "acc0_lo", "acc0_hi", "acc1_lo", "acc1_hi", \
3254 + "a0", "a3", "a4", "a5", \
3255 + "d6", "d7", "d9", "d14", "d15" \
3258 +#define INLINE_SYSCALL(name, nr, args...) \
3260 + __internal_syscall_body(name, nr, args); \
3261 + if (unlikely((unsigned long)(d0_retval) >= (unsigned long)(-125))) { \
3262 + __set_errno (-d0_retval); \
3263 + d0_retval = -1L; \
3270 +#define _syscall0(type,name) \
3272 + __internal_syscall_body(name, 0); \
3273 + __syscall_return(type, d0_retval); \
3277 +#define _syscall1(type,name,type1,arg1) \
3278 +type name(type1 arg1){ \
3279 + __internal_syscall_body(name, 1, arg1); \
3280 + __syscall_return(type, d0_retval); \
3284 +#define _syscall2(type,name,type1,arg1,type2,arg2) \
3285 +type name(type1 arg1, type2 arg2){ \
3286 + __internal_syscall_body(name, 2, arg1, arg2); \
3287 + __syscall_return(type, d0_retval); \
3291 +#define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \
3292 +type name(type1 arg1, type2 arg2, type3 arg3){ \
3293 + __internal_syscall_body(name, 3, arg1, arg2, arg3); \
3294 + __syscall_return(type, d0_retval); \
3298 +#define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \
3299 +type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4){ \
3300 + __internal_syscall_body(name, 4, arg1, arg2, arg3, arg4); \
3301 + __syscall_return(type, d0_retval); \
3305 +#define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5) \
3306 +type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5){ \
3307 + __internal_syscall_body(name, 5, arg1, arg2, arg3, arg4, arg5); \
3308 + __syscall_return(type, d0_retval); \
3312 +#define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5,type6,arg6) \
3313 +type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5, type6 arg6){ \
3314 + __internal_syscall_body(name, 6, arg1, arg2, arg3, arg4, arg5, arg6); \
3315 + __syscall_return(type, d0_retval); \
3318 +#endif /* __ASSEMBLER__ */
3319 +#endif /* _BITS_SYSCALLS_H */
3321 +++ b/libc/sysdeps/linux/ubicom32/bits/uClibc_arch_features.h
3324 + * Track misc arch-specific features that aren't config options
3327 +#ifndef _BITS_UCLIBC_ARCH_FEATURES_H
3328 +#define _BITS_UCLIBC_ARCH_FEATURES_H
3330 +/* instruction used when calling abort() to kill yourself */
3331 +/*#define __UCLIBC_ABORT_INSTRUCTION__ "asm instruction"*/
3332 +#undef __UCLIBC_ABORT_INSTRUCTION__
3334 +/* can your target use syscall6() for mmap ? */
3335 +#undef __UCLIBC_MMAP_HAS_6_ARGS__
3337 +/* does your target use syscall4() for truncate64 ? (32bit arches only) */
3338 +#undef __UCLIBC_TRUNCATE64_HAS_4_ARGS__
3340 +/* does your target have a broken create_module() ? */
3341 +#undef __UCLIBC_BROKEN_CREATE_MODULE__
3343 +/* does your target have to worry about older [gs]etrlimit() ? */
3344 +#undef __UCLIBC_HANDLE_OLDER_RLIMIT__
3346 +/* does your target prefix all symbols with an _ ? */
3347 +#define __UCLIBC_NO_UNDERSCORES__
3349 +/* does your target have an asm .set ? */
3350 +#define __UCLIBC_HAVE_ASM_SET_DIRECTIVE__
3352 +/* define if target doesn't like .global */
3353 +#undef __UCLIBC_ASM_GLOBAL_DIRECTIVE__
3355 +/* define if target supports .weak */
3356 +#define __UCLIBC_HAVE_ASM_WEAK_DIRECTIVE__
3358 +/* define if target supports .weakext */
3359 +#undef __UCLIBC_HAVE_ASM_WEAKEXT_DIRECTIVE__
3361 +/* needed probably only for ppc64 */
3362 +#undef __UCLIBC_HAVE_ASM_GLOBAL_DOT_NAME__
3364 +/* define if target supports IEEE signed zero floats */
3365 +#define __UCLIBC_HAVE_SIGNED_ZERO__
3367 +#endif /* _BITS_UCLIBC_ARCH_FEATURES_H */
3369 +++ b/libc/sysdeps/linux/ubicom32/bits/wordsize.h
3371 +/* Copyright (C) 1999 Free Software Foundation, Inc.
3372 + This file is part of the GNU C Library.
3374 + The GNU C Library is free software; you can redistribute it and/or
3375 + modify it under the terms of the GNU Lesser General Public
3376 + License as published by the Free Software Foundation; either
3377 + version 2.1 of the License, or (at your option) any later version.
3379 + The GNU C Library is distributed in the hope that it will be useful,
3380 + but WITHOUT ANY WARRANTY; without even the implied warranty of
3381 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3382 + Lesser General Public License for more details.
3384 + You should have received a copy of the GNU Lesser General Public
3385 + License along with the GNU C Library; if not, write to the Free
3386 + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
3387 + 02111-1307 USA. */
3389 +#define __WORDSIZE 32
3391 +++ b/libc/sysdeps/linux/ubicom32/clone.S
3393 +#include <sys/syscall.h>
3395 + .global __syscall_error
3397 +/* int _clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg); */
3399 + .type clone,@function
3402 + /* Sanity check arguments. */
3403 + sub.4 #0, #0, d0 /* Test if fn is zero. */
3404 + jmpeq.f 1f /* arg bad */
3405 + sub.4 #0, #0, d1 /* Test if child_stack is zero. */
3406 + jmpeq.f 1f /* arg bad */
3408 + /* Set up child_stack frame.. arg and fn */
3410 + move.4 -4(a3)++, d3 /* push 'arg' to child stack */
3411 + move.4 -4(a3)++, d0 /* push fn to child stack, this will become a5
3414 + move.4 -4(sp)++, a5 /* push a5 to our stack */
3417 + * The syscall clone is clone(int flags, void *child_stack) so we set
3420 + move.4 d0, d2 /* Move flags to d0 */
3422 + /* Do Clone syscall */
3423 + movei d8, #__NR_clone
3424 + moveai a5, #%hi(0x40400000)
3425 + calli a5, 0x10(a5)
3426 + move.4 a5, (sp)4++ /* pop a5 from stack */
3428 + /* Clone Complete */
3429 + cmpi d0, #0 /* Test if d0 is less than zero. If it is we
3430 + * return the error */
3431 + jmplt.f 2f /* If return is less than we had an error */
3432 + jmpeq.f 3f /* If return is 0 we are in the clone, jump to
3434 + ret a5 /* d0 is pid */
3436 + /* Invalid Value */
3437 +1: movei d0, #-22 /* EINVAL */
3439 + /* Call syscall Error */
3440 +2: sub.4 d0, #0, d0 /* d0 = -d0 */
3441 +#if defined(__UBICOM32_FDPIC__)
3442 + call a3, __syscall_error
3444 + moveai a3, #%hi(__syscall_error)
3445 + calli a3, %lo(__syscall_error)(a3)
3447 + /* Child Thread Start */
3449 +#if defined(__UBICOM32_FDPIC__)
3450 + /* a5 actually contains a function descriptor for fdpic */
3451 + move.4 a0, 4(a5) /* set GOT for this function */
3452 + move.4 a5, 0(a5) /* get address of entry point */
3454 + move.4 d0, (sp)4++ /* pop 'arg' to stack */
3456 + movei d8, #__NR_exit
3457 + moveai a3, #%hi(0x40400000)
3458 + calli a3, 0x10(a3)
3460 + .size clone, . - clone
3461 + .global __GI_clone
3462 + .hidden __GI_clone
3463 + .set __GI_clone,clone
3465 +++ b/libc/sysdeps/linux/ubicom32/crt1.S
3467 +/* Startup code compliant to the ELF m68k ABI.
3468 + Copyright (C) 1996, 1997, 1998, 2001, 2002 Free Software Foundation, Inc.
3469 + This file is part of the GNU C Library.
3471 + The GNU C Library is free software; you can redistribute it and/or
3472 + modify it under the terms of the GNU Lesser General Public
3473 + License as published by the Free Software Foundation; either
3474 + version 2.1 of the License, or (at your option) any later version.
3476 + In addition to the permissions in the GNU Lesser General Public
3477 + License, the Free Software Foundation gives you unlimited
3478 + permission to link the compiled version of this file with other
3479 + programs, and to distribute those programs without any restriction
3480 + coming from the use of this file. (The GNU Lesser General Public
3481 + License restrictions do apply in other respects; for example, they
3482 + cover modification of the file, and distribution when not linked
3483 + into another program.)
3485 + Note that people who make modified versions of this file are not
3486 + obligated to grant this special exception for their modified
3487 + versions; it is their choice whether to do so. The GNU Lesser
3488 + General Public License gives permission to release a modified
3489 + version without this exception; this exception also makes it
3490 + possible to release a modified version which carries forward this
3493 + The GNU C Library is distributed in the hope that it will be useful,
3494 + but WITHOUT ANY WARRANTY; without even the implied warranty of
3495 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3496 + Lesser General Public License for more details.
3498 + You should have received a copy of the GNU Lesser General Public
3499 + License along with the GNU C Library; if not, write to the Free
3500 + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
3501 + 02111-1307 USA. */
3503 +#include <features.h>
3505 +/* This is the canonical entry point, usually the first thing in the text
3506 + segment. The SVR4/m68k ABI says that when the entry point runs,
3507 + most registers' values are unspecified, except for:
3509 + %a1 Contains a function pointer to be registered with `atexit'.
3510 + This is how the dynamic linker arranges to have DT_FINI
3511 + functions called for shared libraries that have been loaded
3512 + before this code runs.
3514 + %sp The stack contains the arguments and environment:
3518 + (4*argc)(%sp) NULL
3519 + (4*(argc+1))(%sp) envp[0]
3523 + The uclinux conventions are different. %a1 is not defined on entry
3524 + and the stack is laid out as follows:
3533 + .type main,@function
3534 + .type _init,%function
3535 + .type _fini,%function
3536 +#ifndef __UCLIBC_CTOR_DTOR__
3541 + .global __uClibc_main;
3542 + .type __uClibc_main,@function;
3543 + .type _start,@function
3546 +#if defined(__UBICOM32_FDPIC__) && !defined(L_Scrt1)
3547 + /* P0 contains a pointer to the program's load map. */
3550 + move.4 d0, d1 ; load exec_map_addr
3551 + moveai a4, #%hi(.Lcall)
3552 + lea.1 d15, %lo(.Lcall)(a4)
3553 + sub.4 d15, a3, d15 ; difference between .Lcall and actual address of .Lcall
3554 + moveai a3, #%hi(__ROFIXUP_LIST__)
3555 + lea.1 d1, %lo(__ROFIXUP_LIST__)(a3)
3556 + moveai a3, #%hi(__ROFIXUP_END__)
3557 + lea.1 d2, %lo(__ROFIXUP_END__)(a3)
3560 + call a5, __self_reloc ; returns GOT in d0
3561 + move.4 a0, d0 ; set GOT
3565 + all this is setup to make the following call.
3567 + void __uClibc_main(
3568 + d0 - int (*main)(int, char **, char **),
3569 + d1 - int argc, (d1)
3571 + d3 - void (*app_init)(void),
3572 + d4 - void (*app_fini)(void),
3573 + d5 - void (*rtld_fini)(void),
3574 + d6 - void *stack_end
3579 + * Load pointer to main into d0
3581 +#ifdef __UBICOM32_FDPIC__
3582 + movei d0, #%got_funcdesc_lo(main)
3583 + move.4 d0, (a0, d0)
3585 + moveai a3, #%hi(main)
3586 + lea.1 d0, %lo(main)(a3)
3590 + * Grab the environment stuff from stack and set up d1, d2 with it.
3593 +#ifdef __UBICOM32_FDPIC__
3594 + /* For FDPIC the calling convention is different than flat */
3600 +#ifdef __UCLIBC_CTOR_DTOR__
3602 + * Load pointer to _init into d3
3604 +#ifdef __UBICOM32_FDPIC__
3605 + movei d3, #%got_funcdesc_lo(_init)
3606 + move.4 d3, (a0, d3)
3608 + moveai a3, #%hi(_init)
3609 + lea.1 d3, %lo(_init)(a3)
3613 + * Load pointer to _fini into d4
3615 +#ifdef __UBICOM32_FDPIC__
3616 + movei d4, #%got_funcdesc_lo(_fini)
3617 + move.4 d4, (a0, d4)
3619 + moveai a3, #%hi(_fini)
3620 + lea.1 d4, %lo(_fini)(a3)
3623 +#else /* !__UCLIBC_CTOR_DTOR__ */
3624 + move.4 d3, #0 ; _init
3625 + move.4 d4, #0 ; _fini
3628 +#ifdef __UBICOM32_FDPIC__
3629 + move.4 d5, a1 ; ldso _fini funcdesc (see dl-startup.h)
3631 + movei d5, #0 ; rtld_fini (not used)
3634 + move.4 d6, sp ; Stack End.
3636 + /* Call the user's main function, and exit with its value. But
3637 + let the libc call main. */
3638 +#ifdef __UBICOM32_FDPIC__
3639 + call a5, __uClibc_main
3641 + moveai a5, #%hi(__uClibc_main)
3642 + calli a5, %lo(__uClibc_main)(a5)
3645 + bkpt #-1 ; Crash if somehow `exit' does return.
3647 +++ b/libc/sysdeps/linux/ubicom32/crti.S
3649 +/* Specialized code needed to support construction and destruction of
3650 + file-scope objects in C++ and Java code, and to support exception handling.
3651 + Copyright (C) 1999 Free Software Foundation, Inc.
3652 + Contributed by Charles-Antoine Gauthier (charles.gauthier@iit.nrc.ca).
3654 +This file is part of GCC.
3656 +GCC is free software; you can redistribute it and/or modify
3657 +it under the terms of the GNU General Public License as published by
3658 +the Free Software Foundation; either version 2, or (at your option)
3661 +GCC is distributed in the hope that it will be useful,
3662 +but WITHOUT ANY WARRANTY; without even the implied warranty of
3663 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3664 +GNU General Public License for more details.
3666 +You should have received a copy of the GNU General Public License
3667 +along with GCC; see the file COPYING. If not, write to
3668 +the Free Software Foundation, 59 Temple Place - Suite 330,
3669 +Boston, MA 02111-1307, USA. */
3671 +/* As a special exception, if you link this library with files
3672 + compiled with GCC to produce an executable, this does not cause
3673 + the resulting executable to be covered by the GNU General Public License.
3674 + This exception does not however invalidate any other reasons why
3675 + the executable file might be covered by the GNU General Public License. */
3678 + * This file just supplies function prologues for the .init and .fini
3679 + * sections. It is linked in before crtbegin.o.
3682 + .ident "GNU C crti.o"
3687 + .type _init, @function
3689 + move.4 -4(sp)++, a5
3690 +#ifdef __UBICOM32_FDPIC__
3691 + move.4 -4(sp)++, a0
3697 + .type _fini, @function
3699 + move.4 -4(sp)++, a5
3700 +#ifdef __UBICOM32_FDPIC__
3701 + move.4 -4(sp)++, a0
3704 +++ b/libc/sysdeps/linux/ubicom32/crtn.S
3706 +/* Specialized code needed to support construction and destruction of
3707 + file-scope objects in C++ and Java code, and to support exception handling.
3708 + Copyright (C) 1999 Free Software Foundation, Inc.
3709 + Contributed by Charles-Antoine Gauthier (charles.gauthier@iit.nrc.ca).
3711 +This file is part of GCC.
3713 +GCC is free software; you can redistribute it and/or modify
3714 +it under the terms of the GNU General Public License as published by
3715 +the Free Software Foundation; either version 2, or (at your option)
3718 +GCC is distributed in the hope that it will be useful,
3719 +but WITHOUT ANY WARRANTY; without even the implied warranty of
3720 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3721 +GNU General Public License for more details.
3723 +You should have received a copy of the GNU General Public License
3724 +along with GCC; see the file COPYING. If not, write to
3725 +the Free Software Foundation, 59 Temple Place - Suite 330,
3726 +Boston, MA 02111-1307, USA. */
3728 +/* As a special exception, if you link this library with files
3729 + compiled with GCC to produce an executable, this does not cause
3730 + the resulting executable to be covered by the GNU General Public License.
3731 + This exception does not however invalidate any other reasons why
3732 + the executable file might be covered by the GNU General Public License. */
3735 + * This file supplies function epilogues for the .init and .fini sections.
3736 + * It is linked in after all other files.
3740 + .ident "GNU C crtn.o"
3743 +#ifdef __UBICOM32_FDPIC__
3744 + move.4 a0, (sp)4++
3749 +#ifdef __UBICOM32_FDPIC__
3750 + move.4 a0, (sp)4++
3754 +++ b/libc/sysdeps/linux/ubicom32/crtreloc.c
3756 +/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
3757 + written by Alexandre Oliva <aoliva@redhat.com>
3758 +This file is part of the GNU C Library.
3760 +The GNU C Library is free software; you can redistribute it and/or
3761 +modify it under the terms of the GNU Lesser General Public License as
3762 +published by the Free Software Foundation; either version 2.1 of the
3763 +License, or (at your option) any later version.
3765 +In addition to the permissions in the GNU Lesser General Public
3766 +License, the Free Software Foundation gives you unlimited
3767 +permission to link the compiled version of this file with other
3768 +programs, and to distribute those programs without any restriction
3769 +coming from the use of this file. (The GNU Lesser General Public
3770 +License restrictions do apply in other respects; for example, they
3771 +cover modification of the file, and distribution when not linked
3772 +into another program.)
3774 +The GNU C Library is distributed in the hope that it will be useful,
3775 +but WITHOUT ANY WARRANTY; without even the implied warranty of
3776 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3777 +Library General Public License for more details.
3779 +You should have received a copy of the GNU Lesser General Public
3780 +License along with the GNU C Library; see the file COPYING.LIB. If
3781 +not, write to the Free Software Foundation, Inc., 675 Mass Ave,
3782 +Cambridge, MA 02139, USA. */
3784 +#ifdef __UBICOM32_FDPIC__
3786 +#include <sys/types.h>
3789 +/* This file is to be compiled into crt object files, to enable
3790 + executables to easily self-relocate. */
3797 +/* Compute the runtime address of pointer in the range [p,e), and then
3798 + map the pointer pointed by it. */
3799 +static __always_inline void ***
3800 +reloc_range_indirect (void ***p, void ***e,
3801 + const struct elf32_fdpic_loadmap *map)
3805 + if (*p != (void **)-1)
3807 + void *ptr = __reloc_pointer (*p, map);
3808 + if (ptr != (void *)-1)
3811 + if ((long)ptr & 3)
3813 + unsigned char *c = ptr;
3815 + unsigned long v = 0;
3816 + for (i = 0; i < 4; i++)
3817 + v |= c[i] << 8 * i;
3821 + pt = *(void**)ptr;
3822 + pt = __reloc_pointer (pt, map);
3823 + if ((long)ptr & 3)
3825 + unsigned char *c = ptr;
3827 + unsigned long v = (unsigned long)pt;
3828 + for (i = 0; i < 4; i++, v >>= 8)
3832 + *(void**)ptr = pt;
3840 +/* Call __reloc_range_indirect for the given range except for the last
3841 + entry, whose contents are only relocated. It's expected to hold
3843 +void* attribute_hidden
3844 +__self_reloc (const struct elf32_fdpic_loadmap *map,
3845 + void ***p, void ***e)
3847 + p = reloc_range_indirect (p, e-1, map);
3852 + return __reloc_pointer (*p, map);
3856 +/* These are other functions that might be useful, but that we don't
3859 +/* Remap pointers in [p,e). */
3860 +static __always_inline void**
3861 +reloc_range (void **p, void **e,
3862 + const struct elf32_fdpic_loadmap *map)
3866 + *p = __reloc_pointer (*p, map);
3872 +/* Remap p, adjust e by the same offset, then map the pointers in the
3873 + range determined by them. */
3874 +void attribute_hidden
3875 +__reloc_range (const struct elf32_fdpic_loadmap *map,
3876 + void **p, void **e)
3880 + p = __reloc_pointer (p, map);
3882 + reloc_range (p, e, map);
3885 +/* Remap p, adjust e by the same offset, then map pointers referenced
3886 + by the (unadjusted) pointers in the range. Return the relocated
3887 + value of the last pointer in the range. */
3888 +void* attribute_hidden
3889 +__reloc_range_indirect (const struct elf32_fdpic_loadmap *map,
3890 + void ***p, void ***e)
3894 + p = __reloc_pointer (p, map);
3896 + return reloc_range_indirect (p, e, map);
3900 +#endif /* __UBICOM32_FDPIC__ */
3902 +++ b/libc/sysdeps/linux/ubicom32/setjmp.S
3904 +/* Setjmp for Ubicom32 */
3907 + .type _setjmp,@function
3909 + movea a3, d0 ; A3 now holds the jmp buf that was passed in.
3910 + move.4 (a3)4++, d10
3911 + move.4 (a3)4++, d11
3912 + move.4 (a3)4++, d12
3913 + move.4 (a3)4++, d13
3914 + move.4 (a3)4++, a1
3915 + move.4 (a3)4++, a2
3916 + move.4 (a3)4++, a5
3917 + move.4 (a3)4++, a6
3918 + move.4 (a3)4++, a7
3922 + .size _setjmp, . - _setjmp
3925 + * __sigsetjmp for Ubicom32
3926 + * d0 holds sigjmp_buf and d1 holds the savemask. We will save the frame and then just call __sigjmp_save to do the mask save.
3928 + .global __sigsetjmp
3929 + .type __sigsetjmp,@function
3931 + movea a3, d0 ; A3 now holds the jmp buf that was passed in.
3932 + move.4 (a3)4++, d10
3933 + move.4 (a3)4++, d11
3934 + move.4 (a3)4++, d12
3935 + move.4 (a3)4++, d13
3936 + move.4 (a3)4++, a1
3937 + move.4 (a3)4++, a2
3938 + move.4 (a3)4++, a5
3939 + move.4 (a3)4++, a6
3940 + move.4 (a3)4++, a7
3942 + ;; The frame has been saved. Call _sigjmp_save to get sigmask saved. a5 still has the return address and it will go back to that.
3943 +#if defined(__UBICOM32_FDPIC__)
3944 + call a3, __sigjmp_save
3946 + moveai a3, #%hi(__sigjmp_save)
3947 + calli a3, %lo(__sigjmp_save)(a3)
3949 + .size __sigjmp_save, . - __sigjmp_save
3952 + .type __longjmp,@function
3954 + movea a3, d0 ; A3 now holds the jmp buf that was passed in.
3955 + move.4 d10, (a3)4++
3956 + move.4 d11, (a3)4++
3957 + move.4 d12, (a3)4++
3958 + move.4 d13, (a3)4++
3959 + move.4 a1 , (a3)4++
3960 + move.4 a2 , (a3)4++
3961 + move.4 a5 , (a3)4++
3962 + move.4 a6 , (a3)4++
3963 + move.4 a7 , (a3)4++
3965 + sub.4 #0, #0, d1 ; Test if d1 is zero. If it is we have to return 1 other wise return content of d1
3967 + move.4 d0, d1 ; d1 is non zero load it into d0
3972 + .size __longjmp, . - __longjmp
3973 + .global __GI___longjmp
3974 + .hidden __GI___longjmp
3975 + .set __GI___longjmp,__longjmp
3977 +++ b/libc/sysdeps/linux/ubicom32/sys/procfs.h
3979 +/* Copyright (C) 1996, 1997, 1999, 2000 Free Software Foundation, Inc.
3980 + This file is part of the GNU C Library.
3982 + The GNU C Library is free software; you can redistribute it and/or
3983 + modify it under the terms of the GNU Lesser General Public
3984 + License as published by the Free Software Foundation; either
3985 + version 2.1 of the License, or (at your option) any later version.
3987 + The GNU C Library is distributed in the hope that it will be useful,
3988 + but WITHOUT ANY WARRANTY; without even the implied warranty of
3989 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3990 + Lesser General Public License for more details.
3992 + You should have received a copy of the GNU Lesser General Public
3993 + License along with the GNU C Library; if not, write to the Free
3994 + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
3995 + 02111-1307 USA. */
3997 +#ifndef _SYS_PROCFS_H
3998 +#define _SYS_PROCFS_H 1
4000 +/* This is somehow modelled after the file of the same name on SysVr4
4001 + systems. It provides a definition of the core file format for ELF
4004 +#include <features.h>
4005 +#include <signal.h>
4006 +#include <sys/time.h>
4007 +#include <sys/types.h>
4008 +#include <sys/ucontext.h>
4009 +#include <bits/wordsize.h>
4013 +#define ELF_NGREG 38
4019 + unsigned long pr_regs[32];
4020 + double pr_dregs[16];
4022 + unsigned long __unused;
4023 + unsigned long pr_fsr;
4024 + unsigned char pr_qcnt;
4025 + unsigned char pr_q_entrysize;
4026 + unsigned char pr_en;
4027 + unsigned int pr_q[64];
4030 +typedef unsigned long elf_greg_t;
4031 +typedef elf_greg_t elf_gregset_t[ELF_NGREG];
4035 + int si_signo; /* Signal number. */
4036 + int si_code; /* Extra code. */
4037 + int si_errno; /* Errno. */
4040 +/* Definitions to generate Intel SVR4-like core files. These mostly
4041 + have the same names as the SVR4 types with "elf_" tacked on the
4042 + front to prevent clashes with linux definitions, and the typedef
4043 + forms have been avoided. This is mostly like the SVR4 structure,
4044 + but more Linuxy, with things that Linux does not support and which
4045 + gdb doesn't really use excluded. Fields present but not used are
4046 + marked with "XXX". */
4047 +struct elf_prstatus
4049 + struct elf_siginfo pr_info; /* Info associated with signal. */
4050 + short int pr_cursig; /* Current signal. */
4051 + unsigned long int pr_sigpend; /* Set of pending signals. */
4052 + unsigned long int pr_sighold; /* Set of held signals. */
4057 + struct timeval pr_utime; /* User time. */
4058 + struct timeval pr_stime; /* System time. */
4059 + struct timeval pr_cutime; /* Cumulative user time. */
4060 + struct timeval pr_cstime; /* Cumulative system time. */
4061 + elf_gregset_t pr_reg; /* GP registers. */
4062 + int pr_fpvalid; /* True if math copro being used. */
4066 +#define ELF_PRARGSZ (80) /* Number of chars for args */
4068 +struct elf_prpsinfo
4070 + char pr_state; /* Numeric process state. */
4071 + char pr_sname; /* Char for pr_state. */
4072 + char pr_zomb; /* Zombie. */
4073 + char pr_nice; /* Nice val. */
4074 + unsigned long int pr_flag; /* Flags. */
4075 + unsigned short int pr_uid;
4076 + unsigned short int pr_gid;
4077 + int pr_pid, pr_ppid, pr_pgrp, pr_sid;
4078 + /* Lots missing */
4079 + char pr_fname[16]; /* Filename of executable. */
4080 + char pr_psargs[ELF_PRARGSZ]; /* Initial part of arg list. */
4084 +typedef void *psaddr_t;
4086 +/* Register sets. Linux has different names. */
4087 +typedef elf_gregset_t prgregset_t;
4088 +typedef elf_fpregset_t prfpregset_t;
4090 +/* We don't have any differences between processes and threads,
4091 + therefore have only one PID type. */
4092 +typedef __pid_t lwpid_t;
4095 +typedef struct elf_prstatus prstatus_t;
4096 +typedef struct elf_prpsinfo prpsinfo_t;
4100 +#endif /* sys/procfs.h */
4102 +++ b/libc/sysdeps/linux/ubicom32/sys/ucontext.h
4104 +/* Copyright (C) 1998, 1999 Free Software Foundation, Inc.
4105 + This file is part of the GNU C Library.
4107 + The GNU C Library is free software; you can redistribute it and/or
4108 + modify it under the terms of the GNU Lesser General Public
4109 + License as published by the Free Software Foundation; either
4110 + version 2.1 of the License, or (at your option) any later version.
4112 + The GNU C Library is distributed in the hope that it will be useful,
4113 + but WITHOUT ANY WARRANTY; without even the implied warranty of
4114 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
4115 + Lesser General Public License for more details.
4117 + You should have received a copy of the GNU Lesser General Public
4118 + License along with the GNU C Library; if not, write to the Free
4119 + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
4120 + 02111-1307 USA. */
4122 +#ifndef _SYS_UCONTEXT_H
4123 +#define _SYS_UCONTEXT_H 1
4125 +#include <features.h>
4126 +#include <signal.h>
4128 + * Location of the users' stored registers relative to R0.
4129 + * Usage is as an index into a gregset_t array or as u.u_ar0[XX].
4131 +#define REG_PSR (0)
4133 +#define REG_SPARE (2)
4134 +#define REG_WVALID (3)
4141 +#define REG_G7 (10)
4142 +#define REG_O0 (11)
4143 +#define REG_O1 (12)
4144 +#define REG_O2 (13)
4145 +#define REG_O3 (14)
4146 +#define REG_O4 (15)
4147 +#define REG_O5 (16)
4148 +#define REG_O6 (17)
4149 +#define REG_O7 (18)
4150 +#define REG_GLOBALS (19)
4153 + * A gregset_t is defined as an array type for compatibility with the reference
4154 + * source. This is important due to differences in the way the C language
4155 + * treats arrays and structures as parameters.
4157 + * Note that NGREG is really (sizeof (struct regs) / sizeof (greg_t)),
4158 + * but that the ABI defines it absolutely to be 21 (resp. 19).
4162 +typedef int greg_t;
4164 +typedef greg_t gregset_t[NGREG];
4167 + * The following structures define how a register window can appear on the
4168 + * stack. This structure is available (when required) through the `gwins'
4169 + * field of an mcontext (nested within ucontext). NIOS_MAXWINDOW is the
4170 + * maximum number of outstanding register windows defined in the NIOS
4171 + * architecture (*not* implementation).
4173 +#define NIOS_MAXREGWINDOW 31 /* max windows in NIOS arch. */
4176 + greg_t rw_local[8]; /* locals */
4177 + greg_t rw_in[8]; /* ins */
4180 +#define rw_fp rw_in[6] /* frame pointer */
4181 +#define rw_rtn rw_in[7] /* return address */
4183 +typedef struct gwindows
4186 + int *spbuf[NIOS_MAXREGWINDOW];
4187 + struct rwindow wbuf[NIOS_MAXREGWINDOW];
4192 + gregset_t gregs; /* general register set */
4193 + gwindows_t *gwins; /* POSSIBLE pointer to register windows */
4197 +/* Userlevel context. */
4198 +typedef struct ucontext
4200 + unsigned long uc_flags;
4201 + struct ucontext *uc_link;
4202 + __sigset_t uc_sigmask;
4204 + mcontext_t uc_mcontext;
4207 +#endif /* sys/ucontext.h */
4209 +++ b/libc/sysdeps/linux/ubicom32/syscall.c
4211 +/* vi: set sw=4 ts=4: */
4212 +/* syscall for ubicom32/uClibc
4214 + * Copyright (C) 2008 by Ubicom Inc.
4215 + * Copyright (C) 2002 by Erik Andersen <andersen@uclibc.org>
4217 + * This program is free software; you can redistribute it and/or modify it
4218 + * under the terms of the GNU Library General Public License as published by
4219 + * the Free Software Foundation; either version 2 of the License, or (at your
4220 + * option) any later version.
4222 + * This program is distributed in the hope that it will be useful, but WITHOUT
4223 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4224 + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
4225 + * for more details.
4227 + * You should have received a copy of the GNU Library General Public License
4228 + * along with this program; if not, write to the Free Software Foundation,
4229 + * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
4232 +#include <features.h>
4234 +#include <sys/types.h>
4235 +#include <sys/syscall.h>
4237 +extern long syscall(long sysnum, long a, long b, long c, long d, long e, long f);
4238 +long syscall(long sysnum, long a, long b, long c, long d, long e, long f)
4240 + int __NR_syscall_number = sysnum;
4241 + return (long) INLINE_SYSCALL(syscall_number, 6, a, b, c, d, e, f);
4244 +++ b/libc/sysdeps/linux/ubicom32/vfork.S
4246 +#include <sys/syscall.h>
4249 + .type vfork,@function
4252 + move.4 -4(sp)++, a5 ; Save return address on the stack.
4253 + movei d8, #__NR_vfork
4254 + moveai a3, #%hi(0x40400000)
4255 + calli a5, 0x10(a3)
4258 + * You get here only if the syscall bombed. If things had worked out the
4259 + * parent and child would have both returned to the instruction after
4262 + move.4 a5, (sp)4++ ; Pop the return address off the stack.
4267 + ;; We have an error.
4268 + sub.4 d0, #0, d0 ; d0 = -res. Call __set_errno with that.
4269 +#if defined(__UBICOM32_FDPIC__)
4270 + call a3, __syscall_error
4272 + moveai a3, #%hi(__syscall_error)
4273 + calli a3, %lo(__syscall_error)(a3) ; __syscall_error will return -1 and not come back here.
4277 + .size vfork, . - vfork
4278 + .global __GI_vfork
4279 + .hidden __GI_vfork
4280 + .set __GI_vfork,vfork
4281 --- a/libpthread/linuxthreads.old/pthread.c
4282 +++ b/libpthread/linuxthreads.old/pthread.c
4283 @@ -393,6 +393,10 @@ void __pthread_initialize_minimal(void)
4286 __libc_multiple_threads_ptr = __libc_pthread_init (ptr_pthread_functions);
4287 +#ifndef __ARCH_USE_MMU__
4288 + __pthread_initial_thread_tos =
4289 + (char *)(((long)CURRENT_STACK_FRAME + getpagesize()) & ~(getpagesize() - 1));
4290 +#endif /* __ARCH_USE_MMU__ */
4294 @@ -461,8 +465,11 @@ static void pthread_initialize(void)
4295 * __pthread_initial_thread_bos at address 0. These bounds are refined as we
4296 * malloc other stack frames such that they don't overlap. -StS
4298 - __pthread_initial_thread_tos =
4299 - (char *)(((long)CURRENT_STACK_FRAME + getpagesize()) & ~(getpagesize() - 1));
4300 + if (__pthread_initial_thread_tos == NULL) {
4301 + __pthread_initial_thread_tos =
4302 + (char *)(((long)CURRENT_STACK_FRAME + getpagesize()) & ~(getpagesize() - 1));
4305 __pthread_initial_thread_bos = (char *) 1; /* set it non-zero so we know we have been here */
4306 PDEBUG("initial thread stack bounds: bos=%p, tos=%p\n",
4307 __pthread_initial_thread_bos, __pthread_initial_thread_tos);
4309 +++ b/libpthread/linuxthreads.old/sysdeps/ubicom32/pt-machine.h
4311 +/* Machine-dependent pthreads configuration and inline functions.
4313 + Copyright (C) 1996, 1997, 1998, 2000, 2002, 2003, 2004
4314 + Free Software Foundation, Inc.
4315 + This file is part of the GNU C Library.
4316 + Contributed by Ralf Baechle <ralf@gnu.org>.
4317 + Based on the Alpha version by Richard Henderson <rth@tamu.edu>.
4319 + The GNU C Library is free software; you can redistribute it and/or
4320 + modify it under the terms of the GNU Lesser General Public License as
4321 + published by the Free Software Foundation; either version 2.1 of the
4322 + License, or (at your option) any later version.
4324 + The GNU C Library is distributed in the hope that it will be useful,
4325 + but WITHOUT ANY WARRANTY; without even the implied warranty of
4326 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
4327 + Lesser General Public License for more details.
4329 + You should have received a copy of the GNU Lesser General Public
4330 + License along with the GNU C Library; see the file COPYING.LIB. If
4331 + not, write to the Free Software Foundation, Inc.,
4332 + 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
4334 +#ifndef _PT_MACHINE_H
4335 +#define _PT_MACHINE_H 1
4337 +#include <features.h>
4340 + * XXX try to make this inline
4342 +extern long int testandset (int *spinlock);
4347 +/* Spinlock implementation; required. */
4350 + * testandset() is the basis for the pthread spin lock.
4352 + * This implementation only requires that we 'set' the state of *spinlock. As
4353 + * bset is allows us to atomically 'testandset' a single bit define our 'set' is
4354 + * such that we will set bit 0 (ignoring all other bits, which should also be
4356 + * Return value of 1 implies that the bit was already set and is still
4358 + * Return value of 0 implies that the bit was not previously set but it
4362 +testandset (int *spinlock)
4365 + __asm__ volatile (
4366 + " move.4 %0, #0 \n\t" /* Assume that the bit is not currently set */
4367 + " bset %1, %1, #0 \n\t" /* Attempt to 'set' bit 0 */
4368 + " jmpeq.t 1f \n\t"
4369 + " move.4 %0, #1 \n\t" /* Bit was already set, so return 1 */
4371 + : "=r"(ret), "+U4"(*spinlock)
4378 +#endif /* pt-machine.h */
4380 +++ b/libpthread/linuxthreads.old/sysdeps/ubicom32/tls.h
4382 +/* Definitions for thread-local data handling. linuxthreads/MIPS version.
4383 + Copyright (C) 2005 Free Software Foundation, Inc.
4384 + This file is part of the GNU C Library.
4386 + The GNU C Library is free software; you can redistribute it and/or
4387 + modify it under the terms of the GNU Lesser General Public
4388 + License as published by the Free Software Foundation; either
4389 + version 2.1 of the License, or (at your option) any later version.
4391 + The GNU C Library is distributed in the hope that it will be useful,
4392 + but WITHOUT ANY WARRANTY; without even the implied warranty of
4393 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
4394 + Lesser General Public License for more details.
4396 + You should have received a copy of the GNU Lesser General Public
4397 + License along with the GNU C Library; if not, write to the Free
4398 + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
4399 + 02111-1307 USA. */
4403 +#ifdef HAVE_TLS_SUPPORT
4404 +#warning no tls support