path
stringlengths
14
112
content
stringlengths
0
6.32M
size
int64
0
6.32M
max_lines
int64
1
100k
repo_name
stringclasses
2 values
autogenerated
bool
1 class
cosmopolitan/libc/intrin/nocolor.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/log/internal.h" #include "libc/nt/version.h" #include "libc/runtime/runtime.h" #define IsDumb(s) \ (s[0] == 'd' && s[1] == 'u' && s[2] == 'm' && s[3] == 'b' && !s[4]) /** * Indicates if ANSI terminal colors are inappropriate. * * Normally this variable should be false. We only set it to true if * we're running on an old version of Windows or the environment * variable `TERM` is set to `dumb`. * * We think colors should be the norm, since most software is usually * too conservative about removing them. Rather than using `isatty` * consider using sed for instances where color must be removed: * * sed 's/\x1b\[[;[:digit:]]*m//g' <color.txt >uncolor.txt * * For some reason, important software is configured by default in many * operating systems, to not only disable colors, but utf-8 too! Here's * an example of how a wrapper script can fix that for `less`. * * #!/bin/sh * LESSCHARSET=UTF-8 exec /usr/bin/less -RS "$@" * * Thank you for using colors! */ bool __nocolor; optimizesize textstartup noasan void __nocolor_init(int argc, char **argv, char **envp, intptr_t *auxv) { char *s; __nocolor = (IsWindows() && !IsAtLeastWindows10()) || ((s = getenv("TERM")) && IsDumb(s)); } const void *const __nocolor_ctor[] initarray = { __nocolor_init, };
3,294
62
jart/cosmopolitan
false
cosmopolitan/libc/intrin/psubw.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/psubw.h" #include "libc/str/str.h" /** * Subtracts 16-bit integers. * * @param 𝑎 [w/o] receives result * @param 𝑏 [r/o] supplies first input vector * @param 𝑐 [r/o] supplies second input vector * @mayalias */ void(psubw)(int16_t a[8], const int16_t b[8], const int16_t c[8]) { unsigned i; int16_t r[8]; for (i = 0; i < 8; ++i) { r[i] = b[i] - c[i]; } __builtin_memcpy(a, r, 16); }
2,270
38
jart/cosmopolitan
false
cosmopolitan/libc/intrin/punpckhwd.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PUNPCKHWD_H_ #define COSMOPOLITAN_LIBC_INTRIN_PUNPCKHWD_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void punpckhwd(uint16_t[8], const uint16_t[8], const uint16_t[8]); #define punpckhwd(A, B, C) \ INTRIN_SSEVEX_X_X_X_(punpckhwd, SSE2, "punpckhwd", INTRIN_NONCOMMUTATIVE, A, \ B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PUNPCKHWD_H_ */
563
16
jart/cosmopolitan
false
cosmopolitan/libc/intrin/describepersonalityflags.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/intrin/describeflags.internal.h" #include "libc/macros.internal.h" #include "libc/nt/enum/accessmask.h" #include "libc/nt/enum/filesharemode.h" #include "libc/sysv/consts/personality.h" static const struct DescribeFlags kPersonalityFlags[] = { {ADDR_COMPAT_LAYOUT, "ADDR_COMPAT_LAYOUT"}, // {READ_IMPLIES_EXEC, "READ_IMPLIES_EXEC"}, // {ADDR_LIMIT_3GB, "ADDR_LIMIT_3GB"}, // {FDPIC_FUNCPTRS, "FDPIC_FUNCPTRS"}, // {STICKY_TIMEOUTS, "STICKY_TIMEOUTS"}, // {MMAP_PAGE_ZERO, "MMAP_PAGE_ZERO"}, // {ADDR_LIMIT_32BIT, "ADDR_LIMIT_32BIT"}, // {WHOLE_SECONDS, "WHOLE_SECONDS"}, // {ADDR_NO_RANDOMIZE, "ADDR_NO_RANDOMIZE"}, // {SHORT_INODE, "SHORT_INODE"}, // {UNAME26, "UNAME26"}, // }; const char *(DescribePersonalityFlags)(char buf[128], int x) { return DescribeFlags(buf, 128, kPersonalityFlags, ARRAYLEN(kPersonalityFlags), "", x); }
2,849
43
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pthread_mutex_unlock.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/calls/calls.h" #include "libc/calls/state.internal.h" #include "libc/errno.h" #include "libc/intrin/atomic.h" #include "libc/intrin/strace.internal.h" #include "libc/intrin/weaken.h" #include "libc/runtime/internal.h" #include "libc/thread/thread.h" #include "libc/thread/tls.h" #include "third_party/nsync/mu.h" /** * Releases mutex. * * This function does nothing in vfork() children. * * @return 0 on success or error number on failure * @raises EPERM if in error check mode and not owned by caller * @vforksafe */ int pthread_mutex_unlock(pthread_mutex_t *mutex) { int c, t; if (__vforked) return 0; LOCKTRACE("pthread_mutex_unlock(%t)", mutex); if (__tls_enabled && // mutex->_type == PTHREAD_MUTEX_NORMAL && // mutex->_pshared == PTHREAD_PROCESS_PRIVATE && // _weaken(nsync_mu_unlock)) { _weaken(nsync_mu_unlock)((nsync_mu *)mutex); return 0; } if (mutex->_type == PTHREAD_MUTEX_NORMAL) { atomic_store_explicit(&mutex->_lock, 0, memory_order_release); return 0; } t = gettid(); // we allow unlocking an initialized lock that wasn't locked, but we // don't allow unlocking a lock held by another thread, or unlocking // recursive locks from a forked child, since it should be re-init'd if (mutex->_owner && (mutex->_owner != t || mutex->_pid != __pid)) { return EPERM; } if (mutex->_depth) { --mutex->_depth; return 0; } mutex->_owner = 0; atomic_store_explicit(&mutex->_lock, 0, memory_order_release); return 0; }
3,409
78
jart/cosmopolitan
false
cosmopolitan/libc/intrin/psrlw.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PSRLW_H_ #define COSMOPOLITAN_LIBC_INTRIN_PSRLW_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void psrlw(uint16_t[8], const uint16_t[8], unsigned char); void psrlwv(uint16_t[8], const uint16_t[8], const uint64_t[2]); #define psrlw(A, B, I) INTRIN_SSEVEX_X_I_(psrlw, SSE2, "psrlw", A, B, I) #define psrlwv(A, B, C) \ INTRIN_SSEVEX_X_X_X_(psrlwv, SSE2, "psrlw", INTRIN_NONCOMMUTATIVE, A, B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PSRLW_H_ */
593
17
jart/cosmopolitan
false
cosmopolitan/libc/intrin/iswsl.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/assert.h" #include "libc/calls/calls.h" #include "libc/calls/syscall-sysv.internal.h" #include "libc/dce.h" #include "libc/errno.h" #include "libc/intrin/likely.h" #include "libc/sysv/consts/map.h" #include "libc/sysv/consts/prot.h" #ifdef __x86_64__ #define GROWSDOWN 0x00000100 #define ANONYMOUS 0x00000020 /** * Returns true if host platform is WSL 1.0. */ bool IsWsl1(void) { static char res; if (res) return res & 1; if (!IsLinux()) return res = 2, false; int e = errno; _unassert(__sys_mmap((void *)1, 4096, PROT_READ | PROT_WRITE, MAP_FIXED | MAP_PRIVATE | ANONYMOUS | GROWSDOWN, -1, 0, 0) == MAP_FAILED); bool tmp = errno == ENOTSUP; errno = e; res = 2 | tmp; return tmp; } #endif /* __x86_64__ */
2,627
51
jart/cosmopolitan
false
cosmopolitan/libc/intrin/memrchr.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2021 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/intrin/asan.internal.h" #include "libc/nexgen32e/x86feature.h" #include "libc/str/str.h" #ifndef __aarch64__ typedef char xmm_t __attribute__((__vector_size__(16), __aligned__(1))); static inline const unsigned char *memrchr_pure(const unsigned char *s, unsigned char c, size_t n) { size_t i; for (i = n; i--;) { if (s[i] == c) { return s + i; } } return 0; } #ifdef __x86_64__ noasan static inline const unsigned char *memrchr_sse(const unsigned char *s, unsigned char c, size_t n) { size_t i; unsigned k, m; xmm_t v, t = {c, c, c, c, c, c, c, c, c, c, c, c, c, c, c, c}; for (i = n; i >= 16;) { v = *(const xmm_t *)(s + (i -= 16)); m = __builtin_ia32_pmovmskb128(v == t); if (m) { m = __builtin_clzl(m) ^ (sizeof(long) * CHAR_BIT - 1); return s + i + m; } } while (i--) { if (s[i] == c) { return s + i; } } return 0; } #endif /** * Returns pointer to first instance of character. * * @param s is memory to search * @param c is search byte which is masked with 255 * @param n is byte length of p * @return is pointer to first instance of c or NULL if not found * @asyncsignalsafe */ void *memrchr(const void *s, int c, size_t n) { #ifdef __x86_64__ const void *r; if (!IsTiny() && X86_HAVE(SSE)) { if (IsAsan()) __asan_verify(s, n); r = memrchr_sse(s, c, n); } else { r = memrchr_pure(s, c, n); } return (void *)r; #else return memrchr_pure(s, c, n); #endif } #endif /* __aarch64__ */
3,532
87
jart/cosmopolitan
false
cosmopolitan/libc/intrin/repmovsb.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_REPMOVSB_H_ #define COSMOPOLITAN_LIBC_INTRIN_REPMOVSB_H_ #if !(__ASSEMBLER__ + __LINKER__ + 0) forceinline void repmovsb(void **dest, const void **src, size_t cx) { char *di = (char *)*dest; const char *si = (const char *)*src; while (cx) *di++ = *si++, cx--; *dest = di, *src = si; } #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) #define repmovsb(DI, SI, CX) \ ({ \ void *Di = *(DI); \ const void *Si = *(SI); \ size_t Cx = (CX); \ asm("rep movsb" \ : "=D"(Di), "=S"(Si), "=c"(Cx), "=m"(*(char(*)[Cx])Di) \ : "0"(Di), "1"(Si), "2"(Cx), "m"(*(const char(*)[Cx])Si)); \ *(DI) = Di, *(SI) = Si; \ }) #endif #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_REPMOVSB_H_ */
1,127
27
jart/cosmopolitan
false
cosmopolitan/libc/intrin/restoretty.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2021 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/calls/struct/metatermios.internal.h" #include "libc/calls/syscall-sysv.internal.h" #include "libc/errno.h" #include "libc/log/internal.h" #include "libc/runtime/runtime.h" #include "libc/sysv/consts/termios.h" /** * @fileoverview Terminal Restoration Helper for System Five. * * This is used by the crash reporting functions, e.g. __die(), to help * ensure the terminal is in an unborked state after a crash happens. */ #define RESET_COLOR "\e[0m" #define SHOW_CURSOR "\e[?25h" #define DISABLE_MOUSE "\e[?1000;1002;1015;1006l" #define ANSI_RESTORE RESET_COLOR SHOW_CURSOR DISABLE_MOUSE static bool __isrestorable; static union metatermios __oldtermios; static size_t __strlen(const char *s) { size_t i = 0; while (s[i]) ++i; return i; } // called weakly by libc/calls/ioctl_tcsets.c to avoid pledge("tty") void __on_ioctl_tcsets(int fd) { int e; e = errno; if (sys_ioctl(fd, TCGETS, &__oldtermios) != -1) { __isrestorable = true; } errno = e; } void __restore_tty(void) { int e; if (__isrestorable && !__isworker && !__nocolor) { e = errno; sys_write(0, ANSI_RESTORE, __strlen(ANSI_RESTORE)); sys_ioctl(0, TCSETSF, &__oldtermios); errno = e; } }
3,055
66
jart/cosmopolitan
false
cosmopolitan/libc/intrin/punpcklqdq.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/punpcklqdq.h" /** * Interleaves low quadwords. * * @param 𝑎 [w/o] receives reduced 𝑏 and 𝑐 interleaved * @param 𝑏 [r/o] supplies two quadwords * @param 𝑐 [r/o] supplies two quadwords * @mayalias */ void(punpcklqdq)(uint64_t a[2], const uint64_t b[2], const uint64_t c[2]) { a[1] = c[0]; a[0] = b[0]; }
2,187
33
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pmuludq.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PMULUDQ_H_ #define COSMOPOLITAN_LIBC_INTRIN_PMULUDQ_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void pmuludq(uint64_t[2], const uint32_t[4], const uint32_t[4]); #define pmuludq(A, B, C) \ INTRIN_SSEVEX_X_X_X_(pmuludq, SSE2, "pmuludq", INTRIN_COMMUTATIVE, A, B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PMULUDQ_H_ */
469
15
jart/cosmopolitan
false
cosmopolitan/libc/intrin/punpckhqdq.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/punpckhqdq.h" /** * Interleaves high quadwords. * * @param 𝑎 [w/o] receives reduced 𝑏 and 𝑐 interleaved * @param 𝑏 [r/o] supplies two quadwords * @param 𝑐 [r/o] supplies two quadwords * @mayalias */ void(punpckhqdq)(uint64_t a[2], const uint64_t b[2], const uint64_t c[2]) { a[0] = b[1]; a[1] = c[1]; }
2,188
33
jart/cosmopolitan
false
cosmopolitan/libc/intrin/ffs.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2023 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. │ ╚─────────────────────────────────────────────────────────────────────────────*/ /** * Finds lowest set bit in word. */ int ffs(int x) { return __builtin_ffs(x); } /** * Finds lowest set bit in word. */ long ffsl(long x) { return __builtin_ffsl(x); } /** * Finds lowest set bit in word. */ long long ffsll(long long x) { return __builtin_ffsll(x); }
2,120
40
jart/cosmopolitan
false
cosmopolitan/libc/intrin/printmemoryintervals.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/fmt/conv.h" #include "libc/fmt/itoa.h" #include "libc/intrin/describeflags.internal.h" #include "libc/intrin/kprintf.h" #include "libc/macros.internal.h" #include "libc/runtime/memtrack.internal.h" static bool IsNoteworthyHole(unsigned i, const struct MemoryIntervals *mm) { // gaps between shadow frames aren't interesting // the chasm from heap to stack ruins statistics return !( (IsArenaFrame(mm->p[i].y) && !IsArenaFrame(mm->p[i + 1].x)) || (IsShadowFrame(mm->p[i].y) || IsShadowFrame(mm->p[i + 1].x)) || (!IsStaticStackFrame(mm->p[i].y) && IsStaticStackFrame(mm->p[i + 1].x))); } void PrintMemoryIntervals(int fd, const struct MemoryIntervals *mm) { char *p, mappingbuf[8], framebuf[64], sb[16]; long i, w, frames, maptally = 0; for (w = i = 0; i < mm->i; ++i) { w = MAX(w, LengthInt64Thousands(mm->p[i].y + 1 - mm->p[i].x)); } for (i = 0; i < mm->i; ++i) { frames = mm->p[i].y + 1 - mm->p[i].x; maptally += frames; kprintf("%08x-%08x %s %'*ldx %s", mm->p[i].x, mm->p[i].y, (DescribeMapping)(mappingbuf, mm->p[i].prot, mm->p[i].flags), w, frames, (DescribeFrame)(framebuf, mm->p[i].x)); if (mm->p[i].iscow) kprintf(" cow"); if (mm->p[i].readonlyfile) kprintf(" readonlyfile"); sizefmt(sb, mm->p[i].size, 1024); kprintf(" %sB", sb); if (i + 1 < mm->i) { frames = mm->p[i + 1].x - mm->p[i].y - 1; if (frames && IsNoteworthyHole(i, mm)) { sizefmt(sb, frames * FRAMESIZE, 1024); kprintf(" w/ %sB hole", sb); } } if (mm->p[i].h != -1) { kprintf(" h=%ld", mm->p[i].h); } kprintf("\n"); } sizefmt(sb, maptally * FRAMESIZE, 1024); kprintf("# %sB total mapped memory\n", sb); }
3,584
66
jart/cosmopolitan
false
cosmopolitan/libc/intrin/kerrnonames.S
/*-*- mode:unix-assembly; indent-tabs-mode:t; tab-width:8; coding:utf-8 -*-│ │vi: set et ft=asm ts=8 tw=8 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2021 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/fmt/magnumstrs.internal.h" #include "libc/macros.internal.h" .macro .e e .long \e - kErrnoNames .long .L\@ - kErrnoNames .rodata.str1.1 .L\@: .string "\e" .previous .endm .section .rodata .balign 4 .underrun kErrnoNames: .e EINVAL .e ENOSYS .e EPERM .e ENOENT .e ESRCH .e EINTR .e EIO .e ENXIO .e E2BIG .e ENOEXEC .e EBADF .e ECHILD .e EAGAIN .e ENOMEM .e EACCES .e EFAULT .e ENOTBLK .e EBUSY .e EEXIST .e EXDEV .e ENODEV .e ENOTDIR .e EISDIR .e ENFILE .e EMFILE .e ENOTTY .e ETXTBSY .e EFBIG .e ENOSPC .e EDQUOT .e ESPIPE .e EROFS .e EMLINK .e EPIPE .e EDOM .e ERANGE .e EDEADLK .e ENAMETOOLONG .e ENOLCK .e ENOTEMPTY .e ELOOP .e ENOMSG .e EIDRM .e EPROTO .e EOVERFLOW .e EILSEQ .e EUSERS .e ENOTSOCK .e EDESTADDRREQ .e EMSGSIZE .e EPROTOTYPE .e ENOPROTOOPT .e EPROTONOSUPPORT .e ESOCKTNOSUPPORT .e ENOTSUP .e EOPNOTSUPP .e EPFNOSUPPORT .e EAFNOSUPPORT .e EADDRINUSE .e EADDRNOTAVAIL .e ENETDOWN .e ENETUNREACH .e ENETRESET .e ECONNABORTED .e ECONNRESET .e ENOBUFS .e EISCONN .e ENOTCONN .e ESHUTDOWN .e ETOOMANYREFS .e ETIMEDOUT .e ETIME .e ECONNREFUSED .e EHOSTDOWN .e EHOSTUNREACH .e EALREADY .e EINPROGRESS .e ESTALE .e EREMOTE .e EBADMSG .e ECANCELED .e EOWNERDEAD .e ENOTRECOVERABLE .e ENONET .e ERESTART .e ENODATA .e EBADFD .long MAGNUM_TERMINATOR .endobj kErrnoNames,globl,hidden .overrun
3,251
124
jart/cosmopolitan
false
cosmopolitan/libc/intrin/feholdexcept.c
#include "libc/runtime/fenv.h" /** * Saves floating-point environment and clears current exceptions. */ int feholdexcept(fenv_t *envp) { fegetenv(envp); feclearexcept(FE_ALL_EXCEPT); return 0; }
204
11
jart/cosmopolitan
false
cosmopolitan/libc/intrin/describentfileflagattr.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/intrin/describeflags.internal.h" #include "libc/macros.internal.h" #include "libc/nt/enum/fileflagandattributes.h" #include "libc/runtime/runtime.h" static const struct DescribeFlags kFileFlags[] = { {kNtFileAttributeReadonly, "AttributeReadonly"}, // {kNtFileAttributeHidden, "AttributeHidden"}, // {kNtFileAttributeSystem, "AttributeSystem"}, // {kNtFileAttributeVolumelabel, "AttributeVolumelabel"}, // {kNtFileAttributeDirectory, "AttributeDirectory"}, // {kNtFileAttributeArchive, "AttributeArchive"}, // {kNtFileAttributeDevice, "AttributeDevice"}, // {kNtFileAttributeNormal, "AttributeNormal"}, // {kNtFileAttributeTemporary, "AttributeTemporary"}, // {kNtFileAttributeSparseFile, "AttributeSparseFile"}, // {kNtFileAttributeReparsePoint, "AttributeReparsePoint"}, // {kNtFileAttributeCompressed, "AttributeCompressed"}, // {kNtFileAttributeOffline, "AttributeOffline"}, // {kNtFileAttributeNotContentIndexed, "AttributeNotContentIndexed"}, // {kNtFileAttributeEncrypted, "AttributeEncrypted"}, // {kNtFileFlagWriteThrough, "FlagWriteThrough"}, // {kNtFileFlagOverlapped, "FlagOverlapped"}, // {kNtFileFlagNoBuffering, "FlagNoBuffering"}, // {kNtFileFlagRandomAccess, "FlagRandomAccess"}, // {kNtFileFlagSequentialScan, "FlagSequentialScan"}, // {kNtFileFlagDeleteOnClose, "FlagDeleteOnClose"}, // {kNtFileFlagBackupSemantics, "FlagBackupSemantics"}, // {kNtFileFlagPosixSemantics, "FlagPosixSemantics"}, // {kNtFileFlagOpenReparsePoint, "FlagOpenReparsePoint"}, // {kNtFileFlagOpenNoRecall, "FlagOpenNoRecall"}, // {kNtFileFlagFirstPipeInstance, "FlagFirstPipeInstance"}, // }; const char *(DescribeNtFileFlagAttr)(char buf[256], uint32_t x) { if (x == -1u) return "-1u"; return DescribeFlags(buf, 256, kFileFlags, ARRAYLEN(kFileFlags), "kNtFile", x); }
4,209
58
jart/cosmopolitan
false
cosmopolitan/libc/intrin/dos2errno.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/errno.h" #include "libc/intrin/dos2errno.internal.h" #include "libc/nt/errors.h" #include "libc/sock/sock.h" /** * Translates Windows error using superset of consts.sh. * * This function is called by __winerr(). It can only be used on * Windows, because it returns an errno. Normally, errnos will be * programmed to be the same as DOS errnos, per consts.sh. But since * there's so many more errors in DOS, this function provides an added * optional benefit mapping additional constants onto the errnos in * consts.sh. */ privileged errno_t __dos2errno(uint32_t error) { int i; if (error) { for (i = 0; kDos2Errno[i].doscode; ++i) { if (error == kDos2Errno[i].doscode) { return *(const int *)((intptr_t)kDos2Errno[i].systemv); } } } return error; }
2,645
45
jart/cosmopolitan
false
cosmopolitan/libc/intrin/getenv.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/_getenv.internal.h" #include "libc/intrin/strace.internal.h" #include "libc/runtime/runtime.h" /** * Returns value of environment variable, or NULL if not found. * * Environment variables can store empty string on Unix but not Windows. * * @return pointer to value of `environ` entry, or null if not found */ char *getenv(const char *s) { char **p; struct Env e; if (!s) return 0; if (!(p = environ)) return 0; e = _getenv(p, s); #if SYSDEBUG // if (!(s[0] == 'T' && s[1] == 'Z' && !s[2])) { // TODO(jart): memoize TZ or something STRACE("getenv(%#s) → %#s", s, e.s); //} #endif return e.s; }
2,480
44
jart/cosmopolitan
false
cosmopolitan/libc/intrin/kerrnodocs.S
/*-*- mode:unix-assembly; indent-tabs-mode:t; tab-width:8; coding:utf-8 -*-│ │vi: set et ft=asm ts=8 tw=8 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2021 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/fmt/magnumstrs.internal.h" #include "libc/macros.internal.h" .macro .e e s .long \e - kErrnoDocs .long .L\@ - kErrnoDocs .rodata.str1.1 .L\@: .asciz "\s" .previous .endm .section .rodata .balign 4 .underrun kErrnoDocs: .e EINVAL,"Invalid argument" .e ENOSYS,"Function not implemented" .e EPERM,"Operation not permitted" .e ENOENT,"No such file or directory" .e ESRCH,"No such process" .e EINTR,"Interrupted system call" .e EIO,"I/O error" .e ENXIO,"No such device or address" .e E2BIG,"Arg list too long" .e ENOEXEC,"Exec format error" .e EBADF,"Bad file number" .e ECHILD,"No child processes" .e EAGAIN,"Try again" .e ENOMEM,"Out of memory" .e EACCES,"Permission denied" .e EFAULT,"Bad address" .e ENOTBLK,"Block device required" .e EBUSY,"Device or resource busy" .e EEXIST,"File exists" .e EXDEV,"Cross-device link" .e ENODEV,"No such device" .e ENOTDIR,"Not a directory" .e EISDIR,"Is a directory" .e ENFILE,"File table overflow" .e EMFILE,"Too many open files" .e ENOTTY,"Not a typewriter" .e ETXTBSY,"Text file busy" .e EFBIG,"File too large" .e ENOSPC,"No space left on device" .e EDQUOT,"Quota exceeded" .e ESPIPE,"Illegal seek" .e EROFS,"Read-only file system" .e EMLINK,"Too many links" .e EPIPE,"Broken pipe" .e EDOM,"Math argument out of domain of func" .e ERANGE,"Math result not representable" .e EDEADLK,"Resource deadlock would occur" .e ENAMETOOLONG,"File name too long" .e ENOLCK,"No record locks available" .e ENOTEMPTY,"Directory not empty" .e ELOOP,"Too many symbolic links encountered" .e ENOMSG,"No message of desired type" .e EIDRM,"Identifier removed" .e EPROTO,"Protocol error" .e EOVERFLOW,"Value too large for defined data type" .e EILSEQ,"Illegal byte sequence" .e EUSERS,"Too many users" .e ENOTSOCK,"Socket operation on non-socket" .e EDESTADDRREQ,"Destination address required" .e EMSGSIZE,"Message too long" .e EPROTOTYPE,"Protocol wrong type for socket" .e ENOPROTOOPT,"Protocol not available" .e EPROTONOSUPPORT,"Protocol not supported" .e ESOCKTNOSUPPORT,"Socket type not supported" .e ENOTSUP,"Operation not supported" .e EOPNOTSUPP,"Operation not supported on transport endpoint" .e EPFNOSUPPORT,"Protocol family not supported" .e EAFNOSUPPORT,"Address family not supported by protocol" .e EADDRINUSE,"Address already in use" .e EADDRNOTAVAIL,"Cannot assign requested address" .e ENETDOWN,"Network is down" .e ENETUNREACH,"Network is unreachable" .e ENETRESET,"Network dropped connection because of reset" .e ECONNABORTED,"Software caused connection abort" .e ECONNRESET,"Connection reset by peer" .e ENOBUFS,"No buffer space available" .e EISCONN,"Transport endpoint is already connected" .e ENOTCONN,"Transport endpoint is not connected" .e ESHUTDOWN,"Cannot send after transport endpoint shutdown" .e ETOOMANYREFS,"Too many references: cannot splice" .e ETIMEDOUT,"Connection timed out" .e ETIME,"Timer expired" .e ECONNREFUSED,"Connection refused" .e EHOSTDOWN,"Host is down" .e EHOSTUNREACH,"No route to host" .e EALREADY,"Operation already in progress" .e EINPROGRESS,"Operation now in progress" .e ESTALE,"Stale NFS file handle" .e EREMOTE,"Object is remote" .e EBADMSG,"Not a data message" .e ECANCELED,"Operation Canceled" .e EOWNERDEAD,"Owner died" .e ENOTRECOVERABLE,"State not recoverable" .e ENONET,"Machine is not on the network" .e ERESTART,"Interrupted system call should be restarted" .e EBADFD,"File descriptor in bad state" .long MAGNUM_TERMINATOR .endobj kErrnoDocs,globl,hidden .overrun
5,397
123
jart/cosmopolitan
false
cosmopolitan/libc/intrin/asan.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/calls/state.internal.h" #include "libc/calls/syscall-sysv.internal.h" #include "libc/dce.h" #include "libc/intrin/asan.internal.h" #include "libc/intrin/atomic.h" #include "libc/intrin/cmpxchg.h" #include "libc/intrin/directmap.internal.h" #include "libc/intrin/kmalloc.h" #include "libc/intrin/kprintf.h" #include "libc/intrin/leaky.internal.h" #include "libc/intrin/likely.h" #include "libc/intrin/strace.internal.h" #include "libc/intrin/tpenc.h" #include "libc/intrin/weaken.h" #include "libc/log/libfatal.internal.h" #include "libc/log/log.h" #include "libc/macros.internal.h" #include "libc/mem/hook.internal.h" #include "libc/mem/mem.h" #include "libc/nexgen32e/gc.internal.h" #include "libc/nexgen32e/stackframe.h" #include "libc/nt/enum/version.h" #include "libc/runtime/memtrack.internal.h" #include "libc/runtime/runtime.h" #include "libc/runtime/symbols.internal.h" #include "libc/str/tab.internal.h" #include "libc/sysv/consts/auxv.h" #include "libc/sysv/consts/map.h" #include "libc/sysv/consts/prot.h" #include "libc/sysv/errfuns.h" #include "libc/thread/tls.h" #include "third_party/dlmalloc/dlmalloc.h" #ifdef __x86_64__ STATIC_YOINK("_init_asan"); #if IsModeDbg() // MODE=dbg // O(32mb) of morgue memory // Θ(64) bytes of malloc overhead #define ASAN_MORGUE_ITEMS 512 #define ASAN_MORGUE_THRESHOLD 65536 #define ASAN_TRACE_ITEMS 16 #else // MODE=asan // O(32mb) of morgue memory // Θ(32) bytes of malloc overhead #define ASAN_MORGUE_ITEMS 512 #define ASAN_MORGUE_THRESHOLD 65536 #define ASAN_TRACE_ITEMS 4 #endif /** * @fileoverview Cosmopolitan Address Sanitizer Runtime. * * Someone brilliant at Google figured out a way to improve upon memory * protection. Rather than invent another Java or Rust they changed GCC * so it can emit fast code, that checks the validity of each memory op * with byte granularity, by probing shadow memory. * * - AddressSanitizer dedicates one-eighth of the virtual address space * to its shadow memory and uses a direct mapping with a scale and * offset to translate an application address to its corresponding * shadow address. Given the application memory address Addr, the * address of the shadow byte is computed as (Addr>>3)+Offset." * * - We use the following encoding for each shadow byte: 0 means that * all 8 bytes of the corresponding application memory region are * addressable; k (1 ≤ k ≤ 7) means that the first k bytes are * addressible; any negative value indicates that the entire 8-byte * word is unaddressable. We use different negative values to * distinguish between different kinds of unaddressable memory (heap * redzones, stack redzones, global redzones, freed memory). * * Here's what the generated code looks like for 64-bit reads: * * movq %addr,%tmp * shrq $3,%tmp * cmpb $0,0x7fff8000(%tmp) * jnz abort * movq (%addr),%dst */ #define RBP __builtin_frame_address(0) #define HOOK(HOOK, IMPL) \ do { \ if (_weaken(HOOK)) { \ *_weaken(HOOK) = IMPL; \ } \ } while (0) #define REQUIRE(FUNC) \ do { \ if (!_weaken(FUNC)) { \ __asan_require_failed(#FUNC); \ } \ } while (0) struct AsanTrace { uint32_t p[ASAN_TRACE_ITEMS]; // assumes linkage into 32-bit space }; struct AsanExtra { uint64_t size; struct AsanTrace bt; }; struct AsanSourceLocation { const char *filename; int line; int column; }; struct AsanAccessInfo { const char *addr; const uintptr_t first_bad_addr; size_t size; bool iswrite; unsigned long ip; }; struct AsanGlobal { const char *addr; size_t size; size_t size_with_redzone; const void *name; const void *module_name; unsigned long has_cxx_init; struct AsanSourceLocation *location; char *odr_indicator; }; struct ReportOriginHeap { const unsigned char *a; int z; }; static struct AsanMorgue { _Atomic(unsigned) i; _Atomic(void *) p[ASAN_MORGUE_ITEMS]; } __asan_morgue; int __asan_option_detect_stack_use_after_return = 0; void __asan_version_mismatch_check_v8(void) { } static bool __asan_once(void) { bool want = false; static atomic_int once; return atomic_compare_exchange_strong_explicit( &once, &want, true, memory_order_relaxed, memory_order_relaxed); } #define __asan_unreachable() \ do { \ for (;;) __builtin_trap(); \ } while (0) static int __asan_bsf(uint64_t x) { _Static_assert(sizeof(long long) == sizeof(uint64_t), ""); return __builtin_ctzll(x); } static int __asan_bsr(uint64_t x) { _Static_assert(sizeof(long long) == sizeof(uint64_t), ""); return __builtin_clzll(x) ^ 63; } static uint64_t __asan_roundup2pow(uint64_t x) { return 2ull << __asan_bsr(x - 1); } static char *__asan_utf8cpy(char *p, unsigned c) { uint64_t z; z = _tpenc(c); do *p++ = z; while ((z >>= 8)); return p; } static char *__asan_stpcpy(char *d, const char *s) { size_t i; for (i = 0;; ++i) { if (!(d[i] = s[i])) { return d + i; } } } static void __asan_memset(void *p, char c, size_t n) { char *b; size_t i; uint64_t x; b = p; x = 0x0101010101010101ul * (c & 255); switch (n) { case 0: break; case 1: __builtin_memcpy(b, &x, 1); break; case 2: __builtin_memcpy(b, &x, 2); break; case 3: __builtin_memcpy(b, &x, 2); __builtin_memcpy(b + 1, &x, 2); break; case 4: __builtin_memcpy(b, &x, 4); break; case 5: case 6: case 7: __builtin_memcpy(b, &x, 4); __builtin_memcpy(b + n - 4, &x, 4); break; case 8: __builtin_memcpy(b, &x, 8); break; case 9: case 10: case 11: case 12: case 13: case 14: case 15: case 16: __builtin_memcpy(b, &x, 8); __builtin_memcpy(b + n - 8, &x, 8); break; default: i = 0; do { __builtin_memcpy(b + i, &x, 8); asm volatile("" ::: "memory"); __builtin_memcpy(b + i + 8, &x, 8); } while ((i += 16) + 16 <= n); for (; i < n; ++i) b[i] = x; break; } } static void *__asan_mempcpy(void *dst, const void *src, size_t n) { size_t i; char *d; const char *s; uint64_t a, b; d = dst; s = src; switch (n) { case 0: return d; case 1: *d = *s; return d + 1; case 2: __builtin_memcpy(&a, s, 2); __builtin_memcpy(d, &a, 2); return d + 2; case 3: __builtin_memcpy(&a, s, 2); __builtin_memcpy(&b, s + 1, 2); __builtin_memcpy(d, &a, 2); __builtin_memcpy(d + 1, &b, 2); return d + 3; case 4: __builtin_memcpy(&a, s, 4); __builtin_memcpy(d, &a, 4); return d + 4; case 5: case 6: case 7: __builtin_memcpy(&a, s, 4); __builtin_memcpy(&b, s + n - 4, 4); __builtin_memcpy(d, &a, 4); __builtin_memcpy(d + n - 4, &b, 4); return d + n; case 8: __builtin_memcpy(&a, s, 8); __builtin_memcpy(d, &a, 8); return d + 8; case 9: case 10: case 11: case 12: case 13: case 14: case 15: case 16: __builtin_memcpy(&a, s, 8); __builtin_memcpy(&b, s + n - 8, 8); __builtin_memcpy(d, &a, 8); __builtin_memcpy(d + n - 8, &b, 8); return d + n; default: i = 0; do { __builtin_memcpy(&a, s + i, 8); asm volatile("" ::: "memory"); __builtin_memcpy(d + i, &a, 8); } while ((i += 8) + 8 <= n); for (; i < n; ++i) d[i] = s[i]; return d + i; } } static void *__asan_memcpy(void *dst, const void *src, size_t n) { __asan_mempcpy(dst, src, n); return dst; } static char *__asan_hexcpy(char *p, uint64_t x, uint8_t k) { while (k) *p++ = "0123456789abcdef"[(x >> (k -= 4)) & 15]; return p; } static void __asan_exit(void) { kprintf("your asan runtime needs\n" "\tSTATIC_YOINK(\"__die\");\n" "in order to show you backtraces\n"); _Exitr(99); } dontdiscard static __asan_die_f *__asan_die(void) { if (_weaken(__die)) { return _weaken(__die); } else { return __asan_exit; } } static wontreturn void __asan_require_failed(const char *func) { kprintf("error: asan needs %s\n", func); __asan_die()(); __asan_unreachable(); } void __asan_poison(void *p, long n, signed char t) { signed char k, *s; s = (signed char *)(((intptr_t)p >> 3) + 0x7fff8000); if ((k = (intptr_t)p & 7)) { if ((!*s && n >= 8 - k) || *s > k) *s = k; n -= MIN(8 - k, n); s += 1; } __asan_memset(s, t, n >> 3); if ((k = n & 7)) { s += n >> 3; if (*s < 0 || (*s > 0 && *s <= k)) *s = t; } } void __asan_unpoison(void *p, long n) { signed char k, *s; k = (intptr_t)p & 7; s = (signed char *)(((intptr_t)p >> 3) + 0x7fff8000); if (UNLIKELY(k)) { if (k + n < 8) { if (n > 0) *s = MAX(*s, k + n); return; } n -= MIN(8 - k, n); *s++ = 0; } __asan_memset(s, 0, n >> 3); if ((k = n & 7)) { s += n >> 3; if (*s < 0) *s = k; if (*s > 0) *s = MAX(*s, k); } } static bool __asan_is_mapped(int x) { // xxx: we can't lock because no reentrant locks yet int i; bool res; struct MemoryIntervals *m; __mmi_lock(); m = _weaken(_mmi); i = FindMemoryInterval(m, x); res = i < m->i && x >= m->p[i].x; __mmi_unlock(); return res; } static bool __asan_is_image(const unsigned char *p) { return __executable_start <= p && p < _end; } static bool __asan_exists(const void *x) { return !kisdangerous(x); } static struct AsanFault __asan_fault(const signed char *s, signed char dflt) { struct AsanFault r; if (s[0] < 0) { r.kind = s[0]; } else if (((uintptr_t)(s + 1) & (PAGESIZE - 1)) && s[1] < 0) { r.kind = s[1]; } else { r.kind = dflt; } r.shadow = s; return r; } static struct AsanFault __asan_checka(const signed char *s, long ndiv8) { uint64_t w; const signed char *e = s + ndiv8; for (; ((intptr_t)s & 7) && s < e; ++s) { if (*s) return __asan_fault(s - 1, kAsanHeapOverrun); } for (; s + 8 <= e; s += 8) { if (UNLIKELY(!((intptr_t)s & (FRAMESIZE - 1))) && kisdangerous(s)) { return (struct AsanFault){kAsanUnmapped, s}; } if ((w = ((uint64_t)(255 & s[0]) << 000 | (uint64_t)(255 & s[1]) << 010 | (uint64_t)(255 & s[2]) << 020 | (uint64_t)(255 & s[3]) << 030 | (uint64_t)(255 & s[4]) << 040 | (uint64_t)(255 & s[5]) << 050 | (uint64_t)(255 & s[6]) << 060 | (uint64_t)(255 & s[7]) << 070))) { s += __asan_bsf(w) >> 3; return __asan_fault(s, kAsanHeapOverrun); } } for (; s < e; ++s) { if (*s) return __asan_fault(s - 1, kAsanHeapOverrun); } return (struct AsanFault){0}; } /** * Checks validity of memory range. * * This is normally abstracted by the compiler. In some cases, it may be * desirable to perform an ASAN memory safety check explicitly, e.g. for * system call wrappers that need to vet memory passed to the kernel, or * string library routines that use the `noasan` keyword due to compiler * generated ASAN being too costly. This function is fast especially for * large memory ranges since this takes a few picoseconds for each byte. * * @param p is starting virtual address * @param n is number of bytes to check * @return kind is 0 on success or <0 if invalid * @return shadow points to first poisoned shadow byte */ struct AsanFault __asan_check(const void *p, long n) { struct AsanFault f; signed char c, k, *s; if (n > 0) { k = (intptr_t)p & 7; s = SHADOW(p); if (OverlapsShadowSpace(p, n)) { return (struct AsanFault){kAsanProtected, s}; } else if (kisdangerous(s)) { return (struct AsanFault){kAsanUnmapped, s}; } if (UNLIKELY(k)) { if (!(c = *s)) { n -= MIN(8 - k, n); s += 1; } else if (c > 0 && n < 8 && c >= k + n) { return (struct AsanFault){0}; } else { return __asan_fault(s, kAsanHeapOverrun); } } k = n & 7; n >>= 3; if ((f = __asan_checka(s, n)).kind) { return f; } else if (!k || !(c = s[n]) || k <= c) { return (struct AsanFault){0}; } else { return __asan_fault(s, kAsanHeapOverrun); } } else if (!n) { return (struct AsanFault){0}; } else { return (struct AsanFault){kAsanNullPage, 0}; } } /** * Checks validity of nul-terminated string. * * This is similar to `__asan_check(p, 1)` except it checks the validity * of the entire string including its trailing nul byte, and goes faster * than calling strlen() beforehand. * * @param p is starting virtual address * @param n is number of bytes to check * @return kind is 0 on success or <0 if invalid * @return shadow points to first poisoned shadow byte */ struct AsanFault __asan_check_str(const char *p) { uint64_t w; struct AsanFault f; signed char c, k, *s; s = SHADOW(p); if (OverlapsShadowSpace(p, 1)) { return (struct AsanFault){kAsanProtected, s}; } if (kisdangerous(s)) { return (struct AsanFault){kAsanUnmapped, s}; } if ((k = (intptr_t)p & 7)) { do { if ((c = *s) && c < k + 1) { return __asan_fault(s, kAsanHeapOverrun); } if (!*p++) { return (struct AsanFault){0}; } } while ((k = (intptr_t)p & 7)); ++s; } for (;; ++s, p += 8) { if (UNLIKELY(!((intptr_t)s & (FRAMESIZE - 1))) && kisdangerous(s)) { return (struct AsanFault){kAsanUnmapped, s}; } if ((c = *s) < 0) { return (struct AsanFault){c, s}; } w = *(const uint64_t *)p; if (!(w = ~w & (w - 0x0101010101010101) & 0x8080808080808080)) { if (c > 0) { return __asan_fault(s, kAsanHeapOverrun); } } else { k = (unsigned)__builtin_ctzll(w) >> 3; if (!c || c > k) { return (struct AsanFault){0}; } else { return __asan_fault(s, kAsanHeapOverrun); } } } } /** * Checks memory validity of memory region. */ bool __asan_is_valid(const void *p, long n) { struct AsanFault f; f = __asan_check(p, n); return !f.kind; } /** * Checks memory validity of nul-terminated string. */ bool __asan_is_valid_str(const char *p) { struct AsanFault f; f = __asan_check_str(p); return !f.kind; } /** * Checks memory validity of null-terminated nul-terminated string list. */ bool __asan_is_valid_strlist(char *const *p) { for (;; ++p) { if (!__asan_is_valid(p, sizeof(char *))) return false; if (!*p) return true; if (!__asan_is_valid_str(*p)) return false; } } /** * Checks memory validity of `iov` array and each buffer it describes. */ bool __asan_is_valid_iov(const struct iovec *iov, int iovlen) { int i; size_t size; if (iovlen >= 0 && !__builtin_mul_overflow(iovlen, sizeof(struct iovec), &size) && __asan_is_valid(iov, size)) { for (i = 0; i < iovlen; ++i) { if (!__asan_is_valid(iov[i].iov_base, iov[i].iov_len)) { return false; } } return true; } else { return false; } } static wint_t __asan_symbolize_access_poison(signed char kind) { switch (kind) { case kAsanNullPage: return L'∅'; case kAsanProtected: return L'P'; case kAsanHeapFree: return L'F'; case kAsanHeapRelocated: return L'R'; case kAsanAllocaOverrun: return L'𝑂'; case kAsanHeapUnderrun: return L'U'; case kAsanHeapOverrun: return L'O'; case kAsanStackUnscoped: return L's'; case kAsanStackOverflow: return L'!'; case kAsanGlobalOrder: return L'I'; case kAsanStackFree: return L'r'; case kAsanStackPartial: return L'p'; case kAsanStackOverrun: return L'o'; case kAsanStackMiddle: return L'm'; case kAsanStackUnderrun: return L'u'; case kAsanAllocaUnderrun: return L'𝑈'; case kAsanUnmapped: return L'M'; case kAsanGlobalRedzone: return L'G'; case kAsanGlobalGone: return L'𝐺'; case kAsanGlobalUnderrun: return L'μ'; case kAsanGlobalOverrun: return L'Ω'; default: return L'?'; } } static const char *__asan_describe_access_poison(signed char kind) { switch (kind) { case kAsanNullPage: return "null pointer dereference"; case kAsanProtected: return "protected"; case kAsanHeapFree: return "heap use after free"; case kAsanHeapRelocated: return "heap use after relocate"; case kAsanAllocaOverrun: return "alloca overflow"; case kAsanHeapUnderrun: return "heap underrun"; case kAsanHeapOverrun: return "heap overrun"; case kAsanStackUnscoped: return "stack use after scope"; case kAsanStackOverflow: return "stack overflow"; case kAsanGlobalOrder: return "global init order"; case kAsanStackFree: return "stack use after return"; case kAsanStackPartial: return "stack partial"; case kAsanStackOverrun: return "stack overrun"; case kAsanStackMiddle: return "stack middle"; case kAsanStackUnderrun: return "stack underflow"; case kAsanAllocaUnderrun: return "alloca underflow"; case kAsanUnmapped: return "unmapped"; case kAsanGlobalRedzone: return "global redzone"; case kAsanGlobalGone: return "global gone"; case kAsanGlobalUnderrun: return "global underrun"; case kAsanGlobalOverrun: return "global overrun"; default: return "poisoned"; } } static dontdiscard __asan_die_f *__asan_report_invalid_pointer( const void *addr) { kprintf("\n\e[J\e[1;31masan error\e[0m: this corruption at %p shadow %p\n", addr, SHADOW(addr)); return __asan_die(); } static char *__asan_format_interval(char *p, intptr_t a, intptr_t b) { p = __asan_hexcpy(p, a, 48), *p++ = '-'; p = __asan_hexcpy(p, b, 48); return p; } static char *__asan_format_section(char *p, const void *p1, const void *p2, const char *name, const void *addr) { intptr_t a, b; if ((a = (intptr_t)p1) < (b = (intptr_t)p2)) { p = __asan_format_interval(p, a, b), *p++ = ' '; p = __asan_stpcpy(p, name); if (a <= (intptr_t)addr && (intptr_t)addr <= b) { p = __asan_stpcpy(p, " ←address"); } *p++ = '\n'; } return p; } static void __asan_report_memory_origin_image(intptr_t a, int z) { unsigned l, m, r, n, k; struct SymbolTable *st; kprintf("\nthe memory belongs to image symbols\n"); if (_weaken(GetSymbolTable)) { if ((st = _weaken(GetSymbolTable)())) { l = 0; r = n = st->count; k = a - st->addr_base; while (l < r) { m = (l + r) >> 1; if (st->symbols[m].y < k) { l = m + 1; } else { r = m; } } for (; l < n; ++l) { if ((st->symbols[l].x <= k && k <= st->symbols[l].y) || (st->symbols[l].x <= k + z && k + z <= st->symbols[l].y) || (k < st->symbols[l].x && st->symbols[l].y < k + z)) { kprintf("\t%s [%#x,%#x] size %'d\n", st->name_base + st->names[l], st->addr_base + st->symbols[l].x, st->addr_base + st->symbols[l].y, st->symbols[l].y - st->symbols[l].x + 1); } else { break; } } } else { kprintf("\tunknown please supply .com.dbg symbols or set COMDBG\n"); } } else { kprintf("\tunknown please STATIC_YOINK(\"GetSymbolTable\");\n"); } } static noasan void __asan_onmemory(void *x, void *y, size_t n, void *a) { const unsigned char *p = x; struct ReportOriginHeap *t = a; if ((p <= t->a && t->a < p + n) || (p <= t->a + t->z && t->a + t->z < p + n) || (t->a < p && p + n <= t->a + t->z)) { kprintf("%p %,lu bytes [dlmalloc]", x, n); __asan_print_trace(x); kprintf("\n"); } } static void __asan_report_memory_origin_heap(const unsigned char *a, int z) { struct ReportOriginHeap t; kprintf("\nthe memory was allocated by\n"); if (_weaken(malloc_inspect_all)) { t.a = a; t.z = z; _weaken(malloc_inspect_all)(__asan_onmemory, &t); } else { kprintf("\tunknown please STATIC_YOINK(\"malloc_inspect_all\");\n"); } } static void __asan_report_memory_origin(const unsigned char *addr, int size, signed char kind) { switch (kind) { case kAsanStackOverrun: case kAsanGlobalOverrun: case kAsanAllocaOverrun: case kAsanHeapOverrun: addr -= 1; size += 1; break; case kAsanHeapUnderrun: case kAsanStackUnderrun: case kAsanAllocaUnderrun: case kAsanGlobalUnderrun: size += 1; break; case kAsanGlobalRedzone: addr -= 1; size += 2; break; default: break; } if (__executable_start <= addr && addr < _end) { __asan_report_memory_origin_image((intptr_t)addr, size); } else if (IsAutoFrame((intptr_t)addr >> 16)) { __asan_report_memory_origin_heap(addr, size); } } dontdiscard static __asan_die_f *__asan_report(const void *addr, int size, const char *message, signed char kind) { int i; wint_t c; signed char t; uint64_t x, y, z; char *p, *q, *buf, *base; struct MemoryIntervals *m; ftrace_enabled(-1); p = buf = kmalloc(1024 * 1024); kprintf("\n\e[J\e[1;31masan error\e[0m: %s %d-byte %s at %p shadow %p\n", __asan_describe_access_poison(kind), size, message, addr, SHADOW(addr)); if (0 < size && size < 80) { base = (char *)addr - ((80 >> 1) - (size >> 1)); for (i = 0; i < 80; ++i) { if ((char *)addr <= base + i && base + i < (char *)addr + size) { if (__asan_is_valid(base + i, 1)) { *p++ = '*'; } else { *p++ = 'x'; } } else { *p++ = ' '; } } *p++ = '\n'; for (c = i = 0; i < 80; ++i) { if (!(t = __asan_check(base + i, 1).kind)) { if (c != 32) { *p++ = '\e', *p++ = '[', *p++ = '3', *p++ = '2', *p++ = 'm'; c = 32; } *p++ = '.'; } else { if (c != 31) { *p++ = '\e', *p++ = '[', *p++ = '3', *p++ = '1', *p++ = 'm'; c = 31; } p = __asan_utf8cpy(p, __asan_symbolize_access_poison(t)); } } *p++ = '\e', *p++ = '[', *p++ = '3', *p++ = '9', *p++ = 'm'; *p++ = '\n'; for (i = 0; (intptr_t)(base + i) & 7; ++i) *p++ = ' '; for (; i + 8 <= 80; i += 8) { q = p + 8; *p++ = '|'; z = ((intptr_t)(base + i) >> 3) + 0x7fff8000; if (!kisdangerous((void *)z)) { p = __intcpy(p, *(signed char *)z); } else { *p++ = '!'; } while (p < q) { *p++ = ' '; } } for (; i < 80; ++i) *p++ = ' '; *p++ = '\n'; for (i = 0; i < 80; ++i) { p = __asan_utf8cpy(p, __asan_exists(base + i) ? kCp437[((unsigned char *)base)[i]] : L'⋅'); } *p++ = '\n'; } p = __asan_format_section(p, __executable_start, _etext, ".text", addr); p = __asan_format_section(p, _etext, _edata, ".data", addr); p = __asan_format_section(p, _end, _edata, ".bss", addr); __mmi_lock(); for (m = _weaken(_mmi), i = 0; i < m->i; ++i) { x = m->p[i].x; y = m->p[i].y; p = __asan_format_interval(p, x << 16, (y << 16) + (FRAMESIZE - 1)); z = (intptr_t)addr >> 16; if (x <= z && z <= y) p = __asan_stpcpy(p, " ←address"); z = (((intptr_t)addr >> 3) + 0x7fff8000) >> 16; if (x <= z && z <= y) p = __asan_stpcpy(p, " ←shadow"); *p++ = '\n'; } __mmi_unlock(); *p = 0; kprintf("%s", buf); __asan_report_memory_origin(addr, size, kind); kprintf("\nthe crash was caused by\n"); ftrace_enabled(+1); return __asan_die(); } static wontreturn void __asan_verify_failed(const void *p, size_t n, struct AsanFault f) { const char *q; q = UNSHADOW(f.shadow); if ((uintptr_t)q != ((uintptr_t)p & -8) && (uintptr_t)q - (uintptr_t)p < n) { n -= (uintptr_t)q - (uintptr_t)p; p = q; } __asan_report(p, n, "verify", f.kind)(); __asan_unreachable(); } void __asan_verify(const void *p, size_t n) { struct AsanFault f; if (!(f = __asan_check(p, n)).kind) return; __asan_verify_failed(p, n, f); } void __asan_verify_str(const char *p) { struct AsanFault f; if (!(f = __asan_check_str(p)).kind) return; __asan_verify_failed(UNSHADOW(f.shadow), 8, f); } static dontdiscard __asan_die_f *__asan_report_memory_fault( void *addr, int size, const char *message) { return __asan_report(addr, size, message, __asan_fault(SHADOW(addr), -128).kind); } static void *__asan_morgue_add(void *p) { return atomic_exchange_explicit( __asan_morgue.p + (atomic_fetch_add_explicit(&__asan_morgue.i, 1, memory_order_acq_rel) & (ARRAYLEN(__asan_morgue.p) - 1)), p, memory_order_acq_rel); } __attribute__((__destructor__)) static void __asan_morgue_flush(void) { unsigned i; for (i = 0; i < ARRAYLEN(__asan_morgue.p); ++i) { if (atomic_load_explicit(__asan_morgue.p + i, memory_order_acquire)) { _weaken(dlfree)(atomic_exchange_explicit(__asan_morgue.p + i, 0, memory_order_release)); } } } static size_t __asan_user_size(size_t n) { if (n) { return n; } else { return 1; } } static size_t __asan_heap_size(size_t n) { if (n < 0x7fffffff0000) { n = ROUNDUP(n, _Alignof(struct AsanExtra)); return __asan_roundup2pow(n + sizeof(struct AsanExtra)); } else { return -1; } } static void __asan_write48(uint64_t *value, uint64_t x) { uint64_t cookie; cookie = 'J' | 'T' << 8; cookie ^= x & 0xffff; *value = (x & 0xffffffffffff) | cookie << 48; } static bool __asan_read48(uint64_t value, uint64_t *x) { uint64_t cookie; cookie = value >> 48; cookie ^= value & 0xffff; *x = (int64_t)(value << 16) >> 16; return cookie == ('J' | 'T' << 8); } static void __asan_rawtrace(struct AsanTrace *bt, const struct StackFrame *bp) { size_t i; for (i = 0; bp && i < ARRAYLEN(bt->p); ++i, bp = bp->next) { if (kisdangerous(bp)) break; bt->p[i] = bp->addr; } for (; i < ARRAYLEN(bt->p); ++i) { bt->p[i] = 0; } } static void __asan_trace(struct AsanTrace *bt, const struct StackFrame *bp) { int f1, f2; size_t i, gi; intptr_t addr; struct Garbages *garbage; garbage = __tls_enabled ? __get_tls()->tib_garbages : 0; gi = garbage ? garbage->i : 0; for (f1 = -1, i = 0; bp && i < ARRAYLEN(bt->p); ++i, bp = bp->next) { if (f1 != (f2 = ((intptr_t)bp >> 16))) { if (kisdangerous(bp)) break; f1 = f2; } if (!__asan_checka(SHADOW(bp), sizeof(*bp) >> 3).kind) { addr = bp->addr; #ifdef __x86_64__ if (addr == (uintptr_t)_weaken(__gc) && (uintptr_t)_weaken(__gc)) { do --gi; while ((addr = garbage->p[gi].ret) == (uintptr_t)_weaken(__gc)); } #endif bt->p[i] = addr; } else { break; } } for (; i < ARRAYLEN(bt->p); ++i) { bt->p[i] = 0; } } #define __asan_trace __asan_rawtrace static void *__asan_allocate(size_t a, size_t n, struct AsanTrace *bt, int underrun, int overrun, int initializer) { char *p; size_t c; struct AsanExtra *e; n = __asan_user_size(n); if ((p = _weaken(dlmemalign)(a, __asan_heap_size(n)))) { c = _weaken(dlmalloc_usable_size)(p); e = (struct AsanExtra *)(p + c - sizeof(*e)); __asan_unpoison(p, n); __asan_poison(p - 16, 16, underrun); /* see dlmalloc design */ __asan_poison(p + n, c - n, overrun); __asan_memset(p, initializer, n); __asan_write48(&e->size, n); __asan_memcpy(&e->bt, bt, sizeof(*bt)); } return p; } static void *__asan_allocate_heap(size_t a, size_t n, struct AsanTrace *bt) { return __asan_allocate(a, n, bt, kAsanHeapUnderrun, kAsanHeapOverrun, 0xf9); } static struct AsanExtra *__asan_get_extra(const void *p, size_t *c) { int f; long x, n; struct AsanExtra *e; f = (intptr_t)p >> 16; if (!kisdangerous(p) && (n = _weaken(dlmalloc_usable_size)(p)) > sizeof(*e) && !__builtin_add_overflow((intptr_t)p, n, &x) && x <= 0x800000000000 && (LIKELY(f == (int)((x - 1) >> 16)) || !kisdangerous((void *)(x - 1))) && (LIKELY(f == (int)((x = x - sizeof(*e)) >> 16)) || __asan_is_mapped(x >> 16)) && !(x & (_Alignof(struct AsanExtra) - 1))) { *c = n; return (struct AsanExtra *)x; } else { return 0; } } size_t __asan_get_heap_size(const void *p) { size_t n, c; struct AsanExtra *e; if ((e = __asan_get_extra(p, &c)) && __asan_read48(e->size, &n)) { return n; } return 0; } static size_t __asan_malloc_usable_size(void *p) { size_t n, c; struct AsanExtra *e; if ((e = __asan_get_extra(p, &c)) && __asan_read48(e->size, &n)) { return n; } __asan_report_invalid_pointer(p)(); __asan_unreachable(); } int __asan_print_trace(void *p) { size_t c, i, n; struct AsanExtra *e; if (!(e = __asan_get_extra(p, &c))) { kprintf(" bad pointer"); return einval(); } if (!__asan_read48(e->size, &n)) { kprintf(" bad cookie"); return -1; } kprintf("\n%p %,lu bytes [asan]", (char *)p, n); if (!__asan_is_mapped((((intptr_t)p >> 3) + 0x7fff8000) >> 16)) { kprintf(" (shadow not mapped?!)"); } for (i = 0; i < ARRAYLEN(e->bt.p) && e->bt.p[i]; ++i) { kprintf("\n%*lx %s", 12, e->bt.p[i], _weaken(GetSymbolByAddr) ? _weaken(GetSymbolByAddr)(e->bt.p[i]) : "please STATIC_YOINK(\"GetSymbolByAddr\")"); } return 0; } // Returns true if `p` was allocated by an IGNORE_LEAKS(function). int __asan_is_leaky(void *p) { int sym; size_t c, i, n; intptr_t f, *l; struct AsanExtra *e; struct SymbolTable *st; if (!_weaken(GetSymbolTable)) notpossible; if (!(e = __asan_get_extra(p, &c))) return 0; if (!__asan_read48(e->size, &n)) return 0; if (!__asan_is_mapped((((intptr_t)p >> 3) + 0x7fff8000) >> 16)) return 0; if (!(st = GetSymbolTable())) return 0; for (i = 0; i < ARRAYLEN(e->bt.p) && e->bt.p[i]; ++i) { if ((sym = _weaken(__get_symbol)(st, e->bt.p[i])) == -1) continue; f = st->addr_base + st->symbols[sym].x; for (l = _leaky_start; l < _leaky_end; ++l) { if (f == *l) { return 1; } } } return 0; } static void __asan_deallocate(char *p, long kind) { size_t c, n; struct AsanExtra *e; if ((e = __asan_get_extra(p, &c))) { if (__asan_read48(e->size, &n)) { __asan_poison(p, c, kind); if (c <= ASAN_MORGUE_THRESHOLD) { p = __asan_morgue_add(p); } _weaken(dlfree)(p); } else { __asan_report_invalid_pointer(p)(); __asan_unreachable(); } } else { __asan_report_invalid_pointer(p)(); __asan_unreachable(); } } void __asan_free(void *p) { if (!p) return; __asan_deallocate(p, kAsanHeapFree); } size_t __asan_bulk_free(void *p[], size_t n) { size_t i; for (i = 0; i < n; ++i) { if (p[i]) { __asan_deallocate(p[i], kAsanHeapFree); p[i] = 0; } } return 0; } static void *__asan_realloc_nogrow(void *p, size_t n, size_t m, struct AsanTrace *bt) { return 0; } static void *__asan_realloc_grow(void *p, size_t n, size_t m, struct AsanTrace *bt) { char *q; if ((q = __asan_allocate_heap(16, n, bt))) { __asan_memcpy(q, p, m); __asan_deallocate(p, kAsanHeapRelocated); } return q; } static void *__asan_realloc_impl(void *p, size_t n, void *grow(void *, size_t, size_t, struct AsanTrace *)) { size_t c, m; struct AsanExtra *e; if ((e = __asan_get_extra(p, &c))) { if (__asan_read48(e->size, &m)) { if (n <= m) { // shrink __asan_poison((char *)p + n, m - n, kAsanHeapOverrun); __asan_write48(&e->size, n); return p; } else if (n <= c - sizeof(struct AsanExtra)) { // small growth __asan_unpoison((char *)p + m, n - m); __asan_write48(&e->size, n); return p; } else { // exponential growth return grow(p, n, m, &e->bt); } } } __asan_report_invalid_pointer(p)(); __asan_unreachable(); } void *__asan_malloc(size_t size) { struct AsanTrace bt; __asan_trace(&bt, RBP); return __asan_allocate_heap(16, size, &bt); } void *__asan_memalign(size_t align, size_t size) { struct AsanTrace bt; __asan_trace(&bt, RBP); return __asan_allocate_heap(align, size, &bt); } void *__asan_calloc(size_t n, size_t m) { char *p; struct AsanTrace bt; __asan_trace(&bt, RBP); if (__builtin_mul_overflow(n, m, &n)) n = -1; return __asan_allocate(16, n, &bt, kAsanHeapUnderrun, kAsanHeapOverrun, 0x00); } void *__asan_realloc(void *p, size_t n) { struct AsanTrace bt; if (p) { if (n) { return __asan_realloc_impl(p, n, __asan_realloc_grow); } else { __asan_free(p); return 0; } } else { __asan_trace(&bt, RBP); return __asan_allocate_heap(16, n, &bt); } } void *__asan_realloc_in_place(void *p, size_t n) { return p ? __asan_realloc_impl(p, n, __asan_realloc_nogrow) : 0; } int __asan_malloc_trim(size_t pad) { __asan_morgue_flush(); return _weaken(dlmalloc_trim) ? _weaken(dlmalloc_trim)(pad) : 0; } void *__asan_stack_malloc(size_t size, int classid) { struct AsanTrace bt; __asan_trace(&bt, RBP); return __asan_allocate(16, size, &bt, kAsanStackUnderrun, kAsanStackOverrun, 0xf9); } void __asan_stack_free(char *p, size_t size, int classid) { __asan_deallocate(p, kAsanStackFree); } void __asan_handle_no_return(void) { __asan_unpoison((void *)GetStackAddr(), GetStackSize()); } void __asan_register_globals(struct AsanGlobal g[], int n) { int i; __asan_poison(g, sizeof(*g) * n, kAsanProtected); for (i = 0; i < n; ++i) { __asan_poison(g[i].addr + g[i].size, g[i].size_with_redzone - g[i].size, kAsanGlobalRedzone); if (g[i].location) { __asan_poison(g[i].location, sizeof(*g[i].location), kAsanProtected); } } } void __asan_unregister_globals(struct AsanGlobal g[], int n) { int i; for (i = 0; i < n; ++i) { __asan_poison(g[i].addr, g[i].size, kAsanGlobalGone); } } void __asan_evil(uint8_t *addr, int size, const char *s) { struct AsanTrace tr; __asan_rawtrace(&tr, RBP); kprintf("WARNING: ASAN bad %d byte %s at %lx bt %x %x %x\n", size, s, addr, tr.p[0], tr.p[1], tr.p[2], tr.p[3]); } void __asan_report_load(uint8_t *addr, int size) { __asan_evil(addr, size, "load"); if (!__vforked && __asan_once()) { __asan_report_memory_fault(addr, size, "load")(); __asan_unreachable(); } } void __asan_report_store(uint8_t *addr, int size) { __asan_evil(addr, size, "store"); if (!__vforked && __asan_once()) { __asan_report_memory_fault(addr, size, "store")(); __asan_unreachable(); } } void __asan_poison_stack_memory(char *addr, size_t size) { __asan_poison(addr, size, kAsanStackFree); } void __asan_unpoison_stack_memory(char *addr, size_t size) { __asan_unpoison(addr, size); } void __asan_alloca_poison(char *addr, uintptr_t size) { __asan_poison(addr - 32, 32, kAsanAllocaUnderrun); __asan_poison(addr + size, 32, kAsanAllocaOverrun); } void __asan_allocas_unpoison(uintptr_t x, uintptr_t y) { if (!x || x > y) return; __asan_memset((void *)((x >> 3) + 0x7fff8000), 0, (y - x) / 8); } void *__asan_addr_is_in_fake_stack(void *fakestack, void *addr, void **beg, void **end) { return 0; } void *__asan_get_current_fake_stack(void) { return 0; } void __sanitizer_annotate_contiguous_container(char *beg, char *end, char *old_mid, char *new_mid) { // the c++ stl uses this // TODO(jart): make me faster __asan_unpoison(beg, new_mid - beg); __asan_poison(new_mid, end - new_mid, kAsanHeapOverrun); } void __asan_before_dynamic_init(const char *module_name) { } void __asan_after_dynamic_init(void) { } void __asan_install_malloc_hooks(void) { HOOK(hook_free, __asan_free); HOOK(hook_malloc, __asan_malloc); HOOK(hook_calloc, __asan_calloc); HOOK(hook_realloc, __asan_realloc); HOOK(hook_memalign, __asan_memalign); HOOK(hook_bulk_free, __asan_bulk_free); HOOK(hook_malloc_trim, __asan_malloc_trim); HOOK(hook_realloc_in_place, __asan_realloc_in_place); HOOK(hook_malloc_usable_size, __asan_malloc_usable_size); } void __asan_map_shadow(uintptr_t p, size_t n) { // assume _mmi.lock is held void *addr; int i, a, b; size_t size; int prot, flag; struct DirectMap sm; struct MemoryIntervals *m; if (OverlapsShadowSpace((void *)p, n)) { kprintf("error: %p size %'zu overlaps shadow space\n", p, n); _Exit(1); } m = _weaken(_mmi); a = (0x7fff8000 + (p >> 3)) >> 16; b = (0x7fff8000 + (p >> 3) + (n >> 3) + 0xffff) >> 16; for (; a <= b; a += i) { i = 1; if (__asan_is_mapped(a)) { continue; } for (; a + i <= b; ++i) { if (__asan_is_mapped(a + i)) { break; } } size = (size_t)i << 16; addr = (void *)ADDR_32_TO_48(a); prot = PROT_READ | PROT_WRITE; flag = MAP_PRIVATE | MAP_FIXED | MAP_ANONYMOUS; sm = _weaken(sys_mmap)(addr, size, prot, flag, -1, 0); if (sm.addr == MAP_FAILED || _weaken(TrackMemoryInterval)(m, a, a + i - 1, sm.maphandle, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED, false, false, 0, size) == -1) { kprintf("error: could not map asan shadow memory\n"); __asan_die()(); __asan_unreachable(); } __repstosb(addr, kAsanUnmapped, size); } __asan_unpoison((char *)p, n); } static size_t __asan_strlen(const char *s) { size_t i = 0; while (s[i]) ++i; return i; } static textstartup void __asan_shadow_string(char *s) { __asan_map_shadow((intptr_t)s, __asan_strlen(s) + 1); } static textstartup void __asan_shadow_auxv(intptr_t *auxv) { size_t i; for (i = 0; auxv[i]; i += 2) { if (_weaken(AT_RANDOM) && auxv[i] == *_weaken(AT_RANDOM)) { __asan_map_shadow(auxv[i + 1], 16); } else if (_weaken(AT_EXECFN) && auxv[i] == *_weaken(AT_EXECFN)) { __asan_shadow_string((char *)auxv[i + 1]); } else if (_weaken(AT_PLATFORM) && auxv[i] == *_weaken(AT_PLATFORM)) { __asan_shadow_string((char *)auxv[i + 1]); } } __asan_map_shadow((uintptr_t)auxv, (i + 2) * sizeof(intptr_t)); } static textstartup void __asan_shadow_string_list(char **list) { size_t i; for (i = 0; list[i]; ++i) { __asan_shadow_string(list[i]); } __asan_map_shadow((uintptr_t)list, (i + 1) * sizeof(char *)); } static textstartup void __asan_shadow_mapping(struct MemoryIntervals *m, size_t i) { uintptr_t x, y; if (i < m->i) { x = m->p[i].x; y = m->p[i].y; __asan_shadow_mapping(m, i + 1); __asan_map_shadow(x << 16, (y - x + 1) << 16); } } static textstartup void __asan_shadow_existing_mappings(void) { __asan_shadow_mapping(&_mmi, 0); __asan_map_shadow(GetStackAddr(), GetStackSize()); __asan_poison((void *)GetStackAddr(), GUARDSIZE, kAsanStackOverflow); } forceinline ssize_t __write_str(const char *s) { return sys_write(2, s, __asan_strlen(s)); } void __asan_init(int argc, char **argv, char **envp, intptr_t *auxv) { static bool once; if (!_cmpxchg(&once, false, true)) return; if (IsWindows() && NtGetVersion() < kNtVersionWindows10) { __write_str("error: asan binaries require windows10\r\n"); _Exitr(0); /* So `make MODE=dbg test` passes w/ Windows7 */ } REQUIRE(_mmi); REQUIRE(sys_mmap); REQUIRE(TrackMemoryInterval); if (_weaken(hook_malloc) || _weaken(hook_calloc) || _weaken(hook_realloc) || _weaken(hook_realloc_in_place) || _weaken(hook_free) || _weaken(hook_malloc_usable_size)) { REQUIRE(dlfree); REQUIRE(dlmemalign); REQUIRE(dlmalloc_usable_size); } __asan_shadow_existing_mappings(); __asan_map_shadow((uintptr_t)__executable_start, _end - __executable_start); __asan_map_shadow(0, 4096); __asan_poison(0, GUARDSIZE, kAsanNullPage); if (!IsWindows()) { sys_mprotect((void *)0x7fff8000, 0x10000, PROT_READ); } __asan_shadow_string_list(argv); __asan_shadow_string_list(envp); __asan_shadow_auxv(auxv); __asan_install_malloc_hooks(); STRACE(" _ ____ _ _ _ "); STRACE(" / \\ / ___| / \\ | \\ | |"); STRACE(" / _ \\ \\___ \\ / _ \\ | \\| |"); STRACE(" / ___ \\ ___) / ___ \\| |\\ |"); STRACE("/_/ \\_\\____/_/ \\_\\_| \\_|"); STRACE("cosmopolitan memory safety module initialized"); } #endif /* __x86_64__ */
43,092
1,511
jart/cosmopolitan
false
cosmopolitan/libc/intrin/mmi.init.S
/*-*- mode:unix-assembly; indent-tabs-mode:t; tab-width:8; coding:utf-8 -*-│ │vi: set et ft=asm ts=8 tw=8 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2021 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/thread/thread.h" #include "libc/macros.internal.h" .init.start 200,_init__mmi movb $OPEN_MAX,_mmi+8 movl $_mmi+24,_mmi+16 movb $PTHREAD_MUTEX_RECURSIVE,__mmi_lock_obj+4(%rip) .init.end 200,_init__mmi
2,057
27
jart/cosmopolitan
false
cosmopolitan/libc/intrin/getfileattributes.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/calls/syscall_support-nt.internal.h" #include "libc/intrin/describeflags.internal.h" #include "libc/intrin/strace.internal.h" #include "libc/nt/enum/fileflagandattributes.h" #include "libc/nt/files.h" #include "libc/nt/thunk/msabi.h" __msabi extern typeof(GetFileAttributes) *const __imp_GetFileAttributesW; /** * Gets file info on the New Technology. * * @return handle, or -1u on failure * @note this wrapper takes care of ABI, STRACE(), and __winerr() */ textwindows uint32_t GetFileAttributes(const char16_t *lpPathName) { uint32_t flags; flags = __imp_GetFileAttributesW(lpPathName); if (flags == -1u) __winerr(); NTTRACE("GetFileAttributes(%#hs) → %s% m", lpPathName, DescribeNtFileFlagAttr(flags)); return flags; }
2,602
42
jart/cosmopolitan
false
cosmopolitan/libc/intrin/strnlen.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2021 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/assert.h" #include "libc/dce.h" #include "libc/intrin/asan.internal.h" #include "libc/intrin/bits.h" #include "libc/str/str.h" #ifndef __aarch64__ static noasan size_t strnlen_x64(const char *s, size_t n, size_t i) { uint64_t w; for (; i + 8 < n; i += 8) { w = *(uint64_t *)(s + i); if ((w = ~w & (w - 0x0101010101010101) & 0x8080808080808080)) { i += (unsigned)__builtin_ctzll(w) >> 3; break; } } return i; } /** * Returns length of NUL-terminated string w/ limit. * * @param s is string * @param n is max length * @return byte length * @asyncsignalsafe */ noasan size_t strnlen(const char *s, size_t n) { size_t i; if (IsAsan() && n) __asan_verify(s, 1); for (i = 0; (uintptr_t)(s + i) & 7; ++i) { if (i == n || !s[i]) return i; } i = strnlen_x64(s, n, i); for (;; ++i) { if (i == n || !s[i]) break; } _unassert(i == n || (i < n && !s[i])); if (IsAsan()) __asan_verify(s, i); return i; } #endif /* __aarch64__ */
2,836
62
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pthread_spin_init.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/intrin/atomic.h" #include "libc/thread/thread.h" /** * Initializes spin lock. * * @param pshared is ignored, since this implementation always permits * multiple processes to operate on the same spin locks * @return 0 on success, or errno on error * @see pthread_spin_destroy * @see pthread_spin_lock */ errno_t(pthread_spin_init)(pthread_spinlock_t *spin, int pshared) { atomic_store_explicit(&spin->_lock, 0, memory_order_relaxed); return 0; }
2,313
35
jart/cosmopolitan
false
cosmopolitan/libc/intrin/describentsecurityattributes.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/calls/state.internal.h" #include "libc/intrin/describeflags.internal.h" #include "libc/nt/struct/securityattributes.h" const char *DescribeNtSecurityAttributes(struct NtSecurityAttributes *p) { if (p == &kNtIsInheritable) return "&kNtIsInheritable"; return "0"; }
2,120
27
jart/cosmopolitan
false
cosmopolitan/libc/intrin/popcnt.h
#ifndef COSMOPOLITAN_LIBC_BITS_POPCNT_H_ #define COSMOPOLITAN_LIBC_BITS_POPCNT_H_ #include "libc/nexgen32e/x86feature.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ size_t _countbits(const void *, size_t); unsigned long popcnt(unsigned long) pureconst; #if defined(__GNUC__) && !defined(__STRICT_ANSI__) && defined(__x86_64__) #define popcnt(X) \ (__builtin_constant_p(X) ? __builtin_popcountll(X) : ({ \ unsigned long PoP = (X); \ if (X86_HAVE(POPCNT)) { \ asm("popcnt\t%0,%0" : "+r"(PoP) : /* no inputs */ : "cc"); \ } else { \ PoP = (popcnt)(PoP); \ } \ PoP; \ })) #else #define popcnt(x) __builtin_popcountll(x) #endif /* GNUC && !ANSI */ COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_BITS_POPCNT_H_ */
1,143
28
jart/cosmopolitan
false
cosmopolitan/libc/intrin/ktcpoptnames.S
/*-*- mode:unix-assembly; indent-tabs-mode:t; tab-width:8; coding:utf-8 -*-│ │vi: set et ft=asm ts=8 tw=8 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2021 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/fmt/magnumstrs.internal.h" #include "libc/macros.internal.h" .macro .e e s .long \e - kTcpOptnames .long .L\@ - kTcpOptnames .rodata.str1.1 .L\@: .string "\s" .previous .endm .section .rodata .balign 4 .underrun kTcpOptnames: .e TCP_NODELAY,"NODELAY" // bool32 .e TCP_CORK,"CORK" // bool32 .e TCP_QUICKACK,"QUICKACK" // bool32 .e TCP_FASTOPEN_CONNECT,"FASTOPEN_CONNECT" // bool32 .e TCP_DEFER_ACCEPT,"DEFER_ACCEPT" // bool32 .e TCP_KEEPIDLE,"KEEPIDLE" // int (seconds) .e TCP_KEEPINTVL,"KEEPINTVL" // int (seconds) .e TCP_FASTOPEN,"FASTOPEN" // int .e TCP_KEEPCNT,"KEEPCNT" // int .e TCP_MAXSEG,"MAXSEG" // int .e TCP_SYNCNT,"SYNCNT" // int .e TCP_NOTSENT_LOWAT,"NOTSENT_LOWAT" // int .e TCP_WINDOW_CLAMP,"WINDOW_CLAMP" // int .e TCP_SAVE_SYN,"SAVE_SYN" // int .e TCP_SAVED_SYN,"SAVED_SYN" // buffer .long MAGNUM_TERMINATOR .endobj kTcpOptnames,globl,hidden .overrun
2,770
52
jart/cosmopolitan
false
cosmopolitan/libc/intrin/intrin.mk
#-*-mode:makefile-gmake;indent-tabs-mode:t;tab-width:8;coding:utf-8-*-┐ #───vi: set et ft=make ts=8 tw=8 fenc=utf-8 :vi───────────────────────┘ PKGS += LIBC_INTRIN LIBC_INTRIN_ARTIFACTS += LIBC_INTRIN_A LIBC_INTRIN = $(LIBC_INTRIN_A_DEPS) $(LIBC_INTRIN_A) LIBC_INTRIN_A = o/$(MODE)/libc/intrin/intrin.a LIBC_INTRIN_A_FILES := $(wildcard libc/intrin/*) LIBC_INTRIN_A_HDRS = $(filter %.h,$(LIBC_INTRIN_A_FILES)) LIBC_INTRIN_A_INCS = $(filter %.inc,$(LIBC_INTRIN_A_FILES)) LIBC_INTRIN_A_SRCS_S = $(filter %.S,$(LIBC_INTRIN_A_FILES)) LIBC_INTRIN_A_SRCS_C = $(filter %.c,$(LIBC_INTRIN_A_FILES)) LIBC_INTRIN_A_SRCS = $(LIBC_INTRIN_A_SRCS_S) $(LIBC_INTRIN_A_SRCS_C) LIBC_INTRIN_A_CHECKS = $(LIBC_INTRIN_A).pkg ifeq ($(ARCH), aarch64) LIBC_INTRIN_A_SRCS_S += $(wildcard libc/intrin/aarch64/*.S) endif LIBC_INTRIN_A_OBJS = \ $(LIBC_INTRIN_A_SRCS_S:%.S=o/$(MODE)/%.o) \ $(LIBC_INTRIN_A_SRCS_C:%.c=o/$(MODE)/%.o) LIBC_INTRIN_A_CHECKS = \ $(LIBC_INTRIN_A).pkg \ $(LIBC_INTRIN_A_HDRS:%=o/$(MODE)/%.ok) LIBC_INTRIN_A_DIRECTDEPS = \ LIBC_STUBS \ LIBC_SYSV \ LIBC_SYSV_CALLS \ LIBC_NEXGEN32E \ LIBC_NT_KERNEL32 \ LIBC_NT_WS2_32 LIBC_INTRIN_A_DEPS := \ $(call uniq,$(foreach x,$(LIBC_INTRIN_A_DIRECTDEPS),$($(x)))) $(LIBC_INTRIN_A): \ libc/intrin/ \ $(LIBC_INTRIN_A).pkg \ $(LIBC_INTRIN_A_OBJS) $(LIBC_INTRIN_A).pkg: \ $(LIBC_INTRIN_A_OBJS) \ $(foreach x,$(LIBC_INTRIN_A_DIRECTDEPS),$($(x)_A).pkg) # we can't use asan because: # __strace_init() calls this before asan is initialized o/$(MODE)/libc/intrin/strace_enabled.o: private \ OVERRIDE_COPTS += \ -fno-sanitize=address # we can't use asan because: # asan guard pages haven't been allocated yet o/$(MODE)/libc/intrin/directmap.o \ o/$(MODE)/libc/intrin/directmap-nt.o: private \ OVERRIDE_COPTS += \ -ffreestanding \ -fno-sanitize=address # we want small code size because: # to keep .text.head under 4096 bytes o/$(MODE)/libc/intrin/mman.greg.o: private \ OVERRIDE_COPTS += \ -Os # we can't use asan and ubsan because: # this is asan and ubsan o/$(MODE)/libc/intrin/asan.o \ o/$(MODE)/libc/intrin/ubsan.o: private \ OVERRIDE_CFLAGS += \ -fno-sanitize=all \ -fno-stack-protector o/$(MODE)/libc/intrin/asan.o: private \ OVERRIDE_CFLAGS += \ -O2 \ -finline \ -finline-functions o/$(MODE)/libc/intrin/asanthunk.o: private \ OVERRIDE_CFLAGS += \ -x-no-pg \ $(MNO_FENTRY) \ -ffreestanding \ -fno-sanitize=all \ -fno-stack-protector # we can't use compiler magic because: # kprintf() is mission critical to error reporting o/$(MODE)/libc/intrin/getmagnumstr.greg.o \ o/$(MODE)/libc/intrin/strerrno.greg.o \ o/$(MODE)/libc/intrin/strerrdoc.greg.o \ o/$(MODE)/libc/intrin/strerror_wr.greg.o \ o/$(MODE)/libc/intrin/kprintf.greg.o: private \ OVERRIDE_CFLAGS += \ -fpie \ -fwrapv \ -x-no-pg \ $(MNO_FENTRY) \ -ffreestanding \ -fno-sanitize=all \ -fno-stack-protector # TODO(jart): Do we really need these? # synchronization primitives are intended to be magic free o/$(MODE)/libc/intrin/futex_wait.o \ o/$(MODE)/libc/intrin/futex_wake.o \ o/$(MODE)/libc/intrin/gettid.greg.o \ o/$(MODE)/libc/intrin/sys_gettid.greg.o \ o/$(MODE)/libc/intrin/_trylock_debug_4.o \ o/$(MODE)/libc/intrin/_spinlock_debug_4.o: private \ OVERRIDE_CFLAGS += \ -fwrapv \ -x-no-pg \ $(MNO_FENTRY) \ -ffreestanding \ -fno-sanitize=all \ -mgeneral-regs-only \ -fno-stack-protector # we can't use asan because: # global gone could be raised o/$(MODE)/libc/intrin/exit.o \ o/$(MODE)/libc/intrin/restorewintty.o: private \ OVERRIDE_CFLAGS += \ -fno-sanitize=all # we can't use -ftrapv because: # this file implements it o/$(MODE)/libc/intrin/ftrapv.o: private \ OVERRIDE_CFLAGS += \ -ffunction-sections \ -ffreestanding \ -fwrapv # we can't use asan because: # sys_mmap() calls these which sets up shadow memory o/$(MODE)/libc/intrin/describeflags.o \ o/$(MODE)/libc/intrin/describeframe.o \ o/$(MODE)/libc/intrin/describemapflags.o \ o/$(MODE)/libc/intrin/describeprotflags.o: private \ OVERRIDE_CFLAGS += \ -fno-sanitize=address o/$(MODE)/libc/intrin/exit1.greg.o \ o/$(MODE)/libc/intrin/wsarecv.o \ o/$(MODE)/libc/intrin/wsarecvfrom.o \ o/$(MODE)/libc/intrin/createfile.o \ o/$(MODE)/libc/intrin/reopenfile.o \ o/$(MODE)/libc/intrin/deletefile.o \ o/$(MODE)/libc/intrin/createpipe.o \ o/$(MODE)/libc/intrin/closehandle.o \ o/$(MODE)/libc/intrin/openprocess.o \ o/$(MODE)/libc/intrin/createthread.o \ o/$(MODE)/libc/intrin/findclose.o \ o/$(MODE)/libc/intrin/findnextfile.o \ o/$(MODE)/libc/intrin/createprocess.o \ o/$(MODE)/libc/intrin/findfirstfile.o \ o/$(MODE)/libc/intrin/removedirectory.o \ o/$(MODE)/libc/intrin/createsymboliclink.o \ o/$(MODE)/libc/intrin/createnamedpipe.o \ o/$(MODE)/libc/intrin/unmapviewoffile.o \ o/$(MODE)/libc/intrin/virtualprotect.o \ o/$(MODE)/libc/intrin/flushviewoffile.o \ o/$(MODE)/libc/intrin/createdirectory.o \ o/$(MODE)/libc/intrin/flushfilebuffers.o \ o/$(MODE)/libc/intrin/terminateprocess.o \ o/$(MODE)/libc/intrin/getfileattributes.o \ o/$(MODE)/libc/intrin/getexitcodeprocess.o \ o/$(MODE)/libc/intrin/waitforsingleobject.o \ o/$(MODE)/libc/intrin/setcurrentdirectory.o \ o/$(MODE)/libc/intrin/mapviewoffileex.o \ o/$(MODE)/libc/intrin/movefileex.o \ o/$(MODE)/libc/intrin/mapviewoffileexnuma.o \ o/$(MODE)/libc/intrin/createfilemapping.o \ o/$(MODE)/libc/intrin/createfilemappingnuma.o \ o/$(MODE)/libc/intrin/waitformultipleobjects.o \ o/$(MODE)/libc/intrin/generateconsolectrlevent.o \ o/$(MODE)/libc/intrin/wsawaitformultipleevents.o: private\ OVERRIDE_CFLAGS += \ -Os \ -fwrapv \ -ffreestanding \ -fno-stack-protector \ -fno-sanitize=all o//libc/intrin/memmove.o: private \ OVERRIDE_CFLAGS += \ -fno-toplevel-reorder o//libc/intrin/bzero.o \ o//libc/intrin/memcmp.o \ o//libc/intrin/memset.o \ o//libc/intrin/memmove.o: private \ OVERRIDE_CFLAGS += \ -O2 -finline o/$(MODE)/libc/intrin/bzero.o \ o/$(MODE)/libc/intrin/memcmp.o \ o/$(MODE)/libc/intrin/memmove.o: private \ OVERRIDE_CFLAGS += \ -fpie # these assembly files are safe to build on aarch64 o/$(MODE)/libc/intrin/aarch64/%.o: libc/intrin/aarch64/%.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< o/$(MODE)/libc/intrin/fenv.o: libc/intrin/fenv.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< o/$(MODE)/libc/intrin/futex.o: libc/intrin/futex.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< o/$(MODE)/libc/intrin/kclocknames.o: libc/intrin/kclocknames.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< o/$(MODE)/libc/intrin/kdos2errno.o: libc/intrin/kdos2errno.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< o/$(MODE)/libc/intrin/kerrnodocs.o: libc/intrin/kerrnodocs.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< o/$(MODE)/libc/intrin/kipoptnames.o: libc/intrin/kipoptnames.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< o/$(MODE)/libc/intrin/kerrnonames.o: libc/intrin/kerrnonames.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< o/$(MODE)/libc/intrin/kfcntlcmds.o: libc/intrin/kfcntlcmds.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< o/$(MODE)/libc/intrin/kopenflags.o: libc/intrin/kopenflags.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< o/$(MODE)/libc/intrin/krlimitnames.o: libc/intrin/krlimitnames.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< o/$(MODE)/libc/intrin/ksignalnames.o: libc/intrin/ksignalnames.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< o/$(MODE)/libc/intrin/ksockoptnames.o: libc/intrin/ksockoptnames.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< o/$(MODE)/libc/intrin/ktcpoptnames.o: libc/intrin/ktcpoptnames.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< o/$(MODE)/libc/intrin/sched_yield.o: libc/intrin/sched_yield.S @$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $< LIBC_INTRIN_LIBS = $(foreach x,$(LIBC_INTRIN_ARTIFACTS),$($(x))) LIBC_INTRIN_HDRS = $(foreach x,$(LIBC_INTRIN_ARTIFACTS),$($(x)_HDRS)) LIBC_INTRIN_INCS = $(foreach x,$(LIBC_INTRIN_ARTIFACTS),$($(x)_INCS)) LIBC_INTRIN_SRCS = $(foreach x,$(LIBC_INTRIN_ARTIFACTS),$($(x)_SRCS)) LIBC_INTRIN_CHECKS = $(foreach x,$(LIBC_INTRIN_ARTIFACTS),$($(x)_CHECKS)) LIBC_INTRIN_OBJS = $(foreach x,$(LIBC_INTRIN_ARTIFACTS),$($(x)_OBJS)) $(LIBC_INTRIN_OBJS): $(BUILD_FILES) libc/intrin/intrin.mk .PHONY: o/$(MODE)/libc/intrin o/$(MODE)/libc/intrin: $(LIBC_INTRIN_CHECKS)
8,870
249
jart/cosmopolitan
false
cosmopolitan/libc/intrin/psubb.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PSUBB_H_ #define COSMOPOLITAN_LIBC_INTRIN_PSUBB_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void psubb(uint8_t[16], const uint8_t[16], const uint8_t[16]); #define psubb(A, B, C) \ INTRIN_SSEVEX_X_X_X_(psubb, SSE2, "psubb", INTRIN_NONCOMMUTATIVE, A, B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PSUBB_H_ */
458
15
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pslldqs.S
/*-*- mode:unix-assembly; indent-tabs-mode:t; tab-width:8; coding:utf-8 -*-│ │vi: set et ft=asm ts=8 tw=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/macros.internal.h" // Jump table for pslldq() with non-constexpr immediate parameter. .balign 8 __pslldqs: pslldq $0,%xmm0 ret nop nop pslldq $1,%xmm0 ret nop nop pslldq $2,%xmm0 ret nop nop pslldq $3,%xmm0 ret nop nop pslldq $4,%xmm0 ret nop nop pslldq $5,%xmm0 ret nop nop pslldq $6,%xmm0 ret nop nop pslldq $7,%xmm0 ret nop nop pslldq $8,%xmm0 ret nop nop pslldq $9,%xmm0 ret nop nop pslldq $10,%xmm0 ret nop nop pslldq $11,%xmm0 ret nop nop pslldq $12,%xmm0 ret nop nop pslldq $13,%xmm0 ret nop nop pslldq $14,%xmm0 ret nop nop pslldq $15,%xmm0 ret nop nop pslldq $16,%xmm0 ret .if . - __pslldqs != 8 * 17 - 2 .error "bad assemblage" .endif .endfn __pslldqs,globl
2,625
94
jart/cosmopolitan
false
cosmopolitan/libc/intrin/kopenflags.S
/*-*- mode:unix-assembly; indent-tabs-mode:t; tab-width:8; coding:utf-8 -*-│ │vi: set et ft=asm ts=8 tw=8 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2021 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/fmt/magnumstrs.internal.h" #include "libc/macros.internal.h" .macro .e e s .long \e - kOpenFlags .long .L\@ - kOpenFlags .rodata.str1.1 .L\@: .string "\s" .previous .endm .section .rodata .balign 4 .underrun kOpenFlags: .e O_RDWR,"RDWR" // order matters .e O_RDONLY,"RDONLY" // .e O_WRONLY,"WRONLY" // .e O_ACCMODE,"ACCMODE" // mask of prev three .e O_CREAT,"CREAT" // .e O_EXCL,"EXCL" // .e O_TRUNC,"TRUNC" // .e O_CLOEXEC,"CLOEXEC" // .e O_NONBLOCK,"NONBLOCK" // .e O_TMPFILE,"TMPFILE" // linux, windows .e O_DIRECTORY,"DIRECTORY" // order matters .e O_DIRECT,"DIRECT" // no-op on xnu/openbsd .e O_APPEND,"APPEND" // weird on nt .e O_NOFOLLOW,"NOFOLLOW" // unix .e O_SYNC,"SYNC" // unix .e O_ASYNC,"ASYNC" // unix .e O_NOCTTY,"NOCTTY" // unix .e O_NOATIME,"NOATIME" // linux .e O_EXEC,"EXEC" // free/openbsd .e O_SEARCH,"SEARCH" // free/netbsd .e O_DSYNC,"DSYNC" // linux/xnu/open/netbsd .e O_RSYNC,"RSYNC" // linux/open/netbsd .e O_PATH,"PATH" // linux .e O_VERIFY,"VERIFY" // freebsd .e O_SHLOCK,"SHLOCK" // bsd .e O_EXLOCK,"EXLOCK" // bsd .e O_RANDOM,"RANDOM" // windows .e O_SEQUENTIAL,"SEQUENTIAL" // windows .e O_COMPRESSED,"COMPRESSED" // windows .e O_INDEXED,"INDEXED" // windows .e O_LARGEFILE,"LARGEFILE" // .long MAGNUM_TERMINATOR .endobj kOpenFlags,globl,hidden .overrun
3,220
68
jart/cosmopolitan
false
cosmopolitan/libc/intrin/newbie.h
#ifndef COSMOPOLITAN_LIBC_BITS_NEWBIE_H_ #define COSMOPOLITAN_LIBC_BITS_NEWBIE_H_ #include "libc/intrin/bswap.h" /* * Macros for newbies. * https://justine.lol/endian.html */ #define BYTE_ORDER __BYTE_ORDER__ #define LITTLE_ENDIAN __ORDER_LITTLE_ENDIAN__ #define BIG_ENDIAN __ORDER_BIG_ENDIAN__ #define PDP_ENDIAN __ORDER_PDP_ENDIAN__ #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ #define htobe16(x) bswap_16(x) #define be16toh(x) bswap_16(x) #define betoh16(x) bswap_16(x) #define htobe32(x) bswap_32(x) #define be32toh(x) bswap_32(x) #define betoh32(x) bswap_32(x) #define htobe64(x) bswap_64(x) #define be64toh(x) bswap_64(x) #define betoh64(x) bswap_64(x) #define htole16(x) (uint16_t)(x) #define le16toh(x) (uint16_t)(x) #define letoh16(x) (uint16_t)(x) #define htole32(x) (uint32_t)(x) #define le32toh(x) (uint32_t)(x) #define letoh32(x) (uint32_t)(x) #define htole64(x) (uint64_t)(x) #define le64toh(x) (uint64_t)(x) #define letoh64(x) (uint64_t)(x) #else #define htobe16(x) (uint16_t)(x) #define be16toh(x) (uint16_t)(x) #define betoh16(x) (uint16_t)(x) #define htobe32(x) (uint32_t)(x) #define be32toh(x) (uint32_t)(x) #define betoh32(x) (uint32_t)(x) #define htobe64(x) (uint64_t)(x) #define be64toh(x) (uint64_t)(x) #define betoh64(x) (uint64_t)(x) #define htole16(x) bswap_16(x) #define le16toh(x) bswap_16(x) #define letoh16(x) bswap_16(x) #define htole32(x) bswap_32(x) #define le32toh(x) bswap_32(x) #define letoh32(x) bswap_32(x) #define htole64(x) bswap_64(x) #define le64toh(x) bswap_64(x) #define letoh64(x) bswap_64(x) #endif #endif /* COSMOPOLITAN_LIBC_BITS_NEWBIE_H_ */
1,608
56
jart/cosmopolitan
false
cosmopolitan/libc/intrin/describentfileshareflags.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/intrin/describeflags.internal.h" #include "libc/macros.internal.h" #include "libc/nt/enum/filesharemode.h" static const struct DescribeFlags kFileShareflags[] = { {kNtFileShareRead, "Read"}, // {kNtFileShareWrite, "Write"}, // {kNtFileShareDelete, "Delete"}, // }; const char *(DescribeNtFileShareFlags)(char buf[64], uint32_t x) { return DescribeFlags(buf, 64, kFileShareflags, ARRAYLEN(kFileShareflags), "kNtFileShare", x); }
2,327
33
jart/cosmopolitan
false
cosmopolitan/libc/intrin/bsf.h
#ifndef COSMOPOLITAN_LIBC_NEXGEN32E_BSF_H_ #define COSMOPOLITAN_LIBC_NEXGEN32E_BSF_H_ #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ int _bsf(int) pureconst; int _bsfl(long) pureconst; int _bsfll(long long) pureconst; int _bsf128(uintmax_t) pureconst; #if defined(__GNUC__) && !defined(__STRICT_ANSI__) #ifdef __x86_64__ #define _bsf(u) \ ({ \ unsigned BiTs; \ asm("bsf\t%0,%0" : "=r"(BiTs) : "0"((unsigned)(u)) : "cc"); \ BiTs; \ }) #define _bsfl(u) \ ({ \ unsigned long BiTs; \ asm("bsf\t%0,%0" : "=r"(BiTs) : "0"((unsigned long)(u)) : "cc"); \ (unsigned)BiTs; \ }) #define _bsfll(u) _bsfl(u) #else #define _bsf(x) __builtin_ctz(x) #define _bsfl(x) __builtin_ctzl(x) #define _bsfll(x) __builtin_ctzll(x) #endif #endif COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_NEXGEN32E_BSF_H_ */
1,302
36
jart/cosmopolitan
false
cosmopolitan/libc/intrin/strsignal_r.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/fmt/itoa.h" #include "libc/fmt/magnumstrs.internal.h" #include "libc/str/str.h" #include "libc/sysv/consts/sig.h" /** * Returns string describing signal code. * * This returns `"0"` for 0 which is the empty value. Symbolic names * should be available for signals 1 through 32. If the system supports * real-time signals, they're returned as `SIGRTMIN+%d`. For all other * 32-bit signed integer, a plain integer representation is returned. * * @param sig is signal number which should be in range 1 through 128 * @param buf may be used to store output having at least 15 bytes * @return pointer to .rodata string, or to `buf` after mutating * @see sigaction() * @asyncsignalsafe * @threadsafe */ char *strsignal_r(int sig, char buf[hasatleast 15]) { int i; char *p; const char *s; if (!sig) return "0"; if ((s = GetMagnumStr(kSignalNames, sig))) return s; if (SIGRTMIN <= sig && sig <= SIGRTMAX) { sig -= SIGRTMIN; buf[0] = 'S'; buf[1] = 'I'; buf[2] = 'G'; buf[3] = 'R'; buf[4] = 'T'; buf[5] = 'M'; buf[6] = 'I'; buf[7] = 'N'; buf[8] = '+'; FormatInt32(buf + 9, sig); } else { FormatInt32(buf, sig); } return buf; }
3,047
62
jart/cosmopolitan
false
cosmopolitan/libc/intrin/packsswb.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/packsswb.h" #include "libc/limits.h" #include "libc/macros.internal.h" #include "libc/str/str.h" /** * Casts shorts to signed chars w/ saturation. * * 𝑎 ← {CLAMP[𝑏ᵢ]|𝑖∈[0,4)} ║ {CLAMP[𝑐ᵢ]|𝑖∈[4,8)} * * @see packuswb() * @mayalias */ void(packsswb)(int8_t a[16], const int16_t b[8], const int16_t c[8]) { unsigned i; int8_t r[16]; for (i = 0; i < 8; ++i) r[i + 0] = MIN(INT8_MAX, MAX(INT8_MIN, b[i])); for (i = 0; i < 8; ++i) r[i + 8] = MIN(INT8_MAX, MAX(INT8_MIN, c[i])); __builtin_memcpy(a, r, 16); }
2,406
39
jart/cosmopolitan
false
cosmopolitan/libc/intrin/isprivateip.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2021 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 "net/http/ip.h" /** * Returns true if IPv4 address is intended for private networks. */ bool IsPrivateIp(uint32_t x) { return (x >> 24) == 10 /* 10.0.0.0/8 */ || (x & 0xfff00000) == 0xac100000 /* 172.16.0.0/12 */ || (x & 0xffff0000) == 0xc0a80000 /* 192.168.0.0/16 */; }
2,160
29
jart/cosmopolitan
false
cosmopolitan/libc/intrin/midpoint.h
#ifndef COSMOPOLITAN_LIBC_BITS_MIDPOINT_H_ #define COSMOPOLITAN_LIBC_BITS_MIDPOINT_H_ #include "libc/assert.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) #if defined(__GNUC__) && !defined(__STRICT_ANSI__) && defined(__x86__) /** * Computes `(a + b) / 2` assuming unsigned. * * This implementation is the fastest on AMD Zen architecture. */ #define _midpoint(a, b) \ ({ \ typeof((a) + (b)) a_ = (a); \ typeof(a_) b_ = (b); \ _unassert(a_ >= 0); \ _unassert(b_ >= 0); \ asm("add\t%1,%0\n\t" \ "rcr\t%0" \ : "+r"(a_) \ : "r"(b_)); \ a_; \ }) #else /** * Computes `(a + b) / 2` assuming unsigned. */ #define _midpoint(a, b) (((a) & (b)) + ((a) ^ (b)) / 2) #endif /* __GNUC__ && !__STRICT_ANSI__ && x86 */ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_BITS_MIDPOINT_H_ */
979
33
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pmullw.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PMULLW_H_ #define COSMOPOLITAN_LIBC_INTRIN_PMULLW_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void pmullw(int16_t[8], const int16_t[8], const int16_t[8]); #define pmullw(A, B, C) \ INTRIN_SSEVEX_X_X_X_(pmullw, SSE2, "pmullw", INTRIN_COMMUTATIVE, A, B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PMULLW_H_ */
459
15
jart/cosmopolitan
false
cosmopolitan/libc/intrin/describesicode.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/fmt/itoa.h" #include "libc/str/str.h" #include "libc/sysv/consts/sicode.h" #include "libc/sysv/consts/sig.h" static bool IsSiUser(int si_code) { if (!IsOpenbsd()) { return si_code == SI_USER; } else { return si_code <= 0; } } static void NameIt(char p[17], const char *s, int si_code) { p = stpcpy(p, s); FormatInt32(p, si_code); } /** * Returns symbolic name for siginfo::si_code value. */ const char *(DescribeSiCode)(char b[17], int sig, int si_code) { NameIt(b, "SI_", si_code); if (si_code == SI_QUEUE) { strcpy(b + 3, "QUEUE"); /* sent by sigqueue(2) */ } else if (si_code == SI_TIMER) { strcpy(b + 3, "TIMER"); /* sent by setitimer(2) or clock_settime(2) */ } else if (si_code == SI_TKILL) { strcpy(b + 3, "TKILL"); /* sent by tkill(2), etc. */ } else if (si_code == SI_MESGQ) { strcpy(b + 3, "MESGQ"); /* sent by mq_notify(2) */ } else if (si_code == SI_MESGQ) { strcpy(b + 3, "MESGQ"); /* aio completion */ } else if (si_code == SI_ASYNCNL) { strcpy(b + 3, "ASYNCNL"); /* aio completion for dns; the horror */ } else if (si_code == SI_NOINFO) { strcpy(b + 3, "NOINFO"); /* no signal specific info available */ } else if (si_code == SI_KERNEL) { strcpy(b + 3, "KERNEL"); /* sent by kernel */ } else if (IsSiUser(si_code)) { strcpy(b + 3, "USER"); /* sent by kill(2) i.e. from userspace */ } else if (sig == SIGCHLD) { NameIt(b, "CLD_", si_code); if (si_code == CLD_EXITED) { strcpy(b + 4, "EXITED"); /* child exited */ } else if (si_code == CLD_KILLED) { strcpy(b + 4, "KILLED"); /* child terminated w/o core */ } else if (si_code == CLD_DUMPED) { strcpy(b + 4, "DUMPED"); /* child terminated w/ core */ } else if (si_code == CLD_TRAPPED) { strcpy(b + 4, "TRAPPED"); /* traced child trapped */ } else if (si_code == CLD_STOPPED) { strcpy(b + 4, "STOPPED"); /* child stopped */ } else if (si_code == CLD_CONTINUED) { strcpy(b + 4, "CONTINUED"); /* stopped child continued */ } } else if (sig == SIGTRAP) { NameIt(b, "TRAP_", si_code); if (si_code == TRAP_BRKPT) { strcpy(b + 5, "BRKPT"); /* process breakpoint */ } else if (si_code == TRAP_TRACE) { strcpy(b + 5, "TRACE"); /* process trace trap */ } } else if (sig == SIGSEGV) { NameIt(b, "SEGV_", si_code); if (si_code == SEGV_MAPERR) { strcpy(b + 5, "MAPERR"); /* address not mapped to object */ } else if (si_code == SEGV_ACCERR) { strcpy(b + 5, "ACCERR"); /* invalid permissions for mapped object */ } else if (si_code == SEGV_PKUERR) { strcpy(b + 5, "PKUERR"); /* FreeBSD: x86: PKU violation */ } } else if (sig == SIGFPE) { NameIt(b, "FPE_???", si_code); if (si_code == FPE_INTDIV) { strcpy(b + 4, "INTDIV"); /* integer divide by zero */ } else if (si_code == FPE_INTOVF) { strcpy(b + 4, "INTOVF"); /* integer overflow */ } else if (si_code == FPE_FLTDIV) { strcpy(b + 4, "FLTDIV"); /* floating point divide by zero */ } else if (si_code == FPE_FLTOVF) { strcpy(b + 4, "FLTOVF"); /* floating point overflow */ } else if (si_code == FPE_FLTUND) { strcpy(b + 4, "FLTUND"); /* floating point underflow */ } else if (si_code == FPE_FLTRES) { strcpy(b + 4, "FLTRES"); /* floating point inexact */ } else if (si_code == FPE_FLTINV) { strcpy(b + 4, "FLTINV"); /* invalid floating point operation */ } else if (si_code == FPE_FLTSUB) { strcpy(b + 4, "FLTSUB"); /* subscript out of range */ } } else if (sig == SIGILL) { NameIt(b, "ILL_", si_code); if (si_code == ILL_ILLOPC) { strcpy(b + 4, "ILLOPC"); /* illegal opcode */ } else if (si_code == ILL_ILLOPN) { strcpy(b + 4, "ILLOPN"); /* illegal operand */ } else if (si_code == ILL_ILLADR) { strcpy(b + 4, "ILLADR"); /* illegal addressing mode */ } else if (si_code == ILL_ILLTRP) { strcpy(b + 4, "ILLTRP"); /* illegal trap */ } else if (si_code == ILL_PRVOPC) { strcpy(b + 4, "PRVOPC"); /* privileged opcode */ } else if (si_code == ILL_PRVREG) { strcpy(b + 4, "PRVREG"); /* privileged register */ } else if (si_code == ILL_COPROC) { strcpy(b + 4, "COPROC"); /* coprocessor error */ } else if (si_code == ILL_BADSTK) { strcpy(b + 4, "BADSTK"); /* internal stack error */ } } else if (sig == SIGBUS) { NameIt(b, "BUS_", si_code); if (si_code == BUS_ADRALN) { strcpy(b + 4, "ADRALN"); /* invalid address alignment */ } else if (si_code == BUS_ADRERR) { strcpy(b + 4, "ADRERR"); /* non-existent physical address */ } else if (si_code == BUS_OBJERR) { strcpy(b + 4, "OBJERR"); /* object specific hardware error */ } else if (si_code == BUS_OOMERR) { strcpy(b + 4, "OOMERR"); /* FreeBSD */ } else if (si_code == BUS_MCEERR_AR) { strcpy(b + 4, "MCEERR_AR"); /* Linux 2.6.32+ */ } else if (si_code == BUS_MCEERR_AO) { strcpy(b + 4, "MCEERR_AO"); /* Linux 2.6.32+ */ } } else if (sig == SIGIO) { NameIt(b, "POLL_", si_code); if (si_code == POLL_IN) { strcpy(b + 5, "IN"); /* data input available */ } else if (si_code == POLL_OUT) { strcpy(b + 5, "OUT"); /* output buffer available */ } else if (si_code == POLL_MSG) { strcpy(b + 5, "MSG"); /* input message available */ } else if (si_code == POLL_ERR) { strcpy(b + 5, "ERR"); /* i/o error */ } else if (si_code == POLL_PRI) { strcpy(b + 5, "PRI"); /* high priority input available */ } else if (si_code == POLL_HUP) { strcpy(b + 5, "HUP"); /* device disconnected */ } } else if (sig == SIGSYS) { NameIt(b, "SYS_", si_code); if (si_code == SYS_SECCOMP) { strcpy(b + 4, "SECCOMP"); } } return b; }
7,681
168
jart/cosmopolitan
false
cosmopolitan/libc/intrin/deletefile.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/calls/syscall_support-nt.internal.h" #include "libc/intrin/strace.internal.h" #include "libc/nt/files.h" #include "libc/nt/thunk/msabi.h" __msabi extern typeof(DeleteFile) *const __imp_DeleteFileW; /** * Deletes existing file. * @note this wrapper takes care of ABI, STRACE(), and __winerr() */ textwindows bool32 DeleteFile(const char16_t *lpPathName) { bool32 ok; ok = __imp_DeleteFileW(lpPathName); if (!ok) __winerr(); NTTRACE("DeleteFile(%#hs) → %hhhd% m", lpPathName, ok); return ok; }
2,360
37
jart/cosmopolitan
false
cosmopolitan/libc/intrin/bits.h
#ifndef COSMOPOLITAN_LIBC_BITS_H_ #define COSMOPOLITAN_LIBC_BITS_H_ #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ #define CheckUnsigned(x) ((x) / !((typeof(x))(-1) < 0)) /*───────────────────────────────────────────────────────────────────────────│─╗ │ cosmopolitan § bits ─╬─│┼ ╚────────────────────────────────────────────────────────────────────────────│*/ extern const uint8_t kReverseBits[256]; uint32_t gray(uint32_t) pureconst; uint32_t ungray(uint32_t) pureconst; int _bitreverse8(int) libcesque pureconst; int _bitreverse16(int) libcesque pureconst; uint32_t _bitreverse32(uint32_t) libcesque pureconst; uint64_t _bitreverse64(uint64_t) libcesque pureconst; unsigned long _roundup2pow(unsigned long) libcesque pureconst; unsigned long _roundup2log(unsigned long) libcesque pureconst; unsigned long _rounddown2pow(unsigned long) libcesque pureconst; unsigned long _hamming(unsigned long, unsigned long) pureconst; unsigned _bextra(const unsigned *, size_t, char); /*───────────────────────────────────────────────────────────────────────────│─╗ │ cosmopolitan § bits » no assembly required ─╬─│┼ ╚────────────────────────────────────────────────────────────────────────────│*/ #ifdef __STRICT_ANSI__ #define READ16LE(S) ((255 & (S)[1]) << 8 | (255 & (S)[0])) #define READ16BE(S) ((255 & (S)[0]) << 8 | (255 & (S)[1])) #define READ32LE(S) \ ((uint32_t)(255 & (S)[3]) << 030 | (uint32_t)(255 & (S)[2]) << 020 | \ (uint32_t)(255 & (S)[1]) << 010 | (uint32_t)(255 & (S)[0]) << 000) #define READ32BE(S) \ ((uint32_t)(255 & (S)[0]) << 030 | (uint32_t)(255 & (S)[1]) << 020 | \ (uint32_t)(255 & (S)[2]) << 010 | (uint32_t)(255 & (S)[3]) << 000) #define READ64LE(S) \ ((uint64_t)(255 & (S)[7]) << 070 | (uint64_t)(255 & (S)[6]) << 060 | \ (uint64_t)(255 & (S)[5]) << 050 | (uint64_t)(255 & (S)[4]) << 040 | \ (uint64_t)(255 & (S)[3]) << 030 | (uint64_t)(255 & (S)[2]) << 020 | \ (uint64_t)(255 & (S)[1]) << 010 | (uint64_t)(255 & (S)[0]) << 000) #define READ64BE(S) \ ((uint64_t)(255 & (S)[0]) << 070 | (uint64_t)(255 & (S)[1]) << 060 | \ (uint64_t)(255 & (S)[2]) << 050 | (uint64_t)(255 & (S)[3]) << 040 | \ (uint64_t)(255 & (S)[4]) << 030 | (uint64_t)(255 & (S)[5]) << 020 | \ (uint64_t)(255 & (S)[6]) << 010 | (uint64_t)(255 & (S)[7]) << 000) #else /* gcc needs help knowing above are mov if s isn't a variable */ #define READ16LE(S) \ ({ \ const uint8_t *Ptr = (const uint8_t *)(S); \ Ptr[1] << 8 | Ptr[0]; \ }) #define READ16BE(S) \ ({ \ const uint8_t *Ptr = (const uint8_t *)(S); \ Ptr[0] << 8 | Ptr[1]; \ }) #define READ32LE(S) \ ({ \ const uint8_t *Ptr = (const uint8_t *)(S); \ ((uint32_t)Ptr[3] << 030 | (uint32_t)Ptr[2] << 020 | \ (uint32_t)Ptr[1] << 010 | (uint32_t)Ptr[0] << 000); \ }) #define READ32BE(S) \ ({ \ const uint8_t *Ptr = (const uint8_t *)(S); \ ((uint32_t)Ptr[0] << 030 | (uint32_t)Ptr[1] << 020 | \ (uint32_t)Ptr[2] << 010 | (uint32_t)Ptr[3] << 000); \ }) #define READ64LE(S) \ ({ \ const uint8_t *Ptr = (const uint8_t *)(S); \ ((uint64_t)Ptr[7] << 070 | (uint64_t)Ptr[6] << 060 | \ (uint64_t)Ptr[5] << 050 | (uint64_t)Ptr[4] << 040 | \ (uint64_t)Ptr[3] << 030 | (uint64_t)Ptr[2] << 020 | \ (uint64_t)Ptr[1] << 010 | (uint64_t)Ptr[0] << 000); \ }) #define READ64BE(S) \ ({ \ const uint8_t *Ptr = (const uint8_t *)(S); \ ((uint64_t)Ptr[0] << 070 | (uint64_t)Ptr[1] << 060 | \ (uint64_t)Ptr[2] << 050 | (uint64_t)Ptr[3] << 040 | \ (uint64_t)Ptr[4] << 030 | (uint64_t)Ptr[5] << 020 | \ (uint64_t)Ptr[6] << 010 | (uint64_t)Ptr[7] << 000); \ }) #endif #define WRITE16LE(P, V) \ ((P)[0] = (0x00000000000000FF & (V)) >> 000, \ (P)[1] = (0x000000000000FF00 & (V)) >> 010, (P) + 2) #define WRITE16BE(P, V) \ ((P)[0] = (0x000000000000FF00 & (V)) >> 010, \ (P)[1] = (0x00000000000000FF & (V)) >> 000, (P) + 2) #define WRITE32LE(P, V) \ ((P)[0] = (0x00000000000000FF & (V)) >> 000, \ (P)[1] = (0x000000000000FF00 & (V)) >> 010, \ (P)[2] = (0x0000000000FF0000 & (V)) >> 020, \ (P)[3] = (0x00000000FF000000 & (V)) >> 030, (P) + 4) #define WRITE32BE(P, V) \ ((P)[0] = (0x00000000FF000000 & (V)) >> 030, \ (P)[1] = (0x0000000000FF0000 & (V)) >> 020, \ (P)[2] = (0x000000000000FF00 & (V)) >> 010, \ (P)[3] = (0x00000000000000FF & (V)) >> 000, (P) + 4) #define WRITE64LE(P, V) \ ((P)[0] = (0x00000000000000FF & (V)) >> 000, \ (P)[1] = (0x000000000000FF00 & (V)) >> 010, \ (P)[2] = (0x0000000000FF0000 & (V)) >> 020, \ (P)[3] = (0x00000000FF000000 & (V)) >> 030, \ (P)[4] = (0x000000FF00000000 & (V)) >> 040, \ (P)[5] = (0x0000FF0000000000 & (V)) >> 050, \ (P)[6] = (0x00FF000000000000 & (V)) >> 060, \ (P)[7] = (0xFF00000000000000 & (V)) >> 070, (P) + 8) #define WRITE64BE(P, V) \ ((P)[0] = (0xFF00000000000000 & (V)) >> 070, \ (P)[1] = (0x00FF000000000000 & (V)) >> 060, \ (P)[2] = (0x0000FF0000000000 & (V)) >> 050, \ (P)[3] = (0x000000FF00000000 & (V)) >> 040, \ (P)[4] = (0x00000000FF000000 & (V)) >> 030, \ (P)[5] = (0x0000000000FF0000 & (V)) >> 020, \ (P)[6] = (0x000000000000FF00 & (V)) >> 010, \ (P)[7] = (0x00000000000000FF & (V)) >> 000, (P) + 8) /*───────────────────────────────────────────────────────────────────────────│─╗ │ cosmopolitan § bits » some assembly required ─╬─│┼ ╚────────────────────────────────────────────────────────────────────────────│*/ #if defined(__GNUC__) && !defined(__STRICT_ANSI__) #define lockinc(MEM) __ArithmeticOp1("lock inc", MEM) #define lockdec(MEM) __ArithmeticOp1("lock dec", MEM) #define locknot(MEM) __ArithmeticOp1("lock not", MEM) #define lockneg(MEM) __ArithmeticOp1("lock neg", MEM) #define lockaddeq(MEM, VAL) __ArithmeticOp2("lock add", VAL, MEM) #define locksubeq(MEM, VAL) __ArithmeticOp2("lock sub", VAL, MEM) #define lockxoreq(MEM, VAL) __ArithmeticOp2("lock xor", VAL, MEM) #define lockandeq(MEM, VAL) __ArithmeticOp2("lock and", VAL, MEM) #define lockoreq(MEM, VAL) __ArithmeticOp2("lock or", VAL, MEM) /*───────────────────────────────────────────────────────────────────────────│─╗ │ cosmopolitan § bits » implementation details ─╬─│┼ ╚────────────────────────────────────────────────────────────────────────────│*/ #define __ArithmeticOp1(OP, MEM) \ ({ \ asm(OP "%z0\t%0" : "+m"(*(MEM)) : /* no inputs */ : "cc"); \ MEM; \ }) #define __ArithmeticOp2(OP, VAL, MEM) \ ({ \ asm(OP "%z0\t%1,%0" : "+m,m"(*(MEM)) : "i,r"(VAL) : "cc"); \ MEM; \ }) #endif /* __GNUC__ && !__STRICT_ANSI__ */ COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_BITS_H_ */
9,280
163
jart/cosmopolitan
false
cosmopolitan/libc/intrin/lockfileex.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/calls/syscall_support-nt.internal.h" #include "libc/intrin/describeflags.internal.h" #include "libc/intrin/describentoverlapped.internal.h" #include "libc/intrin/strace.internal.h" #include "libc/nt/enum/filelockflags.h" #include "libc/nt/files.h" __msabi extern typeof(LockFileEx) *const __imp_LockFileEx; /** * Locks file on the New Technology. * * @return handle, or -1 on failure * @note this wrapper takes care of ABI, STRACE(), and __winerr() */ bool32 LockFileEx(int64_t hFile, uint32_t dwFlags, uint32_t dwReserved, uint32_t nNumberOfBytesToLockLow, uint32_t nNumberOfBytesToLockHigh, struct NtOverlapped *lpOverlapped) { bool32 ok; if (~dwFlags & kNtLockfileFailImmediately) { NTTRACE("LockFileEx(%ld, %s, %#x, %'zu, %s) → ...", hFile, DescribeNtLockFileFlags(dwFlags), dwReserved, (uint64_t)nNumberOfBytesToLockHigh << 32 | nNumberOfBytesToLockLow, DescribeNtOverlapped(lpOverlapped)); } ok = __imp_LockFileEx(hFile, dwFlags, dwReserved, nNumberOfBytesToLockLow, nNumberOfBytesToLockHigh, lpOverlapped); if (!ok) __winerr(); NTTRACE("LockFileEx(%ld, %s, %#x, %'zu, [%s]) → %hhhd% m", hFile, DescribeNtLockFileFlags(dwFlags), dwReserved, (uint64_t)nNumberOfBytesToLockHigh << 32 | nNumberOfBytesToLockLow, DescribeNtOverlapped(lpOverlapped), ok); return ok; }
3,293
54
jart/cosmopolitan
false
cosmopolitan/libc/intrin/_getenv.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/intrin/_getenv.internal.h" #define ToUpper(c) \ (IsWindows() && (c) >= 'a' && (c) <= 'z' ? (c) - 'a' + 'A' : (c)) struct Env _getenv(char **p, const char *k) { char *t; int i, j; for (i = 0; (t = p[i]); ++i) { for (j = 0;; ++j) { if (!k[j] || k[j] == '=') { if (!t[j]) return (struct Env){t + j, i}; if (t[j] == '=') return (struct Env){t + j + 1, i}; break; } if (ToUpper(k[j] & 255) != ToUpper(t[j] & 255)) { break; } } } return (struct Env){0, i}; }
2,404
42
jart/cosmopolitan
false
cosmopolitan/libc/intrin/bitreverse8.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/bits.h" /** * Reverses bits in 8-bit word. */ int _bitreverse8(int x) { return kReverseBits[255 & x]; }
1,967
27
jart/cosmopolitan
false
cosmopolitan/libc/intrin/cxafinalize.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2021 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/assert.h" #include "libc/intrin/bsf.h" #include "libc/intrin/cxaatexit.internal.h" #include "libc/intrin/strace.internal.h" #include "libc/intrin/weaken.h" #include "libc/mem/mem.h" #include "libc/runtime/runtime.h" /** * Triggers global destructors. * * They're called in LIFO order. If a destructor adds more destructors, * then those destructors will be called immediately following, before * iteration continues. * * @param pred can be null to match all */ void __cxa_finalize(void *pred) { void *fp, *arg; unsigned i, mask; struct CxaAtexitBlock *b, *b2; StartOver: __cxa_lock(); StartOverLocked: if ((b = __cxa_blocks.p)) { for (;;) { mask = b->mask; while (mask) { i = _bsf(mask); mask &= ~(1u << i); if (!pred || pred == b->p[i].pred) { b->mask &= ~(1u << i); if ((fp = b->p[i].fp)) { arg = b->p[i].arg; __cxa_unlock(); STRACE("__cxa_finalize(%t, %p)", fp, arg); ((void (*)(void *))fp)(arg); goto StartOver; } } } if (!pred) { b2 = b->next; if (b2) { _npassert(b != &__cxa_blocks.root); if (_weaken(free)) { _weaken(free)(b); } } __cxa_blocks.p = b2; goto StartOverLocked; } else { if (b->next) { b = b->next; } else { break; } } } } __cxa_unlock(); }
3,326
81
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pcmpeqd.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PCMPEQD_H_ #define COSMOPOLITAN_LIBC_INTRIN_PCMPEQD_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void pcmpeqd(int32_t[4], const int32_t[4], const int32_t[4]); #define pcmpeqd(A, B, C) \ INTRIN_SSEVEX_X_X_X_(pcmpeqd, SSE2, "pcmpeqd", INTRIN_NONCOMMUTATIVE, A, B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PCMPEQD_H_ */
469
15
jart/cosmopolitan
false
cosmopolitan/libc/intrin/describeinoutint64.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/errno.h" #include "libc/fmt/itoa.h" #include "libc/intrin/describeflags.internal.h" const char *(DescribeInOutInt64)(char buf[23], ssize_t rc, int64_t *x) { if (!x) return "NULL"; char *p = buf; if (rc != -1) *p++ = '['; if (rc == -1 && errno == EFAULT) { *p++ = '!'; *p++ = '!'; *p++ = '!'; } else { p = FormatInt64(p, *x); } if (rc != -1) *p++ = ']'; *p = 0; return buf; }
2,261
38
jart/cosmopolitan
false
cosmopolitan/libc/intrin/phaddw.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/phaddw.h" #include "libc/str/str.h" /** * Adds adjacent 16-bit integers. * * @param 𝑎 [w/o] receives reduced 𝑏 and 𝑐 concatenated * @param 𝑏 [r/o] supplies four pairs of shorts * @param 𝑐 [r/o] supplies four pairs of shorts * @note goes fast w/ ssse3 (intel c. 2004, amd c. 2011) * @mayalias */ void(phaddw)(int16_t a[8], const int16_t b[8], const int16_t c[8]) { int16_t t[8]; t[0] = b[0] + b[1]; t[1] = b[2] + b[3]; t[2] = b[4] + b[5]; t[3] = b[6] + b[7]; t[4] = c[0] + c[1]; t[5] = c[2] + c[3]; t[6] = c[4] + c[5]; t[7] = c[6] + c[7]; __builtin_memcpy(a, t, sizeof(t)); }
2,477
43
jart/cosmopolitan
false
cosmopolitan/libc/intrin/rand64.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=8 sts=2 sw=2 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/intrin/_getauxval.internal.h" #include "libc/nexgen32e/rdtsc.h" #include "libc/runtime/internal.h" #include "libc/runtime/runtime.h" #include "libc/str/str.h" #include "libc/sysv/consts/auxv.h" #include "libc/thread/thread.h" #include "libc/thread/tls.h" static struct { int thepid; uint128_t thepool; pthread_spinlock_t lock; } g_rand64; /** * Returns nondeterministic random data. * * This function is similar to lemur64() except that it doesn't produce * the same sequences of numbers each time your program is run. This is * the case even across forks and threads, whose sequences will differ. * * @see rdseed(), rdrand(), rand(), random(), rngset() * @note this function takes 5 cycles (30 if `__threaded`) * @note this function is not intended for cryptography * @note this function passes bigcrush and practrand * @asyncsignalsafe * @threadsafe * @vforksafe */ uint64_t _rand64(void) { void *p; uint128_t s; if (__threaded) pthread_spin_lock(&g_rand64.lock); if (__pid == g_rand64.thepid) { s = g_rand64.thepool; // normal path } else { if (!g_rand64.thepid) { if (AT_RANDOM && (p = (void *)_getauxval(AT_RANDOM).value)) { // linux / freebsd kernel supplied entropy memcpy(&s, p, 16); } else { // otherwise initialize w/ cheap timestamp s = kStartTsc; } } else { // blend another timestamp on fork contention s = g_rand64.thepool ^ rdtsc(); } // blend the pid on startup and fork contention s ^= __pid; g_rand64.thepid = __pid; } g_rand64.thepool = (s *= 15750249268501108917ull); // lemur64 pthread_spin_unlock(&g_rand64.lock); return s >> 64; }
3,537
76
jart/cosmopolitan
false
cosmopolitan/libc/intrin/extend.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/assert.h" #include "libc/calls/calls.h" #include "libc/dce.h" #include "libc/errno.h" #include "libc/intrin/asan.internal.h" #include "libc/intrin/asancodes.h" #include "libc/intrin/directmap.internal.h" #include "libc/macros.internal.h" #include "libc/runtime/memtrack.internal.h" #include "libc/sysv/consts/map.h" #include "libc/sysv/consts/prot.h" #define G FRAMESIZE static void *_mapframe(void *p, int f) { int rc, prot, flags; struct DirectMap dm; prot = PROT_READ | PROT_WRITE; flags = f | MAP_ANONYMOUS | MAP_FIXED; if ((dm = sys_mmap(p, G, prot, flags, -1, 0)).addr == p) { __mmi_lock(); rc = TrackMemoryInterval(&_mmi, (uintptr_t)p >> 16, (uintptr_t)p >> 16, dm.maphandle, prot, flags, false, false, 0, G); __mmi_unlock(); if (!rc) { return p; } else { _unassert(errno == ENOMEM); return 0; } } else { _unassert(errno == ENOMEM); return 0; } } /** * Extends static allocation. * * This simple fixed allocator has unusual invariants * * !(p & 0xffff) && !(((p >> 3) + 0x7fff8000) & 0xffff) * * which must be the case when selecting a starting address. We also * make the assumption that allocations can only grow monotonically. * Furthermore allocations shall never be removed or relocated. * * @param p points to start of memory region * @param n specifies how many bytes are needed * @param e points to end of memory that's allocated * @param h is highest address to which `e` may grow * @param f should be `MAP_PRIVATE` or `MAP_SHARED` * @return new value for `e` or null w/ errno * @raise ENOMEM if we require more vespene gas */ noasan void *_extend(void *p, size_t n, void *e, int f, intptr_t h) { char *q; _unassert(!((uintptr_t)SHADOW(p) & (G - 1))); _unassert((uintptr_t)p + (G << kAsanScale) <= h); // TODO(jart): Make this spin less in non-ASAN mode. for (q = e; q < ((char *)p + n); q += 8) { if (!((uintptr_t)q & (G - 1))) { _unassert(q + G <= (char *)h); if (!_mapframe(q, f)) return 0; if (IsAsan()) { if (!((uintptr_t)SHADOW(q) & (G - 1))) { if (!_mapframe(SHADOW(q), f)) return 0; __asan_poison(q, G << kAsanScale, kAsanProtected); } } } if (IsAsan()) { *SHADOW(q) = 0; } } return q; }
4,177
96
jart/cosmopolitan
false
cosmopolitan/libc/intrin/nomultics.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2021 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. │ ╚─────────────────────────────────────────────────────────────────────────────*/ /** * Controls ANSI prefix for log emissions. * * This should be true in raw tty mode repls. * * @see kprintf(), vflogf(), linenoise() */ char __replmode; char __replstderr;
2,017
29
jart/cosmopolitan
false
cosmopolitan/libc/intrin/isworker.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/calls/calls.h" /** * Indicates if current execution context is a worker task. * * Setting this to true on things like the forked process of a web * server is a good idea since it'll ask the C runtime to not pull * magical stunts like attaching GDB to the process on crash. */ bool __isworker;
2,151
29
jart/cosmopolitan
false
cosmopolitan/libc/intrin/ashlti3.c
/* clang-format off */ /* ===-- ashlti3.c - Implement __ashlti3 -----------------------------------=== * * The LLVM Compiler Infrastructure * * This file is dual licensed under the MIT and the University of Illinois Open * Source Licenses. See LICENSE.TXT for details. * * ===----------------------------------------------------------------------=== * * This file implements __ashlti3 for the compiler_rt library. * * ===----------------------------------------------------------------------=== */ #include "third_party/compiler_rt/int_lib.h" #ifdef CRT_HAS_128BIT /* Returns: a << b */ /* Precondition: 0 <= b < bits_in_tword */ COMPILER_RT_ABI ti_int __ashlti3(ti_int a, si_int b) { const int bits_in_dword = (int)(sizeof(di_int) * CHAR_BIT); twords input; twords result; input.all = a; if (b & bits_in_dword) /* bits_in_dword <= b < bits_in_tword */ { result.s.low = 0; result.s.high = input.s.low << (b - bits_in_dword); } else /* 0 <= b < bits_in_dword */ { if (b == 0) return a; result.s.low = input.s.low << b; result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b)); } return result.all; } #endif /* CRT_HAS_128BIT */
1,283
47
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pshufb.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PSHUFB_H_ #define COSMOPOLITAN_LIBC_INTRIN_PSHUFB_H_ #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void pshufb(uint8_t[16], const uint8_t[16], const uint8_t[16]); #define pshufb(A, B, C) \ INTRIN_SSEVEX_X_X_X_(pshufb, SSSE3, "pshufb", INTRIN_NONCOMMUTATIVE, A, B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PSHUFB_H_ */
434
14
jart/cosmopolitan
false
cosmopolitan/libc/intrin/memset.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2021 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/assert.h" #include "libc/dce.h" #include "libc/intrin/asan.internal.h" #include "libc/nexgen32e/nexgen32e.h" #include "libc/nexgen32e/x86feature.h" #include "libc/str/str.h" #ifndef __aarch64__ typedef char xmm_t __attribute__((__vector_size__(16), __aligned__(1))); typedef long long xmm_a __attribute__((__vector_size__(16), __aligned__(16))); static void *memset_sse(char *p, char c, size_t n) { xmm_t v = {c, c, c, c, c, c, c, c, c, c, c, c, c, c, c, c}; if (IsAsan()) __asan_verify(p, n); if (n <= 32) { *(xmm_t *)(p + n - 16) = v; *(xmm_t *)p = v; } else { do { n -= 32; *(xmm_t *)(p + n) = v; *(xmm_t *)(p + n + 16) = v; } while (n > 32); *(xmm_t *)(p + 16) = v; *(xmm_t *)p = v; } return p; } #ifdef __x86_64__ microarchitecture("avx") static void *memset_avx(char *p, char c, size_t n) { char *t; xmm_t v = {c, c, c, c, c, c, c, c, c, c, c, c, c, c, c, c}; if (IsAsan()) __asan_verify(p, n); if (n <= 32) { *(xmm_t *)(p + n - 16) = v; *(xmm_t *)p = v; } else if (n >= 1024 && X86_HAVE(ERMS)) { asm("rep stosb" : "=D"(t), "+c"(n), "=m"(*(char(*)[n])p) : "0"(p), "a"(c)); } else { if (n < kHalfCache3 || !kHalfCache3) { do { n -= 32; *(xmm_t *)(p + n) = v; *(xmm_t *)(p + n + 16) = v; } while (n > 32); } else { while ((uintptr_t)(p + n) & 15) { p[--n] = c; } do { n -= 32; __builtin_ia32_movntdq((xmm_a *)(p + n), (xmm_a)v); __builtin_ia32_movntdq((xmm_a *)(p + n + 16), (xmm_a)v); } while (n > 32); asm("sfence"); } *(xmm_t *)(p + 16) = v; *(xmm_t *)p = v; } return p; } #endif /* __x86_64__ */ /** * Sets memory. * * memset n=0 992 picoseconds * memset n=1 992 ps/byte 984 mb/s * memset n=2 330 ps/byte 2,952 mb/s * memset n=3 330 ps/byte 2,952 mb/s * memset n=4 165 ps/byte 5,904 mb/s * memset n=7 94 ps/byte 10,333 mb/s * memset n=8 124 ps/byte 7,872 mb/s * memset n=15 66 ps/byte 14,761 mb/s * memset n=16 62 ps/byte 15,745 mb/s * memset n=31 32 ps/byte 30,506 mb/s * memset n=32 20 ps/byte 47,236 mb/s * memset n=63 26 ps/byte 37,198 mb/s * memset n=64 20 ps/byte 47,236 mb/s * memset n=127 23 ps/byte 41,660 mb/s * memset n=128 12 ps/byte 75,578 mb/s * memset n=255 18 ps/byte 53,773 mb/s * memset n=256 12 ps/byte 75,578 mb/s * memset n=511 17 ps/byte 55,874 mb/s * memset n=512 12 ps/byte 75,578 mb/s * memset n=1023 16 ps/byte 58,080 mb/s * memset n=1024 11 ps/byte 86,375 mb/s * memset n=2047 9 ps/byte 101 gb/s * memset n=2048 8 ps/byte 107 gb/s * memset n=4095 8 ps/byte 113 gb/s * memset n=4096 8 ps/byte 114 gb/s * memset n=8191 7 ps/byte 126 gb/s * memset n=8192 7 ps/byte 126 gb/s * memset n=16383 7 ps/byte 133 gb/s * memset n=16384 7 ps/byte 131 gb/s * memset n=32767 14 ps/byte 69,246 mb/s * memset n=32768 6 ps/byte 138 gb/s * memset n=65535 15 ps/byte 62,756 mb/s * memset n=65536 15 ps/byte 62,982 mb/s * memset n=131071 18 ps/byte 52,834 mb/s * memset n=131072 15 ps/byte 62,023 mb/s * memset n=262143 15 ps/byte 61,169 mb/s * memset n=262144 16 ps/byte 61,011 mb/s * memset n=524287 16 ps/byte 60,633 mb/s * memset n=524288 16 ps/byte 57,902 mb/s * memset n=1048575 16 ps/byte 60,405 mb/s * memset n=1048576 16 ps/byte 58,754 mb/s * memset n=2097151 16 ps/byte 59,329 mb/s * memset n=2097152 16 ps/byte 58,729 mb/s * memset n=4194303 16 ps/byte 59,329 mb/s * memset n=4194304 16 ps/byte 59,262 mb/s * memset n=8388607 16 ps/byte 59,530 mb/s * memset n=8388608 16 ps/byte 60,205 mb/s * * @param p is memory address * @param c is masked with 255 and used as repeated byte * @param n is byte length * @return p * @asyncsignalsafe */ void *memset(void *p, int c, size_t n) { char *b; uint32_t u; uint64_t x; b = p; if (n <= 16) { if (n >= 8) { x = 0x0101010101010101ul * (c & 255); __builtin_memcpy(b, &x, 8); __builtin_memcpy(b + n - 8, &x, 8); } else if (n >= 4) { u = 0x01010101u * (c & 255); __builtin_memcpy(b, &u, 4); __builtin_memcpy(b + n - 4, &u, 4); } else if (n) { do { asm volatile("" ::: "memory"); b[--n] = c; } while (n); } return b; #ifdef __x86__ } else if (IsTiny()) { asm("rep stosb" : "+D"(b), "+c"(n), "=m"(*(char(*)[n])b) : "0"(p), "a"(c)); return p; } else if (X86_HAVE(AVX)) { return memset_avx(b, c, n); #endif } else { return memset_sse(b, c, n); } } #endif /* __aarch64__ */
7,985
174
jart/cosmopolitan
false
cosmopolitan/libc/intrin/punpckhdq.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PUNPCKHDQ_H_ #define COSMOPOLITAN_LIBC_INTRIN_PUNPCKHDQ_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void punpckhdq(uint32_t[4], const uint32_t[4], const uint32_t[4]); #define punpckhdq(A, B, C) \ INTRIN_SSEVEX_X_X_X_(punpckhdq, SSE2, "punpckhdq", INTRIN_NONCOMMUTATIVE, A, \ B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PUNPCKHDQ_H_ */
563
16
jart/cosmopolitan
false
cosmopolitan/libc/intrin/bcopy.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/str/str.h" /** * Moves memory the BSD way. * * Please use memmove() instead. Note the order of arguments. */ void bcopy(const void *src, void *dest, size_t n) { memmove(dest, src, n); }
2,044
29
jart/cosmopolitan
false
cosmopolitan/libc/intrin/psubd.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/psubd.h" #include "libc/str/str.h" /** * Subtracts 32-bit integers. * * @param 𝑎 [w/o] receives result * @param 𝑏 [r/o] supplies first input vector * @param 𝑐 [r/o] supplies second input vector * @mayalias */ void(psubd)(uint32_t a[4], const uint32_t b[4], const uint32_t c[4]) { unsigned i; uint32_t r[4]; for (i = 0; i < 4; ++i) { r[i] = b[i] - c[i]; } __builtin_memcpy(a, r, 16); }
2,274
38
jart/cosmopolitan
false
cosmopolitan/libc/intrin/g_fds_init.S
/*-*- mode:unix-assembly; indent-tabs-mode:t; tab-width:8; coding:utf-8 -*-│ │vi: set et ft=asm ts=8 tw=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/macros.internal.h" .init.start 305,_init_g_fds push %rdi push %rsi call InitializeFileDescriptors pop %rsi pop %rdi .init.end 305,_init_g_fds
2,001
28
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pmulhrsw.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PMULHRSW_H_ #define COSMOPOLITAN_LIBC_INTRIN_PMULHRSW_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void pmulhrsw(int16_t a[8], const int16_t b[8], const int16_t c[8]); #define pmulhrsw(A, B, C) \ INTRIN_SSEVEX_X_X_X_(pmulhrsw, SSSE3, "pmulhrsw", INTRIN_COMMUTATIVE, A, B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PMULHRSW_H_ */
480
15
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pthread_spin_destroy.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/intrin/atomic.h" #include "libc/thread/thread.h" /** * Destroys spin lock. * * @return 0 on success, or errno on error */ errno_t(pthread_spin_destroy)(pthread_spinlock_t *spin) { atomic_store_explicit(&spin->_lock, -1, memory_order_relaxed); return 0; }
2,115
31
jart/cosmopolitan
false
cosmopolitan/libc/intrin/describeschedparam.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/calls/struct/sched_param.h" #include "libc/fmt/itoa.h" #include "libc/intrin/describeflags.internal.h" #include "libc/str/str.h" /** * Describes clock_gettime() clock argument. */ const char *(DescribeSchedParam)(char buf[32], const struct sched_param *x) { char *p; if (!x) return "0"; p = buf; *p++ = '{'; p = FormatInt32(p, x->sched_priority); *p++ = '}'; *p = 0; return buf; }
2,251
37
jart/cosmopolitan
false
cosmopolitan/libc/intrin/isrunningundermake.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/log/internal.h" #include "libc/log/libfatal.internal.h" #include "libc/log/log.h" #include "libc/runtime/runtime.h" bool g_isrunningundermake; /** * Returns true if current process was spawned by GNU Make. */ bool IsRunningUnderMake(void) { return g_isrunningundermake; } textstartup void g_isrunningundermake_init(void) { g_isrunningundermake = !!getenv("MAKEFLAGS"); } const void *const g_isrunningundermake_ctor[] initarray = { g_isrunningundermake_init, };
2,326
40
jart/cosmopolitan
false
cosmopolitan/libc/intrin/bitreverse16.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/bits.h" /** * Reverses bits in 16-bit word. */ int _bitreverse16(int x) { return kReverseBits[0x00FF & x] << 8 | kReverseBits[(0xFF00 & x) >> 8]; }
2,011
27
jart/cosmopolitan
false
cosmopolitan/libc/intrin/strcmp.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/asan.internal.h" #include "libc/str/str.h" /** * Compares NUL-terminated strings. * * @param a is first non-null NUL-terminated string pointer * @param b is second non-null NUL-terminated string pointer * @return is <0, 0, or >0 based on uint8_t comparison * @asyncsignalsafe */ noasan int strcmp(const char *a, const char *b) { int c; size_t i = 0; uint64_t v, w, d; if (a == b) return 0; if ((c = (*a & 255) - (*b & 255))) return c; if (!IsTiny() && ((uintptr_t)a & 7) == ((uintptr_t)b & 7)) { for (; (uintptr_t)(a + i) & 7; ++i) { if (a[i] != b[i] || !b[i]) { return (a[i] & 255) - (b[i] & 255); } } for (;; i += 8) { v = *(uint64_t *)(a + i); w = *(uint64_t *)(b + i); w = (v ^ w) | (~v & (v - 0x0101010101010101) & 0x8080808080808080); if (w) { i += (unsigned)__builtin_ctzll(w) >> 3; break; } } } else { while (a[i] == b[i] && b[i]) ++i; } if (IsAsan()) { __asan_verify(a, i + 1); __asan_verify(b, i + 1); } return (a[i] & 255) - (b[i] & 255); }
2,956
61
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pxor.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PXOR_H_ #define COSMOPOLITAN_LIBC_INTRIN_PXOR_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void pxor(uint64_t[2], const uint64_t[2], const uint64_t[2]); #define pxor(A, B, C) \ INTRIN_SSEVEX_X_X_X_(pxor, SSE2, "pxor", INTRIN_COMMUTATIVE, A, B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PXOR_H_ */
448
15
jart/cosmopolitan
false
cosmopolitan/libc/intrin/paddb.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PADDB_H_ #define COSMOPOLITAN_LIBC_INTRIN_PADDB_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void paddb(int8_t[16], const int8_t[16], const int8_t[16]); #define paddb(A, B, C) \ INTRIN_SSEVEX_X_X_X_(paddb, SSE2, "paddb", INTRIN_COMMUTATIVE, A, B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PADDB_H_ */
452
15
jart/cosmopolitan
false
cosmopolitan/libc/intrin/describeschedpolicy.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/fmt/itoa.h" #include "libc/fmt/magnumstrs.internal.h" #include "libc/intrin/describeflags.internal.h" #include "libc/macros.internal.h" #include "libc/str/str.h" #include "libc/sysv/consts/sched.h" /** * Describes clock_gettime() clock argument. */ const char *(DescribeSchedPolicy)(char buf[48], int x) { char *p = buf; if (x == -1) { goto DoNumber; } if (x & SCHED_RESET_ON_FORK) { x &= ~SCHED_RESET_ON_FORK; p = stpcpy(p, "SCHED_RESET_ON_FORK"); } if (x == SCHED_OTHER) { stpcpy(p, "SCHED_OTHER"); } else if (x == SCHED_FIFO) { stpcpy(p, "SCHED_FIFO"); } else if (x == SCHED_RR) { stpcpy(p, "SCHED_RR"); } else if (x == SCHED_BATCH) { stpcpy(p, "SCHED_BATCH"); } else if (x == SCHED_IDLE) { stpcpy(p, "SCHED_IDLE"); } else if (x == SCHED_DEADLINE) { stpcpy(p, "SCHED_DEADLINE"); } else { DoNumber: FormatInt32(p, x); } return buf; }
2,760
56
jart/cosmopolitan
false
cosmopolitan/libc/intrin/psrad.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/psrad.h" /** * Divides ints by two power. * * @note c needs to be a literal, asmconstexpr, or linkconstsym * @note arithmetic shift right will sign extend negatives * @mayalias */ void(psrad)(int32_t a[4], const int32_t b[4], unsigned char k) { unsigned i; if (k > 31) k = 31; for (i = 0; i < 4; ++i) { a[i] = b[i] >> k; } }
2,202
35
jart/cosmopolitan
false
cosmopolitan/libc/intrin/isgenuineblink.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2023 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/nexgen32e/x86feature.h" #include "libc/runtime/runtime.h" #include "libc/str/str.h" bool IsGenuineBlink(void) { return X86_HAVE(HYPERVISOR) && !strcmp(GetCpuidEmulator(), "GenuineBlink"); }
2,044
26
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pdep.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PDEP_H_ #define COSMOPOLITAN_LIBC_INTRIN_PDEP_H_ #include "libc/nexgen32e/x86feature.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ uint64_t pdep(uint64_t, uint64_t) pureconst; #define PDEP(NUMBER, BITMASK) \ ({ \ typeof(BITMASK) ShuffledBits, Number = (NUMBER); \ asm("pdep\t%2,%1,%0" : "=r"(ShuffledBits) : "r"(Number), "rm"(BITMASK)); \ ShuffledBits; \ }) #define pdep(NUMBER, BITMASK) \ (!X86_HAVE(BMI2) ? pdep(NUMBER, BITMASK) : PDEP(NUMBER, BITMASK)) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PDEP_H_ */
843
22
jart/cosmopolitan
false
cosmopolitan/libc/intrin/fds_lock.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/calls/state.internal.h" #include "libc/str/str.h" #include "libc/thread/thread.h" void(__fds_lock)(void) { pthread_mutex_lock(&__fds_lock_obj); } void(__fds_unlock)(void) { pthread_mutex_unlock(&__fds_lock_obj); } void __fds_funlock(void) { bzero(&__fds_lock_obj, sizeof(__fds_lock_obj)); __fds_lock_obj._type = PTHREAD_MUTEX_RECURSIVE; }
2,201
35
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pmulhrsw.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/pmulhrsw.h" #include "libc/str/str.h" /** * Multiplies Q15 numbers. * * @note goes fast w/ ssse3 (intel c. 2004, amd c. 2011) * @note a.k.a. packed multiply high w/ round & scale * @see Q2F(15,𝑥), F2Q(15,𝑥) * @mayalias */ void(pmulhrsw)(int16_t a[8], const int16_t b[8], const int16_t c[8]) { unsigned i; int16_t r[8]; for (i = 0; i < 8; ++i) r[i] = (((b[i] * c[i]) >> 14) + 1) >> 1; __builtin_memcpy(a, r, 16); }
2,294
36
jart/cosmopolitan
false
cosmopolitan/libc/intrin/psllq.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PSLLQ_H_ #define COSMOPOLITAN_LIBC_INTRIN_PSLLQ_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void psllq(uint64_t[2], const uint64_t[2], unsigned char); void psllqv(uint64_t[2], const uint64_t[2], const uint64_t[2]); #define psllq(A, B, I) INTRIN_SSEVEX_X_I_(psllq, SSE2, "psllq", A, B, I) #define psllqv(A, B, C) \ INTRIN_SSEVEX_X_X_X_(psllqv, SSE2, "psllq", INTRIN_NONCOMMUTATIVE, A, B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PSLLQ_H_ */
593
17
jart/cosmopolitan
false
cosmopolitan/libc/intrin/psubd.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PSUBD_H_ #define COSMOPOLITAN_LIBC_INTRIN_PSUBD_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void psubd(uint32_t[4], const uint32_t[4], const uint32_t[4]); #define psubd(A, B, C) \ INTRIN_SSEVEX_X_X_X_(psubd, SSE2, "psubd", INTRIN_NONCOMMUTATIVE, A, B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PSUBD_H_ */
458
15
jart/cosmopolitan
false
cosmopolitan/libc/intrin/phaddsw.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PHADDSW_H_ #define COSMOPOLITAN_LIBC_INTRIN_PHADDSW_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void phaddsw(int16_t[8], const int16_t[8], const int16_t[8]); #define phaddsw(A, B, C) \ INTRIN_SSEVEX_X_X_X_(phaddsw, SSSE3, "phaddsw", INTRIN_NONCOMMUTATIVE, A, B, \ C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PHADDSW_H_ */
549
16
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pthread_once.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/calls/calls.h" #include "libc/errno.h" #include "libc/intrin/atomic.h" #include "libc/intrin/weaken.h" #include "libc/thread/thread.h" #include "third_party/nsync/once.h" #define INIT 0 #define CALLING 1 #define FINISHED 2 /** * Ensures initialization function is called exactly once, e.g. * * static void *g_factory; * * static void InitFactory(void) { * g_factory = expensive(); * } * * void *GetFactory(void) { * static pthread_once_t once = PTHREAD_ONCE_INIT; * pthread_once(&once, InitFactory); * return g_factory; * } * * @return 0 on success, or errno on error */ errno_t pthread_once(pthread_once_t *once, void init(void)) { uint32_t old; if (_weaken(nsync_run_once)) { _weaken(nsync_run_once)((nsync_once *)once, init); return 0; } switch ((old = atomic_load_explicit(&once->_lock, memory_order_relaxed))) { case INIT: if (atomic_compare_exchange_strong_explicit(&once->_lock, &old, CALLING, memory_order_acquire, memory_order_relaxed)) { init(); atomic_store_explicit(&once->_lock, FINISHED, memory_order_release); return 0; } // fallthrough case CALLING: do { pthread_yield(); } while (atomic_load_explicit(&once->_lock, memory_order_acquire) == CALLING); return 0; case FINISHED: return 0; default: return EINVAL; } }
3,377
75
jart/cosmopolitan
false
cosmopolitan/libc/intrin/__cxa_pure_virtual.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2023 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/intrin/kprintf.h" void __cxa_pure_virtual(void) { #ifndef NDEBUG kprintf("__cxa_pure_virtual() called\n" "Did you call a virtual method from a destructor?\n"); #endif __builtin_trap(); }
2,053
28
jart/cosmopolitan
false
cosmopolitan/libc/intrin/setenv.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/kmalloc.h" #include "libc/intrin/strace.internal.h" #include "libc/mem/internal.h" #include "libc/runtime/runtime.h" #include "libc/str/str.h" #include "libc/sysv/errfuns.h" /** * Copies variable to environment. * * @return 0 on success, or -1 w/ errno and environment is unchanged * @raise EINVAL if `name` is empty or contains `'='` * @raise ENOMEM if we require more vespene gas * @see putenv(), getenv() */ int setenv(const char *name, const char *value, int overwrite) { int rc; char *s; size_t n, m; const char *t; if (!name || !*name || !value) return einval(); for (t = name; *t; ++t) { if (*t == '=') return einval(); } n = strlen(name); m = strlen(value); if (!(s = kmalloc(n + 1 + m + 1))) return -1; memcpy(mempcpy(mempcpy(s, name, n), "=", 1), value, m + 1); rc = PutEnvImpl(s, overwrite); STRACE("setenv(%#s, %#s, %d) → %d% m", name, value, overwrite, rc); return rc; }
2,784
51
jart/cosmopolitan
false
cosmopolitan/libc/intrin/stpcpy.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/str/str.h" #ifndef __aarch64__ // TODO(jart): ASAN support here is important. typedef char xmm_u __attribute__((__vector_size__(16), __aligned__(1))); typedef char xmm_t __attribute__((__vector_size__(16), __aligned__(16))); #ifdef __x86_64__ static inline noasan size_t stpcpy_sse2(char *d, const char *s, size_t i) { xmm_t v, z = {0}; for (;;) { v = *(xmm_t *)(s + i); if (!__builtin_ia32_pmovmskb128(v == z)) { *(xmm_u *)(d + i) = v; i += 16; } else { break; } } return i; } #endif /** * Copies bytes from 𝑠 to 𝑑 until a NUL is encountered. * * @param 𝑑 is destination memory * @param 𝑠 is a NUL-terminated string * @note 𝑑 and 𝑠 can't overlap * @return pointer to nul byte * @asyncsignalsafe */ char *stpcpy(char *d, const char *s) { size_t i = 0; #ifdef __x86_64__ for (; (uintptr_t)(s + i) & 15; ++i) { if (!(d[i] = s[i])) { return d + i; } } i = stpcpy_sse2(d, s, i); #endif for (;;) { if (!(d[i] = s[i])) { return d + i; } ++i; } } #endif /* __aarch64__ */
2,933
71
jart/cosmopolitan
false
cosmopolitan/libc/intrin/psrlq.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/psrlq.h" #include "libc/str/str.h" /** * Divides unsigned longs by two power. * * @note c needs to be a literal, asmconstexpr, or linkconstsym * @note logical shift does not sign extend negatives * @mayalias */ void(psrlq)(uint64_t a[2], const uint64_t b[2], unsigned char c) { unsigned i; if (c <= 63) { for (i = 0; i < 2; ++i) { a[i] = b[i] >> c; } } else { __builtin_memset(a, 0, 16); } }
2,283
39
jart/cosmopolitan
false
cosmopolitan/libc/intrin/paddb.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/paddb.h" #include "libc/str/str.h" /** * Adds 8-bit integers. * * @param 𝑎 [w/o] receives result * @param 𝑏 [r/o] supplies first input vector * @param 𝑐 [r/o] supplies second input vector * @mayalias */ void(paddb)(int8_t a[16], const int8_t b[16], const int8_t c[16]) { unsigned i; int8_t r[16]; for (i = 0; i < 16; ++i) r[i] = b[i] + c[i]; __builtin_memcpy(a, r, 16); }
2,255
36
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pcmpeqd.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/pcmpeqd.h" #include "libc/str/str.h" /** * Compares signed 32-bit integers w/ equal to predicate. * * @param 𝑎 [w/o] receives result * @param 𝑏 [r/o] supplies first input vector * @param 𝑐 [r/o] supplies second input vector * @mayalias */ void(pcmpeqd)(int32_t a[4], const int32_t b[4], const int32_t c[4]) { unsigned i; int32_t r[4]; for (i = 0; i < 4; ++i) r[i] = -(b[i] == c[i]); __builtin_memcpy(a, r, 16); }
2,296
36
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pcmpeqw.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PCMPEQW_H_ #define COSMOPOLITAN_LIBC_INTRIN_PCMPEQW_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void pcmpeqw(int16_t[8], const int16_t[8], const int16_t[8]); #define pcmpeqw(A, B, C) \ INTRIN_SSEVEX_X_X_X_(pcmpeqw, SSE2, "pcmpeqw", INTRIN_NONCOMMUTATIVE, A, B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PCMPEQW_H_ */
469
15
jart/cosmopolitan
false
cosmopolitan/libc/intrin/createfilemappingnuma.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/calls/syscall_support-nt.internal.h" #include "libc/dce.h" #include "libc/intrin/describeflags.internal.h" #include "libc/intrin/strace.internal.h" #include "libc/nt/memory.h" #include "libc/nt/struct/securityattributes.h" __msabi extern typeof(CreateFileMappingNuma) *const __imp_CreateFileMappingNumaW; /** * Creates file mapping object on the New Technology. * * @param opt_hFile may be -1 for MAP_ANONYMOUS behavior * @return handle, or 0 on failure * @note this wrapper takes care of ABI, STRACE(), and __winerr() * @see MapViewOfFileExNuma() */ textwindows int64_t CreateFileMappingNuma( int64_t opt_hFile, const struct NtSecurityAttributes *opt_lpFileMappingAttributes, uint32_t flProtect, uint32_t dwMaximumSizeHigh, uint32_t dwMaximumSizeLow, const char16_t *opt_lpName, uint32_t nndDesiredNumaNode) { int64_t hHandle; hHandle = __imp_CreateFileMappingNumaW( opt_hFile, opt_lpFileMappingAttributes, flProtect, dwMaximumSizeHigh, dwMaximumSizeLow, opt_lpName, nndDesiredNumaNode); if (!hHandle) __winerr(); NTTRACE("CreateFileMappingNuma(%ld, %s, %s, %'zu, %#hs) → %ld% m", opt_hFile, DescribeNtSecurityAttributes(opt_lpFileMappingAttributes), DescribeNtPageFlags(flProtect), (uint64_t)dwMaximumSizeHigh << 32 | dwMaximumSizeLow, opt_lpName, hHandle); return hHandle; }
3,222
54
jart/cosmopolitan
false
cosmopolitan/libc/intrin/_getauxval.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/_getauxval.internal.h" #include "libc/runtime/runtime.h" /** * Returns auxiliary value, or zero if kernel didn't provide it. * * This function is typically regarded as a libc implementation detail; * thus, the source code is the documentation. * * @param at is `AT_...` search key * @return true if value was found * @see libc/sysv/consts.sh * @see System Five Application Binary Interface § 3.4.3 * @error ENOENT when value not found * @asyncsignalsafe */ struct AuxiliaryValue _getauxval(unsigned long at) { unsigned long *ap; for (ap = __auxv; ap[0]; ap += 2) { if (at == ap[0]) { return (struct AuxiliaryValue){ap[1], true}; } } return (struct AuxiliaryValue){0, false}; }
2,571
44
jart/cosmopolitan
false
cosmopolitan/libc/intrin/createprocess.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/calls/syscall_support-nt.internal.h" #include "libc/intrin/describeflags.internal.h" #include "libc/intrin/strace.internal.h" #include "libc/nt/process.h" #include "libc/nt/runtime.h" #include "libc/nt/thunk/msabi.h" __msabi extern typeof(CreateProcess) *const __imp_CreateProcessW; /** * Creates process on the New Technology. * * @note this wrapper takes care of ABI, STRACE(), and __winerr() */ textwindows bool32 CreateProcess(const char16_t *opt_lpApplicationName, char16_t *lpCommandLine, struct NtSecurityAttributes *opt_lpProcessAttributes, struct NtSecurityAttributes *opt_lpThreadAttributes, bool32 bInheritHandles, uint32_t dwCreationFlags, void *opt_lpEnvironment, const char16_t *opt_lpCurrentDirectory, const struct NtStartupInfo *lpStartupInfo, struct NtProcessInformation *opt_out_lpProcessInformation) { bool32 ok; ok = __imp_CreateProcessW(opt_lpApplicationName, lpCommandLine, opt_lpProcessAttributes, opt_lpThreadAttributes, bInheritHandles, dwCreationFlags, opt_lpEnvironment, opt_lpCurrentDirectory, lpStartupInfo, opt_out_lpProcessInformation); if (!ok) __winerr(); NTTRACE("CreateProcess(%#hs, %#!hs, %s, %s, %hhhd, %u, %p, %#hs, %p, %p) → " "%hhhd% m", opt_lpApplicationName, lpCommandLine, DescribeNtSecurityAttributes(opt_lpProcessAttributes), DescribeNtSecurityAttributes(opt_lpThreadAttributes), bInheritHandles, dwCreationFlags, opt_lpEnvironment, opt_lpCurrentDirectory, lpStartupInfo, opt_out_lpProcessInformation, ok); return ok; }
3,590
57
jart/cosmopolitan
false
cosmopolitan/libc/intrin/paddsw.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/paddsw.h" #include "libc/limits.h" #include "libc/macros.internal.h" #include "libc/str/str.h" /** * Adds signed 16-bit integers w/ saturation. * * @param 𝑎 [w/o] receives result * @param 𝑏 [r/o] supplies first input vector * @param 𝑐 [r/o] supplies second input vector * @mayalias */ void(paddsw)(int16_t a[8], const int16_t b[8], const int16_t c[8]) { unsigned i; int16_t r[8]; for (i = 0; i < 8; ++i) { r[i] = MIN(SHRT_MAX, MAX(SHRT_MIN, b[i] + c[i])); } __builtin_memcpy(a, r, 16); }
2,377
40
jart/cosmopolitan
false
cosmopolitan/libc/intrin/directmap.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/calls/syscall-sysv.internal.h" #include "libc/errno.h" #include "libc/intrin/describeflags.internal.h" #include "libc/intrin/directmap.internal.h" #include "libc/intrin/strace.internal.h" #include "libc/nt/runtime.h" #include "libc/runtime/memtrack.internal.h" /** * Obtains memory mapping directly from system. * * The mmap() function needs to track memory mappings in order to * support Windows NT and Address Sanitizer. That memory tracking can be * bypassed by calling this function. However the caller is responsible * for passing the magic memory handle on Windows NT to CloseHandle(). * * @asyncsignalsafe * @threadsafe */ struct DirectMap sys_mmap(void *addr, size_t size, int prot, int flags, int fd, int64_t off) { #ifdef __x86_64__ struct DirectMap d; if (!IsWindows() && !IsMetal()) { d.addr = __sys_mmap(addr, size, prot, flags, fd, off, off); d.maphandle = kNtInvalidHandleValue; } else if (IsMetal()) { d = sys_mmap_metal(addr, size, prot, flags, fd, off); } else { d = sys_mmap_nt(addr, size, prot, flags, fd, off); } KERNTRACE("sys_mmap(%.12p /* %s */, %'zu, %s, %s, %d, %'ld) → {%.12p, %p}% m", addr, DescribeFrame((intptr_t)addr >> 16), size, DescribeProtFlags(prot), DescribeMapFlags(flags), fd, off, d.addr, d.maphandle); return d; #elif defined(__aarch64__) register long r0 asm("x0") = (long)addr; register long r1 asm("x1") = (long)size; register long r2 asm("x2") = (long)prot; register long r3 asm("x3") = (long)flags; register long r4 asm("x4") = (long)fd; register long r5 asm("x5") = (long)off; register long res_x0 asm("x0"); long res; asm volatile("mov\tx8,%1\n\t" "mov\tx16,%2\n\t" "svc\t0" : "=r"(res_x0) : "i"(222), "i"(197), "r"(r0), "r"(r1), "r"(r2), "r"(r3), "r"(r4), "r"(r5) : "x8", "memory"); res = res_x0; if ((unsigned long)res >= (unsigned long)-4095) { errno = (int)-res; res = -1; } return (struct DirectMap){(void *)res, kNtInvalidHandleValue}; #else #error "arch unsupported" #endif }
4,013
81
jart/cosmopolitan
false
cosmopolitan/libc/intrin/punpckhqdq.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PUNPCKHQDQ_H_ #define COSMOPOLITAN_LIBC_INTRIN_PUNPCKHQDQ_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void punpckhqdq(uint64_t[2], const uint64_t[2], const uint64_t[2]); #define punpckhqdq(A, B, C) \ INTRIN_SSEVEX_X_X_X_(punpckhqdq, SSE2, "punpckhqdq", INTRIN_NONCOMMUTATIVE, \ A, B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PUNPCKHQDQ_H_ */
568
16
jart/cosmopolitan
false
cosmopolitan/libc/intrin/describepollflags.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/intrin/describeflags.internal.h" #include "libc/macros.internal.h" #include "libc/nt/enum/filemapflags.h" #include "libc/sysv/consts/poll.h" const char *(DescribePollFlags)(char buf[64], int x) { const struct DescribeFlags kPollFlags[] = { {POLLIN, "IN"}, // order matters {POLLOUT, "OUT"}, // order matters {POLLPRI, "PRI"}, // {POLLHUP, "HUP"}, // {POLLERR, "ERR"}, // {POLLNVAL, "NVAL"}, // {POLLRDBAND, "RDBAND"}, // {POLLRDHUP, "RDHUP"}, // {POLLRDNORM, "RDNORM"}, // {POLLWRBAND, "WRBAND"}, // {POLLWRNORM, "WRNORM"}, // }; return DescribeFlags(buf, 64, kPollFlags, ARRAYLEN(kPollFlags), "POLL", x); }
2,581
40
jart/cosmopolitan
false
cosmopolitan/libc/intrin/describentoverlapped.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/intrin/describentoverlapped.internal.h" #include "libc/intrin/kprintf.h" #include "libc/macros.internal.h" const char *(DescribeNtOverlapped)(char b[128], struct NtOverlapped *o) { int i = 0, n = 128; bool gotsome = false; if (!o) return "NULL"; i += ksnprintf(b + i, MAX(0, n - i), "{"); if (o->hEvent) { if (gotsome) { i += ksnprintf(b + i, MAX(0, n - i), ", "); } else { gotsome = true; } i += ksnprintf(b + i, MAX(0, n - i), ".hEvent = %ld", o->hEvent); } if (o->Pointer) { if (gotsome) { i += ksnprintf(b + i, MAX(0, n - i), ", "); } else { gotsome = true; } i += ksnprintf(b + i, MAX(0, n - i), ".Pointer = (void *)%p", o->Pointer); } i += ksnprintf(b + i, MAX(0, n - i), "}"); return b; }
2,627
50
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pabsd.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 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/intrin/pabsd.h" #include "libc/macros.internal.h" #include "libc/str/str.h" /** * Converts shorts to absolute values, 𝑎ᵢ ← |𝑏ᵢ|. * @note goes fast w/ ssse3 (intel c. 2004, amd c. 2011) */ void(pabsd)(uint32_t a[4], const int32_t b[4]) { unsigned i; uint32_t r[4]; for (i = 0; i < 4; ++i) { r[i] = b[i] >= 0 ? b[i] : -(uint32_t)b[i]; } __builtin_memcpy(a, r, 16); }
2,246
35
jart/cosmopolitan
false
cosmopolitan/libc/intrin/pthread_getspecific.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/assert.h" #include "libc/intrin/atomic.h" #include "libc/thread/posixthread.internal.h" #include "libc/thread/thread.h" #include "libc/thread/tls.h" /** * Gets value of TLS slot for current thread. * * If `k` wasn't created by pthread_key_create() then the behavior is * undefined. If `k` was unregistered earlier by pthread_key_delete() * then the behavior is undefined. */ void *pthread_getspecific(pthread_key_t k) { // "The effect of calling pthread_getspecific() or // pthread_setspecific() with a key value not obtained from // pthread_key_create() or after key has been deleted with // pthread_key_delete() is undefined." // ──Quoth POSIX.1-2017 _unassert(0 <= k && k < PTHREAD_KEYS_MAX); _unassert(atomic_load_explicit(_pthread_key_dtor + k, memory_order_acquire)); return __get_tls()->tib_keys[k]; }
2,723
42
jart/cosmopolitan
false
cosmopolitan/libc/intrin/punpckhbw.h
#ifndef COSMOPOLITAN_LIBC_INTRIN_PUNPCKHBW_H_ #define COSMOPOLITAN_LIBC_INTRIN_PUNPCKHBW_H_ #include "libc/intrin/macros.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) COSMOPOLITAN_C_START_ void punpckhbw(uint8_t[16], const uint8_t[16], const uint8_t[16]); #define punpckhbw(A, B, C) \ INTRIN_SSEVEX_X_X_X_(punpckhbw, SSE2, "punpckhbw", INTRIN_NONCOMMUTATIVE, A, \ B, C) COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_INTRIN_PUNPCKHBW_H_ */
563
16
jart/cosmopolitan
false
cosmopolitan/libc/intrin/sys_gettid.greg.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 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/calls/syscall-sysv.internal.h" #include "libc/dce.h" #include "libc/nt/thread.h" #include "libc/nt/thunk/msabi.h" #include "libc/runtime/internal.h" __msabi extern typeof(GetCurrentThreadId) *const __imp_GetCurrentThreadId; privileged int sys_gettid(void) { #ifdef __x86_64__ int tid; int64_t wut; if (IsWindows()) { tid = __imp_GetCurrentThreadId(); } else if (IsLinux()) { asm("syscall" : "=a"(tid) // man says always succeeds : "0"(186) // __NR_gettid : "rcx", "r11", "memory"); } else if (IsXnu()) { asm("syscall" // xnu/osfmk/kern/ipc_tt.c : "=a"(tid) // assume success : "0"(0x1000000 | 27) // Mach thread_self_trap() : "rcx", "r8", "r9", "r10", "r11", "memory", "cc"); } else if (IsOpenbsd()) { asm("syscall" : "=a"(tid) // man says always succeeds : "0"(299) // getthrid() : "rcx", "r8", "r9", "r10", "r11", "memory", "cc"); } else if (IsNetbsd()) { asm("syscall" : "=a"(tid) // man says always succeeds : "0"(311) // _lwp_self() : "rcx", "rdx", "r8", "r9", "r10", "r11", "memory", "cc"); } else if (IsFreebsd()) { asm("syscall" : "=a"(tid), // only fails w/ EFAULT, which isn't possible "=m"(wut) // must be 64-bit : "0"(432), // thr_self() "D"(&wut) // but not actually 64-bit : "rcx", "r8", "r9", "r10", "r11", "memory", "cc"); tid = wut; } else { tid = __pid; } return tid; #elif defined(__aarch64__) // this can't be used on xnu if (!IsLinux()) notpossible; register long res asm("x0"); asm volatile("mov\tx8,%1\n\t" "svc\t0" : "=r"(res) : "i"(178) : "x8", "memory"); return res; #else #error "arch unsupported" #endif }
3,692
79
jart/cosmopolitan
false
cosmopolitan/libc/intrin/atomic.h
#ifndef COSMOPOLITAN_LIBC_BITS_ATOMIC_H_ #define COSMOPOLITAN_LIBC_BITS_ATOMIC_H_ #include "libc/atomic.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) /** * @fileoverview Cosmopolitan C11 Atomics Library * * - Forty-two different ways to say MOV. * - Fourteen different ways to say XCHG. * - Twenty different ways to say LOCK CMPXCHG. * * @see libc/atomic.h */ typedef int memory_order; enum { memory_order_relaxed, memory_order_consume, memory_order_acquire, memory_order_release, memory_order_acq_rel, memory_order_seq_cst, }; #define ATOMIC_VAR_INIT(...) __VA_ARGS__ #define atomic_is_lock_free(obj) ((void)(obj), sizeof(obj) <= sizeof(void *)) #define atomic_flag atomic_bool #define ATOMIC_FLAG_INIT ATOMIC_VAR_INIT(0) #define atomic_flag_test_and_set_explicit(x, order) \ atomic_exchange_explicit(x, 1, order) #define atomic_flag_clear_explicit(x, order) atomic_store_explicit(x, 0, order) #define atomic_compare_exchange_strong(pObject, pExpected, desired) \ atomic_compare_exchange_strong_explicit( \ pObject, pExpected, desired, memory_order_seq_cst, memory_order_seq_cst) #define atomic_compare_exchange_weak(pObject, pExpected, desired) \ atomic_compare_exchange_weak_explicit( \ pObject, pExpected, desired, memory_order_seq_cst, memory_order_seq_cst) #define atomic_exchange(pObject, desired) \ atomic_exchange_explicit(pObject, desired, memory_order_seq_cst) #define atomic_fetch_add(pObject, operand) \ atomic_fetch_add_explicit(pObject, operand, memory_order_seq_cst) #define atomic_fetch_and(pObject, operand) \ atomic_fetch_and_explicit(pObject, operand, memory_order_seq_cst) #define atomic_fetch_or(pObject, operand) \ atomic_fetch_or_explicit(pObject, operand, memory_order_seq_cst) #define atomic_fetch_sub(pObject, operand) \ atomic_fetch_sub_explicit(pObject, operand, memory_order_seq_cst) #define atomic_fetch_xor(pObject, operand) \ atomic_fetch_xor_explicit(pObject, operand, memory_order_seq_cst) #define atomic_load(pObject) atomic_load_explicit(pObject, memory_order_seq_cst) #define atomic_store(pObject, desired) \ atomic_store_explicit(pObject, desired, memory_order_seq_cst) #define atomic_flag_test_and_set(x) \ atomic_flag_test_and_set_explicit(x, memory_order_seq_cst) #define atomic_flag_clear(x) atomic_flag_clear_explicit(x, memory_order_seq_cst) #if defined(__CLANG_ATOMIC_BOOL_LOCK_FREE) #define atomic_init(obj, value) __c11_atomic_init(obj, value) #define atomic_thread_fence(order) __c11_atomic_thread_fence(order) #define atomic_signal_fence(order) __c11_atomic_signal_fence(order) #define atomic_compare_exchange_strong_explicit(object, expected, desired, \ success, failure) \ __c11_atomic_compare_exchange_strong(object, expected, desired, success, \ failure) #define atomic_compare_exchange_weak_explicit(object, expected, desired, \ success, failure) \ __c11_atomic_compare_exchange_weak(object, expected, desired, success, \ failure) #define atomic_exchange_explicit(object, desired, order) \ __c11_atomic_exchange(object, desired, order) #define atomic_fetch_add_explicit(object, operand, order) \ __c11_atomic_fetch_add(object, operand, order) #define atomic_fetch_and_explicit(object, operand, order) \ __c11_atomic_fetch_and(object, operand, order) #define atomic_fetch_or_explicit(object, operand, order) \ __c11_atomic_fetch_or(object, operand, order) #define atomic_fetch_sub_explicit(object, operand, order) \ __c11_atomic_fetch_sub(object, operand, order) #define atomic_fetch_xor_explicit(object, operand, order) \ __c11_atomic_fetch_xor(object, operand, order) #define atomic_load_explicit(object, order) __c11_atomic_load(object, order) #define atomic_store_explicit(object, desired, order) \ __c11_atomic_store(object, desired, order) #elif (__GNUC__ + 0) * 100 + (__GNUC_MINOR__ + 0) >= 407 #define atomic_init(obj, value) ((void)(*(obj) = (value))) #define atomic_thread_fence(order) __atomic_thread_fence(order) #define atomic_signal_fence(order) __atomic_signal_fence(order) #define atomic_compare_exchange_strong_explicit(pObject, pExpected, desired, \ success, failure) \ __atomic_compare_exchange_n(pObject, pExpected, desired, 0, success, failure) #define atomic_compare_exchange_weak_explicit(pObject, pExpected, desired, \ success, failure) \ __atomic_compare_exchange_n(pObject, pExpected, desired, 1, success, failure) #define atomic_exchange_explicit(pObject, desired, order) \ __atomic_exchange_n(pObject, desired, order) #define atomic_fetch_add_explicit(pObject, operand, order) \ __atomic_fetch_add(pObject, operand, order) #define atomic_fetch_and_explicit(pObject, operand, order) \ __atomic_fetch_and(pObject, operand, order) #define atomic_fetch_or_explicit(pObject, operand, order) \ __atomic_fetch_or(pObject, operand, order) #define atomic_fetch_sub_explicit(pObject, operand, order) \ __atomic_fetch_sub(pObject, operand, order) #define atomic_fetch_xor_explicit(pObject, operand, order) \ __atomic_fetch_xor(pObject, operand, order) #define atomic_load_explicit(pObject, order) __atomic_load_n(pObject, order) #define atomic_store_explicit(pObject, desired, order) \ __atomic_store_n(pObject, desired, order) #elif (__GNUC__ + 0) * 100 + (__GNUC_MINOR__ + 0) >= 401 #define atomic_init(obj, value) ((void)(*(obj) = (value))) #define atomic_thread_fence(order) __sync_synchronize() #define atomic_signal_fence(order) __asm__ volatile("" ::: "memory") #define __atomic_apply_stride(object, operand) \ (((__typeof__(*(object)))0) + (operand)) #define atomic_compare_exchange_strong_explicit(object, expected, desired, \ success_order, failure_order) \ __extension__({ \ __typeof__(expected) __ep = (expected); \ __typeof__(*__ep) __e = *__ep; \ (void)(success_order); \ (void)(failure_order); \ (*__ep = __sync_val_compare_and_swap(object, __e, desired)) == __e; \ }) #define atomic_compare_exchange_weak_explicit(object, expected, desired, \ success_order, failure_order) \ atomic_compare_exchange_strong_explicit(object, expected, desired, \ success_order, failure_order) #if __has_builtin(__sync_swap) #define atomic_exchange_explicit(object, desired, order) \ ((void)(order), __sync_swap(object, desired)) #else #define atomic_exchange_explicit(object, desired, order) \ __extension__({ \ __typeof__(object) __o = (object); \ __typeof__(desired) __d = (desired); \ (void)(order); \ __sync_synchronize(); \ __sync_lock_test_and_set(__o, __d); \ }) #endif #define atomic_fetch_add_explicit(object, operand, order) \ ((void)(order), \ __sync_fetch_and_add(object, __atomic_apply_stride(object, operand))) #define atomic_fetch_and_explicit(object, operand, order) \ ((void)(order), __sync_fetch_and_and(object, operand)) #define atomic_fetch_or_explicit(object, operand, order) \ ((void)(order), __sync_fetch_and_or(object, operand)) #define atomic_fetch_sub_explicit(object, operand, order) \ ((void)(order), \ __sync_fetch_and_sub(object, __atomic_apply_stride(object, operand))) #define atomic_fetch_xor_explicit(object, operand, order) \ ((void)(order), __sync_fetch_and_xor(object, operand)) #define atomic_load_explicit(object, order) \ ((void)(order), __sync_fetch_and_add(object, 0)) #define atomic_store_explicit(object, desired, order) \ ((void)atomic_exchange_explicit(object, desired, order)) #elif defined(__GNUC__) && defined(__x86__) /* x86 with gcc 4.0 and earlier */ #define atomic_init(obj, value) ((void)(*(obj) = (value))) #define atomic_thread_fence(order) __asm__ volatile("mfence" ::: "memory") #define atomic_signal_fence(order) __asm__ volatile("" ::: "memory") #define atomic_compare_exchange_strong_explicit(object, expected, desired, \ success_order, failure_order) \ __extension__({ \ char DidIt; \ __typeof__(object) IfThing = (object); \ __typeof__(IfThing) IsEqualToMe = (expected); \ __typeof__(*IfThing) ReplaceItWithMe = (desired), ax; \ (void)(success_order); \ (void)(failure_order); \ __asm__ volatile("lock cmpxchg\t%3,(%1)\n\t" \ "setz\t%b0" \ : "=q"(DidIt), "=r"(IfThing), "+a"(ax) \ : "r"(ReplaceItWithMe), "2"(*IsEqualToMe) \ : "memory", "cc"); \ *IsEqualToMe = ax; \ DidIt; \ }) #define atomic_compare_exchange_weak_explicit(object, expected, desired, \ success_order, failure_order) \ atomic_compare_exchange_strong_explicit(object, expected, desired, \ success_order, failure_order) #define atomic_exchange_explicit(object, desired, order) \ __extension__({ \ __typeof__(object) __o = (object); \ __typeof__(*__o) __d = (desired); \ (void)(order); \ __asm__ volatile("xchg\t%0,%1" : "=r"(__d), "+m"(*__o) : "0"(__d)); \ __d; \ }) #define atomic_fetch_add_explicit(object, operand, order) \ __extension__({ \ __typeof__(object) __o = (object); \ __typeof__(*__o) __d = (desired); \ (void)(order); \ __asm__ volatile("lock xadd\t%0,%1" : "=r"(__d), "+m"(*__o) : "0"(__d)); \ __d; \ }) #define atomic_fetch_sub_explicit(object, operand, order) \ atomic_fetch_add_explicit(object, -(operand), order) #define atomic_load_explicit(object, order) \ atomic_fetch_add_explicit(object, 0, order) #define atomic_store_explicit(object, desired, order) \ ((void)atomic_exchange_explicit(object, desired, order)) #else /* non-gcc or old gcc w/o x86 */ #error "atomic operations not supported with this compiler and/or architecture" #endif #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_BITS_ATOMIC_H_ */
11,871
222
jart/cosmopolitan
false