OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [newlib-1.17.0/] [libgloss/] [bfin/] [crt0.S] - Diff between revs 158 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 158 Rev 816
/*
/*
 * crt0.S for the Blackfin processor
 * crt0.S for the Blackfin processor
 *
 *
 * Copyright (C) 2006 Analog Devices, Inc.
 * Copyright (C) 2006 Analog Devices, Inc.
 *
 *
 * The authors hereby grant permission to use, copy, modify, distribute,
 * The authors hereby grant permission to use, copy, modify, distribute,
 * and license this software and its documentation for any purpose, provided
 * and license this software and its documentation for any purpose, provided
 * that existing copyright notices are retained in all copies and that this
 * that existing copyright notices are retained in all copies and that this
 * notice is included verbatim in any distributions. No written agreement,
 * notice is included verbatim in any distributions. No written agreement,
 * license, or royalty fee is required for any of the authorized uses.
 * license, or royalty fee is required for any of the authorized uses.
 * Modifications to this software may be copyrighted by their authors
 * Modifications to this software may be copyrighted by their authors
 * and need not follow the licensing terms described here, provided that
 * and need not follow the licensing terms described here, provided that
 * the new terms are clearly indicated on the first page of each file where
 * the new terms are clearly indicated on the first page of each file where
 * they apply.
 * they apply.
 */
 */
        .text
        .text
        .align  2
        .align  2
        .global __start
        .global __start
__start:
__start:
        /* Start by setting up a stack */
        /* Start by setting up a stack */
        link 0xc;
        link 0xc;
        /* Zero the memory in the .bss section.  */
        /* Zero the memory in the .bss section.  */
        p0.l = __edata;
        p0.l = __edata;
        p0.h = __edata;
        p0.h = __edata;
        p1.l = __end;
        p1.l = __end;
        p1.h = __end;
        p1.h = __end;
        p1 -= p0;
        p1 -= p0;
        r0 = 0;
        r0 = 0;
        lsetup (L$L$clear_bss, L$L$clear_bss) lc0 = p1;
        lsetup (L$L$clear_bss, L$L$clear_bss) lc0 = p1;
L$L$clear_bss:
L$L$clear_bss:
        B [p0++] = r0;
        B [p0++] = r0;
#ifdef __BFIN_FDPIC__
#ifdef __BFIN_FDPIC__
        /* Set up GOT pointer.  */
        /* Set up GOT pointer.  */
        P0.L = __ROFIXUP_END__;
        P0.L = __ROFIXUP_END__;
        P0.H = __ROFIXUP_END__;
        P0.H = __ROFIXUP_END__;
        P4 = [P0 - 4];
        P4 = [P0 - 4];
#endif
#endif
        /* Need to set up standard file handles */
        /* Need to set up standard file handles */
        /*  Parse string at r1 */
        /*  Parse string at r1 */
        p0.l = __init;
        p0.l = __init;
        p0.h = __init;
        p0.h = __init;
        P3 = P4;
        P3 = P4;
        call    (p0)
        call    (p0)
        p0.l = _atexit;
        p0.l = _atexit;
        p0.h = _atexit;
        p0.h = _atexit;
#ifdef __BFIN_FDPIC__
#ifdef __BFIN_FDPIC__
        r0 = [P4 + __fini@FUNCDESC_GOT17M4]  ;
        r0 = [P4 + __fini@FUNCDESC_GOT17M4]  ;
        P3 = P4;
        P3 = P4;
#else
#else
        r0.l = __fini;
        r0.l = __fini;
        r0.h = __fini;
        r0.h = __fini;
#endif
#endif
        call    (p0)
        call    (p0)
        p0.l = ___setup_argv_and_call_main;
        p0.l = ___setup_argv_and_call_main;
        p0.h = ___setup_argv_and_call_main;
        p0.h = ___setup_argv_and_call_main;
        P3 = P4;
        P3 = P4;
        call    (p0)
        call    (p0)
        p0.l = _exit;
        p0.l = _exit;
        p0.h = _exit;
        p0.h = _exit;
        P3 = P4;
        P3 = P4;
        jump    (p0)            /* Should not return.  */
        jump    (p0)            /* Should not return.  */
        nop;
        nop;
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.