Add x86_64-linux-gnu emulator
I wanted a tiny scriptable meltdown proof way to run userspace programs and visualize how program execution impacts memory. It helps to explain how things like Actually Portable Executable works. It can show you how the GCC generated code is going about manipulating matrices and more. I didn't feel fully comfortable with Qemu and Bochs because I'm not smart enough to understand them. I wanted something like gVisor but with much stronger levels of assurances. I wanted a single binary that'll run, on all major operating systems with an embedded GPL barrier ZIP filesystem that is tiny enough to transpile to JavaScript and run in browsers too. https://justine.storage.googleapis.com/emulator625.mp4
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
#ifndef COSMOPOLITAN_LIBC_RUNTIME_INTERNAL_H_
|
||||
#define COSMOPOLITAN_LIBC_RUNTIME_INTERNAL_H_
|
||||
#ifndef __STRICT_ANSI__
|
||||
#include "libc/dce.h"
|
||||
#include "libc/runtime/runtime.h"
|
||||
|
||||
@@ -18,11 +19,12 @@ hidden extern unsigned g_runstate;
|
||||
hidden extern void *g_stacktop;
|
||||
|
||||
void _init(void) hidden;
|
||||
void __piro(int) hidden;
|
||||
void _piro(int) hidden;
|
||||
void *__cxa_finalize(void *) hidden;
|
||||
int getdosargv(const char16_t *, char *, size_t, char **, size_t) hidden;
|
||||
void _executive(int, char **, char **, long (*)[2]) hidden noreturn;
|
||||
void __stack_chk_fail(void) noreturn relegated;
|
||||
void __stack_chk_fail_local(void) noreturn relegated hidden;
|
||||
int getdosargv(const char16_t *, char *, size_t, char **, size_t) hidden;
|
||||
|
||||
forceinline void AssertNeverCalledWhileTerminating(void) {
|
||||
if (!NoDebug() && (g_runstate & RUNSTATE_TERMINATE)) {
|
||||
@@ -32,4 +34,5 @@ forceinline void AssertNeverCalledWhileTerminating(void) {
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||||
#endif /* ANSI */
|
||||
#endif /* COSMOPOLITAN_LIBC_RUNTIME_INTERNAL_H_ */
|
||||
|
||||
Reference in New Issue
Block a user