Path: blob/main/stand/kboot/libkboot/arch/amd64/start_arch.h
34889 views
/*1* Copyright (c) 2022, Netflix, Inc.2*3* SPDX-License-Identifier: BSD-2-Clause4*/56/*7* Provides a _start routine that calls a _start_c routine that takes a pointer8* to the stack as documented in crt1.c. We skip the pointer to _DYNAMIC since9* we don't support dynamic libraries, at all. And while _start_c is our own10* thing, we comport to the calling conventions that glibc and musl have and11* make sure the second argument (%esi) is 0 for _DYNAMIC placeholder. We12* likely could call main directly with only a few more lines of code, but this13* is simple enough and concentrates all the expressable in C stuff there. We14* also generate eh_frames should we need to debug things (it doesn't change the15* genreated code, but leaves enough breadcrumbs to keep gdb happy).16*/1718__asm__(19".text\n" /* ENTRY(_start) */20".p2align 4,0x90\n"21".global _start\n"22".type _start, @function\n"23"_start:\n"24".cfi_startproc\n"25" xor %rbp, %rbp\n" /* Clear out the stack frame pointer */26" mov %rsp, %rdi\n" /* Pass pointer to current stack with argc, argv and envp on it */27" xor %rsi, %rsi\n" /* No dynamic pointer for us, to keep it simple */28" andq $-16, %rsp\n" /* Align stack to 16-byte boundary */29" call _start_c\n" /* Our MI code takes it from here and won't return */30/* NORETURN */31".size _start, . - _start\n" /* END(_start) */32".cfi_endproc"33);343536