- be9a177 cmd/compile/internal/syntax: better error msg for some 'if' statements by Robert Griesemer · 7 years ago
- ac45cb9 cmd/compile/internal/syntax: permit /*line file:line:col*/ directives by Robert Griesemer · 7 years ago
- e87f2a1 cmd/compile/internal/syntax: remove ParseBytes from API - not needed by Robert Griesemer · 7 years ago
- a7f73c4 cmd/compile: eliminate NoFramePointer by Austin Clements · 7 years ago
- 9b33118 cmd/internal/obj/x86: adjust SP correctly for tail calls by Austin Clements · 7 years ago
- 1dcb583 cmd/go: accept only limited compiler and linker flags in #cgo directives by Russ Cox · 7 years ago
- 23e8e19 cmd/compile: use unsigned loads for multi-element comparisons by Keith Randall · 7 years ago
- b5b35be cmd/compile: don't inline functions that call recover by Austin Clements · 7 years ago
- 7eaa8ef cmd/compile: don't let spills clobber arguments by Keith Randall · 7 years ago
- 67fdf58 cmd/compile: don't combine 64-bit loads/stores on amd64 by Caleb Spare · 7 years ago
- 8554fd6 cmd/compile: document reserved import paths by Robert Griesemer · 7 years ago
- 08e342d cmd/compile/internal/syntax: don't record semi position if there's none by Robert Griesemer · 7 years ago
- 585717b cmd/compile: fix path for go tool in test by Keith Randall · 7 years ago
- 7f1c4b3 cmd/compile: disable "redundant zeroextensions" optimization for Select on AMD64 by Cherry Zhang · 7 years ago
- 60be6f8 cmd/compile: additional test cleanup by David Chase · 7 years ago
- 841d865 cmd/compile: second attempt at fix for issue 23179 by Than McIntosh · 7 years ago
- 9c64c65 cmd/compile: fix spelling error by Kevin Burke · 7 years ago
- 0447216 cmd/compile: fix corner case in DWARF inline info generation by Than McIntosh · 7 years ago
- 98443ec cmd/compile: clean up debug_test.go by David Chase · 7 years ago
- fdecaa8 cmd/compile: fixes for bad DWARF abstract origin references by Than McIntosh · 7 years ago
- 75f0ad7 cmd/compile/internal/ssa: group dump files alphabetically by Geoff Berry · 7 years ago
- 13bf4ad cmd/compile: remove broken inlining accounting code by Matthew Dempsky · 7 years ago
- 840fad1 cmd/compile: fix unsafe.Pointer liveness for Syscall-like functions by Matthew Dempsky · 7 years ago
- 4c800f0 cmd/compile: fix large load/store offsets on 386 by Keith Randall · 7 years ago
- 692f2e9 cmd/compile: fix bug in logic for computing var abstract origins by Than McIntosh · 7 years ago
- dd7cbf3 cmd/compile: fix map assignment with panicking right-hand side by Keith Randall · 7 years ago
- 9d70b3a cmd/compile: fix noopt builder, weird append case by Keith Randall · 7 years ago
- 88c2fb9 cmd/compile: fix bug in DWARF inl handling of unused autos by Than McIntosh · 7 years ago
- 088a9ad cmd/compile: permit indices of certain non-constant shifts by Robert Griesemer · 7 years ago
- 9372166 cmd/compile: fix DWARF type symbol buglet by Than McIntosh · 7 years ago
- f22cf71 cmd/compile: use src.NoXPos for entry-block constants by David Chase · 7 years ago
- b53088a Revert "go/printer: forbid empty line before first comment in block" by Joe Tsai · 7 years ago
- bd983a6 cmd/compile: fix GOEXPERIMENT checks by Matthew Dempsky · 7 years ago
- 6be1c09 cmd/compile: use soft-float routines for soft-float targets by Vladimir Stefanovic · 7 years ago
- 4435fcf compiler,linker: support for DWARF inlined instances by Than McIntosh · 7 years ago
- dbb1d19 cmd/compile: fix loop depth of range expression in escape analysis by Cherry Zhang · 7 years ago
- 2f588ff cmd/compile: make -asmhdr work with type aliases by Matthew Dempsky · 7 years ago
- a5b759a cmd/compile: adjust lineno during import to get Pos right by David Chase · 7 years ago
- 71a9c44 cmd/compile: fix infinite recursion in isdirectiface by Matthew Dempsky · 7 years ago
- 08b19a1 cmd/compile: use NoXPos instead of lineno in typenod by Matthew Dempsky · 7 years ago
- 5419ed3 cmd/compile: remove unused code by Keith Randall · 7 years ago
- 3c375f1 cmd/compile, go/types: error if main.main is not a function by Matthew Dempsky · 7 years ago
- 48e207d cmd/compile: fix mapassign_fast* routines for pointer keys by Keith Randall · 7 years ago
- 63ef3cd cmd/compile: ignore RegKill ops for non-phi after phi check by Than McIntosh · 7 years ago
- 4fbf54f cmd/compile: fix comment that -N does not disable escape analysis by Cherry Zhang · 7 years ago
- bd41c67 cmd/compile: improve debugging output for GOSSAFUNC by David Chase · 7 years ago
- 5f29a7a cmd/compile: hint on wrong case-field names in composite literals by Emmanuel Odeke · 7 years ago
- 644787c cmd/compile: delete temporary files when test finishes by Michael Munday · 7 years ago
- d2414ce cmd/compile: leave Pos unset for racewalk enter/exit by David Chase · 7 years ago
- fa1f52c cmd/compile: always nil check before interface call by Keith Randall · 7 years ago
- 7f88d3c cmd/compile: remove some more gotos in gc by Daniel Martí · 7 years ago
- ca2a886 cmd/compile: record original and absolute file names for line directives by griesemer · 7 years ago
- 6e9960e cmd/compile: use stringer on types.EType by Daniel Martí · 7 years ago
- 79dbc1c cmd/compile: replace classnames with Class.String by Daniel Martí · 7 years ago
- 3231d4e cmd/compile: replace opnames with stringer by Daniel Martí · 7 years ago
- 1c32252 cmd/compile: remove unnecessary tmpdir in ssa_test by Cherry Zhang · 7 years ago
- d7ac9bb cmd/compile: do not write slices/strings > 2g by Jeff R. Allen · 7 years ago
- 5993251 cmd/go: implement per-package asmflags, gcflags, ldflags, gccgoflags by Russ Cox · 7 years ago
- a042221 cmd/compile: adjust Pos setting for "empty" blocks by David Chase · 7 years ago
- 506386f cmd/compile: optimize noding of long summation expressions by Matthew Dempsky · 7 years ago
- a4c009f cmd/compile: don't put Noalg types in typelinks by Ian Lance Taylor · 7 years ago
- 33c246f cmd/compile: fix SSA immediate sign extension on s390x by Michael Munday · 7 years ago
- 17ff23f cmd/compile/internal/syntax: better syntax errors for typos in if/switch/for headers by griesemer · 7 years ago
- 3a446d8 cmd/compile: []T where T is go:notinheap does not need write barriers by Austin Clements · 7 years ago
- da109c6 cmd/compile: enable ssacheck for tests in ssa_test.go by Cherry Zhang · 7 years ago
- 989cc80 cmd/compile: fix test to use correct go binary by Keith Randall · 7 years ago
- d58d901 cmd/compile: adjust locationlist lifetimes by David Chase · 7 years ago
- 38c725b cmd/compile: repair name propagation into aggregate parts by David Chase · 7 years ago
- c4b65fa cmd/compile: inline closures with captures by Hugues Bruant · 7 years ago
- 33a9f01 cmd/compile: add mul by ±2ⁿ code-generation tests for arm/arm64 by Alberto Donizetti · 7 years ago
- 483e298 cmd/compile: fix reassignment check by Hugues Bruant · 7 years ago
- bb1fd3b cmd/compile: add rules to improve consecutive byte loads and stores on ppc64le by Lynn Boger · 7 years ago
- 25159d3 cmd/compile: avoid spurious errors for invalid map key types by griesemer · 7 years ago
- 1ce7442 cmd/compile: add missing s390x load with index operations by Michael Munday · 8 years ago
- d5960e3 cmd/compile: turn some pointer params into results by Daniel Martí · 7 years ago
- f388468 cmd/compile/internal/ssa: inline memmove with known size by Ilya Tocar · 8 years ago
- 08f19bb go/printer: forbid empty line before first comment in block by Joe Tsai · 7 years ago
- 2f1f607 cmd/compile: intrinsify math.RoundToEven on amd64 by Ilya Tocar · 7 years ago
- fbfc203 cmd/compile: specialize map creation for small hint sizes by Martin Möhrmann · 8 years ago
- a034809 cmd/compile: provide more names for stack slots by David Chase · 7 years ago
- bc723cf cmd/compile: on ARM, make sure *const's AuxInt fit into int32 by Cherry Zhang · 7 years ago
- 7cb3e4f all: unindent some if bodies by exiting early by Daniel Martí · 7 years ago
- 94484d8 cmd/compile: intrinsify math.{Trunc/Ceil/Floor} on amd64 by Ilya Tocar · 7 years ago
- 8684534 cmd/compile: don't export unreachable inline method bodies by Matthew Dempsky · 7 years ago
- 622cfd8 cmd/compile: don't fold address of global into load/store on PPC64 by Cherry Zhang · 7 years ago
- 4745604 cmd/compile: intrinsify math.RoundToEven on s390x by Michael Munday · 7 years ago
- 52cf91a cmd/compile,runtime: update instrumentation comments by Austin Clements · 7 years ago
- 4b5018c cmd/compile: change ssa test to avoid go run -gcflags=-d=ssa/check/on by Russ Cox · 7 years ago
- 96cdacb cmd/asm, cmd/compile: optimize math.Abs and math.Copysign on s390x by Michael Munday · 7 years ago
- 03c8c56 cmd/compile: skip compiling wrappers for imported defined types by Matthew Dempsky · 7 years ago
- 0153a41 cmd/compile: fix runtime.KeepAlive by Keith Randall · 7 years ago
- 7e34313 cmd/compile: compiler support for buffered write barrier by Austin Clements · 7 years ago
- 4d0151e cmd/compile,cmd/internal/obj/ppc64: make math.Abs,math.Copysign instrinsics on ppc64x by Lynn Boger · 7 years ago
- 3c46f49 cmd/compile: fix incorrect go:noinline usage by Hugues Bruant · 7 years ago
- b78b54f cmd/compile: elide write barriers for copy of notinheap pointers by Austin Clements · 7 years ago
- 316e303 cmd/compile: make HasHeapPointer recursive by Austin Clements · 7 years ago
- afbe646 cmd/compile: report typedslicecopy write barriers by Austin Clements · 7 years ago
- 5a4b6bc cmd/compile: improve coverage of nowritebarrierrec check by Austin Clements · 7 years ago
- 78ea9a7 cmd/compile: optimize MOVBS/MOVBU/MOVHS/MOVHU on ARMv6 and ARMv7 by Ben Shi · 7 years ago
- 40649e6 cmd/compile: make sure not to use SP as an index register by Keith Randall · 7 years ago