An error occurred fetching the project authors.
  1. 07 Jun, 2011 1 commit
  2. 03 Jun, 2011 1 commit
  3. 02 Jun, 2011 1 commit
  4. 28 Apr, 2011 1 commit
  5. 23 Apr, 2011 1 commit
  6. 09 Apr, 2011 1 commit
    • Russ Cox's avatar
      ld: 25% faster · 1bc84b7e
      Russ Cox authored
      The ld time was dominated by symbol table processing, so
        * increase hash table size
        * emit fewer symbols in gc (just 1 per string, 1 per type)
        * add read-only lookup to avoid creating spurious symbols
        * add linked list to speed whole-table traversals
      
      Breaks dwarf generator (no idea why), so disable dwarf.
      
      Reduces time for 6l to link godoc by 25%.
      
      R=ken2
      CC=golang-dev
      https://golang.org/cl/4383047
      1bc84b7e
  7. 11 Mar, 2011 1 commit
  8. 03 Feb, 2011 2 commits
    • Russ Cox's avatar
      gc, ld: package name main no longer reserved · c1a695c1
      Russ Cox authored
      R=ken2
      CC=golang-dev
      https://golang.org/cl/4128054
      c1a695c1
    • Russ Cox's avatar
      gc, ld: detect stale or incompatible object files · 3f61184e
      Russ Cox authored
      The object files begin with a header that is
      
              $GOARCH
      
      on a line by itself.  This CL changes that header to
      
              go object $GOOS $GOARCH release.2011-01-01 4567+
      
      where the final two fields are the most recent release
      tag and the current hg version number.
      
      All objects imported into a Go compilation or linked into an
      executable must have the same header line, and that header
      line must match the compiler and linker versions.
      
      The effect of this will be that if you update and run all.bash
      and then try to link in objects compiled with an earlier version
      of the compiler (or invoke the wrong version of the compiler),
      you will get an error showing the different headers instead
      of perhaps silent incompatibility.
      
      Normal usage with all.bash should be unaffected, because
      all.bash deletes all the object files in $GOROOT/pkg/$GOOS_$GOARCH
      and cleans all intermediate object files before starting.
      
      This change is intended to diagnose stale objects arising when
      users maintaining alternate installation directories forget to
      rebuild some of their files after updating.
      
      It should help make the adoption of $GOPATH (CL 3780043)
      less error-prone.
      
      R=ken2, r
      CC=golang-dev
      https://golang.org/cl/4023063
      3f61184e
  9. 20 Jan, 2011 1 commit
  10. 13 Dec, 2010 1 commit
  11. 04 Nov, 2010 1 commit
  12. 28 Oct, 2010 1 commit
  13. 30 Sep, 2010 1 commit
  14. 28 Sep, 2010 1 commit
  15. 27 Sep, 2010 1 commit
  16. 24 Sep, 2010 1 commit
  17. 16 Sep, 2010 2 commits
  18. 26 Jul, 2010 1 commit
  19. 21 Jul, 2010 1 commit
  20. 17 Jul, 2010 1 commit
  21. 16 Jul, 2010 3 commits
  22. 15 Jul, 2010 1 commit
  23. 12 Jul, 2010 1 commit
  24. 14 Jun, 2010 1 commit
  25. 12 Jun, 2010 1 commit
  26. 11 Jun, 2010 1 commit
  27. 09 Jun, 2010 2 commits
    • Russ Cox's avatar
      gc: more cleanup · a2a7d473
      Russ Cox authored
       * disallow surrogate pair runes.
       * diagnose impossible type assertions
       * eliminate another static buffer.
       * do not overflow lexbuf.
       * add -u flag to disable package unsafe.
      
      R=ken2
      CC=golang-dev
      https://golang.org/cl/1619042
      a2a7d473
    • Russ Cox's avatar
      gc: new typechecking rules · 565b5dc0
      Russ Cox authored
      * Code for assignment, conversions now mirrors spec.
      * Changed some snprint -> smprint.
      * Renamed runtime functions to separate
        interface conversions from type assertions:
        convT2I, assertI2T, etc.
      * Correct checking of \U sequences.
      
      Fixes #840.
      Fixes #830.
      Fixes #778.
      
      R=ken2
      CC=golang-dev
      https://golang.org/cl/1303042
      565b5dc0
  28. 08 Jun, 2010 1 commit
  29. 21 May, 2010 1 commit
  30. 03 May, 2010 1 commit
  31. 28 Apr, 2010 1 commit
  32. 27 Apr, 2010 1 commit
  33. 11 Apr, 2010 1 commit
  34. 31 Mar, 2010 1 commit
  35. 30 Mar, 2010 1 commit