├── AUTHORS ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE ├── PATENTS ├── README.md ├── VERSION ├── api ├── README ├── except.txt ├── go1.1.txt ├── go1.2.txt ├── go1.3.txt ├── go1.4.txt ├── go1.5.txt ├── go1.6.txt ├── go1.7.txt ├── go1.8.txt ├── go1.9.txt ├── go1.txt └── next.txt ├── doc ├── articles │ ├── go_command.html │ ├── index.html │ ├── race_detector.html │ └── wiki │ │ ├── edit.html │ │ ├── final-noclosure.go │ │ ├── final-noerror.go │ │ ├── final-parsetemplate.go │ │ ├── final-template.go │ │ ├── final-test.patch │ │ ├── final.go │ │ ├── get.go │ │ ├── http-sample.go │ │ ├── index.html │ │ ├── notemplate.go │ │ ├── part1-noerror.go │ │ ├── part1.go │ │ ├── part2.go │ │ ├── part3-errorhandling.go │ │ ├── part3.go │ │ ├── test.bash │ │ ├── test_Test.txt.good │ │ ├── test_edit.good │ │ ├── test_view.good │ │ └── view.html ├── asm.html ├── cmd.html ├── code.html ├── codewalk │ ├── codewalk.css │ ├── codewalk.js │ ├── codewalk.xml │ ├── functions.xml │ ├── markov.go │ ├── markov.xml │ ├── pig.go │ ├── popout.png │ ├── run │ ├── sharemem.xml │ └── urlpoll.go ├── conduct.html ├── contrib.html ├── contribute.html ├── debugging_with_gdb.html ├── devel │ ├── pre_go1.html │ ├── release.html │ └── weekly.html ├── docs.html ├── editors.html ├── editors │ ├── go-plus.png │ ├── gogland.png │ ├── vimgo.png │ └── vscodego.png ├── effective_go.html ├── gccgo_contribute.html ├── gccgo_install.html ├── go-logo-black.png ├── go-logo-blue.png ├── go-logo-white.png ├── go1.1.html ├── go1.2.html ├── go1.3.html ├── go1.4.html ├── go1.5.html ├── go1.6.html ├── go1.7.html ├── go1.8.html ├── go1.9.html ├── go1.html ├── go1compat.html ├── go_faq.html ├── go_mem.html ├── go_spec.html ├── gopher │ ├── README │ ├── appenginegopher.jpg │ ├── appenginegophercolor.jpg │ ├── appenginelogo.gif │ ├── biplane.jpg │ ├── bumper.png │ ├── bumper192x108.png │ ├── bumper320x180.png │ ├── bumper480x270.png │ ├── bumper640x360.png │ ├── doc.png │ ├── favicon.svg │ ├── fiveyears.jpg │ ├── frontpage.png │ ├── gopherbw.png │ ├── gophercolor.png │ ├── gophercolor16x16.png │ ├── help.png │ ├── pencil │ │ ├── gopherhat.jpg │ │ ├── gopherhelmet.jpg │ │ ├── gophermega.jpg │ │ ├── gopherrunning.jpg │ │ ├── gopherswim.jpg │ │ └── gopherswrench.jpg │ ├── pkg.png │ ├── project.png │ ├── ref.png │ ├── run.png │ └── talks.png ├── help.html ├── ie.css ├── install-source.html ├── install.html ├── play │ ├── fib.go │ ├── hello.go │ ├── life.go │ ├── peano.go │ ├── pi.go │ ├── sieve.go │ ├── solitaire.go │ └── tree.go ├── progs │ ├── cgo1.go │ ├── cgo2.go │ ├── cgo3.go │ ├── cgo4.go │ ├── defer.go │ ├── defer2.go │ ├── eff_bytesize.go │ ├── eff_qr.go │ ├── eff_sequence.go │ ├── eff_unused1.go │ ├── eff_unused2.go │ ├── error.go │ ├── error2.go │ ├── error3.go │ ├── error4.go │ ├── go1.go │ ├── gobs1.go │ ├── gobs2.go │ ├── image_draw.go │ ├── image_package1.go │ ├── image_package2.go │ ├── image_package3.go │ ├── image_package4.go │ ├── image_package5.go │ ├── image_package6.go │ ├── interface.go │ ├── interface2.go │ ├── json1.go │ ├── json2.go │ ├── json3.go │ ├── json4.go │ ├── json5.go │ ├── run.go │ ├── slices.go │ ├── timeout1.go │ └── timeout2.go ├── root.html ├── security.html ├── share.png └── tos.html ├── favicon.ico ├── lib └── time │ ├── README │ ├── update.bash │ └── zoneinfo.zip ├── misc ├── android │ ├── README │ ├── cleaner.go │ └── go_android_exec.go ├── arm │ └── a ├── benchcmp ├── cgo │ ├── errors │ │ ├── err1.go │ │ ├── err2.go │ │ ├── err3.go │ │ ├── issue11097a.go │ │ ├── issue11097b.go │ │ ├── issue13129.go │ │ ├── issue13423.go │ │ ├── issue13635.go │ │ ├── issue13830.go │ │ ├── issue14669.go │ │ ├── issue16116.go │ │ ├── issue16591.go │ │ ├── issue18452.go │ │ ├── issue18889.go │ │ ├── issue7757.go │ │ ├── issue8442.go │ │ ├── malloc.go │ │ ├── ptr.go │ │ └── test.bash │ ├── fortran │ │ ├── answer.f90 │ │ ├── fortran.go │ │ ├── fortran_test.go │ │ ├── helloworld │ │ │ └── helloworld.f90 │ │ └── test.bash │ ├── gmp │ │ ├── fib.go │ │ ├── gmp.go │ │ └── pi.go │ ├── life │ │ ├── c-life.c │ │ ├── life.go │ │ ├── life.h │ │ ├── main.go │ │ └── main.out │ ├── nocgo │ │ ├── nocgo.go │ │ └── nocgo_test.go │ ├── stdio │ │ ├── chain.go │ │ ├── chain.out │ │ ├── fib.go │ │ ├── fib.out │ │ ├── file.go │ │ ├── hello.go │ │ ├── hello.out │ │ ├── run.out │ │ └── stdio.go │ ├── test │ │ ├── align.go │ │ ├── api.go │ │ ├── backdoor.go │ │ ├── basic.go │ │ ├── buildid_linux.go │ │ ├── callback.go │ │ ├── callback_c.c │ │ ├── callback_c_gc.c │ │ ├── callback_c_gccgo.c │ │ ├── cflags.go │ │ ├── cgo_linux_test.go │ │ ├── cgo_stubs_android_test.go │ │ ├── cgo_test.go │ │ ├── cgo_thread_lock.go │ │ ├── cgo_unix_test.go │ │ ├── checkconst.go │ │ ├── complex.go │ │ ├── cthread.go │ │ ├── cthread_unix.c │ │ ├── cthread_windows.c │ │ ├── duplicate_symbol.go │ │ ├── env.go │ │ ├── exports.go │ │ ├── fpvar.go │ │ ├── gcc68255.go │ │ ├── gcc68255 │ │ │ ├── a.go │ │ │ ├── c.c │ │ │ └── c.h │ │ ├── helpers.go │ │ ├── issue10303.go │ │ ├── issue11925.go │ │ ├── issue12030.go │ │ ├── issue1222.go │ │ ├── issue1328.go │ │ ├── issue13402.go │ │ ├── issue13930.go │ │ ├── issue14838.go │ │ ├── issue1560.go │ │ ├── issue1635.go │ │ ├── issue17065.go │ │ ├── issue17537.go │ │ ├── issue18126.go │ │ ├── issue18146.go │ │ ├── issue18720.go │ │ ├── issue20129.go │ │ ├── issue20266.go │ │ ├── issue20266 │ │ │ └── issue20266.h │ │ ├── issue20369.go │ │ ├── issue21668.go │ │ ├── issue21708.go │ │ ├── issue2462.go │ │ ├── issue3250.go │ │ ├── issue3250w.go │ │ ├── issue3261.go │ │ ├── issue3729.go │ │ ├── issue3729w.go │ │ ├── issue3741.go │ │ ├── issue3775.go │ │ ├── issue3945.go │ │ ├── issue4029.c │ │ ├── issue4029.go │ │ ├── issue4029w.go │ │ ├── issue4054a.go │ │ ├── issue4054b.go │ │ ├── issue4273.c │ │ ├── issue4273b.c │ │ ├── issue4339.c │ │ ├── issue4339.go │ │ ├── issue4339.h │ │ ├── issue4417.go │ │ ├── issue4857.go │ │ ├── issue5227.go │ │ ├── issue5242.go │ │ ├── issue5337.go │ │ ├── issue5337w.go │ │ ├── issue5548.go │ │ ├── issue5548_c.c │ │ ├── issue5603.go │ │ ├── issue5740.go │ │ ├── issue5740a.c │ │ ├── issue5740b.c │ │ ├── issue5986.go │ │ ├── issue6128.go │ │ ├── issue6390.go │ │ ├── issue6472.go │ │ ├── issue6506.go │ │ ├── issue6612.go │ │ ├── issue6833.go │ │ ├── issue6833_c.c │ │ ├── issue6997_linux.c │ │ ├── issue6997_linux.go │ │ ├── issue7234_test.go │ │ ├── issue7560.go │ │ ├── issue7665.go │ │ ├── issue7786.go │ │ ├── issue7978.go │ │ ├── issue8092.go │ │ ├── issue8148.go │ │ ├── issue8331.h │ │ ├── issue8331a.go │ │ ├── issue8331b.go │ │ ├── issue8428.go │ │ ├── issue8441.go │ │ ├── issue8517.go │ │ ├── issue8517_windows.c │ │ ├── issue8517_windows.go │ │ ├── issue8694.go │ │ ├── issue8756.go │ │ ├── issue8756 │ │ │ └── issue8756.go │ │ ├── issue8811.c │ │ ├── issue8811.go │ │ ├── issue8828.go │ │ ├── issue8828 │ │ │ ├── issue8828.c │ │ │ └── trivial.go │ │ ├── issue8945.go │ │ ├── issue9026.go │ │ ├── issue9026 │ │ │ └── issue9026.go │ │ ├── issue9400 │ │ │ ├── asm_386.s │ │ │ ├── asm_amd64x.s │ │ │ ├── asm_arm.s │ │ │ ├── asm_arm64.s │ │ │ ├── asm_mips64x.s │ │ │ ├── asm_mipsx.s │ │ │ ├── asm_ppc64x.s │ │ │ ├── asm_s390x.s │ │ │ ├── gccgo.go │ │ │ └── stubs.go │ │ ├── issue9400_linux.go │ │ ├── issue9510.go │ │ ├── issue9510a │ │ │ └── a.go │ │ ├── issue9510b │ │ │ └── b.go │ │ ├── issue9557.go │ │ ├── setgid_linux.go │ │ ├── sigaltstack.go │ │ ├── sigprocmask.c │ │ └── sigprocmask.go │ ├── testasan │ │ └── main.go │ ├── testcarchive │ │ ├── carchive_test.go │ │ ├── main.c │ │ ├── main2.c │ │ ├── main3.c │ │ ├── main4.c │ │ ├── main5.c │ │ ├── main6.c │ │ ├── main_unix.c │ │ ├── main_windows.c │ │ └── src │ │ │ ├── libgo │ │ │ └── libgo.go │ │ │ ├── libgo2 │ │ │ └── libgo2.go │ │ │ ├── libgo3 │ │ │ └── libgo3.go │ │ │ ├── libgo4 │ │ │ └── libgo4.go │ │ │ ├── libgo6 │ │ │ └── sigprof.go │ │ │ └── p │ │ │ └── p.go │ ├── testcshared │ │ ├── main0.c │ │ ├── main1.c │ │ ├── main2.c │ │ ├── main3.c │ │ ├── main4.c │ │ ├── main5.c │ │ ├── src │ │ │ ├── libgo │ │ │ │ └── libgo.go │ │ │ ├── libgo2 │ │ │ │ ├── dup2.go │ │ │ │ ├── dup3.go │ │ │ │ └── libgo2.go │ │ │ ├── libgo4 │ │ │ │ └── libgo4.go │ │ │ ├── libgo5 │ │ │ │ └── libgo5.go │ │ │ └── p │ │ │ │ └── p.go │ │ └── test.bash │ ├── testgodefs │ │ ├── anonunion.go │ │ ├── issue8478.go │ │ ├── main.go │ │ └── test.bash │ ├── testplugin │ │ ├── altpath │ │ │ └── src │ │ │ │ ├── common │ │ │ │ └── common.go │ │ │ │ └── plugin-mismatch │ │ │ │ └── main.go │ │ ├── src │ │ │ ├── common │ │ │ │ └── common.go │ │ │ ├── host │ │ │ │ └── host.go │ │ │ ├── iface │ │ │ │ └── main.go │ │ │ ├── iface_a │ │ │ │ └── a.go │ │ │ ├── iface_b │ │ │ │ └── b.go │ │ │ ├── iface_i │ │ │ │ └── i.go │ │ │ ├── issue18676 │ │ │ │ ├── dynamodbstreamsevt │ │ │ │ │ └── definition.go │ │ │ │ ├── main.go │ │ │ │ └── plugin.go │ │ │ ├── issue19534 │ │ │ │ ├── main.go │ │ │ │ └── plugin.go │ │ │ ├── plugin1 │ │ │ │ └── plugin1.go │ │ │ ├── plugin2 │ │ │ │ └── plugin2.go │ │ │ └── sub │ │ │ │ └── plugin1 │ │ │ │ └── plugin1.go │ │ ├── test.bash │ │ ├── unnamed1.go │ │ └── unnamed2.go │ ├── testsanitizers │ │ ├── msan.go │ │ ├── msan2.go │ │ ├── msan3.go │ │ ├── msan4.go │ │ ├── msan5.go │ │ ├── msan_fail.go │ │ ├── msan_shared.go │ │ ├── test.bash │ │ ├── tsan.go │ │ ├── tsan10.go │ │ ├── tsan11.go │ │ ├── tsan12.go │ │ ├── tsan2.go │ │ ├── tsan3.go │ │ ├── tsan4.go │ │ ├── tsan5.go │ │ ├── tsan6.go │ │ ├── tsan7.go │ │ ├── tsan8.go │ │ ├── tsan9.go │ │ └── tsan_shared.go │ ├── testshared │ │ ├── shared_test.go │ │ └── src │ │ │ ├── dep2 │ │ │ └── dep2.go │ │ │ ├── dep3 │ │ │ └── dep3.go │ │ │ ├── depBase │ │ │ ├── asm.s │ │ │ ├── dep.go │ │ │ ├── gccgo.go │ │ │ └── stubs.go │ │ │ ├── division │ │ │ └── division.go │ │ │ ├── exe │ │ │ └── exe.go │ │ │ ├── exe2 │ │ │ └── exe2.go │ │ │ ├── exe3 │ │ │ └── exe3.go │ │ │ ├── execgo │ │ │ └── exe.go │ │ │ ├── explicit │ │ │ └── explicit.go │ │ │ ├── iface │ │ │ └── main.go │ │ │ ├── iface_a │ │ │ └── a.go │ │ │ ├── iface_b │ │ │ └── b.go │ │ │ ├── iface_i │ │ │ └── i.go │ │ │ ├── implicit │ │ │ └── implicit.go │ │ │ ├── implicitcmd │ │ │ └── implicitcmd.go │ │ │ └── trivial │ │ │ └── trivial.go │ ├── testsigfwd │ │ └── main.go │ ├── testso │ │ ├── cgoso.c │ │ ├── cgoso.go │ │ ├── cgoso_c.c │ │ ├── cgoso_unix.go │ │ └── main.go │ ├── testsovar │ │ ├── cgoso.go │ │ ├── cgoso_c.c │ │ ├── cgoso_c.h │ │ └── main.go │ └── testtls │ │ ├── tls.go │ │ ├── tls_test.go │ │ └── tls_unix.c ├── chrome │ └── gophertool │ │ ├── README.txt │ │ ├── background.html │ │ ├── background.js │ │ ├── gopher.js │ │ ├── gopher.png │ │ ├── manifest.json │ │ ├── popup.html │ │ └── popup.js ├── editors ├── git │ └── pre-commit ├── ios │ ├── README │ ├── clangwrap.sh │ ├── detect.go │ └── go_darwin_arm_exec.go ├── linkcheck │ └── linkcheck.go ├── nacl │ ├── README │ ├── go_nacl_386_exec │ ├── go_nacl_amd64p32_exec │ ├── go_nacl_arm_exec │ ├── mkzip.go │ ├── testdata │ │ ├── bin │ │ │ └── placeholder │ │ ├── empty │ │ ├── group │ │ ├── hosts │ │ └── mime.types │ └── testzip.proto ├── sortac │ └── sortac.go ├── swig │ ├── callback │ │ ├── callback.cc │ │ ├── callback.go │ │ ├── callback.h │ │ ├── callback.swigcxx │ │ └── callback_test.go │ └── stdio │ │ ├── file.swig │ │ └── file_test.go └── trace │ ├── README.md │ └── trace_viewer_lean.html ├── robots.txt ├── src ├── Make.dist ├── all.bash ├── all.bat ├── all.rc ├── androidtest.bash ├── archive │ ├── tar │ │ ├── common.go │ │ ├── example_test.go │ │ ├── format.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── stat_atim.go │ │ ├── stat_atimespec.go │ │ ├── stat_unix.go │ │ ├── strconv.go │ │ ├── strconv_test.go │ │ ├── tar_test.go │ │ ├── testdata │ │ │ ├── gnu-incremental.tar │ │ │ ├── gnu-multi-hdrs.tar │ │ │ ├── gnu.tar │ │ │ ├── hardlink.tar │ │ │ ├── hdr-only.tar │ │ │ ├── issue10968.tar │ │ │ ├── issue11169.tar │ │ │ ├── issue12435.tar │ │ │ ├── neg-size.tar │ │ │ ├── nil-uid.tar │ │ │ ├── pax-bad-hdr-file.tar │ │ │ ├── pax-bad-mtime-file.tar │ │ │ ├── pax-multi-hdrs.tar │ │ │ ├── pax-path-hdr.tar │ │ │ ├── pax-pos-size-file.tar │ │ │ ├── pax.tar │ │ │ ├── small.txt │ │ │ ├── small2.txt │ │ │ ├── sparse-formats.tar │ │ │ ├── star.tar │ │ │ ├── ustar-file-reg.tar │ │ │ ├── ustar.issue12594.tar │ │ │ ├── ustar.tar │ │ │ ├── v7.tar │ │ │ ├── writer-big-long.tar │ │ │ ├── writer-big.tar │ │ │ ├── writer.tar │ │ │ └── xattrs.tar │ │ ├── writer.go │ │ └── writer_test.go │ └── zip │ │ ├── example_test.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── register.go │ │ ├── struct.go │ │ ├── testdata │ │ ├── crc32-not-streamed.zip │ │ ├── dd.zip │ │ ├── go-no-datadesc-sig.zip │ │ ├── go-with-datadesc-sig.zip │ │ ├── gophercolor16x16.png │ │ ├── readme.notzip │ │ ├── readme.zip │ │ ├── symlink.zip │ │ ├── test-trailing-junk.zip │ │ ├── test.zip │ │ ├── unix.zip │ │ ├── winxp.zip │ │ ├── zip64-2.zip │ │ └── zip64.zip │ │ ├── writer.go │ │ ├── writer_test.go │ │ └── zip_test.go ├── bootstrap.bash ├── bufio │ ├── bufio.go │ ├── bufio_test.go │ ├── example_test.go │ ├── export_test.go │ ├── scan.go │ └── scan_test.go ├── buildall.bash ├── builtin │ └── builtin.go ├── bytes │ ├── buffer.go │ ├── buffer_test.go │ ├── bytes.go │ ├── bytes_amd64.go │ ├── bytes_decl.go │ ├── bytes_generic.go │ ├── bytes_s390x.go │ ├── bytes_test.go │ ├── compare_test.go │ ├── equal_test.go │ ├── example_test.go │ ├── export_test.go │ ├── reader.go │ └── reader_test.go ├── clean.bash ├── clean.bat ├── clean.rc ├── cmd │ ├── addr2line │ │ ├── addr2line_test.go │ │ └── main.go │ ├── api │ │ ├── goapi.go │ │ ├── goapi_test.go │ │ ├── run.go │ │ └── testdata │ │ │ └── src │ │ │ └── pkg │ │ │ ├── p1 │ │ │ ├── golden.txt │ │ │ └── p1.go │ │ │ ├── p2 │ │ │ ├── golden.txt │ │ │ └── p2.go │ │ │ └── p3 │ │ │ ├── golden.txt │ │ │ └── p3.go │ ├── asm │ │ ├── doc.go │ │ ├── internal │ │ │ ├── arch │ │ │ │ ├── amd64.go │ │ │ │ ├── arch.go │ │ │ │ ├── arm.go │ │ │ │ ├── arm64.go │ │ │ │ ├── mips.go │ │ │ │ ├── ppc64.go │ │ │ │ └── s390x.go │ │ │ ├── asm │ │ │ │ ├── asm.go │ │ │ │ ├── endtoend_test.go │ │ │ │ ├── expr_test.go │ │ │ │ ├── operand_test.go │ │ │ │ ├── parse.go │ │ │ │ ├── pseudo_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── 386.s │ │ │ │ │ ├── amd64.s │ │ │ │ │ ├── amd64enc.s │ │ │ │ │ ├── amd64error.s │ │ │ │ │ ├── arm.s │ │ │ │ │ ├── arm64.s │ │ │ │ │ ├── arm64enc.s │ │ │ │ │ ├── armerror.s │ │ │ │ │ ├── armv6.s │ │ │ │ │ ├── mips.s │ │ │ │ │ ├── mips64.s │ │ │ │ │ ├── ppc64.s │ │ │ │ │ └── s390x.s │ │ │ ├── flags │ │ │ │ └── flags.go │ │ │ └── lex │ │ │ │ ├── input.go │ │ │ │ ├── lex.go │ │ │ │ ├── lex_test.go │ │ │ │ ├── slice.go │ │ │ │ ├── stack.go │ │ │ │ └── tokenizer.go │ │ └── main.go │ ├── cgo │ │ ├── ast.go │ │ ├── doc.go │ │ ├── gcc.go │ │ ├── godefs.go │ │ ├── main.go │ │ ├── out.go │ │ └── util.go │ ├── compile │ │ ├── doc.go │ │ ├── fmt_test.go │ │ ├── internal │ │ │ ├── amd64 │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ └── ssa.go │ │ │ ├── arm │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ └── ssa.go │ │ │ ├── arm64 │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ └── ssa.go │ │ │ ├── gc │ │ │ │ ├── alg.go │ │ │ │ ├── align.go │ │ │ │ ├── asm_test.go │ │ │ │ ├── bexport.go │ │ │ │ ├── bimport.go │ │ │ │ ├── bitset.go │ │ │ │ ├── bootstrap.go │ │ │ │ ├── builtin.go │ │ │ │ ├── builtin │ │ │ │ │ └── runtime.go │ │ │ │ ├── builtin_test.go │ │ │ │ ├── bv.go │ │ │ │ ├── class_string.go │ │ │ │ ├── closure.go │ │ │ │ ├── const.go │ │ │ │ ├── constFold_test.go │ │ │ │ ├── dcl.go │ │ │ │ ├── esc.go │ │ │ │ ├── export.go │ │ │ │ ├── fixedbugs_test.go │ │ │ │ ├── float_test.go │ │ │ │ ├── fmt.go │ │ │ │ ├── gen.go │ │ │ │ ├── global_test.go │ │ │ │ ├── go.go │ │ │ │ ├── gsubr.go │ │ │ │ ├── iface_test.go │ │ │ │ ├── init.go │ │ │ │ ├── inl.go │ │ │ │ ├── lex.go │ │ │ │ ├── lex_test.go │ │ │ │ ├── logic_test.go │ │ │ │ ├── main.go │ │ │ │ ├── mkbuiltin.go │ │ │ │ ├── mpfloat.go │ │ │ │ ├── mpint.go │ │ │ │ ├── noder.go │ │ │ │ ├── norace.go │ │ │ │ ├── obj.go │ │ │ │ ├── opnames.go │ │ │ │ ├── order.go │ │ │ │ ├── pgen.go │ │ │ │ ├── pgen_test.go │ │ │ │ ├── phi.go │ │ │ │ ├── plive.go │ │ │ │ ├── pprof.go │ │ │ │ ├── race.go │ │ │ │ ├── racewalk.go │ │ │ │ ├── range.go │ │ │ │ ├── reflect.go │ │ │ │ ├── reflect_test.go │ │ │ │ ├── reproduciblebuilds_test.go │ │ │ │ ├── scope.go │ │ │ │ ├── scope_test.go │ │ │ │ ├── select.go │ │ │ │ ├── shift_test.go │ │ │ │ ├── sinit.go │ │ │ │ ├── sizeof_test.go │ │ │ │ ├── ssa.go │ │ │ │ ├── ssa_test.go │ │ │ │ ├── subr.go │ │ │ │ ├── swt.go │ │ │ │ ├── swt_test.go │ │ │ │ ├── syntax.go │ │ │ │ ├── testdata │ │ │ │ │ ├── addressed.go │ │ │ │ │ ├── append.go │ │ │ │ │ ├── arith.go │ │ │ │ │ ├── arithBoundary.go │ │ │ │ │ ├── arithConst.go │ │ │ │ │ ├── array.go │ │ │ │ │ ├── assert.go │ │ │ │ │ ├── break.go │ │ │ │ │ ├── chan.go │ │ │ │ │ ├── closure.go │ │ │ │ │ ├── cmp.go │ │ │ │ │ ├── cmpConst.go │ │ │ │ │ ├── compound.go │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── ctl.go │ │ │ │ │ ├── deferNoReturn.go │ │ │ │ │ ├── divbyzero.go │ │ │ │ │ ├── dupLoad.go │ │ │ │ │ ├── fp.go │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── arithBoundaryGen.go │ │ │ │ │ │ ├── arithConstGen.go │ │ │ │ │ │ ├── cmpConstGen.go │ │ │ │ │ │ ├── constFoldGen.go │ │ │ │ │ │ ├── copyGen.go │ │ │ │ │ │ └── zeroGen.go │ │ │ │ │ ├── loadstore.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── namedReturn.go │ │ │ │ │ ├── phi.go │ │ │ │ │ ├── regalloc.go │ │ │ │ │ ├── reproducible │ │ │ │ │ │ └── issue20272.go │ │ │ │ │ ├── short.go │ │ │ │ │ ├── slice.go │ │ │ │ │ ├── sqrt_const.go │ │ │ │ │ ├── string.go │ │ │ │ │ ├── unsafe.go │ │ │ │ │ └── zero.go │ │ │ │ ├── timings.go │ │ │ │ ├── trace.go │ │ │ │ ├── truncconst_test.go │ │ │ │ ├── typecheck.go │ │ │ │ ├── types.go │ │ │ │ ├── types_acc.go │ │ │ │ ├── universe.go │ │ │ │ ├── unsafe.go │ │ │ │ ├── util.go │ │ │ │ └── walk.go │ │ │ ├── mips │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ └── ssa.go │ │ │ ├── mips64 │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ └── ssa.go │ │ │ ├── ppc64 │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ ├── opt.go │ │ │ │ └── ssa.go │ │ │ ├── s390x │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ └── ssa.go │ │ │ ├── ssa │ │ │ │ ├── TODO │ │ │ │ ├── block.go │ │ │ │ ├── cache.go │ │ │ │ ├── check.go │ │ │ │ ├── checkbce.go │ │ │ │ ├── compile.go │ │ │ │ ├── config.go │ │ │ │ ├── copyelim.go │ │ │ │ ├── copyelim_test.go │ │ │ │ ├── critical.go │ │ │ │ ├── cse.go │ │ │ │ ├── cse_test.go │ │ │ │ ├── deadcode.go │ │ │ │ ├── deadcode_test.go │ │ │ │ ├── deadstore.go │ │ │ │ ├── deadstore_test.go │ │ │ │ ├── decompose.go │ │ │ │ ├── dom.go │ │ │ │ ├── dom_test.go │ │ │ │ ├── export_test.go │ │ │ │ ├── flagalloc.go │ │ │ │ ├── func.go │ │ │ │ ├── func_test.go │ │ │ │ ├── fuse.go │ │ │ │ ├── fuse_test.go │ │ │ │ ├── gen │ │ │ │ │ ├── 386.rules │ │ │ │ │ ├── 386Ops.go │ │ │ │ │ ├── AMD64.rules │ │ │ │ │ ├── AMD64Ops.go │ │ │ │ │ ├── ARM.rules │ │ │ │ │ ├── ARM64.rules │ │ │ │ │ ├── ARM64Ops.go │ │ │ │ │ ├── ARMOps.go │ │ │ │ │ ├── MIPS.rules │ │ │ │ │ ├── MIPS64.rules │ │ │ │ │ ├── MIPS64Ops.go │ │ │ │ │ ├── MIPSOps.go │ │ │ │ │ ├── PPC64.rules │ │ │ │ │ ├── PPC64Ops.go │ │ │ │ │ ├── README │ │ │ │ │ ├── S390X.rules │ │ │ │ │ ├── S390XOps.go │ │ │ │ │ ├── dec.rules │ │ │ │ │ ├── dec64.rules │ │ │ │ │ ├── dec64Ops.go │ │ │ │ │ ├── decOps.go │ │ │ │ │ ├── generic.rules │ │ │ │ │ ├── genericOps.go │ │ │ │ │ ├── main.go │ │ │ │ │ └── rulegen.go │ │ │ │ ├── html.go │ │ │ │ ├── id.go │ │ │ │ ├── layout.go │ │ │ │ ├── lca.go │ │ │ │ ├── lca_test.go │ │ │ │ ├── likelyadjust.go │ │ │ │ ├── location.go │ │ │ │ ├── loop_test.go │ │ │ │ ├── loopbce.go │ │ │ │ ├── loopreschedchecks.go │ │ │ │ ├── looprotate.go │ │ │ │ ├── lower.go │ │ │ │ ├── magic.go │ │ │ │ ├── magic_test.go │ │ │ │ ├── nilcheck.go │ │ │ │ ├── nilcheck_test.go │ │ │ │ ├── op.go │ │ │ │ ├── opGen.go │ │ │ │ ├── opt.go │ │ │ │ ├── passbm_test.go │ │ │ │ ├── phielim.go │ │ │ │ ├── phiopt.go │ │ │ │ ├── print.go │ │ │ │ ├── prove.go │ │ │ │ ├── redblack32.go │ │ │ │ ├── redblack32_test.go │ │ │ │ ├── regalloc.go │ │ │ │ ├── regalloc_test.go │ │ │ │ ├── rewrite.go │ │ │ │ ├── rewrite386.go │ │ │ │ ├── rewriteAMD64.go │ │ │ │ ├── rewriteARM.go │ │ │ │ ├── rewriteARM64.go │ │ │ │ ├── rewriteMIPS.go │ │ │ │ ├── rewriteMIPS64.go │ │ │ │ ├── rewritePPC64.go │ │ │ │ ├── rewriteS390X.go │ │ │ │ ├── rewrite_test.go │ │ │ │ ├── rewritedec.go │ │ │ │ ├── rewritedec64.go │ │ │ │ ├── rewritegeneric.go │ │ │ │ ├── schedule.go │ │ │ │ ├── schedule_test.go │ │ │ │ ├── shift_test.go │ │ │ │ ├── shortcircuit.go │ │ │ │ ├── shortcircuit_test.go │ │ │ │ ├── sizeof_test.go │ │ │ │ ├── sparsemap.go │ │ │ │ ├── sparseset.go │ │ │ │ ├── sparsetree.go │ │ │ │ ├── sparsetreemap.go │ │ │ │ ├── stackalloc.go │ │ │ │ ├── stackframe.go │ │ │ │ ├── tighten.go │ │ │ │ ├── trim.go │ │ │ │ ├── value.go │ │ │ │ ├── writebarrier.go │ │ │ │ ├── writebarrier_test.go │ │ │ │ └── zcse.go │ │ │ ├── syntax │ │ │ │ ├── branches.go │ │ │ │ ├── dumper.go │ │ │ │ ├── dumper_test.go │ │ │ │ ├── nodes.go │ │ │ │ ├── nodes_test.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ ├── printer.go │ │ │ │ ├── printer_test.go │ │ │ │ ├── scanner.go │ │ │ │ ├── scanner_test.go │ │ │ │ ├── source.go │ │ │ │ ├── syntax.go │ │ │ │ └── tokens.go │ │ │ ├── test │ │ │ │ ├── README │ │ │ │ ├── divconst_test.go │ │ │ │ └── test.go │ │ │ ├── types │ │ │ │ ├── pkg.go │ │ │ │ ├── scope.go │ │ │ │ ├── sizeof_test.go │ │ │ │ ├── sym.go │ │ │ │ ├── type.go │ │ │ │ └── utils.go │ │ │ └── x86 │ │ │ │ ├── 387.go │ │ │ │ ├── galign.go │ │ │ │ ├── ggen.go │ │ │ │ └── ssa.go │ │ └── main.go │ ├── cover │ │ ├── cover.go │ │ ├── cover_test.go │ │ ├── doc.go │ │ ├── func.go │ │ ├── html.go │ │ ├── profile.go │ │ └── testdata │ │ │ ├── main.go │ │ │ ├── p.go │ │ │ ├── profile.cov │ │ │ └── test.go │ ├── dist │ │ ├── README │ │ ├── build.go │ │ ├── buildgo.go │ │ ├── buildruntime.go │ │ ├── buildtool.go │ │ ├── cpuid_386.s │ │ ├── cpuid_amd64.s │ │ ├── cpuid_default.s │ │ ├── deps.go │ │ ├── main.go │ │ ├── mkdeps.bash │ │ ├── sys_default.go │ │ ├── sys_windows.go │ │ ├── test.go │ │ ├── test_linux.go │ │ ├── util.go │ │ ├── util_gc.go │ │ ├── util_gccgo.go │ │ ├── vfp_arm.s │ │ └── vfp_default.s │ ├── doc │ │ ├── dirs.go │ │ ├── doc_test.go │ │ ├── main.go │ │ ├── pkg.go │ │ └── testdata │ │ │ └── pkg.go │ ├── fix │ │ ├── context.go │ │ ├── context_test.go │ │ ├── doc.go │ │ ├── fix.go │ │ ├── gotypes.go │ │ ├── gotypes_test.go │ │ ├── import_test.go │ │ ├── main.go │ │ ├── main_test.go │ │ ├── netipv6zone.go │ │ ├── netipv6zone_test.go │ │ ├── printerconfig.go │ │ ├── printerconfig_test.go │ │ └── typecheck.go │ ├── go │ │ ├── alldocs.go │ │ ├── go11.go │ │ ├── go_test.go │ │ ├── go_unix_test.go │ │ ├── go_windows_test.go │ │ ├── internal │ │ │ ├── base │ │ │ │ ├── base.go │ │ │ │ ├── env.go │ │ │ │ ├── flag.go │ │ │ │ ├── path.go │ │ │ │ ├── signal.go │ │ │ │ ├── signal_notunix.go │ │ │ │ ├── signal_unix.go │ │ │ │ └── tool.go │ │ │ ├── bug │ │ │ │ └── bug.go │ │ │ ├── buildid │ │ │ │ ├── buildid.go │ │ │ │ └── note.go │ │ │ ├── cfg │ │ │ │ └── cfg.go │ │ │ ├── clean │ │ │ │ └── clean.go │ │ │ ├── cmdflag │ │ │ │ └── flag.go │ │ │ ├── doc │ │ │ │ └── doc.go │ │ │ ├── envcmd │ │ │ │ └── env.go │ │ │ ├── fix │ │ │ │ └── fix.go │ │ │ ├── fmtcmd │ │ │ │ └── fmt.go │ │ │ ├── generate │ │ │ │ ├── generate.go │ │ │ │ └── generate_test.go │ │ │ ├── get │ │ │ │ ├── discovery.go │ │ │ │ ├── get.go │ │ │ │ ├── pkg_test.go │ │ │ │ ├── tag_test.go │ │ │ │ ├── vcs.go │ │ │ │ └── vcs_test.go │ │ │ ├── help │ │ │ │ ├── help.go │ │ │ │ └── helpdoc.go │ │ │ ├── list │ │ │ │ ├── context.go │ │ │ │ └── list.go │ │ │ ├── load │ │ │ │ ├── match_test.go │ │ │ │ ├── path.go │ │ │ │ ├── pkg.go │ │ │ │ ├── search.go │ │ │ │ └── testgo.go │ │ │ ├── run │ │ │ │ └── run.go │ │ │ ├── str │ │ │ │ └── str.go │ │ │ ├── test │ │ │ │ ├── test.go │ │ │ │ └── testflag.go │ │ │ ├── tool │ │ │ │ └── tool.go │ │ │ ├── version │ │ │ │ └── version.go │ │ │ ├── vet │ │ │ │ ├── vet.go │ │ │ │ └── vetflag.go │ │ │ ├── web │ │ │ │ ├── bootstrap.go │ │ │ │ ├── http.go │ │ │ │ └── security.go │ │ │ └── work │ │ │ │ ├── build.go │ │ │ │ ├── build_test.go │ │ │ │ ├── security.go │ │ │ │ ├── security_test.go │ │ │ │ └── testgo.go │ │ ├── main.go │ │ ├── mkalldocs.sh │ │ ├── note_test.go │ │ ├── testdata │ │ │ ├── dep_test.go │ │ │ ├── example1_test.go │ │ │ ├── example2_test.go │ │ │ ├── failssh │ │ │ │ └── ssh │ │ │ ├── flag_test.go │ │ │ ├── generate │ │ │ │ ├── test1.go │ │ │ │ ├── test2.go │ │ │ │ ├── test3.go │ │ │ │ └── test4.go │ │ │ ├── importcom │ │ │ │ ├── bad.go │ │ │ │ ├── conflict.go │ │ │ │ ├── src │ │ │ │ │ ├── bad │ │ │ │ │ │ └── bad.go │ │ │ │ │ ├── conflict │ │ │ │ │ │ ├── a.go │ │ │ │ │ │ └── b.go │ │ │ │ │ ├── works │ │ │ │ │ │ └── x │ │ │ │ │ │ │ ├── x.go │ │ │ │ │ │ │ └── x1.go │ │ │ │ │ └── wrongplace │ │ │ │ │ │ └── x.go │ │ │ │ ├── works.go │ │ │ │ └── wrongplace.go │ │ │ ├── local │ │ │ │ ├── easy.go │ │ │ │ ├── easysub │ │ │ │ │ ├── easysub.go │ │ │ │ │ └── main.go │ │ │ │ ├── hard.go │ │ │ │ └── sub │ │ │ │ │ ├── sub.go │ │ │ │ │ └── sub │ │ │ │ │ └── subsub.go │ │ │ ├── modlegacy │ │ │ │ └── src │ │ │ │ │ ├── new │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── new.go │ │ │ │ │ ├── p1 │ │ │ │ │ │ └── p1.go │ │ │ │ │ ├── p2 │ │ │ │ │ │ └── p2.go │ │ │ │ │ └── sub │ │ │ │ │ │ ├── go.mod │ │ │ │ │ │ ├── inner │ │ │ │ │ │ ├── go.mod │ │ │ │ │ │ └── x │ │ │ │ │ │ │ └── x.go │ │ │ │ │ │ └── x │ │ │ │ │ │ └── v1 │ │ │ │ │ │ └── y │ │ │ │ │ │ └── y.go │ │ │ │ │ └── old │ │ │ │ │ ├── p1 │ │ │ │ │ └── p1.go │ │ │ │ │ └── p2 │ │ │ │ │ └── p2.go │ │ │ ├── norunexample │ │ │ │ ├── example_test.go │ │ │ │ └── test_test.go │ │ │ ├── rundir │ │ │ │ ├── sub │ │ │ │ │ └── sub.go │ │ │ │ └── x.go │ │ │ ├── shadow │ │ │ │ ├── root1 │ │ │ │ │ └── src │ │ │ │ │ │ ├── foo │ │ │ │ │ │ └── foo.go │ │ │ │ │ │ └── math │ │ │ │ │ │ └── math.go │ │ │ │ └── root2 │ │ │ │ │ └── src │ │ │ │ │ └── foo │ │ │ │ │ └── foo.go │ │ │ ├── src │ │ │ │ ├── badc │ │ │ │ │ ├── x.c │ │ │ │ │ └── x.go │ │ │ │ ├── badpkg │ │ │ │ │ └── x.go │ │ │ │ ├── badtest │ │ │ │ │ ├── badexec │ │ │ │ │ │ └── x_test.go │ │ │ │ │ ├── badsyntax │ │ │ │ │ │ ├── x.go │ │ │ │ │ │ └── x_test.go │ │ │ │ │ └── badvar │ │ │ │ │ │ ├── x.go │ │ │ │ │ │ └── x_test.go │ │ │ │ ├── bench │ │ │ │ │ └── x_test.go │ │ │ │ ├── benchfatal │ │ │ │ │ └── x_test.go │ │ │ │ ├── canonical │ │ │ │ │ ├── a │ │ │ │ │ │ ├── a.go │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ └── c │ │ │ │ │ │ │ └── c.go │ │ │ │ │ ├── b │ │ │ │ │ │ └── b.go │ │ │ │ │ └── d │ │ │ │ │ │ └── d.go │ │ │ │ ├── cgoasm │ │ │ │ │ ├── p.go │ │ │ │ │ └── p.s │ │ │ │ ├── cgocover │ │ │ │ │ ├── p.go │ │ │ │ │ └── p_test.go │ │ │ │ ├── cgocover2 │ │ │ │ │ ├── p.go │ │ │ │ │ └── x_test.go │ │ │ │ ├── cgocover3 │ │ │ │ │ ├── p.go │ │ │ │ │ ├── p_test.go │ │ │ │ │ └── x_test.go │ │ │ │ ├── cgocover4 │ │ │ │ │ ├── notcgo.go │ │ │ │ │ ├── p.go │ │ │ │ │ └── x_test.go │ │ │ │ ├── cgotest │ │ │ │ │ └── m.go │ │ │ │ ├── dupload │ │ │ │ │ ├── dupload.go │ │ │ │ │ ├── p │ │ │ │ │ │ └── p.go │ │ │ │ │ ├── p2 │ │ │ │ │ │ └── p2.go │ │ │ │ │ └── vendor │ │ │ │ │ │ └── p │ │ │ │ │ │ └── p.go │ │ │ │ ├── empty │ │ │ │ │ ├── pkg │ │ │ │ │ │ └── pkg.go │ │ │ │ │ ├── pkgtest │ │ │ │ │ │ ├── pkg.go │ │ │ │ │ │ └── test_test.go │ │ │ │ │ ├── pkgtestxtest │ │ │ │ │ │ ├── pkg.go │ │ │ │ │ │ ├── test_test.go │ │ │ │ │ │ └── xtest_test.go │ │ │ │ │ ├── pkgxtest │ │ │ │ │ │ ├── pkg.go │ │ │ │ │ │ └── xtest_test.go │ │ │ │ │ ├── test │ │ │ │ │ │ └── test_test.go │ │ │ │ │ ├── testxtest │ │ │ │ │ │ ├── test_test.go │ │ │ │ │ │ └── xtest_test.go │ │ │ │ │ └── xtest │ │ │ │ │ │ └── xtest_test.go │ │ │ │ ├── exclude │ │ │ │ │ ├── empty │ │ │ │ │ │ └── x.txt │ │ │ │ │ ├── ignore │ │ │ │ │ │ └── _x.go │ │ │ │ │ ├── x.go │ │ │ │ │ └── x_linux.go │ │ │ │ ├── gencycle │ │ │ │ │ └── gencycle.go │ │ │ │ ├── go-cmd-test │ │ │ │ │ └── helloworld.go │ │ │ │ ├── importmain │ │ │ │ │ ├── ismain │ │ │ │ │ │ └── main.go │ │ │ │ │ └── test │ │ │ │ │ │ ├── test.go │ │ │ │ │ │ └── test_test.go │ │ │ │ ├── main_test │ │ │ │ │ ├── m.go │ │ │ │ │ └── m_test.go │ │ │ │ ├── my.pkg │ │ │ │ │ ├── main │ │ │ │ │ │ └── main.go │ │ │ │ │ └── pkg.go │ │ │ │ ├── notest │ │ │ │ │ └── hello.go │ │ │ │ ├── run │ │ │ │ │ ├── bad.go │ │ │ │ │ ├── good.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── internal.go │ │ │ │ │ └── subdir │ │ │ │ │ │ └── internal │ │ │ │ │ │ └── private │ │ │ │ │ │ └── private.go │ │ │ │ ├── syntaxerror │ │ │ │ │ ├── x.go │ │ │ │ │ └── x_test.go │ │ │ │ ├── testcycle │ │ │ │ │ ├── p1 │ │ │ │ │ │ ├── p1.go │ │ │ │ │ │ └── p1_test.go │ │ │ │ │ ├── p2 │ │ │ │ │ │ └── p2.go │ │ │ │ │ ├── p3 │ │ │ │ │ │ ├── p3.go │ │ │ │ │ │ └── p3_test.go │ │ │ │ │ └── q1 │ │ │ │ │ │ ├── q1.go │ │ │ │ │ │ └── q1_test.go │ │ │ │ ├── testdep │ │ │ │ │ ├── p1 │ │ │ │ │ │ ├── p1.go │ │ │ │ │ │ └── p1_test.go │ │ │ │ │ ├── p2 │ │ │ │ │ │ └── p2.go │ │ │ │ │ └── p3 │ │ │ │ │ │ └── p3.go │ │ │ │ ├── testlist │ │ │ │ │ ├── bench_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ └── test_test.go │ │ │ │ ├── testrace │ │ │ │ │ └── race_test.go │ │ │ │ ├── testregexp │ │ │ │ │ ├── x_test.go │ │ │ │ │ └── z_test.go │ │ │ │ ├── vend │ │ │ │ │ ├── bad.go │ │ │ │ │ ├── dir1 │ │ │ │ │ │ └── dir1.go │ │ │ │ │ ├── good.go │ │ │ │ │ ├── hello │ │ │ │ │ │ ├── hello.go │ │ │ │ │ │ ├── hello_test.go │ │ │ │ │ │ └── hellox_test.go │ │ │ │ │ ├── subdir │ │ │ │ │ │ ├── bad.go │ │ │ │ │ │ └── good.go │ │ │ │ │ ├── vendor │ │ │ │ │ │ ├── p │ │ │ │ │ │ │ └── p.go │ │ │ │ │ │ ├── q │ │ │ │ │ │ │ └── q.go │ │ │ │ │ │ ├── strings │ │ │ │ │ │ │ └── msg.go │ │ │ │ │ │ └── vend │ │ │ │ │ │ │ └── dir1 │ │ │ │ │ │ │ └── dir2 │ │ │ │ │ │ │ └── dir2.go │ │ │ │ │ └── x │ │ │ │ │ │ ├── invalid │ │ │ │ │ │ └── invalid.go │ │ │ │ │ │ ├── vendor │ │ │ │ │ │ ├── p │ │ │ │ │ │ │ ├── p.go │ │ │ │ │ │ │ └── p │ │ │ │ │ │ │ │ └── p.go │ │ │ │ │ │ └── r │ │ │ │ │ │ │ └── r.go │ │ │ │ │ │ └── x.go │ │ │ │ ├── vetpkg │ │ │ │ │ ├── a_test.go │ │ │ │ │ ├── b.go │ │ │ │ │ └── c.go │ │ │ │ └── xtestonly │ │ │ │ │ ├── f.go │ │ │ │ │ └── f_test.go │ │ │ ├── standalone_benchmark_test.go │ │ │ ├── standalone_fail_sub_test.go │ │ │ ├── standalone_parallel_sub_test.go │ │ │ ├── standalone_sub_test.go │ │ │ ├── standalone_test.go │ │ │ ├── testimport │ │ │ │ ├── p.go │ │ │ │ ├── p1 │ │ │ │ │ └── p1.go │ │ │ │ ├── p2 │ │ │ │ │ └── p2.go │ │ │ │ ├── p_test.go │ │ │ │ └── x_test.go │ │ │ ├── testinternal │ │ │ │ └── p.go │ │ │ ├── testinternal2 │ │ │ │ ├── p.go │ │ │ │ └── x │ │ │ │ │ └── y │ │ │ │ │ └── z │ │ │ │ │ └── internal │ │ │ │ │ └── w │ │ │ │ │ └── w.go │ │ │ ├── testinternal3 │ │ │ │ └── t.go │ │ │ ├── testinternal4 │ │ │ │ └── src │ │ │ │ │ ├── p │ │ │ │ │ └── p.go │ │ │ │ │ └── q │ │ │ │ │ ├── internal │ │ │ │ │ └── x │ │ │ │ │ │ └── x.go │ │ │ │ │ └── j │ │ │ │ │ └── j.go │ │ │ ├── testonly │ │ │ │ └── p_test.go │ │ │ ├── testterminal18153 │ │ │ │ └── terminal_test.go │ │ │ ├── testvendor │ │ │ │ └── src │ │ │ │ │ ├── p │ │ │ │ │ └── p.go │ │ │ │ │ └── q │ │ │ │ │ ├── vendor │ │ │ │ │ └── x │ │ │ │ │ │ └── x.go │ │ │ │ │ ├── y │ │ │ │ │ └── y.go │ │ │ │ │ └── z │ │ │ │ │ └── z.go │ │ │ ├── testvendor2 │ │ │ │ ├── src │ │ │ │ │ └── p │ │ │ │ │ │ └── p.go │ │ │ │ └── vendor │ │ │ │ │ └── x │ │ │ │ │ └── x.go │ │ │ └── timeoutbench_test.go │ │ └── vendor_test.go │ ├── gofmt │ │ ├── doc.go │ │ ├── gofmt.go │ │ ├── gofmt_test.go │ │ ├── internal.go │ │ ├── long_test.go │ │ ├── rewrite.go │ │ ├── simplify.go │ │ └── testdata │ │ │ ├── comments.golden │ │ │ ├── comments.input │ │ │ ├── composites.golden │ │ │ ├── composites.input │ │ │ ├── crlf.golden │ │ │ ├── crlf.input │ │ │ ├── emptydecl.golden │ │ │ ├── emptydecl.input │ │ │ ├── import.golden │ │ │ ├── import.input │ │ │ ├── ranges.golden │ │ │ ├── ranges.input │ │ │ ├── rewrite1.golden │ │ │ ├── rewrite1.input │ │ │ ├── rewrite2.golden │ │ │ ├── rewrite2.input │ │ │ ├── rewrite3.golden │ │ │ ├── rewrite3.input │ │ │ ├── rewrite4.golden │ │ │ ├── rewrite4.input │ │ │ ├── rewrite5.golden │ │ │ ├── rewrite5.input │ │ │ ├── rewrite6.golden │ │ │ ├── rewrite6.input │ │ │ ├── rewrite7.golden │ │ │ ├── rewrite7.input │ │ │ ├── rewrite8.golden │ │ │ ├── rewrite8.input │ │ │ ├── rewrite9.golden │ │ │ ├── rewrite9.input │ │ │ ├── slices1.golden │ │ │ ├── slices1.input │ │ │ ├── stdin1.golden │ │ │ ├── stdin1.input │ │ │ ├── stdin2.golden │ │ │ ├── stdin2.input │ │ │ ├── stdin3.golden │ │ │ ├── stdin3.input │ │ │ ├── stdin4.golden │ │ │ ├── stdin4.input │ │ │ ├── stdin5.golden │ │ │ ├── stdin5.input │ │ │ ├── stdin6.golden │ │ │ ├── stdin6.input │ │ │ ├── stdin7.golden │ │ │ ├── stdin7.input │ │ │ ├── typealias.golden │ │ │ ├── typealias.input │ │ │ ├── typeswitch.golden │ │ │ └── typeswitch.input │ ├── internal │ │ ├── bio │ │ │ ├── buf.go │ │ │ └── must.go │ │ ├── browser │ │ │ └── browser.go │ │ ├── dwarf │ │ │ ├── dwarf.go │ │ │ ├── dwarf_defs.go │ │ │ └── dwarf_test.go │ │ ├── gcprog │ │ │ └── gcprog.go │ │ ├── goobj │ │ │ └── read.go │ │ ├── obj │ │ │ ├── addrtype_string.go │ │ │ ├── arm │ │ │ │ ├── a.out.go │ │ │ │ ├── anames.go │ │ │ │ ├── anames5.go │ │ │ │ ├── asm5.go │ │ │ │ ├── list5.go │ │ │ │ └── obj5.go │ │ │ ├── arm64 │ │ │ │ ├── a.out.go │ │ │ │ ├── anames.go │ │ │ │ ├── anames7.go │ │ │ │ ├── asm7.go │ │ │ │ ├── asm_test.go │ │ │ │ ├── list7.go │ │ │ │ └── obj7.go │ │ │ ├── bootstrap.go │ │ │ ├── data.go │ │ │ ├── go.go │ │ │ ├── inl.go │ │ │ ├── ld.go │ │ │ ├── line.go │ │ │ ├── line_test.go │ │ │ ├── link.go │ │ │ ├── mips │ │ │ │ ├── a.out.go │ │ │ │ ├── anames.go │ │ │ │ ├── anames0.go │ │ │ │ ├── asm0.go │ │ │ │ ├── list0.go │ │ │ │ └── obj0.go │ │ │ ├── objfile.go │ │ │ ├── pass.go │ │ │ ├── pcln.go │ │ │ ├── plist.go │ │ │ ├── ppc64 │ │ │ │ ├── a.out.go │ │ │ │ ├── anames.go │ │ │ │ ├── anames9.go │ │ │ │ ├── asm9.go │ │ │ │ ├── list9.go │ │ │ │ └── obj9.go │ │ │ ├── s390x │ │ │ │ ├── a.out.go │ │ │ │ ├── anames.go │ │ │ │ ├── anamesz.go │ │ │ │ ├── asmz.go │ │ │ │ ├── listz.go │ │ │ │ ├── objz.go │ │ │ │ └── vector.go │ │ │ ├── sizeof_test.go │ │ │ ├── sort.go │ │ │ ├── stringer.go │ │ │ ├── sym.go │ │ │ ├── textflag.go │ │ │ ├── util.go │ │ │ └── x86 │ │ │ │ ├── a.out.go │ │ │ │ ├── anames.go │ │ │ │ ├── asm6.go │ │ │ │ ├── issue19518_test.go │ │ │ │ ├── list6.go │ │ │ │ ├── obj6.go │ │ │ │ └── obj6_test.go │ │ ├── objabi │ │ │ ├── autotype.go │ │ │ ├── doc.go │ │ │ ├── flag.go │ │ │ ├── funcdata.go │ │ │ ├── head.go │ │ │ ├── line.go │ │ │ ├── path.go │ │ │ ├── path_test.go │ │ │ ├── reloctype.go │ │ │ ├── reloctype_string.go │ │ │ ├── stack.go │ │ │ ├── symkind.go │ │ │ ├── symkind_string.go │ │ │ ├── typekind.go │ │ │ └── util.go │ │ ├── objfile │ │ │ ├── disasm.go │ │ │ ├── elf.go │ │ │ ├── goobj.go │ │ │ ├── macho.go │ │ │ ├── objfile.go │ │ │ ├── pe.go │ │ │ └── plan9obj.go │ │ ├── src │ │ │ ├── pos.go │ │ │ ├── pos_test.go │ │ │ ├── xpos.go │ │ │ └── xpos_test.go │ │ └── sys │ │ │ └── arch.go │ ├── link │ │ ├── doc.go │ │ ├── dwarf_test.go │ │ ├── internal │ │ │ ├── amd64 │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── arm │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── arm64 │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── ld │ │ │ │ ├── ar.go │ │ │ │ ├── config.go │ │ │ │ ├── data.go │ │ │ │ ├── deadcode.go │ │ │ │ ├── decodesym.go │ │ │ │ ├── dwarf.go │ │ │ │ ├── dwarf_test.go │ │ │ │ ├── elf.go │ │ │ │ ├── go.go │ │ │ │ ├── ld.go │ │ │ │ ├── ldelf.go │ │ │ │ ├── ldmacho.go │ │ │ │ ├── ldpe.go │ │ │ │ ├── lib.go │ │ │ │ ├── link.go │ │ │ │ ├── macho.go │ │ │ │ ├── macho_combine_dwarf.go │ │ │ │ ├── main.go │ │ │ │ ├── nooptcgolink_test.go │ │ │ │ ├── objfile.go │ │ │ │ ├── pcln.go │ │ │ │ ├── pe.go │ │ │ │ ├── sym.go │ │ │ │ ├── symbols.go │ │ │ │ ├── symkind.go │ │ │ │ ├── symkind_string.go │ │ │ │ ├── symtab.go │ │ │ │ ├── typelink.go │ │ │ │ └── util.go │ │ │ ├── mips │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── mips64 │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── ppc64 │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ ├── s390x │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ │ └── x86 │ │ │ │ ├── asm.go │ │ │ │ ├── l.go │ │ │ │ └── obj.go │ │ ├── link_test.go │ │ ├── linkbig_test.go │ │ └── main.go │ ├── nm │ │ ├── doc.go │ │ ├── nm.go │ │ ├── nm_cgo_test.go │ │ └── nm_test.go │ ├── objdump │ │ ├── main.go │ │ ├── objdump_test.go │ │ └── testdata │ │ │ └── fmthello.go │ ├── pack │ │ ├── doc.go │ │ ├── pack.go │ │ └── pack_test.go │ ├── pprof │ │ ├── README │ │ ├── doc.go │ │ └── pprof.go │ ├── trace │ │ ├── doc.go │ │ ├── goroutines.go │ │ ├── main.go │ │ ├── pprof.go │ │ ├── trace.go │ │ └── trace_test.go │ ├── vendor │ │ ├── github.com │ │ │ ├── google │ │ │ │ └── pprof │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTING │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc │ │ │ │ │ ├── developer │ │ │ │ │ │ ├── pprof.dev.md │ │ │ │ │ │ └── profile.proto.md │ │ │ │ │ └── pprof.md │ │ │ │ │ ├── driver │ │ │ │ │ └── driver.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── binutils │ │ │ │ │ │ ├── addr2liner.go │ │ │ │ │ │ ├── addr2liner_llvm.go │ │ │ │ │ │ ├── addr2liner_nm.go │ │ │ │ │ │ ├── binutils.go │ │ │ │ │ │ ├── binutils_test.go │ │ │ │ │ │ ├── disasm.go │ │ │ │ │ │ └── disasm_test.go │ │ │ │ │ ├── driver │ │ │ │ │ │ ├── cli.go │ │ │ │ │ │ ├── commands.go │ │ │ │ │ │ ├── driver.go │ │ │ │ │ │ ├── driver_focus.go │ │ │ │ │ │ ├── driver_test.go │ │ │ │ │ │ ├── fetch.go │ │ │ │ │ │ ├── fetch_test.go │ │ │ │ │ │ ├── interactive.go │ │ │ │ │ │ ├── interactive_test.go │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ ├── tempfile.go │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ ├── cppbench.cpu │ │ │ │ │ │ │ ├── file1000.src │ │ │ │ │ │ │ ├── file2000.src │ │ │ │ │ │ │ ├── file3000.src │ │ │ │ │ │ │ ├── go.crc32.cpu │ │ │ │ │ │ │ ├── go.nomappings.crash │ │ │ │ │ │ │ ├── pprof.contention.cum.files.dot │ │ │ │ │ │ │ ├── pprof.contention.flat.addresses.dot.focus.ignore │ │ │ │ │ │ │ ├── pprof.cpu.callgrind │ │ │ │ │ │ │ ├── pprof.cpu.comments │ │ │ │ │ │ │ ├── pprof.cpu.cum.lines.text.hide │ │ │ │ │ │ │ ├── pprof.cpu.cum.lines.text.show │ │ │ │ │ │ │ ├── pprof.cpu.cum.lines.topproto.hide │ │ │ │ │ │ │ ├── pprof.cpu.flat.addresses.disasm │ │ │ │ │ │ │ ├── pprof.cpu.flat.addresses.weblist │ │ │ │ │ │ │ ├── pprof.cpu.flat.functions.dot │ │ │ │ │ │ │ ├── pprof.cpu.flat.functions.text │ │ │ │ │ │ │ ├── pprof.cpu.peek │ │ │ │ │ │ │ ├── pprof.cpu.tags │ │ │ │ │ │ │ ├── pprof.cpu.tags.focus.ignore │ │ │ │ │ │ │ ├── pprof.cpu.traces │ │ │ │ │ │ │ ├── pprof.cpusmall.flat.addresses.tree │ │ │ │ │ │ │ ├── pprof.heap.callgrind │ │ │ │ │ │ │ ├── pprof.heap.comments │ │ │ │ │ │ │ ├── pprof.heap.cum.lines.tree.focus │ │ │ │ │ │ │ ├── pprof.heap.cum.relative_percentages.tree.focus │ │ │ │ │ │ │ ├── pprof.heap.flat.files.seconds.text │ │ │ │ │ │ │ ├── pprof.heap.flat.files.text │ │ │ │ │ │ │ ├── pprof.heap.flat.inuse_objects.text │ │ │ │ │ │ │ ├── pprof.heap.flat.inuse_space.dot.focus │ │ │ │ │ │ │ ├── pprof.heap.flat.inuse_space.dot.focus.ignore │ │ │ │ │ │ │ ├── pprof.heap.flat.lines.dot.focus │ │ │ │ │ │ │ ├── pprof.heap.tags │ │ │ │ │ │ │ ├── pprof.heap.tags.unit │ │ │ │ │ │ │ ├── pprof.heap_alloc.flat.alloc_objects.text │ │ │ │ │ │ │ ├── pprof.heap_alloc.flat.alloc_space.dot.focus │ │ │ │ │ │ │ ├── pprof.heap_alloc.flat.alloc_space.dot.hide │ │ │ │ │ │ │ └── pprof.unknown.flat.functions.text │ │ │ │ │ ├── elfexec │ │ │ │ │ │ ├── elfexec.go │ │ │ │ │ │ └── elfexec_test.go │ │ │ │ │ ├── graph │ │ │ │ │ │ ├── dotgraph.go │ │ │ │ │ │ ├── dotgraph_test.go │ │ │ │ │ │ ├── graph.go │ │ │ │ │ │ ├── graph_test.go │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ ├── compose1.dot │ │ │ │ │ │ │ ├── compose2.dot │ │ │ │ │ │ │ ├── compose3.dot │ │ │ │ │ │ │ ├── compose4.dot │ │ │ │ │ │ │ └── compose5.dot │ │ │ │ │ ├── measurement │ │ │ │ │ │ └── measurement.go │ │ │ │ │ ├── plugin │ │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── proftest │ │ │ │ │ │ └── proftest.go │ │ │ │ │ ├── report │ │ │ │ │ │ ├── report.go │ │ │ │ │ │ ├── report_test.go │ │ │ │ │ │ ├── source.go │ │ │ │ │ │ ├── source_html.go │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ ├── source.dot │ │ │ │ │ │ │ ├── source.rpt │ │ │ │ │ │ │ ├── source1 │ │ │ │ │ │ │ └── source2 │ │ │ │ │ ├── symbolizer │ │ │ │ │ │ ├── symbolizer.go │ │ │ │ │ │ └── symbolizer_test.go │ │ │ │ │ └── symbolz │ │ │ │ │ │ ├── symbolz.go │ │ │ │ │ │ └── symbolz_test.go │ │ │ │ │ ├── pprof.go │ │ │ │ │ ├── profile │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── index.go │ │ │ │ │ ├── index_test.go │ │ │ │ │ ├── legacy_java_profile.go │ │ │ │ │ ├── legacy_profile.go │ │ │ │ │ ├── legacy_profile_test.go │ │ │ │ │ ├── merge.go │ │ │ │ │ ├── profile.go │ │ │ │ │ ├── profile_test.go │ │ │ │ │ ├── proto.go │ │ │ │ │ ├── proto_test.go │ │ │ │ │ ├── prune.go │ │ │ │ │ ├── prune_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── cppbench.contention │ │ │ │ │ │ ├── cppbench.contention.string │ │ │ │ │ │ ├── cppbench.cpu │ │ │ │ │ │ ├── cppbench.cpu.string │ │ │ │ │ │ ├── cppbench.growth │ │ │ │ │ │ ├── cppbench.growth.string │ │ │ │ │ │ ├── cppbench.heap │ │ │ │ │ │ ├── cppbench.heap.string │ │ │ │ │ │ ├── cppbench.thread │ │ │ │ │ │ ├── cppbench.thread.all │ │ │ │ │ │ ├── cppbench.thread.all.string │ │ │ │ │ │ ├── cppbench.thread.none │ │ │ │ │ │ ├── cppbench.thread.none.string │ │ │ │ │ │ ├── cppbench.thread.string │ │ │ │ │ │ ├── go.crc32.cpu │ │ │ │ │ │ ├── go.crc32.cpu.string │ │ │ │ │ │ ├── go.godoc.thread │ │ │ │ │ │ ├── go.godoc.thread.string │ │ │ │ │ │ ├── gobench.cpu │ │ │ │ │ │ ├── gobench.cpu.string │ │ │ │ │ │ ├── gobench.heap │ │ │ │ │ │ ├── gobench.heap.string │ │ │ │ │ │ ├── java.contention │ │ │ │ │ │ ├── java.contention.string │ │ │ │ │ │ ├── java.cpu │ │ │ │ │ │ ├── java.cpu.string │ │ │ │ │ │ ├── java.heap │ │ │ │ │ │ └── java.heap.string │ │ │ │ │ ├── proto │ │ │ │ │ └── profile.proto │ │ │ │ │ └── third_party │ │ │ │ │ └── svg │ │ │ │ │ ├── svg.go │ │ │ │ │ └── svgpan.go │ │ │ └── ianlancetaylor │ │ │ │ └── demangle │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── ast.go │ │ │ │ ├── ast_test.go │ │ │ │ ├── c++filt.go │ │ │ │ ├── demangle.go │ │ │ │ ├── demangle_test.go │ │ │ │ ├── expected_test.go │ │ │ │ └── testdata │ │ │ │ └── demangle-expected │ │ ├── golang.org │ │ │ └── x │ │ │ │ └── arch │ │ │ │ ├── arm │ │ │ │ └── armasm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_test.go │ │ │ │ │ ├── ext_test.go │ │ │ │ │ ├── gnu.go │ │ │ │ │ ├── inst.go │ │ │ │ │ ├── objdump_test.go │ │ │ │ │ ├── objdumpext_test.go │ │ │ │ │ ├── plan9x.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── testdata │ │ │ │ │ ├── Makefile │ │ │ │ │ └── decode.txt │ │ │ │ ├── ppc64 │ │ │ │ └── ppc64asm │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── ext_test.go │ │ │ │ │ ├── field.go │ │ │ │ │ ├── field_test.go │ │ │ │ │ ├── gnu.go │ │ │ │ │ ├── inst.go │ │ │ │ │ ├── objdump_test.go │ │ │ │ │ ├── objdumpext_test.go │ │ │ │ │ ├── plan9.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── testdata │ │ │ │ │ └── decode.txt │ │ │ │ └── x86 │ │ │ │ └── x86asm │ │ │ │ ├── Makefile │ │ │ │ ├── decode.go │ │ │ │ ├── decode_test.go │ │ │ │ ├── ext_test.go │ │ │ │ ├── gnu.go │ │ │ │ ├── inst.go │ │ │ │ ├── inst_test.go │ │ │ │ ├── intel.go │ │ │ │ ├── objdump_test.go │ │ │ │ ├── objdumpext_test.go │ │ │ │ ├── plan9ext_test.go │ │ │ │ ├── plan9x.go │ │ │ │ ├── plan9x_test.go │ │ │ │ ├── tables.go │ │ │ │ ├── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── decode.txt │ │ │ │ └── libmach8db.c │ │ │ │ ├── xed_test.go │ │ │ │ └── xedext_test.go │ │ └── vendor.json │ └── vet │ │ ├── README │ │ ├── all │ │ ├── main.go │ │ └── whitelist │ │ │ ├── 386.txt │ │ │ ├── all.txt │ │ │ ├── amd64.txt │ │ │ ├── android_386.txt │ │ │ ├── android_amd64.txt │ │ │ ├── android_arm.txt │ │ │ ├── arm.txt │ │ │ ├── arm64.txt │ │ │ ├── darwin_386.txt │ │ │ ├── darwin_amd64.txt │ │ │ ├── darwin_arm.txt │ │ │ ├── darwin_arm64.txt │ │ │ ├── dragonfly_amd64.txt │ │ │ ├── freebsd_386.txt │ │ │ ├── freebsd_amd64.txt │ │ │ ├── freebsd_arm.txt │ │ │ ├── linux_386.txt │ │ │ ├── linux_amd64.txt │ │ │ ├── linux_arm.txt │ │ │ ├── linux_arm64.txt │ │ │ ├── linux_ppc64x.txt │ │ │ ├── mips.txt │ │ │ ├── mips64x.txt │ │ │ ├── mipsle.txt │ │ │ ├── mipsx.txt │ │ │ ├── nacl_386.txt │ │ │ ├── nacl_amd64p32.txt │ │ │ ├── nacl_arm.txt │ │ │ ├── netbsd.txt │ │ │ ├── netbsd_386.txt │ │ │ ├── netbsd_amd64.txt │ │ │ ├── netbsd_arm.txt │ │ │ ├── openbsd_386.txt │ │ │ ├── openbsd_amd64.txt │ │ │ ├── openbsd_arm.txt │ │ │ ├── plan9_386.txt │ │ │ ├── plan9_amd64.txt │ │ │ ├── plan9_arm.txt │ │ │ ├── ppc64x.txt │ │ │ ├── readme.txt │ │ │ ├── s390x.txt │ │ │ ├── solaris_amd64.txt │ │ │ ├── windows.txt │ │ │ ├── windows_386.txt │ │ │ └── windows_amd64.txt │ │ ├── asmdecl.go │ │ ├── assign.go │ │ ├── atomic.go │ │ ├── bool.go │ │ ├── buildtag.go │ │ ├── cgo.go │ │ ├── composite.go │ │ ├── copylock.go │ │ ├── dead.go │ │ ├── deadcode.go │ │ ├── doc.go │ │ ├── httpresponse.go │ │ ├── internal │ │ ├── cfg │ │ │ ├── builder.go │ │ │ ├── cfg.go │ │ │ └── cfg_test.go │ │ └── whitelist │ │ │ └── whitelist.go │ │ ├── lostcancel.go │ │ ├── main.go │ │ ├── method.go │ │ ├── nilfunc.go │ │ ├── print.go │ │ ├── rangeloop.go │ │ ├── shadow.go │ │ ├── shift.go │ │ ├── structtag.go │ │ ├── testdata │ │ ├── asm │ │ │ ├── asm.go │ │ │ ├── asm1.s │ │ │ ├── asm2.s │ │ │ ├── asm3.s │ │ │ ├── asm4.s │ │ │ ├── asm5.s │ │ │ ├── asm6.s │ │ │ └── asm7.s │ │ ├── asm8.s │ │ ├── assign.go │ │ ├── atomic.go │ │ ├── bool.go │ │ ├── buildtag │ │ │ ├── buildtag.go │ │ │ └── buildtag_bad.go │ │ ├── cgo │ │ │ ├── cgo.go │ │ │ ├── cgo2.go │ │ │ └── cgo3.go │ │ ├── composite.go │ │ ├── copylock.go │ │ ├── copylock_func.go │ │ ├── copylock_range.go │ │ ├── deadcode.go │ │ ├── divergent │ │ │ ├── buf.go │ │ │ └── buf_test.go │ │ ├── httpresponse.go │ │ ├── incomplete │ │ │ └── examples_test.go │ │ ├── lostcancel.go │ │ ├── method.go │ │ ├── nilfunc.go │ │ ├── print.go │ │ ├── rangeloop.go │ │ ├── shadow.go │ │ ├── shift.go │ │ ├── structtag.go │ │ ├── tagtest │ │ │ ├── file1.go │ │ │ └── file2.go │ │ ├── testingpkg │ │ │ ├── tests.go │ │ │ └── tests_test.go │ │ ├── unsafeptr.go │ │ └── unused.go │ │ ├── tests.go │ │ ├── types.go │ │ ├── unsafeptr.go │ │ ├── unused.go │ │ └── vet_test.go ├── cmp.bash ├── compress │ ├── bzip2 │ │ ├── bit_reader.go │ │ ├── bzip2.go │ │ ├── bzip2_test.go │ │ ├── huffman.go │ │ ├── move_to_front.go │ │ └── testdata │ │ │ ├── Mark.Twain-Tom.Sawyer.txt.bz2 │ │ │ ├── e.txt.bz2 │ │ │ ├── fail-issue5747.bz2 │ │ │ ├── pass-random1.bin │ │ │ ├── pass-random1.bz2 │ │ │ ├── pass-random2.bin │ │ │ ├── pass-random2.bz2 │ │ │ ├── pass-sawtooth.bz2 │ │ │ └── random.data.bz2 │ ├── flate │ │ ├── deflate.go │ │ ├── deflate_test.go │ │ ├── deflatefast.go │ │ ├── dict_decoder.go │ │ ├── dict_decoder_test.go │ │ ├── example_test.go │ │ ├── flate_test.go │ │ ├── huffman_bit_writer.go │ │ ├── huffman_bit_writer_test.go │ │ ├── huffman_code.go │ │ ├── inflate.go │ │ ├── inflate_test.go │ │ ├── reader_test.go │ │ ├── testdata │ │ │ ├── huffman-null-max.dyn.expect │ │ │ ├── huffman-null-max.dyn.expect-noinput │ │ │ ├── huffman-null-max.golden │ │ │ ├── huffman-null-max.in │ │ │ ├── huffman-null-max.wb.expect │ │ │ ├── huffman-null-max.wb.expect-noinput │ │ │ ├── huffman-pi.dyn.expect │ │ │ ├── huffman-pi.dyn.expect-noinput │ │ │ ├── huffman-pi.golden │ │ │ ├── huffman-pi.in │ │ │ ├── huffman-pi.wb.expect │ │ │ ├── huffman-pi.wb.expect-noinput │ │ │ ├── huffman-rand-1k.dyn.expect │ │ │ ├── huffman-rand-1k.dyn.expect-noinput │ │ │ ├── huffman-rand-1k.golden │ │ │ ├── huffman-rand-1k.in │ │ │ ├── huffman-rand-1k.wb.expect │ │ │ ├── huffman-rand-1k.wb.expect-noinput │ │ │ ├── huffman-rand-limit.dyn.expect │ │ │ ├── huffman-rand-limit.dyn.expect-noinput │ │ │ ├── huffman-rand-limit.golden │ │ │ ├── huffman-rand-limit.in │ │ │ ├── huffman-rand-limit.wb.expect │ │ │ ├── huffman-rand-limit.wb.expect-noinput │ │ │ ├── huffman-rand-max.golden │ │ │ ├── huffman-rand-max.in │ │ │ ├── huffman-shifts.dyn.expect │ │ │ ├── huffman-shifts.dyn.expect-noinput │ │ │ ├── huffman-shifts.golden │ │ │ ├── huffman-shifts.in │ │ │ ├── huffman-shifts.wb.expect │ │ │ ├── huffman-shifts.wb.expect-noinput │ │ │ ├── huffman-text-shift.dyn.expect │ │ │ ├── huffman-text-shift.dyn.expect-noinput │ │ │ ├── huffman-text-shift.golden │ │ │ ├── huffman-text-shift.in │ │ │ ├── huffman-text-shift.wb.expect │ │ │ ├── huffman-text-shift.wb.expect-noinput │ │ │ ├── huffman-text.dyn.expect │ │ │ ├── huffman-text.dyn.expect-noinput │ │ │ ├── huffman-text.golden │ │ │ ├── huffman-text.in │ │ │ ├── huffman-text.wb.expect │ │ │ ├── huffman-text.wb.expect-noinput │ │ │ ├── huffman-zero.dyn.expect │ │ │ ├── huffman-zero.dyn.expect-noinput │ │ │ ├── huffman-zero.golden │ │ │ ├── huffman-zero.in │ │ │ ├── huffman-zero.wb.expect │ │ │ ├── huffman-zero.wb.expect-noinput │ │ │ ├── null-long-match.dyn.expect-noinput │ │ │ └── null-long-match.wb.expect-noinput │ │ ├── token.go │ │ └── writer_test.go │ ├── gzip │ │ ├── example_test.go │ │ ├── gunzip.go │ │ ├── gunzip_test.go │ │ ├── gzip.go │ │ ├── gzip_test.go │ │ ├── issue14937_test.go │ │ └── testdata │ │ │ └── issue6550.gz │ ├── lzw │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── writer.go │ │ └── writer_test.go │ ├── testdata │ │ ├── Mark.Twain-Tom.Sawyer.txt │ │ ├── e.txt │ │ ├── gettysburg.txt │ │ └── pi.txt │ └── zlib │ │ ├── example_test.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── writer.go │ │ └── writer_test.go ├── container │ ├── heap │ │ ├── example_intheap_test.go │ │ ├── example_pq_test.go │ │ ├── heap.go │ │ └── heap_test.go │ ├── list │ │ ├── example_test.go │ │ ├── list.go │ │ └── list_test.go │ └── ring │ │ ├── ring.go │ │ └── ring_test.go ├── context │ ├── benchmark_test.go │ ├── context.go │ ├── context_test.go │ ├── example_test.go │ ├── net_test.go │ └── x_test.go ├── crypto │ ├── aes │ │ ├── aes_gcm.go │ │ ├── aes_test.go │ │ ├── asm_amd64.s │ │ ├── asm_ppc64le.s │ │ ├── asm_s390x.s │ │ ├── block.go │ │ ├── cbc_s390x.go │ │ ├── cipher.go │ │ ├── cipher_amd64.go │ │ ├── cipher_generic.go │ │ ├── cipher_ppc64le.go │ │ ├── cipher_s390x.go │ │ ├── const.go │ │ ├── ctr_s390x.go │ │ ├── gcm_amd64.s │ │ ├── gcm_s390x.go │ │ ├── modes.go │ │ └── modes_test.go │ ├── cipher │ │ ├── benchmark_test.go │ │ ├── cbc.go │ │ ├── cbc_aes_test.go │ │ ├── cfb.go │ │ ├── cfb_test.go │ │ ├── cipher.go │ │ ├── cipher_test.go │ │ ├── common_test.go │ │ ├── ctr.go │ │ ├── ctr_aes_test.go │ │ ├── ctr_test.go │ │ ├── example_test.go │ │ ├── gcm.go │ │ ├── gcm_test.go │ │ ├── io.go │ │ ├── ofb.go │ │ ├── ofb_test.go │ │ ├── xor.go │ │ └── xor_test.go │ ├── crypto.go │ ├── des │ │ ├── block.go │ │ ├── cipher.go │ │ ├── const.go │ │ ├── des_test.go │ │ └── example_test.go │ ├── dsa │ │ ├── dsa.go │ │ └── dsa_test.go │ ├── ecdsa │ │ ├── ecdsa.go │ │ ├── ecdsa_test.go │ │ └── testdata │ │ │ └── SigVer.rsp.bz2 │ ├── elliptic │ │ ├── elliptic.go │ │ ├── elliptic_test.go │ │ ├── p224.go │ │ ├── p224_test.go │ │ ├── p256.go │ │ ├── p256_amd64.go │ │ ├── p256_asm_amd64.s │ │ ├── p256_asm_s390x.s │ │ ├── p256_generic.go │ │ └── p256_s390x.go │ ├── hmac │ │ ├── hmac.go │ │ └── hmac_test.go │ ├── internal │ │ └── cipherhw │ │ │ ├── asm_amd64.s │ │ │ ├── asm_s390x.s │ │ │ ├── cipherhw_amd64.go │ │ │ ├── cipherhw_s390x.go │ │ │ ├── doc.go │ │ │ └── generic.go │ ├── md5 │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── md5.go │ │ ├── md5_test.go │ │ ├── md5block.go │ │ ├── md5block_386.s │ │ ├── md5block_amd64.s │ │ ├── md5block_amd64p32.s │ │ ├── md5block_arm.s │ │ ├── md5block_decl.go │ │ ├── md5block_generic.go │ │ ├── md5block_ppc64le.s │ │ └── md5block_s390x.s │ ├── rand │ │ ├── eagain.go │ │ ├── example_test.go │ │ ├── rand.go │ │ ├── rand_linux.go │ │ ├── rand_openbsd.go │ │ ├── rand_test.go │ │ ├── rand_unix.go │ │ ├── rand_windows.go │ │ ├── util.go │ │ └── util_test.go │ ├── rc4 │ │ ├── rc4.go │ │ ├── rc4_386.s │ │ ├── rc4_amd64.s │ │ ├── rc4_amd64p32.s │ │ ├── rc4_arm.s │ │ ├── rc4_asm.go │ │ ├── rc4_ref.go │ │ └── rc4_test.go │ ├── rsa │ │ ├── example_test.go │ │ ├── pkcs1v15.go │ │ ├── pkcs1v15_test.go │ │ ├── pss.go │ │ ├── pss_test.go │ │ ├── rsa.go │ │ ├── rsa_test.go │ │ └── testdata │ │ │ └── pss-vect.txt.bz2 │ ├── sha1 │ │ ├── example_test.go │ │ ├── fallback_test.go │ │ ├── issue15617_test.go │ │ ├── sha1.go │ │ ├── sha1_test.go │ │ ├── sha1block.go │ │ ├── sha1block_386.s │ │ ├── sha1block_amd64.go │ │ ├── sha1block_amd64.s │ │ ├── sha1block_amd64p32.s │ │ ├── sha1block_arm.s │ │ ├── sha1block_decl.go │ │ ├── sha1block_generic.go │ │ ├── sha1block_s390x.go │ │ └── sha1block_s390x.s │ ├── sha256 │ │ ├── example_test.go │ │ ├── fallback_test.go │ │ ├── sha256.go │ │ ├── sha256_test.go │ │ ├── sha256block.go │ │ ├── sha256block_386.s │ │ ├── sha256block_amd64.go │ │ ├── sha256block_amd64.s │ │ ├── sha256block_decl.go │ │ ├── sha256block_generic.go │ │ ├── sha256block_ppc64le.s │ │ ├── sha256block_s390x.go │ │ └── sha256block_s390x.s │ ├── sha512 │ │ ├── fallback_test.go │ │ ├── sha512.go │ │ ├── sha512_test.go │ │ ├── sha512block.go │ │ ├── sha512block_amd64.go │ │ ├── sha512block_amd64.s │ │ ├── sha512block_decl.go │ │ ├── sha512block_generic.go │ │ ├── sha512block_ppc64le.s │ │ ├── sha512block_s390x.go │ │ └── sha512block_s390x.s │ ├── sm2 │ │ ├── cert_pool.go │ │ ├── p256.go │ │ ├── pkcs1.go │ │ ├── pkcs8.go │ │ ├── sm2.go │ │ ├── verify.go │ │ └── x509.go │ ├── sm3 │ │ ├── ifile │ │ └── sm3.go │ ├── sm4 │ │ └── sm4.go │ ├── subtle │ │ ├── constant_time.go │ │ └── constant_time_test.go │ ├── tls │ │ ├── alert.go │ │ ├── cipher_suites.go │ │ ├── common.go │ │ ├── conn.go │ │ ├── conn_test.go │ │ ├── example_test.go │ │ ├── generate_cert.go │ │ ├── handshake_client.go │ │ ├── handshake_client_test.go │ │ ├── handshake_messages.go │ │ ├── handshake_messages_test.go │ │ ├── handshake_server.go │ │ ├── handshake_server_test.go │ │ ├── handshake_test.go │ │ ├── key_agreement.go │ │ ├── prf.go │ │ ├── prf_test.go │ │ ├── testdata │ │ │ ├── Client-TLSv10-ClientCert-ECDSA-ECDSA │ │ │ ├── Client-TLSv10-ClientCert-ECDSA-RSA │ │ │ ├── Client-TLSv10-ClientCert-RSA-ECDSA │ │ │ ├── Client-TLSv10-ClientCert-RSA-RSA │ │ │ ├── Client-TLSv10-ECDHE-ECDSA-AES │ │ │ ├── Client-TLSv10-ECDHE-RSA-AES │ │ │ ├── Client-TLSv10-RSA-RC4 │ │ │ ├── Client-TLSv11-ECDHE-ECDSA-AES │ │ │ ├── Client-TLSv11-ECDHE-RSA-AES │ │ │ ├── Client-TLSv11-RSA-RC4 │ │ │ ├── Client-TLSv12-AES128-GCM-SHA256 │ │ │ ├── Client-TLSv12-AES128-SHA256 │ │ │ ├── Client-TLSv12-AES256-GCM-SHA384 │ │ │ ├── Client-TLSv12-ALPN │ │ │ ├── Client-TLSv12-ALPN-NoMatch │ │ │ ├── Client-TLSv12-ClientCert-ECDSA-ECDSA │ │ │ ├── Client-TLSv12-ClientCert-ECDSA-RSA │ │ │ ├── Client-TLSv12-ClientCert-RSA-AES256-GCM-SHA384 │ │ │ ├── Client-TLSv12-ClientCert-RSA-ECDSA │ │ │ ├── Client-TLSv12-ClientCert-RSA-RSA │ │ │ ├── Client-TLSv12-ECDHE-ECDSA-AES │ │ │ ├── Client-TLSv12-ECDHE-ECDSA-AES-GCM │ │ │ ├── Client-TLSv12-ECDHE-ECDSA-AES128-SHA256 │ │ │ ├── Client-TLSv12-ECDHE-ECDSA-AES256-GCM-SHA384 │ │ │ ├── Client-TLSv12-ECDHE-ECDSA-CHACHA20-POLY1305 │ │ │ ├── Client-TLSv12-ECDHE-RSA-AES │ │ │ ├── Client-TLSv12-ECDHE-RSA-AES128-SHA256 │ │ │ ├── Client-TLSv12-ECDHE-RSA-CHACHA20-POLY1305 │ │ │ ├── Client-TLSv12-RSA-RC4 │ │ │ ├── Client-TLSv12-RenegotiateOnce │ │ │ ├── Client-TLSv12-RenegotiateTwice │ │ │ ├── Client-TLSv12-RenegotiateTwiceRejected │ │ │ ├── Client-TLSv12-RenegotiationRejected │ │ │ ├── Client-TLSv12-SCT │ │ │ ├── Client-TLSv12-X25519-ECDHE-RSA-AES-GCM │ │ │ ├── Server-SSLv3-RSA-3DES │ │ │ ├── Server-SSLv3-RSA-AES │ │ │ ├── Server-SSLv3-RSA-RC4 │ │ │ ├── Server-TLSv10-ECDHE-ECDSA-AES │ │ │ ├── Server-TLSv10-RSA-3DES │ │ │ ├── Server-TLSv10-RSA-AES │ │ │ ├── Server-TLSv10-RSA-RC4 │ │ │ ├── Server-TLSv11-FallbackSCSV │ │ │ ├── Server-TLSv11-RSA-RC4 │ │ │ ├── Server-TLSv12-ALPN │ │ │ ├── Server-TLSv12-ALPN-NoMatch │ │ │ ├── Server-TLSv12-CipherSuiteCertPreferenceECDSA │ │ │ ├── Server-TLSv12-CipherSuiteCertPreferenceRSA │ │ │ ├── Server-TLSv12-ClientAuthRequestedAndECDSAGiven │ │ │ ├── Server-TLSv12-ClientAuthRequestedAndGiven │ │ │ ├── Server-TLSv12-ClientAuthRequestedNotGiven │ │ │ ├── Server-TLSv12-ECDHE-ECDSA-AES │ │ │ ├── Server-TLSv12-IssueTicket │ │ │ ├── Server-TLSv12-IssueTicketPreDisable │ │ │ ├── Server-TLSv12-RSA-3DES │ │ │ ├── Server-TLSv12-RSA-AES │ │ │ ├── Server-TLSv12-RSA-AES-GCM │ │ │ ├── Server-TLSv12-RSA-AES256-GCM-SHA384 │ │ │ ├── Server-TLSv12-RSA-RC4 │ │ │ ├── Server-TLSv12-Resume │ │ │ ├── Server-TLSv12-ResumeDisabled │ │ │ ├── Server-TLSv12-SNI │ │ │ ├── Server-TLSv12-SNI-GetCertificate │ │ │ ├── Server-TLSv12-SNI-GetCertificateNotFound │ │ │ └── Server-TLSv12-X25519-ECDHE-RSA-AES-GCM │ │ ├── ticket.go │ │ ├── tls.go │ │ └── tls_test.go │ └── x509 │ │ ├── cert_pool.go │ │ ├── example_test.go │ │ ├── pem_decrypt.go │ │ ├── pem_decrypt_test.go │ │ ├── pkcs1.go │ │ ├── pkcs8.go │ │ ├── pkcs8_test.go │ │ ├── pkix │ │ └── pkix.go │ │ ├── root.go │ │ ├── root_bsd.go │ │ ├── root_cgo_darwin.go │ │ ├── root_darwin.go │ │ ├── root_darwin_arm_gen.go │ │ ├── root_darwin_armx.go │ │ ├── root_darwin_test.go │ │ ├── root_linux.go │ │ ├── root_nacl.go │ │ ├── root_nocgo_darwin.go │ │ ├── root_plan9.go │ │ ├── root_solaris.go │ │ ├── root_unix.go │ │ ├── root_unix_test.go │ │ ├── root_windows.go │ │ ├── sec1.go │ │ ├── sec1_test.go │ │ ├── sha2_windows_test.go │ │ ├── test-file.crt │ │ ├── testdata │ │ └── test-dir.crt │ │ ├── verify.go │ │ ├── verify_test.go │ │ ├── x509.go │ │ ├── x509_test.go │ │ └── x509_test_import.go ├── database │ └── sql │ │ ├── convert.go │ │ ├── convert_test.go │ │ ├── ctxutil.go │ │ ├── doc.txt │ │ ├── driver │ │ ├── driver.go │ │ ├── types.go │ │ └── types_test.go │ │ ├── example_test.go │ │ ├── fakedb_test.go │ │ ├── sql.go │ │ └── sql_test.go ├── debug │ ├── dwarf │ │ ├── buf.go │ │ ├── class_string.go │ │ ├── const.go │ │ ├── entry.go │ │ ├── entry_test.go │ │ ├── export_test.go │ │ ├── line.go │ │ ├── line_test.go │ │ ├── open.go │ │ ├── testdata │ │ │ ├── cycle.c │ │ │ ├── cycle.elf │ │ │ ├── line-clang.elf │ │ │ ├── line-gcc-win.bin │ │ │ ├── line-gcc.elf │ │ │ ├── line1.c │ │ │ ├── line1.h │ │ │ ├── line2.c │ │ │ ├── ranges.c │ │ │ ├── ranges.elf │ │ │ ├── split.c │ │ │ ├── split.elf │ │ │ ├── typedef.c │ │ │ ├── typedef.elf │ │ │ ├── typedef.elf4 │ │ │ └── typedef.macho │ │ ├── type.go │ │ ├── type_test.go │ │ ├── typeunit.go │ │ └── unit.go │ ├── elf │ │ ├── elf.go │ │ ├── elf_test.go │ │ ├── file.go │ │ ├── file_test.go │ │ ├── reader.go │ │ ├── symbols_test.go │ │ └── testdata │ │ │ ├── compressed-32.obj │ │ │ ├── compressed-64.obj │ │ │ ├── gcc-386-freebsd-exec │ │ │ ├── gcc-amd64-linux-exec │ │ │ ├── gcc-amd64-openbsd-debug-with-rela.obj │ │ │ ├── go-relocation-test-clang-arm.obj │ │ │ ├── go-relocation-test-clang-x86.obj │ │ │ ├── go-relocation-test-gcc424-x86-64.obj │ │ │ ├── go-relocation-test-gcc441-x86-64.obj │ │ │ ├── go-relocation-test-gcc441-x86.obj │ │ │ ├── go-relocation-test-gcc482-aarch64.obj │ │ │ ├── go-relocation-test-gcc482-ppc64le.obj │ │ │ ├── go-relocation-test-gcc492-arm.obj │ │ │ ├── go-relocation-test-gcc492-mips64.obj │ │ │ ├── go-relocation-test-gcc492-mipsle.obj │ │ │ ├── go-relocation-test-gcc493-mips64le.obj │ │ │ ├── go-relocation-test-gcc5-ppc.obj │ │ │ ├── go-relocation-test-gcc531-s390x.obj │ │ │ ├── go-relocation-test-gcc540-mips.obj │ │ │ ├── go-relocation-test-gcc620-sparc64.obj │ │ │ ├── hello-world-core.gz │ │ │ ├── hello.c │ │ │ └── zdebug-test-gcc484-x86-64.obj │ ├── gosym │ │ ├── pclinetest.asm │ │ ├── pclinetest.h │ │ ├── pclntab.go │ │ ├── pclntab_test.go │ │ ├── symtab.go │ │ └── symtab_test.go │ ├── macho │ │ ├── fat.go │ │ ├── file.go │ │ ├── file_test.go │ │ ├── macho.go │ │ └── testdata │ │ │ ├── fat-gcc-386-amd64-darwin-exec │ │ │ ├── gcc-386-darwin-exec │ │ │ ├── gcc-amd64-darwin-exec │ │ │ ├── gcc-amd64-darwin-exec-debug │ │ │ └── hello.c │ ├── pe │ │ ├── file.go │ │ ├── file_cgo_test.go │ │ ├── file_test.go │ │ ├── pe.go │ │ ├── section.go │ │ ├── string.go │ │ ├── symbol.go │ │ └── testdata │ │ │ ├── gcc-386-mingw-exec │ │ │ ├── gcc-386-mingw-no-symbols-exec │ │ │ ├── gcc-386-mingw-obj │ │ │ ├── gcc-amd64-mingw-exec │ │ │ ├── gcc-amd64-mingw-obj │ │ │ └── hello.c │ └── plan9obj │ │ ├── file.go │ │ ├── file_test.go │ │ ├── plan9obj.go │ │ └── testdata │ │ ├── 386-plan9-exec │ │ ├── amd64-plan9-exec │ │ └── hello.c ├── encoding │ ├── ascii85 │ │ ├── ascii85.go │ │ └── ascii85_test.go │ ├── asn1 │ │ ├── asn1.go │ │ ├── asn1_test.go │ │ ├── common.go │ │ ├── marshal.go │ │ └── marshal_test.go │ ├── base32 │ │ ├── base32.go │ │ ├── base32_test.go │ │ └── example_test.go │ ├── base64 │ │ ├── base64.go │ │ ├── base64_test.go │ │ └── example_test.go │ ├── binary │ │ ├── binary.go │ │ ├── binary_test.go │ │ ├── example_test.go │ │ ├── varint.go │ │ └── varint_test.go │ ├── csv │ │ ├── example_test.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── writer.go │ │ └── writer_test.go │ ├── encoding.go │ ├── gob │ │ ├── codec_test.go │ │ ├── debug.go │ │ ├── dec_helpers.go │ │ ├── decgen.go │ │ ├── decode.go │ │ ├── decoder.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── enc_helpers.go │ │ ├── encgen.go │ │ ├── encode.go │ │ ├── encoder.go │ │ ├── encoder_test.go │ │ ├── error.go │ │ ├── example_encdec_test.go │ │ ├── example_interface_test.go │ │ ├── example_test.go │ │ ├── gobencdec_test.go │ │ ├── timing_test.go │ │ ├── type.go │ │ └── type_test.go │ ├── hex │ │ ├── example_test.go │ │ ├── hex.go │ │ └── hex_test.go │ ├── json │ │ ├── bench_test.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── example_marshaling_test.go │ │ ├── example_test.go │ │ ├── fold.go │ │ ├── fold_test.go │ │ ├── indent.go │ │ ├── number_test.go │ │ ├── scanner.go │ │ ├── scanner_test.go │ │ ├── stream.go │ │ ├── stream_test.go │ │ ├── tables.go │ │ ├── tagkey_test.go │ │ ├── tags.go │ │ ├── tags_test.go │ │ └── testdata │ │ │ └── code.json.gz │ ├── pem │ │ ├── example_test.go │ │ ├── pem.go │ │ └── pem_test.go │ └── xml │ │ ├── atom_test.go │ │ ├── example_test.go │ │ ├── marshal.go │ │ ├── marshal_test.go │ │ ├── read.go │ │ ├── read_test.go │ │ ├── typeinfo.go │ │ ├── xml.go │ │ └── xml_test.go ├── errors │ ├── errors.go │ ├── errors_test.go │ └── example_test.go ├── expvar │ ├── expvar.go │ └── expvar_test.go ├── flag │ ├── example_test.go │ ├── export_test.go │ ├── flag.go │ └── flag_test.go ├── fmt │ ├── doc.go │ ├── export_test.go │ ├── fmt_test.go │ ├── format.go │ ├── print.go │ ├── scan.go │ ├── scan_test.go │ └── stringer_test.go ├── go │ ├── ast │ │ ├── ast.go │ │ ├── ast_test.go │ │ ├── commentmap.go │ │ ├── commentmap_test.go │ │ ├── example_test.go │ │ ├── filter.go │ │ ├── filter_test.go │ │ ├── import.go │ │ ├── print.go │ │ ├── print_test.go │ │ ├── resolve.go │ │ ├── scope.go │ │ └── walk.go │ ├── build │ │ ├── build.go │ │ ├── build_test.go │ │ ├── deps_test.go │ │ ├── doc.go │ │ ├── read.go │ │ ├── read_test.go │ │ ├── syslist.go │ │ ├── syslist_test.go │ │ └── testdata │ │ │ ├── empty │ │ │ └── dummy │ │ │ ├── multi │ │ │ ├── file.go │ │ │ └── file_appengine.go │ │ │ └── other │ │ │ ├── file │ │ │ └── file.go │ │ │ └── main.go │ ├── constant │ │ ├── value.go │ │ └── value_test.go │ ├── doc │ │ ├── Makefile │ │ ├── comment.go │ │ ├── comment_test.go │ │ ├── doc.go │ │ ├── doc_test.go │ │ ├── example.go │ │ ├── example_test.go │ │ ├── exports.go │ │ ├── filter.go │ │ ├── headscan.go │ │ ├── reader.go │ │ ├── synopsis.go │ │ ├── synopsis_test.go │ │ └── testdata │ │ │ ├── a.0.golden │ │ │ ├── a.1.golden │ │ │ ├── a.2.golden │ │ │ ├── a0.go │ │ │ ├── a1.go │ │ │ ├── b.0.golden │ │ │ ├── b.1.golden │ │ │ ├── b.2.golden │ │ │ ├── b.go │ │ │ ├── benchmark.go │ │ │ ├── blank.0.golden │ │ │ ├── blank.1.golden │ │ │ ├── blank.2.golden │ │ │ ├── blank.go │ │ │ ├── bugpara.0.golden │ │ │ ├── bugpara.1.golden │ │ │ ├── bugpara.2.golden │ │ │ ├── bugpara.go │ │ │ ├── c.0.golden │ │ │ ├── c.1.golden │ │ │ ├── c.2.golden │ │ │ ├── c.go │ │ │ ├── d.0.golden │ │ │ ├── d.1.golden │ │ │ ├── d.2.golden │ │ │ ├── d1.go │ │ │ ├── d2.go │ │ │ ├── e.0.golden │ │ │ ├── e.1.golden │ │ │ ├── e.2.golden │ │ │ ├── e.go │ │ │ ├── error1.0.golden │ │ │ ├── error1.1.golden │ │ │ ├── error1.2.golden │ │ │ ├── error1.go │ │ │ ├── error2.0.golden │ │ │ ├── error2.1.golden │ │ │ ├── error2.2.golden │ │ │ ├── error2.go │ │ │ ├── example.go │ │ │ ├── f.0.golden │ │ │ ├── f.1.golden │ │ │ ├── f.2.golden │ │ │ ├── f.go │ │ │ ├── issue13742.0.golden │ │ │ ├── issue13742.1.golden │ │ │ ├── issue13742.2.golden │ │ │ ├── issue13742.go │ │ │ ├── issue17788.0.golden │ │ │ ├── issue17788.1.golden │ │ │ ├── issue17788.2.golden │ │ │ ├── issue17788.go │ │ │ ├── predeclared.0.golden │ │ │ ├── predeclared.1.golden │ │ │ ├── predeclared.2.golden │ │ │ ├── predeclared.go │ │ │ ├── template.txt │ │ │ ├── testing.0.golden │ │ │ ├── testing.1.golden │ │ │ ├── testing.2.golden │ │ │ └── testing.go │ ├── format │ │ ├── format.go │ │ ├── format_test.go │ │ └── internal.go │ ├── importer │ │ └── importer.go │ ├── internal │ │ ├── gccgoimporter │ │ │ ├── gccgoinstallation.go │ │ │ ├── gccgoinstallation_test.go │ │ │ ├── importer.go │ │ │ ├── importer_test.go │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ └── testdata │ │ │ │ ├── alias.gox │ │ │ │ ├── complexnums.go │ │ │ │ ├── complexnums.gox │ │ │ │ ├── conversions.go │ │ │ │ ├── conversions.gox │ │ │ │ ├── imports.go │ │ │ │ ├── imports.gox │ │ │ │ ├── pointer.go │ │ │ │ ├── pointer.gox │ │ │ │ ├── time.gox │ │ │ │ └── unicode.gox │ │ ├── gcimporter │ │ │ ├── bimport.go │ │ │ ├── exportdata.go │ │ │ ├── gcimporter.go │ │ │ ├── gcimporter_test.go │ │ │ └── testdata │ │ │ │ ├── a.go │ │ │ │ ├── b.go │ │ │ │ ├── exports.go │ │ │ │ ├── issue15920.go │ │ │ │ ├── issue20046.go │ │ │ │ ├── p.go │ │ │ │ └── versions │ │ │ │ ├── test.go │ │ │ │ ├── test_go1.7_0.a │ │ │ │ ├── test_go1.7_1.a │ │ │ │ ├── test_go1.8_4.a │ │ │ │ └── test_go1.8_5.a │ │ └── srcimporter │ │ │ ├── srcimporter.go │ │ │ └── srcimporter_test.go │ ├── parser │ │ ├── error_test.go │ │ ├── example_test.go │ │ ├── interface.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── performance_test.go │ │ ├── short_test.go │ │ └── testdata │ │ │ ├── commas.src │ │ │ └── issue3106.src │ ├── printer │ │ ├── example_test.go │ │ ├── nodes.go │ │ ├── performance_test.go │ │ ├── printer.go │ │ ├── printer_test.go │ │ └── testdata │ │ │ ├── comments.golden │ │ │ ├── comments.input │ │ │ ├── comments.x │ │ │ ├── comments2.golden │ │ │ ├── comments2.input │ │ │ ├── declarations.golden │ │ │ ├── declarations.input │ │ │ ├── empty.golden │ │ │ ├── empty.input │ │ │ ├── expressions.golden │ │ │ ├── expressions.input │ │ │ ├── expressions.raw │ │ │ ├── linebreaks.golden │ │ │ ├── linebreaks.input │ │ │ ├── parser.go │ │ │ ├── slow.golden │ │ │ ├── slow.input │ │ │ ├── statements.golden │ │ │ └── statements.input │ ├── scanner │ │ ├── errors.go │ │ ├── example_test.go │ │ ├── scanner.go │ │ └── scanner_test.go │ ├── token │ │ ├── position.go │ │ ├── position_test.go │ │ ├── serialize.go │ │ ├── serialize_test.go │ │ └── token.go │ └── types │ │ ├── api.go │ │ ├── api_test.go │ │ ├── assignments.go │ │ ├── builtins.go │ │ ├── builtins_test.go │ │ ├── call.go │ │ ├── check.go │ │ ├── check_test.go │ │ ├── conversions.go │ │ ├── decl.go │ │ ├── errors.go │ │ ├── eval.go │ │ ├── eval_test.go │ │ ├── example_test.go │ │ ├── expr.go │ │ ├── exprstring.go │ │ ├── exprstring_test.go │ │ ├── gotype.go │ │ ├── hilbert_test.go │ │ ├── initorder.go │ │ ├── issues_test.go │ │ ├── labels.go │ │ ├── lookup.go │ │ ├── methodset.go │ │ ├── object.go │ │ ├── object_test.go │ │ ├── objset.go │ │ ├── operand.go │ │ ├── ordering.go │ │ ├── package.go │ │ ├── predicates.go │ │ ├── resolver.go │ │ ├── resolver_test.go │ │ ├── return.go │ │ ├── scope.go │ │ ├── selection.go │ │ ├── self_test.go │ │ ├── sizes.go │ │ ├── sizes_test.go │ │ ├── stdlib_test.go │ │ ├── stmt.go │ │ ├── testdata │ │ ├── blank.src │ │ ├── builtins.src │ │ ├── const0.src │ │ ├── const1.src │ │ ├── constdecl.src │ │ ├── conversions.src │ │ ├── conversions2.src │ │ ├── cycles.src │ │ ├── cycles1.src │ │ ├── cycles2.src │ │ ├── cycles3.src │ │ ├── cycles4.src │ │ ├── decls0.src │ │ ├── decls1.src │ │ ├── decls2a.src │ │ ├── decls2b.src │ │ ├── decls3.src │ │ ├── decls4.src │ │ ├── errors.src │ │ ├── expr0.src │ │ ├── expr1.src │ │ ├── expr2.src │ │ ├── expr3.src │ │ ├── gotos.src │ │ ├── importC.src │ │ ├── importdecl0a.src │ │ ├── importdecl0b.src │ │ ├── importdecl1a.src │ │ ├── importdecl1b.src │ │ ├── init0.src │ │ ├── init1.src │ │ ├── init2.src │ │ ├── issues.src │ │ ├── labels.src │ │ ├── methodsets.src │ │ ├── shifts.src │ │ ├── stmt0.src │ │ ├── stmt1.src │ │ └── vardecl.src │ │ ├── token_test.go │ │ ├── type.go │ │ ├── typestring.go │ │ ├── typestring_test.go │ │ ├── typexpr.go │ │ └── universe.go ├── hash │ ├── adler32 │ │ ├── adler32.go │ │ └── adler32_test.go │ ├── crc32 │ │ ├── crc32.go │ │ ├── crc32_amd64.go │ │ ├── crc32_amd64.s │ │ ├── crc32_amd64p32.go │ │ ├── crc32_amd64p32.s │ │ ├── crc32_arm64.go │ │ ├── crc32_arm64.s │ │ ├── crc32_generic.go │ │ ├── crc32_otherarch.go │ │ ├── crc32_ppc64le.go │ │ ├── crc32_ppc64le.s │ │ ├── crc32_s390x.go │ │ ├── crc32_s390x.s │ │ ├── crc32_table_ppc64le.s │ │ ├── crc32_test.go │ │ ├── example_test.go │ │ └── gen_const_ppc64le.go │ ├── crc64 │ │ ├── crc64.go │ │ └── crc64_test.go │ ├── fnv │ │ ├── fnv.go │ │ └── fnv_test.go │ ├── hash.go │ ├── test_cases.txt │ └── test_gen.awk ├── html │ ├── entity.go │ ├── entity_test.go │ ├── escape.go │ ├── escape_test.go │ ├── example_test.go │ └── template │ │ ├── attr.go │ │ ├── clone_test.go │ │ ├── content.go │ │ ├── content_test.go │ │ ├── context.go │ │ ├── css.go │ │ ├── css_test.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── escape.go │ │ ├── escape_test.go │ │ ├── example_test.go │ │ ├── examplefiles_test.go │ │ ├── html.go │ │ ├── html_test.go │ │ ├── js.go │ │ ├── js_test.go │ │ ├── template.go │ │ ├── template_test.go │ │ ├── transition.go │ │ ├── transition_test.go │ │ ├── url.go │ │ └── url_test.go ├── image │ ├── color │ │ ├── color.go │ │ ├── palette │ │ │ ├── gen.go │ │ │ ├── generate.go │ │ │ └── palette.go │ │ ├── ycbcr.go │ │ └── ycbcr_test.go │ ├── decode_example_test.go │ ├── decode_test.go │ ├── draw │ │ ├── bench_test.go │ │ ├── clip_test.go │ │ ├── draw.go │ │ ├── draw_test.go │ │ └── example_test.go │ ├── format.go │ ├── geom.go │ ├── geom_test.go │ ├── gif │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── writer.go │ │ └── writer_test.go │ ├── image.go │ ├── image_test.go │ ├── internal │ │ └── imageutil │ │ │ ├── gen.go │ │ │ ├── imageutil.go │ │ │ └── impl.go │ ├── jpeg │ │ ├── dct_test.go │ │ ├── fdct.go │ │ ├── huffman.go │ │ ├── idct.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── scan.go │ │ ├── writer.go │ │ └── writer_test.go │ ├── names.go │ ├── png │ │ ├── example_test.go │ │ ├── paeth.go │ │ ├── paeth_test.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── testdata │ │ │ ├── benchGray.png │ │ │ ├── benchNRGBA-gradient.png │ │ │ ├── benchNRGBA-opaque.png │ │ │ ├── benchPaletted.png │ │ │ ├── benchRGB-interlace.png │ │ │ ├── benchRGB.png │ │ │ ├── gray-gradient.interlaced.png │ │ │ ├── gray-gradient.png │ │ │ ├── invalid-crc32.png │ │ │ ├── invalid-noend.png │ │ │ ├── invalid-trunc.png │ │ │ ├── invalid-zlib.png │ │ │ └── pngsuite │ │ │ │ ├── README │ │ │ │ ├── README.original │ │ │ │ ├── basn0g01-30.png │ │ │ │ ├── basn0g01-30.sng │ │ │ │ ├── basn0g01.png │ │ │ │ ├── basn0g01.sng │ │ │ │ ├── basn0g02-29.png │ │ │ │ ├── basn0g02-29.sng │ │ │ │ ├── basn0g02.png │ │ │ │ ├── basn0g02.sng │ │ │ │ ├── basn0g04-31.png │ │ │ │ ├── basn0g04-31.sng │ │ │ │ ├── basn0g04.png │ │ │ │ ├── basn0g04.sng │ │ │ │ ├── basn0g08.png │ │ │ │ ├── basn0g08.sng │ │ │ │ ├── basn0g16.png │ │ │ │ ├── basn0g16.sng │ │ │ │ ├── basn2c08.png │ │ │ │ ├── basn2c08.sng │ │ │ │ ├── basn2c16.png │ │ │ │ ├── basn2c16.sng │ │ │ │ ├── basn3p01.png │ │ │ │ ├── basn3p01.sng │ │ │ │ ├── basn3p02.png │ │ │ │ ├── basn3p02.sng │ │ │ │ ├── basn3p04-31i.png │ │ │ │ ├── basn3p04-31i.sng │ │ │ │ ├── basn3p04.png │ │ │ │ ├── basn3p04.sng │ │ │ │ ├── basn3p08-trns.png │ │ │ │ ├── basn3p08-trns.sng │ │ │ │ ├── basn3p08.png │ │ │ │ ├── basn3p08.sng │ │ │ │ ├── basn4a08.png │ │ │ │ ├── basn4a08.sng │ │ │ │ ├── basn4a16.png │ │ │ │ ├── basn4a16.sng │ │ │ │ ├── basn6a08.png │ │ │ │ ├── basn6a08.sng │ │ │ │ ├── basn6a16.png │ │ │ │ ├── basn6a16.sng │ │ │ │ ├── ftbbn0g01.png │ │ │ │ ├── ftbbn0g01.sng │ │ │ │ ├── ftbbn0g02.png │ │ │ │ ├── ftbbn0g02.sng │ │ │ │ ├── ftbbn0g04.png │ │ │ │ ├── ftbbn0g04.sng │ │ │ │ ├── ftbbn2c16.png │ │ │ │ ├── ftbbn2c16.sng │ │ │ │ ├── ftbbn3p08.png │ │ │ │ ├── ftbbn3p08.sng │ │ │ │ ├── ftbgn2c16.png │ │ │ │ ├── ftbgn2c16.sng │ │ │ │ ├── ftbgn3p08.png │ │ │ │ ├── ftbgn3p08.sng │ │ │ │ ├── ftbrn2c08.png │ │ │ │ ├── ftbrn2c08.sng │ │ │ │ ├── ftbwn0g16.png │ │ │ │ ├── ftbwn0g16.sng │ │ │ │ ├── ftbwn3p08.png │ │ │ │ ├── ftbwn3p08.sng │ │ │ │ ├── ftbyn3p08.png │ │ │ │ ├── ftbyn3p08.sng │ │ │ │ ├── ftp0n0g08.png │ │ │ │ ├── ftp0n0g08.sng │ │ │ │ ├── ftp0n2c08.png │ │ │ │ ├── ftp0n2c08.sng │ │ │ │ ├── ftp0n3p08.png │ │ │ │ ├── ftp0n3p08.sng │ │ │ │ ├── ftp1n3p08.png │ │ │ │ └── ftp1n3p08.sng │ │ ├── writer.go │ │ └── writer_test.go │ ├── testdata │ │ ├── video-001.221212.jpeg │ │ ├── video-001.221212.png │ │ ├── video-001.5bpp.gif │ │ ├── video-001.cmyk.jpeg │ │ ├── video-001.cmyk.png │ │ ├── video-001.gif │ │ ├── video-001.interlaced.gif │ │ ├── video-001.jpeg │ │ ├── video-001.png │ │ ├── video-001.progressive.jpeg │ │ ├── video-001.progressive.truncated.jpeg │ │ ├── video-001.progressive.truncated.png │ │ ├── video-001.q50.410.jpeg │ │ ├── video-001.q50.410.progressive.jpeg │ │ ├── video-001.q50.411.jpeg │ │ ├── video-001.q50.411.progressive.jpeg │ │ ├── video-001.q50.420.jpeg │ │ ├── video-001.q50.420.progressive.jpeg │ │ ├── video-001.q50.422.jpeg │ │ ├── video-001.q50.422.progressive.jpeg │ │ ├── video-001.q50.440.jpeg │ │ ├── video-001.q50.440.progressive.jpeg │ │ ├── video-001.q50.444.jpeg │ │ ├── video-001.q50.444.progressive.jpeg │ │ ├── video-001.rgb.jpeg │ │ ├── video-001.rgb.png │ │ ├── video-001.separate.dc.progression.jpeg │ │ ├── video-001.separate.dc.progression.progressive.jpeg │ │ ├── video-005.gray.gif │ │ ├── video-005.gray.jpeg │ │ ├── video-005.gray.png │ │ ├── video-005.gray.q50.2x2.jpeg │ │ ├── video-005.gray.q50.2x2.progressive.jpeg │ │ ├── video-005.gray.q50.jpeg │ │ └── video-005.gray.q50.progressive.jpeg │ ├── ycbcr.go │ └── ycbcr_test.go ├── index │ └── suffixarray │ │ ├── example_test.go │ │ ├── qsufsort.go │ │ ├── suffixarray.go │ │ └── suffixarray_test.go ├── internal │ ├── cpu │ │ ├── cpu.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_mips.go │ │ ├── cpu_mips64.go │ │ ├── cpu_mips64le.go │ │ ├── cpu_mipsle.go │ │ ├── cpu_ppc64.go │ │ ├── cpu_ppc64le.go │ │ ├── cpu_s390x.go │ │ ├── cpu_test.go │ │ ├── cpu_x86.go │ │ └── cpu_x86.s │ ├── nettrace │ │ └── nettrace.go │ ├── poll │ │ ├── export_posix_test.go │ │ ├── export_test.go │ │ ├── export_windows_test.go │ │ ├── fd.go │ │ ├── fd_io_plan9.go │ │ ├── fd_mutex.go │ │ ├── fd_mutex_test.go │ │ ├── fd_plan9.go │ │ ├── fd_poll_nacl.go │ │ ├── fd_poll_runtime.go │ │ ├── fd_posix.go │ │ ├── fd_posix_test.go │ │ ├── fd_unix.go │ │ ├── fd_windows.go │ │ ├── fd_windows_test.go │ │ ├── hook_cloexec.go │ │ ├── hook_unix.go │ │ ├── hook_windows.go │ │ ├── sendfile_bsd.go │ │ ├── sendfile_linux.go │ │ ├── sendfile_solaris.go │ │ ├── sendfile_windows.go │ │ ├── sock_cloexec.go │ │ ├── sockopt.go │ │ ├── sockopt_linux.go │ │ ├── sockopt_unix.go │ │ ├── sockopt_windows.go │ │ ├── sockoptip.go │ │ ├── strconv.go │ │ ├── sys_cloexec.go │ │ ├── writev.go │ │ └── writev_test.go │ ├── race │ │ ├── doc.go │ │ ├── norace.go │ │ └── race.go │ ├── singleflight │ │ ├── singleflight.go │ │ └── singleflight_test.go │ ├── syscall │ │ ├── unix │ │ │ ├── getentropy_openbsd.go │ │ │ ├── getrandom_linux.go │ │ │ ├── getrandom_linux_386.go │ │ │ ├── getrandom_linux_amd64.go │ │ │ ├── getrandom_linux_arm.go │ │ │ ├── getrandom_linux_generic.go │ │ │ ├── getrandom_linux_mips64x.go │ │ │ ├── getrandom_linux_mipsx.go │ │ │ ├── getrandom_linux_ppc64x.go │ │ │ └── getrandom_linux_s390x.go │ │ └── windows │ │ │ ├── mksyscall.go │ │ │ ├── registry │ │ │ ├── export_test.go │ │ │ ├── key.go │ │ │ ├── mksyscall.go │ │ │ ├── registry_test.go │ │ │ ├── syscall.go │ │ │ ├── value.go │ │ │ └── zsyscall_windows.go │ │ │ ├── reparse_windows.go │ │ │ ├── security_windows.go │ │ │ ├── syscall_windows.go │ │ │ ├── sysdll │ │ │ └── sysdll.go │ │ │ └── zsyscall_windows.go │ ├── testenv │ │ ├── testenv.go │ │ ├── testenv_cgo.go │ │ ├── testenv_notwin.go │ │ └── testenv_windows.go │ └── trace │ │ ├── goroutines.go │ │ ├── mkcanned.bash │ │ ├── order.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── testdata │ │ ├── http_1_5_good │ │ ├── http_1_7_good │ │ ├── http_1_9_good │ │ ├── stress_1_5_good │ │ ├── stress_1_5_unordered │ │ ├── stress_1_7_good │ │ ├── stress_1_9_good │ │ ├── stress_start_stop_1_5_good │ │ ├── stress_start_stop_1_7_good │ │ └── stress_start_stop_1_9_good │ │ └── writer.go ├── io │ ├── example_test.go │ ├── io.go │ ├── io_test.go │ ├── ioutil │ │ ├── example_test.go │ │ ├── ioutil.go │ │ ├── ioutil_test.go │ │ ├── tempfile.go │ │ ├── tempfile_test.go │ │ └── testdata │ │ │ └── hello │ ├── multi.go │ ├── multi_test.go │ ├── pipe.go │ └── pipe_test.go ├── iostest.bash ├── log │ ├── example_test.go │ ├── log.go │ ├── log_test.go │ └── syslog │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── syslog.go │ │ ├── syslog_test.go │ │ └── syslog_unix.go ├── make.bash ├── make.bat ├── make.rc ├── math │ ├── abs.go │ ├── acos_s390x.s │ ├── acosh.go │ ├── acosh_s390x.s │ ├── all_test.go │ ├── arith_s390x.go │ ├── arith_s390x_test.go │ ├── asin.go │ ├── asin_386.s │ ├── asin_amd64.s │ ├── asin_amd64p32.s │ ├── asin_arm.s │ ├── asin_s390x.s │ ├── asinh.go │ ├── asinh_s390x.s │ ├── asinh_stub.s │ ├── atan.go │ ├── atan2.go │ ├── atan2_386.s │ ├── atan2_amd64.s │ ├── atan2_amd64p32.s │ ├── atan2_arm.s │ ├── atan2_s390x.s │ ├── atan_386.s │ ├── atan_amd64.s │ ├── atan_amd64p32.s │ ├── atan_arm.s │ ├── atan_s390x.s │ ├── atanh.go │ ├── atanh_s390x.s │ ├── big │ │ ├── accuracy_string.go │ │ ├── arith.go │ │ ├── arith_386.s │ │ ├── arith_amd64.s │ │ ├── arith_amd64p32.s │ │ ├── arith_arm.s │ │ ├── arith_arm64.s │ │ ├── arith_decl.go │ │ ├── arith_decl_pure.go │ │ ├── arith_decl_s390x.go │ │ ├── arith_mips64x.s │ │ ├── arith_mipsx.s │ │ ├── arith_ppc64x.s │ │ ├── arith_s390x.s │ │ ├── arith_s390x_test.go │ │ ├── arith_test.go │ │ ├── bits_test.go │ │ ├── calibrate_test.go │ │ ├── decimal.go │ │ ├── decimal_test.go │ │ ├── doc.go │ │ ├── example_rat_test.go │ │ ├── example_test.go │ │ ├── float.go │ │ ├── float_test.go │ │ ├── floatconv.go │ │ ├── floatconv_test.go │ │ ├── floatexample_test.go │ │ ├── floatmarsh.go │ │ ├── floatmarsh_test.go │ │ ├── ftoa.go │ │ ├── gcd_test.go │ │ ├── hilbert_test.go │ │ ├── int.go │ │ ├── int_test.go │ │ ├── intconv.go │ │ ├── intconv_test.go │ │ ├── intmarsh.go │ │ ├── intmarsh_test.go │ │ ├── nat.go │ │ ├── nat_test.go │ │ ├── natconv.go │ │ ├── natconv_test.go │ │ ├── prime.go │ │ ├── prime_test.go │ │ ├── rat.go │ │ ├── rat_test.go │ │ ├── ratconv.go │ │ ├── ratconv_test.go │ │ ├── ratmarsh.go │ │ ├── ratmarsh_test.go │ │ └── roundingmode_string.go │ ├── bits.go │ ├── bits │ │ ├── bits.go │ │ ├── bits_tables.go │ │ ├── bits_test.go │ │ ├── example_test.go │ │ └── make_tables.go │ ├── cbrt.go │ ├── cbrt_s390x.s │ ├── cbrt_stub.s │ ├── cmplx │ │ ├── abs.go │ │ ├── asin.go │ │ ├── cmath_test.go │ │ ├── conj.go │ │ ├── example_test.go │ │ ├── exp.go │ │ ├── isinf.go │ │ ├── isnan.go │ │ ├── log.go │ │ ├── phase.go │ │ ├── polar.go │ │ ├── pow.go │ │ ├── rect.go │ │ ├── sin.go │ │ ├── sqrt.go │ │ └── tan.go │ ├── const.go │ ├── copysign.go │ ├── cosh_s390x.s │ ├── dim.go │ ├── dim_386.s │ ├── dim_amd64.s │ ├── dim_amd64p32.s │ ├── dim_arm.s │ ├── dim_arm64.s │ ├── dim_s390x.s │ ├── erf.go │ ├── erf_s390x.s │ ├── erf_stub.s │ ├── erfc_s390x.s │ ├── example_test.go │ ├── exp.go │ ├── exp2_386.s │ ├── exp2_amd64.s │ ├── exp2_amd64p32.s │ ├── exp2_arm.s │ ├── exp_386.s │ ├── exp_amd64.s │ ├── exp_amd64p32.s │ ├── exp_arm.s │ ├── exp_s390x.s │ ├── expm1.go │ ├── expm1_386.s │ ├── expm1_amd64.s │ ├── expm1_amd64p32.s │ ├── expm1_arm.s │ ├── expm1_s390x.s │ ├── export_s390x_test.go │ ├── export_test.go │ ├── floor.go │ ├── floor_386.s │ ├── floor_amd64.s │ ├── floor_amd64p32.s │ ├── floor_arm.s │ ├── floor_arm64.s │ ├── floor_asm.go │ ├── floor_ppc64x.s │ ├── floor_s390x.s │ ├── frexp.go │ ├── frexp_386.s │ ├── frexp_amd64.s │ ├── frexp_amd64p32.s │ ├── frexp_arm.s │ ├── gamma.go │ ├── hypot.go │ ├── hypot_386.s │ ├── hypot_amd64.s │ ├── hypot_amd64p32.s │ ├── hypot_arm.s │ ├── j0.go │ ├── j1.go │ ├── jn.go │ ├── ldexp.go │ ├── ldexp_386.s │ ├── ldexp_amd64.s │ ├── ldexp_amd64p32.s │ ├── ldexp_arm.s │ ├── lgamma.go │ ├── log.go │ ├── log10.go │ ├── log10_386.s │ ├── log10_amd64.s │ ├── log10_amd64p32.s │ ├── log10_arm.s │ ├── log10_s390x.s │ ├── log1p.go │ ├── log1p_386.s │ ├── log1p_amd64.s │ ├── log1p_amd64p32.s │ ├── log1p_arm.s │ ├── log1p_s390x.s │ ├── log_386.s │ ├── log_amd64.s │ ├── log_amd64p32.s │ ├── log_arm.s │ ├── log_s390x.s │ ├── logb.go │ ├── mod.go │ ├── mod_386.s │ ├── mod_amd64.s │ ├── mod_amd64p32.s │ ├── mod_arm.s │ ├── modf.go │ ├── modf_386.s │ ├── modf_amd64.s │ ├── modf_amd64p32.s │ ├── modf_arm.s │ ├── modf_arm64.s │ ├── nextafter.go │ ├── pow.go │ ├── pow10.go │ ├── pow_s390x.s │ ├── pow_stub.s │ ├── rand │ │ ├── example_test.go │ │ ├── exp.go │ │ ├── gen_cooked.go │ │ ├── normal.go │ │ ├── race_test.go │ │ ├── rand.go │ │ ├── rand_test.go │ │ ├── regress_test.go │ │ ├── rng.go │ │ └── zipf.go │ ├── remainder.go │ ├── remainder_386.s │ ├── remainder_amd64.s │ ├── remainder_amd64p32.s │ ├── remainder_arm.s │ ├── signbit.go │ ├── sin.go │ ├── sin_386.s │ ├── sin_amd64.s │ ├── sin_amd64p32.s │ ├── sin_arm.s │ ├── sin_s390x.s │ ├── sincos.go │ ├── sincos_386.go │ ├── sincos_386.s │ ├── sinh.go │ ├── sinh_s390x.s │ ├── sinh_stub.s │ ├── sqrt.go │ ├── sqrt_386.s │ ├── sqrt_amd64.s │ ├── sqrt_amd64p32.s │ ├── sqrt_arm.s │ ├── sqrt_arm64.s │ ├── sqrt_mipsx.s │ ├── sqrt_ppc64x.s │ ├── sqrt_s390x.s │ ├── stubs_arm64.s │ ├── stubs_mips64x.s │ ├── stubs_mipsx.s │ ├── stubs_ppc64x.s │ ├── stubs_s390x.s │ ├── tan.go │ ├── tan_386.s │ ├── tan_amd64.s │ ├── tan_amd64p32.s │ ├── tan_arm.s │ ├── tan_s390x.s │ ├── tanh.go │ ├── tanh_s390x.s │ └── unsafe.go ├── mime │ ├── encodedword.go │ ├── encodedword_test.go │ ├── example_test.go │ ├── grammar.go │ ├── mediatype.go │ ├── mediatype_test.go │ ├── multipart │ │ ├── example_test.go │ │ ├── formdata.go │ │ ├── formdata_test.go │ │ ├── multipart.go │ │ ├── multipart_test.go │ │ ├── testdata │ │ │ └── nested-mime │ │ ├── writer.go │ │ └── writer_test.go │ ├── quotedprintable │ │ ├── example_test.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── writer.go │ │ └── writer_test.go │ ├── testdata │ │ ├── test.types │ │ └── test.types.plan9 │ ├── type.go │ ├── type_dragonfly.go │ ├── type_freebsd.go │ ├── type_openbsd.go │ ├── type_plan9.go │ ├── type_test.go │ ├── type_unix.go │ └── type_windows.go ├── naclmake.bash ├── nacltest.bash ├── net │ ├── addrselect.go │ ├── addrselect_test.go │ ├── cgo_android.go │ ├── cgo_bsd.go │ ├── cgo_linux.go │ ├── cgo_netbsd.go │ ├── cgo_openbsd.go │ ├── cgo_resnew.go │ ├── cgo_resold.go │ ├── cgo_socknew.go │ ├── cgo_sockold.go │ ├── cgo_solaris.go │ ├── cgo_stub.go │ ├── cgo_unix.go │ ├── cgo_unix_test.go │ ├── cgo_windows.go │ ├── conf.go │ ├── conf_netcgo.go │ ├── conf_test.go │ ├── conn_test.go │ ├── dial.go │ ├── dial_test.go │ ├── dial_unix_test.go │ ├── dnsclient.go │ ├── dnsclient_test.go │ ├── dnsclient_unix.go │ ├── dnsclient_unix_test.go │ ├── dnsconfig_unix.go │ ├── dnsconfig_unix_test.go │ ├── dnsmsg.go │ ├── dnsmsg_test.go │ ├── dnsname_test.go │ ├── error_plan9_test.go │ ├── error_posix.go │ ├── error_posix_test.go │ ├── error_test.go │ ├── error_unix_test.go │ ├── error_windows_test.go │ ├── example_test.go │ ├── external_test.go │ ├── fd_plan9.go │ ├── fd_unix.go │ ├── fd_windows.go │ ├── file.go │ ├── file_plan9.go │ ├── file_stub.go │ ├── file_test.go │ ├── file_unix.go │ ├── file_windows.go │ ├── hook.go │ ├── hook_plan9.go │ ├── hook_unix.go │ ├── hook_windows.go │ ├── hosts.go │ ├── hosts_test.go │ ├── http │ │ ├── cgi │ │ │ ├── child.go │ │ │ ├── child_test.go │ │ │ ├── host.go │ │ │ ├── host_test.go │ │ │ ├── matryoshka_test.go │ │ │ ├── plan9_test.go │ │ │ ├── posix_test.go │ │ │ └── testdata │ │ │ │ └── test.cgi │ │ ├── client.go │ │ ├── client_test.go │ │ ├── clientserver_test.go │ │ ├── cookie.go │ │ ├── cookie_test.go │ │ ├── cookiejar │ │ │ ├── dummy_publicsuffix_test.go │ │ │ ├── example_test.go │ │ │ ├── jar.go │ │ │ ├── jar_test.go │ │ │ ├── punycode.go │ │ │ └── punycode_test.go │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── export_test.go │ │ ├── fcgi │ │ │ ├── child.go │ │ │ ├── fcgi.go │ │ │ └── fcgi_test.go │ │ ├── filetransport.go │ │ ├── filetransport_test.go │ │ ├── fs.go │ │ ├── fs_test.go │ │ ├── h2_bundle.go │ │ ├── header.go │ │ ├── header_test.go │ │ ├── http.go │ │ ├── http_test.go │ │ ├── httptest │ │ │ ├── example_test.go │ │ │ ├── httptest.go │ │ │ ├── httptest_test.go │ │ │ ├── recorder.go │ │ │ ├── recorder_test.go │ │ │ ├── server.go │ │ │ └── server_test.go │ │ ├── httptrace │ │ │ ├── example_test.go │ │ │ ├── trace.go │ │ │ └── trace_test.go │ │ ├── httputil │ │ │ ├── dump.go │ │ │ ├── dump_test.go │ │ │ ├── example_test.go │ │ │ ├── httputil.go │ │ │ ├── persist.go │ │ │ ├── reverseproxy.go │ │ │ └── reverseproxy_test.go │ │ ├── internal │ │ │ ├── chunked.go │ │ │ ├── chunked_test.go │ │ │ └── testcert.go │ │ ├── jar.go │ │ ├── main_test.go │ │ ├── method.go │ │ ├── npn_test.go │ │ ├── pprof │ │ │ ├── pprof.go │ │ │ └── pprof_test.go │ │ ├── proxy_test.go │ │ ├── race.go │ │ ├── range_test.go │ │ ├── readrequest_test.go │ │ ├── request.go │ │ ├── request_test.go │ │ ├── requestwrite_test.go │ │ ├── response.go │ │ ├── response_test.go │ │ ├── responsewrite_test.go │ │ ├── serve_test.go │ │ ├── server.go │ │ ├── sniff.go │ │ ├── sniff_test.go │ │ ├── status.go │ │ ├── testdata │ │ │ ├── file │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── transfer.go │ │ ├── transfer_test.go │ │ ├── transport.go │ │ ├── transport_internal_test.go │ │ ├── transport_test.go │ │ └── triv.go │ ├── interface.go │ ├── interface_bsd.go │ ├── interface_bsd_test.go │ ├── interface_bsdvar.go │ ├── interface_darwin.go │ ├── interface_freebsd.go │ ├── interface_linux.go │ ├── interface_linux_test.go │ ├── interface_plan9.go │ ├── interface_solaris.go │ ├── interface_stub.go │ ├── interface_test.go │ ├── interface_unix_test.go │ ├── interface_windows.go │ ├── interface_windows_test.go │ ├── internal │ │ └── socktest │ │ │ ├── main_test.go │ │ │ ├── main_unix_test.go │ │ │ ├── main_windows_test.go │ │ │ ├── switch.go │ │ │ ├── switch_posix.go │ │ │ ├── switch_stub.go │ │ │ ├── switch_unix.go │ │ │ ├── switch_windows.go │ │ │ ├── sys_cloexec.go │ │ │ ├── sys_unix.go │ │ │ └── sys_windows.go │ ├── ip.go │ ├── ip_test.go │ ├── iprawsock.go │ ├── iprawsock_plan9.go │ ├── iprawsock_posix.go │ ├── iprawsock_test.go │ ├── ipsock.go │ ├── ipsock_plan9.go │ ├── ipsock_posix.go │ ├── ipsock_test.go │ ├── listen_test.go │ ├── lookup.go │ ├── lookup_nacl.go │ ├── lookup_plan9.go │ ├── lookup_test.go │ ├── lookup_unix.go │ ├── lookup_windows.go │ ├── lookup_windows_test.go │ ├── mac.go │ ├── mac_test.go │ ├── mail │ │ ├── example_test.go │ │ ├── message.go │ │ └── message_test.go │ ├── main_cloexec_test.go │ ├── main_conf_test.go │ ├── main_noconf_test.go │ ├── main_plan9_test.go │ ├── main_posix_test.go │ ├── main_test.go │ ├── main_unix_test.go │ ├── main_windows_test.go │ ├── mockserver_test.go │ ├── net.go │ ├── net_test.go │ ├── net_windows_test.go │ ├── netgo_unix_test.go │ ├── nss.go │ ├── nss_test.go │ ├── packetconn_test.go │ ├── parse.go │ ├── parse_test.go │ ├── pipe.go │ ├── pipe_test.go │ ├── platform_test.go │ ├── port.go │ ├── port_test.go │ ├── port_unix.go │ ├── protoconn_test.go │ ├── rawconn.go │ ├── rawconn_unix_test.go │ ├── rawconn_windows_test.go │ ├── rpc │ │ ├── client.go │ │ ├── client_test.go │ │ ├── debug.go │ │ ├── jsonrpc │ │ │ ├── all_test.go │ │ │ ├── client.go │ │ │ └── server.go │ │ ├── server.go │ │ └── server_test.go │ ├── sendfile_bsd.go │ ├── sendfile_linux.go │ ├── sendfile_solaris.go │ ├── sendfile_stub.go │ ├── sendfile_test.go │ ├── sendfile_windows.go │ ├── server_test.go │ ├── smtp │ │ ├── auth.go │ │ ├── example_test.go │ │ ├── smtp.go │ │ └── smtp_test.go │ ├── sock_bsd.go │ ├── sock_cloexec.go │ ├── sock_linux.go │ ├── sock_plan9.go │ ├── sock_posix.go │ ├── sock_stub.go │ ├── sock_windows.go │ ├── sockopt_bsd.go │ ├── sockopt_linux.go │ ├── sockopt_plan9.go │ ├── sockopt_posix.go │ ├── sockopt_solaris.go │ ├── sockopt_stub.go │ ├── sockopt_windows.go │ ├── sockoptip_bsd.go │ ├── sockoptip_linux.go │ ├── sockoptip_posix.go │ ├── sockoptip_stub.go │ ├── sockoptip_windows.go │ ├── sys_cloexec.go │ ├── tcpsock.go │ ├── tcpsock_plan9.go │ ├── tcpsock_posix.go │ ├── tcpsock_test.go │ ├── tcpsock_unix_test.go │ ├── tcpsockopt_darwin.go │ ├── tcpsockopt_dragonfly.go │ ├── tcpsockopt_openbsd.go │ ├── tcpsockopt_plan9.go │ ├── tcpsockopt_posix.go │ ├── tcpsockopt_solaris.go │ ├── tcpsockopt_stub.go │ ├── tcpsockopt_unix.go │ ├── tcpsockopt_windows.go │ ├── testdata │ │ ├── Mark.Twain-Tom.Sawyer.txt │ │ ├── case-hosts │ │ ├── domain-resolv.conf │ │ ├── empty-resolv.conf │ │ ├── hosts │ │ ├── igmp │ │ ├── igmp6 │ │ ├── invalid-ndots-resolv.conf │ │ ├── ipv4-hosts │ │ ├── ipv6-hosts │ │ ├── large-ndots-resolv.conf │ │ ├── negative-ndots-resolv.conf │ │ ├── openbsd-resolv.conf │ │ ├── resolv.conf │ │ ├── search-resolv.conf │ │ └── singleline-hosts │ ├── textproto │ │ ├── header.go │ │ ├── pipeline.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── textproto.go │ │ ├── writer.go │ │ └── writer_test.go │ ├── timeout_test.go │ ├── udpsock.go │ ├── udpsock_plan9.go │ ├── udpsock_plan9_test.go │ ├── udpsock_posix.go │ ├── udpsock_test.go │ ├── unixsock.go │ ├── unixsock_plan9.go │ ├── unixsock_posix.go │ ├── unixsock_test.go │ ├── url │ │ ├── example_test.go │ │ ├── url.go │ │ └── url_test.go │ ├── writev_test.go │ └── writev_unix.go ├── os │ ├── dir.go │ ├── dir_plan9.go │ ├── dir_unix.go │ ├── dir_windows.go │ ├── env.go │ ├── env_test.go │ ├── env_unix_test.go │ ├── error.go │ ├── error_plan9.go │ ├── error_posix.go │ ├── error_test.go │ ├── error_unix.go │ ├── error_unix_test.go │ ├── error_windows.go │ ├── error_windows_test.go │ ├── example_test.go │ ├── exec.go │ ├── exec │ │ ├── env_test.go │ │ ├── example_test.go │ │ ├── exec.go │ │ ├── exec_posix_test.go │ │ ├── exec_test.go │ │ ├── exec_unix.go │ │ ├── exec_windows.go │ │ ├── internal_test.go │ │ ├── lp_plan9.go │ │ ├── lp_test.go │ │ ├── lp_unix.go │ │ ├── lp_unix_test.go │ │ ├── lp_windows.go │ │ └── lp_windows_test.go │ ├── exec_plan9.go │ ├── exec_posix.go │ ├── exec_unix.go │ ├── exec_windows.go │ ├── executable.go │ ├── executable_darwin.go │ ├── executable_freebsd.go │ ├── executable_path.go │ ├── executable_plan9.go │ ├── executable_procfs.go │ ├── executable_solaris.go │ ├── executable_test.go │ ├── executable_windows.go │ ├── export_test.go │ ├── export_windows_test.go │ ├── file.go │ ├── file_plan9.go │ ├── file_posix.go │ ├── file_unix.go │ ├── file_windows.go │ ├── getwd.go │ ├── getwd_darwin.go │ ├── os_test.go │ ├── os_unix_test.go │ ├── os_windows_test.go │ ├── path.go │ ├── path_plan9.go │ ├── path_test.go │ ├── path_unix.go │ ├── path_windows.go │ ├── path_windows_test.go │ ├── pipe_bsd.go │ ├── pipe_freebsd.go │ ├── pipe_linux.go │ ├── pipe_test.go │ ├── proc.go │ ├── signal │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── sig.s │ │ ├── signal.go │ │ ├── signal_plan9.go │ │ ├── signal_plan9_test.go │ │ ├── signal_test.go │ │ ├── signal_unix.go │ │ └── signal_windows_test.go │ ├── stat_darwin.go │ ├── stat_dragonfly.go │ ├── stat_freebsd.go │ ├── stat_linux.go │ ├── stat_nacl.go │ ├── stat_netbsd.go │ ├── stat_openbsd.go │ ├── stat_plan9.go │ ├── stat_solaris.go │ ├── stat_unix.go │ ├── stat_windows.go │ ├── sticky_bsd.go │ ├── sticky_notbsd.go │ ├── str.go │ ├── sys.go │ ├── sys_bsd.go │ ├── sys_darwin.go │ ├── sys_freebsd.go │ ├── sys_linux.go │ ├── sys_nacl.go │ ├── sys_plan9.go │ ├── sys_solaris.go │ ├── sys_unix.go │ ├── sys_windows.go │ ├── types.go │ ├── types_plan9.go │ ├── types_unix.go │ ├── types_windows.go │ ├── user │ │ ├── cgo_lookup_unix.go │ │ ├── getgrouplist_darwin.go │ │ ├── getgrouplist_unix.go │ │ ├── listgroups_solaris.go │ │ ├── listgroups_unix.go │ │ ├── lookup.go │ │ ├── lookup_android.go │ │ ├── lookup_plan9.go │ │ ├── lookup_stubs.go │ │ ├── lookup_unix.go │ │ ├── lookup_unix_test.go │ │ ├── lookup_windows.go │ │ ├── user.go │ │ └── user_test.go │ ├── wait_unimp.go │ ├── wait_wait6.go │ └── wait_waitid.go ├── path │ ├── example_test.go │ ├── filepath │ │ ├── example_unix_test.go │ │ ├── export_test.go │ │ ├── export_windows_test.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── path.go │ │ ├── path_plan9.go │ │ ├── path_test.go │ │ ├── path_unix.go │ │ ├── path_windows.go │ │ ├── path_windows_test.go │ │ ├── symlink.go │ │ ├── symlink_unix.go │ │ └── symlink_windows.go │ ├── match.go │ ├── match_test.go │ ├── path.go │ └── path_test.go ├── plugin │ ├── plugin.go │ ├── plugin_dlopen.go │ └── plugin_stubs.go ├── race.bash ├── race.bat ├── reflect │ ├── all_test.go │ ├── asm_386.s │ ├── asm_amd64.s │ ├── asm_amd64p32.s │ ├── asm_arm.s │ ├── asm_arm64.s │ ├── asm_mips64x.s │ ├── asm_mipsx.s │ ├── asm_ppc64x.s │ ├── asm_s390x.s │ ├── deepequal.go │ ├── example_test.go │ ├── export_test.go │ ├── makefunc.go │ ├── set_test.go │ ├── swapper.go │ ├── tostring_test.go │ ├── type.go │ └── value.go ├── regexp │ ├── all_test.go │ ├── backtrack.go │ ├── example_test.go │ ├── exec.go │ ├── exec2_test.go │ ├── exec_test.go │ ├── find_test.go │ ├── onepass.go │ ├── onepass_test.go │ ├── regexp.go │ ├── syntax │ │ ├── compile.go │ │ ├── doc.go │ │ ├── make_perl_groups.pl │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── perl_groups.go │ │ ├── prog.go │ │ ├── prog_test.go │ │ ├── regexp.go │ │ ├── simplify.go │ │ └── simplify_test.go │ └── testdata │ │ ├── README │ │ ├── basic.dat │ │ ├── nullsubexpr.dat │ │ ├── re2-exhaustive.txt.bz2 │ │ ├── re2-search.txt │ │ ├── repetition.dat │ │ └── testregex.c ├── run.bash ├── run.bat ├── run.rc ├── runtime │ ├── HACKING.md │ ├── Makefile │ ├── alg.go │ ├── append_test.go │ ├── asm.s │ ├── asm_386.s │ ├── asm_amd64.s │ ├── asm_amd64p32.s │ ├── asm_arm.s │ ├── asm_arm64.s │ ├── asm_mips64x.s │ ├── asm_mipsx.s │ ├── asm_ppc64x.h │ ├── asm_ppc64x.s │ ├── asm_s390x.s │ ├── atomic_arm64.s │ ├── atomic_mips64x.s │ ├── atomic_mipsx.s │ ├── atomic_pointer.go │ ├── atomic_ppc64x.s │ ├── callers_test.go │ ├── cgo.go │ ├── cgo │ │ ├── asm_386.s │ │ ├── asm_amd64.s │ │ ├── asm_arm.s │ │ ├── asm_arm64.s │ │ ├── asm_mips64x.s │ │ ├── asm_mipsx.s │ │ ├── asm_nacl_amd64p32.s │ │ ├── asm_ppc64x.s │ │ ├── asm_s390x.s │ │ ├── callbacks.go │ │ ├── callbacks_traceback.go │ │ ├── cgo.go │ │ ├── dragonfly.go │ │ ├── freebsd.go │ │ ├── gcc_386.S │ │ ├── gcc_amd64.S │ │ ├── gcc_android.c │ │ ├── gcc_android_386.c │ │ ├── gcc_android_amd64.c │ │ ├── gcc_android_arm.c │ │ ├── gcc_android_arm64.c │ │ ├── gcc_arm.S │ │ ├── gcc_arm64.S │ │ ├── gcc_context.c │ │ ├── gcc_darwin_386.c │ │ ├── gcc_darwin_amd64.c │ │ ├── gcc_darwin_arm.c │ │ ├── gcc_darwin_arm64.c │ │ ├── gcc_dragonfly_amd64.c │ │ ├── gcc_fatalf.c │ │ ├── gcc_freebsd_386.c │ │ ├── gcc_freebsd_amd64.c │ │ ├── gcc_freebsd_arm.c │ │ ├── gcc_libinit.c │ │ ├── gcc_libinit_windows.c │ │ ├── gcc_linux_386.c │ │ ├── gcc_linux_amd64.c │ │ ├── gcc_linux_arm.c │ │ ├── gcc_linux_arm64.c │ │ ├── gcc_linux_mips64x.c │ │ ├── gcc_linux_mipsx.c │ │ ├── gcc_linux_ppc64x.c │ │ ├── gcc_linux_s390x.c │ │ ├── gcc_mips64x.S │ │ ├── gcc_mipsx.S │ │ ├── gcc_mmap.c │ │ ├── gcc_netbsd_386.c │ │ ├── gcc_netbsd_amd64.c │ │ ├── gcc_netbsd_arm.c │ │ ├── gcc_openbsd_386.c │ │ ├── gcc_openbsd_amd64.c │ │ ├── gcc_ppc64x.S │ │ ├── gcc_s390x.S │ │ ├── gcc_setenv.c │ │ ├── gcc_sigaction.c │ │ ├── gcc_signal_darwin_armx.c │ │ ├── gcc_signal_darwin_lldb.c │ │ ├── gcc_solaris_amd64.c │ │ ├── gcc_traceback.c │ │ ├── gcc_util.c │ │ ├── gcc_windows_386.c │ │ ├── gcc_windows_amd64.c │ │ ├── iscgo.go │ │ ├── libcgo.h │ │ ├── libcgo_unix.h │ │ ├── mmap.go │ │ ├── netbsd.go │ │ ├── openbsd.go │ │ ├── setenv.go │ │ ├── sigaction.go │ │ ├── signal_darwin_arm.s │ │ ├── signal_darwin_arm64.s │ │ └── signal_darwin_armx.go │ ├── cgo_mmap.go │ ├── cgo_ppc64x.go │ ├── cgo_sigaction.go │ ├── cgocall.go │ ├── cgocallback.go │ ├── cgocheck.go │ ├── chan.go │ ├── chan_test.go │ ├── chanbarrier_test.go │ ├── closure_test.go │ ├── compiler.go │ ├── complex.go │ ├── complex_test.go │ ├── cpuflags_amd64.go │ ├── cpuprof.go │ ├── cputicks.go │ ├── crash_cgo_test.go │ ├── crash_nonunix_test.go │ ├── crash_test.go │ ├── crash_unix_test.go │ ├── debug.go │ ├── debug │ │ ├── debug.s │ │ ├── garbage.go │ │ ├── garbage_test.go │ │ ├── heapdump_test.go │ │ ├── stack.go │ │ ├── stack_test.go │ │ └── stubs.go │ ├── defs1_linux.go │ ├── defs1_netbsd_386.go │ ├── defs1_netbsd_amd64.go │ ├── defs1_netbsd_arm.go │ ├── defs1_solaris_amd64.go │ ├── defs2_linux.go │ ├── defs3_linux.go │ ├── defs_arm_linux.go │ ├── defs_darwin.go │ ├── defs_darwin_386.go │ ├── defs_darwin_amd64.go │ ├── defs_darwin_arm.go │ ├── defs_darwin_arm64.go │ ├── defs_dragonfly.go │ ├── defs_dragonfly_amd64.go │ ├── defs_freebsd.go │ ├── defs_freebsd_386.go │ ├── defs_freebsd_amd64.go │ ├── defs_freebsd_arm.go │ ├── defs_linux.go │ ├── defs_linux_386.go │ ├── defs_linux_amd64.go │ ├── defs_linux_arm.go │ ├── defs_linux_arm64.go │ ├── defs_linux_mips64x.go │ ├── defs_linux_mipsx.go │ ├── defs_linux_ppc64.go │ ├── defs_linux_ppc64le.go │ ├── defs_linux_s390x.go │ ├── defs_nacl_386.go │ ├── defs_nacl_amd64p32.go │ ├── defs_nacl_arm.go │ ├── defs_netbsd.go │ ├── defs_netbsd_386.go │ ├── defs_netbsd_amd64.go │ ├── defs_netbsd_arm.go │ ├── defs_openbsd.go │ ├── defs_openbsd_386.go │ ├── defs_openbsd_amd64.go │ ├── defs_openbsd_arm.go │ ├── defs_plan9_386.go │ ├── defs_plan9_amd64.go │ ├── defs_plan9_arm.go │ ├── defs_solaris.go │ ├── defs_solaris_amd64.go │ ├── defs_windows.go │ ├── defs_windows_386.go │ ├── defs_windows_amd64.go │ ├── duff_386.s │ ├── duff_amd64.s │ ├── duff_arm.s │ ├── duff_arm64.s │ ├── duff_mips64x.s │ ├── duff_ppc64x.s │ ├── env_plan9.go │ ├── env_posix.go │ ├── env_test.go │ ├── error.go │ ├── example_test.go │ ├── export_arm_test.go │ ├── export_futex_test.go │ ├── export_linux_test.go │ ├── export_mmap_test.go │ ├── export_test.go │ ├── export_unix_test.go │ ├── export_windows_test.go │ ├── extern.go │ ├── fastlog2.go │ ├── fastlog2_test.go │ ├── fastlog2table.go │ ├── float.go │ ├── funcdata.h │ ├── futex_test.go │ ├── gc_test.go │ ├── gcinfo_test.go │ ├── go_tls.h │ ├── hash32.go │ ├── hash64.go │ ├── hash_test.go │ ├── hashmap.go │ ├── hashmap_fast.go │ ├── heapdump.go │ ├── iface.go │ ├── iface_test.go │ ├── internal │ │ ├── atomic │ │ │ ├── asm_386.s │ │ │ ├── asm_amd64.s │ │ │ ├── asm_amd64p32.s │ │ │ ├── asm_arm.s │ │ │ ├── asm_arm64.s │ │ │ ├── asm_mips64x.s │ │ │ ├── asm_mipsx.s │ │ │ ├── asm_ppc64x.s │ │ │ ├── asm_s390x.s │ │ │ ├── atomic_386.go │ │ │ ├── atomic_amd64x.go │ │ │ ├── atomic_arm.go │ │ │ ├── atomic_arm64.go │ │ │ ├── atomic_arm64.s │ │ │ ├── atomic_mips64x.go │ │ │ ├── atomic_mips64x.s │ │ │ ├── atomic_mipsx.go │ │ │ ├── atomic_mipsx.s │ │ │ ├── atomic_ppc64x.go │ │ │ ├── atomic_ppc64x.s │ │ │ ├── atomic_s390x.go │ │ │ ├── atomic_test.go │ │ │ ├── bench_test.go │ │ │ ├── stubs.go │ │ │ ├── sys_darwin_arm.s │ │ │ ├── sys_freebsd_arm.s │ │ │ ├── sys_linux_arm.s │ │ │ ├── sys_nacl_arm.s │ │ │ ├── sys_netbsd_arm.s │ │ │ ├── sys_openbsd_arm.s │ │ │ └── sys_plan9_arm.s │ │ └── sys │ │ │ ├── arch.go │ │ │ ├── arch_386.go │ │ │ ├── arch_amd64.go │ │ │ ├── arch_amd64p32.go │ │ │ ├── arch_arm.go │ │ │ ├── arch_arm64.go │ │ │ ├── arch_mips.go │ │ │ ├── arch_mips64.go │ │ │ ├── arch_mips64le.go │ │ │ ├── arch_mipsle.go │ │ │ ├── arch_ppc64.go │ │ │ ├── arch_ppc64le.go │ │ │ ├── arch_s390x.go │ │ │ ├── gengoos.go │ │ │ ├── intrinsics.go │ │ │ ├── intrinsics_386.s │ │ │ ├── intrinsics_stubs.go │ │ │ ├── intrinsics_test.go │ │ │ ├── stubs.go │ │ │ ├── sys.go │ │ │ ├── zgoarch_386.go │ │ │ ├── zgoarch_amd64.go │ │ │ ├── zgoarch_amd64p32.go │ │ │ ├── zgoarch_arm.go │ │ │ ├── zgoarch_arm64.go │ │ │ ├── zgoarch_mips.go │ │ │ ├── zgoarch_mips64.go │ │ │ ├── zgoarch_mips64le.go │ │ │ ├── zgoarch_mipsle.go │ │ │ ├── zgoarch_ppc64.go │ │ │ ├── zgoarch_ppc64le.go │ │ │ ├── zgoarch_s390x.go │ │ │ ├── zgoos_android.go │ │ │ ├── zgoos_darwin.go │ │ │ ├── zgoos_dragonfly.go │ │ │ ├── zgoos_freebsd.go │ │ │ ├── zgoos_linux.go │ │ │ ├── zgoos_nacl.go │ │ │ ├── zgoos_netbsd.go │ │ │ ├── zgoos_openbsd.go │ │ │ ├── zgoos_plan9.go │ │ │ ├── zgoos_solaris.go │ │ │ └── zgoos_windows.go │ ├── lfstack.go │ ├── lfstack_32bit.go │ ├── lfstack_64bit.go │ ├── lfstack_test.go │ ├── lock_futex.go │ ├── lock_sema.go │ ├── malloc.go │ ├── malloc_test.go │ ├── map_test.go │ ├── mapspeed_test.go │ ├── mbarrier.go │ ├── mbitmap.go │ ├── mcache.go │ ├── mcentral.go │ ├── mem_bsd.go │ ├── mem_darwin.go │ ├── mem_linux.go │ ├── mem_plan9.go │ ├── mem_windows.go │ ├── memclr_386.s │ ├── memclr_amd64.s │ ├── memclr_arm.s │ ├── memclr_arm64.s │ ├── memclr_mips64x.s │ ├── memclr_mipsx.s │ ├── memclr_plan9_386.s │ ├── memclr_plan9_amd64.s │ ├── memclr_ppc64x.s │ ├── memclr_s390x.s │ ├── memmove_386.s │ ├── memmove_amd64.s │ ├── memmove_arm.s │ ├── memmove_arm64.s │ ├── memmove_linux_amd64_test.go │ ├── memmove_mips64x.s │ ├── memmove_mipsx.s │ ├── memmove_nacl_amd64p32.s │ ├── memmove_plan9_386.s │ ├── memmove_plan9_amd64.s │ ├── memmove_ppc64x.s │ ├── memmove_s390x.s │ ├── memmove_test.go │ ├── mfinal.go │ ├── mfinal_test.go │ ├── mfixalloc.go │ ├── mgc.go │ ├── mgclarge.go │ ├── mgcmark.go │ ├── mgcsweep.go │ ├── mgcsweepbuf.go │ ├── mgcwork.go │ ├── mheap.go │ ├── mkduff.go │ ├── mkfastlog2table.go │ ├── mknacl.sh │ ├── mksizeclasses.go │ ├── mmap.go │ ├── mprof.go │ ├── msan.go │ ├── msan │ │ └── msan.go │ ├── msan0.go │ ├── msan_amd64.s │ ├── msize.go │ ├── mstats.go │ ├── net_plan9.go │ ├── netpoll.go │ ├── netpoll_epoll.go │ ├── netpoll_kqueue.go │ ├── netpoll_nacl.go │ ├── netpoll_solaris.go │ ├── netpoll_stub.go │ ├── netpoll_windows.go │ ├── noasm.go │ ├── norace_linux_test.go │ ├── norace_test.go │ ├── numcpu_freebsd_test.go │ ├── os2_freebsd.go │ ├── os2_nacl.go │ ├── os2_openbsd.go │ ├── os2_plan9.go │ ├── os2_solaris.go │ ├── os3_plan9.go │ ├── os3_solaris.go │ ├── os_android.go │ ├── os_darwin.go │ ├── os_darwin_arm.go │ ├── os_darwin_arm64.go │ ├── os_dragonfly.go │ ├── os_freebsd.go │ ├── os_freebsd_arm.go │ ├── os_linux.go │ ├── os_linux_arm.go │ ├── os_linux_arm64.go │ ├── os_linux_be64.go │ ├── os_linux_generic.go │ ├── os_linux_mips64x.go │ ├── os_linux_mipsx.go │ ├── os_linux_noauxv.go │ ├── os_linux_ppc64x.go │ ├── os_linux_s390x.go │ ├── os_nacl.go │ ├── os_nacl_arm.go │ ├── os_netbsd.go │ ├── os_netbsd_386.go │ ├── os_netbsd_amd64.go │ ├── os_netbsd_arm.go │ ├── os_openbsd.go │ ├── os_openbsd_arm.go │ ├── os_plan9.go │ ├── os_plan9_arm.go │ ├── os_solaris.go │ ├── os_windows.go │ ├── panic.go │ ├── plugin.go │ ├── pprof │ │ ├── elf.go │ │ ├── internal │ │ │ └── profile │ │ │ │ ├── encode.go │ │ │ │ ├── filter.go │ │ │ │ ├── legacy_profile.go │ │ │ │ ├── profile.go │ │ │ │ ├── profile_test.go │ │ │ │ ├── proto.go │ │ │ │ ├── proto_test.go │ │ │ │ └── prune.go │ │ ├── label.go │ │ ├── label_test.go │ │ ├── map.go │ │ ├── mprof_test.go │ │ ├── pprof.go │ │ ├── pprof_test.go │ │ ├── proto.go │ │ ├── proto_test.go │ │ ├── protobuf.go │ │ ├── protomem.go │ │ ├── protomem_test.go │ │ ├── runtime.go │ │ ├── runtime_test.go │ │ └── testdata │ │ │ ├── README │ │ │ ├── test32 │ │ │ ├── test32be │ │ │ ├── test64 │ │ │ └── test64be │ ├── print.go │ ├── proc.go │ ├── proc_runtime_test.go │ ├── proc_test.go │ ├── profbuf.go │ ├── profbuf_test.go │ ├── proflabel.go │ ├── race.go │ ├── race │ │ ├── README │ │ ├── doc.go │ │ ├── output_test.go │ │ ├── race.go │ │ ├── race_darwin_amd64.syso │ │ ├── race_freebsd_amd64.syso │ │ ├── race_linux_amd64.syso │ │ ├── race_linux_test.go │ │ ├── race_test.go │ │ ├── race_unix_test.go │ │ ├── race_windows_amd64.syso │ │ ├── race_windows_test.go │ │ ├── sched_test.go │ │ └── testdata │ │ │ ├── atomic_test.go │ │ │ ├── cgo_test.go │ │ │ ├── cgo_test_main.go │ │ │ ├── chan_test.go │ │ │ ├── comp_test.go │ │ │ ├── finalizer_test.go │ │ │ ├── io_test.go │ │ │ ├── issue12225_test.go │ │ │ ├── issue12664_test.go │ │ │ ├── issue13264_test.go │ │ │ ├── map_test.go │ │ │ ├── mop_test.go │ │ │ ├── mutex_test.go │ │ │ ├── pool_test.go │ │ │ ├── reflect_test.go │ │ │ ├── regression_test.go │ │ │ ├── rwmutex_test.go │ │ │ ├── select_test.go │ │ │ ├── slice_test.go │ │ │ ├── sync_test.go │ │ │ └── waitgroup_test.go │ ├── race0.go │ ├── race_amd64.s │ ├── rand_test.go │ ├── rdebug.go │ ├── relax_stub.go │ ├── rt0_android_386.s │ ├── rt0_android_amd64.s │ ├── rt0_android_arm.s │ ├── rt0_android_arm64.s │ ├── rt0_darwin_386.s │ ├── rt0_darwin_amd64.s │ ├── rt0_darwin_arm.s │ ├── rt0_darwin_arm64.s │ ├── rt0_dragonfly_amd64.s │ ├── rt0_freebsd_386.s │ ├── rt0_freebsd_amd64.s │ ├── rt0_freebsd_arm.s │ ├── rt0_linux_386.s │ ├── rt0_linux_amd64.s │ ├── rt0_linux_arm.s │ ├── rt0_linux_arm64.s │ ├── rt0_linux_mips64x.s │ ├── rt0_linux_mipsx.s │ ├── rt0_linux_ppc64.s │ ├── rt0_linux_ppc64le.s │ ├── rt0_linux_s390x.s │ ├── rt0_nacl_386.s │ ├── rt0_nacl_amd64p32.s │ ├── rt0_nacl_arm.s │ ├── rt0_netbsd_386.s │ ├── rt0_netbsd_amd64.s │ ├── rt0_netbsd_arm.s │ ├── rt0_openbsd_386.s │ ├── rt0_openbsd_amd64.s │ ├── rt0_openbsd_arm.s │ ├── rt0_plan9_386.s │ ├── rt0_plan9_amd64.s │ ├── rt0_plan9_arm.s │ ├── rt0_solaris_amd64.s │ ├── rt0_windows_386.s │ ├── rt0_windows_amd64.s │ ├── runtime-gdb.py │ ├── runtime-gdb_test.go │ ├── runtime-lldb_test.go │ ├── runtime.go │ ├── runtime1.go │ ├── runtime2.go │ ├── runtime_linux_test.go │ ├── runtime_mmap_test.go │ ├── runtime_test.go │ ├── runtime_unix_test.go │ ├── rwmutex.go │ ├── rwmutex_test.go │ ├── select.go │ ├── sema.go │ ├── sigaction_linux.go │ ├── signal_386.go │ ├── signal_amd64x.go │ ├── signal_arm.go │ ├── signal_arm64.go │ ├── signal_darwin.go │ ├── signal_darwin_386.go │ ├── signal_darwin_amd64.go │ ├── signal_darwin_arm.go │ ├── signal_darwin_arm64.go │ ├── signal_dragonfly.go │ ├── signal_dragonfly_amd64.go │ ├── signal_freebsd.go │ ├── signal_freebsd_386.go │ ├── signal_freebsd_amd64.go │ ├── signal_freebsd_arm.go │ ├── signal_linux_386.go │ ├── signal_linux_amd64.go │ ├── signal_linux_arm.go │ ├── signal_linux_arm64.go │ ├── signal_linux_mips64x.go │ ├── signal_linux_mipsx.go │ ├── signal_linux_ppc64x.go │ ├── signal_linux_s390x.go │ ├── signal_mips64x.go │ ├── signal_mipsx.go │ ├── signal_nacl.go │ ├── signal_nacl_386.go │ ├── signal_nacl_amd64p32.go │ ├── signal_nacl_arm.go │ ├── signal_netbsd.go │ ├── signal_netbsd_386.go │ ├── signal_netbsd_amd64.go │ ├── signal_netbsd_arm.go │ ├── signal_openbsd.go │ ├── signal_openbsd_386.go │ ├── signal_openbsd_amd64.go │ ├── signal_openbsd_arm.go │ ├── signal_plan9.go │ ├── signal_ppc64x.go │ ├── signal_sighandler.go │ ├── signal_solaris.go │ ├── signal_solaris_amd64.go │ ├── signal_unix.go │ ├── signal_windows.go │ ├── sigqueue.go │ ├── sigqueue_plan9.go │ ├── sigtab_linux_generic.go │ ├── sigtab_linux_mipsx.go │ ├── sizeclasses.go │ ├── slice.go │ ├── softfloat64.go │ ├── softfloat64_test.go │ ├── softfloat_arm.go │ ├── sqrt.go │ ├── sqrt_test.go │ ├── stack.go │ ├── stack_test.go │ ├── string.go │ ├── string_test.go │ ├── stubs.go │ ├── stubs2.go │ ├── stubs32.go │ ├── stubs_android.go │ ├── stubs_asm.go │ ├── stubs_linux.go │ ├── stubs_nonlinux.go │ ├── symtab.go │ ├── symtab_test.go │ ├── sys_arm.go │ ├── sys_arm64.go │ ├── sys_darwin_386.s │ ├── sys_darwin_amd64.s │ ├── sys_darwin_arm.s │ ├── sys_darwin_arm64.s │ ├── sys_dragonfly_amd64.s │ ├── sys_freebsd_386.s │ ├── sys_freebsd_amd64.s │ ├── sys_freebsd_arm.s │ ├── sys_linux_386.s │ ├── sys_linux_amd64.s │ ├── sys_linux_arm.s │ ├── sys_linux_arm64.s │ ├── sys_linux_mips64x.s │ ├── sys_linux_mipsx.s │ ├── sys_linux_ppc64x.s │ ├── sys_linux_s390x.s │ ├── sys_mips64x.go │ ├── sys_mipsx.go │ ├── sys_nacl_386.s │ ├── sys_nacl_amd64p32.s │ ├── sys_nacl_arm.s │ ├── sys_netbsd_386.s │ ├── sys_netbsd_amd64.s │ ├── sys_netbsd_arm.s │ ├── sys_nonppc64x.go │ ├── sys_openbsd_386.s │ ├── sys_openbsd_amd64.s │ ├── sys_openbsd_arm.s │ ├── sys_plan9_386.s │ ├── sys_plan9_amd64.s │ ├── sys_plan9_arm.s │ ├── sys_ppc64x.go │ ├── sys_s390x.go │ ├── sys_solaris_amd64.s │ ├── sys_windows_386.s │ ├── sys_windows_amd64.s │ ├── sys_x86.go │ ├── syscall2_solaris.go │ ├── syscall_nacl.h │ ├── syscall_solaris.go │ ├── syscall_windows.go │ ├── syscall_windows_test.go │ ├── testdata │ │ ├── testprog │ │ │ ├── crash.go │ │ │ ├── deadlock.go │ │ │ ├── gc.go │ │ │ ├── main.go │ │ │ ├── map.go │ │ │ ├── memprof.go │ │ │ ├── misc.go │ │ │ ├── numcpu_freebsd.go │ │ │ ├── panicrace.go │ │ │ ├── signal.go │ │ │ ├── stringconcat.go │ │ │ └── syscall_windows.go │ │ ├── testprogcgo │ │ │ ├── aprof.go │ │ │ ├── callback.go │ │ │ ├── cgo.go │ │ │ ├── crash.go │ │ │ ├── deadlock.go │ │ │ ├── dll_windows.go │ │ │ ├── dropm.go │ │ │ ├── dropm_stub.go │ │ │ ├── exec.go │ │ │ ├── main.go │ │ │ ├── numgoroutine.go │ │ │ ├── pprof.go │ │ │ ├── raceprof.go │ │ │ ├── racesig.go │ │ │ ├── sigstack.go │ │ │ ├── threadpanic.go │ │ │ ├── threadpanic_unix.c │ │ │ ├── threadpanic_windows.c │ │ │ ├── threadpprof.go │ │ │ ├── threadprof.go │ │ │ ├── traceback.go │ │ │ ├── tracebackctxt.go │ │ │ ├── tracebackctxt_c.c │ │ │ └── windows │ │ │ │ └── win.go │ │ └── testprognet │ │ │ ├── main.go │ │ │ ├── net.go │ │ │ ├── signal.go │ │ │ └── signalexec.go │ ├── textflag.h │ ├── time.go │ ├── timeasm.go │ ├── timestub.go │ ├── tls_arm.s │ ├── tls_arm64.h │ ├── tls_arm64.s │ ├── tls_mips64x.s │ ├── tls_mipsx.s │ ├── tls_ppc64x.s │ ├── tls_s390x.s │ ├── trace.go │ ├── trace │ │ ├── trace.go │ │ ├── trace_stack_test.go │ │ └── trace_test.go │ ├── traceback.go │ ├── type.go │ ├── typekind.go │ ├── unaligned1.go │ ├── unaligned2.go │ ├── utf8.go │ ├── vdso_linux_amd64.go │ ├── vdso_none.go │ ├── vlop_386.s │ ├── vlop_arm.s │ ├── vlop_arm_test.go │ ├── vlrt.go │ ├── wincallback.go │ ├── write_err.go │ ├── write_err_android.go │ ├── zcallback_windows.go │ └── zcallback_windows.s ├── sort │ ├── example_interface_test.go │ ├── example_keys_test.go │ ├── example_multi_test.go │ ├── example_search_test.go │ ├── example_test.go │ ├── example_wrapper_test.go │ ├── export_test.go │ ├── genzfunc.go │ ├── search.go │ ├── search_test.go │ ├── sort.go │ ├── sort_test.go │ └── zfuncversion.go ├── strconv │ ├── atob.go │ ├── atob_test.go │ ├── atof.go │ ├── atof_test.go │ ├── atoi.go │ ├── atoi_test.go │ ├── decimal.go │ ├── decimal_test.go │ ├── doc.go │ ├── example_test.go │ ├── extfloat.go │ ├── fp_test.go │ ├── ftoa.go │ ├── ftoa_test.go │ ├── internal_test.go │ ├── isprint.go │ ├── itoa.go │ ├── itoa_test.go │ ├── makeisprint.go │ ├── quote.go │ ├── quote_test.go │ ├── strconv_test.go │ └── testdata │ │ └── testfp.txt ├── strings │ ├── compare.go │ ├── compare_test.go │ ├── example_test.go │ ├── export_test.go │ ├── reader.go │ ├── reader_test.go │ ├── replace.go │ ├── replace_test.go │ ├── search.go │ ├── search_test.go │ ├── strings.go │ ├── strings.s │ ├── strings_amd64.go │ ├── strings_decl.go │ ├── strings_generic.go │ ├── strings_s390x.go │ └── strings_test.go ├── sync │ ├── atomic │ │ ├── 64bit_arm.go │ │ ├── asm_386.s │ │ ├── asm_amd64.s │ │ ├── asm_amd64p32.s │ │ ├── asm_arm.s │ │ ├── asm_arm64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_arm.s │ │ ├── asm_mips64x.s │ │ ├── asm_mipsx.s │ │ ├── asm_nacl_arm.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_plan9_arm.s │ │ ├── asm_ppc64x.s │ │ ├── asm_s390x.s │ │ ├── atomic_linux_arm_test.go │ │ ├── atomic_test.go │ │ ├── doc.go │ │ ├── export_linux_arm_test.go │ │ ├── race.s │ │ ├── value.go │ │ └── value_test.go │ ├── cond.go │ ├── cond_test.go │ ├── example_pool_test.go │ ├── example_test.go │ ├── export_test.go │ ├── map.go │ ├── map_bench_test.go │ ├── map_reference_test.go │ ├── map_test.go │ ├── mutex.go │ ├── mutex_test.go │ ├── once.go │ ├── once_test.go │ ├── pool.go │ ├── pool_test.go │ ├── runtime.go │ ├── runtime_sema_test.go │ ├── rwmutex.go │ ├── rwmutex_test.go │ ├── waitgroup.go │ └── waitgroup_test.go ├── syscall │ ├── asm9_unix1_amd64.s │ ├── asm9_unix2_amd64.s │ ├── asm_darwin_386.s │ ├── asm_darwin_amd64.s │ ├── asm_darwin_arm.s │ ├── asm_darwin_arm64.s │ ├── asm_freebsd_arm.s │ ├── asm_linux_386.s │ ├── asm_linux_amd64.s │ ├── asm_linux_arm.s │ ├── asm_linux_arm64.s │ ├── asm_linux_mips64x.s │ ├── asm_linux_mipsx.s │ ├── asm_linux_ppc64x.s │ ├── asm_linux_s390x.s │ ├── asm_nacl_386.s │ ├── asm_nacl_amd64p32.s │ ├── asm_nacl_arm.s │ ├── asm_netbsd_arm.s │ ├── asm_openbsd_arm.s │ ├── asm_plan9_386.s │ ├── asm_plan9_amd64.s │ ├── asm_plan9_arm.s │ ├── asm_solaris_amd64.s │ ├── asm_unix_386.s │ ├── asm_unix_amd64.s │ ├── bpf_bsd.go │ ├── const_plan9.go │ ├── creds_test.go │ ├── dir_plan9.go │ ├── dirent.go │ ├── dll_windows.go │ ├── endian_big.go │ ├── endian_little.go │ ├── env_plan9.go │ ├── env_unix.go │ ├── env_windows.go │ ├── errors_plan9.go │ ├── exec_bsd.go │ ├── exec_freebsd.go │ ├── exec_linux.go │ ├── exec_linux_test.go │ ├── exec_plan9.go │ ├── exec_solaris.go │ ├── exec_solaris_test.go │ ├── exec_unix.go │ ├── exec_unix_test.go │ ├── exec_windows.go │ ├── export_test.go │ ├── export_unix_test.go │ ├── fd_nacl.go │ ├── flock.go │ ├── flock_linux_32bit.go │ ├── forkpipe_bsd.go │ ├── fs_nacl.go │ ├── lsf_linux.go │ ├── mkall.sh │ ├── mkerrors.sh │ ├── mkpost.go │ ├── mksyscall.pl │ ├── mksyscall_solaris.pl │ ├── mksyscall_windows.go │ ├── mksysctl_openbsd.pl │ ├── mksysnum_darwin.pl │ ├── mksysnum_dragonfly.pl │ ├── mksysnum_freebsd.pl │ ├── mksysnum_linux.pl │ ├── mksysnum_netbsd.pl │ ├── mksysnum_openbsd.pl │ ├── mksysnum_plan9.sh │ ├── mmap_unix_test.go │ ├── msan.go │ ├── msan0.go │ ├── net.go │ ├── net_nacl.go │ ├── netlink_linux.go │ ├── pwd_plan9.go │ ├── route_bsd.go │ ├── route_darwin.go │ ├── route_dragonfly.go │ ├── route_freebsd.go │ ├── route_freebsd_32bit.go │ ├── route_freebsd_64bit.go │ ├── route_netbsd.go │ ├── route_openbsd.go │ ├── security_windows.go │ ├── setuidgid_32_linux.go │ ├── setuidgid_linux.go │ ├── sockcmsg_linux.go │ ├── sockcmsg_unix.go │ ├── str.go │ ├── syscall.go │ ├── syscall_bsd.go │ ├── syscall_bsd_test.go │ ├── syscall_darwin.go │ ├── syscall_darwin_386.go │ ├── syscall_darwin_amd64.go │ ├── syscall_darwin_arm.go │ ├── syscall_darwin_arm64.go │ ├── syscall_dragonfly.go │ ├── syscall_dragonfly_amd64.go │ ├── syscall_freebsd.go │ ├── syscall_freebsd_386.go │ ├── syscall_freebsd_amd64.go │ ├── syscall_freebsd_arm.go │ ├── syscall_linux.go │ ├── syscall_linux_386.go │ ├── syscall_linux_amd64.go │ ├── syscall_linux_arm.go │ ├── syscall_linux_arm64.go │ ├── syscall_linux_mips64x.go │ ├── syscall_linux_mipsx.go │ ├── syscall_linux_ppc64x.go │ ├── syscall_linux_s390x.go │ ├── syscall_linux_test.go │ ├── syscall_nacl.go │ ├── syscall_nacl_386.go │ ├── syscall_nacl_amd64p32.go │ ├── syscall_nacl_arm.go │ ├── syscall_netbsd.go │ ├── syscall_netbsd_386.go │ ├── syscall_netbsd_amd64.go │ ├── syscall_netbsd_arm.go │ ├── syscall_no_getwd.go │ ├── syscall_openbsd.go │ ├── syscall_openbsd_386.go │ ├── syscall_openbsd_amd64.go │ ├── syscall_openbsd_arm.go │ ├── syscall_plan9.go │ ├── syscall_solaris.go │ ├── syscall_solaris_amd64.go │ ├── syscall_test.go │ ├── syscall_unix.go │ ├── syscall_unix_test.go │ ├── syscall_windows.go │ ├── syscall_windows_386.go │ ├── syscall_windows_amd64.go │ ├── syscall_windows_test.go │ ├── tables_nacl.go │ ├── time_nacl_386.s │ ├── time_nacl_amd64p32.s │ ├── time_nacl_arm.s │ ├── timestruct.go │ ├── types_darwin.go │ ├── types_dragonfly.go │ ├── types_freebsd.go │ ├── types_linux.go │ ├── types_netbsd.go │ ├── types_openbsd.go │ ├── types_solaris.go │ ├── unzip_nacl.go │ ├── zerrors_darwin_386.go │ ├── zerrors_darwin_amd64.go │ ├── zerrors_darwin_arm.go │ ├── zerrors_darwin_arm64.go │ ├── zerrors_dragonfly_amd64.go │ ├── zerrors_freebsd_386.go │ ├── zerrors_freebsd_amd64.go │ ├── zerrors_freebsd_arm.go │ ├── zerrors_linux_386.go │ ├── zerrors_linux_amd64.go │ ├── zerrors_linux_arm.go │ ├── zerrors_linux_arm64.go │ ├── zerrors_linux_mips.go │ ├── zerrors_linux_mips64.go │ ├── zerrors_linux_mips64le.go │ ├── zerrors_linux_mipsle.go │ ├── zerrors_linux_ppc64.go │ ├── zerrors_linux_ppc64le.go │ ├── zerrors_linux_s390x.go │ ├── zerrors_netbsd_386.go │ ├── zerrors_netbsd_amd64.go │ ├── zerrors_netbsd_arm.go │ ├── zerrors_openbsd_386.go │ ├── zerrors_openbsd_amd64.go │ ├── zerrors_openbsd_arm.go │ ├── zerrors_solaris_amd64.go │ ├── zerrors_windows.go │ ├── zerrors_windows_386.go │ ├── zerrors_windows_amd64.go │ ├── zsyscall_darwin_386.go │ ├── zsyscall_darwin_amd64.go │ ├── zsyscall_darwin_arm.go │ ├── zsyscall_darwin_arm64.go │ ├── zsyscall_dragonfly_amd64.go │ ├── zsyscall_freebsd_386.go │ ├── zsyscall_freebsd_amd64.go │ ├── zsyscall_freebsd_arm.go │ ├── zsyscall_linux_386.go │ ├── zsyscall_linux_amd64.go │ ├── zsyscall_linux_arm.go │ ├── zsyscall_linux_arm64.go │ ├── zsyscall_linux_mips.go │ ├── zsyscall_linux_mips64.go │ ├── zsyscall_linux_mips64le.go │ ├── zsyscall_linux_mipsle.go │ ├── zsyscall_linux_ppc64.go │ ├── zsyscall_linux_ppc64le.go │ ├── zsyscall_linux_s390x.go │ ├── zsyscall_nacl_386.go │ ├── zsyscall_nacl_amd64p32.go │ ├── zsyscall_nacl_arm.go │ ├── zsyscall_netbsd_386.go │ ├── zsyscall_netbsd_amd64.go │ ├── zsyscall_netbsd_arm.go │ ├── zsyscall_openbsd_386.go │ ├── zsyscall_openbsd_amd64.go │ ├── zsyscall_openbsd_arm.go │ ├── zsyscall_plan9_386.go │ ├── zsyscall_plan9_amd64.go │ ├── zsyscall_plan9_arm.go │ ├── zsyscall_solaris_amd64.go │ ├── zsyscall_windows.go │ ├── zsysctl_openbsd.go │ ├── zsysnum_darwin_386.go │ ├── zsysnum_darwin_amd64.go │ ├── zsysnum_darwin_arm.go │ ├── zsysnum_darwin_arm64.go │ ├── zsysnum_dragonfly_amd64.go │ ├── zsysnum_freebsd_386.go │ ├── zsysnum_freebsd_amd64.go │ ├── zsysnum_freebsd_arm.go │ ├── zsysnum_linux_386.go │ ├── zsysnum_linux_amd64.go │ ├── zsysnum_linux_arm.go │ ├── zsysnum_linux_arm64.go │ ├── zsysnum_linux_mips.go │ ├── zsysnum_linux_mips64.go │ ├── zsysnum_linux_mips64le.go │ ├── zsysnum_linux_mipsle.go │ ├── zsysnum_linux_ppc64.go │ ├── zsysnum_linux_ppc64le.go │ ├── zsysnum_linux_s390x.go │ ├── zsysnum_netbsd_386.go │ ├── zsysnum_netbsd_amd64.go │ ├── zsysnum_netbsd_arm.go │ ├── zsysnum_openbsd_386.go │ ├── zsysnum_openbsd_amd64.go │ ├── zsysnum_openbsd_arm.go │ ├── zsysnum_plan9.go │ ├── zsysnum_solaris_amd64.go │ ├── zsysnum_windows_386.go │ ├── zsysnum_windows_amd64.go │ ├── ztypes_darwin_386.go │ ├── ztypes_darwin_amd64.go │ ├── ztypes_darwin_arm.go │ ├── ztypes_darwin_arm64.go │ ├── ztypes_dragonfly_amd64.go │ ├── ztypes_freebsd_386.go │ ├── ztypes_freebsd_amd64.go │ ├── ztypes_freebsd_arm.go │ ├── ztypes_linux_386.go │ ├── ztypes_linux_amd64.go │ ├── ztypes_linux_arm.go │ ├── ztypes_linux_arm64.go │ ├── ztypes_linux_mips.go │ ├── ztypes_linux_mips64.go │ ├── ztypes_linux_mips64le.go │ ├── ztypes_linux_mipsle.go │ ├── ztypes_linux_ppc64.go │ ├── ztypes_linux_ppc64le.go │ ├── ztypes_linux_s390x.go │ ├── ztypes_netbsd_386.go │ ├── ztypes_netbsd_amd64.go │ ├── ztypes_netbsd_arm.go │ ├── ztypes_openbsd_386.go │ ├── ztypes_openbsd_amd64.go │ ├── ztypes_openbsd_arm.go │ ├── ztypes_solaris_amd64.go │ ├── ztypes_windows.go │ ├── ztypes_windows_386.go │ └── ztypes_windows_amd64.go ├── testing │ ├── allocs.go │ ├── allocs_test.go │ ├── benchmark.go │ ├── benchmark_test.go │ ├── cover.go │ ├── example.go │ ├── export_test.go │ ├── helper_test.go │ ├── helperfuncs_test.go │ ├── internal │ │ └── testdeps │ │ │ └── deps.go │ ├── iotest │ │ ├── logger.go │ │ ├── reader.go │ │ └── writer.go │ ├── match.go │ ├── match_test.go │ ├── quick │ │ ├── quick.go │ │ └── quick_test.go │ ├── sub_test.go │ ├── testing.go │ └── testing_test.go ├── text │ ├── scanner │ │ ├── example_test.go │ │ ├── scanner.go │ │ └── scanner_test.go │ ├── tabwriter │ │ ├── example_test.go │ │ ├── tabwriter.go │ │ └── tabwriter_test.go │ └── template │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── examplefiles_test.go │ │ ├── examplefunc_test.go │ │ ├── exec.go │ │ ├── exec_test.go │ │ ├── funcs.go │ │ ├── helper.go │ │ ├── multi_test.go │ │ ├── option.go │ │ ├── parse │ │ ├── lex.go │ │ ├── lex_test.go │ │ ├── node.go │ │ ├── parse.go │ │ └── parse_test.go │ │ ├── template.go │ │ └── testdata │ │ ├── file1.tmpl │ │ ├── file2.tmpl │ │ ├── tmpl1.tmpl │ │ └── tmpl2.tmpl ├── time │ ├── example_test.go │ ├── export_android_test.go │ ├── export_test.go │ ├── export_windows_test.go │ ├── format.go │ ├── format_test.go │ ├── genzabbrs.go │ ├── internal_test.go │ ├── mono_test.go │ ├── sleep.go │ ├── sleep_test.go │ ├── sys_plan9.go │ ├── sys_unix.go │ ├── sys_windows.go │ ├── tick.go │ ├── tick_test.go │ ├── time.go │ ├── time_test.go │ ├── zoneinfo.go │ ├── zoneinfo_abbrs_windows.go │ ├── zoneinfo_android.go │ ├── zoneinfo_android_test.go │ ├── zoneinfo_ios.go │ ├── zoneinfo_plan9.go │ ├── zoneinfo_read.go │ ├── zoneinfo_test.go │ ├── zoneinfo_unix.go │ ├── zoneinfo_windows.go │ └── zoneinfo_windows_test.go ├── unicode │ ├── casetables.go │ ├── digit.go │ ├── digit_test.go │ ├── example_test.go │ ├── graphic.go │ ├── graphic_test.go │ ├── letter.go │ ├── letter_test.go │ ├── maketables.go │ ├── script_test.go │ ├── tables.go │ ├── utf16 │ │ ├── export_test.go │ │ ├── utf16.go │ │ └── utf16_test.go │ └── utf8 │ │ ├── example_test.go │ │ ├── utf8.go │ │ └── utf8_test.go ├── unsafe │ └── unsafe.go └── vendor │ └── golang_org │ └── x │ ├── crypto │ ├── chacha20poly1305 │ │ ├── chacha20poly1305.go │ │ ├── chacha20poly1305_amd64.go │ │ ├── chacha20poly1305_amd64.s │ │ ├── chacha20poly1305_generic.go │ │ ├── chacha20poly1305_noasm.go │ │ ├── chacha20poly1305_test.go │ │ ├── chacha20poly1305_vectors_test.go │ │ └── internal │ │ │ └── chacha20 │ │ │ ├── chacha_generic.go │ │ │ └── chacha_test.go │ ├── curve25519 │ │ ├── const_amd64.h │ │ ├── const_amd64.s │ │ ├── cswap_amd64.s │ │ ├── curve25519.go │ │ ├── curve25519_test.go │ │ ├── doc.go │ │ ├── freeze_amd64.s │ │ ├── ladderstep_amd64.s │ │ ├── mont25519_amd64.go │ │ ├── mul_amd64.s │ │ └── square_amd64.s │ ├── poly1305 │ │ ├── poly1305.go │ │ ├── poly1305_test.go │ │ ├── sum_amd64.go │ │ ├── sum_amd64.s │ │ ├── sum_arm.go │ │ ├── sum_arm.s │ │ └── sum_ref.go │ ├── ripemd160 │ │ ├── ripemd160.go │ │ └── ripemd160block.go │ └── sha3 │ │ ├── doc.go │ │ ├── hashes.go │ │ ├── keccakf.go │ │ ├── keccakf_amd64.go │ │ ├── keccakf_amd64.s │ │ ├── register.go │ │ ├── sha3.go │ │ ├── shake.go │ │ ├── xor.go │ │ ├── xor_generic.go │ │ └── xor_unaligned.go │ ├── net │ ├── http2 │ │ └── hpack │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── hpack.go │ │ │ ├── hpack_test.go │ │ │ ├── huffman.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ ├── idna │ │ ├── idna.go │ │ ├── punycode.go │ │ ├── punycode_test.go │ │ ├── tables.go │ │ ├── trie.go │ │ └── trieval.go │ ├── lex │ │ └── httplex │ │ │ ├── httplex.go │ │ │ └── httplex_test.go │ ├── lif │ │ ├── address.go │ │ ├── address_test.go │ │ ├── binary.go │ │ ├── defs_solaris.go │ │ ├── lif.go │ │ ├── link.go │ │ ├── link_test.go │ │ ├── sys.go │ │ ├── sys_solaris_amd64.s │ │ ├── syscall.go │ │ └── zsys_solaris_amd64.go │ ├── nettest │ │ ├── conntest.go │ │ ├── conntest_go16.go │ │ ├── conntest_go17.go │ │ └── conntest_test.go │ ├── proxy │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── per_host_test.go │ │ ├── proxy.go │ │ ├── proxy_test.go │ │ └── socks5.go │ └── route │ │ ├── address.go │ │ ├── address_darwin_test.go │ │ ├── address_test.go │ │ ├── binary.go │ │ ├── defs_darwin.go │ │ ├── defs_dragonfly.go │ │ ├── defs_freebsd.go │ │ ├── defs_netbsd.go │ │ ├── defs_openbsd.go │ │ ├── interface.go │ │ ├── interface_announce.go │ │ ├── interface_classic.go │ │ ├── interface_freebsd.go │ │ ├── interface_multicast.go │ │ ├── interface_openbsd.go │ │ ├── message.go │ │ ├── message_darwin_test.go │ │ ├── message_freebsd_test.go │ │ ├── message_test.go │ │ ├── route.go │ │ ├── route_classic.go │ │ ├── route_openbsd.go │ │ ├── route_test.go │ │ ├── sys.go │ │ ├── sys_darwin.go │ │ ├── sys_dragonfly.go │ │ ├── sys_freebsd.go │ │ ├── sys_netbsd.go │ │ ├── sys_openbsd.go │ │ ├── syscall.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_netbsd.go │ │ └── zsys_openbsd.go │ └── text │ ├── secure │ ├── bidirule │ │ └── bidirule.go │ └── doc.go │ ├── transform │ ├── examples_test.go │ └── transform.go │ └── unicode │ ├── bidi │ ├── bidi.go │ ├── bracket.go │ ├── core.go │ ├── example_test.go │ ├── prop.go │ ├── tables.go │ └── trieval.go │ ├── doc.go │ └── norm │ ├── composition.go │ ├── example_iter_test.go │ ├── example_test.go │ ├── forminfo.go │ ├── input.go │ ├── iter.go │ ├── normalize.go │ ├── readwriter.go │ ├── tables.go │ ├── transform.go │ ├── trie.go │ └── triegen.go └── test ├── 235.go ├── 64bit.go ├── README.md ├── alg.go ├── alias.go ├── alias1.go ├── alias2.go ├── alias3.dir ├── a.go ├── b.go └── c.go ├── alias3.go ├── append.go ├── append1.go ├── args.go ├── armimm.go ├── assign.go ├── assign1.go ├── atomicload.go ├── bench ├── garbage │ ├── Makefile │ ├── parser.go │ ├── peano.go │ ├── stats.go │ ├── tree.go │ └── tree2.go └── go1 │ ├── binarytree_test.go │ ├── fannkuch_test.go │ ├── fasta_test.go │ ├── fmt_test.go │ ├── gob_test.go │ ├── gzip_test.go │ ├── http_test.go │ ├── json_test.go │ ├── jsondata_test.go │ ├── mandel_test.go │ ├── parser_test.go │ ├── parserdata_test.go │ ├── regexp_test.go │ ├── revcomp_test.go │ ├── template_test.go │ └── time_test.go ├── bigalg.go ├── bigmap.go ├── blank.go ├── blank1.go ├── bom.go ├── bombad.go ├── bounds.go ├── chan ├── doubleselect.go ├── fifo.go ├── goroutines.go ├── nonblock.go ├── perm.go ├── powser1.go ├── powser2.go ├── select.go ├── select2.go ├── select3.go ├── select4.go ├── select5.go ├── select6.go ├── select7.go ├── sendstmt.go ├── sieve1.go ├── sieve2.go └── zerosize.go ├── chancap.go ├── chanlinear.go ├── char_lit.go ├── char_lit1.go ├── checkbce.go ├── clearfat.go ├── closedchan.go ├── closure.go ├── closure1.go ├── closure2.go ├── cmp.go ├── cmp6.go ├── cmplx.go ├── cmplxdivide.c ├── cmplxdivide.go ├── cmplxdivide1.go ├── complit.go ├── complit1.go ├── compos.go ├── const.go ├── const1.go ├── const2.go ├── const3.go ├── const4.go ├── const5.go ├── const6.go ├── convT2X.go ├── convert.go ├── convert1.go ├── convert2.go ├── convert3.go ├── convlit.go ├── convlit1.go ├── copy.go ├── copy1.go ├── crlf.go ├── ddd.go ├── ddd1.go ├── ddd2.dir ├── ddd2.go └── ddd3.go ├── ddd2.go ├── decl.go ├── declbad.go ├── defer.go ├── deferfin.go ├── deferprint.go ├── deferprint.out ├── devirt.go ├── divide.go ├── divmod.go ├── dwarf ├── dwarf.dir │ ├── main.go │ ├── z1.go │ ├── z10.go │ ├── z11.go │ ├── z12.go │ ├── z13.go │ ├── z14.go │ ├── z15.go │ ├── z16.go │ ├── z17.go │ ├── z18.go │ ├── z19.go │ ├── z2.go │ ├── z20.go │ ├── z3.go │ ├── z4.go │ ├── z5.go │ ├── z6.go │ ├── z7.go │ ├── z8.go │ └── z9.go ├── dwarf.go └── linedirectives.go ├── empty.go ├── env.go ├── eof.go ├── eof1.go ├── errchk ├── escape.go ├── escape2.go ├── escape2n.go ├── escape3.go ├── escape4.go ├── escape5.go ├── escape_array.go ├── escape_because.go ├── escape_calls.go ├── escape_closure.go ├── escape_field.go ├── escape_iface.go ├── escape_indir.go ├── escape_level.go ├── escape_map.go ├── escape_param.go ├── escape_slice.go ├── escape_struct_param1.go ├── escape_struct_param2.go ├── escape_struct_return.go ├── fibo.go ├── finprofiled.go ├── fixedbugs ├── bug000.go ├── bug002.go ├── bug003.go ├── bug004.go ├── bug005.go ├── bug006.go ├── bug007.go ├── bug008.go ├── bug009.go ├── bug010.go ├── bug011.go ├── bug012.go ├── bug013.go ├── bug014.go ├── bug015.go ├── bug016.go ├── bug017.go ├── bug020.go ├── bug021.go ├── bug022.go ├── bug023.go ├── bug024.go ├── bug026.go ├── bug027.go ├── bug028.go ├── bug030.go ├── bug031.go ├── bug035.go ├── bug037.go ├── bug039.go ├── bug040.go ├── bug045.go ├── bug046.go ├── bug047.go ├── bug048.go ├── bug049.go ├── bug050.go ├── bug051.go ├── bug052.go ├── bug053.go ├── bug054.go ├── bug055.go ├── bug056.go ├── bug057.go ├── bug058.go ├── bug059.go ├── bug060.go ├── bug061.go ├── bug062.go ├── bug063.go ├── bug064.go ├── bug065.go ├── bug066.go ├── bug067.go ├── bug068.go ├── bug069.go ├── bug070.go ├── bug071.go ├── bug072.go ├── bug073.go ├── bug074.go ├── bug075.go ├── bug076.go ├── bug077.go ├── bug078.go ├── bug080.go ├── bug081.go ├── bug082.go ├── bug083.dir │ ├── bug0.go │ └── bug1.go ├── bug083.go ├── bug084.go ├── bug085.go ├── bug086.go ├── bug087.go ├── bug088.dir │ ├── bug0.go │ └── bug1.go ├── bug088.go ├── bug089.go ├── bug090.go ├── bug091.go ├── bug092.go ├── bug093.go ├── bug094.go ├── bug096.go ├── bug097.go ├── bug098.go ├── bug099.go ├── bug101.go ├── bug102.go ├── bug103.go ├── bug104.go ├── bug106.dir │ ├── bug0.go │ └── bug1.go ├── bug106.go ├── bug107.go ├── bug108.go ├── bug109.go ├── bug110.go ├── bug111.go ├── bug112.go ├── bug113.go ├── bug114.go ├── bug115.go ├── bug116.go ├── bug117.go ├── bug118.go ├── bug119.go ├── bug120.go ├── bug121.go ├── bug122.go ├── bug123.go ├── bug126.go ├── bug127.go ├── bug128.go ├── bug129.go ├── bug130.go ├── bug131.go ├── bug132.go ├── bug133.dir │ ├── bug0.go │ ├── bug1.go │ └── bug2.go ├── bug133.go ├── bug13343.go ├── bug135.go ├── bug136.go ├── bug137.go ├── bug139.go ├── bug140.go ├── bug141.go ├── bug142.go ├── bug143.go ├── bug144.go ├── bug145.go ├── bug146.go ├── bug147.go ├── bug148.go ├── bug149.go ├── bug150.go ├── bug151.go ├── bug1515.go ├── bug152.go ├── bug154.go ├── bug155.go ├── bug156.go ├── bug157.go ├── bug158.go ├── bug159.go ├── bug160.dir │ ├── x.go │ └── y.go ├── bug160.go ├── bug161.go ├── bug163.go ├── bug164.go ├── bug165.go ├── bug167.go ├── bug168.go ├── bug169.go ├── bug170.go ├── bug171.go ├── bug172.go ├── bug173.go ├── bug174.go ├── bug175.go ├── bug176.go ├── bug177.go ├── bug178.go ├── bug179.go ├── bug180.go ├── bug181.go ├── bug182.go ├── bug183.go ├── bug184.go ├── bug185.go ├── bug186.go ├── bug187.go ├── bug188.go ├── bug189.go ├── bug190.go ├── bug191.dir │ ├── a.go │ ├── b.go │ └── main.go ├── bug191.go ├── bug192.go ├── bug193.go ├── bug194.go ├── bug19403.go ├── bug195.go ├── bug196.go ├── bug197.go ├── bug198.go ├── bug199.go ├── bug200.go ├── bug201.go ├── bug202.go ├── bug203.go ├── bug204.go ├── bug205.go ├── bug206.go ├── bug206.out ├── bug207.go ├── bug208.go ├── bug209.go ├── bug211.go ├── bug212.go ├── bug213.go ├── bug214.go ├── bug215.go ├── bug216.go ├── bug217.go ├── bug218.go ├── bug219.go ├── bug221.go ├── bug222.dir │ ├── chanbug.go │ └── chanbug2.go ├── bug222.go ├── bug223.go ├── bug224.go ├── bug225.go ├── bug227.go ├── bug228.go ├── bug229.go ├── bug230.go ├── bug231.go ├── bug232.go ├── bug233.go ├── bug234.go ├── bug235.go ├── bug236.go ├── bug237.go ├── bug238.go ├── bug239.go ├── bug240.go ├── bug241.go ├── bug242.go ├── bug243.go ├── bug244.go ├── bug245.go ├── bug246.go ├── bug247.go ├── bug248.dir │ ├── bug0.go │ ├── bug1.go │ ├── bug2.go │ └── bug3.go ├── bug248.go ├── bug249.go ├── bug250.go ├── bug251.go ├── bug252.go ├── bug253.go ├── bug254.go ├── bug255.go ├── bug256.go ├── bug257.go ├── bug258.go ├── bug259.go ├── bug260.go ├── bug261.go ├── bug262.go ├── bug263.go ├── bug264.go ├── bug265.go ├── bug266.go ├── bug267.go ├── bug269.go ├── bug271.go ├── bug272.go ├── bug273.go ├── bug274.go ├── bug275.go ├── bug276.go ├── bug277.go ├── bug278.go ├── bug279.go ├── bug280.go ├── bug281.go ├── bug282.dir │ ├── p1.go │ └── p2.go ├── bug282.go ├── bug283.go ├── bug284.go ├── bug285.go ├── bug286.go ├── bug287.go ├── bug288.go ├── bug289.go ├── bug290.go ├── bug291.go ├── bug292.go ├── bug293.go ├── bug294.go ├── bug295.go ├── bug296.go ├── bug297.go ├── bug298.go ├── bug299.go ├── bug300.go ├── bug301.go ├── bug302.dir │ ├── main.go │ └── p.go ├── bug302.go ├── bug303.go ├── bug304.go ├── bug305.go ├── bug306.dir │ ├── p1.go │ └── p2.go ├── bug306.go ├── bug307.go ├── bug308.go ├── bug309.go ├── bug311.go ├── bug312.go ├── bug313.dir │ ├── a.go │ └── b.go ├── bug313.go ├── bug314.go ├── bug315.go ├── bug316.go ├── bug317.go ├── bug318.go ├── bug319.go ├── bug320.go ├── bug321.go ├── bug322.dir │ ├── lib.go │ └── main.go ├── bug322.go ├── bug323.go ├── bug324.dir │ ├── p.go │ └── prog.go ├── bug324.go ├── bug325.go ├── bug326.go ├── bug327.go ├── bug328.go ├── bug328.out ├── bug329.go ├── bug330.go ├── bug331.go ├── bug332.go ├── bug333.go ├── bug334.go ├── bug335.dir │ ├── a.go │ └── b.go ├── bug335.go ├── bug336.go ├── bug337.go ├── bug338.go ├── bug339.go ├── bug340.go ├── bug341.go ├── bug342.go ├── bug343.go ├── bug344.go ├── bug345.dir │ ├── io.go │ └── main.go ├── bug345.go ├── bug346.go ├── bug347.go ├── bug348.go ├── bug349.go ├── bug350.go ├── bug351.go ├── bug352.go ├── bug353.go ├── bug354.go ├── bug355.go ├── bug356.go ├── bug357.go ├── bug358.go ├── bug361.go ├── bug362.go ├── bug363.go ├── bug364.go ├── bug365.go ├── bug366.go ├── bug367.dir │ ├── p.go │ └── prog.go ├── bug367.go ├── bug368.go ├── bug369.dir │ ├── main.go │ └── pkg.go ├── bug369.go ├── bug370.go ├── bug371.go ├── bug372.go ├── bug373.go ├── bug374.go ├── bug375.go ├── bug376.go ├── bug377.dir │ ├── one.go │ └── two.go ├── bug377.go ├── bug378.go ├── bug379.go ├── bug380.go ├── bug381.go ├── bug382.dir │ ├── pkg.go │ └── prog.go ├── bug382.go ├── bug383.go ├── bug384.go ├── bug385_32.go ├── bug385_64.go ├── bug386.go ├── bug387.go ├── bug388.go ├── bug389.go ├── bug390.go ├── bug391.go ├── bug392.dir │ ├── one.go │ ├── pkg2.go │ └── pkg3.go ├── bug392.go ├── bug393.go ├── bug394.go ├── bug396.dir │ ├── one.go │ └── two.go ├── bug396.go ├── bug397.go ├── bug398.go ├── bug399.go ├── bug401.go ├── bug402.go ├── bug403.go ├── bug404.dir │ ├── one.go │ └── two.go ├── bug404.go ├── bug405.go ├── bug406.go ├── bug407.dir │ ├── one.go │ └── two.go ├── bug407.go ├── bug409.go ├── bug409.out ├── bug410.go ├── bug411.go ├── bug412.go ├── bug413.go ├── bug414.dir │ ├── p1.go │ └── prog.go ├── bug414.go ├── bug415.dir │ ├── p.go │ └── prog.go ├── bug415.go ├── bug416.go ├── bug417.go ├── bug418.go ├── bug419.go ├── bug420.go ├── bug421.go ├── bug422.go ├── bug423.go ├── bug424.dir │ ├── lib.go │ └── main.go ├── bug424.go ├── bug425.go ├── bug426.go ├── bug427.go ├── bug428.go ├── bug429.go ├── bug429_run.go ├── bug430.go ├── bug431.go ├── bug432.go ├── bug433.go ├── bug434.go ├── bug435.go ├── bug436.go ├── bug437.dir │ ├── one.go │ ├── two.go │ └── x.go ├── bug437.go ├── bug438.go ├── bug439.go ├── bug440_32.go ├── bug440_64.go ├── bug441.go ├── bug442.go ├── bug443.go ├── bug444.go ├── bug445.go ├── bug446.go ├── bug447.go ├── bug448.dir │ ├── pkg1.go │ └── pkg2.go ├── bug448.go ├── bug449.go ├── bug450.go ├── bug451.go ├── bug452.go ├── bug453.go ├── bug454.go ├── bug455.go ├── bug456.go ├── bug457.go ├── bug458.go ├── bug459.go ├── bug460.dir │ ├── a.go │ └── b.go ├── bug460.go ├── bug461.go ├── bug462.go ├── bug463.go ├── bug464.go ├── bug465.dir │ ├── a.go │ └── b.go ├── bug465.go ├── bug466.dir │ ├── a.go │ └── b.go ├── bug466.go ├── bug467.dir │ ├── p1.go │ ├── p2.go │ └── p3.go ├── bug467.go ├── bug468.dir │ ├── p1.go │ └── p2.go ├── bug468.go ├── bug470.go ├── bug471.go ├── bug472.dir │ ├── p1.go │ ├── p2.go │ └── z.go ├── bug472.go ├── bug473.go ├── bug474.go ├── bug475.go ├── bug476.go ├── bug477.go ├── bug478.dir │ ├── a.go │ └── b.go ├── bug478.go ├── bug479.dir │ ├── a.go │ └── b.go ├── bug479.go ├── bug480.dir │ ├── a.go │ └── b.go ├── bug480.go ├── bug481.go ├── bug482.go ├── bug483.go ├── bug484.go ├── bug485.go ├── bug486.go ├── bug487.go ├── bug488.dir │ ├── a.go │ └── b.go ├── bug488.go ├── bug489.go ├── bug490.go ├── bug491.go ├── bug492.dir │ ├── a.go │ └── b.go ├── bug492.go ├── bug493.go ├── bug494.go ├── bug495.go ├── bug496.go ├── bug497.go ├── bug498.go ├── bug499.go ├── bug500.go ├── bug501.go ├── bug502.go ├── gcc61204.go ├── gcc61244.go ├── gcc61246.go ├── gcc61248.go ├── gcc61253.go ├── gcc61254.go ├── gcc61255.go ├── gcc61258.go ├── gcc61264.go ├── gcc61265.go ├── gcc61273.go ├── gcc65755.go ├── gcc67968.dir │ ├── a.go │ └── b.go ├── gcc67968.go ├── gcc78763.go ├── gcc80226.go ├── issue10047.go ├── issue10066.dir │ ├── a.go │ └── b.go ├── issue10066.go ├── issue10135.go ├── issue10219.dir │ ├── a.go │ ├── b.go │ └── c.go ├── issue10219.go ├── issue10253.go ├── issue10284.go ├── issue10320.go ├── issue10332.go ├── issue10353.go ├── issue10407.go ├── issue10441.go ├── issue10486.go ├── issue10607.go ├── issue10607a.go ├── issue10654.go ├── issue10700.dir │ ├── other.go │ └── test.go ├── issue10700.go ├── issue10925.go ├── issue10958.go ├── issue10975.go ├── issue10977.go ├── issue11053.dir │ ├── p.go │ └── p_test.go ├── issue11053.go ├── issue11053.out ├── issue11256.go ├── issue11286.go ├── issue11326.go ├── issue11326b.go ├── issue11354.go ├── issue11359.go ├── issue11361.go ├── issue11362.go ├── issue11369.go ├── issue11370.go ├── issue11371.go ├── issue11590.go ├── issue11610.go ├── issue11614.go ├── issue11656.go ├── issue11674.go ├── issue11699.go ├── issue11737.go ├── issue11750.go ├── issue11771.go ├── issue11790.go ├── issue11945.go ├── issue11987.go ├── issue12006.go ├── issue12108.go ├── issue12133.go ├── issue12226.go ├── issue12347.go ├── issue12411.go ├── issue12413.go ├── issue12525.go ├── issue12536.go ├── issue12577.go ├── issue12588.go ├── issue12677.dir │ ├── p.go │ └── q.go ├── issue12677.go ├── issue12686.go ├── issue12944.go ├── issue1304.go ├── issue13160.go ├── issue13162.go ├── issue13169.go ├── issue13171.go ├── issue13248.go ├── issue13261.go ├── issue13262.go ├── issue13263.go ├── issue13266.go ├── issue13268.go ├── issue13273.go ├── issue13274.go ├── issue13319.go ├── issue13337.go ├── issue13365.go ├── issue13415.go ├── issue13471.go ├── issue13480.go ├── issue13485.go ├── issue13539.go ├── issue13559.go ├── issue13587.go ├── issue13684.go ├── issue13777.dir │ ├── burnin.go │ └── main.go ├── issue13777.go ├── issue13779.go ├── issue13799.go ├── issue13821.go ├── issue13821b.go ├── issue14006.go ├── issue14010.go ├── issue14136.go ├── issue14164.dir │ ├── a.go │ └── main.go ├── issue14164.go ├── issue14331.dir │ ├── a.go │ └── b.go ├── issue14331.go ├── issue14405.go ├── issue14520.go ├── issue14553.go ├── issue14591.go ├── issue14636.go ├── issue14646.go ├── issue14651.go ├── issue14652.go ├── issue14725.go ├── issue14729.go ├── issue14988.go ├── issue14999.go ├── issue15002.go ├── issue15013.go ├── issue15039.go ├── issue15042.go ├── issue15055.go ├── issue15071.dir │ ├── exp │ │ └── exp.go │ └── main.go ├── issue15084.go ├── issue15091.go ├── issue15141.go ├── issue15175.go ├── issue15252.go ├── issue15277.go ├── issue15281.go ├── issue15303.go ├── issue15311.go ├── issue15329.go ├── issue15439.go ├── issue15470.dir │ ├── a.go │ └── b.go ├── issue15470.go ├── issue15514.dir │ ├── a.go │ ├── b.go │ └── c.go ├── issue15514.go ├── issue15528.go ├── issue15548.dir │ ├── a.go │ ├── b.go │ └── c.go ├── issue15548.go ├── issue15550.go ├── issue15572.dir │ ├── a.go │ └── b.go ├── issue15572.go ├── issue15585.go ├── issue15602.go ├── issue15604.go ├── issue15609.dir │ ├── call.go │ ├── call_386.s │ ├── call_amd64.s │ ├── call_decl.go │ └── main.go ├── issue15611.go ├── issue15646.dir │ ├── a.go │ └── b.go ├── issue15646.go ├── issue15722.go ├── issue15733.go ├── issue15747.go ├── issue15747b.go ├── issue15838.dir │ ├── a.go │ └── b.go ├── issue15838.go ├── issue15895.go ├── issue15898.go ├── issue15902.go ├── issue15920.dir │ ├── a.go │ └── b.go ├── issue15920.go ├── issue15926.go ├── issue15961.go ├── issue15975.go ├── issue15988.go ├── issue16008.go ├── issue16016.go ├── issue16037_run.go ├── issue16095.go ├── issue16130.go ├── issue16133.dir │ ├── a1.go │ ├── a2.go │ ├── b.go │ └── c.go ├── issue16133.go ├── issue16193.go ├── issue16249.go ├── issue16306.go ├── issue16317.dir │ ├── a.go │ └── b.go ├── issue16317.go ├── issue16331.go ├── issue16369.go ├── issue16428.go ├── issue16439.go ├── issue16515.go ├── issue16616.dir │ ├── a.go │ ├── b.go │ └── issue16616.go ├── issue16616.go ├── issue16733.go ├── issue16741.go ├── issue16760.go ├── issue16804.go ├── issue16870.go ├── issue16948.go ├── issue16949.go ├── issue16985.go ├── issue17005.go ├── issue17038.go ├── issue17039.go ├── issue17111.go ├── issue17194.go ├── issue17270.go ├── issue17318.go ├── issue17328.go ├── issue17381.go ├── issue17449.go ├── issue17551.go ├── issue17588.go ├── issue17596.go ├── issue17631.go ├── issue17640.go ├── issue17645.go ├── issue17710.go ├── issue17752.go ├── issue17918.go ├── issue18089.go ├── issue18092.go ├── issue18149.go ├── issue18231.go ├── issue18331.go ├── issue18392.go ├── issue18393.go ├── issue18410.go ├── issue18419.dir │ ├── other.go │ └── test.go ├── issue18419.go ├── issue18459.go ├── issue18595.go ├── issue18636.go ├── issue18640.go ├── issue18655.go ├── issue18661.go ├── issue18725.go ├── issue18747.go ├── issue18808.go ├── issue18882.go ├── issue18895.dir │ ├── p.go │ └── q.go ├── issue18895.go ├── issue18902.go ├── issue18902b.go ├── issue18906.go ├── issue18915.go ├── issue18994.go ├── issue19012.go ├── issue19028.dir │ ├── a.go │ └── main.go ├── issue19028.go ├── issue19040.go ├── issue19056.go ├── issue19078.go ├── issue19084.go ├── issue19137.go ├── issue19168.go ├── issue19182.go ├── issue19201.go ├── issue19217.go ├── issue19246.go ├── issue19275.go ├── issue19323.go ├── issue19359.go ├── issue19467.dir │ ├── mysync.go │ └── z.go ├── issue19467.go ├── issue19482.go ├── issue19507.dir │ ├── div_arm.s │ └── main.go ├── issue19507.go ├── issue19515.go ├── issue19548.dir │ ├── a.go │ └── b.go ├── issue19548.go ├── issue19555.go ├── issue19610.go ├── issue19632.go ├── issue19658.go ├── issue19667.go ├── issue19671.go ├── issue19678.go ├── issue19679.go ├── issue19696.go ├── issue19699.dir │ ├── a.go │ └── b.go ├── issue19699.go ├── issue19699b.go ├── issue19705.go ├── issue19710.go ├── issue19743.go ├── issue19764.dir │ ├── a.go │ └── b.go ├── issue19764.go ├── issue19783.go ├── issue19799.go ├── issue19880.go ├── issue19911.go ├── issue19947.go ├── issue19977.go ├── issue20029.go ├── issue20097.go ├── issue20145.go ├── issue20162.go ├── issue20174.go ├── issue20185.go ├── issue20227.go ├── issue20232.go ├── issue20233.go ├── issue20245.go ├── issue20250.go ├── issue20298.go ├── issue20333.go ├── issue20335.go ├── issue20415.go ├── issue20529.go ├── issue20530.go ├── issue20602.go ├── issue20682.dir │ ├── p.go │ ├── q.go │ └── r.go ├── issue20682.go ├── issue20749.go ├── issue20789.go ├── issue20811.go ├── issue20813.go ├── issue21048.go ├── issue21120.dir │ ├── a.go │ ├── b.go │ └── main.go ├── issue21120.go ├── issue21655.go ├── issue21963.go ├── issue22083.go ├── issue22429.go ├── issue22458.go ├── issue22683.go ├── issue22683.out ├── issue22781.go ├── issue22877.dir │ ├── p.go │ └── p.s ├── issue22877.go ├── issue23719.go ├── issue23812.go ├── issue24817.go ├── issue2615.go ├── issue3552.dir │ ├── one.go │ └── two.go ├── issue3552.go ├── issue3705.go ├── issue3783.go ├── issue3925.go ├── issue4066.go ├── issue4085a.go ├── issue4085b.go ├── issue4097.go ├── issue4099.go ├── issue4162.go ├── issue4167.go ├── issue4215.go ├── issue4232.go ├── issue4251.go ├── issue4252.dir │ ├── a.go │ └── main.go ├── issue4252.go ├── issue4264.go ├── issue4283.go ├── issue4313.go ├── issue4316.go ├── issue4323.go ├── issue4326.dir │ ├── p1.go │ ├── p2.go │ ├── q1.go │ ├── q2.go │ └── z.go ├── issue4326.go ├── issue4348.go ├── issue4353.go ├── issue4359.go ├── issue4365.go ├── issue4370.dir │ ├── p1.go │ ├── p2.go │ └── p3.go ├── issue4370.go ├── issue4388.go ├── issue4396a.go ├── issue4396b.go ├── issue4399.go ├── issue4405.go ├── issue4429.go ├── issue4448.go ├── issue4452.go ├── issue4458.go ├── issue4463.go ├── issue4468.go ├── issue4470.go ├── issue4495.go ├── issue4510.dir │ ├── f1.go │ └── f2.go ├── issue4510.go ├── issue4517a.go ├── issue4517b.go ├── issue4517c.go ├── issue4517d.go ├── issue4518.go ├── issue4529.go ├── issue4545.go ├── issue4562.go ├── issue4585.go ├── issue4590.dir │ ├── pkg1.go │ ├── pkg2.go │ └── prog.go ├── issue4590.go ├── issue4610.go ├── issue4614.go ├── issue4618.go ├── issue4620.go ├── issue4654.go ├── issue4663.go ├── issue4667.go ├── issue4734.go ├── issue4748.go ├── issue4752.go ├── issue4776.go ├── issue4785.go ├── issue4813.go ├── issue4847.go ├── issue4879.dir │ ├── a.go │ └── b.go ├── issue4879.go ├── issue4909a.go ├── issue4909b.go ├── issue4932.dir │ ├── foo.go │ ├── state.go │ └── state2.go ├── issue4932.go ├── issue4964.dir │ ├── a.go │ └── b.go ├── issue4964.go ├── issue5002.go ├── issue5056.go ├── issue5089.go ├── issue5105.dir │ ├── a.go │ └── b.go ├── issue5105.go ├── issue5125.dir │ ├── bug.go │ └── main.go ├── issue5125.go ├── issue5162.go ├── issue5172.go ├── issue5231.go ├── issue5244.go ├── issue5259.dir │ ├── bug.go │ └── main.go ├── issue5259.go ├── issue5260.dir │ ├── a.go │ └── b.go ├── issue5260.go ├── issue5291.dir │ ├── pkg1.go │ └── prog.go ├── issue5291.go ├── issue5358.go ├── issue5373.go ├── issue5470.dir │ ├── a.go │ └── b.go ├── issue5470.go ├── issue5493.go ├── issue5515.go ├── issue5581.go ├── issue5607.go ├── issue5609.go ├── issue5614.dir │ ├── rethinkgo.go │ ├── x.go │ └── y.go ├── issue5614.go ├── issue5698.go ├── issue5704.go ├── issue5753.go ├── issue5755.dir │ ├── a.go │ └── main.go ├── issue5755.go ├── issue5793.go ├── issue5809.go ├── issue5820.go ├── issue5841.go ├── issue5856.go ├── issue5910.dir │ ├── a.go │ └── main.go ├── issue5910.go ├── issue5957.dir │ ├── a.go │ ├── b.go │ └── c.go ├── issue5957.go ├── issue5963.go ├── issue6004.go ├── issue6036.go ├── issue6055.go ├── issue6131.go ├── issue6140.go ├── issue6247.go ├── issue6269.go ├── issue6295.dir │ ├── p0.go │ ├── p1.go │ └── p2.go ├── issue6295.go ├── issue6298.go ├── issue6399.go ├── issue6402.go ├── issue6403.go ├── issue6405.go ├── issue6406.go ├── issue6500.go ├── issue6513.dir │ ├── a.go │ ├── b.go │ └── main.go ├── issue6513.go ├── issue6572.go ├── issue6671.go ├── issue6703a.go ├── issue6703b.go ├── issue6703c.go ├── issue6703d.go ├── issue6703e.go ├── issue6703f.go ├── issue6703g.go ├── issue6703h.go ├── issue6703i.go ├── issue6703j.go ├── issue6703k.go ├── issue6703l.go ├── issue6703m.go ├── issue6703n.go ├── issue6703o.go ├── issue6703p.go ├── issue6703q.go ├── issue6703r.go ├── issue6703s.go ├── issue6703t.go ├── issue6703u.go ├── issue6703v.go ├── issue6703w.go ├── issue6703x.go ├── issue6703y.go ├── issue6703z.go ├── issue6750.go ├── issue6772.go ├── issue6789.dir │ ├── a.go │ └── b.go ├── issue6789.go ├── issue6847.go ├── issue6866.go ├── issue6889.go ├── issue6899.go ├── issue6899.out ├── issue6902.go ├── issue6964.go ├── issue7023.dir │ ├── a.go │ └── b.go ├── issue7023.go ├── issue7044.go ├── issue7050.go ├── issue7083.go ├── issue7129.go ├── issue7150.go ├── issue7153.go ├── issue7214.go ├── issue7223.go ├── issue7272.go ├── issue7310.go ├── issue7316.go ├── issue7346.go ├── issue7366.go ├── issue7405.go ├── issue7419.go ├── issue7525.go ├── issue7525b.go ├── issue7525c.go ├── issue7538a.go ├── issue7538b.go ├── issue7547.go ├── issue7550.go ├── issue7590.go ├── issue7648.dir │ ├── a.go │ └── b.go ├── issue7648.go ├── issue7675.go ├── issue7690.go ├── issue7740.go ├── issue7742.go ├── issue7746.go ├── issue7760.go ├── issue7794.go ├── issue7863.go ├── issue7867.go ├── issue7884.go ├── issue7944.go ├── issue7995.go ├── issue7995b.dir │ ├── x1.go │ └── x2.go ├── issue7995b.go ├── issue7996.go ├── issue7997.go ├── issue7998.go ├── issue8004.go ├── issue8011.go ├── issue8017.go ├── issue8028.go ├── issue8036.go ├── issue8039.go ├── issue8042.go ├── issue8047.go ├── issue8047b.go ├── issue8048.go ├── issue8060.dir │ ├── a.go │ └── b.go ├── issue8060.go ├── issue8073.go ├── issue8074.go ├── issue8076.go ├── issue8079.go ├── issue8132.go ├── issue8139.go ├── issue8154.go ├── issue8155.go ├── issue8158.go ├── issue8183.go ├── issue8280.dir │ ├── a.go │ └── b.go ├── issue8280.go ├── issue8311.go ├── issue8325.go ├── issue8336.go ├── issue8347.go ├── issue8385.go ├── issue8438.go ├── issue8440.go ├── issue8475.go ├── issue8501.go ├── issue8507.go ├── issue8612.go ├── issue8613.go ├── issue8620.go ├── issue8745.go ├── issue8761.go ├── issue8836.go ├── issue887.go ├── issue8947.go ├── issue8961.go ├── issue9006.go ├── issue9017.go ├── issue9036.go ├── issue9076.go ├── issue9083.go ├── issue9110.go ├── issue9321.go ├── issue9355.dir │ └── a.go ├── issue9355.go ├── issue9370.go ├── issue9432.go ├── issue9521.go ├── issue9537.dir │ ├── a.go │ └── b.go ├── issue9537.go ├── issue9604.go ├── issue9604b.go ├── issue9608.dir │ └── issue9608.go ├── issue9608.go ├── issue9634.go ├── issue9691.go ├── issue9731.go ├── issue9738.go ├── issue9862.go └── issue9862_run.go ├── float_lit.go ├── float_lit2.go ├── float_lit3.go ├── floatcmp.go ├── for.go ├── func.go ├── func1.go ├── func2.go ├── func3.go ├── func4.go ├── func5.go ├── func6.go ├── func7.go ├── func8.go ├── funcdup.go ├── funcdup2.go ├── gc.go ├── gc1.go ├── gc2.go ├── gcstring.go ├── goprint.go ├── goprint.out ├── goto.go ├── heapsampling.go ├── helloworld.go ├── helloworld.out ├── if.go ├── import.go ├── import1.go ├── import2.dir ├── import2.go └── import3.go ├── import2.go ├── import4.dir ├── empty.go └── import4.go ├── import4.go ├── import5.go ├── import6.go ├── index.go ├── index0.go ├── index1.go ├── index2.go ├── indirect.go ├── indirect1.go ├── init.go ├── init1.go ├── initcomma.go ├── initialize.go ├── initializerr.go ├── initloop.go ├── inline.go ├── inline_caller.go ├── inline_callers.go ├── inline_literal.go ├── inline_variadic.go ├── int_lit.go ├── intcvt.go ├── interface ├── assertinline.go ├── bigdata.go ├── convert.go ├── convert1.go ├── convert2.go ├── embed.go ├── embed1.dir │ ├── embed0.go │ └── embed1.go ├── embed1.go ├── embed2.go ├── explicit.go ├── fail.go ├── fake.go ├── noeq.go ├── pointer.go ├── private.dir │ ├── private1.go │ └── prog.go ├── private.go ├── receiver.go ├── receiver1.go ├── recursive.go ├── recursive1.dir │ ├── recursive1.go │ └── recursive2.go ├── recursive1.go ├── returntype.go └── struct.go ├── intrinsic.dir └── main.go ├── intrinsic.go ├── intrinsic_atomic.go ├── iota.go ├── ken ├── array.go ├── chan.go ├── chan1.go ├── complit.go ├── convert.go ├── cplx0.go ├── cplx0.out ├── cplx1.go ├── cplx2.go ├── cplx3.go ├── cplx4.go ├── cplx5.go ├── divconst.go ├── divmod.go ├── embed.go ├── for.go ├── interbasic.go ├── interfun.go ├── intervar.go ├── label.go ├── litfun.go ├── mfunc.go ├── modconst.go ├── ptrfun.go ├── ptrvar.go ├── range.go ├── rob1.go ├── rob2.go ├── robfor.go ├── robfunc.go ├── shift.go ├── simparray.go ├── simpbool.go ├── simpconv.go ├── simpfun.go ├── simpswitch.go ├── simpvar.go ├── slicearray.go ├── sliceslice.go ├── string.go ├── string.out └── strvar.go ├── label.go ├── label1.go ├── linkmain.go ├── linkmain_run.go ├── linkname.dir ├── linkname1.go ├── linkname2.go └── linkname3.go ├── linkname.go ├── linkobj.go ├── linkx.go ├── linkx_run.go ├── literal.go ├── live.go ├── live1.go ├── live2.go ├── live_syscall.go ├── locklinear.go ├── loopbce.go ├── makenew.go ├── mallocfin.go ├── map.go ├── map1.go ├── maplinear.go ├── method.go ├── method1.go ├── method2.go ├── method3.go ├── method4.dir ├── method4a.go └── prog.go ├── method4.go ├── method5.go ├── named.go ├── named1.go ├── nil.go ├── nilcheck.go ├── nilptr.go ├── nilptr2.go ├── nilptr3.go ├── nilptr4.go ├── nosplit.go ├── notinheap.go ├── notinheap2.go ├── nowritebarrier.go ├── nul1.go ├── opt_branchlikely.go ├── parentype.go ├── peano.go ├── phiopt.go ├── print.go ├── print.out ├── printbig.go ├── printbig.out ├── prove.go ├── range.go ├── recover.go ├── recover1.go ├── recover2.go ├── recover3.go ├── recover4.go ├── recover5.go ├── reflectmethod1.go ├── reflectmethod2.go ├── reflectmethod3.go ├── reflectmethod4.go ├── rename.go ├── rename1.go ├── reorder.go ├── reorder2.go ├── return.go ├── rotate.go ├── rotate0.go ├── rotate1.go ├── rotate2.go ├── rotate3.go ├── run.go ├── rune.go ├── runtime.go ├── safe ├── main.go ├── nousesafe.go ├── pkg.go └── usesafe.go ├── shift1.go ├── shift2.go ├── sieve.go ├── sigchld.go ├── sigchld.out ├── simassign.go ├── sinit.go ├── sinit_run.go ├── sizeof.go ├── slice3.go ├── slice3err.go ├── slicecap.go ├── sliceopt.go ├── solitaire.go ├── stack.go ├── strength.go ├── stress ├── maps.go ├── parsego.go └── runstress.go ├── string_lit.go ├── stringrange.go ├── struct0.go ├── switch.go ├── switch2.go ├── switch3.go ├── switch4.go ├── switch5.go ├── switch6.go ├── switch7.go ├── syntax ├── chan.go ├── chan1.go ├── composite.go ├── ddd.go ├── else.go ├── if.go ├── import.go ├── initvar.go ├── interface.go ├── semi1.go ├── semi2.go ├── semi3.go ├── semi4.go ├── semi5.go ├── semi6.go ├── semi7.go ├── topexpr.go ├── typesw.go ├── vareq.go └── vareq1.go ├── tinyfin.go ├── torture.go ├── turing.go ├── typecheck.go ├── typecheckloop.go ├── typeswitch.go ├── typeswitch1.go ├── typeswitch2.go ├── typeswitch3.go ├── uintptrescapes.dir ├── a.go └── main.go ├── uintptrescapes.go ├── uintptrescapes2.go ├── undef.go ├── utf.go ├── varerr.go ├── varinit.go ├── writebarrier.go └── zerodivide.go /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/LICENSE -------------------------------------------------------------------------------- /PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/PATENTS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | go1.9.7 -------------------------------------------------------------------------------- /api/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/api/README -------------------------------------------------------------------------------- /api/except.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/api/except.txt -------------------------------------------------------------------------------- /api/go1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/api/go1.1.txt -------------------------------------------------------------------------------- /api/go1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/api/go1.2.txt -------------------------------------------------------------------------------- /api/go1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/api/go1.3.txt -------------------------------------------------------------------------------- /api/go1.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/api/go1.4.txt -------------------------------------------------------------------------------- /api/go1.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/api/go1.5.txt -------------------------------------------------------------------------------- /api/go1.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/api/go1.6.txt -------------------------------------------------------------------------------- /api/go1.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/api/go1.7.txt -------------------------------------------------------------------------------- /api/go1.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/api/go1.8.txt -------------------------------------------------------------------------------- /api/go1.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/api/go1.9.txt -------------------------------------------------------------------------------- /api/go1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/api/go1.txt -------------------------------------------------------------------------------- /api/next.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/articles/wiki/test_Test.txt.good: -------------------------------------------------------------------------------- 1 | some content -------------------------------------------------------------------------------- /doc/asm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/asm.html -------------------------------------------------------------------------------- /doc/cmd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/cmd.html -------------------------------------------------------------------------------- /doc/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/code.html -------------------------------------------------------------------------------- /doc/codewalk/pig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/codewalk/pig.go -------------------------------------------------------------------------------- /doc/codewalk/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/codewalk/run -------------------------------------------------------------------------------- /doc/conduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/conduct.html -------------------------------------------------------------------------------- /doc/contrib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/contrib.html -------------------------------------------------------------------------------- /doc/contribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/contribute.html -------------------------------------------------------------------------------- /doc/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/docs.html -------------------------------------------------------------------------------- /doc/editors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/editors.html -------------------------------------------------------------------------------- /doc/go-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go-logo-blue.png -------------------------------------------------------------------------------- /doc/go1.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go1.1.html -------------------------------------------------------------------------------- /doc/go1.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go1.2.html -------------------------------------------------------------------------------- /doc/go1.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go1.3.html -------------------------------------------------------------------------------- /doc/go1.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go1.4.html -------------------------------------------------------------------------------- /doc/go1.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go1.5.html -------------------------------------------------------------------------------- /doc/go1.6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go1.6.html -------------------------------------------------------------------------------- /doc/go1.7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go1.7.html -------------------------------------------------------------------------------- /doc/go1.8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go1.8.html -------------------------------------------------------------------------------- /doc/go1.9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go1.9.html -------------------------------------------------------------------------------- /doc/go1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go1.html -------------------------------------------------------------------------------- /doc/go1compat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go1compat.html -------------------------------------------------------------------------------- /doc/go_faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go_faq.html -------------------------------------------------------------------------------- /doc/go_mem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go_mem.html -------------------------------------------------------------------------------- /doc/go_spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/go_spec.html -------------------------------------------------------------------------------- /doc/gopher/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/gopher/README -------------------------------------------------------------------------------- /doc/gopher/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/gopher/doc.png -------------------------------------------------------------------------------- /doc/gopher/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/gopher/help.png -------------------------------------------------------------------------------- /doc/gopher/pkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/gopher/pkg.png -------------------------------------------------------------------------------- /doc/gopher/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/gopher/ref.png -------------------------------------------------------------------------------- /doc/gopher/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/gopher/run.png -------------------------------------------------------------------------------- /doc/gopher/talks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/gopher/talks.png -------------------------------------------------------------------------------- /doc/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/help.html -------------------------------------------------------------------------------- /doc/ie.css: -------------------------------------------------------------------------------- 1 | #nav-main li { display: inline; } 2 | -------------------------------------------------------------------------------- /doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/install.html -------------------------------------------------------------------------------- /doc/play/fib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/play/fib.go -------------------------------------------------------------------------------- /doc/play/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/play/hello.go -------------------------------------------------------------------------------- /doc/play/life.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/play/life.go -------------------------------------------------------------------------------- /doc/play/peano.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/play/peano.go -------------------------------------------------------------------------------- /doc/play/pi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/play/pi.go -------------------------------------------------------------------------------- /doc/play/sieve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/play/sieve.go -------------------------------------------------------------------------------- /doc/play/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/play/tree.go -------------------------------------------------------------------------------- /doc/progs/cgo1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/cgo1.go -------------------------------------------------------------------------------- /doc/progs/cgo2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/cgo2.go -------------------------------------------------------------------------------- /doc/progs/cgo3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/cgo3.go -------------------------------------------------------------------------------- /doc/progs/cgo4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/cgo4.go -------------------------------------------------------------------------------- /doc/progs/defer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/defer.go -------------------------------------------------------------------------------- /doc/progs/defer2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/defer2.go -------------------------------------------------------------------------------- /doc/progs/eff_qr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/eff_qr.go -------------------------------------------------------------------------------- /doc/progs/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/error.go -------------------------------------------------------------------------------- /doc/progs/error2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/error2.go -------------------------------------------------------------------------------- /doc/progs/error3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/error3.go -------------------------------------------------------------------------------- /doc/progs/error4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/error4.go -------------------------------------------------------------------------------- /doc/progs/go1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/go1.go -------------------------------------------------------------------------------- /doc/progs/gobs1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/gobs1.go -------------------------------------------------------------------------------- /doc/progs/gobs2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/gobs2.go -------------------------------------------------------------------------------- /doc/progs/json1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/json1.go -------------------------------------------------------------------------------- /doc/progs/json2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/json2.go -------------------------------------------------------------------------------- /doc/progs/json3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/json3.go -------------------------------------------------------------------------------- /doc/progs/json4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/json4.go -------------------------------------------------------------------------------- /doc/progs/json5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/json5.go -------------------------------------------------------------------------------- /doc/progs/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/run.go -------------------------------------------------------------------------------- /doc/progs/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/progs/slices.go -------------------------------------------------------------------------------- /doc/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/root.html -------------------------------------------------------------------------------- /doc/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/security.html -------------------------------------------------------------------------------- /doc/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/share.png -------------------------------------------------------------------------------- /doc/tos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/doc/tos.html -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/favicon.ico -------------------------------------------------------------------------------- /lib/time/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/lib/time/README -------------------------------------------------------------------------------- /lib/time/update.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/lib/time/update.bash -------------------------------------------------------------------------------- /misc/android/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/android/README -------------------------------------------------------------------------------- /misc/arm/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/arm/a -------------------------------------------------------------------------------- /misc/benchcmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/benchcmp -------------------------------------------------------------------------------- /misc/cgo/gmp/fib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/cgo/gmp/fib.go -------------------------------------------------------------------------------- /misc/cgo/gmp/gmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/cgo/gmp/gmp.go -------------------------------------------------------------------------------- /misc/cgo/gmp/pi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/cgo/gmp/pi.go -------------------------------------------------------------------------------- /misc/cgo/life/life.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/cgo/life/life.h -------------------------------------------------------------------------------- /misc/cgo/stdio/hello.out: -------------------------------------------------------------------------------- 1 | hello, world 2 | -------------------------------------------------------------------------------- /misc/cgo/test/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/cgo/test/api.go -------------------------------------------------------------------------------- /misc/cgo/test/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/cgo/test/env.go -------------------------------------------------------------------------------- /misc/editors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/editors -------------------------------------------------------------------------------- /misc/git/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/git/pre-commit -------------------------------------------------------------------------------- /misc/ios/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/ios/README -------------------------------------------------------------------------------- /misc/ios/detect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/ios/detect.go -------------------------------------------------------------------------------- /misc/nacl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/nacl/README -------------------------------------------------------------------------------- /misc/nacl/mkzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/nacl/mkzip.go -------------------------------------------------------------------------------- /misc/nacl/testdata/bin/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/nacl/testdata/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/nacl/testdata/hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost 2 | -------------------------------------------------------------------------------- /misc/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/misc/trace/README.md -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /src/Make.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/Make.dist -------------------------------------------------------------------------------- /src/all.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/all.bash -------------------------------------------------------------------------------- /src/all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/all.bat -------------------------------------------------------------------------------- /src/all.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/all.rc -------------------------------------------------------------------------------- /src/androidtest.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/androidtest.bash -------------------------------------------------------------------------------- /src/archive/tar/testdata/small.txt: -------------------------------------------------------------------------------- 1 | Kilts -------------------------------------------------------------------------------- /src/archive/tar/testdata/small2.txt: -------------------------------------------------------------------------------- 1 | Google.com 2 | -------------------------------------------------------------------------------- /src/bootstrap.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/bootstrap.bash -------------------------------------------------------------------------------- /src/bufio/bufio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/bufio/bufio.go -------------------------------------------------------------------------------- /src/bufio/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/bufio/scan.go -------------------------------------------------------------------------------- /src/buildall.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/buildall.bash -------------------------------------------------------------------------------- /src/bytes/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/bytes/buffer.go -------------------------------------------------------------------------------- /src/bytes/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/bytes/bytes.go -------------------------------------------------------------------------------- /src/bytes/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/bytes/reader.go -------------------------------------------------------------------------------- /src/clean.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/clean.bash -------------------------------------------------------------------------------- /src/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/clean.bat -------------------------------------------------------------------------------- /src/clean.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/clean.rc -------------------------------------------------------------------------------- /src/cmd/api/goapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/api/goapi.go -------------------------------------------------------------------------------- /src/cmd/api/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/api/run.go -------------------------------------------------------------------------------- /src/cmd/asm/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/asm/doc.go -------------------------------------------------------------------------------- /src/cmd/asm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/asm/main.go -------------------------------------------------------------------------------- /src/cmd/cgo/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/cgo/ast.go -------------------------------------------------------------------------------- /src/cmd/cgo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/cgo/doc.go -------------------------------------------------------------------------------- /src/cmd/cgo/gcc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/cgo/gcc.go -------------------------------------------------------------------------------- /src/cmd/cgo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/cgo/main.go -------------------------------------------------------------------------------- /src/cmd/cgo/out.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/cgo/out.go -------------------------------------------------------------------------------- /src/cmd/cgo/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/cgo/util.go -------------------------------------------------------------------------------- /src/cmd/compile/internal/test/test.go: -------------------------------------------------------------------------------- 1 | package test 2 | -------------------------------------------------------------------------------- /src/cmd/cover/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/cover/doc.go -------------------------------------------------------------------------------- /src/cmd/dist/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/dist/README -------------------------------------------------------------------------------- /src/cmd/dist/deps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/dist/deps.go -------------------------------------------------------------------------------- /src/cmd/dist/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/dist/main.go -------------------------------------------------------------------------------- /src/cmd/dist/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/dist/test.go -------------------------------------------------------------------------------- /src/cmd/dist/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/dist/util.go -------------------------------------------------------------------------------- /src/cmd/doc/dirs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/doc/dirs.go -------------------------------------------------------------------------------- /src/cmd/doc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/doc/main.go -------------------------------------------------------------------------------- /src/cmd/doc/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/doc/pkg.go -------------------------------------------------------------------------------- /src/cmd/fix/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/fix/doc.go -------------------------------------------------------------------------------- /src/cmd/fix/fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/fix/fix.go -------------------------------------------------------------------------------- /src/cmd/fix/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/fix/main.go -------------------------------------------------------------------------------- /src/cmd/go/go11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/go/go11.go -------------------------------------------------------------------------------- /src/cmd/go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/go/main.go -------------------------------------------------------------------------------- /src/cmd/go/testdata/failssh/ssh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 1 3 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/importcom/bad.go: -------------------------------------------------------------------------------- 1 | package p 2 | 3 | import "bad" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/importcom/conflict.go: -------------------------------------------------------------------------------- 1 | package p 2 | 3 | import "conflict" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/importcom/src/bad/bad.go: -------------------------------------------------------------------------------- 1 | package bad // import 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/importcom/src/conflict/a.go: -------------------------------------------------------------------------------- 1 | package conflict // import "a" 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/importcom/src/conflict/b.go: -------------------------------------------------------------------------------- 1 | package conflict /* import "b" */ 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/importcom/src/works/x/x.go: -------------------------------------------------------------------------------- 1 | package x // import "works/x" 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/importcom/src/wrongplace/x.go: -------------------------------------------------------------------------------- 1 | package x // import "my/x" 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/importcom/works.go: -------------------------------------------------------------------------------- 1 | package p 2 | 3 | import _ "works/x" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/importcom/wrongplace.go: -------------------------------------------------------------------------------- 1 | package p 2 | 3 | import "wrongplace" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/modlegacy/src/new/go.mod: -------------------------------------------------------------------------------- 1 | module "new/v2" 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/modlegacy/src/new/new.go: -------------------------------------------------------------------------------- 1 | package new 2 | 3 | import _ "new/v2/p2" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/modlegacy/src/new/p2/p2.go: -------------------------------------------------------------------------------- 1 | package p2 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/modlegacy/src/new/sub/go.mod: -------------------------------------------------------------------------------- 1 | module new/sub/v2 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/modlegacy/src/new/sub/inner/go.mod: -------------------------------------------------------------------------------- 1 | module new/sub/inner 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/modlegacy/src/new/sub/inner/x/x.go: -------------------------------------------------------------------------------- 1 | package x 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/modlegacy/src/new/sub/x/v1/y/y.go: -------------------------------------------------------------------------------- 1 | package y 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/modlegacy/src/old/p2/p2.go: -------------------------------------------------------------------------------- 1 | package p2 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/rundir/sub/sub.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/rundir/x.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/shadow/root1/src/foo/foo.go: -------------------------------------------------------------------------------- 1 | package foo 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/shadow/root1/src/math/math.go: -------------------------------------------------------------------------------- 1 | package math 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/shadow/root2/src/foo/foo.go: -------------------------------------------------------------------------------- 1 | package foo 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/badc/x.c: -------------------------------------------------------------------------------- 1 | // C code! 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/badc/x.go: -------------------------------------------------------------------------------- 1 | package badc 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/badpkg/x.go: -------------------------------------------------------------------------------- 1 | pkg badpkg 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/badtest/badsyntax/x.go: -------------------------------------------------------------------------------- 1 | package badsyntax 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/badtest/badvar/x.go: -------------------------------------------------------------------------------- 1 | package badvar 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/canonical/a/a.go: -------------------------------------------------------------------------------- 1 | package a 2 | 3 | import _ "c" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/canonical/a/vendor/c/c.go: -------------------------------------------------------------------------------- 1 | package c 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/canonical/b/b.go: -------------------------------------------------------------------------------- 1 | package b 2 | 3 | import _ "canonical/a/" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/canonical/d/d.go: -------------------------------------------------------------------------------- 1 | package d 2 | 3 | import _ "canonical/b" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/cgoasm/p.s: -------------------------------------------------------------------------------- 1 | TEXT asm(SB),$0 2 | RET 3 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/cgocover3/p_test.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/cgocover4/notcgo.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/dupload/p/p.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/dupload/p2/p2.go: -------------------------------------------------------------------------------- 1 | package p2 2 | import _ "dupload/vendor/p" 3 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/dupload/vendor/p/p.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/empty/pkg/pkg.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/empty/pkgtest/pkg.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/empty/pkgtest/test_test.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/empty/pkgtestxtest/pkg.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/empty/pkgtestxtest/test_test.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/empty/pkgtestxtest/xtest_test.go: -------------------------------------------------------------------------------- 1 | package p_test 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/empty/pkgxtest/pkg.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/empty/pkgxtest/xtest_test.go: -------------------------------------------------------------------------------- 1 | package p_test 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/empty/test/test_test.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/empty/testxtest/test_test.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/empty/testxtest/xtest_test.go: -------------------------------------------------------------------------------- 1 | package p_test 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/empty/xtest/xtest_test.go: -------------------------------------------------------------------------------- 1 | package p_test 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/exclude/empty/x.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/exclude/ignore/_x.go: -------------------------------------------------------------------------------- 1 | package x 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/exclude/x_linux.go: -------------------------------------------------------------------------------- 1 | // +build windows 2 | 3 | package x 4 | 5 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/importmain/test/test.go: -------------------------------------------------------------------------------- 1 | package test 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/my.pkg/pkg.go: -------------------------------------------------------------------------------- 1 | package pkg 2 | 3 | var Text = "unset" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/run/internal/internal.go: -------------------------------------------------------------------------------- 1 | package internal 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/run/subdir/internal/private/private.go: -------------------------------------------------------------------------------- 1 | package private 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/syntaxerror/x.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/testcycle/q1/q1.go: -------------------------------------------------------------------------------- 1 | package q1 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/testdep/p1/p1.go: -------------------------------------------------------------------------------- 1 | package p1 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/testdep/p1/p1_test.go: -------------------------------------------------------------------------------- 1 | package p1 2 | 3 | import _ "testdep/p2" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/testdep/p2/p2.go: -------------------------------------------------------------------------------- 1 | package p2 2 | 3 | import _ "testdep/p3" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/vend/bad.go: -------------------------------------------------------------------------------- 1 | package vend 2 | 3 | import _ "r" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/vend/dir1/dir1.go: -------------------------------------------------------------------------------- 1 | package dir1 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/vend/good.go: -------------------------------------------------------------------------------- 1 | package vend 2 | 3 | import _ "p" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/vend/subdir/bad.go: -------------------------------------------------------------------------------- 1 | package subdir 2 | 3 | import _ "r" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/vend/subdir/good.go: -------------------------------------------------------------------------------- 1 | package subdir 2 | 3 | import _ "p" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/vend/vendor/p/p.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/vend/vendor/q/q.go: -------------------------------------------------------------------------------- 1 | package q 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/vend/vendor/vend/dir1/dir2/dir2.go: -------------------------------------------------------------------------------- 1 | package dir2 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/vend/x/vendor/p/p.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/vend/x/vendor/p/p/p.go: -------------------------------------------------------------------------------- 1 | package p 2 | 3 | import _ "notfound" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/vend/x/vendor/r/r.go: -------------------------------------------------------------------------------- 1 | package r 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/src/vetpkg/a_test.go: -------------------------------------------------------------------------------- 1 | package p_test 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/testimport/p.go: -------------------------------------------------------------------------------- 1 | package p 2 | 3 | func F() int { return 1 } 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/testimport/p1/p1.go: -------------------------------------------------------------------------------- 1 | package p1 2 | 3 | func F() int { return 1 } 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/testimport/p2/p2.go: -------------------------------------------------------------------------------- 1 | package p2 2 | 3 | func F() int { return 1 } 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/testinternal/p.go: -------------------------------------------------------------------------------- 1 | package p 2 | 3 | import _ "net/http/internal" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/testinternal2/p.go: -------------------------------------------------------------------------------- 1 | package p 2 | 3 | import _ "./x/y/z/internal/w" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/testinternal2/x/y/z/internal/w/w.go: -------------------------------------------------------------------------------- 1 | package w 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/testinternal4/src/q/internal/x/x.go: -------------------------------------------------------------------------------- 1 | package x 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/testinternal4/src/q/j/j.go: -------------------------------------------------------------------------------- 1 | package j 2 | 3 | import _ "q/internal/x" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/testonly/p_test.go: -------------------------------------------------------------------------------- 1 | package p 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/testvendor/src/q/vendor/x/x.go: -------------------------------------------------------------------------------- 1 | package x 2 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/testvendor/src/q/y/y.go: -------------------------------------------------------------------------------- 1 | package y 2 | 3 | import _ "x" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/testvendor/src/q/z/z.go: -------------------------------------------------------------------------------- 1 | package z 2 | 3 | import _ "q/vendor/x" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/testvendor2/src/p/p.go: -------------------------------------------------------------------------------- 1 | package p 2 | 3 | import "x" 4 | -------------------------------------------------------------------------------- /src/cmd/go/testdata/testvendor2/vendor/x/x.go: -------------------------------------------------------------------------------- 1 | package x 2 | -------------------------------------------------------------------------------- /src/cmd/gofmt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/gofmt/doc.go -------------------------------------------------------------------------------- /src/cmd/gofmt/testdata/stdin1.golden: -------------------------------------------------------------------------------- 1 | //gofmt -stdin 2 | 3 | if x { 4 | y 5 | } 6 | -------------------------------------------------------------------------------- /src/cmd/gofmt/testdata/stdin1.input: -------------------------------------------------------------------------------- 1 | //gofmt -stdin 2 | 3 | if x { 4 | y 5 | } 6 | -------------------------------------------------------------------------------- /src/cmd/link/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/link/doc.go -------------------------------------------------------------------------------- /src/cmd/link/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/link/main.go -------------------------------------------------------------------------------- /src/cmd/nm/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/nm/doc.go -------------------------------------------------------------------------------- /src/cmd/nm/nm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/nm/nm.go -------------------------------------------------------------------------------- /src/cmd/pack/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/pack/doc.go -------------------------------------------------------------------------------- /src/cmd/pack/pack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/pack/pack.go -------------------------------------------------------------------------------- /src/cmd/pprof/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/pprof/README -------------------------------------------------------------------------------- /src/cmd/pprof/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/pprof/doc.go -------------------------------------------------------------------------------- /src/cmd/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/trace/doc.go -------------------------------------------------------------------------------- /src/cmd/vendor/github.com/google/pprof/internal/driver/testdata/pprof.cpu.comments: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cmd/vet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/vet/README -------------------------------------------------------------------------------- /src/cmd/vet/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/vet/bool.go -------------------------------------------------------------------------------- /src/cmd/vet/cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/vet/cgo.go -------------------------------------------------------------------------------- /src/cmd/vet/dead.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/vet/dead.go -------------------------------------------------------------------------------- /src/cmd/vet/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/vet/doc.go -------------------------------------------------------------------------------- /src/cmd/vet/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/vet/main.go -------------------------------------------------------------------------------- /src/cmd/vet/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/vet/print.go -------------------------------------------------------------------------------- /src/cmd/vet/shift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/vet/shift.go -------------------------------------------------------------------------------- /src/cmd/vet/testdata/testingpkg/tests.go: -------------------------------------------------------------------------------- 1 | package testdata 2 | -------------------------------------------------------------------------------- /src/cmd/vet/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/vet/tests.go -------------------------------------------------------------------------------- /src/cmd/vet/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmd/vet/types.go -------------------------------------------------------------------------------- /src/cmp.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/cmp.bash -------------------------------------------------------------------------------- /src/compress/flate/testdata/huffman-zero.wb.expect: -------------------------------------------------------------------------------- 1 | 2$ -------------------------------------------------------------------------------- /src/compress/flate/testdata/huffman-zero.wb.expect-noinput: -------------------------------------------------------------------------------- 1 | 2$ -------------------------------------------------------------------------------- /src/crypto/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/crypto/crypto.go -------------------------------------------------------------------------------- /src/crypto/sm3/ifile: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /src/debug/elf/elf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/debug/elf/elf.go -------------------------------------------------------------------------------- /src/debug/pe/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/debug/pe/file.go -------------------------------------------------------------------------------- /src/debug/pe/pe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/debug/pe/pe.go -------------------------------------------------------------------------------- /src/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/errors/errors.go -------------------------------------------------------------------------------- /src/expvar/expvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/expvar/expvar.go -------------------------------------------------------------------------------- /src/flag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/flag/flag.go -------------------------------------------------------------------------------- /src/fmt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/fmt/doc.go -------------------------------------------------------------------------------- /src/fmt/fmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/fmt/fmt_test.go -------------------------------------------------------------------------------- /src/fmt/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/fmt/format.go -------------------------------------------------------------------------------- /src/fmt/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/fmt/print.go -------------------------------------------------------------------------------- /src/fmt/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/fmt/scan.go -------------------------------------------------------------------------------- /src/fmt/scan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/fmt/scan_test.go -------------------------------------------------------------------------------- /src/go/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/ast/ast.go -------------------------------------------------------------------------------- /src/go/ast/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/ast/filter.go -------------------------------------------------------------------------------- /src/go/ast/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/ast/import.go -------------------------------------------------------------------------------- /src/go/ast/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/ast/print.go -------------------------------------------------------------------------------- /src/go/ast/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/ast/scope.go -------------------------------------------------------------------------------- /src/go/ast/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/ast/walk.go -------------------------------------------------------------------------------- /src/go/build/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/build/doc.go -------------------------------------------------------------------------------- /src/go/build/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/build/read.go -------------------------------------------------------------------------------- /src/go/build/testdata/empty/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/go/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/doc/Makefile -------------------------------------------------------------------------------- /src/go/doc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/doc/doc.go -------------------------------------------------------------------------------- /src/go/doc/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/doc/filter.go -------------------------------------------------------------------------------- /src/go/doc/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/doc/reader.go -------------------------------------------------------------------------------- /src/go/types/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/types/api.go -------------------------------------------------------------------------------- /src/go/types/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/types/call.go -------------------------------------------------------------------------------- /src/go/types/decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/types/decl.go -------------------------------------------------------------------------------- /src/go/types/eval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/types/eval.go -------------------------------------------------------------------------------- /src/go/types/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/types/expr.go -------------------------------------------------------------------------------- /src/go/types/stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/types/stmt.go -------------------------------------------------------------------------------- /src/go/types/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/go/types/type.go -------------------------------------------------------------------------------- /src/hash/fnv/fnv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/hash/fnv/fnv.go -------------------------------------------------------------------------------- /src/hash/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/hash/hash.go -------------------------------------------------------------------------------- /src/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/html/entity.go -------------------------------------------------------------------------------- /src/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/html/escape.go -------------------------------------------------------------------------------- /src/image/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/image/format.go -------------------------------------------------------------------------------- /src/image/geom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/image/geom.go -------------------------------------------------------------------------------- /src/image/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/image/image.go -------------------------------------------------------------------------------- /src/image/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/image/names.go -------------------------------------------------------------------------------- /src/image/ycbcr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/image/ycbcr.go -------------------------------------------------------------------------------- /src/io/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/io/io.go -------------------------------------------------------------------------------- /src/io/io_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/io/io_test.go -------------------------------------------------------------------------------- /src/io/ioutil/testdata/hello: -------------------------------------------------------------------------------- 1 | Hello, Gophers! 2 | -------------------------------------------------------------------------------- /src/io/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/io/multi.go -------------------------------------------------------------------------------- /src/io/multi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/io/multi_test.go -------------------------------------------------------------------------------- /src/io/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/io/pipe.go -------------------------------------------------------------------------------- /src/io/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/io/pipe_test.go -------------------------------------------------------------------------------- /src/iostest.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/iostest.bash -------------------------------------------------------------------------------- /src/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/log/log.go -------------------------------------------------------------------------------- /src/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/log/log_test.go -------------------------------------------------------------------------------- /src/make.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/make.bash -------------------------------------------------------------------------------- /src/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/make.bat -------------------------------------------------------------------------------- /src/make.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/make.rc -------------------------------------------------------------------------------- /src/math/abs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/abs.go -------------------------------------------------------------------------------- /src/math/acosh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/acosh.go -------------------------------------------------------------------------------- /src/math/all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/all_test.go -------------------------------------------------------------------------------- /src/math/asin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/asin.go -------------------------------------------------------------------------------- /src/math/asin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/asin_386.s -------------------------------------------------------------------------------- /src/math/asin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/asin_arm.s -------------------------------------------------------------------------------- /src/math/asinh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/asinh.go -------------------------------------------------------------------------------- /src/math/atan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/atan.go -------------------------------------------------------------------------------- /src/math/atan2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/atan2.go -------------------------------------------------------------------------------- /src/math/atan2_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/atan2_386.s -------------------------------------------------------------------------------- /src/math/atan2_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/atan2_arm.s -------------------------------------------------------------------------------- /src/math/atan_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/atan_386.s -------------------------------------------------------------------------------- /src/math/atan_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/atan_arm.s -------------------------------------------------------------------------------- /src/math/atanh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/atanh.go -------------------------------------------------------------------------------- /src/math/big/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/big/doc.go -------------------------------------------------------------------------------- /src/math/big/ftoa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/big/ftoa.go -------------------------------------------------------------------------------- /src/math/big/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/big/int.go -------------------------------------------------------------------------------- /src/math/big/nat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/big/nat.go -------------------------------------------------------------------------------- /src/math/big/rat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/big/rat.go -------------------------------------------------------------------------------- /src/math/bits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/bits.go -------------------------------------------------------------------------------- /src/math/cbrt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/cbrt.go -------------------------------------------------------------------------------- /src/math/cbrt_stub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/cbrt_stub.s -------------------------------------------------------------------------------- /src/math/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/const.go -------------------------------------------------------------------------------- /src/math/copysign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/copysign.go -------------------------------------------------------------------------------- /src/math/dim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/dim.go -------------------------------------------------------------------------------- /src/math/dim_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/dim_386.s -------------------------------------------------------------------------------- /src/math/dim_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/dim_amd64.s -------------------------------------------------------------------------------- /src/math/dim_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/dim_arm.s -------------------------------------------------------------------------------- /src/math/dim_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/dim_arm64.s -------------------------------------------------------------------------------- /src/math/dim_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/dim_s390x.s -------------------------------------------------------------------------------- /src/math/erf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/erf.go -------------------------------------------------------------------------------- /src/math/erf_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/erf_s390x.s -------------------------------------------------------------------------------- /src/math/erf_stub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/erf_stub.s -------------------------------------------------------------------------------- /src/math/exp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/exp.go -------------------------------------------------------------------------------- /src/math/exp2_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/exp2_386.s -------------------------------------------------------------------------------- /src/math/exp2_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/exp2_arm.s -------------------------------------------------------------------------------- /src/math/exp_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/exp_386.s -------------------------------------------------------------------------------- /src/math/exp_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/exp_amd64.s -------------------------------------------------------------------------------- /src/math/exp_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/exp_arm.s -------------------------------------------------------------------------------- /src/math/exp_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/exp_s390x.s -------------------------------------------------------------------------------- /src/math/expm1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/expm1.go -------------------------------------------------------------------------------- /src/math/expm1_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/expm1_386.s -------------------------------------------------------------------------------- /src/math/expm1_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/expm1_arm.s -------------------------------------------------------------------------------- /src/math/floor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/floor.go -------------------------------------------------------------------------------- /src/math/floor_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/floor_386.s -------------------------------------------------------------------------------- /src/math/floor_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/floor_arm.s -------------------------------------------------------------------------------- /src/math/frexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/frexp.go -------------------------------------------------------------------------------- /src/math/frexp_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/frexp_386.s -------------------------------------------------------------------------------- /src/math/frexp_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/frexp_arm.s -------------------------------------------------------------------------------- /src/math/gamma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/gamma.go -------------------------------------------------------------------------------- /src/math/hypot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/hypot.go -------------------------------------------------------------------------------- /src/math/hypot_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/hypot_386.s -------------------------------------------------------------------------------- /src/math/hypot_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/hypot_arm.s -------------------------------------------------------------------------------- /src/math/j0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/j0.go -------------------------------------------------------------------------------- /src/math/j1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/j1.go -------------------------------------------------------------------------------- /src/math/jn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/jn.go -------------------------------------------------------------------------------- /src/math/ldexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/ldexp.go -------------------------------------------------------------------------------- /src/math/ldexp_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/ldexp_386.s -------------------------------------------------------------------------------- /src/math/ldexp_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/ldexp_arm.s -------------------------------------------------------------------------------- /src/math/lgamma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/lgamma.go -------------------------------------------------------------------------------- /src/math/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/log.go -------------------------------------------------------------------------------- /src/math/log10.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/log10.go -------------------------------------------------------------------------------- /src/math/log10_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/log10_386.s -------------------------------------------------------------------------------- /src/math/log10_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/log10_arm.s -------------------------------------------------------------------------------- /src/math/log1p.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/log1p.go -------------------------------------------------------------------------------- /src/math/log1p_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/log1p_386.s -------------------------------------------------------------------------------- /src/math/log1p_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/log1p_arm.s -------------------------------------------------------------------------------- /src/math/log_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/log_386.s -------------------------------------------------------------------------------- /src/math/log_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/log_amd64.s -------------------------------------------------------------------------------- /src/math/log_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/log_arm.s -------------------------------------------------------------------------------- /src/math/log_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/log_s390x.s -------------------------------------------------------------------------------- /src/math/logb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/logb.go -------------------------------------------------------------------------------- /src/math/mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/mod.go -------------------------------------------------------------------------------- /src/math/mod_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/mod_386.s -------------------------------------------------------------------------------- /src/math/mod_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/mod_amd64.s -------------------------------------------------------------------------------- /src/math/mod_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/mod_arm.s -------------------------------------------------------------------------------- /src/math/modf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/modf.go -------------------------------------------------------------------------------- /src/math/modf_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/modf_386.s -------------------------------------------------------------------------------- /src/math/modf_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/modf_arm.s -------------------------------------------------------------------------------- /src/math/pow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/pow.go -------------------------------------------------------------------------------- /src/math/pow10.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/pow10.go -------------------------------------------------------------------------------- /src/math/pow_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/pow_s390x.s -------------------------------------------------------------------------------- /src/math/pow_stub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/pow_stub.s -------------------------------------------------------------------------------- /src/math/rand/exp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/rand/exp.go -------------------------------------------------------------------------------- /src/math/rand/rng.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/rand/rng.go -------------------------------------------------------------------------------- /src/math/signbit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/signbit.go -------------------------------------------------------------------------------- /src/math/sin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/sin.go -------------------------------------------------------------------------------- /src/math/sin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/sin_386.s -------------------------------------------------------------------------------- /src/math/sin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/sin_amd64.s -------------------------------------------------------------------------------- /src/math/sin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/sin_arm.s -------------------------------------------------------------------------------- /src/math/sin_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/sin_s390x.s -------------------------------------------------------------------------------- /src/math/sincos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/sincos.go -------------------------------------------------------------------------------- /src/math/sinh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/sinh.go -------------------------------------------------------------------------------- /src/math/sinh_stub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/sinh_stub.s -------------------------------------------------------------------------------- /src/math/sqrt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/sqrt.go -------------------------------------------------------------------------------- /src/math/sqrt_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/sqrt_386.s -------------------------------------------------------------------------------- /src/math/sqrt_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/sqrt_arm.s -------------------------------------------------------------------------------- /src/math/tan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/tan.go -------------------------------------------------------------------------------- /src/math/tan_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/tan_386.s -------------------------------------------------------------------------------- /src/math/tan_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/tan_amd64.s -------------------------------------------------------------------------------- /src/math/tan_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/tan_arm.s -------------------------------------------------------------------------------- /src/math/tan_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/tan_s390x.s -------------------------------------------------------------------------------- /src/math/tanh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/tanh.go -------------------------------------------------------------------------------- /src/math/unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/math/unsafe.go -------------------------------------------------------------------------------- /src/mime/grammar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/mime/grammar.go -------------------------------------------------------------------------------- /src/mime/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/mime/type.go -------------------------------------------------------------------------------- /src/naclmake.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/naclmake.bash -------------------------------------------------------------------------------- /src/nacltest.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/nacltest.bash -------------------------------------------------------------------------------- /src/net/cgo_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/cgo_bsd.go -------------------------------------------------------------------------------- /src/net/cgo_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/cgo_linux.go -------------------------------------------------------------------------------- /src/net/cgo_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/cgo_stub.go -------------------------------------------------------------------------------- /src/net/cgo_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/cgo_unix.go -------------------------------------------------------------------------------- /src/net/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/conf.go -------------------------------------------------------------------------------- /src/net/conf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/conf_test.go -------------------------------------------------------------------------------- /src/net/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/conn_test.go -------------------------------------------------------------------------------- /src/net/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/dial.go -------------------------------------------------------------------------------- /src/net/dial_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/dial_test.go -------------------------------------------------------------------------------- /src/net/dnsclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/dnsclient.go -------------------------------------------------------------------------------- /src/net/dnsmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/dnsmsg.go -------------------------------------------------------------------------------- /src/net/fd_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/fd_plan9.go -------------------------------------------------------------------------------- /src/net/fd_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/fd_unix.go -------------------------------------------------------------------------------- /src/net/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/file.go -------------------------------------------------------------------------------- /src/net/file_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/file_stub.go -------------------------------------------------------------------------------- /src/net/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/file_test.go -------------------------------------------------------------------------------- /src/net/file_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/file_unix.go -------------------------------------------------------------------------------- /src/net/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/hook.go -------------------------------------------------------------------------------- /src/net/hook_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/hook_unix.go -------------------------------------------------------------------------------- /src/net/hosts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/hosts.go -------------------------------------------------------------------------------- /src/net/http/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/http/doc.go -------------------------------------------------------------------------------- /src/net/http/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/http/fs.go -------------------------------------------------------------------------------- /src/net/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/http/http.go -------------------------------------------------------------------------------- /src/net/http/jar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/http/jar.go -------------------------------------------------------------------------------- /src/net/http/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/http/race.go -------------------------------------------------------------------------------- /src/net/http/testdata/file: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /src/net/http/testdata/index.html: -------------------------------------------------------------------------------- 1 | index.html says hello 2 | -------------------------------------------------------------------------------- /src/net/http/testdata/style.css: -------------------------------------------------------------------------------- 1 | body {} 2 | -------------------------------------------------------------------------------- /src/net/http/triv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/http/triv.go -------------------------------------------------------------------------------- /src/net/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/interface.go -------------------------------------------------------------------------------- /src/net/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/ip.go -------------------------------------------------------------------------------- /src/net/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/ip_test.go -------------------------------------------------------------------------------- /src/net/iprawsock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/iprawsock.go -------------------------------------------------------------------------------- /src/net/ipsock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/ipsock.go -------------------------------------------------------------------------------- /src/net/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/lookup.go -------------------------------------------------------------------------------- /src/net/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/mac.go -------------------------------------------------------------------------------- /src/net/mac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/mac_test.go -------------------------------------------------------------------------------- /src/net/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/main_test.go -------------------------------------------------------------------------------- /src/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/net.go -------------------------------------------------------------------------------- /src/net/net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/net_test.go -------------------------------------------------------------------------------- /src/net/nss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/nss.go -------------------------------------------------------------------------------- /src/net/nss_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/nss_test.go -------------------------------------------------------------------------------- /src/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/parse.go -------------------------------------------------------------------------------- /src/net/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/pipe.go -------------------------------------------------------------------------------- /src/net/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/pipe_test.go -------------------------------------------------------------------------------- /src/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/port.go -------------------------------------------------------------------------------- /src/net/port_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/port_test.go -------------------------------------------------------------------------------- /src/net/port_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/port_unix.go -------------------------------------------------------------------------------- /src/net/rawconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/rawconn.go -------------------------------------------------------------------------------- /src/net/rpc/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/rpc/debug.go -------------------------------------------------------------------------------- /src/net/smtp/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/smtp/auth.go -------------------------------------------------------------------------------- /src/net/smtp/smtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/smtp/smtp.go -------------------------------------------------------------------------------- /src/net/sock_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/sock_bsd.go -------------------------------------------------------------------------------- /src/net/sock_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/sock_stub.go -------------------------------------------------------------------------------- /src/net/tcpsock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/tcpsock.go -------------------------------------------------------------------------------- /src/net/testdata/empty-resolv.conf: -------------------------------------------------------------------------------- 1 | # /etc/resolv.conf 2 | -------------------------------------------------------------------------------- /src/net/testdata/invalid-ndots-resolv.conf: -------------------------------------------------------------------------------- 1 | options ndots:invalid -------------------------------------------------------------------------------- /src/net/testdata/large-ndots-resolv.conf: -------------------------------------------------------------------------------- 1 | options ndots:16 -------------------------------------------------------------------------------- /src/net/testdata/negative-ndots-resolv.conf: -------------------------------------------------------------------------------- 1 | options ndots:-1 -------------------------------------------------------------------------------- /src/net/testdata/singleline-hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.2 odin -------------------------------------------------------------------------------- /src/net/udpsock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/udpsock.go -------------------------------------------------------------------------------- /src/net/unixsock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/unixsock.go -------------------------------------------------------------------------------- /src/net/url/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/net/url/url.go -------------------------------------------------------------------------------- /src/os/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/dir.go -------------------------------------------------------------------------------- /src/os/dir_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/dir_plan9.go -------------------------------------------------------------------------------- /src/os/dir_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/dir_unix.go -------------------------------------------------------------------------------- /src/os/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/env.go -------------------------------------------------------------------------------- /src/os/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/env_test.go -------------------------------------------------------------------------------- /src/os/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/error.go -------------------------------------------------------------------------------- /src/os/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/error_test.go -------------------------------------------------------------------------------- /src/os/error_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/error_unix.go -------------------------------------------------------------------------------- /src/os/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/exec.go -------------------------------------------------------------------------------- /src/os/exec/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/exec/exec.go -------------------------------------------------------------------------------- /src/os/exec_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/exec_plan9.go -------------------------------------------------------------------------------- /src/os/exec_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/exec_posix.go -------------------------------------------------------------------------------- /src/os/exec_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/exec_unix.go -------------------------------------------------------------------------------- /src/os/executable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/executable.go -------------------------------------------------------------------------------- /src/os/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/file.go -------------------------------------------------------------------------------- /src/os/file_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/file_plan9.go -------------------------------------------------------------------------------- /src/os/file_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/file_posix.go -------------------------------------------------------------------------------- /src/os/file_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/file_unix.go -------------------------------------------------------------------------------- /src/os/getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/getwd.go -------------------------------------------------------------------------------- /src/os/os_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/os_test.go -------------------------------------------------------------------------------- /src/os/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/path.go -------------------------------------------------------------------------------- /src/os/path_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/path_plan9.go -------------------------------------------------------------------------------- /src/os/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/path_test.go -------------------------------------------------------------------------------- /src/os/path_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/path_unix.go -------------------------------------------------------------------------------- /src/os/pipe_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/pipe_bsd.go -------------------------------------------------------------------------------- /src/os/pipe_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/pipe_linux.go -------------------------------------------------------------------------------- /src/os/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/pipe_test.go -------------------------------------------------------------------------------- /src/os/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/proc.go -------------------------------------------------------------------------------- /src/os/signal/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/signal/doc.go -------------------------------------------------------------------------------- /src/os/signal/sig.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/signal/sig.s -------------------------------------------------------------------------------- /src/os/stat_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/stat_linux.go -------------------------------------------------------------------------------- /src/os/stat_nacl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/stat_nacl.go -------------------------------------------------------------------------------- /src/os/stat_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/stat_plan9.go -------------------------------------------------------------------------------- /src/os/stat_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/stat_unix.go -------------------------------------------------------------------------------- /src/os/sticky_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/sticky_bsd.go -------------------------------------------------------------------------------- /src/os/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/str.go -------------------------------------------------------------------------------- /src/os/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/sys.go -------------------------------------------------------------------------------- /src/os/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/sys_bsd.go -------------------------------------------------------------------------------- /src/os/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/sys_darwin.go -------------------------------------------------------------------------------- /src/os/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/sys_linux.go -------------------------------------------------------------------------------- /src/os/sys_nacl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/sys_nacl.go -------------------------------------------------------------------------------- /src/os/sys_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/sys_plan9.go -------------------------------------------------------------------------------- /src/os/sys_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/sys_unix.go -------------------------------------------------------------------------------- /src/os/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/types.go -------------------------------------------------------------------------------- /src/os/types_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/types_unix.go -------------------------------------------------------------------------------- /src/os/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/user/user.go -------------------------------------------------------------------------------- /src/os/wait_unimp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/wait_unimp.go -------------------------------------------------------------------------------- /src/os/wait_wait6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/os/wait_wait6.go -------------------------------------------------------------------------------- /src/path/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/path/match.go -------------------------------------------------------------------------------- /src/path/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/path/path.go -------------------------------------------------------------------------------- /src/plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/plugin/plugin.go -------------------------------------------------------------------------------- /src/race.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/race.bash -------------------------------------------------------------------------------- /src/race.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/race.bat -------------------------------------------------------------------------------- /src/reflect/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/reflect/type.go -------------------------------------------------------------------------------- /src/reflect/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/reflect/value.go -------------------------------------------------------------------------------- /src/regexp/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/regexp/exec.go -------------------------------------------------------------------------------- /src/regexp/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/regexp/regexp.go -------------------------------------------------------------------------------- /src/run.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/run.bash -------------------------------------------------------------------------------- /src/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/run.bat -------------------------------------------------------------------------------- /src/run.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/run.rc -------------------------------------------------------------------------------- /src/runtime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/Makefile -------------------------------------------------------------------------------- /src/runtime/alg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/alg.go -------------------------------------------------------------------------------- /src/runtime/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/asm.s -------------------------------------------------------------------------------- /src/runtime/cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/cgo.go -------------------------------------------------------------------------------- /src/runtime/chan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/chan.go -------------------------------------------------------------------------------- /src/runtime/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/debug.go -------------------------------------------------------------------------------- /src/runtime/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/error.go -------------------------------------------------------------------------------- /src/runtime/float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/float.go -------------------------------------------------------------------------------- /src/runtime/go_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/go_tls.h -------------------------------------------------------------------------------- /src/runtime/iface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/iface.go -------------------------------------------------------------------------------- /src/runtime/mgc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/mgc.go -------------------------------------------------------------------------------- /src/runtime/mheap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/mheap.go -------------------------------------------------------------------------------- /src/runtime/mmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/mmap.go -------------------------------------------------------------------------------- /src/runtime/mprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/mprof.go -------------------------------------------------------------------------------- /src/runtime/msan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/msan.go -------------------------------------------------------------------------------- /src/runtime/msan0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/msan0.go -------------------------------------------------------------------------------- /src/runtime/msize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/msize.go -------------------------------------------------------------------------------- /src/runtime/noasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/noasm.go -------------------------------------------------------------------------------- /src/runtime/panic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/panic.go -------------------------------------------------------------------------------- /src/runtime/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/print.go -------------------------------------------------------------------------------- /src/runtime/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/proc.go -------------------------------------------------------------------------------- /src/runtime/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/race.go -------------------------------------------------------------------------------- /src/runtime/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/race0.go -------------------------------------------------------------------------------- /src/runtime/sema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/sema.go -------------------------------------------------------------------------------- /src/runtime/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/slice.go -------------------------------------------------------------------------------- /src/runtime/sqrt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/sqrt.go -------------------------------------------------------------------------------- /src/runtime/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/stack.go -------------------------------------------------------------------------------- /src/runtime/stubs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/stubs.go -------------------------------------------------------------------------------- /src/runtime/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/time.go -------------------------------------------------------------------------------- /src/runtime/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/trace.go -------------------------------------------------------------------------------- /src/runtime/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/type.go -------------------------------------------------------------------------------- /src/runtime/utf8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/utf8.go -------------------------------------------------------------------------------- /src/runtime/vlrt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/runtime/vlrt.go -------------------------------------------------------------------------------- /src/sort/genzfunc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/sort/genzfunc.go -------------------------------------------------------------------------------- /src/sort/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/sort/search.go -------------------------------------------------------------------------------- /src/sort/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/sort/sort.go -------------------------------------------------------------------------------- /src/strconv/atob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/strconv/atob.go -------------------------------------------------------------------------------- /src/strconv/atof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/strconv/atof.go -------------------------------------------------------------------------------- /src/strconv/atoi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/strconv/atoi.go -------------------------------------------------------------------------------- /src/strconv/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/strconv/doc.go -------------------------------------------------------------------------------- /src/strconv/ftoa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/strconv/ftoa.go -------------------------------------------------------------------------------- /src/strconv/itoa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/strconv/itoa.go -------------------------------------------------------------------------------- /src/strconv/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/strconv/quote.go -------------------------------------------------------------------------------- /src/sync/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/sync/cond.go -------------------------------------------------------------------------------- /src/sync/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/sync/map.go -------------------------------------------------------------------------------- /src/sync/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/sync/map_test.go -------------------------------------------------------------------------------- /src/sync/mutex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/sync/mutex.go -------------------------------------------------------------------------------- /src/sync/once.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/sync/once.go -------------------------------------------------------------------------------- /src/sync/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/sync/pool.go -------------------------------------------------------------------------------- /src/sync/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/sync/runtime.go -------------------------------------------------------------------------------- /src/sync/rwmutex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/sync/rwmutex.go -------------------------------------------------------------------------------- /src/syscall/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/syscall/flock.go -------------------------------------------------------------------------------- /src/syscall/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/syscall/mkall.sh -------------------------------------------------------------------------------- /src/syscall/msan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/syscall/msan.go -------------------------------------------------------------------------------- /src/syscall/msan0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/syscall/msan0.go -------------------------------------------------------------------------------- /src/syscall/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/syscall/net.go -------------------------------------------------------------------------------- /src/syscall/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/syscall/str.go -------------------------------------------------------------------------------- /src/syscall/zsysnum_windows_386.go: -------------------------------------------------------------------------------- 1 | // nothing to see here 2 | 3 | package syscall 4 | -------------------------------------------------------------------------------- /src/syscall/zsysnum_windows_amd64.go: -------------------------------------------------------------------------------- 1 | // nothing to see here 2 | 3 | package syscall 4 | -------------------------------------------------------------------------------- /src/testing/cover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/testing/cover.go -------------------------------------------------------------------------------- /src/testing/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/testing/match.go -------------------------------------------------------------------------------- /src/time/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/time/format.go -------------------------------------------------------------------------------- /src/time/sleep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/time/sleep.go -------------------------------------------------------------------------------- /src/time/sys_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/time/sys_unix.go -------------------------------------------------------------------------------- /src/time/tick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/time/tick.go -------------------------------------------------------------------------------- /src/time/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/time/time.go -------------------------------------------------------------------------------- /src/time/zoneinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/time/zoneinfo.go -------------------------------------------------------------------------------- /src/unicode/digit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/unicode/digit.go -------------------------------------------------------------------------------- /src/unsafe/unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/src/unsafe/unsafe.go -------------------------------------------------------------------------------- /test/235.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/235.go -------------------------------------------------------------------------------- /test/64bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/64bit.go -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/README.md -------------------------------------------------------------------------------- /test/alg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/alg.go -------------------------------------------------------------------------------- /test/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/alias.go -------------------------------------------------------------------------------- /test/alias1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/alias1.go -------------------------------------------------------------------------------- /test/alias2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/alias2.go -------------------------------------------------------------------------------- /test/alias3.dir/a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/alias3.dir/a.go -------------------------------------------------------------------------------- /test/alias3.dir/b.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/alias3.dir/b.go -------------------------------------------------------------------------------- /test/alias3.dir/c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/alias3.dir/c.go -------------------------------------------------------------------------------- /test/alias3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/alias3.go -------------------------------------------------------------------------------- /test/append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/append.go -------------------------------------------------------------------------------- /test/append1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/append1.go -------------------------------------------------------------------------------- /test/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/args.go -------------------------------------------------------------------------------- /test/armimm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/armimm.go -------------------------------------------------------------------------------- /test/assign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/assign.go -------------------------------------------------------------------------------- /test/assign1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/assign1.go -------------------------------------------------------------------------------- /test/atomicload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/atomicload.go -------------------------------------------------------------------------------- /test/bigalg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/bigalg.go -------------------------------------------------------------------------------- /test/bigmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/bigmap.go -------------------------------------------------------------------------------- /test/blank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/blank.go -------------------------------------------------------------------------------- /test/blank1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/blank1.go -------------------------------------------------------------------------------- /test/bom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/bom.go -------------------------------------------------------------------------------- /test/bombad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/bombad.go -------------------------------------------------------------------------------- /test/bounds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/bounds.go -------------------------------------------------------------------------------- /test/chan/fifo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chan/fifo.go -------------------------------------------------------------------------------- /test/chan/perm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chan/perm.go -------------------------------------------------------------------------------- /test/chan/powser1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chan/powser1.go -------------------------------------------------------------------------------- /test/chan/powser2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chan/powser2.go -------------------------------------------------------------------------------- /test/chan/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chan/select.go -------------------------------------------------------------------------------- /test/chan/select2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chan/select2.go -------------------------------------------------------------------------------- /test/chan/select3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chan/select3.go -------------------------------------------------------------------------------- /test/chan/select4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chan/select4.go -------------------------------------------------------------------------------- /test/chan/select5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chan/select5.go -------------------------------------------------------------------------------- /test/chan/select6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chan/select6.go -------------------------------------------------------------------------------- /test/chan/select7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chan/select7.go -------------------------------------------------------------------------------- /test/chan/sieve1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chan/sieve1.go -------------------------------------------------------------------------------- /test/chan/sieve2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chan/sieve2.go -------------------------------------------------------------------------------- /test/chancap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chancap.go -------------------------------------------------------------------------------- /test/chanlinear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/chanlinear.go -------------------------------------------------------------------------------- /test/char_lit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/char_lit.go -------------------------------------------------------------------------------- /test/char_lit1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/char_lit1.go -------------------------------------------------------------------------------- /test/checkbce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/checkbce.go -------------------------------------------------------------------------------- /test/clearfat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/clearfat.go -------------------------------------------------------------------------------- /test/closedchan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/closedchan.go -------------------------------------------------------------------------------- /test/closure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/closure.go -------------------------------------------------------------------------------- /test/closure1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/closure1.go -------------------------------------------------------------------------------- /test/closure2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/closure2.go -------------------------------------------------------------------------------- /test/cmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/cmp.go -------------------------------------------------------------------------------- /test/cmp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/cmp6.go -------------------------------------------------------------------------------- /test/cmplx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/cmplx.go -------------------------------------------------------------------------------- /test/cmplxdivide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/cmplxdivide.c -------------------------------------------------------------------------------- /test/cmplxdivide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/cmplxdivide.go -------------------------------------------------------------------------------- /test/cmplxdivide1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/cmplxdivide1.go -------------------------------------------------------------------------------- /test/complit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/complit.go -------------------------------------------------------------------------------- /test/complit1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/complit1.go -------------------------------------------------------------------------------- /test/compos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/compos.go -------------------------------------------------------------------------------- /test/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/const.go -------------------------------------------------------------------------------- /test/const1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/const1.go -------------------------------------------------------------------------------- /test/const2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/const2.go -------------------------------------------------------------------------------- /test/const3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/const3.go -------------------------------------------------------------------------------- /test/const4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/const4.go -------------------------------------------------------------------------------- /test/const5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/const5.go -------------------------------------------------------------------------------- /test/const6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/const6.go -------------------------------------------------------------------------------- /test/convT2X.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/convT2X.go -------------------------------------------------------------------------------- /test/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/convert.go -------------------------------------------------------------------------------- /test/convert1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/convert1.go -------------------------------------------------------------------------------- /test/convert2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/convert2.go -------------------------------------------------------------------------------- /test/convert3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/convert3.go -------------------------------------------------------------------------------- /test/convlit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/convlit.go -------------------------------------------------------------------------------- /test/convlit1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/convlit1.go -------------------------------------------------------------------------------- /test/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/copy.go -------------------------------------------------------------------------------- /test/copy1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/copy1.go -------------------------------------------------------------------------------- /test/crlf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/crlf.go -------------------------------------------------------------------------------- /test/ddd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ddd.go -------------------------------------------------------------------------------- /test/ddd1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ddd1.go -------------------------------------------------------------------------------- /test/ddd2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ddd2.go -------------------------------------------------------------------------------- /test/decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/decl.go -------------------------------------------------------------------------------- /test/declbad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/declbad.go -------------------------------------------------------------------------------- /test/defer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/defer.go -------------------------------------------------------------------------------- /test/deferfin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/deferfin.go -------------------------------------------------------------------------------- /test/deferprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/deferprint.go -------------------------------------------------------------------------------- /test/deferprint.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/deferprint.out -------------------------------------------------------------------------------- /test/devirt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/devirt.go -------------------------------------------------------------------------------- /test/divide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/divide.go -------------------------------------------------------------------------------- /test/divmod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/divmod.go -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z1.go: -------------------------------------------------------------------------------- 1 | 2 | 3 | //line x1.go:4 4 | package main 5 | func F1() {} 6 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z11.go: -------------------------------------------------------------------------------- 1 | 2 | //line x11.go:4 3 | package main 4 | func F11() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z12.go: -------------------------------------------------------------------------------- 1 | 2 | //line x12.go:4 3 | package main 4 | func F12() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z13.go: -------------------------------------------------------------------------------- 1 | 2 | //line x13.go:4 3 | package main 4 | func F13() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z14.go: -------------------------------------------------------------------------------- 1 | 2 | //line x14.go:4 3 | package main 4 | func F14() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z15.go: -------------------------------------------------------------------------------- 1 | 2 | //line x15.go:4 3 | package main 4 | func F15() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z16.go: -------------------------------------------------------------------------------- 1 | 2 | //line x16.go:4 3 | package main 4 | func F16() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z17.go: -------------------------------------------------------------------------------- 1 | 2 | //line x17.go:4 3 | package main 4 | func F17() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z18.go: -------------------------------------------------------------------------------- 1 | 2 | 3 | //line x18.go:4 4 | package main 5 | func F18() {} 6 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z19.go: -------------------------------------------------------------------------------- 1 | 2 | //line x19.go:4 3 | package main 4 | func F19() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z2.go: -------------------------------------------------------------------------------- 1 | 2 | //line x2.go:4 3 | package main 4 | func F2() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z20.go: -------------------------------------------------------------------------------- 1 | 2 | //line x20.go:4 3 | package main 4 | func F20() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z3.go: -------------------------------------------------------------------------------- 1 | 2 | //line x3.go:4 3 | package main 4 | func F3() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z4.go: -------------------------------------------------------------------------------- 1 | 2 | //line x4.go:4 3 | package main 4 | func F4() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z5.go: -------------------------------------------------------------------------------- 1 | 2 | //line x5.go:4 3 | package main 4 | func F5() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z6.go: -------------------------------------------------------------------------------- 1 | 2 | //line x6.go:4 3 | package main 4 | func F6() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z7.go: -------------------------------------------------------------------------------- 1 | 2 | //line x7.go:4 3 | package main 4 | func F7() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z8.go: -------------------------------------------------------------------------------- 1 | 2 | //line x8.go:4 3 | package main 4 | func F8() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.dir/z9.go: -------------------------------------------------------------------------------- 1 | 2 | //line x9.go:4 3 | package main 4 | func F9() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/dwarf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/dwarf/dwarf.go -------------------------------------------------------------------------------- /test/empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/empty.go -------------------------------------------------------------------------------- /test/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/env.go -------------------------------------------------------------------------------- /test/eof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/eof.go -------------------------------------------------------------------------------- /test/eof1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/eof1.go -------------------------------------------------------------------------------- /test/errchk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/errchk -------------------------------------------------------------------------------- /test/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape.go -------------------------------------------------------------------------------- /test/escape2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape2.go -------------------------------------------------------------------------------- /test/escape2n.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape2n.go -------------------------------------------------------------------------------- /test/escape3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape3.go -------------------------------------------------------------------------------- /test/escape4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape4.go -------------------------------------------------------------------------------- /test/escape5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape5.go -------------------------------------------------------------------------------- /test/escape_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape_array.go -------------------------------------------------------------------------------- /test/escape_calls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape_calls.go -------------------------------------------------------------------------------- /test/escape_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape_field.go -------------------------------------------------------------------------------- /test/escape_iface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape_iface.go -------------------------------------------------------------------------------- /test/escape_indir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape_indir.go -------------------------------------------------------------------------------- /test/escape_level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape_level.go -------------------------------------------------------------------------------- /test/escape_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape_map.go -------------------------------------------------------------------------------- /test/escape_param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape_param.go -------------------------------------------------------------------------------- /test/escape_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/escape_slice.go -------------------------------------------------------------------------------- /test/fibo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/fibo.go -------------------------------------------------------------------------------- /test/finprofiled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/finprofiled.go -------------------------------------------------------------------------------- /test/fixedbugs/bug206.out: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /test/fixedbugs/bug328.out: -------------------------------------------------------------------------------- 1 | 0x0 2 | -------------------------------------------------------------------------------- /test/fixedbugs/issue15470.dir/b.go: -------------------------------------------------------------------------------- 1 | package b 2 | 3 | import _ "./a" // must not fail 4 | -------------------------------------------------------------------------------- /test/fixedbugs/issue22683.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /test/fixedbugs/issue5614.dir/y.go: -------------------------------------------------------------------------------- 1 | package y 2 | 3 | import "./x" 4 | 5 | var T = x.S 6 | -------------------------------------------------------------------------------- /test/fixedbugs/issue5957.dir/a.go: -------------------------------------------------------------------------------- 1 | package surprise 2 | 3 | var X int 4 | -------------------------------------------------------------------------------- /test/fixedbugs/issue5957.dir/b.go: -------------------------------------------------------------------------------- 1 | package surprise2 2 | 3 | -------------------------------------------------------------------------------- /test/float_lit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/float_lit.go -------------------------------------------------------------------------------- /test/float_lit2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/float_lit2.go -------------------------------------------------------------------------------- /test/float_lit3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/float_lit3.go -------------------------------------------------------------------------------- /test/floatcmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/floatcmp.go -------------------------------------------------------------------------------- /test/for.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/for.go -------------------------------------------------------------------------------- /test/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/func.go -------------------------------------------------------------------------------- /test/func1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/func1.go -------------------------------------------------------------------------------- /test/func2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/func2.go -------------------------------------------------------------------------------- /test/func3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/func3.go -------------------------------------------------------------------------------- /test/func4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/func4.go -------------------------------------------------------------------------------- /test/func5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/func5.go -------------------------------------------------------------------------------- /test/func6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/func6.go -------------------------------------------------------------------------------- /test/func7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/func7.go -------------------------------------------------------------------------------- /test/func8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/func8.go -------------------------------------------------------------------------------- /test/funcdup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/funcdup.go -------------------------------------------------------------------------------- /test/funcdup2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/funcdup2.go -------------------------------------------------------------------------------- /test/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/gc.go -------------------------------------------------------------------------------- /test/gc1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/gc1.go -------------------------------------------------------------------------------- /test/gc2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/gc2.go -------------------------------------------------------------------------------- /test/gcstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/gcstring.go -------------------------------------------------------------------------------- /test/goprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/goprint.go -------------------------------------------------------------------------------- /test/goprint.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/goprint.out -------------------------------------------------------------------------------- /test/goto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/goto.go -------------------------------------------------------------------------------- /test/heapsampling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/heapsampling.go -------------------------------------------------------------------------------- /test/helloworld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/helloworld.go -------------------------------------------------------------------------------- /test/helloworld.out: -------------------------------------------------------------------------------- 1 | hello, world 2 | -------------------------------------------------------------------------------- /test/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/if.go -------------------------------------------------------------------------------- /test/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/import.go -------------------------------------------------------------------------------- /test/import1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/import1.go -------------------------------------------------------------------------------- /test/import2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/import2.go -------------------------------------------------------------------------------- /test/import4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/import4.go -------------------------------------------------------------------------------- /test/import5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/import5.go -------------------------------------------------------------------------------- /test/import6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/import6.go -------------------------------------------------------------------------------- /test/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/index.go -------------------------------------------------------------------------------- /test/index0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/index0.go -------------------------------------------------------------------------------- /test/index1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/index1.go -------------------------------------------------------------------------------- /test/index2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/index2.go -------------------------------------------------------------------------------- /test/indirect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/indirect.go -------------------------------------------------------------------------------- /test/indirect1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/indirect1.go -------------------------------------------------------------------------------- /test/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/init.go -------------------------------------------------------------------------------- /test/init1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/init1.go -------------------------------------------------------------------------------- /test/initcomma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/initcomma.go -------------------------------------------------------------------------------- /test/initialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/initialize.go -------------------------------------------------------------------------------- /test/initializerr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/initializerr.go -------------------------------------------------------------------------------- /test/initloop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/initloop.go -------------------------------------------------------------------------------- /test/inline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/inline.go -------------------------------------------------------------------------------- /test/int_lit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/int_lit.go -------------------------------------------------------------------------------- /test/intcvt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/intcvt.go -------------------------------------------------------------------------------- /test/intrinsic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/intrinsic.go -------------------------------------------------------------------------------- /test/iota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/iota.go -------------------------------------------------------------------------------- /test/ken/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/array.go -------------------------------------------------------------------------------- /test/ken/chan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/chan.go -------------------------------------------------------------------------------- /test/ken/chan1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/chan1.go -------------------------------------------------------------------------------- /test/ken/complit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/complit.go -------------------------------------------------------------------------------- /test/ken/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/convert.go -------------------------------------------------------------------------------- /test/ken/cplx0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/cplx0.go -------------------------------------------------------------------------------- /test/ken/cplx0.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/cplx0.out -------------------------------------------------------------------------------- /test/ken/cplx1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/cplx1.go -------------------------------------------------------------------------------- /test/ken/cplx2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/cplx2.go -------------------------------------------------------------------------------- /test/ken/cplx3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/cplx3.go -------------------------------------------------------------------------------- /test/ken/cplx4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/cplx4.go -------------------------------------------------------------------------------- /test/ken/cplx5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/cplx5.go -------------------------------------------------------------------------------- /test/ken/divconst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/divconst.go -------------------------------------------------------------------------------- /test/ken/divmod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/divmod.go -------------------------------------------------------------------------------- /test/ken/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/embed.go -------------------------------------------------------------------------------- /test/ken/for.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/for.go -------------------------------------------------------------------------------- /test/ken/interfun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/interfun.go -------------------------------------------------------------------------------- /test/ken/intervar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/intervar.go -------------------------------------------------------------------------------- /test/ken/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/label.go -------------------------------------------------------------------------------- /test/ken/litfun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/litfun.go -------------------------------------------------------------------------------- /test/ken/mfunc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/mfunc.go -------------------------------------------------------------------------------- /test/ken/modconst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/modconst.go -------------------------------------------------------------------------------- /test/ken/ptrfun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/ptrfun.go -------------------------------------------------------------------------------- /test/ken/ptrvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/ptrvar.go -------------------------------------------------------------------------------- /test/ken/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/range.go -------------------------------------------------------------------------------- /test/ken/rob1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/rob1.go -------------------------------------------------------------------------------- /test/ken/rob2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/rob2.go -------------------------------------------------------------------------------- /test/ken/robfor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/robfor.go -------------------------------------------------------------------------------- /test/ken/robfunc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/robfunc.go -------------------------------------------------------------------------------- /test/ken/shift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/shift.go -------------------------------------------------------------------------------- /test/ken/simpbool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/simpbool.go -------------------------------------------------------------------------------- /test/ken/simpconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/simpconv.go -------------------------------------------------------------------------------- /test/ken/simpfun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/simpfun.go -------------------------------------------------------------------------------- /test/ken/simpvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/simpvar.go -------------------------------------------------------------------------------- /test/ken/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/string.go -------------------------------------------------------------------------------- /test/ken/string.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/string.out -------------------------------------------------------------------------------- /test/ken/strvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/ken/strvar.go -------------------------------------------------------------------------------- /test/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/label.go -------------------------------------------------------------------------------- /test/label1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/label1.go -------------------------------------------------------------------------------- /test/linkmain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/linkmain.go -------------------------------------------------------------------------------- /test/linkmain_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/linkmain_run.go -------------------------------------------------------------------------------- /test/linkname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/linkname.go -------------------------------------------------------------------------------- /test/linkobj.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/linkobj.go -------------------------------------------------------------------------------- /test/linkx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/linkx.go -------------------------------------------------------------------------------- /test/linkx_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/linkx_run.go -------------------------------------------------------------------------------- /test/literal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/literal.go -------------------------------------------------------------------------------- /test/live.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/live.go -------------------------------------------------------------------------------- /test/live1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/live1.go -------------------------------------------------------------------------------- /test/live2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/live2.go -------------------------------------------------------------------------------- /test/live_syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/live_syscall.go -------------------------------------------------------------------------------- /test/locklinear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/locklinear.go -------------------------------------------------------------------------------- /test/loopbce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/loopbce.go -------------------------------------------------------------------------------- /test/makenew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/makenew.go -------------------------------------------------------------------------------- /test/mallocfin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/mallocfin.go -------------------------------------------------------------------------------- /test/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/map.go -------------------------------------------------------------------------------- /test/map1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/map1.go -------------------------------------------------------------------------------- /test/maplinear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/maplinear.go -------------------------------------------------------------------------------- /test/method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/method.go -------------------------------------------------------------------------------- /test/method1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/method1.go -------------------------------------------------------------------------------- /test/method2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/method2.go -------------------------------------------------------------------------------- /test/method3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/method3.go -------------------------------------------------------------------------------- /test/method4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/method4.go -------------------------------------------------------------------------------- /test/method5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/method5.go -------------------------------------------------------------------------------- /test/named.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/named.go -------------------------------------------------------------------------------- /test/named1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/named1.go -------------------------------------------------------------------------------- /test/nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/nil.go -------------------------------------------------------------------------------- /test/nilcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/nilcheck.go -------------------------------------------------------------------------------- /test/nilptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/nilptr.go -------------------------------------------------------------------------------- /test/nilptr2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/nilptr2.go -------------------------------------------------------------------------------- /test/nilptr3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/nilptr3.go -------------------------------------------------------------------------------- /test/nilptr4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/nilptr4.go -------------------------------------------------------------------------------- /test/nosplit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/nosplit.go -------------------------------------------------------------------------------- /test/notinheap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/notinheap.go -------------------------------------------------------------------------------- /test/notinheap2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/notinheap2.go -------------------------------------------------------------------------------- /test/nul1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/nul1.go -------------------------------------------------------------------------------- /test/parentype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/parentype.go -------------------------------------------------------------------------------- /test/peano.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/peano.go -------------------------------------------------------------------------------- /test/phiopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/phiopt.go -------------------------------------------------------------------------------- /test/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/print.go -------------------------------------------------------------------------------- /test/print.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/print.out -------------------------------------------------------------------------------- /test/printbig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/printbig.go -------------------------------------------------------------------------------- /test/printbig.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/printbig.out -------------------------------------------------------------------------------- /test/prove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/prove.go -------------------------------------------------------------------------------- /test/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/range.go -------------------------------------------------------------------------------- /test/recover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/recover.go -------------------------------------------------------------------------------- /test/recover1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/recover1.go -------------------------------------------------------------------------------- /test/recover2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/recover2.go -------------------------------------------------------------------------------- /test/recover3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/recover3.go -------------------------------------------------------------------------------- /test/recover4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/recover4.go -------------------------------------------------------------------------------- /test/recover5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/recover5.go -------------------------------------------------------------------------------- /test/rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/rename.go -------------------------------------------------------------------------------- /test/rename1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/rename1.go -------------------------------------------------------------------------------- /test/reorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/reorder.go -------------------------------------------------------------------------------- /test/reorder2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/reorder2.go -------------------------------------------------------------------------------- /test/return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/return.go -------------------------------------------------------------------------------- /test/rotate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/rotate.go -------------------------------------------------------------------------------- /test/rotate0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/rotate0.go -------------------------------------------------------------------------------- /test/rotate1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/rotate1.go -------------------------------------------------------------------------------- /test/rotate2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/rotate2.go -------------------------------------------------------------------------------- /test/rotate3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/rotate3.go -------------------------------------------------------------------------------- /test/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/run.go -------------------------------------------------------------------------------- /test/rune.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/rune.go -------------------------------------------------------------------------------- /test/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/runtime.go -------------------------------------------------------------------------------- /test/safe/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/safe/main.go -------------------------------------------------------------------------------- /test/safe/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/safe/pkg.go -------------------------------------------------------------------------------- /test/safe/usesafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/safe/usesafe.go -------------------------------------------------------------------------------- /test/shift1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/shift1.go -------------------------------------------------------------------------------- /test/shift2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/shift2.go -------------------------------------------------------------------------------- /test/sieve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/sieve.go -------------------------------------------------------------------------------- /test/sigchld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/sigchld.go -------------------------------------------------------------------------------- /test/sigchld.out: -------------------------------------------------------------------------------- 1 | survived SIGCHLD 2 | -------------------------------------------------------------------------------- /test/simassign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/simassign.go -------------------------------------------------------------------------------- /test/sinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/sinit.go -------------------------------------------------------------------------------- /test/sinit_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/sinit_run.go -------------------------------------------------------------------------------- /test/sizeof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/sizeof.go -------------------------------------------------------------------------------- /test/slice3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/slice3.go -------------------------------------------------------------------------------- /test/slice3err.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/slice3err.go -------------------------------------------------------------------------------- /test/slicecap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/slicecap.go -------------------------------------------------------------------------------- /test/sliceopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/sliceopt.go -------------------------------------------------------------------------------- /test/solitaire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/solitaire.go -------------------------------------------------------------------------------- /test/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/stack.go -------------------------------------------------------------------------------- /test/strength.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/strength.go -------------------------------------------------------------------------------- /test/stress/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/stress/maps.go -------------------------------------------------------------------------------- /test/string_lit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/string_lit.go -------------------------------------------------------------------------------- /test/stringrange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/stringrange.go -------------------------------------------------------------------------------- /test/struct0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/struct0.go -------------------------------------------------------------------------------- /test/switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/switch.go -------------------------------------------------------------------------------- /test/switch2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/switch2.go -------------------------------------------------------------------------------- /test/switch3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/switch3.go -------------------------------------------------------------------------------- /test/switch4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/switch4.go -------------------------------------------------------------------------------- /test/switch5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/switch5.go -------------------------------------------------------------------------------- /test/switch6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/switch6.go -------------------------------------------------------------------------------- /test/switch7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/switch7.go -------------------------------------------------------------------------------- /test/syntax/chan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/syntax/chan.go -------------------------------------------------------------------------------- /test/syntax/chan1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/syntax/chan1.go -------------------------------------------------------------------------------- /test/syntax/ddd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/syntax/ddd.go -------------------------------------------------------------------------------- /test/syntax/else.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/syntax/else.go -------------------------------------------------------------------------------- /test/syntax/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/syntax/if.go -------------------------------------------------------------------------------- /test/syntax/semi1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/syntax/semi1.go -------------------------------------------------------------------------------- /test/syntax/semi2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/syntax/semi2.go -------------------------------------------------------------------------------- /test/syntax/semi3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/syntax/semi3.go -------------------------------------------------------------------------------- /test/syntax/semi4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/syntax/semi4.go -------------------------------------------------------------------------------- /test/syntax/semi5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/syntax/semi5.go -------------------------------------------------------------------------------- /test/syntax/semi6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/syntax/semi6.go -------------------------------------------------------------------------------- /test/syntax/semi7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/syntax/semi7.go -------------------------------------------------------------------------------- /test/syntax/vareq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/syntax/vareq.go -------------------------------------------------------------------------------- /test/tinyfin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/tinyfin.go -------------------------------------------------------------------------------- /test/torture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/torture.go -------------------------------------------------------------------------------- /test/turing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/turing.go -------------------------------------------------------------------------------- /test/typecheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/typecheck.go -------------------------------------------------------------------------------- /test/typeswitch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/typeswitch.go -------------------------------------------------------------------------------- /test/typeswitch1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/typeswitch1.go -------------------------------------------------------------------------------- /test/typeswitch2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/typeswitch2.go -------------------------------------------------------------------------------- /test/typeswitch3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/typeswitch3.go -------------------------------------------------------------------------------- /test/undef.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/undef.go -------------------------------------------------------------------------------- /test/utf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/utf.go -------------------------------------------------------------------------------- /test/varerr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/varerr.go -------------------------------------------------------------------------------- /test/varinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/varinit.go -------------------------------------------------------------------------------- /test/writebarrier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/writebarrier.go -------------------------------------------------------------------------------- /test/zerodivide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoDowner/go-gm/HEAD/test/zerodivide.go --------------------------------------------------------------------------------