1. b6dc3e6 cmd/compile: fix liveness computation for heap-escaped parameters by Russ Cox · 9 years ago
  2. d3c79d3 cmd/compile/internal/gc: remove oconv(op, 0) calls by Dave Cheney · 9 years ago
  3. 8f2e780 cmd/compile/internal: unexport gc.Oconv by Dave Cheney · 9 years ago
  4. 40f1d0c cmd/compile: split TSLICE into separate Type kind by Matthew Dempsky · 9 years ago
  5. 980ab12 cmd/compile/internal/gc: change flags to bool where possible by Matthew Dempsky · 9 years ago
  6. c6e11fe cmd: add new common architecture representation by Matthew Dempsky · 9 years ago
  7. 00e5a68 cmd/compile: more Isfoo Type cleanups by Matthew Dempsky · 9 years ago
  8. 3a0783c cmd/compile: use NumElem instead of Type.Bound by Josh Bleecher Snyder · 9 years ago
  9. e76fc1b cmd/compile: use t.IsFoo() instead of Isfoo[t.Etype] by Matthew Dempsky · 9 years ago
  10. 1624a9c cmd/compile: get rid of redundant Type helper functions by Matthew Dempsky · 9 years ago
  11. 8640b51 cmd/compile: add Type.Elem by Josh Bleecher Snyder · 9 years ago
  12. 62dddd4 cmd/compile: rename Field's Width field to Offset by Matthew Dempsky · 9 years ago
  13. edca4cd cmd/compile/internal/gc: remove remaining Nod(OXXX, ...) by Dave Cheney · 9 years ago
  14. d325387 cmd/compile: change Mp{int,flt} functions into methods by Matthew Dempsky · 9 years ago
  15. 060a691 cmd/compile: remove most of the Lookupf users and garbage by Brad Fitzpatrick · 9 years ago
  16. 5f525ca cmd/compile: change ODOT and friends to use Sym, not Right by Ian Lance Taylor · 9 years ago
  17. f6bca3f cmd/compile: eliminate a bunch of IterFields/IterMethods calls by Matthew Dempsky · 9 years ago
  18. 6314202 cmd: collapse internal/obj/fmt.go into compile/internal/gc/fmt.go by Matthew Dempsky · 9 years ago
  19. 2e93690 cmd/compile: replace TFIELD kind with separate Field type by Matthew Dempsky · 9 years ago
  20. a4e31d4 cmd/compile: remove amd64 code from package gc and the core gen tool by Michael Pratt · 9 years ago
  21. def9c0b cmd/compile: remove Label.Link field and lastlabel global var by Robert Griesemer · 9 years ago
  22. fe5b4a6 cmd/compile: more use of IterXXX functions by Matthew Dempsky · 9 years ago
  23. f444b8a cmd/compile: remove all remaining nodeSeq code by Ian Lance Taylor · 9 years ago
  24. d20b92e cmd/compile: replace more unnecessary **Type with *Type by Matthew Dempsky · 9 years ago
  25. 38921b3 cmd/compile: rewrite code to omit many nodeSeq calls by Ian Lance Taylor · 9 years ago
  26. db506fe cmd/compile: change get{this,inarg,outarg}x? into methods by Matthew Dempsky · 9 years ago
  27. c4012b6 cmd/compile: remove nodesOrNodeList outside of syntax.go by Ian Lance Taylor · 9 years ago
  28. c3dfad5 cmd/compile: change Oconv to take an Op parameter by Matthew Dempsky · 9 years ago
  29. dafbcf6 cmd/compile: remove syslook's copy parameter by Matthew Dempsky · 9 years ago
  30. bf39098 cmd/compile: convert cgen/gen/pgen and friends to nodeListSeq by Ian Lance Taylor · 9 years ago
  31. c41608f cmd/compile: remove more superfluous int(lineno) conversions by Robert Griesemer · 9 years ago
  32. 2faf5bc cmd/compile: introduce linestr helper to simplify line reporting by Robert Griesemer · 9 years ago
  33. b83f397 cmd/compile: use int32 for line numbers consistently by Robert Griesemer · 9 years ago
  34. 9d854fd Merge branch 'dev.ssa' into mergebranch by Keith Randall · 9 years ago
  35. 4fffd456 [dev.ssa] Merge remote-tracking branch 'origin/master' into ssamerge by Keith Randall · 9 years ago
  36. 1d5001a cmd/compile: change Node.Nbody, Func.Inl from *NodeList to Nodes by Ian Lance Taylor · 9 years ago
  37. 188e3d2 cmd/compile: change Func.{Enter,Exit} from NodeList to slice by Ian Lance Taylor · 9 years ago
  38. b66a892 cmd/compile: change Func.{Dcl,Inldcl} from NodeList to slice by Ian Lance Taylor · 9 years ago
  39. 80bc512 [dev.ssa] Merge remote-tracking branch 'origin/master' into mergebranch by Keith Randall · 9 years ago
  40. e3033fc cmd/compile: add write barrier to type switch by Keith Randall · 9 years ago
  41. eb0cff9 [dev.ssa] Merge remote-tracking branch 'origin/master' into mergebranch by Keith Randall · 9 years ago
  42. 1d901f5 cmd/compile: remove -h spam by Russ Cox · 9 years ago
  43. 23d5810 [dev.ssa] Merge remote-tracking branch 'origin/master' into mergebranch by Keith Randall · 9 years ago
  44. 1ac637c cmd/compile: recognize Syscall-like functions for liveness analysis by Russ Cox · 9 years ago
  45. 4304fbc [dev.ssa] Merge remote-tracking branch 'origin/master' into mergebranch by Keith Randall · 9 years ago
  46. 8e7a3ea cmd/compile/internal: named types for Etype and Op in struct Node by Marvin Stenger · 10 years ago
  47. 6327e8d cmd/compile/internal/gc: update old c-style comments by Jeremy Jackins · 9 years ago
  48. 0ec72b6 [dev.ssa] Merge remote-tracking branch 'origin/master' into mergebranch by Keith Randall · 10 years ago
  49. 8712e18 cmd/compile/internal/gc: convert Label.Used to bool by Dave Cheney · 10 years ago
  50. dd42eff cmd/compile/internal/gc: use slice instead of NodeList for Label.Use by Håvard Haugen · 10 years ago
  51. e8da46f cmd/compile/internal/gc: remove dead code found by vet by Håvard Haugen · 10 years ago
  52. 3c9fa38 cmd/compile/internal/gc: rename Fatal to Fatalf by Håvard Haugen · 10 years ago
  53. 6b41665 [dev.ssa] cmd/compile: implement static data generation by Josh Bleecher Snyder · 10 years ago
  54. 61aa095 [dev.ssa] cmd/compile: implement control flow handling by Josh Bleecher Snyder · 10 years ago
  55. 81d5810 cmd/compile: merge Node.Opt and Node.Val behind access methods by Russ Cox · 10 years ago
  56. fd2154f cmd/compile: move Node.Curfn into both Node.Func and Node.Name by Russ Cox · 10 years ago
  57. 3c3019a cmd/compile: move Node.Param, Node.Funcdepth into Node.Name; remove Node.Walkgen by Russ Cox · 10 years ago
  58. 60e5f5b cmd/compile: remove Node.Alloc by Russ Cox · 10 years ago
  59. 71080fb cmd/compile: remove Val.Ctype by Russ Cox · 10 years ago
  60. 4fdd536 cmd/compile: move Node.Defn to Node.Name.Defn by Russ Cox · 10 years ago
  61. 66be148 cmd/compile: remove Node.Ntest, Node.Stkdelta by Russ Cox · 10 years ago
  62. ffef180 cmd/compile: remove Node.Nincr, Node.Nelse, Node.Initplan by Russ Cox · 10 years ago
  63. bd8bb67 cmd/internal/gc: unembed Param field by Josh Bleecher Snyder · 10 years ago
  64. 17eba6e cmd/compile, cmd/link: create from 5g, 5l, etc by Russ Cox · 10 years ago[Renamed from src/cmd/internal/gc/gen.go]
  65. 8fa14ea cmd/internal/gc: unembed Name field by Josh Bleecher Snyder · 10 years ago
  66. 97494a4 Revert "cmd/internal/gc: ignore declarations of types for goto validation" by Brad Fitzpatrick · 10 years ago
  67. 5726af5 cmd/internal/gc: ignore declarations of types for goto validation by Daniel Morsing · 10 years ago
  68. 13485be cmd/internal/gc: convert Val.U to interface{} by Josh Bleecher Snyder · 10 years ago
  69. 3c06cff cmd/internal/gc: explicitly set zero bool Val by Josh Bleecher Snyder · 10 years ago
  70. b3fb0fd cmd/internal/gc: fix vet detected printf problems by Shenghou Ma · 10 years ago
  71. d447279 cmd/internal/gc: optimize slice + write barrier by Russ Cox · 10 years ago
  72. f8d14fc cmd/internal/gc: add backend ginscmp function to emit a comparison by Russ Cox · 10 years ago
  73. 7fbb1b3 cmd/internal/gc: improve flow of input params to output params by David Chase · 10 years ago
  74. 0ad4f8b cmd/internal/gc: emit write barriers at lower level by Russ Cox · 10 years ago
  75. 04829a4 cmd/9g, etc: remove // fallthrough comments by Josh Bleecher Snyder · 10 years ago
  76. 35b1dcc cmd/internal/gc: clean up componentgen by Russ Cox · 10 years ago
  77. 17228f4 cmd/internal/gc: make use of new String methods in prints by Russ Cox · 10 years ago
  78. 4a7e5bc cmd/internal/gc: clean up bgen by Josh Bleecher Snyder · 10 years ago
  79. 888d44d cmd/internal/gc, cmd/7g: use zero register in Componentgen by Dave Cheney · 10 years ago
  80. 4b21be4 cmd/internal/gc: clean up Componentgen by Dave Cheney · 10 years ago
  81. 92c826b cmd/internal/gc: inline runtime.getg by Russ Cox · 10 years ago
  82. 75883ba cmd/internal/gc: convert yet more Node fields to bools by Josh Bleecher Snyder · 10 years ago
  83. 92dba0d cmd/internal/gc: use hardware instruction for math.Sqrt (amd64/arm) by Russ Cox · 10 years ago
  84. 3ed9e4c cmd/internal/gc: unembed Node.Func by Josh Bleecher Snyder · 10 years ago
  85. b09925b cmd/5g etc: merge simple case expressions onto fewer lines by Josh Bleecher Snyder · 10 years ago
  86. 94410c7 cmd/gc: teach componentgen about string constants by Josh Bleecher Snyder · 10 years ago
  87. 4224d81 cmd/internal/gc: inline x := y.(*T) and x, ok := y.(*T) by Russ Cox · 10 years ago
  88. b115c35 cmd/internal/gc: move cgen, regalloc, et al to portable code by Russ Cox · 10 years ago
  89. b960263 cmd/internal/gc: move componentgen into portable code by Russ Cox · 10 years ago
  90. 8b3670f cmd/internal/gc: remove namebuf variable by Matthew Dempsky · 10 years ago
  91. 44e9031 cmd/internal/gc: more Node cleanups by Dave Cheney · 10 years ago
  92. 175929b cmd/5g etc: mechanical cleanup by Russ Cox · 10 years ago
  93. 25da594 cmd/{5,6,8,9}g, cmd/internal/gc: use bools for is* and okfor* by Josh Bleecher Snyder · 10 years ago
  94. 382b44e [dev.cc] cmd/5g etc: code cleanup: delay var decls and eliminate dead code by Russ Cox · 10 years ago
  95. dc7b54b [dev.cc] cmd/internal/obj, cmd/internal/gc, new6g: reconvert by Russ Cox · 10 years ago
  96. 8c195bd [dev.cc] cmd/internal/gc, cmd/new6g etc: convert from cmd/gc, cmd/6g etc by Russ Cox · 10 years ago