Changes for 4.5.0 snapshot
[newlib-cygwin.git] / libgloss / cris / crt0.S
blob6edaabf45bdb458de86a4ef62397fd7536da1c90
1 /* Generic simplistic start-up-stub for CRIS/CRISv32.
2    Copyright (C) 1993-2005, 2007, 2017 Axis Communications.
3    All rights reserved.
5    Redistribution and use in source and binary forms, with or without
6    modification, are permitted provided that the following conditions
7    are met:
9    1. Redistributions of source code must retain the above copyright
10       notice, this list of conditions and the following disclaimer.
12    2. Neither the name of Axis Communications nor the names of its
13       contributors may be used to endorse or promote products derived
14       from this software without specific prior written permission.
16    THIS SOFTWARE IS PROVIDED BY AXIS COMMUNICATIONS AND ITS CONTRIBUTORS
17    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19    A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL AXIS
20    COMMUNICATIONS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
21    INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23    SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
25    STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
26    IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27    POSSIBILITY OF SUCH DAMAGE.  */
29 #include "newlib.h"
31 #undef cris
32 #undef L
33 #ifdef __NO_UNDERSCORES__
34 #define L(x) x
35 #else
36 #define L(x) _ ## x
37 #endif
39 #ifdef _HAVE_INITFINI_ARRAY
40 #define _init __libc_init_array
41 #define _fini __libc_fini_array
42 #endif
44 ; Rudimentary v0..v32-compatible startup stub.
46 #ifdef __ELF__
47  .section .startup,"ax"
48 #endif
49  .global __start
50  nop
51 __start:
52  move.d 0f,$r9
53  jump $r9
54  setf
56 #ifndef __ELF__
58 ; For a.out, everything read-only and code-wise goes into a
59 ; single section, so we can't separate the interrupt table from
60 ; the startup code if we want to have files in-between.
61 #define IN_CRT0
62 #include "irqtable.S"
64 #else
66 ; The interrupt table (at offset 12, irq #3) is expected here.
67 ; The simplest way to make sure we link it in, is to sacrifice
68 ; some memory and refer to it with a relocation.
69  .text
70  .dword __irqtable_at_irq3
72 #endif /* __ELF__ */
75  move.d __setup,$r9
76  jsr $r9
77  nop
78 #ifdef __ELF__
79  jsr L(_init)
80  nop
81  move.d L(_fini),$r10
82  jsr L(atexit)
83  nop
84 #endif
85  jsr L(main)
86  nop
87  jsr L(exit)
88  nop
90  nop
91  ba 0b
92  nop