aboutsummaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Expand)Author
2021-03-31[release-branch.go1.15] cmd/compile: disable shortcircuit optimization for in...Keith Randall
2021-03-01[release-branch.go1.15] cmd/compile: fix escape analysis of heap-allocated re...Matthew Dempsky
2021-03-01[release-branch.go1.15] cmd/compile: do not assume TST and TEQ set V on armJason A. Donenfeld
2021-01-21[release-branch.go1.15] cmd/compile: don't short-circuit copies whose source ...Keith Randall
2020-12-03[release-branch.go1.15] cmd/compile: sign extend consant folding properlyKeith Randall
2020-10-27[release-branch.go1.15] cmd/compile: fix storeType to handle pointers to go:n...Keith Randall
2020-10-27[release-branch.go1.15] cmd/compile, runtime: store pointers to go:notinheap ...Keith Randall
2020-10-14[release-branch.go1.15] cmd/compile: fix left shift constant folding ruleKeith Randall
2020-10-09[release-branch.go1.15] cmd/compile: propagate go:notinheap implicitlyKeith Randall
2020-10-09[release-branch.go1.15] cmd/compile: make go:notinheap error message friendli...Keith Randall
2020-10-09[release-branch.go1.15] cmd/cgo: use go:notinheap for anonymous structsKeith Randall
2020-10-09[release-branch.go1.15] cmd/compile: allow aliases to go:notinheap typesKeith Randall
2020-10-09[release-branch.go1.15] cmd/compile: don't allow go:notinheap on the heap or ...Keith Randall
2020-10-05[release-branch.go1.15] cmd/compile: fix live variable computation for deferr...Keith Randall
2020-08-21[release-branch.go1.15] cmd/compile: fix checkptr handling of &^Matthew Dempsky
2020-08-21cmd/compile: correct type of CvtBoolToUint8 valuesJosh Bleecher Snyder
2020-07-30cmd/compile: don't addLocalInductiveFacts if there is no direct edge from if ...Cholerae Hu
2020-07-27cmd/compile: add floating point load+op operations to addressing modes passKeith Randall
2020-07-20cmd/compile: add test for fixed ICE on untyped conversionAlberto Donizetti
2020-06-25cmd/compile: remove check that Zero's arg has the correct base typeKeith Randall
2020-06-19reflect: zero stack slots before writing to them with write barriersKeith Randall
2020-06-18cmd/compile: mark s390x int <-> float conversions as clobbering flagsMichael Munday
2020-06-15cmd/compile: fix ordering problems in struct equalityKeith Randall
2020-06-10cmd/compile: always tighten and de-duplicate tuple selectorsMichael Munday
2020-06-09cmd/compile: ARM comparisons with 0 incorrect on overflowXiangdong Ji
2020-06-08all: treat all files as binary, but check in .bat with CRLFDmitri Shuralyov
2020-06-04cmd/compile: add interface equality testsKeith Randall
2020-06-03cmd/compile: test that equality is evaluated in orderKeith Randall
2020-05-31runtime: fix race condition between timer and event handlerRichard Musiol
2020-05-29cmd/compile: fix incorrect rewriting to if conditionXiangdong Ji
2020-05-14cmd/compile: add test for issue 37246Josh Bleecher Snyder
2020-05-14cmd/compile: fix tuple selector bug in CSE passMichael Munday
2020-05-11cmd/compile: in prove, zero right shifts of positive int by #bits - 1Keith Randall
2020-05-08cmd/compile: improve error when setting unexported fieldsEmmanuel T Odeke
2020-05-08cmd/compile: omit file:pos for non-existent errorsEmmanuel T Odeke
2020-05-07cmd/compile: optimize make+copy pattern to avoid memclrMartin Möhrmann
2020-05-06cmd/compile: do not emit code for discardable blank fieldsCuong Manh Le
2020-05-05cmd/compile: restrict bit test rewrite rulesKeith Randall
2020-04-30cmd/compile: add indexed memory modification ops to amd64Keith Randall
2020-04-30cmd/compile: add indexed load+op operations to amd64Keith Randall
2020-04-30Revert "cmd/compile: omit file:pos for non-existent, permission errors"Austin Clements
2020-04-30cmd/compile: omit file:pos for non-existent, permission errorsEmmanuel T Odeke
2020-04-24cmd/compile: optimize Move with all-zero ro sym src to ZeroJosh Bleecher Snyder
2020-04-23cmd/compile: use fixVariadicCall in escape analysisMatthew Dempsky
2020-04-23cmd/compile: optimize x & 1 != 0 to x & 1 on amd64Josh Bleecher Snyder
2020-04-22cmd/compile: clean up codegen for branch-on-carry on s390xMichael Munday
2020-04-21cmd/compile: more precise analysis of method valuesMatthew Dempsky
2020-04-21cmd/compile: optimize comparisons with immediates on s390xMichael Munday
2020-04-21cmd/compile: detect and diagnose invalid //go: directive placementRuss Cox
2020-04-21test/codegen, runtime/pprof, runtime: apply fmtalex-semenyuk