2020-06-16 13:38:43 +00:00
|
|
|
/*-*- mode:unix-assembly; indent-tabs-mode:t; tab-width:8; coding:utf-8 -*-│
|
2020-06-15 14:18:57 +00:00
|
|
|
│vi: set et ft=asm ts=8 tw=8 fenc=utf-8 :vi│
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
2020-06-15 14:18:57 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
|
|
#include "libc/dce.h"
|
|
|
|
#include "libc/macros.h"
|
|
|
|
#include "libc/notice.inc"
|
2020-09-28 08:13:56 +00:00
|
|
|
#include "libc/sysv/consts/prot.h"
|
|
|
|
#include "libc/sysv/consts/map.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/dce.h"
|
|
|
|
.text.startup
|
2020-06-16 02:01:28 +00:00
|
|
|
.source __FILE__
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2020-08-25 11:23:25 +00:00
|
|
|
/ Stack frame that owns process from spawn to exit.
|
2020-06-15 14:18:57 +00:00
|
|
|
/
|
2020-08-25 11:23:25 +00:00
|
|
|
/ @param edi is argc
|
|
|
|
/ @param rsi is argv
|
|
|
|
/ @param rdx is environ
|
|
|
|
/ @param rcx is auxv
|
2020-06-15 14:18:57 +00:00
|
|
|
/ @noreturn
|
2020-08-25 11:23:25 +00:00
|
|
|
_executive:
|
|
|
|
push %rbp
|
|
|
|
mov %rsp,%rbp
|
2020-06-15 14:18:57 +00:00
|
|
|
ezlea _base,bx
|
2020-08-25 11:23:25 +00:00
|
|
|
mov %edi,%r12d
|
|
|
|
mov %rsi,%r13
|
|
|
|
mov %rdx,%r14
|
|
|
|
mov %rcx,%r15
|
|
|
|
call _spawn
|
2020-11-09 23:41:11 +00:00
|
|
|
mov %r12d,%edi
|
|
|
|
mov %r13,%rsi
|
|
|
|
mov %r14,%rdx
|
|
|
|
mov %r15,%rcx
|
2020-06-15 14:18:57 +00:00
|
|
|
.weak main
|
2020-11-09 23:41:11 +00:00
|
|
|
call main
|
|
|
|
xchg %eax,%edi
|
2020-06-15 14:18:57 +00:00
|
|
|
call exit
|
2020-10-06 06:11:49 +00:00
|
|
|
.endfn _executive,weak,hidden
|
2020-08-25 11:23:25 +00:00
|
|
|
ud2
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
|
|
#ifdef __PG__
|
|
|
|
.init.start 800,_init_ftrace
|
|
|
|
push %rdi
|
|
|
|
push %rsi
|
2020-10-11 04:18:53 +00:00
|
|
|
mov %r12d,%edi
|
|
|
|
mov %r13,%rsi
|
2020-06-15 14:18:57 +00:00
|
|
|
call ftrace_init
|
2020-10-11 04:18:53 +00:00
|
|
|
mov %eax,%r12d
|
|
|
|
pop %rsi
|
2020-06-15 14:18:57 +00:00
|
|
|
pop %rdi
|
|
|
|
.init.end 800,_init_ftrace
|
2020-10-11 04:18:53 +00:00
|
|
|
#endif
|