source: trunk/libs/newlib/src/libgloss/sparc_leon/locore_var.S @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 2.1 KB
Line 
1/*
2 * Copyright (c) 2011 Aeroflex Gaisler
3 *
4 * BSD license:
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
25       
26        .section .text
27        /* ------- */
28        .weak   _hardreset_custom_weak
29        .set    _hardreset_custom_weak,_hardreset_custom_weak_dummy
30        /* ------- */
31        .global _nwindows, _leon_version, _nwindows_min1
32       
33_hardreset_custom_weak_dummy:
34
35!''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
36! get nwindows and leon version
37                       
38        mov     %psr, %l3
39        srl     %l3, 24, %g5
40        and     %g5, 3, %g5
41        subcc   %g5, 3, %g0             ! leon3:        3
42        bne     1f
43        nop
44        set     _leon_version,%l0
45        set     3,%l1
46        st      %l1,[%l0]
47        mov     %asr17, %g5             ! leon3 has nwindows in %asr17
48        ba      2f
491:
50        /* other version */
512:
52        and     %g5, 0x1f, %g5
53        set     _nwindows_min1, %l3
54        st      %g5, [%l3]
55        add     %g5,1,%g5
56        set     _nwindows, %l3
57        st      %g5, [%l3]
58        set     _nwindows_min2, %l3
59        sub     %g5,2,%g5
60        st      %g5, [%l3]
61       
62!''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
63       
64        retl
65        nop
66
67!''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
68        .section .data
69        .global _nwindows, _leon_version, _nwindows_min1, _nwindows_min2
70_nwindows:
71        .word 8
72_nwindows_min1:
73        .word 7
74_nwindows_min2:
75        .word 6
76_leon_version:
77        .word 3
Note: See TracBrowser for help on using the repository browser.