├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── PULL_REQUEST_TEMPLATE ├── SUPPORT.md └── workflows │ └── test.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── PATENTS ├── README.md ├── SECURITY.md ├── VERSION ├── api ├── README ├── except.txt ├── go1.1.txt ├── go1.10.txt ├── go1.11.txt ├── go1.12.txt ├── go1.13.txt ├── go1.14.txt ├── go1.15.txt ├── go1.16.txt ├── go1.17.txt ├── go1.18.txt ├── go1.19.txt ├── go1.2.txt ├── go1.20.txt ├── go1.21.txt ├── go1.22.txt ├── go1.3.txt ├── go1.4.txt ├── go1.5.txt ├── go1.6.txt ├── go1.7.txt ├── go1.8.txt ├── go1.9.txt └── go1.txt ├── codereview.cfg ├── doc ├── asm.html ├── go1.17_spec.html ├── go_mem.html ├── go_spec.html └── godebug.md ├── docker-compose.yaml ├── go.env ├── lib └── time │ ├── README │ ├── mkzip.go │ ├── update.bash │ └── zoneinfo.zip ├── misc ├── cgo │ └── gmp │ │ ├── fib.go │ │ ├── gmp.go │ │ └── pi.go ├── chrome │ └── gophertool │ │ ├── README.txt │ │ ├── background.html │ │ ├── background.js │ │ ├── gopher.js │ │ ├── gopher.png │ │ ├── manifest.json │ │ ├── popup.html │ │ └── popup.js ├── editors ├── go.mod ├── go_android_exec │ ├── README │ ├── exitcode_test.go │ └── main.go ├── ios │ ├── README │ ├── clangwrap.sh │ ├── detect.go │ └── go_ios_exec.go ├── linkcheck │ └── linkcheck.go └── wasm │ ├── go_js_wasm_exec │ ├── go_wasip1_wasm_exec │ ├── wasm_exec.html │ ├── wasm_exec.js │ └── wasm_exec_node.js ├── src ├── Make.dist ├── README.vendor ├── all.bash ├── all.bat ├── all.rc ├── archive │ ├── tar │ │ ├── common.go │ │ ├── example_test.go │ │ ├── format.go │ │ ├── fuzz_test.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── stat_actime1.go │ │ ├── stat_actime2.go │ │ ├── stat_unix.go │ │ ├── strconv.go │ │ ├── strconv_test.go │ │ ├── tar_test.go │ │ ├── testdata │ │ │ ├── file-and-dir.tar │ │ │ ├── gnu-incremental.tar │ │ │ ├── gnu-long-nul.tar │ │ │ ├── gnu-multi-hdrs.tar │ │ │ ├── gnu-nil-sparse-data.tar │ │ │ ├── gnu-nil-sparse-hole.tar │ │ │ ├── gnu-not-utf8.tar │ │ │ ├── gnu-sparse-big.tar │ │ │ ├── gnu-utf8.tar │ │ │ ├── gnu.tar │ │ │ ├── hardlink.tar │ │ │ ├── hdr-only.tar │ │ │ ├── invalid-go17.tar │ │ │ ├── issue10968.tar │ │ │ ├── issue11169.tar │ │ │ ├── issue12435.tar │ │ │ ├── neg-size.tar │ │ │ ├── nil-uid.tar │ │ │ ├── pax-bad-hdr-file.tar │ │ │ ├── pax-bad-hdr-large.tar.bz2 │ │ │ ├── pax-bad-mtime-file.tar │ │ │ ├── pax-global-records.tar │ │ │ ├── pax-multi-hdrs.tar │ │ │ ├── pax-nil-sparse-data.tar │ │ │ ├── pax-nil-sparse-hole.tar │ │ │ ├── pax-nul-path.tar │ │ │ ├── pax-nul-xattrs.tar │ │ │ ├── pax-path-hdr.tar │ │ │ ├── pax-pos-size-file.tar │ │ │ ├── pax-records.tar │ │ │ ├── pax-sparse-big.tar │ │ │ ├── pax.tar │ │ │ ├── small.txt │ │ │ ├── small2.txt │ │ │ ├── sparse-formats.tar │ │ │ ├── star.tar │ │ │ ├── trailing-slash.tar │ │ │ ├── ustar-file-devs.tar │ │ │ ├── ustar-file-reg.tar │ │ │ ├── ustar.tar │ │ │ ├── v7.tar │ │ │ ├── writer-big-long.tar │ │ │ ├── writer-big.tar │ │ │ ├── writer.tar │ │ │ └── xattrs.tar │ │ ├── writer.go │ │ └── writer_test.go │ └── zip │ │ ├── example_test.go │ │ ├── fuzz_test.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── register.go │ │ ├── struct.go │ │ ├── testdata │ │ ├── comment-truncated.zip │ │ ├── crc32-not-streamed.zip │ │ ├── dd.zip │ │ ├── dupdir.zip │ │ ├── go-no-datadesc-sig.zip.base64 │ │ ├── go-with-datadesc-sig.zip │ │ ├── gophercolor16x16.png │ │ ├── readme.notzip │ │ ├── readme.zip │ │ ├── subdir.zip │ │ ├── symlink.zip │ │ ├── test-badbase.zip │ │ ├── test-baddirsz.zip │ │ ├── test-prefix.zip │ │ ├── test-trailing-junk.zip │ │ ├── test.zip │ │ ├── time-22738.zip │ │ ├── time-7zip.zip │ │ ├── time-go.zip │ │ ├── time-infozip.zip │ │ ├── time-osx.zip │ │ ├── time-win7.zip │ │ ├── time-winrar.zip │ │ ├── time-winzip.zip │ │ ├── unix.zip │ │ ├── utf8-7zip.zip │ │ ├── utf8-infozip.zip │ │ ├── utf8-osx.zip │ │ ├── utf8-winrar.zip │ │ ├── utf8-winzip.zip │ │ ├── winxp.zip │ │ ├── zip64-2.zip │ │ └── zip64.zip │ │ ├── writer.go │ │ ├── writer_test.go │ │ └── zip_test.go ├── arena │ ├── arena.go │ └── arena_test.go ├── bootstrap.bash ├── bufio │ ├── bufio.go │ ├── bufio_test.go │ ├── example_test.go │ ├── export_test.go │ ├── scan.go │ └── scan_test.go ├── buildall.bash ├── builtin │ └── builtin.go ├── bytes │ ├── boundary_test.go │ ├── buffer.go │ ├── buffer_test.go │ ├── bytes.go │ ├── bytes_js_wasm_test.go │ ├── bytes_test.go │ ├── compare_test.go │ ├── example_test.go │ ├── export_test.go │ ├── reader.go │ └── reader_test.go ├── clean.bash ├── clean.bat ├── clean.rc ├── cmd │ ├── README.vendor │ ├── addr2line │ │ ├── addr2line_test.go │ │ └── main.go │ ├── api │ │ ├── api_test.go │ │ ├── boring_test.go │ │ ├── main_test.go │ │ └── testdata │ │ │ └── src │ │ │ ├── issue21181 │ │ │ ├── dep │ │ │ │ ├── p.go │ │ │ │ └── p_amd64.go │ │ │ ├── indirect │ │ │ │ └── p.go │ │ │ └── p │ │ │ │ ├── p.go │ │ │ │ ├── p_amd64.go │ │ │ │ └── p_generic.go │ │ │ ├── issue29837 │ │ │ └── p │ │ │ │ └── README │ │ │ ├── issue64958 │ │ │ └── p │ │ │ │ └── p.go │ │ │ └── pkg │ │ │ ├── p1 │ │ │ ├── golden.txt │ │ │ └── p1.go │ │ │ ├── p2 │ │ │ ├── golden.txt │ │ │ └── p2.go │ │ │ ├── p3 │ │ │ ├── golden.txt │ │ │ └── p3.go │ │ │ └── p4 │ │ │ ├── golden.txt │ │ │ └── p4.go │ ├── asm │ │ ├── doc.go │ │ ├── internal │ │ │ ├── arch │ │ │ │ ├── arch.go │ │ │ │ ├── arm.go │ │ │ │ ├── arm64.go │ │ │ │ ├── loong64.go │ │ │ │ ├── mips.go │ │ │ │ ├── ppc64.go │ │ │ │ ├── riscv64.go │ │ │ │ └── s390x.go │ │ │ ├── asm │ │ │ │ ├── asm.go │ │ │ │ ├── endtoend_test.go │ │ │ │ ├── expr_test.go │ │ │ │ ├── line_test.go │ │ │ │ ├── operand_test.go │ │ │ │ ├── parse.go │ │ │ │ ├── pseudo_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── 386.s │ │ │ │ │ ├── 386enc.s │ │ │ │ │ ├── amd64.s │ │ │ │ │ ├── amd64dynlinkerror.s │ │ │ │ │ ├── amd64enc.s │ │ │ │ │ ├── amd64enc_extra.s │ │ │ │ │ ├── amd64error.s │ │ │ │ │ ├── arm.s │ │ │ │ │ ├── arm64.s │ │ │ │ │ ├── arm64enc.s │ │ │ │ │ ├── arm64error.s │ │ │ │ │ ├── armerror.s │ │ │ │ │ ├── armv6.s │ │ │ │ │ ├── avx512enc │ │ │ │ │ ├── aes_avx512f.s │ │ │ │ │ ├── avx512_4fmaps.s │ │ │ │ │ ├── avx512_4vnniw.s │ │ │ │ │ ├── avx512_bitalg.s │ │ │ │ │ ├── avx512_ifma.s │ │ │ │ │ ├── avx512_vbmi.s │ │ │ │ │ ├── avx512_vbmi2.s │ │ │ │ │ ├── avx512_vnni.s │ │ │ │ │ ├── avx512_vpopcntdq.s │ │ │ │ │ ├── avx512bw.s │ │ │ │ │ ├── avx512cd.s │ │ │ │ │ ├── avx512dq.s │ │ │ │ │ ├── avx512er.s │ │ │ │ │ ├── avx512f.s │ │ │ │ │ ├── avx512pf.s │ │ │ │ │ ├── gfni_avx512f.s │ │ │ │ │ └── vpclmulqdq_avx512f.s │ │ │ │ │ ├── buildtagerror.s │ │ │ │ │ ├── duperror.s │ │ │ │ │ ├── loong64.s │ │ │ │ │ ├── loong64enc1.s │ │ │ │ │ ├── loong64enc2.s │ │ │ │ │ ├── loong64enc3.s │ │ │ │ │ ├── mips.s │ │ │ │ │ ├── mips64.s │ │ │ │ │ ├── ppc64.s │ │ │ │ │ ├── ppc64_p10.s │ │ │ │ │ ├── riscv64.s │ │ │ │ │ ├── riscv64error.s │ │ │ │ │ └── s390x.s │ │ │ ├── flags │ │ │ │ └── flags.go │ │ │ └── lex │ │ │ │ ├── input.go │ │ │ │ ├── lex.go │ │ │ │ ├── lex_test.go │ │ │ │ ├── slice.go │ │ │ │ ├── stack.go │ │ │ │ └── tokenizer.go │ │ └── main.go │ ├── buildid │ │ ├── buildid.go │ │ └── doc.go │ ├── cgo │ │ ├── ast.go │ │ ├── ast_go1.go │ │ ├── ast_go118.go │ │ ├── doc.go │ │ ├── gcc.go │ │ ├── godefs.go │ │ ├── internal │ │ │ ├── cgotest │ │ │ │ └── overlaydir.go │ │ │ ├── swig │ │ │ │ ├── swig_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── callback │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── main.go │ │ │ │ │ ├── main.h │ │ │ │ │ └── main.swigcxx │ │ │ │ │ └── stdio │ │ │ │ │ ├── main.go │ │ │ │ │ └── main.swig │ │ │ ├── test │ │ │ │ ├── backdoor.go │ │ │ │ ├── buildid_linux.go │ │ │ │ ├── callback.go │ │ │ │ ├── callback_c.c │ │ │ │ ├── callback_c_gc.c │ │ │ │ ├── callback_c_gccgo.c │ │ │ │ ├── callback_windows.go │ │ │ │ ├── callstub_linux_ppc64le.go │ │ │ │ ├── cgo_linux_test.go │ │ │ │ ├── cgo_stubs_android_test.go │ │ │ │ ├── cgo_test.go │ │ │ │ ├── cgo_thread_lock.go │ │ │ │ ├── cgo_unix_test.go │ │ │ │ ├── cthread_unix.c │ │ │ │ ├── cthread_windows.c │ │ │ │ ├── gcc68255.go │ │ │ │ ├── gcc68255 │ │ │ │ │ ├── a.go │ │ │ │ │ ├── c.c │ │ │ │ │ └── c.h │ │ │ │ ├── issue1435.go │ │ │ │ ├── issue18146.go │ │ │ │ ├── issue20266.go │ │ │ │ ├── issue20266 │ │ │ │ │ └── issue20266.h │ │ │ │ ├── issue20910.c │ │ │ │ ├── issue21897.go │ │ │ │ ├── issue21897b.go │ │ │ │ ├── issue23555.go │ │ │ │ ├── issue23555a │ │ │ │ │ └── a.go │ │ │ │ ├── issue23555b │ │ │ │ │ └── a.go │ │ │ │ ├── issue24161_darwin_test.go │ │ │ │ ├── issue24161arg │ │ │ │ │ ├── def.go │ │ │ │ │ └── use.go │ │ │ │ ├── issue24161e0 │ │ │ │ │ └── main.go │ │ │ │ ├── issue24161e1 │ │ │ │ │ └── main.go │ │ │ │ ├── issue24161e2 │ │ │ │ │ └── main.go │ │ │ │ ├── issue24161res │ │ │ │ │ └── restype.go │ │ │ │ ├── issue26213 │ │ │ │ │ ├── jni.h │ │ │ │ │ └── test26213.go │ │ │ │ ├── issue26430.go │ │ │ │ ├── issue26430 │ │ │ │ │ ├── a.go │ │ │ │ │ └── b.go │ │ │ │ ├── issue26743.go │ │ │ │ ├── issue26743 │ │ │ │ │ ├── a.go │ │ │ │ │ └── b.go │ │ │ │ ├── issue27054 │ │ │ │ │ ├── egl.h │ │ │ │ │ └── test27054.go │ │ │ │ ├── issue27340.go │ │ │ │ ├── issue27340 │ │ │ │ │ └── a.go │ │ │ │ ├── issue29563.go │ │ │ │ ├── issue29563 │ │ │ │ │ ├── weak.go │ │ │ │ │ ├── weak1.c │ │ │ │ │ └── weak2.c │ │ │ │ ├── issue30527.go │ │ │ │ ├── issue30527 │ │ │ │ │ ├── a.go │ │ │ │ │ └── b.go │ │ │ │ ├── issue31891.c │ │ │ │ ├── issue4029.c │ │ │ │ ├── issue4029.go │ │ │ │ ├── issue4029w.go │ │ │ │ ├── issue41761.go │ │ │ │ ├── issue41761a │ │ │ │ │ └── a.go │ │ │ │ ├── issue42018.go │ │ │ │ ├── issue42018_windows.go │ │ │ │ ├── issue42495.go │ │ │ │ ├── issue4273.c │ │ │ │ ├── issue4273b.c │ │ │ │ ├── issue4339.c │ │ │ │ ├── issue4339.h │ │ │ │ ├── issue43639.go │ │ │ │ ├── issue43639 │ │ │ │ │ └── a.go │ │ │ │ ├── issue52611.go │ │ │ │ ├── issue52611a │ │ │ │ │ ├── a.go │ │ │ │ │ └── b.go │ │ │ │ ├── issue52611b │ │ │ │ │ ├── a.go │ │ │ │ │ └── b.go │ │ │ │ ├── issue5548_c.c │ │ │ │ ├── issue5740a.c │ │ │ │ ├── issue5740b.c │ │ │ │ ├── issue6833_c.c │ │ │ │ ├── issue6907export_c.c │ │ │ │ ├── issue6997_linux.c │ │ │ │ ├── issue6997_linux.go │ │ │ │ ├── issue7234_test.go │ │ │ │ ├── issue8148.c │ │ │ │ ├── issue8148.go │ │ │ │ ├── issue8331.h │ │ │ │ ├── issue8517.go │ │ │ │ ├── issue8517_windows.c │ │ │ │ ├── issue8517_windows.go │ │ │ │ ├── issue8694.go │ │ │ │ ├── issue8756.go │ │ │ │ ├── issue8756 │ │ │ │ │ └── issue8756.go │ │ │ │ ├── issue8811.c │ │ │ │ ├── issue8828.go │ │ │ │ ├── issue8828 │ │ │ │ │ ├── issue8828.c │ │ │ │ │ └── trivial.go │ │ │ │ ├── issue9026.go │ │ │ │ ├── issue9026 │ │ │ │ │ └── issue9026.go │ │ │ │ ├── issue9400 │ │ │ │ │ ├── asm_386.s │ │ │ │ │ ├── asm_amd64x.s │ │ │ │ │ ├── asm_arm.s │ │ │ │ │ ├── asm_arm64.s │ │ │ │ │ ├── asm_loong64.s │ │ │ │ │ ├── asm_mips64x.s │ │ │ │ │ ├── asm_mipsx.s │ │ │ │ │ ├── asm_ppc64x.s │ │ │ │ │ ├── asm_riscv64.s │ │ │ │ │ ├── asm_s390x.s │ │ │ │ │ ├── gccgo.go │ │ │ │ │ └── stubs.go │ │ │ │ ├── issue9400_linux.go │ │ │ │ ├── issue9510.go │ │ │ │ ├── issue9510a │ │ │ │ │ └── a.go │ │ │ │ ├── issue9510b │ │ │ │ │ └── b.go │ │ │ │ ├── linux_ppc64le_test.go │ │ │ │ ├── seh_internal_windows_test.go │ │ │ │ ├── seh_windows_test.go │ │ │ │ ├── setgid2_linux.go │ │ │ │ ├── setgid_linux.go │ │ │ │ ├── sigaltstack.go │ │ │ │ ├── sigprocmask.c │ │ │ │ ├── sigprocmask.go │ │ │ │ ├── stubtest_linux_ppc64le.S │ │ │ │ ├── test.go │ │ │ │ ├── test26213.go │ │ │ │ ├── test_unix.go │ │ │ │ ├── test_windows.go │ │ │ │ ├── testx.c │ │ │ │ ├── testx.go │ │ │ │ └── typeparam.go │ │ │ ├── testcarchive │ │ │ │ ├── carchive_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── libgo │ │ │ │ │ └── libgo.go │ │ │ │ │ ├── libgo2 │ │ │ │ │ └── libgo2.go │ │ │ │ │ ├── libgo3 │ │ │ │ │ └── libgo3.go │ │ │ │ │ ├── libgo4 │ │ │ │ │ └── libgo4.go │ │ │ │ │ ├── libgo6 │ │ │ │ │ └── sigprof.go │ │ │ │ │ ├── libgo7 │ │ │ │ │ └── sink.go │ │ │ │ │ ├── libgo8 │ │ │ │ │ └── a.go │ │ │ │ │ ├── libgo9 │ │ │ │ │ └── a.go │ │ │ │ │ ├── main.c │ │ │ │ │ ├── main2.c │ │ │ │ │ ├── main3.c │ │ │ │ │ ├── main4.c │ │ │ │ │ ├── main5.c │ │ │ │ │ ├── main6.c │ │ │ │ │ ├── main7.c │ │ │ │ │ ├── main8.c │ │ │ │ │ ├── main9.c │ │ │ │ │ ├── main_unix.c │ │ │ │ │ ├── main_windows.c │ │ │ │ │ └── p │ │ │ │ │ └── p.go │ │ │ ├── testcshared │ │ │ │ ├── cshared_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── go2c2go │ │ │ │ │ ├── go │ │ │ │ │ │ └── shlib.go │ │ │ │ │ ├── m1 │ │ │ │ │ │ ├── c.c │ │ │ │ │ │ └── main.go │ │ │ │ │ └── m2 │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── issue36233 │ │ │ │ │ └── issue36233.go │ │ │ │ │ ├── libgo │ │ │ │ │ └── libgo.go │ │ │ │ │ ├── libgo2 │ │ │ │ │ ├── dup2.go │ │ │ │ │ ├── dup3.go │ │ │ │ │ └── libgo2.go │ │ │ │ │ ├── libgo4 │ │ │ │ │ └── libgo4.go │ │ │ │ │ ├── libgo5 │ │ │ │ │ └── libgo5.go │ │ │ │ │ ├── main0.c │ │ │ │ │ ├── main1.c │ │ │ │ │ ├── main2.c │ │ │ │ │ ├── main3.c │ │ │ │ │ ├── main4.c │ │ │ │ │ ├── main5.c │ │ │ │ │ └── p │ │ │ │ │ └── p.go │ │ │ ├── testerrors │ │ │ │ ├── argposition_test.go │ │ │ │ ├── badsym_test.go │ │ │ │ ├── errors_test.go │ │ │ │ ├── ptr_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── err1.go │ │ │ │ │ ├── err2.go │ │ │ │ │ ├── err4.go │ │ │ │ │ ├── err5.go │ │ │ │ │ ├── issue11097a.go │ │ │ │ │ ├── issue11097b.go │ │ │ │ │ ├── issue14669.go │ │ │ │ │ ├── issue18452.go │ │ │ │ │ ├── issue18889.go │ │ │ │ │ ├── issue28069.go │ │ │ │ │ ├── issue28721.go │ │ │ │ │ ├── issue33061.go │ │ │ │ │ ├── issue42580.go │ │ │ │ │ ├── issue50710.go │ │ │ │ │ ├── long_double_size.go │ │ │ │ │ ├── malloc.go │ │ │ │ │ └── notmatchedcfunction.go │ │ │ ├── testfortran │ │ │ │ ├── fortran_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── helloworld │ │ │ │ │ └── helloworld.f90 │ │ │ │ │ └── testprog │ │ │ │ │ ├── answer.f90 │ │ │ │ │ └── fortran.go │ │ │ ├── testgodefs │ │ │ │ ├── testdata │ │ │ │ │ ├── anonunion.go │ │ │ │ │ ├── bitfields.go │ │ │ │ │ ├── fieldtypedef.go │ │ │ │ │ ├── issue37479.go │ │ │ │ │ ├── issue37621.go │ │ │ │ │ ├── issue38649.go │ │ │ │ │ ├── issue39534.go │ │ │ │ │ ├── issue48396.go │ │ │ │ │ ├── issue8478.go │ │ │ │ │ └── main.go │ │ │ │ └── testgodefs_test.go │ │ │ ├── testlife │ │ │ │ ├── life_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── c-life.c │ │ │ │ │ ├── life.go │ │ │ │ │ ├── life.h │ │ │ │ │ ├── main.go │ │ │ │ │ └── main.out │ │ │ ├── testnocgo │ │ │ │ ├── nocgo.go │ │ │ │ └── nocgo_test.go │ │ │ ├── testplugin │ │ │ │ ├── altpath │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── common │ │ │ │ │ │ └── common.go │ │ │ │ │ │ └── plugin-mismatch │ │ │ │ │ │ └── main.go │ │ │ │ ├── plugin_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── checkdwarf │ │ │ │ │ └── main.go │ │ │ │ │ ├── common │ │ │ │ │ └── common.go │ │ │ │ │ ├── forkexec │ │ │ │ │ └── main.go │ │ │ │ │ ├── host │ │ │ │ │ └── host.go │ │ │ │ │ ├── iface │ │ │ │ │ └── main.go │ │ │ │ │ ├── iface_a │ │ │ │ │ └── a.go │ │ │ │ │ ├── iface_b │ │ │ │ │ └── b.go │ │ │ │ │ ├── iface_i │ │ │ │ │ └── i.go │ │ │ │ │ ├── issue18584 │ │ │ │ │ ├── main.go │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── issue18676 │ │ │ │ │ ├── dynamodbstreamsevt │ │ │ │ │ │ └── definition.go │ │ │ │ │ ├── main.go │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── issue19418 │ │ │ │ │ ├── main.go │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── issue19529 │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── issue19534 │ │ │ │ │ ├── main.go │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── issue22175 │ │ │ │ │ ├── main.go │ │ │ │ │ ├── plugin1.go │ │ │ │ │ └── plugin2.go │ │ │ │ │ ├── issue22295.pkg │ │ │ │ │ ├── main.go │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── issue24351 │ │ │ │ │ ├── main.go │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── issue25756 │ │ │ │ │ ├── main.go │ │ │ │ │ └── plugin │ │ │ │ │ │ ├── c-life.c │ │ │ │ │ │ ├── life.go │ │ │ │ │ │ └── life.h │ │ │ │ │ ├── issue44956 │ │ │ │ │ ├── base │ │ │ │ │ │ └── base.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── plugin1.go │ │ │ │ │ └── plugin2.go │ │ │ │ │ ├── issue52937 │ │ │ │ │ └── main.go │ │ │ │ │ ├── issue53989 │ │ │ │ │ ├── main.go │ │ │ │ │ ├── p │ │ │ │ │ │ └── p.go │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── issue62430 │ │ │ │ │ ├── main.go │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── issue67976 │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── mangle │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── method │ │ │ │ │ ├── main.go │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── method2 │ │ │ │ │ ├── main.go │ │ │ │ │ ├── p │ │ │ │ │ │ └── p.go │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── method3 │ │ │ │ │ ├── main.go │ │ │ │ │ ├── p │ │ │ │ │ │ └── p.go │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── plugin1 │ │ │ │ │ └── plugin1.go │ │ │ │ │ ├── plugin2 │ │ │ │ │ └── plugin2.go │ │ │ │ │ ├── sub │ │ │ │ │ └── plugin1 │ │ │ │ │ │ └── plugin1.go │ │ │ │ │ ├── unnamed1 │ │ │ │ │ └── main.go │ │ │ │ │ └── unnamed2 │ │ │ │ │ └── main.go │ │ │ ├── testsanitizers │ │ │ │ ├── asan_test.go │ │ │ │ ├── cc_test.go │ │ │ │ ├── cshared_test.go │ │ │ │ ├── empty_test.go │ │ │ │ ├── libfuzzer_test.go │ │ │ │ ├── msan_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── arena_fail.go │ │ │ │ │ ├── asan1_fail.go │ │ │ │ │ ├── asan2_fail.go │ │ │ │ │ ├── asan3_fail.go │ │ │ │ │ ├── asan4_fail.go │ │ │ │ │ ├── asan5_fail.go │ │ │ │ │ ├── asan_global1_fail.go │ │ │ │ │ ├── asan_global2_fail.go │ │ │ │ │ ├── asan_global3_fail.go │ │ │ │ │ ├── asan_global4_fail.go │ │ │ │ │ ├── asan_global5.go │ │ │ │ │ ├── asan_linkerx │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── p │ │ │ │ │ │ │ └── p.go │ │ │ │ │ ├── asan_unsafe_fail1.go │ │ │ │ │ ├── asan_unsafe_fail2.go │ │ │ │ │ ├── asan_unsafe_fail3.go │ │ │ │ │ ├── asan_useAfterReturn.go │ │ │ │ │ ├── libfuzzer1.go │ │ │ │ │ ├── libfuzzer2.c │ │ │ │ │ ├── libfuzzer2.go │ │ │ │ │ ├── msan.go │ │ │ │ │ ├── msan2.go │ │ │ │ │ ├── msan2_cmsan.go │ │ │ │ │ ├── msan3.go │ │ │ │ │ ├── msan4.go │ │ │ │ │ ├── msan5.go │ │ │ │ │ ├── msan6.go │ │ │ │ │ ├── msan7.go │ │ │ │ │ ├── msan8.go │ │ │ │ │ ├── msan_fail.go │ │ │ │ │ ├── msan_shared.go │ │ │ │ │ ├── tsan.go │ │ │ │ │ ├── tsan10.go │ │ │ │ │ ├── tsan11.go │ │ │ │ │ ├── tsan12.go │ │ │ │ │ ├── tsan13.go │ │ │ │ │ ├── tsan14.go │ │ │ │ │ ├── tsan2.go │ │ │ │ │ ├── tsan3.go │ │ │ │ │ ├── tsan4.go │ │ │ │ │ ├── tsan5.go │ │ │ │ │ ├── tsan6.go │ │ │ │ │ ├── tsan7.go │ │ │ │ │ ├── tsan8.go │ │ │ │ │ ├── tsan9.go │ │ │ │ │ └── tsan_shared.go │ │ │ │ └── tsan_test.go │ │ │ ├── testshared │ │ │ │ ├── shared_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── dep2 │ │ │ │ │ └── dep2.go │ │ │ │ │ ├── dep3 │ │ │ │ │ └── dep3.go │ │ │ │ │ ├── depBase │ │ │ │ │ ├── asm.s │ │ │ │ │ ├── dep.go │ │ │ │ │ ├── gccgo.go │ │ │ │ │ └── stubs.go │ │ │ │ │ ├── depBaseInternal │ │ │ │ │ └── dep.go │ │ │ │ │ ├── division │ │ │ │ │ └── division.go │ │ │ │ │ ├── exe │ │ │ │ │ └── exe.go │ │ │ │ │ ├── exe2 │ │ │ │ │ └── exe2.go │ │ │ │ │ ├── exe3 │ │ │ │ │ └── exe3.go │ │ │ │ │ ├── execgo │ │ │ │ │ └── exe.go │ │ │ │ │ ├── explicit │ │ │ │ │ └── explicit.go │ │ │ │ │ ├── gcdata │ │ │ │ │ ├── main │ │ │ │ │ │ └── main.go │ │ │ │ │ └── p │ │ │ │ │ │ └── p.go │ │ │ │ │ ├── global │ │ │ │ │ └── main.go │ │ │ │ │ ├── globallib │ │ │ │ │ └── global.go │ │ │ │ │ ├── iface │ │ │ │ │ └── main.go │ │ │ │ │ ├── iface_a │ │ │ │ │ └── a.go │ │ │ │ │ ├── iface_b │ │ │ │ │ └── b.go │ │ │ │ │ ├── iface_i │ │ │ │ │ └── i.go │ │ │ │ │ ├── implicit │ │ │ │ │ └── implicit.go │ │ │ │ │ ├── implicitcmd │ │ │ │ │ └── implicitcmd.go │ │ │ │ │ ├── issue25065 │ │ │ │ │ └── a.go │ │ │ │ │ ├── issue30768 │ │ │ │ │ ├── issue30768lib │ │ │ │ │ │ └── lib.go │ │ │ │ │ └── x_test.go │ │ │ │ │ ├── issue39777 │ │ │ │ │ ├── a │ │ │ │ │ │ └── a.go │ │ │ │ │ └── b │ │ │ │ │ │ └── b.go │ │ │ │ │ ├── issue44031 │ │ │ │ │ ├── a │ │ │ │ │ │ └── a.go │ │ │ │ │ ├── b │ │ │ │ │ │ └── b.go │ │ │ │ │ └── main │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── issue47837 │ │ │ │ │ ├── a │ │ │ │ │ │ └── a.go │ │ │ │ │ └── main │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── issue58966 │ │ │ │ │ └── main.go │ │ │ │ │ ├── issue62277 │ │ │ │ │ ├── issue62277_test.go │ │ │ │ │ └── p │ │ │ │ │ │ └── p.go │ │ │ │ │ └── trivial │ │ │ │ │ └── trivial.go │ │ │ ├── testso │ │ │ │ ├── so_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── so │ │ │ │ │ ├── cgoso.c │ │ │ │ │ ├── cgoso.go │ │ │ │ │ ├── cgoso_c.c │ │ │ │ │ ├── cgoso_unix.go │ │ │ │ │ └── main.go │ │ │ │ │ └── sovar │ │ │ │ │ ├── cgoso.go │ │ │ │ │ ├── cgoso_c.c │ │ │ │ │ ├── cgoso_c.h │ │ │ │ │ └── main.go │ │ │ ├── teststdio │ │ │ │ ├── stdio_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── chain.go │ │ │ │ │ ├── chain.out │ │ │ │ │ ├── fib.go │ │ │ │ │ ├── fib.out │ │ │ │ │ ├── hello.go │ │ │ │ │ ├── hello.out │ │ │ │ │ └── stdio │ │ │ │ │ ├── file.go │ │ │ │ │ └── stdio.go │ │ │ └── testtls │ │ │ │ ├── tls.c │ │ │ │ ├── tls.go │ │ │ │ ├── tls_none.go │ │ │ │ └── tls_test.go │ │ ├── main.go │ │ ├── out.go │ │ └── util.go │ ├── compile │ │ ├── README.md │ │ ├── abi-internal.md │ │ ├── default.pgo │ │ ├── doc.go │ │ ├── internal │ │ │ ├── abi │ │ │ │ └── abiutils.go │ │ │ ├── abt │ │ │ │ ├── avlint32.go │ │ │ │ └── avlint32_test.go │ │ │ ├── amd64 │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ ├── ssa.go │ │ │ │ └── versions_test.go │ │ │ ├── arm │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ └── ssa.go │ │ │ ├── arm64 │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ └── ssa.go │ │ │ ├── base │ │ │ │ ├── base.go │ │ │ │ ├── bootstrap_false.go │ │ │ │ ├── bootstrap_true.go │ │ │ │ ├── debug.go │ │ │ │ ├── flag.go │ │ │ │ ├── hashdebug.go │ │ │ │ ├── hashdebug_test.go │ │ │ │ ├── link.go │ │ │ │ ├── mapfile_mmap.go │ │ │ │ ├── mapfile_read.go │ │ │ │ ├── print.go │ │ │ │ └── timings.go │ │ │ ├── bitvec │ │ │ │ └── bv.go │ │ │ ├── compare │ │ │ │ ├── compare.go │ │ │ │ └── compare_test.go │ │ │ ├── coverage │ │ │ │ └── cover.go │ │ │ ├── devirtualize │ │ │ │ ├── devirtualize.go │ │ │ │ ├── pgo.go │ │ │ │ └── pgo_test.go │ │ │ ├── dwarfgen │ │ │ │ ├── dwarf.go │ │ │ │ ├── dwinl.go │ │ │ │ ├── marker.go │ │ │ │ ├── scope.go │ │ │ │ └── scope_test.go │ │ │ ├── escape │ │ │ │ ├── assign.go │ │ │ │ ├── call.go │ │ │ │ ├── escape.go │ │ │ │ ├── expr.go │ │ │ │ ├── graph.go │ │ │ │ ├── leaks.go │ │ │ │ ├── solve.go │ │ │ │ ├── stmt.go │ │ │ │ └── utils.go │ │ │ ├── gc │ │ │ │ ├── compile.go │ │ │ │ ├── export.go │ │ │ │ ├── main.go │ │ │ │ ├── obj.go │ │ │ │ └── util.go │ │ │ ├── importer │ │ │ │ ├── exportdata.go │ │ │ │ ├── gcimporter.go │ │ │ │ ├── gcimporter_test.go │ │ │ │ ├── iimport.go │ │ │ │ ├── support.go │ │ │ │ ├── testdata │ │ │ │ │ ├── a.go │ │ │ │ │ ├── b.go │ │ │ │ │ ├── exports.go │ │ │ │ │ ├── generics.go │ │ │ │ │ ├── issue15920.go │ │ │ │ │ ├── issue20046.go │ │ │ │ │ ├── issue25301.go │ │ │ │ │ ├── issue25596.go │ │ │ │ │ ├── p.go │ │ │ │ │ └── versions │ │ │ │ │ │ └── test.go │ │ │ │ └── ureader.go │ │ │ ├── inline │ │ │ │ ├── inl.go │ │ │ │ ├── inlheur │ │ │ │ │ ├── actualexprpropbits_string.go │ │ │ │ │ ├── analyze.go │ │ │ │ │ ├── analyze_func_callsites.go │ │ │ │ │ ├── analyze_func_flags.go │ │ │ │ │ ├── analyze_func_params.go │ │ │ │ │ ├── analyze_func_returns.go │ │ │ │ │ ├── callsite.go │ │ │ │ │ ├── cspropbits_string.go │ │ │ │ │ ├── debugflags_test.go │ │ │ │ │ ├── dumpscores_test.go │ │ │ │ │ ├── eclassify.go │ │ │ │ │ ├── funcprop_string.go │ │ │ │ │ ├── funcpropbits_string.go │ │ │ │ │ ├── funcprops_test.go │ │ │ │ │ ├── function_properties.go │ │ │ │ │ ├── names.go │ │ │ │ │ ├── parampropbits_string.go │ │ │ │ │ ├── pstate_string.go │ │ │ │ │ ├── resultpropbits_string.go │ │ │ │ │ ├── score_callresult_uses.go │ │ │ │ │ ├── scoreadjusttyp_string.go │ │ │ │ │ ├── scoring.go │ │ │ │ │ ├── serialize.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── dumpscores.go │ │ │ │ │ │ └── props │ │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ │ ├── acrosscall.go │ │ │ │ │ │ │ ├── calls.go │ │ │ │ │ │ │ ├── funcflags.go │ │ │ │ │ │ │ ├── params.go │ │ │ │ │ │ │ ├── returns.go │ │ │ │ │ │ │ └── returns2.go │ │ │ │ │ ├── texpr_classify_test.go │ │ │ │ │ ├── trace_off.go │ │ │ │ │ ├── trace_on.go │ │ │ │ │ └── tserial_test.go │ │ │ │ └── interleaved │ │ │ │ │ └── interleaved.go │ │ │ ├── ir │ │ │ │ ├── abi.go │ │ │ │ ├── bitset.go │ │ │ │ ├── cfg.go │ │ │ │ ├── check_reassign_no.go │ │ │ │ ├── check_reassign_yes.go │ │ │ │ ├── class_string.go │ │ │ │ ├── const.go │ │ │ │ ├── copy.go │ │ │ │ ├── dump.go │ │ │ │ ├── expr.go │ │ │ │ ├── fmt.go │ │ │ │ ├── func.go │ │ │ │ ├── func_test.go │ │ │ │ ├── ir.go │ │ │ │ ├── mini.go │ │ │ │ ├── mknode.go │ │ │ │ ├── name.go │ │ │ │ ├── node.go │ │ │ │ ├── node_gen.go │ │ │ │ ├── op_string.go │ │ │ │ ├── package.go │ │ │ │ ├── reassign_consistency_check.go │ │ │ │ ├── reassignment.go │ │ │ │ ├── scc.go │ │ │ │ ├── sizeof_test.go │ │ │ │ ├── stmt.go │ │ │ │ ├── symtab.go │ │ │ │ ├── type.go │ │ │ │ ├── val.go │ │ │ │ └── visit.go │ │ │ ├── liveness │ │ │ │ ├── arg.go │ │ │ │ ├── bvset.go │ │ │ │ └── plive.go │ │ │ ├── logopt │ │ │ │ ├── log_opts.go │ │ │ │ └── logopt_test.go │ │ │ ├── loong64 │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ └── ssa.go │ │ │ ├── loopvar │ │ │ │ ├── loopvar.go │ │ │ │ ├── loopvar_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── for_complicated_esc_address.go │ │ │ │ │ ├── for_esc_address.go │ │ │ │ │ ├── for_esc_closure.go │ │ │ │ │ ├── for_esc_method.go │ │ │ │ │ ├── for_esc_minimal_closure.go │ │ │ │ │ ├── for_nested.go │ │ │ │ │ ├── inlines │ │ │ │ │ ├── a │ │ │ │ │ │ └── a.go │ │ │ │ │ ├── b │ │ │ │ │ │ └── b.go │ │ │ │ │ ├── c │ │ │ │ │ │ └── c.go │ │ │ │ │ └── main.go │ │ │ │ │ ├── opt-121.go │ │ │ │ │ ├── opt-122.go │ │ │ │ │ ├── opt.go │ │ │ │ │ ├── range_esc_address.go │ │ │ │ │ ├── range_esc_closure.go │ │ │ │ │ ├── range_esc_method.go │ │ │ │ │ └── range_esc_minimal_closure.go │ │ │ ├── mips │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ └── ssa.go │ │ │ ├── mips64 │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ └── ssa.go │ │ │ ├── noder │ │ │ │ ├── codes.go │ │ │ │ ├── export.go │ │ │ │ ├── helpers.go │ │ │ │ ├── import.go │ │ │ │ ├── irgen.go │ │ │ │ ├── lex.go │ │ │ │ ├── lex_test.go │ │ │ │ ├── linker.go │ │ │ │ ├── noder.go │ │ │ │ ├── posmap.go │ │ │ │ ├── quirks.go │ │ │ │ ├── reader.go │ │ │ │ ├── stencil.go │ │ │ │ ├── stmt.go │ │ │ │ ├── types.go │ │ │ │ ├── unified.go │ │ │ │ └── writer.go │ │ │ ├── objw │ │ │ │ ├── objw.go │ │ │ │ └── prog.go │ │ │ ├── pgo │ │ │ │ ├── internal │ │ │ │ │ └── graph │ │ │ │ │ │ └── graph.go │ │ │ │ └── irgraph.go │ │ │ ├── pkginit │ │ │ │ ├── init.go │ │ │ │ └── initAsanGlobals.go │ │ │ ├── ppc64 │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ ├── opt.go │ │ │ │ └── ssa.go │ │ │ ├── rangefunc │ │ │ │ ├── rangefunc_test.go │ │ │ │ └── rewrite.go │ │ │ ├── reflectdata │ │ │ │ ├── alg.go │ │ │ │ ├── alg_test.go │ │ │ │ ├── helpers.go │ │ │ │ └── reflect.go │ │ │ ├── riscv64 │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ ├── gsubr.go │ │ │ │ └── ssa.go │ │ │ ├── rttype │ │ │ │ └── rttype.go │ │ │ ├── s390x │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ └── ssa.go │ │ │ ├── ssa │ │ │ │ ├── README.md │ │ │ │ ├── TODO │ │ │ │ ├── _gen │ │ │ │ │ ├── 386.rules │ │ │ │ │ ├── 386Ops.go │ │ │ │ │ ├── 386splitload.rules │ │ │ │ │ ├── AMD64.rules │ │ │ │ │ ├── AMD64Ops.go │ │ │ │ │ ├── AMD64latelower.rules │ │ │ │ │ ├── AMD64splitload.rules │ │ │ │ │ ├── ARM.rules │ │ │ │ │ ├── ARM64.rules │ │ │ │ │ ├── ARM64Ops.go │ │ │ │ │ ├── ARM64latelower.rules │ │ │ │ │ ├── ARMOps.go │ │ │ │ │ ├── LOONG64.rules │ │ │ │ │ ├── LOONG64Ops.go │ │ │ │ │ ├── MIPS.rules │ │ │ │ │ ├── MIPS64.rules │ │ │ │ │ ├── MIPS64Ops.go │ │ │ │ │ ├── MIPSOps.go │ │ │ │ │ ├── PPC64.rules │ │ │ │ │ ├── PPC64Ops.go │ │ │ │ │ ├── PPC64latelower.rules │ │ │ │ │ ├── README │ │ │ │ │ ├── RISCV64.rules │ │ │ │ │ ├── RISCV64Ops.go │ │ │ │ │ ├── RISCV64latelower.rules │ │ │ │ │ ├── S390X.rules │ │ │ │ │ ├── S390XOps.go │ │ │ │ │ ├── Wasm.rules │ │ │ │ │ ├── WasmOps.go │ │ │ │ │ ├── allocators.go │ │ │ │ │ ├── cover.bash │ │ │ │ │ ├── dec.rules │ │ │ │ │ ├── dec64.rules │ │ │ │ │ ├── dec64Ops.go │ │ │ │ │ ├── decOps.go │ │ │ │ │ ├── generic.rules │ │ │ │ │ ├── genericOps.go │ │ │ │ │ ├── main.go │ │ │ │ │ └── rulegen.go │ │ │ │ ├── addressingmodes.go │ │ │ │ ├── allocators.go │ │ │ │ ├── bench_test.go │ │ │ │ ├── biasedsparsemap.go │ │ │ │ ├── block.go │ │ │ │ ├── branchelim.go │ │ │ │ ├── branchelim_test.go │ │ │ │ ├── cache.go │ │ │ │ ├── check.go │ │ │ │ ├── checkbce.go │ │ │ │ ├── compile.go │ │ │ │ ├── config.go │ │ │ │ ├── copyelim.go │ │ │ │ ├── copyelim_test.go │ │ │ │ ├── critical.go │ │ │ │ ├── cse.go │ │ │ │ ├── cse_test.go │ │ │ │ ├── deadcode.go │ │ │ │ ├── deadcode_test.go │ │ │ │ ├── deadstore.go │ │ │ │ ├── deadstore_test.go │ │ │ │ ├── debug.go │ │ │ │ ├── debug_lines_test.go │ │ │ │ ├── debug_test.go │ │ │ │ ├── decompose.go │ │ │ │ ├── dom.go │ │ │ │ ├── dom_test.go │ │ │ │ ├── expand_calls.go │ │ │ │ ├── export_test.go │ │ │ │ ├── flagalloc.go │ │ │ │ ├── flags_amd64_test.s │ │ │ │ ├── flags_arm64_test.s │ │ │ │ ├── flags_test.go │ │ │ │ ├── fmahash_test.go │ │ │ │ ├── func.go │ │ │ │ ├── func_test.go │ │ │ │ ├── fuse.go │ │ │ │ ├── fuse_branchredirect.go │ │ │ │ ├── fuse_comparisons.go │ │ │ │ ├── fuse_test.go │ │ │ │ ├── generate.go │ │ │ │ ├── html.go │ │ │ │ ├── id.go │ │ │ │ ├── layout.go │ │ │ │ ├── lca.go │ │ │ │ ├── lca_test.go │ │ │ │ ├── likelyadjust.go │ │ │ │ ├── location.go │ │ │ │ ├── loopbce.go │ │ │ │ ├── loopreschedchecks.go │ │ │ │ ├── looprotate.go │ │ │ │ ├── lower.go │ │ │ │ ├── magic.go │ │ │ │ ├── magic_test.go │ │ │ │ ├── memcombine.go │ │ │ │ ├── nilcheck.go │ │ │ │ ├── nilcheck_test.go │ │ │ │ ├── numberlines.go │ │ │ │ ├── op.go │ │ │ │ ├── opGen.go │ │ │ │ ├── opt.go │ │ │ │ ├── passbm_test.go │ │ │ │ ├── phielim.go │ │ │ │ ├── phiopt.go │ │ │ │ ├── poset.go │ │ │ │ ├── poset_test.go │ │ │ │ ├── print.go │ │ │ │ ├── prove.go │ │ │ │ ├── regalloc.go │ │ │ │ ├── regalloc_test.go │ │ │ │ ├── rewrite.go │ │ │ │ ├── rewrite386.go │ │ │ │ ├── rewrite386splitload.go │ │ │ │ ├── rewriteAMD64.go │ │ │ │ ├── rewriteAMD64latelower.go │ │ │ │ ├── rewriteAMD64splitload.go │ │ │ │ ├── rewriteARM.go │ │ │ │ ├── rewriteARM64.go │ │ │ │ ├── rewriteARM64latelower.go │ │ │ │ ├── rewriteCond_test.go │ │ │ │ ├── rewriteLOONG64.go │ │ │ │ ├── rewriteMIPS.go │ │ │ │ ├── rewriteMIPS64.go │ │ │ │ ├── rewritePPC64.go │ │ │ │ ├── rewritePPC64latelower.go │ │ │ │ ├── rewriteRISCV64.go │ │ │ │ ├── rewriteRISCV64latelower.go │ │ │ │ ├── rewriteS390X.go │ │ │ │ ├── rewriteWasm.go │ │ │ │ ├── rewrite_test.go │ │ │ │ ├── rewritedec.go │ │ │ │ ├── rewritedec64.go │ │ │ │ ├── rewritegeneric.go │ │ │ │ ├── sccp.go │ │ │ │ ├── sccp_test.go │ │ │ │ ├── schedule.go │ │ │ │ ├── schedule_test.go │ │ │ │ ├── shift_test.go │ │ │ │ ├── shortcircuit.go │ │ │ │ ├── shortcircuit_test.go │ │ │ │ ├── sizeof_test.go │ │ │ │ ├── softfloat.go │ │ │ │ ├── sparsemap.go │ │ │ │ ├── sparsemappos.go │ │ │ │ ├── sparseset.go │ │ │ │ ├── sparsetree.go │ │ │ │ ├── stackalloc.go │ │ │ │ ├── stmtlines_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── b53456.go │ │ │ │ │ ├── convertline.go │ │ │ │ │ ├── fma.go │ │ │ │ │ ├── hist.dlv-dbg.nexts │ │ │ │ │ ├── hist.dlv-opt.nexts │ │ │ │ │ ├── hist.gdb-dbg.nexts │ │ │ │ │ ├── hist.gdb-opt.nexts │ │ │ │ │ ├── hist.go │ │ │ │ │ ├── i22558.dlv-dbg.nexts │ │ │ │ │ ├── i22558.gdb-dbg.nexts │ │ │ │ │ ├── i22558.go │ │ │ │ │ ├── i22600.dlv-dbg-race.nexts │ │ │ │ │ ├── i22600.gdb-dbg-race.nexts │ │ │ │ │ ├── i22600.go │ │ │ │ │ ├── infloop.dlv-opt.nexts │ │ │ │ │ ├── infloop.gdb-opt.nexts │ │ │ │ │ ├── infloop.go │ │ │ │ │ ├── inline-dump.go │ │ │ │ │ ├── pushback.go │ │ │ │ │ ├── sayhi.go │ │ │ │ │ ├── scopes.dlv-dbg.nexts │ │ │ │ │ ├── scopes.dlv-opt.nexts │ │ │ │ │ ├── scopes.gdb-dbg.nexts │ │ │ │ │ ├── scopes.gdb-opt.nexts │ │ │ │ │ └── scopes.go │ │ │ │ ├── tighten.go │ │ │ │ ├── trim.go │ │ │ │ ├── tuple.go │ │ │ │ ├── value.go │ │ │ │ ├── writebarrier.go │ │ │ │ ├── writebarrier_test.go │ │ │ │ ├── xposmap.go │ │ │ │ ├── zcse.go │ │ │ │ └── zeroextension_test.go │ │ │ ├── ssagen │ │ │ │ ├── abi.go │ │ │ │ ├── arch.go │ │ │ │ ├── nowb.go │ │ │ │ ├── pgen.go │ │ │ │ ├── phi.go │ │ │ │ └── ssa.go │ │ │ ├── staticdata │ │ │ │ ├── data.go │ │ │ │ └── embed.go │ │ │ ├── staticinit │ │ │ │ └── sched.go │ │ │ ├── syntax │ │ │ │ ├── branches.go │ │ │ │ ├── dumper.go │ │ │ │ ├── dumper_test.go │ │ │ │ ├── error_test.go │ │ │ │ ├── nodes.go │ │ │ │ ├── nodes_test.go │ │ │ │ ├── operator_string.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ ├── pos.go │ │ │ │ ├── positions.go │ │ │ │ ├── printer.go │ │ │ │ ├── printer_test.go │ │ │ │ ├── scanner.go │ │ │ │ ├── scanner_test.go │ │ │ │ ├── source.go │ │ │ │ ├── syntax.go │ │ │ │ ├── testdata │ │ │ │ │ ├── chans.go │ │ │ │ │ ├── fallthrough.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── issue20789.go │ │ │ │ │ ├── issue23385.go │ │ │ │ │ ├── issue23434.go │ │ │ │ │ ├── issue31092.go │ │ │ │ │ ├── issue43527.go │ │ │ │ │ ├── issue43674.go │ │ │ │ │ ├── issue46558.go │ │ │ │ │ ├── issue47704.go │ │ │ │ │ ├── issue48382.go │ │ │ │ │ ├── issue49205.go │ │ │ │ │ ├── issue49482.go │ │ │ │ │ ├── issue52391.go │ │ │ │ │ ├── issue56022.go │ │ │ │ │ ├── issue60599.go │ │ │ │ │ ├── issue63835.go │ │ │ │ │ ├── linalg.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── map2.go │ │ │ │ │ ├── sample.go │ │ │ │ │ ├── slices.go │ │ │ │ │ ├── smoketest.go │ │ │ │ │ ├── tparams.go │ │ │ │ │ └── typeset.go │ │ │ │ ├── testing.go │ │ │ │ ├── testing_test.go │ │ │ │ ├── token_string.go │ │ │ │ ├── tokens.go │ │ │ │ ├── type.go │ │ │ │ └── walk.go │ │ │ ├── test │ │ │ │ ├── README │ │ │ │ ├── abiutils_test.go │ │ │ │ ├── abiutilsaux_test.go │ │ │ │ ├── align_test.go │ │ │ │ ├── bench_test.go │ │ │ │ ├── clobberdead_test.go │ │ │ │ ├── constFold_test.go │ │ │ │ ├── dep_test.go │ │ │ │ ├── divconst_test.go │ │ │ │ ├── fixedbugs_test.go │ │ │ │ ├── float_test.go │ │ │ │ ├── global_test.go │ │ │ │ ├── iface_test.go │ │ │ │ ├── inl_test.go │ │ │ │ ├── inst_test.go │ │ │ │ ├── intrinsics_test.go │ │ │ │ ├── issue50182_test.go │ │ │ │ ├── issue53888_test.go │ │ │ │ ├── issue57434_test.go │ │ │ │ ├── lang_test.go │ │ │ │ ├── logic_test.go │ │ │ │ ├── math_test.go │ │ │ │ ├── memcombine_test.go │ │ │ │ ├── mulconst_test.go │ │ │ │ ├── pgo_devirtualize_test.go │ │ │ │ ├── pgo_inl_test.go │ │ │ │ ├── race.go │ │ │ │ ├── reproduciblebuilds_test.go │ │ │ │ ├── shift_test.go │ │ │ │ ├── ssa_test.go │ │ │ │ ├── switch_test.go │ │ │ │ ├── test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── addressed_test.go │ │ │ │ │ ├── append_test.go │ │ │ │ │ ├── arithBoundary_test.go │ │ │ │ │ ├── arithConst_test.go │ │ │ │ │ ├── arith_test.go │ │ │ │ │ ├── array_test.go │ │ │ │ │ ├── assert_test.go │ │ │ │ │ ├── break_test.go │ │ │ │ │ ├── chan_test.go │ │ │ │ │ ├── closure_test.go │ │ │ │ │ ├── cmpConst_test.go │ │ │ │ │ ├── cmp_test.go │ │ │ │ │ ├── compound_test.go │ │ │ │ │ ├── copy_test.go │ │ │ │ │ ├── ctl_test.go │ │ │ │ │ ├── deferNoReturn_test.go │ │ │ │ │ ├── divbyzero_test.go │ │ │ │ │ ├── dupLoad_test.go │ │ │ │ │ ├── flowgraph_generator1.go │ │ │ │ │ ├── fp_test.go │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── arithBoundaryGen.go │ │ │ │ │ │ ├── arithConstGen.go │ │ │ │ │ │ ├── cmpConstGen.go │ │ │ │ │ │ ├── constFoldGen.go │ │ │ │ │ │ ├── copyGen.go │ │ │ │ │ │ └── zeroGen.go │ │ │ │ │ ├── loadstore_test.go │ │ │ │ │ ├── map_test.go │ │ │ │ │ ├── mysort │ │ │ │ │ │ └── mysort.go │ │ │ │ │ ├── namedReturn_test.go │ │ │ │ │ ├── pgo │ │ │ │ │ │ ├── devirtualize │ │ │ │ │ │ │ ├── devirt.go │ │ │ │ │ │ │ ├── devirt.pprof │ │ │ │ │ │ │ ├── devirt_test.go │ │ │ │ │ │ │ └── mult.pkg │ │ │ │ │ │ │ │ └── mult.go │ │ │ │ │ │ └── inline │ │ │ │ │ │ │ ├── inline_hot.go │ │ │ │ │ │ │ ├── inline_hot.pprof │ │ │ │ │ │ │ └── inline_hot_test.go │ │ │ │ │ ├── phi_test.go │ │ │ │ │ ├── ptrsort.go │ │ │ │ │ ├── ptrsort.out │ │ │ │ │ ├── regalloc_test.go │ │ │ │ │ ├── reproducible │ │ │ │ │ │ ├── issue20272.go │ │ │ │ │ │ ├── issue27013.go │ │ │ │ │ │ ├── issue30202.go │ │ │ │ │ │ └── issue38068.go │ │ │ │ │ ├── short_test.go │ │ │ │ │ ├── slice_test.go │ │ │ │ │ ├── sqrtConst_test.go │ │ │ │ │ ├── string_test.go │ │ │ │ │ ├── unsafe_test.go │ │ │ │ │ └── zero_test.go │ │ │ │ ├── truncconst_test.go │ │ │ │ └── zerorange_test.go │ │ │ ├── typebits │ │ │ │ └── typebits.go │ │ │ ├── typecheck │ │ │ │ ├── _builtin │ │ │ │ │ ├── coverage.go │ │ │ │ │ └── runtime.go │ │ │ │ ├── bexport.go │ │ │ │ ├── builtin.go │ │ │ │ ├── builtin_test.go │ │ │ │ ├── const.go │ │ │ │ ├── dcl.go │ │ │ │ ├── export.go │ │ │ │ ├── expr.go │ │ │ │ ├── func.go │ │ │ │ ├── iexport.go │ │ │ │ ├── iimport.go │ │ │ │ ├── mkbuiltin.go │ │ │ │ ├── stmt.go │ │ │ │ ├── subr.go │ │ │ │ ├── syms.go │ │ │ │ ├── target.go │ │ │ │ ├── type.go │ │ │ │ ├── typecheck.go │ │ │ │ └── universe.go │ │ │ ├── types │ │ │ │ ├── alg.go │ │ │ │ ├── algkind_string.go │ │ │ │ ├── fmt.go │ │ │ │ ├── goversion.go │ │ │ │ ├── identity.go │ │ │ │ ├── kind_string.go │ │ │ │ ├── pkg.go │ │ │ │ ├── size.go │ │ │ │ ├── sizeof_test.go │ │ │ │ ├── sort.go │ │ │ │ ├── sym.go │ │ │ │ ├── sym_test.go │ │ │ │ ├── type.go │ │ │ │ ├── type_test.go │ │ │ │ ├── universe.go │ │ │ │ └── utils.go │ │ │ ├── types2 │ │ │ │ ├── alias.go │ │ │ │ ├── api.go │ │ │ │ ├── api_predicates.go │ │ │ │ ├── api_test.go │ │ │ │ ├── array.go │ │ │ │ ├── assignments.go │ │ │ │ ├── basic.go │ │ │ │ ├── builtins.go │ │ │ │ ├── builtins_test.go │ │ │ │ ├── call.go │ │ │ │ ├── chan.go │ │ │ │ ├── check.go │ │ │ │ ├── check_test.go │ │ │ │ ├── compilersupport.go │ │ │ │ ├── const.go │ │ │ │ ├── context.go │ │ │ │ ├── context_test.go │ │ │ │ ├── conversions.go │ │ │ │ ├── decl.go │ │ │ │ ├── errorcalls_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── errors_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── expr.go │ │ │ │ ├── gccgosizes.go │ │ │ │ ├── gcsizes.go │ │ │ │ ├── hilbert_test.go │ │ │ │ ├── importer_test.go │ │ │ │ ├── index.go │ │ │ │ ├── infer.go │ │ │ │ ├── initorder.go │ │ │ │ ├── instantiate.go │ │ │ │ ├── instantiate_test.go │ │ │ │ ├── interface.go │ │ │ │ ├── issues_test.go │ │ │ │ ├── labels.go │ │ │ │ ├── lookup.go │ │ │ │ ├── lookup_test.go │ │ │ │ ├── main_test.go │ │ │ │ ├── map.go │ │ │ │ ├── mono.go │ │ │ │ ├── mono_test.go │ │ │ │ ├── named.go │ │ │ │ ├── named_test.go │ │ │ │ ├── object.go │ │ │ │ ├── object_test.go │ │ │ │ ├── objset.go │ │ │ │ ├── operand.go │ │ │ │ ├── package.go │ │ │ │ ├── pointer.go │ │ │ │ ├── predicates.go │ │ │ │ ├── resolver.go │ │ │ │ ├── resolver_test.go │ │ │ │ ├── return.go │ │ │ │ ├── scope.go │ │ │ │ ├── selection.go │ │ │ │ ├── self_test.go │ │ │ │ ├── signature.go │ │ │ │ ├── sizeof_test.go │ │ │ │ ├── sizes.go │ │ │ │ ├── sizes_test.go │ │ │ │ ├── slice.go │ │ │ │ ├── stdlib_test.go │ │ │ │ ├── stmt.go │ │ │ │ ├── struct.go │ │ │ │ ├── subst.go │ │ │ │ ├── termlist.go │ │ │ │ ├── termlist_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── local │ │ │ │ │ │ └── issue47996.go │ │ │ │ │ └── manual.go │ │ │ │ ├── tuple.go │ │ │ │ ├── type.go │ │ │ │ ├── typelists.go │ │ │ │ ├── typeparam.go │ │ │ │ ├── typeset.go │ │ │ │ ├── typeset_test.go │ │ │ │ ├── typestring.go │ │ │ │ ├── typestring_test.go │ │ │ │ ├── typeterm.go │ │ │ │ ├── typeterm_test.go │ │ │ │ ├── typexpr.go │ │ │ │ ├── under.go │ │ │ │ ├── unify.go │ │ │ │ ├── union.go │ │ │ │ ├── universe.go │ │ │ │ ├── util.go │ │ │ │ ├── util_test.go │ │ │ │ ├── validtype.go │ │ │ │ └── version.go │ │ │ ├── walk │ │ │ │ ├── assign.go │ │ │ │ ├── builtin.go │ │ │ │ ├── closure.go │ │ │ │ ├── compare.go │ │ │ │ ├── complit.go │ │ │ │ ├── convert.go │ │ │ │ ├── expr.go │ │ │ │ ├── order.go │ │ │ │ ├── range.go │ │ │ │ ├── select.go │ │ │ │ ├── stmt.go │ │ │ │ ├── switch.go │ │ │ │ ├── temp.go │ │ │ │ └── walk.go │ │ │ ├── wasm │ │ │ │ └── ssa.go │ │ │ └── x86 │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ └── ssa.go │ │ ├── main.go │ │ └── profile.sh │ ├── covdata │ │ ├── argsmerge.go │ │ ├── covdata.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── export_test.go │ │ ├── merge.go │ │ ├── metamerge.go │ │ ├── subtractintersect.go │ │ ├── testdata │ │ │ ├── dep.go │ │ │ ├── prog1.go │ │ │ └── prog2.go │ │ └── tool_test.go │ ├── cover │ │ ├── cfg_test.go │ │ ├── cover.go │ │ ├── cover_test.go │ │ ├── doc.go │ │ ├── export_test.go │ │ ├── func.go │ │ ├── html.go │ │ ├── pkgname_test.go │ │ └── testdata │ │ │ ├── directives.go │ │ │ ├── html │ │ │ ├── html.go │ │ │ ├── html.golden │ │ │ └── html_test.go │ │ │ ├── main.go │ │ │ ├── p.go │ │ │ ├── pkgcfg │ │ │ ├── a │ │ │ │ ├── a.go │ │ │ │ ├── a2.go │ │ │ │ └── a_test.go │ │ │ ├── noFuncsNoTests │ │ │ │ └── nfnt.go │ │ │ └── yesFuncsNoTests │ │ │ │ └── yfnt.go │ │ │ ├── profile.cov │ │ │ └── test.go │ ├── dist │ │ ├── README │ │ ├── build.go │ │ ├── build_test.go │ │ ├── buildgo.go │ │ ├── buildruntime.go │ │ ├── buildtag.go │ │ ├── buildtag_test.go │ │ ├── buildtool.go │ │ ├── doc.go │ │ ├── exec.go │ │ ├── imports.go │ │ ├── main.go │ │ ├── notgo120.go │ │ ├── quoted.go │ │ ├── supported_test.go │ │ ├── sys_default.go │ │ ├── sys_windows.go │ │ ├── test.go │ │ ├── testjson.go │ │ ├── testjson_test.go │ │ ├── util.go │ │ ├── util_gc.go │ │ ├── util_gccgo.go │ │ ├── vfp_arm.s │ │ └── vfp_default.s │ ├── distpack │ │ ├── archive.go │ │ ├── archive_test.go │ │ ├── pack.go │ │ └── test.go │ ├── doc │ │ ├── dirs.go │ │ ├── doc_test.go │ │ ├── main.go │ │ ├── pkg.go │ │ └── testdata │ │ │ ├── merge │ │ │ ├── aa.go │ │ │ └── bb.go │ │ │ ├── nested │ │ │ ├── empty │ │ │ │ └── empty.go │ │ │ ├── ignore.go │ │ │ └── nested │ │ │ │ └── real.go │ │ │ └── pkg.go │ ├── fix │ │ ├── buildtag.go │ │ ├── buildtag_test.go │ │ ├── cftype.go │ │ ├── cftype_test.go │ │ ├── context.go │ │ ├── context_test.go │ │ ├── doc.go │ │ ├── egltype.go │ │ ├── egltype_test.go │ │ ├── fix.go │ │ ├── gotypes.go │ │ ├── gotypes_test.go │ │ ├── import_test.go │ │ ├── jnitype.go │ │ ├── jnitype_test.go │ │ ├── main.go │ │ ├── main_test.go │ │ ├── netipv6zone.go │ │ ├── netipv6zone_test.go │ │ ├── printerconfig.go │ │ ├── printerconfig_test.go │ │ └── typecheck.go │ ├── go.mod │ ├── go.sum │ ├── go │ │ ├── alldocs.go │ │ ├── chdir_test.go │ │ ├── export_test.go │ │ ├── go11.go │ │ ├── go_boring_test.go │ │ ├── go_test.go │ │ ├── go_unix_test.go │ │ ├── go_windows_test.go │ │ ├── help_test.go │ │ ├── init_test.go │ │ ├── internal │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── netrc.go │ │ │ │ └── netrc_test.go │ │ │ ├── base │ │ │ │ ├── base.go │ │ │ │ ├── env.go │ │ │ │ ├── flag.go │ │ │ │ ├── goflags.go │ │ │ │ ├── limit.go │ │ │ │ ├── path.go │ │ │ │ ├── signal.go │ │ │ │ ├── signal_notunix.go │ │ │ │ ├── signal_unix.go │ │ │ │ └── tool.go │ │ │ ├── bug │ │ │ │ └── bug.go │ │ │ ├── cache │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── default.go │ │ │ │ ├── hash.go │ │ │ │ ├── hash_test.go │ │ │ │ └── prog.go │ │ │ ├── cfg │ │ │ │ ├── bench_test.go │ │ │ │ ├── cfg.go │ │ │ │ └── lookpath.go │ │ │ ├── clean │ │ │ │ └── clean.go │ │ │ ├── cmdflag │ │ │ │ └── flag.go │ │ │ ├── doc │ │ │ │ └── doc.go │ │ │ ├── envcmd │ │ │ │ ├── env.go │ │ │ │ └── env_test.go │ │ │ ├── fix │ │ │ │ └── fix.go │ │ │ ├── fmtcmd │ │ │ │ └── fmt.go │ │ │ ├── fsys │ │ │ │ ├── fsys.go │ │ │ │ └── fsys_test.go │ │ │ ├── generate │ │ │ │ ├── generate.go │ │ │ │ └── generate_test.go │ │ │ ├── gover │ │ │ │ ├── gomod.go │ │ │ │ ├── gover.go │ │ │ │ ├── gover_test.go │ │ │ │ ├── local.go │ │ │ │ ├── mod.go │ │ │ │ ├── mod_test.go │ │ │ │ ├── toolchain.go │ │ │ │ ├── toolchain_test.go │ │ │ │ └── version.go │ │ │ ├── help │ │ │ │ ├── help.go │ │ │ │ └── helpdoc.go │ │ │ ├── imports │ │ │ │ ├── build.go │ │ │ │ ├── read.go │ │ │ │ ├── read_test.go │ │ │ │ ├── scan.go │ │ │ │ ├── scan_test.go │ │ │ │ ├── tags.go │ │ │ │ └── testdata │ │ │ │ │ ├── android │ │ │ │ │ ├── .h.go │ │ │ │ │ ├── a_android.go │ │ │ │ │ ├── b_android_arm64.go │ │ │ │ │ ├── c_linux.go │ │ │ │ │ ├── d_linux_arm64.go │ │ │ │ │ ├── e.go │ │ │ │ │ ├── f.go │ │ │ │ │ ├── g.go │ │ │ │ │ ├── tags.txt │ │ │ │ │ └── want.txt │ │ │ │ │ ├── illumos │ │ │ │ │ ├── .h.go │ │ │ │ │ ├── a_illumos.go │ │ │ │ │ ├── b_illumos_amd64.go │ │ │ │ │ ├── c_solaris.go │ │ │ │ │ ├── d_solaris_amd64.go │ │ │ │ │ ├── e.go │ │ │ │ │ ├── f.go │ │ │ │ │ ├── g.go │ │ │ │ │ ├── tags.txt │ │ │ │ │ └── want.txt │ │ │ │ │ └── star │ │ │ │ │ ├── tags.txt │ │ │ │ │ ├── want.txt │ │ │ │ │ ├── x.go │ │ │ │ │ ├── x1.go │ │ │ │ │ ├── x_darwin.go │ │ │ │ │ └── x_windows.go │ │ │ ├── list │ │ │ │ ├── context.go │ │ │ │ └── list.go │ │ │ ├── load │ │ │ │ ├── flag.go │ │ │ │ ├── flag_test.go │ │ │ │ ├── godebug.go │ │ │ │ ├── path.go │ │ │ │ ├── pkg.go │ │ │ │ ├── pkg_test.go │ │ │ │ ├── search.go │ │ │ │ └── test.go │ │ │ ├── lockedfile │ │ │ │ ├── internal │ │ │ │ │ └── filelock │ │ │ │ │ │ ├── filelock.go │ │ │ │ │ │ ├── filelock_fcntl.go │ │ │ │ │ │ ├── filelock_other.go │ │ │ │ │ │ ├── filelock_test.go │ │ │ │ │ │ ├── filelock_unix.go │ │ │ │ │ │ └── filelock_windows.go │ │ │ │ ├── lockedfile.go │ │ │ │ ├── lockedfile_filelock.go │ │ │ │ ├── lockedfile_plan9.go │ │ │ │ ├── lockedfile_test.go │ │ │ │ ├── mutex.go │ │ │ │ └── transform_test.go │ │ │ ├── mmap │ │ │ │ ├── mmap.go │ │ │ │ ├── mmap_other.go │ │ │ │ ├── mmap_unix.go │ │ │ │ └── mmap_windows.go │ │ │ ├── modcmd │ │ │ │ ├── download.go │ │ │ │ ├── edit.go │ │ │ │ ├── graph.go │ │ │ │ ├── init.go │ │ │ │ ├── mod.go │ │ │ │ ├── tidy.go │ │ │ │ ├── vendor.go │ │ │ │ ├── verify.go │ │ │ │ └── why.go │ │ │ ├── modfetch │ │ │ │ ├── bootstrap.go │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── codehost │ │ │ │ │ ├── codehost.go │ │ │ │ │ ├── git.go │ │ │ │ │ ├── git_test.go │ │ │ │ │ ├── shell.go │ │ │ │ │ ├── svn.go │ │ │ │ │ └── vcs.go │ │ │ │ ├── coderepo.go │ │ │ │ ├── coderepo_test.go │ │ │ │ ├── fetch.go │ │ │ │ ├── key.go │ │ │ │ ├── proxy.go │ │ │ │ ├── repo.go │ │ │ │ ├── sumdb.go │ │ │ │ ├── toolchain.go │ │ │ │ └── zip_sum_test │ │ │ │ │ ├── testdata │ │ │ │ │ └── zip_sums.csv │ │ │ │ │ └── zip_sum_test.go │ │ │ ├── modget │ │ │ │ ├── get.go │ │ │ │ └── query.go │ │ │ ├── modindex │ │ │ │ ├── build.go │ │ │ │ ├── build_read.go │ │ │ │ ├── index_format.txt │ │ │ │ ├── index_test.go │ │ │ │ ├── read.go │ │ │ │ ├── scan.go │ │ │ │ ├── syslist.go │ │ │ │ ├── syslist_test.go │ │ │ │ ├── testdata │ │ │ │ │ └── ignore_non_source │ │ │ │ │ │ ├── a.syso │ │ │ │ │ │ ├── b.go │ │ │ │ │ │ ├── bar.json │ │ │ │ │ │ ├── baz.log │ │ │ │ │ │ └── c.c │ │ │ │ └── write.go │ │ │ ├── modinfo │ │ │ │ └── info.go │ │ │ ├── modload │ │ │ │ ├── build.go │ │ │ │ ├── buildlist.go │ │ │ │ ├── edit.go │ │ │ │ ├── help.go │ │ │ │ ├── import.go │ │ │ │ ├── import_test.go │ │ │ │ ├── init.go │ │ │ │ ├── list.go │ │ │ │ ├── load.go │ │ │ │ ├── modfile.go │ │ │ │ ├── mvs.go │ │ │ │ ├── mvs_test.go │ │ │ │ ├── query.go │ │ │ │ ├── query_test.go │ │ │ │ ├── search.go │ │ │ │ ├── stat_openfile.go │ │ │ │ ├── stat_unix.go │ │ │ │ ├── stat_windows.go │ │ │ │ └── vendor.go │ │ │ ├── mvs │ │ │ │ ├── errors.go │ │ │ │ ├── graph.go │ │ │ │ ├── mvs.go │ │ │ │ └── mvs_test.go │ │ │ ├── par │ │ │ │ ├── queue.go │ │ │ │ ├── queue_test.go │ │ │ │ ├── work.go │ │ │ │ └── work_test.go │ │ │ ├── robustio │ │ │ │ ├── robustio.go │ │ │ │ ├── robustio_darwin.go │ │ │ │ ├── robustio_flaky.go │ │ │ │ ├── robustio_other.go │ │ │ │ └── robustio_windows.go │ │ │ ├── run │ │ │ │ └── run.go │ │ │ ├── script │ │ │ │ ├── cmds.go │ │ │ │ ├── cmds_other.go │ │ │ │ ├── cmds_posix.go │ │ │ │ ├── conds.go │ │ │ │ ├── engine.go │ │ │ │ ├── errors.go │ │ │ │ ├── scripttest │ │ │ │ │ └── scripttest.go │ │ │ │ └── state.go │ │ │ ├── search │ │ │ │ └── search.go │ │ │ ├── str │ │ │ │ ├── path.go │ │ │ │ ├── str.go │ │ │ │ └── str_test.go │ │ │ ├── test │ │ │ │ ├── cover.go │ │ │ │ ├── flagdefs.go │ │ │ │ ├── flagdefs_test.go │ │ │ │ ├── genflags.go │ │ │ │ ├── internal │ │ │ │ │ └── genflags │ │ │ │ │ │ ├── testflag.go │ │ │ │ │ │ └── vetflag.go │ │ │ │ ├── test.go │ │ │ │ ├── test_nonunix.go │ │ │ │ ├── test_unix.go │ │ │ │ └── testflag.go │ │ │ ├── tool │ │ │ │ └── tool.go │ │ │ ├── toolchain │ │ │ │ ├── exec.go │ │ │ │ ├── exec_stub.go │ │ │ │ ├── path_none.go │ │ │ │ ├── path_plan9.go │ │ │ │ ├── path_unix.go │ │ │ │ ├── path_windows.go │ │ │ │ ├── select.go │ │ │ │ ├── switch.go │ │ │ │ ├── toolchain_test.go │ │ │ │ ├── umask_none.go │ │ │ │ └── umask_unix.go │ │ │ ├── trace │ │ │ │ └── trace.go │ │ │ ├── vcs │ │ │ │ ├── discovery.go │ │ │ │ ├── discovery_test.go │ │ │ │ ├── vcs.go │ │ │ │ └── vcs_test.go │ │ │ ├── vcweb │ │ │ │ ├── auth.go │ │ │ │ ├── bzr.go │ │ │ │ ├── dir.go │ │ │ │ ├── fossil.go │ │ │ │ ├── git.go │ │ │ │ ├── hg.go │ │ │ │ ├── insecure.go │ │ │ │ ├── script.go │ │ │ │ ├── svn.go │ │ │ │ ├── vcstest │ │ │ │ │ ├── vcstest.go │ │ │ │ │ └── vcstest_test.go │ │ │ │ ├── vcweb.go │ │ │ │ └── vcweb_test.go │ │ │ ├── version │ │ │ │ └── version.go │ │ │ ├── vet │ │ │ │ ├── vet.go │ │ │ │ └── vetflag.go │ │ │ ├── web │ │ │ │ ├── api.go │ │ │ │ ├── bootstrap.go │ │ │ │ ├── file_test.go │ │ │ │ ├── http.go │ │ │ │ ├── url.go │ │ │ │ ├── url_other.go │ │ │ │ ├── url_other_test.go │ │ │ │ ├── url_test.go │ │ │ │ ├── url_windows.go │ │ │ │ └── url_windows_test.go │ │ │ ├── work │ │ │ │ ├── action.go │ │ │ │ ├── build.go │ │ │ │ ├── build_test.go │ │ │ │ ├── buildid.go │ │ │ │ ├── cover.go │ │ │ │ ├── exec.go │ │ │ │ ├── exec_test.go │ │ │ │ ├── gc.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── init.go │ │ │ │ ├── security.go │ │ │ │ ├── security_test.go │ │ │ │ ├── shell.go │ │ │ │ └── shell_test.go │ │ │ └── workcmd │ │ │ │ ├── edit.go │ │ │ │ ├── init.go │ │ │ │ ├── sync.go │ │ │ │ ├── use.go │ │ │ │ ├── vendor.go │ │ │ │ └── work.go │ │ ├── main.go │ │ ├── note_test.go │ │ ├── proxy_test.go │ │ ├── script_test.go │ │ ├── scriptcmds_test.go │ │ ├── scriptconds_test.go │ │ ├── scriptreadme_test.go │ │ ├── stop_other_test.go │ │ ├── stop_unix_test.go │ │ ├── terminal_test.go │ │ └── testdata │ │ │ ├── addmod.go │ │ │ ├── mod │ │ │ ├── README │ │ │ ├── example.com_ambiguous_a_b_v0.0.0-empty.txt │ │ │ ├── example.com_ambiguous_a_v1.0.0.txt │ │ │ ├── example.com_badchain_a_v1.0.0.txt │ │ │ ├── example.com_badchain_a_v1.1.0.txt │ │ │ ├── example.com_badchain_b_v1.0.0.txt │ │ │ ├── example.com_badchain_b_v1.1.0.txt │ │ │ ├── example.com_badchain_c_v1.0.0.txt │ │ │ ├── example.com_badchain_c_v1.1.0.txt │ │ │ ├── example.com_cmd_v1.0.0-exclude.txt │ │ │ ├── example.com_cmd_v1.0.0-newerself.txt │ │ │ ├── example.com_cmd_v1.0.0-replace.txt │ │ │ ├── example.com_cmd_v1.0.0.txt │ │ │ ├── example.com_cmd_v1.9.0.txt │ │ │ ├── example.com_depends_on_generics_v1.0.0.txt │ │ │ ├── example.com_deprecated_a_v1.0.0.txt │ │ │ ├── example.com_deprecated_a_v1.9.0.txt │ │ │ ├── example.com_deprecated_b_v1.0.0.txt │ │ │ ├── example.com_deprecated_b_v1.9.0.txt │ │ │ ├── example.com_dotgo.go_v1.0.0.txt │ │ │ ├── example.com_dotname_v1.0.0.txt │ │ │ ├── example.com_downgrade_v2.0.0.txt │ │ │ ├── example.com_downgrade_v2_v2.0.1.txt │ │ │ ├── example.com_fuzzfail_v0.1.0.txt │ │ │ ├── example.com_fuzzfail_v0.2.0.txt │ │ │ ├── example.com_generics_v1.0.0.txt │ │ │ ├── example.com_incompatiblewithsub_v1.0.0.txt │ │ │ ├── example.com_incompatiblewithsub_v2.0.0+incompatible.txt │ │ │ ├── example.com_invalidpath_v1_v1.0.0.txt │ │ │ ├── example.com_join_subpkg_v1.0.0.txt │ │ │ ├── example.com_join_subpkg_v1.1.0.txt │ │ │ ├── example.com_join_v1.0.0.txt │ │ │ ├── example.com_join_v1.1.0.txt │ │ │ ├── example.com_latemigrate_v2_v2.0.0.txt │ │ │ ├── example.com_latemigrate_v2_v2.0.1.txt │ │ │ ├── example.com_missingpkg_v1.0.0.txt │ │ │ ├── example.com_missingpkg_v1.0.1-beta.txt │ │ │ ├── example.com_nest_sub_v1.0.0.txt │ │ │ ├── example.com_nest_v1.0.0.txt │ │ │ ├── example.com_nest_v1.1.0.txt │ │ │ ├── example.com_newcycle_a_v1.0.0.txt │ │ │ ├── example.com_newcycle_a_v1.0.1.txt │ │ │ ├── example.com_newcycle_b_v1.0.0.txt │ │ │ ├── example.com_noroot_v1.0.0.txt │ │ │ ├── example.com_noroot_v1.0.1.txt │ │ │ ├── example.com_notags_v0.0.0-20190507143103-cc8cbe209b64.txt │ │ │ ├── example.com_printversion_v0.1.0.txt │ │ │ ├── example.com_printversion_v1.0.0.txt │ │ │ ├── example.com_pseudoupgrade_v0.0.0-20190430073000-30950c05d534.txt │ │ │ ├── example.com_pseudoupgrade_v0.1.0.txt │ │ │ ├── example.com_pseudoupgrade_v0.1.1-0.20190429073117-b5426c86b553.txt │ │ │ ├── example.com_quote_v1.5.2.txt │ │ │ ├── example.com_retract_ambiguous_nested_v1.9.0-bad.txt │ │ │ ├── example.com_retract_ambiguous_other_v1.0.0.txt │ │ │ ├── example.com_retract_ambiguous_v1.0.0.txt │ │ │ ├── example.com_retract_incompatible_v1.0.0.txt │ │ │ ├── example.com_retract_incompatible_v2.0.0+incompatible.txt │ │ │ ├── example.com_retract_missingmod_v1.0.0.txt │ │ │ ├── example.com_retract_missingmod_v1.9.0.txt │ │ │ ├── example.com_retract_newergoversion_v1.0.0.txt │ │ │ ├── example.com_retract_newergoversion_v1.2.0.txt │ │ │ ├── example.com_retract_noupgrade_v1.0.0.txt │ │ │ ├── example.com_retract_rationale_v1.0.0-block.txt │ │ │ ├── example.com_retract_rationale_v1.0.0-blockwithcomment.txt │ │ │ ├── example.com_retract_rationale_v1.0.0-empty.txt │ │ │ ├── example.com_retract_rationale_v1.0.0-long.txt │ │ │ ├── example.com_retract_rationale_v1.0.0-multiline1.txt │ │ │ ├── example.com_retract_rationale_v1.0.0-multiline2.txt │ │ │ ├── example.com_retract_rationale_v1.0.0-order.txt │ │ │ ├── example.com_retract_rationale_v1.0.0-unprintable.txt │ │ │ ├── example.com_retract_rationale_v1.0.1-order.txt │ │ │ ├── example.com_retract_rationale_v1.9.0.txt │ │ │ ├── example.com_retract_rename_v1.0.0-bad.txt │ │ │ ├── example.com_retract_rename_v1.9.0-new.txt │ │ │ ├── example.com_retract_self_all_v1.9.0.txt │ │ │ ├── example.com_retract_self_prerelease_v1.0.0.txt │ │ │ ├── example.com_retract_self_prerelease_v1.9.0.txt │ │ │ ├── example.com_retract_self_prerelease_v1.9.1-pre.txt │ │ │ ├── example.com_retract_self_prev_v1.0.0-bad.txt │ │ │ ├── example.com_retract_self_prev_v1.1.0.txt │ │ │ ├── example.com_retract_self_prev_v1.9.0.txt │ │ │ ├── example.com_retract_self_pseudo_v0.0.0-20200325131415-0123456789ab │ │ │ ├── example.com_retract_self_pseudo_v1.0.0-bad.txt │ │ │ ├── example.com_retract_self_pseudo_v1.9.0.txt │ │ │ ├── example.com_retract_v1.0.0-bad.txt │ │ │ ├── example.com_retract_v1.0.0-good.txt │ │ │ ├── example.com_retract_v1.0.0-unused.txt │ │ │ ├── example.com_retract_v1.1.0.txt │ │ │ ├── example.com_split-incompatible_subpkg_v0.1.0.txt │ │ │ ├── example.com_split-incompatible_v2.0.0+incompatible.txt │ │ │ ├── example.com_split-incompatible_v2.1.0-pre+incompatible.txt │ │ │ ├── example.com_split_subpkg_v1.1.0.txt │ │ │ ├── example.com_split_v1.0.0.txt │ │ │ ├── example.com_split_v1.1.0.txt │ │ │ ├── example.com_stack_v1.0.0.txt │ │ │ ├── example.com_stack_v1.0.1.txt │ │ │ ├── example.com_tools_v1.0.0.txt │ │ │ ├── example.com_undeprecated_v1.0.0.txt │ │ │ ├── example.com_undeprecated_v1.0.1.txt │ │ │ ├── example.com_usemissingpre_v1.0.0.txt │ │ │ ├── example.com_v1.0.0.txt │ │ │ ├── example.com_version_v1.0.0.txt │ │ │ ├── example.com_version_v1.0.1.txt │ │ │ ├── example.com_version_v1.1.0.txt │ │ │ ├── example.net_ambiguous_nested_v0.1.0.txt │ │ │ ├── example.net_ambiguous_v0.1.0.txt │ │ │ ├── example.net_ambiguous_v0.2.0.txt │ │ │ ├── example.net_pkgadded_v1.0.0.txt │ │ │ ├── example.net_pkgadded_v1.1.0.txt │ │ │ ├── example.net_pkgadded_v1.2.0.txt │ │ │ ├── github.com_dmitshur-test_modtest5_v0.0.0-20190619020302-197a620e0c9a.txt │ │ │ ├── github.com_dmitshur-test_modtest5_v0.5.0-alpha.0.20190619023908-3da23a9deb9e.txt │ │ │ ├── github.com_dmitshur-test_modtest5_v0.5.0-alpha.txt │ │ │ ├── golang.org_notx_useinternal_v0.1.0.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.18.1.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.18.3.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.18.5.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.18.7.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.18.9.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.18.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.22.0.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.22.1.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.22.3.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.22.5.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.22.7.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.22.9.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.22rc1.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.23.0.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.23.5.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.23.9.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.24rc1.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.aix-ppc64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.android-386.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.android-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.android-arm.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.android-arm64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.darwin-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.darwin-arm64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.dragonfly-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.freebsd-386.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.freebsd-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.freebsd-arm.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.freebsd-arm64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.freebsd-riscv64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.illumos-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.ios-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.ios-arm64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.js-wasm.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.linux-386.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.linux-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.linux-arm.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.linux-arm64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.linux-loong64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.linux-mips64x.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.linux-mipsx.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.linux-ppc64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.linux-ppc64le.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.linux-riscv64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.linux-s390x.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.netbsd-386.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.netbsd-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.netbsd-arm.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.netbsd-arm64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.openbsd-386.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.openbsd-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.openbsd-arm.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.openbsd-arm64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.openbsd-mips64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.openbsd-ppc64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.openbsd-riscv64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.plan9-386.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.plan9-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.plan9-arm.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.solaris-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.windows-386.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.windows-amd64.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.windows-arm.txt │ │ │ ├── golang.org_toolchain_v0.0.1-go1.999testmod.windows-arm64.txt │ │ │ ├── golang.org_x_internal_v0.1.0.txt │ │ │ ├── golang.org_x_text_v0.0.0-20170915032832-14c0d48ead0c.txt │ │ │ ├── golang.org_x_text_v0.3.0.txt │ │ │ ├── golang.org_x_useinternal_v0.1.0.txt │ │ │ ├── gopkg.in_dummy.v2-unstable_v2.0.0.txt │ │ │ ├── not-rsc.io_quote_v0.1.0-nomod.txt │ │ │ ├── patch.example.com_depofdirectpatch_v1.0.0.txt │ │ │ ├── patch.example.com_depofdirectpatch_v1.0.1.txt │ │ │ ├── patch.example.com_direct_v1.0.0.txt │ │ │ ├── patch.example.com_direct_v1.0.1.txt │ │ │ ├── patch.example.com_direct_v1.1.0.txt │ │ │ ├── patch.example.com_indirect_v1.0.0.txt │ │ │ ├── patch.example.com_indirect_v1.0.1.txt │ │ │ ├── patch.example.com_indirect_v1.1.0.txt │ │ │ ├── rsc.io_!c!g!o_v1.0.0.txt │ │ │ ├── rsc.io_!q!u!o!t!e_v1.5.2.txt │ │ │ ├── rsc.io_!q!u!o!t!e_v1.5.3-!p!r!e.txt │ │ │ ├── rsc.io_badfile1_v1.0.0.txt │ │ │ ├── rsc.io_badfile2_v1.0.0.txt │ │ │ ├── rsc.io_badfile3_v1.0.0.txt │ │ │ ├── rsc.io_badfile4_v1.0.0.txt │ │ │ ├── rsc.io_badfile5_v1.0.0.txt │ │ │ ├── rsc.io_badmod_v1.0.0.txt │ │ │ ├── rsc.io_badsum_v1.0.0.txt │ │ │ ├── rsc.io_badsum_v1.0.1.txt │ │ │ ├── rsc.io_badzip_v1.0.0.txt │ │ │ ├── rsc.io_breaker_v1.0.0.txt │ │ │ ├── rsc.io_breaker_v2.0.0+incompatible.txt │ │ │ ├── rsc.io_breaker_v2.0.0.txt │ │ │ ├── rsc.io_fortune_v0.0.1.txt │ │ │ ├── rsc.io_fortune_v1.0.0.txt │ │ │ ├── rsc.io_fortune_v2_v2.0.0.txt │ │ │ ├── rsc.io_future_v1.0.0.txt │ │ │ ├── rsc.io_needall_v0.0.1.txt │ │ │ ├── rsc.io_needgo1183_v0.0.1.txt │ │ │ ├── rsc.io_needgo118_v0.0.1.txt │ │ │ ├── rsc.io_needgo121_v0.0.1.txt │ │ │ ├── rsc.io_needgo1223_v0.0.1.txt │ │ │ ├── rsc.io_needgo122_v0.0.1.txt │ │ │ ├── rsc.io_needgo123_v0.0.1.txt │ │ │ ├── rsc.io_needgo124_v0.0.1.txt │ │ │ ├── rsc.io_panicnil_v1.0.0.txt │ │ │ ├── rsc.io_panicnil_v1.1.0.txt │ │ │ ├── rsc.io_quote_v0.0.0-20180214005133-e7a685a342c0.txt │ │ │ ├── rsc.io_quote_v0.0.0-20180214005840-23179ee8a569.txt │ │ │ ├── rsc.io_quote_v0.0.0-20180628003336-dd9747d19b04.txt │ │ │ ├── rsc.io_quote_v0.0.0-20180709153244-fd906ed3b100.txt │ │ │ ├── rsc.io_quote_v0.0.0-20180709160352-0d003b9c4bfa.txt │ │ │ ├── rsc.io_quote_v0.0.0-20180709162749-b44a0b17b2d1.txt │ │ │ ├── rsc.io_quote_v0.0.0-20180709162816-fe488b867524.txt │ │ │ ├── rsc.io_quote_v0.0.0-20180709162918-a91498bed0a7.txt │ │ │ ├── rsc.io_quote_v0.0.0-20180710144737-5d9f230bcfba.txt │ │ │ ├── rsc.io_quote_v1.0.0.txt │ │ │ ├── rsc.io_quote_v1.1.0.txt │ │ │ ├── rsc.io_quote_v1.2.0.txt │ │ │ ├── rsc.io_quote_v1.2.1.txt │ │ │ ├── rsc.io_quote_v1.3.0.txt │ │ │ ├── rsc.io_quote_v1.4.0.txt │ │ │ ├── rsc.io_quote_v1.5.0.txt │ │ │ ├── rsc.io_quote_v1.5.1.txt │ │ │ ├── rsc.io_quote_v1.5.2.txt │ │ │ ├── rsc.io_quote_v1.5.3-pre1.txt │ │ │ ├── rsc.io_quote_v2.0.0.txt │ │ │ ├── rsc.io_quote_v2_v2.0.1.txt │ │ │ ├── rsc.io_quote_v3_v3.0.0.txt │ │ │ ├── rsc.io_sampler_v1.0.0.txt │ │ │ ├── rsc.io_sampler_v1.2.0.txt │ │ │ ├── rsc.io_sampler_v1.2.1.txt │ │ │ ├── rsc.io_sampler_v1.3.0.txt │ │ │ ├── rsc.io_sampler_v1.3.1.txt │ │ │ ├── rsc.io_sampler_v1.99.99.txt │ │ │ └── rsc.io_testonly_v1.0.0.txt │ │ │ ├── savedir.go │ │ │ ├── script │ │ │ ├── README │ │ │ ├── autocgo.txt │ │ │ ├── badgo.txt │ │ │ ├── bug.txt │ │ │ ├── build_GOTMPDIR.txt │ │ │ ├── build_acl_windows.txt │ │ │ ├── build_arm.txt │ │ │ ├── build_buildvcs_auto.txt │ │ │ ├── build_cache_arch_mode.txt │ │ │ ├── build_cache_compile.txt │ │ │ ├── build_cache_disabled.txt │ │ │ ├── build_cache_gomips.txt │ │ │ ├── build_cache_link.txt │ │ │ ├── build_cache_output.txt │ │ │ ├── build_cache_trimpath.txt │ │ │ ├── build_cc_cache_issue64423.txt │ │ │ ├── build_cd_gopath_different.txt │ │ │ ├── build_cgo_consistent_results.txt │ │ │ ├── build_cgo_error.txt │ │ │ ├── build_concurrent_backend.txt │ │ │ ├── build_cwd_newline.txt │ │ │ ├── build_darwin_cc_arch.txt │ │ │ ├── build_dash_n_cgo.txt │ │ │ ├── build_dash_o_dev_null.txt │ │ │ ├── build_dash_x.txt │ │ │ ├── build_exe.txt │ │ │ ├── build_gcflags.txt │ │ │ ├── build_gcflags_order.txt │ │ │ ├── build_gopath_order.txt │ │ │ ├── build_ignore_leading_bom.txt │ │ │ ├── build_import_comment.txt │ │ │ ├── build_import_cycle.txt │ │ │ ├── build_internal.txt │ │ │ ├── build_issue48319.txt │ │ │ ├── build_issue59571.txt │ │ │ ├── build_issue62156.txt │ │ │ ├── build_issue6480.txt │ │ │ ├── build_issue_65528.txt │ │ │ ├── build_link_x_import_path_escape.txt │ │ │ ├── build_multi_main.txt │ │ │ ├── build_n_cgo.txt │ │ │ ├── build_negative_p.txt │ │ │ ├── build_no_go.txt │ │ │ ├── build_nocache.txt │ │ │ ├── build_output.txt │ │ │ ├── build_overlay.txt │ │ │ ├── build_patterns_outside_gopath.txt │ │ │ ├── build_pgo.txt │ │ │ ├── build_pgo_auto.txt │ │ │ ├── build_pgo_auto_multi.txt │ │ │ ├── build_pie_race.txt │ │ │ ├── build_plugin_non_main.txt │ │ │ ├── build_plugin_reproducible.txt │ │ │ ├── build_relative_pkgdir.txt │ │ │ ├── build_relative_tmpdir.txt │ │ │ ├── build_runtime_gcflags.txt │ │ │ ├── build_shorten_pkg.txt │ │ │ ├── build_single_error.txt │ │ │ ├── build_static.txt │ │ │ ├── build_tag_goexperiment.txt │ │ │ ├── build_tags_no_comma.txt │ │ │ ├── build_test_only.txt │ │ │ ├── build_trimpath.txt │ │ │ ├── build_trimpath_cgo.txt │ │ │ ├── build_trimpath_goroot.txt │ │ │ ├── build_unsupported_goos.txt │ │ │ ├── build_vendor.txt │ │ │ ├── cache_unix.txt │ │ │ ├── cache_vet.txt │ │ │ ├── cgo_asm_error.txt │ │ │ ├── cgo_bad_directives.txt │ │ │ ├── cgo_badmethod_issue57926.txt │ │ │ ├── cgo_depends_on_syscall.txt │ │ │ ├── cgo_flag_contains_space.txt │ │ │ ├── cgo_path.txt │ │ │ ├── cgo_path_space.txt │ │ │ ├── cgo_path_space_quote.txt │ │ │ ├── cgo_stale.txt │ │ │ ├── cgo_stale_precompiled.txt │ │ │ ├── cgo_suspect_flag_force_external.txt │ │ │ ├── cgo_syso_issue29253.txt │ │ │ ├── cgo_trimpath_macro.txt │ │ │ ├── cgo_undef.txt │ │ │ ├── chdir.txt │ │ │ ├── check_goexperiment.txt │ │ │ ├── clean_binary.txt │ │ │ ├── clean_cache_n.txt │ │ │ ├── clean_testcache.txt │ │ │ ├── cmd_import_error.txt │ │ │ ├── cover_asm.txt │ │ │ ├── cover_atomic_pkgall.txt │ │ │ ├── cover_blank_func_decl.txt │ │ │ ├── cover_build_cmdline_pkgs.txt │ │ │ ├── cover_build_pkg_select.txt │ │ │ ├── cover_build_simple.txt │ │ │ ├── cover_cgo.txt │ │ │ ├── cover_cgo_extra_file.txt │ │ │ ├── cover_cgo_extra_test.txt │ │ │ ├── cover_cgo_xtest.txt │ │ │ ├── cover_coverpkg_partial.txt │ │ │ ├── cover_coverpkg_with_init.txt │ │ │ ├── cover_coverprofile_multipkg.txt │ │ │ ├── cover_dash_c.txt │ │ │ ├── cover_dep_loop.txt │ │ │ ├── cover_dot_import.txt │ │ │ ├── cover_error.txt │ │ │ ├── cover_import_main_loop.txt │ │ │ ├── cover_list.txt │ │ │ ├── cover_main_import_path.txt │ │ │ ├── cover_mod_empty.txt │ │ │ ├── cover_modes.txt │ │ │ ├── cover_pattern.txt │ │ │ ├── cover_pkgall_imports.txt │ │ │ ├── cover_pkgall_multiple_mains.txt │ │ │ ├── cover_pkgall_runtime.txt │ │ │ ├── cover_runs.txt │ │ │ ├── cover_statements.txt │ │ │ ├── cover_swig.txt │ │ │ ├── cover_sync_atomic_import.txt │ │ │ ├── cover_test_localpkg_filepath.txt │ │ │ ├── cover_test_pkgselect.txt │ │ │ ├── cover_test_race_issue56370.txt │ │ │ ├── cover_var_init_order.txt │ │ │ ├── cpu_profile_twice.txt │ │ │ ├── darwin_lto_library_ldflag.txt │ │ │ ├── devnull.txt │ │ │ ├── dist_list_missing.txt │ │ │ ├── doc.txt │ │ │ ├── embed.txt │ │ │ ├── embed_brackets.txt │ │ │ ├── embed_fmt.txt │ │ │ ├── env_cache.txt │ │ │ ├── env_cross_build.txt │ │ │ ├── env_exp.txt │ │ │ ├── env_issue46807.txt │ │ │ ├── env_sanitize.txt │ │ │ ├── env_unset.txt │ │ │ ├── env_write.txt │ │ │ ├── fileline.txt │ │ │ ├── fmt_load_errors.txt │ │ │ ├── fsys_walk.txt │ │ │ ├── gccgo_link_c.txt │ │ │ ├── gccgo_link_ldflags.txt │ │ │ ├── gccgo_m.txt │ │ │ ├── gccgo_mangle.txt │ │ │ ├── gcflags_patterns.txt │ │ │ ├── generate.txt │ │ │ ├── generate_bad_imports.txt │ │ │ ├── generate_env.txt │ │ │ ├── generate_goroot_PATH.txt │ │ │ ├── generate_invalid.txt │ │ │ ├── generate_workspace.txt │ │ │ ├── get_404_meta.txt │ │ │ ├── get_insecure.txt │ │ │ ├── get_insecure_no_longer_supported.txt │ │ │ ├── get_issue53955.txt │ │ │ ├── go_badcmd.txt │ │ │ ├── go_version.txt │ │ │ ├── godebug_default.txt │ │ │ ├── godebug_unknown.txt │ │ │ ├── goflags.txt │ │ │ ├── goline_order.txt │ │ │ ├── gopath_install.txt │ │ │ ├── gopath_local.txt │ │ │ ├── gopath_paths.txt │ │ │ ├── gopath_std_vendor.txt │ │ │ ├── gopath_vendor_dup_err.txt │ │ │ ├── goroot_executable.txt │ │ │ ├── goroot_executable_trimpath.txt │ │ │ ├── gotoolchain_issue66175.txt │ │ │ ├── gotoolchain_local.txt │ │ │ ├── gotoolchain_loop.txt │ │ │ ├── gotoolchain_modcmds.txt │ │ │ ├── gotoolchain_net.txt │ │ │ ├── gotoolchain_path.txt │ │ │ ├── gotoolchain_version.txt │ │ │ ├── govcs.txt │ │ │ ├── help.txt │ │ │ ├── import_cycle.txt │ │ │ ├── import_ignore.txt │ │ │ ├── import_main.txt │ │ │ ├── import_unix_tag.txt │ │ │ ├── index.txt │ │ │ ├── install_cgo_excluded.txt │ │ │ ├── install_cleans_build.txt │ │ │ ├── install_cmd_gobin.txt │ │ │ ├── install_cross_gobin.txt │ │ │ ├── install_dep_version.txt │ │ │ ├── install_goroot_targets.txt │ │ │ ├── install_modcacherw_issue64282.txt │ │ │ ├── install_move_not_stale.txt │ │ │ ├── install_msan_and_race_and_asan_require_cgo.txt │ │ │ ├── install_rebuild_removed.txt │ │ │ ├── install_relative_gobin_fail.txt │ │ │ ├── install_shadow_gopath.txt │ │ │ ├── issue36000.txt │ │ │ ├── issue53586.txt │ │ │ ├── ldflag.txt │ │ │ ├── link_external_undef.txt │ │ │ ├── link_matching_actionid.txt │ │ │ ├── link_syso_deps.txt │ │ │ ├── link_syso_issue33139.txt │ │ │ ├── linkname.txt │ │ │ ├── list_all_gobuild.txt │ │ │ ├── list_ambiguous_path.txt │ │ │ ├── list_bad_import.txt │ │ │ ├── list_case_collision.txt │ │ │ ├── list_cgo_compiled_importmap.txt │ │ │ ├── list_compiled_files_issue28749.txt │ │ │ ├── list_compiled_imports.txt │ │ │ ├── list_compiler_output.txt │ │ │ ├── list_constraints.txt │ │ │ ├── list_dedup_packages.txt │ │ │ ├── list_empty_import.txt │ │ │ ├── list_err_cycle.txt │ │ │ ├── list_err_stack.txt │ │ │ ├── list_export_e.txt │ │ │ ├── list_export_embed.txt │ │ │ ├── list_find.txt │ │ │ ├── list_find_nodeps.txt │ │ │ ├── list_gofile_in_goroot.txt │ │ │ ├── list_gomod_in_gopath.txt │ │ │ ├── list_goroot_symlink.txt │ │ │ ├── list_import_cycle_deps_errors.txt │ │ │ ├── list_import_err.txt │ │ │ ├── list_importmap.txt │ │ │ ├── list_issue_56509.txt │ │ │ ├── list_issue_59905.txt │ │ │ ├── list_json_fields.txt │ │ │ ├── list_json_with_f.txt │ │ │ ├── list_legacy_mod.txt │ │ │ ├── list_linkshared.txt │ │ │ ├── list_load_err.txt │ │ │ ├── list_module_when_error.txt │ │ │ ├── list_overlay.txt │ │ │ ├── list_parse_err.txt │ │ │ ├── list_perm.txt │ │ │ ├── list_pkgconfig_error.txt │ │ │ ├── list_replace_absolute_windows.txt │ │ │ ├── list_reserved.txt │ │ │ ├── list_retractions_issue66403.txt │ │ │ ├── list_shadow.txt │ │ │ ├── list_split_main.txt │ │ │ ├── list_std.txt │ │ │ ├── list_std_vendor.txt │ │ │ ├── list_swigcxx.txt │ │ │ ├── list_symlink.txt │ │ │ ├── list_symlink_dotdotdot.txt │ │ │ ├── list_symlink_internal.txt │ │ │ ├── list_symlink_issue35941.txt │ │ │ ├── list_symlink_vendor_issue14054.txt │ │ │ ├── list_symlink_vendor_issue15201.txt │ │ │ ├── list_test_cycle.txt │ │ │ ├── list_test_e.txt │ │ │ ├── list_test_err.txt │ │ │ ├── list_test_imports.txt │ │ │ ├── list_test_non_go_files.txt │ │ │ ├── list_test_simple.txt │ │ │ ├── list_wildcard_skip_nonmatching.txt │ │ │ ├── load_test_pkg_err.txt │ │ │ ├── malformed_gosum_issue62345.txt │ │ │ ├── mod_all.txt │ │ │ ├── mod_alt_goroot.txt │ │ │ ├── mod_ambiguous_import.txt │ │ │ ├── mod_auth.txt │ │ │ ├── mod_bad_domain.txt │ │ │ ├── mod_bad_filenames.txt │ │ │ ├── mod_build_info_err.txt │ │ │ ├── mod_build_tags.txt │ │ │ ├── mod_build_trimpath_issue48557.txt │ │ │ ├── mod_build_versioned.txt │ │ │ ├── mod_cache_dir.txt │ │ │ ├── mod_cache_rw.txt │ │ │ ├── mod_case.txt │ │ │ ├── mod_case_cgo.txt │ │ │ ├── mod_clean_cache.txt │ │ │ ├── mod_concurrent.txt │ │ │ ├── mod_convert_git.txt │ │ │ ├── mod_deprecate_message.txt │ │ │ ├── mod_dir.txt │ │ │ ├── mod_doc.txt │ │ │ ├── mod_doc_path.txt │ │ │ ├── mod_domain_root.txt │ │ │ ├── mod_dot.txt │ │ │ ├── mod_download.txt │ │ │ ├── mod_download_concurrent_read.txt │ │ │ ├── mod_download_exec_toolchain.txt │ │ │ ├── mod_download_git_bareRepository.txt │ │ │ ├── mod_download_git_decorate_full.txt │ │ │ ├── mod_download_hash.txt │ │ │ ├── mod_download_insecure_redirect.txt │ │ │ ├── mod_download_issue51114.txt │ │ │ ├── mod_download_json.txt │ │ │ ├── mod_download_partial.txt │ │ │ ├── mod_download_private_vcs.txt │ │ │ ├── mod_download_replace_file.txt │ │ │ ├── mod_download_svn.txt │ │ │ ├── mod_download_too_many_redirects.txt │ │ │ ├── mod_e.txt │ │ │ ├── mod_edit.txt │ │ │ ├── mod_edit_go.txt │ │ │ ├── mod_edit_no_modcache.txt │ │ │ ├── mod_edit_toolchain.txt │ │ │ ├── mod_empty_err.txt │ │ │ ├── mod_enabled.txt │ │ │ ├── mod_exclude_go121.txt │ │ │ ├── mod_file_proxy.txt │ │ │ ├── mod_fileproxy_vcs_missing_issue51589.txt │ │ │ ├── mod_find.txt │ │ │ ├── mod_fs_patterns.txt │ │ │ ├── mod_get_ambiguous_arg.txt │ │ │ ├── mod_get_ambiguous_import.txt │ │ │ ├── mod_get_ambiguous_pkg.txt │ │ │ ├── mod_get_boost.txt │ │ │ ├── mod_get_changes.txt │ │ │ ├── mod_get_commit.txt │ │ │ ├── mod_get_deprecate_install.txt │ │ │ ├── mod_get_deprecated.txt │ │ │ ├── mod_get_direct.txt │ │ │ ├── mod_get_downadd_indirect.txt │ │ │ ├── mod_get_downgrade.txt │ │ │ ├── mod_get_downgrade_missing.txt │ │ │ ├── mod_get_downup_artifact.txt │ │ │ ├── mod_get_downup_indirect.txt │ │ │ ├── mod_get_downup_indirect_pruned.txt │ │ │ ├── mod_get_downup_pseudo_artifact.txt │ │ │ ├── mod_get_errors.txt │ │ │ ├── mod_get_exec_toolchain.txt │ │ │ ├── mod_get_extra.txt │ │ │ ├── mod_get_fallback.txt │ │ │ ├── mod_get_fossil.txt │ │ │ ├── mod_get_future.txt │ │ │ ├── mod_get_go_file.txt │ │ │ ├── mod_get_hash.txt │ │ │ ├── mod_get_incompatible.txt │ │ │ ├── mod_get_indirect.txt │ │ │ ├── mod_get_insecure_redirect.txt │ │ │ ├── mod_get_issue37438.txt │ │ │ ├── mod_get_issue47650.txt │ │ │ ├── mod_get_issue47979.txt │ │ │ ├── mod_get_issue48511.txt │ │ │ ├── mod_get_issue56494.txt │ │ │ ├── mod_get_issue60490.txt │ │ │ ├── mod_get_latest_pseudo.txt │ │ │ ├── mod_get_lazy_indirect.txt │ │ │ ├── mod_get_lazy_upgrade_lazy.txt │ │ │ ├── mod_get_local.txt │ │ │ ├── mod_get_main.txt │ │ │ ├── mod_get_major.txt │ │ │ ├── mod_get_missing_ziphash.txt │ │ │ ├── mod_get_moved.txt │ │ │ ├── mod_get_newcycle.txt │ │ │ ├── mod_get_none.txt │ │ │ ├── mod_get_nopkgs.txt │ │ │ ├── mod_get_patch.txt │ │ │ ├── mod_get_patchbound.txt │ │ │ ├── mod_get_patchcycle.txt │ │ │ ├── mod_get_patchmod.txt │ │ │ ├── mod_get_patterns.txt │ │ │ ├── mod_get_pkgtags.txt │ │ │ ├── mod_get_prefer_incompatible.txt │ │ │ ├── mod_get_promote_implicit.txt │ │ │ ├── mod_get_pseudo.txt │ │ │ ├── mod_get_pseudo_other_branch.txt │ │ │ ├── mod_get_pseudo_prefix.txt │ │ │ ├── mod_get_replaced.txt │ │ │ ├── mod_get_retract.txt │ │ │ ├── mod_get_retract_ambiguous.txt │ │ │ ├── mod_get_split.txt │ │ │ ├── mod_get_sum_noroot.txt │ │ │ ├── mod_get_tags.txt │ │ │ ├── mod_get_test.txt │ │ │ ├── mod_get_toolchain.txt │ │ │ ├── mod_get_trailing_slash.txt │ │ │ ├── mod_get_update_unrelated_sum.txt │ │ │ ├── mod_get_upgrade.txt │ │ │ ├── mod_get_upgrade_pseudo.txt │ │ │ ├── mod_get_wild.txt │ │ │ ├── mod_getmode_vendor.txt │ │ │ ├── mod_getx.txt │ │ │ ├── mod_git_export_subst.txt │ │ │ ├── mod_go_version.txt │ │ │ ├── mod_go_version_missing.txt │ │ │ ├── mod_go_version_mixed.txt │ │ │ ├── mod_gobuild_import.txt │ │ │ ├── mod_gofmt_invalid.txt │ │ │ ├── mod_goline.txt │ │ │ ├── mod_goline_old.txt │ │ │ ├── mod_goline_too_new.txt │ │ │ ├── mod_gomodcache.txt │ │ │ ├── mod_gonoproxy.txt │ │ │ ├── mod_gopkg_unstable.txt │ │ │ ├── mod_goroot_errors.txt │ │ │ ├── mod_graph.txt │ │ │ ├── mod_graph_version.txt │ │ │ ├── mod_help.txt │ │ │ ├── mod_import.txt │ │ │ ├── mod_import_cycle.txt │ │ │ ├── mod_import_issue41113.txt │ │ │ ├── mod_import_issue42891.txt │ │ │ ├── mod_import_meta.txt │ │ │ ├── mod_import_mod.txt │ │ │ ├── mod_import_toolchain.txt │ │ │ ├── mod_import_v1suffix.txt │ │ │ ├── mod_in_testdata_dir.txt │ │ │ ├── mod_indirect.txt │ │ │ ├── mod_indirect_main.txt │ │ │ ├── mod_indirect_nospace.txt │ │ │ ├── mod_indirect_tidy.txt │ │ │ ├── mod_init_empty.txt │ │ │ ├── mod_init_invalid_major.txt │ │ │ ├── mod_init_path.txt │ │ │ ├── mod_init_tidy.txt │ │ │ ├── mod_insecure_issue63845.txt │ │ │ ├── mod_install_hint.txt │ │ │ ├── mod_install_pkg_version.txt │ │ │ ├── mod_install_versioned.txt │ │ │ ├── mod_internal.txt │ │ │ ├── mod_invalid_path.txt │ │ │ ├── mod_invalid_path_dotname.txt │ │ │ ├── mod_invalid_path_plus.txt │ │ │ ├── mod_invalid_version.txt │ │ │ ├── mod_issue35270.txt │ │ │ ├── mod_issue35317.txt │ │ │ ├── mod_lazy_consistency.txt │ │ │ ├── mod_lazy_downgrade.txt │ │ │ ├── mod_lazy_import_allmod.txt │ │ │ ├── mod_lazy_new_import.txt │ │ │ ├── mod_lazy_test_horizon.txt │ │ │ ├── mod_lazy_test_of_test_dep.txt │ │ │ ├── mod_list.txt │ │ │ ├── mod_list_bad_import.txt │ │ │ ├── mod_list_command_line_arguments.txt │ │ │ ├── mod_list_compiled_concurrent.txt │ │ │ ├── mod_list_deprecated.txt │ │ │ ├── mod_list_deprecated_replace.txt │ │ │ ├── mod_list_dir.txt │ │ │ ├── mod_list_direct.txt │ │ │ ├── mod_list_e_readonly.txt │ │ │ ├── mod_list_issue61415.txt │ │ │ ├── mod_list_issue61423.txt │ │ │ ├── mod_list_odd_tags.txt │ │ │ ├── mod_list_pseudo.txt │ │ │ ├── mod_list_replace_dir.txt │ │ │ ├── mod_list_retract.txt │ │ │ ├── mod_list_std.txt │ │ │ ├── mod_list_sums.txt │ │ │ ├── mod_list_test.txt │ │ │ ├── mod_list_test_cycle.txt │ │ │ ├── mod_list_update_nolatest.txt │ │ │ ├── mod_list_upgrade.txt │ │ │ ├── mod_list_upgrade_pseudo.txt │ │ │ ├── mod_load_badchain.txt │ │ │ ├── mod_load_badmod.txt │ │ │ ├── mod_load_badzip.txt │ │ │ ├── mod_load_replace_mismatch.txt │ │ │ ├── mod_local_replace.txt │ │ │ ├── mod_missing_repo.txt │ │ │ ├── mod_missingpkg_prerelease.txt │ │ │ ├── mod_modinfo.txt │ │ │ ├── mod_multirepo.txt │ │ │ ├── mod_no_gopath.txt │ │ │ ├── mod_nomod.txt │ │ │ ├── mod_notall.txt │ │ │ ├── mod_off.txt │ │ │ ├── mod_off_init.txt │ │ │ ├── mod_outside.txt │ │ │ ├── mod_overlay.txt │ │ │ ├── mod_patterns.txt │ │ │ ├── mod_patterns_vendor.txt │ │ │ ├── mod_perm.txt │ │ │ ├── mod_permissions.txt │ │ │ ├── mod_prefer_compatible.txt │ │ │ ├── mod_proxy_errors.txt │ │ │ ├── mod_proxy_https.txt │ │ │ ├── mod_proxy_invalid.txt │ │ │ ├── mod_proxy_list.txt │ │ │ ├── mod_pseudo_cache.txt │ │ │ ├── mod_query.txt │ │ │ ├── mod_query_empty.txt │ │ │ ├── mod_query_exclude.txt │ │ │ ├── mod_query_main.txt │ │ │ ├── mod_readonly.txt │ │ │ ├── mod_replace.txt │ │ │ ├── mod_replace_gopkgin.txt │ │ │ ├── mod_replace_import.txt │ │ │ ├── mod_replace_readonly.txt │ │ │ ├── mod_require_exclude.txt │ │ │ ├── mod_retention.txt │ │ │ ├── mod_retract.txt │ │ │ ├── mod_retract_fix_version.txt │ │ │ ├── mod_retract_incompatible.txt │ │ │ ├── mod_retract_noupgrade.txt │ │ │ ├── mod_retract_pseudo_base.txt │ │ │ ├── mod_retract_rationale.txt │ │ │ ├── mod_retract_rename.txt │ │ │ ├── mod_retract_replace.txt │ │ │ ├── mod_retract_versions.txt │ │ │ ├── mod_run_issue52331.txt │ │ │ ├── mod_run_nonmain.txt │ │ │ ├── mod_run_path.txt │ │ │ ├── mod_run_pkg_version.txt │ │ │ ├── mod_run_pkgerror.txt │ │ │ ├── mod_skip_write.txt │ │ │ ├── mod_stale.txt │ │ │ ├── mod_std_vendor.txt │ │ │ ├── mod_string_alias.txt │ │ │ ├── mod_sum_ambiguous.txt │ │ │ ├── mod_sum_issue56222.txt │ │ │ ├── mod_sum_lookup.txt │ │ │ ├── mod_sum_readonly.txt │ │ │ ├── mod_sum_replaced.txt │ │ │ ├── mod_sumdb.txt │ │ │ ├── mod_sumdb_cache.txt │ │ │ ├── mod_sumdb_file_path.txt │ │ │ ├── mod_sumdb_golang.txt │ │ │ ├── mod_sumdb_proxy.txt │ │ │ ├── mod_symlink.txt │ │ │ ├── mod_symlink_dotgo.txt │ │ │ ├── mod_tagged_import_cycle.txt │ │ │ ├── mod_test.txt │ │ │ ├── mod_test_cached.txt │ │ │ ├── mod_test_files.txt │ │ │ ├── mod_tidy.txt │ │ │ ├── mod_tidy_compat.txt │ │ │ ├── mod_tidy_compat_added.txt │ │ │ ├── mod_tidy_compat_ambiguous.txt │ │ │ ├── mod_tidy_compat_deleted.txt │ │ │ ├── mod_tidy_compat_implicit.txt │ │ │ ├── mod_tidy_compat_incompatible.txt │ │ │ ├── mod_tidy_compat_irrelevant.txt │ │ │ ├── mod_tidy_convergence.txt │ │ │ ├── mod_tidy_convergence_loop.txt │ │ │ ├── mod_tidy_cycle.txt │ │ │ ├── mod_tidy_downgrade_ambiguous.txt │ │ │ ├── mod_tidy_duplicates.txt │ │ │ ├── mod_tidy_error.txt │ │ │ ├── mod_tidy_indirect.txt │ │ │ ├── mod_tidy_issue60313.txt │ │ │ ├── mod_tidy_lazy_self.txt │ │ │ ├── mod_tidy_newroot.txt │ │ │ ├── mod_tidy_old.txt │ │ │ ├── mod_tidy_oldgo.txt │ │ │ ├── mod_tidy_quote.txt │ │ │ ├── mod_tidy_replace.txt │ │ │ ├── mod_tidy_replace_old.txt │ │ │ ├── mod_tidy_sum.txt │ │ │ ├── mod_tidy_support_buildx.txt │ │ │ ├── mod_tidy_symlink_issue35941.txt │ │ │ ├── mod_tidy_temp.txt │ │ │ ├── mod_tidy_version.txt │ │ │ ├── mod_tidy_version_tooold.txt │ │ │ ├── mod_toolchain.txt │ │ │ ├── mod_toolchain_slash.txt │ │ │ ├── mod_update_sum_readonly.txt │ │ │ ├── mod_upgrade_patch.txt │ │ │ ├── mod_vcs_missing.txt │ │ │ ├── mod_vendor.txt │ │ │ ├── mod_vendor_auto.txt │ │ │ ├── mod_vendor_build.txt │ │ │ ├── mod_vendor_embed.txt │ │ │ ├── mod_vendor_gomod.txt │ │ │ ├── mod_vendor_goversion.txt │ │ │ ├── mod_vendor_issue46867.txt │ │ │ ├── mod_vendor_nodeps.txt │ │ │ ├── mod_vendor_redundant_requirement.txt │ │ │ ├── mod_vendor_replace.txt │ │ │ ├── mod_vendor_trimpath.txt │ │ │ ├── mod_vendor_unused.txt │ │ │ ├── mod_vendor_unused_only.txt │ │ │ ├── mod_verify.txt │ │ │ ├── mod_verify_work.txt │ │ │ ├── mod_versions.txt │ │ │ ├── mod_why.txt │ │ │ ├── modfile_flag.txt │ │ │ ├── noncanonical_import.txt │ │ │ ├── old_tidy_toolchain.txt │ │ │ ├── pattern_syntax_error.txt │ │ │ ├── prevent_sys_unix_import.txt │ │ │ ├── repro_build.txt │ │ │ ├── reuse_git.txt │ │ │ ├── run_dirs.txt │ │ │ ├── run_hello.txt │ │ │ ├── run_hello_pkg.txt │ │ │ ├── run_internal.txt │ │ │ ├── run_issue11709.txt │ │ │ ├── run_issue51125.txt │ │ │ ├── run_set_executable_name.txt │ │ │ ├── run_vendor.txt │ │ │ ├── run_wildcard.txt │ │ │ ├── run_work_versioned.txt │ │ │ ├── script_help.txt │ │ │ ├── script_wait.txt │ │ │ ├── slashpath.txt │ │ │ ├── src_file.txt │ │ │ ├── std_vendor.txt │ │ │ ├── test2json_interrupt.txt │ │ │ ├── test_android_issue62123.txt │ │ │ ├── test_bad_example.txt │ │ │ ├── test_badtest.txt │ │ │ ├── test_benchmark_1x.txt │ │ │ ├── test_benchmark_chatty_fail.txt │ │ │ ├── test_benchmark_chatty_success.txt │ │ │ ├── test_benchmark_fatal.txt │ │ │ ├── test_benchmark_labels.txt │ │ │ ├── test_benchmark_timeout.txt │ │ │ ├── test_build_failure.txt │ │ │ ├── test_buildvcs.txt │ │ │ ├── test_cache_inputs.txt │ │ │ ├── test_chatty_fail.txt │ │ │ ├── test_chatty_parallel_fail.txt │ │ │ ├── test_chatty_parallel_success.txt │ │ │ ├── test_chatty_parallel_success_run.txt │ │ │ ├── test_chatty_success.txt │ │ │ ├── test_cleanup_failnow.txt │ │ │ ├── test_compile_binary.txt │ │ │ ├── test_compile_multi_pkg.txt │ │ │ ├── test_compile_tempfile.txt │ │ │ ├── test_deadline.txt │ │ │ ├── test_empty.txt │ │ │ ├── test_env_term.txt │ │ │ ├── test_example_goexit.txt │ │ │ ├── test_exit.txt │ │ │ ├── test_fail_fast.txt │ │ │ ├── test_fail_newline.txt │ │ │ ├── test_finished_subtest_goroutines.txt │ │ │ ├── test_flag.txt │ │ │ ├── test_flags.txt │ │ │ ├── test_fullpath.txt │ │ │ ├── test_fuzz.txt │ │ │ ├── test_fuzz_cache.txt │ │ │ ├── test_fuzz_cgo.txt │ │ │ ├── test_fuzz_chatty.txt │ │ │ ├── test_fuzz_cleanup.txt │ │ │ ├── test_fuzz_cov.txt │ │ │ ├── test_fuzz_deadline.txt │ │ │ ├── test_fuzz_dup_cache.txt │ │ │ ├── test_fuzz_err_deadlock.txt │ │ │ ├── test_fuzz_fuzztime.txt │ │ │ ├── test_fuzz_io_error.txt │ │ │ ├── test_fuzz_limit_dup_entry.txt │ │ │ ├── test_fuzz_match.txt │ │ │ ├── test_fuzz_minimize.txt │ │ │ ├── test_fuzz_minimize_dirty_cov.txt │ │ │ ├── test_fuzz_minimize_interesting.txt │ │ │ ├── test_fuzz_modcache.txt │ │ │ ├── test_fuzz_multiple.txt │ │ │ ├── test_fuzz_mutate_crash.txt │ │ │ ├── test_fuzz_mutate_fail.txt │ │ │ ├── test_fuzz_mutator.txt │ │ │ ├── test_fuzz_mutator_repeat.txt │ │ │ ├── test_fuzz_non_crash_signal.txt │ │ │ ├── test_fuzz_parallel.txt │ │ │ ├── test_fuzz_profile_flags.txt │ │ │ ├── test_fuzz_return.txt │ │ │ ├── test_fuzz_run.txt │ │ │ ├── test_fuzz_seed_corpus.txt │ │ │ ├── test_fuzz_setenv.txt │ │ │ ├── test_fuzz_test_race.txt │ │ │ ├── test_fuzz_unsupported.txt │ │ │ ├── test_generated_main.txt │ │ │ ├── test_go111module_cache.txt │ │ │ ├── test_goroot_PATH.txt │ │ │ ├── test_import_error_stack.txt │ │ │ ├── test_issue45477.txt │ │ │ ├── test_json.txt │ │ │ ├── test_json_exit.txt │ │ │ ├── test_json_interleaved.txt │ │ │ ├── test_json_issue35169.txt │ │ │ ├── test_json_panic_exit.txt │ │ │ ├── test_json_prints.txt │ │ │ ├── test_json_timeout.txt │ │ │ ├── test_main.txt │ │ │ ├── test_main_archive.txt │ │ │ ├── test_main_panic.txt │ │ │ ├── test_main_twice.txt │ │ │ ├── test_match_benchmark_labels.txt │ │ │ ├── test_match_no_benchmarks.txt │ │ │ ├── test_match_no_subtests.txt │ │ │ ├── test_match_no_subtests_failure.txt │ │ │ ├── test_match_no_subtests_parallel.txt │ │ │ ├── test_match_no_tests.txt │ │ │ ├── test_match_no_tests_build_failure.txt │ │ │ ├── test_match_no_tests_with_subtests.txt │ │ │ ├── test_match_only_benchmarks.txt │ │ │ ├── test_match_only_example.txt │ │ │ ├── test_match_only_subtests.txt │ │ │ ├── test_match_only_subtests_parallel.txt │ │ │ ├── test_match_only_tests.txt │ │ │ ├── test_minus_n.txt │ │ │ ├── test_no_run_example.txt │ │ │ ├── test_no_tests.txt │ │ │ ├── test_overlay.txt │ │ │ ├── test_parallel_number.txt │ │ │ ├── test_ppc64_linker_funcs.txt │ │ │ ├── test_ppc64le_cgo_inline_plt.txt │ │ │ ├── test_profile.txt │ │ │ ├── test_race.txt │ │ │ ├── test_race_cover_mode_issue20435.txt │ │ │ ├── test_race_install.txt │ │ │ ├── test_race_install_cgo.txt │ │ │ ├── test_race_tag.txt │ │ │ ├── test_rebuildall.txt │ │ │ ├── test_regexps.txt │ │ │ ├── test_relative_cmdline.txt │ │ │ ├── test_relative_import.txt │ │ │ ├── test_script_cmdcd.txt │ │ │ ├── test_shuffle.txt │ │ │ ├── test_skip.txt │ │ │ ├── test_source_order.txt │ │ │ ├── test_status.txt │ │ │ ├── test_syntax_error_says_fail.txt │ │ │ ├── test_timeout.txt │ │ │ ├── test_timeout_stdin.txt │ │ │ ├── test_trimpath.txt │ │ │ ├── test_trimpath_main.txt │ │ │ ├── test_trimpath_test_suffix.txt │ │ │ ├── test_vendor.txt │ │ │ ├── test_vet.txt │ │ │ ├── test_write_profiles_on_timeout.txt │ │ │ ├── test_xtestonly_works.txt │ │ │ ├── testing_coverage.txt │ │ │ ├── testing_issue40908.txt │ │ │ ├── toolexec.txt │ │ │ ├── tooltags.txt │ │ │ ├── trampoline_reuse_test.txt │ │ │ ├── vendor_complex.txt │ │ │ ├── vendor_gopath_issue11409.txt │ │ │ ├── vendor_import.txt │ │ │ ├── vendor_import_missing.txt │ │ │ ├── vendor_import_wrong.txt │ │ │ ├── vendor_internal.txt │ │ │ ├── vendor_issue12156.txt │ │ │ ├── vendor_list_issue11977.txt │ │ │ ├── vendor_outside_module.txt │ │ │ ├── vendor_resolve.txt │ │ │ ├── vendor_test_issue11864.txt │ │ │ ├── vendor_test_issue14613.txt │ │ │ ├── version.txt │ │ │ ├── version_build_settings.txt │ │ │ ├── version_buildvcs_bzr.txt │ │ │ ├── version_buildvcs_fossil.txt │ │ │ ├── version_buildvcs_git.txt │ │ │ ├── version_buildvcs_hg.txt │ │ │ ├── version_buildvcs_nested.txt │ │ │ ├── version_cshared.txt │ │ │ ├── version_gc_sections.txt │ │ │ ├── version_goexperiment.txt │ │ │ ├── version_replace.txt │ │ │ ├── vet.txt │ │ │ ├── vet_asm.txt │ │ │ ├── vet_deps.txt │ │ │ ├── vet_flags.txt │ │ │ ├── vet_internal.txt │ │ │ ├── work.txt │ │ │ ├── work_build_no_modules.txt │ │ │ ├── work_disablevendor.txt │ │ │ ├── work_edit.txt │ │ │ ├── work_edit_toolchain.txt │ │ │ ├── work_empty_panic_GOPATH.txt │ │ │ ├── work_env.txt │ │ │ ├── work_get_toolchain.txt │ │ │ ├── work_goline_order.txt │ │ │ ├── work_goproxy_off.txt │ │ │ ├── work_gowork.txt │ │ │ ├── work_init_gowork.txt │ │ │ ├── work_init_path.txt │ │ │ ├── work_init_toolchain.txt │ │ │ ├── work_install_submodule.txt │ │ │ ├── work_issue51204.txt │ │ │ ├── work_issue54048.txt │ │ │ ├── work_issue54372.txt │ │ │ ├── work_module_not_in_go_work.txt │ │ │ ├── work_nowork.txt │ │ │ ├── work_prune.txt │ │ │ ├── work_prune_all.txt │ │ │ ├── work_regression_hang.txt │ │ │ ├── work_reject_modfile.txt │ │ │ ├── work_replace.txt │ │ │ ├── work_replace_conflict.txt │ │ │ ├── work_replace_conflict_override.txt │ │ │ ├── work_replace_main_module.txt │ │ │ ├── work_sum.txt │ │ │ ├── work_sum_mismatch.txt │ │ │ ├── work_sync.txt │ │ │ ├── work_sync_irrelevant_dependency.txt │ │ │ ├── work_sync_missing_module.txt │ │ │ ├── work_sync_relevant_dependency.txt │ │ │ ├── work_sync_sum.txt │ │ │ ├── work_sync_toolchain.txt │ │ │ ├── work_use.txt │ │ │ ├── work_use_deleted.txt │ │ │ ├── work_use_dot.txt │ │ │ ├── work_use_issue50958.txt │ │ │ ├── work_use_issue55952.txt │ │ │ ├── work_use_only_dirs.txt │ │ │ ├── work_use_toolchain.txt │ │ │ ├── work_vendor_empty.txt │ │ │ ├── work_vendor_main_module_replaced.txt │ │ │ ├── work_vendor_modules_txt_conditional.txt │ │ │ ├── work_vendor_modules_txt_consistent.txt │ │ │ ├── work_vendor_prune.txt │ │ │ ├── work_vendor_prune_all.txt │ │ │ ├── work_vet.txt │ │ │ └── work_why_download_graph.txt │ │ │ ├── vcstest │ │ │ ├── README │ │ │ ├── auth │ │ │ │ ├── or401.txt │ │ │ │ ├── or404.txt │ │ │ │ ├── ormanylines.txt │ │ │ │ └── oronelongline.txt │ │ │ ├── bzr │ │ │ │ └── hello.txt │ │ │ ├── fossil │ │ │ │ └── hello.txt │ │ │ ├── git │ │ │ │ ├── commit-after-tag.txt │ │ │ │ ├── empty-v2-without-v1.txt │ │ │ │ ├── emptytest.txt │ │ │ │ ├── gitrepo1.txt │ │ │ │ ├── hello.txt │ │ │ │ ├── insecurerepo.txt │ │ │ │ ├── issue47650.txt │ │ │ │ ├── issue61415.txt │ │ │ │ ├── mainonly.txt │ │ │ │ ├── missingrepo.txt │ │ │ │ ├── modlegacy1-new.txt │ │ │ │ ├── modlegacy1-old.txt │ │ │ │ ├── no-tags.txt │ │ │ │ ├── odd-tags.txt │ │ │ │ ├── prefixtagtests.txt │ │ │ │ ├── querytest.txt │ │ │ │ ├── retract-pseudo.txt │ │ │ │ ├── semver-branch.txt │ │ │ │ ├── tagtests.txt │ │ │ │ ├── v2repo.txt │ │ │ │ ├── v2sub.txt │ │ │ │ ├── v3pkg.txt │ │ │ │ └── vgotest1.txt │ │ │ ├── go │ │ │ │ ├── custom-hg-hello.txt │ │ │ │ ├── insecure.txt │ │ │ │ ├── missingrepo.txt │ │ │ │ ├── mod │ │ │ │ │ └── gitrepo1.txt │ │ │ │ ├── modauth404.txt │ │ │ │ ├── test1-svn-git.txt │ │ │ │ ├── test2-svn-git.txt │ │ │ │ └── v2module.txt │ │ │ ├── hg │ │ │ │ ├── custom-hg-hello.txt │ │ │ │ ├── hello.txt │ │ │ │ ├── hgrepo1.txt │ │ │ │ └── vgotest1.txt │ │ │ ├── insecure.txt │ │ │ └── svn │ │ │ │ ├── hello.txt │ │ │ │ ├── nonexistent.txt │ │ │ │ ├── test1-svn-git.txt │ │ │ │ └── test2-svn-git.txt │ │ │ └── vendormod.txt │ ├── gofmt │ │ ├── doc.go │ │ ├── gofmt.go │ │ ├── gofmt_test.go │ │ ├── gofmt_unix_test.go │ │ ├── internal.go │ │ ├── long_test.go │ │ ├── rewrite.go │ │ ├── simplify.go │ │ └── testdata │ │ │ ├── comments.golden │ │ │ ├── comments.input │ │ │ ├── composites.golden │ │ │ ├── composites.input │ │ │ ├── crlf.golden │ │ │ ├── crlf.input │ │ │ ├── emptydecl.golden │ │ │ ├── emptydecl.input │ │ │ ├── go2numbers.golden │ │ │ ├── go2numbers.input │ │ │ ├── import.golden │ │ │ ├── import.input │ │ │ ├── issue28082.golden │ │ │ ├── issue28082.input │ │ │ ├── ranges.golden │ │ │ ├── ranges.input │ │ │ ├── rewrite1.golden │ │ │ ├── rewrite1.input │ │ │ ├── rewrite10.golden │ │ │ ├── rewrite10.input │ │ │ ├── rewrite2.golden │ │ │ ├── rewrite2.input │ │ │ ├── rewrite3.golden │ │ │ ├── rewrite3.input │ │ │ ├── rewrite4.golden │ │ │ ├── rewrite4.input │ │ │ ├── rewrite5.golden │ │ │ ├── rewrite5.input │ │ │ ├── rewrite6.golden │ │ │ ├── rewrite6.input │ │ │ ├── rewrite7.golden │ │ │ ├── rewrite7.input │ │ │ ├── rewrite8.golden │ │ │ ├── rewrite8.input │ │ │ ├── rewrite9.golden │ │ │ ├── rewrite9.input │ │ │ ├── slices1.golden │ │ │ ├── slices1.input │ │ │ ├── stdin1.golden │ │ │ ├── stdin1.input │ │ │ ├── stdin2.golden │ │ │ ├── stdin2.input │ │ │ ├── stdin3.golden │ │ │ ├── stdin3.input │ │ │ ├── stdin4.golden │ │ │ ├── stdin4.input │ │ │ ├── stdin5.golden │ │ │ ├── stdin5.input │ │ │ ├── stdin6.golden │ │ │ ├── stdin6.input │ │ │ ├── stdin7.golden │ │ │ ├── stdin7.input │ │ │ ├── tabs.golden │ │ │ ├── tabs.input │ │ │ ├── typealias.golden │ │ │ ├── typealias.input │ │ │ ├── typeparams.golden │ │ │ ├── typeparams.input │ │ │ ├── typeswitch.golden │ │ │ └── typeswitch.input │ ├── internal │ │ ├── archive │ │ │ ├── archive.go │ │ │ ├── archive_test.go │ │ │ └── testdata │ │ │ │ ├── go1.go │ │ │ │ ├── go2.go │ │ │ │ └── mycgo │ │ │ │ ├── c1.c │ │ │ │ ├── c2.c │ │ │ │ ├── go.go │ │ │ │ ├── go1.go │ │ │ │ └── go2.go │ │ ├── bio │ │ │ ├── buf.go │ │ │ ├── buf_mmap.go │ │ │ ├── buf_nommap.go │ │ │ └── must.go │ │ ├── bootstrap_test │ │ │ ├── experiment_toolid_test.go │ │ │ ├── overlaydir_test.go │ │ │ └── reboot_test.go │ │ ├── browser │ │ │ └── browser.go │ │ ├── buildid │ │ │ ├── buildid.go │ │ │ ├── buildid_test.go │ │ │ ├── note.go │ │ │ ├── rewrite.go │ │ │ └── testdata │ │ │ │ ├── a.elf.base64 │ │ │ │ ├── a.macho.base64 │ │ │ │ ├── a.pe.base64 │ │ │ │ └── p.a.base64 │ │ ├── codesign │ │ │ └── codesign.go │ │ ├── cov │ │ │ ├── covcmd │ │ │ │ └── cmddefs.go │ │ │ ├── mreader.go │ │ │ ├── read_test.go │ │ │ ├── readcovdata.go │ │ │ └── testdata │ │ │ │ └── small.go │ │ ├── dwarf │ │ │ ├── dwarf.go │ │ │ ├── dwarf_defs.go │ │ │ └── dwarf_test.go │ │ ├── edit │ │ │ ├── edit.go │ │ │ └── edit_test.go │ │ ├── gcprog │ │ │ └── gcprog.go │ │ ├── goobj │ │ │ ├── builtin.go │ │ │ ├── builtinlist.go │ │ │ ├── funcinfo.go │ │ │ ├── mkbuiltin.go │ │ │ ├── objfile.go │ │ │ └── objfile_test.go │ │ ├── metadata │ │ │ └── main.go │ │ ├── moddeps │ │ │ └── moddeps_test.go │ │ ├── notsha256 │ │ │ ├── sha256.go │ │ │ ├── sha256_test.go │ │ │ ├── sha256block.go │ │ │ ├── sha256block_386.s │ │ │ ├── sha256block_amd64.go │ │ │ ├── sha256block_amd64.s │ │ │ ├── sha256block_decl.go │ │ │ ├── sha256block_generic.go │ │ │ └── sha256block_ppc64x.s │ │ ├── obj │ │ │ ├── abi_string.go │ │ │ ├── addrtype_string.go │ │ │ ├── arm │ │ │ │ ├── a.out.go │ │ │ │ ├── anames.go │ │ │ │ ├── anames5.go │ │ │ │ ├── asm5.go │ │ │ │ ├── list5.go │ │ │ │ └── obj5.go │ │ │ ├── arm64 │ │ │ │ ├── a.out.go │ │ │ │ ├── anames.go │ │ │ │ ├── anames7.go │ │ │ │ ├── asm7.go │ │ │ │ ├── asm_arm64_test.go │ │ │ │ ├── asm_arm64_test.s │ │ │ │ ├── doc.go │ │ │ │ ├── list7.go │ │ │ │ ├── obj7.go │ │ │ │ ├── specialoperand_string.go │ │ │ │ └── sysRegEnc.go │ │ │ ├── data.go │ │ │ ├── dwarf.go │ │ │ ├── go.go │ │ │ ├── inl.go │ │ │ ├── ld.go │ │ │ ├── line.go │ │ │ ├── line_test.go │ │ │ ├── link.go │ │ │ ├── loong64 │ │ │ │ ├── a.out.go │ │ │ │ ├── anames.go │ │ │ │ ├── asm.go │ │ │ │ ├── cnames.go │ │ │ │ ├── list.go │ │ │ │ └── obj.go │ │ │ ├── mips │ │ │ │ ├── a.out.go │ │ │ │ ├── anames.go │ │ │ │ ├── anames0.go │ │ │ │ ├── asm0.go │ │ │ │ ├── list0.go │ │ │ │ └── obj0.go │ │ │ ├── objfile.go │ │ │ ├── objfile_test.go │ │ │ ├── pass.go │ │ │ ├── pcln.go │ │ │ ├── plist.go │ │ │ ├── ppc64 │ │ │ │ ├── a.out.go │ │ │ │ ├── anames.go │ │ │ │ ├── anames9.go │ │ │ │ ├── asm9.go │ │ │ │ ├── asm9_gtables.go │ │ │ │ ├── asm_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── list9.go │ │ │ │ └── obj9.go │ │ │ ├── riscv │ │ │ │ ├── anames.go │ │ │ │ ├── asm_test.go │ │ │ │ ├── cpu.go │ │ │ │ ├── inst.go │ │ │ │ ├── list.go │ │ │ │ ├── obj.go │ │ │ │ └── testdata │ │ │ │ │ └── testbranch │ │ │ │ │ ├── branch_test.go │ │ │ │ │ └── branch_test.s │ │ │ ├── s390x │ │ │ │ ├── a.out.go │ │ │ │ ├── anames.go │ │ │ │ ├── anamesz.go │ │ │ │ ├── asmz.go │ │ │ │ ├── condition_code.go │ │ │ │ ├── listz.go │ │ │ │ ├── objz.go │ │ │ │ ├── rotate.go │ │ │ │ ├── rotate_test.go │ │ │ │ └── vector.go │ │ │ ├── sizeof_test.go │ │ │ ├── stringer.go │ │ │ ├── sym.go │ │ │ ├── textflag.go │ │ │ ├── util.go │ │ │ ├── wasm │ │ │ │ ├── a.out.go │ │ │ │ ├── anames.go │ │ │ │ └── wasmobj.go │ │ │ └── x86 │ │ │ │ ├── a.out.go │ │ │ │ ├── aenum.go │ │ │ │ ├── anames.go │ │ │ │ ├── asm6.go │ │ │ │ ├── asm_test.go │ │ │ │ ├── avx_optabs.go │ │ │ │ ├── evex.go │ │ │ │ ├── list6.go │ │ │ │ ├── obj6.go │ │ │ │ ├── obj6_test.go │ │ │ │ ├── pcrelative_test.go │ │ │ │ ├── seh.go │ │ │ │ └── ytab.go │ │ ├── objabi │ │ │ ├── autotype.go │ │ │ ├── flag.go │ │ │ ├── flag_test.go │ │ │ ├── funcid.go │ │ │ ├── head.go │ │ │ ├── line.go │ │ │ ├── line_test.go │ │ │ ├── path.go │ │ │ ├── path_test.go │ │ │ ├── pkgspecial.go │ │ │ ├── reloctype.go │ │ │ ├── reloctype_string.go │ │ │ ├── stack.go │ │ │ ├── symkind.go │ │ │ ├── symkind_string.go │ │ │ ├── typekind.go │ │ │ └── util.go │ │ ├── objfile │ │ │ ├── disasm.go │ │ │ ├── elf.go │ │ │ ├── goobj.go │ │ │ ├── macho.go │ │ │ ├── objfile.go │ │ │ ├── pe.go │ │ │ ├── plan9obj.go │ │ │ └── xcoff.go │ │ ├── osinfo │ │ │ ├── doc.go │ │ │ ├── os_js.go │ │ │ ├── os_plan9.go │ │ │ ├── os_unix.go │ │ │ ├── os_wasip1.go │ │ │ └── os_windows.go │ │ ├── pkgpath │ │ │ ├── pkgpath.go │ │ │ └── pkgpath_test.go │ │ ├── pkgpattern │ │ │ ├── pat_test.go │ │ │ └── pkgpattern.go │ │ ├── quoted │ │ │ ├── quoted.go │ │ │ └── quoted_test.go │ │ ├── src │ │ │ ├── pos.go │ │ │ ├── pos_test.go │ │ │ ├── xpos.go │ │ │ └── xpos_test.go │ │ ├── sys │ │ │ ├── arch.go │ │ │ └── args.go │ │ ├── test2json │ │ │ ├── test2json.go │ │ │ ├── test2json_test.go │ │ │ └── testdata │ │ │ │ ├── ascii.json │ │ │ │ ├── ascii.test │ │ │ │ ├── bench.json │ │ │ │ ├── bench.test │ │ │ │ ├── benchfail.json │ │ │ │ ├── benchfail.test │ │ │ │ ├── benchshort.json │ │ │ │ ├── benchshort.test │ │ │ │ ├── empty.json │ │ │ │ ├── empty.test │ │ │ │ ├── frame.json │ │ │ │ ├── frame.test │ │ │ │ ├── framebig.json │ │ │ │ ├── framebig.test │ │ │ │ ├── framefuzz.json │ │ │ │ ├── framefuzz.test │ │ │ │ ├── issue23036.json │ │ │ │ ├── issue23036.test │ │ │ │ ├── issue23920.json │ │ │ │ ├── issue23920.test │ │ │ │ ├── issue29755.json │ │ │ │ ├── issue29755.test │ │ │ │ ├── panic.json │ │ │ │ ├── panic.test │ │ │ │ ├── smiley.json │ │ │ │ ├── smiley.test │ │ │ │ ├── timeout.json │ │ │ │ ├── timeout.test │ │ │ │ ├── unicode.json │ │ │ │ ├── unicode.test │ │ │ │ ├── vet.json │ │ │ │ └── vet.test │ │ └── testdir │ │ │ └── testdir_test.go │ ├── link │ │ ├── cgo_test.go │ │ ├── doc.go │ │ ├── dwarf_test.go │ │ ├── elf_test.go │ │ ├── internal │ │ │ ├── amd64 │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── arm │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── arm64 │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── benchmark │ │ │ │ ├── bench.go │ │ │ │ └── bench_test.go │ │ │ ├── dwtest │ │ │ │ └── dwtest.go │ │ │ ├── ld │ │ │ │ ├── ar.go │ │ │ │ ├── asmb.go │ │ │ │ ├── config.go │ │ │ │ ├── data.go │ │ │ │ ├── data_test.go │ │ │ │ ├── deadcode.go │ │ │ │ ├── deadcode_test.go │ │ │ │ ├── decodesym.go │ │ │ │ ├── dwarf.go │ │ │ │ ├── dwarf_test.go │ │ │ │ ├── elf.go │ │ │ │ ├── elf_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── execarchive.go │ │ │ │ ├── execarchive_noexec.go │ │ │ │ ├── fallocate_test.go │ │ │ │ ├── go.go │ │ │ │ ├── go_test.go │ │ │ │ ├── heap.go │ │ │ │ ├── heap_test.go │ │ │ │ ├── inittask.go │ │ │ │ ├── issue33808_test.go │ │ │ │ ├── ld.go │ │ │ │ ├── ld_test.go │ │ │ │ ├── lib.go │ │ │ │ ├── link.go │ │ │ │ ├── macho.go │ │ │ │ ├── macho_combine_dwarf.go │ │ │ │ ├── macho_update_uuid.go │ │ │ │ ├── main.go │ │ │ │ ├── msync_darwin_libc.go │ │ │ │ ├── nooptcgolink_test.go │ │ │ │ ├── outbuf.go │ │ │ │ ├── outbuf_darwin.go │ │ │ │ ├── outbuf_freebsd.go │ │ │ │ ├── outbuf_linux.go │ │ │ │ ├── outbuf_mmap.go │ │ │ │ ├── outbuf_nofallocate.go │ │ │ │ ├── outbuf_nommap.go │ │ │ │ ├── outbuf_notdarwin.go │ │ │ │ ├── outbuf_test.go │ │ │ │ ├── outbuf_windows.go │ │ │ │ ├── pcln.go │ │ │ │ ├── pe.go │ │ │ │ ├── seh.go │ │ │ │ ├── stackcheck.go │ │ │ │ ├── stackcheck_test.go │ │ │ │ ├── sym.go │ │ │ │ ├── symtab.go │ │ │ │ ├── target.go │ │ │ │ ├── testdata │ │ │ │ │ ├── deadcode │ │ │ │ │ │ ├── globalmap.go │ │ │ │ │ │ ├── ifacemethod.go │ │ │ │ │ │ ├── ifacemethod2.go │ │ │ │ │ │ ├── ifacemethod3.go │ │ │ │ │ │ ├── ifacemethod4.go │ │ │ │ │ │ ├── ifacemethod5.go │ │ │ │ │ │ ├── ifacemethod6.go │ │ │ │ │ │ ├── reflectcall.go │ │ │ │ │ │ ├── structof_funcof.go │ │ │ │ │ │ └── typedesc.go │ │ │ │ │ ├── httptest │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── issue10978 │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── main.s │ │ │ │ │ ├── issue25459 │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ └── a.go │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── issue26237 │ │ │ │ │ │ ├── b.dir │ │ │ │ │ │ │ └── b.go │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── issue32233 │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── ObjC.m │ │ │ │ │ │ │ └── lib.go │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── issue38192 │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── oneline.s │ │ │ │ │ ├── issue39256 │ │ │ │ │ │ ├── x.go │ │ │ │ │ │ └── x.s │ │ │ │ │ ├── issue39757 │ │ │ │ │ │ └── issue39757main.go │ │ │ │ │ ├── issue42484 │ │ │ │ │ │ └── main.go │ │ │ │ │ └── stackcheck │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── main.s │ │ │ │ ├── typelink.go │ │ │ │ ├── util.go │ │ │ │ └── xcoff.go │ │ │ ├── loadelf │ │ │ │ └── ldelf.go │ │ │ ├── loader │ │ │ │ ├── loader.go │ │ │ │ ├── loader_test.go │ │ │ │ └── symbolbuilder.go │ │ │ ├── loadmacho │ │ │ │ └── ldmacho.go │ │ │ ├── loadpe │ │ │ │ ├── ldpe.go │ │ │ │ └── seh.go │ │ │ ├── loadxcoff │ │ │ │ └── ldxcoff.go │ │ │ ├── loong64 │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── mips │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── mips64 │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── ppc64 │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── riscv64 │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── s390x │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── sym │ │ │ │ ├── compilation_unit.go │ │ │ │ ├── library.go │ │ │ │ ├── reloc.go │ │ │ │ ├── segment.go │ │ │ │ ├── symbol.go │ │ │ │ ├── symkind.go │ │ │ │ └── symkind_string.go │ │ │ ├── wasm │ │ │ │ ├── asm.go │ │ │ │ └── obj.go │ │ │ └── x86 │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ ├── link_test.go │ │ ├── linkbig_test.go │ │ ├── main.go │ │ └── testdata │ │ │ ├── dynimportvar │ │ │ ├── asm │ │ │ │ ├── a.go │ │ │ │ ├── a_amd64.s │ │ │ │ └── a_arm64.s │ │ │ └── main.go │ │ │ ├── pe-binutils │ │ │ ├── main.go │ │ │ ├── rsrc_386.syso │ │ │ └── rsrc_amd64.syso │ │ │ ├── pe-llvm │ │ │ ├── main.go │ │ │ ├── rsrc_386.syso │ │ │ ├── rsrc_amd64.syso │ │ │ ├── rsrc_arm.syso │ │ │ └── rsrc_arm64.syso │ │ │ ├── testBuildFortvOS │ │ │ ├── lib.go │ │ │ └── main.m │ │ │ ├── testHashedSyms │ │ │ └── p.go │ │ │ ├── testIndexMismatch │ │ │ ├── a.go │ │ │ ├── b.go │ │ │ └── main.go │ │ │ └── testRO │ │ │ └── x.go │ ├── nm │ │ ├── doc.go │ │ ├── nm.go │ │ ├── nm_cgo_test.go │ │ └── nm_test.go │ ├── objdump │ │ ├── main.go │ │ ├── objdump_test.go │ │ └── testdata │ │ │ ├── fmthello.go │ │ │ ├── fmthellocgo.go │ │ │ ├── go116.o │ │ │ └── testfilenum │ │ │ ├── a.go │ │ │ ├── b.go │ │ │ ├── c.go │ │ │ └── go.mod │ ├── pack │ │ ├── doc.go │ │ ├── pack.go │ │ └── pack_test.go │ ├── pprof │ │ ├── README │ │ ├── doc.go │ │ ├── pprof.go │ │ ├── pprof_test.go │ │ ├── readlineui.go │ │ └── testdata │ │ │ └── cpu.go │ ├── test2json │ │ ├── main.go │ │ ├── signal_notunix.go │ │ └── signal_unix.go │ ├── tools │ │ └── tools.go │ ├── trace │ │ ├── annotations.go │ │ ├── annotations_test.go │ │ ├── doc.go │ │ ├── goroutines.go │ │ ├── main.go │ │ ├── pprof.go │ │ ├── trace.go │ │ ├── trace_test.go │ │ ├── trace_unix_test.go │ │ └── v2 │ │ │ ├── gen.go │ │ │ ├── goroutinegen.go │ │ │ ├── goroutines.go │ │ │ ├── gstate.go │ │ │ ├── jsontrace.go │ │ │ ├── jsontrace_test.go │ │ │ ├── main.go │ │ │ ├── pprof.go │ │ │ ├── procgen.go │ │ │ ├── regions.go │ │ │ ├── tasks.go │ │ │ ├── testdata │ │ │ ├── generate.go │ │ │ ├── go122.test │ │ │ ├── mktests.go │ │ │ └── testprog │ │ │ │ └── main.go │ │ │ ├── threadgen.go │ │ │ └── viewer.go │ ├── vendor │ │ ├── github.com │ │ │ ├── google │ │ │ │ └── pprof │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── driver │ │ │ │ │ └── driver.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── binutils │ │ │ │ │ │ ├── addr2liner.go │ │ │ │ │ │ ├── addr2liner_llvm.go │ │ │ │ │ │ ├── addr2liner_nm.go │ │ │ │ │ │ ├── binutils.go │ │ │ │ │ │ └── disasm.go │ │ │ │ │ ├── driver │ │ │ │ │ │ ├── cli.go │ │ │ │ │ │ ├── commands.go │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── driver.go │ │ │ │ │ │ ├── driver_focus.go │ │ │ │ │ │ ├── fetch.go │ │ │ │ │ │ ├── flags.go │ │ │ │ │ │ ├── flamegraph.go │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ ├── common.css │ │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ │ ├── flamegraph.html │ │ │ │ │ │ │ ├── graph.html │ │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ │ ├── plaintext.html │ │ │ │ │ │ │ ├── source.html │ │ │ │ │ │ │ ├── stacks.css │ │ │ │ │ │ │ ├── stacks.html │ │ │ │ │ │ │ ├── stacks.js │ │ │ │ │ │ │ └── top.html │ │ │ │ │ │ ├── interactive.go │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ ├── settings.go │ │ │ │ │ │ ├── stacks.go │ │ │ │ │ │ ├── svg.go │ │ │ │ │ │ ├── tagroot.go │ │ │ │ │ │ ├── tempfile.go │ │ │ │ │ │ ├── webhtml.go │ │ │ │ │ │ └── webui.go │ │ │ │ │ ├── elfexec │ │ │ │ │ │ └── elfexec.go │ │ │ │ │ ├── graph │ │ │ │ │ │ ├── dotgraph.go │ │ │ │ │ │ └── graph.go │ │ │ │ │ ├── measurement │ │ │ │ │ │ └── measurement.go │ │ │ │ │ ├── plugin │ │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── report │ │ │ │ │ │ ├── package.go │ │ │ │ │ │ ├── report.go │ │ │ │ │ │ ├── shortnames.go │ │ │ │ │ │ ├── source.go │ │ │ │ │ │ ├── source_html.go │ │ │ │ │ │ ├── stacks.go │ │ │ │ │ │ └── synth.go │ │ │ │ │ ├── symbolizer │ │ │ │ │ │ └── symbolizer.go │ │ │ │ │ ├── symbolz │ │ │ │ │ │ └── symbolz.go │ │ │ │ │ └── transport │ │ │ │ │ │ └── transport.go │ │ │ │ │ ├── profile │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── index.go │ │ │ │ │ ├── legacy_java_profile.go │ │ │ │ │ ├── legacy_profile.go │ │ │ │ │ ├── merge.go │ │ │ │ │ ├── profile.go │ │ │ │ │ ├── proto.go │ │ │ │ │ └── prune.go │ │ │ │ │ └── third_party │ │ │ │ │ ├── d3flamegraph │ │ │ │ │ ├── D3_FLAME_GRAPH_LICENSE │ │ │ │ │ ├── D3_LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── d3_flame_graph.go │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ ├── update.sh │ │ │ │ │ └── webpack.config.js │ │ │ │ │ └── svgpan │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── svgpan.go │ │ │ └── ianlancetaylor │ │ │ │ └── demangle │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── ast.go │ │ │ │ ├── demangle.go │ │ │ │ └── rust.go │ │ ├── golang.org │ │ │ └── x │ │ │ │ ├── arch │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── arm │ │ │ │ │ └── armasm │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── gnu.go │ │ │ │ │ │ ├── inst.go │ │ │ │ │ │ ├── plan9x.go │ │ │ │ │ │ └── tables.go │ │ │ │ ├── arm64 │ │ │ │ │ └── arm64asm │ │ │ │ │ │ ├── arg.go │ │ │ │ │ │ ├── condition.go │ │ │ │ │ │ ├── condition_util.go │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── gnu.go │ │ │ │ │ │ ├── inst.go │ │ │ │ │ │ ├── inst.json │ │ │ │ │ │ ├── plan9x.go │ │ │ │ │ │ └── tables.go │ │ │ │ ├── ppc64 │ │ │ │ │ └── ppc64asm │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── field.go │ │ │ │ │ │ ├── gnu.go │ │ │ │ │ │ ├── inst.go │ │ │ │ │ │ ├── plan9.go │ │ │ │ │ │ └── tables.go │ │ │ │ └── x86 │ │ │ │ │ └── x86asm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── gnu.go │ │ │ │ │ ├── inst.go │ │ │ │ │ ├── intel.go │ │ │ │ │ ├── plan9x.go │ │ │ │ │ └── tables.go │ │ │ │ ├── mod │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── internal │ │ │ │ │ └── lazyregexp │ │ │ │ │ │ └── lazyre.go │ │ │ │ ├── modfile │ │ │ │ │ ├── print.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── rule.go │ │ │ │ │ └── work.go │ │ │ │ ├── module │ │ │ │ │ ├── module.go │ │ │ │ │ └── pseudo.go │ │ │ │ ├── semver │ │ │ │ │ └── semver.go │ │ │ │ ├── sumdb │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── dirhash │ │ │ │ │ │ └── hash.go │ │ │ │ │ ├── note │ │ │ │ │ │ └── note.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── test.go │ │ │ │ │ └── tlog │ │ │ │ │ │ ├── note.go │ │ │ │ │ │ ├── tile.go │ │ │ │ │ │ └── tlog.go │ │ │ │ └── zip │ │ │ │ │ └── zip.go │ │ │ │ ├── sync │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ └── semaphore │ │ │ │ │ └── semaphore.go │ │ │ │ ├── sys │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── plan9 │ │ │ │ │ ├── asm.s │ │ │ │ │ ├── asm_plan9_386.s │ │ │ │ │ ├── asm_plan9_amd64.s │ │ │ │ │ ├── asm_plan9_arm.s │ │ │ │ │ ├── const_plan9.go │ │ │ │ │ ├── dir_plan9.go │ │ │ │ │ ├── env_plan9.go │ │ │ │ │ ├── errors_plan9.go │ │ │ │ │ ├── mkall.sh │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ ├── mksysnum_plan9.sh │ │ │ │ │ ├── pwd_go15_plan9.go │ │ │ │ │ ├── pwd_plan9.go │ │ │ │ │ ├── race.go │ │ │ │ │ ├── race0.go │ │ │ │ │ ├── str.go │ │ │ │ │ ├── syscall.go │ │ │ │ │ ├── syscall_plan9.go │ │ │ │ │ ├── zsyscall_plan9_386.go │ │ │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ │ │ ├── zsyscall_plan9_arm.go │ │ │ │ │ └── zsysnum_plan9.go │ │ │ │ ├── unix │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── affinity_linux.go │ │ │ │ │ ├── aliases.go │ │ │ │ │ ├── asm_aix_ppc64.s │ │ │ │ │ ├── asm_bsd_386.s │ │ │ │ │ ├── asm_bsd_amd64.s │ │ │ │ │ ├── asm_bsd_arm.s │ │ │ │ │ ├── asm_bsd_arm64.s │ │ │ │ │ ├── asm_bsd_ppc64.s │ │ │ │ │ ├── asm_bsd_riscv64.s │ │ │ │ │ ├── asm_linux_386.s │ │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ │ ├── asm_linux_arm.s │ │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ │ ├── asm_linux_loong64.s │ │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ │ ├── asm_linux_riscv64.s │ │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ │ ├── asm_openbsd_mips64.s │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ ├── asm_zos_s390x.s │ │ │ │ │ ├── bluetooth_linux.go │ │ │ │ │ ├── cap_freebsd.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── dev_aix_ppc.go │ │ │ │ │ ├── dev_aix_ppc64.go │ │ │ │ │ ├── dev_darwin.go │ │ │ │ │ ├── dev_dragonfly.go │ │ │ │ │ ├── dev_freebsd.go │ │ │ │ │ ├── dev_linux.go │ │ │ │ │ ├── dev_netbsd.go │ │ │ │ │ ├── dev_openbsd.go │ │ │ │ │ ├── dev_zos.go │ │ │ │ │ ├── dirent.go │ │ │ │ │ ├── endian_big.go │ │ │ │ │ ├── endian_little.go │ │ │ │ │ ├── env_unix.go │ │ │ │ │ ├── epoll_zos.go │ │ │ │ │ ├── fcntl.go │ │ │ │ │ ├── fcntl_darwin.go │ │ │ │ │ ├── fcntl_linux_32bit.go │ │ │ │ │ ├── fdset.go │ │ │ │ │ ├── fstatfs_zos.go │ │ │ │ │ ├── gccgo.go │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ ├── ifreq_linux.go │ │ │ │ │ ├── ioctl_linux.go │ │ │ │ │ ├── ioctl_signed.go │ │ │ │ │ ├── ioctl_unsigned.go │ │ │ │ │ ├── ioctl_zos.go │ │ │ │ │ ├── mkall.sh │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ ├── mmap_nomremap.go │ │ │ │ │ ├── mremap.go │ │ │ │ │ ├── pagesize_unix.go │ │ │ │ │ ├── pledge_openbsd.go │ │ │ │ │ ├── ptrace_darwin.go │ │ │ │ │ ├── ptrace_ios.go │ │ │ │ │ ├── race.go │ │ │ │ │ ├── race0.go │ │ │ │ │ ├── readdirent_getdents.go │ │ │ │ │ ├── readdirent_getdirentries.go │ │ │ │ │ ├── sockcmsg_dragonfly.go │ │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ │ ├── sockcmsg_unix_other.go │ │ │ │ │ ├── syscall.go │ │ │ │ │ ├── syscall_aix.go │ │ │ │ │ ├── syscall_aix_ppc.go │ │ │ │ │ ├── syscall_aix_ppc64.go │ │ │ │ │ ├── syscall_bsd.go │ │ │ │ │ ├── syscall_darwin.go │ │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ │ ├── syscall_darwin_libSystem.go │ │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ │ ├── syscall_freebsd.go │ │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ │ ├── syscall_freebsd_arm64.go │ │ │ │ │ ├── syscall_freebsd_riscv64.go │ │ │ │ │ ├── syscall_hurd.go │ │ │ │ │ ├── syscall_hurd_386.go │ │ │ │ │ ├── syscall_illumos.go │ │ │ │ │ ├── syscall_linux.go │ │ │ │ │ ├── syscall_linux_386.go │ │ │ │ │ ├── syscall_linux_alarm.go │ │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ │ ├── syscall_linux_gc.go │ │ │ │ │ ├── syscall_linux_gc_386.go │ │ │ │ │ ├── syscall_linux_gc_arm.go │ │ │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ │ │ ├── syscall_linux_loong64.go │ │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ │ ├── syscall_linux_ppc.go │ │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ │ ├── syscall_linux_riscv64.go │ │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ │ ├── syscall_netbsd.go │ │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ │ ├── syscall_netbsd_arm64.go │ │ │ │ │ ├── syscall_openbsd.go │ │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ │ ├── syscall_openbsd_arm64.go │ │ │ │ │ ├── syscall_openbsd_libc.go │ │ │ │ │ ├── syscall_openbsd_mips64.go │ │ │ │ │ ├── syscall_openbsd_ppc64.go │ │ │ │ │ ├── syscall_openbsd_riscv64.go │ │ │ │ │ ├── syscall_solaris.go │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ │ │ ├── syscall_zos_s390x.go │ │ │ │ │ ├── sysvshm_linux.go │ │ │ │ │ ├── sysvshm_unix.go │ │ │ │ │ ├── sysvshm_unix_other.go │ │ │ │ │ ├── timestruct.go │ │ │ │ │ ├── unveil_openbsd.go │ │ │ │ │ ├── xattr_bsd.go │ │ │ │ │ ├── zerrors_aix_ppc.go │ │ │ │ │ ├── zerrors_aix_ppc64.go │ │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ │ │ ├── zerrors_freebsd_riscv64.go │ │ │ │ │ ├── zerrors_linux.go │ │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ │ ├── zerrors_linux_loong64.go │ │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ │ ├── zerrors_linux_ppc.go │ │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ │ ├── zerrors_linux_riscv64.go │ │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ │ │ ├── zerrors_openbsd_ppc64.go │ │ │ │ │ ├── zerrors_openbsd_riscv64.go │ │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ │ ├── zerrors_zos_s390x.go │ │ │ │ │ ├── zptrace_armnn_linux.go │ │ │ │ │ ├── zptrace_linux_arm64.go │ │ │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ │ │ ├── zptrace_x86_linux.go │ │ │ │ │ ├── zsyscall_aix_ppc.go │ │ │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ │ │ ├── zsyscall_freebsd_riscv64.go │ │ │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ │ │ ├── zsyscall_linux.go │ │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ │ ├── zsyscall_linux_loong64.go │ │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ │ ├── zsyscall_linux_ppc.go │ │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ │ ├── zsyscall_openbsd_386.s │ │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ │ ├── zsyscall_openbsd_amd64.s │ │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ │ ├── zsyscall_openbsd_arm.s │ │ │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ │ │ ├── zsyscall_openbsd_arm64.s │ │ │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ │ │ ├── zsyscall_openbsd_mips64.s │ │ │ │ │ ├── zsyscall_openbsd_ppc64.go │ │ │ │ │ ├── zsyscall_openbsd_ppc64.s │ │ │ │ │ ├── zsyscall_openbsd_riscv64.go │ │ │ │ │ ├── zsyscall_openbsd_riscv64.s │ │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ │ ├── zsyscall_zos_s390x.go │ │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ │ │ ├── zsysctl_openbsd_mips64.go │ │ │ │ │ ├── zsysctl_openbsd_ppc64.go │ │ │ │ │ ├── zsysctl_openbsd_riscv64.go │ │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ │ │ ├── zsysnum_freebsd_riscv64.go │ │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ │ ├── zsysnum_linux_loong64.go │ │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ │ ├── zsysnum_linux_ppc.go │ │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ │ │ ├── zsysnum_openbsd_ppc64.go │ │ │ │ │ ├── zsysnum_openbsd_riscv64.go │ │ │ │ │ ├── zsysnum_zos_s390x.go │ │ │ │ │ ├── ztypes_aix_ppc.go │ │ │ │ │ ├── ztypes_aix_ppc64.go │ │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ │ │ ├── ztypes_freebsd_riscv64.go │ │ │ │ │ ├── ztypes_linux.go │ │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ │ ├── ztypes_linux_loong64.go │ │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ │ ├── ztypes_linux_ppc.go │ │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ │ ├── ztypes_linux_riscv64.go │ │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ │ │ ├── ztypes_openbsd_ppc64.go │ │ │ │ │ ├── ztypes_openbsd_riscv64.go │ │ │ │ │ ├── ztypes_solaris_amd64.go │ │ │ │ │ └── ztypes_zos_s390x.go │ │ │ │ └── windows │ │ │ │ │ ├── aliases.go │ │ │ │ │ ├── dll_windows.go │ │ │ │ │ ├── empty.s │ │ │ │ │ ├── env_windows.go │ │ │ │ │ ├── eventlog.go │ │ │ │ │ ├── exec_windows.go │ │ │ │ │ ├── memory_windows.go │ │ │ │ │ ├── mkerrors.bash │ │ │ │ │ ├── mkknownfolderids.bash │ │ │ │ │ ├── mksyscall.go │ │ │ │ │ ├── race.go │ │ │ │ │ ├── race0.go │ │ │ │ │ ├── security_windows.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── setupapi_windows.go │ │ │ │ │ ├── str.go │ │ │ │ │ ├── syscall.go │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ ├── types_windows.go │ │ │ │ │ ├── types_windows_386.go │ │ │ │ │ ├── types_windows_amd64.go │ │ │ │ │ ├── types_windows_arm.go │ │ │ │ │ ├── types_windows_arm64.go │ │ │ │ │ ├── zerrors_windows.go │ │ │ │ │ ├── zknownfolderids_windows.go │ │ │ │ │ └── zsyscall_windows.go │ │ │ │ ├── term │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── README.md │ │ │ │ ├── codereview.cfg │ │ │ │ ├── term.go │ │ │ │ ├── term_plan9.go │ │ │ │ ├── term_unix.go │ │ │ │ ├── term_unix_bsd.go │ │ │ │ ├── term_unix_other.go │ │ │ │ ├── term_unsupported.go │ │ │ │ ├── term_windows.go │ │ │ │ └── terminal.go │ │ │ │ └── tools │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── cmd │ │ │ │ └── bisect │ │ │ │ │ ├── go119.go │ │ │ │ │ ├── go120.go │ │ │ │ │ ├── main.go │ │ │ │ │ └── rand.go │ │ │ │ ├── cover │ │ │ │ └── profile.go │ │ │ │ ├── go │ │ │ │ ├── analysis │ │ │ │ │ ├── analysis.go │ │ │ │ │ ├── diagnostic.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── analysisflags │ │ │ │ │ │ │ ├── flags.go │ │ │ │ │ │ │ ├── help.go │ │ │ │ │ │ │ └── url.go │ │ │ │ │ ├── passes │ │ │ │ │ │ ├── appends │ │ │ │ │ │ │ ├── appends.go │ │ │ │ │ │ │ └── doc.go │ │ │ │ │ │ ├── asmdecl │ │ │ │ │ │ │ ├── arches_go118.go │ │ │ │ │ │ │ ├── arches_go119.go │ │ │ │ │ │ │ └── asmdecl.go │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ ├── assign.go │ │ │ │ │ │ │ └── doc.go │ │ │ │ │ │ ├── atomic │ │ │ │ │ │ │ ├── atomic.go │ │ │ │ │ │ │ └── doc.go │ │ │ │ │ │ ├── bools │ │ │ │ │ │ │ └── bools.go │ │ │ │ │ │ ├── buildtag │ │ │ │ │ │ │ ├── buildtag.go │ │ │ │ │ │ │ └── buildtag_old.go │ │ │ │ │ │ ├── cgocall │ │ │ │ │ │ │ ├── cgocall.go │ │ │ │ │ │ │ ├── cgocall_go120.go │ │ │ │ │ │ │ └── cgocall_go121.go │ │ │ │ │ │ ├── composite │ │ │ │ │ │ │ ├── composite.go │ │ │ │ │ │ │ └── whitelist.go │ │ │ │ │ │ ├── copylock │ │ │ │ │ │ │ └── copylock.go │ │ │ │ │ │ ├── ctrlflow │ │ │ │ │ │ │ └── ctrlflow.go │ │ │ │ │ │ ├── defers │ │ │ │ │ │ │ ├── defers.go │ │ │ │ │ │ │ └── doc.go │ │ │ │ │ │ ├── directive │ │ │ │ │ │ │ └── directive.go │ │ │ │ │ │ ├── errorsas │ │ │ │ │ │ │ └── errorsas.go │ │ │ │ │ │ ├── framepointer │ │ │ │ │ │ │ └── framepointer.go │ │ │ │ │ │ ├── httpresponse │ │ │ │ │ │ │ └── httpresponse.go │ │ │ │ │ │ ├── ifaceassert │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── ifaceassert.go │ │ │ │ │ │ │ └── parameterized.go │ │ │ │ │ │ ├── inspect │ │ │ │ │ │ │ └── inspect.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ └── analysisutil │ │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ ├── loopclosure │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── loopclosure.go │ │ │ │ │ │ ├── lostcancel │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── lostcancel.go │ │ │ │ │ │ ├── nilfunc │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── nilfunc.go │ │ │ │ │ │ ├── printf │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── printf.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── shift │ │ │ │ │ │ │ ├── dead.go │ │ │ │ │ │ │ └── shift.go │ │ │ │ │ │ ├── sigchanyzer │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── sigchanyzer.go │ │ │ │ │ │ ├── slog │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── slog.go │ │ │ │ │ │ ├── stdmethods │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── stdmethods.go │ │ │ │ │ │ ├── stringintconv │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── string.go │ │ │ │ │ │ ├── structtag │ │ │ │ │ │ │ └── structtag.go │ │ │ │ │ │ ├── testinggoroutine │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── testinggoroutine.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── tests.go │ │ │ │ │ │ ├── timeformat │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── timeformat.go │ │ │ │ │ │ ├── unmarshal │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── unmarshal.go │ │ │ │ │ │ ├── unreachable │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── unreachable.go │ │ │ │ │ │ ├── unsafeptr │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── unsafeptr.go │ │ │ │ │ │ └── unusedresult │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── unusedresult.go │ │ │ │ │ ├── unitchecker │ │ │ │ │ │ └── unitchecker.go │ │ │ │ │ └── validate.go │ │ │ │ ├── ast │ │ │ │ │ ├── astutil │ │ │ │ │ │ ├── enclosing.go │ │ │ │ │ │ ├── imports.go │ │ │ │ │ │ ├── rewrite.go │ │ │ │ │ │ └── util.go │ │ │ │ │ └── inspector │ │ │ │ │ │ ├── inspector.go │ │ │ │ │ │ └── typeof.go │ │ │ │ ├── cfg │ │ │ │ │ ├── builder.go │ │ │ │ │ └── cfg.go │ │ │ │ └── types │ │ │ │ │ ├── objectpath │ │ │ │ │ └── objectpath.go │ │ │ │ │ └── typeutil │ │ │ │ │ ├── callee.go │ │ │ │ │ ├── imports.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── methodsetcache.go │ │ │ │ │ └── ui.go │ │ │ │ └── internal │ │ │ │ ├── analysisinternal │ │ │ │ ├── analysis.go │ │ │ │ └── extractdoc.go │ │ │ │ ├── bisect │ │ │ │ └── bisect.go │ │ │ │ ├── facts │ │ │ │ ├── facts.go │ │ │ │ └── imports.go │ │ │ │ ├── typeparams │ │ │ │ ├── common.go │ │ │ │ ├── coretype.go │ │ │ │ ├── normalize.go │ │ │ │ ├── termlist.go │ │ │ │ └── typeterm.go │ │ │ │ └── versions │ │ │ │ ├── gover.go │ │ │ │ ├── types.go │ │ │ │ ├── types_go121.go │ │ │ │ ├── types_go122.go │ │ │ │ └── versions.go │ │ └── modules.txt │ └── vet │ │ ├── README │ │ ├── doc.go │ │ ├── main.go │ │ ├── testdata │ │ ├── appends │ │ │ └── appends.go │ │ ├── asm │ │ │ ├── asm.go │ │ │ └── asm1.s │ │ ├── assign │ │ │ └── assign.go │ │ ├── atomic │ │ │ └── atomic.go │ │ ├── bool │ │ │ └── bool.go │ │ ├── buildtag │ │ │ ├── buildtag.go │ │ │ ├── buildtag2.go │ │ │ ├── buildtag3.go │ │ │ ├── buildtag4.go │ │ │ ├── buildtag5.go │ │ │ ├── buildtag6.s │ │ │ └── buildtag7.s │ │ ├── cgo │ │ │ └── cgo.go │ │ ├── composite │ │ │ └── composite.go │ │ ├── copylock │ │ │ └── copylock.go │ │ ├── deadcode │ │ │ └── deadcode.go │ │ ├── directive │ │ │ └── directive.go │ │ ├── httpresponse │ │ │ └── httpresponse.go │ │ ├── lostcancel │ │ │ └── lostcancel.go │ │ ├── method │ │ │ └── method.go │ │ ├── nilfunc │ │ │ └── nilfunc.go │ │ ├── print │ │ │ └── print.go │ │ ├── rangeloop │ │ │ └── rangeloop.go │ │ ├── shift │ │ │ └── shift.go │ │ ├── slog │ │ │ └── slog.go │ │ ├── structtag │ │ │ └── structtag.go │ │ ├── tagtest │ │ │ ├── file1.go │ │ │ └── file2.go │ │ ├── testingpkg │ │ │ ├── tests.go │ │ │ └── tests_test.go │ │ ├── unmarshal │ │ │ └── unmarshal.go │ │ ├── unsafeptr │ │ │ └── unsafeptr.go │ │ └── unused │ │ │ └── unused.go │ │ └── vet_test.go ├── cmp.bash ├── cmp │ ├── cmp.go │ └── cmp_test.go ├── compress │ ├── bzip2 │ │ ├── bit_reader.go │ │ ├── bzip2.go │ │ ├── bzip2_test.go │ │ ├── huffman.go │ │ ├── move_to_front.go │ │ └── testdata │ │ │ ├── Isaac.Newton-Opticks.txt.bz2 │ │ │ ├── e.txt.bz2 │ │ │ ├── fail-issue5747.bz2 │ │ │ ├── pass-random1.bin │ │ │ ├── pass-random1.bz2 │ │ │ ├── pass-random2.bin │ │ │ ├── pass-random2.bz2 │ │ │ ├── pass-sawtooth.bz2 │ │ │ └── random.data.bz2 │ ├── flate │ │ ├── deflate.go │ │ ├── deflate_test.go │ │ ├── deflatefast.go │ │ ├── dict_decoder.go │ │ ├── dict_decoder_test.go │ │ ├── example_test.go │ │ ├── flate_test.go │ │ ├── huffman_bit_writer.go │ │ ├── huffman_bit_writer_test.go │ │ ├── huffman_code.go │ │ ├── inflate.go │ │ ├── inflate_test.go │ │ ├── reader_test.go │ │ ├── testdata │ │ │ ├── huffman-null-max.dyn.expect │ │ │ ├── huffman-null-max.dyn.expect-noinput │ │ │ ├── huffman-null-max.golden │ │ │ ├── huffman-null-max.in │ │ │ ├── huffman-null-max.wb.expect │ │ │ ├── huffman-null-max.wb.expect-noinput │ │ │ ├── huffman-pi.dyn.expect │ │ │ ├── huffman-pi.dyn.expect-noinput │ │ │ ├── huffman-pi.golden │ │ │ ├── huffman-pi.in │ │ │ ├── huffman-pi.wb.expect │ │ │ ├── huffman-pi.wb.expect-noinput │ │ │ ├── huffman-rand-1k.dyn.expect │ │ │ ├── huffman-rand-1k.dyn.expect-noinput │ │ │ ├── huffman-rand-1k.golden │ │ │ ├── huffman-rand-1k.in │ │ │ ├── huffman-rand-1k.wb.expect │ │ │ ├── huffman-rand-1k.wb.expect-noinput │ │ │ ├── huffman-rand-limit.dyn.expect │ │ │ ├── huffman-rand-limit.dyn.expect-noinput │ │ │ ├── huffman-rand-limit.golden │ │ │ ├── huffman-rand-limit.in │ │ │ ├── huffman-rand-limit.wb.expect │ │ │ ├── huffman-rand-limit.wb.expect-noinput │ │ │ ├── huffman-rand-max.golden │ │ │ ├── huffman-rand-max.in │ │ │ ├── huffman-shifts.dyn.expect │ │ │ ├── huffman-shifts.dyn.expect-noinput │ │ │ ├── huffman-shifts.golden │ │ │ ├── huffman-shifts.in │ │ │ ├── huffman-shifts.wb.expect │ │ │ ├── huffman-shifts.wb.expect-noinput │ │ │ ├── huffman-text-shift.dyn.expect │ │ │ ├── huffman-text-shift.dyn.expect-noinput │ │ │ ├── huffman-text-shift.golden │ │ │ ├── huffman-text-shift.in │ │ │ ├── huffman-text-shift.wb.expect │ │ │ ├── huffman-text-shift.wb.expect-noinput │ │ │ ├── huffman-text.dyn.expect │ │ │ ├── huffman-text.dyn.expect-noinput │ │ │ ├── huffman-text.golden │ │ │ ├── huffman-text.in │ │ │ ├── huffman-text.wb.expect │ │ │ ├── huffman-text.wb.expect-noinput │ │ │ ├── huffman-zero.dyn.expect │ │ │ ├── huffman-zero.dyn.expect-noinput │ │ │ ├── huffman-zero.golden │ │ │ ├── huffman-zero.in │ │ │ ├── huffman-zero.wb.expect │ │ │ ├── huffman-zero.wb.expect-noinput │ │ │ ├── null-long-match.dyn.expect-noinput │ │ │ └── null-long-match.wb.expect-noinput │ │ ├── token.go │ │ └── writer_test.go │ ├── gzip │ │ ├── example_test.go │ │ ├── fuzz_test.go │ │ ├── gunzip.go │ │ ├── gunzip_test.go │ │ ├── gzip.go │ │ ├── gzip_test.go │ │ ├── issue14937_test.go │ │ └── testdata │ │ │ └── issue6550.gz.base64 │ ├── lzw │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── writer.go │ │ └── writer_test.go │ ├── testdata │ │ ├── e.txt │ │ ├── gettysburg.txt │ │ └── pi.txt │ └── zlib │ │ ├── example_test.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── writer.go │ │ └── writer_test.go ├── container │ ├── heap │ │ ├── example_intheap_test.go │ │ ├── example_pq_test.go │ │ ├── heap.go │ │ └── heap_test.go │ ├── list │ │ ├── example_test.go │ │ ├── list.go │ │ └── list_test.go │ └── ring │ │ ├── example_test.go │ │ ├── ring.go │ │ └── ring_test.go ├── context │ ├── afterfunc_test.go │ ├── benchmark_test.go │ ├── context.go │ ├── context_test.go │ ├── example_test.go │ ├── net_test.go │ └── x_test.go ├── crypto │ ├── aes │ │ ├── aes_gcm.go │ │ ├── aes_test.go │ │ ├── asm_amd64.s │ │ ├── asm_arm64.s │ │ ├── asm_ppc64x.s │ │ ├── asm_s390x.s │ │ ├── block.go │ │ ├── cbc_ppc64x.go │ │ ├── cbc_s390x.go │ │ ├── cipher.go │ │ ├── cipher_asm.go │ │ ├── cipher_generic.go │ │ ├── cipher_s390x.go │ │ ├── const.go │ │ ├── ctr_s390x.go │ │ ├── gcm_amd64.s │ │ ├── gcm_arm64.s │ │ ├── gcm_ppc64x.go │ │ ├── gcm_ppc64x.s │ │ ├── gcm_s390x.go │ │ ├── modes.go │ │ └── modes_test.go │ ├── boring │ │ ├── boring.go │ │ ├── boring_test.go │ │ └── notboring_test.go │ ├── cipher │ │ ├── benchmark_test.go │ │ ├── cbc.go │ │ ├── cbc_aes_test.go │ │ ├── cfb.go │ │ ├── cfb_test.go │ │ ├── cipher.go │ │ ├── cipher_test.go │ │ ├── common_test.go │ │ ├── ctr.go │ │ ├── ctr_aes_test.go │ │ ├── ctr_test.go │ │ ├── example_test.go │ │ ├── export_test.go │ │ ├── fuzz_test.go │ │ ├── gcm.go │ │ ├── gcm_test.go │ │ ├── io.go │ │ ├── ofb.go │ │ └── ofb_test.go │ ├── crypto.go │ ├── des │ │ ├── block.go │ │ ├── cipher.go │ │ ├── const.go │ │ ├── des_test.go │ │ ├── example_test.go │ │ └── internal_test.go │ ├── dsa │ │ ├── dsa.go │ │ └── dsa_test.go │ ├── ecdh │ │ ├── ecdh.go │ │ ├── ecdh_test.go │ │ ├── nist.go │ │ └── x25519.go │ ├── ecdsa │ │ ├── boring.go │ │ ├── ecdsa.go │ │ ├── ecdsa_legacy.go │ │ ├── ecdsa_noasm.go │ │ ├── ecdsa_s390x.go │ │ ├── ecdsa_s390x.s │ │ ├── ecdsa_s390x_test.go │ │ ├── ecdsa_test.go │ │ ├── equal_test.go │ │ ├── example_test.go │ │ ├── notboring.go │ │ └── testdata │ │ │ └── SigVer.rsp.bz2 │ ├── ed25519 │ │ ├── ed25519.go │ │ ├── ed25519_test.go │ │ ├── ed25519vectors_test.go │ │ └── testdata │ │ │ └── sign.input.gz │ ├── elliptic │ │ ├── elliptic.go │ │ ├── elliptic_test.go │ │ ├── nistec.go │ │ ├── nistec_p256.go │ │ ├── p224_test.go │ │ ├── p256_test.go │ │ └── params.go │ ├── hmac │ │ ├── hmac.go │ │ └── hmac_test.go │ ├── internal │ │ ├── alias │ │ │ ├── alias.go │ │ │ └── alias_test.go │ │ ├── bigmod │ │ │ ├── _asm │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ └── nat_amd64_asm.go │ │ │ ├── nat.go │ │ │ ├── nat_386.s │ │ │ ├── nat_amd64.s │ │ │ ├── nat_arm.s │ │ │ ├── nat_arm64.s │ │ │ ├── nat_asm.go │ │ │ ├── nat_noasm.go │ │ │ ├── nat_ppc64x.s │ │ │ ├── nat_riscv64.s │ │ │ ├── nat_s390x.s │ │ │ └── nat_test.go │ │ ├── boring │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── aes.go │ │ │ ├── bbig │ │ │ │ └── big.go │ │ │ ├── bcache │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ └── stub.s │ │ │ ├── boring.go │ │ │ ├── boring_test.go │ │ │ ├── build-boring.sh │ │ │ ├── build-goboring.sh │ │ │ ├── build.sh │ │ │ ├── div_test.c │ │ │ ├── doc.go │ │ │ ├── ecdh.go │ │ │ ├── ecdsa.go │ │ │ ├── fipstls │ │ │ │ ├── stub.s │ │ │ │ └── tls.go │ │ │ ├── goboringcrypto.h │ │ │ ├── hmac.go │ │ │ ├── notboring.go │ │ │ ├── rand.go │ │ │ ├── rsa.go │ │ │ ├── sha.go │ │ │ ├── sig │ │ │ │ ├── sig.go │ │ │ │ ├── sig_amd64.s │ │ │ │ └── sig_other.s │ │ │ └── syso │ │ │ │ ├── goboringcrypto_linux_amd64.syso │ │ │ │ ├── goboringcrypto_linux_arm64.syso │ │ │ │ └── syso.go │ │ ├── edwards25519 │ │ │ ├── doc.go │ │ │ ├── edwards25519.go │ │ │ ├── edwards25519_test.go │ │ │ ├── field │ │ │ │ ├── _asm │ │ │ │ │ ├── fe_amd64_asm.go │ │ │ │ │ ├── go.mod │ │ │ │ │ └── go.sum │ │ │ │ ├── fe.go │ │ │ │ ├── fe_alias_test.go │ │ │ │ ├── fe_amd64.go │ │ │ │ ├── fe_amd64.s │ │ │ │ ├── fe_amd64_noasm.go │ │ │ │ ├── fe_arm64.go │ │ │ │ ├── fe_arm64.s │ │ │ │ ├── fe_arm64_noasm.go │ │ │ │ ├── fe_bench_test.go │ │ │ │ ├── fe_generic.go │ │ │ │ └── fe_test.go │ │ │ ├── scalar.go │ │ │ ├── scalar_alias_test.go │ │ │ ├── scalar_fiat.go │ │ │ ├── scalar_test.go │ │ │ ├── scalarmult.go │ │ │ ├── scalarmult_test.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ │ ├── nistec │ │ │ ├── fiat │ │ │ │ ├── Dockerfile │ │ │ │ ├── README │ │ │ │ ├── fiat_test.go │ │ │ │ ├── generate.go │ │ │ │ ├── p224.go │ │ │ │ ├── p224_fiat64.go │ │ │ │ ├── p224_invert.go │ │ │ │ ├── p256.go │ │ │ │ ├── p256_fiat64.go │ │ │ │ ├── p256_invert.go │ │ │ │ ├── p384.go │ │ │ │ ├── p384_fiat64.go │ │ │ │ ├── p384_invert.go │ │ │ │ ├── p521.go │ │ │ │ ├── p521_fiat64.go │ │ │ │ └── p521_invert.go │ │ │ ├── generate.go │ │ │ ├── nistec.go │ │ │ ├── nistec_test.go │ │ │ ├── p224.go │ │ │ ├── p224_sqrt.go │ │ │ ├── p256.go │ │ │ ├── p256_asm.go │ │ │ ├── p256_asm_amd64.s │ │ │ ├── p256_asm_arm64.s │ │ │ ├── p256_asm_ppc64le.s │ │ │ ├── p256_asm_s390x.s │ │ │ ├── p256_asm_table.bin │ │ │ ├── p256_asm_table_test.go │ │ │ ├── p256_ordinv.go │ │ │ ├── p256_ordinv_noasm.go │ │ │ ├── p256_ordinv_test.go │ │ │ ├── p384.go │ │ │ └── p521.go │ │ └── randutil │ │ │ └── randutil.go │ ├── issue21104_test.go │ ├── md5 │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── md5.go │ │ ├── md5_test.go │ │ ├── md5block.go │ │ ├── md5block_386.s │ │ ├── md5block_amd64.s │ │ ├── md5block_arm.s │ │ ├── md5block_arm64.s │ │ ├── md5block_decl.go │ │ ├── md5block_generic.go │ │ ├── md5block_ppc64x.s │ │ └── md5block_s390x.s │ ├── rand │ │ ├── example_test.go │ │ ├── rand.go │ │ ├── rand_batched_test.go │ │ ├── rand_getentropy.go │ │ ├── rand_getrandom.go │ │ ├── rand_js.go │ │ ├── rand_plan9.go │ │ ├── rand_test.go │ │ ├── rand_unix.go │ │ ├── rand_wasip1.go │ │ ├── rand_windows.go │ │ ├── util.go │ │ └── util_test.go │ ├── rc4 │ │ ├── rc4.go │ │ └── rc4_test.go │ ├── rsa │ │ ├── boring.go │ │ ├── boring_test.go │ │ ├── equal_test.go │ │ ├── example_test.go │ │ ├── notboring.go │ │ ├── pkcs1v15.go │ │ ├── pkcs1v15_test.go │ │ ├── pss.go │ │ ├── pss_test.go │ │ ├── rsa.go │ │ ├── rsa_export_test.go │ │ ├── rsa_test.go │ │ └── testdata │ │ │ └── pss-vect.txt.bz2 │ ├── sha1 │ │ ├── example_test.go │ │ ├── fallback_test.go │ │ ├── issue15617_test.go │ │ ├── sha1.go │ │ ├── sha1_test.go │ │ ├── sha1block.go │ │ ├── sha1block_386.s │ │ ├── sha1block_amd64.go │ │ ├── sha1block_amd64.s │ │ ├── sha1block_arm.s │ │ ├── sha1block_arm64.go │ │ ├── sha1block_arm64.s │ │ ├── sha1block_decl.go │ │ ├── sha1block_generic.go │ │ ├── sha1block_s390x.go │ │ └── sha1block_s390x.s │ ├── sha256 │ │ ├── example_test.go │ │ ├── fallback_test.go │ │ ├── sha256.go │ │ ├── sha256_test.go │ │ ├── sha256block.go │ │ ├── sha256block_386.s │ │ ├── sha256block_amd64.go │ │ ├── sha256block_amd64.s │ │ ├── sha256block_arm64.go │ │ ├── sha256block_arm64.s │ │ ├── sha256block_decl.go │ │ ├── sha256block_generic.go │ │ ├── sha256block_ppc64x.s │ │ ├── sha256block_s390x.go │ │ └── sha256block_s390x.s │ ├── sha512 │ │ ├── fallback_test.go │ │ ├── sha512.go │ │ ├── sha512_test.go │ │ ├── sha512block.go │ │ ├── sha512block_amd64.go │ │ ├── sha512block_amd64.s │ │ ├── sha512block_arm64.go │ │ ├── sha512block_arm64.s │ │ ├── sha512block_decl.go │ │ ├── sha512block_generic.go │ │ ├── sha512block_ppc64x.s │ │ ├── sha512block_s390x.go │ │ └── sha512block_s390x.s │ ├── subtle │ │ ├── constant_time.go │ │ ├── constant_time_test.go │ │ ├── xor.go │ │ ├── xor_amd64.go │ │ ├── xor_amd64.s │ │ ├── xor_arm64.go │ │ ├── xor_arm64.s │ │ ├── xor_generic.go │ │ ├── xor_ppc64x.go │ │ ├── xor_ppc64x.s │ │ └── xor_test.go │ ├── tls │ │ ├── alert.go │ │ ├── auth.go │ │ ├── auth_test.go │ │ ├── boring.go │ │ ├── boring_test.go │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── cfevent.go │ │ ├── cfgo_test.go │ │ ├── cfkem.go │ │ ├── cfkem_test.go │ │ ├── cipher_suites.go │ │ ├── common.go │ │ ├── common_string.go │ │ ├── conn.go │ │ ├── conn_test.go │ │ ├── delegated_credentials.go │ │ ├── delegated_credentials_test.go │ │ ├── ech.go │ │ ├── ech_config.go │ │ ├── ech_provider.go │ │ ├── ech_test.go │ │ ├── example_test.go │ │ ├── fipsonly │ │ │ ├── fipsonly.go │ │ │ └── fipsonly_test.go │ │ ├── generate_cert.go │ │ ├── generate_delegated_credential.go │ │ ├── handshake_client.go │ │ ├── handshake_client_test.go │ │ ├── handshake_client_tls13.go │ │ ├── handshake_messages.go │ │ ├── handshake_messages_test.go │ │ ├── handshake_server.go │ │ ├── handshake_server_test.go │ │ ├── handshake_server_tls13.go │ │ ├── handshake_test.go │ │ ├── handshake_unix_test.go │ │ ├── hpke.go │ │ ├── key_agreement.go │ │ ├── key_schedule.go │ │ ├── key_schedule_test.go │ │ ├── link_test.go │ │ ├── metrics_test.go │ │ ├── notboring.go │ │ ├── prf.go │ │ ├── prf_test.go │ │ ├── quic.go │ │ ├── quic_test.go │ │ ├── testdata │ │ │ ├── Client-TLSv10-ClientCert-ECDSA-ECDSA │ │ │ ├── Client-TLSv10-ClientCert-ECDSA-RSA │ │ │ ├── Client-TLSv10-ClientCert-Ed25519 │ │ │ ├── Client-TLSv10-ClientCert-RSA-ECDSA │ │ │ ├── Client-TLSv10-ClientCert-RSA-RSA │ │ │ ├── Client-TLSv10-ECDHE-ECDSA-AES │ │ │ ├── Client-TLSv10-ECDHE-RSA-AES │ │ │ ├── Client-TLSv10-Ed25519 │ │ │ ├── Client-TLSv10-ExportKeyingMaterial │ │ │ ├── Client-TLSv10-RSA-RC4 │ │ │ ├── Client-TLSv11-ECDHE-ECDSA-AES │ │ │ ├── Client-TLSv11-ECDHE-RSA-AES │ │ │ ├── Client-TLSv11-Ed25519 │ │ │ ├── Client-TLSv11-RSA-RC4 │ │ │ ├── Client-TLSv12-AES128-GCM-SHA256 │ │ │ ├── Client-TLSv12-AES128-SHA256 │ │ │ ├── Client-TLSv12-AES256-GCM-SHA384 │ │ │ ├── Client-TLSv12-ALPN │ │ │ ├── Client-TLSv12-ALPN-NoMatch │ │ │ ├── Client-TLSv12-ClientCert-ECDSA-ECDSA │ │ │ ├── Client-TLSv12-ClientCert-ECDSA-RSA │ │ │ ├── Client-TLSv12-ClientCert-Ed25519 │ │ │ ├── Client-TLSv12-ClientCert-RSA-AES256-GCM-SHA384 │ │ │ ├── Client-TLSv12-ClientCert-RSA-ECDSA │ │ │ ├── Client-TLSv12-ClientCert-RSA-RSA │ │ │ ├── Client-TLSv12-ClientCert-RSA-RSAPKCS1v15 │ │ │ ├── Client-TLSv12-ClientCert-RSA-RSAPSS │ │ │ ├── Client-TLSv12-ECDHE-ECDSA-AES │ │ │ ├── Client-TLSv12-ECDHE-ECDSA-AES-GCM │ │ │ ├── Client-TLSv12-ECDHE-ECDSA-AES128-SHA256 │ │ │ ├── Client-TLSv12-ECDHE-ECDSA-AES256-GCM-SHA384 │ │ │ ├── Client-TLSv12-ECDHE-ECDSA-CHACHA20-POLY1305 │ │ │ ├── Client-TLSv12-ECDHE-RSA-AES │ │ │ ├── Client-TLSv12-ECDHE-RSA-AES128-SHA256 │ │ │ ├── Client-TLSv12-ECDHE-RSA-CHACHA20-POLY1305 │ │ │ ├── Client-TLSv12-Ed25519 │ │ │ ├── Client-TLSv12-ExportKeyingMaterial │ │ │ ├── Client-TLSv12-P256-ECDHE │ │ │ ├── Client-TLSv12-RSA-RC4 │ │ │ ├── Client-TLSv12-RenegotiateOnce │ │ │ ├── Client-TLSv12-RenegotiateTwice │ │ │ ├── Client-TLSv12-RenegotiateTwiceRejected │ │ │ ├── Client-TLSv12-RenegotiationRejected │ │ │ ├── Client-TLSv12-SCT │ │ │ ├── Client-TLSv12-X25519-ECDHE │ │ │ ├── Client-TLSv13-AES128-SHA256 │ │ │ ├── Client-TLSv13-AES256-SHA384 │ │ │ ├── Client-TLSv13-ALPN │ │ │ ├── Client-TLSv13-CHACHA20-SHA256 │ │ │ ├── Client-TLSv13-ClientCert-ECDSA-RSA │ │ │ ├── Client-TLSv13-ClientCert-Ed25519 │ │ │ ├── Client-TLSv13-ClientCert-RSA-ECDSA │ │ │ ├── Client-TLSv13-ClientCert-RSA-RSAPSS │ │ │ ├── Client-TLSv13-ECDSA │ │ │ ├── Client-TLSv13-Ed25519 │ │ │ ├── Client-TLSv13-ExportKeyingMaterial │ │ │ ├── Client-TLSv13-HelloRetryRequest │ │ │ ├── Client-TLSv13-KeyUpdate │ │ │ ├── Client-TLSv13-P256-ECDHE │ │ │ ├── Client-TLSv13-X25519-ECDHE │ │ │ ├── Server-TLSv10-ECDHE-ECDSA-AES │ │ │ ├── Server-TLSv10-ExportKeyingMaterial │ │ │ ├── Server-TLSv10-RSA-3DES │ │ │ ├── Server-TLSv10-RSA-AES │ │ │ ├── Server-TLSv10-RSA-RC4 │ │ │ ├── Server-TLSv11-FallbackSCSV │ │ │ ├── Server-TLSv11-RSA-RC4 │ │ │ ├── Server-TLSv12-ALPN │ │ │ ├── Server-TLSv12-ALPN-Fallback │ │ │ ├── Server-TLSv12-ALPN-NoMatch │ │ │ ├── Server-TLSv12-ALPN-NotConfigured │ │ │ ├── Server-TLSv12-ClientAuthRequestedAndECDSAGiven │ │ │ ├── Server-TLSv12-ClientAuthRequestedAndEd25519Given │ │ │ ├── Server-TLSv12-ClientAuthRequestedAndGiven │ │ │ ├── Server-TLSv12-ClientAuthRequestedAndPKCS1v15Given │ │ │ ├── Server-TLSv12-ClientAuthRequestedNotGiven │ │ │ ├── Server-TLSv12-ECDHE-ECDSA-AES │ │ │ ├── Server-TLSv12-Ed25519 │ │ │ ├── Server-TLSv12-ExportKeyingMaterial │ │ │ ├── Server-TLSv12-IssueTicket │ │ │ ├── Server-TLSv12-IssueTicketPreDisable │ │ │ ├── Server-TLSv12-P256 │ │ │ ├── Server-TLSv12-RSA-3DES │ │ │ ├── Server-TLSv12-RSA-AES │ │ │ ├── Server-TLSv12-RSA-AES-GCM │ │ │ ├── Server-TLSv12-RSA-AES256-GCM-SHA384 │ │ │ ├── Server-TLSv12-RSA-RC4 │ │ │ ├── Server-TLSv12-RSA-RSAPKCS1v15 │ │ │ ├── Server-TLSv12-RSA-RSAPSS │ │ │ ├── Server-TLSv12-Resume │ │ │ ├── Server-TLSv12-ResumeDisabled │ │ │ ├── Server-TLSv12-SNI │ │ │ ├── Server-TLSv12-SNI-GetCertificate │ │ │ ├── Server-TLSv12-SNI-GetCertificateNotFound │ │ │ ├── Server-TLSv12-X25519 │ │ │ ├── Server-TLSv13-AES128-SHA256 │ │ │ ├── Server-TLSv13-AES256-SHA384 │ │ │ ├── Server-TLSv13-ALPN │ │ │ ├── Server-TLSv13-ALPN-Fallback │ │ │ ├── Server-TLSv13-ALPN-NoMatch │ │ │ ├── Server-TLSv13-ALPN-NotConfigured │ │ │ ├── Server-TLSv13-CHACHA20-SHA256 │ │ │ ├── Server-TLSv13-ClientAuthRequestedAndECDSAGiven │ │ │ ├── Server-TLSv13-ClientAuthRequestedAndEd25519Given │ │ │ ├── Server-TLSv13-ClientAuthRequestedAndGiven │ │ │ ├── Server-TLSv13-ClientAuthRequestedNotGiven │ │ │ ├── Server-TLSv13-ECDHE-ECDSA-AES │ │ │ ├── Server-TLSv13-Ed25519 │ │ │ ├── Server-TLSv13-ExportKeyingMaterial │ │ │ ├── Server-TLSv13-HelloRetryRequest │ │ │ ├── Server-TLSv13-IssueTicket │ │ │ ├── Server-TLSv13-IssueTicketPreDisable │ │ │ ├── Server-TLSv13-P256 │ │ │ ├── Server-TLSv13-RSA-RSAPSS │ │ │ ├── Server-TLSv13-RSA-RSAPSS-TooSmall │ │ │ ├── Server-TLSv13-Resume │ │ │ ├── Server-TLSv13-Resume-HelloRetryRequest │ │ │ ├── Server-TLSv13-ResumeDisabled │ │ │ ├── Server-TLSv13-X25519 │ │ │ ├── example-cert.pem │ │ │ └── example-key.pem │ │ ├── ticket.go │ │ ├── ticket_test.go │ │ ├── tls.go │ │ ├── tls_cf.go │ │ ├── tls_cf_circl_test.go │ │ ├── tls_cf_test.go │ │ └── tls_test.go │ └── x509 │ │ ├── boring.go │ │ ├── boring_test.go │ │ ├── cert_pool.go │ │ ├── cert_pool_test.go │ │ ├── example_test.go │ │ ├── hybrid_pool_test.go │ │ ├── internal │ │ └── macos │ │ │ ├── corefoundation.go │ │ │ ├── corefoundation.s │ │ │ ├── security.go │ │ │ └── security.s │ │ ├── name_constraints_test.go │ │ ├── notboring.go │ │ ├── oid.go │ │ ├── oid_test.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── pem_decrypt.go │ │ ├── pem_decrypt_test.go │ │ ├── pkcs1.go │ │ ├── pkcs8.go │ │ ├── pkcs8_test.go │ │ ├── pkix │ │ └── pkix.go │ │ ├── platform_root_cert.pem │ │ ├── platform_root_key.pem │ │ ├── platform_test.go │ │ ├── root.go │ │ ├── root_aix.go │ │ ├── root_bsd.go │ │ ├── root_darwin.go │ │ ├── root_linux.go │ │ ├── root_plan9.go │ │ ├── root_solaris.go │ │ ├── root_test.go │ │ ├── root_unix.go │ │ ├── root_unix_test.go │ │ ├── root_wasm.go │ │ ├── root_windows.go │ │ ├── sec1.go │ │ ├── sec1_test.go │ │ ├── test-file.crt │ │ ├── testdata │ │ └── test-dir.crt │ │ ├── verify.go │ │ ├── verify_test.go │ │ ├── x509.go │ │ ├── x509_cf.go │ │ ├── x509_test.go │ │ └── x509_test_import.go ├── database │ └── sql │ │ ├── convert.go │ │ ├── convert_test.go │ │ ├── ctxutil.go │ │ ├── doc.txt │ │ ├── driver │ │ ├── driver.go │ │ ├── types.go │ │ └── types_test.go │ │ ├── example_cli_test.go │ │ ├── example_service_test.go │ │ ├── example_test.go │ │ ├── fakedb_test.go │ │ ├── sql.go │ │ └── sql_test.go ├── debug │ ├── buildinfo │ │ ├── buildinfo.go │ │ └── buildinfo_test.go │ ├── dwarf │ │ ├── attr_string.go │ │ ├── buf.go │ │ ├── class_string.go │ │ ├── const.go │ │ ├── dwarf5ranges_test.go │ │ ├── entry.go │ │ ├── entry_test.go │ │ ├── export_test.go │ │ ├── line.go │ │ ├── line_test.go │ │ ├── open.go │ │ ├── tag_string.go │ │ ├── testdata │ │ │ ├── bitfields.c │ │ │ ├── bitfields.elf4 │ │ │ ├── cppunsuptypes.cc │ │ │ ├── cppunsuptypes.elf │ │ │ ├── cycle.c │ │ │ ├── cycle.elf │ │ │ ├── debug_rnglists │ │ │ ├── line-clang-dwarf5.elf │ │ │ ├── line-clang.elf │ │ │ ├── line-gcc-dwarf5.elf │ │ │ ├── line-gcc-win.bin │ │ │ ├── line-gcc-zstd.elf │ │ │ ├── line-gcc.elf │ │ │ ├── line1.c │ │ │ ├── line1.h │ │ │ ├── line2.c │ │ │ ├── ranges.c │ │ │ ├── ranges.elf │ │ │ ├── rnglistx.c │ │ │ ├── rnglistx.elf │ │ │ ├── split.c │ │ │ ├── split.elf │ │ │ ├── typedef.c │ │ │ ├── typedef.elf │ │ │ ├── typedef.elf4 │ │ │ ├── typedef.elf5 │ │ │ ├── typedef.macho │ │ │ └── typedef.macho4 │ │ ├── type.go │ │ ├── type_test.go │ │ ├── typeunit.go │ │ └── unit.go │ ├── elf │ │ ├── elf.go │ │ ├── elf_test.go │ │ ├── file.go │ │ ├── file_test.go │ │ ├── reader.go │ │ ├── symbols_test.go │ │ └── testdata │ │ │ ├── compressed-32.obj │ │ │ ├── compressed-64.obj │ │ │ ├── gcc-386-freebsd-exec │ │ │ ├── gcc-amd64-linux-exec │ │ │ ├── gcc-amd64-openbsd-debug-with-rela.obj │ │ │ ├── go-relocation-test-clang-arm.obj │ │ │ ├── go-relocation-test-clang-x86.obj │ │ │ ├── go-relocation-test-gcc424-x86-64.obj │ │ │ ├── go-relocation-test-gcc441-x86-64.obj │ │ │ ├── go-relocation-test-gcc441-x86.obj │ │ │ ├── go-relocation-test-gcc482-aarch64.obj │ │ │ ├── go-relocation-test-gcc482-ppc64le.obj │ │ │ ├── go-relocation-test-gcc492-arm.obj │ │ │ ├── go-relocation-test-gcc492-mips64.obj │ │ │ ├── go-relocation-test-gcc492-mipsle.obj │ │ │ ├── go-relocation-test-gcc493-mips64le.obj │ │ │ ├── go-relocation-test-gcc5-ppc.obj │ │ │ ├── go-relocation-test-gcc531-s390x.obj │ │ │ ├── go-relocation-test-gcc540-mips.obj │ │ │ ├── go-relocation-test-gcc620-sparc64.obj │ │ │ ├── go-relocation-test-gcc720-riscv64.obj │ │ │ ├── go-relocation-test-gcc930-ranges-no-rela-x86-64 │ │ │ ├── go-relocation-test-gcc930-ranges-with-rela-x86-64 │ │ │ ├── hello-world-core.gz │ │ │ ├── hello.c │ │ │ ├── multiple-code-sections.c │ │ │ └── zdebug-test-gcc484-x86-64.obj │ ├── gosym │ │ ├── pclntab.go │ │ ├── pclntab_test.go │ │ ├── symtab.go │ │ ├── symtab_test.go │ │ └── testdata │ │ │ ├── main.go │ │ │ ├── pclinetest.h │ │ │ ├── pclinetest.s │ │ │ └── pcln115.gz │ ├── macho │ │ ├── fat.go │ │ ├── file.go │ │ ├── file_test.go │ │ ├── macho.go │ │ ├── reloctype.go │ │ ├── reloctype_string.go │ │ └── testdata │ │ │ ├── clang-386-darwin-exec-with-rpath.base64 │ │ │ ├── clang-386-darwin.obj.base64 │ │ │ ├── clang-amd64-darwin-exec-with-rpath.base64 │ │ │ ├── clang-amd64-darwin.obj.base64 │ │ │ ├── fat-gcc-386-amd64-darwin-exec.base64 │ │ │ ├── gcc-386-darwin-exec.base64 │ │ │ ├── gcc-amd64-darwin-exec-debug.base64 │ │ │ ├── gcc-amd64-darwin-exec-with-bad-dysym.base64 │ │ │ ├── gcc-amd64-darwin-exec.base64 │ │ │ └── hello.c │ ├── pe │ │ ├── file.go │ │ ├── file_cgo_test.go │ │ ├── file_test.go │ │ ├── pe.go │ │ ├── section.go │ │ ├── string.go │ │ ├── symbol.go │ │ ├── symbols_test.go │ │ └── testdata │ │ │ ├── gcc-386-mingw-exec │ │ │ ├── gcc-386-mingw-no-symbols-exec │ │ │ ├── gcc-386-mingw-obj │ │ │ ├── gcc-amd64-mingw-exec │ │ │ ├── gcc-amd64-mingw-obj │ │ │ ├── hello.c │ │ │ ├── llvm-mingw-20211002-msvcrt-x86_64-crt2 │ │ │ └── vmlinuz-4.15.0-47-generic │ └── plan9obj │ │ ├── file.go │ │ ├── file_test.go │ │ ├── plan9obj.go │ │ └── testdata │ │ ├── 386-plan9-exec │ │ ├── amd64-plan9-exec │ │ └── hello.c ├── embed │ ├── embed.go │ ├── example_test.go │ └── internal │ │ └── embedtest │ │ ├── concurrency.txt │ │ ├── embed_test.go │ │ ├── embedx_test.go │ │ └── testdata │ │ ├── -not-hidden │ │ └── fortune.txt │ │ ├── .hidden │ │ ├── .more │ │ │ └── tip.txt │ │ ├── _more │ │ │ └── tip.txt │ │ ├── fortune.txt │ │ └── more │ │ │ └── tip.txt │ │ ├── _hidden │ │ └── fortune.txt │ │ ├── ascii.txt │ │ ├── glass.txt │ │ ├── hello.txt │ │ ├── i │ │ ├── i18n.txt │ │ └── j │ │ │ └── k │ │ │ └── k8s.txt │ │ └── ken.txt ├── encoding │ ├── ascii85 │ │ ├── ascii85.go │ │ └── ascii85_test.go │ ├── asn1 │ │ ├── asn1.go │ │ ├── asn1_test.go │ │ ├── common.go │ │ ├── marshal.go │ │ └── marshal_test.go │ ├── base32 │ │ ├── base32.go │ │ ├── base32_test.go │ │ └── example_test.go │ ├── base64 │ │ ├── base64.go │ │ ├── base64_test.go │ │ └── example_test.go │ ├── binary │ │ ├── binary.go │ │ ├── binary_test.go │ │ ├── example_test.go │ │ ├── native_endian_big.go │ │ ├── native_endian_little.go │ │ ├── varint.go │ │ └── varint_test.go │ ├── csv │ │ ├── example_test.go │ │ ├── fuzz.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── writer.go │ │ └── writer_test.go │ ├── encoding.go │ ├── gob │ │ ├── codec_test.go │ │ ├── debug.go │ │ ├── dec_helpers.go │ │ ├── decgen.go │ │ ├── decode.go │ │ ├── decoder.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── enc_helpers.go │ │ ├── encgen.go │ │ ├── encode.go │ │ ├── encoder.go │ │ ├── encoder_test.go │ │ ├── error.go │ │ ├── example_encdec_test.go │ │ ├── example_interface_test.go │ │ ├── example_test.go │ │ ├── gobencdec_test.go │ │ ├── timing_test.go │ │ ├── type.go │ │ └── type_test.go │ ├── hex │ │ ├── example_test.go │ │ ├── hex.go │ │ └── hex_test.go │ ├── json │ │ ├── bench_test.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── example_marshaling_test.go │ │ ├── example_test.go │ │ ├── example_text_marshaling_test.go │ │ ├── fold.go │ │ ├── fold_test.go │ │ ├── fuzz_test.go │ │ ├── indent.go │ │ ├── number_test.go │ │ ├── scanner.go │ │ ├── scanner_test.go │ │ ├── stream.go │ │ ├── stream_test.go │ │ ├── tables.go │ │ ├── tagkey_test.go │ │ ├── tags.go │ │ ├── tags_test.go │ │ └── testdata │ │ │ └── code.json.gz │ ├── pem │ │ ├── example_test.go │ │ ├── pem.go │ │ └── pem_test.go │ └── xml │ │ ├── atom_test.go │ │ ├── example_marshaling_test.go │ │ ├── example_test.go │ │ ├── example_text_marshaling_test.go │ │ ├── marshal.go │ │ ├── marshal_test.go │ │ ├── read.go │ │ ├── read_test.go │ │ ├── typeinfo.go │ │ ├── xml.go │ │ └── xml_test.go ├── errors │ ├── errors.go │ ├── errors_test.go │ ├── example_test.go │ ├── join.go │ ├── join_test.go │ ├── wrap.go │ └── wrap_test.go ├── expvar │ ├── expvar.go │ └── expvar_test.go ├── flag │ ├── example_func_test.go │ ├── example_test.go │ ├── example_textvar_test.go │ ├── example_value_test.go │ ├── export_test.go │ ├── flag.go │ └── flag_test.go ├── fmt │ ├── doc.go │ ├── errors.go │ ├── errors_test.go │ ├── example_test.go │ ├── export_test.go │ ├── fmt_test.go │ ├── format.go │ ├── gostringer_example_test.go │ ├── print.go │ ├── scan.go │ ├── scan_test.go │ ├── state_test.go │ ├── stringer_example_test.go │ └── stringer_test.go ├── go.mod ├── go.sum ├── go │ ├── ast │ │ ├── ast.go │ │ ├── ast_test.go │ │ ├── commentmap.go │ │ ├── commentmap_test.go │ │ ├── example_test.go │ │ ├── filter.go │ │ ├── filter_test.go │ │ ├── import.go │ │ ├── issues_test.go │ │ ├── print.go │ │ ├── print_test.go │ │ ├── resolve.go │ │ ├── scope.go │ │ └── walk.go │ ├── build │ │ ├── build.go │ │ ├── build_test.go │ │ ├── constraint │ │ │ ├── expr.go │ │ │ ├── expr_test.go │ │ │ ├── vers.go │ │ │ └── vers_test.go │ │ ├── deps_test.go │ │ ├── doc.go │ │ ├── gc.go │ │ ├── gccgo.go │ │ ├── read.go │ │ ├── read_test.go │ │ ├── syslist.go │ │ ├── syslist_test.go │ │ └── testdata │ │ │ ├── alltags │ │ │ ├── alltags.go │ │ │ └── x_netbsd_arm.go │ │ │ ├── bads │ │ │ └── bad.s │ │ │ ├── cgo_disabled │ │ │ ├── cgo_disabled.go │ │ │ └── empty.go │ │ │ ├── directives │ │ │ ├── a.go │ │ │ ├── a_test.go │ │ │ ├── b_test.go │ │ │ ├── c_test.go │ │ │ ├── d_test.go │ │ │ └── eve.go │ │ │ ├── doc │ │ │ ├── a_test.go │ │ │ ├── b_test.go │ │ │ ├── c_test.go │ │ │ ├── d_test.go │ │ │ ├── e.go │ │ │ └── f.go │ │ │ ├── empty │ │ │ └── dummy │ │ │ ├── multi │ │ │ ├── file.go │ │ │ └── file_appengine.go │ │ │ ├── non_source_tags │ │ │ ├── non_source_tags.go │ │ │ └── x_arm.go.ignore │ │ │ ├── other │ │ │ ├── file │ │ │ │ └── file.go │ │ │ └── main.go │ │ │ └── withvendor │ │ │ └── src │ │ │ └── a │ │ │ ├── b │ │ │ └── b.go │ │ │ └── vendor │ │ │ └── c │ │ │ └── d │ │ │ └── d.go │ ├── constant │ │ ├── example_test.go │ │ ├── kind_string.go │ │ ├── value.go │ │ └── value_test.go │ ├── doc │ │ ├── Makefile │ │ ├── comment.go │ │ ├── comment │ │ │ ├── doc.go │ │ │ ├── html.go │ │ │ ├── markdown.go │ │ │ ├── mkstd.sh │ │ │ ├── old_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── print.go │ │ │ ├── std.go │ │ │ ├── std_test.go │ │ │ ├── testdata │ │ │ │ ├── README.md │ │ │ │ ├── blank.txt │ │ │ │ ├── code.txt │ │ │ │ ├── code2.txt │ │ │ │ ├── code3.txt │ │ │ │ ├── code4.txt │ │ │ │ ├── code5.txt │ │ │ │ ├── code6.txt │ │ │ │ ├── crash1.txt │ │ │ │ ├── doclink.txt │ │ │ │ ├── doclink2.txt │ │ │ │ ├── doclink3.txt │ │ │ │ ├── doclink4.txt │ │ │ │ ├── doclink5.txt │ │ │ │ ├── doclink6.txt │ │ │ │ ├── doclink7.txt │ │ │ │ ├── escape.txt │ │ │ │ ├── head.txt │ │ │ │ ├── head2.txt │ │ │ │ ├── head3.txt │ │ │ │ ├── hello.txt │ │ │ │ ├── link.txt │ │ │ │ ├── link2.txt │ │ │ │ ├── link3.txt │ │ │ │ ├── link4.txt │ │ │ │ ├── link5.txt │ │ │ │ ├── link6.txt │ │ │ │ ├── link7.txt │ │ │ │ ├── linklist.txt │ │ │ │ ├── linklist2.txt │ │ │ │ ├── linklist3.txt │ │ │ │ ├── linklist4.txt │ │ │ │ ├── list.txt │ │ │ │ ├── list10.txt │ │ │ │ ├── list2.txt │ │ │ │ ├── list3.txt │ │ │ │ ├── list4.txt │ │ │ │ ├── list5.txt │ │ │ │ ├── list6.txt │ │ │ │ ├── list7.txt │ │ │ │ ├── list8.txt │ │ │ │ ├── list9.txt │ │ │ │ ├── para.txt │ │ │ │ ├── quote.txt │ │ │ │ ├── text.txt │ │ │ │ ├── text2.txt │ │ │ │ ├── text3.txt │ │ │ │ ├── text4.txt │ │ │ │ ├── text5.txt │ │ │ │ ├── text6.txt │ │ │ │ ├── text7.txt │ │ │ │ ├── text8.txt │ │ │ │ ├── text9.txt │ │ │ │ └── words.txt │ │ │ ├── testdata_test.go │ │ │ ├── text.go │ │ │ └── wrap_test.go │ │ ├── comment_test.go │ │ ├── doc.go │ │ ├── doc_test.go │ │ ├── example.go │ │ ├── example_internal_test.go │ │ ├── example_test.go │ │ ├── exports.go │ │ ├── filter.go │ │ ├── headscan.go │ │ ├── reader.go │ │ ├── synopsis.go │ │ ├── synopsis_test.go │ │ └── testdata │ │ │ ├── a.0.golden │ │ │ ├── a.1.golden │ │ │ ├── a.2.golden │ │ │ ├── a0.go │ │ │ ├── a1.go │ │ │ ├── b.0.golden │ │ │ ├── b.1.golden │ │ │ ├── b.2.golden │ │ │ ├── b.go │ │ │ ├── benchmark.go │ │ │ ├── blank.0.golden │ │ │ ├── blank.1.golden │ │ │ ├── blank.2.golden │ │ │ ├── blank.go │ │ │ ├── bugpara.0.golden │ │ │ ├── bugpara.1.golden │ │ │ ├── bugpara.2.golden │ │ │ ├── bugpara.go │ │ │ ├── c.0.golden │ │ │ ├── c.1.golden │ │ │ ├── c.2.golden │ │ │ ├── c.go │ │ │ ├── d.0.golden │ │ │ ├── d.1.golden │ │ │ ├── d.2.golden │ │ │ ├── d1.go │ │ │ ├── d2.go │ │ │ ├── e.0.golden │ │ │ ├── e.1.golden │ │ │ ├── e.2.golden │ │ │ ├── e.go │ │ │ ├── error1.0.golden │ │ │ ├── error1.1.golden │ │ │ ├── error1.2.golden │ │ │ ├── error1.go │ │ │ ├── error2.0.golden │ │ │ ├── error2.1.golden │ │ │ ├── error2.2.golden │ │ │ ├── error2.go │ │ │ ├── example.go │ │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── empty.go │ │ │ ├── empty.golden │ │ │ ├── generic_constraints.go │ │ │ ├── generic_constraints.golden │ │ │ ├── import_groups.go │ │ │ ├── import_groups.golden │ │ │ ├── import_groups_named.go │ │ │ ├── import_groups_named.golden │ │ │ ├── inspect_signature.go │ │ │ ├── inspect_signature.golden │ │ │ ├── iota.go │ │ │ ├── iota.golden │ │ │ ├── issue43658.go │ │ │ ├── issue43658.golden │ │ │ ├── multiple.go │ │ │ ├── multiple.golden │ │ │ ├── values.go │ │ │ ├── values.golden │ │ │ ├── whole_file.go │ │ │ ├── whole_file.golden │ │ │ ├── whole_function.go │ │ │ ├── whole_function.golden │ │ │ ├── whole_function_external.go │ │ │ └── whole_function_external.golden │ │ │ ├── f.0.golden │ │ │ ├── f.1.golden │ │ │ ├── f.2.golden │ │ │ ├── f.go │ │ │ ├── g.0.golden │ │ │ ├── g.1.golden │ │ │ ├── g.2.golden │ │ │ ├── g.go │ │ │ ├── generics.0.golden │ │ │ ├── generics.1.golden │ │ │ ├── generics.2.golden │ │ │ ├── generics.go │ │ │ ├── issue12839.0.golden │ │ │ ├── issue12839.1.golden │ │ │ ├── issue12839.2.golden │ │ │ ├── issue12839.go │ │ │ ├── issue13742.0.golden │ │ │ ├── issue13742.1.golden │ │ │ ├── issue13742.2.golden │ │ │ ├── issue13742.go │ │ │ ├── issue16153.0.golden │ │ │ ├── issue16153.1.golden │ │ │ ├── issue16153.2.golden │ │ │ ├── issue16153.go │ │ │ ├── issue17788.0.golden │ │ │ ├── issue17788.1.golden │ │ │ ├── issue17788.2.golden │ │ │ ├── issue17788.go │ │ │ ├── issue22856.0.golden │ │ │ ├── issue22856.1.golden │ │ │ ├── issue22856.2.golden │ │ │ ├── issue22856.go │ │ │ ├── pkgdoc │ │ │ └── doc.go │ │ │ ├── predeclared.0.golden │ │ │ ├── predeclared.1.golden │ │ │ ├── predeclared.2.golden │ │ │ ├── predeclared.go │ │ │ ├── template.txt │ │ │ ├── testing.0.golden │ │ │ ├── testing.1.golden │ │ │ ├── testing.2.golden │ │ │ └── testing.go │ ├── format │ │ ├── benchmark_test.go │ │ ├── example_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ └── internal.go │ ├── importer │ │ ├── importer.go │ │ └── importer_test.go │ ├── internal │ │ ├── gccgoimporter │ │ │ ├── ar.go │ │ │ ├── gccgoinstallation.go │ │ │ ├── gccgoinstallation_test.go │ │ │ ├── importer.go │ │ │ ├── importer_test.go │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ └── testdata │ │ │ │ ├── aliases.go │ │ │ │ ├── aliases.gox │ │ │ │ ├── complexnums.go │ │ │ │ ├── complexnums.gox │ │ │ │ ├── conversions.go │ │ │ │ ├── conversions.gox │ │ │ │ ├── escapeinfo.go │ │ │ │ ├── escapeinfo.gox │ │ │ │ ├── imports.go │ │ │ │ ├── imports.gox │ │ │ │ ├── issue27856.go │ │ │ │ ├── issue27856.gox │ │ │ │ ├── issue29198.go │ │ │ │ ├── issue29198.gox │ │ │ │ ├── issue30628.go │ │ │ │ ├── issue30628.gox │ │ │ │ ├── issue31540.go │ │ │ │ ├── issue31540.gox │ │ │ │ ├── issue34182.go │ │ │ │ ├── issue34182.gox │ │ │ │ ├── libimportsar.a │ │ │ │ ├── nointerface.go │ │ │ │ ├── nointerface.gox │ │ │ │ ├── notinheap.go │ │ │ │ ├── notinheap.gox │ │ │ │ ├── pointer.go │ │ │ │ ├── pointer.gox │ │ │ │ ├── time.gox │ │ │ │ ├── unicode.gox │ │ │ │ └── v1reflect.gox │ │ ├── gcimporter │ │ │ ├── exportdata.go │ │ │ ├── gcimporter.go │ │ │ ├── gcimporter_test.go │ │ │ ├── iimport.go │ │ │ ├── support.go │ │ │ ├── testdata │ │ │ │ ├── a.go │ │ │ │ ├── b.go │ │ │ │ ├── exports.go │ │ │ │ ├── g.go │ │ │ │ ├── generics.go │ │ │ │ ├── issue15920.go │ │ │ │ ├── issue20046.go │ │ │ │ ├── issue25301.go │ │ │ │ ├── issue25596.go │ │ │ │ ├── issue57015.go │ │ │ │ ├── p.go │ │ │ │ └── versions │ │ │ │ │ ├── test.go │ │ │ │ │ ├── test_go1.11_0i.a │ │ │ │ │ ├── test_go1.11_6b.a │ │ │ │ │ ├── test_go1.11_999b.a │ │ │ │ │ ├── test_go1.11_999i.a │ │ │ │ │ ├── test_go1.7_0.a │ │ │ │ │ ├── test_go1.7_1.a │ │ │ │ │ ├── test_go1.8_4.a │ │ │ │ │ └── test_go1.8_5.a │ │ │ └── ureader.go │ │ ├── srcimporter │ │ │ ├── srcimporter.go │ │ │ ├── srcimporter_test.go │ │ │ └── testdata │ │ │ │ ├── issue20855 │ │ │ │ └── issue20855.go │ │ │ │ ├── issue23092 │ │ │ │ └── issue23092.go │ │ │ │ └── issue24392 │ │ │ │ └── issue24392.go │ │ └── typeparams │ │ │ └── typeparams.go │ ├── parser │ │ ├── error_test.go │ │ ├── example_test.go │ │ ├── interface.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── performance_test.go │ │ ├── resolver.go │ │ ├── resolver_test.go │ │ ├── short_test.go │ │ └── testdata │ │ │ ├── chans.go2 │ │ │ ├── commas.src │ │ │ ├── goversion │ │ │ ├── t01.go │ │ │ ├── t02.go │ │ │ ├── t03.go │ │ │ ├── t04.go │ │ │ ├── t05.go │ │ │ └── t06.go │ │ │ ├── interface.go2 │ │ │ ├── issue11377.src │ │ │ ├── issue23434.src │ │ │ ├── issue3106.src │ │ │ ├── issue34946.src │ │ │ ├── issue42951 │ │ │ └── not_a_file.go │ │ │ │ └── invalid.go │ │ │ ├── issue44504.src │ │ │ ├── issue49174.go2 │ │ │ ├── issue49175.go2 │ │ │ ├── issue49482.go2 │ │ │ ├── issue50427.go2 │ │ │ ├── issue64534.src │ │ │ ├── linalg.go2 │ │ │ ├── map.go2 │ │ │ ├── metrics.go2 │ │ │ ├── resolution │ │ │ ├── issue45136.src │ │ │ ├── issue45160.src │ │ │ ├── resolution.src │ │ │ └── typeparams.go2 │ │ │ ├── set.go2 │ │ │ ├── slices.go2 │ │ │ ├── sort.go2 │ │ │ ├── tparams.go2 │ │ │ └── typeset.go2 │ ├── printer │ │ ├── comment.go │ │ ├── example_test.go │ │ ├── gobuild.go │ │ ├── nodes.go │ │ ├── performance_test.go │ │ ├── printer.go │ │ ├── printer_test.go │ │ └── testdata │ │ │ ├── alignment.golden │ │ │ ├── alignment.input │ │ │ ├── comments.golden │ │ │ ├── comments.input │ │ │ ├── comments.x │ │ │ ├── comments2.golden │ │ │ ├── comments2.input │ │ │ ├── complit.input │ │ │ ├── complit.x │ │ │ ├── declarations.golden │ │ │ ├── declarations.input │ │ │ ├── doc.golden │ │ │ ├── doc.input │ │ │ ├── empty.golden │ │ │ ├── empty.input │ │ │ ├── expressions.golden │ │ │ ├── expressions.input │ │ │ ├── expressions.raw │ │ │ ├── generics.golden │ │ │ ├── generics.input │ │ │ ├── go2numbers.golden │ │ │ ├── go2numbers.input │ │ │ ├── go2numbers.norm │ │ │ ├── gobuild1.golden │ │ │ ├── gobuild1.input │ │ │ ├── gobuild2.golden │ │ │ ├── gobuild2.input │ │ │ ├── gobuild3.golden │ │ │ ├── gobuild3.input │ │ │ ├── gobuild4.golden │ │ │ ├── gobuild4.input │ │ │ ├── gobuild5.golden │ │ │ ├── gobuild5.input │ │ │ ├── gobuild6.golden │ │ │ ├── gobuild6.input │ │ │ ├── gobuild7.golden │ │ │ ├── gobuild7.input │ │ │ ├── linebreaks.golden │ │ │ ├── linebreaks.input │ │ │ ├── parser.go │ │ │ ├── slow.golden │ │ │ ├── slow.input │ │ │ ├── statements.golden │ │ │ └── statements.input │ ├── scanner │ │ ├── errors.go │ │ ├── example_test.go │ │ ├── scanner.go │ │ └── scanner_test.go │ ├── token │ │ ├── example_test.go │ │ ├── position.go │ │ ├── position_bench_test.go │ │ ├── position_test.go │ │ ├── serialize.go │ │ ├── serialize_test.go │ │ ├── token.go │ │ └── token_test.go │ ├── types │ │ ├── alias.go │ │ ├── api.go │ │ ├── api_predicates.go │ │ ├── api_test.go │ │ ├── array.go │ │ ├── assignments.go │ │ ├── basic.go │ │ ├── builtins.go │ │ ├── builtins_test.go │ │ ├── call.go │ │ ├── chan.go │ │ ├── check.go │ │ ├── check_test.go │ │ ├── commentMap_test.go │ │ ├── const.go │ │ ├── context.go │ │ ├── context_test.go │ │ ├── conversions.go │ │ ├── decl.go │ │ ├── errorcalls_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── eval.go │ │ ├── eval_test.go │ │ ├── example_test.go │ │ ├── expr.go │ │ ├── exprstring.go │ │ ├── exprstring_test.go │ │ ├── gccgosizes.go │ │ ├── gcsizes.go │ │ ├── generate.go │ │ ├── generate_test.go │ │ ├── gotype.go │ │ ├── hilbert_test.go │ │ ├── index.go │ │ ├── infer.go │ │ ├── initorder.go │ │ ├── instantiate.go │ │ ├── instantiate_test.go │ │ ├── interface.go │ │ ├── issues_test.go │ │ ├── labels.go │ │ ├── lookup.go │ │ ├── lookup_test.go │ │ ├── main_test.go │ │ ├── map.go │ │ ├── methodset.go │ │ ├── methodset_test.go │ │ ├── mono.go │ │ ├── mono_test.go │ │ ├── named.go │ │ ├── named_test.go │ │ ├── object.go │ │ ├── object_test.go │ │ ├── objset.go │ │ ├── operand.go │ │ ├── package.go │ │ ├── pointer.go │ │ ├── predicates.go │ │ ├── resolver.go │ │ ├── resolver_test.go │ │ ├── return.go │ │ ├── scope.go │ │ ├── selection.go │ │ ├── self_test.go │ │ ├── signature.go │ │ ├── sizeof_test.go │ │ ├── sizes.go │ │ ├── sizes_test.go │ │ ├── slice.go │ │ ├── stdlib_test.go │ │ ├── stmt.go │ │ ├── struct.go │ │ ├── subst.go │ │ ├── termlist.go │ │ ├── termlist_test.go │ │ ├── testdata │ │ │ ├── local │ │ │ │ ├── issue47996.go │ │ │ │ └── shifts.go │ │ │ └── manual.go │ │ ├── token_test.go │ │ ├── tuple.go │ │ ├── type.go │ │ ├── typelists.go │ │ ├── typeparam.go │ │ ├── typeset.go │ │ ├── typeset_test.go │ │ ├── typestring.go │ │ ├── typestring_test.go │ │ ├── typeterm.go │ │ ├── typeterm_test.go │ │ ├── typexpr.go │ │ ├── under.go │ │ ├── unify.go │ │ ├── union.go │ │ ├── universe.go │ │ ├── util.go │ │ ├── util_test.go │ │ ├── validtype.go │ │ └── version.go │ └── version │ │ ├── version.go │ │ └── version_test.go ├── hash │ ├── adler32 │ │ ├── adler32.go │ │ └── adler32_test.go │ ├── crc32 │ │ ├── crc32.go │ │ ├── crc32_amd64.go │ │ ├── crc32_amd64.s │ │ ├── crc32_arm64.go │ │ ├── crc32_arm64.s │ │ ├── crc32_generic.go │ │ ├── crc32_otherarch.go │ │ ├── crc32_ppc64le.go │ │ ├── crc32_ppc64le.s │ │ ├── crc32_s390x.go │ │ ├── crc32_s390x.s │ │ ├── crc32_table_ppc64le.s │ │ ├── crc32_test.go │ │ ├── example_test.go │ │ └── gen_const_ppc64le.go │ ├── crc64 │ │ ├── crc64.go │ │ └── crc64_test.go │ ├── example_test.go │ ├── fnv │ │ ├── fnv.go │ │ └── fnv_test.go │ ├── hash.go │ ├── maphash │ │ ├── example_test.go │ │ ├── maphash.go │ │ ├── maphash_purego.go │ │ ├── maphash_runtime.go │ │ ├── maphash_test.go │ │ └── smhasher_test.go │ ├── marshal_test.go │ ├── test_cases.txt │ └── test_gen.awk ├── html │ ├── entity.go │ ├── entity_test.go │ ├── escape.go │ ├── escape_test.go │ ├── example_test.go │ ├── fuzz_test.go │ └── template │ │ ├── attr.go │ │ ├── attr_string.go │ │ ├── clone_test.go │ │ ├── content.go │ │ ├── content_test.go │ │ ├── context.go │ │ ├── css.go │ │ ├── css_test.go │ │ ├── delim_string.go │ │ ├── doc.go │ │ ├── element_string.go │ │ ├── error.go │ │ ├── escape.go │ │ ├── escape_test.go │ │ ├── example_test.go │ │ ├── examplefiles_test.go │ │ ├── exec_test.go │ │ ├── html.go │ │ ├── html_test.go │ │ ├── js.go │ │ ├── js_test.go │ │ ├── jsctx_string.go │ │ ├── multi_test.go │ │ ├── state_string.go │ │ ├── template.go │ │ ├── template_test.go │ │ ├── testdata │ │ ├── file1.tmpl │ │ ├── file2.tmpl │ │ ├── fs.zip │ │ ├── tmpl1.tmpl │ │ └── tmpl2.tmpl │ │ ├── transition.go │ │ ├── transition_test.go │ │ ├── url.go │ │ ├── url_test.go │ │ └── urlpart_string.go ├── image │ ├── color │ │ ├── color.go │ │ ├── color_test.go │ │ ├── palette │ │ │ ├── gen.go │ │ │ ├── generate.go │ │ │ └── palette.go │ │ ├── ycbcr.go │ │ └── ycbcr_test.go │ ├── decode_example_test.go │ ├── decode_test.go │ ├── draw │ │ ├── bench_test.go │ │ ├── clip_test.go │ │ ├── draw.go │ │ ├── draw_test.go │ │ └── example_test.go │ ├── format.go │ ├── geom.go │ ├── geom_test.go │ ├── gif │ │ ├── fuzz_test.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── writer.go │ │ └── writer_test.go │ ├── image.go │ ├── image_test.go │ ├── internal │ │ └── imageutil │ │ │ ├── gen.go │ │ │ ├── imageutil.go │ │ │ └── impl.go │ ├── jpeg │ │ ├── dct_test.go │ │ ├── fdct.go │ │ ├── fuzz_test.go │ │ ├── huffman.go │ │ ├── idct.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── scan.go │ │ ├── writer.go │ │ └── writer_test.go │ ├── names.go │ ├── png │ │ ├── example_test.go │ │ ├── fuzz.go │ │ ├── fuzz_test.go │ │ ├── paeth.go │ │ ├── paeth_test.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── testdata │ │ │ ├── benchGray.png │ │ │ ├── benchNRGBA-gradient.png │ │ │ ├── benchNRGBA-opaque.png │ │ │ ├── benchPaletted.png │ │ │ ├── benchRGB-interlace.png │ │ │ ├── benchRGB.png │ │ │ ├── gray-gradient.interlaced.png │ │ │ ├── gray-gradient.png │ │ │ ├── invalid-crc32.png │ │ │ ├── invalid-noend.png │ │ │ ├── invalid-palette.png │ │ │ ├── invalid-trunc.png │ │ │ ├── invalid-zlib.png │ │ │ └── pngsuite │ │ │ │ ├── README │ │ │ │ ├── README.original │ │ │ │ ├── basn0g01-30.png │ │ │ │ ├── basn0g01-30.sng │ │ │ │ ├── basn0g01.png │ │ │ │ ├── basn0g01.sng │ │ │ │ ├── basn0g02-29.png │ │ │ │ ├── basn0g02-29.sng │ │ │ │ ├── basn0g02.png │ │ │ │ ├── basn0g02.sng │ │ │ │ ├── basn0g04-31.png │ │ │ │ ├── basn0g04-31.sng │ │ │ │ ├── basn0g04.png │ │ │ │ ├── basn0g04.sng │ │ │ │ ├── basn0g08.png │ │ │ │ ├── basn0g08.sng │ │ │ │ ├── basn0g16.png │ │ │ │ ├── basn0g16.sng │ │ │ │ ├── basn2c08.png │ │ │ │ ├── basn2c08.sng │ │ │ │ ├── basn2c16.png │ │ │ │ ├── basn2c16.sng │ │ │ │ ├── basn3p01.png │ │ │ │ ├── basn3p01.sng │ │ │ │ ├── basn3p02.png │ │ │ │ ├── basn3p02.sng │ │ │ │ ├── basn3p04-31i.png │ │ │ │ ├── basn3p04-31i.sng │ │ │ │ ├── basn3p04.png │ │ │ │ ├── basn3p04.sng │ │ │ │ ├── basn3p08-trns.png │ │ │ │ ├── basn3p08-trns.sng │ │ │ │ ├── basn3p08.png │ │ │ │ ├── basn3p08.sng │ │ │ │ ├── basn4a08.png │ │ │ │ ├── basn4a08.sng │ │ │ │ ├── basn4a16.png │ │ │ │ ├── basn4a16.sng │ │ │ │ ├── basn6a08.png │ │ │ │ ├── basn6a08.sng │ │ │ │ ├── basn6a16.png │ │ │ │ ├── basn6a16.sng │ │ │ │ ├── ftbbn0g01.png │ │ │ │ ├── ftbbn0g01.sng │ │ │ │ ├── ftbbn0g02.png │ │ │ │ ├── ftbbn0g02.sng │ │ │ │ ├── ftbbn0g04.png │ │ │ │ ├── ftbbn0g04.sng │ │ │ │ ├── ftbbn2c16.png │ │ │ │ ├── ftbbn2c16.sng │ │ │ │ ├── ftbbn3p08.png │ │ │ │ ├── ftbbn3p08.sng │ │ │ │ ├── ftbgn2c16.png │ │ │ │ ├── ftbgn2c16.sng │ │ │ │ ├── ftbgn3p08.png │ │ │ │ ├── ftbgn3p08.sng │ │ │ │ ├── ftbrn2c08.png │ │ │ │ ├── ftbrn2c08.sng │ │ │ │ ├── ftbwn0g16.png │ │ │ │ ├── ftbwn0g16.sng │ │ │ │ ├── ftbwn3p08.png │ │ │ │ ├── ftbwn3p08.sng │ │ │ │ ├── ftbyn3p08.png │ │ │ │ ├── ftbyn3p08.sng │ │ │ │ ├── ftp0n0g08.png │ │ │ │ ├── ftp0n0g08.sng │ │ │ │ ├── ftp0n2c08.png │ │ │ │ ├── ftp0n2c08.sng │ │ │ │ ├── ftp0n3p08.png │ │ │ │ ├── ftp0n3p08.sng │ │ │ │ ├── ftp1n3p08.png │ │ │ │ └── ftp1n3p08.sng │ │ ├── writer.go │ │ └── writer_test.go │ ├── testdata │ │ ├── triangle-001.gif │ │ ├── video-001.221212.jpeg │ │ ├── video-001.221212.png │ │ ├── video-001.5bpp.gif │ │ ├── video-001.cmyk.jpeg │ │ ├── video-001.cmyk.png │ │ ├── video-001.gif │ │ ├── video-001.interlaced.gif │ │ ├── video-001.jpeg │ │ ├── video-001.png │ │ ├── video-001.progressive.jpeg │ │ ├── video-001.progressive.truncated.jpeg │ │ ├── video-001.progressive.truncated.png │ │ ├── video-001.q50.410.jpeg │ │ ├── video-001.q50.410.progressive.jpeg │ │ ├── video-001.q50.411.jpeg │ │ ├── video-001.q50.411.progressive.jpeg │ │ ├── video-001.q50.420.jpeg │ │ ├── video-001.q50.420.progressive.jpeg │ │ ├── video-001.q50.422.jpeg │ │ ├── video-001.q50.422.progressive.jpeg │ │ ├── video-001.q50.440.jpeg │ │ ├── video-001.q50.440.progressive.jpeg │ │ ├── video-001.q50.444.jpeg │ │ ├── video-001.q50.444.progressive.jpeg │ │ ├── video-001.rgb.jpeg │ │ ├── video-001.rgb.png │ │ ├── video-001.separate.dc.progression.jpeg │ │ ├── video-001.separate.dc.progression.progressive.jpeg │ │ ├── video-005.gray.gif │ │ ├── video-005.gray.jpeg │ │ ├── video-005.gray.png │ │ ├── video-005.gray.q50.2x2.jpeg │ │ ├── video-005.gray.q50.2x2.progressive.jpeg │ │ ├── video-005.gray.q50.jpeg │ │ └── video-005.gray.q50.progressive.jpeg │ ├── ycbcr.go │ └── ycbcr_test.go ├── index │ └── suffixarray │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── sais.go │ │ ├── sais2.go │ │ ├── suffixarray.go │ │ └── suffixarray_test.go ├── internal │ ├── abi │ │ ├── abi.go │ │ ├── abi_amd64.go │ │ ├── abi_arm64.go │ │ ├── abi_generic.go │ │ ├── abi_loong64.go │ │ ├── abi_ppc64x.go │ │ ├── abi_riscv64.go │ │ ├── abi_test.go │ │ ├── abi_test.s │ │ ├── compiletype.go │ │ ├── export_test.go │ │ ├── funcpc.go │ │ ├── funcpc_gccgo.go │ │ ├── map.go │ │ ├── stack.go │ │ ├── stub.s │ │ ├── switch.go │ │ ├── symtab.go │ │ ├── testdata │ │ │ ├── x.go │ │ │ └── x.s │ │ └── type.go │ ├── bisect │ │ └── bisect.go │ ├── buildcfg │ │ ├── cfg.go │ │ ├── cfg_test.go │ │ └── exp.go │ ├── bytealg │ │ ├── bytealg.go │ │ ├── compare_386.s │ │ ├── compare_amd64.s │ │ ├── compare_arm.s │ │ ├── compare_arm64.s │ │ ├── compare_generic.go │ │ ├── compare_loong64.s │ │ ├── compare_mips64x.s │ │ ├── compare_mipsx.s │ │ ├── compare_native.go │ │ ├── compare_ppc64x.s │ │ ├── compare_riscv64.s │ │ ├── compare_s390x.s │ │ ├── compare_wasm.s │ │ ├── count_amd64.s │ │ ├── count_arm.s │ │ ├── count_arm64.s │ │ ├── count_generic.go │ │ ├── count_native.go │ │ ├── count_ppc64x.s │ │ ├── count_riscv64.s │ │ ├── count_s390x.s │ │ ├── equal_386.s │ │ ├── equal_amd64.s │ │ ├── equal_arm.s │ │ ├── equal_arm64.s │ │ ├── equal_generic.go │ │ ├── equal_loong64.s │ │ ├── equal_mips64x.s │ │ ├── equal_mipsx.s │ │ ├── equal_native.go │ │ ├── equal_ppc64x.s │ │ ├── equal_riscv64.s │ │ ├── equal_s390x.s │ │ ├── equal_wasm.s │ │ ├── index_amd64.go │ │ ├── index_amd64.s │ │ ├── index_arm64.go │ │ ├── index_arm64.s │ │ ├── index_generic.go │ │ ├── index_native.go │ │ ├── index_ppc64x.go │ │ ├── index_ppc64x.s │ │ ├── index_s390x.go │ │ ├── index_s390x.s │ │ ├── indexbyte_386.s │ │ ├── indexbyte_amd64.s │ │ ├── indexbyte_arm.s │ │ ├── indexbyte_arm64.s │ │ ├── indexbyte_generic.go │ │ ├── indexbyte_loong64.s │ │ ├── indexbyte_mips64x.s │ │ ├── indexbyte_mipsx.s │ │ ├── indexbyte_native.go │ │ ├── indexbyte_ppc64x.s │ │ ├── indexbyte_riscv64.s │ │ ├── indexbyte_s390x.s │ │ ├── indexbyte_wasm.s │ │ └── lastindexbyte_generic.go │ ├── cfg │ │ └── cfg.go │ ├── chacha8rand │ │ ├── chacha8.go │ │ ├── chacha8_amd64.s │ │ ├── chacha8_arm64.s │ │ ├── chacha8_generic.go │ │ ├── chacha8_stub.s │ │ ├── export_test.go │ │ └── rand_test.go │ ├── coverage │ │ ├── calloc │ │ │ └── batchcounteralloc.go │ │ ├── cformat │ │ │ ├── fmt_test.go │ │ │ └── format.go │ │ ├── cmerge │ │ │ ├── merge.go │ │ │ └── merge_test.go │ │ ├── decodecounter │ │ │ └── decodecounterfile.go │ │ ├── decodemeta │ │ │ ├── decode.go │ │ │ └── decodefile.go │ │ ├── defs.go │ │ ├── encodecounter │ │ │ └── encode.go │ │ ├── encodemeta │ │ │ ├── encode.go │ │ │ └── encodefile.go │ │ ├── pkid.go │ │ ├── pods │ │ │ ├── pods.go │ │ │ └── pods_test.go │ │ ├── rtcov │ │ │ └── rtcov.go │ │ ├── slicereader │ │ │ ├── slicereader.go │ │ │ └── slr_test.go │ │ ├── slicewriter │ │ │ ├── slicewriter.go │ │ │ └── slw_test.go │ │ ├── stringtab │ │ │ └── stringtab.go │ │ ├── test │ │ │ ├── counter_test.go │ │ │ └── roundtrip_test.go │ │ └── uleb128 │ │ │ └── uleb128.go │ ├── cpu │ │ ├── cpu.go │ │ ├── cpu.s │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_arm64.s │ │ ├── cpu_arm64_android.go │ │ ├── cpu_arm64_darwin.go │ │ ├── cpu_arm64_freebsd.go │ │ ├── cpu_arm64_hwcap.go │ │ ├── cpu_arm64_linux.go │ │ ├── cpu_arm64_openbsd.go │ │ ├── cpu_arm64_other.go │ │ ├── cpu_loong64.go │ │ ├── cpu_mips.go │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsle.go │ │ ├── cpu_no_name.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_ppc64x_aix.go │ │ ├── cpu_ppc64x_linux.go │ │ ├── cpu_ppc64x_other.go │ │ ├── cpu_riscv64.go │ │ ├── cpu_s390x.go │ │ ├── cpu_s390x.s │ │ ├── cpu_s390x_test.go │ │ ├── cpu_test.go │ │ ├── cpu_wasm.go │ │ ├── cpu_x86.go │ │ ├── cpu_x86.s │ │ ├── cpu_x86_test.go │ │ ├── export_test.go │ │ └── export_x86_test.go │ ├── dag │ │ ├── alg.go │ │ ├── alg_test.go │ │ ├── parse.go │ │ └── parse_test.go │ ├── diff │ │ ├── diff.go │ │ ├── diff_test.go │ │ └── testdata │ │ │ ├── allnew.txt │ │ │ ├── allold.txt │ │ │ ├── basic.txt │ │ │ ├── dups.txt │ │ │ ├── end.txt │ │ │ ├── eof.txt │ │ │ ├── eof1.txt │ │ │ ├── eof2.txt │ │ │ ├── long.txt │ │ │ ├── same.txt │ │ │ ├── start.txt │ │ │ └── triv.txt │ ├── fmtsort │ │ ├── export_test.go │ │ ├── sort.go │ │ └── sort_test.go │ ├── fuzz │ │ ├── counters_supported.go │ │ ├── counters_unsupported.go │ │ ├── coverage.go │ │ ├── encoding.go │ │ ├── encoding_test.go │ │ ├── fuzz.go │ │ ├── mem.go │ │ ├── minimize.go │ │ ├── minimize_test.go │ │ ├── mutator.go │ │ ├── mutator_test.go │ │ ├── mutators_byteslice.go │ │ ├── mutators_byteslice_test.go │ │ ├── pcg.go │ │ ├── queue.go │ │ ├── queue_test.go │ │ ├── sys_posix.go │ │ ├── sys_unimplemented.go │ │ ├── sys_windows.go │ │ ├── trace.go │ │ ├── worker.go │ │ └── worker_test.go │ ├── goarch │ │ ├── gengoarch.go │ │ ├── goarch.go │ │ ├── goarch_386.go │ │ ├── goarch_amd64.go │ │ ├── goarch_arm.go │ │ ├── goarch_arm64.go │ │ ├── goarch_loong64.go │ │ ├── goarch_mips.go │ │ ├── goarch_mips64.go │ │ ├── goarch_mips64le.go │ │ ├── goarch_mipsle.go │ │ ├── goarch_ppc64.go │ │ ├── goarch_ppc64le.go │ │ ├── goarch_riscv64.go │ │ ├── goarch_s390x.go │ │ ├── goarch_wasm.go │ │ ├── zgoarch_386.go │ │ ├── zgoarch_amd64.go │ │ ├── zgoarch_arm.go │ │ ├── zgoarch_arm64.go │ │ ├── zgoarch_arm64be.go │ │ ├── zgoarch_armbe.go │ │ ├── zgoarch_loong64.go │ │ ├── zgoarch_mips.go │ │ ├── zgoarch_mips64.go │ │ ├── zgoarch_mips64le.go │ │ ├── zgoarch_mips64p32.go │ │ ├── zgoarch_mips64p32le.go │ │ ├── zgoarch_mipsle.go │ │ ├── zgoarch_ppc.go │ │ ├── zgoarch_ppc64.go │ │ ├── zgoarch_ppc64le.go │ │ ├── zgoarch_riscv.go │ │ ├── zgoarch_riscv64.go │ │ ├── zgoarch_s390.go │ │ ├── zgoarch_s390x.go │ │ ├── zgoarch_sparc.go │ │ ├── zgoarch_sparc64.go │ │ └── zgoarch_wasm.go │ ├── godebug │ │ ├── godebug.go │ │ └── godebug_test.go │ ├── godebugs │ │ ├── godebugs_test.go │ │ └── table.go │ ├── goexperiment │ │ ├── exp_allocheaders_off.go │ │ ├── exp_allocheaders_on.go │ │ ├── exp_arenas_off.go │ │ ├── exp_arenas_on.go │ │ ├── exp_boringcrypto_off.go │ │ ├── exp_boringcrypto_on.go │ │ ├── exp_cacheprog_off.go │ │ ├── exp_cacheprog_on.go │ │ ├── exp_cgocheck2_off.go │ │ ├── exp_cgocheck2_on.go │ │ ├── exp_coverageredesign_off.go │ │ ├── exp_coverageredesign_on.go │ │ ├── exp_exectracer2_off.go │ │ ├── exp_exectracer2_on.go │ │ ├── exp_fieldtrack_off.go │ │ ├── exp_fieldtrack_on.go │ │ ├── exp_heapminimum512kib_off.go │ │ ├── exp_heapminimum512kib_on.go │ │ ├── exp_loopvar_off.go │ │ ├── exp_loopvar_on.go │ │ ├── exp_newinliner_off.go │ │ ├── exp_newinliner_on.go │ │ ├── exp_pagetrace_off.go │ │ ├── exp_pagetrace_on.go │ │ ├── exp_preemptibleloops_off.go │ │ ├── exp_preemptibleloops_on.go │ │ ├── exp_rangefunc_off.go │ │ ├── exp_rangefunc_on.go │ │ ├── exp_regabiargs_off.go │ │ ├── exp_regabiargs_on.go │ │ ├── exp_regabiwrappers_off.go │ │ ├── exp_regabiwrappers_on.go │ │ ├── exp_staticlockranking_off.go │ │ ├── exp_staticlockranking_on.go │ │ ├── flags.go │ │ └── mkconsts.go │ ├── goos │ │ ├── gengoos.go │ │ ├── goos.go │ │ ├── nonunix.go │ │ ├── unix.go │ │ ├── zgoos_aix.go │ │ ├── zgoos_android.go │ │ ├── zgoos_darwin.go │ │ ├── zgoos_dragonfly.go │ │ ├── zgoos_freebsd.go │ │ ├── zgoos_hurd.go │ │ ├── zgoos_illumos.go │ │ ├── zgoos_ios.go │ │ ├── zgoos_js.go │ │ ├── zgoos_linux.go │ │ ├── zgoos_netbsd.go │ │ ├── zgoos_openbsd.go │ │ ├── zgoos_plan9.go │ │ ├── zgoos_solaris.go │ │ ├── zgoos_wasip1.go │ │ ├── zgoos_windows.go │ │ └── zgoos_zos.go │ ├── goroot │ │ ├── gc.go │ │ └── gccgo.go │ ├── gover │ │ ├── gover.go │ │ └── gover_test.go │ ├── goversion │ │ └── goversion.go │ ├── intern │ │ ├── intern.go │ │ └── intern_test.go │ ├── itoa │ │ ├── itoa.go │ │ └── itoa_test.go │ ├── lazyregexp │ │ └── lazyre.go │ ├── lazytemplate │ │ └── lazytemplate.go │ ├── nettrace │ │ └── nettrace.go │ ├── obscuretestdata │ │ └── obscuretestdata.go │ ├── oserror │ │ └── errors.go │ ├── pkgbits │ │ ├── codes.go │ │ ├── decoder.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── flags.go │ │ ├── reloc.go │ │ ├── support.go │ │ ├── sync.go │ │ └── syncmarker_string.go │ ├── platform │ │ ├── supported.go │ │ ├── zosarch.go │ │ └── zosarch_test.go │ ├── poll │ │ ├── copy_file_range_linux.go │ │ ├── errno_unix.go │ │ ├── errno_windows.go │ │ ├── error_linux_test.go │ │ ├── error_stub_test.go │ │ ├── error_test.go │ │ ├── export_linux_test.go │ │ ├── export_posix_test.go │ │ ├── export_test.go │ │ ├── export_windows_test.go │ │ ├── fd.go │ │ ├── fd_fsync_darwin.go │ │ ├── fd_fsync_posix.go │ │ ├── fd_fsync_windows.go │ │ ├── fd_io_plan9.go │ │ ├── fd_mutex.go │ │ ├── fd_mutex_test.go │ │ ├── fd_opendir_darwin.go │ │ ├── fd_plan9.go │ │ ├── fd_poll_js.go │ │ ├── fd_poll_runtime.go │ │ ├── fd_posix.go │ │ ├── fd_posix_test.go │ │ ├── fd_unix.go │ │ ├── fd_unixjs.go │ │ ├── fd_wasip1.go │ │ ├── fd_windows.go │ │ ├── fd_windows_test.go │ │ ├── fd_writev_libc.go │ │ ├── fd_writev_unix.go │ │ ├── file_plan9.go │ │ ├── hook_cloexec.go │ │ ├── hook_unix.go │ │ ├── hook_windows.go │ │ ├── iovec_solaris.go │ │ ├── iovec_unix.go │ │ ├── read_test.go │ │ ├── sendfile_bsd.go │ │ ├── sendfile_linux.go │ │ ├── sendfile_solaris.go │ │ ├── sendfile_windows.go │ │ ├── sock_cloexec.go │ │ ├── sock_cloexec_accept.go │ │ ├── sockopt.go │ │ ├── sockopt_linux.go │ │ ├── sockopt_unix.go │ │ ├── sockopt_windows.go │ │ ├── sockoptip.go │ │ ├── splice_linux.go │ │ ├── splice_linux_test.go │ │ ├── strconv.go │ │ ├── sys_cloexec.go │ │ ├── writev.go │ │ └── writev_test.go │ ├── profile │ │ ├── encode.go │ │ ├── filter.go │ │ ├── legacy_profile.go │ │ ├── merge.go │ │ ├── profile.go │ │ ├── profile_test.go │ │ ├── proto.go │ │ ├── proto_test.go │ │ └── prune.go │ ├── race │ │ ├── doc.go │ │ ├── norace.go │ │ └── race.go │ ├── reflectlite │ │ ├── all_test.go │ │ ├── asm.s │ │ ├── export_test.go │ │ ├── reflect_mirror_test.go │ │ ├── set_test.go │ │ ├── swapper.go │ │ ├── tostring_test.go │ │ ├── type.go │ │ └── value.go │ ├── safefilepath │ │ ├── path.go │ │ ├── path_other.go │ │ ├── path_test.go │ │ └── path_windows.go │ ├── saferio │ │ ├── io.go │ │ └── io_test.go │ ├── singleflight │ │ ├── singleflight.go │ │ └── singleflight_test.go │ ├── syscall │ │ ├── execenv │ │ │ ├── execenv_default.go │ │ │ └── execenv_windows.go │ │ ├── unix │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_darwin.s │ │ │ ├── asm_solaris.s │ │ │ ├── at.go │ │ │ ├── at_aix.go │ │ │ ├── at_fstatat.go │ │ │ ├── at_fstatat2.go │ │ │ ├── at_js.go │ │ │ ├── at_libc.go │ │ │ ├── at_libc2.go │ │ │ ├── at_solaris.go │ │ │ ├── at_sysnum_darwin.go │ │ │ ├── at_sysnum_dragonfly.go │ │ │ ├── at_sysnum_freebsd.go │ │ │ ├── at_sysnum_fstatat64_linux.go │ │ │ ├── at_sysnum_fstatat_linux.go │ │ │ ├── at_sysnum_linux.go │ │ │ ├── at_sysnum_netbsd.go │ │ │ ├── at_sysnum_newfstatat_linux.go │ │ │ ├── at_sysnum_openbsd.go │ │ │ ├── at_wasip1.go │ │ │ ├── constants.go │ │ │ ├── copy_file_range_linux.go │ │ │ ├── eaccess_bsd.go │ │ │ ├── eaccess_linux.go │ │ │ ├── eaccess_other.go │ │ │ ├── fallocate_freebsd_386.go │ │ │ ├── fallocate_freebsd_64bit.go │ │ │ ├── fallocate_freebsd_arm.go │ │ │ ├── fcntl_js.go │ │ │ ├── fcntl_unix.go │ │ │ ├── fcntl_wasip1.go │ │ │ ├── getentropy_darwin.go │ │ │ ├── getentropy_darwin.s │ │ │ ├── getentropy_netbsd.go │ │ │ ├── getentropy_openbsd.go │ │ │ ├── getentropy_openbsd_mips64.go │ │ │ ├── getrandom.go │ │ │ ├── getrandom_dragonfly.go │ │ │ ├── getrandom_freebsd.go │ │ │ ├── getrandom_linux.go │ │ │ ├── getrandom_solaris.go │ │ │ ├── ioctl_aix.go │ │ │ ├── kernel_version_linux.go │ │ │ ├── kernel_version_other.go │ │ │ ├── net.go │ │ │ ├── net_darwin.go │ │ │ ├── net_js.go │ │ │ ├── net_wasip1.go │ │ │ ├── nonblocking_js.go │ │ │ ├── nonblocking_unix.go │ │ │ ├── nonblocking_wasip1.go │ │ │ ├── pidfd_linux.go │ │ │ ├── pty_darwin.go │ │ │ ├── sysnum_linux_386.go │ │ │ ├── sysnum_linux_amd64.go │ │ │ ├── sysnum_linux_arm.go │ │ │ ├── sysnum_linux_generic.go │ │ │ ├── sysnum_linux_mips64x.go │ │ │ ├── sysnum_linux_mipsx.go │ │ │ ├── sysnum_linux_ppc64x.go │ │ │ ├── sysnum_linux_s390x.go │ │ │ └── user_darwin.go │ │ └── windows │ │ │ ├── exec_windows_test.go │ │ │ ├── memory_windows.go │ │ │ ├── mksyscall.go │ │ │ ├── net_windows.go │ │ │ ├── psapi_windows.go │ │ │ ├── registry │ │ │ ├── export_test.go │ │ │ ├── key.go │ │ │ ├── mksyscall.go │ │ │ ├── registry_test.go │ │ │ ├── syscall.go │ │ │ ├── value.go │ │ │ └── zsyscall_windows.go │ │ │ ├── reparse_windows.go │ │ │ ├── security_windows.go │ │ │ ├── symlink_windows.go │ │ │ ├── syscall_windows.go │ │ │ ├── sysdll │ │ │ └── sysdll.go │ │ │ └── zsyscall_windows.go │ ├── sysinfo │ │ ├── cpuinfo_linux.go │ │ ├── cpuinfo_stub.go │ │ └── sysinfo.go │ ├── testenv │ │ ├── exec.go │ │ ├── noopt.go │ │ ├── opt.go │ │ ├── testenv.go │ │ ├── testenv_notunix.go │ │ ├── testenv_notwin.go │ │ ├── testenv_test.go │ │ ├── testenv_unix.go │ │ └── testenv_windows.go │ ├── testlog │ │ ├── exit.go │ │ └── log.go │ ├── testpty │ │ ├── pty.go │ │ ├── pty_cgo.go │ │ ├── pty_darwin.go │ │ └── pty_none.go │ ├── trace │ │ ├── gc.go │ │ ├── gc_test.go │ │ ├── goroutines.go │ │ ├── mkcanned.bash │ │ ├── mud.go │ │ ├── mud_test.go │ │ ├── order.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── summary.go │ │ ├── summary_test.go │ │ ├── testdata │ │ │ ├── http_1_10_good │ │ │ ├── http_1_11_good │ │ │ ├── http_1_19_good │ │ │ ├── http_1_21_good │ │ │ ├── http_1_5_good │ │ │ ├── http_1_7_good │ │ │ ├── http_1_9_good │ │ │ ├── stress_1_10_good │ │ │ ├── stress_1_11_good │ │ │ ├── stress_1_19_good │ │ │ ├── stress_1_21_good │ │ │ ├── stress_1_5_good │ │ │ ├── stress_1_5_unordered │ │ │ ├── stress_1_7_good │ │ │ ├── stress_1_9_good │ │ │ ├── stress_start_stop_1_10_good │ │ │ ├── stress_start_stop_1_11_good │ │ │ ├── stress_start_stop_1_19_good │ │ │ ├── stress_start_stop_1_21_good │ │ │ ├── stress_start_stop_1_5_good │ │ │ ├── stress_start_stop_1_7_good │ │ │ ├── stress_start_stop_1_9_good │ │ │ ├── user_task_region_1_11_good │ │ │ ├── user_task_region_1_19_good │ │ │ └── user_task_region_1_21_good │ │ ├── traceviewer │ │ │ ├── emitter.go │ │ │ ├── format │ │ │ │ └── format.go │ │ │ ├── histogram.go │ │ │ ├── http.go │ │ │ ├── mmu.go │ │ │ ├── pprof.go │ │ │ └── static │ │ │ │ ├── README.md │ │ │ │ ├── trace_viewer_full.html │ │ │ │ └── webcomponents.min.js │ │ ├── v2 │ │ │ ├── base.go │ │ │ ├── batch.go │ │ │ ├── batchcursor.go │ │ │ ├── batchcursor_test.go │ │ │ ├── event.go │ │ │ ├── event │ │ │ │ ├── event.go │ │ │ │ ├── go122 │ │ │ │ │ └── event.go │ │ │ │ └── requirements.go │ │ │ ├── event_test.go │ │ │ ├── generation.go │ │ │ ├── internal │ │ │ │ └── testgen │ │ │ │ │ └── go122 │ │ │ │ │ └── trace.go │ │ │ ├── mkexp.bash │ │ │ ├── order.go │ │ │ ├── raw │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── reader.go │ │ │ │ ├── textreader.go │ │ │ │ ├── textwriter.go │ │ │ │ └── writer.go │ │ │ ├── reader.go │ │ │ ├── reader_test.go │ │ │ ├── resources.go │ │ │ ├── testdata │ │ │ │ ├── README.md │ │ │ │ ├── cmd │ │ │ │ │ ├── gotraceraw │ │ │ │ │ │ └── main.go │ │ │ │ │ └── gotracevalidate │ │ │ │ │ │ └── main.go │ │ │ │ ├── fuzz │ │ │ │ │ └── FuzzReader │ │ │ │ │ │ ├── 0cb1786dee0f090b │ │ │ │ │ │ ├── 1e45307d5b2ec36d │ │ │ │ │ │ ├── 2b05796f9b2fc48d │ │ │ │ │ │ ├── 2b9be9aebe08d511 │ │ │ │ │ │ ├── 344331b314da0b08 │ │ │ │ │ │ ├── 365d7b5b633b3f97 │ │ │ │ │ │ ├── 4d9ddc909984e871 │ │ │ │ │ │ ├── 56f073e57903588c │ │ │ │ │ │ ├── 9d6ee7d3ddf8d566 │ │ │ │ │ │ ├── aeb749b6bc317b66 │ │ │ │ │ │ ├── closing-unknown-region │ │ │ │ │ │ ├── d478e18d2d6756b7 │ │ │ │ │ │ ├── d91203cd397aa0bc │ │ │ │ │ │ ├── invalid-proc-state │ │ │ │ │ │ ├── large-id │ │ │ │ │ │ └── malformed-timestamp │ │ │ │ ├── generate.go │ │ │ │ ├── generators │ │ │ │ │ ├── go122-confuse-seq-across-generations.go │ │ │ │ │ ├── go122-create-syscall-reuse-thread-id.go │ │ │ │ │ ├── go122-create-syscall-with-p.go │ │ │ │ │ ├── go122-go-create-without-running-g.go │ │ │ │ │ ├── go122-syscall-steal-proc-ambiguous.go │ │ │ │ │ ├── go122-syscall-steal-proc-gen-boundary-bare-m.go │ │ │ │ │ ├── go122-syscall-steal-proc-gen-boundary-reacquire-new-proc-bare-m.go │ │ │ │ │ ├── go122-syscall-steal-proc-gen-boundary-reacquire-new-proc.go │ │ │ │ │ ├── go122-syscall-steal-proc-gen-boundary.go │ │ │ │ │ ├── go122-syscall-steal-proc-reacquire-new-proc-bare-m.go │ │ │ │ │ ├── go122-syscall-steal-proc-reacquire-new-proc.go │ │ │ │ │ ├── go122-syscall-steal-proc-self.go │ │ │ │ │ ├── go122-syscall-steal-proc-simple-bare-m.go │ │ │ │ │ ├── go122-syscall-steal-proc-simple.go │ │ │ │ │ ├── go122-syscall-steal-proc-sitting-in-syscall.go │ │ │ │ │ └── go122-task-across-generations.go │ │ │ │ ├── mktests.go │ │ │ │ ├── testprog │ │ │ │ │ ├── annotations-stress.go │ │ │ │ │ ├── annotations.go │ │ │ │ │ ├── cgo-callback.go │ │ │ │ │ ├── cpu-profile.go │ │ │ │ │ ├── futile-wakeup.go │ │ │ │ │ ├── gc-stress.go │ │ │ │ │ ├── gomaxprocs.go │ │ │ │ │ ├── many-start-stop.go │ │ │ │ │ ├── stacks.go │ │ │ │ │ ├── stress-start-stop.go │ │ │ │ │ ├── stress.go │ │ │ │ │ └── wait-on-pipe.go │ │ │ │ └── tests │ │ │ │ │ ├── go122-annotations-stress.test │ │ │ │ │ ├── go122-annotations.test │ │ │ │ │ ├── go122-confuse-seq-across-generations.test │ │ │ │ │ ├── go122-create-syscall-reuse-thread-id.test │ │ │ │ │ ├── go122-create-syscall-with-p.test │ │ │ │ │ ├── go122-gc-stress.test │ │ │ │ │ ├── go122-go-create-without-running-g.test │ │ │ │ │ ├── go122-syscall-steal-proc-ambiguous.test │ │ │ │ │ ├── go122-syscall-steal-proc-gen-boundary-bare-m.test │ │ │ │ │ ├── go122-syscall-steal-proc-gen-boundary-reacquire-new-proc-bare-m.test │ │ │ │ │ ├── go122-syscall-steal-proc-gen-boundary-reacquire-new-proc.test │ │ │ │ │ ├── go122-syscall-steal-proc-gen-boundary.test │ │ │ │ │ ├── go122-syscall-steal-proc-reacquire-new-proc-bare-m.test │ │ │ │ │ ├── go122-syscall-steal-proc-reacquire-new-proc.test │ │ │ │ │ ├── go122-syscall-steal-proc-self.test │ │ │ │ │ ├── go122-syscall-steal-proc-simple-bare-m.test │ │ │ │ │ ├── go122-syscall-steal-proc-simple.test │ │ │ │ │ ├── go122-syscall-steal-proc-sitting-in-syscall.test │ │ │ │ │ └── go122-task-across-generations.test │ │ │ ├── testtrace │ │ │ │ ├── expectation.go │ │ │ │ ├── format.go │ │ │ │ └── validation.go │ │ │ ├── trace_test.go │ │ │ ├── value.go │ │ │ └── version │ │ │ │ └── version.go │ │ └── writer.go │ ├── txtar │ │ └── archive.go │ ├── types │ │ ├── errors │ │ │ ├── code_string.go │ │ │ ├── codes.go │ │ │ ├── codes_test.go │ │ │ └── generrordocs.go │ │ └── testdata │ │ │ ├── check │ │ │ ├── blank.go │ │ │ ├── builtins0.go │ │ │ ├── builtins1.go │ │ │ ├── chans.go │ │ │ ├── compliterals.go │ │ │ ├── const0.go │ │ │ ├── const1.go │ │ │ ├── constdecl.go │ │ │ ├── conversions0.go │ │ │ ├── conversions1.go │ │ │ ├── cycles0.go │ │ │ ├── cycles1.go │ │ │ ├── cycles2.go │ │ │ ├── cycles3.go │ │ │ ├── cycles4.go │ │ │ ├── cycles5.go │ │ │ ├── cycles5a.go │ │ │ ├── decls0.go │ │ │ ├── decls1.go │ │ │ ├── decls2 │ │ │ │ ├── decls2a.go │ │ │ │ └── decls2b.go │ │ │ ├── decls3.go │ │ │ ├── decls4.go │ │ │ ├── decls5.go │ │ │ ├── errors.go │ │ │ ├── expr0.go │ │ │ ├── expr1.go │ │ │ ├── expr2.go │ │ │ ├── expr3.go │ │ │ ├── funcinference.go │ │ │ ├── go1_12.go │ │ │ ├── go1_13.go │ │ │ ├── go1_16.go │ │ │ ├── go1_19.go │ │ │ ├── go1_19_20.go │ │ │ ├── go1_20_19.go │ │ │ ├── go1_21_19.go │ │ │ ├── go1_8.go │ │ │ ├── go1_xx_19.go │ │ │ ├── gotos.go │ │ │ ├── importC.go │ │ │ ├── importdecl0 │ │ │ │ ├── importdecl0a.go │ │ │ │ └── importdecl0b.go │ │ │ ├── importdecl1 │ │ │ │ ├── importdecl1a.go │ │ │ │ └── importdecl1b.go │ │ │ ├── init0.go │ │ │ ├── init1.go │ │ │ ├── init2.go │ │ │ ├── issue25008 │ │ │ │ ├── issue25008a.go │ │ │ │ └── issue25008b.go │ │ │ ├── issues0.go │ │ │ ├── issues1.go │ │ │ ├── labels.go │ │ │ ├── linalg.go │ │ │ ├── literals.go │ │ │ ├── main0.go │ │ │ ├── main1.go │ │ │ ├── map0.go │ │ │ ├── map1.go │ │ │ ├── methodsets.go │ │ │ ├── shifts.go │ │ │ ├── slices.go │ │ │ ├── stmt0.go │ │ │ ├── stmt1.go │ │ │ ├── typeinference.go │ │ │ ├── typeinst0.go │ │ │ ├── typeinst1.go │ │ │ ├── typeinstcycles.go │ │ │ ├── typeparams.go │ │ │ ├── unions.go │ │ │ └── vardecl.go │ │ │ ├── examples │ │ │ ├── constraints.go │ │ │ ├── functions.go │ │ │ ├── inference.go │ │ │ ├── inference2.go │ │ │ ├── methods.go │ │ │ ├── operations.go │ │ │ ├── types.go │ │ │ └── typesets.go │ │ │ ├── fixedbugs │ │ │ ├── issue20583.go │ │ │ ├── issue23203a.go │ │ │ ├── issue23203b.go │ │ │ ├── issue25838.go │ │ │ ├── issue26390.go │ │ │ ├── issue28251.go │ │ │ ├── issue3117.go │ │ │ ├── issue39634.go │ │ │ ├── issue39664.go │ │ │ ├── issue39680.go │ │ │ ├── issue39693.go │ │ │ ├── issue39699.go │ │ │ ├── issue39711.go │ │ │ ├── issue39723.go │ │ │ ├── issue39725.go │ │ │ ├── issue39754.go │ │ │ ├── issue39755.go │ │ │ ├── issue39768.go │ │ │ ├── issue39938.go │ │ │ ├── issue39948.go │ │ │ ├── issue39976.go │ │ │ ├── issue39982.go │ │ │ ├── issue40038.go │ │ │ ├── issue40056.go │ │ │ ├── issue40057.go │ │ │ ├── issue40301.go │ │ │ ├── issue40350.go │ │ │ ├── issue40684.go │ │ │ ├── issue40789.go │ │ │ ├── issue41124.go │ │ │ ├── issue41176.go │ │ │ ├── issue42695.go │ │ │ ├── issue42758.go │ │ │ ├── issue42881.go │ │ │ ├── issue42987.go │ │ │ ├── issue43056.go │ │ │ ├── issue43087.go │ │ │ ├── issue43109.go │ │ │ ├── issue43110.go │ │ │ ├── issue43124.go │ │ │ ├── issue43125.go │ │ │ ├── issue43190.go │ │ │ ├── issue43527.go │ │ │ ├── issue43671.go │ │ │ ├── issue44688.go │ │ │ ├── issue44799.go │ │ │ ├── issue45114.go │ │ │ ├── issue45548.go │ │ │ ├── issue45550.go │ │ │ ├── issue45635.go │ │ │ ├── issue45639.go │ │ │ ├── issue45920.go │ │ │ ├── issue45985.go │ │ │ ├── issue46090.go │ │ │ ├── issue46275.go │ │ │ ├── issue46403.go │ │ │ ├── issue46404.go │ │ │ ├── issue46461.go │ │ │ ├── issue46461a.go │ │ │ ├── issue46583.go │ │ │ ├── issue47031.go │ │ │ ├── issue47115.go │ │ │ ├── issue47127.go │ │ │ ├── issue47411.go │ │ │ ├── issue47747.go │ │ │ ├── issue47796.go │ │ │ ├── issue47818.go │ │ │ ├── issue47887.go │ │ │ ├── issue47968.go │ │ │ ├── issue48008.go │ │ │ ├── issue48018.go │ │ │ ├── issue48048.go │ │ │ ├── issue48082.go │ │ │ ├── issue48083.go │ │ │ ├── issue48136.go │ │ │ ├── issue48234.go │ │ │ ├── issue48312.go │ │ │ ├── issue48472.go │ │ │ ├── issue48529.go │ │ │ ├── issue48582.go │ │ │ ├── issue48619.go │ │ │ ├── issue48656.go │ │ │ ├── issue48695.go │ │ │ ├── issue48703.go │ │ │ ├── issue48712.go │ │ │ ├── issue48819.go │ │ │ ├── issue48827.go │ │ │ ├── issue48951.go │ │ │ ├── issue48962.go │ │ │ ├── issue48974.go │ │ │ ├── issue49003.go │ │ │ ├── issue49005.go │ │ │ ├── issue49043.go │ │ │ ├── issue49112.go │ │ │ ├── issue49179.go │ │ │ ├── issue49242.go │ │ │ ├── issue49247.go │ │ │ ├── issue49276.go │ │ │ ├── issue49296.go │ │ │ ├── issue49439.go │ │ │ ├── issue49482.go │ │ │ ├── issue49541.go │ │ │ ├── issue49579.go │ │ │ ├── issue49592.go │ │ │ ├── issue49602.go │ │ │ ├── issue49705.go │ │ │ ├── issue49735.go │ │ │ ├── issue49739.go │ │ │ ├── issue49864.go │ │ │ ├── issue50259.go │ │ │ ├── issue50276.go │ │ │ ├── issue50281.go │ │ │ ├── issue50321.go │ │ │ ├── issue50372.go │ │ │ ├── issue50417.go │ │ │ ├── issue50426.go │ │ │ ├── issue50427.go │ │ │ ├── issue50450.go │ │ │ ├── issue50516.go │ │ │ ├── issue50646.go │ │ │ ├── issue50729.go │ │ │ ├── issue50729b.go │ │ │ ├── issue50755.go │ │ │ ├── issue50779.go │ │ │ ├── issue50779a.go │ │ │ ├── issue50782.go │ │ │ ├── issue50816.go │ │ │ ├── issue50833.go │ │ │ ├── issue50912.go │ │ │ ├── issue50918.go │ │ │ ├── issue50929.go │ │ │ ├── issue50965.go │ │ │ ├── issue51025.go │ │ │ ├── issue51048.go │ │ │ ├── issue51139.go │ │ │ ├── issue51145.go │ │ │ ├── issue51158.go │ │ │ ├── issue51229.go │ │ │ ├── issue51232.go │ │ │ ├── issue51233.go │ │ │ ├── issue51257.go │ │ │ ├── issue51335.go │ │ │ ├── issue51339.go │ │ │ ├── issue51360.go │ │ │ ├── issue51376.go │ │ │ ├── issue51386.go │ │ │ ├── issue51437.go │ │ │ ├── issue51472.go │ │ │ ├── issue51509.go │ │ │ ├── issue51525.go │ │ │ ├── issue51533.go │ │ │ ├── issue51578.go │ │ │ ├── issue51593.go │ │ │ ├── issue51607.go │ │ │ ├── issue51610.go │ │ │ ├── issue51616.go │ │ │ ├── issue51658.go │ │ │ ├── issue51877.go │ │ │ ├── issue52031.go │ │ │ ├── issue52401.go │ │ │ ├── issue52529.go │ │ │ ├── issue52698.go │ │ │ ├── issue52915.go │ │ │ ├── issue53358.go │ │ │ ├── issue53650.go │ │ │ ├── issue53692.go │ │ │ ├── issue54280.go │ │ │ ├── issue54405.go │ │ │ ├── issue54424.go │ │ │ ├── issue54942.go │ │ │ ├── issue56351.go │ │ │ ├── issue56425.go │ │ │ ├── issue56665.go │ │ │ ├── issue57155.go │ │ │ ├── issue57160.go │ │ │ ├── issue57192.go │ │ │ ├── issue57352.go │ │ │ ├── issue57486.go │ │ │ ├── issue57500.go │ │ │ ├── issue57522.go │ │ │ ├── issue58611.go │ │ │ ├── issue58612.go │ │ │ ├── issue58671.go │ │ │ ├── issue58742.go │ │ │ ├── issue59190.go │ │ │ ├── issue59207.go │ │ │ ├── issue59209.go │ │ │ ├── issue59338a.go │ │ │ ├── issue59338b.go │ │ │ ├── issue59371.go │ │ │ ├── issue59639.go │ │ │ ├── issue59740.go │ │ │ ├── issue59848.go │ │ │ ├── issue59890.go │ │ │ ├── issue59953.go │ │ │ ├── issue59956.go │ │ │ ├── issue59958.go │ │ │ ├── issue60346.go │ │ │ ├── issue60377.go │ │ │ ├── issue60434.go │ │ │ ├── issue60460.go │ │ │ ├── issue60500.go │ │ │ ├── issue60542.go │ │ │ ├── issue60556.go │ │ │ ├── issue60562.go │ │ │ ├── issue60688.go │ │ │ ├── issue60747.go │ │ │ ├── issue60906.go │ │ │ ├── issue60933.go │ │ │ ├── issue60946.go │ │ │ ├── issue61486.go │ │ │ ├── issue61685.go │ │ │ ├── issue61822.go │ │ │ ├── issue61879.go │ │ │ ├── issue61903.go │ │ │ ├── issue62157.go │ │ │ ├── issue63563.go │ │ │ ├── issue64406.go │ │ │ ├── issue64704.go │ │ │ ├── issue65854.go │ │ │ └── issue6977.go │ │ │ └── spec │ │ │ ├── assignability.go │ │ │ ├── comparable.go │ │ │ ├── comparable1.19.go │ │ │ ├── comparisons.go │ │ │ ├── conversions.go │ │ │ ├── range.go │ │ │ └── range_int.go │ ├── unsafeheader │ │ ├── unsafeheader.go │ │ └── unsafeheader_test.go │ ├── xcoff │ │ ├── ar.go │ │ ├── ar_test.go │ │ ├── file.go │ │ ├── file_test.go │ │ ├── testdata │ │ │ ├── bigar-empty │ │ │ ├── bigar-ppc64 │ │ │ ├── gcc-ppc32-aix-dwarf2-exec │ │ │ ├── gcc-ppc64-aix-dwarf2-exec │ │ │ ├── hello.c │ │ │ ├── printbye.c │ │ │ └── printhello.c │ │ └── xcoff.go │ └── zstd │ │ ├── bits.go │ │ ├── block.go │ │ ├── fse.go │ │ ├── fse_test.go │ │ ├── fuzz_test.go │ │ ├── huff.go │ │ ├── literals.go │ │ ├── testdata │ │ ├── 1890a371.gettysburg.txt-100x.zst │ │ ├── README │ │ ├── f2a8e35c.helloworld-11000x.zst │ │ └── fcf30b99.zero-dictionary-ids.zst │ │ ├── window.go │ │ ├── window_test.go │ │ ├── xxhash.go │ │ ├── xxhash_test.go │ │ ├── zstd.go │ │ └── zstd_test.go ├── io │ ├── example_test.go │ ├── export_test.go │ ├── fs │ │ ├── example_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── fs.go │ │ ├── fs_test.go │ │ ├── glob.go │ │ ├── glob_test.go │ │ ├── readdir.go │ │ ├── readdir_test.go │ │ ├── readfile.go │ │ ├── readfile_test.go │ │ ├── stat.go │ │ ├── stat_test.go │ │ ├── sub.go │ │ ├── sub_test.go │ │ ├── walk.go │ │ └── walk_test.go │ ├── io.go │ ├── io_test.go │ ├── ioutil │ │ ├── example_test.go │ │ ├── ioutil.go │ │ ├── ioutil_test.go │ │ ├── tempfile.go │ │ ├── tempfile_test.go │ │ └── testdata │ │ │ └── hello │ ├── multi.go │ ├── multi_test.go │ ├── pipe.go │ └── pipe_test.go ├── iter │ ├── iter.go │ └── pull_test.go ├── log │ ├── example_test.go │ ├── internal │ │ └── internal.go │ ├── log.go │ ├── log_test.go │ ├── slog │ │ ├── attr.go │ │ ├── attr_test.go │ │ ├── doc.go │ │ ├── example_custom_levels_test.go │ │ ├── example_level_handler_test.go │ │ ├── example_log_level_test.go │ │ ├── example_logvaluer_group_test.go │ │ ├── example_logvaluer_secret_test.go │ │ ├── example_test.go │ │ ├── example_wrap_test.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── internal │ │ │ ├── benchmarks │ │ │ │ ├── benchmarks.go │ │ │ │ ├── benchmarks_test.go │ │ │ │ ├── handlers.go │ │ │ │ └── handlers_test.go │ │ │ ├── buffer │ │ │ │ ├── buffer.go │ │ │ │ └── buffer_test.go │ │ │ ├── ignorepc.go │ │ │ └── slogtest │ │ │ │ └── slogtest.go │ │ ├── json_handler.go │ │ ├── json_handler_test.go │ │ ├── level.go │ │ ├── level_test.go │ │ ├── logger.go │ │ ├── logger_test.go │ │ ├── record.go │ │ ├── record_test.go │ │ ├── slogtest_test.go │ │ ├── text_handler.go │ │ ├── text_handler_test.go │ │ ├── value.go │ │ ├── value_access_benchmark_test.go │ │ └── value_test.go │ └── syslog │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── syslog.go │ │ ├── syslog_test.go │ │ └── syslog_unix.go ├── make.bash ├── make.bat ├── make.rc ├── maps │ ├── example_test.go │ ├── maps.go │ ├── maps.s │ └── maps_test.go ├── math │ ├── abs.go │ ├── acos_s390x.s │ ├── acosh.go │ ├── acosh_s390x.s │ ├── all_test.go │ ├── arith_s390x.go │ ├── arith_s390x_test.go │ ├── asin.go │ ├── asin_s390x.s │ ├── asinh.go │ ├── asinh_s390x.s │ ├── atan.go │ ├── atan2.go │ ├── atan2_s390x.s │ ├── atan_s390x.s │ ├── atanh.go │ ├── atanh_s390x.s │ ├── big │ │ ├── accuracy_string.go │ │ ├── alias_test.go │ │ ├── arith.go │ │ ├── arith_386.s │ │ ├── arith_amd64.go │ │ ├── arith_amd64.s │ │ ├── arith_arm.s │ │ ├── arith_arm64.s │ │ ├── arith_decl.go │ │ ├── arith_decl_pure.go │ │ ├── arith_decl_s390x.go │ │ ├── arith_loong64.s │ │ ├── arith_mips64x.s │ │ ├── arith_mipsx.s │ │ ├── arith_ppc64x.s │ │ ├── arith_riscv64.s │ │ ├── arith_s390x.s │ │ ├── arith_s390x_test.go │ │ ├── arith_test.go │ │ ├── arith_wasm.s │ │ ├── bits_test.go │ │ ├── calibrate_test.go │ │ ├── decimal.go │ │ ├── decimal_test.go │ │ ├── doc.go │ │ ├── example_rat_test.go │ │ ├── example_test.go │ │ ├── float.go │ │ ├── float_test.go │ │ ├── floatconv.go │ │ ├── floatconv_test.go │ │ ├── floatexample_test.go │ │ ├── floatmarsh.go │ │ ├── floatmarsh_test.go │ │ ├── ftoa.go │ │ ├── gcd_test.go │ │ ├── hilbert_test.go │ │ ├── int.go │ │ ├── int_test.go │ │ ├── intconv.go │ │ ├── intconv_test.go │ │ ├── intmarsh.go │ │ ├── intmarsh_test.go │ │ ├── link_test.go │ │ ├── nat.go │ │ ├── nat_test.go │ │ ├── natconv.go │ │ ├── natconv_test.go │ │ ├── natdiv.go │ │ ├── prime.go │ │ ├── prime_test.go │ │ ├── rat.go │ │ ├── rat_test.go │ │ ├── ratconv.go │ │ ├── ratconv_test.go │ │ ├── ratmarsh.go │ │ ├── ratmarsh_test.go │ │ ├── roundingmode_string.go │ │ ├── sqrt.go │ │ └── sqrt_test.go │ ├── bits.go │ ├── bits │ │ ├── bits.go │ │ ├── bits_errors.go │ │ ├── bits_errors_bootstrap.go │ │ ├── bits_tables.go │ │ ├── bits_test.go │ │ ├── example_math_test.go │ │ ├── example_test.go │ │ ├── export_test.go │ │ ├── make_examples.go │ │ └── make_tables.go │ ├── cbrt.go │ ├── cbrt_s390x.s │ ├── cmplx │ │ ├── abs.go │ │ ├── asin.go │ │ ├── cmath_test.go │ │ ├── conj.go │ │ ├── example_test.go │ │ ├── exp.go │ │ ├── huge_test.go │ │ ├── isinf.go │ │ ├── isnan.go │ │ ├── log.go │ │ ├── phase.go │ │ ├── polar.go │ │ ├── pow.go │ │ ├── rect.go │ │ ├── sin.go │ │ ├── sqrt.go │ │ └── tan.go │ ├── const.go │ ├── const_test.go │ ├── copysign.go │ ├── cosh_s390x.s │ ├── dim.go │ ├── dim_amd64.s │ ├── dim_arm64.s │ ├── dim_asm.go │ ├── dim_noasm.go │ ├── dim_riscv64.s │ ├── dim_s390x.s │ ├── erf.go │ ├── erf_s390x.s │ ├── erfc_s390x.s │ ├── erfinv.go │ ├── example_test.go │ ├── exp.go │ ├── exp2_asm.go │ ├── exp2_noasm.go │ ├── exp_amd64.go │ ├── exp_amd64.s │ ├── exp_arm64.s │ ├── exp_asm.go │ ├── exp_noasm.go │ ├── exp_s390x.s │ ├── expm1.go │ ├── expm1_s390x.s │ ├── export_s390x_test.go │ ├── export_test.go │ ├── floor.go │ ├── floor_386.s │ ├── floor_amd64.s │ ├── floor_arm64.s │ ├── floor_asm.go │ ├── floor_noasm.go │ ├── floor_ppc64x.s │ ├── floor_s390x.s │ ├── floor_wasm.s │ ├── fma.go │ ├── frexp.go │ ├── gamma.go │ ├── huge_test.go │ ├── hypot.go │ ├── hypot_386.s │ ├── hypot_amd64.s │ ├── hypot_asm.go │ ├── hypot_noasm.go │ ├── j0.go │ ├── j1.go │ ├── jn.go │ ├── ldexp.go │ ├── lgamma.go │ ├── log.go │ ├── log10.go │ ├── log10_s390x.s │ ├── log1p.go │ ├── log1p_s390x.s │ ├── log_amd64.s │ ├── log_asm.go │ ├── log_s390x.s │ ├── log_stub.go │ ├── logb.go │ ├── mod.go │ ├── modf.go │ ├── modf_arm64.s │ ├── modf_asm.go │ ├── modf_noasm.go │ ├── modf_ppc64x.s │ ├── nextafter.go │ ├── pow.go │ ├── pow10.go │ ├── pow_s390x.s │ ├── rand │ │ ├── auto_test.go │ │ ├── default_test.go │ │ ├── example_test.go │ │ ├── exp.go │ │ ├── export_test.go │ │ ├── gen_cooked.go │ │ ├── normal.go │ │ ├── race_test.go │ │ ├── rand.go │ │ ├── rand_test.go │ │ ├── regress_test.go │ │ ├── rng.go │ │ ├── v2 │ │ │ ├── auto_test.go │ │ │ ├── chacha8.go │ │ │ ├── chacha8_test.go │ │ │ ├── example_test.go │ │ │ ├── exp.go │ │ │ ├── export_test.go │ │ │ ├── normal.go │ │ │ ├── pcg.go │ │ │ ├── pcg_test.go │ │ │ ├── race_test.go │ │ │ ├── rand.go │ │ │ ├── rand_test.go │ │ │ ├── regress_test.go │ │ │ └── zipf.go │ │ └── zipf.go │ ├── remainder.go │ ├── signbit.go │ ├── sin.go │ ├── sin_s390x.s │ ├── sincos.go │ ├── sinh.go │ ├── sinh_s390x.s │ ├── sqrt.go │ ├── stubs.go │ ├── stubs_s390x.s │ ├── tan.go │ ├── tan_s390x.s │ ├── tanh.go │ ├── tanh_s390x.s │ ├── trig_reduce.go │ └── unsafe.go ├── mime │ ├── encodedword.go │ ├── encodedword_test.go │ ├── example_test.go │ ├── grammar.go │ ├── mediatype.go │ ├── mediatype_test.go │ ├── multipart │ │ ├── example_test.go │ │ ├── formdata.go │ │ ├── formdata_test.go │ │ ├── multipart.go │ │ ├── multipart_test.go │ │ ├── readmimeheader.go │ │ ├── testdata │ │ │ └── nested-mime │ │ ├── writer.go │ │ └── writer_test.go │ ├── quotedprintable │ │ ├── example_test.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── writer.go │ │ └── writer_test.go │ ├── testdata │ │ ├── test.types │ │ ├── test.types.globs2 │ │ └── test.types.plan9 │ ├── type.go │ ├── type_dragonfly.go │ ├── type_freebsd.go │ ├── type_openbsd.go │ ├── type_plan9.go │ ├── type_test.go │ ├── type_unix.go │ ├── type_unix_test.go │ └── type_windows.go ├── net │ ├── addrselect.go │ ├── addrselect_test.go │ ├── cgo_aix.go │ ├── cgo_android.go │ ├── cgo_bsd.go │ ├── cgo_darwin.go │ ├── cgo_linux.go │ ├── cgo_netbsd.go │ ├── cgo_openbsd.go │ ├── cgo_resnew.go │ ├── cgo_resold.go │ ├── cgo_socknew.go │ ├── cgo_sockold.go │ ├── cgo_solaris.go │ ├── cgo_stub.go │ ├── cgo_unix.go │ ├── cgo_unix_cgo.go │ ├── cgo_unix_cgo_darwin.go │ ├── cgo_unix_cgo_res.go │ ├── cgo_unix_cgo_resn.go │ ├── cgo_unix_syscall.go │ ├── cgo_unix_test.go │ ├── conf.go │ ├── conf_test.go │ ├── conn_test.go │ ├── dial.go │ ├── dial_test.go │ ├── dial_unix_test.go │ ├── dnsclient.go │ ├── dnsclient_test.go │ ├── dnsclient_unix.go │ ├── dnsclient_unix_test.go │ ├── dnsconfig.go │ ├── dnsconfig_unix.go │ ├── dnsconfig_unix_test.go │ ├── dnsconfig_windows.go │ ├── dnsname_test.go │ ├── error_plan9.go │ ├── error_plan9_test.go │ ├── error_posix.go │ ├── error_posix_test.go │ ├── error_test.go │ ├── error_unix.go │ ├── error_unix_test.go │ ├── error_windows.go │ ├── error_windows_test.go │ ├── example_test.go │ ├── external_test.go │ ├── fd_fake.go │ ├── fd_js.go │ ├── fd_plan9.go │ ├── fd_posix.go │ ├── fd_unix.go │ ├── fd_wasip1.go │ ├── fd_windows.go │ ├── file.go │ ├── file_plan9.go │ ├── file_stub.go │ ├── file_test.go │ ├── file_unix.go │ ├── file_unix_test.go │ ├── file_wasip1.go │ ├── file_wasip1_test.go │ ├── file_windows.go │ ├── hook.go │ ├── hook_plan9.go │ ├── hook_unix.go │ ├── hook_windows.go │ ├── hosts.go │ ├── hosts_test.go │ ├── http │ │ ├── alpn_test.go │ │ ├── cgi │ │ │ ├── cgi_main.go │ │ │ ├── child.go │ │ │ ├── child_test.go │ │ │ ├── host.go │ │ │ ├── host_test.go │ │ │ └── integration_test.go │ │ ├── client.go │ │ ├── client_test.go │ │ ├── clientserver_test.go │ │ ├── clone.go │ │ ├── cookie.go │ │ ├── cookie_test.go │ │ ├── cookiejar │ │ │ ├── dummy_publicsuffix_test.go │ │ │ ├── example_test.go │ │ │ ├── jar.go │ │ │ ├── jar_test.go │ │ │ ├── punycode.go │ │ │ └── punycode_test.go │ │ ├── doc.go │ │ ├── example_filesystem_test.go │ │ ├── example_handle_test.go │ │ ├── example_test.go │ │ ├── export_test.go │ │ ├── fcgi │ │ │ ├── child.go │ │ │ ├── fcgi.go │ │ │ └── fcgi_test.go │ │ ├── filetransport.go │ │ ├── filetransport_test.go │ │ ├── fs.go │ │ ├── fs_test.go │ │ ├── h2_bundle.go │ │ ├── h2_error.go │ │ ├── h2_error_test.go │ │ ├── header.go │ │ ├── header_test.go │ │ ├── http.go │ │ ├── http_test.go │ │ ├── httptest │ │ │ ├── example_test.go │ │ │ ├── httptest.go │ │ │ ├── httptest_test.go │ │ │ ├── recorder.go │ │ │ ├── recorder_test.go │ │ │ ├── server.go │ │ │ └── server_test.go │ │ ├── httptrace │ │ │ ├── example_test.go │ │ │ ├── trace.go │ │ │ └── trace_test.go │ │ ├── httputil │ │ │ ├── dump.go │ │ │ ├── dump_test.go │ │ │ ├── example_test.go │ │ │ ├── httputil.go │ │ │ ├── persist.go │ │ │ ├── reverseproxy.go │ │ │ └── reverseproxy_test.go │ │ ├── internal │ │ │ ├── ascii │ │ │ │ ├── print.go │ │ │ │ └── print_test.go │ │ │ ├── chunked.go │ │ │ ├── chunked_test.go │ │ │ └── testcert │ │ │ │ └── testcert.go │ │ ├── jar.go │ │ ├── main_test.go │ │ ├── mapping.go │ │ ├── mapping_test.go │ │ ├── method.go │ │ ├── omithttp2.go │ │ ├── pattern.go │ │ ├── pattern_test.go │ │ ├── pprof │ │ │ ├── pprof.go │ │ │ ├── pprof_test.go │ │ │ └── testdata │ │ │ │ └── delta_mutex.go │ │ ├── proxy_test.go │ │ ├── range_test.go │ │ ├── readrequest_test.go │ │ ├── request.go │ │ ├── request_test.go │ │ ├── requestwrite_test.go │ │ ├── response.go │ │ ├── response_test.go │ │ ├── responsecontroller.go │ │ ├── responsecontroller_test.go │ │ ├── responsewrite_test.go │ │ ├── roundtrip.go │ │ ├── roundtrip_js.go │ │ ├── routing_index.go │ │ ├── routing_index_test.go │ │ ├── routing_tree.go │ │ ├── routing_tree_test.go │ │ ├── serve_test.go │ │ ├── servemux121.go │ │ ├── server.go │ │ ├── server_test.go │ │ ├── sniff.go │ │ ├── sniff_test.go │ │ ├── socks_bundle.go │ │ ├── status.go │ │ ├── testdata │ │ │ ├── file │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── transfer.go │ │ ├── transfer_test.go │ │ ├── transport.go │ │ ├── transport_default_other.go │ │ ├── transport_default_wasm.go │ │ ├── transport_internal_test.go │ │ ├── transport_test.go │ │ └── triv.go │ ├── interface.go │ ├── interface_aix.go │ ├── interface_bsd.go │ ├── interface_bsd_test.go │ ├── interface_bsdvar.go │ ├── interface_darwin.go │ ├── interface_freebsd.go │ ├── interface_linux.go │ ├── interface_linux_test.go │ ├── interface_plan9.go │ ├── interface_solaris.go │ ├── interface_stub.go │ ├── interface_test.go │ ├── interface_unix_test.go │ ├── interface_windows.go │ ├── internal │ │ └── socktest │ │ │ ├── main_test.go │ │ │ ├── main_unix_test.go │ │ │ ├── switch.go │ │ │ ├── switch_posix.go │ │ │ ├── switch_stub.go │ │ │ ├── switch_unix.go │ │ │ ├── switch_windows.go │ │ │ ├── sys_cloexec.go │ │ │ ├── sys_unix.go │ │ │ └── sys_windows.go │ ├── ip.go │ ├── ip_test.go │ ├── iprawsock.go │ ├── iprawsock_plan9.go │ ├── iprawsock_posix.go │ ├── iprawsock_test.go │ ├── ipsock.go │ ├── ipsock_plan9.go │ ├── ipsock_plan9_test.go │ ├── ipsock_posix.go │ ├── ipsock_test.go │ ├── listen_test.go │ ├── lookup.go │ ├── lookup_plan9.go │ ├── lookup_test.go │ ├── lookup_unix.go │ ├── lookup_windows.go │ ├── lookup_windows_test.go │ ├── mac.go │ ├── mac_test.go │ ├── mail │ │ ├── example_test.go │ │ ├── message.go │ │ └── message_test.go │ ├── main_cloexec_test.go │ ├── main_conf_test.go │ ├── main_noconf_test.go │ ├── main_plan9_test.go │ ├── main_posix_test.go │ ├── main_test.go │ ├── main_unix_test.go │ ├── main_wasm_test.go │ ├── main_windows_test.go │ ├── mockserver_test.go │ ├── mptcpsock_linux.go │ ├── mptcpsock_linux_test.go │ ├── mptcpsock_stub.go │ ├── net.go │ ├── net_fake.go │ ├── net_fake_test.go │ ├── net_test.go │ ├── net_windows_test.go │ ├── netcgo_off.go │ ├── netcgo_on.go │ ├── netgo_netcgo.go │ ├── netgo_off.go │ ├── netgo_on.go │ ├── netip │ │ ├── export_test.go │ │ ├── fuzz_test.go │ │ ├── inlining_test.go │ │ ├── leaf_alts.go │ │ ├── netip.go │ │ ├── netip_pkg_test.go │ │ ├── netip_test.go │ │ ├── slow_test.go │ │ ├── uint128.go │ │ └── uint128_test.go │ ├── nss.go │ ├── nss_test.go │ ├── packetconn_test.go │ ├── parse.go │ ├── parse_test.go │ ├── pipe.go │ ├── pipe_test.go │ ├── platform_test.go │ ├── port.go │ ├── port_test.go │ ├── port_unix.go │ ├── protoconn_test.go │ ├── rawconn.go │ ├── rawconn_stub_test.go │ ├── rawconn_test.go │ ├── rawconn_unix_test.go │ ├── rawconn_windows_test.go │ ├── resolverdialfunc_test.go │ ├── rlimit_js.go │ ├── rlimit_unix.go │ ├── rpc │ │ ├── client.go │ │ ├── client_test.go │ │ ├── debug.go │ │ ├── jsonrpc │ │ │ ├── all_test.go │ │ │ ├── client.go │ │ │ └── server.go │ │ ├── server.go │ │ └── server_test.go │ ├── sendfile_linux.go │ ├── sendfile_linux_test.go │ ├── sendfile_stub.go │ ├── sendfile_test.go │ ├── sendfile_unix_alt.go │ ├── sendfile_windows.go │ ├── server_test.go │ ├── smtp │ │ ├── auth.go │ │ ├── example_test.go │ │ ├── smtp.go │ │ └── smtp_test.go │ ├── sock_bsd.go │ ├── sock_cloexec.go │ ├── sock_linux.go │ ├── sock_linux_test.go │ ├── sock_plan9.go │ ├── sock_posix.go │ ├── sock_stub.go │ ├── sock_windows.go │ ├── sockaddr_posix.go │ ├── sockopt_aix.go │ ├── sockopt_bsd.go │ ├── sockopt_fake.go │ ├── sockopt_linux.go │ ├── sockopt_plan9.go │ ├── sockopt_posix.go │ ├── sockopt_solaris.go │ ├── sockopt_windows.go │ ├── sockoptip_bsdvar.go │ ├── sockoptip_linux.go │ ├── sockoptip_posix.go │ ├── sockoptip_stub.go │ ├── sockoptip_windows.go │ ├── splice_linux.go │ ├── splice_stub.go │ ├── splice_test.go │ ├── sys_cloexec.go │ ├── tcpsock.go │ ├── tcpsock_plan9.go │ ├── tcpsock_posix.go │ ├── tcpsock_test.go │ ├── tcpsock_unix_test.go │ ├── tcpsockopt_darwin.go │ ├── tcpsockopt_dragonfly.go │ ├── tcpsockopt_openbsd.go │ ├── tcpsockopt_plan9.go │ ├── tcpsockopt_posix.go │ ├── tcpsockopt_solaris.go │ ├── tcpsockopt_stub.go │ ├── tcpsockopt_unix.go │ ├── tcpsockopt_windows.go │ ├── testdata │ │ ├── aliases │ │ ├── case-hosts │ │ ├── domain-resolv.conf │ │ ├── empty-resolv.conf │ │ ├── freebsd-usevc-resolv.conf │ │ ├── hosts │ │ ├── igmp │ │ ├── igmp6 │ │ ├── invalid-ndots-resolv.conf │ │ ├── ipv4-hosts │ │ ├── ipv6-hosts │ │ ├── large-ndots-resolv.conf │ │ ├── linux-use-vc-resolv.conf │ │ ├── negative-ndots-resolv.conf │ │ ├── openbsd-resolv.conf │ │ ├── openbsd-tcp-resolv.conf │ │ ├── resolv.conf │ │ ├── search-resolv.conf │ │ ├── search-single-dot-resolv.conf │ │ ├── single-request-reopen-resolv.conf │ │ ├── single-request-resolv.conf │ │ └── singleline-hosts │ ├── textproto │ │ ├── header.go │ │ ├── header_test.go │ │ ├── pipeline.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── textproto.go │ │ ├── writer.go │ │ └── writer_test.go │ ├── timeout_test.go │ ├── udpsock.go │ ├── udpsock_plan9.go │ ├── udpsock_plan9_test.go │ ├── udpsock_posix.go │ ├── udpsock_test.go │ ├── unixsock.go │ ├── unixsock_linux_test.go │ ├── unixsock_plan9.go │ ├── unixsock_posix.go │ ├── unixsock_readmsg_cloexec.go │ ├── unixsock_readmsg_cmsg_cloexec.go │ ├── unixsock_readmsg_other.go │ ├── unixsock_readmsg_test.go │ ├── unixsock_test.go │ ├── unixsock_windows_test.go │ ├── url │ │ ├── example_test.go │ │ ├── url.go │ │ └── url_test.go │ ├── write_unix_test.go │ ├── writev_test.go │ └── writev_unix.go ├── os │ ├── dir.go │ ├── dir_darwin.go │ ├── dir_plan9.go │ ├── dir_unix.go │ ├── dir_windows.go │ ├── dirent_aix.go │ ├── dirent_dragonfly.go │ ├── dirent_freebsd.go │ ├── dirent_js.go │ ├── dirent_linux.go │ ├── dirent_netbsd.go │ ├── dirent_openbsd.go │ ├── dirent_solaris.go │ ├── dirent_wasip1.go │ ├── endian_big.go │ ├── endian_little.go │ ├── env.go │ ├── env_test.go │ ├── env_unix_test.go │ ├── error.go │ ├── error_errno.go │ ├── error_plan9.go │ ├── error_posix.go │ ├── error_test.go │ ├── error_unix_test.go │ ├── error_windows_test.go │ ├── example_test.go │ ├── exec.go │ ├── exec │ │ ├── bench_test.go │ │ ├── dot_test.go │ │ ├── env_test.go │ │ ├── example_test.go │ │ ├── exec.go │ │ ├── exec_linux_test.go │ │ ├── exec_other_test.go │ │ ├── exec_plan9.go │ │ ├── exec_posix_test.go │ │ ├── exec_test.go │ │ ├── exec_unix.go │ │ ├── exec_unix_test.go │ │ ├── exec_windows.go │ │ ├── exec_windows_test.go │ │ ├── internal │ │ │ └── fdtest │ │ │ │ ├── exists_plan9.go │ │ │ │ ├── exists_test.go │ │ │ │ ├── exists_unix.go │ │ │ │ └── exists_windows.go │ │ ├── internal_test.go │ │ ├── lp_linux_test.go │ │ ├── lp_plan9.go │ │ ├── lp_test.go │ │ ├── lp_unix.go │ │ ├── lp_unix_test.go │ │ ├── lp_wasm.go │ │ ├── lp_windows.go │ │ ├── lp_windows_test.go │ │ └── read3.go │ ├── exec_plan9.go │ ├── exec_posix.go │ ├── exec_unix.go │ ├── exec_unix_test.go │ ├── exec_windows.go │ ├── exec_windows_test.go │ ├── executable.go │ ├── executable_darwin.go │ ├── executable_dragonfly.go │ ├── executable_freebsd.go │ ├── executable_path.go │ ├── executable_plan9.go │ ├── executable_procfs.go │ ├── executable_solaris.go │ ├── executable_sysctl.go │ ├── executable_test.go │ ├── executable_wasm.go │ ├── executable_windows.go │ ├── export_linux_test.go │ ├── export_test.go │ ├── export_unix_test.go │ ├── export_windows_test.go │ ├── fifo_test.go │ ├── file.go │ ├── file_mutex_plan9.go │ ├── file_open_unix.go │ ├── file_open_wasip1.go │ ├── file_plan9.go │ ├── file_posix.go │ ├── file_unix.go │ ├── file_wasip1.go │ ├── file_windows.go │ ├── getwd.go │ ├── os_test.go │ ├── os_unix_test.go │ ├── os_windows_test.go │ ├── path.go │ ├── path_plan9.go │ ├── path_test.go │ ├── path_unix.go │ ├── path_windows.go │ ├── path_windows_test.go │ ├── pipe2_unix.go │ ├── pipe_test.go │ ├── pipe_unix.go │ ├── pipe_wasm.go │ ├── proc.go │ ├── rawconn.go │ ├── rawconn_test.go │ ├── read_test.go │ ├── readfrom_linux_test.go │ ├── removeall_at.go │ ├── removeall_noat.go │ ├── removeall_test.go │ ├── signal │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── example_unix_test.go │ │ ├── sig.s │ │ ├── signal.go │ │ ├── signal_cgo_test.go │ │ ├── signal_linux_test.go │ │ ├── signal_plan9.go │ │ ├── signal_plan9_test.go │ │ ├── signal_test.go │ │ ├── signal_unix.go │ │ └── signal_windows_test.go │ ├── stat.go │ ├── stat_aix.go │ ├── stat_darwin.go │ ├── stat_dragonfly.go │ ├── stat_freebsd.go │ ├── stat_js.go │ ├── stat_linux.go │ ├── stat_netbsd.go │ ├── stat_openbsd.go │ ├── stat_plan9.go │ ├── stat_solaris.go │ ├── stat_test.go │ ├── stat_unix.go │ ├── stat_wasip1.go │ ├── stat_windows.go │ ├── sticky_bsd.go │ ├── sticky_notbsd.go │ ├── sys.go │ ├── sys_aix.go │ ├── sys_bsd.go │ ├── sys_js.go │ ├── sys_linux.go │ ├── sys_plan9.go │ ├── sys_solaris.go │ ├── sys_unix.go │ ├── sys_wasip1.go │ ├── sys_windows.go │ ├── tempfile.go │ ├── tempfile_test.go │ ├── testdata │ │ ├── dirfs │ │ │ ├── a │ │ │ ├── b │ │ │ └── dir │ │ │ │ └── x │ │ ├── hello │ │ └── issue37161 │ │ │ ├── a │ │ │ ├── b │ │ │ └── c │ ├── timeout_test.go │ ├── types.go │ ├── types_plan9.go │ ├── types_unix.go │ ├── types_windows.go │ ├── user │ │ ├── cgo_listgroups_unix.go │ │ ├── cgo_lookup_cgo.go │ │ ├── cgo_lookup_syscall.go │ │ ├── cgo_lookup_unix.go │ │ ├── cgo_unix_test.go │ │ ├── cgo_user_test.go │ │ ├── getgrouplist_syscall.go │ │ ├── getgrouplist_unix.go │ │ ├── listgroups_stub.go │ │ ├── listgroups_unix.go │ │ ├── listgroups_unix_test.go │ │ ├── lookup.go │ │ ├── lookup_android.go │ │ ├── lookup_plan9.go │ │ ├── lookup_stubs.go │ │ ├── lookup_unix.go │ │ ├── lookup_unix_test.go │ │ ├── lookup_windows.go │ │ ├── user.go │ │ └── user_test.go │ ├── wait6_dragonfly.go │ ├── wait6_freebsd64.go │ ├── wait6_freebsd_386.go │ ├── wait6_freebsd_arm.go │ ├── wait6_netbsd.go │ ├── wait_unimp.go │ ├── wait_wait6.go │ ├── wait_waitid.go │ ├── writeto_linux_test.go │ ├── zero_copy_linux.go │ └── zero_copy_stub.go ├── path │ ├── example_test.go │ ├── filepath │ │ ├── example_test.go │ │ ├── example_unix_test.go │ │ ├── example_unix_walk_test.go │ │ ├── export_test.go │ │ ├── export_windows_test.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── path.go │ │ ├── path_nonwindows.go │ │ ├── path_plan9.go │ │ ├── path_test.go │ │ ├── path_unix.go │ │ ├── path_windows.go │ │ ├── path_windows_test.go │ │ ├── symlink.go │ │ ├── symlink_plan9.go │ │ ├── symlink_unix.go │ │ └── symlink_windows.go │ ├── match.go │ ├── match_test.go │ ├── path.go │ └── path_test.go ├── plugin │ ├── plugin.go │ ├── plugin_dlopen.go │ ├── plugin_stubs.go │ └── plugin_test.go ├── race.bash ├── race.bat ├── reflect │ ├── abi.go │ ├── abi_test.go │ ├── all_test.go │ ├── arena.go │ ├── asm_386.s │ ├── asm_amd64.s │ ├── asm_arm.s │ ├── asm_arm64.s │ ├── asm_loong64.s │ ├── asm_mips64x.s │ ├── asm_mipsx.s │ ├── asm_ppc64x.s │ ├── asm_riscv64.s │ ├── asm_s390x.s │ ├── asm_wasm.s │ ├── benchmark_test.go │ ├── deepequal.go │ ├── example_test.go │ ├── export_test.go │ ├── float32reg_generic.go │ ├── float32reg_ppc64x.s │ ├── float32reg_riscv64.s │ ├── internal │ │ ├── example1 │ │ │ └── example.go │ │ └── example2 │ │ │ └── example.go │ ├── makefunc.go │ ├── nih_test.go │ ├── set_test.go │ ├── stubs_ppc64x.go │ ├── stubs_riscv64.go │ ├── swapper.go │ ├── tostring_test.go │ ├── type.go │ ├── type_test.go │ ├── value.go │ ├── visiblefields.go │ └── visiblefields_test.go ├── regexp │ ├── all_test.go │ ├── backtrack.go │ ├── example_test.go │ ├── exec.go │ ├── exec2_test.go │ ├── exec_test.go │ ├── find_test.go │ ├── onepass.go │ ├── onepass_test.go │ ├── regexp.go │ ├── syntax │ │ ├── compile.go │ │ ├── doc.go │ │ ├── make_perl_groups.pl │ │ ├── op_string.go │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── perl_groups.go │ │ ├── prog.go │ │ ├── prog_test.go │ │ ├── regexp.go │ │ ├── simplify.go │ │ └── simplify_test.go │ └── testdata │ │ ├── README │ │ ├── basic.dat │ │ ├── nullsubexpr.dat │ │ ├── re2-exhaustive.txt.bz2 │ │ ├── re2-search.txt │ │ ├── repetition.dat │ │ └── testregex.c ├── run.bash ├── run.bat ├── run.rc ├── runtime │ ├── HACKING.md │ ├── Makefile │ ├── abi_test.go │ ├── alg.go │ ├── align_runtime_test.go │ ├── align_test.go │ ├── arena.go │ ├── arena_test.go │ ├── asan.go │ ├── asan │ │ └── asan.go │ ├── asan0.go │ ├── asan_amd64.s │ ├── asan_arm64.s │ ├── asan_loong64.s │ ├── asan_ppc64le.s │ ├── asan_riscv64.s │ ├── asm.s │ ├── asm_386.s │ ├── asm_amd64.h │ ├── asm_amd64.s │ ├── asm_arm.s │ ├── asm_arm64.s │ ├── asm_loong64.s │ ├── asm_mips64x.s │ ├── asm_mipsx.s │ ├── asm_ppc64x.h │ ├── asm_ppc64x.s │ ├── asm_riscv64.s │ ├── asm_s390x.s │ ├── asm_wasm.s │ ├── atomic_arm64.s │ ├── atomic_loong64.s │ ├── atomic_mips64x.s │ ├── atomic_mipsx.s │ ├── atomic_pointer.go │ ├── atomic_ppc64x.s │ ├── atomic_riscv64.s │ ├── auxv_none.go │ ├── callers_test.go │ ├── cgo.go │ ├── cgo │ │ ├── abi_amd64.h │ │ ├── abi_arm64.h │ │ ├── abi_loong64.h │ │ ├── abi_ppc64x.h │ │ ├── asm_386.s │ │ ├── asm_amd64.s │ │ ├── asm_arm.s │ │ ├── asm_arm64.s │ │ ├── asm_loong64.s │ │ ├── asm_mips64x.s │ │ ├── asm_mipsx.s │ │ ├── asm_ppc64x.s │ │ ├── asm_riscv64.s │ │ ├── asm_s390x.s │ │ ├── asm_wasm.s │ │ ├── callbacks.go │ │ ├── callbacks_aix.go │ │ ├── callbacks_traceback.go │ │ ├── cgo.go │ │ ├── dragonfly.go │ │ ├── freebsd.go │ │ ├── gcc_386.S │ │ ├── gcc_aix_ppc64.S │ │ ├── gcc_aix_ppc64.c │ │ ├── gcc_amd64.S │ │ ├── gcc_android.c │ │ ├── gcc_arm.S │ │ ├── gcc_arm64.S │ │ ├── gcc_context.c │ │ ├── gcc_darwin_amd64.c │ │ ├── gcc_darwin_arm64.c │ │ ├── gcc_dragonfly_amd64.c │ │ ├── gcc_fatalf.c │ │ ├── gcc_freebsd.c │ │ ├── gcc_freebsd_amd64.c │ │ ├── gcc_freebsd_sigaction.c │ │ ├── gcc_libinit.c │ │ ├── gcc_libinit_windows.c │ │ ├── gcc_linux.c │ │ ├── gcc_linux_amd64.c │ │ ├── gcc_linux_arm64.c │ │ ├── gcc_linux_ppc64x.S │ │ ├── gcc_linux_s390x.c │ │ ├── gcc_loong64.S │ │ ├── gcc_mips64x.S │ │ ├── gcc_mipsx.S │ │ ├── gcc_mmap.c │ │ ├── gcc_netbsd.c │ │ ├── gcc_openbsd.c │ │ ├── gcc_ppc64x.c │ │ ├── gcc_riscv64.S │ │ ├── gcc_s390x.S │ │ ├── gcc_setenv.c │ │ ├── gcc_sigaction.c │ │ ├── gcc_signal2_ios_arm64.c │ │ ├── gcc_signal_ios_arm64.c │ │ ├── gcc_signal_ios_nolldb.c │ │ ├── gcc_solaris_amd64.c │ │ ├── gcc_stack_darwin.c │ │ ├── gcc_stack_unix.c │ │ ├── gcc_stack_windows.c │ │ ├── gcc_traceback.c │ │ ├── gcc_util.c │ │ ├── gcc_windows_386.c │ │ ├── gcc_windows_amd64.c │ │ ├── gcc_windows_arm64.c │ │ ├── handle.go │ │ ├── handle_test.go │ │ ├── iscgo.go │ │ ├── libcgo.h │ │ ├── libcgo_unix.h │ │ ├── libcgo_windows.h │ │ ├── linux.go │ │ ├── linux_syscall.c │ │ ├── mmap.go │ │ ├── netbsd.go │ │ ├── openbsd.go │ │ ├── setenv.go │ │ ├── sigaction.go │ │ ├── signal_ios_arm64.go │ │ └── signal_ios_arm64.s │ ├── cgo_mmap.go │ ├── cgo_ppc64x.go │ ├── cgo_sigaction.go │ ├── cgocall.go │ ├── cgocallback.go │ ├── cgocheck.go │ ├── chan.go │ ├── chan_test.go │ ├── chanbarrier_test.go │ ├── checkptr.go │ ├── checkptr_test.go │ ├── closure_test.go │ ├── compiler.go │ ├── complex.go │ ├── complex_test.go │ ├── conv_wasm_test.go │ ├── coro.go │ ├── coverage │ │ ├── apis.go │ │ ├── dummy.s │ │ ├── emit.go │ │ ├── emitdata_test.go │ │ ├── hooks.go │ │ ├── testdata │ │ │ ├── harness.go │ │ │ ├── issue56006 │ │ │ │ ├── repro.go │ │ │ │ └── repro_test.go │ │ │ └── issue59563 │ │ │ │ ├── repro.go │ │ │ │ └── repro_test.go │ │ ├── testsupport.go │ │ └── ts_test.go │ ├── covercounter.go │ ├── covermeta.go │ ├── cpuflags.go │ ├── cpuflags_amd64.go │ ├── cpuflags_arm64.go │ ├── cpuprof.go │ ├── cputicks.go │ ├── crash_cgo_test.go │ ├── crash_test.go │ ├── crash_unix_test.go │ ├── create_file_nounix.go │ ├── create_file_unix.go │ ├── debug.go │ ├── debug │ │ ├── debug.s │ │ ├── garbage.go │ │ ├── garbage_test.go │ │ ├── heapdump_test.go │ │ ├── mod.go │ │ ├── mod_test.go │ │ ├── panic_test.go │ │ ├── stack.go │ │ ├── stack_test.go │ │ ├── stubs.go │ │ └── testdata │ │ │ └── fuzz │ │ │ └── FuzzParseBuildInfoRoundTrip │ │ │ ├── 5501685e611fa764 │ │ │ ├── 71634114e78567cf │ │ │ └── c73dce23c1f2494c │ ├── debug_test.go │ ├── debugcall.go │ ├── debuglog.go │ ├── debuglog_off.go │ ├── debuglog_on.go │ ├── debuglog_test.go │ ├── defer_test.go │ ├── defs1_linux.go │ ├── defs1_netbsd_386.go │ ├── defs1_netbsd_amd64.go │ ├── defs1_netbsd_arm.go │ ├── defs1_netbsd_arm64.go │ ├── defs1_solaris_amd64.go │ ├── defs2_linux.go │ ├── defs3_linux.go │ ├── defs_aix.go │ ├── defs_aix_ppc64.go │ ├── defs_arm_linux.go │ ├── defs_darwin.go │ ├── defs_darwin_amd64.go │ ├── defs_darwin_arm64.go │ ├── defs_dragonfly.go │ ├── defs_dragonfly_amd64.go │ ├── defs_freebsd.go │ ├── defs_freebsd_386.go │ ├── defs_freebsd_amd64.go │ ├── defs_freebsd_arm.go │ ├── defs_freebsd_arm64.go │ ├── defs_freebsd_riscv64.go │ ├── defs_illumos_amd64.go │ ├── defs_linux.go │ ├── defs_linux_386.go │ ├── defs_linux_amd64.go │ ├── defs_linux_arm.go │ ├── defs_linux_arm64.go │ ├── defs_linux_loong64.go │ ├── defs_linux_mips64x.go │ ├── defs_linux_mipsx.go │ ├── defs_linux_ppc64.go │ ├── defs_linux_ppc64le.go │ ├── defs_linux_riscv64.go │ ├── defs_linux_s390x.go │ ├── defs_netbsd.go │ ├── defs_netbsd_386.go │ ├── defs_netbsd_amd64.go │ ├── defs_netbsd_arm.go │ ├── defs_openbsd.go │ ├── defs_openbsd_386.go │ ├── defs_openbsd_amd64.go │ ├── defs_openbsd_arm.go │ ├── defs_openbsd_arm64.go │ ├── defs_openbsd_mips64.go │ ├── defs_openbsd_ppc64.go │ ├── defs_openbsd_riscv64.go │ ├── defs_plan9_386.go │ ├── defs_plan9_amd64.go │ ├── defs_plan9_arm.go │ ├── defs_solaris.go │ ├── defs_solaris_amd64.go │ ├── defs_windows.go │ ├── defs_windows_386.go │ ├── defs_windows_amd64.go │ ├── defs_windows_arm.go │ ├── defs_windows_arm64.go │ ├── duff_386.s │ ├── duff_amd64.s │ ├── duff_arm.s │ ├── duff_arm64.s │ ├── duff_loong64.s │ ├── duff_mips64x.s │ ├── duff_ppc64x.s │ ├── duff_riscv64.s │ ├── duff_s390x.s │ ├── ehooks_test.go │ ├── env_plan9.go │ ├── env_posix.go │ ├── env_test.go │ ├── error.go │ ├── example_test.go │ ├── exithook.go │ ├── export_aix_test.go │ ├── export_arm_test.go │ ├── export_darwin_test.go │ ├── export_debug_amd64_test.go │ ├── export_debug_arm64_test.go │ ├── export_debug_ppc64le_test.go │ ├── export_debug_test.go │ ├── export_debuglog_test.go │ ├── export_linux_test.go │ ├── export_mmap_test.go │ ├── export_pipe2_test.go │ ├── export_pipe_test.go │ ├── export_test.go │ ├── export_unix_test.go │ ├── export_windows_test.go │ ├── extern.go │ ├── fastlog2.go │ ├── fastlog2_test.go │ ├── fastlog2table.go │ ├── fds_nonunix.go │ ├── fds_test.go │ ├── fds_unix.go │ ├── float.go │ ├── float_test.go │ ├── funcdata.h │ ├── gc_test.go │ ├── gcinfo_test.go │ ├── go_tls.h │ ├── hash32.go │ ├── hash64.go │ ├── hash_test.go │ ├── heap_test.go │ ├── heapdump.go │ ├── histogram.go │ ├── histogram_test.go │ ├── iface.go │ ├── iface_test.go │ ├── import_test.go │ ├── importx_test.go │ ├── internal │ │ ├── atomic │ │ │ ├── atomic_386.go │ │ │ ├── atomic_386.s │ │ │ ├── atomic_amd64.go │ │ │ ├── atomic_amd64.s │ │ │ ├── atomic_andor_generic.go │ │ │ ├── atomic_andor_test.go │ │ │ ├── atomic_arm.go │ │ │ ├── atomic_arm.s │ │ │ ├── atomic_arm64.go │ │ │ ├── atomic_arm64.s │ │ │ ├── atomic_loong64.go │ │ │ ├── atomic_loong64.s │ │ │ ├── atomic_mips64x.go │ │ │ ├── atomic_mips64x.s │ │ │ ├── atomic_mipsx.go │ │ │ ├── atomic_mipsx.s │ │ │ ├── atomic_ppc64x.go │ │ │ ├── atomic_ppc64x.s │ │ │ ├── atomic_riscv64.go │ │ │ ├── atomic_riscv64.s │ │ │ ├── atomic_s390x.go │ │ │ ├── atomic_s390x.s │ │ │ ├── atomic_test.go │ │ │ ├── atomic_wasm.go │ │ │ ├── atomic_wasm.s │ │ │ ├── bench_test.go │ │ │ ├── doc.go │ │ │ ├── stubs.go │ │ │ ├── sys_linux_arm.s │ │ │ ├── sys_nonlinux_arm.s │ │ │ ├── types.go │ │ │ ├── types_64bit.go │ │ │ └── unaligned.go │ │ ├── math │ │ │ ├── math.go │ │ │ └── math_test.go │ │ ├── startlinetest │ │ │ ├── func_amd64.go │ │ │ └── func_amd64.s │ │ ├── sys │ │ │ ├── consts.go │ │ │ ├── consts_norace.go │ │ │ ├── consts_race.go │ │ │ ├── intrinsics.go │ │ │ ├── intrinsics_test.go │ │ │ ├── nih.go │ │ │ └── sys.go │ │ ├── syscall │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_loong64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_riscv64.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── defs_linux_386.go │ │ │ ├── defs_linux_amd64.go │ │ │ ├── defs_linux_arm.go │ │ │ ├── defs_linux_arm64.go │ │ │ ├── defs_linux_loong64.go │ │ │ ├── defs_linux_mips64x.go │ │ │ ├── defs_linux_mipsx.go │ │ │ ├── defs_linux_ppc64x.go │ │ │ ├── defs_linux_riscv64.go │ │ │ ├── defs_linux_s390x.go │ │ │ ├── syscall_linux.go │ │ │ └── syscall_linux_test.go │ │ └── wasitest │ │ │ ├── host_test.go │ │ │ ├── nonblock_test.go │ │ │ ├── tcpecho_test.go │ │ │ └── testdata │ │ │ ├── nonblock.go │ │ │ └── tcpecho.go │ ├── lfstack.go │ ├── lfstack_test.go │ ├── libfuzzer.go │ ├── libfuzzer_amd64.s │ ├── libfuzzer_arm64.s │ ├── lock_futex.go │ ├── lock_js.go │ ├── lock_sema.go │ ├── lock_wasip1.go │ ├── lockrank.go │ ├── lockrank_off.go │ ├── lockrank_on.go │ ├── lockrank_test.go │ ├── malloc.go │ ├── malloc_test.go │ ├── map.go │ ├── map_benchmark_test.go │ ├── map_fast32.go │ ├── map_fast64.go │ ├── map_faststr.go │ ├── map_test.go │ ├── mbarrier.go │ ├── mbitmap.go │ ├── mbitmap_allocheaders.go │ ├── mbitmap_noallocheaders.go │ ├── mcache.go │ ├── mcentral.go │ ├── mcheckmark.go │ ├── mem.go │ ├── mem_aix.go │ ├── mem_bsd.go │ ├── mem_darwin.go │ ├── mem_js.go │ ├── mem_linux.go │ ├── mem_plan9.go │ ├── mem_sbrk.go │ ├── mem_wasip1.go │ ├── mem_wasm.go │ ├── mem_windows.go │ ├── memclr_386.s │ ├── memclr_amd64.s │ ├── memclr_arm.s │ ├── memclr_arm64.s │ ├── memclr_loong64.s │ ├── memclr_mips64x.s │ ├── memclr_mipsx.s │ ├── memclr_plan9_386.s │ ├── memclr_plan9_amd64.s │ ├── memclr_ppc64x.s │ ├── memclr_riscv64.s │ ├── memclr_s390x.s │ ├── memclr_wasm.s │ ├── memmove_386.s │ ├── memmove_amd64.s │ ├── memmove_arm.s │ ├── memmove_arm64.s │ ├── memmove_linux_amd64_test.go │ ├── memmove_loong64.s │ ├── memmove_mips64x.s │ ├── memmove_mipsx.s │ ├── memmove_plan9_386.s │ ├── memmove_plan9_amd64.s │ ├── memmove_ppc64x.s │ ├── memmove_riscv64.s │ ├── memmove_s390x.s │ ├── memmove_test.go │ ├── memmove_wasm.s │ ├── metrics.go │ ├── metrics │ │ ├── description.go │ │ ├── description_test.go │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── histogram.go │ │ ├── sample.go │ │ └── value.go │ ├── metrics_test.go │ ├── mfinal.go │ ├── mfinal_test.go │ ├── mfixalloc.go │ ├── mgc.go │ ├── mgclimit.go │ ├── mgclimit_test.go │ ├── mgcmark.go │ ├── mgcpacer.go │ ├── mgcpacer_test.go │ ├── mgcscavenge.go │ ├── mgcscavenge_test.go │ ├── mgcstack.go │ ├── mgcsweep.go │ ├── mgcwork.go │ ├── mheap.go │ ├── minmax.go │ ├── minmax_test.go │ ├── mkduff.go │ ├── mkfastlog2table.go │ ├── mklockrank.go │ ├── mkpreempt.go │ ├── mksizeclasses.go │ ├── mmap.go │ ├── mpagealloc.go │ ├── mpagealloc_32bit.go │ ├── mpagealloc_64bit.go │ ├── mpagealloc_test.go │ ├── mpagecache.go │ ├── mpagecache_test.go │ ├── mpallocbits.go │ ├── mpallocbits_test.go │ ├── mprof.go │ ├── mranges.go │ ├── mranges_test.go │ ├── msan.go │ ├── msan │ │ └── msan.go │ ├── msan0.go │ ├── msan_amd64.s │ ├── msan_arm64.s │ ├── msan_loong64.s │ ├── msize_allocheaders.go │ ├── msize_noallocheaders.go │ ├── mspanset.go │ ├── mstats.go │ ├── mwbbuf.go │ ├── nbpipe_pipe.go │ ├── nbpipe_pipe2.go │ ├── nbpipe_pipe_test.go │ ├── nbpipe_test.go │ ├── net_plan9.go │ ├── netpoll.go │ ├── netpoll_aix.go │ ├── netpoll_epoll.go │ ├── netpoll_fake.go │ ├── netpoll_kqueue.go │ ├── netpoll_os_test.go │ ├── netpoll_solaris.go │ ├── netpoll_stub.go │ ├── netpoll_wasip1.go │ ├── netpoll_windows.go │ ├── nonwindows_stub.go │ ├── norace_linux_test.go │ ├── norace_test.go │ ├── numcpu_freebsd_test.go │ ├── os2_aix.go │ ├── os2_freebsd.go │ ├── os2_openbsd.go │ ├── os2_plan9.go │ ├── os2_solaris.go │ ├── os3_plan9.go │ ├── os3_solaris.go │ ├── os_aix.go │ ├── os_android.go │ ├── os_darwin.go │ ├── os_darwin_arm64.go │ ├── os_dragonfly.go │ ├── os_freebsd.go │ ├── os_freebsd2.go │ ├── os_freebsd_amd64.go │ ├── os_freebsd_arm.go │ ├── os_freebsd_arm64.go │ ├── os_freebsd_noauxv.go │ ├── os_freebsd_riscv64.go │ ├── os_illumos.go │ ├── os_js.go │ ├── os_linux.go │ ├── os_linux_arm.go │ ├── os_linux_arm64.go │ ├── os_linux_be64.go │ ├── os_linux_generic.go │ ├── os_linux_loong64.go │ ├── os_linux_mips64x.go │ ├── os_linux_mipsx.go │ ├── os_linux_noauxv.go │ ├── os_linux_novdso.go │ ├── os_linux_ppc64x.go │ ├── os_linux_riscv64.go │ ├── os_linux_s390x.go │ ├── os_linux_x86.go │ ├── os_netbsd.go │ ├── os_netbsd_386.go │ ├── os_netbsd_amd64.go │ ├── os_netbsd_arm.go │ ├── os_netbsd_arm64.go │ ├── os_nonopenbsd.go │ ├── os_only_solaris.go │ ├── os_openbsd.go │ ├── os_openbsd_arm.go │ ├── os_openbsd_arm64.go │ ├── os_openbsd_libc.go │ ├── os_openbsd_mips64.go │ ├── os_openbsd_syscall.go │ ├── os_openbsd_syscall1.go │ ├── os_openbsd_syscall2.go │ ├── os_plan9.go │ ├── os_plan9_arm.go │ ├── os_solaris.go │ ├── os_unix.go │ ├── os_unix_nonlinux.go │ ├── os_wasip1.go │ ├── os_wasm.go │ ├── os_windows.go │ ├── os_windows_arm.go │ ├── os_windows_arm64.go │ ├── pagetrace_off.go │ ├── pagetrace_on.go │ ├── panic.go │ ├── panic32.go │ ├── panic_test.go │ ├── panicnil_test.go │ ├── pinner.go │ ├── pinner_test.go │ ├── plugin.go │ ├── pprof │ │ ├── defs_darwin.go │ │ ├── defs_darwin_amd64.go │ │ ├── defs_darwin_arm64.go │ │ ├── elf.go │ │ ├── label.go │ │ ├── label_test.go │ │ ├── map.go │ │ ├── mprof_test.go │ │ ├── pe.go │ │ ├── pprof.go │ │ ├── pprof_norusage.go │ │ ├── pprof_rusage.go │ │ ├── pprof_test.go │ │ ├── pprof_windows.go │ │ ├── proto.go │ │ ├── proto_darwin.go │ │ ├── proto_other.go │ │ ├── proto_test.go │ │ ├── proto_windows.go │ │ ├── protobuf.go │ │ ├── protomem.go │ │ ├── protomem_test.go │ │ ├── runtime.go │ │ ├── runtime_test.go │ │ ├── rusage_test.go │ │ ├── testdata │ │ │ ├── README │ │ │ ├── mappingtest │ │ │ │ └── main.go │ │ │ ├── test32 │ │ │ ├── test32be │ │ │ ├── test64 │ │ │ └── test64be │ │ ├── vminfo_darwin.go │ │ └── vminfo_darwin_test.go │ ├── preempt.go │ ├── preempt_386.s │ ├── preempt_amd64.s │ ├── preempt_arm.s │ ├── preempt_arm64.s │ ├── preempt_loong64.s │ ├── preempt_mips64x.s │ ├── preempt_mipsx.s │ ├── preempt_nonwindows.go │ ├── preempt_ppc64x.s │ ├── preempt_riscv64.s │ ├── preempt_s390x.s │ ├── preempt_wasm.s │ ├── print.go │ ├── proc.go │ ├── proc_runtime_test.go │ ├── proc_test.go │ ├── profbuf.go │ ├── profbuf_test.go │ ├── proflabel.go │ ├── race.go │ ├── race │ │ ├── README │ │ ├── doc.go │ │ ├── internal │ │ │ ├── amd64v1 │ │ │ │ ├── doc.go │ │ │ │ ├── race_darwin.syso │ │ │ │ ├── race_freebsd.syso │ │ │ │ ├── race_linux.syso │ │ │ │ ├── race_netbsd.syso │ │ │ │ ├── race_openbsd.syso │ │ │ │ └── race_windows.syso │ │ │ └── amd64v3 │ │ │ │ ├── doc.go │ │ │ │ └── race_linux.syso │ │ ├── mkcgo.sh │ │ ├── output_test.go │ │ ├── race.go │ │ ├── race_darwin_amd64.go │ │ ├── race_darwin_arm64.go │ │ ├── race_darwin_arm64.syso │ │ ├── race_linux_arm64.syso │ │ ├── race_linux_ppc64le.syso │ │ ├── race_linux_s390x.syso │ │ ├── race_linux_test.go │ │ ├── race_test.go │ │ ├── race_unix_test.go │ │ ├── race_v1_amd64.go │ │ ├── race_v3_amd64.go │ │ ├── race_windows_test.go │ │ ├── sched_test.go │ │ ├── syso_test.go │ │ ├── testdata │ │ │ ├── atomic_test.go │ │ │ ├── cgo_test.go │ │ │ ├── cgo_test_main.go │ │ │ ├── chan_test.go │ │ │ ├── comp_test.go │ │ │ ├── finalizer_test.go │ │ │ ├── io_test.go │ │ │ ├── issue12225_test.go │ │ │ ├── issue12664_test.go │ │ │ ├── issue13264_test.go │ │ │ ├── map_test.go │ │ │ ├── mop_test.go │ │ │ ├── mutex_test.go │ │ │ ├── pool_test.go │ │ │ ├── reflect_test.go │ │ │ ├── regression_test.go │ │ │ ├── rwmutex_test.go │ │ │ ├── select_test.go │ │ │ ├── slice_test.go │ │ │ ├── sync_test.go │ │ │ └── waitgroup_test.go │ │ └── timer_test.go │ ├── race0.go │ ├── race_amd64.s │ ├── race_arm64.s │ ├── race_ppc64le.s │ ├── race_s390x.s │ ├── rand.go │ ├── rand_test.go │ ├── rdebug.go │ ├── retry.go │ ├── rt0_aix_ppc64.s │ ├── rt0_android_386.s │ ├── rt0_android_amd64.s │ ├── rt0_android_arm.s │ ├── rt0_android_arm64.s │ ├── rt0_darwin_amd64.s │ ├── rt0_darwin_arm64.s │ ├── rt0_dragonfly_amd64.s │ ├── rt0_freebsd_386.s │ ├── rt0_freebsd_amd64.s │ ├── rt0_freebsd_arm.s │ ├── rt0_freebsd_arm64.s │ ├── rt0_freebsd_riscv64.s │ ├── rt0_illumos_amd64.s │ ├── rt0_ios_amd64.s │ ├── rt0_ios_arm64.s │ ├── rt0_js_wasm.s │ ├── rt0_linux_386.s │ ├── rt0_linux_amd64.s │ ├── rt0_linux_arm.s │ ├── rt0_linux_arm64.s │ ├── rt0_linux_loong64.s │ ├── rt0_linux_mips64x.s │ ├── rt0_linux_mipsx.s │ ├── rt0_linux_ppc64.s │ ├── rt0_linux_ppc64le.s │ ├── rt0_linux_riscv64.s │ ├── rt0_linux_s390x.s │ ├── rt0_netbsd_386.s │ ├── rt0_netbsd_amd64.s │ ├── rt0_netbsd_arm.s │ ├── rt0_netbsd_arm64.s │ ├── rt0_openbsd_386.s │ ├── rt0_openbsd_amd64.s │ ├── rt0_openbsd_arm.s │ ├── rt0_openbsd_arm64.s │ ├── rt0_openbsd_mips64.s │ ├── rt0_openbsd_ppc64.s │ ├── rt0_openbsd_riscv64.s │ ├── rt0_plan9_386.s │ ├── rt0_plan9_amd64.s │ ├── rt0_plan9_arm.s │ ├── rt0_solaris_amd64.s │ ├── rt0_wasip1_wasm.s │ ├── rt0_windows_386.s │ ├── rt0_windows_amd64.s │ ├── rt0_windows_arm.s │ ├── rt0_windows_arm64.s │ ├── runtime-gdb.py │ ├── runtime-gdb_test.go │ ├── runtime-gdb_unix_test.go │ ├── runtime-lldb_test.go │ ├── runtime-seh_windows_test.go │ ├── runtime.go │ ├── runtime1.go │ ├── runtime2.go │ ├── runtime_boring.go │ ├── runtime_linux_test.go │ ├── runtime_mmap_test.go │ ├── runtime_test.go │ ├── runtime_unix_test.go │ ├── rwmutex.go │ ├── rwmutex_test.go │ ├── security_aix.go │ ├── security_issetugid.go │ ├── security_linux.go │ ├── security_nonunix.go │ ├── security_test.go │ ├── security_unix.go │ ├── select.go │ ├── sema.go │ ├── sema_test.go │ ├── semasleep_test.go │ ├── sigaction.go │ ├── signal_386.go │ ├── signal_aix_ppc64.go │ ├── signal_amd64.go │ ├── signal_arm.go │ ├── signal_arm64.go │ ├── signal_darwin.go │ ├── signal_darwin_amd64.go │ ├── signal_darwin_arm64.go │ ├── signal_dragonfly.go │ ├── signal_dragonfly_amd64.go │ ├── signal_freebsd.go │ ├── signal_freebsd_386.go │ ├── signal_freebsd_amd64.go │ ├── signal_freebsd_arm.go │ ├── signal_freebsd_arm64.go │ ├── signal_freebsd_riscv64.go │ ├── signal_linux_386.go │ ├── signal_linux_amd64.go │ ├── signal_linux_arm.go │ ├── signal_linux_arm64.go │ ├── signal_linux_loong64.go │ ├── signal_linux_mips64x.go │ ├── signal_linux_mipsx.go │ ├── signal_linux_ppc64x.go │ ├── signal_linux_riscv64.go │ ├── signal_linux_s390x.go │ ├── signal_loong64.go │ ├── signal_mips64x.go │ ├── signal_mipsx.go │ ├── signal_netbsd.go │ ├── signal_netbsd_386.go │ ├── signal_netbsd_amd64.go │ ├── signal_netbsd_arm.go │ ├── signal_netbsd_arm64.go │ ├── signal_openbsd.go │ ├── signal_openbsd_386.go │ ├── signal_openbsd_amd64.go │ ├── signal_openbsd_arm.go │ ├── signal_openbsd_arm64.go │ ├── signal_openbsd_mips64.go │ ├── signal_openbsd_ppc64.go │ ├── signal_openbsd_riscv64.go │ ├── signal_plan9.go │ ├── signal_ppc64x.go │ ├── signal_riscv64.go │ ├── signal_solaris.go │ ├── signal_solaris_amd64.go │ ├── signal_unix.go │ ├── signal_windows.go │ ├── signal_windows_test.go │ ├── sigqueue.go │ ├── sigqueue_note.go │ ├── sigqueue_plan9.go │ ├── sigtab_aix.go │ ├── sigtab_linux_generic.go │ ├── sigtab_linux_mipsx.go │ ├── sizeclasses.go │ ├── sizeof_test.go │ ├── slice.go │ ├── slice_test.go │ ├── softfloat64.go │ ├── softfloat64_test.go │ ├── stack.go │ ├── stack_test.go │ ├── start_line_amd64_test.go │ ├── start_line_test.go │ ├── stkframe.go │ ├── string.go │ ├── string_test.go │ ├── stubs.go │ ├── stubs2.go │ ├── stubs3.go │ ├── stubs_386.go │ ├── stubs_amd64.go │ ├── stubs_arm.go │ ├── stubs_arm64.go │ ├── stubs_linux.go │ ├── stubs_loong64.go │ ├── stubs_mips64x.go │ ├── stubs_mipsx.go │ ├── stubs_nonlinux.go │ ├── stubs_ppc64.go │ ├── stubs_ppc64x.go │ ├── stubs_riscv64.go │ ├── stubs_s390x.go │ ├── symtab.go │ ├── symtab_test.go │ ├── symtabinl.go │ ├── symtabinl_test.go │ ├── sys_aix_ppc64.s │ ├── sys_arm.go │ ├── sys_arm64.go │ ├── sys_darwin.go │ ├── sys_darwin_amd64.s │ ├── sys_darwin_arm64.go │ ├── sys_darwin_arm64.s │ ├── sys_dragonfly_amd64.s │ ├── sys_freebsd_386.s │ ├── sys_freebsd_amd64.s │ ├── sys_freebsd_arm.s │ ├── sys_freebsd_arm64.s │ ├── sys_freebsd_riscv64.s │ ├── sys_libc.go │ ├── sys_linux_386.s │ ├── sys_linux_amd64.s │ ├── sys_linux_arm.s │ ├── sys_linux_arm64.s │ ├── sys_linux_loong64.s │ ├── sys_linux_mips64x.s │ ├── sys_linux_mipsx.s │ ├── sys_linux_ppc64x.s │ ├── sys_linux_riscv64.s │ ├── sys_linux_s390x.s │ ├── sys_loong64.go │ ├── sys_mips64x.go │ ├── sys_mipsx.go │ ├── sys_netbsd_386.s │ ├── sys_netbsd_amd64.s │ ├── sys_netbsd_arm.s │ ├── sys_netbsd_arm64.s │ ├── sys_nonppc64x.go │ ├── sys_openbsd.go │ ├── sys_openbsd1.go │ ├── sys_openbsd2.go │ ├── sys_openbsd3.go │ ├── sys_openbsd_386.s │ ├── sys_openbsd_amd64.s │ ├── sys_openbsd_arm.s │ ├── sys_openbsd_arm64.s │ ├── sys_openbsd_mips64.s │ ├── sys_openbsd_ppc64.s │ ├── sys_openbsd_riscv64.s │ ├── sys_plan9_386.s │ ├── sys_plan9_amd64.s │ ├── sys_plan9_arm.s │ ├── sys_ppc64x.go │ ├── sys_riscv64.go │ ├── sys_s390x.go │ ├── sys_solaris_amd64.s │ ├── sys_wasm.go │ ├── sys_wasm.s │ ├── sys_windows_386.s │ ├── sys_windows_amd64.s │ ├── sys_windows_arm.s │ ├── sys_windows_arm64.s │ ├── sys_x86.go │ ├── syscall2_solaris.go │ ├── syscall_aix.go │ ├── syscall_solaris.go │ ├── syscall_unix_test.go │ ├── syscall_windows.go │ ├── syscall_windows_test.go │ ├── tagptr.go │ ├── tagptr_32bit.go │ ├── tagptr_64bit.go │ ├── test_amd64.go │ ├── test_amd64.s │ ├── test_stubs.go │ ├── testdata │ │ ├── testexithooks │ │ │ └── testexithooks.go │ │ ├── testfaketime │ │ │ └── faketime.go │ │ ├── testfds │ │ │ └── main.go │ │ ├── testprog │ │ │ ├── abort.go │ │ │ ├── badtraceback.go │ │ │ ├── checkptr.go │ │ │ ├── crash.go │ │ │ ├── crashdump.go │ │ │ ├── deadlock.go │ │ │ ├── framepointer.go │ │ │ ├── framepointer_amd64.s │ │ │ ├── framepointer_arm64.s │ │ │ ├── gc.go │ │ │ ├── lockosthread.go │ │ │ ├── main.go │ │ │ ├── map.go │ │ │ ├── memprof.go │ │ │ ├── misc.go │ │ │ ├── numcpu_freebsd.go │ │ │ ├── panicprint.go │ │ │ ├── panicrace.go │ │ │ ├── preempt.go │ │ │ ├── segv.go │ │ │ ├── segv_linux.go │ │ │ ├── signal.go │ │ │ ├── sleep.go │ │ │ ├── stringconcat.go │ │ │ ├── syscall_windows.go │ │ │ ├── syscalls.go │ │ │ ├── syscalls_linux.go │ │ │ ├── syscalls_none.go │ │ │ ├── timeprof.go │ │ │ ├── traceback_ancestors.go │ │ │ ├── unsafe.go │ │ │ └── vdso.go │ │ ├── testprogcgo │ │ │ ├── aprof.go │ │ │ ├── aprof_c.c │ │ │ ├── bigstack1_windows.c │ │ │ ├── bigstack_windows.c │ │ │ ├── bigstack_windows.go │ │ │ ├── bindm.c │ │ │ ├── bindm.go │ │ │ ├── callback.go │ │ │ ├── catchpanic.go │ │ │ ├── cgo.go │ │ │ ├── cgonocallback.c │ │ │ ├── cgonocallback.go │ │ │ ├── cgonoescape.go │ │ │ ├── crash.go │ │ │ ├── deadlock.go │ │ │ ├── destructor.c │ │ │ ├── destructor.go │ │ │ ├── dll_windows.go │ │ │ ├── dropm.go │ │ │ ├── dropm_stub.go │ │ │ ├── eintr.go │ │ │ ├── exec.go │ │ │ ├── gprof.go │ │ │ ├── gprof_c.c │ │ │ ├── issue29707.go │ │ │ ├── lockosthread.c │ │ │ ├── lockosthread.go │ │ │ ├── main.go │ │ │ ├── needmdeadlock.go │ │ │ ├── numgoroutine.go │ │ │ ├── panic.c │ │ │ ├── panic.go │ │ │ ├── pprof.go │ │ │ ├── pprof_callback.go │ │ │ ├── raceprof.go │ │ │ ├── racesig.go │ │ │ ├── segv.go │ │ │ ├── segv_linux.go │ │ │ ├── sigfwd.go │ │ │ ├── sigpanic.go │ │ │ ├── sigstack.go │ │ │ ├── sigthrow.go │ │ │ ├── stack_windows.go │ │ │ ├── stackswitch.c │ │ │ ├── stackswitch.go │ │ │ ├── threadpanic.go │ │ │ ├── threadpanic_unix.c │ │ │ ├── threadpanic_windows.c │ │ │ ├── threadpprof.go │ │ │ ├── threadprof.go │ │ │ ├── trace.go │ │ │ ├── trace_unix.c │ │ │ ├── trace_windows.c │ │ │ ├── traceback.go │ │ │ ├── traceback_c.c │ │ │ ├── tracebackctxt.go │ │ │ ├── tracebackctxt_c.c │ │ │ └── windows │ │ │ │ └── win.go │ │ ├── testprognet │ │ │ ├── main.go │ │ │ ├── net.go │ │ │ ├── signal.go │ │ │ ├── signalexec.go │ │ │ └── waiters.go │ │ ├── testsuid │ │ │ └── main.go │ │ ├── testwinlib │ │ │ ├── main.c │ │ │ └── main.go │ │ ├── testwinlibsignal │ │ │ ├── dummy.go │ │ │ └── main.c │ │ ├── testwinlibthrow │ │ │ ├── main.go │ │ │ └── veh.c │ │ ├── testwinsignal │ │ │ └── main.go │ │ └── testwintls │ │ │ ├── main.c │ │ │ └── main.go │ ├── textflag.h │ ├── time.go │ ├── time_fake.go │ ├── time_linux_amd64.s │ ├── time_nofake.go │ ├── time_test.go │ ├── time_windows.h │ ├── time_windows_386.s │ ├── time_windows_amd64.s │ ├── time_windows_arm.s │ ├── time_windows_arm64.s │ ├── timeasm.go │ ├── timestub.go │ ├── timestub2.go │ ├── tls_arm.s │ ├── tls_arm64.h │ ├── tls_arm64.s │ ├── tls_loong64.s │ ├── tls_mips64x.s │ ├── tls_mipsx.s │ ├── tls_ppc64x.s │ ├── tls_riscv64.s │ ├── tls_s390x.s │ ├── tls_stub.go │ ├── tls_windows_amd64.go │ ├── trace.go │ ├── trace │ │ ├── annotation.go │ │ ├── annotation_test.go │ │ ├── example_test.go │ │ ├── trace.go │ │ ├── trace_stack_test.go │ │ └── trace_test.go │ ├── trace2.go │ ├── trace2buf.go │ ├── trace2cpu.go │ ├── trace2event.go │ ├── trace2map.go │ ├── trace2region.go │ ├── trace2runtime.go │ ├── trace2stack.go │ ├── trace2status.go │ ├── trace2string.go │ ├── trace2time.go │ ├── trace_cgo_test.go │ ├── traceback.go │ ├── traceback_test.go │ ├── tracebackx_test.go │ ├── type.go │ ├── typekind.go │ ├── unsafe.go │ ├── unsafepoint_test.go │ ├── utf8.go │ ├── vdso_elf32.go │ ├── vdso_elf64.go │ ├── vdso_freebsd.go │ ├── vdso_freebsd_arm.go │ ├── vdso_freebsd_arm64.go │ ├── vdso_freebsd_riscv64.go │ ├── vdso_freebsd_x86.go │ ├── vdso_in_none.go │ ├── vdso_linux.go │ ├── vdso_linux_386.go │ ├── vdso_linux_amd64.go │ ├── vdso_linux_arm.go │ ├── vdso_linux_arm64.go │ ├── vdso_linux_loong64.go │ ├── vdso_linux_mips64x.go │ ├── vdso_linux_ppc64x.go │ ├── vdso_linux_riscv64.go │ ├── vdso_linux_s390x.go │ ├── vdso_test.go │ ├── vlop_386.s │ ├── vlop_arm.s │ ├── vlop_arm_test.go │ ├── vlrt.go │ ├── wincallback.go │ ├── write_err.go │ ├── write_err_android.go │ ├── zcallback_windows.go │ ├── zcallback_windows.s │ ├── zcallback_windows_arm.s │ └── zcallback_windows_arm64.s ├── slices │ ├── example_test.go │ ├── slices.go │ ├── slices_test.go │ ├── sort.go │ ├── sort_benchmark_test.go │ ├── sort_test.go │ ├── zsortanyfunc.go │ └── zsortordered.go ├── sort │ ├── example_interface_test.go │ ├── example_keys_test.go │ ├── example_multi_test.go │ ├── example_search_test.go │ ├── example_test.go │ ├── example_wrapper_test.go │ ├── export_test.go │ ├── gen_sort_variants.go │ ├── search.go │ ├── search_test.go │ ├── slice.go │ ├── sort.go │ ├── sort_impl_120.go │ ├── sort_impl_go121.go │ ├── sort_slices_benchmark_test.go │ ├── sort_test.go │ ├── zsortfunc.go │ └── zsortinterface.go ├── strconv │ ├── atob.go │ ├── atob_test.go │ ├── atoc.go │ ├── atoc_test.go │ ├── atof.go │ ├── atof_test.go │ ├── atoi.go │ ├── atoi_test.go │ ├── bytealg.go │ ├── bytealg_bootstrap.go │ ├── ctoa.go │ ├── ctoa_test.go │ ├── decimal.go │ ├── decimal_test.go │ ├── doc.go │ ├── eisel_lemire.go │ ├── example_test.go │ ├── export_test.go │ ├── fp_test.go │ ├── ftoa.go │ ├── ftoa_test.go │ ├── ftoaryu.go │ ├── ftoaryu_test.go │ ├── internal_test.go │ ├── isprint.go │ ├── itoa.go │ ├── itoa_test.go │ ├── makeisprint.go │ ├── quote.go │ ├── quote_test.go │ ├── strconv_test.go │ └── testdata │ │ └── testfp.txt ├── strings │ ├── builder.go │ ├── builder_test.go │ ├── clone.go │ ├── clone_test.go │ ├── compare.go │ ├── compare_test.go │ ├── example_test.go │ ├── export_test.go │ ├── reader.go │ ├── reader_test.go │ ├── replace.go │ ├── replace_test.go │ ├── search.go │ ├── search_test.go │ ├── strings.go │ └── strings_test.go ├── sync │ ├── atomic │ │ ├── asm.s │ │ ├── atomic_test.go │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── race.s │ │ ├── type.go │ │ ├── value.go │ │ └── value_test.go │ ├── cond.go │ ├── cond_test.go │ ├── example_pool_test.go │ ├── example_test.go │ ├── export_test.go │ ├── map.go │ ├── map_bench_test.go │ ├── map_reference_test.go │ ├── map_test.go │ ├── mutex.go │ ├── mutex_test.go │ ├── once.go │ ├── once_test.go │ ├── oncefunc.go │ ├── oncefunc_test.go │ ├── pool.go │ ├── pool_test.go │ ├── poolqueue.go │ ├── runtime.go │ ├── runtime2.go │ ├── runtime2_lockrank.go │ ├── runtime_sema_test.go │ ├── rwmutex.go │ ├── rwmutex_test.go │ ├── waitgroup.go │ └── waitgroup_test.go ├── syscall │ ├── asan.go │ ├── asan0.go │ ├── asm9_unix2_amd64.s │ ├── asm_aix_ppc64.s │ ├── asm_darwin_amd64.s │ ├── asm_darwin_arm64.s │ ├── asm_freebsd_arm.s │ ├── asm_freebsd_arm64.s │ ├── asm_freebsd_riscv64.s │ ├── asm_linux_386.s │ ├── asm_linux_amd64.s │ ├── asm_linux_arm.s │ ├── asm_linux_arm64.s │ ├── asm_linux_loong64.s │ ├── asm_linux_mips64x.s │ ├── asm_linux_mipsx.s │ ├── asm_linux_ppc64x.s │ ├── asm_linux_riscv64.s │ ├── asm_linux_s390x.s │ ├── asm_netbsd_arm.s │ ├── asm_netbsd_arm64.s │ ├── asm_openbsd_386.s │ ├── asm_openbsd_amd64.s │ ├── asm_openbsd_arm.s │ ├── asm_openbsd_arm64.s │ ├── asm_openbsd_mips64.s │ ├── asm_openbsd_ppc64.s │ ├── asm_openbsd_riscv64.s │ ├── asm_plan9_386.s │ ├── asm_plan9_amd64.s │ ├── asm_plan9_arm.s │ ├── asm_solaris_amd64.s │ ├── asm_unix_386.s │ ├── asm_unix_amd64.s │ ├── bpf_bsd.go │ ├── const_plan9.go │ ├── creds_test.go │ ├── dir_plan9.go │ ├── dirent.go │ ├── dirent_test.go │ ├── dll_windows.go │ ├── endian_big.go │ ├── endian_little.go │ ├── env_unix.go │ ├── env_windows.go │ ├── errors_plan9.go │ ├── exec_aix_test.go │ ├── exec_bsd.go │ ├── exec_freebsd.go │ ├── exec_freebsd_test.go │ ├── exec_libc.go │ ├── exec_libc2.go │ ├── exec_linux.go │ ├── exec_linux_test.go │ ├── exec_pdeathsig_test.go │ ├── exec_plan9.go │ ├── exec_solaris_test.go │ ├── exec_unix.go │ ├── exec_unix_test.go │ ├── exec_windows.go │ ├── exec_windows_test.go │ ├── export_darwin_test.go │ ├── export_linux_test.go │ ├── export_rlimit_test.go │ ├── export_unix_test.go │ ├── export_wasip1_test.go │ ├── export_windows_test.go │ ├── flock_aix.go │ ├── flock_bsd.go │ ├── flock_linux.go │ ├── flock_linux_32bit.go │ ├── forkpipe.go │ ├── forkpipe2.go │ ├── fs_js.go │ ├── fs_wasip1.go │ ├── fs_wasip1_test.go │ ├── getdirentries_test.go │ ├── js │ │ ├── export_test.go │ │ ├── func.go │ │ ├── js.go │ │ ├── js_js.s │ │ └── js_test.go │ ├── lsf_linux.go │ ├── mkall.sh │ ├── mkasm.go │ ├── mkerrors.sh │ ├── mkpost.go │ ├── mksyscall.pl │ ├── mksyscall_libc.pl │ ├── mksyscall_windows.go │ ├── mksysctl_openbsd.pl │ ├── mksysnum_dragonfly.pl │ ├── mksysnum_freebsd.pl │ ├── mksysnum_linux.pl │ ├── mksysnum_netbsd.pl │ ├── mksysnum_openbsd.pl │ ├── mksysnum_plan9.sh │ ├── mmap_unix_test.go │ ├── msan.go │ ├── msan0.go │ ├── net.go │ ├── net_fake.go │ ├── net_js.go │ ├── net_wasip1.go │ ├── netlink_linux.go │ ├── os_wasip1.go │ ├── pwd_plan9.go │ ├── rlimit.go │ ├── rlimit_darwin.go │ ├── rlimit_stub.go │ ├── rlimit_test.go │ ├── route_bsd.go │ ├── route_darwin.go │ ├── route_dragonfly.go │ ├── route_freebsd.go │ ├── route_freebsd_32bit.go │ ├── route_freebsd_64bit.go │ ├── route_netbsd.go │ ├── route_openbsd.go │ ├── security_windows.go │ ├── setuidgid_32_linux.go │ ├── setuidgid_linux.go │ ├── sockcmsg_dragonfly.go │ ├── sockcmsg_linux.go │ ├── sockcmsg_unix.go │ ├── sockcmsg_unix_other.go │ ├── syscall.go │ ├── syscall_aix.go │ ├── syscall_aix_ppc64.go │ ├── syscall_bsd.go │ ├── syscall_bsd_test.go │ ├── syscall_darwin.go │ ├── syscall_darwin_amd64.go │ ├── syscall_darwin_arm64.go │ ├── syscall_dragonfly.go │ ├── syscall_dragonfly_amd64.go │ ├── syscall_freebsd.go │ ├── syscall_freebsd_386.go │ ├── syscall_freebsd_amd64.go │ ├── syscall_freebsd_arm.go │ ├── syscall_freebsd_arm64.go │ ├── syscall_freebsd_riscv64.go │ ├── syscall_freebsd_test.go │ ├── syscall_illumos.go │ ├── syscall_js.go │ ├── syscall_linux.go │ ├── syscall_linux_386.go │ ├── syscall_linux_accept.go │ ├── syscall_linux_accept4.go │ ├── syscall_linux_amd64.go │ ├── syscall_linux_arm.go │ ├── syscall_linux_arm64.go │ ├── syscall_linux_loong64.go │ ├── syscall_linux_mips64x.go │ ├── syscall_linux_mipsx.go │ ├── syscall_linux_ppc64x.go │ ├── syscall_linux_riscv64.go │ ├── syscall_linux_s390x.go │ ├── syscall_linux_test.go │ ├── syscall_netbsd.go │ ├── syscall_netbsd_386.go │ ├── syscall_netbsd_amd64.go │ ├── syscall_netbsd_arm.go │ ├── syscall_netbsd_arm64.go │ ├── syscall_openbsd.go │ ├── syscall_openbsd1.go │ ├── syscall_openbsd_386.go │ ├── syscall_openbsd_amd64.go │ ├── syscall_openbsd_arm.go │ ├── syscall_openbsd_arm64.go │ ├── syscall_openbsd_libc.go │ ├── syscall_openbsd_mips64.go │ ├── syscall_openbsd_ppc64.go │ ├── syscall_openbsd_riscv64.go │ ├── syscall_plan9.go │ ├── syscall_plan9_test.go │ ├── syscall_ptrace_test.go │ ├── syscall_solaris.go │ ├── syscall_solaris_amd64.go │ ├── syscall_solarisonly.go │ ├── syscall_test.go │ ├── syscall_unix.go │ ├── syscall_unix_test.go │ ├── syscall_wasip1.go │ ├── syscall_windows.go │ ├── syscall_windows_test.go │ ├── tables_js.go │ ├── tables_wasip1.go │ ├── time_fake.go │ ├── time_nofake.go │ ├── timestruct.go │ ├── types_aix.go │ ├── types_darwin.go │ ├── types_dragonfly.go │ ├── types_freebsd.go │ ├── types_illumos_amd64.go │ ├── types_linux.go │ ├── types_netbsd.go │ ├── types_openbsd.go │ ├── types_solaris.go │ ├── types_windows.go │ ├── types_windows_386.go │ ├── types_windows_amd64.go │ ├── types_windows_arm.go │ ├── types_windows_arm64.go │ ├── wtf8_windows.go │ ├── wtf8_windows_test.go │ ├── zerrors_aix_ppc64.go │ ├── zerrors_darwin_amd64.go │ ├── zerrors_darwin_arm64.go │ ├── zerrors_dragonfly_amd64.go │ ├── zerrors_freebsd_386.go │ ├── zerrors_freebsd_amd64.go │ ├── zerrors_freebsd_arm.go │ ├── zerrors_freebsd_arm64.go │ ├── zerrors_freebsd_riscv64.go │ ├── zerrors_linux_386.go │ ├── zerrors_linux_amd64.go │ ├── zerrors_linux_arm.go │ ├── zerrors_linux_arm64.go │ ├── zerrors_linux_loong64.go │ ├── zerrors_linux_mips.go │ ├── zerrors_linux_mips64.go │ ├── zerrors_linux_mips64le.go │ ├── zerrors_linux_mipsle.go │ ├── zerrors_linux_ppc64.go │ ├── zerrors_linux_ppc64le.go │ ├── zerrors_linux_riscv64.go │ ├── zerrors_linux_s390x.go │ ├── zerrors_netbsd_386.go │ ├── zerrors_netbsd_amd64.go │ ├── zerrors_netbsd_arm.go │ ├── zerrors_netbsd_arm64.go │ ├── zerrors_openbsd_386.go │ ├── zerrors_openbsd_amd64.go │ ├── zerrors_openbsd_arm.go │ ├── zerrors_openbsd_arm64.go │ ├── zerrors_openbsd_mips64.go │ ├── zerrors_openbsd_ppc64.go │ ├── zerrors_openbsd_riscv64.go │ ├── zerrors_solaris_amd64.go │ ├── zerrors_windows.go │ ├── zsyscall_aix_ppc64.go │ ├── zsyscall_darwin_amd64.go │ ├── zsyscall_darwin_amd64.s │ ├── zsyscall_darwin_arm64.go │ ├── zsyscall_darwin_arm64.s │ ├── zsyscall_dragonfly_amd64.go │ ├── zsyscall_freebsd_386.go │ ├── zsyscall_freebsd_amd64.go │ ├── zsyscall_freebsd_arm.go │ ├── zsyscall_freebsd_arm64.go │ ├── zsyscall_freebsd_riscv64.go │ ├── zsyscall_linux_386.go │ ├── zsyscall_linux_amd64.go │ ├── zsyscall_linux_arm.go │ ├── zsyscall_linux_arm64.go │ ├── zsyscall_linux_loong64.go │ ├── zsyscall_linux_mips.go │ ├── zsyscall_linux_mips64.go │ ├── zsyscall_linux_mips64le.go │ ├── zsyscall_linux_mipsle.go │ ├── zsyscall_linux_ppc64.go │ ├── zsyscall_linux_ppc64le.go │ ├── zsyscall_linux_riscv64.go │ ├── zsyscall_linux_s390x.go │ ├── zsyscall_netbsd_386.go │ ├── zsyscall_netbsd_amd64.go │ ├── zsyscall_netbsd_arm.go │ ├── zsyscall_netbsd_arm64.go │ ├── zsyscall_openbsd_386.go │ ├── zsyscall_openbsd_386.s │ ├── zsyscall_openbsd_amd64.go │ ├── zsyscall_openbsd_amd64.s │ ├── zsyscall_openbsd_arm.go │ ├── zsyscall_openbsd_arm.s │ ├── zsyscall_openbsd_arm64.go │ ├── zsyscall_openbsd_arm64.s │ ├── zsyscall_openbsd_mips64.go │ ├── zsyscall_openbsd_ppc64.go │ ├── zsyscall_openbsd_ppc64.s │ ├── zsyscall_openbsd_riscv64.go │ ├── zsyscall_openbsd_riscv64.s │ ├── zsyscall_plan9_386.go │ ├── zsyscall_plan9_amd64.go │ ├── zsyscall_plan9_arm.go │ ├── zsyscall_solaris_amd64.go │ ├── zsyscall_windows.go │ ├── zsysctl_openbsd.go │ ├── zsysnum_darwin_amd64.go │ ├── zsysnum_darwin_arm64.go │ ├── zsysnum_dragonfly_amd64.go │ ├── zsysnum_freebsd_386.go │ ├── zsysnum_freebsd_amd64.go │ ├── zsysnum_freebsd_arm.go │ ├── zsysnum_freebsd_arm64.go │ ├── zsysnum_freebsd_riscv64.go │ ├── zsysnum_linux_386.go │ ├── zsysnum_linux_amd64.go │ ├── zsysnum_linux_arm.go │ ├── zsysnum_linux_arm64.go │ ├── zsysnum_linux_loong64.go │ ├── zsysnum_linux_mips.go │ ├── zsysnum_linux_mips64.go │ ├── zsysnum_linux_mips64le.go │ ├── zsysnum_linux_mipsle.go │ ├── zsysnum_linux_ppc64.go │ ├── zsysnum_linux_ppc64le.go │ ├── zsysnum_linux_riscv64.go │ ├── zsysnum_linux_s390x.go │ ├── zsysnum_netbsd_386.go │ ├── zsysnum_netbsd_amd64.go │ ├── zsysnum_netbsd_arm.go │ ├── zsysnum_netbsd_arm64.go │ ├── zsysnum_openbsd_386.go │ ├── zsysnum_openbsd_amd64.go │ ├── zsysnum_openbsd_arm.go │ ├── zsysnum_openbsd_arm64.go │ ├── zsysnum_openbsd_mips64.go │ ├── zsysnum_openbsd_ppc64.go │ ├── zsysnum_openbsd_riscv64.go │ ├── zsysnum_plan9.go │ ├── zsysnum_solaris_amd64.go │ ├── ztypes_aix_ppc64.go │ ├── ztypes_darwin_amd64.go │ ├── ztypes_darwin_arm64.go │ ├── ztypes_dragonfly_amd64.go │ ├── ztypes_freebsd_386.go │ ├── ztypes_freebsd_amd64.go │ ├── ztypes_freebsd_arm.go │ ├── ztypes_freebsd_arm64.go │ ├── ztypes_freebsd_riscv64.go │ ├── ztypes_linux_386.go │ ├── ztypes_linux_amd64.go │ ├── ztypes_linux_arm.go │ ├── ztypes_linux_arm64.go │ ├── ztypes_linux_loong64.go │ ├── ztypes_linux_mips.go │ ├── ztypes_linux_mips64.go │ ├── ztypes_linux_mips64le.go │ ├── ztypes_linux_mipsle.go │ ├── ztypes_linux_ppc64.go │ ├── ztypes_linux_ppc64le.go │ ├── ztypes_linux_riscv64.go │ ├── ztypes_linux_s390x.go │ ├── ztypes_netbsd_386.go │ ├── ztypes_netbsd_amd64.go │ ├── ztypes_netbsd_arm.go │ ├── ztypes_netbsd_arm64.go │ ├── ztypes_openbsd_386.go │ ├── ztypes_openbsd_amd64.go │ ├── ztypes_openbsd_arm.go │ ├── ztypes_openbsd_arm64.go │ ├── ztypes_openbsd_mips64.go │ ├── ztypes_openbsd_ppc64.go │ ├── ztypes_openbsd_riscv64.go │ └── ztypes_solaris_amd64.go ├── testdata │ └── Isaac.Newton-Opticks.txt ├── testing │ ├── allocs.go │ ├── allocs_test.go │ ├── benchmark.go │ ├── benchmark_test.go │ ├── cover.go │ ├── example.go │ ├── export_test.go │ ├── flag_test.go │ ├── fstest │ │ ├── mapfs.go │ │ ├── mapfs_test.go │ │ ├── testfs.go │ │ └── testfs_test.go │ ├── fuzz.go │ ├── helper_test.go │ ├── helperfuncs_test.go │ ├── internal │ │ └── testdeps │ │ │ └── deps.go │ ├── iotest │ │ ├── example_test.go │ │ ├── logger.go │ │ ├── logger_test.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── writer.go │ │ └── writer_test.go │ ├── match.go │ ├── match_test.go │ ├── newcover.go │ ├── panic_test.go │ ├── quick │ │ ├── quick.go │ │ └── quick_test.go │ ├── run_example.go │ ├── run_example_wasm.go │ ├── slogtest │ │ ├── example_test.go │ │ ├── run_test.go │ │ └── slogtest.go │ ├── sub_test.go │ ├── testing.go │ ├── testing_other.go │ ├── testing_test.go │ └── testing_windows.go ├── text │ ├── scanner │ │ ├── example_test.go │ │ ├── scanner.go │ │ └── scanner_test.go │ ├── tabwriter │ │ ├── example_test.go │ │ ├── tabwriter.go │ │ └── tabwriter_test.go │ └── template │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── examplefiles_test.go │ │ ├── examplefunc_test.go │ │ ├── exec.go │ │ ├── exec_test.go │ │ ├── funcs.go │ │ ├── helper.go │ │ ├── link_test.go │ │ ├── multi_test.go │ │ ├── option.go │ │ ├── parse │ │ ├── lex.go │ │ ├── lex_test.go │ │ ├── node.go │ │ ├── parse.go │ │ └── parse_test.go │ │ ├── template.go │ │ └── testdata │ │ ├── file1.tmpl │ │ ├── file2.tmpl │ │ ├── tmpl1.tmpl │ │ └── tmpl2.tmpl ├── time │ ├── embed.go │ ├── example_test.go │ ├── export_android_test.go │ ├── export_test.go │ ├── export_windows_test.go │ ├── format.go │ ├── format_rfc3339.go │ ├── format_test.go │ ├── genzabbrs.go │ ├── internal_test.go │ ├── mono_test.go │ ├── sleep.go │ ├── sleep_test.go │ ├── sys_plan9.go │ ├── sys_unix.go │ ├── sys_windows.go │ ├── testdata │ │ ├── 2020b_Europe_Berlin │ │ ├── 2021a_America_Nuuk │ │ ├── 2021a_Asia_Gaza │ │ └── 2021a_Europe_Dublin │ ├── tick.go │ ├── tick_test.go │ ├── time.go │ ├── time_test.go │ ├── tzdata │ │ └── tzdata.go │ ├── tzdata_test.go │ ├── zoneinfo.go │ ├── zoneinfo_abbrs_windows.go │ ├── zoneinfo_android.go │ ├── zoneinfo_android_test.go │ ├── zoneinfo_goroot.go │ ├── zoneinfo_ios.go │ ├── zoneinfo_js.go │ ├── zoneinfo_plan9.go │ ├── zoneinfo_read.go │ ├── zoneinfo_test.go │ ├── zoneinfo_unix.go │ ├── zoneinfo_unix_test.go │ ├── zoneinfo_wasip1.go │ ├── zoneinfo_windows.go │ └── zoneinfo_windows_test.go ├── unicode │ ├── casetables.go │ ├── digit.go │ ├── digit_test.go │ ├── example_test.go │ ├── graphic.go │ ├── graphic_test.go │ ├── letter.go │ ├── letter_test.go │ ├── script_test.go │ ├── tables.go │ ├── utf16 │ │ ├── export_test.go │ │ ├── utf16.go │ │ └── utf16_test.go │ └── utf8 │ │ ├── example_test.go │ │ ├── utf8.go │ │ └── utf8_test.go ├── unsafe │ └── unsafe.go └── vendor │ ├── github.com │ └── cloudflare │ │ └── circl │ │ ├── LICENSE │ │ ├── dh │ │ ├── x25519 │ │ │ ├── curve.go │ │ │ ├── curve_amd64.go │ │ │ ├── curve_amd64.h │ │ │ ├── curve_amd64.s │ │ │ ├── curve_generic.go │ │ │ ├── curve_noasm.go │ │ │ ├── doc.go │ │ │ ├── key.go │ │ │ └── table.go │ │ └── x448 │ │ │ ├── curve.go │ │ │ ├── curve_amd64.go │ │ │ ├── curve_amd64.h │ │ │ ├── curve_amd64.s │ │ │ ├── curve_generic.go │ │ │ ├── curve_noasm.go │ │ │ ├── doc.go │ │ │ ├── key.go │ │ │ └── table.go │ │ ├── ecc │ │ ├── goldilocks │ │ │ ├── constants.go │ │ │ ├── curve.go │ │ │ ├── isogeny.go │ │ │ ├── point.go │ │ │ ├── scalar.go │ │ │ ├── twist.go │ │ │ ├── twistPoint.go │ │ │ ├── twistTables.go │ │ │ └── twist_basemult.go │ │ └── p384 │ │ │ ├── LICENSE │ │ │ ├── arith.go │ │ │ ├── arith_amd64.go │ │ │ ├── arith_amd64.s │ │ │ ├── arith_arm64.s │ │ │ ├── doc.go │ │ │ ├── p384.go │ │ │ ├── p384_generic.go │ │ │ ├── p384opt.go │ │ │ ├── point.go │ │ │ └── tableBase.go │ │ ├── hpke │ │ ├── aead.go │ │ ├── algs.go │ │ ├── hpke.go │ │ ├── hybridkem.go │ │ ├── kembase.go │ │ ├── marshal.go │ │ ├── shortkem.go │ │ ├── util.go │ │ └── xkem.go │ │ ├── internal │ │ ├── conv │ │ │ └── conv.go │ │ └── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── keccakf.go │ │ │ ├── rc.go │ │ │ ├── sha3.go │ │ │ ├── sha3_s390x.s │ │ │ ├── shake.go │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ ├── kem │ │ ├── hybrid │ │ │ ├── ckem.go │ │ │ ├── hybrid.go │ │ │ └── xkem.go │ │ ├── kem.go │ │ ├── kyber │ │ │ ├── kyber1024 │ │ │ │ └── kyber.go │ │ │ ├── kyber512 │ │ │ │ └── kyber.go │ │ │ └── kyber768 │ │ │ │ └── kyber.go │ │ └── mlkem │ │ │ └── mlkem768 │ │ │ └── kyber.go │ │ ├── math │ │ ├── fp25519 │ │ │ ├── fp.go │ │ │ ├── fp_amd64.go │ │ │ ├── fp_amd64.h │ │ │ ├── fp_amd64.s │ │ │ ├── fp_generic.go │ │ │ └── fp_noasm.go │ │ ├── fp448 │ │ │ ├── fp.go │ │ │ ├── fp_amd64.go │ │ │ ├── fp_amd64.h │ │ │ ├── fp_amd64.s │ │ │ ├── fp_generic.go │ │ │ ├── fp_noasm.go │ │ │ └── fuzzer.go │ │ ├── mlsbset │ │ │ ├── mlsbset.go │ │ │ └── power.go │ │ ├── primes.go │ │ └── wnaf.go │ │ ├── pke │ │ └── kyber │ │ │ ├── internal │ │ │ └── common │ │ │ │ ├── amd64.go │ │ │ │ ├── amd64.s │ │ │ │ ├── field.go │ │ │ │ ├── generic.go │ │ │ │ ├── ntt.go │ │ │ │ ├── params.go │ │ │ │ ├── params │ │ │ │ └── params.go │ │ │ │ ├── poly.go │ │ │ │ ├── sample.go │ │ │ │ └── stubs_amd64.go │ │ │ ├── kyber1024 │ │ │ ├── internal │ │ │ │ ├── cpapke.go │ │ │ │ ├── mat.go │ │ │ │ ├── params.go │ │ │ │ └── vec.go │ │ │ └── kyber.go │ │ │ ├── kyber512 │ │ │ ├── internal │ │ │ │ ├── cpapke.go │ │ │ │ ├── mat.go │ │ │ │ ├── params.go │ │ │ │ └── vec.go │ │ │ └── kyber.go │ │ │ └── kyber768 │ │ │ ├── internal │ │ │ ├── cpapke.go │ │ │ ├── mat.go │ │ │ ├── params.go │ │ │ └── vec.go │ │ │ └── kyber.go │ │ ├── pki │ │ └── pki.go │ │ ├── sign │ │ ├── dilithium │ │ │ ├── internal │ │ │ │ └── common │ │ │ │ │ ├── aes.go │ │ │ │ │ ├── amd64.go │ │ │ │ │ ├── amd64.s │ │ │ │ │ ├── field.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── ntt.go │ │ │ │ │ ├── pack.go │ │ │ │ │ ├── params.go │ │ │ │ │ ├── params │ │ │ │ │ └── params.go │ │ │ │ │ ├── poly.go │ │ │ │ │ └── stubs_amd64.go │ │ │ ├── mode2 │ │ │ │ ├── dilithium.go │ │ │ │ └── internal │ │ │ │ │ ├── dilithium.go │ │ │ │ │ ├── mat.go │ │ │ │ │ ├── pack.go │ │ │ │ │ ├── params.go │ │ │ │ │ ├── rounding.go │ │ │ │ │ ├── sample.go │ │ │ │ │ └── vec.go │ │ │ └── mode3 │ │ │ │ ├── dilithium.go │ │ │ │ └── internal │ │ │ │ ├── dilithium.go │ │ │ │ ├── mat.go │ │ │ │ ├── pack.go │ │ │ │ ├── params.go │ │ │ │ ├── rounding.go │ │ │ │ ├── sample.go │ │ │ │ └── vec.go │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ ├── modular.go │ │ │ ├── mult.go │ │ │ ├── point.go │ │ │ ├── pubkey.go │ │ │ ├── pubkey112.go │ │ │ ├── signapi.go │ │ │ └── tables.go │ │ ├── ed448 │ │ │ ├── ed448.go │ │ │ └── signapi.go │ │ ├── eddilithium2 │ │ │ ├── eddilithium.go │ │ │ └── signapi.go │ │ ├── eddilithium3 │ │ │ ├── eddilithium.go │ │ │ └── signapi.go │ │ ├── schemes │ │ │ └── schemes.go │ │ └── sign.go │ │ ├── simd │ │ └── keccakf1600 │ │ │ ├── f1600x.go │ │ │ ├── f1600x2_arm64.go │ │ │ ├── f1600x2_arm64.s │ │ │ ├── f1600x4_amd64.go │ │ │ ├── f1600x4_amd64.s │ │ │ ├── f1600x4stubs_amd64.go │ │ │ └── fallback.go │ │ └── xof │ │ ├── k12 │ │ └── k12.go │ │ └── xof.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── blake2b │ │ │ ├── blake2b.go │ │ │ ├── blake2bAVX2_amd64.go │ │ │ ├── blake2bAVX2_amd64.s │ │ │ ├── blake2b_amd64.s │ │ │ ├── blake2b_generic.go │ │ │ ├── blake2b_ref.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blake2s │ │ │ ├── blake2s.go │ │ │ ├── blake2s_386.go │ │ │ ├── blake2s_386.s │ │ │ ├── blake2s_amd64.go │ │ │ ├── blake2s_amd64.s │ │ │ ├── blake2s_generic.go │ │ │ ├── blake2s_ref.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── chacha20 │ │ │ ├── chacha_arm64.go │ │ │ ├── chacha_arm64.s │ │ │ ├── chacha_generic.go │ │ │ ├── chacha_noasm.go │ │ │ ├── chacha_ppc64le.go │ │ │ ├── chacha_ppc64le.s │ │ │ ├── chacha_s390x.go │ │ │ ├── chacha_s390x.s │ │ │ └── xor.go │ │ ├── chacha20poly1305 │ │ │ ├── chacha20poly1305.go │ │ │ ├── chacha20poly1305_amd64.go │ │ │ ├── chacha20poly1305_amd64.s │ │ │ ├── chacha20poly1305_generic.go │ │ │ ├── chacha20poly1305_noasm.go │ │ │ └── xchacha20poly1305.go │ │ ├── cryptobyte │ │ │ ├── asn1.go │ │ │ ├── asn1 │ │ │ │ └── asn1.go │ │ │ ├── builder.go │ │ │ └── string.go │ │ ├── hkdf │ │ │ └── hkdf.go │ │ ├── internal │ │ │ ├── alias │ │ │ │ ├── alias.go │ │ │ │ └── alias_purego.go │ │ │ └── poly1305 │ │ │ │ ├── bits_compat.go │ │ │ │ ├── bits_go1.13.go │ │ │ │ ├── mac_noasm.go │ │ │ │ ├── poly1305.go │ │ │ │ ├── sum_amd64.go │ │ │ │ ├── sum_amd64.s │ │ │ │ ├── sum_generic.go │ │ │ │ ├── sum_ppc64le.go │ │ │ │ ├── sum_ppc64le.s │ │ │ │ ├── sum_s390x.go │ │ │ │ └── sum_s390x.s │ │ └── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── hashes_generic.go │ │ │ ├── keccakf.go │ │ │ ├── keccakf_amd64.go │ │ │ ├── keccakf_amd64.s │ │ │ ├── register.go │ │ │ ├── sha3.go │ │ │ ├── sha3_s390x.go │ │ │ ├── sha3_s390x.s │ │ │ ├── shake.go │ │ │ ├── shake_generic.go │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── dns │ │ │ └── dnsmessage │ │ │ │ └── message.go │ │ ├── http │ │ │ ├── httpguts │ │ │ │ ├── guts.go │ │ │ │ └── httplex.go │ │ │ └── httpproxy │ │ │ │ └── proxy.go │ │ ├── http2 │ │ │ └── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ ├── static_table.go │ │ │ │ └── tables.go │ │ ├── idna │ │ │ ├── go118.go │ │ │ ├── idna10.0.0.go │ │ │ ├── idna9.0.0.go │ │ │ ├── pre_go118.go │ │ │ ├── punycode.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── trie.go │ │ │ ├── trie12.0.0.go │ │ │ ├── trie13.0.0.go │ │ │ └── trieval.go │ │ ├── lif │ │ │ ├── address.go │ │ │ ├── binary.go │ │ │ ├── lif.go │ │ │ ├── link.go │ │ │ ├── sys.go │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── syscall.go │ │ │ └── zsys_solaris_amd64.go │ │ ├── nettest │ │ │ ├── conntest.go │ │ │ ├── nettest.go │ │ │ ├── nettest_stub.go │ │ │ ├── nettest_unix.go │ │ │ └── nettest_windows.go │ │ └── route │ │ │ ├── address.go │ │ │ ├── binary.go │ │ │ ├── empty.s │ │ │ ├── interface.go │ │ │ ├── interface_announce.go │ │ │ ├── interface_classic.go │ │ │ ├── interface_freebsd.go │ │ │ ├── interface_multicast.go │ │ │ ├── interface_openbsd.go │ │ │ ├── message.go │ │ │ ├── route.go │ │ │ ├── route_classic.go │ │ │ ├── route_openbsd.go │ │ │ ├── sys.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_openbsd.go │ │ │ ├── syscall.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_freebsd_arm64.go │ │ │ ├── zsys_freebsd_riscv64.go │ │ │ ├── zsys_netbsd.go │ │ │ └── zsys_openbsd.go │ │ ├── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── cpu │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── byteorder.go │ │ │ ├── cpu.go │ │ │ ├── cpu_aix.go │ │ │ ├── cpu_arm.go │ │ │ ├── cpu_arm64.go │ │ │ ├── cpu_arm64.s │ │ │ ├── cpu_gc_arm64.go │ │ │ ├── cpu_gc_s390x.go │ │ │ ├── cpu_gc_x86.go │ │ │ ├── cpu_gccgo_arm64.go │ │ │ ├── cpu_gccgo_s390x.go │ │ │ ├── cpu_gccgo_x86.c │ │ │ ├── cpu_gccgo_x86.go │ │ │ ├── cpu_linux.go │ │ │ ├── cpu_linux_arm.go │ │ │ ├── cpu_linux_arm64.go │ │ │ ├── cpu_linux_mips64x.go │ │ │ ├── cpu_linux_noinit.go │ │ │ ├── cpu_linux_ppc64x.go │ │ │ ├── cpu_linux_s390x.go │ │ │ ├── cpu_loong64.go │ │ │ ├── cpu_mips64x.go │ │ │ ├── cpu_mipsx.go │ │ │ ├── cpu_netbsd_arm64.go │ │ │ ├── cpu_openbsd_arm64.go │ │ │ ├── cpu_openbsd_arm64.s │ │ │ ├── cpu_other_arm.go │ │ │ ├── cpu_other_arm64.go │ │ │ ├── cpu_other_mips64x.go │ │ │ ├── cpu_other_ppc64x.go │ │ │ ├── cpu_other_riscv64.go │ │ │ ├── cpu_ppc64x.go │ │ │ ├── cpu_riscv64.go │ │ │ ├── cpu_s390x.go │ │ │ ├── cpu_s390x.s │ │ │ ├── cpu_wasm.go │ │ │ ├── cpu_x86.go │ │ │ ├── cpu_x86.s │ │ │ ├── cpu_zos.go │ │ │ ├── cpu_zos_s390x.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── hwcap_linux.go │ │ │ ├── parse.go │ │ │ ├── proc_cpuinfo_linux.go │ │ │ ├── runtime_auxv.go │ │ │ ├── runtime_auxv_go121.go │ │ │ ├── syscall_aix_gccgo.go │ │ │ └── syscall_aix_ppc64_gc.go │ │ └── text │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ │ ├── transform │ │ └── transform.go │ │ └── unicode │ │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── prop.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ │ └── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ └── trie.go │ └── modules.txt └── test ├── 235.go ├── 64bit.go ├── README.md ├── abi ├── bad_internal_offsets.go ├── bad_select_crash.go ├── convF_criteria.go ├── convF_criteria.out ├── convT64_criteria.go ├── convT64_criteria.out ├── defer_aggregate.go ├── defer_recover_results.go ├── double_nested_addressed_struct.go ├── double_nested_struct.go ├── f_ret_z_not.go ├── f_ret_z_not.out ├── fibish.go ├── fibish.out ├── fibish_closure.go ├── fibish_closure.out ├── fuzz_trailing_zero_field.go ├── idata.go ├── idata.out ├── leaf.go ├── leaf2.go ├── many_int_input.go ├── many_int_input.out ├── many_intstar_input.go ├── many_intstar_input.out ├── map.go ├── method_wrapper.go ├── more_intstar_input.go ├── more_intstar_input.out ├── named_results.go ├── named_results.out ├── named_return_stuff.go ├── named_return_stuff.out ├── open_defer_1.go ├── part_live.go ├── part_live_2.go ├── reg_not_ssa.go ├── result_live.go ├── result_regalloc.go ├── return_stuff.go ├── return_stuff.out ├── s_sif_sif.go ├── spills3.go ├── spills4.go ├── store_reg_args.go ├── struct_3_string_input.go ├── struct_3_string_input.out ├── struct_lower_1.go ├── struct_lower_1.out ├── too_big_to_ssa.go ├── too_big_to_ssa.out ├── uglyfib.go ├── uglyfib.out ├── wrapdefer_largetmp.go ├── wrapdefer_largetmp.out └── zombie_struct_select.go ├── alg.go ├── alias.go ├── alias1.go ├── alias2.go ├── alias3.dir ├── a.go ├── b.go └── c.go ├── alias3.go ├── align.go ├── append.go ├── append1.go ├── arenas └── smoke.go ├── args.go ├── armimm.go ├── asmhdr.dir ├── main.go └── main.s ├── asmhdr.go ├── assign.go ├── assign1.go ├── atomicload.go ├── bigalg.go ├── bigmap.go ├── blank.go ├── blank1.go ├── bom.go ├── bombad.go ├── bounds.go ├── cannotassign.go ├── chan ├── doubleselect.go ├── fifo.go ├── goroutines.go ├── nonblock.go ├── perm.go ├── powser1.go ├── powser2.go ├── select.go ├── select2.go ├── select3.go ├── select4.go ├── select5.go ├── select6.go ├── select7.go ├── select8.go ├── sendstmt.go ├── sieve1.go ├── sieve2.go └── zerosize.go ├── chancap.go ├── chanlinear.go ├── char_lit.go ├── char_lit1.go ├── checkbce.go ├── clear.go ├── clearfat.go ├── closedchan.go ├── closure.go ├── closure1.go ├── closure2.go ├── closure3.dir └── main.go ├── closure3.go ├── closure4.go ├── closure5.dir ├── a.go └── main.go ├── closure5.go ├── closure6.go ├── closure7.go ├── cmp.go ├── cmp6.go ├── cmplx.go ├── cmplxdivide.c ├── cmplxdivide.go ├── cmplxdivide1.go ├── codegen ├── README ├── addrcalc.go ├── alloc.go ├── arithmetic.go ├── bitfield.go ├── bits.go ├── bmi.go ├── bool.go ├── clobberdead.go ├── clobberdeadreg.go ├── compare_and_branch.go ├── comparisons.go ├── condmove.go ├── constants.go ├── copy.go ├── floats.go ├── fuse.go ├── ifaces.go ├── issue22703.go ├── issue25378.go ├── issue31618.go ├── issue33580.go ├── issue38554.go ├── issue42610.go ├── issue48054.go ├── issue52635.go ├── issue54467.go ├── issue56440.go ├── issue58166.go ├── issue60324.go ├── issue60673.go ├── issue61356.go ├── issue63332.go ├── logic.go ├── mapaccess.go ├── maps.go ├── math.go ├── mathbits.go ├── memcombine.go ├── memops.go ├── memops_bigoffset.go ├── noextend.go ├── race.go ├── regabi_regalloc.go ├── retpoline.go ├── rotate.go ├── select.go ├── shift.go ├── shortcircuit.go ├── slices.go ├── smallintiface.go ├── spectre.go ├── stack.go ├── strings.go ├── structs.go ├── switch.go ├── writebarrier.go └── zerosize.go ├── complit.go ├── complit1.go ├── compos.go ├── const.go ├── const1.go ├── const2.go ├── const3.go ├── const4.go ├── const5.go ├── const6.go ├── const7.go ├── const8.go ├── convT2X.go ├── convert.go ├── convert1.go ├── convert2.go ├── convert3.go ├── convert4.go ├── convinline.go ├── convlit.go ├── convlit1.go ├── copy.go ├── copy1.go ├── crlf.go ├── ddd.go ├── ddd1.go ├── ddd2.dir ├── ddd2.go └── ddd3.go ├── ddd2.go ├── decl.go ├── declbad.go ├── defer.go ├── defererrcheck.go ├── deferfin.go ├── defernil.go ├── deferprint.go ├── deferprint.out ├── devirt.go ├── directive.go ├── directive2.go ├── divide.go ├── divmod.go ├── dwarf ├── dwarf.dir │ ├── main.go │ ├── z1.go │ ├── z10.go │ ├── z11.go │ ├── z12.go │ ├── z13.go │ ├── z14.go │ ├── z15.go │ ├── z16.go │ ├── z17.go │ ├── z18.go │ ├── z19.go │ ├── z2.go │ ├── z20.go │ ├── z3.go │ ├── z4.go │ ├── z5.go │ ├── z6.go │ ├── z7.go │ ├── z8.go │ └── z9.go ├── dwarf.go └── linedirectives.go ├── embedfunc.go ├── embedvers.go ├── empty.go ├── env.go ├── eof.go ├── eof1.go ├── escape.go ├── escape2.go ├── escape2n.go ├── escape3.go ├── escape4.go ├── escape5.go ├── escape_array.go ├── escape_calls.go ├── escape_closure.go ├── escape_field.go ├── escape_goto.go ├── escape_hash_maphash.go ├── escape_iface.go ├── escape_indir.go ├── escape_level.go ├── escape_map.go ├── escape_mutations.go ├── escape_param.go ├── escape_reflect.go ├── escape_runtime_atomic.go ├── escape_selfassign.go ├── escape_slice.go ├── escape_struct_param1.go ├── escape_struct_param2.go ├── escape_struct_return.go ├── escape_sync_atomic.go ├── escape_unsafe.go ├── fibo.go ├── finprofiled.go ├── fixedbugs ├── bug000.go ├── bug002.go ├── bug003.go ├── bug004.go ├── bug005.go ├── bug006.go ├── bug007.go ├── bug008.go ├── bug009.go ├── bug010.go ├── bug011.go ├── bug012.go ├── bug013.go ├── bug014.go ├── bug015.go ├── bug016.go ├── bug017.go ├── bug020.go ├── bug021.go ├── bug022.go ├── bug023.go ├── bug024.go ├── bug026.go ├── bug027.go ├── bug028.go ├── bug030.go ├── bug031.go ├── bug035.go ├── bug037.go ├── bug039.go ├── bug040.go ├── bug045.go ├── bug046.go ├── bug047.go ├── bug048.go ├── bug049.go ├── bug050.go ├── bug051.go ├── bug052.go ├── bug053.go ├── bug054.go ├── bug055.go ├── bug056.go ├── bug057.go ├── bug058.go ├── bug059.go ├── bug060.go ├── bug061.go ├── bug062.go ├── bug063.go ├── bug064.go ├── bug065.go ├── bug066.go ├── bug067.go ├── bug068.go ├── bug069.go ├── bug070.go ├── bug071.go ├── bug072.go ├── bug073.go ├── bug074.go ├── bug075.go ├── bug076.go ├── bug077.go ├── bug078.go ├── bug080.go ├── bug081.go ├── bug082.go ├── bug083.dir │ ├── bug0.go │ └── bug1.go ├── bug083.go ├── bug084.go ├── bug085.go ├── bug086.go ├── bug087.go ├── bug088.dir │ ├── bug0.go │ └── bug1.go ├── bug088.go ├── bug089.go ├── bug090.go ├── bug091.go ├── bug092.go ├── bug093.go ├── bug094.go ├── bug096.go ├── bug097.go ├── bug098.go ├── bug099.go ├── bug101.go ├── bug102.go ├── bug103.go ├── bug104.go ├── bug106.dir │ ├── bug0.go │ └── bug1.go ├── bug106.go ├── bug107.go ├── bug108.go ├── bug109.go ├── bug110.go ├── bug111.go ├── bug112.go ├── bug113.go ├── bug114.go ├── bug115.go ├── bug116.go ├── bug117.go ├── bug118.go ├── bug119.go ├── bug120.go ├── bug121.go ├── bug122.go ├── bug123.go ├── bug126.go ├── bug127.go ├── bug128.go ├── bug129.go ├── bug130.go ├── bug131.go ├── bug132.go ├── bug133.dir │ ├── bug0.go │ ├── bug1.go │ └── bug2.go ├── bug133.go ├── bug13343.go ├── bug135.go ├── bug136.go ├── bug137.go ├── bug139.go ├── bug140.go ├── bug141.go ├── bug142.go ├── bug143.go ├── bug144.go ├── bug145.go ├── bug146.go ├── bug147.go ├── bug148.go ├── bug149.go ├── bug150.go ├── bug151.go ├── bug1515.go ├── bug152.go ├── bug154.go ├── bug155.go ├── bug156.go ├── bug157.go ├── bug158.go ├── bug159.go ├── bug160.dir │ ├── x.go │ └── y.go ├── bug160.go ├── bug161.go ├── bug163.go ├── bug164.go ├── bug165.go ├── bug167.go ├── bug168.go ├── bug169.go ├── bug170.go ├── bug171.go ├── bug172.go ├── bug173.go ├── bug174.go ├── bug175.go ├── bug176.go ├── bug177.go ├── bug178.go ├── bug179.go ├── bug180.go ├── bug181.go ├── bug182.go ├── bug183.go ├── bug184.go ├── bug185.go ├── bug186.go ├── bug187.go ├── bug188.go ├── bug189.go ├── bug190.go ├── bug191.dir │ ├── a.go │ ├── b.go │ └── main.go ├── bug191.go ├── bug192.go ├── bug193.go ├── bug194.go ├── bug19403.go ├── bug195.go ├── bug196.go ├── bug197.go ├── bug198.go ├── bug199.go ├── bug200.go ├── bug201.go ├── bug202.go ├── bug203.go ├── bug204.go ├── bug205.go ├── bug206.go ├── bug206.out ├── bug207.go ├── bug208.go ├── bug209.go ├── bug212.go ├── bug213.go ├── bug214.go ├── bug215.go ├── bug216.go ├── bug217.go ├── bug218.go ├── bug219.go ├── bug221.go ├── bug222.dir │ ├── chanbug.go │ └── chanbug2.go ├── bug222.go ├── bug223.go ├── bug224.go ├── bug225.go ├── bug227.go ├── bug228.go ├── bug228a.go ├── bug229.go ├── bug230.go ├── bug231.go ├── bug232.go ├── bug233.go ├── bug234.go ├── bug235.go ├── bug236.go ├── bug237.go ├── bug238.go ├── bug239.go ├── bug240.go ├── bug241.go ├── bug242.go ├── bug243.go ├── bug244.go ├── bug245.go ├── bug246.go ├── bug247.go ├── bug248.dir │ ├── bug0.go │ ├── bug1.go │ ├── bug2.go │ └── bug3.go ├── bug248.go ├── bug249.go ├── bug250.go ├── bug251.go ├── bug252.go ├── bug253.go ├── bug254.go ├── bug255.go ├── bug256.go ├── bug257.go ├── bug258.go ├── bug259.go ├── bug260.go ├── bug261.go ├── bug262.go ├── bug263.go ├── bug264.go ├── bug265.go ├── bug266.go ├── bug267.go ├── bug269.go ├── bug271.go ├── bug272.go ├── bug273.go ├── bug274.go ├── bug275.go ├── bug276.go ├── bug277.go ├── bug278.go ├── bug279.go ├── bug280.go ├── bug281.go ├── bug282.dir │ ├── p1.go │ └── p2.go ├── bug282.go ├── bug283.go ├── bug284.go ├── bug285.go ├── bug286.go ├── bug287.go ├── bug288.go ├── bug289.go ├── bug290.go ├── bug291.go ├── bug292.go ├── bug293.go ├── bug294.go ├── bug295.go ├── bug296.go ├── bug297.go ├── bug298.go ├── bug299.go ├── bug300.go ├── bug301.go ├── bug303.go ├── bug304.go ├── bug305.go ├── bug306.dir │ ├── p1.go │ └── p2.go ├── bug306.go ├── bug307.go ├── bug308.go ├── bug309.go ├── bug311.go ├── bug312.go ├── bug313.dir │ ├── a.go │ └── b.go ├── bug313.go ├── bug314.go ├── bug315.go ├── bug316.go ├── bug317.go ├── bug318.go ├── bug319.go ├── bug320.go ├── bug321.go ├── bug322.dir │ ├── lib.go │ └── main.go ├── bug322.go ├── bug323.go ├── bug324.dir │ ├── p.go │ └── prog.go ├── bug324.go ├── bug325.go ├── bug326.go ├── bug327.go ├── bug328.go ├── bug328.out ├── bug329.go ├── bug330.go ├── bug331.go ├── bug332.go ├── bug333.go ├── bug334.go ├── bug335.dir │ ├── a.go │ └── b.go ├── bug335.go ├── bug336.go ├── bug337.go ├── bug338.go ├── bug339.go ├── bug340.go ├── bug341.go ├── bug342.go ├── bug343.go ├── bug344.go ├── bug345.dir │ ├── io.go │ └── main.go ├── bug345.go ├── bug346.go ├── bug347.go ├── bug348.go ├── bug349.go ├── bug350.go ├── bug351.go ├── bug352.go ├── bug353.go ├── bug354.go ├── bug355.go ├── bug356.go ├── bug357.go ├── bug358.go ├── bug361.go ├── bug362.go ├── bug363.go ├── bug364.go ├── bug365.go ├── bug366.go ├── bug367.dir │ ├── p.go │ └── prog.go ├── bug367.go ├── bug368.go ├── bug369.dir │ ├── main.go │ └── pkg.go ├── bug369.go ├── bug370.go ├── bug371.go ├── bug372.go ├── bug373.go ├── bug374.go ├── bug375.go ├── bug376.go ├── bug377.dir │ ├── one.go │ └── two.go ├── bug377.go ├── bug378.go ├── bug379.go ├── bug380.go ├── bug381.go ├── bug382.dir │ ├── pkg.go │ └── prog.go ├── bug382.go ├── bug383.go ├── bug384.go ├── bug385_32.go ├── bug385_64.go ├── bug386.go ├── bug387.go ├── bug388.go ├── bug388a.go ├── bug389.go ├── bug390.go ├── bug391.go ├── bug392.dir │ ├── one.go │ ├── pkg2.go │ └── pkg3.go ├── bug392.go ├── bug393.go ├── bug394.go ├── bug396.dir │ ├── one.go │ └── two.go ├── bug396.go ├── bug397.go ├── bug398.go ├── bug399.go ├── bug401.go ├── bug402.go ├── bug403.go ├── bug404.dir │ ├── one.go │ └── two.go ├── bug404.go ├── bug405.go ├── bug406.go ├── bug407.dir │ ├── one.go │ └── two.go ├── bug407.go ├── bug409.go ├── bug409.out ├── bug410.go ├── bug411.go ├── bug412.go ├── bug413.go ├── bug414.dir │ ├── p1.go │ └── prog.go ├── bug414.go ├── bug415.dir │ ├── p.go │ └── prog.go ├── bug415.go ├── bug416.go ├── bug417.go ├── bug418.go ├── bug419.go ├── bug420.go ├── bug421.go ├── bug422.go ├── bug423.go ├── bug424.dir │ ├── lib.go │ └── main.go ├── bug424.go ├── bug425.go ├── bug426.go ├── bug427.go ├── bug428.go ├── bug430.go ├── bug431.go ├── bug432.go ├── bug433.go ├── bug434.go ├── bug435.go ├── bug436.go ├── bug437.dir │ ├── one.go │ ├── two.go │ └── x.go ├── bug437.go ├── bug438.go ├── bug439.go ├── bug440_32.go ├── bug440_64.go ├── bug441.go ├── bug442.go ├── bug443.go ├── bug444.go ├── bug445.go ├── bug446.go ├── bug447.go ├── bug448.dir │ ├── pkg1.go │ └── pkg2.go ├── bug448.go ├── bug449.go ├── bug450.go ├── bug451.go ├── bug452.go ├── bug453.go ├── bug454.go ├── bug455.go ├── bug456.go ├── bug457.go ├── bug458.go ├── bug459.go ├── bug460.dir │ ├── a.go │ └── b.go ├── bug460.go ├── bug461.go ├── bug462.go ├── bug463.go ├── bug464.go ├── bug465.dir │ ├── a.go │ └── b.go ├── bug465.go ├── bug466.dir │ ├── a.go │ └── b.go ├── bug466.go ├── bug467.dir │ ├── p1.go │ ├── p2.go │ └── p3.go ├── bug467.go ├── bug468.dir │ ├── p1.go │ └── p2.go ├── bug468.go ├── bug470.go ├── bug471.go ├── bug472.dir │ ├── p1.go │ ├── p2.go │ └── z.go ├── bug472.go ├── bug473.go ├── bug474.go ├── bug475.go ├── bug476.go ├── bug477.go ├── bug478.dir │ ├── a.go │ └── b.go ├── bug478.go ├── bug479.dir │ ├── a.go │ └── b.go ├── bug479.go ├── bug480.dir │ ├── a.go │ └── b.go ├── bug480.go ├── bug481.go ├── bug482.go ├── bug483.go ├── bug484.go ├── bug485.go ├── bug486.go ├── bug487.go ├── bug488.dir │ ├── a.go │ └── b.go ├── bug488.go ├── bug489.go ├── bug490.go ├── bug491.go ├── bug492.dir │ ├── a.go │ └── b.go ├── bug492.go ├── bug493.go ├── bug494.go ├── bug495.go ├── bug496.go ├── bug497.go ├── bug498.go ├── bug499.go ├── bug500.go ├── bug501.go ├── bug502.go ├── bug503.go ├── bug504.dir │ ├── a.go │ ├── b.go │ ├── c.go │ └── main.go ├── bug504.go ├── bug505.go ├── bug506.dir │ ├── a.go │ └── main.go ├── bug506.go ├── bug507.dir │ ├── a.go │ ├── b.go │ └── c.go ├── bug507.go ├── bug508.go ├── bug509.go ├── bug510.dir │ ├── a.go │ └── b.go ├── bug510.go ├── bug511.dir │ ├── a.go │ └── b.go ├── bug511.go ├── bug512.go ├── bug513.go ├── bug514.go ├── bug515.go ├── bug516.go ├── bug517.go ├── bug518.go ├── gcc101994.go ├── gcc61204.go ├── gcc61244.go ├── gcc61246.go ├── gcc61248.go ├── gcc61253.go ├── gcc61254.go ├── gcc61255.go ├── gcc61258.go ├── gcc61264.go ├── gcc61265.go ├── gcc61273.go ├── gcc65755.go ├── gcc67968.dir │ ├── a.go │ └── b.go ├── gcc67968.go ├── gcc78763.go ├── gcc80226.go ├── gcc89321.go ├── issue10047.go ├── issue10066.dir │ ├── a.go │ └── b.go ├── issue10066.go ├── issue10135.go ├── issue10219.dir │ ├── a.go │ ├── b.go │ └── c.go ├── issue10219.go ├── issue10253.go ├── issue10284.go ├── issue10320.go ├── issue10332.go ├── issue10353.go ├── issue10407.go ├── issue10441.go ├── issue10486.go ├── issue10607.go ├── issue10607a.go ├── issue10654.go ├── issue10700.dir │ ├── other.go │ └── test.go ├── issue10700.go ├── issue10925.go ├── issue10958.go ├── issue10975.go ├── issue10977.go ├── issue11053.dir │ ├── p.go │ └── p_test.go ├── issue11053.go ├── issue11053.out ├── issue11256.go ├── issue11286.go ├── issue11326.go ├── issue11326b.go ├── issue11354.go ├── issue11359.go ├── issue11361.go ├── issue11362.go ├── issue11369.go ├── issue11370.go ├── issue11371.go ├── issue11590.go ├── issue11610.go ├── issue11610a.go ├── issue11614.go ├── issue11656.dir │ ├── asm.go │ ├── asm_generic.go │ ├── asm_ppc64.s │ ├── asm_ppc64le.s │ └── issue11656.go ├── issue11656.go ├── issue11674.go ├── issue11699.go ├── issue11737.go ├── issue11750.go ├── issue11771.go ├── issue11790.go ├── issue11945.go ├── issue11987.go ├── issue12006.go ├── issue12108.go ├── issue12133.go ├── issue12226.go ├── issue12347.go ├── issue12411.go ├── issue12413.go ├── issue12525.go ├── issue12536.go ├── issue12577.go ├── issue12588.go ├── issue12621.go ├── issue12677.dir │ ├── p.go │ └── q.go ├── issue12677.go ├── issue12686.go ├── issue12944.go ├── issue1304.go ├── issue13160.go ├── issue13162.go ├── issue13169.go ├── issue13171.go ├── issue13248.go ├── issue13261.go ├── issue13262.go ├── issue13263.go ├── issue13265.go ├── issue13266.go ├── issue13268.go ├── issue13273.go ├── issue13274.go ├── issue13319.go ├── issue13337.go ├── issue13365.go ├── issue13415.go ├── issue13471.go ├── issue13480.go ├── issue13485.go ├── issue13539.go ├── issue13559.go ├── issue13587.go ├── issue13684.go ├── issue13777.dir │ ├── burnin.go │ └── main.go ├── issue13777.go ├── issue13779.go ├── issue13799.go ├── issue13821.go ├── issue13821b.go ├── issue14006.go ├── issue14010.go ├── issue14136.go ├── issue14164.dir │ ├── a.go │ └── main.go ├── issue14164.go ├── issue14321.go ├── issue14331.dir │ ├── a.go │ └── b.go ├── issue14331.go ├── issue14405.go ├── issue14520.go ├── issue14520a.go ├── issue14540.go ├── issue14553.go ├── issue14591.go ├── issue14636.go ├── issue14646.go ├── issue14651.go ├── issue14652.go ├── issue14725.go ├── issue14729.go ├── issue14988.go ├── issue14999.go ├── issue15002.go ├── issue15013.go ├── issue15039.go ├── issue15042.go ├── issue15055.go ├── issue15071.dir │ ├── exp.go │ └── main.go ├── issue15071.go ├── issue15084.go ├── issue15091.go ├── issue15141.go ├── issue15175.go ├── issue15252.go ├── issue15277.go ├── issue15281.go ├── issue15303.go ├── issue15311.go ├── issue15329.go ├── issue15439.go ├── issue15470.dir │ ├── a.go │ └── b.go ├── issue15470.go ├── issue15514.dir │ ├── a.go │ ├── b.go │ └── c.go ├── issue15514.go ├── issue15528.go ├── issue15548.dir │ ├── a.go │ ├── b.go │ └── c.go ├── issue15548.go ├── issue15550.go ├── issue15572.dir │ ├── a.go │ └── b.go ├── issue15572.go ├── issue15585.go ├── issue15602.go ├── issue15604.go ├── issue15609.dir │ ├── call.go │ ├── call_386.s │ ├── call_amd64.s │ ├── call_decl.go │ └── main.go ├── issue15609.go ├── issue15611.go ├── issue15646.dir │ ├── a.go │ └── b.go ├── issue15646.go ├── issue15722.go ├── issue15733.go ├── issue15747.go ├── issue15747b.go ├── issue15838.dir │ ├── a.go │ └── b.go ├── issue15838.go ├── issue15895.go ├── issue15898.go ├── issue15902.go ├── issue15920.dir │ ├── a.go │ └── b.go ├── issue15920.go ├── issue15926.go ├── issue15961.go ├── issue15975.go ├── issue15988.go ├── issue15992.go ├── issue15992.out ├── issue16008.go ├── issue16016.go ├── issue16037_run.go ├── issue16095.go ├── issue16130.go ├── issue16133.dir │ ├── a1.go │ ├── a2.go │ ├── b.go │ └── c.go ├── issue16133.go ├── issue16193.go ├── issue16249.go ├── issue16306.go ├── issue16317.dir │ ├── a.go │ └── b.go ├── issue16317.go ├── issue16331.go ├── issue16369.go ├── issue16428.go ├── issue16439.go ├── issue16515.go ├── issue16616.dir │ ├── a.go │ ├── b.go │ └── issue16616.go ├── issue16616.go ├── issue16733.go ├── issue16741.go ├── issue16760.go ├── issue16804.go ├── issue16870.go ├── issue16948.go ├── issue16949.go ├── issue16985.go ├── issue17005.go ├── issue17038.go ├── issue17039.go ├── issue17111.go ├── issue17194.go ├── issue17270.go ├── issue17318.go ├── issue17328.go ├── issue17381.go ├── issue17449.go ├── issue17551.go ├── issue17588.go ├── issue17596.go ├── issue17631.go ├── issue17640.go ├── issue17645.go ├── issue17710.go ├── issue17752.go ├── issue17758.go ├── issue17918.go ├── issue18089.go ├── issue18092.go ├── issue18149.go ├── issue18231.go ├── issue18331.go ├── issue18392.go ├── issue18393.go ├── issue18410.go ├── issue18419.dir │ ├── other.go │ └── test.go ├── issue18419.go ├── issue18459.go ├── issue18595.go ├── issue18636.go ├── issue18640.go ├── issue18655.go ├── issue18661.go ├── issue18725.go ├── issue18747.go ├── issue18808.go ├── issue18882.go ├── issue18895.dir │ ├── p.go │ └── q.go ├── issue18895.go ├── issue18906.go ├── issue18911.dir │ ├── a.go │ └── b.go ├── issue18911.go ├── issue18915.go ├── issue18994.go ├── issue19012.go ├── issue19028.dir │ ├── a.go │ └── main.go ├── issue19028.go ├── issue19040.go ├── issue19056.go ├── issue19078.go ├── issue19084.go ├── issue19113.go ├── issue19137.go ├── issue19168.go ├── issue19182.go ├── issue19201.go ├── issue19217.go ├── issue19246.go ├── issue19261.dir │ ├── p.go │ └── q.go ├── issue19261.go ├── issue19275.go ├── issue19323.go ├── issue19359.go ├── issue19467.dir │ ├── mysync.go │ └── z.go ├── issue19467.go ├── issue19482.go ├── issue19507.dir │ ├── div_arm.s │ └── main.go ├── issue19507.go ├── issue19515.go ├── issue19548.dir │ ├── a.go │ └── b.go ├── issue19548.go ├── issue19555.go ├── issue19610.go ├── issue19632.go ├── issue19658.go ├── issue19667.go ├── issue19671.go ├── issue19678.go ├── issue19679.go ├── issue19696.go ├── issue19699.dir │ ├── a.go │ └── b.go ├── issue19699.go ├── issue19699b.go ├── issue19705.go ├── issue19710.go ├── issue19743.go ├── issue19764.dir │ ├── a.go │ └── b.go ├── issue19764.go ├── issue19783.go ├── issue19799.go ├── issue19880.go ├── issue19911.go ├── issue19947.go ├── issue19977.go ├── issue20014.dir │ ├── a │ │ └── a.go │ └── main.go ├── issue20014.go ├── issue20014.out ├── issue20029.go ├── issue20097.go ├── issue20145.go ├── issue20162.go ├── issue20174.go ├── issue20185.go ├── issue20227.go ├── issue20232.go ├── issue20233.go ├── issue20245.go ├── issue20250.go ├── issue20298.go ├── issue20333.go ├── issue20335.go ├── issue20415.go ├── issue20529.go ├── issue20530.go ├── issue20602.go ├── issue20682.dir │ ├── p.go │ ├── q.go │ └── r.go ├── issue20682.go ├── issue20739.go ├── issue20749.go ├── issue20780.go ├── issue20780b.go ├── issue20789.go ├── issue20811.go ├── issue20812.go ├── issue20813.go ├── issue20923.go ├── issue21048.go ├── issue21120.dir │ ├── a.go │ ├── b.go │ └── main.go ├── issue21120.go ├── issue21221.go ├── issue21253.go ├── issue21256.go ├── issue21273.go ├── issue21317.go ├── issue21576.go ├── issue21655.go ├── issue21687.go ├── issue21709.go ├── issue21770.go ├── issue21808.go ├── issue21808.out ├── issue21879.go ├── issue21879.out ├── issue21882.go ├── issue21887.go ├── issue21887.out ├── issue21934.go ├── issue21963.go ├── issue21979.go ├── issue21988.go ├── issue22063.go ├── issue22076.go ├── issue22083.go ├── issue22164.go ├── issue22198.go ├── issue22200.go ├── issue22200b.go ├── issue22305.go ├── issue22326.go ├── issue22326.out ├── issue22327.go ├── issue22344.go ├── issue22351.go ├── issue22389.go ├── issue22429.go ├── issue22458.go ├── issue22581.go ├── issue22605.go ├── issue22660.go ├── issue22662.go ├── issue22662b.go ├── issue22683.go ├── issue22683.out ├── issue22781.go ├── issue22794.go ├── issue22822.go ├── issue22877.dir │ ├── p.go │ └── p.s ├── issue22877.go ├── issue22881.go ├── issue22904.go ├── issue22921.go ├── issue22941.dir │ ├── a.go │ ├── b.go │ └── main.go ├── issue22941.go ├── issue22962.dir │ ├── a.go │ └── b.go ├── issue22962.go ├── issue23017.go ├── issue23093.go ├── issue23094.go ├── issue23116.go ├── issue23179.dir │ ├── a.go │ └── b.go ├── issue23179.go ├── issue23188.go ├── issue23298.go ├── issue23305.go ├── issue23311.dir │ └── main.go ├── issue23311.go ├── issue23414.go ├── issue23489.go ├── issue23504.go ├── issue23521.go ├── issue23522.go ├── issue23536.go ├── issue23545.go ├── issue23546.go ├── issue23586.go ├── issue23587.go ├── issue23609.go ├── issue23664.go ├── issue23719.go ├── issue23732.go ├── issue23734.go ├── issue23780.go ├── issue23781.go ├── issue23812.go ├── issue23814.go ├── issue23823.go ├── issue23837.go ├── issue23868.go ├── issue23870.go ├── issue23912.go ├── issue24120.go ├── issue24159.go ├── issue24173.go ├── issue24187.go ├── issue24339.go ├── issue24419.go ├── issue24449.go ├── issue24470.go ├── issue24488.go ├── issue24491a.go ├── issue24491b.go ├── issue24503.go ├── issue24547.go ├── issue24651a.go ├── issue24651b.go ├── issue24693.dir │ ├── a.go │ ├── b.go │ └── c.go ├── issue24693.go ├── issue24693.out ├── issue24760.go ├── issue24761.dir │ ├── a.go │ └── b.go ├── issue24761.go ├── issue24763.go ├── issue24799.go ├── issue24801.dir │ ├── a.go │ └── main.go ├── issue24801.go ├── issue24817.go ├── issue24937.go ├── issue24939.go ├── issue25006.go ├── issue25055.dir │ ├── a.go │ └── b.go ├── issue25055.go ├── issue25101.go ├── issue25322.go ├── issue25322.out ├── issue25507.go ├── issue25516.go ├── issue25727.go ├── issue25741.go ├── issue25776.go ├── issue25897a.go ├── issue25897b.go ├── issue25958.go ├── issue25966.go ├── issue25984.dir │ ├── p.go │ └── q.go ├── issue25984.go ├── issue25993.go ├── issue26024.go ├── issue26043.go ├── issue26094.go ├── issue26097.go ├── issue26105.go ├── issue26116.go ├── issue26120.go ├── issue2615.go ├── issue26153.go ├── issue26163.go ├── issue26248.go ├── issue26335.go ├── issue26340.go ├── issue26341.dir │ ├── a.go │ └── b.go ├── issue26341.go ├── issue26407.go ├── issue26411.go ├── issue26416.go ├── issue26426.go ├── issue26438.go ├── issue26495.go ├── issue26616.go ├── issue26855.go ├── issue27143.go ├── issue27201.go ├── issue27232.go ├── issue27267.go ├── issue27278.go ├── issue27289.go ├── issue27356.go ├── issue27518a.go ├── issue27518b.go ├── issue27557.go ├── issue27595.go ├── issue27695.go ├── issue27695b.go ├── issue27695c.go ├── issue27718.go ├── issue27732a.go ├── issue27829.go ├── issue27836.dir │ ├── Þfoo.go │ └── Þmain.go ├── issue27836.go ├── issue27938.go ├── issue27961.go ├── issue28055.go ├── issue28058.go ├── issue28078.go ├── issue28079a.go ├── issue28079b.go ├── issue28079c.go ├── issue28085.go ├── issue28268.go ├── issue28390.go ├── issue28390.out ├── issue28430.go ├── issue28445.go ├── issue28450.go ├── issue28601.go ├── issue28616.go ├── issue28688.go ├── issue28748.go ├── issue28797.go ├── issue28926.go ├── issue29013a.go ├── issue29013b.go ├── issue29190.go ├── issue29215.go ├── issue29218.go ├── issue29220.go ├── issue29264.go ├── issue29304.go ├── issue29312.go ├── issue29329.go ├── issue29350.go ├── issue29362.go ├── issue29362b.go ├── issue29389.go ├── issue29402.go ├── issue29504.go ├── issue29562.go ├── issue29610.dir │ ├── a.go │ ├── b.go │ └── main.go ├── issue29610.go ├── issue29612.dir │ ├── main.go │ ├── p1 │ │ └── ssa │ │ │ └── ssa.go │ └── p2 │ │ └── ssa │ │ └── ssa.go ├── issue29612.go ├── issue29735.go ├── issue29855.go ├── issue29870.go ├── issue29870b.go ├── issue29919.dir │ ├── a.go │ └── main.go ├── issue29919.go ├── issue29943.go ├── issue30041.go ├── issue30061.go ├── issue30085.go ├── issue30087.go ├── issue30116.go ├── issue30116.out ├── issue30116u.go ├── issue30116u.out ├── issue30243.go ├── issue30430.go ├── issue30476.go ├── issue30566a.go ├── issue30566b.go ├── issue30606.go ├── issue30606b.go ├── issue30659.dir │ ├── a.go │ └── b.go ├── issue30659.go ├── issue30679.go ├── issue30709.go ├── issue30709.out ├── issue30722.go ├── issue30862.dir │ ├── a │ │ └── a.go │ ├── b │ │ └── b.go │ └── main.go ├── issue30862.go ├── issue30898.go ├── issue30907.dir │ ├── a.go │ └── b.go ├── issue30907.go ├── issue30908.dir │ ├── a.go │ ├── b.go │ └── m.go ├── issue30908.go ├── issue30956.go ├── issue30956.out ├── issue30977.go ├── issue31010.go ├── issue31053.dir │ ├── f1.go │ └── main.go ├── issue31053.go ├── issue31060.go ├── issue31252.dir │ ├── a.go │ ├── b.go │ ├── c.go │ └── main.go ├── issue31252.go ├── issue31412a.go ├── issue31412b.go ├── issue31419.go ├── issue31546.go ├── issue31573.go ├── issue31636.dir │ ├── a.go │ ├── b.go │ ├── c.go │ └── main.go ├── issue31636.go ├── issue31636.out ├── issue31637.dir │ ├── a.go │ └── b.go ├── issue31637.go ├── issue31747.go ├── issue31777.go ├── issue31782.go ├── issue31782.out ├── issue31915.go ├── issue31959.dir │ ├── a.go │ └── main.go ├── issue31959.go ├── issue31959.out ├── issue31987.go ├── issue32133.go ├── issue32175.go ├── issue32175.out ├── issue32187.go ├── issue32288.go ├── issue32347.go ├── issue32454.go ├── issue32477.go ├── issue32560.go ├── issue32595.dir │ ├── a.go │ ├── b.go │ └── main.go ├── issue32595.go ├── issue32680.go ├── issue32680.out ├── issue32680b.go ├── issue32723.go ├── issue32778.dir │ ├── a.go │ └── b.go ├── issue32778.go ├── issue32901.dir │ ├── a.go │ ├── b.go │ ├── c.go │ └── main.go ├── issue32901.go ├── issue32922.dir │ ├── a.go │ └── b.go ├── issue32922.go ├── issue32959.go ├── issue33013.dir │ ├── a.go │ ├── b.go │ ├── c.go │ └── d.go ├── issue33013.go ├── issue33020.dir │ ├── a.go │ └── b.go ├── issue33020.go ├── issue33020a.dir │ ├── a.go │ └── b.go ├── issue33020a.go ├── issue33062.go ├── issue33158.dir │ ├── a.go │ └── b.go ├── issue33158.go ├── issue33219.dir │ ├── a.go │ ├── b.go │ └── c.go ├── issue33219.go ├── issue33275.go ├── issue33275_run.go ├── issue33308.go ├── issue33355.go ├── issue33386.go ├── issue33438.go ├── issue33460.go ├── issue33555.go ├── issue33724.go ├── issue33739.dir │ ├── a.go │ └── b.go ├── issue33739.go ├── issue33866.dir │ ├── a.go │ └── b.go ├── issue33866.go ├── issue33903.go ├── issue34123.go ├── issue34329.go ├── issue34395.go ├── issue34503.dir │ ├── a.go │ └── b.go ├── issue34503.go ├── issue34520.go ├── issue34577.dir │ ├── a.go │ └── b.go ├── issue34577.go ├── issue34723.go ├── issue34966.go ├── issue34968.go ├── issue35027.go ├── issue35073a.go ├── issue35073b.go ├── issue35157.go ├── issue35291.go ├── issue35518.go ├── issue3552.dir │ ├── one.go │ └── two.go ├── issue3552.go ├── issue35576.go ├── issue35576.out ├── issue35586.dir │ ├── a.go │ └── b.go ├── issue35586.go ├── issue35652.go ├── issue35739.dir │ ├── a.go │ └── b.go ├── issue35739.go ├── issue36085.dir │ ├── a.go │ └── b.go ├── issue36085.go ├── issue36259.go ├── issue36437.go ├── issue36516.go ├── issue36705.go ├── issue36723.go ├── issue3705.go ├── issue37246.go ├── issue37513.dir │ ├── main.go │ └── sigill_amd64.s ├── issue37513.go ├── issue37716.go ├── issue37753.go ├── issue3783.go ├── issue37837.dir │ ├── a.go │ └── b.go ├── issue37837.go ├── issue37975.go ├── issue38093.go ├── issue38117.go ├── issue38125.go ├── issue38356.go ├── issue38359.go ├── issue38496.go ├── issue38690.go ├── issue38698.go ├── issue38745.go ├── issue38746.go ├── issue38905.go ├── issue38916.go ├── issue3925.go ├── issue39292.go ├── issue39459.go ├── issue39472.go ├── issue39505.go ├── issue39505b.go ├── issue39541.go ├── issue39651.go ├── issue40152.go ├── issue40252.dir │ ├── a.go │ └── main.go ├── issue40252.go ├── issue40367.go ├── issue40629.go ├── issue4066.go ├── issue40746.go ├── issue4085a.go ├── issue4085b.go ├── issue40917.go ├── issue40954.go ├── issue4097.go ├── issue4099.go ├── issue41239.go ├── issue41247.go ├── issue41440.go ├── issue41500.go ├── issue41575.go ├── issue4162.go ├── issue41635.go ├── issue4167.go ├── issue41680.go ├── issue41736.go ├── issue41780.go ├── issue41872.go ├── issue42032.go ├── issue42058a.go ├── issue42058b.go ├── issue42075.go ├── issue42076.go ├── issue4215.go ├── issue42284.dir │ ├── a.go │ └── b.go ├── issue42284.go ├── issue4232.go ├── issue42401.dir │ ├── a.go │ └── b.go ├── issue42401.go ├── issue4251.go ├── issue4252.dir │ ├── a.go │ └── main.go ├── issue4252.go ├── issue42568.go ├── issue42587.go ├── issue4264.go ├── issue42686.go ├── issue42703.go ├── issue42727.go ├── issue42753.go ├── issue42784.go ├── issue42790.go ├── issue4283.go ├── issue42876.go ├── issue42944.go ├── issue43099.go ├── issue43111.go ├── issue43112.go ├── issue4313.go ├── issue4316.go ├── issue43164.dir │ ├── a.go │ └── b.go ├── issue43164.go ├── issue43167.go ├── issue4323.go ├── issue4326.dir │ ├── p1.go │ ├── p2.go │ ├── q1.go │ ├── q2.go │ └── z.go ├── issue4326.go ├── issue43292.go ├── issue43384.go ├── issue43428.go ├── issue43444.go ├── issue43444.out ├── issue43479.dir │ ├── a.go │ └── b.go ├── issue43479.go ├── issue4348.go ├── issue43480.go ├── issue4353.go ├── issue43551.dir │ ├── a.go │ └── b.go ├── issue43551.go ├── issue43570.go ├── issue4359.go ├── issue43619.go ├── issue43633.dir │ ├── a.go │ └── main.go ├── issue43633.go ├── issue4365.go ├── issue43677.go ├── issue4370.dir │ ├── p1.go │ ├── p2.go │ └── p3.go ├── issue4370.go ├── issue43701.go ├── issue43762.go ├── issue43835.go ├── issue43908.go ├── issue43942.go ├── issue43962.dir │ ├── a.go │ └── b.go ├── issue43962.go ├── issue4396a.go ├── issue4396b.go ├── issue4399.go ├── issue4405.go ├── issue44266.go ├── issue4429.go ├── issue44325.dir │ ├── a.go │ └── b.go ├── issue44325.go ├── issue44330.dir │ ├── a.go │ └── b.go ├── issue44330.go ├── issue44335.dir │ ├── a.go │ └── b.go ├── issue44335.go ├── issue44344.go ├── issue44355.dir │ ├── a.go │ └── b.go ├── issue44355.go ├── issue44370.dir │ ├── a.go │ └── b.go ├── issue44370.go ├── issue44378.go ├── issue44383.go ├── issue44432.go ├── issue44465.go ├── issue4448.go ├── issue4452.go ├── issue4458.go ├── issue4463.go ├── issue4468.go ├── issue4470.go ├── issue44732.dir │ ├── bar │ │ └── bar.go │ ├── foo │ │ └── foo.go │ └── main.go ├── issue44732.go ├── issue44739.go ├── issue44823.go ├── issue44830.go ├── issue4495.go ├── issue45045.go ├── issue4510.dir │ ├── f1.go │ └── f2.go ├── issue4510.go ├── issue45175.go ├── issue4517a.go ├── issue4517b.go ├── issue4517c.go ├── issue4517d.go ├── issue4518.go ├── issue45242.go ├── issue45258.go ├── issue4529.go ├── issue45323.go ├── issue45344.go ├── issue45359.go ├── issue4545.go ├── issue45503.dir │ ├── a.go │ └── b.go ├── issue45503.go ├── issue45606.go ├── issue4562.go ├── issue45665.go ├── issue45693.go ├── issue45706.go ├── issue45743.go ├── issue45804.go ├── issue4585.go ├── issue45851.go ├── issue4590.dir │ ├── pkg1.go │ ├── pkg2.go │ └── prog.go ├── issue4590.go ├── issue45913.go ├── issue45947.go ├── issue45948.go ├── issue4610.go ├── issue4614.go ├── issue4618.go ├── issue4620.go ├── issue46234.go ├── issue46304.go ├── issue46386.go ├── issue46525.go ├── issue4654.go ├── issue46556.go ├── issue4663.go ├── issue46653.dir │ ├── bad │ │ └── bad.go │ └── main.go ├── issue46653.go ├── issue4667.go ├── issue46720.go ├── issue46725.go ├── issue46749.go ├── issue46903.go ├── issue46907.go ├── issue46938.go ├── issue46957.go ├── issue47068.dir │ ├── a.go │ ├── b.go │ └── main.go ├── issue47068.go ├── issue47087.dir │ ├── a.go │ ├── b.go │ └── main.go ├── issue47087.go ├── issue47131.dir │ ├── a.go │ └── b.go ├── issue47131.go ├── issue47185.dir │ ├── bad │ │ └── bad.go │ └── main.go ├── issue47185.go ├── issue47201.dir │ ├── a.go │ └── b.go ├── issue47201.go ├── issue47227.go ├── issue47317.dir │ ├── a.s │ └── x.go ├── issue47317.go ├── issue4734.go ├── issue4748.go ├── issue4752.go ├── issue47712.go ├── issue4776.go ├── issue47771.go ├── issue4785.go ├── issue47928.go ├── issue48026.go ├── issue48033.go ├── issue48088.dir │ ├── a.go │ └── b.go ├── issue48088.go ├── issue48092.go ├── issue48097.go ├── issue4813.go ├── issue48230.go ├── issue48289.go ├── issue48301.go ├── issue48357.go ├── issue48459.go ├── issue4847.go ├── issue48471.go ├── issue48473.go ├── issue48476.go ├── issue48536.go ├── issue48558.go ├── issue48784.go ├── issue4879.dir │ ├── a.go │ └── b.go ├── issue4879.go ├── issue48834.go ├── issue48835.go ├── issue48898.go ├── issue48898.out ├── issue48916.go ├── issue49003.go ├── issue49005a.go ├── issue49005b.go ├── issue49016.dir │ ├── a.go │ ├── b.go │ ├── c.go │ ├── d.go │ ├── e.go │ ├── f.go │ └── g.go ├── issue49016.go ├── issue49029.go ├── issue49094.dir │ ├── a.go │ ├── b.go │ └── p.go ├── issue49094.go ├── issue4909a.go ├── issue4909b.go ├── issue49100.go ├── issue49100.out ├── issue49100b.go ├── issue49100b.out ├── issue49110.go ├── issue49122.go ├── issue49143.dir │ ├── a.go │ ├── b.go │ ├── c.go │ └── p.go ├── issue49143.go ├── issue49145.go ├── issue49145.out ├── issue49240.go ├── issue49249.go ├── issue49282.go ├── issue4932.dir │ ├── foo.go │ ├── state.go │ └── state2.go ├── issue4932.go ├── issue49368.go ├── issue49378.go ├── issue49512.go ├── issue49592.go ├── issue49611.go ├── issue49619.go ├── issue4964.dir │ ├── a.go │ └── b.go ├── issue4964.go ├── issue49665.go ├── issue49665.out ├── issue49767.go ├── issue49814.go ├── issue5002.go ├── issue50169.go ├── issue50190.go ├── issue50372.go ├── issue50439.go ├── issue5056.go ├── issue50671.go ├── issue50672.go ├── issue50788.dir │ ├── a.go │ └── b.go ├── issue50788.go ├── issue50854.go ├── issue5089.go ├── issue5105.dir │ ├── a.go │ └── b.go ├── issue5105.go ├── issue51101.go ├── issue5125.dir │ ├── bug.go │ └── main.go ├── issue5125.go ├── issue51291.dir │ ├── a.go │ └── b.go ├── issue51291.go ├── issue51401.go ├── issue51437.go ├── issue51475.go ├── issue51531.go ├── issue5162.go ├── issue5172.go ├── issue51733.go ├── issue51839.go ├── issue51913.go ├── issue52020.go ├── issue52072.go ├── issue52127.go ├── issue52128.dir │ ├── a.go │ ├── b.go │ └── p.go ├── issue52128.go ├── issue52193.go ├── issue52278.go ├── issue52279.dir │ ├── lib.go │ └── main.go ├── issue52279.go ├── issue5231.go ├── issue52438.go ├── issue5244.go ├── issue52535.go ├── issue5259.dir │ ├── bug.go │ └── main.go ├── issue5259.go ├── issue52590.dir │ ├── a.go │ └── b.go ├── issue52590.go ├── issue5260.dir │ ├── a.go │ └── b.go ├── issue5260.go ├── issue52612.go ├── issue52673.go ├── issue52697.go ├── issue52701.go ├── issue52748.go ├── issue52788.go ├── issue52788a.go ├── issue52788a.out ├── issue52841.go ├── issue52846.go ├── issue52856.dir │ ├── a.go │ └── main.go ├── issue52856.go ├── issue52862.dir │ ├── a.go │ └── b.go ├── issue52862.go ├── issue52870.go ├── issue52871.go ├── issue52907.go ├── issue5291.dir │ ├── pkg1.go │ └── prog.go ├── issue5291.go ├── issue52953.go ├── issue53018.go ├── issue53137.go ├── issue53309.go ├── issue53439.go ├── issue53454.go ├── issue5358.go ├── issue53600.go ├── issue53600.out ├── issue53619.go ├── issue53635.go ├── issue53653.go ├── issue53653.out ├── issue53702.go ├── issue5373.go ├── issue53982.go ├── issue54159.go ├── issue54220.go ├── issue54280.go ├── issue54307.go ├── issue54343.go ├── issue54348.go ├── issue54467.go ├── issue54632.go ├── issue54638.go ├── issue5470.dir │ ├── a.go │ └── b.go ├── issue5470.go ├── issue54722.go ├── issue54722b.go ├── issue54911.go ├── issue54912.dir │ ├── a.go │ └── main.go ├── issue54912.go ├── issue5493.go ├── issue54959.go ├── issue54991.go ├── issue55122.go ├── issue55122b.go ├── issue5515.go ├── issue55242.go ├── issue5581.go ├── issue55889.go ├── issue5607.go ├── issue5609.go ├── issue56103.go ├── issue56105.go ├── issue56109.go ├── issue5614.dir │ ├── rethinkgo.go │ ├── x.go │ └── y.go ├── issue5614.go ├── issue56141.go ├── issue56220.go ├── issue56280.dir │ ├── a.go │ └── main.go ├── issue56280.go ├── issue56727.go ├── issue56768.go ├── issue56777.go ├── issue56778.dir │ ├── a.go │ └── b.go ├── issue56778.go ├── issue56923.go ├── issue5698.go ├── issue56990.go ├── issue56990.out ├── issue5704.go ├── issue57184.go ├── issue57309.go ├── issue5753.go ├── issue5755.dir │ ├── a.go │ └── main.go ├── issue5755.go ├── issue57778.go ├── issue57823.go ├── issue57846.go ├── issue5793.go ├── issue57955.go ├── issue5809.go ├── issue58161.go ├── issue5820.go ├── issue58293.go ├── issue58300.go ├── issue58300.out ├── issue58300b.go ├── issue58300b.out ├── issue58325.go ├── issue58339.dir │ ├── a.go │ └── b.go ├── issue58339.go ├── issue58341.go ├── issue58345.go ├── issue5841.go ├── issue58439.go ├── issue5856.go ├── issue58563.dir │ ├── a.go │ └── main.go ├── issue58563.go ├── issue58572.go ├── issue58671.go ├── issue58826.go ├── issue5910.dir │ ├── a.go │ └── main.go ├── issue5910.go ├── issue59169.go ├── issue59174.go ├── issue59190.go ├── issue59293.go ├── issue59334.go ├── issue59338.go ├── issue59367.go ├── issue59378.go ├── issue59404.go ├── issue59404part2.go ├── issue59411.go ├── issue5957.dir │ ├── a.go │ ├── b.go │ └── c.go ├── issue5957.go ├── issue59572.go ├── issue59572.out ├── issue5963.go ├── issue59638.go ├── issue59680.go ├── issue59709.dir │ ├── aconfig.go │ ├── bresource.go │ ├── cmem.go │ ├── dcache.go │ └── main.go ├── issue59709.go ├── issue6004.go ├── issue6036.go ├── issue6055.go ├── issue60582.go ├── issue60601.go ├── issue60945.dir │ ├── a.go │ └── b.go ├── issue60945.go ├── issue60982.go ├── issue60990.go ├── issue60991.go ├── issue61127.go ├── issue61187.go ├── issue6131.go ├── issue6140.go ├── issue61778.go ├── issue61895.go ├── issue61908.go ├── issue61992.go ├── issue62203.go ├── issue62313.go ├── issue62360.go ├── issue62469.go ├── issue6247.go ├── issue62498.dir │ ├── a.go │ └── main.go ├── issue62498.go ├── issue62515.go ├── issue6269.go ├── issue6295.dir │ ├── p0.go │ ├── p1.go │ └── p2.go ├── issue6295.go ├── issue6298.go ├── issue63333.go ├── issue63436.go ├── issue63462.go ├── issue63489a.go ├── issue63489b.go ├── issue63490.go ├── issue63505.go ├── issue63657.go ├── issue63955.go ├── issue6399.go ├── issue6402.go ├── issue6403.go ├── issue6405.go ├── issue6406.go ├── issue6428.go ├── issue64565.go ├── issue64565.out ├── issue64606.go ├── issue64715.go ├── issue64715.out ├── issue64826.go ├── issue6500.go ├── issue6513.dir │ ├── a.go │ ├── b.go │ └── main.go ├── issue6513.go ├── issue65593.go ├── issue6572.go ├── issue65808.go ├── issue65957.dir │ ├── a.go │ └── main.go ├── issue65957.go ├── issue66066.go ├── issue66066b.go ├── issue66096.go ├── issue66575.go ├── issue66575.out ├── issue6671.go ├── issue6703a.go ├── issue6703b.go ├── issue6703c.go ├── issue6703d.go ├── issue6703e.go ├── issue6703f.go ├── issue6703g.go ├── issue6703h.go ├── issue6703i.go ├── issue6703j.go ├── issue6703k.go ├── issue6703l.go ├── issue6703m.go ├── issue6703n.go ├── issue6703o.go ├── issue6703p.go ├── issue6703q.go ├── issue6703r.go ├── issue6703s.go ├── issue6703t.go ├── issue6703u.go ├── issue6703v.go ├── issue6703w.go ├── issue6703x.go ├── issue6703y.go ├── issue6703z.go ├── issue67141.go ├── issue67160.go ├── issue67255.go ├── issue6750.go ├── issue6772.go ├── issue6789.dir │ ├── a.go │ └── b.go ├── issue6789.go ├── issue68227.go ├── issue6847.go ├── issue6866.go ├── issue6889.go ├── issue6899.go ├── issue6899.out ├── issue6902.go ├── issue69110.go ├── issue6964.go ├── issue6977.go ├── issue7023.dir │ ├── a.go │ └── b.go ├── issue7023.go ├── issue7044.go ├── issue7050.go ├── issue7083.go ├── issue7129.go ├── issue7150.go ├── issue7153.go ├── issue7214.go ├── issue7223.go ├── issue7272.go ├── issue7310.go ├── issue7316.go ├── issue7346.go ├── issue7366.go ├── issue7405.go ├── issue7419.go ├── issue7525.go ├── issue7525b.go ├── issue7525c.go ├── issue7525d.go ├── issue7525e.go ├── issue7538a.go ├── issue7538b.go ├── issue7547.go ├── issue7550.go ├── issue7590.go ├── issue7648.dir │ ├── a.go │ └── b.go ├── issue7648.go ├── issue7675.go ├── issue7690.go ├── issue7740.go ├── issue7742.go ├── issue7746.go ├── issue7760.go ├── issue7794.go ├── issue7863.go ├── issue7867.go ├── issue7884.go ├── issue7921.go ├── issue7944.go ├── issue7995.go ├── issue7995b.dir │ ├── x1.go │ └── x2.go ├── issue7995b.go ├── issue7996.go ├── issue7997.go ├── issue7998.go ├── issue8004.go ├── issue8011.go ├── issue8017.go ├── issue8028.go ├── issue8036.go ├── issue8039.go ├── issue8042.go ├── issue8047.go ├── issue8047b.go ├── issue8048.go ├── issue8060.dir │ ├── a.go │ └── b.go ├── issue8060.go ├── issue8073.go ├── issue8074.go ├── issue8076.go ├── issue8079.go ├── issue8132.go ├── issue8139.go ├── issue8154.go ├── issue8155.go ├── issue8158.go ├── issue8183.go ├── issue8280.dir │ ├── a.go │ └── b.go ├── issue8280.go ├── issue8311.go ├── issue8325.go ├── issue8336.go ├── issue8347.go ├── issue8385.go ├── issue8438.go ├── issue8440.go ├── issue8475.go ├── issue8501.go ├── issue8507.go ├── issue8606.go ├── issue8606b.go ├── issue8612.go ├── issue8613.go ├── issue8620.go ├── issue8745.go ├── issue8761.go ├── issue8836.go ├── issue887.go ├── issue8947.go ├── issue8961.go ├── issue9006.go ├── issue9017.go ├── issue9036.go ├── issue9076.go ├── issue9083.go ├── issue9110.go ├── issue9321.go ├── issue9355.dir │ └── a.go ├── issue9355.go ├── issue9370.go ├── issue9432.go ├── issue9521.go ├── issue9537.dir │ ├── a.go │ └── b.go ├── issue9537.go ├── issue9604.go ├── issue9604b.go ├── issue9608.dir │ └── issue9608.go ├── issue9608.go ├── issue9634.go ├── issue9691.go ├── issue9731.go ├── issue9738.go ├── issue9862.go ├── issue9862_run.go ├── notinheap.go ├── notinheap2.go └── notinheap3.go ├── float_lit.go ├── float_lit2.go ├── float_lit3.go ├── floatcmp.go ├── for.go ├── func.go ├── func1.go ├── func2.go ├── func3.go ├── func4.go ├── func5.go ├── func6.go ├── func7.go ├── func8.go ├── funcdup.go ├── funcdup2.go ├── fuse.go ├── gc.go ├── gc1.go ├── gc2.go ├── gcgort.go ├── gcstring.go ├── goprint.go ├── goprint.out ├── goto.go ├── heapsampling.go ├── helloworld.go ├── helloworld.out ├── if.go ├── import.go ├── import1.go ├── import2.dir ├── import2.go └── import3.go ├── import2.go ├── import4.dir ├── empty.go └── import4.go ├── import4.go ├── import5.go ├── import6.go ├── index.go ├── index0.go ├── index1.go ├── index2.go ├── indirect.go ├── indirect1.go ├── init.go ├── init1.go ├── initcomma.go ├── initexp.go ├── initialize.go ├── initializerr.go ├── initloop.go ├── inline.go ├── inline_big.go ├── inline_caller.go ├── inline_callers.go ├── inline_endian.go ├── inline_literal.go ├── inline_math_bits_rotate.go ├── inline_sync.go ├── inline_variadic.go ├── int_lit.go ├── intcvt.go ├── interface ├── assertinline.go ├── bigdata.go ├── convert.go ├── convert1.go ├── convert2.go ├── embed.go ├── embed1.dir │ ├── embed0.go │ └── embed1.go ├── embed1.go ├── embed2.go ├── embed3.dir │ ├── embed0.go │ └── embed1.go ├── embed3.go ├── explicit.go ├── fail.go ├── fake.go ├── noeq.go ├── pointer.go ├── private.dir │ ├── private1.go │ └── prog.go ├── private.go ├── receiver.go ├── receiver1.go ├── recursive.go ├── recursive1.dir │ ├── recursive1.go │ └── recursive2.go ├── recursive1.go ├── returntype.go └── struct.go ├── intrinsic.dir └── main.go ├── intrinsic.go ├── intrinsic_atomic.go ├── iota.go ├── ken ├── array.go ├── chan.go ├── chan1.go ├── complit.go ├── convert.go ├── cplx0.go ├── cplx0.out ├── cplx1.go ├── cplx2.go ├── cplx3.go ├── cplx4.go ├── cplx5.go ├── divconst.go ├── divmod.go ├── embed.go ├── for.go ├── interbasic.go ├── interfun.go ├── intervar.go ├── label.go ├── litfun.go ├── mfunc.go ├── modconst.go ├── ptrfun.go ├── ptrvar.go ├── range.go ├── rob1.go ├── rob2.go ├── robfor.go ├── robfunc.go ├── shift.go ├── simparray.go ├── simpbool.go ├── simpconv.go ├── simpfun.go ├── simpswitch.go ├── simpvar.go ├── slicearray.go ├── sliceslice.go ├── string.go ├── string.out └── strvar.go ├── label.go ├── label1.go ├── linkmain.go ├── linkmain_run.go ├── linkname.dir ├── linkname1.go ├── linkname2.go └── linkname3.go ├── linkname.go ├── linkname3.go ├── linkobj.go ├── linkx.go ├── linkx_run.go ├── literal.go ├── literal2.go ├── live.go ├── live1.go ├── live2.go ├── live_regabi.go ├── live_uintptrkeepalive.go ├── loopbce.go ├── mainsig.go ├── makechan.go ├── makemap.go ├── makenew.go ├── makeslice.go ├── mallocfin.go ├── map.go ├── map1.go ├── mapclear.go ├── maplinear.go ├── maymorestack.go ├── mergemul.go ├── method.go ├── method1.go ├── method2.go ├── method3.go ├── method4.dir ├── method4a.go └── prog.go ├── method4.go ├── method5.go ├── method6.go ├── method7.go ├── named.go ├── named1.go ├── newinline.go ├── nil.go ├── nilcheck.go ├── nilptr.go ├── nilptr2.go ├── nilptr3.go ├── nilptr4.go ├── nilptr5.go ├── nilptr5_aix.go ├── nilptr5_wasm.go ├── nilptr_aix.go ├── noinit.go ├── nosplit.go ├── nowritebarrier.go ├── nul1.go ├── opt_branchlikely.go ├── parentype.go ├── peano.go ├── phiopt.go ├── print.go ├── print.out ├── printbig.go ├── printbig.out ├── prove.go ├── prove_constant_folding.go ├── prove_invert_loop_with_unused_iterators.go ├── range.go ├── range2.go ├── range3.go ├── range4.go ├── rangegen.go ├── recover.go ├── recover1.go ├── recover2.go ├── recover3.go ├── recover4.go ├── recover5.go ├── reflectmethod1.go ├── reflectmethod2.go ├── reflectmethod3.go ├── reflectmethod4.go ├── reflectmethod5.go ├── reflectmethod6.go ├── reflectmethod7.go ├── reflectmethod8.go ├── rename.go ├── rename1.go ├── reorder.go ├── reorder2.go ├── retjmp.dir ├── a.s └── main.go ├── retjmp.go ├── return.go ├── rotate.go ├── rotate0.go ├── rotate1.go ├── rotate2.go ├── rotate3.go ├── rune.go ├── runtime.go ├── runtime ├── README └── inlinegcpc.go ├── shift1.go ├── shift2.go ├── shift3.go ├── sieve.go ├── sigchld.go ├── sigchld.out ├── simassign.go ├── sizeof.go ├── slice3.go ├── slice3err.go ├── slicecap.go ├── sliceopt.go ├── solitaire.go ├── stack.go ├── stackobj.go ├── stackobj2.go ├── stackobj3.go ├── strcopy.go ├── strength.go ├── stress ├── maps.go ├── parsego.go └── runstress.go ├── string_lit.go ├── stringrange.go ├── struct0.go ├── switch.go ├── switch2.go ├── switch3.go ├── switch4.go ├── switch5.go ├── switch6.go ├── switch7.go ├── syntax ├── chan.go ├── chan1.go ├── composite.go ├── ddd.go ├── else.go ├── if.go ├── import.go ├── initvar.go ├── semi1.go ├── semi2.go ├── semi3.go ├── semi4.go ├── semi5.go ├── semi6.go ├── semi7.go ├── topexpr.go ├── typesw.go ├── vareq.go └── vareq1.go ├── tighten.go ├── tinyfin.go ├── torture.go ├── turing.go ├── typecheck.go ├── typecheckloop.go ├── typeparam ├── absdiff.go ├── absdiff2.go ├── absdiff3.go ├── absdiffimp.dir │ ├── a.go │ └── main.go ├── absdiffimp.go ├── absdiffimp2.dir │ ├── a.go │ └── main.go ├── absdiffimp2.go ├── adder.go ├── aliasimp.dir │ ├── a.go │ └── main.go ├── aliasimp.go ├── append.go ├── boundmethod.go ├── builtins.go ├── chans.go ├── chansimp.dir │ ├── a.go │ └── main.go ├── chansimp.go ├── combine.go ├── cons.go ├── dedup.dir │ ├── a.go │ ├── b.go │ ├── c.go │ └── main.go ├── dedup.go ├── dedup.out ├── devirtualize1.go ├── devirtualize2.go ├── dictionaryCapture-noinline.go ├── dictionaryCapture.go ├── dottype.go ├── dottype.out ├── double.go ├── eface.go ├── equal.go ├── fact.go ├── factimp.dir │ ├── a.go │ └── main.go ├── factimp.go ├── gencrawler.dir │ ├── a.go │ └── main.go ├── gencrawler.go ├── gencrawler.out ├── genembed.go ├── genembed2.go ├── geninline.dir │ ├── a.go │ └── main.go ├── geninline.go ├── graph.go ├── ifaceconv.go ├── importtest.go ├── index.go ├── index2.go ├── interfacearg.go ├── issue23536.go ├── issue376214.go ├── issue39755.go ├── issue42758.go ├── issue44688.go ├── issue45547.go ├── issue45722.go ├── issue45738.go ├── issue45817.go ├── issue46461.go ├── issue46461b.dir │ ├── a.go │ └── b.go ├── issue46461b.go ├── issue46472.go ├── issue46591.go ├── issue47258.go ├── issue47272.go ├── issue47272.out ├── issue47514.go ├── issue47514b.go ├── issue47514c.dir │ ├── a.go │ └── main.go ├── issue47514c.go ├── issue47631.go ├── issue47676.go ├── issue47684.go ├── issue47684b.go ├── issue47684c.go ├── issue47708.go ├── issue47710.go ├── issue47713.go ├── issue47713.out ├── issue47716.go ├── issue47723.go ├── issue47740.go ├── issue47740.out ├── issue47740b.go ├── issue47775.dir │ ├── b.go │ └── main.go ├── issue47775.go ├── issue47775b.go ├── issue47797.go ├── issue47877.go ├── issue47878.go ├── issue47892.dir │ ├── a.go │ └── main.go ├── issue47892.go ├── issue47892b.dir │ ├── a.go │ └── main.go ├── issue47892b.go ├── issue47896.go ├── issue47901.go ├── issue47924.go ├── issue47925.go ├── issue47925b.go ├── issue47925c.go ├── issue47925d.go ├── issue47929.go ├── issue47948.go ├── issue47966.go ├── issue48013.go ├── issue48016.go ├── issue48030.go ├── issue48042.go ├── issue48047.go ├── issue48049.go ├── issue48056.go ├── issue48094.dir │ ├── a.go │ └── main.go ├── issue48094.go ├── issue48094b.dir │ ├── a.go │ └── b.go ├── issue48094b.go ├── issue48137.go ├── issue48185a.dir │ ├── p.go │ └── p_test.go ├── issue48185a.go ├── issue48185b.dir │ ├── a.go │ └── main.go ├── issue48185b.go ├── issue48191.go ├── issue48198.go ├── issue48225.go ├── issue48253.go ├── issue48276a.go ├── issue48276a.out ├── issue48276b.go ├── issue48280.dir │ ├── a.go │ └── main.go ├── issue48280.go ├── issue48306.dir │ ├── a.go │ └── main.go ├── issue48306.go ├── issue48317.go ├── issue48318.go ├── issue48337a.dir │ ├── a.go │ └── main.go ├── issue48337a.go ├── issue48337a.out ├── issue48337b.dir │ ├── a.go │ └── main.go ├── issue48337b.go ├── issue48344.go ├── issue48424.go ├── issue48453.go ├── issue48454.dir │ ├── a.go │ ├── b.go │ └── main.go ├── issue48454.go ├── issue48462.dir │ ├── a.go │ └── main.go ├── issue48462.go ├── issue48537.go ├── issue48538.go ├── issue48598.go ├── issue48602.go ├── issue48604.go ├── issue48609.go ├── issue48617.go ├── issue48645a.go ├── issue48645a.out ├── issue48645b.go ├── issue48711.go ├── issue48716.dir │ ├── a.go │ └── main.go ├── issue48716.go ├── issue48838.go ├── issue48962.dir │ ├── a.go │ └── b.go ├── issue48962.go ├── issue49027.dir │ ├── a.go │ └── main.go ├── issue49027.go ├── issue49049.go ├── issue49241.dir │ ├── a.go │ ├── b.go │ ├── c.go │ └── main.go ├── issue49241.go ├── issue49246.dir │ ├── a.go │ └── b.go ├── issue49246.go ├── issue49295.go ├── issue49309.go ├── issue49421.go ├── issue49432.go ├── issue49497.dir │ ├── a.go │ └── main.go ├── issue49497.go ├── issue49516.go ├── issue49524.dir │ ├── a.go │ └── main.go ├── issue49524.go ├── issue49536.dir │ ├── a.go │ └── b.go ├── issue49536.go ├── issue49538.go ├── issue49547.go ├── issue49611.go ├── issue49659.dir │ ├── a.go │ └── b.go ├── issue49659.go ├── issue49659b.go ├── issue49667.dir │ ├── a.go │ ├── b.go │ └── main.go ├── issue49667.go ├── issue49875.go ├── issue49893.dir │ ├── a.go │ ├── b.go │ └── main.go ├── issue49893.go ├── issue50002.go ├── issue50109.go ├── issue50109.out ├── issue50109b.go ├── issue50121.dir │ ├── a.go │ └── main.go ├── issue50121.go ├── issue50121b.dir │ ├── a.go │ ├── b.go │ ├── c.go │ ├── d.go │ └── main.go ├── issue50121b.go ├── issue50147.go ├── issue50177.go ├── issue50193.go ├── issue50193.out ├── issue50259.go ├── issue50264.go ├── issue50317.go ├── issue50417.go ├── issue50417b.go ├── issue50419.go ├── issue50437.dir │ ├── a.go │ └── b.go ├── issue50437.go ├── issue50481b.dir │ ├── b.go │ └── main.go ├── issue50481b.go ├── issue50481c.dir │ ├── a.go │ └── main.go ├── issue50481c.go ├── issue50481c.out ├── issue50485.dir │ ├── a.go │ └── main.go ├── issue50485.go ├── issue50486.dir │ ├── goerror_fp.go │ └── main.go ├── issue50486.go ├── issue50552.dir │ ├── a.go │ └── main.go ├── issue50552.go ├── issue50561.dir │ ├── diameter.go │ └── main.go ├── issue50561.go ├── issue50598.dir │ ├── a0.go │ ├── a1.go │ ├── a2.go │ └── main.go ├── issue50598.go ├── issue50642.go ├── issue50690a.go ├── issue50690a.out ├── issue50690b.go ├── issue50690b.out ├── issue50690c.go ├── issue50690c.out ├── issue50833.go ├── issue50841.dir │ ├── a.go │ └── b.go ├── issue50841.go ├── issue50993.go ├── issue51219.dir │ ├── a.go │ └── main.go ├── issue51219.go ├── issue51219.out ├── issue51219b.dir │ ├── a.go │ ├── b.go │ └── p.go ├── issue51219b.go ├── issue51232.go ├── issue51233.go ├── issue51236.go ├── issue51245.go ├── issue51250a.dir │ ├── a.go │ ├── b.go │ └── main.go ├── issue51250a.go ├── issue51303.go ├── issue51303.out ├── issue51355.go ├── issue51367.dir │ ├── a.go │ └── main.go ├── issue51367.go ├── issue51423.dir │ ├── a.go │ └── b.go ├── issue51423.go ├── issue51521.go ├── issue51522a.go ├── issue51522b.go ├── issue51700.go ├── issue51765.go ├── issue51832.go ├── issue51836.dir │ ├── a.go │ ├── aa.go │ └── p.go ├── issue51836.go ├── issue51840.go ├── issue51909.go ├── issue51925.go ├── issue52026.go ├── issue52117.dir │ ├── a.go │ └── b.go ├── issue52117.go ├── issue52124.go ├── issue52228.go ├── issue52241.go ├── issue53087.go ├── issue53254.go ├── issue53390.go ├── issue53406.go ├── issue53419.go ├── issue53477.go ├── issue53762.go ├── issue54135.go ├── issue54225.go ├── issue54302.dir │ ├── a.go │ └── main.go ├── issue54302.go ├── issue54456.go ├── issue54497.go ├── issue54535.go ├── issue54537.go ├── issue54765.go ├── issue55101.go ├── issue58513.go ├── list.go ├── list2.go ├── listimp.dir │ ├── a.go │ └── main.go ├── listimp.go ├── listimp2.dir │ ├── a.go │ └── main.go ├── listimp2.go ├── lockable.go ├── map.go ├── mapimp.dir │ ├── a.go │ └── main.go ├── mapimp.go ├── maps.go ├── mapsimp.dir │ ├── a.go │ └── main.go ├── mapsimp.go ├── mdempsky │ ├── 1.dir │ │ ├── a.go │ │ └── b.go │ ├── 1.go │ ├── 10.dir │ │ ├── a.go │ │ └── b.go │ ├── 10.go │ ├── 12.dir │ │ ├── a.go │ │ └── main.go │ ├── 12.go │ ├── 13.go │ ├── 14.go │ ├── 15.go │ ├── 16.go │ ├── 17.go │ ├── 18.go │ ├── 18.out │ ├── 19.go │ ├── 2.go │ ├── 20.go │ ├── 21.go │ ├── 3.dir │ │ ├── a.go │ │ └── b.go │ ├── 3.go │ ├── 4.dir │ │ ├── a.go │ │ └── b.go │ ├── 4.go │ ├── 5.go │ ├── 6.go │ ├── 7.dir │ │ ├── a.go │ │ └── b.go │ ├── 7.go │ ├── 8.dir │ │ ├── a.go │ │ └── b.go │ ├── 8.go │ └── 9.go ├── metrics.go ├── min.go ├── mincheck.dir │ ├── a.go │ └── main.go ├── mincheck.go ├── minimp.dir │ ├── a.go │ └── main.go ├── minimp.go ├── mutualimp.dir │ ├── a.go │ └── b.go ├── mutualimp.go ├── nested.go ├── nested.out ├── ordered.go ├── orderedmap.go ├── orderedmapsimp.dir │ ├── a.go │ └── main.go ├── orderedmapsimp.go ├── pair.go ├── pairimp.dir │ ├── a.go │ └── main.go ├── pairimp.go ├── pragma.go ├── recoverimp.dir │ ├── a.go │ └── main.go ├── recoverimp.go ├── recoverimp.out ├── select.dir │ ├── a.go │ └── main.go ├── select.go ├── sets.go ├── setsimp.dir │ ├── a.go │ └── main.go ├── setsimp.go ├── settable.go ├── shape1.go ├── shape1.out ├── sliceimp.dir │ ├── a.go │ └── main.go ├── sliceimp.go ├── slices.go ├── smallest.go ├── smoketest.go ├── stringable.go ├── stringer.go ├── stringerimp.dir │ ├── a.go │ └── main.go ├── stringerimp.go ├── struct.go ├── structinit.dir │ ├── a.go │ ├── b.go │ └── main.go ├── structinit.go ├── subdict.go ├── sum.go ├── tparam1.go ├── typelist.go ├── typeswitch1.go ├── typeswitch1.out ├── typeswitch2.go ├── typeswitch2.out ├── typeswitch3.go ├── typeswitch3.out ├── typeswitch4.go ├── typeswitch4.out ├── typeswitch5.go ├── typeswitch5.out ├── typeswitch6.go ├── typeswitch6.out ├── typeswitch7.go ├── typeswitch7.out ├── valimp.dir │ ├── a.go │ └── main.go ├── valimp.go └── value.go ├── typeswitch.go ├── typeswitch1.go ├── typeswitch2.go ├── typeswitch2b.go ├── typeswitch3.go ├── uintptrescapes.dir ├── a.go └── main.go ├── uintptrescapes.go ├── uintptrescapes2.go ├── uintptrescapes3.go ├── uintptrkeepalive.go ├── undef.go ├── unsafe_slice_data.go ├── unsafe_string.go ├── unsafe_string_data.go ├── unsafebuiltins.go ├── used.go ├── utf.go ├── varerr.go ├── varinit.go ├── winbatch.go ├── writebarrier.go ├── zerodivide.go └── zerosize.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/LICENSE -------------------------------------------------------------------------------- /PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/PATENTS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | go1.22.12-devel-cf 2 | time 2025-01-31T18:38:03Z 3 | -------------------------------------------------------------------------------- /api/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/README -------------------------------------------------------------------------------- /api/except.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/except.txt -------------------------------------------------------------------------------- /api/go1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.1.txt -------------------------------------------------------------------------------- /api/go1.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.10.txt -------------------------------------------------------------------------------- /api/go1.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.11.txt -------------------------------------------------------------------------------- /api/go1.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.12.txt -------------------------------------------------------------------------------- /api/go1.13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.13.txt -------------------------------------------------------------------------------- /api/go1.14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.14.txt -------------------------------------------------------------------------------- /api/go1.15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.15.txt -------------------------------------------------------------------------------- /api/go1.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.16.txt -------------------------------------------------------------------------------- /api/go1.17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.17.txt -------------------------------------------------------------------------------- /api/go1.18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.18.txt -------------------------------------------------------------------------------- /api/go1.19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.19.txt -------------------------------------------------------------------------------- /api/go1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.2.txt -------------------------------------------------------------------------------- /api/go1.20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.20.txt -------------------------------------------------------------------------------- /api/go1.21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.21.txt -------------------------------------------------------------------------------- /api/go1.22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.22.txt -------------------------------------------------------------------------------- /api/go1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.3.txt -------------------------------------------------------------------------------- /api/go1.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.4.txt -------------------------------------------------------------------------------- /api/go1.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.5.txt -------------------------------------------------------------------------------- /api/go1.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.6.txt -------------------------------------------------------------------------------- /api/go1.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.7.txt -------------------------------------------------------------------------------- /api/go1.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.8.txt -------------------------------------------------------------------------------- /api/go1.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.9.txt -------------------------------------------------------------------------------- /api/go1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/api/go1.txt -------------------------------------------------------------------------------- /codereview.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/codereview.cfg -------------------------------------------------------------------------------- /doc/asm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/doc/asm.html -------------------------------------------------------------------------------- /doc/go1.17_spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/doc/go1.17_spec.html -------------------------------------------------------------------------------- /doc/go_mem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/doc/go_mem.html -------------------------------------------------------------------------------- /doc/go_spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/doc/go_spec.html -------------------------------------------------------------------------------- /doc/godebug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/doc/godebug.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /go.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/go.env -------------------------------------------------------------------------------- /lib/time/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/lib/time/README -------------------------------------------------------------------------------- /lib/time/mkzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/lib/time/mkzip.go -------------------------------------------------------------------------------- /lib/time/update.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/lib/time/update.bash -------------------------------------------------------------------------------- /lib/time/zoneinfo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/lib/time/zoneinfo.zip -------------------------------------------------------------------------------- /misc/cgo/gmp/fib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/misc/cgo/gmp/fib.go -------------------------------------------------------------------------------- /misc/cgo/gmp/gmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/misc/cgo/gmp/gmp.go -------------------------------------------------------------------------------- /misc/cgo/gmp/pi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/misc/cgo/gmp/pi.go -------------------------------------------------------------------------------- /misc/editors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/misc/editors -------------------------------------------------------------------------------- /misc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/misc/go.mod -------------------------------------------------------------------------------- /misc/ios/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/misc/ios/README -------------------------------------------------------------------------------- /misc/ios/clangwrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/misc/ios/clangwrap.sh -------------------------------------------------------------------------------- /misc/ios/detect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/misc/ios/detect.go -------------------------------------------------------------------------------- /misc/wasm/wasm_exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/misc/wasm/wasm_exec.js -------------------------------------------------------------------------------- /src/Make.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/Make.dist -------------------------------------------------------------------------------- /src/README.vendor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/README.vendor -------------------------------------------------------------------------------- /src/all.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/all.bash -------------------------------------------------------------------------------- /src/all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/all.bat -------------------------------------------------------------------------------- /src/all.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/all.rc -------------------------------------------------------------------------------- /src/archive/tar/testdata/small.txt: -------------------------------------------------------------------------------- 1 | Kilts -------------------------------------------------------------------------------- /src/archive/tar/testdata/small2.txt: -------------------------------------------------------------------------------- 1 | Google.com 2 | -------------------------------------------------------------------------------- /src/arena/arena.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/arena/arena.go -------------------------------------------------------------------------------- /src/bootstrap.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/bootstrap.bash -------------------------------------------------------------------------------- /src/bufio/bufio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/bufio/bufio.go -------------------------------------------------------------------------------- /src/bufio/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/bufio/scan.go -------------------------------------------------------------------------------- /src/bufio/scan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/bufio/scan_test.go -------------------------------------------------------------------------------- /src/buildall.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/buildall.bash -------------------------------------------------------------------------------- /src/builtin/builtin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/builtin/builtin.go -------------------------------------------------------------------------------- /src/bytes/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/bytes/buffer.go -------------------------------------------------------------------------------- /src/bytes/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/bytes/bytes.go -------------------------------------------------------------------------------- /src/bytes/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/bytes/reader.go -------------------------------------------------------------------------------- /src/clean.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/clean.bash -------------------------------------------------------------------------------- /src/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/clean.bat -------------------------------------------------------------------------------- /src/clean.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/clean.rc -------------------------------------------------------------------------------- /src/cmd/README.vendor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/README.vendor -------------------------------------------------------------------------------- /src/cmd/api/testdata/src/issue21181/dep/p_amd64.go: -------------------------------------------------------------------------------- 1 | package dep 2 | -------------------------------------------------------------------------------- /src/cmd/api/testdata/src/issue64958/p/p.go: -------------------------------------------------------------------------------- 1 | package p 2 | 3 | type BasicAlias = uint8 4 | -------------------------------------------------------------------------------- /src/cmd/asm/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/asm/doc.go -------------------------------------------------------------------------------- /src/cmd/asm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/asm/main.go -------------------------------------------------------------------------------- /src/cmd/buildid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/buildid/doc.go -------------------------------------------------------------------------------- /src/cmd/cgo/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/cgo/ast.go -------------------------------------------------------------------------------- /src/cmd/cgo/ast_go1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/cgo/ast_go1.go -------------------------------------------------------------------------------- /src/cmd/cgo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/cgo/doc.go -------------------------------------------------------------------------------- /src/cmd/cgo/gcc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/cgo/gcc.go -------------------------------------------------------------------------------- /src/cmd/cgo/godefs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/cgo/godefs.go -------------------------------------------------------------------------------- /src/cmd/cgo/internal/teststdio/testdata/hello.out: -------------------------------------------------------------------------------- 1 | hello, world 2 | -------------------------------------------------------------------------------- /src/cmd/cgo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/cgo/main.go -------------------------------------------------------------------------------- /src/cmd/cgo/out.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/cgo/out.go -------------------------------------------------------------------------------- /src/cmd/cgo/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/cgo/util.go -------------------------------------------------------------------------------- /src/cmd/compile/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/compile/doc.go -------------------------------------------------------------------------------- /src/cmd/covdata/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/covdata/doc.go -------------------------------------------------------------------------------- /src/cmd/cover/cover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/cover/cover.go -------------------------------------------------------------------------------- /src/cmd/cover/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/cover/doc.go -------------------------------------------------------------------------------- /src/cmd/cover/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/cover/func.go -------------------------------------------------------------------------------- /src/cmd/cover/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/cover/html.go -------------------------------------------------------------------------------- /src/cmd/dist/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/dist/README -------------------------------------------------------------------------------- /src/cmd/dist/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/dist/build.go -------------------------------------------------------------------------------- /src/cmd/dist/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/dist/doc.go -------------------------------------------------------------------------------- /src/cmd/dist/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/dist/exec.go -------------------------------------------------------------------------------- /src/cmd/dist/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/dist/main.go -------------------------------------------------------------------------------- /src/cmd/dist/quoted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/dist/quoted.go -------------------------------------------------------------------------------- /src/cmd/dist/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/dist/test.go -------------------------------------------------------------------------------- /src/cmd/dist/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/dist/util.go -------------------------------------------------------------------------------- /src/cmd/dist/vfp_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/dist/vfp_arm.s -------------------------------------------------------------------------------- /src/cmd/doc/dirs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/doc/dirs.go -------------------------------------------------------------------------------- /src/cmd/doc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/doc/main.go -------------------------------------------------------------------------------- /src/cmd/doc/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/doc/pkg.go -------------------------------------------------------------------------------- /src/cmd/doc/testdata/nested/empty/empty.go: -------------------------------------------------------------------------------- 1 | package empty 2 | -------------------------------------------------------------------------------- /src/cmd/fix/cftype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/fix/cftype.go -------------------------------------------------------------------------------- /src/cmd/fix/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/fix/context.go -------------------------------------------------------------------------------- /src/cmd/fix/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/fix/doc.go -------------------------------------------------------------------------------- /src/cmd/fix/egltype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/fix/egltype.go -------------------------------------------------------------------------------- /src/cmd/fix/fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/fix/fix.go -------------------------------------------------------------------------------- /src/cmd/fix/gotypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/fix/gotypes.go -------------------------------------------------------------------------------- /src/cmd/fix/jnitype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/fix/jnitype.go -------------------------------------------------------------------------------- /src/cmd/fix/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/fix/main.go -------------------------------------------------------------------------------- /src/cmd/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/go.mod -------------------------------------------------------------------------------- /src/cmd/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/go.sum -------------------------------------------------------------------------------- /src/cmd/go/alldocs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/go/alldocs.go -------------------------------------------------------------------------------- /src/cmd/go/go11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/go/go11.go -------------------------------------------------------------------------------- /src/cmd/go/go_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/go/go_test.go -------------------------------------------------------------------------------- /src/cmd/go/internal/imports/testdata/android/.h.go: -------------------------------------------------------------------------------- 1 | package android 2 | 3 | import _ "h" 4 | -------------------------------------------------------------------------------- /src/cmd/go/internal/imports/testdata/android/tags.txt: -------------------------------------------------------------------------------- 1 | android arm64 -------------------------------------------------------------------------------- /src/cmd/go/internal/imports/testdata/android/want.txt: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | d 5 | e 6 | f 7 | -------------------------------------------------------------------------------- /src/cmd/go/internal/imports/testdata/illumos/.h.go: -------------------------------------------------------------------------------- 1 | package android 2 | 3 | import _ "h" 4 | -------------------------------------------------------------------------------- /src/cmd/go/internal/imports/testdata/illumos/tags.txt: -------------------------------------------------------------------------------- 1 | illumos amd64 2 | -------------------------------------------------------------------------------- /src/cmd/go/internal/imports/testdata/illumos/want.txt: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | d 5 | e 6 | f 7 | -------------------------------------------------------------------------------- /src/cmd/go/internal/imports/testdata/star/tags.txt: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /src/cmd/go/internal/modindex/testdata/ignore_non_source/a.syso: -------------------------------------------------------------------------------- 1 | package ignore_non_source 2 | -------------------------------------------------------------------------------- /src/cmd/go/internal/modindex/testdata/ignore_non_source/b.go: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cmd/go/internal/modindex/testdata/ignore_non_source/bar.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cmd/go/internal/modindex/testdata/ignore_non_source/baz.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cmd/go/internal/modindex/testdata/ignore_non_source/c.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cmd/go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/go/main.go -------------------------------------------------------------------------------- /src/cmd/go/testdata/vcstest/insecure.txt: -------------------------------------------------------------------------------- 1 | handle insecure 2 | -------------------------------------------------------------------------------- /src/cmd/gofmt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/gofmt/doc.go -------------------------------------------------------------------------------- /src/cmd/gofmt/gofmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/gofmt/gofmt.go -------------------------------------------------------------------------------- /src/cmd/gofmt/testdata/stdin1.golden: -------------------------------------------------------------------------------- 1 | //gofmt -stdin 2 | 3 | if x { 4 | y 5 | } 6 | -------------------------------------------------------------------------------- /src/cmd/gofmt/testdata/stdin1.input: -------------------------------------------------------------------------------- 1 | //gofmt -stdin 2 | 3 | if x { 4 | y 5 | } 6 | -------------------------------------------------------------------------------- /src/cmd/internal/test2json/testdata/empty.json: -------------------------------------------------------------------------------- 1 | {"Action":"start"} 2 | -------------------------------------------------------------------------------- /src/cmd/internal/test2json/testdata/empty.test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cmd/link/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/link/doc.go -------------------------------------------------------------------------------- /src/cmd/link/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/link/main.go -------------------------------------------------------------------------------- /src/cmd/nm/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/nm/doc.go -------------------------------------------------------------------------------- /src/cmd/nm/nm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/nm/nm.go -------------------------------------------------------------------------------- /src/cmd/nm/nm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/nm/nm_test.go -------------------------------------------------------------------------------- /src/cmd/pack/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/pack/doc.go -------------------------------------------------------------------------------- /src/cmd/pack/pack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/pack/pack.go -------------------------------------------------------------------------------- /src/cmd/pprof/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/pprof/README -------------------------------------------------------------------------------- /src/cmd/pprof/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/pprof/doc.go -------------------------------------------------------------------------------- /src/cmd/pprof/pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/pprof/pprof.go -------------------------------------------------------------------------------- /src/cmd/tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/tools/tools.go -------------------------------------------------------------------------------- /src/cmd/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/trace/doc.go -------------------------------------------------------------------------------- /src/cmd/trace/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/trace/main.go -------------------------------------------------------------------------------- /src/cmd/trace/pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/trace/pprof.go -------------------------------------------------------------------------------- /src/cmd/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/trace/trace.go -------------------------------------------------------------------------------- /src/cmd/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /src/cmd/vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/cmd/vet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/vet/README -------------------------------------------------------------------------------- /src/cmd/vet/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/vet/doc.go -------------------------------------------------------------------------------- /src/cmd/vet/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmd/vet/main.go -------------------------------------------------------------------------------- /src/cmp.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmp.bash -------------------------------------------------------------------------------- /src/cmp/cmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmp/cmp.go -------------------------------------------------------------------------------- /src/cmp/cmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/cmp/cmp_test.go -------------------------------------------------------------------------------- /src/compress/flate/testdata/huffman-zero.wb.expect: -------------------------------------------------------------------------------- 1 | 2$ -------------------------------------------------------------------------------- /src/compress/flate/testdata/huffman-zero.wb.expect-noinput: -------------------------------------------------------------------------------- 1 | 2$ -------------------------------------------------------------------------------- /src/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/context/context.go -------------------------------------------------------------------------------- /src/context/x_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/context/x_test.go -------------------------------------------------------------------------------- /src/crypto/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/crypto.go -------------------------------------------------------------------------------- /src/crypto/dsa/dsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/dsa/dsa.go -------------------------------------------------------------------------------- /src/crypto/md5/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/md5/gen.go -------------------------------------------------------------------------------- /src/crypto/md5/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/md5/md5.go -------------------------------------------------------------------------------- /src/crypto/rc4/rc4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/rc4/rc4.go -------------------------------------------------------------------------------- /src/crypto/rsa/pss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/rsa/pss.go -------------------------------------------------------------------------------- /src/crypto/rsa/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/rsa/rsa.go -------------------------------------------------------------------------------- /src/crypto/tls/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/tls/auth.go -------------------------------------------------------------------------------- /src/crypto/tls/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/tls/conn.go -------------------------------------------------------------------------------- /src/crypto/tls/ech.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/tls/ech.go -------------------------------------------------------------------------------- /src/crypto/tls/hpke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/tls/hpke.go -------------------------------------------------------------------------------- /src/crypto/tls/prf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/tls/prf.go -------------------------------------------------------------------------------- /src/crypto/tls/quic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/tls/quic.go -------------------------------------------------------------------------------- /src/crypto/tls/testdata/Client-TLSv10-Ed25519: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/crypto/tls/testdata/Client-TLSv11-Ed25519: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/crypto/tls/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/tls/tls.go -------------------------------------------------------------------------------- /src/crypto/x509/oid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/crypto/x509/oid.go -------------------------------------------------------------------------------- /src/debug/dwarf/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/debug/dwarf/buf.go -------------------------------------------------------------------------------- /src/debug/elf/elf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/debug/elf/elf.go -------------------------------------------------------------------------------- /src/debug/elf/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/debug/elf/file.go -------------------------------------------------------------------------------- /src/debug/macho/fat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/debug/macho/fat.go -------------------------------------------------------------------------------- /src/debug/pe/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/debug/pe/file.go -------------------------------------------------------------------------------- /src/debug/pe/pe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/debug/pe/pe.go -------------------------------------------------------------------------------- /src/debug/pe/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/debug/pe/string.go -------------------------------------------------------------------------------- /src/debug/pe/symbol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/debug/pe/symbol.go -------------------------------------------------------------------------------- /src/embed/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/embed/embed.go -------------------------------------------------------------------------------- /src/embed/internal/embedtest/concurrency.txt: -------------------------------------------------------------------------------- 1 | Concurrency is not parallelism. 2 | -------------------------------------------------------------------------------- /src/embed/internal/embedtest/testdata/glass.txt: -------------------------------------------------------------------------------- 1 | I can eat glass and it doesn't hurt me. 2 | -------------------------------------------------------------------------------- /src/embed/internal/embedtest/testdata/hello.txt: -------------------------------------------------------------------------------- 1 | hello, world 2 | -------------------------------------------------------------------------------- /src/embed/internal/embedtest/testdata/i/j/k/k8s.txt: -------------------------------------------------------------------------------- 1 | kubernetes 2 | -------------------------------------------------------------------------------- /src/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/errors/errors.go -------------------------------------------------------------------------------- /src/errors/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/errors/join.go -------------------------------------------------------------------------------- /src/errors/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/errors/wrap.go -------------------------------------------------------------------------------- /src/expvar/expvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/expvar/expvar.go -------------------------------------------------------------------------------- /src/flag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/flag/flag.go -------------------------------------------------------------------------------- /src/flag/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/flag/flag_test.go -------------------------------------------------------------------------------- /src/fmt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/fmt/doc.go -------------------------------------------------------------------------------- /src/fmt/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/fmt/errors.go -------------------------------------------------------------------------------- /src/fmt/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/fmt/errors_test.go -------------------------------------------------------------------------------- /src/fmt/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/fmt/export_test.go -------------------------------------------------------------------------------- /src/fmt/fmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/fmt/fmt_test.go -------------------------------------------------------------------------------- /src/fmt/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/fmt/format.go -------------------------------------------------------------------------------- /src/fmt/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/fmt/print.go -------------------------------------------------------------------------------- /src/fmt/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/fmt/scan.go -------------------------------------------------------------------------------- /src/fmt/scan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/fmt/scan_test.go -------------------------------------------------------------------------------- /src/fmt/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/fmt/state_test.go -------------------------------------------------------------------------------- /src/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go.mod -------------------------------------------------------------------------------- /src/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go.sum -------------------------------------------------------------------------------- /src/go/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/ast/ast.go -------------------------------------------------------------------------------- /src/go/ast/ast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/ast/ast_test.go -------------------------------------------------------------------------------- /src/go/ast/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/ast/filter.go -------------------------------------------------------------------------------- /src/go/ast/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/ast/import.go -------------------------------------------------------------------------------- /src/go/ast/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/ast/print.go -------------------------------------------------------------------------------- /src/go/ast/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/ast/resolve.go -------------------------------------------------------------------------------- /src/go/ast/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/ast/scope.go -------------------------------------------------------------------------------- /src/go/ast/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/ast/walk.go -------------------------------------------------------------------------------- /src/go/build/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/build/build.go -------------------------------------------------------------------------------- /src/go/build/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/build/doc.go -------------------------------------------------------------------------------- /src/go/build/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/build/gc.go -------------------------------------------------------------------------------- /src/go/build/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/build/gccgo.go -------------------------------------------------------------------------------- /src/go/build/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/build/read.go -------------------------------------------------------------------------------- /src/go/build/testdata/bads/bad.s: -------------------------------------------------------------------------------- 1 | ;/ 2 | -------------------------------------------------------------------------------- /src/go/build/testdata/cgo_disabled/empty.go: -------------------------------------------------------------------------------- 1 | package cgo_disabled 2 | -------------------------------------------------------------------------------- /src/go/build/testdata/directives/a.go: -------------------------------------------------------------------------------- 1 | //go:main1 2 | 3 | package p 4 | -------------------------------------------------------------------------------- /src/go/build/testdata/directives/a_test.go: -------------------------------------------------------------------------------- 1 | //go:test1 2 | 3 | package p 4 | -------------------------------------------------------------------------------- /src/go/build/testdata/doc/a_test.go: -------------------------------------------------------------------------------- 1 | // Doc from xtests 2 | package doc_test 3 | -------------------------------------------------------------------------------- /src/go/build/testdata/doc/b_test.go: -------------------------------------------------------------------------------- 1 | package doc_test 2 | -------------------------------------------------------------------------------- /src/go/build/testdata/doc/c_test.go: -------------------------------------------------------------------------------- 1 | package doc 2 | -------------------------------------------------------------------------------- /src/go/build/testdata/doc/d_test.go: -------------------------------------------------------------------------------- 1 | // Doc from regular tests. 2 | package doc 3 | -------------------------------------------------------------------------------- /src/go/build/testdata/doc/e.go: -------------------------------------------------------------------------------- 1 | package doc 2 | -------------------------------------------------------------------------------- /src/go/build/testdata/doc/f.go: -------------------------------------------------------------------------------- 1 | // Correct 2 | package doc 3 | -------------------------------------------------------------------------------- /src/go/build/testdata/empty/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/go/build/testdata/withvendor/src/a/b/b.go: -------------------------------------------------------------------------------- 1 | package b 2 | 3 | import _ "c/d" 4 | -------------------------------------------------------------------------------- /src/go/build/testdata/withvendor/src/a/vendor/c/d/d.go: -------------------------------------------------------------------------------- 1 | package d 2 | -------------------------------------------------------------------------------- /src/go/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/doc/Makefile -------------------------------------------------------------------------------- /src/go/doc/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/doc/comment.go -------------------------------------------------------------------------------- /src/go/doc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/doc/doc.go -------------------------------------------------------------------------------- /src/go/doc/doc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/doc/doc_test.go -------------------------------------------------------------------------------- /src/go/doc/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/doc/example.go -------------------------------------------------------------------------------- /src/go/doc/exports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/doc/exports.go -------------------------------------------------------------------------------- /src/go/doc/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/doc/filter.go -------------------------------------------------------------------------------- /src/go/doc/headscan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/doc/headscan.go -------------------------------------------------------------------------------- /src/go/doc/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/doc/reader.go -------------------------------------------------------------------------------- /src/go/doc/synopsis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/doc/synopsis.go -------------------------------------------------------------------------------- /src/go/parser/testdata/goversion/t01.go: -------------------------------------------------------------------------------- 1 | //go:build windows 2 | 3 | package none 4 | -------------------------------------------------------------------------------- /src/go/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/token/token.go -------------------------------------------------------------------------------- /src/go/types/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/alias.go -------------------------------------------------------------------------------- /src/go/types/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/api.go -------------------------------------------------------------------------------- /src/go/types/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/array.go -------------------------------------------------------------------------------- /src/go/types/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/basic.go -------------------------------------------------------------------------------- /src/go/types/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/call.go -------------------------------------------------------------------------------- /src/go/types/chan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/chan.go -------------------------------------------------------------------------------- /src/go/types/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/check.go -------------------------------------------------------------------------------- /src/go/types/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/const.go -------------------------------------------------------------------------------- /src/go/types/decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/decl.go -------------------------------------------------------------------------------- /src/go/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/errors.go -------------------------------------------------------------------------------- /src/go/types/eval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/eval.go -------------------------------------------------------------------------------- /src/go/types/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/expr.go -------------------------------------------------------------------------------- /src/go/types/gotype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/gotype.go -------------------------------------------------------------------------------- /src/go/types/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/index.go -------------------------------------------------------------------------------- /src/go/types/infer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/infer.go -------------------------------------------------------------------------------- /src/go/types/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/labels.go -------------------------------------------------------------------------------- /src/go/types/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/lookup.go -------------------------------------------------------------------------------- /src/go/types/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/map.go -------------------------------------------------------------------------------- /src/go/types/mono.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/mono.go -------------------------------------------------------------------------------- /src/go/types/named.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/named.go -------------------------------------------------------------------------------- /src/go/types/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/object.go -------------------------------------------------------------------------------- /src/go/types/objset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/objset.go -------------------------------------------------------------------------------- /src/go/types/return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/return.go -------------------------------------------------------------------------------- /src/go/types/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/scope.go -------------------------------------------------------------------------------- /src/go/types/sizes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/sizes.go -------------------------------------------------------------------------------- /src/go/types/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/slice.go -------------------------------------------------------------------------------- /src/go/types/stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/stmt.go -------------------------------------------------------------------------------- /src/go/types/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/struct.go -------------------------------------------------------------------------------- /src/go/types/subst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/subst.go -------------------------------------------------------------------------------- /src/go/types/tuple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/tuple.go -------------------------------------------------------------------------------- /src/go/types/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/type.go -------------------------------------------------------------------------------- /src/go/types/under.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/under.go -------------------------------------------------------------------------------- /src/go/types/unify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/unify.go -------------------------------------------------------------------------------- /src/go/types/union.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/union.go -------------------------------------------------------------------------------- /src/go/types/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/go/types/util.go -------------------------------------------------------------------------------- /src/hash/fnv/fnv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/hash/fnv/fnv.go -------------------------------------------------------------------------------- /src/hash/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/hash/hash.go -------------------------------------------------------------------------------- /src/hash/test_gen.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/hash/test_gen.awk -------------------------------------------------------------------------------- /src/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/html/entity.go -------------------------------------------------------------------------------- /src/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/html/escape.go -------------------------------------------------------------------------------- /src/html/fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/html/fuzz_test.go -------------------------------------------------------------------------------- /src/image/draw/draw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/image/draw/draw.go -------------------------------------------------------------------------------- /src/image/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/image/format.go -------------------------------------------------------------------------------- /src/image/geom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/image/geom.go -------------------------------------------------------------------------------- /src/image/geom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/image/geom_test.go -------------------------------------------------------------------------------- /src/image/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/image/image.go -------------------------------------------------------------------------------- /src/image/jpeg/fdct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/image/jpeg/fdct.go -------------------------------------------------------------------------------- /src/image/jpeg/idct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/image/jpeg/idct.go -------------------------------------------------------------------------------- /src/image/jpeg/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/image/jpeg/scan.go -------------------------------------------------------------------------------- /src/image/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/image/names.go -------------------------------------------------------------------------------- /src/image/png/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/image/png/fuzz.go -------------------------------------------------------------------------------- /src/image/png/paeth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/image/png/paeth.go -------------------------------------------------------------------------------- /src/image/ycbcr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/image/ycbcr.go -------------------------------------------------------------------------------- /src/internal/cpu/cpu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/internal/cpu/cpu.s -------------------------------------------------------------------------------- /src/io/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/example_test.go -------------------------------------------------------------------------------- /src/io/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/export_test.go -------------------------------------------------------------------------------- /src/io/fs/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/fs/format.go -------------------------------------------------------------------------------- /src/io/fs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/fs/fs.go -------------------------------------------------------------------------------- /src/io/fs/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/fs/fs_test.go -------------------------------------------------------------------------------- /src/io/fs/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/fs/glob.go -------------------------------------------------------------------------------- /src/io/fs/glob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/fs/glob_test.go -------------------------------------------------------------------------------- /src/io/fs/readdir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/fs/readdir.go -------------------------------------------------------------------------------- /src/io/fs/readfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/fs/readfile.go -------------------------------------------------------------------------------- /src/io/fs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/fs/stat.go -------------------------------------------------------------------------------- /src/io/fs/stat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/fs/stat_test.go -------------------------------------------------------------------------------- /src/io/fs/sub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/fs/sub.go -------------------------------------------------------------------------------- /src/io/fs/sub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/fs/sub_test.go -------------------------------------------------------------------------------- /src/io/fs/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/fs/walk.go -------------------------------------------------------------------------------- /src/io/fs/walk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/fs/walk_test.go -------------------------------------------------------------------------------- /src/io/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/io.go -------------------------------------------------------------------------------- /src/io/io_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/io_test.go -------------------------------------------------------------------------------- /src/io/ioutil/testdata/hello: -------------------------------------------------------------------------------- 1 | Hello, Gophers! 2 | -------------------------------------------------------------------------------- /src/io/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/multi.go -------------------------------------------------------------------------------- /src/io/multi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/multi_test.go -------------------------------------------------------------------------------- /src/io/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/pipe.go -------------------------------------------------------------------------------- /src/io/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/io/pipe_test.go -------------------------------------------------------------------------------- /src/iter/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/iter/iter.go -------------------------------------------------------------------------------- /src/iter/pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/iter/pull_test.go -------------------------------------------------------------------------------- /src/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/log/log.go -------------------------------------------------------------------------------- /src/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/log/log_test.go -------------------------------------------------------------------------------- /src/log/slog/attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/log/slog/attr.go -------------------------------------------------------------------------------- /src/log/slog/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/log/slog/doc.go -------------------------------------------------------------------------------- /src/log/slog/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/log/slog/level.go -------------------------------------------------------------------------------- /src/log/slog/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/log/slog/logger.go -------------------------------------------------------------------------------- /src/log/slog/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/log/slog/record.go -------------------------------------------------------------------------------- /src/log/slog/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/log/slog/value.go -------------------------------------------------------------------------------- /src/log/syslog/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/log/syslog/doc.go -------------------------------------------------------------------------------- /src/make.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/make.bash -------------------------------------------------------------------------------- /src/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/make.bat -------------------------------------------------------------------------------- /src/make.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/make.rc -------------------------------------------------------------------------------- /src/maps/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/maps/maps.go -------------------------------------------------------------------------------- /src/maps/maps.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/maps/maps.s -------------------------------------------------------------------------------- /src/maps/maps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/maps/maps_test.go -------------------------------------------------------------------------------- /src/math/abs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/abs.go -------------------------------------------------------------------------------- /src/math/acos_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/acos_s390x.s -------------------------------------------------------------------------------- /src/math/acosh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/acosh.go -------------------------------------------------------------------------------- /src/math/acosh_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/acosh_s390x.s -------------------------------------------------------------------------------- /src/math/all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/all_test.go -------------------------------------------------------------------------------- /src/math/asin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/asin.go -------------------------------------------------------------------------------- /src/math/asin_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/asin_s390x.s -------------------------------------------------------------------------------- /src/math/asinh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/asinh.go -------------------------------------------------------------------------------- /src/math/asinh_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/asinh_s390x.s -------------------------------------------------------------------------------- /src/math/atan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/atan.go -------------------------------------------------------------------------------- /src/math/atan2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/atan2.go -------------------------------------------------------------------------------- /src/math/atan2_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/atan2_s390x.s -------------------------------------------------------------------------------- /src/math/atan_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/atan_s390x.s -------------------------------------------------------------------------------- /src/math/atanh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/atanh.go -------------------------------------------------------------------------------- /src/math/atanh_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/atanh_s390x.s -------------------------------------------------------------------------------- /src/math/big/arith.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/big/arith.go -------------------------------------------------------------------------------- /src/math/big/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/big/doc.go -------------------------------------------------------------------------------- /src/math/big/float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/big/float.go -------------------------------------------------------------------------------- /src/math/big/ftoa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/big/ftoa.go -------------------------------------------------------------------------------- /src/math/big/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/big/int.go -------------------------------------------------------------------------------- /src/math/big/nat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/big/nat.go -------------------------------------------------------------------------------- /src/math/big/natdiv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/big/natdiv.go -------------------------------------------------------------------------------- /src/math/big/prime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/big/prime.go -------------------------------------------------------------------------------- /src/math/big/rat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/big/rat.go -------------------------------------------------------------------------------- /src/math/big/sqrt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/big/sqrt.go -------------------------------------------------------------------------------- /src/math/bits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/bits.go -------------------------------------------------------------------------------- /src/math/bits/bits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/bits/bits.go -------------------------------------------------------------------------------- /src/math/cbrt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/cbrt.go -------------------------------------------------------------------------------- /src/math/cbrt_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/cbrt_s390x.s -------------------------------------------------------------------------------- /src/math/cmplx/abs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/cmplx/abs.go -------------------------------------------------------------------------------- /src/math/cmplx/asin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/cmplx/asin.go -------------------------------------------------------------------------------- /src/math/cmplx/conj.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/cmplx/conj.go -------------------------------------------------------------------------------- /src/math/cmplx/exp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/cmplx/exp.go -------------------------------------------------------------------------------- /src/math/cmplx/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/cmplx/log.go -------------------------------------------------------------------------------- /src/math/cmplx/pow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/cmplx/pow.go -------------------------------------------------------------------------------- /src/math/cmplx/rect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/cmplx/rect.go -------------------------------------------------------------------------------- /src/math/cmplx/sin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/cmplx/sin.go -------------------------------------------------------------------------------- /src/math/cmplx/sqrt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/cmplx/sqrt.go -------------------------------------------------------------------------------- /src/math/cmplx/tan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/cmplx/tan.go -------------------------------------------------------------------------------- /src/math/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/const.go -------------------------------------------------------------------------------- /src/math/const_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/const_test.go -------------------------------------------------------------------------------- /src/math/copysign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/copysign.go -------------------------------------------------------------------------------- /src/math/cosh_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/cosh_s390x.s -------------------------------------------------------------------------------- /src/math/dim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/dim.go -------------------------------------------------------------------------------- /src/math/dim_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/dim_amd64.s -------------------------------------------------------------------------------- /src/math/dim_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/dim_arm64.s -------------------------------------------------------------------------------- /src/math/dim_asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/dim_asm.go -------------------------------------------------------------------------------- /src/math/erf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/erf.go -------------------------------------------------------------------------------- /src/math/erfinv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/erfinv.go -------------------------------------------------------------------------------- /src/math/exp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/exp.go -------------------------------------------------------------------------------- /src/math/exp_asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/exp_asm.go -------------------------------------------------------------------------------- /src/math/expm1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/expm1.go -------------------------------------------------------------------------------- /src/math/floor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/floor.go -------------------------------------------------------------------------------- /src/math/fma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/fma.go -------------------------------------------------------------------------------- /src/math/frexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/frexp.go -------------------------------------------------------------------------------- /src/math/gamma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/gamma.go -------------------------------------------------------------------------------- /src/math/hypot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/hypot.go -------------------------------------------------------------------------------- /src/math/j0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/j0.go -------------------------------------------------------------------------------- /src/math/j1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/j1.go -------------------------------------------------------------------------------- /src/math/jn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/jn.go -------------------------------------------------------------------------------- /src/math/ldexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/ldexp.go -------------------------------------------------------------------------------- /src/math/lgamma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/lgamma.go -------------------------------------------------------------------------------- /src/math/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/log.go -------------------------------------------------------------------------------- /src/math/log10.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/log10.go -------------------------------------------------------------------------------- /src/math/log1p.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/log1p.go -------------------------------------------------------------------------------- /src/math/log_asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/log_asm.go -------------------------------------------------------------------------------- /src/math/logb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/logb.go -------------------------------------------------------------------------------- /src/math/mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/mod.go -------------------------------------------------------------------------------- /src/math/modf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/modf.go -------------------------------------------------------------------------------- /src/math/pow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/pow.go -------------------------------------------------------------------------------- /src/math/pow10.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/pow10.go -------------------------------------------------------------------------------- /src/math/signbit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/signbit.go -------------------------------------------------------------------------------- /src/math/sin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/sin.go -------------------------------------------------------------------------------- /src/math/sincos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/sincos.go -------------------------------------------------------------------------------- /src/math/sinh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/sinh.go -------------------------------------------------------------------------------- /src/math/sqrt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/sqrt.go -------------------------------------------------------------------------------- /src/math/stubs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/stubs.go -------------------------------------------------------------------------------- /src/math/tan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/tan.go -------------------------------------------------------------------------------- /src/math/tanh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/tanh.go -------------------------------------------------------------------------------- /src/math/unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/math/unsafe.go -------------------------------------------------------------------------------- /src/mime/grammar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/mime/grammar.go -------------------------------------------------------------------------------- /src/mime/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/mime/type.go -------------------------------------------------------------------------------- /src/net/cgo_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/cgo_aix.go -------------------------------------------------------------------------------- /src/net/cgo_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/cgo_bsd.go -------------------------------------------------------------------------------- /src/net/cgo_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/cgo_stub.go -------------------------------------------------------------------------------- /src/net/cgo_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/cgo_unix.go -------------------------------------------------------------------------------- /src/net/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/conf.go -------------------------------------------------------------------------------- /src/net/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/dial.go -------------------------------------------------------------------------------- /src/net/fd_fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/fd_fake.go -------------------------------------------------------------------------------- /src/net/fd_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/fd_js.go -------------------------------------------------------------------------------- /src/net/fd_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/fd_plan9.go -------------------------------------------------------------------------------- /src/net/fd_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/fd_posix.go -------------------------------------------------------------------------------- /src/net/fd_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/fd_unix.go -------------------------------------------------------------------------------- /src/net/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/file.go -------------------------------------------------------------------------------- /src/net/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/hook.go -------------------------------------------------------------------------------- /src/net/hosts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/hosts.go -------------------------------------------------------------------------------- /src/net/http/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/http/doc.go -------------------------------------------------------------------------------- /src/net/http/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/http/fs.go -------------------------------------------------------------------------------- /src/net/http/jar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/http/jar.go -------------------------------------------------------------------------------- /src/net/http/testdata/file: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /src/net/http/testdata/index.html: -------------------------------------------------------------------------------- 1 | index.html says hello 2 | -------------------------------------------------------------------------------- /src/net/http/testdata/style.css: -------------------------------------------------------------------------------- 1 | body {} 2 | -------------------------------------------------------------------------------- /src/net/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/ip.go -------------------------------------------------------------------------------- /src/net/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/ip_test.go -------------------------------------------------------------------------------- /src/net/ipsock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/ipsock.go -------------------------------------------------------------------------------- /src/net/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/lookup.go -------------------------------------------------------------------------------- /src/net/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/mac.go -------------------------------------------------------------------------------- /src/net/mac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/mac_test.go -------------------------------------------------------------------------------- /src/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/net.go -------------------------------------------------------------------------------- /src/net/net_fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/net_fake.go -------------------------------------------------------------------------------- /src/net/net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/net_test.go -------------------------------------------------------------------------------- /src/net/netgo_on.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/netgo_on.go -------------------------------------------------------------------------------- /src/net/nss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/nss.go -------------------------------------------------------------------------------- /src/net/nss_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/nss_test.go -------------------------------------------------------------------------------- /src/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/parse.go -------------------------------------------------------------------------------- /src/net/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/pipe.go -------------------------------------------------------------------------------- /src/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/port.go -------------------------------------------------------------------------------- /src/net/rawconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/rawconn.go -------------------------------------------------------------------------------- /src/net/sock_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/sock_bsd.go -------------------------------------------------------------------------------- /src/net/tcpsock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/tcpsock.go -------------------------------------------------------------------------------- /src/net/testdata/empty-resolv.conf: -------------------------------------------------------------------------------- 1 | # /etc/resolv.conf 2 | -------------------------------------------------------------------------------- /src/net/testdata/freebsd-usevc-resolv.conf: -------------------------------------------------------------------------------- 1 | options usevc -------------------------------------------------------------------------------- /src/net/testdata/invalid-ndots-resolv.conf: -------------------------------------------------------------------------------- 1 | options ndots:invalid -------------------------------------------------------------------------------- /src/net/testdata/large-ndots-resolv.conf: -------------------------------------------------------------------------------- 1 | options ndots:16 -------------------------------------------------------------------------------- /src/net/testdata/linux-use-vc-resolv.conf: -------------------------------------------------------------------------------- 1 | options use-vc -------------------------------------------------------------------------------- /src/net/testdata/negative-ndots-resolv.conf: -------------------------------------------------------------------------------- 1 | options ndots:-1 -------------------------------------------------------------------------------- /src/net/testdata/openbsd-tcp-resolv.conf: -------------------------------------------------------------------------------- 1 | options tcp -------------------------------------------------------------------------------- /src/net/testdata/single-request-reopen-resolv.conf: -------------------------------------------------------------------------------- 1 | options single-request-reopen -------------------------------------------------------------------------------- /src/net/testdata/single-request-resolv.conf: -------------------------------------------------------------------------------- 1 | options single-request -------------------------------------------------------------------------------- /src/net/testdata/singleline-hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.2 odin -------------------------------------------------------------------------------- /src/net/udpsock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/udpsock.go -------------------------------------------------------------------------------- /src/net/unixsock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/unixsock.go -------------------------------------------------------------------------------- /src/net/url/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/net/url/url.go -------------------------------------------------------------------------------- /src/os/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/dir.go -------------------------------------------------------------------------------- /src/os/dir_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/dir_plan9.go -------------------------------------------------------------------------------- /src/os/dir_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/dir_unix.go -------------------------------------------------------------------------------- /src/os/dirent_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/dirent_js.go -------------------------------------------------------------------------------- /src/os/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/env.go -------------------------------------------------------------------------------- /src/os/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/env_test.go -------------------------------------------------------------------------------- /src/os/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/error.go -------------------------------------------------------------------------------- /src/os/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/exec.go -------------------------------------------------------------------------------- /src/os/exec/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/exec/exec.go -------------------------------------------------------------------------------- /src/os/exec_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/exec_unix.go -------------------------------------------------------------------------------- /src/os/fifo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/fifo_test.go -------------------------------------------------------------------------------- /src/os/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/file.go -------------------------------------------------------------------------------- /src/os/file_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/file_unix.go -------------------------------------------------------------------------------- /src/os/getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/getwd.go -------------------------------------------------------------------------------- /src/os/os_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/os_test.go -------------------------------------------------------------------------------- /src/os/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/path.go -------------------------------------------------------------------------------- /src/os/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/path_test.go -------------------------------------------------------------------------------- /src/os/path_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/path_unix.go -------------------------------------------------------------------------------- /src/os/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/pipe_test.go -------------------------------------------------------------------------------- /src/os/pipe_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/pipe_unix.go -------------------------------------------------------------------------------- /src/os/pipe_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/pipe_wasm.go -------------------------------------------------------------------------------- /src/os/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/proc.go -------------------------------------------------------------------------------- /src/os/rawconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/rawconn.go -------------------------------------------------------------------------------- /src/os/read_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/read_test.go -------------------------------------------------------------------------------- /src/os/signal/sig.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/signal/sig.s -------------------------------------------------------------------------------- /src/os/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/stat.go -------------------------------------------------------------------------------- /src/os/stat_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/stat_aix.go -------------------------------------------------------------------------------- /src/os/stat_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/stat_js.go -------------------------------------------------------------------------------- /src/os/stat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/stat_test.go -------------------------------------------------------------------------------- /src/os/stat_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/stat_unix.go -------------------------------------------------------------------------------- /src/os/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/sys.go -------------------------------------------------------------------------------- /src/os/sys_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/sys_aix.go -------------------------------------------------------------------------------- /src/os/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/sys_bsd.go -------------------------------------------------------------------------------- /src/os/sys_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/sys_js.go -------------------------------------------------------------------------------- /src/os/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/sys_linux.go -------------------------------------------------------------------------------- /src/os/sys_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/sys_plan9.go -------------------------------------------------------------------------------- /src/os/sys_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/sys_unix.go -------------------------------------------------------------------------------- /src/os/tempfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/tempfile.go -------------------------------------------------------------------------------- /src/os/testdata/dirfs/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/os/testdata/dirfs/b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/os/testdata/dirfs/dir/x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/os/testdata/hello: -------------------------------------------------------------------------------- 1 | Hello, Gophers! 2 | -------------------------------------------------------------------------------- /src/os/testdata/issue37161/a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /src/os/testdata/issue37161/b: -------------------------------------------------------------------------------- 1 | b 2 | -------------------------------------------------------------------------------- /src/os/testdata/issue37161/c: -------------------------------------------------------------------------------- 1 | c 2 | -------------------------------------------------------------------------------- /src/os/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/types.go -------------------------------------------------------------------------------- /src/os/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/os/user/user.go -------------------------------------------------------------------------------- /src/path/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/path/match.go -------------------------------------------------------------------------------- /src/path/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/path/path.go -------------------------------------------------------------------------------- /src/race.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/race.bash -------------------------------------------------------------------------------- /src/race.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/race.bat -------------------------------------------------------------------------------- /src/reflect/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/reflect/abi.go -------------------------------------------------------------------------------- /src/reflect/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/reflect/type.go -------------------------------------------------------------------------------- /src/regexp/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/regexp/exec.go -------------------------------------------------------------------------------- /src/run.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/run.bash -------------------------------------------------------------------------------- /src/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/run.bat -------------------------------------------------------------------------------- /src/run.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/run.rc -------------------------------------------------------------------------------- /src/runtime/alg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/alg.go -------------------------------------------------------------------------------- /src/runtime/asan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/asan.go -------------------------------------------------------------------------------- /src/runtime/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/asm.s -------------------------------------------------------------------------------- /src/runtime/cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/cgo.go -------------------------------------------------------------------------------- /src/runtime/chan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/chan.go -------------------------------------------------------------------------------- /src/runtime/coro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/coro.go -------------------------------------------------------------------------------- /src/runtime/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/map.go -------------------------------------------------------------------------------- /src/runtime/mem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/mem.go -------------------------------------------------------------------------------- /src/runtime/mgc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/mgc.go -------------------------------------------------------------------------------- /src/runtime/mmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/mmap.go -------------------------------------------------------------------------------- /src/runtime/msan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/msan.go -------------------------------------------------------------------------------- /src/runtime/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/proc.go -------------------------------------------------------------------------------- /src/runtime/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/race.go -------------------------------------------------------------------------------- /src/runtime/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/rand.go -------------------------------------------------------------------------------- /src/runtime/sema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/sema.go -------------------------------------------------------------------------------- /src/runtime/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/time.go -------------------------------------------------------------------------------- /src/runtime/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/type.go -------------------------------------------------------------------------------- /src/runtime/utf8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/utf8.go -------------------------------------------------------------------------------- /src/runtime/vlrt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/runtime/vlrt.go -------------------------------------------------------------------------------- /src/slices/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/slices/sort.go -------------------------------------------------------------------------------- /src/sort/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/sort/search.go -------------------------------------------------------------------------------- /src/sort/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/sort/slice.go -------------------------------------------------------------------------------- /src/sort/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/sort/sort.go -------------------------------------------------------------------------------- /src/strconv/atob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/strconv/atob.go -------------------------------------------------------------------------------- /src/strconv/atoc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/strconv/atoc.go -------------------------------------------------------------------------------- /src/strconv/atof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/strconv/atof.go -------------------------------------------------------------------------------- /src/strconv/atoi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/strconv/atoi.go -------------------------------------------------------------------------------- /src/strconv/ctoa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/strconv/ctoa.go -------------------------------------------------------------------------------- /src/strconv/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/strconv/doc.go -------------------------------------------------------------------------------- /src/strconv/ftoa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/strconv/ftoa.go -------------------------------------------------------------------------------- /src/strconv/itoa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/strconv/itoa.go -------------------------------------------------------------------------------- /src/sync/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/sync/cond.go -------------------------------------------------------------------------------- /src/sync/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/sync/map.go -------------------------------------------------------------------------------- /src/sync/mutex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/sync/mutex.go -------------------------------------------------------------------------------- /src/sync/once.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/sync/once.go -------------------------------------------------------------------------------- /src/sync/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/sync/pool.go -------------------------------------------------------------------------------- /src/sync/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/sync/runtime.go -------------------------------------------------------------------------------- /src/sync/rwmutex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/sync/rwmutex.go -------------------------------------------------------------------------------- /src/syscall/asan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/syscall/asan.go -------------------------------------------------------------------------------- /src/syscall/msan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/syscall/msan.go -------------------------------------------------------------------------------- /src/syscall/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/syscall/net.go -------------------------------------------------------------------------------- /src/testing/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/testing/fuzz.go -------------------------------------------------------------------------------- /src/time/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/time/embed.go -------------------------------------------------------------------------------- /src/time/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/time/format.go -------------------------------------------------------------------------------- /src/time/sleep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/time/sleep.go -------------------------------------------------------------------------------- /src/time/tick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/time/tick.go -------------------------------------------------------------------------------- /src/time/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/src/time/time.go -------------------------------------------------------------------------------- /test/235.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/235.go -------------------------------------------------------------------------------- /test/64bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/64bit.go -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/README.md -------------------------------------------------------------------------------- /test/abi/convT64_criteria.out: -------------------------------------------------------------------------------- 1 | {[] 27 9887 {0}} 2 | -------------------------------------------------------------------------------- /test/abi/f_ret_z_not.out: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /test/abi/fibish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/abi/fibish.go -------------------------------------------------------------------------------- /test/abi/fibish.out: -------------------------------------------------------------------------------- 1 | f(40)=39088169,126491972 2 | -------------------------------------------------------------------------------- /test/abi/fibish_closure.out: -------------------------------------------------------------------------------- 1 | f(40)=39088169,126491972 2 | -------------------------------------------------------------------------------- /test/abi/idata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/abi/idata.go -------------------------------------------------------------------------------- /test/abi/idata.out: -------------------------------------------------------------------------------- 1 | s=3.14286 2 | -------------------------------------------------------------------------------- /test/abi/leaf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/abi/leaf.go -------------------------------------------------------------------------------- /test/abi/leaf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/abi/leaf2.go -------------------------------------------------------------------------------- /test/abi/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/abi/map.go -------------------------------------------------------------------------------- /test/abi/more_intstar_input.out: -------------------------------------------------------------------------------- 1 | Got this far! 2 | Sink = 7 3 | -------------------------------------------------------------------------------- /test/abi/spills3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/abi/spills3.go -------------------------------------------------------------------------------- /test/abi/spills4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/abi/spills4.go -------------------------------------------------------------------------------- /test/abi/struct_3_string_input.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/abi/struct_lower_1.out: -------------------------------------------------------------------------------- 1 | {{1 2 3}} 2 | -------------------------------------------------------------------------------- /test/abi/uglyfib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/abi/uglyfib.go -------------------------------------------------------------------------------- /test/abi/uglyfib.out: -------------------------------------------------------------------------------- 1 | Fib(40)=102334155 2 | -------------------------------------------------------------------------------- /test/abi/wrapdefer_largetmp.out: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/alg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/alg.go -------------------------------------------------------------------------------- /test/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/alias.go -------------------------------------------------------------------------------- /test/alias1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/alias1.go -------------------------------------------------------------------------------- /test/alias2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/alias2.go -------------------------------------------------------------------------------- /test/alias3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/alias3.go -------------------------------------------------------------------------------- /test/align.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/align.go -------------------------------------------------------------------------------- /test/append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/append.go -------------------------------------------------------------------------------- /test/append1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/append1.go -------------------------------------------------------------------------------- /test/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/args.go -------------------------------------------------------------------------------- /test/armimm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/armimm.go -------------------------------------------------------------------------------- /test/asmhdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/asmhdr.go -------------------------------------------------------------------------------- /test/assign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/assign.go -------------------------------------------------------------------------------- /test/assign1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/assign1.go -------------------------------------------------------------------------------- /test/atomicload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/atomicload.go -------------------------------------------------------------------------------- /test/bigalg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/bigalg.go -------------------------------------------------------------------------------- /test/bigmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/bigmap.go -------------------------------------------------------------------------------- /test/blank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/blank.go -------------------------------------------------------------------------------- /test/blank1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/blank1.go -------------------------------------------------------------------------------- /test/bom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/bom.go -------------------------------------------------------------------------------- /test/bombad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/bombad.go -------------------------------------------------------------------------------- /test/bounds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/bounds.go -------------------------------------------------------------------------------- /test/chan/fifo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/chan/fifo.go -------------------------------------------------------------------------------- /test/chan/perm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/chan/perm.go -------------------------------------------------------------------------------- /test/chan/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/chan/select.go -------------------------------------------------------------------------------- /test/chan/sieve1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/chan/sieve1.go -------------------------------------------------------------------------------- /test/chan/sieve2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/chan/sieve2.go -------------------------------------------------------------------------------- /test/chancap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/chancap.go -------------------------------------------------------------------------------- /test/chanlinear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/chanlinear.go -------------------------------------------------------------------------------- /test/char_lit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/char_lit.go -------------------------------------------------------------------------------- /test/char_lit1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/char_lit1.go -------------------------------------------------------------------------------- /test/checkbce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/checkbce.go -------------------------------------------------------------------------------- /test/clear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/clear.go -------------------------------------------------------------------------------- /test/clearfat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/clearfat.go -------------------------------------------------------------------------------- /test/closedchan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/closedchan.go -------------------------------------------------------------------------------- /test/closure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/closure.go -------------------------------------------------------------------------------- /test/closure1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/closure1.go -------------------------------------------------------------------------------- /test/closure2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/closure2.go -------------------------------------------------------------------------------- /test/closure3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/closure3.go -------------------------------------------------------------------------------- /test/closure4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/closure4.go -------------------------------------------------------------------------------- /test/closure5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/closure5.go -------------------------------------------------------------------------------- /test/closure6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/closure6.go -------------------------------------------------------------------------------- /test/closure7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/closure7.go -------------------------------------------------------------------------------- /test/cmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/cmp.go -------------------------------------------------------------------------------- /test/cmp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/cmp6.go -------------------------------------------------------------------------------- /test/cmplx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/cmplx.go -------------------------------------------------------------------------------- /test/cmplxdivide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/cmplxdivide.c -------------------------------------------------------------------------------- /test/cmplxdivide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/cmplxdivide.go -------------------------------------------------------------------------------- /test/codegen/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/codegen/README -------------------------------------------------------------------------------- /test/codegen/bmi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/codegen/bmi.go -------------------------------------------------------------------------------- /test/complit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/complit.go -------------------------------------------------------------------------------- /test/complit1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/complit1.go -------------------------------------------------------------------------------- /test/compos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/compos.go -------------------------------------------------------------------------------- /test/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/const.go -------------------------------------------------------------------------------- /test/const1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/const1.go -------------------------------------------------------------------------------- /test/const2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/const2.go -------------------------------------------------------------------------------- /test/const3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/const3.go -------------------------------------------------------------------------------- /test/const4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/const4.go -------------------------------------------------------------------------------- /test/const5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/const5.go -------------------------------------------------------------------------------- /test/const6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/const6.go -------------------------------------------------------------------------------- /test/const7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/const7.go -------------------------------------------------------------------------------- /test/const8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/const8.go -------------------------------------------------------------------------------- /test/convT2X.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/convT2X.go -------------------------------------------------------------------------------- /test/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/convert.go -------------------------------------------------------------------------------- /test/convert1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/convert1.go -------------------------------------------------------------------------------- /test/convert2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/convert2.go -------------------------------------------------------------------------------- /test/convert3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/convert3.go -------------------------------------------------------------------------------- /test/convert4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/convert4.go -------------------------------------------------------------------------------- /test/convinline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/convinline.go -------------------------------------------------------------------------------- /test/convlit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/convlit.go -------------------------------------------------------------------------------- /test/convlit1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/convlit1.go -------------------------------------------------------------------------------- /test/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/copy.go -------------------------------------------------------------------------------- /test/copy1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/copy1.go -------------------------------------------------------------------------------- /test/crlf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/crlf.go -------------------------------------------------------------------------------- /test/ddd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ddd.go -------------------------------------------------------------------------------- /test/ddd1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ddd1.go -------------------------------------------------------------------------------- /test/ddd2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ddd2.go -------------------------------------------------------------------------------- /test/decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/decl.go -------------------------------------------------------------------------------- /test/declbad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/declbad.go -------------------------------------------------------------------------------- /test/defer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/defer.go -------------------------------------------------------------------------------- /test/deferfin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/deferfin.go -------------------------------------------------------------------------------- /test/defernil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/defernil.go -------------------------------------------------------------------------------- /test/deferprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/deferprint.go -------------------------------------------------------------------------------- /test/deferprint.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/deferprint.out -------------------------------------------------------------------------------- /test/devirt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/devirt.go -------------------------------------------------------------------------------- /test/directive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/directive.go -------------------------------------------------------------------------------- /test/directive2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/directive2.go -------------------------------------------------------------------------------- /test/divide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/divide.go -------------------------------------------------------------------------------- /test/divmod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/divmod.go -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z11.go: -------------------------------------------------------------------------------- 1 | 2 | //line x11.go:4 3 | package main 4 | func F11() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z12.go: -------------------------------------------------------------------------------- 1 | 2 | //line x12.go:4 3 | package main 4 | func F12() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z13.go: -------------------------------------------------------------------------------- 1 | 2 | //line x13.go:4 3 | package main 4 | func F13() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z14.go: -------------------------------------------------------------------------------- 1 | 2 | //line x14.go:4 3 | package main 4 | func F14() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z15.go: -------------------------------------------------------------------------------- 1 | 2 | //line x15.go:4 3 | package main 4 | func F15() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z16.go: -------------------------------------------------------------------------------- 1 | 2 | //line x16.go:4 3 | package main 4 | func F16() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z17.go: -------------------------------------------------------------------------------- 1 | 2 | //line x17.go:4 3 | package main 4 | func F17() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z19.go: -------------------------------------------------------------------------------- 1 | 2 | //line x19.go:4 3 | package main 4 | func F19() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z2.go: -------------------------------------------------------------------------------- 1 | 2 | //line x2.go:4 3 | package main 4 | func F2() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z20.go: -------------------------------------------------------------------------------- 1 | 2 | //line x20.go:4 3 | package main 4 | func F20() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z3.go: -------------------------------------------------------------------------------- 1 | 2 | //line x3.go:4 3 | package main 4 | func F3() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z4.go: -------------------------------------------------------------------------------- 1 | 2 | //line x4.go:4 3 | package main 4 | func F4() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z5.go: -------------------------------------------------------------------------------- 1 | 2 | //line x5.go:4 3 | package main 4 | func F5() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z6.go: -------------------------------------------------------------------------------- 1 | 2 | //line x6.go:4 3 | package main 4 | func F6() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z7.go: -------------------------------------------------------------------------------- 1 | 2 | //line x7.go:4 3 | package main 4 | func F7() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z8.go: -------------------------------------------------------------------------------- 1 | 2 | //line x8.go:4 3 | package main 4 | func F8() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z9.go: -------------------------------------------------------------------------------- 1 | 2 | //line x9.go:4 3 | package main 4 | func F9() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/dwarf/dwarf.go -------------------------------------------------------------------------------- /test/embedfunc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/embedfunc.go -------------------------------------------------------------------------------- /test/embedvers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/embedvers.go -------------------------------------------------------------------------------- /test/empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/empty.go -------------------------------------------------------------------------------- /test/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/env.go -------------------------------------------------------------------------------- /test/eof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/eof.go -------------------------------------------------------------------------------- /test/eof1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/eof1.go -------------------------------------------------------------------------------- /test/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/escape.go -------------------------------------------------------------------------------- /test/escape2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/escape2.go -------------------------------------------------------------------------------- /test/escape2n.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/escape2n.go -------------------------------------------------------------------------------- /test/escape3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/escape3.go -------------------------------------------------------------------------------- /test/escape4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/escape4.go -------------------------------------------------------------------------------- /test/escape5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/escape5.go -------------------------------------------------------------------------------- /test/escape_goto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/escape_goto.go -------------------------------------------------------------------------------- /test/escape_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/escape_map.go -------------------------------------------------------------------------------- /test/fibo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/fibo.go -------------------------------------------------------------------------------- /test/finprofiled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/finprofiled.go -------------------------------------------------------------------------------- /test/fixedbugs/bug206.out: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /test/fixedbugs/bug328.out: -------------------------------------------------------------------------------- 1 | 0x0 2 | -------------------------------------------------------------------------------- /test/fixedbugs/issue21808.out: -------------------------------------------------------------------------------- 1 | A 2 | 3 | B 4 | -------------------------------------------------------------------------------- /test/fixedbugs/issue21887.out: -------------------------------------------------------------------------------- 1 | 4294967295 2 | 18446744073709551615 3 | -------------------------------------------------------------------------------- /test/fixedbugs/issue22326.out: -------------------------------------------------------------------------------- 1 | abc_d 2 | -------------------------------------------------------------------------------- /test/fixedbugs/issue22683.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /test/fixedbugs/issue24693.out: -------------------------------------------------------------------------------- 1 | ok 2 | ok 3 | -------------------------------------------------------------------------------- /test/fixedbugs/issue28390.out: -------------------------------------------------------------------------------- 1 | 1 2 | {2 3 map[3:3]} 3 | -------------------------------------------------------------------------------- /test/fixedbugs/issue30956.out: -------------------------------------------------------------------------------- 1 | {42} 2 | -------------------------------------------------------------------------------- /test/fixedbugs/issue31636.out: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | -------------------------------------------------------------------------------- /test/fixedbugs/issue31782.out: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/fixedbugs/issue31959.out: -------------------------------------------------------------------------------- 1 | {} 2 | 0 3 | -------------------------------------------------------------------------------- /test/fixedbugs/issue32175.out: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/fixedbugs/issue32680.out: -------------------------------------------------------------------------------- 1 | 2561423721 2 | -------------------------------------------------------------------------------- /test/fixedbugs/issue36085.dir/a.go: -------------------------------------------------------------------------------- 1 | package a 2 | 3 | type W = map[int32]interface{} 4 | -------------------------------------------------------------------------------- /test/fixedbugs/issue43444.out: -------------------------------------------------------------------------------- 1 | e a b c d 2 | -------------------------------------------------------------------------------- /test/fixedbugs/issue48898.out: -------------------------------------------------------------------------------- 1 | 1234 2 | -------------------------------------------------------------------------------- /test/fixedbugs/issue49100b.out: -------------------------------------------------------------------------------- 1 | g 2 | o 3 | l 4 | a 5 | n 6 | g 7 | -------------------------------------------------------------------------------- /test/fixedbugs/issue49145.out: -------------------------------------------------------------------------------- 1 | 0 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /test/fixedbugs/issue52788a.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /test/fixedbugs/issue56990.out: -------------------------------------------------------------------------------- 1 | PASS 2 | -------------------------------------------------------------------------------- /test/fixedbugs/issue5957.dir/a.go: -------------------------------------------------------------------------------- 1 | package surprise 2 | 3 | var X int 4 | -------------------------------------------------------------------------------- /test/fixedbugs/issue5957.dir/b.go: -------------------------------------------------------------------------------- 1 | package surprise2 2 | 3 | -------------------------------------------------------------------------------- /test/fixedbugs/issue59572.out: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /test/fixedbugs/issue64565.out: -------------------------------------------------------------------------------- 1 | 3 2 | 3 3 | 3 4 | -------------------------------------------------------------------------------- /test/fixedbugs/issue64715.out: -------------------------------------------------------------------------------- 1 | 65535 2 | -------------------------------------------------------------------------------- /test/float_lit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/float_lit.go -------------------------------------------------------------------------------- /test/float_lit2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/float_lit2.go -------------------------------------------------------------------------------- /test/float_lit3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/float_lit3.go -------------------------------------------------------------------------------- /test/floatcmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/floatcmp.go -------------------------------------------------------------------------------- /test/for.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/for.go -------------------------------------------------------------------------------- /test/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/func.go -------------------------------------------------------------------------------- /test/func1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/func1.go -------------------------------------------------------------------------------- /test/func2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/func2.go -------------------------------------------------------------------------------- /test/func3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/func3.go -------------------------------------------------------------------------------- /test/func4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/func4.go -------------------------------------------------------------------------------- /test/func5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/func5.go -------------------------------------------------------------------------------- /test/func6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/func6.go -------------------------------------------------------------------------------- /test/func7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/func7.go -------------------------------------------------------------------------------- /test/func8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/func8.go -------------------------------------------------------------------------------- /test/funcdup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/funcdup.go -------------------------------------------------------------------------------- /test/funcdup2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/funcdup2.go -------------------------------------------------------------------------------- /test/fuse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/fuse.go -------------------------------------------------------------------------------- /test/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/gc.go -------------------------------------------------------------------------------- /test/gc1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/gc1.go -------------------------------------------------------------------------------- /test/gc2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/gc2.go -------------------------------------------------------------------------------- /test/gcgort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/gcgort.go -------------------------------------------------------------------------------- /test/gcstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/gcstring.go -------------------------------------------------------------------------------- /test/goprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/goprint.go -------------------------------------------------------------------------------- /test/goprint.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/goprint.out -------------------------------------------------------------------------------- /test/goto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/goto.go -------------------------------------------------------------------------------- /test/helloworld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/helloworld.go -------------------------------------------------------------------------------- /test/helloworld.out: -------------------------------------------------------------------------------- 1 | hello, world 2 | -------------------------------------------------------------------------------- /test/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/if.go -------------------------------------------------------------------------------- /test/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/import.go -------------------------------------------------------------------------------- /test/import1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/import1.go -------------------------------------------------------------------------------- /test/import2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/import2.go -------------------------------------------------------------------------------- /test/import4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/import4.go -------------------------------------------------------------------------------- /test/import5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/import5.go -------------------------------------------------------------------------------- /test/import6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/import6.go -------------------------------------------------------------------------------- /test/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/index.go -------------------------------------------------------------------------------- /test/index0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/index0.go -------------------------------------------------------------------------------- /test/index1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/index1.go -------------------------------------------------------------------------------- /test/index2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/index2.go -------------------------------------------------------------------------------- /test/indirect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/indirect.go -------------------------------------------------------------------------------- /test/indirect1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/indirect1.go -------------------------------------------------------------------------------- /test/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/init.go -------------------------------------------------------------------------------- /test/init1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/init1.go -------------------------------------------------------------------------------- /test/initcomma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/initcomma.go -------------------------------------------------------------------------------- /test/initexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/initexp.go -------------------------------------------------------------------------------- /test/initialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/initialize.go -------------------------------------------------------------------------------- /test/initloop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/initloop.go -------------------------------------------------------------------------------- /test/inline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/inline.go -------------------------------------------------------------------------------- /test/inline_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/inline_big.go -------------------------------------------------------------------------------- /test/inline_sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/inline_sync.go -------------------------------------------------------------------------------- /test/int_lit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/int_lit.go -------------------------------------------------------------------------------- /test/intcvt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/intcvt.go -------------------------------------------------------------------------------- /test/intrinsic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/intrinsic.go -------------------------------------------------------------------------------- /test/iota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/iota.go -------------------------------------------------------------------------------- /test/ken/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/array.go -------------------------------------------------------------------------------- /test/ken/chan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/chan.go -------------------------------------------------------------------------------- /test/ken/chan1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/chan1.go -------------------------------------------------------------------------------- /test/ken/complit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/complit.go -------------------------------------------------------------------------------- /test/ken/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/convert.go -------------------------------------------------------------------------------- /test/ken/cplx0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/cplx0.go -------------------------------------------------------------------------------- /test/ken/cplx0.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/cplx0.out -------------------------------------------------------------------------------- /test/ken/cplx1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/cplx1.go -------------------------------------------------------------------------------- /test/ken/cplx2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/cplx2.go -------------------------------------------------------------------------------- /test/ken/cplx3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/cplx3.go -------------------------------------------------------------------------------- /test/ken/cplx4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/cplx4.go -------------------------------------------------------------------------------- /test/ken/cplx5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/cplx5.go -------------------------------------------------------------------------------- /test/ken/divmod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/divmod.go -------------------------------------------------------------------------------- /test/ken/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/embed.go -------------------------------------------------------------------------------- /test/ken/for.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/for.go -------------------------------------------------------------------------------- /test/ken/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/label.go -------------------------------------------------------------------------------- /test/ken/litfun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/litfun.go -------------------------------------------------------------------------------- /test/ken/mfunc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/mfunc.go -------------------------------------------------------------------------------- /test/ken/ptrfun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/ptrfun.go -------------------------------------------------------------------------------- /test/ken/ptrvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/ptrvar.go -------------------------------------------------------------------------------- /test/ken/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/range.go -------------------------------------------------------------------------------- /test/ken/rob1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/rob1.go -------------------------------------------------------------------------------- /test/ken/rob2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/rob2.go -------------------------------------------------------------------------------- /test/ken/robfor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/robfor.go -------------------------------------------------------------------------------- /test/ken/robfunc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/robfunc.go -------------------------------------------------------------------------------- /test/ken/shift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/shift.go -------------------------------------------------------------------------------- /test/ken/simpfun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/simpfun.go -------------------------------------------------------------------------------- /test/ken/simpvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/simpvar.go -------------------------------------------------------------------------------- /test/ken/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/string.go -------------------------------------------------------------------------------- /test/ken/string.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/string.out -------------------------------------------------------------------------------- /test/ken/strvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/ken/strvar.go -------------------------------------------------------------------------------- /test/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/label.go -------------------------------------------------------------------------------- /test/label1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/label1.go -------------------------------------------------------------------------------- /test/linkmain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/linkmain.go -------------------------------------------------------------------------------- /test/linkname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/linkname.go -------------------------------------------------------------------------------- /test/linkname3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/linkname3.go -------------------------------------------------------------------------------- /test/linkobj.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/linkobj.go -------------------------------------------------------------------------------- /test/linkx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/linkx.go -------------------------------------------------------------------------------- /test/linkx_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/linkx_run.go -------------------------------------------------------------------------------- /test/literal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/literal.go -------------------------------------------------------------------------------- /test/literal2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/literal2.go -------------------------------------------------------------------------------- /test/live.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/live.go -------------------------------------------------------------------------------- /test/live1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/live1.go -------------------------------------------------------------------------------- /test/live2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/live2.go -------------------------------------------------------------------------------- /test/live_regabi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/live_regabi.go -------------------------------------------------------------------------------- /test/loopbce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/loopbce.go -------------------------------------------------------------------------------- /test/mainsig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/mainsig.go -------------------------------------------------------------------------------- /test/makechan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/makechan.go -------------------------------------------------------------------------------- /test/makemap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/makemap.go -------------------------------------------------------------------------------- /test/makenew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/makenew.go -------------------------------------------------------------------------------- /test/makeslice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/makeslice.go -------------------------------------------------------------------------------- /test/mallocfin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/mallocfin.go -------------------------------------------------------------------------------- /test/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/map.go -------------------------------------------------------------------------------- /test/map1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/map1.go -------------------------------------------------------------------------------- /test/mapclear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/mapclear.go -------------------------------------------------------------------------------- /test/maplinear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/maplinear.go -------------------------------------------------------------------------------- /test/mergemul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/mergemul.go -------------------------------------------------------------------------------- /test/method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/method.go -------------------------------------------------------------------------------- /test/method1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/method1.go -------------------------------------------------------------------------------- /test/method2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/method2.go -------------------------------------------------------------------------------- /test/method3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/method3.go -------------------------------------------------------------------------------- /test/method4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/method4.go -------------------------------------------------------------------------------- /test/method5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/method5.go -------------------------------------------------------------------------------- /test/method6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/method6.go -------------------------------------------------------------------------------- /test/method7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/method7.go -------------------------------------------------------------------------------- /test/named.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/named.go -------------------------------------------------------------------------------- /test/named1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/named1.go -------------------------------------------------------------------------------- /test/newinline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/newinline.go -------------------------------------------------------------------------------- /test/nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/nil.go -------------------------------------------------------------------------------- /test/nilcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/nilcheck.go -------------------------------------------------------------------------------- /test/nilptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/nilptr.go -------------------------------------------------------------------------------- /test/nilptr2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/nilptr2.go -------------------------------------------------------------------------------- /test/nilptr3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/nilptr3.go -------------------------------------------------------------------------------- /test/nilptr4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/nilptr4.go -------------------------------------------------------------------------------- /test/nilptr5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/nilptr5.go -------------------------------------------------------------------------------- /test/nilptr5_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/nilptr5_aix.go -------------------------------------------------------------------------------- /test/nilptr_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/nilptr_aix.go -------------------------------------------------------------------------------- /test/noinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/noinit.go -------------------------------------------------------------------------------- /test/nosplit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/nosplit.go -------------------------------------------------------------------------------- /test/nul1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/nul1.go -------------------------------------------------------------------------------- /test/parentype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/parentype.go -------------------------------------------------------------------------------- /test/peano.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/peano.go -------------------------------------------------------------------------------- /test/phiopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/phiopt.go -------------------------------------------------------------------------------- /test/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/print.go -------------------------------------------------------------------------------- /test/print.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/print.out -------------------------------------------------------------------------------- /test/printbig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/printbig.go -------------------------------------------------------------------------------- /test/printbig.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/printbig.out -------------------------------------------------------------------------------- /test/prove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/prove.go -------------------------------------------------------------------------------- /test/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/range.go -------------------------------------------------------------------------------- /test/range2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/range2.go -------------------------------------------------------------------------------- /test/range3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/range3.go -------------------------------------------------------------------------------- /test/range4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/range4.go -------------------------------------------------------------------------------- /test/rangegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/rangegen.go -------------------------------------------------------------------------------- /test/recover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/recover.go -------------------------------------------------------------------------------- /test/recover1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/recover1.go -------------------------------------------------------------------------------- /test/recover2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/recover2.go -------------------------------------------------------------------------------- /test/recover3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/recover3.go -------------------------------------------------------------------------------- /test/recover4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/recover4.go -------------------------------------------------------------------------------- /test/recover5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/recover5.go -------------------------------------------------------------------------------- /test/rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/rename.go -------------------------------------------------------------------------------- /test/rename1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/rename1.go -------------------------------------------------------------------------------- /test/reorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/reorder.go -------------------------------------------------------------------------------- /test/reorder2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/reorder2.go -------------------------------------------------------------------------------- /test/retjmp.dir/a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/retjmp.dir/a.s -------------------------------------------------------------------------------- /test/retjmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/retjmp.go -------------------------------------------------------------------------------- /test/return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/return.go -------------------------------------------------------------------------------- /test/rotate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/rotate.go -------------------------------------------------------------------------------- /test/rotate0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/rotate0.go -------------------------------------------------------------------------------- /test/rotate1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/rotate1.go -------------------------------------------------------------------------------- /test/rotate2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/rotate2.go -------------------------------------------------------------------------------- /test/rotate3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/rotate3.go -------------------------------------------------------------------------------- /test/rune.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/rune.go -------------------------------------------------------------------------------- /test/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/runtime.go -------------------------------------------------------------------------------- /test/runtime/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/runtime/README -------------------------------------------------------------------------------- /test/shift1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/shift1.go -------------------------------------------------------------------------------- /test/shift2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/shift2.go -------------------------------------------------------------------------------- /test/shift3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/shift3.go -------------------------------------------------------------------------------- /test/sieve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/sieve.go -------------------------------------------------------------------------------- /test/sigchld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/sigchld.go -------------------------------------------------------------------------------- /test/sigchld.out: -------------------------------------------------------------------------------- 1 | survived SIGCHLD 2 | -------------------------------------------------------------------------------- /test/simassign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/simassign.go -------------------------------------------------------------------------------- /test/sizeof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/sizeof.go -------------------------------------------------------------------------------- /test/slice3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/slice3.go -------------------------------------------------------------------------------- /test/slice3err.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/slice3err.go -------------------------------------------------------------------------------- /test/slicecap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/slicecap.go -------------------------------------------------------------------------------- /test/sliceopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/sliceopt.go -------------------------------------------------------------------------------- /test/solitaire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/solitaire.go -------------------------------------------------------------------------------- /test/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/stack.go -------------------------------------------------------------------------------- /test/stackobj.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/stackobj.go -------------------------------------------------------------------------------- /test/stackobj2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/stackobj2.go -------------------------------------------------------------------------------- /test/stackobj3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/stackobj3.go -------------------------------------------------------------------------------- /test/strcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/strcopy.go -------------------------------------------------------------------------------- /test/strength.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/strength.go -------------------------------------------------------------------------------- /test/stress/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/stress/maps.go -------------------------------------------------------------------------------- /test/string_lit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/string_lit.go -------------------------------------------------------------------------------- /test/stringrange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/stringrange.go -------------------------------------------------------------------------------- /test/struct0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/struct0.go -------------------------------------------------------------------------------- /test/switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/switch.go -------------------------------------------------------------------------------- /test/switch2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/switch2.go -------------------------------------------------------------------------------- /test/switch3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/switch3.go -------------------------------------------------------------------------------- /test/switch4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/switch4.go -------------------------------------------------------------------------------- /test/switch5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/switch5.go -------------------------------------------------------------------------------- /test/switch6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/switch6.go -------------------------------------------------------------------------------- /test/switch7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/switch7.go -------------------------------------------------------------------------------- /test/syntax/chan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/syntax/chan.go -------------------------------------------------------------------------------- /test/syntax/ddd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/syntax/ddd.go -------------------------------------------------------------------------------- /test/syntax/else.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/syntax/else.go -------------------------------------------------------------------------------- /test/syntax/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/syntax/if.go -------------------------------------------------------------------------------- /test/tighten.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/tighten.go -------------------------------------------------------------------------------- /test/tinyfin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/tinyfin.go -------------------------------------------------------------------------------- /test/torture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/torture.go -------------------------------------------------------------------------------- /test/turing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/turing.go -------------------------------------------------------------------------------- /test/typecheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/typecheck.go -------------------------------------------------------------------------------- /test/typeparam/gencrawler.out: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /test/typeparam/issue47713.out: -------------------------------------------------------------------------------- 1 | Sent asdf 2 | -------------------------------------------------------------------------------- /test/typeparam/issue47740.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/typeparam/issue48276a.out: -------------------------------------------------------------------------------- 1 | 0:0 2 | -------------------------------------------------------------------------------- /test/typeparam/issue48337a.out: -------------------------------------------------------------------------------- 1 | this file does import sync 2 | -------------------------------------------------------------------------------- /test/typeparam/issue50109.out: -------------------------------------------------------------------------------- 1 | MySuperStruct -------------------------------------------------------------------------------- /test/typeparam/issue50481c.out: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /test/typeparam/issue50690a.out: -------------------------------------------------------------------------------- 1 | fake has a sum of 6 2 | -------------------------------------------------------------------------------- /test/typeparam/issue50690b.out: -------------------------------------------------------------------------------- 1 | Hello, world. 2 | -------------------------------------------------------------------------------- /test/typeparam/issue50690c.out: -------------------------------------------------------------------------------- 1 | Hello, world. 2 | -------------------------------------------------------------------------------- /test/typeparam/issue51219.out: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/typeparam/mdempsky/18.out: -------------------------------------------------------------------------------- 1 | int bool 2 | -------------------------------------------------------------------------------- /test/typeparam/shape1.out: -------------------------------------------------------------------------------- 1 | 25 2 | 10 3 | 6 4 | 4 5 | -------------------------------------------------------------------------------- /test/typeparam/typeswitch7.out: -------------------------------------------------------------------------------- 1 | other 2 | barT 3 | myfloat 4 | -------------------------------------------------------------------------------- /test/typeswitch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/typeswitch.go -------------------------------------------------------------------------------- /test/typeswitch1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/typeswitch1.go -------------------------------------------------------------------------------- /test/typeswitch2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/typeswitch2.go -------------------------------------------------------------------------------- /test/typeswitch3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/typeswitch3.go -------------------------------------------------------------------------------- /test/undef.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/undef.go -------------------------------------------------------------------------------- /test/used.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/used.go -------------------------------------------------------------------------------- /test/utf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/utf.go -------------------------------------------------------------------------------- /test/varerr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/varerr.go -------------------------------------------------------------------------------- /test/varinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/varinit.go -------------------------------------------------------------------------------- /test/winbatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/winbatch.go -------------------------------------------------------------------------------- /test/zerodivide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/zerodivide.go -------------------------------------------------------------------------------- /test/zerosize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/go/HEAD/test/zerosize.go --------------------------------------------------------------------------------