72 lines
2.6 KiB
ArmAsm
72 lines
2.6 KiB
ArmAsm
/* $NetBSD: startprog.S,v 1.3 1999/11/27 03:10:16 simonb Exp $ */
|
|
|
|
/*-
|
|
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
* by Jonathan Stone, Michael Hitch and Simon Burge.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
* must display the following acknowledgement:
|
|
* This product includes software developed by the NetBSD
|
|
* Foundation, Inc. and its contributors.
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
* contributors may be used to endorse or promote products derived
|
|
* from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
/*
|
|
* startprog(entry, stack, argc, argv, prom_magic, prom_ptr, bi_magic, bi_ptr);
|
|
*
|
|
* load new stack pointer, then call
|
|
* entry(argc, argv, prom_magic, prom_ptr, bi_magic, bi_ptr);
|
|
*/
|
|
|
|
#include <mips/asm.h>
|
|
|
|
LEAF(startprog)
|
|
subu sp,sp,32
|
|
addu t0,a1,-CALLFRAME_SIZ # new stack value
|
|
move t1,a0
|
|
move a0,a2
|
|
move a1,a3
|
|
|
|
lw a2,48(sp) # load everything from old stack we need
|
|
lw a3,52(sp)
|
|
lw v0,56(sp)
|
|
lw v1,60(sp)
|
|
|
|
move sp,t0 # new stack pointer
|
|
sw ra,24(sp)
|
|
|
|
sw v0,16(sp)
|
|
sw v1,20(sp)
|
|
jal ra,t1
|
|
nop # BDslot
|
|
|
|
lw ra,24(sp) # should not get back here!
|
|
j ra
|
|
addu sp,sp,32
|
|
END(startprog)
|