ladybird/Userland/Libraries/LibC/crt0.cpp

56 lines
1 KiB
C++
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/Types.h>
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/internals.h>
#include <unistd.h>
2018-10-22 14:06:22 +02:00
#ifndef _DYNAMIC_LOADER
extern "C" {
int main(int, char**, char**);
2018-10-22 14:06:22 +02:00
// Tell the compiler that this may be called from somewhere else.
int _entry(int argc, char** argv) __attribute__((used));
void _start(int, char**, char**) __attribute__((used));
NAKED void _start(int, char**, char**)
{
# if ARCH(AARCH64)
asm(
"mov x29, 0\n"
"mov x30, 0\n"
"bl _entry\n");
# elif ARCH(RISCV64)
asm(
"li fp, 0\n"
"li ra, 0\n"
"tail _entry@plt\n");
# elif ARCH(X86_64)
asm(
"push $0\n"
"jmp _entry@plt\n");
# else
# error "Unknown architecture"
# endif
}
int _entry(int argc, char** argv)
2018-10-22 14:06:22 +02:00
{
__begin_atexit_locking();
int status = main(argc, argv, environ);
exit(status);
2018-10-22 14:06:22 +02:00
return 20150614;
}
}
#endif