rust-lang / rust

Empowering everyone to build reliable and efficient software.
https://www.rust-lang.org
Other
99.42k stars 12.84k forks source link

Noisy compilation on FreeBSD, warns of calling destructor in dlclose'd library #120413

Closed ryanavella closed 10 months ago

ryanavella commented 10 months ago

Apologies if this isn't the right place, it isn't obvious to me if this originates in rustc or should be upstreamed to FreeBSD.

My limited understand of the warnings however suggests it could be a misuse of thread_locals on our end.

// src/main.rs
fn main() {}
$ rustc src/main.rs
__cxa_thread_call_dtors: dtr 0x2669357e9000 from unloaded dso, skipping
__cxa_thread_call_dtors: dtr 0x2669357e9000 from unloaded dso, skipping
__cxa_thread_call_dtors: dtr 0x26693a7d3860 from unloaded dso, skipping
__cxa_thread_call_dtors: dtr 0x26693a016d40 from unloaded dso, skipping
__cxa_thread_call_dtors: dtr 0x26693ac5db80 from unloaded dso, skipping

The following comment from cxa_thread_atexit_impl.c seems relevant:

C++11 introduces the thread_local scope (like thread with some additions). As a key-feature it should support non-trivial destructors, registered with cxa_thread_atexit() to be executed at the thread termination.

The implemention keeps a _Thread_local list of destructors per each thread, and calls __cxa_thread_call_dtors() on each thread's exit to do cleanup. For a thread calling exit(3), in particular, for the initial thread returning from main(), we call __cxa_thread_call_dtors() inside exit().

It could be possible that a dynamically loaded library, use thread_local variable but is dlclose()'d before thread exit. The destructor of this variable will then try to access the address, for calling it but it's unloaded, so it'll crash. We're using __elf_phdr_match_addr() to detect and prevent such cases and so prevent the crash.

Meta

I can't reproduce this on latest stable, just latest nightly so far.

$ rustc --version --verbose
rustc 1.77.0-nightly (5bd5d214e 2024-01-25)
binary: rustc
commit-hash: 5bd5d214effd494f4bafb29b3a7a2f6c2070ca5c
commit-date: 2024-01-25
host: x86_64-unknown-freebsd
release: 1.77.0-nightly
LLVM version: 17.0.6
$ uname -imrs
FreeBSD 14.0-RELEASE-p3 amd64 GENERIC
ryanavella commented 10 months ago

Bisected with cargo bisect-rustc:

regressed nightly: nightly-2024-01-24 searched commit range: https://github.com/rust-lang/rust/compare/d5fd0997291ca0135401a39dff25c8a9c13b8961...5d3d3479d774754856db2db3e439dfb88ef3c52f regressed commit: https://github.com/rust-lang/rust/commit/5d3d3479d774754856db2db3e439dfb88ef3c52f

I think it is probably #120188 (@devnexen) which is awkward because all that change did was enable thread-local support on FreeBSD. 😕

devnexen commented 10 months ago

Can reproduce too, however no problem on netbsd (reading no crash neither). It might be valuable to get an insight of what might happen in the system side of things.

bjorn3 commented 10 months ago

Rustc doesn't dlclose any of the libraries it dlopen's. And if you don't use proc macros or a codegen backend other than the default LLVM, it doesn't dlopen any library.

ryanavella commented 10 months ago

ktrace for the curious:

