| Commit message (Expand) | Author | Age | Files | Lines |
* | build: move package sources from src/pkg to src | Russ Cox | 2014-09-08 | 1 | -3862/+0 |
* | cmd/gc, runtime: treat slices and strings like pointers in garbage collection | Russ Cox | 2014-08-25 | 1 | -0/+18 |
* | cmd/gc, runtime: refactor interface inlining decision into compiler | Russ Cox | 2014-08-18 | 1 | -0/+3 |
* | src, misc: applied gofmt -w -s | Robert Griesemer | 2014-07-01 | 1 | -1/+1 |
* | reflect: don't panic on delete from nil map. | Keith Randall | 2014-05-20 | 1 | -0/+3 |
* | reflect: test, fix access to nil maps | Russ Cox | 2014-05-19 | 1 | -0/+22 |
* | reflect: fix variadic arg for funcs created by MakeFunc. | Carl Chatfield | 2014-04-08 | 1 | -0/+17 |
* | reflect, runtime: fix crash in GC due to reflect.call + precise GC | Russ Cox | 2014-04-08 | 1 | -0/+81 |
* | reflect: better error for walking through nil embedded struct pointer | Russ Cox | 2014-02-21 | 1 | -0/+24 |
* | reflect: add DeepEqual slice of slice inequality test | Shawn Smith | 2013-12-30 | 1 | -0/+1 |
* | reflect: Add tests for Call with functions taking and returning structs. | Michael Hudson-Doyle | 2013-12-17 | 1 | -0/+40 |
* | reflect: test to make sure big Zero()-obtained objects are really zero. | Keith Randall | 2013-12-02 | 1 | -0/+11 |
* | reflect: prevent the callXX routines from calling makeFuncStub | Keith Randall | 2013-12-02 | 1 | -0/+24 |
* | reflect: test using a MakeFunc value in a couple of different ways | Ian Lance Taylor | 2013-10-04 | 1 | -0/+18 |
* | reflect: add a test that gccgo mishandled | Ian Lance Taylor | 2013-10-03 | 1 | -0/+9 |
* | reflect: add example for StructTag | Kamil Kisiel | 2013-09-23 | 1 | -3/+3 |
* | reflect: test method calls on pointers to pointers | Ian Lance Taylor | 2013-09-17 | 1 | -6/+25 |
* | reflect: Fix Convert to add indir bit when the value is actually a | Todd Wang | 2013-08-21 | 1 | -7/+25 |
* | all: protect alloc count tests by -testing.short | Rob Pike | 2013-08-21 | 1 | -0/+9 |
* | reflect: avoid allocation when interface's contents are not addressable | Rob Pike | 2013-08-09 | 1 | -0/+34 |
* | reflect: Get rid of the test for the error message when | Keith Randall | 2013-08-05 | 1 | -11/+0 |
* | runtime: reimplement reflect.call to not use stack splitting. | Keith Randall | 2013-08-02 | 1 | -0/+11 |
* | reflect: add Value.Slice3 and Value.SetCap methods, to match x[i:j:k] | Russ Cox | 2013-07-01 | 1 | -0/+68 |
* | runtime: introduce cnewarray() to simplify allocation of typed arrays | Dmitriy Vyukov | 2013-05-27 | 1 | -0/+19 |
* | reflect: add garbage collection info in ChanOf, MapOf, PtrTo, SliceOf | Russ Cox | 2013-03-26 | 1 | -0/+183 |
* | reflect: implement method values | Russ Cox | 2013-03-21 | 1 | -26/+276 |
* | all: Skip AllocsPerRun tests if GOMAXPROCS>1. | Albert Strasheim | 2013-03-06 | 1 | -0/+4 |
* | testing: add AllocsPerRun | Kyle Lemons | 2013-02-02 | 1 | -15/+7 |
* | all: set GOMAXPROCS to 1 when counting mallocs | Shenghou Ma | 2012-12-01 | 1 | -4/+2 |
* | reflect: fix FieldByNameFunc | Robert Griesemer | 2012-11-13 | 1 | -0/+15 |
* | reflect: add ArrayOf, ChanOf, MapOf, SliceOf | Russ Cox | 2012-11-13 | 1 | -0/+82 |
* | gofmt: apply gofmt -w src misc | Robert Griesemer | 2012-10-30 | 1 | -1/+1 |
* | reflect: stop thinking that MaxFloat32 overflows float32. | R?my Oudompheng | 2012-10-26 | 1 | -0/+39 |
* | reflect: make Index and Slice accept strings | Evan Shaw | 2012-10-21 | 1 | -1/+23 |
* | go/printer: parenthesize literal function types in conversions | Robert Griesemer | 2012-10-04 | 1 | -1/+1 |
* | reflect: add MakeFunc (API CHANGE) | Russ Cox | 2012-09-24 | 1 | -7/+40 |
* | reflect: add Type.ConvertibleTo, Value.Convert (API CHANGE) | Russ Cox | 2012-09-22 | 1 | -0/+447 |
* | reflect: add Select | Russ Cox | 2012-09-18 | 1 | -0/+424 |
* | reflect: faster FieldByName, FieldByNameFunc | Russ Cox | 2012-09-05 | 1 | -3/+152 |
* | cmd/gc: fix PkgPath of byte, rune types | Russ Cox | 2012-09-01 | 1 | -0/+23 |
* | reflect: set GOMAXPROCS=1 in the malloc test | Dmitriy Vyukov | 2012-07-02 | 1 | -1/+2 |
* | reflect: document and test TypeOf(nil) | Rob Pike | 2012-04-23 | 1 | -0/+5 |
* | reflect: make Value.Interface return immutable data | Russ Cox | 2012-03-01 | 1 | -0/+12 |
* | reflect.DeepEqual: don't panic comparing functions | Rob Pike | 2012-02-24 | 1 | -0/+10 |
* | runtime: delete UpdateMemStats, replace with ReadMemStats(&stats). | R?my Oudompheng | 2012-02-06 | 1 | -3/+7 |
* | reflect: test that PtrTo returns types that match program types | Ian Lance Taylor | 2012-02-03 | 1 | -0/+12 |
* | gc: don't emit pkgpath for error type. | David Symonds | 2012-01-20 | 1 | -2/+13 |
* | reflect: fix Slice cap | Gustavo Niemeyer | 2011-12-12 | 1 | -5/+17 |
* | gc: disallow map/func equality via interface comparison | Russ Cox | 2011-12-06 | 1 | -2/+2 |
* | gc: use gofmt spacing when printing map type | Russ Cox | 2011-12-02 | 1 | -3/+3 |