mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
4aa1d09b9e
This change introduces partial support for automating remote testing of aarch64 binaries on Raspberry Pi and Apple Silicon.
79 lines
3 KiB
C
79 lines
3 KiB
C
/*-*- mode:unix-assembly; indent-tabs-mode:t; tab-width:8; coding:utf-8 -*-│
|
|
│vi: set et ft=asm ts=8 sw=8 fenc=utf-8 :vi│
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
│ │
|
|
│ 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. │
|
|
│ │
|
|
│ 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. │
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
#include "libc/dce.h"
|
|
#include "libc/macros.internal.h"
|
|
// clang-format off
|
|
|
|
#ifdef __x86_64__
|
|
.yoink _init_systemfive
|
|
#endif
|
|
|
|
.macro .syscon group:req name:req linux:req linux_aarch64:req xnu:req xnu_aarch64:req freebsd:req openbsd:req netbsd:req windows:req
|
|
|
|
.section .piro.bss.sort.syscon.2.\group\().\name,"aw",@nobits
|
|
.balign 8
|
|
\name: .quad 0
|
|
.endobj \name,globl
|
|
.previous
|
|
|
|
#if SupportsLinux() || SupportsMetal()
|
|
.section .sort.rodata.syscon.linux.2.\group\().\name,"a",@progbits
|
|
#ifdef __aarch64__
|
|
.uleb128 \linux_aarch64
|
|
#else
|
|
.uleb128 \linux
|
|
#endif
|
|
.previous
|
|
#endif
|
|
|
|
#if SupportsXnu()
|
|
.section .sort.rodata.syscon.xnu.2.\group\().\name,"a",@progbits
|
|
#ifdef __aarch64__
|
|
.uleb128 \xnu_aarch64
|
|
#else
|
|
.uleb128 \xnu
|
|
#endif
|
|
.previous
|
|
#endif
|
|
|
|
#if SupportsFreebsd()
|
|
.section .sort.rodata.syscon.freebsd.2.\group\().\name,"a",@progbits
|
|
.uleb128 \freebsd
|
|
.previous
|
|
#endif
|
|
|
|
#if SupportsOpenbsd()
|
|
.section .sort.rodata.syscon.openbsd.2.\group\().\name,"a",@progbits
|
|
.uleb128 \openbsd
|
|
.previous
|
|
#endif
|
|
|
|
#if SupportsNetbsd()
|
|
.section .sort.rodata.syscon.netbsd.2.\group\().\name,"a",@progbits
|
|
.uleb128 \netbsd
|
|
.previous
|
|
#endif
|
|
|
|
#if SupportsWindows()
|
|
.section .sort.rodata.syscon.windows.2.\group\().\name,"a",@progbits
|
|
.uleb128 \windows
|
|
.previous
|
|
#endif
|
|
|
|
.endm
|