summaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* net/netip: add new IP address packageBrad Fitzpatrick2021-11-0226-68/+4694
* net/url: consider ForceQuery in ResolveReferenceTimothy Gu2021-11-022-1/+4
* go/types, types2: remove confusing debugging output in inference error messageRobert Griesemer2021-11-012-2/+2
* sync: add PoolStarvation benchmarkRuslan Andreev2021-11-011-0/+20
* runtime: disable pacer lock held assertions in testsMichael Anthony Knyszek2021-11-012-3/+13
* internal/fuzz: don't add duplicate corpus entriesRoland Shoemaker2021-11-011-0/+17
* go/types: fix TypeName.IsAlias for type parameter nameszhouguangyuan2021-11-013-1/+6
* cmd/compile/internal/types2: fix TypeName.IsAlias for type parameter namesRobert Griesemer2021-11-013-1/+6
* cmd/compile/internal/types2: remove subscripts from type parameter namesRobert Griesemer2021-11-015-25/+35
* cmd/compile/internal/types2: differently named types are not assignableRobert Griesemer2021-11-013-45/+94
* strings: align Clone output with string([]byte(""))Martin Möhrmann2021-11-012-1/+15
* cmd/link: make ppc64le __glink_PLTresolve position-independentPaul E. Murphy2021-11-011-16/+25
* testing: reduce memory used by subtest namesBryan C. Mills2021-11-012-48/+131
* reflect: avoid stack copies of hiterMartin Möhrmann2021-10-312-1/+11
* testing: remove redundant type conversionAlexander Melentyev2021-10-311-1/+1
* bytes: remove redundant type conversionAlexander Melentyev2021-10-311-1/+1
* go/parser: simplify parsing of array or slice constraint typesRobert Findley2021-10-311-52/+46
* image/draw: rename and reorder some benchmarksNigel Tao2021-10-313-18/+24
* cmd/compile/internal/syntax: fix parsing of array or slice constraint typesRobert Griesemer2021-10-312-35/+57
* cmd/compile: make -memprofilerate workAustin Clements2021-10-302-7/+6
* cmd/compile: emit sensible go_asm.h consts for big intsAustin Clements2021-10-301-1/+1
* crypto/elliptic: move P-521 group logic to internal/nistecFilippo Valsorda2021-10-308-250/+517
* crypto/elliptic: use a 4-bit sliding window for P-521 ScalarMultFilippo Valsorda2021-10-301-5/+35
* crypto/elliptic: use complete addition formulas for P-521Filippo Valsorda2021-10-301-130/+131
* cmd/compile: use Structure() to get single underlying type of typeparam.Dan Scales2021-10-291-1/+1
* runtime: do not add open defer entry above a started open defer entryDan Scales2021-10-292-14/+120
* go/types: comp literals to accept type sets with single underlying typesRobert Findley2021-10-292-1/+23
* go/types: slice exprs to accept type sets with single underlying typesRobert Findley2021-10-292-8/+18
* go/types: range clause to accept type sets with single underlying typesRobert Findley2021-10-292-48/+35
* go/types: make built-in to accept type sets with single underlying typesRobert Findley2021-10-292-12/+16
* crypto/elliptic: refactor P-224 field implementationFilippo Valsorda2021-10-292-134/+91
* runtime: add testing framework and basic tests for GC pacerMichael Knyszek2021-10-292-0/+668
* runtime: remove unnecessary argument stores for panicIndex etc. on ARM64Cherry Mui2021-10-291-0/+12
* cmd/go: document that tests must not write to their source modulesBryan C. Mills2021-10-292-2/+10
* cmd/go: make assertions more precise in TestScript/gcflags_patternsBryan C. Mills2021-10-291-10/+10
* runtime: pass nanotime and gomaxprocs into startCycle and endCycle explicitlyMichael Knyszek2021-10-292-9/+9
* runtime: track scannable globals spaceMichael Anthony Knyszek2021-10-292-2/+15
* runtime: track the amount of scannable allocated stack for the GC pacerMichael Anthony Knyszek2021-10-294-2/+45
* runtime: move heapLive and heapScan updates into a methodMichael Anthony Knyszek2021-10-292-29/+27
* runtime: move pacer time updates and state resets into methodsMichael Anthony Knyszek2021-10-292-29/+51
* runtime: fix unclosed GCSweepStart trace eventMichael Anthony Knyszek2021-10-291-4/+4
* runtime: detangle sweeper pacing from GC pacingMichael Anthony Knyszek2021-10-293-34/+45
* runtime: enable crash dump creation on WindowsZhi Zheng2021-10-293-22/+67
* runtime: clean up allocation zeroingMichael Anthony Knyszek2021-10-294-28/+29
* Revert "cmd/go: remove support for -buildmode=shared"Bryan C. Mills2021-10-298-23/+60
* sync: add Mutex.TryLock, RWMutex.TryLock, RWMutex.TryRLockRuss Cox2021-10-294-0/+120
* runtime: fix sweep termination conditionMichael Anthony Knyszek2021-10-295-131/+208
* cmd/go: test that the reserved paths "example" and "test" are not usedBryan C. Mills2021-10-291-0/+7
* io: remove UTF8 specified document for RuneReaderMeng Zhuo2021-10-291-1/+1
* text/template: use reflect.Value.FieldByIndexErrRob Pike2021-10-292-1/+27