1. 37b0a15 gocore,core: move to internal package by Heschi Kreinick · 6 years ago
  2. cb5e6d5 cmd/viewcore: use cobra for flexible command line interface by Hana (Hyang-Ah) Kim · 7 years ago
  3. d098ff1 cmd/viewcore/vendor: vendor third-party pkgs for viewcore by Hana Kim · 6 years ago
  4. 2f2787e server: When we catch SIGPROF, re-send it to the ptraced process. by John Dethridge · 7 years ago
  5. 9a68d5c gocore: work around bad sudog dwarf by Heschi Kreinick · 7 years ago
  6. f7195fa gocore: skip non-Go CUs by Heschi Kreinick · 7 years ago
  7. 7fa577e gocore: ignore unmapped parts of spans by Keith Randall · 7 years ago
  8. ab7e79f debug/cmd/viewcore: add a simple read command by Keith Randall · 7 years ago
  9. cfd1534 debug/cmd/viewcore: fix printing of offsets by Keith Randall · 7 years ago
  10. fa2f8f4 gocore: fix direct interface handling by Heschi Kreinick · 7 years ago
  11. 2bb7a33 debug/gocore: handle 1.11 sparse heaps by Keith Randall · 7 years ago
  12. 6438784 CONTRIBUTING.md: remove note about not accepting Pull Requests by Andrew Bonventre · 7 years ago
  13. d9f7549 debug/gocore: defend againt partial DWARF records by Keith Randall · 7 years ago
  14. d031831 debug/cmd/viewcore: coreview -> viewcore by Keith Randall · 7 years ago
  15. 642e604 cmd: add coreview tool by Keith Randall · 7 years ago
  16. a6b4fe6 gocore: convert dwarf names to runtime more accurately by Heschi Kreinick · 7 years ago
  17. 5455439 gocore: add dominator tree computation by Heschi Kreinick · 7 years ago
  18. 3663351 debug/gocore: document that a gocore.Object is reachable by Keith Randall · 7 years ago
  19. e07cddb gocore: fix removal of package paths by Keith Randall · 7 years ago
  20. d4ba164 macho: fix tests by Keith Randall · 7 years ago
  21. 9551599 gocore: distinguish released memory by Keith Randall · 7 years ago
  22. 9309768 gocore: add function to find the dynamic type of an interface by Keith Randall · 7 years ago
  23. ffbbace gocore: add gocore reader by Keith Randall · 7 years ago
  24. 0e78001 x/debug: handle page size differences by Keith Randall · 7 years ago
  25. 6eba398 x/debug: more robust core dump handling by Keith Randall · 7 years ago
  26. 0d8c151 x/debug/core: add initial implementation by Keith Randall · 7 years ago
  27. f11d3bc x/debug/dwarf: don't panic on unsupported type tags by Garret Kelly · 7 years ago
  28. e48e171 x/debug/dwarf: support new AttrGoEmbed field of struct members by aarzilli · 8 years ago
  29. fb50892 x/debug: update dwarf tests. by jcd · 8 years ago
  30. 56a7ccb Save value of AttrName in .Name for all types by Alessandro Arzilli · 9 years ago
  31. 846e2cd x/debug: changes to peek_test to support the current compiler. by jcd · 9 years ago
  32. 4cc20ad x/debug: support changes to the internal representation of interfaces' types. by jcd · 9 years ago
  33. da1aebc x/debug: speed up various DWARF information queries. by jcd · 9 years ago
  34. 0a1bed4 x/debug: add optional flags to peek_test to allow it to use existing binaries for the test, instead of rebuilding them. by jcd · 9 years ago
  35. 97c674d x/debug: read goroutines from slice runtime.allgs by jcd · 9 years ago
  36. e5cc949 x/debug: reorganize directory structure. by jcd · 9 years ago
  37. d97b78e x/debug: read stack frames of goroutines. by jcd · 9 years ago
  38. 324290c x/debug: add a function for reading the current (not-dead) goroutines from a target program. by jcd · 9 years ago
  39. 3119cb5 x/debug: handle some more cases for struct member offset encoding in the DWARF parser. by jcd · 9 years ago
  40. 7251105 x/debug: add syntax for getting the value of an arbitrary symbol in the binary. by jcd · 9 years ago
  41. 450bc3a x/debug: add support for selector expressions on structs and pointers to structs. by jcd · 9 years ago
  42. 349b62f x/debug: change source file disambiguation heuristic. by jcd · 9 years ago
  43. 7c073c4 x/debug: and support for index and slice expressions. by jcd · 9 years ago
  44. 64f262b x/debug: add expression types &x and *x. by jcd · 9 years ago
  45. 9ace3c3 x/debug: add an expression evaluator. by jcd · 9 years ago
  46. b614b86 x/debug: Add types for representing Func and Interface values, and add an address field to Channel. by jcd · 9 years ago
  47. 97a893d x/debug: support getting values of channel type. by jcd · 9 years ago
  48. 67d5dd7 x/debug: support getting values of string type. by jcd · 9 years ago
  49. 674b2f9 x/debug: support getting values of map type. by jcd · 9 years ago
  50. cb3270e x/debug: support getting values of slice type. by jcd · 9 years ago
  51. 182745d x/debug: use arch's functions for reading floats and complex numbers. by jcd · 9 years ago
  52. daa758d x/debug: generalize map-reading code and move it from print.go to peek.go so it can be used elsewhere. by jcd · 9 years ago
  53. 90ce606 x/debug: allow various internal struct fields to be signed or unsigned. by jcd · 9 years ago
  54. 114a13d x/debug: change various peeking functions to be methods of Server instead of Printer so they can be used elsewhere. by jcd · 9 years ago
  55. 43272c4 x/debug: just use uint64 for addresses in debugged programs. by jcd · 9 years ago
  56. 6e141fa x/debug/dwarf: support DW_CFA_offset_extended in DWARF call frame information parsing. by jcd · 9 years ago
  57. d25f0cd x/debug: implement server.handleBreakpointAtLine. Add a function to x/debug/dwarf for converting source lines to addresses. by jcd · 9 years ago
  58. 3606733 ogle: add BreakpointAtFunction and BreakpointAtLine, for setting a breakpoint at the start of a function or at a particular source line. by jcd · 9 years ago
  59. 2dde1ba ogle/program: in stack frames, add the function name, parameters, and local variables. by jcd · 9 years ago
  60. f44ba12 debug: add an implementation of program.Program for running and debugging programs locally, instead of through a proxy. by jcd · 9 years ago
  61. 2aa115c debug: Implement passing of command-line arguments to the debugged program. by jcd · 9 years ago
  62. 784917c debug: get values of more types: uintptr, bool, float, complex, pointer, array, and struct. by jcd · 9 years ago
  63. b954933 debug/dwarf: compute ByteSize for more DWARF types by jcd · 9 years ago
  64. fec2dc0 debug/dwarf: add an Offset field to CommonType, containing the DWARF offset of the type's entry. by jcd · 9 years ago
  65. 9c0e15c debug: add VarByName and Value methods to Program. by jcd · 10 years ago
  66. f386e21 debug: better computation of stride for ArrayType by jcd · 10 years ago
  67. 9fb920d debug: float and complex decoding functions for the Architecture type by jcd · 10 years ago
  68. 41b6e7a debug: add DeleteBreakpoints function by jcd · 10 years ago
  69. c673d3f debug: Allow internal slice struct fields to be signed or unsigned ints. by jcd · 10 years ago
  70. 6cc5cd5 debug: add codereview.cfg by Josh Bleecher Snyder · 10 years ago
  71. 78adbef doc: add CONTRIBUTING.md by Andrew Gerrand · 10 years ago
  72. d050657 debug: print interfaces. Add InterfaceType to DWARF parser. by John Dethridge · 10 years ago
  73. dc272d2 debug: Print information about channels. Add ChanType to DWARF parser. by John Dethridge · 10 years ago
  74. c44fc2b debug: (follow-up to 2712) by John Dethridge · 10 years ago
  75. 85d72e6 debug: Delete the cache. It's unused at the moment, and I'll write a better one later. by John Dethridge · 10 years ago
  76. 6006ad9 debug: update Ogle to read Go 1.4 maps. by John Dethridge · 10 years ago
  77. 42e21cb debug: Convert demo into a test. by John Dethridge · 10 years ago
  78. 5eae403 debug: Make the ogler demo check that the values it reads are correct. by John Dethridge · 10 years ago
  79. 28de509 debug: Add a function for computing the stride of an array. by John Dethridge · 10 years ago
  80. de7a5e3 debug: move the code for peeking values of various types into separate functions. by John Dethridge · 10 years ago
  81. 935f2a1 debug: Prints more specific error messages. by John Dethridge · 10 years ago
  82. 512354e debug: deal with more types, change "visited" check. by John Dethridge · 10 years ago
  83. aa01988 debug: make type "address" which the printer uses to refer to addresses and offsets in the tracee. by John Dethridge · 10 years ago
  84. a69fce9 debug: fix (*Architecture).IntN by John Dethridge · 10 years ago
  85. 049e4f4 debug: demo program that uses Ogle library. by John Dethridge · 10 years ago
  86. a035b78 debug: move some dirs from debug/ogle/ to debug/. Fix import order. by John Dethridge · 10 years ago
  87. d6f6c5d debug: update import paths, add import comments by John Dethridge · 10 years ago
  88. d0ba87e debug: move Ogle files to ogle/ by John Dethridge · 10 years ago
  89. d759e28 remove codereview.cfg. by John Dethridge · 10 years ago
  90. 04548c7 ogle/debug/dwarf: add UnspecifiedType by Rob Pike · 10 years ago
  91. eace5f2 ogle/debug/dwarf: fix a logic typo. by Nigel Tao · 10 years ago
  92. 34b049f ogle/program: add pc/sp/file/line info to the program.Frame structure. by Nigel Tao · 10 years ago
  93. ac25ac5 ogle/program/server: update topOfStack to work with Go 1.4 binaries. by Nigel Tao · 10 years ago
  94. 3605d63 ogle/program: return the PCs of the breakpoints set. by Nigel Tao · 10 years ago
  95. 1d075a8 ogle/program/server: allow adding and removing breakpoints by Nigel Tao · 10 years ago
  96. c053cc9 ogleproxy: fix duplicate "Usage". flag.Usage already prints "Usage". by Nigel Tao · 10 years ago
  97. 04cbc74 client: add an OgleproxyCmd variable. by Nigel Tao · 10 years ago
  98. c2d9a23 dwarf: fix broken tests, due to name change in by Nigel Tao · 10 years ago
  99. ffdfb50 ogle/program/server: do less I/O when printing maps by Rob Pike · 10 years ago
  100. cff4c77 ogle/debug/dwarf: copy update to ArrayType from main repo. by Rob Pike · 10 years ago