- c5dff72 cmd/compile, runtime: fix placement of map bucket overflow pointer on nacl by Russ Cox · 10 years ago
- 7feb424 cmd/compile: fix PtrTo(t) for unnamed t with embedded fields by Russ Cox · 10 years ago
- 3d3a016 reflect: wait longer before declaring select test stuck by Russ Cox · 10 years ago
- e0e47e2 reflect: test repeats with large scalar tails by Austin Clements · 10 years ago
- 4b28755 reflect: test GC bits for slices by Austin Clements · 10 years ago
- 80ec711 runtime: use type-based write barrier for remote stack write during chansend by Russ Cox · 10 years ago
- d36cc02 reflect: make PtrTo(FuncOf(...)) not crash by Russ Cox · 10 years ago
- 512f75e runtime: replace GC programs with simpler encoding, faster decoder by Russ Cox · 10 years ago
- 6d8a147 runtime: use 1-bit pointer bitmaps in type representation by Russ Cox · 10 years ago
- 918fdae reflect: implement ArrayOf by Sebastien Binet · 10 years ago
- e1c1fa2 reflect: add FuncOf function by Dave Day · 10 years ago
- 6ea3adc reflect: for struct tags, reject control chars (including tabs) in keys, by Nigel Tao · 10 years ago
- 67f8a81 reflect: cache call frames by Dmitry Vyukov · 10 years ago
- 48d6303 reflect: set dir when creating a channel via ChanOf by Michael Fraenkel · 10 years ago
- 31f8310 reflect: fix func layout test for nacl build by Keith Randall · 10 years ago
- 108dbd0 reflect: more function layout tests by Keith Randall · 10 years ago
- 829b286 [dev.cc] all: merge default (8d42099cdc23) into dev.cc by Russ Cox · 10 years ago
- 7c1e330 reflect: Fix reflect.funcLayout. The GC bitmap has two bits per by Keith Randall · 10 years ago
- f0bd539 [dev.power64] all: merge default into dev.power64 by Austin Clements · 10 years ago
- 2bd616b build: merge the great pkg/ rename into dev.power64 by Austin Clements · 10 years ago
- 82a0188 reflect: fix TestAllocations now that interfaces hold only pointers by Ian Lance Taylor · 10 years ago
- 4e1d196 reflect: fix struct size calculation to include terminal padding by Damien Neil · 10 years ago
- 3cf9acc reflect: generated unrolled GC bitmask directly by Ian Lance Taylor · 10 years ago
- 14cd40d reflect: add direct call tests to TestMakeFuncVariadic by Michael Hudson-Doyle · 10 years ago
- 6920b2a reflect: add tests for variadic method calls by Ian Lance Taylor · 10 years ago
- 62d3202 reflect: fix IsValid vs Kind mismatch after Elem of nil interface by Russ Cox · 10 years ago
- dd8f29e reflect: adjust Value.String to give correct answer for methods by Russ Cox · 10 years ago
- a325f4f reflect: add Type.Comparable by Russ Cox · 10 years ago
- f0d44db runtime: look up arg stackmap for makeFuncStub/methodValueStub during traceback by Russ Cox · 11 years ago
- c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago[Renamed from src/pkg/reflect/all_test.go]
- 613383c cmd/gc, runtime: treat slices and strings like pointers in garbage collection by Russ Cox · 11 years ago
- 1806a57 cmd/gc, runtime: refactor interface inlining decision into compiler by Russ Cox · 11 years ago
- b39e2a0 src, misc: applied gofmt -w -s by Robert Griesemer · 11 years ago
- cb6cb42 reflect: don't panic on delete from nil map. by Keith Randall · 11 years ago
- d54b67d reflect: test, fix access to nil maps by Russ Cox · 11 years ago
- 772d228 reflect: fix variadic arg for funcs created by MakeFunc. by Carl Chatfield · 11 years ago
- 72c5d5e reflect, runtime: fix crash in GC due to reflect.call + precise GC by Russ Cox · 11 years ago
- 5984732 reflect: better error for walking through nil embedded struct pointer by Russ Cox · 11 years ago
- 96ee10f reflect: add DeepEqual slice of slice inequality test by Shawn Smith · 11 years ago
- 0a6ad46 reflect: Add tests for Call with functions taking and returning structs. by Michael Hudson-Doyle · 11 years ago
- 742f755 reflect: test to make sure big Zero()-obtained objects are really zero. by Keith Randall · 11 years ago
- 85138da reflect: prevent the callXX routines from calling makeFuncStub by Keith Randall · 11 years ago
- ef4e12a reflect: test using a MakeFunc value in a couple of different ways by Ian Lance Taylor · 11 years ago
- e59db90 reflect: add a test that gccgo mishandled by Ian Lance Taylor · 11 years ago
- e07b5ba reflect: add example for StructTag by Kamil Kisiel · 11 years ago
- c757020 reflect: test method calls on pointers to pointers by Ian Lance Taylor · 11 years ago
- 0e73497 reflect: Fix Convert to add indir bit when the value is actually a by Todd Wang · 12 years ago
- f578726 all: protect alloc count tests by -testing.short by Rob Pike · 12 years ago
- 94179d6 reflect: avoid allocation when interface's contents are not addressable by Rob Pike · 12 years ago
- f791012 reflect: Get rid of the test for the error message when by Keith Randall · 12 years ago
- 9cd5706 runtime: reimplement reflect.call to not use stack splitting. by Keith Randall · 12 years ago
- 4d8aefd reflect: add Value.Slice3 and Value.SetCap methods, to match x[i:j:k] by Russ Cox · 12 years ago
- 5782f41 runtime: introduce cnewarray() to simplify allocation of typed arrays by Dmitriy Vyukov · 12 years ago
- 3660b53 reflect: add garbage collection info in ChanOf, MapOf, PtrTo, SliceOf by Russ Cox · 12 years ago
- 3be7036 reflect: implement method values by Russ Cox · 12 years ago
- 0a71a5b all: Skip AllocsPerRun tests if GOMAXPROCS>1. by Albert Strasheim · 12 years ago
- 9bfd3c3 testing: add AllocsPerRun by Kyle Lemons · 12 years ago
- 9e30b70 all: set GOMAXPROCS to 1 when counting mallocs by Shenghou Ma · 12 years ago
- aa38801 reflect: fix FieldByNameFunc by Robert Griesemer · 12 years ago
- 1120982 reflect: add ArrayOf, ChanOf, MapOf, SliceOf by Russ Cox · 12 years ago
- 465b9c3 gofmt: apply gofmt -w src misc by Robert Griesemer · 12 years ago
- 38070a7 reflect: stop thinking that MaxFloat32 overflows float32. by Rémy Oudompheng · 12 years ago
- 772decb reflect: make Index and Slice accept strings by Evan Shaw · 12 years ago
- 1065c6f go/printer: parenthesize literal function types in conversions by Robert Griesemer · 12 years ago
- ba4625c reflect: add MakeFunc (API CHANGE) by Russ Cox · 12 years ago
- 46f379c reflect: add Type.ConvertibleTo, Value.Convert (API CHANGE) by Russ Cox · 12 years ago
- 370ae05 reflect: add Select by Russ Cox · 12 years ago
- 5e3224c reflect: faster FieldByName, FieldByNameFunc by Russ Cox · 13 years ago
- a96c2b8 cmd/gc: fix PkgPath of byte, rune types by Russ Cox · 13 years ago
- 21de1ab reflect: set GOMAXPROCS=1 in the malloc test by Dmitriy Vyukov · 13 years ago
- 5337290 reflect: document and test TypeOf(nil) Fixes #3549. by Rob Pike · 13 years ago
- a72b87e reflect: make Value.Interface return immutable data by Russ Cox · 13 years ago
- 3a1c226 reflect.DeepEqual: don't panic comparing functions by Rob Pike · 13 years ago
- 842c906 runtime: delete UpdateMemStats, replace with ReadMemStats(&stats). by Rémy Oudompheng · 13 years ago
- ae5c4ea reflect: test that PtrTo returns types that match program types by Ian Lance Taylor · 13 years ago
- ee09a8c gc: don't emit pkgpath for error type. by David Symonds · 13 years ago
- 3dc278d reflect: fix Slice cap by Gustavo Niemeyer · 13 years ago
- 46deaa2 gc: disallow map/func equality via interface comparison by Russ Cox · 13 years ago
- 434a6c8 gc: use gofmt spacing when printing map type by Russ Cox · 13 years ago
- a479a45 reflect: make Value an opaque struct by Russ Cox · 13 years ago
- 4e65478 reflect: empty slice/map is not DeepEqual to nil by Russ Cox · 13 years ago
- eb69292 src/pkg/[n-z]*: gofix -r error -force=error by Russ Cox · 13 years ago
- 50110c9 gc: clean up printing. by Luuk van Dijk · 13 years ago
- 9049abb reflect: make map test independent of map iteration order. by David Symonds · 13 years ago
- fdc6376 reflect: fix test failure reporting. by David Symonds · 13 years ago
- 304cf4d reflect: disallow Interface method on Value obtained via unexported name by Russ Cox · 13 years ago
- 00d64c7 reflect: add Value.Bytes, Value.SetBytes methods by Russ Cox · 14 years ago
- ab44a81 reflect: remove references to container/vector. by Rob Pike · 14 years ago
- c913cb8 reflect: rename new TestVariadic to TestVariadicType. by David Symonds · 14 years ago
- fc1cf58 reflect: doc fixes for obsolete types. by David Symonds · 14 years ago
- 90564a9 go/printer: changed max. number of newlines from 3 to 2 by Robert Griesemer · 14 years ago
- 25733a9 reflect: support for struct tag use by multiple packages by Russ Cox · 14 years ago
- 22484e2 reflect: MethodByName by Rob Pike · 14 years ago
- 1242c76 reflect: make allocation test less fragile. by Rob Pike · 14 years ago
- 86e6a44 reflect: allow unexported key in Value.MapIndex by Russ Cox · 14 years ago
- 3e9a1d5 syslog: fix skipping of net tests by Gustavo Niemeyer · 14 years ago
- 6850dba reflect: Fix Copy of arrays by Gustavo Niemeyer · 14 years ago
- 0e2bb62 reflect: rename Typeof, NewValue -> TypeOf, ValueOf by Russ Cox · 14 years ago
- 5ff3336 gc: correct handling of unexported method names in embedded interfaces by Russ Cox · 14 years ago
- e1ee3b5 reflect: add Type.Implements, Type.AssignableTo, Value.CallSlice; make Set match Go by Russ Cox · 14 years ago