mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 00:59:27 +02:00
84 lines
2.4 KiB
PHP
84 lines
2.4 KiB
PHP
{
|
|
This file is part of the Free Pascal run time library.
|
|
Copyright (c) 2019 by Free Pascal development team
|
|
|
|
This file implements parts of the startup code for OpenBSD
|
|
programs that don't link to the C library.
|
|
|
|
See the file COPYING.FPC, included in this distribution,
|
|
for details about the copyright.
|
|
|
|
This program 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.
|
|
|
|
**********************************************************************}
|
|
|
|
{$asmmode gas}
|
|
|
|
procedure _FPC_proc___start(argc: LongInt; argv: PPAnsiChar; envp: Pointer; cleanup: TCdeclProcedure); forward;
|
|
|
|
procedure _FPC_proc_start; assembler; nostackframe; public name '_start'; public name '__start';
|
|
asm
|
|
movq %rdx,%rcx
|
|
movq (%rsp),%rdi
|
|
leaq 16(%rsp,%rdi,8),%rdx
|
|
leaq 8(%rsp),%rsi
|
|
subq $8,%rsp
|
|
andq $0xFFFFFFFFFFFFFFF0,%rsp
|
|
addq $8,%rsp
|
|
jmp _FPC_proc___start
|
|
end;
|
|
|
|
procedure _FPC_proc_haltproc; cdecl; forward;
|
|
function _strrchr(str: PAnsiChar; character: LongInt): PAnsiChar; forward;
|
|
|
|
procedure _FPC_proc___start(argc: LongInt; argv: PPAnsiChar; envp: Pointer; cleanup: TCdeclProcedure);
|
|
var
|
|
I: SizeUInt;
|
|
begin
|
|
environ:=envp;
|
|
operatingsystem_parameter_envp:=envp;
|
|
operatingsystem_parameter_argc:=argc;
|
|
operatingsystem_parameter_argv:=argv;
|
|
if argv[0]<>nil then
|
|
begin
|
|
__progname:=_strrchr(argv[0], Ord('/'));
|
|
if __progname<>nil then
|
|
Inc(__progname)
|
|
else
|
|
__progname:=argv[0];
|
|
I:=Low(__progname_storage);
|
|
while (I<High(__progname_storage)) and (__progname[I]<>#0) do
|
|
begin
|
|
__progname_storage[I]:=__progname[I-Low(__progname_storage)];
|
|
Inc(I);
|
|
end;
|
|
__progname_storage[I]:=#0;
|
|
__progname:=@__progname_storage;
|
|
end;
|
|
PascalMain;
|
|
asm
|
|
jmp _FPC_proc_haltproc
|
|
end;
|
|
end;
|
|
|
|
procedure _FPC_proc_haltproc; cdecl; assembler; nostackframe; public name '_haltproc';
|
|
asm
|
|
movq $1,%rax
|
|
movl operatingsystem_result(%rip),%edi
|
|
syscall
|
|
jmp _FPC_proc_haltproc
|
|
end;
|
|
|
|
function _strrchr(str: PAnsiChar; character: LongInt): PAnsiChar; public name '_strrchr';
|
|
begin
|
|
_strrchr:=nil;
|
|
repeat
|
|
if str^=Chr(character) then
|
|
_strrchr:=str;
|
|
if str^<>#0 then
|
|
Inc(str);
|
|
until str^=#0;
|
|
end;
|