1. 9c0e15c debug: add VarByName and Value methods to Program. by jcd · 9 years ago
  2. f386e21 debug: better computation of stride for ArrayType by jcd · 9 years ago
  3. 9fb920d debug: float and complex decoding functions for the Architecture type by jcd · 9 years ago
  4. 41b6e7a debug: add DeleteBreakpoints function by jcd · 9 years ago
  5. c673d3f debug: Allow internal slice struct fields to be signed or unsigned ints. by jcd · 9 years ago
  6. 6cc5cd5 debug: add codereview.cfg by Josh Bleecher Snyder · 9 years ago
  7. 78adbef doc: add CONTRIBUTING.md by Andrew Gerrand · 9 years ago
  8. d050657 debug: print interfaces. Add InterfaceType to DWARF parser. by John Dethridge · 9 years ago
  9. dc272d2 debug: Print information about channels. Add ChanType to DWARF parser. by John Dethridge · 9 years ago
  10. c44fc2b debug: (follow-up to 2712) by John Dethridge · 9 years ago
  11. 85d72e6 debug: Delete the cache. It's unused at the moment, and I'll write a better one later. by John Dethridge · 9 years ago
  12. 6006ad9 debug: update Ogle to read Go 1.4 maps. by John Dethridge · 9 years ago
  13. 42e21cb debug: Convert demo into a test. by John Dethridge · 9 years ago
  14. 5eae403 debug: Make the ogler demo check that the values it reads are correct. by John Dethridge · 9 years ago
  15. 28de509 debug: Add a function for computing the stride of an array. by John Dethridge · 9 years ago
  16. de7a5e3 debug: move the code for peeking values of various types into separate functions. by John Dethridge · 9 years ago
  17. 935f2a1 debug: Prints more specific error messages. by John Dethridge · 9 years ago
  18. 512354e debug: deal with more types, change "visited" check. by John Dethridge · 9 years ago
  19. aa01988 debug: make type "address" which the printer uses to refer to addresses and offsets in the tracee. by John Dethridge · 9 years ago
  20. a69fce9 debug: fix (*Architecture).IntN by John Dethridge · 9 years ago
  21. 049e4f4 debug: demo program that uses Ogle library. by John Dethridge · 9 years ago
  22. a035b78 debug: move some dirs from debug/ogle/ to debug/. Fix import order. by John Dethridge · 9 years ago
  23. d6f6c5d debug: update import paths, add import comments by John Dethridge · 9 years ago
  24. d0ba87e debug: move Ogle files to ogle/ by John Dethridge · 9 years ago
  25. d759e28 remove codereview.cfg. by John Dethridge · 9 years ago
  26. 04548c7 ogle/debug/dwarf: add UnspecifiedType by Rob Pike · 10 years ago
  27. eace5f2 ogle/debug/dwarf: fix a logic typo. by Nigel Tao · 10 years ago
  28. 34b049f ogle/program: add pc/sp/file/line info to the program.Frame structure. by Nigel Tao · 10 years ago
  29. ac25ac5 ogle/program/server: update topOfStack to work with Go 1.4 binaries. by Nigel Tao · 10 years ago
  30. 3605d63 ogle/program: return the PCs of the breakpoints set. by Nigel Tao · 10 years ago
  31. 1d075a8 ogle/program/server: allow adding and removing breakpoints by Nigel Tao · 10 years ago
  32. c053cc9 ogleproxy: fix duplicate "Usage". flag.Usage already prints "Usage". by Nigel Tao · 10 years ago
  33. 04cbc74 client: add an OgleproxyCmd variable. by Nigel Tao · 10 years ago
  34. c2d9a23 dwarf: fix broken tests, due to name change in by Nigel Tao · 10 years ago
  35. ffdfb50 ogle/program/server: do less I/O when printing maps by Rob Pike · 10 years ago
  36. cff4c77 ogle/debug/dwarf: copy update to ArrayType from main repo. by Rob Pike · 10 years ago
  37. fba02bb ogle/program/server: print maps by Rob Pike · 10 years ago
  38. 722d02c ogle/server: provide type-aware printer for DWARF-typed objects by Rob Pike · 10 years ago
  39. 5d072f5 ogle/debug/dwarf: add SliceType, StringType, MapType by Rob Pike · 10 years ago
  40. 89cc94f ogle: remove gosym from server by Rob Pike · 10 years ago
  41. 1dea430 ogle/dwarf/debug: add PCToSPOffset by Rob Pike · 10 years ago
  42. 78dfb6e ogle/debug/dwarf: use buf.string to read a string by Rob Pike · 10 years ago
  43. 47effd1 ogle: move symbol lookup into dwarf package by Rob Pike · 10 years ago
  44. 83bbfc0 ogle/program/server: clarify ordering of evaluation when ptraceRun by Nigel Tao · 10 years ago
  45. 92f6677 ogle/debug/dwarf: use existing I/O implementation to parse line table by Rob Pike · 10 years ago
  46. 52775c4 ogle: use the DWARF PC/line table instead of the gosym one by Rob Pike · 10 years ago
  47. 4167362 ogle/program/server: stop Frames going past the top of the stack. by Nigel Tao · 10 years ago
  48. aeea993 ogle/program/server: trace multiple frames. by Nigel Tao · 10 years ago
  49. d909eb5 ogle/program/server: provide PC->source evaluation by Rob Pike · 10 years ago
  50. 4c9270d ogle/program/server: detect elf.EM_X86_64. by Nigel Tao · 10 years ago
  51. 635d4ab program: trace multi-threaded programs. by Nigel Tao · 10 years ago
  52. ce59152 ogle/program/server: discover architecture by reading object file by Rob Pike · 10 years ago
  53. f63857d ogle: new arch package for architecture-dependent details by Rob Pike · 10 years ago
  54. 8ccf077 ogle/demo/ptrace-linux-amd64: new programs. by Nigel Tao · 10 years ago
  55. c8be5d9 ogle/program/server: lift all breakpoints before Resume returns. by Nigel Tao · 10 years ago
  56. 12dc2ad ogle/program: add Frames protocol, to print function arguments. by Nigel Tao · 10 years ago
  57. c57e498 ogle/program/server: use dwarf data directly, instead of gosym. by Nigel Tao · 10 years ago
  58. 0bfab3e ogle: fork all the debug packages by Rob Pike · 10 years ago
  59. e653d3b ogle: copy debug/dwarf into our repo by Rob Pike · 10 years ago
  60. 8b37467 ogle/program/client: skip ssh if ogleproxy runs on localhost. by Nigel Tao · 10 years ago
  61. 5557741 ogle: allow multi-valued expressions such as regular expressions by Rob Pike · 10 years ago
  62. 1b17343 ogle/program: first cut of breakpoint support. by Nigel Tao · 10 years ago
  63. 00fdb94 ogle/doc: revive ptrace-nptl.txt. by Nigel Tao · 10 years ago
  64. 736dde5 ogle: add name->PC lookup for functions by Rob Pike · 10 years ago
  65. 01d010a ogle: framework for communicating with proxy by Rob Pike · 10 years ago
  66. 0326df2 ogle/gosym: sync with tip debug/gosym in the standard library. by Nigel Tao · 10 years ago
  67. 78fcaf8 ogle/probe: rewrite validRead and validWrite to use the new SetPanicOnFault function by Rob Pike · 10 years ago
  68. 3ebdfef ogle/gosym: new package. by Nigel Tao · 10 years ago
  69. 9ab6106 ogle/probe: add overflow checks for validRead and validWrite. by Nigel Tao · 10 years ago
  70. ce4cfff ogle/probe: fix typos. by Nigel Tao · 10 years ago
  71. 7ef1caf ogle/socket: new package. by Nigel Tao · 10 years ago
  72. 5c951eb ogle/probe: add a sanity check for heapStart and heapUsed. by Nigel Tao · 10 years ago
  73. 83d19aa ogle/probe: allow zero-sized reads and writes. by Nigel Tao · 10 years ago
  74. a091c37 ogle/probe: update linux/amd64 magic arena_foo_offset constants. by Nigel Tao · 10 years ago
  75. 38afc17 ogle/probe: handle read requests from network by Rob Pike · 10 years ago
  76. 8e7e7aa ogle: fix A+C so we don't need to maintain contributors by Rob Pike · 10 years ago
  77. 3da6d99 ogle/probe: start of package by Rob Pike · 10 years ago
  78. 8a49009 ogle: udpate A+C by Rob Pike · 10 years ago
  79. 7f83f8d ogle: add AUTHORS, CONTRIBUTORS, LICENSE, README, and codereview.cfg by Rob Pike · 10 years ago