1/*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (C) 2023 Dmitry Chagin <dchagin@FreeBSD.org> 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 */ 27 28#include <machine/asm.h> 29 30 31 .text 32 .align 8 33 34 /* 35 * The program entry point 36 * %rdi %rsi 37 * void _start(char **ap, void (*cleanup)(void)) __dead2 38 */ 39 .globl _start 40 .type _start, @function 41_start: 42 .cfi_startproc 43 .cfi_undefined %rip /* Terminate call chain. */ 44 pushq %rbp /* Align stack, terminate call chain. */ 45 .cfi_def_cfa_offset 8 46 movq %rsp, %rbp 47 .cfi_offset %rbp, -16 48 .cfi_def_cfa_register %rbp 49#ifdef GCRT 50 subq $16, %rsp 51#endif 52 movq %rsi, %rcx /* cleanup */ 53 movslq (%rdi), %rax /* long *ap; tmpargc = *ap */ 54 leaq 0x8(%rdi), %rsi /* argv = ap + 1 */ 55 leaq 0x10(%rdi, %rax, 8), %rdx /* env = ap + 2 + tmpargc */ 56 movl %eax, %edi /* argc = tmpargc */ 57 58#ifdef PIC 59 /* 60 * XXX. %rip relative addressing is not intended for use in the 61 * large memory model due to the offset from %rip being limited 62 * to 32 bits. 63 */ 64 leaq main@plt(%rip), %r8 65#else 66 movabsq $main, %r8 67#endif 68#ifdef GCRT 69 movabsq $eprol, %r9 70 movabsq $etext, %rax 71 movq %rax, (%rsp) 72 /* 73 * %edi %rsi %rdx %rcx %r8 %r9 (%rsp) 74 * __libc_start1_gcrt(argc, argv, env, cleanup, main, &eprol, &etext) 75 */ 76 callq __libc_start1_gcrt 77eprol: 78#else 79 /* __libc_start1(argc, argv, env, cleanup, main) */ 80 callq __libc_start1 81#endif 82 int3 83 .cfi_endproc 84 .size _start, . - _start 85 86 .section .note.GNU-stack,"",%progbits 87