kdump ``` 70907 ktrace RET ktrace 0 70907 ktrace CALL execve(0x315573f52620,0x315573f52c48,0x315573f52c60) 70907 ktrace NAMI "/home/ryan/.cargo/bin/rustc" 70907 ktrace NAMI "/libexec/ld-elf.so.1" 70907 rustc RET execve JUSTRETURN 70907 rustc CALL mmap(0,0x21000,0x3,0x1002,0xffffffff,0) 70907 rustc RET mmap 30481399676928/0x1bb901000000 70907 rustc CALL mprotect(0x1c8c87e71000,0x1000,0x1) 70907 rustc RET mprotect 0 70907 rustc CALL issetugid 70907 rustc RET issetugid 0 70907 rustc CALL sigfastblock(0x1,0x1c8c87e73ba0) 70907 rustc RET sigfastblock 0 70907 rustc CALL open(0x1c8c87e56ace,0x100000) 70907 rustc NAMI "/etc/libmap.conf" 70907 rustc RET open 3 70907 rustc CALL fstat(0x3,0x183956d1ea8) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=1319, mode=0100644, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1701139887, mtime=1699603865, ctime=1701139887.479398000, birthtime=1699603865, size=35, blksize=4096, blocks=1, flags=0x800 } 70907 rustc RET fstat 0 70907 rustc CALL read(0x3,0x1bb901004008,0x23) 70907 rustc GIO fd 3 read 35 bytes "includedir /usr/local/etc/libmap.d " 70907 rustc RET read 35/0x23 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x183956d1a4b,0x120004) 70907 rustc NAMI "/usr/local/etc/libmap.d" 70907 rustc RET open 3 70907 rustc CALL fcntl(0x3,F_ISUNIONSTACK,0x0) 70907 rustc RET fcntl 0 70907 rustc CALL getdirentries(0x3,0x1bb901005008,0x1000,0x1bb901001030) 70907 rustc RET getdirentries 104/0x68 70907 rustc CALL open(0x183956d1640,0x100000) 70907 rustc NAMI "/usr/local/etc/libmap.d/mesa.conf" 70907 rustc RET open 4 70907 rustc CALL fstat(0x4,0x183956d1128) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=45164, mode=0100644, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=0, mtime=1699822010, ctime=1701140838.613930000, birthtime=1699822010, size=38, blksize=4096, blocks=1, flags=0x800 } 70907 rustc RET fstat 0 70907 rustc CALL read(0x4,0x1bb9010040c8,0x26) 70907 rustc GIO fd 4 read 38 bytes "libGLX_indirect.so.0 libGLX_mesa.so.0 " 70907 rustc RET read 38/0x26 70907 rustc CALL close(0x4) 70907 rustc RET close 0 70907 rustc CALL getdirentries(0x3,0x1bb901005008,0x1000,0x1bb901001030) 70907 rustc RET getdirentries 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x1c8c87e565f1,0x100000) 70907 rustc NAMI "/var/run/ld-elf.so.hints" 70907 rustc RET open 3 70907 rustc CALL read(0x3,0x1c8c87e73a28,0x80) 70907 rustc GIO fd 3 read 128 bytes 0x0000 4568 6e74 0100 0000 8000 0000 |Ehnt........| 0x000c 7301 0000 0000 0000 7201 0000 |s.......r...| 0x0018 0000 0000 0000 0000 0000 0000 |............| 0x0024 0000 0000 0000 0000 0000 0000 |............| 0x0030 0000 0000 0000 0000 0000 0000 |............| 0x003c 0000 0000 0000 0000 0000 0000 |............| 0x0048 0000 0000 0000 0000 0000 0000 |............| 0x0054 0000 0000 0000 0000 0000 0000 |............| 0x0060 0000 0000 0000 0000 0000 0000 |............| 0x006c 0000 0000 0000 0000 0000 0000 |............| 0x0078 0000 0000 0000 0000 |........| 70907 rustc RET read 128/0x80 70907 rustc CALL fstat(0x3,0x183956d0f60) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=262241, mode=0100444, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1706375118.327445000, mtime=1706375118.327492000, ctime=1706375118.327518000, birthtime=1706375118.327445000, size=499, blksize=4096, blocks=9, flags=0x800 } 70907 rustc RET fstat 0 70907 rustc CALL pread(0x3,0x1bb901008008,0x173,0x80) 70907 rustc GIO fd 3 read 371 bytes "/lib:/usr/lib:/usr/lib/compat:/usr/local/lib:/usr/loca\ l/lib/compat/pkg:/usr/local/lib/alsa-lib:/usr/local/li\ b/gcc12:/usr/local/lib/mysql:/usr/local/lib/mysql/plug\ in:/usr/local/lib/perl5/5.34/mach/CORE:/usr/local/lib/\ qt5:/usr/local/lib/samba4:/usr/local/lib/signon:/usr/l\ ocal/lib/signon/extensions:/usr/local/llvm15/lib:/usr/\ local/share/chromium:/usr/local/share/code-oss\0" 70907 rustc RET pread 371/0x173 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x1bb901009008,0x300000) 70907 rustc NAMI "/lib/libthr.so.3" 70907 rustc RET open 3 70907 rustc CALL fstat(0x3,0x183956d1560) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=17443, mode=0100444, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1701139887, mtime=1699603082.618644000, ctime=1701139898.878022000, birthtime=1699603082.618644000, size=127864, blksize=128000, blocks=145, flags=0x20800 } 70907 rustc RET fstat 0 70907 rustc CALL mmap(0,0x1000,0x1,0x40002,0x3,0) 70907 rustc RET mmap 1664680357888/0x18396ae7000 70907 rustc CALL mmap(0,0x2e000,0,0x2000,0xffffffff,0) 70907 rustc RET mmap 1664691163136/0x18397535000 70907 rustc CALL mmap(0x18397535000,0xd000,0x1,0x60012,0x3,0) 70907 rustc RET mmap 1664691163136/0x18397535000 70907 rustc CALL mmap(0x18397542000,0x12000,0x5,0x60012,0x3,0xc000) 70907 rustc RET mmap 1664691216384/0x18397542000 70907 rustc CALL mmap(0x18397554000,0x2000,0x3,0x40012,0x3,0x1d000) 70907 rustc RET mmap 1664691290112/0x18397554000 70907 rustc CALL mmap(0x18397556000,0x1000,0x3,0x40012,0x3,0x1e000) 70907 rustc RET mmap 1664691298304/0x18397556000 70907 rustc CALL mmap(0x18397557000,0xc000,0x3,0x1012,0xffffffff,0) 70907 rustc RET mmap 1664691302400/0x18397557000 70907 rustc CALL munmap(0x18396ae7000,0x1000) 70907 rustc RET munmap 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x1bb901009008,0x300000) 70907 rustc NAMI "/lib/libgcc_s.so.1" 70907 rustc RET open 3 70907 rustc CALL fstat(0x3,0x183956d1560) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=17451, mode=0100444, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1701139887, mtime=1699603426, ctime=1701139898.772018000, birthtime=1699603426, size=91688, blksize=92160, blocks=121, flags=0x800 } 70907 rustc RET fstat 0 70907 rustc CALL mmap(0,0x1000,0x1,0x40002,0x3,0) 70907 rustc RET mmap 1664691351552/0x18397563000 70907 rustc CALL mmap(0,0x1a000,0,0x2000,0xffffffff,0) 70907 rustc RET mmap 1664676438016/0x1839672a000 70907 rustc CALL mmap(0x1839672a000,0x9000,0x1,0x60012,0x3,0) 70907 rustc RET mmap 1664676438016/0x1839672a000 70907 rustc CALL mmap(0x18396733000,0xe000,0x5,0x60012,0x3,0x8000) 70907 rustc RET mmap 1664676474880/0x18396733000 70907 rustc CALL mmap(0x18396741000,0x1000,0x3,0x40012,0x3,0x15000) 70907 rustc RET mmap 1664676532224/0x18396741000 70907 rustc CALL mmap(0x18396742000,0x1000,0x3,0x40012,0x3,0x15000) 70907 rustc RET mmap 1664676536320/0x18396742000 70907 rustc CALL mmap(0x18396743000,0x1000,0x3,0x1012,0xffffffff,0) 70907 rustc RET mmap 1664676540416/0x18396743000 70907 rustc CALL munmap(0x18397563000,0x1000) 70907 rustc RET munmap 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x1bb901009008,0x300000) 70907 rustc NAMI "/lib/libc.so.7" 70907 rustc RET open 3 70907 rustc CALL fstat(0x3,0x183956d1560) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=392707, mode=0100444, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1703395315.715676000, mtime=1703395315.721643000, ctime=1703395315.836887000, birthtime=1703395315.715676000, size=1946744, blksize=131072, blocks=2345, flags=0x20800 } 70907 rustc RET fstat 0 70907 rustc CALL mmap(0,0x1000,0x1,0x40002,0x3,0) 70907 rustc RET mmap 1664695545856/0x18397963000 70907 rustc CALL mmap(0,0x400000,0,0x2000,0xffffffff,0) 70907 rustc RET mmap 1664696881152/0x18397aa9000 70907 rustc CALL mmap(0x18397aa9000,0x84000,0x1,0x60012,0x3,0) 70907 rustc RET mmap 1664696881152/0x18397aa9000 70907 rustc CALL mmap(0x18397b2d000,0x149000,0x5,0x60012,0x3,0x83000) 70907 rustc RET mmap 1664697421824/0x18397b2d000 70907 rustc CALL mmap(0x18397c76000,0xa000,0x3,0x40012,0x3,0x1cb000) 70907 rustc RET mmap 1664698769408/0x18397c76000 70907 rustc CALL mmap(0x18397c80000,0x7000,0x3,0x40012,0x3,0x1d4000) 70907 rustc RET mmap 1664698810368/0x18397c80000 70907 rustc CALL mmap(0x18397c87000,0x222000,0x3,0x1012,0xffffffff,0) 70907 rustc RET mmap 1664698839040/0x18397c87000 70907 rustc CALL munmap(0x18397963000,0x1000) 70907 rustc RET munmap 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x1bb901009008,0x300000) 70907 rustc NAMI "/lib/libm.so.5" 70907 rustc RET open 3 70907 rustc CALL fstat(0x3,0x183956d1560) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=17412, mode=0100444, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1701139887, mtime=1699603002, ctime=1701139898.558261000, birthtime=1699603002, size=236928, blksize=131072, blocks=329, flags=0x800 } 70907 rustc RET fstat 0 70907 rustc CALL mmap(0,0x1000,0x1,0x40002,0x3,0) 70907 rustc RET mmap 1664726241280/0x183996a9000 70907 rustc CALL mmap(0,0x3d000,0,0x2000,0xffffffff,0) 70907 rustc RET mmap 1664703111168/0x1839809a000 70907 rustc CALL mmap(0x1839809a000,0x13000,0x1,0x60012,0x3,0) 70907 rustc RET mmap 1664703111168/0x1839809a000 70907 rustc CALL mmap(0x183980ad000,0x27000,0x5,0x60012,0x3,0x12000) 70907 rustc RET mmap 1664703188992/0x183980ad000 70907 rustc CALL mmap(0x183980d4000,0x1000,0x3,0x40012,0x3,0x38000) 70907 rustc RET mmap 1664703348736/0x183980d4000 70907 rustc CALL mmap(0x183980d5000,0x2000,0x3,0x40012,0x3,0x38000) 70907 rustc RET mmap 1664703352832/0x183980d5000 70907 rustc CALL munmap(0x183996a9000,0x1000) 70907 rustc RET munmap 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL mprotect(0x18397554000,0x1000,0x1) 70907 rustc RET mprotect 0 70907 rustc CALL mprotect(0x18397c76000,0x9000,0x1) 70907 rustc RET mprotect 0 70907 rustc CALL mprotect(0x18397c76000,0x9000,0x3) 70907 rustc RET mprotect 0 70907 rustc CALL mprotect(0x18397c76000,0x9000,0x1) 70907 rustc RET mprotect 0 70907 rustc CALL readlink(0x18397af1849,0x183956d16b0,0x400) 70907 rustc NAMI "/etc/malloc.conf" 70907 rustc RET readlink -1 errno 2 No such file or directory 70907 rustc CALL issetugid 70907 rustc RET issetugid 0 70907 rustc CALL mmap(0,0x200000,0x3,0x15001002,0xffffffff,0) 70907 rustc RET mmap 30481401774080/0x1bb901200000 70907 rustc CALL mmap(0,0x200000,0x3,0xc001002,0xffffffff,0) 70907 rustc RET mmap 30481403871232/0x1bb901400000 70907 rustc CALL mmap(0,0x400000,0x3,0x15001002,0xffffffff,0) 70907 rustc RET mmap 30481405968384/0x1bb901600000 70907 rustc CALL thr_self(0x1bb901412000) 70907 rustc RET thr_self 0 70907 rustc CALL mmap(0x183756d3000,0x1000,0,0x1000,0xffffffff,0) 70907 rustc RET mmap 1664719564800/0x1839904b000 70907 rustc CALL rtprio_thread(RTP_LOOKUP,0x1907a,0x183956d1af8) 70907 rustc RET rtprio_thread 0 70907 rustc CALL sigaction(SIGTHR,0x183956d1aa8,0) 70907 rustc RET sigaction 0 70907 rustc CALL sigprocmask(SIG_UNBLOCK,0x183956d1ab4,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL _umtx_op(0x183956d1af0,0x3,0x1,0,0) 70907 rustc RET _umtx_op 0 70907 rustc CALL mprotect(0,0,0) 70907 rustc RET mprotect 0 70907 rustc CALL getpid 70907 rustc RET getpid 70907/0x114fb 70907 rustc CALL getpid 70907 rustc RET getpid 70907/0x114fb 70907 rustc CALL sigprocmask(SIG_BLOCK,0x1839753d930,0x1bb9014120f0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigfastblock(0x3,0) 70907 rustc RET sigfastblock 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1bb9014120f0,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigfastblock(0x1,0x1bb901412038) 70907 rustc RET sigfastblock 0 70907 rustc CALL getcontext(0x183956d14e0) 70907 rustc RET getcontext 0 70907 rustc CALL sysarch(AMD64_GET_XFPUSTATE,0x183956d14a8) 70907 rustc RET sysarch 0 70907 rustc CALL openat(AT_FDCWD,0x17b74483cf5,0x2) 70907 rustc NAMI "/dev/crypto" 70907 rustc RET openat 3 70907 rustc CALL ioctl(0x3,0xc0046364,0x17b747eb300) 70907 rustc NAMI "/dev/crypto" 70907 rustc RET ioctl 4 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL ioctl(0x4,CIOCGSESSION,0x183956d1830) 70907 rustc RET ioctl -1 errno 22 Invalid argument 70907 rustc CALL ioctl(0x4,CIOCGSESSION,0x183956d1830) 70907 rustc RET ioctl -1 errno 22 Invalid argument 70907 rustc CALL ioctl(0x4,CIOCGSESSION,0x183956d1830) 70907 rustc RET ioctl -1 errno 22 Invalid argument 70907 rustc CALL ioctl(0x4,CIOCGSESSION,0x183956d1830) 70907 rustc RET ioctl -1 errno 22 Invalid argument 70907 rustc CALL ioctl(0x4,CIOCGSESSION,0x183956d1830) 70907 rustc RET ioctl -1 errno 45 Operation not supported 70907 rustc CALL ioctl(0x4,CIOCGSESSION,0x183956d1830) 70907 rustc RET ioctl -1 errno 45 Operation not supported 70907 rustc CALL ioctl(0x4,CIOCGSESSION,0x183956d1830) 70907 rustc RET ioctl -1 errno 45 Operation not supported 70907 rustc CALL ioctl(0x4,CIOCGSESSION,0x183956d1830) 70907 rustc RET ioctl -1 errno 22 Invalid argument 70907 rustc CALL mmap(0,0x22000,0x3,0x1002,0xffffffff,0) 70907 rustc RET mmap 30481410162688/0x1bb901a00000 70907 rustc CALL issetugid 70907 rustc RET issetugid 0 70907 rustc CALL fstatat(AT_FDCWD,0x183956d10f0,0x183956d14f0,0) 70907 rustc NAMI "/usr/share/nls/C/libc.cat" 70907 rustc RET fstatat -1 errno 2 No such file or directory 70907 rustc CALL fstatat(AT_FDCWD,0x183956d10f0,0x183956d14f0,0) 70907 rustc NAMI "/usr/share/nls/libc/C" 70907 rustc RET fstatat -1 errno 2 No such file or directory 70907 rustc CALL fstatat(AT_FDCWD,0x183956d10f0,0x183956d14f0,0) 70907 rustc NAMI "/usr/local/share/nls/C/libc.cat" 70907 rustc RET fstatat -1 errno 2 No such file or directory 70907 rustc CALL fstatat(AT_FDCWD,0x183956d10f0,0x183956d14f0,0) 70907 rustc NAMI "/usr/local/share/nls/libc/C" 70907 rustc RET fstatat -1 errno 2 No such file or directory 70907 rustc CALL issetugid 70907 rustc RET issetugid 0 70907 rustc CALL open(0x1bb9014791e0,0) 70907 rustc NAMI "/usr/local/ssl/openssl.cnf" 70907 rustc RET open -1 errno 2 No such file or directory 70907 rustc CALL mprotect(0x17b7475d000,0x86000,0x1) 70907 rustc RET mprotect 0 70907 rustc CALL poll(0x183956d2a70,0x3,0) 70907 rustc RET poll 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1839753d930,0x183956d2938) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigaction(SIGPIPE,0x183956d2948,0x183956d2988) 70907 rustc RET sigaction 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x183956d2938,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1839753d930,0x183956d29a8) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigaction(SIGSEGV,0,0x183956d29f8) 70907 rustc RET sigaction 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x183956d29a8,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1839753d930,0x183956d29a8) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigaction(SIGSEGV,0x183956d29b8,0x183956d29f8) 70907 rustc RET sigaction 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x183956d29a8,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1839753d930,0x183956d29a8) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigaction(SIGBUS,0,0x183956d29f8) 70907 rustc RET sigaction 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x183956d29a8,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1839753d930,0x183956d29a8) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigaction(SIGBUS,0x183956d29b8,0x183956d29f8) 70907 rustc RET sigaction 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x183956d29a8,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigaltstack(0,0x183956d29f0) 70907 rustc RET sigaltstack 0 70907 rustc CALL mmap(0,0x9800,0x3,0x1002,0xffffffff,0) 70907 rustc RET mmap 30481410301952/0x1bb901a22000 70907 rustc CALL mprotect(0x1bb901a22000,0x1000,0) 70907 rustc RET mprotect 0 70907 rustc CALL sigaltstack(0x183956d29f0,0) 70907 rustc RET sigaltstack 0 70907 rustc CALL __sysctlbyname(0x1839753d282,0x18,0x18397556a00,0x183956d29f8,0,0) 70907 rustc SCTL "kern.sched.cpusetsizemin" 70907 rustc RET __sysctlbyname 0 70907 rustc CALL cpuset_getaffinity(0x3,0x1,0x1907a,0x1,0x1bb901408050) 70907 rustc STRU cpuset_t [ 0, 1, 2, 3, 4, 5, 6, 7 ] 70907 rustc RET cpuset_getaffinity 0 70907 rustc CALL __getcwd(0x1bb901421000,0x200) 70907 rustc NAMI "/tmp/mre" 70907 rustc RET __getcwd 0 70907 rustc CALL __sysctl(0x183956d2600,0x4,0,0x183956d25f0,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.cargo/bin/rustc" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x183956d2600,0x4,0x1bb901423b40,0x183956d25f0,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.cargo/bin/rustc" 70907 rustc RET __sysctl 0 70907 rustc CALL __getcwd(0x1bb901421000,0x200) 70907 rustc NAMI "/tmp/mre" 70907 rustc RET __getcwd 0 70907 rustc CALL compat11.stat(0x183956d1e98,0x183956d1e20) 70907 rustc NAMI "/home/ryan/.cargo/bin/rustup-init" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL compat11.stat(0x183956d1168,0x183956d10f0) 70907 rustc NAMI "/home/ryan/.terminfo" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL compat11.stat(0x183956d1168,0x183956d10f0) 70907 rustc NAMI "/etc/terminfo" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL compat11.stat(0x183956d1168,0x183956d10f0) 70907 rustc NAMI "/lib/terminfo" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL compat11.stat(0x183956d1168,0x183956d10f0) 70907 rustc NAMI "/usr/share/terminfo" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL compat11.stat(0x183956d1168,0x183956d10f0) 70907 rustc NAMI "/boot/system/data/terminfo" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __sysctl(0x183956d1260,0x2,0x183956d1270,0x183956d1258,0,0) 70907 rustc SCTL "kern.arandom" 70907 rustc RET __sysctl 0 70907 rustc CALL __getcwd(0x1bb901421000,0x200) 70907 rustc NAMI "/tmp/mre" 70907 rustc RET __getcwd 0 70907 rustc CALL compat11.stat(0x183956d1718,0x183956d16a0) 70907 rustc NAMI "/home/ryan/.rustup" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=492875, mode=040755, nlink=6, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706375667.211041000, mtime=1706375722.296318000, ctime=1706375722.296318000, birthtime=1706375667.211041000, size=7, blksize=131072, blocks=17, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x183956d1920,0x100000) 70907 rustc NAMI "/etc/rustup/settings.toml" 70907 rustc RET openat -1 errno 2 No such file or directory 70907 rustc CALL compat11.stat(0x183956d1238,0x183956d11c0) 70907 rustc NAMI "/home/ryan/.rustup/settings.toml" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=492876, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706375667.211149000, mtime=1706376658.433842000, ctime=1706376658.433842000, birthtime=1706375667.211149000, size=101, blksize=4096, blocks=1, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x183956d12c0,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/settings.toml" 70907 rustc RET openat 3 70907 rustc CALL compat11.fstat(0x3,0x183956d12c0) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=492876, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706375667.211149000, mtime=1706376658.433842000, ctime=1706376658.433842000, birthtime=1706375667.211149000, size=101, blksize=4096, blocks=1, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL read(0x3,0x1bb901438000,0x65) 70907 rustc GIO fd 3 read 101 bytes "default_toolchain = "nightly-x86_64-unknown-freebsd" profile = "default" version = "12" [overrides] " 70907 rustc RET read 101/0x65 70907 rustc CALL read(0x3,0x183956d1230,0x20) 70907 rustc GIO fd 3 read 0 bytes "" 70907 rustc RET read 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL __sysctl(0x183956d1258,0x2,0x183956d12d8,0x183956d1250,0,0) 70907 rustc SCTL "kern.ostype" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x183956d1258,0x2,0x183956d13d8,0x183956d1250,0,0) 70907 rustc SCTL "kern.hostname" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x183956d1258,0x2,0x183956d14d8,0x183956d1250,0,0) 70907 rustc SCTL "kern.osrelease" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x183956d1258,0x2,0x183956d15d8,0x183956d1250,0,0) 70907 rustc SCTL "kern.version" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x183956d1258,0x2,0x183956d16d8,0x183956d1250,0,0) 70907 rustc SCTL "hw.machine" 70907 rustc RET __sysctl 0 70907 rustc CALL compat11.stat(0x183956d1e78,0x183956d1e00) 70907 rustc NAMI "/home/ryan/.rustup" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=492875, mode=040755, nlink=6, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706375667.211041000, mtime=1706375722.296318000, ctime=1706375722.296318000, birthtime=1706375667.211041000, size=7, blksize=131072, blocks=17, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL __getcwd(0x1bb9014af600,0x200) 70907 rustc NAMI "/tmp/mre" 70907 rustc RET __getcwd 0 70907 rustc CALL compat11.stat(0x183956d0fe8,0x183956d0f70) 70907 rustc NAMI "/tmp/mre" 70907 rustc STRU struct stat {dev=15021012045860407878, ino=899, mode=040777, nlink=4, uid=1001, gid=0, rdev=18446744073709551615, atime=1706374006.528025000, mtime=1706376717.972738000, ctime=1706376717.972738000, birthtime=1706374006.528025000, size=8, blksize=131072, blocks=17, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL __realpathat(0xffffff9c,0x183956d0f40,0x1bb901425c00,0x400,0) 70907 rustc NAMI "/tmp/mre" 70907 rustc RET __realpathat 0 70907 rustc CALL openat(AT_FDCWD,0x183956d10b0,0x100000) 70907 rustc NAMI "/tmp/mre/rust-toolchain" 70907 rustc RET openat -1 errno 2 No such file or directory 70907 rustc CALL openat(AT_FDCWD,0x183956d10b0,0x100000) 70907 rustc NAMI "/tmp/mre/rust-toolchain.toml" 70907 rustc RET openat -1 errno 2 No such file or directory 70907 rustc CALL compat11.stat(0x183956d0fe8,0x183956d0f70) 70907 rustc NAMI "/tmp" 70907 rustc STRU struct stat {dev=15021012045860407878, ino=34, mode=041777, nlink=9, uid=0, gid=0, rdev=18446744073709551615, atime=1701139887, mtime=1706376714.923359000, ctime=1706376714.923359000, birthtime=1699602511, size=20, blksize=16384, blocks=49, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL __realpathat(0xffffff9c,0x183956d0f40,0x1bb901425c00,0x400,0) 70907 rustc NAMI "/tmp" 70907 rustc RET __realpathat 0 70907 rustc CALL openat(AT_FDCWD,0x183956d10b0,0x100000) 70907 rustc NAMI "/tmp/rust-toolchain" 70907 rustc RET openat -1 errno 2 No such file or directory 70907 rustc CALL openat(AT_FDCWD,0x183956d10b0,0x100000) 70907 rustc NAMI "/tmp/rust-toolchain.toml" 70907 rustc RET openat -1 errno 2 No such file or directory 70907 rustc CALL compat11.stat(0x183956d0fe8,0x183956d0f70) 70907 rustc NAMI "/" 70907 rustc STRU struct stat {dev=17900027164756631768, ino=34, mode=040755, nlink=20, uid=0, gid=0, rdev=18446744073709551615, atime=1701139908, mtime=1706373931.658533000, ctime=1706373931.658533000, birthtime=1699606159, size=25, blksize=4096, blocks=17, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL __realpathat(0xffffff9c,0x183956d0f40,0x1bb901425c00,0x400,0) 70907 rustc NAMI "/" 70907 rustc RET __realpathat 0 70907 rustc CALL openat(AT_FDCWD,0x183956d10b0,0x100000) 70907 rustc NAMI "/rust-toolchain" 70907 rustc RET openat -1 errno 2 No such file or directory 70907 rustc CALL openat(AT_FDCWD,0x183956d10b0,0x100000) 70907 rustc NAMI "/rust-toolchain.toml" 70907 rustc RET openat -1 errno 2 No such file or directory 70907 rustc CALL __sysctl(0x183956d0fa8,0x2,0x183956d1028,0x183956d0fa0,0,0) 70907 rustc SCTL "kern.ostype" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x183956d0fa8,0x2,0x183956d1128,0x183956d0fa0,0,0) 70907 rustc SCTL "kern.hostname" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x183956d0fa8,0x2,0x183956d1228,0x183956d0fa0,0,0) 70907 rustc SCTL "kern.osrelease" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x183956d0fa8,0x2,0x183956d1328,0x183956d0fa0,0,0) 70907 rustc SCTL "kern.version" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x183956d0fa8,0x2,0x183956d1428,0x183956d0fa0,0,0) 70907 rustc SCTL "hw.machine" 70907 rustc RET __sysctl 0 70907 rustc CALL compat11.stat(0x183956d16f8,0x183956d1680) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=635340, mode=040755, nlink=7, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376015.669016000, mtime=1706376024.379398000, ctime=1706376024.379398000, birthtime=1706376015.669016000, size=7, blksize=131072, blocks=17, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL compat11.stat(0x183956d1298,0x183956d1220) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=635340, mode=040755, nlink=7, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376015.669016000, mtime=1706376024.379398000, ctime=1706376024.379398000, birthtime=1706376015.669016000, size=7, blksize=131072, blocks=17, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL compat11.stat(0x183956d10a8,0x183956d1030) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/rust-installer-version" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=635447, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376015.696537000, mtime=1706376024.932927000, ctime=1706376024.932927000, birthtime=1706376015.696537000, size=1, blksize=4096, blocks=1, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x183956d1130,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/rust-installer-version" 70907 rustc RET openat 3 70907 rustc CALL compat11.fstat(0x3,0x183956d1130) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=635447, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376015.696537000, mtime=1706376024.932927000, ctime=1706376024.932927000, birthtime=1706376015.696537000, size=1, blksize=4096, blocks=1, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL read(0x3,0x1bb901408168,0x1) 70907 rustc GIO fd 3 read 1 byte "3" 70907 rustc RET read 1 70907 rustc CALL read(0x3,0x183956d10a0,0x20) 70907 rustc GIO fd 3 read 0 bytes "" 70907 rustc RET read 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL compat11.stat(0x183956d10b8,0x183956d1040) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/multirust-channel-manifest.toml" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937067, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376024.953039000, mtime=1706376024.953262000, ctime=1706376024.953262000, birthtime=1706376024.953039000, size=752042, blksize=131072, blocks=281, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x183956d1140,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/multirust-channel-manifest.toml" 70907 rustc RET openat 3 70907 rustc CALL compat11.fstat(0x3,0x183956d1140) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937067, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376024.953039000, mtime=1706376024.953262000, ctime=1706376024.953262000, birthtime=1706376024.953039000, size=752042, blksize=131072, blocks=281, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x280000,0x3,0xc001002,0xffffffff,0) 70907 rustc RET mmap 30481410342912/0x1bb901a2c000 70907 rustc CALL read(0x3,0x1bb901a2cf40,0xb79aa) 70907 rustc GIO fd 3 read 4096 bytes "date = "2024-01-26" manifest-version = "2" [pkg.cargo] version = "0.78.0-nightly (7bb7b5395 2024-01-20)" [pkg.cargo.target.aarch64-apple-darwin] available = true hash = "7a86c1e2882c6d6855c26d41d25949753dd6e586bbfeed\ c9e8c738cfd3ed6a4d" url = "https://static.rust-lang.org/dist/2024-01-26/ca\ rgo-nightly-aarch64-apple-darwin.tar.gz" xz_hash = "7a91114e3f6b513e887cbf347c0c8c72d1637e6a901\ 983e3bcd3995306b4b8ad" xz_url = "https://static.rust-lang.org/dist/2024-01-26\ /cargo-nightly-aarch64-apple-darwin.tar.xz" [pkg.cargo.target.aarch64-pc-windows-msvc] available = true hash = "da52c334205705514993443daeeab956932fc415afd6aa\ c5a6817c684f96a825" url = "https://static.rust-lang.org/dist/2024-01-26/ca\ rgo-nightly-aarch64-pc-windows-msvc.tar.gz" xz_hash = "78ad4c9666e45d3146e62782e31f4ad9e011ce32360\ 57d22ad5f88a3b83ce805" xz_url = "https://static.rust-lang.org/dist/2024-01-26\ /cargo-nightly-aarch64-pc-windows-msvc.tar.xz" [pkg.cargo.target.aarch64-unknown-linux-gnu] available = true hash = "3f53dba42877d166a03589bd19428152c91cd8256d0551\ 882076d90be76179b3" url = "https://static.rust-lang.org/dist/2024-01-26/ca\ rgo-nightly-aarch64-unknown-linux-gnu.tar.gz" xz_hash = "b6e81ad41cfe092de666e8bd7ec0d7609336ca15d24\ fae61dc0cdd46dca1e146" xz_url = "https://static.rust-lang.org/dist/2024-01-26\ /cargo-nightly-aarch64-unknown-linux-gnu.tar.xz" [pkg.cargo.target.aarch64-unknown-linux-musl] available = true hash = "0805114a03c96663773cf5e093ec6c8a10c59f497b8cd4\ fbcf6cb794530fc1b1" url = "https://static.rust-lang.org/dist/2024-01-26/ca\ rgo-nightly-aarch64-unknown-linux-musl.tar.gz" xz_hash = "d3de61910661faf0dc69fcc35c40a37b9d05acfd164\ 0e45dcd41c4957544b945" xz_url = "https://static.rust-lang.org/dist/2024-01-26\ /cargo-nightly-aarch64-unknown-linux-musl.tar.xz" [pkg.cargo.target.arm-unknown-linux-gnueabi] available = true hash = "0437965dbddc6d7fdf69e9916ac54497b3c2629c3dbb41\ 42d974d56b998139f2" url = "https://static.rust-lang.org/dist/2024-01-26/ca\ rgo-nightly-arm-unknown-linux-gnueabi.tar.gz" xz_hash = "4ab7a913c935bff4bd1153526820d6ecfc264dfa46e\ deedd65a3b5b237de2882" xz_url = "https://static.rust-lang.org/dist/2024-01-26\ /cargo-nightly-arm-unknown-linux-gnueabi.tar.xz" [pkg.cargo.target.arm-unknown-linux-gnueabihf] available = true hash = "6fad475f8e4270fa070d23053bfc0e330d80694d98d979\ 761c6234834612b6d2" url = "https://static.rust-lang.org/dist/2024-01-26/ca\ rgo-nightly-arm-unknown-linux-gnueabihf.tar.gz" xz_hash = "f09f5ee90d9bf5c661fccab5e97da2bca86f7c61af8\ a34b89bc9e03f5293e2bd" xz_url = "https://static.rust-lang.org/dist/2024-01-26\ /cargo-nightly-arm-unknown-linux-gnueabihf.tar.xz" [pkg.cargo.target.armv7-unknown-linux-gnueabihf] available = true hash = "14163c11983c38d7fd958af9ce83052708828ba21a667a\ db6508318f07dc894d" url = "https://static.rust-lang.org/dist/2024-01-26/ca\ rgo-nightly-armv7-unknown-linux-gnueabihf.tar.gz" xz_hash = "a0945647f147de0b1dfda933238186a5580a43ed367\ d1fcda85e2a00feef93e0" xz_url = "https://static.rust-lang.org/dist/2024-01-26\ /cargo-nightly-armv7-unknown-linux-gnueabihf.tar.xz" [pkg.cargo.target.i686-apple-darwin] available = false [pkg.cargo.target.i686-pc-windows-gnu] available = true hash = "f4d6ac41633bca9d9a7aeadea6da91ad11d14366c5ac1a\ 9237ca013ae5a2fbcc" url = "https://static.rust-lang.org/dist/2024-01-26/ca\ rgo-nightly-i686-pc-windows-gnu.tar.gz" xz_hash = "fbdacc0c973e952b20ce1471f7e83148cacd963c56b\ 65d0bb439dcb1b9795fa6" xz_url = "https://static.rust-lang.org/dist/2024-01-26\ /cargo-nightly-i686-pc-windows-gnu.tar.xz" [pkg.cargo.target.i686-pc-windows-msvc] available = true hash = "65fb90814e873cb72a4fdc8d12cddad93fd78f98ca557c\ 2b9e2603e9623817da" url = "https://static.rust-lang.org/dist/2024-01-26/ca\ rgo-nightly-i686-pc-windows-msvc.tar.gz" xz_hash = "009c860191d9363c96822ac53949c33630c0e9550af\ 6a05eeea79cb91a6ddc82" xz_url = "https://static.rust-lang.org/dist/2024-01-26\ /cargo-nightly-i686-pc-windows-msvc.tar.xz" [pkg.cargo.target.i686-unknown-linux-gnu] available = true hash = "d6113fd5d2da3fa42c53d092f8d9dc653423a0215a638d\ c54d7f888dbc32ca58" url = "https://static.rust-lang.org/dist/2024-01-26/ca\ rgo-nightly-i686-unknown-lin" 70907 rustc RET read 752042/0xb79aa 70907 rustc CALL read(0x3,0x183956d10b0,0x20) 70907 rustc GIO fd 3 read 0 bytes "" 70907 rustc RET read 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL mmap(0,0x300000,0x3,0xc001002,0xffffffff,0) 70907 rustc RET mmap 30481412964352/0x1bb901cac000 70907 rustc CALL mmap(0,0x380000,0x3,0xc001002,0xffffffff,0) 70907 rustc RET mmap 30481416110080/0x1bb901fac000 70907 rustc CALL mmap(0,0x400000,0x3,0xc001002,0xffffffff,0) 70907 rustc RET mmap 30481419780096/0x1bb90232c000 70907 rustc CALL compat11.stat(0x183956d10d8,0x183956d1060) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/multirust-config.toml" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=936927, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376024.955910000, mtime=1706376024.955959000, ctime=1706376024.955959000, birthtime=1706376024.955910000, size=431, blksize=4096, blocks=9, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x183956d1160,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/multirust-config.toml" 70907 rustc RET openat 3 70907 rustc CALL compat11.fstat(0x3,0x183956d1160) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=936927, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376024.955910000, mtime=1706376024.955959000, ctime=1706376024.955959000, birthtime=1706376024.955910000, size=431, blksize=4096, blocks=9, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL read(0x3,0x1bb901a2c000,0x1af) 70907 rustc GIO fd 3 read 431 bytes "config_version = "1" [[components]] pkg = "cargo" target = "x86_64-unknown-freebsd" [[components]] pkg = "clippy-preview" target = "x86_64-unknown-freebsd" [[components]] pkg = "rust-docs" target = "x86_64-unknown-freebsd" [[components]] pkg = "rust-std" target = "x86_64-unknown-freebsd" [[components]] pkg = "rustc" target = "x86_64-unknown-freebsd" [[components]] pkg = "rustfmt-preview" target = "x86_64-unknown-freebsd" " 70907 rustc RET read 431/0x1af 70907 rustc CALL read(0x3,0x183956d10d0,0x20) 70907 rustc GIO fd 3 read 0 bytes "" 70907 rustc RET read 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL compat11.stat(0x183956d1f08,0x183956d1e90) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=635340, mode=040755, nlink=7, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376015.669016000, mtime=1706376024.379398000, ctime=1706376024.379398000, birthtime=1706376015.669016000, size=7, blksize=131072, blocks=17, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL compat11.stat(0x183956d1b68,0x183956d1af0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937270, mode=0100755, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376019.918885000, mtime=1706376019.918928000, ctime=1706376024.378316000, birthtime=1706376019.918885000, size=16328, blksize=16384, blocks=25, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL __getcwd(0x1bb901421200,0x200) 70907 rustc NAMI "/tmp/mre" 70907 rustc RET __getcwd 0 70907 rustc CALL __getcwd(0x1bb901421200,0x200) 70907 rustc NAMI "/tmp/mre" 70907 rustc RET __getcwd 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1839753d930,0x183956d1ee8) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigaction(SIGPIPE,0x183956d1ef8,0x183956d1f38) 70907 rustc RET sigaction 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x183956d1ee8,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL execve(0x1bb90230e0a0,0x1bb901479400,0x1bb90148a0a0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc NAMI "/libexec/ld-elf.so.1" 70907 rustc RET execve JUSTRETURN 70907 rustc CALL mmap(0,0x21000,0x3,0x1002,0xffffffff,0) 70907 rustc RET mmap 44249521324032/0x283ea5000000 70907 rustc CALL mprotect(0x362c98b14000,0x1000,0x1) 70907 rustc RET mprotect 0 70907 rustc CALL issetugid 70907 rustc RET issetugid 0 70907 rustc CALL sigfastblock(0x1,0x362c98b16ba0) 70907 rustc RET sigfastblock 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d365f0a3400,0x283ea5004008,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __realpathat 0 70907 rustc CALL __sysctl(0x1d365f0a21d8,0x2,0x362c98b164fa,0x1d365f0a21e0,0,0) 70907 rustc SCTL "kern.ostype" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x1d365f0a21d8,0x2,0x362c98b165fa,0x1d365f0a21e0,0,0) 70907 rustc SCTL "kern.hostname" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x1d365f0a21d8,0x2,0x362c98b166fa,0x1d365f0a21e0,0,0) 70907 rustc SCTL "kern.osrelease" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x1d365f0a21d8,0x2,0x362c98b167fa,0x1d365f0a21e0,0,0) 70907 rustc SCTL "kern.version" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x1d365f0a21d8,0x2,0x362c98b168fa,0x1d365f0a21e0,0,0) 70907 rustc SCTL "hw.machine" 70907 rustc RET __sysctl 0 70907 rustc CALL open(0x362c98af9ace,0x100000) 70907 rustc NAMI "/etc/libmap.conf" 70907 rustc RET open 3 70907 rustc CALL fstat(0x3,0x1d365f0a2188) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=1319, mode=0100644, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1701139887, mtime=1699603865, ctime=1701139887.479398000, birthtime=1699603865, size=35, blksize=4096, blocks=1, flags=0x800 } 70907 rustc RET fstat 0 70907 rustc CALL read(0x3,0x283ea5005008,0x23) 70907 rustc GIO fd 3 read 35 bytes "includedir /usr/local/etc/libmap.d " 70907 rustc RET read 35/0x23 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x1d365f0a1d2b,0x120004) 70907 rustc NAMI "/usr/local/etc/libmap.d" 70907 rustc RET open 3 70907 rustc CALL fcntl(0x3,F_ISUNIONSTACK,0x0) 70907 rustc RET fcntl 0 70907 rustc CALL getdirentries(0x3,0x283ea5006008,0x1000,0x283ea50010b0) 70907 rustc RET getdirentries 104/0x68 70907 rustc CALL open(0x1d365f0a1920,0x100000) 70907 rustc NAMI "/usr/local/etc/libmap.d/mesa.conf" 70907 rustc RET open 5 70907 rustc CALL fstat(0x5,0x1d365f0a1408) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=45164, mode=0100644, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=0, mtime=1699822010, ctime=1701140838.613930000, birthtime=1699822010, size=38, blksize=4096, blocks=1, flags=0x800 } 70907 rustc RET fstat 0 70907 rustc CALL read(0x5,0x283ea50050c8,0x26) 70907 rustc GIO fd 5 read 38 bytes "libGLX_indirect.so.0 libGLX_mesa.so.0 " 70907 rustc RET read 38/0x26 70907 rustc CALL close(0x5) 70907 rustc RET close 0 70907 rustc CALL getdirentries(0x3,0x283ea5006008,0x1000,0x283ea50010b0) 70907 rustc RET getdirentries 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x283ea5004808,0x300000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/librustc_driver-57c66039a6288d20.so" 70907 rustc RET open 3 70907 rustc CALL fstat(0x3,0x1d365f0a1840) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937388, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376021.184456000, mtime=1706376023.504929000, ctime=1706376024.378585000, birthtime=1706376021.184456000, size=205206632, blksize=131072, blocks=200601, flags=0x800 } 70907 rustc RET fstat 0 70907 rustc CALL fstatfs(0x3,0x1d365f0a1920) 70907 rustc RET fstatfs 0 70907 rustc CALL mmap(0,0x1000,0x1,0x40002,0x3,0) 70907 rustc RET mmap 32119377891328/0x1d36601c1000 70907 rustc CALL mmap(0,0x9378000,0,0x1002000,0xffffffff,0) 70907 rustc RET mmap 32119399120896/0x1d3661600000 70907 rustc CALL mmap(0x1d3661600000,0x8e87000,0x5,0x60012,0x3,0) 70907 rustc RET mmap 32119399120896/0x1d3661600000 70907 rustc CALL mmap(0x1d366a487000,0x476000,0x3,0x40012,0x3,0x8e86000) 70907 rustc RET mmap 32119548571648/0x1d366a487000 70907 rustc CALL mmap(0x1d366a8fd000,0x7b000,0x3,0x1012,0xffffffff,0) 70907 rustc RET mmap 32119553249280/0x1d366a8fd000 70907 rustc CALL munmap(0x1d36601c1000,0x1000) 70907 rustc RET munmap 0 70907 rustc CALL __realpathat(0xffffff9c,0x283ea5001088,0x283ea5004808,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/librustc_driver-57c66039a6288d20.so" 70907 rustc RET __realpathat 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x283ea5009008,0x300000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/libstd-1f991da3ec2308ac.so" 70907 rustc RET open 3 70907 rustc CALL fstat(0x3,0x1d365f0a1840) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937279, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376024.216433000, mtime=1706376024.218858000, ctime=1706376024.378715000, birthtime=1706376024.216433000, size=11966088, blksize=131072, blocks=11793, flags=0x800 } 70907 rustc RET fstat 0 70907 rustc CALL fstatfs(0x3,0x1d365f0a1920) 70907 rustc RET fstatfs 0 70907 rustc CALL mmap(0,0x1000,0x1,0x40002,0x3,0) 70907 rustc RET mmap 32119583113216/0x1d366c578000 70907 rustc CALL mmap(0,0x11e000,0,0x2000,0xffffffff,0) 70907 rustc RET mmap 32119388835840/0x1d3660c31000 70907 rustc CALL mmap(0x1d3660c31000,0x115000,0x5,0x60012,0x3,0) 70907 rustc RET mmap 32119388835840/0x1d3660c31000 70907 rustc CALL mmap(0x1d3660d46000,0x9000,0x3,0x40012,0x3,0x115000) 70907 rustc RET mmap 32119389970432/0x1d3660d46000 70907 rustc CALL munmap(0x1d366c578000,0x1000) 70907 rustc RET munmap 0 70907 rustc CALL __realpathat(0xffffff9c,0x283ea5001188,0x283ea5009008,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/libstd-1f991da3ec2308ac.so" 70907 rustc RET __realpathat 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/libc.so.7" 70907 rustc RET open -1 errno 2 No such file or directory 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/../lib/libc.so.7" 70907 rustc RET open -1 errno 2 No such file or directory 70907 rustc CALL open(0x362c98af95f1,0x100000) 70907 rustc NAMI "/var/run/ld-elf.so.hints" 70907 rustc RET open 3 70907 rustc CALL read(0x3,0x362c98b16a28,0x80) 70907 rustc GIO fd 3 read 128 bytes 0x0000 4568 6e74 0100 0000 8000 0000 |Ehnt........| 0x000c 7301 0000 0000 0000 7201 0000 |s.......r...| 0x0018 0000 0000 0000 0000 0000 0000 |............| 0x0024 0000 0000 0000 0000 0000 0000 |............| 0x0030 0000 0000 0000 0000 0000 0000 |............| 0x003c 0000 0000 0000 0000 0000 0000 |............| 0x0048 0000 0000 0000 0000 0000 0000 |............| 0x0054 0000 0000 0000 0000 0000 0000 |............| 0x0060 0000 0000 0000 0000 0000 0000 |............| 0x006c 0000 0000 0000 0000 0000 0000 |............| 0x0078 0000 0000 0000 0000 |........| 70907 rustc RET read 128/0x80 70907 rustc CALL fstat(0x3,0x1d365f0a1240) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=262241, mode=0100444, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1706375118.327445000, mtime=1706375118.327492000, ctime=1706375118.327518000, birthtime=1706375118.327445000, size=499, blksize=4096, blocks=9, flags=0x800 } 70907 rustc RET fstat 0 70907 rustc CALL pread(0x3,0x283ea500a008,0x173,0x80) 70907 rustc GIO fd 3 read 371 bytes "/lib:/usr/lib:/usr/lib/compat:/usr/local/lib:/usr/loca\ l/lib/compat/pkg:/usr/local/lib/alsa-lib:/usr/local/li\ b/gcc12:/usr/local/lib/mysql:/usr/local/lib/mysql/plug\ in:/usr/local/lib/perl5/5.34/mach/CORE:/usr/local/lib/\ qt5:/usr/local/lib/samba4:/usr/local/lib/signon:/usr/l\ ocal/lib/signon/extensions:/usr/local/llvm15/lib:/usr/\ local/share/chromium:/usr/local/share/code-oss\0" 70907 rustc RET pread 371/0x173 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/lib/libc.so.7" 70907 rustc RET open 3 70907 rustc CALL fstat(0x3,0x1d365f0a1840) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=392707, mode=0100444, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1703395315.715676000, mtime=1703395315.721643000, ctime=1703395315.836887000, birthtime=1703395315.715676000, size=1946744, blksize=131072, blocks=2345, flags=0x20800 } 70907 rustc RET fstat 0 70907 rustc CALL fstatfs(0x3,0x1d365f0a1920) 70907 rustc RET fstatfs 0 70907 rustc CALL mmap(0,0x1000,0x1,0x40002,0x3,0) 70907 rustc RET mmap 32119560044544/0x1d366af78000 70907 rustc CALL mmap(0,0x400000,0,0x2000,0xffffffff,0) 70907 rustc RET mmap 32119564210176/0x1d366b371000 70907 rustc CALL mmap(0x1d366b371000,0x84000,0x1,0x60012,0x3,0) 70907 rustc RET mmap 32119564210176/0x1d366b371000 70907 rustc CALL mmap(0x1d366b3f5000,0x149000,0x5,0x60012,0x3,0x83000) 70907 rustc RET mmap 32119564750848/0x1d366b3f5000 70907 rustc CALL mmap(0x1d366b53e000,0xa000,0x3,0x40012,0x3,0x1cb000) 70907 rustc RET mmap 32119566098432/0x1d366b53e000 70907 rustc CALL mmap(0x1d366b548000,0x7000,0x3,0x40012,0x3,0x1d4000) 70907 rustc RET mmap 32119566139392/0x1d366b548000 70907 rustc CALL mmap(0x1d366b54f000,0x222000,0x3,0x1012,0xffffffff,0) 70907 rustc RET mmap 32119566168064/0x1d366b54f000 70907 rustc CALL munmap(0x1d366af78000,0x1000) 70907 rustc RET munmap 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/libc++.so.1" 70907 rustc RET open -1 errno 2 No such file or directory 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/../lib/libc++.so.1" 70907 rustc RET open -1 errno 2 No such file or directory 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/lib/libc++.so.1" 70907 rustc RET open 3 70907 rustc CALL fstat(0x3,0x1d365f0a1840) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=17400, mode=0100444, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1701139887, mtime=1699602954, ctime=1701139898.546154000, birthtime=1699602954, size=1055856, blksize=131072, blocks=1017, flags=0x800 } 70907 rustc RET fstat 0 70907 rustc CALL fstatfs(0x3,0x1d365f0a1920) 70907 rustc RET fstatfs 0 70907 rustc CALL mmap(0,0x1000,0x1,0x40002,0x3,0) 70907 rustc RET mmap 32119593570304/0x1d366cf71000 70907 rustc CALL mmap(0,0x10b000,0,0x2000,0xffffffff,0) 70907 rustc RET mmap 32119583887360/0x1d366c635000 70907 rustc CALL mmap(0x1d366c635000,0x85000,0x1,0x60012,0x3,0) 70907 rustc RET mmap 32119583887360/0x1d366c635000 70907 rustc CALL mmap(0x1d366c6ba000,0x77000,0x5,0x60012,0x3,0x84000) 70907 rustc RET mmap 32119584432128/0x1d366c6ba000 70907 rustc CALL mmap(0x1d366c731000,0x7000,0x3,0x40012,0x3,0xfa000) 70907 rustc RET mmap 32119584919552/0x1d366c731000 70907 rustc CALL mmap(0x1d366c738000,0x2000,0x3,0x40012,0x3,0x100000) 70907 rustc RET mmap 32119584948224/0x1d366c738000 70907 rustc CALL mmap(0x1d366c73a000,0x6000,0x3,0x1012,0xffffffff,0) 70907 rustc RET mmap 32119584956416/0x1d366c73a000 70907 rustc CALL munmap(0x1d366cf71000,0x1000) 70907 rustc RET munmap 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/libcxxrt.so.1" 70907 rustc RET open -1 errno 2 No such file or directory 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/../lib/libcxxrt.so.1" 70907 rustc RET open -1 errno 2 No such file or directory 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/lib/libcxxrt.so.1" 70907 rustc RET open 3 70907 rustc CALL fstat(0x3,0x1d365f0a1840) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=17409, mode=0100444, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1701139887, mtime=1699602949, ctime=1701139898.552678000, birthtime=1699602949, size=107184, blksize=107520, blocks=121, flags=0x800 } 70907 rustc RET fstat 0 70907 rustc CALL fstatfs(0x3,0x1d365f0a1920) 70907 rustc RET fstatfs 0 70907 rustc CALL mmap(0,0x1000,0x1,0x40002,0x3,0) 70907 rustc RET mmap 32119593369600/0x1d366cf40000 70907 rustc CALL mmap(0,0x21000,0,0x2000,0xffffffff,0) 70907 rustc RET mmap 32119597932544/0x1d366d39a000 70907 rustc CALL mmap(0x1d366d39a000,0xd000,0x1,0x60012,0x3,0) 70907 rustc RET mmap 32119597932544/0x1d366d39a000 70907 rustc CALL mmap(0x1d366d3a7000,0xd000,0x5,0x60012,0x3,0xc000) 70907 rustc RET mmap 32119597985792/0x1d366d3a7000 70907 rustc CALL mmap(0x1d366d3b4000,0x2000,0x3,0x40012,0x3,0x18000) 70907 rustc RET mmap 32119598039040/0x1d366d3b4000 70907 rustc CALL mmap(0x1d366d3b6000,0x1000,0x3,0x40012,0x3,0x19000) 70907 rustc RET mmap 32119598047232/0x1d366d3b6000 70907 rustc CALL mmap(0x1d366d3b7000,0x4000,0x3,0x1012,0xffffffff,0) 70907 rustc RET mmap 32119598051328/0x1d366d3b7000 70907 rustc CALL munmap(0x1d366cf40000,0x1000) 70907 rustc RET munmap 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/libthr.so.3" 70907 rustc RET open -1 errno 2 No such file or directory 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/../lib/libthr.so.3" 70907 rustc RET open -1 errno 2 No such file or directory 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/lib/libthr.so.3" 70907 rustc RET open 3 70907 rustc CALL fstat(0x3,0x1d365f0a1840) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=17443, mode=0100444, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1701139887, mtime=1699603082.618644000, ctime=1701139898.878022000, birthtime=1699603082.618644000, size=127864, blksize=128000, blocks=145, flags=0x20800 } 70907 rustc RET fstat 0 70907 rustc CALL fstatfs(0x3,0x1d365f0a1920) 70907 rustc RET fstatfs 0 70907 rustc CALL mmap(0,0x1000,0x1,0x40002,0x3,0) 70907 rustc RET mmap 32119610650624/0x1d366dfbb000 70907 rustc CALL mmap(0,0x2e000,0,0x2000,0xffffffff,0) 70907 rustc RET mmap 32119617560576/0x1d366e652000 70907 rustc CALL mmap(0x1d366e652000,0xd000,0x1,0x60012,0x3,0) 70907 rustc RET mmap 32119617560576/0x1d366e652000 70907 rustc CALL mmap(0x1d366e65f000,0x12000,0x5,0x60012,0x3,0xc000) 70907 rustc RET mmap 32119617613824/0x1d366e65f000 70907 rustc CALL mmap(0x1d366e671000,0x2000,0x3,0x40012,0x3,0x1d000) 70907 rustc RET mmap 32119617687552/0x1d366e671000 70907 rustc CALL mmap(0x1d366e673000,0x1000,0x3,0x40012,0x3,0x1e000) 70907 rustc RET mmap 32119617695744/0x1d366e673000 70907 rustc CALL mmap(0x1d366e674000,0xc000,0x3,0x1012,0xffffffff,0) 70907 rustc RET mmap 32119617699840/0x1d366e674000 70907 rustc CALL munmap(0x1d366dfbb000,0x1000) 70907 rustc RET munmap 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/libgcc_s.so.1" 70907 rustc RET open -1 errno 2 No such file or directory 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/../lib/libgcc_s.so.1" 70907 rustc RET open -1 errno 2 No such file or directory 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/lib/libgcc_s.so.1" 70907 rustc RET open 3 70907 rustc CALL fstat(0x3,0x1d365f0a1840) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=17451, mode=0100444, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1701139887, mtime=1699603426, ctime=1701139898.772018000, birthtime=1699603426, size=91688, blksize=92160, blocks=121, flags=0x800 } 70907 rustc RET fstat 0 70907 rustc CALL fstatfs(0x3,0x1d365f0a1920) 70907 rustc RET fstatfs 0 70907 rustc CALL mmap(0,0x1000,0x1,0x40002,0x3,0) 70907 rustc RET mmap 32119640817664/0x1d366fc80000 70907 rustc CALL mmap(0,0x1a000,0,0x2000,0xffffffff,0) 70907 rustc RET mmap 32119604994048/0x1d366da56000 70907 rustc CALL mmap(0x1d366da56000,0x9000,0x1,0x60012,0x3,0) 70907 rustc RET mmap 32119604994048/0x1d366da56000 70907 rustc CALL mmap(0x1d366da5f000,0xe000,0x5,0x60012,0x3,0x8000) 70907 rustc RET mmap 32119605030912/0x1d366da5f000 70907 rustc CALL mmap(0x1d366da6d000,0x1000,0x3,0x40012,0x3,0x15000) 70907 rustc RET mmap 32119605088256/0x1d366da6d000 70907 rustc CALL mmap(0x1d366da6e000,0x1000,0x3,0x40012,0x3,0x15000) 70907 rustc RET mmap 32119605092352/0x1d366da6e000 70907 rustc CALL mmap(0x1d366da6f000,0x1000,0x3,0x1012,0xffffffff,0) 70907 rustc RET mmap 32119605096448/0x1d366da6f000 70907 rustc CALL munmap(0x1d366fc80000,0x1000) 70907 rustc RET munmap 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/libm.so.5" 70907 rustc RET open -1 errno 2 No such file or directory 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/../lib/libm.so.5" 70907 rustc RET open -1 errno 2 No such file or directory 70907 rustc CALL open(0x283ea5009808,0x300000) 70907 rustc NAMI "/lib/libm.so.5" 70907 rustc RET open 3 70907 rustc CALL fstat(0x3,0x1d365f0a1840) 70907 rustc STRU struct stat {dev=17900027164756631768, ino=17412, mode=0100444, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1701139887, mtime=1699603002, ctime=1701139898.558261000, birthtime=1699603002, size=236928, blksize=131072, blocks=329, flags=0x800 } 70907 rustc RET fstat 0 70907 rustc CALL fstatfs(0x3,0x1d365f0a1920) 70907 rustc RET fstatfs 0 70907 rustc CALL mmap(0,0x1000,0x1,0x40002,0x3,0) 70907 rustc RET mmap 32119626137600/0x1d366ee80000 70907 rustc CALL mmap(0,0x3d000,0,0x2000,0xffffffff,0) 70907 rustc RET mmap 32119638228992/0x1d366fa08000 70907 rustc CALL mmap(0x1d366fa08000,0x13000,0x1,0x60012,0x3,0) 70907 rustc RET mmap 32119638228992/0x1d366fa08000 70907 rustc CALL mmap(0x1d366fa1b000,0x27000,0x5,0x60012,0x3,0x12000) 70907 rustc RET mmap 32119638306816/0x1d366fa1b000 70907 rustc CALL mmap(0x1d366fa42000,0x1000,0x3,0x40012,0x3,0x38000) 70907 rustc RET mmap 32119638466560/0x1d366fa42000 70907 rustc CALL mmap(0x1d366fa43000,0x2000,0x3,0x40012,0x3,0x38000) 70907 rustc RET mmap 32119638470656/0x1d366fa43000 70907 rustc CALL munmap(0x1d366ee80000,0x1000) 70907 rustc RET munmap 0 70907 rustc CALL close(0x3) 70907 rustc RET close 0 70907 rustc CALL munmap(0x283ea500e000,0x13000) 70907 rustc RET munmap 0 70907 rustc CALL mmap(0,0x60000,0x3,0x1002,0xffffffff,0) 70907 rustc RET mmap 44249521381376/0x283ea500e000 70907 rustc CALL mprotect(0x1d366a487000,0x466000,0x1) 70907 rustc RET mprotect 0 70907 rustc CALL mprotect(0x1d3660d46000,0x8000,0x1) 70907 rustc RET mprotect 0 70907 rustc CALL mprotect(0x1d366b53e000,0x9000,0x1) 70907 rustc RET mprotect 0 70907 rustc CALL mprotect(0x1d366c731000,0x6000,0x1) 70907 rustc RET mprotect 0 70907 rustc CALL mprotect(0x1d366d3b4000,0x1000,0x1) 70907 rustc RET mprotect 0 70907 rustc CALL mprotect(0x1d366e671000,0x1000,0x1) 70907 rustc RET mprotect 0 70907 rustc CALL mprotect(0x1d366b53e000,0x9000,0x3) 70907 rustc RET mprotect 0 70907 rustc CALL mprotect(0x1d366b53e000,0x9000,0x1) 70907 rustc RET mprotect 0 70907 rustc CALL readlink(0x1d366b3b9849,0x1d365f0a1990,0x400) 70907 rustc NAMI "/etc/malloc.conf" 70907 rustc RET readlink -1 errno 2 No such file or directory 70907 rustc CALL issetugid 70907 rustc RET issetugid 0 70907 rustc CALL mmap(0,0x200000,0x3,0x15001002,0xffffffff,0) 70907 rustc RET mmap 44249523421184/0x283ea5200000 70907 rustc CALL mmap(0,0x200000,0x3,0xc001002,0xffffffff,0) 70907 rustc RET mmap 44249525518336/0x283ea5400000 70907 rustc CALL mmap(0,0x400000,0x3,0x15001002,0xffffffff,0) 70907 rustc RET mmap 44249527615488/0x283ea5600000 70907 rustc CALL thr_self(0x283ea5412000) 70907 rustc RET thr_self 0 70907 rustc CALL mmap(0x1d363f0a3000,0x1000,0,0x1000,0xffffffff,0) 70907 rustc RET mmap 32119633080320/0x1d366f51f000 70907 rustc CALL rtprio_thread(RTP_LOOKUP,0x1907a,0x1d365f0a1dd8) 70907 rustc RET rtprio_thread 0 70907 rustc CALL sigaction(SIGTHR,0x1d365f0a1d88,0) 70907 rustc RET sigaction 0 70907 rustc CALL sigprocmask(SIG_UNBLOCK,0x1d365f0a1d94,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL _umtx_op(0x1d365f0a1dd0,0x3,0x1,0,0) 70907 rustc RET _umtx_op 0 70907 rustc CALL mprotect(0,0,0) 70907 rustc RET mprotect 0 70907 rustc CALL getpid 70907 rustc RET getpid 70907/0x114fb 70907 rustc CALL getpid 70907 rustc RET getpid 70907/0x114fb 70907 rustc CALL sigprocmask(SIG_BLOCK,0x1d366e65a930,0x283ea54120f0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigfastblock(0x3,0) 70907 rustc RET sigfastblock 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x283ea54120f0,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigfastblock(0x1,0x283ea5412038) 70907 rustc RET sigfastblock 0 70907 rustc CALL getcontext(0x1d365f0a17c0) 70907 rustc RET getcontext 0 70907 rustc CALL sysarch(AMD64_GET_XFPUSTATE,0x1d365f0a1788) 70907 rustc RET sysarch 0 70907 rustc CALL mmap(0,0x21000,0x3,0x1002,0xffffffff,0) 70907 rustc RET mmap 44249531809792/0x283ea5a00000 70907 rustc CALL lseek(0x2,0,SEEK_CUR) 70907 rustc RET lseek 0 70907 rustc CALL fstat(0x2,0x1d365f0a1bd0) 70907 rustc STRU struct stat {dev=1895890688, ino=410, mode=020620, nlink=1, uid=1002, gid=4, rdev=410, atime=1706376717.971430000, mtime=1706376717.971430000, ctime=1706376717.971430000, birthtime=-1, size=0, blksize=4096, blocks=0, flags=0x0 } 70907 rustc RET fstat 0 70907 rustc CALL mprotect(0x1d2e3e942000,0x1000,0x1) 70907 rustc RET mprotect 0 70907 rustc CALL poll(0x1d365f0a2d40,0x3,0) 70907 rustc RET poll 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1d366e65a930,0x1d365f0a2be8) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigaction(SIGPIPE,0x1d365f0a2bf8,0x1d365f0a2c38) 70907 rustc RET sigaction 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1d365f0a2be8,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1d366e65a930,0x1d365f0a2c58) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigaction(SIGSEGV,0,0x1d365f0a2ca8) 70907 rustc RET sigaction 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1d365f0a2c58,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1d366e65a930,0x1d365f0a2c58) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigaction(SIGSEGV,0x1d365f0a2c68,0x1d365f0a2ca8) 70907 rustc RET sigaction 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1d365f0a2c58,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1d366e65a930,0x1d365f0a2c58) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigaction(SIGBUS,0,0x1d365f0a2ca8) 70907 rustc RET sigaction 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1d365f0a2c58,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1d366e65a930,0x1d365f0a2c58) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigaction(SIGBUS,0x1d365f0a2c68,0x1d365f0a2ca8) 70907 rustc RET sigaction 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1d365f0a2c58,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigaltstack(0,0x1d365f0a2ca0) 70907 rustc RET sigaltstack 0 70907 rustc CALL mmap(0,0x9800,0x3,0x1002,0xffffffff,0) 70907 rustc RET mmap 44249531944960/0x283ea5a21000 70907 rustc CALL mprotect(0x283ea5a21000,0x1000,0) 70907 rustc RET mprotect 0 70907 rustc CALL sigaltstack(0x1d365f0a2ca0,0) 70907 rustc RET sigaltstack 0 70907 rustc CALL __sysctlbyname(0x1d366e65a282,0x18,0x1d366e673a00,0x1d365f0a2ca8,0,0) 70907 rustc SCTL "kern.sched.cpusetsizemin" 70907 rustc RET __sysctlbyname 0 70907 rustc CALL cpuset_getaffinity(0x3,0x1,0x1907a,0x1,0x283ea5408050) 70907 rustc STRU cpuset_t [ 0, 1, 2, 3, 4, 5, 6, 7 ] 70907 rustc RET cpuset_getaffinity 0 70907 rustc CALL openat(AT_FDCWD,0x1d365f0a28b0,0x100000) 70907 rustc NAMI "/proc/self/statm" 70907 rustc RET openat -1 errno 2 No such file or directory 70907 rustc CALL ioctl(0x2,TIOCGETA,0x1d365f0a2690) 70907 rustc RET ioctl 0 70907 rustc CALL getrandom(0x1d365f09e910,0x10,0) 70907 rustc RET getrandom 16/0x10 70907 rustc CALL ioctl(0x2,TIOCGETA,0x1d365f0a0290) 70907 rustc RET ioctl 0 70907 rustc CALL ioctl(0x2,TIOCGETA,0x1d365f0a0270) 70907 rustc RET ioctl 0 70907 rustc CALL ioctl(0x2,TIOCGETA,0x1d365f0a0580) 70907 rustc RET ioctl 0 70907 rustc CALL ioctl(0x2,TIOCGETA,0x1d365f09f720) 70907 rustc RET ioctl 0 70907 rustc CALL readlink(0x1d365f09f6c0,0x283ea5453300,0x100) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET readlink -1 errno 22 Invalid argument 70907 rustc CALL __realpathat(0xffffff9c,0x1d365f09f6b8,0x283ea54c1400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/librustc_driver-57c66039a6288d20.so" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.lstat(0x1d365f09f810,0x1d365f09f780) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/src/rust" 70907 rustc RET compat11.lstat -1 errno 2 No such file or directory 70907 rustc CALL compat11.stat(0x1d365f09f770,0x1d365f09f6e0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/src/rust/library/std/src/lib.rs" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __getcwd(0x283ea5515000,0x200) 70907 rustc NAMI "/tmp/mre" 70907 rustc RET __getcwd 0 70907 rustc CALL __getcwd(0x283ea5515000,0x200) 70907 rustc NAMI "/tmp/mre" 70907 rustc RET __getcwd 0 70907 rustc CALL getpid 70907 rustc RET getpid 70907/0x114fb 70907 rustc CALL ioctl(0x2,TIOCGETA,0x1d365f09f9d0) 70907 rustc RET ioctl 0 70907 rustc CALL pipe2(0x1d365f09f8e0,0) 70907 rustc RET pipe2 0 70907 rustc CALL fcntl(0x3,F_GETFD) 70907 rustc RET fcntl 0 70907 rustc CALL fcntl(0x3,F_SETFD,FD_CLOEXEC) 70907 rustc RET fcntl 0 70907 rustc CALL fcntl(0x5,F_GETFD) 70907 rustc RET fcntl 0 70907 rustc CALL fcntl(0x5,F_SETFD,FD_CLOEXEC) 70907 rustc RET fcntl 0 70907 rustc CALL fcntl(0x5,F_SETFL,0x4) 70907 rustc RET fcntl 0 70907 rustc CALL write(0x5,0x1d36697ebb9f,0x20) 70907 rustc GIO fd 5 wrote 32 bytes "||||||||||||||||||||||||||||||||" 70907 rustc RET write 32/0x20 70907 rustc CALL fcntl(0x5,F_SETFL,0) 70907 rustc RET fcntl 0 70907 rustc CALL read(0x3,0x1d365f09f94f,0x1) 70907 rustc GIO fd 3 read 1 byte "|" 70907 rustc RET read 1 70907 rustc CALL mmap(0,0x1000,0x3,0x1002,0xffffffff,0) 70907 rustc RET mmap 44249531985920/0x283ea5a2b000 70907 rustc CALL munmap(0x283ea506b000,0x3000) 70907 rustc RET munmap 0 70907 rustc CALL mmap(0,0x24000,0x3,0x1002,0xffffffff,0) 70907 rustc RET mmap 44249531990016/0x283ea5a2c000 70907 rustc CALL mmap(0x1d363e8a2000,0x801000,0x3,0x400,0xffffffff,0) 70907 rustc RET mmap 32119645896704/0x1d3670158000 70907 rustc CALL mprotect(0x1d3670158000,0x1000,0) 70907 rustc RET mprotect 0 70907 rustc CALL thr_new(0x1d365f099290,0x68) 70907 rustc RET thr_new 0 70907 rustc CALL _umtx_op(0x283ea5412700,0x2,0x19654,0,0) 70907 rustc RET thr_new 0 70907 rustc CALL sigfastblock(0x1,0x283ea5412738) 70907 rustc RET sigfastblock 0 70907 rustc CALL sigaltstack(0,0x1d3670958f20) 70907 rustc RET sigaltstack 0 70907 rustc CALL mmap(0,0x9800,0x3,0x1002,0xffffffff,0) 70907 rustc RET mmap 44249532137472/0x283ea5a50000 70907 rustc CALL mprotect(0x283ea5a50000,0x1000,0) 70907 rustc RET mprotect 0 70907 rustc CALL sigaltstack(0x1d3670958f20,0) 70907 rustc RET sigaltstack 0 70907 rustc CALL mmap(0,0x200000,0x3,0x15001002,0xffffffff,0) 70907 rustc RET mmap 44249533906944/0x283ea5c00000 70907 rustc CALL mmap(0,0x200000,0x3,0xc001002,0xffffffff,0) 70907 rustc RET mmap 44249536004096/0x283ea5e00000 70907 rustc CALL thr_set_name(0x19654,0x283ea5408198) 70907 rustc RET thr_set_name 0 70907 rustc CALL cpuset_getaffinity(0x3,0x1,0x19654,0x1,0x283ea5e00008) 70907 rustc STRU cpuset_t [ 0, 1, 2, 3, 4, 5, 6, 7 ] 70907 rustc RET cpuset_getaffinity 0 70907 rustc CALL ioctl(0x2,TIOCGETA,0x1d367094fb90) 70907 rustc RET ioctl 0 70907 rustc CALL readlink(0x1d367094fbc0,0x283ea5e31000,0x100) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET readlink -1 errno 22 Invalid argument 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094fbb8,0x283ea5e32000,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/librustc_driver-57c66039a6288d20.so" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094fd08,0x283ea5e32000,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/librustc_driver-57c66039a6288d20.so" 70907 rustc RET __realpathat 0 70907 rustc CALL readlink(0x1d367094be90,0x283ea5e31000,0x100) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET readlink -1 errno 22 Invalid argument 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094be88,0x283ea5e32400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/librustc_driver-57c66039a6288d20.so" 70907 rustc RET __realpathat 0 70907 rustc CALL ioctl(0x2,TIOCGETA,0x1d367094c020) 70907 rustc RET ioctl 0 70907 rustc CALL compat11.stat(0x1d367094be80,0x1d367094bdf0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL open(0x1d367094bf90,0x120004) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET open 6 70907 rustc CALL fcntl(0x6,F_ISUNIONSTACK,0x0) 70907 rustc RET fcntl 0 70907 rustc CALL getdirentries(0x6,0x283ea5e37000,0x1000,0x283ea5e2e028) 70907 rustc RET getdirentries 1992/0x7c8 70907 rustc CALL getdirentries(0x6,0x283ea5e37000,0x1000,0x283ea5e2e028) 70907 rustc RET getdirentries 0 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __sysctl(0x1d367094fb10,0x4,0,0x1d367094fb08,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x1d367094fb10,0x4,0x283ea5eab000,0x1d367094fb08,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x1d367094fb10,0x4,0,0x1d367094fb08,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x1d367094fb10,0x4,0x283ea5eab050,0x1d367094fb08,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __sysctl 0 70907 rustc CALL ioctl(0x2,TIOCGETA,0x1d367094ca10) 70907 rustc RET ioctl 0 70907 rustc CALL openat(AT_FDCWD,0x1d367093c9e0,0x100000) 70907 rustc NAMI "src/main.rs" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d367093c9e0) 70907 rustc STRU struct stat {dev=15021012045860407878, ino=923, mode=0100777, nlink=1, uid=1001, gid=0, rdev=18446744073709551615, atime=1706374006.530446000, mtime=1706374020.875510000, ctime=1706375619.487449000, birthtime=1706374006.530446000, size=13, blksize=4096, blocks=1, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL read(0x6,0x283ea5e1d3f0,0xd) 70907 rustc GIO fd 6 read 13 bytes "fn main() {} " 70907 rustc RET read 13/0xd 70907 rustc CALL read(0x6,0x1d367093c8c0,0x20) 70907 rustc GIO fd 6 read 0 bytes "" 70907 rustc RET read 0 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL ioctl(0x1,TIOCGETA,0x1d367093c990) 70907 rustc RET ioctl 0 70907 rustc CALL cpuset_getaffinity(0x3,0x1,0x19654,0x1,0x283ea5e00030) 70907 rustc STRU cpuset_t [ 0, 1, 2, 3, 4, 5, 6, 7 ] 70907 rustc RET cpuset_getaffinity 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670936278,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libstd-1f991da3ec2308ac.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670936278,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libstd_detect-d7e515999fb6212b.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670936278,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libstd-1f991da3ec2308ac.so" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670935c50,0x1d3670935bc0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libstd_detect-d7e515999fb6212b.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937586, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.298576000, mtime=1706376018.298638000, ctime=1706376019.664743000, birthtime=1706376018.298576000, size=420632, blksize=131072, blocks=425, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670935b68,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libstd_detect-d7e515999fb6212b.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670935ba0) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937586, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.298576000, mtime=1706376018.298638000, ctime=1706376019.664743000, birthtime=1706376018.298576000, size=420632, blksize=131072, blocks=425, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x66b18,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119662678016/0x1d3671159000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL munmap(0x1d3671159000,0x66b18) 70907 rustc RET munmap 0 70907 rustc CALL compat11.stat(0x1d3670935c50,0x1d3670935bc0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libstd-1f991da3ec2308ac.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937152, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.419234000, mtime=1706376018.648259000, ctime=1706376019.664715000, birthtime=1706376018.419234000, size=17122226, blksize=131072, blocks=16001, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670935b68,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libstd-1f991da3ec2308ac.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670935ba0) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937152, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.419234000, mtime=1706376018.648259000, ctime=1706376019.664715000, birthtime=1706376018.419234000, size=17122226, blksize=131072, blocks=16001, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x10543b2,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119684333568/0x1d3672600000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL compat11.stat(0x1d3670935c50,0x1d3670935bc0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libstd-1f991da3ec2308ac.so" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937714, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376019.549652000, mtime=1706376019.551600000, ctime=1706376019.664729000, birthtime=1706376019.549652000, size=11966088, blksize=131072, blocks=11793, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670935b68,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libstd-1f991da3ec2308ac.so" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670935ba0) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937714, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376019.549652000, mtime=1706376019.551600000, ctime=1706376019.664729000, birthtime=1706376019.549652000, size=11966088, blksize=131072, blocks=11793, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0xb69688,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119711596544/0x1d3674000000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL munmap(0x1d3672600000,0x10543b2) 70907 rustc RET munmap 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670933c48,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libcore-9a779804fa01482f.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670933620,0x1d3670933590) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libcore-9a779804fa01482f.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937712, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.677868000, mtime=1706376019.272566000, ctime=1706376019.664427000, birthtime=1706376018.677868000, size=47747690, blksize=131072, blocks=45001, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670933538,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libcore-9a779804fa01482f.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670933570) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937712, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.677868000, mtime=1706376019.272566000, ctime=1706376019.664427000, birthtime=1706376018.677868000, size=47747690, blksize=131072, blocks=45001, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x2d8926a,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119749345280/0x1d3676400000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670933c48,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libcompiler_builtins-64032a0b63e2fd47.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670933620,0x1d3670933590) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libcompiler_builtins-64032a0b63e2fd47.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937261, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.196247000, mtime=1706376018.196796000, ctime=1706376019.664412000, birthtime=1706376018.196247000, size=2750874, blksize=131072, blocks=2249, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670933538,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libcompiler_builtins-64032a0b63e2fd47.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670933570) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937261, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.196247000, mtime=1706376018.196796000, ctime=1706376019.664412000, birthtime=1706376018.196247000, size=2750874, blksize=131072, blocks=2249, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x29f99a,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119657070592/0x1d3670c00000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670931618,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/librustc_std_workspace_core-c1610bec50c3e446.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670930ff0,0x1d3670930f60) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/librustc_std_workspace_core-c1610bec50c3e446.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=936912, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.171536000, mtime=1706376018.171572000, ctime=1706376019.664685000, birthtime=1706376018.171536000, size=8570, blksize=8704, blocks=17, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670930f08,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/librustc_std_workspace_core-c1610bec50c3e446.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670930f40) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=936912, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.171536000, mtime=1706376018.171572000, ctime=1706376019.664685000, birthtime=1706376018.171536000, size=8570, blksize=8704, blocks=17, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x217a,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119659823104/0x1d3670ea0000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670933c48,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/liballoc-d2f6475e24ff1374.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670933620,0x1d3670933590) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/liballoc-d2f6475e24ff1374.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937150, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.137505000, mtime=1706376018.138313000, ctime=1706376019.664380000, birthtime=1706376018.137505000, size=6227362, blksize=131072, blocks=6625, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670933538,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/liballoc-d2f6475e24ff1374.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670933570) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937150, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.137505000, mtime=1706376018.138313000, ctime=1706376019.664380000, birthtime=1706376018.137505000, size=6227362, blksize=131072, blocks=6625, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x5f05a2,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119665459200/0x1d3671400000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670933c48,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/liblibc-4119dcca19aefc05.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670933620,0x1d3670933590) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/liblibc-4119dcca19aefc05.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937710, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.171358000, mtime=1706376018.171910000, ctime=1706376019.664486000, birthtime=1706376018.171358000, size=2266938, blksize=131072, blocks=2185, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670933538,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/liblibc-4119dcca19aefc05.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670933570) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937710, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.171358000, mtime=1706376018.171910000, ctime=1706376019.664486000, birthtime=1706376018.171358000, size=2266938, blksize=131072, blocks=2185, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x22973a,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119701110784/0x1d3673600000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670933c48,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libunwind-14ae6412884f9184.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670933620,0x1d3670933590) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libunwind-14ae6412884f9184.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=936911, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.138290000, mtime=1706376018.138337000, ctime=1706376019.664801000, birthtime=1706376018.138290000, size=37630, blksize=37888, blocks=49, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670933538,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libunwind-14ae6412884f9184.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670933570) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=936911, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.138290000, mtime=1706376018.138337000, ctime=1706376019.664801000, birthtime=1706376018.138290000, size=37630, blksize=37888, blocks=49, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x92fe,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119815970816/0x1d367a38a000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670931618,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libcfg_if-5aaf0c6b85575f81.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670930ff0,0x1d3670930f60) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libcfg_if-5aaf0c6b85575f81.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937732, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376017.936411000, mtime=1706376017.936451000, ctime=1706376019.664396000, birthtime=1706376017.936411000, size=9558, blksize=9728, blocks=17, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670930f08,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libcfg_if-5aaf0c6b85575f81.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670930f40) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937732, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376017.936411000, mtime=1706376017.936451000, ctime=1706376019.664396000, birthtime=1706376017.936411000, size=9558, blksize=9728, blocks=17, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x2556,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119836983296/0x1d367b794000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670933c48,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libminiz_oxide-bd369fd8119b875d.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670933620,0x1d3670933590) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libminiz_oxide-bd369fd8119b875d.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937588, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.668563000, mtime=1706376018.668626000, ctime=1706376019.664512000, birthtime=1706376018.668563000, size=301646, blksize=131072, blocks=361, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670933538,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libminiz_oxide-bd369fd8119b875d.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670933570) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937588, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.668563000, mtime=1706376018.668626000, ctime=1706376019.664512000, birthtime=1706376018.668563000, size=301646, blksize=131072, blocks=361, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x49a4e,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119843287040/0x1d367bd97000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670931618,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libadler-5d571a593c525812.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670930ff0,0x1d3670930f60) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libadler-5d571a593c525812.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937259, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376017.937552000, mtime=1706376017.937590000, ctime=1706376019.664365000, birthtime=1706376017.937552000, size=31956, blksize=32256, blocks=49, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670930f08,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libadler-5d571a593c525812.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670930f40) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937259, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376017.937552000, mtime=1706376017.937590000, ctime=1706376019.664365000, birthtime=1706376017.937552000, size=31956, blksize=32256, blocks=49, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x7cd4,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119868755968/0x1d367d5e1000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670933c48,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libhashbrown-eeaa2d2340d2c8cb.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670933620,0x1d3670933590) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libhashbrown-eeaa2d2340d2c8cb.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937711, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.329094000, mtime=1706376018.329289000, ctime=1706376019.664472000, birthtime=1706376018.329094000, size=1523874, blksize=131072, blocks=1689, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670933538,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libhashbrown-eeaa2d2340d2c8cb.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670933570) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937711, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.329094000, mtime=1706376018.329289000, ctime=1706376019.664472000, birthtime=1706376018.329094000, size=1523874, blksize=131072, blocks=1689, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x1740a2,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119872983040/0x1d367d9e9000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670931618,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/librustc_std_workspace_alloc-15126b5f78b3b2e8.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670930ff0,0x1d3670930f60) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/librustc_std_workspace_alloc-15126b5f78b3b2e8.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937734, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.213685000, mtime=1706376018.213737000, ctime=1706376019.664669000, birthtime=1706376018.213685000, size=6036, blksize=6144, blocks=9, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670930f08,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/librustc_std_workspace_alloc-15126b5f78b3b2e8.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670930f40) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937734, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.213685000, mtime=1706376018.213737000, ctime=1706376019.664669000, birthtime=1706376018.213685000, size=6036, blksize=6144, blocks=9, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x1794,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119901773824/0x1d367f55e000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670933c48,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libstd_detect-d7e515999fb6212b.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670933620,0x1d3670933590) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libstd_detect-d7e515999fb6212b.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937586, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.298576000, mtime=1706376018.298638000, ctime=1706376019.664743000, birthtime=1706376018.298576000, size=420632, blksize=131072, blocks=425, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670933538,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libstd_detect-d7e515999fb6212b.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670933570) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937586, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.298576000, mtime=1706376018.298638000, ctime=1706376019.664743000, birthtime=1706376018.298576000, size=420632, blksize=131072, blocks=425, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x66b18,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119912267776/0x1d367ff60000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670933c48,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/librustc_demangle-d2d578faa3729e0b.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670933620,0x1d3670933590) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/librustc_demangle-d2d578faa3729e0b.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=936913, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.294547000, mtime=1706376018.294646000, ctime=1706376019.664638000, birthtime=1706376018.294547000, size=782032, blksize=131072, blocks=777, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670933538,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/librustc_demangle-d2d578faa3729e0b.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670933570) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=936913, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.294547000, mtime=1706376018.294646000, ctime=1706376019.664638000, birthtime=1706376018.294547000, size=782032, blksize=131072, blocks=777, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0xbeed0,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119939952640/0x1d36819c7000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670933c48,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libaddr2line-5d63c56285a2aa7d.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670933620,0x1d3670933590) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libaddr2line-5d63c56285a2aa7d.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=936916, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.677652000, mtime=1706376018.677725000, ctime=1706376019.664329000, birthtime=1706376018.677652000, size=428092, blksize=131072, blocks=577, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670933538,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libaddr2line-5d63c56285a2aa7d.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670933570) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=936916, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.677652000, mtime=1706376018.677725000, ctime=1706376019.664329000, birthtime=1706376018.677652000, size=428092, blksize=131072, blocks=577, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x6883c,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119944929280/0x1d3681e86000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670931618,0x283ea5e32800,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libgimli-50580a0d8eceda8c.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670930ff0,0x1d3670930f60) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libgimli-50580a0d8eceda8c.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937587, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.419186000, mtime=1706376018.420147000, ctime=1706376019.664458000, birthtime=1706376018.419186000, size=5592804, blksize=131072, blocks=5929, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670930f08,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libgimli-50580a0d8eceda8c.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670930f40) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937587, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.419186000, mtime=1706376018.420147000, ctime=1706376019.664458000, birthtime=1706376018.419186000, size=5592804, blksize=131072, blocks=5929, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x5556e4,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119952769024/0x1d3682600000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670933c48,0x283ea5e32c00,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libobject-4fdc0b9a6453c79f.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670933620,0x1d3670933590) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libobject-4fdc0b9a6453c79f.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937264, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376019.388030000, mtime=1706376019.389097000, ctime=1706376019.664527000, birthtime=1706376019.388030000, size=7869502, blksize=131072, blocks=7817, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670933538,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libobject-4fdc0b9a6453c79f.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670933570) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937264, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376019.388030000, mtime=1706376019.389097000, ctime=1706376019.664527000, birthtime=1706376019.388030000, size=7869502, blksize=131072, blocks=7817, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x78143e,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119971643392/0x1d3683800000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670931618,0x283ea5e32c00,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libmemchr-800d1b0a0e121657.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670930ff0,0x1d3670930f60) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libmemchr-800d1b0a0e121657.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937585, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.213626000, mtime=1706376018.213871000, ctime=1706376019.664499000, birthtime=1706376018.213626000, size=1088336, blksize=131072, blocks=1121, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670930f08,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libmemchr-800d1b0a0e121657.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670930f40) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937585, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.213626000, mtime=1706376018.213871000, ctime=1706376019.664499000, birthtime=1706376018.213626000, size=1088336, blksize=131072, blocks=1121, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x109b50,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119987904512/0x1d3684782000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d3670933c48,0x283ea5e32c00,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libpanic_unwind-a9b6baa6900fae13.rlib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d3670933620,0x1d3670933590) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libpanic_unwind-a9b6baa6900fae13.rlib" 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937733, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.035576000, mtime=1706376018.035623000, ctime=1706376019.664554000, birthtime=1706376018.035576000, size=37974, blksize=38400, blocks=49, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL openat(AT_FDCWD,0x1d3670933538,0x100000) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib/libpanic_unwind-a9b6baa6900fae13.rlib" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d3670933570) 70907 rustc STRU struct stat {dev=6384647274878561492, ino=937733, mode=0100644, nlink=1, uid=1002, gid=1002, rdev=18446744073709551615, atime=1706376018.035576000, mtime=1706376018.035623000, ctime=1706376019.664554000, birthtime=1706376018.035576000, size=37974, blksize=38400, blocks=49, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL mmap(0,0x9456,0x1,0x1,0x6,0) 70907 rustc RET mmap 32119988994048/0x1d368488c000 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367093cba8,0x283ea5e33000,0x400,0) 70907 rustc NAMI "src/main.rs" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367093cba8,0x283ea5e33000,0x400,0) 70907 rustc NAMI "main" 70907 rustc RET __realpathat -1 errno 2 No such file or directory 70907 rustc CALL __getcwd(0x283ea5e33000,0x400) 70907 rustc NAMI "/tmp/mre" 70907 rustc RET __getcwd 0 70907 rustc CALL fstatat(AT_FDCWD,0x283ea5e33000,0x1d367093ca40,0x200) 70907 rustc NAMI "/tmp/mre/main" 70907 rustc RET fstatat -1 errno 2 No such file or directory 70907 rustc CALL __getcwd(0x283ea5e35e00,0x200) 70907 rustc NAMI "/tmp/mre" 70907 rustc RET __getcwd 0 70907 rustc CALL compat11.stat(0x1d367093cb10,0x1d367093ca80) 70907 rustc NAMI "main" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL compat11.stat(0x1d367093ca60,0x1d367093c9d0) 70907 rustc NAMI "libmain.rmeta" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __getcwd(0x283ea5e36000,0x200) 70907 rustc NAMI "/tmp/mre" 70907 rustc RET __getcwd 0 70907 rustc CALL mkdir(0x1d367093c9b0,0777) 70907 rustc NAMI "/tmp/mre/rmetaUCUlde" 70907 rustc RET mkdir 0 70907 rustc CALL openat(AT_FDCWD,0x1d367093cb28,0x100601,0666) 70907 rustc NAMI "/tmp/mre/rmetaUCUlde/lib.rmeta" 70907 rustc RET openat 6 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL openat(AT_FDCWD,0x1d367093cb28,0x100000) 70907 rustc NAMI "/tmp/mre/rmetaUCUlde/lib.rmeta" 70907 rustc RET openat 6 70907 rustc CALL compat11.fstat(0x6,0x1d367093cc40) 70907 rustc STRU struct stat {dev=15021012045860407878, ino=89, mode=0100644, nlink=1, uid=1002, gid=0, rdev=18446744073709551615, atime=1706376718.062470000, mtime=1706376718.062470000, ctime=1706376718.062470000, birthtime=1706376718.062470000, size=0, blksize=131072, blocks=1, flags=0x800 } 70907 rustc RET compat11.fstat 0 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL compat11.lstat(0x1d367093cae0,0x1d367093ca50) 70907 rustc NAMI "/tmp/mre/rmetaUCUlde" 70907 rustc STRU struct stat {dev=15021012045860407878, ino=88, mode=040755, nlink=2, uid=1002, gid=0, rdev=18446744073709551615, atime=1706376718.062434000, mtime=1706376718.062474000, ctime=1706376718.062474000, birthtime=1706376718.062434000, size=3, blksize=131072, blocks=1, flags=0x800 } 70907 rustc RET compat11.lstat 0 70907 rustc CALL openat(AT_FDCWD,0x1d367093cae0,0x120100) 70907 rustc NAMI "/tmp/mre/rmetaUCUlde" 70907 rustc RET openat 6 70907 rustc CALL fcntl(0x6,F_SETFD,FD_CLOEXEC) 70907 rustc RET fcntl 0 70907 rustc CALL fcntl(0x6,F_ISUNIONSTACK,0x0) 70907 rustc RET fcntl 0 70907 rustc CALL getdirentries(0x6,0x283ea5fdb000,0x1000,0x283ea5e2fb88) 70907 rustc RET getdirentries 104/0x68 70907 rustc CALL unlinkat(0x6,0x1d367093c898,0) 70907 rustc NAMI "lib.rmeta" 70907 rustc RET unlinkat 0 70907 rustc CALL getdirentries(0x6,0x283ea5fdb000,0x1000,0x283ea5e2fb88) 70907 rustc RET getdirentries 0 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL unlinkat(AT_FDCWD,0x1d367093cae0,0x800) 70907 rustc NAMI "/tmp/mre/rmetaUCUlde" 70907 rustc RET unlinkat 0 70907 rustc CALL mmap(0,0x280000,0x3,0xc001002,0xffffffff,0) 70907 rustc RET mmap 44249538101248/0x283ea6000000 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1d366e65a930,0x1d367093a468) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigaction(SIGUSR1,0x1d367093a478,0x1d367093a4b8) 70907 rustc RET sigaction 0 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1d367093a468,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL mmap(0x1d363e6a1000,0x201000,0x3,0x400,0xffffffff,0) 70907 rustc RET mmap 32119671762944/0x1d3671a03000 70907 rustc CALL mprotect(0x1d3671a03000,0x1000,0) 70907 rustc RET mprotect 0 70907 rustc CALL thr_new(0x1d367093a360,0x68) 70907 rustc RET thr_new 0 70907 rustc CALL __sysctl(0x1d367093a370,0x4,0,0x1d367093a368,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x1d367093a370,0x4,0x283ea5eac400,0x1d367093a368,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __sysctl 0 70907 rustc RET thr_new 0 70907 rustc CALL sigfastblock(0x1,0x283ea5e70f38) 70907 rustc RET sigfastblock 0 70907 rustc CALL sigaltstack(0,0x1d3671c03f20) 70907 rustc RET sigaltstack 0 70907 rustc CALL mmap(0,0x9800,0x3,0x1002,0xffffffff,0) 70907 rustc RET mmap 44249540722688/0x283ea6280000 70907 rustc CALL mprotect(0x283ea6280000,0x1000,0) 70907 rustc RET mprotect 0 70907 rustc CALL sigaltstack(0x1d3671c03f20,0) 70907 rustc RET sigaltstack 0 70907 rustc CALL mmap(0,0x200000,0x3,0x15001002,0xffffffff,0) 70907 rustc CALL mmap(0x1d363e4a0000,0x201000,0x3,0x400,0xffffffff,0) 70907 rustc RET mmap 44249542295552/0x283ea6400000 70907 rustc RET mmap 32119675858944/0x1d3671deb000 70907 rustc CALL mprotect(0x1d3671deb000,0x1000,0) 70907 rustc RET mprotect 0 70907 rustc CALL thr_new(0x1d367093a140,0x68) 70907 rustc RET thr_new 0 70907 rustc CALL mmap(0,0x200000,0x3,0xc001002,0xffffffff,0) 70907 rustc RET mmap 44249544392704/0x283ea6600000 70907 rustc RET thr_new 0 70907 rustc CALL sigfastblock(0x1,0x283ea5e71638) 70907 rustc RET sigfastblock 0 70907 rustc CALL sigaltstack(0,0x1d3671febf20) 70907 rustc RET sigaltstack 0 70907 rustc CALL mmap(0,0x9800,0x3,0x1002,0xffffffff,0) 70907 rustc RET mmap 44249546489856/0x283ea6800000 70907 rustc CALL mprotect(0x283ea6800000,0x1000,0) 70907 rustc RET mprotect 0 70907 rustc CALL sigaltstack(0x1d3671febf20,0) 70907 rustc RET sigaltstack 0 70907 rustc CALL cpuset_getaffinity(0x3,0x1,0x19655,0x1,0x283ea6601000) 70907 rustc STRU cpuset_t [ 0, 1, 2, 3, 4, 5, 6, 7 ] 70907 rustc RET cpuset_getaffinity 0 70907 rustc CALL mmap(0,0x200000,0x3,0x15001002,0xffffffff,0) 70907 rustc RET mmap 44249548587008/0x283ea6a00000 70907 rustc CALL _umtx_op(0x283ea5ec16b8,0xf,0,0,0) 70907 rustc CALL mmap(0,0x200000,0x3,0xc001002,0xffffffff,0) 70907 rustc RET mmap 44249550684160/0x283ea6c00000 70907 rustc CALL thr_set_name(0x19656,0x283ea5e1d7f0) 70907 coordinator RET thr_set_name 0 70907 coordinator CALL cpuset_getaffinity(0x3,0x1,0x19656,0x1,0x283ea6c02000) 70907 coordinator STRU cpuset_t [ 0, 1, 2, 3, 4, 5, 6, 7 ] 70907 rustc CALL __sysctl(0x1d367093bed0,0x4,0,0x1d367093bec8,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x1d367093bed0,0x4,0x283ea5eac450,0x1d367093bec8,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __sysctl 0 70907 coordinator RET cpuset_getaffinity 0 70907 coordinator CALL _umtx_op(0x283ea5ec1748,0xf,0xffffffff,0,0) 70907 rustc CALL __sysctl(0x1d367093c060,0x4,0,0x1d367093c058,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x1d367093c060,0x4,0x283ea5eac4a0,0x1d367093c058,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __sysctl 0 70907 rustc CALL _umtx_op(0x283ea5ec1748,0x10,0x1,0,0) 70907 rustc RET _umtx_op 0 70907 rustc CALL _umtx_op(0x283ea54eeb58,0xf,0xffffffff,0,0) 70907 coordinator RET _umtx_op 0 70907 coordinator CALL _umtx_op(0x283ea5ec16b8,0x10,0x1,0,0) 70907 coordinator RET _umtx_op 0 70907 coordinator CALL mmap(0x1d363e29f000,0x201000,0x3,0x400,0xffffffff,0) 70907 coordinator RET mmap 32119688376320/0x1d36729db000 70907 coordinator CALL mprotect(0x1d36729db000,0x1000,0) 70907 coordinator RET mprotect 0 70907 coordinator CALL thr_new(0x1d3671fea8c0,0x68) 70907 coordinator RET thr_new 0 70907 coordinator CALL _umtx_op(0x283ea5ec1748,0xf,0xffffffff,0,0) 70907 rustc RET _umtx_op 0 70907 rustc CALL read(0x3,0x1d3671c03e0f,0x1) 70907 rustc RET thr_new 0 70907 rustc CALL sigfastblock(0x1,0x283ea6c20038) 70907 rustc RET sigfastblock 0 70907 rustc CALL sigaltstack(0,0x1d3672bdbf20) 70907 rustc RET sigaltstack 0 70907 rustc CALL mmap(0,0x9800,0x3,0x1002,0xffffffff,0) 70907 rustc GIO fd 3 read 1 byte "|" 70907 rustc RET read 1 70907 rustc RET mmap 44249552781312/0x283ea6e00000 70907 rustc CALL mprotect(0x283ea6e00000,0x1000,0) 70907 rustc RET mprotect 0 70907 rustc CALL sigaltstack(0x1d3672bdbf20,0) 70907 rustc CALL _umtx_op(0x283ea5ec1748,0x10,0x1,0,0) 70907 rustc RET _umtx_op 0 70907 rustc RET sigaltstack 0 70907 rustc CALL _umtx_op(0x283ea5ec16b8,0xf,0x1,0,0) 70907 coordinator RET _umtx_op 0 70907 coordinator CALL _umtx_op(0x283ea54eeb58,0x10,0x1,0,0) 70907 coordinator RET _umtx_op 0 70907 coordinator CALL _umtx_op(0x283ea5ec1748,0xf,0xffffffff,0,0) 70907 rustc CALL mmap(0,0x200000,0x3,0x15001002,0xffffffff,0) 70907 rustc RET mmap 44249554878464/0x283ea7000000 70907 rustc CALL mmap(0,0x200000,0x3,0xc001002,0xffffffff,0) 70907 rustc RET mmap 44249556975616/0x283ea7200000 70907 rustc CALL thr_set_name(0x19657,0x283ea6c18020) 70907 rustc RET _umtx_op 0 70907 opt 2gzh0qlvu3xdz6o RET thr_set_name 0 70907 opt 2gzh0qlvu3xdz6o CALL cpuset_getaffinity(0x3,0x1,0x19657,0x1,0x283ea7202000) 70907 opt 2gzh0qlvu3xdz6o STRU cpuset_t [ 0, 1, 2, 3, 4, 5, 6, 7 ] 70907 opt 2gzh0qlvu3xdz6o RET cpuset_getaffinity 0 70907 rustc CALL __sysctl(0x1d367093b760,0x4,0,0x1d367093b758,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x1d367093b760,0x4,0x283ea5eac770,0x1d367093b758,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __sysctl 0 70907 opt 2gzh0qlvu3xdz6o CALL openat(AT_FDCWD,0x1d3672bdada8,0x100601,0666) 70907 opt 2gzh0qlvu3xdz6o NAMI "main.2gzh0qlvu3xdz6o2.rcgu.o" 70907 rustc CALL __sysctl(0x1d367093b900,0x4,0,0x1d367093b8f8,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __sysctl 0 70907 rustc CALL __sysctl(0x1d367093b900,0x4,0x283ea5eac7c0,0x1d367093b8f8,0,0) 70907 rustc SCTL "kern.proc.pathname.-1" 70907 opt 2gzh0qlvu3xdz6o RET openat 6 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc" 70907 rustc RET __sysctl 0 70907 opt 2gzh0qlvu3xdz6o CALL lseek(0x6,0,SEEK_CUR) 70907 opt 2gzh0qlvu3xdz6o RET lseek 0 70907 opt 2gzh0qlvu3xdz6o CALL fstat(0x6,0x1d3672bdacf0) 70907 opt 2gzh0qlvu3xdz6o STRU struct stat {dev=15021012045860407878, ino=557, mode=0100644, nlink=1, uid=1002, gid=0, rdev=18446744073709551615, atime=1706376718.069327000, mtime=1706376718.069327000, ctime=1706376718.069327000, birthtime=1706376718.069327000, size=0, blksize=131072, blocks=1, flags=0x800 } 70907 opt 2gzh0qlvu3xdz6o RET fstat 0 70907 rustc CALL _umtx_op(0x283ea5ec1748,0x10,0x1,0,0) 70907 rustc RET _umtx_op 0 70907 rustc CALL _umtx_op(0x283ea54eeb58,0xf,0xffffffff,0,0) 70907 coordinator RET _umtx_op 0 70907 coordinator CALL _umtx_op(0x283ea5ec16b8,0x10,0x1,0,0) 70907 coordinator RET _umtx_op 0 70907 coordinator CALL mmap(0x1d363e09e000,0x201000,0x3,0x400,0xffffffff,0) 70907 coordinator RET mmap 32119733178368/0x1d3675495000 70907 coordinator CALL mprotect(0x1d3675495000,0x1000,0) 70907 rustc RET _umtx_op 0 70907 coordinator RET mprotect 0 70907 rustc CALL read(0x3,0x1d3671c03e0f,0x1) 70907 coordinator CALL thr_new(0x1d3671fea8c0,0x68) 70907 rustc GIO fd 3 read 1 byte "|" 70907 rustc RET read 1 70907 rustc CALL _umtx_op(0x283ea5ec16b8,0xf,0x2,0,0) 70907 coordinator RET thr_new 0 70907 coordinator CALL _umtx_op(0x283ea54eeb58,0x10,0x1,0,0) 70907 coordinator RET _umtx_op 0 70907 coordinator CALL _umtx_op(0x283ea5ec1748,0xf,0xffffffff,0,0) 70907 rustc RET _umtx_op 0 70907 rustc CALL _umtx_op(0x283ea5ec1748,0x10,0x1,0,0) 70907 rustc RET _umtx_op 0 70907 rustc RET thr_new 0 70907 rustc CALL sigfastblock(0x1,0x283ea6c20738) 70907 rustc RET sigfastblock 0 70907 rustc CALL sigaltstack(0,0x1d3675695f20) 70907 coordinator RET _umtx_op 0 70907 coordinator CALL write(0x5,0x1d3671feb35f,0x1) 70907 coordinator GIO fd 5 wrote 1 byte "|" 70907 coordinator RET write 1 70907 coordinator CALL _umtx_op(0x283ea5ec1748,0xf,0xffffffff,0,0) 70907 rustc RET sigaltstack 0 70907 rustc CALL mmap(0,0x9800,0x3,0x1002,0xffffffff,0) 70907 rustc RET mmap 44249559072768/0x283ea7400000 70907 rustc CALL mprotect(0x283ea7400000,0x1000,0) 70907 rustc RET mprotect 0 70907 rustc CALL sigaltstack(0x1d3675695f20,0) 70907 rustc RET sigaltstack 0 70907 rustc CALL mmap(0,0x200000,0x3,0x15001002,0xffffffff,0) 70907 rustc RET mmap 44249561169920/0x283ea7600000 70907 rustc CALL munmap(0x1d3674000000,0xb69688) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d3676400000,0x2d8926a) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d3670c00000,0x29f99a) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d3670ea0000,0x217a) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d3671400000,0x5f05a2) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d3673600000,0x22973a) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d367a38a000,0x92fe) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d367b794000,0x2556) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d367bd97000,0x49a4e) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d367d5e1000,0x7cd4) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d367d9e9000,0x1740a2) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d367f55e000,0x1794) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d367ff60000,0x66b18) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d36819c7000,0xbeed0) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d3681e86000,0x6883c) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d3682600000,0x5556e4) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d3683800000,0x78143e) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d3684782000,0x109b50) 70907 rustc RET munmap 0 70907 rustc CALL munmap(0x1d368488c000,0x9456) 70907 rustc RET munmap 0 70907 rustc CALL mmap(0,0x200000,0x3,0xc001002,0xffffffff,0) 70907 rustc RET mmap 44249563267072/0x283ea7800000 70907 rustc CALL thr_set_name(0x19658,0x283ea6c00040) 70907 opt cgu.0 RET thr_set_name 0 70907 opt cgu.0 CALL cpuset_getaffinity(0x3,0x1,0x19658,0x1,0x283ea7802000) 70907 opt cgu.0 STRU cpuset_t [ 0, 1, 2, 3, 4, 5, 6, 7 ] 70907 opt cgu.0 RET cpuset_getaffinity 0 70907 rustc CALL _umtx_op(0x283ea54eeb58,0xf,0xffffffff,0,0) 70907 opt cgu.0 CALL openat(AT_FDCWD,0x1d3675694da8,0x100601,0666) 70907 opt cgu.0 NAMI "main.main.c614dc505f4d4ead-cgu.0.rcgu.o" 70907 opt cgu.0 RET openat 7 70907 opt cgu.0 CALL lseek(0x7,0,SEEK_CUR) 70907 opt cgu.0 RET lseek 0 70907 opt cgu.0 CALL fstat(0x7,0x1d3675694cf0) 70907 opt cgu.0 STRU struct stat {dev=15021012045860407878, ino=856, mode=0100644, nlink=1, uid=1002, gid=0, rdev=18446744073709551615, atime=1706376718.072796000, mtime=1706376718.072796000, ctime=1706376718.072796000, birthtime=1706376718.072796000, size=0, blksize=131072, blocks=1, flags=0x800 } 70907 opt cgu.0 RET fstat 0 70907 opt 2gzh0qlvu3xdz6o CALL fstat(0x6,0x1d3672bdad78) 70907 opt 2gzh0qlvu3xdz6o STRU struct stat {dev=15021012045860407878, ino=557, mode=0100644, nlink=1, uid=1002, gid=0, rdev=18446744073709551615, atime=1706376718.069327000, mtime=1706376718.069327000, ctime=1706376718.069327000, birthtime=1706376718.069327000, size=0, blksize=131072, blocks=1, flags=0x800 } 70907 opt 2gzh0qlvu3xdz6o RET fstat 0 70907 opt 2gzh0qlvu3xdz6o CALL write(0x6,0x283ea7398bc0,0xa70) 70907 opt 2gzh0qlvu3xdz6o GIO fd 6 wrote 2672 bytes 0x0000 7f45 4c46 0201 0109 0000 0000 |.ELF........| 0x000c 0000 0000 0100 3e00 0100 0000 |......>.....| 0x0018 0000 0000 0000 0000 0000 0000 |............| 0x0024 0000 0000 7005 0000 0000 0000 |....p.......| 0x0030 0000 0000 4000 0000 0000 4000 |....@.....@.| 0x003c 1400 0100 e900 0000 0000 0000 |............| 0x0048 0000 0000 0000 0000 e900 0000 |............| 0x0054 0000 0000 0000 0000 0000 0000 |............| 0x0060 e900 0000 0000 0000 0000 0000 |............| 0x006c 0000 0000 e900 0000 0000 0000 |............| 0x0078 0000 0000 0000 0000 e900 0000 |............| 0x0084 0000 7275 7374 6320 7665 7273 |..rustc vers| 0x0090 696f 6e20 312e 3737 2e30 2d6e |ion 1.77.0-n| 0x009c 6967 6874 6c79 2028 3562 6435 |ightly (5bd5| 0x00a8 6432 3134 6520 3230 3234 2d30 |d214e 2024-0| 0x00b4 312d 3235 2900 0000 0000 0000 |1-25).......| 0x00c0 1400 0000 0000 0000 017a 5200 |.........zR.| 0x00cc 0178 1001 1b0c 0708 9001 0000 |.x..........| 0x00d8 1000 0000 1c00 0000 0000 0000 |............| 0x00e4 0500 0000 0000 0000 1000 0000 |............| 0x00f0 3000 0000 0000 0000 0500 0000 |0...........| 0x00fc 0000 0000 1000 0000 4400 0000 |........D...| 0x0108 0000 0000 0500 0000 0000 0000 |............| 0x0114 1000 0000 5800 0000 0000 0000 |....X.......| 0x0120 0500 0000 0000 0000 1400 0000 |............| 0x012c 6c00 0000 0000 0000 0500 0000 |l...........| 0x0138 0000 0000 0000 0000 0000 0000 |............| 0x0144 0000 0000 0000 0000 0000 0000 |............| 0x0150 0000 0000 0000 0000 6701 0000 |........g...| 0x015c 0400 f1ff 0000 0000 0000 0000 |............| 0x0168 0000 0000 0000 0000 0000 0000 |............| 0x0174 0300 0300 0000 0000 0000 0000 |............| 0x0180 0000 0000 0000 0000 0000 0000 |............| 0x018c 0300 0500 0000 0000 0000 0000 |............| 0x0198 0000 0000 0000 0000 0000 0000 |............| 0x01a4 0300 0700 0000 0000 0000 0000 |............| 0x01b0 0000 0000 0000 0000 0000 0000 |............| 0x01bc 0300 0900 0000 0000 0000 0000 |............| 0x01c8 0000 0000 0000 0000 0000 0000 |............| 0x01d4 0300 0b00 0000 0000 0000 0000 |............| 0x01e0 0000 0000 0000 0000 1101 0000 |............| 0x01ec 1200 0300 0000 0000 0000 0000 |............| 0x01f8 0500 0000 0000 0000 1e01 0000 |............| 0x0204 1002 0000 0000 0000 0000 0000 |............| 0x0210 0000 0000 0000 0000 e900 0000 |............| 0x021c 1200 0500 0000 0000 0000 0000 |............| 0x0228 0500 0000 0000 0000 f800 0000 |............| 0x0234 1002 0000 0000 0000 0000 0000 |............| 0x0240 0000 0000 0000 0000 c100 0000 |............| 0x024c 1200 0700 0000 0000 0000 0000 |............| 0x0258 0500 0000 0000 0000 d000 0000 |............| 0x0264 1002 0000 0000 0000 0000 0000 |............| 0x0270 0000 0000 0000 0000 8f00 0000 |............| 0x027c 1200 0900 0000 0000 0000 0000 |............| 0x0288 0500 0000 0000 0000 a300 0000 |............| 0x0294 1002 0000 0000 0000 0000 0000 |............| 0x02a0 0000 0000 0000 0000 1b00 0000 |............| 0x02ac 1200 0b00 0000 0000 0000 0000 |............| 0x02b8 0500 0000 0000 0000 3600 0000 |........6...| 0x02c4 1002 0000 0000 0000 0000 0000 |............| 0x02d0 0000 0000 0000 0000 2f01 0000 |......../...| 0x02dc 1100 0d00 0000 0000 0000 0000 |............| 0x02e8 0100 0000 0000 0000 6300 0000 |........c...| 0x02f4 1100 0e00 0000 0000 0000 0000 |............| 0x0300 0100 0000 0000 0000 0100 0000 |............| 0x030c 0000 0000 0400 0000 0800 0000 |............| 0x0318 fcff ffff ffff ffff 0100 0000 |............| 0x0324 0000 0000 0400 0000 0a00 0000 |............| 0x0330 fcff ffff ffff ffff 0100 0000 |............| 0x033c 0000 0000 0400 0000 0c00 0000 |............| 0x0348 fcff ffff ffff ffff 0100 0000 |............| 0x0354 0000 0000 0400 0000 0e00 0000 |............| 0x0360 fcff ffff ffff ffff 0100 0000 |............| 0x036c 0000 0000 0400 0000 1000 0000 |............| 0x0378 fcff ffff ffff ffff 2000 0000 |........ ...| 0x0384 0000 0000 0200 0000 0200 0000 |............| 0x0390 0000 0000 0000 0000 3400 0000 |........4...| 0x039c 0000 0000 0200 0000 0300 0000 |............| 0x03a8 0000 0000 0000 0000 4800 0000 |........H...| 0x03b4 0000 0000 0200 0000 0400 0000 |............| 0x03c0 0000 0000 0000 0000 5c00 0000 |........\...| 0x03cc 0000 0000 0200 0000 0500 0000 |............| 0x03d8 0000 0000 0000 0000 7000 0000 |........p...| 0x03e4 0000 0000 0200 0000 0600 0000 |............| 0x03f0 0000 0000 0000 0000 002e 7465 |..........te| 0x03fc 7874 002e 636f 6d6d 656e 7400 |xt..comment.| 0x0408 2e72 656c 612e 7465 7874 2e5f |.rela.text._| 0x0414 5f72 7573 745f 616c 6c6f 635f |_rust_alloc_| 0x0420 6572 726f 725f 6861 6e64 6c65 |error_handle| 0x042c 7200 5f5f 7267 5f6f 6f6d 002e |r.__rg_oom..| 0x0438 6e6f 7465 2e47 4e55 2d73 7461 |note.GNU-sta| 0x0444 636b 002e 7265 6c61 2e65 685f |ck..rela.eh_| 0x0450 6672 616d 6500 2e62 7373 2e5f |frame..bss._| 0x045c 5f72 7573 745f 6e6f 5f61 6c6c |_rust_no_all| 0x0468 6f63 5f73 6869 6d5f 6973 5f75 |oc_shim_is_u| 0x0474 6e73 7461 626c 6500 2e72 656c |nstable..rel| 0x0480 612e 7465 7874 2e5f 5f72 7573 |a.text.__rus| 0x048c 745f 616c 6c6f 635f 7a65 726f |t_alloc_zero| 0x0498 6564 005f 5f72 646c 5f61 6c6c |ed.__rdl_all| 0x04a4 6f63 5f7a 6572 6f65 6400 2e72 |oc_zeroed..r| 0x04b0 656c 612e 7465 7874 2e5f 5f72 |ela.text.__r| 0x04bc 7573 745f 7265 616c 6c6f 6300 |ust_realloc.| 0x04c8 5f5f 7264 6c5f 7265 616c 6c6f |__rdl_reallo| 0x04d4 6300 2e72 656c 612e 7465 7874 |c..rela.text| 0x04e0 2e5f 5f72 7573 745f 6465 616c |.__rust_deal| 0x04ec 6c6f 6300 5f5f 7264 6c5f 6465 |loc.__rdl_de| 0x04f8 616c 6c6f 6300 2e72 656c 612e |alloc..rela.| 0x0504 7465 7874 2e5f 5f72 7573 745f |text.__rust_| 0x0510 616c 6c6f 6300 5f5f 7264 6c5f |alloc.__rdl_| 0x051c 616c 6c6f 6300 2e62 7373 2e5f |alloc..bss._| 0x0528 5f72 7573 745f 616c 6c6f 635f |_rust_alloc_| 0x0534 6572 726f 725f 6861 6e64 6c65 |error_handle| 0x0540 725f 7368 6f75 6c64 5f70 616e |r_should_pan| 0x054c 6963 002e 7374 7274 6162 002e |ic..strtab..| 0x0558 7379 6d74 6162 0032 677a 6830 |symtab.2gzh0| 0x0564 716c 7675 3378 647a 366f 3200 |qlvu3xdz6o2.| 0x0570 0000 0000 0000 0000 0000 0000 |............| 0x057c 0000 0000 0000 0000 0000 0000 |............| 0x0588 0000 0000 0000 0000 0000 0000 |............| 0x0594 0000 0000 0000 0000 0000 0000 |............| 0x05a0 0000 0000 0000 0000 0000 0000 |............| 0x05ac 0000 0000 5701 0000 0300 0000 |....W.......| 0x05b8 0000 0000 0000 0000 0000 0000 |............| 0x05c4 0000 0000 f803 0000 0000 0000 |............| 0x05d0 7801 0000 0000 0000 0000 0000 |x...........| 0x05dc 0000 0000 0100 0000 0000 0000 |............| 0x05e8 0000 0000 0000 0000 0100 0000 |............| 0x05f4 0100 0000 0600 0000 0000 0000 |............| 0x0600 0000 0000 0000 0000 4000 0000 |........@...| 0x060c 0000 0000 0000 0000 0000 0000 |............| 0x0618 0000 0000 0000 0000 0400 0000 |............| 0x0624 0000 0000 0000 0000 0000 0000 |............| 0x0630 0b01 0000 0100 0000 0600 0000 |............| 0x063c 0000 0000 0000 0000 0000 0000 |............| 0x0648 4000 0000 0000 0000 0500 0000 |@...........| 0x0654 0000 0000 0000 0000 0000 0000 |............| 0x0660 1000 0000 0000 0000 0000 0000 |............| 0x066c 0000 0000 0601 0000 0400 0000 |............| 0x0678 4000 0000 0000 0000 0000 0000 |@...........| 0x0684 0000 0000 0803 0000 0000 0000 |............| 0x0690 1800 0000 0000 0000 1300 0000 |............| 0x069c 0300 0000 0800 0000 0000 0000 |............| 0x06a8 1800 0000 0000 0000 e300 0000 |............| 0x06b4 0100 0000 0600 0000 0000 0000 |............| 0x06c0 0000 0000 0000 0000 5000 0000 |........P...| 0x06cc 0000 0000 0500 0000 0000 0000 |............| 0x06d8 0000 0000 0000 0000 1000 0000 |............| 0x06e4 0000 0000 0000 0000 0000 0000 |............| 0x06f0 de00 0000 0400 0000 4000 0000 |........@...| 0x06fc 0000 0000 0000 0000 0000 0000 |............| 0x0708 2003 0000 0000 0000 1800 0000 | ...........| 0x0714 0000 0000 1300 0000 0500 0000 |............| 0x0720 0800 0000 0000 0000 1800 0000 |............| 0x072c 0000 0000 bb00 0000 0100 0000 |............| 0x0738 0600 0000 0000 0000 0000 0000 |............| 0x0744 0000 0000 6000 0000 0000 0000 |....`.......| 0x0750 0500 0000 0000 0000 0000 0000 |............| 0x075c 0000 0000 1000 0000 0000 0000 |............| 0x0768 0000 0000 0000 0000 b600 0000 |............| 0x0774 0400 0000 4000 0000 0000 0000 |....@.......| 0x0780 0000 0000 0000 0000 3803 0000 |........8...| 0x078c 0000 0000 1800 0000 0000 0000 |............| 0x0798 1300 0000 0700 0000 0800 0000 |............| 0x07a4 0000 0000 1800 0000 0000 0000 |............| 0x07b0 8900 0000 0100 0000 0600 0000 |............| 0x07bc 0000 0000 0000 0000 0000 0000 |............| 0x07c8 7000 0000 0000 0000 0500 0000 |p...........| 0x07d4 0000 0000 0000 0000 0000 0000 |............| 0x07e0 1000 0000 0000 0000 0000 0000 |............| 0x07ec 0000 0000 8400 0000 0400 0000 |............| 0x07f8 4000 0000 0000 0000 0000 0000 |@...........| 0x0804 0000 0000 5003 0000 0000 0000 |....P.......| 0x0810 1800 0000 0000 0000 1300 0000 |............| 0x081c 0900 0000 0800 0000 0000 0000 |............| 0x0828 1800 0000 0000 0000 1500 0000 |............| 0x0834 0100 0000 0600 0000 0000 0000 |............| 0x0840 0000 0000 0000 0000 8000 0000 |............| 0x084c 0000 0000 0500 0000 0000 0000 |............| 0x0858 0000 0000 0000 0000 1000 0000 |............| 0x0864 0000 0000 0000 0000 0000 0000 |............| 0x0870 1000 0000 0400 0000 4000 0000 |........@...| 0x087c 0000 0000 0000 0000 0000 0000 |............| 0x0888 6803 0000 0000 0000 1800 0000 |h...........| 0x0894 0000 0000 1300 0000 0b00 0000 |............| 0x08a0 0800 0000 0000 0000 1800 0000 |............| 0x08ac 0000 0000 2a01 0000 0800 0000 |....*.......| 0x08b8 0300 0000 0000 0000 0000 0000 |............| 0x08c4 0000 0000 8500 0000 0000 0000 |............| 0x08d0 0100 0000 0000 0000 0000 0000 |............| 0x08dc 0000 0000 0100 0000 0000 0000 |............| 0x08e8 0000 0000 0000 0000 5e00 0000 |........^...| 0x08f4 0800 0000 0300 0000 0000 0000 |............| 0x0900 0000 0000 0000 0000 8500 0000 |............| 0x090c 0000 0000 0100 0000 0000 0000 |............| 0x0918 0000 0000 0000 0000 0100 0000 |............| 0x0924 0000 0000 0000 0000 0000 0000 |............| 0x0930 0700 0000 0100 0000 3000 0000 |........0...| 0x093c 0000 0000 0000 0000 0000 0000 |............| 0x0948 8500 0000 0000 0000 3500 0000 |........5...| 0x0954 0000 0000 0000 0000 0000 0000 |............| 0x0960 0100 0000 0000 0000 0100 0000 |............| 0x096c 0000 0000 3f00 0000 0100 0000 |....?.......| 0x0978 0000 0000 0000 0000 0000 0000 |............| 0x0984 0000 0000 ba00 0000 0000 0000 |............| 0x0990 0000 0000 0000 0000 0000 0000 |............| 0x099c 0000 0000 0100 0000 0000 0000 |............| 0x09a8 0000 0000 0000 0000 5400 0000 |........T...| 0x09b4 0100 0070 0200 0000 0000 0000 |...p........| 0x09c0 0000 0000 0000 0000 c000 0000 |............| 0x09cc 0000 0000 8000 0000 0000 0000 |............| 0x09d8 0000 0000 0000 0000 0800 0000 |............| 0x09e4 0000 0000 0000 0000 0000 0000 |............| 0x09f0 4f00 0000 0400 0000 4000 0000 |O.......@...| 0x09fc 0000 0000 0000 0000 0000 0000 |............| 0x0a08 8003 0000 0000 0000 7800 0000 |........x...| 0x0a14 0000 0000 1300 0000 1100 0000 |............| 0x0a20 0800 0000 0000 0000 1800 0000 |............| 0x0a2c 0000 0000 5f01 0000 0200 0000 |...._.......| 0x0a38 0000 0000 0000 0000 0000 0000 |............| 0x0a44 0000 0000 4001 0000 0000 0000 |....@.......| 0x0a50 c801 0000 0000 0000 0100 0000 |............| 0x0a5c 0700 0000 0800 0000 0000 0000 |............| 0x0a68 1800 0000 0000 0000 |........| 70907 opt 2gzh0qlvu3xdz6o RET write 2672/0xa70 70907 opt 2gzh0qlvu3xdz6o CALL sigprocmask(SIG_SETMASK,0x1d3672bdada0,0x1d3672bdadd0) 70907 opt 2gzh0qlvu3xdz6o RET sigprocmask 0 70907 opt 2gzh0qlvu3xdz6o CALL close(0x6) 70907 opt 2gzh0qlvu3xdz6o RET close 0 70907 opt 2gzh0qlvu3xdz6o CALL sigprocmask(SIG_SETMASK,0x1d3672bdada0,0) 70907 opt 2gzh0qlvu3xdz6o RET sigprocmask 0 70907 opt 2gzh0qlvu3xdz6o CALL _umtx_op(0x283ea5ec1748,0x10,0x1,0,0) 70907 opt 2gzh0qlvu3xdz6o RET _umtx_op 0 70907 coordinator RET _umtx_op 0 70907 opt 2gzh0qlvu3xdz6o CALL sigaltstack(0x1d3672bdbf90,0) 70907 coordinator CALL write(0x5,0x1d3671feb35f,0x1) 70907 opt 2gzh0qlvu3xdz6o RET sigaltstack 0 70907 coordinator GIO fd 5 wrote 1 byte "|" 70907 coordinator RET write 1 70907 opt 2gzh0qlvu3xdz6o CALL munmap(0x283ea6e00000,0x9800) 70907 coordinator CALL _umtx_op(0x283ea5ec1748,0xf,0xffffffff,0,0) 70907 opt 2gzh0qlvu3xdz6o RET munmap 0 70907 opt 2gzh0qlvu3xdz6o CALL open(0x283ea50007a8,0x300000) 70907 opt 2gzh0qlvu3xdz6o NAMI "/lib/libgcc_s.so.1" 70907 opt 2gzh0qlvu3xdz6o RET open 6 70907 opt 2gzh0qlvu3xdz6o CALL fstat(0x6,0x1d3672bdab80) 70907 opt 2gzh0qlvu3xdz6o STRU struct stat {dev=17900027164756631768, ino=17451, mode=0100444, nlink=1, uid=0, gid=0, rdev=18446744073709551615, atime=1701139887, mtime=1699603426, ctime=1701139898.772018000, birthtime=1699603426, size=91688, blksize=92160, blocks=121, flags=0x800 } 70907 opt 2gzh0qlvu3xdz6o RET fstat 0 70907 opt 2gzh0qlvu3xdz6o CALL close(0x6) 70907 opt 2gzh0qlvu3xdz6o RET close 0 70907 opt 2gzh0qlvu3xdz6o CALL madvise(0x283ea7201000,0x2000,MADV_FREE) 70907 opt 2gzh0qlvu3xdz6o RET madvise 0 70907 opt 2gzh0qlvu3xdz6o CALL madvise(0x283ea7264000,0xb000,MADV_FREE) 70907 opt 2gzh0qlvu3xdz6o RET madvise 0 70907 opt 2gzh0qlvu3xdz6o CALL madvise(0x283ea7235000,0x2a000,MADV_FREE) 70907 opt 2gzh0qlvu3xdz6o RET madvise 0 70907 opt 2gzh0qlvu3xdz6o CALL madvise(0x283ea736f000,0x4a000,MADV_FREE) 70907 opt 2gzh0qlvu3xdz6o RET madvise 0 70907 opt 2gzh0qlvu3xdz6o CALL madvise(0x283ea7207000,0x13000,MADV_FREE) 70907 opt 2gzh0qlvu3xdz6o RET madvise 0 70907 opt 2gzh0qlvu3xdz6o CALL madvise(0x283ea721b000,0x15000,MADV_FREE) 70907 opt 2gzh0qlvu3xdz6o RET madvise 0 70907 opt 2gzh0qlvu3xdz6o CALL madvise(0x283ea7276000,0xf2000,MADV_FREE) 70907 opt 2gzh0qlvu3xdz6o RET madvise 0 70907 opt 2gzh0qlvu3xdz6o CALL thr_exit(0x283ea6c20000) 70907 opt cgu.0 CALL fstat(0x7,0x1d3675694d78) 70907 opt cgu.0 STRU struct stat {dev=15021012045860407878, ino=856, mode=0100644, nlink=1, uid=1002, gid=0, rdev=18446744073709551615, atime=1706376718.072796000, mtime=1706376718.072796000, ctime=1706376718.072796000, birthtime=1706376718.072796000, size=0, blksize=131072, blocks=1, flags=0x800 } 70907 opt cgu.0 RET fstat 0 70907 opt cgu.0 CALL write(0x7,0x283ea798e080,0x13f8) 70907 opt cgu.0 GIO fd 7 wrote 4096 bytes 0x0000 7f45 4c46 0201 0109 0000 0000 |.ELF........| 0x000c 0000 0000 0100 3e00 0100 0000 |......>.....| 0x0018 0000 0000 0000 0000 0000 0000 |............| 0x0024 0000 0000 780c 0000 0000 0000 |....x.......| 0x0030 0000 0000 4000 0000 0000 4000 |....@.....@.| 0x003c 1e00 0100 50e8 0000 0000 58c3 |....P.....X.| 0x0048 0000 0000 0000 0000 4883 ec18 |........H...| 0x0054 89c8 4889 d148 89f2 4889 7c24 |..H..H..H.|$| 0x0060 1048 8d7c 2410 488d 3500 0000 |.H.|$.H.5...| 0x006c 0044 0fb6 c0ff 1500 0000 0048 |.D.........H| 0x0078 8944 2408 488b 4424 0848 83c4 |.D$.H.D$.H..| 0x0084 18c3 0000 0000 0000 0000 0000 |............| 0x0090 5048 8b3f e800 0000 00e8 0000 |PH.?........| 0x009c 0000 8844 2407 0fb6 4424 0759 |...D$...D$.Y| 0x00a8 c300 0000 0000 0000 5048 8b3f |........PH.?| 0x00b4 e800 0000 0059 c300 0000 0000 |.....Y......| 0x00c0 4883 ec28 4889 7c24 0848 8d7c |H..(H.|$.H.|| 0x00cc 2408 e800 0000 0089 4424 04eb |$.......D$..| 0x00d8 1a48 8b7c 2418 e800 0000 0048 |.H.|$......H| 0x00e4 89c1 89d0 4889 4c24 1889 4424 |....H.L$..D$| 0x00f0 20eb e68b 4424 0448 83c4 28c3 | ...D$.H..(.| 0x00fc ffff 0108 090a 2300 1329 0000 |......#..)..| 0x0108 0000 0000 0000 0000 50ff d758 |........P..X| 0x0114 c300 0000 0000 0000 0000 0000 |............| 0x0120 c300 0000 0000 0000 0000 0000 |............| 0x012c 0000 0000 31c0 c300 0000 0000 |....1.......| 0x0138 0000 0000 0000 0000 c300 0000 |............| 0x0144 0000 0000 0000 0000 0000 0000 |............| 0x0150 5048 89f2 4863 f748 8d3d 0000 |PH..Hc.H.=..| 0x015c 0000 31c9 e800 0000 0059 c300 |..1......Y..| 0x0168 0000 0000 0000 0000 0800 0000 |............| 0x0174 0000 0000 0800 0000 0000 0000 |............| 0x0180 0000 0000 0000 0000 0000 0000 |............| 0x018c 0000 0000 0000 0000 0000 0000 |............| 0x0198 0000 0000 0000 0000 0072 7573 |.........rus| 0x01a4 7463 2076 6572 7369 6f6e 2031 |tc version 1| 0x01b0 2e37 372e 302d 6e69 6768 746c |.77.0-nightl| 0x01bc 7920 2835 6264 3564 3231 3465 |y (5bd5d214e| 0x01c8 2032 3032 342d 3031 2d32 3529 | 2024-01-25)| 0x01d4 0000 0000 1400 0000 0000 0000 |............| 0x01e0 017a 5200 0178 1001 1b0c 0708 |.zR..x......| 0x01ec 9001 0000 1400 0000 1c00 0000 |............| 0x01f8 0000 0000 0800 0000 0041 0e10 |.........A..| 0x0204 460e 0800 1400 0000 3400 0000 |F.......4...| 0x0210 0000 0000 3600 0000 0044 0e20 |....6....D. | 0x021c 710e 0800 1400 0000 4c00 0000 |q.......L...| 0x0228 0000 0000 1900 0000 0041 0e10 |.........A..| 0x0234 570e 0800 1400 0000 6400 0000 |W.......d...| 0x0240 0000 0000 0b00 0000 0041 0e10 |.........A..| 0x024c 490e 0800 1400 0000 7c00 0000 |I.......|...| 0x0258 0000 0000 0500 0000 0041 0e10 |.........A..| 0x0264 430e 0800 1000 0000 9400 0000 |C...........| 0x0270 0000 0000 0100 0000 0000 0000 |............| 0x027c 1000 0000 a800 0000 0000 0000 |............| 0x0288 0300 0000 0000 0000 1000 0000 |............| 0x0294 bc00 0000 0000 0000 0100 0000 |............| 0x02a0 0000 0000 1400 0000 d000 0000 |............| 0x02ac 0000 0000 1700 0000 0041 0e10 |.........A..| 0x02b8 550e 0800 1c00 0000 0000 0000 |U...........| 0x02c4 017a 504c 5200 0178 1007 9b00 |.zPLR..x....| 0x02d0 0000 001b 1b0c 0708 9001 0000 |............| 0x02dc 1800 0000 2400 0000 0000 0000 |....$.......| 0x02e8 3c00 0000 0400 0000 0044 0e30 |<........D.0| 0x02f4 770e 0800 0100 0000 1700 0000 |w...........| 0x0300 1800 0000 0000 0000 0000 0000 |............| 0x030c 0000 0000 0000 0000 0000 0000 |............| 0x0318 0000 0000 0000 0000 1304 0000 |............| 0x0324 0400 f1ff 0000 0000 0000 0000 |............| 0x0330 0000 0000 0000 0000 0000 0000 |............| 0x033c 0300 0300 0000 0000 0000 0000 |............| 0x0348 0000 0000 0000 0000 3c01 0000 |........<...| 0x0354 0200 0300 0000 0000 0000 0000 |............| 0x0360 0800 0000 0000 0000 4302 0000 |........C...| 0x036c 0200 0e00 0000 0000 0000 0000 |............| 0x0378 0500 0000 0000 0000 0000 0000 |............| 0x0384 0300 0500 0000 0000 0000 0000 |............| 0x0390 0000 0000 0000 0000 0000 0000 |............| 0x039c 0300 0700 0000 0000 0000 0000 |............| 0x03a8 0000 0000 0000 0000 9701 0000 |............| 0x03b4 0200 0700 0000 0000 0000 0000 |............| 0x03c0 1900 0000 0000 0000 e601 0000 |............| 0x03cc 0200 1000 0000 0000 0000 0000 |............| 0x03d8 0300 0000 0000 0000 0000 0000 |............| 0x03e4 0300 0900 0000 0000 0000 0000 |............| 0x03f0 0000 0000 0000 0000 8902 0000 |............| 0x03fc 0200 0900 0000 0000 0000 0000 |............| 0x0408 0b00 0000 0000 0000 a603 0000 |............| 0x0414 0200 0b00 0000 0000 0000 0000 |............| 0x0420 3c00 0000 0000 0000 0000 0000 |<...........| 0x042c 0300 0b00 0000 0000 0000 0000 |............| 0x0438 0000 0000 0000 0000 0000 0000 |............| 0x0444 0300 0d00 0000 0000 0000 0000 |............| 0x0450 0000 0000 0000 0000 e103 0000 |............| 0x045c 0000 0d00 0000 0000 0000 0000 |............| 0x0468 0000 0000 0000 0000 0000 0000 |............| 0x0474 0300 0e00 0000 0000 0000 0000 |............| 0x0480 0000 0000 0000 0000 0000 0000 |............| 0x048c 0300 0f00 0000 0000 0000 0000 |............| 0x0498 0000 0000 0000 0000 b900 0000 |............| 0x04a4 0200 0f00 0000 0000 0000 0000 |............| 0x04b0 0100 0000 0000 0000 0000 0000 |............| 0x04bc 0300 1000 0000 0000 0000 0000 |............| 0x04c8 0000 0000 0000 0000 0000 0000 |............| 0x04d4 0300 1100 0000 0000 0000 0000 |............| 0x04e0 0000 0000 0000 0000 9100 0000 |............| 0x04ec 0200 1100 0000 0000 0000 0000 |............| 0x04f8 0100 0000 0000 0000 0000 0000 |............| 0x0504 0300 1200 0000 0000 0000 0000 |............| 0x0510 0000 0000 0000 0000 0000 0000 |............| 0x051c 0300 1400 0000 0000 0000 0000 |............| 0x0528 0000 0000 0000 0000 ef02 0000 |............| 0x0534 1202 0500 0000 0000 0000 0000 |............| 0x0540 3600 0000 0000 0000 1a03 0000 |6...........| 0x054c 1000 0000 0000 0000 0000 0000 |............| 0x0558 0000 0000 0000 0000 5d00 0000 |........]...| 0x0564 1000 0000 0000 0000 0000 0000 |............| 0x0570 0000 0000 0000 0000 4800 0000 |........H...| 0x057c 1200 1200 0000 0000 0000 0000 |............| 0x0588 1700 0000 0000 0000 0c00 0000 |............| 0x0594 2102 1700 0000 0000 0000 0000 |!...........| 0x05a0 0800 0000 0000 0000 1300 0000 |............| 0x05ac 1000 0000 0000 0000 0000 0000 |............| 0x05b8 0000 0000 0000 0000 0200 0000 |............| 0x05c4 0000 0000 0400 0000 0f00 0000 |............| 0x05d0 fcff ffff ffff ffff 1900 0000 |............| 0x05dc 0000 0000 0200 0000 1600 0000 |............| 0x05e8 fcff ffff ffff ffff 2300 0000 |........#...| 0x05f4 0000 0000 0900 0000 1800 0000 |............| 0x0600 fcff ffff ffff ffff 0500 0000 |............| 0x060c 0000 0000 0400 0000 0200 0000 |............| 0x0618 fcff ffff ffff ffff 0a00 0000 |............| 0x0624 0000 0000 0400 0000 1200 0000 |............| 0x0630 fcff ffff ffff ffff 0500 0000 |............| 0x063c 0000 0000 0400 0000 0c00 0000 |............| 0x0648 fcff ffff ffff ffff 0f00 0000 |............| 0x0654 0000 0000 0400 0000 0600 0000 |............| 0x0660 fcff ffff ffff ffff 1f00 0000 |............| 0x066c 0000 0000 0400 0000 1900 0000 |............| 0x0678 fcff ffff ffff ffff 0a00 0000 |............| 0x0684 0000 0000 0200 0000 1300 0000 |............| 0x0690 fcff ffff ffff ffff 1100 0000 |............| 0x069c 0000 0000 0400 0000 1700 0000 |............| 0x06a8 fcff ffff ffff ffff 0000 0000 |............| 0x06b4 0000 0000 0100 0000 1000 0000 |............| 0x06c0 0000 0000 0000 0000 1800 0000 |............| 0x06cc 0000 0000 0100 0000 0900 0000 |............| 0x06d8 0000 0000 0000 0000 2000 0000 |........ ...| 0x06e4 0000 0000 0100 0000 0600 0000 |............| 0x06f0 0000 0000 0000 0000 2800 0000 |........(...| 0x06fc 0000 0000 0100 0000 0600 0000 |............| 0x0708 0000 0000 0000 0000 0000 0000 |............| 0x0714 0000 0000 0100 0000 1c00 0000 |............| 0x0720 0000 0000 0000 0000 2000 0000 |........ ...| 0x072c 0000 0000 0200 0000 0200 0000 |............| 0x0738 0000 0000 0000 0000 3800 0000 |........8...| 0x0744 0000 0000 0200 0000 0500 0000 |............| 0x0750 0000 0000 0000 0000 5000 0000 |........P...| 0x075c 0000 0000 0200 0000 0600 0000 |............| 0x0768 0000 0000 0000 0000 6800 0000 |........h...| 0x0774 0000 0000 0200 0000 0900 0000 |............| 0x0780 0000 0000 0000 0000 8000 0000 |............| 0x078c 0000 0000 0200 0000 0f00 0000 |............| 0x0798 0000 0000 0000 0000 9800 0000 |............| 0x07a4 0000 0000 0200 0000 1000 0000 |............| 0x07b0 0000 0000 0000 0000 ac00 0000 |............| 0x07bc 0000 0000 0200 0000 1200 0000 |............| 0x07c8 0000 0000 0000 0000 c000 0000 |............| 0x07d4 0000 0000 0200 0000 1300 0000 |............| 0x07e0 0000 0000 0000 0000 d400 0000 |............| 0x07ec 0000 0000 0200 0000 1500 0000 |............| 0x07f8 0000 0000 0000 0000 f700 0000 |............| 0x0804 0000 0000 0200 0000 1b00 0000 |............| 0x0810 0000 0000 0000 0000 0c01 0000 |............| 0x081c 0000 0000 0200 0000 0c00 0000 |............| 0x0828 0000 0000 0000 0000 1501 0000 |............| 0x0834 0000 0000 0200 0000 0d00 0000 |............| 0x0840 0000 0000 0000 0000 002e 7265 |..........re| 0x084c 6c61 2e64 6174 612e 4457 2e72 |la.data.DW.r| 0x0858 6566 2e72 7573 745f 6568 5f70 |ef.rust_eh_p| 0x0864 6572 736f 6e61 6c69 7479 002e |ersonality..| 0x0870 7465 7874 002e 636f 6d6d 656e |text..commen| 0x087c 7400 2e67 726f 7570 002e 7265 |t..group..re| 0x0888 6c61 2e74 6578 742e 6d61 696e |la.text.main| 0x0894 002e 6e6f 7465 2e47 4e55 2d73 |..note.GNU-s| 0x08a0 7461 636b 005f 556e 7769 6e64 |tack._Unwind| 0x08ac 5f52 6573 756d 6500 2e72 656c |_Resume..rel| 0x08b8 612e 6568 5f66 7261 6d65 002e |a.eh_frame..| 0x08c4 7374 7274 6162 002e 7379 6d74 |strtab..symt| 0x08d0 6162 002e 7465 7874 2e5f 5a4e |ab..text._ZN| 0x08dc 346d 6169 6e34 6d61 696e 3137 |4main4main17| 0x08e8 6838 3463 3339 6162 6163 3164 |h84c39abac1d| 0x08f4 3138 3834 6445 002e 7465 7874 |1884dE..text| 0x0900 2e5f 5a4e 3463 6f72 6533 7074 |._ZN4core3pt| 0x090c 7238 3564 726f 705f 696e 5f70 |r85drop_in_p| 0x0918 6c61 6365 244c 5424 7374 642e |lace$LT$std.| 0x0924 2e72 742e 2e6c 616e 675f 7374 |.rt..lang_st| 0x0930 6172 7424 4c54 2424 4c50 2424 |art$LT$$LP$$| 0x093c 5250 2424 4754 242e 2e24 7537 |RP$$GT$..$u7| 0x0948 6224 2475 3762 2463 6c6f 7375 |b$$u7b$closu| 0x0954 7265 2475 3764 2424 7537 6424 |re$u7d$$u7d$| 0x0960 2447 5424 3137 6866 3633 3932 |$GT$17hf6392| 0x096c 6165 3863 6537 3334 3231 6345 |ae8ce73421cE| 0x0978 002e 7265 6c61 2e74 6578 742e |..rela.text.| 0x0984 5f5a 4e33 7374 6431 3073 7973 |_ZN3std10sys| 0x0990 5f63 6f6d 6d6f 6e39 6261 636b |_common9back| 0x099c 7472 6163 6532 385f 5f72 7573 |trace28__rus| 0x09a8 745f 6265 6769 6e5f 7368 6f72 |t_begin_shor| 0x09b4 745f 6261 636b 7472 6163 6531 |t_backtrace1| 0x09c0 3768 3761 3032 3938 6530 6630 |7h7a0298e0f0| 0x09cc 3334 3761 6162 4500 2e72 656c |347aabE..rel| 0x09d8 612e 7465 7874 2e5f 5a4e 3373 |a.text._ZN3s| 0x09e4 7464 3272 7431 306c 616e 675f |td2rt10lang_| 0x09f0 7374 6172 7432 385f 2475 3762 |start28_$u7b| 0x09fc 2424 7537 6224 636c 6f73 7572 |$$u7b$closur| 0x0a08 6524 7537 6424 2475 3764 2431 |e$u7d$$u7d$1| 0x0a14 3768 3836 6662 3466 3833 6334 |7h86fb4f83c4| 0x0a20 3962 6137 3562 4500 2e74 6578 |9ba75bE..tex| 0x0a2c 742e 5f5a 4e35 345f 244c 5424 |t._ZN54_$LT$| 0x0a38 244c 5024 2452 5024 2475 3230 |$LP$$RP$$u20| 0x0a44 2461 7324 7532 3024 7374 642e |$as$u20$std.| 0x0a50 2e70 726f 6365 7373 2e2e 5465 |.process..Te| 0x0a5c 726d 696e 6174 696f 6e24 4754 |rmination$GT| 0x0a68 2436 7265 706f 7274 3137 6836 |$6report17h6| 0x0a74 3030 6134 6565 6565 3030 6663 |00a4eeee00fc| 0x0a80 6532 6245 002e 7465 7874 2e5f |e2bE..text._| 0x0a8c 5a4e 3463 6f72 6533 6f70 7338 |ZN4core3ops8| 0x0a98 6675 6e63 7469 6f6e 3646 6e4f |function6FnO| 0x0aa4 6e63 6539 6361 6c6c 5f6f 6e63 |nce9call_onc| 0x0ab0 6531 3768 6334 3438 3034 3463 |e17hc448044c| 0x0abc 6536 6139 6530 3261 4500 2e72 |e6a9e02aE..r| 0x0ac8 656c 612e 7465 7874 2e5f 5a4e |ela.text._ZN| 0x0ad4 3463 6f72 6533 6f70 7338 6675 |4core3ops8fu| 0x0ae0 6e63 7469 6f6e 3646 6e4f 6e63 |nction6FnOnc| 0x0aec 6534 3063 616c 6c5f 6f6e 6365 |e40call_once| 0x0af8 2475 3762 2424 7537 6224 7674 |$u7b$$u7b$vt| 0x0b04 6162 6c65 2e73 6869 6d24 7537 |able.shim$u7| 0x0b10 6424 2475 3764 2431 3768 3732 |d$$u7d$17h72| 0x0b1c 6663 3432 6234 6536 6433 3033 |fc42b4e6d303| 0x0b28 3939 4500 2e72 656c 612e 7465 |99E..rela.te| 0x0b34 7874 2e5f 5a4e 3373 7464 3272 |xt._ZN3std2r| 0x0b40 7431 306c 616e 675f 7374 6172 |t10lang_star| 0x0b4c 7431 3768 6338 3037 3439 6663 |t17hc80749fc| 0x0b58 6135 3833 3732 6538 4500 5f5a |a58372e8E._Z| 0x0b64 4e33 7374 6432 7274 3139 6c61 |N3std2rt19la| 0x0b70 6e67 5f73 7461 7274 5f69 6e74 |ng_start_int| 0x0b7c 6572 6e61 6c31 3768 6461 6339 |ernal17hdac9| 0x0b88 3237 6639 3634 3662 3763 3537 |27f9646b7c57| 0x0b94 4500 2e72 656c 612e 7465 7874 |E..rela.text| 0x0ba0 2e5f 5a4e 3463 6f72 6533 6f70 |._ZN4core3op| 0x0bac 7338 6675 6e63 7469 6f6e 3646 |s8function6F| 0x0bb8 6e4f 6e63 6539 6361 6c6c 5f6f |nOnce9call_o| 0x0bc4 6e63 6531 3768 3930 3264 3161 |nce17h902d1a| 0x0bd0 6465 6461 3539 3864 6135 4500 |deda598da5E.| 0x0bdc 2e67 6363 5f65 7863 6570 745f |.gcc_except_| 0x0be8 7461 626c 652e 5f5a 4e34 636f |table._ZN4co| 0x0bf4 7265 336f 7073 3866 756e 6374 |re3ops8funct| 0x0c00 696f 6e36 466e 4f6e 6365 3963 |ion6FnOnce9c| 0x0c0c 616c 6c5f 6f6e 6365 3137 6839 |all_once17h9| 0x0c18 3032 6431 6164 6564 6135 3938 |02d1adeda598| 0x0c24 6461 3545 0047 4343 5f65 7863 |da5E.GCC_exc| 0x0c30 6570 745f 7461 626c 6534 002e |ept_table4..| 0x0c3c 7265 6c61 2e64 6174 612e 7265 |rela.data.re| 0x0c48 6c2e 726f 2e2e 4c5f 5f75 6e6e |l.ro..L__unn| 0x0c54 616d 6564 5f31 006d 6169 6e2e |amed_1.main.| 0x0c60 6336 3134 6463 3530 3566 3464 |c614dc505f4d| 0x0c6c 3465 6164 2d63 6775 2e30 0000 |4ead-cgu.0..| 0x0c78 0000 0000 0000 0000 0000 0000 |............| 0x0c84 0000 0000 0000 0000 0000 0000 |............| 0x0c90 0000 0000 0000 0000 0000 0000 |............| 0x0c9c 0000 0000 0000 0000 0000 0000 |............| 0x0ca8 0000 0000 0000 0000 0000 0000 |............| 0x0cb4 0000 0000 7b00 0000 0300 0000 |....{.......| 0x0cc0 0000 0000 0000 0000 0000 0000 |............| 0x0ccc 0000 0000 4808 0000 0000 0000 |....H.......| 0x0cd8 2f04 0000 0000 0000 0000 0000 |/...........| 0x0ce4 0000 0000 0100 0000 0000 0000 |............| 0x0cf0 0000 0000 0000 0000 2700 0000 |........'...| 0x0cfc 0100 0000 0600 0000 0000 0000 |............| 0x0d08 0000 0000 0000 0000 4000 0000 |........@...| 0x0d14 0000 0000 0000 0000 0000 0000 |............| 0x0d20 0000 0000 0000 0000 0400 0000 |............| 0x0d2c 0000 0000 0000 0000 0000 0000 |............| 0x0d38 3601 0000 0100 0000 0600 0000 |6...........| 0x0d44 0000 0000 0000 0000 0000 0000 |............| 0x0d50 4000 0000 0000 0000 0800 0000 |@...........| 0x0d5c 0000 0000 0000 0000 0000 0000 |............| 0x0d68 1000 0000 0000 0000 0000 0000 |............| 0x0d74 0000 0000 3101 0000 0400 0000 |....1.......| 0x0d80 4000 0000 0000 0000 0000 0000 |@...........| 0x0d8c 0000 0000 c005 0000 0000 0000 |............| 0x0d98 1800 0000 0000 0000 1d00 0000 |............| 0x0da4 0300 0000 0800 0000 0000 0000 |............| 0x0db0 1800 0000 0000 0000 e902 0000 |............| 0x0dbc 0100 0000 0600 0000 0000 0000 |............| 0x0dc8 0000 0000 0000 0000 5000 0000 |........P...| 0x0dd4 0000 0000 3600 0000 0000 0000 |....6.......| 0x0de0 0000 0000 0000 0000 1000 0000 |............| 0x0dec 0000 0000 0000 0000 0000 0000 |............| 0x0df8 e402 0000 0400 0000 4000 0000 |........@...| 0x0e04 0000 0000 0000 0000 0000 0000 |............| 0x0e10 d805 0000 0000 0000 3000 0000 |........0...| 0x0e1c 0000 0000 1d00 0000 0500 0000 |............| 0x0e28 0800 0000 0000 0000 1800 0000 |............| 0x0e34 0000 0000 9101 0000 0100 0000 |............| 0x0e40 0600 0000 0000 0000 0000 0000 |............| 0x0e4c 0000 0000 9000 0000 0000 0000 |............| 0x0e58 1900 0000 0000 0000 0000 0000 |............| 0x0e64 0000 0000 1000 0000 0000 0000 |............| 0x0e70 0000 0000 0000 0000 8c01 0000 |............| 0x0e7c 0400 0000 4000 0000 0000 0000 |....@.......| 0x0e88 0000 0000 0000 0000 0806 0000 |............| 0x0e94 0000 0000 3000 0000 0000 0000 |....0.......| 0x0ea0 1d00 0000 0700 0000 0800 0000 |............| 0x0eac 0000 0000 1800 0000 0000 0000 |............| 0x0eb8 8302 0000 0100 0000 0600 0000 |............| 0x0ec4 0000 0000 0000 0000 0000 0000 |............| 0x0ed0 b000 0000 0000 0000 0b00 0000 |............| 0x0edc 0000 0000 0000 0000 0000 0000 |............| 0x0ee8 1000 0000 0000 0000 0000 0000 |............| 0x0ef4 0000 0000 7e02 0000 0400 0000 |....~.......| 0x0f00 4000 0000 0000 0000 0000 0000 |@...........| 0x0f0c 0000 0000 3806 0000 0000 0000 |....8.......| 0x0f18 1800 0000 0000 0000 1d00 0000 |............| 0x0f24 0900 0000 0800 0000 0000 0000 |............| 0x0f30 1800 0000 0000 0000 5303 0000 |........S...| 0x0f3c 0100 0000 0600 0000 0000 0000 |............| 0x0f48 0000 0000 0000 0000 c000 0000 |............| 0x0f54 0000 0000 3c00 0000 0000 0000 |....<.......| 0x0f60 0000 0000 0000 0000 1000 0000 |............| 0x0f6c 0000 0000 0000 0000 0000 0000 |............| 0x0f78 4e03 0000 0400 0000 4000 0000 |N.......@...| 0x0f84 0000 0000 0000 0000 0000 0000 |............| 0x0f90 5006 0000 0000 0000 3000 0000 |P.......0...| 0x0f9c 0000 0000 1d00 0000 0b00 0000 |............| 0x0fa8 0800 0000 0000 0000 1800 0000 |............| 0x0fb4 0000 0000 9403 0000 0100 0000 |............| 0x0fc0 0200 0000 0000 0000 0000 0000 |............| 0x0fcc 0000 0000 fc00 0000 0000 0000 |............| 0x0fd8 0c00 0000 0000 0000 0000 0000 |............| 0x0fe4 0000 0000 0400 0000 0000 0000 |............| 0x0ff0 0000 0000 0000 0000 3d02 0000 |........=...| 0x0ffc 0100 0000 |....| 70907 opt cgu.0 RET write 5112/0x13f8 70907 opt cgu.0 CALL sigprocmask(SIG_SETMASK,0x1d3675694da0,0x1d3675694dd0) 70907 opt cgu.0 RET sigprocmask 0 70907 opt cgu.0 CALL close(0x7) 70907 opt cgu.0 RET close 0 70907 opt cgu.0 CALL sigprocmask(SIG_SETMASK,0x1d3675694da0,0) 70907 opt cgu.0 RET sigprocmask 0 70907 opt cgu.0 CALL _umtx_op(0x283ea5ec1748,0x10,0x1,0,0) 70907 opt cgu.0 RET _umtx_op 0 70907 coordinator RET _umtx_op 0 70907 opt cgu.0 CALL sigaltstack(0x1d3675695f90,0) 70907 opt cgu.0 RET sigaltstack 0 70907 opt cgu.0 CALL munmap(0x283ea7400000,0x9800) 70907 coordinator CALL _umtx_op(0x283ea5ec16b8,0x10,0x1,0,0) 70907 coordinator RET _umtx_op 0 70907 rustc RET _umtx_op 0 70907 coordinator CALL thr_kill(0x19655,SIGUSR1) 70907 coordinator RET thr_kill 0 70907 rustc PSIG SIGUSR1 caught handler=0x1d366e66b9c0 mask=0x0 code=SI_LWP 70907 rustc CALL sigprocmask(SIG_SETMASK,0x1d3671c0374c,0) 70907 rustc RET sigprocmask 0 70907 rustc CALL sigreturn(0x1d3671c03380) 70907 opt cgu.0 RET munmap 0 70907 rustc RET sigreturn JUSTRETURN 70907 rustc CALL _umtx_op(0x283ea5ec16b8,0x10,0x1,0,0) 70907 rustc RET _umtx_op 0 70907 rustc CALL sigaltstack(0x1d3671c03f90,0) 70907 rustc RET sigaltstack 0 70907 rustc CALL munmap(0x283ea6280000,0x9800) 70907 rustc RET munmap 0 70907 coordinator CALL _umtx_op(0x283ea5ec16b8,0xf,0x3,0x18,0x1d3671feb240) 70907 coordinator RET _umtx_op 0 70907 coordinator CALL sched_yield 70907 coordinator RET sched_yield 0 70907 coordinator CALL _umtx_op(0x283ea5e70f00,0x2,0x19655,0,0) 70907 rustc CALL madvise(0x283ea6600000,0x5000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL thr_exit(0x283ea5e70f00) 70907 opt cgu.0 CALL madvise(0x283ea7806000,0x3000,MADV_FREE) 70907 coordinator RET _umtx_op 0 70907 coordinator CALL _umtx_op(0x283ea54eeb58,0x10,0x1,0,0) 70907 coordinator RET _umtx_op 0 70907 coordinator CALL sigaltstack(0x1d3671febf90,0) 70907 coordinator RET sigaltstack 0 70907 rustc RET _umtx_op 0 70907 coordinator CALL munmap(0x283ea6800000,0x9800) 70907 rustc CALL _umtx_op(0x283ea5e71600,0x2,0x19656,0,0) 70907 coordinator RET munmap 0 70907 opt cgu.0 RET madvise 0 70907 opt cgu.0 CALL madvise(0x283ea7801000,0x2000,MADV_FREE) 70907 opt cgu.0 RET madvise 0 70907 opt cgu.0 CALL madvise(0x283ea780a000,0x1d000,MADV_FREE) 70907 opt cgu.0 RET madvise 0 70907 opt cgu.0 CALL madvise(0x283ea782e000,0x181000,MADV_FREE) 70907 coordinator CALL write(0x2,0x1d3671feb330,0x48) 70907 coordinator GIO fd 2 wrote 72 bytes "__cxa_thread_call_dtors: dtr 0x1d36623e9000 from unloa\ ded dso, skipping " 70907 coordinator RET write 72/0x48 70907 opt cgu.0 RET madvise 0 70907 opt cgu.0 CALL thr_exit(0x283ea6c20700) 70907 coordinator CALL madvise(0x283ea6c02000,0x1000,MADV_FREE) 70907 coordinator RET madvise 0 70907 coordinator CALL madvise(0x283ea6c00000,0x1000,MADV_FREE) 70907 coordinator RET madvise 0 70907 coordinator CALL madvise(0x283ea6c0a000,0xf000,MADV_FREE) 70907 coordinator RET madvise 0 70907 coordinator CALL thr_exit(0x283ea5e71600) 70907 rustc RET _umtx_op 0 70907 rustc CALL compat11.stat(0x1d367094bc20,0x1d367094bb90) 70907 rustc NAMI "main.main.c614dc505f4d4ead-cgu.0.rcgu.o" 70907 rustc STRU struct stat {dev=15021012045860407878, ino=856, mode=0100644, nlink=1, uid=1002, gid=0, rdev=18446744073709551615, atime=1706376718.072796000, mtime=1706376718.076246000, ctime=1706376718.076246000, birthtime=1706376718.072796000, size=5112, blksize=5120, blocks=1, flags=0x800 } 70907 rustc RET compat11.stat 0 70907 rustc CALL mkdir(0x1d367094bc10,0777) 70907 rustc NAMI "/tmp/rustco4W2Pb" 70907 rustc RET mkdir 0 70907 rustc CALL compat11.stat(0x1d367094bce0,0x1d367094bc50) 70907 rustc NAMI "main" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL compat11.stat(0x1d367094ae30,0x1d367094ada0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL getrandom(0x1d367094af90,0x10,0) 70907 rustc RET getrandom 16/0x10 70907 rustc CALL openat(AT_FDCWD,0x1d367094b258,0x100601,0666) 70907 rustc NAMI "/tmp/rustco4W2Pb/symbols.o" 70907 rustc RET openat 6 70907 rustc CALL write(0x6,0x283ea5e63880,0x318) 70907 rustc GIO fd 6 wrote 792 bytes 0x0000 7f45 4c46 0201 0109 0000 0000 |.ELF........| 0x000c 0000 0000 0100 3e00 0100 0000 |......>.....| 0x0018 0000 0000 0000 0000 0000 0000 |............| 0x0024 0000 0000 d801 0000 0000 0000 |............| 0x0030 0000 0000 4000 0000 0000 4000 |....@.....@.| 0x003c 0500 0400 0400 0000 1000 0000 |............| 0x0048 0500 0000 474e 5500 0200 00c0 |....GNU.....| 0x0054 0400 0000 0300 0000 0000 0000 |............| 0x0060 0000 0000 0000 0000 0000 0000 |............| 0x006c 0000 0000 0000 0000 0000 0000 |............| 0x0078 1500 0000 1000 0000 0000 0000 |............| 0x0084 0000 0000 0000 0000 0000 0000 |............| 0x0090 0100 0000 1000 0000 0000 0000 |............| 0x009c 0000 0000 0000 0000 0000 0000 |............| 0x00a8 1a00 0000 1000 0000 0000 0000 |............| 0x00b4 0000 0000 0000 0000 0000 0000 |............| 0x00c0 0100 0000 1000 0000 0000 0000 |............| 0x00cc 0000 0000 0000 0000 0000 0000 |............| 0x00d8 5e00 0000 1000 0000 0000 0000 |^...........| 0x00e4 0000 0000 0000 0000 0000 0000 |............| 0x00f0 4f00 0000 1000 0000 0000 0000 |O...........| 0x00fc 0000 0000 0000 0000 0000 0000 |............| 0x0108 4000 0000 1000 0000 0000 0000 |@...........| 0x0114 0000 0000 0000 0000 0000 0000 |............| 0x0120 2c00 0000 1000 0000 0000 0000 |,...........| 0x012c 0000 0000 0000 0000 0000 0000 |............| 0x0138 0072 7573 745f 6568 5f70 6572 |.rust_eh_per| 0x0144 736f 6e61 6c69 7479 006d 6169 |sonality.mai| 0x0150 6e00 7275 7374 5f62 6567 696e |n.rust_begin| 0x015c 5f75 6e77 696e 6400 5f5f 7275 |_unwind.__ru| 0x0168 7374 5f61 6c6c 6f63 5f7a 6572 |st_alloc_zer| 0x0174 6f65 6400 5f5f 7275 7374 5f72 |oed.__rust_r| 0x0180 6561 6c6c 6f63 005f 5f72 7573 |ealloc.__rus| 0x018c 745f 6465 616c 6c6f 6300 5f5f |t_dealloc.__| 0x0198 7275 7374 5f61 6c6c 6f63 0000 |rust_alloc..| 0x01a4 2e6e 6f74 652e 676e 752e 7072 |.note.gnu.pr| 0x01b0 6f70 6572 7479 002e 7368 7374 |operty..shst| 0x01bc 7274 6162 002e 7374 7274 6162 |rtab..strtab| 0x01c8 002e 7379 6d74 6162 0000 0000 |..symtab....| 0x01d4 0000 0000 0000 0000 0000 0000 |............| 0x01e0 0000 0000 0000 0000 0000 0000 |............| 0x01ec 0000 0000 0000 0000 0000 0000 |............| 0x01f8 0000 0000 0000 0000 0000 0000 |............| 0x0204 0000 0000 0000 0000 0000 0000 |............| 0x0210 0000 0000 0000 0000 0100 0000 |............| 0x021c 0700 0000 0000 0000 0000 0000 |............| 0x0228 0000 0000 0000 0000 4000 0000 |........@...| 0x0234 0000 0000 2000 0000 0000 0000 |.... .......| 0x0240 0000 0000 0000 0000 0800 0000 |............| 0x024c 0000 0000 0000 0000 0000 0000 |............| 0x0258 2600 0000 0200 0000 0000 0000 |&...........| 0x0264 0000 0000 0000 0000 0000 0000 |............| 0x0270 6000 0000 0000 0000 d800 0000 |`...........| 0x027c 0000 0000 0300 0000 0100 0000 |............| 0x0288 0800 0000 0000 0000 1800 0000 |............| 0x0294 0000 0000 1e00 0000 0300 0000 |............| 0x02a0 0000 0000 0000 0000 0000 0000 |............| 0x02ac 0000 0000 3801 0000 0000 0000 |....8.......| 0x02b8 6b00 0000 0000 0000 0000 0000 |k...........| 0x02c4 0000 0000 0100 0000 0000 0000 |............| 0x02d0 0000 0000 0000 0000 1400 0000 |............| 0x02dc 0300 0000 0000 0000 0000 0000 |............| 0x02e8 0000 0000 0000 0000 a301 0000 |............| 0x02f4 0000 0000 2e00 0000 0000 0000 |............| 0x0300 0000 0000 0000 0000 0100 0000 |............| 0x030c 0000 0000 0000 0000 0000 0000 |............| 70907 rustc RET write 792/0x318 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094aed0,0x1d367094ae40) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL __realpathat(0xffffff9c,0x1d367094b038,0x283ea6062400,0x400,0) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib/rustlib/x86_64-unknown-freebsd/lib" 70907 rustc RET __realpathat 0 70907 rustc CALL compat11.stat(0x1d367094b100,0x1d367094b070) 70907 rustc NAMI "/home/ryan/.rustup/toolchains/nightly-x86_64-unknown-freebsd/lib64/rustlib" 70907 rustc RET compat11.stat -1 errno 2 No such file or directory 70907 rustc CALL pipe2(0x1d367094b300,0x100000) 70907 rustc RET pipe2 0 70907 rustc CALL pipe2(0x1d367094b300,0x100000) 70907 rustc RET pipe2 0 70907 rustc CALL pipe2(0x1d367094b3c0,0x100000) 70907 rustc RET pipe2 0 70907 rustc CALL fork 70907 rustc RET fork 71035/0x1157b 70907 rustc CALL close(0xb) 70907 rustc RET close 0 70907 rustc CALL read(0xa,0x1d367094b468,0x8) 70907 rustc GIO fd 10 read 0 bytes "" 70907 rustc RET read 0 70907 rustc CALL close(0xa) 70907 rustc RET close 0 70907 rustc CALL close(0x7) 70907 rustc RET close 0 70907 rustc CALL close(0x9) 70907 rustc RET close 0 70907 rustc CALL fcntl(0x6,F_GETFL) 70907 rustc RET fcntl 2 70907 rustc CALL fcntl(0x6,F_SETFL,0x6) 70907 rustc RET fcntl 0 70907 rustc CALL fcntl(0x8,F_GETFL) 70907 rustc RET fcntl 2 70907 rustc CALL fcntl(0x8,F_SETFL,0x6) 70907 rustc RET fcntl 0 70907 rustc CALL poll(0x1d367094b448,0x2,0xffffffff) 70907 rustc RET poll 2 70907 rustc CALL read(0x6,0x1d367094b350,0x20) 70907 rustc GIO fd 6 read 0 bytes "" 70907 rustc RET read 0 70907 rustc CALL fcntl(0x8,F_GETFL) 70907 rustc RET fcntl 6 70907 rustc CALL fcntl(0x8,F_SETFL,0x2) 70907 rustc RET fcntl 0 70907 rustc CALL read(0x8,0x1d367094b350,0x20) 70907 rustc GIO fd 8 read 0 bytes "" 70907 rustc RET read 0 70907 rustc CALL close(0x8) 70907 rustc RET close 0 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL wait4(0x1157b,0x1d367094b454,0,0) 70907 rustc RET wait4 71035/0x1157b 70907 rustc CALL compat11.lstat(0x1d367094bd60,0x1d367094bcd0) 70907 rustc NAMI "/tmp/rustco4W2Pb" 70907 rustc STRU struct stat {dev=15021012045860407878, ino=353, mode=040755, nlink=2, uid=1002, gid=0, rdev=18446744073709551615, atime=1706376718.076891000, mtime=1706376718.077141000, ctime=1706376718.077141000, birthtime=1706376718.076891000, size=3, blksize=131072, blocks=1, flags=0x800 } 70907 rustc RET compat11.lstat 0 70907 rustc CALL openat(AT_FDCWD,0x1d367094bd60,0x120100) 70907 rustc NAMI "/tmp/rustco4W2Pb" 70907 rustc RET openat 6 70907 rustc CALL fcntl(0x6,F_SETFD,FD_CLOEXEC) 70907 rustc RET fcntl 0 70907 rustc CALL fcntl(0x6,F_ISUNIONSTACK,0x0) 70907 rustc RET fcntl 0 70907 rustc CALL getdirentries(0x6,0x283ea5f97000,0x1000,0x283ea5e2e508) 70907 rustc RET getdirentries 104/0x68 70907 rustc CALL unlinkat(0x6,0x1d367094bb18,0) 70907 rustc NAMI "symbols.o" 70907 rustc RET unlinkat 0 70907 rustc CALL getdirentries(0x6,0x283ea5f97000,0x1000,0x283ea5e2e508) 70907 rustc RET getdirentries 0 70907 rustc CALL close(0x6) 70907 rustc RET close 0 70907 rustc CALL unlinkat(AT_FDCWD,0x1d367094bd60,0x800) 70907 rustc NAMI "/tmp/rustco4W2Pb" 70907 rustc RET unlinkat 0 70907 rustc CALL unlink(0x1d367094bbb8) 70907 rustc NAMI "main.2gzh0qlvu3xdz6o2.rcgu.o" 70907 rustc RET unlink 0 70907 rustc CALL unlink(0x1d367094bbb8) 70907 rustc NAMI "main.main.c614dc505f4d4ead-cgu.0.rcgu.o" 70907 rustc RET unlink 0 70907 rustc CALL sigaltstack(0x1d3670958f90,0) 70907 rustc RET sigaltstack 0 70907 rustc CALL munmap(0x283ea5a50000,0x9800) 70907 rustc RET munmap 0 70907 rustc CALL write(0x2,0x1d3670958330,0x48) 70907 rustc GIO fd 2 wrote 72 bytes "__cxa_thread_call_dtors: dtr 0x1d36623e9000 from unloa\ ded dso, skipping " 70907 rustc RET write 72/0x48 70907 rustc CALL write(0x2,0x1d3670958330,0x48) 70907 rustc GIO fd 2 wrote 72 bytes "__cxa_thread_call_dtors: dtr 0x1d36673d3860 from unloa\ ded dso, skipping " 70907 rustc RET write 72/0x48 70907 rustc CALL write(0x2,0x1d3670958330,0x48) 70907 rustc GIO fd 2 wrote 72 bytes "__cxa_thread_call_dtors: dtr 0x1d3666c16d40 from unloa\ ded dso, skipping " 70907 rustc RET write 72/0x48 70907 rustc CALL write(0x2,0x1d3670958330,0x48) 70907 rustc GIO fd 2 wrote 72 bytes "__cxa_thread_call_dtors: dtr 0x1d366785db80 from unloa\ ded dso, skipping " 70907 rustc RET write 72/0x48 70907 rustc CALL madvise(0x283ea5e00000,0x1000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL madvise(0x283ea5e1e000,0x1000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL madvise(0x283ea5e4c000,0x3000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL madvise(0x283ea5e42000,0x5000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL madvise(0x283ea5e52000,0x3000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL madvise(0x283ea5e27000,0xa000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL madvise(0x283ea5e9d000,0x13000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL madvise(0x283ea5e05000,0x13000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL madvise(0x283ea5eb1000,0x10000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL madvise(0x283ea5e58000,0x15000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL madvise(0x283ea5e33000,0xe000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL madvise(0x283ea5ec4000,0x39000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL madvise(0x283ea5e74000,0x22000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL madvise(0x283ea5fd9000,0x9c000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL madvise(0x283ea5f02000,0xd6000,MADV_FREE) 70907 rustc RET madvise 0 70907 rustc CALL thr_exit(0x283ea5412700) 70907 rustc RET _umtx_op 0 70907 rustc CALL sigaltstack(0x1d365f0a2a28,0) 70907 rustc RET sigaltstack 0 70907 rustc CALL munmap(0x283ea5a21000,0x9800) 70907 rustc RET munmap 0 70907 rustc CALL exit(0) ```