about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/alpha/execl.S
blob: 11f4307c8cff35f92b948a5d5e8f59da82ceed4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* Copyright (C) 2016 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <http://www.gnu.org/licenses/>.  */

#include <sysdep.h>

ENTRY(execl)
	cfi_startproc
	ldgp	gp, 0(pv)
	lda	sp, -48(sp)
	cfi_adjust_cfa_offset(48)
	.frame	sp, 48, ra
	.prologue 1

	/* Save the portions of the argv argument list in registers.  */
	stq	a5, 40(sp)
	stq	a4, 32(sp)
	stq	a3, 24(sp)
	stq	a2, 16(sp)
	stq	a1,  8(sp)

	/* Load the argv and envp arguments; path is already in place.  */
	lda	a1, 8(sp)
	ldq	a2, __environ

	lda	v0, SYS_ify(execve)
	call_pal PAL_callsys

	/* Discard the stack frame now.  */
	lda	sp, 48(sp)
	cfi_adjust_cfa_offset(-48)

	/* All returns are errors.  */
	br	SYSCALL_ERROR_LABEL

PSEUDO_END (execle)
	cfi_endproc

libc_hidden_def (execl)