1. 11 Mar, 2015 3 commits
    • Dave Cheney's avatar
      cmd/internal/gc: more Node cleanups · e4981819
      Dave Cheney authored
      More cleanups to gc.Node
      
      - make Node.Local a boolean
      - make Type.Local a boolean
      - reduce the size of Node.Esc to a uint8
      
      Reducing the size of Node.Esc shaves ~45mb off the RSS compiling cmd/internal/gc on amd64
      
      before:
              Maximum resident set size (kbytes): 659496
      after:
              Maximum resident set size (kbytes): 612196
      
      - declare gc.Funcdepth as int32
      - declare Node.Funcdepth as int32
      
      In both cases, these were previously machine specific int types. This doesn't result in
      any memory saving at the moment due to struct padding.
      
      Change-Id: Iabef8da15e962fe8b79d7fd3d402fb26ce7ec31c
      Reviewed-on: https://go-review.googlesource.com/7261Reviewed-by: default avatarKeith Randall <khr@golang.org>
      Run-TryBot: Dave Cheney <dave@cheney.net>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      e4981819
    • Dave Cheney's avatar
      debug/elf: fix arm build · b353a695
      Dave Cheney authored
      This change adds the minimum necessary to implement applyRelocations.
      
      For adg, this code uses the switch statement.
      
      Change-Id: I0989daab8d0e36c2a4f6a315ced258b832744616
      Reviewed-on: https://go-review.googlesource.com/7266Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
      b353a695
    • Nigel Tao's avatar
      image/jpeg: support chroma hv values other than 0x11. · 782db7fc
      Nigel Tao authored
      The testdata was generated by:
      convert video-001.png tmp1.tga
      cjpeg -quality 100 -sample 2x2,1x2,1x2 tmp1.tga > video-001.221212.jpeg
      djpeg -nosmooth -targa video-001.221212.jpeg > tmp2.tga
      convert tmp2.tga video-001.221212.png
      rm tmp1.tga tmp2.tga
      
      Change-Id: Ica241dfc19b3eb47ade150bf0432373c6006c38a
      Reviewed-on: https://go-review.googlesource.com/7264Reviewed-by: default avatarRob Pike <r@golang.org>
      782db7fc
  2. 10 Mar, 2015 12 commits
  3. 09 Mar, 2015 8 commits
  4. 08 Mar, 2015 4 commits
  5. 07 Mar, 2015 3 commits
  6. 06 Mar, 2015 10 commits