1. 09 May, 2014 4 commits
    • Josh Bleecher Snyder's avatar
      cmd/gc: don't give credit for NOPs during register allocation · 1848d714
      Josh Bleecher Snyder authored
      The register allocator decides which variables should be placed into registers by charging for each load/store and crediting for each use, and then selecting an allocation with minimal cost. NOPs will be eliminated, however, so using a variable in a NOP should not generate credit.
      
      Issue 7867 arises from attempted registerization of multi-word variables because they are used in NOPs. By not crediting for that use, they will no longer be considered for registerization.
      
      This fix could theoretically lead to better register allocation, but NOPs are rare relative to other instructions.
      
      Fixes #7867.
      
      LGTM=rsc
      R=rsc
      CC=golang-codereviews
      https://golang.org/cl/94810044
      1848d714
    • Robert Hencke's avatar
      cmd/go: mark regexp as dependency of testmain · 52961b90
      Robert Hencke authored
      Fixes #6844.
      
      LGTM=rsc
      R=golang-codereviews, rsc
      CC=golang-codereviews
      https://golang.org/cl/97840043
      52961b90
    • Russ Cox's avatar
      testing: write profiles on failure · 21e75b32
      Russ Cox authored
      Fixes #7901.
      
      LGTM=r
      R=r
      CC=golang-codereviews
      https://golang.org/cl/90930044
      21e75b32
    • Mikio Hara's avatar
      net: drop flakey TestDialFailPDLeak · f40f0b26
      Mikio Hara authored
      TestDialFailPDLeak was created for testing runtime-integrated netwrok
      poller stuff and used during Go 1.2 development cycle. Unfortunately
      it's still flakey because it depends on MemStats of runtime, not
      pollcache directly, and MemStats accounts and revises its own stats
      occasionally.
      
      For now the codepaths related to runtime-intergrated network poller
      are pretty stable, so removing this test case never suffers us.
      
      Fixes #6553.
      
      LGTM=josharian, iant
      R=iant, josharian
      CC=golang-codereviews
      https://golang.org/cl/98080043
      f40f0b26
  2. 08 May, 2014 4 commits
  3. 07 May, 2014 14 commits
  4. 06 May, 2014 3 commits
  5. 05 May, 2014 6 commits
  6. 02 May, 2014 6 commits
  7. 01 May, 2014 3 commits