1. 5263198 runtime: a few cleanups. by Keith Randall · 11 years ago
  2. c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago[Renamed from src/pkg/runtime/asm_amd64.s]
  3. 8473695 runtime: fix panic/wrapper/recover math by Russ Cox · 11 years ago
  4. f8f630f runtime: use reflect.call during panic instead of newstackcall by Russ Cox · 11 years ago
  5. cb040d5 runtime: use new #include "textflag.h" by Russ Cox · 11 years ago
  6. d16a2ad runtime: do not stop traceback at onM by Russ Cox · 11 years ago
  7. 91a670d runtime: convert netpoll to Go by Dmitriy Vyukov · 11 years ago
  8. 32ecf57 runtime: reject onM calls from gsignal stack by Russ Cox · 11 years ago
  9. cb76724 runtime: refactor/fix asmcgocall/asmcgocall_errno by Russ Cox · 11 years ago
  10. f440737 runtime: deferproc/deferreturn in Go by Keith Randall · 11 years ago
  11. 54138e1 cmd/cgo, runtime: write cgo stub wrappers in Go, not C by Russ Cox · 11 years ago
  12. 012ceed runtime: make onM and mcall take Go func values by Russ Cox · 11 years ago
  13. 7ba41e9 runtime: convert a few traceback-related functions from proc.c to traceback.go by Russ Cox · 11 years ago
  14. 3306d11 runtime: unify fastrand1 and fastrand2 by Keith Randall · 11 years ago
  15. 47d6af2 runtime: convert chanrecv to Go by Keith Randall · 11 years ago
  16. d4df63c runtime: convert type algorithms to Go by Dmitriy Vyukov · 11 years ago
  17. 3a7f664 runtime: convert lock*.c to Go by Russ Cox · 11 years ago
  18. 6179aca runtime: convert runtime1.goc, noasm_arm.goc to Go by Russ Cox · 11 years ago
  19. d21638b cmd/cc, runtime: preserve C runtime type names in generated Go by Russ Cox · 11 years ago
  20. 25f6b02 cmd/cc, runtime: convert C compilers to use Go calling convention by Russ Cox · 11 years ago
  21. 39ffa8b runtime: convert Stack to Go. by Rémy Oudompheng · 11 years ago
  22. f448578 runtime: please vet by Dmitriy Vyukov · 11 years ago
  23. 684de04 runtime: convert common scheduler functions to Go by Dmitriy Vyukov · 11 years ago
  24. 339a24d runtime: fix typo in comment by Josh Bleecher Snyder · 11 years ago
  25. ff3fa1b runtime: make the GC bitmap a byte array by Dmitriy Vyukov · 11 years ago
  26. 9aa1e9a runtime: avoid using address as constant in amd64 assembly by Russ Cox · 11 years ago
  27. 7aa4e5a runtime: convert equality functions to Go by Keith Randall · 11 years ago
  28. a2a9768 runtime: convert hash functions to Go calling convention. by Keith Randall · 11 years ago
  29. aff7883 runtime: fix assembler macro definitions to be consistent in use of center-dot by Rob Pike · 11 years ago
  30. 4aa5043 runtime: rewrite malloc in Go. by Keith Randall · 11 years ago
  31. 722764b runtime: make go vet happy by Keith Randall · 11 years ago
  32. 0c6b55e runtime: convert map implementation to Go. by Keith Randall · 11 years ago
  33. 89f185f all: remove 'extern register M *m' from runtime by Russ Cox · 11 years ago
  34. 14c8143 runtime: fix gogetcallerpc. by Keith Randall · 11 years ago
  35. 61dca94 runtime: implement string ops in Go by Keith Randall · 11 years ago
  36. b36ed90 runtime: implement eqstring in assembly. by Keith Randall · 11 years ago
  37. cee8bca runtime: provide gc maps for the reflect.callXX frames. by Keith Randall · 11 years ago
  38. 350a8fc runtime: make MemStats.LastGC Unix time again by Dmitriy Vyukov · 11 years ago
  39. 72c5d5e reflect, runtime: fix crash in GC due to reflect.call + precise GC by Russ Cox · 11 years ago
  40. 6c7cbf0 runtime: get rid of most uses of REP for copying/zeroing. by Keith Randall · 11 years ago
  41. c2dd33a cmd/ld: clear unused ctxt before morestack by Russ Cox · 11 years ago
  42. da7cf0b runtime: faster memclr on x86. by Keith Randall · 11 years ago
  43. 9cbd2fb runtime: remove locks from netpoll hotpaths by Dmitriy Vyukov · 11 years ago
  44. a46b434 runtime: add support for GOOS=solaris by Aram Hăvărneanu · 11 years ago
  45. 7276c02 runtime, cmd/gc, cmd/ld: ignore method wrappers in recover by Russ Cox · 12 years ago
  46. 32b770b runtime: jump to badmcall instead of calling it. by Keith Randall · 12 years ago
  47. a97a91d runtime: Record jmpdefer's argument size. Fixes bug 6055. by Keith Randall · 12 years ago
  48. 5a54696 cmd/ld: Put the textflag constants in a separate file. by Keith Randall · 12 years ago
  49. 12e46e4 runtime: don't mark the new call trampolines as NOSPLIT. by Keith Randall · 12 years ago
  50. 598c789 strings: use runtime assembly for IndexByte by Brad Fitzpatrick · 12 years ago
  51. 9cd5706 runtime: reimplement reflect.call to not use stack splitting. by Keith Randall · 12 years ago
  52. e2a1bd6 bytes: move IndexByte assembly to pkg runtime by Brad Fitzpatrick · 12 years ago
  53. e84d9e1 runtime: do not split stacks in syscall status by Dmitriy Vyukov · 12 years ago
  54. f011282 runtime: more cgocallback_gofunc work by Russ Cox · 12 years ago
  55. cefdb9c runtime: fix windows build by Russ Cox · 12 years ago
  56. dba623b runtime: reduce frame size for runtime.cgocallback_gofunc by Russ Cox · 12 years ago
  57. 58f12ff runtime: handle morestack/lessstack in stack trace by Russ Cox · 12 years ago
  58. 9ddfb64 runtime: record argument size in assembly functions by Russ Cox · 12 years ago
  59. 5d363c6 cmd/ld, runtime: new in-memory symbol table format by Russ Cox · 12 years ago
  60. fb63e4f runtime: make cas64 like cas32 and casp by Russ Cox · 12 years ago
  61. f0d73fb runtime: use gp->sched.sp for stack overflow check by Russ Cox · 12 years ago
  62. 6fa3c89 runtime: record proper goroutine state during stack split by Russ Cox · 12 years ago
  63. 0627248 runtime: update runtime·gogo comment in asm files by Ian Lance Taylor · 12 years ago
  64. d67e7e3 runtime: add lr, ctxt, ret to Gobuf by Russ Cox · 12 years ago
  65. 6120ef0 runtime: rename _rt0_$GOARCH to _rt0_go by Russ Cox · 12 years ago
  66. 528534c runtime: fix comments (g->gobuf became g->sched long ago) by Russ Cox · 12 years ago
  67. f5becf4 runtime: add stackguard0 to G by Dmitriy Vyukov · 12 years ago
  68. ee66972 runtime: Optimize aeshash a bit. Use a better predicted branch by Keith Randall · 12 years ago
  69. b3946dc runtime/bytes: fast Compare for byte arrays and strings. by Keith Randall · 12 years ago
  70. 3d5daa2 runtime: Implement faster equals for strings and bytes. by Keith Randall · 12 years ago
  71. 6a70f9d runtime: pass setmg function to cgo_init by Russ Cox · 12 years ago
  72. 07720b6 build: update assembly variable names for vet by Russ Cox · 12 years ago
  73. db53d97 runtime: Use aligned loads for AES key schedule. by Keith Randall · 12 years ago
  74. a5d4024 runtime: faster & safer hash function by Keith Randall · 12 years ago
  75. 36b414f runtime: change amd64 startup convention by Russ Cox · 12 years ago
  76. add3349 runtime: add atomic xchg64 It will be handy for network poller. by Dmitriy Vyukov · 12 years ago
  77. f8d49b5 runtime/cgo: make symbol naming consistent by Russ Cox · 12 years ago
  78. 3d2dfc5 runtime: add cgocallback_gofunc that can call Go func value by Russ Cox · 12 years ago
  79. 6066fdc cmd/6g, cmd/8g: switch to DX for indirect call block by Russ Cox · 12 years ago
  80. 1903ad7 cmd/gc, reflect, runtime: switch to indirect func value representation by Russ Cox · 12 years ago
  81. 6c97639 runtime: allow cgo callbacks on non-Go threads by Russ Cox · 12 years ago
  82. 7f075ec runtime: increase stack frame during cgo call on windows/amd64 by Alex Brainman · 13 years ago
  83. a72bebf src: Add support for 64-bit version of Plan 9 by Akshat Kumar · 13 years ago
  84. d42495a cmd/cc: add PREFETCH built-in (like SET, USED) by Russ Cox · 13 years ago
  85. 35d260f 6a, 6l: add PREFETCH instructions by Russ Cox · 13 years ago
  86. 4667571 runtime: add 64-bit atomics by Dmitriy Vyukov · 13 years ago
  87. 9e5db8c 5l, 6l, 8l: fix stack split logic for stacks near default segment size by Russ Cox · 13 years ago
  88. 36aa7d4 runtime: inline calls to notok by Russ Cox · 13 years ago
  89. 9b73238 cgo, runtime: diagnose callback on non-Go thread by Russ Cox · 13 years ago
  90. 1707a99 runtime: on 386, fix FP control word on all threads, not just initial thread by Russ Cox · 13 years ago
  91. 8e765da runtime: add runtime.cputicks() and seed fastrand with it by Damian Gryski · 13 years ago
  92. 8d6958f misc/cgo/test: make tests run on windows by Alex Brainman · 13 years ago
  93. 5588940 runtime: separate out auto-generated files, take 2 by Russ Cox · 13 years ago
  94. 86dcc43 runtime: hg revert -r 6ec0a5c12d75 by Russ Cox · 13 years ago
  95. bd9243d runtime: separate out auto-generated files by Russ Cox · 13 years ago
  96. 851f301 runtime: make more build-friendly by Russ Cox · 13 years ago[Renamed (99%) from src/pkg/runtime/amd64/asm.s]
  97. 428062d ld: increase default stack size on Windows for cgo Fixes #2437. by Dmitriy Vyukov · 13 years ago
  98. fbfed49 cgo: fix g0 stack guard by Dmitriy Vyukov · 13 years ago
  99. 6808da0 runtime: lock the main goroutine to the main OS thread during init by Russ Cox · 13 years ago
  100. d1bafff runtime: run goroutines during init by Russ Cox · 13 years ago