gitextract_5ufvb6_p/ ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── build-single.yml │ └── build.yml ├── .gitignore ├── .gn ├── BUILD.gclient.gn ├── BUILD.gn ├── LICENSE ├── README.md ├── V8_REVISION ├── build.zig ├── cross-macos/ │ └── sysroot/ │ └── macos-12/ │ └── usr/ │ └── include/ │ ├── libkern/ │ │ ├── OSAtomic.h │ │ ├── OSAtomicDeprecated.h │ │ ├── OSAtomicQueue.h │ │ ├── OSByteOrder.h │ │ ├── OSCacheControl.h │ │ ├── OSDebug.h │ │ ├── OSKextLib.h │ │ ├── OSReturn.h │ │ ├── OSSpinLockDeprecated.h │ │ ├── OSThermalNotification.h │ │ ├── OSTypes.h │ │ ├── _OSByteOrder.h │ │ ├── arm/ │ │ │ └── OSByteOrder.h │ │ ├── i386/ │ │ │ ├── OSByteOrder.h │ │ │ └── _OSByteOrder.h │ │ └── machine/ │ │ └── OSByteOrder.h │ ├── mach-o/ │ │ ├── arch.h │ │ ├── arm/ │ │ │ └── reloc.h │ │ ├── arm64/ │ │ │ └── reloc.h │ │ ├── compact_unwind_encoding.h │ │ ├── compact_unwind_encoding.modulemap │ │ ├── dyld.h │ │ ├── dyld.modulemap │ │ ├── dyld_images.h │ │ ├── fat.h │ │ ├── fixup-chains.h │ │ ├── getsect.h │ │ ├── i386/ │ │ │ └── swap.h │ │ ├── ldsyms.h │ │ ├── loader.h │ │ ├── module.modulemap │ │ ├── nlist.h │ │ ├── ranlib.h │ │ ├── reloc.h │ │ ├── stab.h │ │ ├── swap.h │ │ └── x86_64/ │ │ └── reloc.h │ ├── os/ │ │ ├── _workgroup.h │ │ ├── activity.h │ │ ├── atomic.h │ │ ├── availability.h │ │ ├── base.h │ │ ├── clock.h │ │ ├── lock.h │ │ ├── log.h │ │ ├── object.h │ │ ├── overflow.h │ │ ├── proc.h │ │ ├── signpost.h │ │ ├── trace.h │ │ ├── trace_base.h │ │ ├── workgroup.h │ │ ├── workgroup_base.h │ │ ├── workgroup_interval.h │ │ ├── workgroup_object.h │ │ └── workgroup_parallel.h │ └── sys/ │ ├── _endian.h │ ├── _posix_availability.h │ ├── _pthread/ │ │ ├── _pthread_attr_t.h │ │ ├── _pthread_cond_t.h │ │ ├── _pthread_condattr_t.h │ │ ├── _pthread_key_t.h │ │ ├── _pthread_mutex_t.h │ │ ├── _pthread_mutexattr_t.h │ │ ├── _pthread_once_t.h │ │ ├── _pthread_rwlock_t.h │ │ ├── _pthread_rwlockattr_t.h │ │ ├── _pthread_t.h │ │ └── _pthread_types.h │ ├── _select.h │ ├── _structs.h │ ├── _symbol_aliasing.h │ ├── _types/ │ │ ├── _blkcnt_t.h │ │ ├── _blksize_t.h │ │ ├── _caddr_t.h │ │ ├── _clock_t.h │ │ ├── _ct_rune_t.h │ │ ├── _dev_t.h │ │ ├── _errno_t.h │ │ ├── _fd_clr.h │ │ ├── _fd_copy.h │ │ ├── _fd_def.h │ │ ├── _fd_isset.h │ │ ├── _fd_set.h │ │ ├── _fd_setsize.h │ │ ├── _fd_zero.h │ │ ├── _filesec_t.h │ │ ├── _fsblkcnt_t.h │ │ ├── _fsfilcnt_t.h │ │ ├── _fsid_t.h │ │ ├── _fsobj_id_t.h │ │ ├── _gid_t.h │ │ ├── _guid_t.h │ │ ├── _id_t.h │ │ ├── _in_addr_t.h │ │ ├── _in_port_t.h │ │ ├── _ino64_t.h │ │ ├── _ino_t.h │ │ ├── _int16_t.h │ │ ├── _int32_t.h │ │ ├── _int64_t.h │ │ ├── _int8_t.h │ │ ├── _intptr_t.h │ │ ├── _iovec_t.h │ │ ├── _key_t.h │ │ ├── _mach_port_t.h │ │ ├── _mbstate_t.h │ │ ├── _mode_t.h │ │ ├── _nlink_t.h │ │ ├── _null.h │ │ ├── _o_dsync.h │ │ ├── _o_sync.h │ │ ├── _off_t.h │ │ ├── _offsetof.h │ │ ├── _os_inline.h │ │ ├── _pid_t.h │ │ ├── _posix_vdisable.h │ │ ├── _ptrdiff_t.h │ │ ├── _rsize_t.h │ │ ├── _rune_t.h │ │ ├── _s_ifmt.h │ │ ├── _sa_family_t.h │ │ ├── _seek_set.h │ │ ├── _sigaltstack.h │ │ ├── _sigset_t.h │ │ ├── _size_t.h │ │ ├── _socklen_t.h │ │ ├── _ssize_t.h │ │ ├── _suseconds_t.h │ │ ├── _time_t.h │ │ ├── _timespec.h │ │ ├── _timeval.h │ │ ├── _timeval32.h │ │ ├── _timeval64.h │ │ ├── _u_char.h │ │ ├── _u_int.h │ │ ├── _u_int16_t.h │ │ ├── _u_int32_t.h │ │ ├── _u_int64_t.h │ │ ├── _u_int8_t.h │ │ ├── _u_short.h │ │ ├── _ucontext.h │ │ ├── _ucontext64.h │ │ ├── _uid_t.h │ │ ├── _uintptr_t.h │ │ ├── _useconds_t.h │ │ ├── _uuid_t.h │ │ ├── _va_list.h │ │ ├── _wchar_t.h │ │ └── _wint_t.h │ ├── _types.h │ ├── acct.h │ ├── acl.h │ ├── aio.h │ ├── appleapiopts.h │ ├── attr.h │ ├── buf.h │ ├── cdefs.h │ ├── clonefile.h │ ├── commpage.h │ ├── conf.h │ ├── dir.h │ ├── dirent.h │ ├── disk.h │ ├── dkstat.h │ ├── domain.h │ ├── dtrace.h │ ├── dtrace_glue.h │ ├── dtrace_impl.h │ ├── errno.h │ ├── ev.h │ ├── event.h │ ├── fasttrap.h │ ├── fasttrap_isa.h │ ├── fcntl.h │ ├── file.h │ ├── filedesc.h │ ├── filio.h │ ├── fsgetpath.h │ ├── gmon.h │ ├── ioccom.h │ ├── ioctl.h │ ├── ioctl_compat.h │ ├── ipc.h │ ├── kauth.h │ ├── kdebug.h │ ├── kdebug_signpost.h │ ├── kern_control.h │ ├── kern_event.h │ ├── kernel.h │ ├── kernel_types.h │ ├── lctx.h │ ├── loadable_fs.h │ ├── lock.h │ ├── lockf.h │ ├── lockstat.h │ ├── log_data.h │ ├── malloc.h │ ├── mbuf.h │ ├── mman.h │ ├── mount.h │ ├── msg.h │ ├── msgbuf.h │ ├── netport.h │ ├── param.h │ ├── paths.h │ ├── pipe.h │ ├── poll.h │ ├── posix_sem.h │ ├── posix_shm.h │ ├── proc.h │ ├── proc_info.h │ ├── protosw.h │ ├── ptrace.h │ ├── qos.h │ ├── queue.h │ ├── quota.h │ ├── random.h │ ├── rbtree.h │ ├── reboot.h │ ├── resource.h │ ├── resourcevar.h │ ├── sbuf.h │ ├── sdt.h │ ├── select.h │ ├── sem.h │ ├── semaphore.h │ ├── shm.h │ ├── signal.h │ ├── signalvar.h │ ├── snapshot.h │ ├── socket.h │ ├── socketvar.h │ ├── sockio.h │ ├── spawn.h │ ├── stat.h │ ├── statvfs.h │ ├── stdio.h │ ├── sys_domain.h │ ├── syscall.h │ ├── sysctl.h │ ├── syslimits.h │ ├── syslog.h │ ├── termios.h │ ├── time.h │ ├── timeb.h │ ├── times.h │ ├── timex.h │ ├── tprintf.h │ ├── trace.h │ ├── tty.h │ ├── ttychars.h │ ├── ttycom.h │ ├── ttydefaults.h │ ├── ttydev.h │ ├── types.h │ ├── ubc.h │ ├── ucontext.h │ ├── ucred.h │ ├── uio.h │ ├── un.h │ ├── unistd.h │ ├── unpcb.h │ ├── user.h │ ├── utfconv.h │ ├── utsname.h │ ├── vadvise.h │ ├── vcmd.h │ ├── vm.h │ ├── vmmeter.h │ ├── vmparam.h │ ├── vnioctl.h │ ├── vnode.h │ ├── vnode_if.h │ ├── vsock.h │ ├── vstat.h │ ├── wait.h │ └── xattr.h ├── cross-windows/ │ ├── TraceLoggingProvider.h │ ├── VersionHelpers.h │ ├── Windows.h │ └── src/ │ └── base/ │ └── win32-headers.h ├── parse_deps.py ├── patches/ │ ├── v8.patch │ └── v8_build.patch └── src/ ├── binding.cpp ├── binding.h ├── shell.zig ├── test.zig └── v8.zig