1. 08 4月, 2016 1 次提交
  2. 07 4月, 2016 1 次提交
    • W
      terminal: show message if there are no vars/locals/args · e60942a3
      Wesley Merkel 提交于
      When the vars, locals, or args commands return no results, nothing is
      
      printed out to the terminal. This commit makes these commands print a
      
      message like `(no locals)` when there is nothing to show. This feedback
      
      is more descriptive of what is being returned than an empty string.
      e60942a3
  3. 06 4月, 2016 1 次提交
  4. 05 4月, 2016 1 次提交
  5. 31 3月, 2016 1 次提交
  6. 29 3月, 2016 4 次提交
  7. 28 3月, 2016 1 次提交
  8. 24 3月, 2016 1 次提交
  9. 23 3月, 2016 1 次提交
  10. 19 3月, 2016 1 次提交
  11. 18 3月, 2016 2 次提交
  12. 15 3月, 2016 4 次提交
  13. 14 3月, 2016 1 次提交
    • V
      Updated OSX install.md · 7d3d90a0
      vancouverwill 提交于
      It was unclear that to install, first clone Delve before `CERT=mycert make install`
      Added link to helpful walkthrough installation video
      7d3d90a0
  14. 09 3月, 2016 1 次提交
  15. 05 3月, 2016 1 次提交
    • A
      proc: Caching type offsets · c66c6408
      aarzilli 提交于
      Caches the mapping of type names to offset in debug_info to speed up
      variable evaluation.
      
      BEFORE:
      	BenchmarkArray-4         	     100	  13'238'441 ns/op	   0.62 MB/s
      	BenchmarkArrayPointer-4  	     200	  10'044'093 ns/op	   0.87 MB/s
      	BenchmarkMap-4           	    1000	   1'332'530 ns/op	   0.77 MB/s
      	BenchmarkGoroutinesInfo-4	      10	 114'677'462 ns/op
      	BenchmarkLocalVariables-4	    2000	   1'223'975 ns/op
      AFTER:
      	BenchmarkArray-4         	     200	   9'925'686 ns/op	   0.83 MB/s
      	BenchmarkArrayPointer-4  	     100	  11'143'930 ns/op	   0.78 MB/s
      	BenchmarkMap-4           	    2000	   1'302'520 ns/op	   0.79 MB/s
      	BenchmarkGoroutinesInfo-4	      30	  35'079'549 ns/op
      	BenchmarkLocalVariables-4	    1000	   1'137'299 ns/op
      
      Note in particular the speedup of BenchmarkGoroutinesInfo, since
      proc.(*Variable).parseG is a function we call a lot.
      c66c6408
  16. 04 3月, 2016 1 次提交
  17. 29 2月, 2016 3 次提交
  18. 28 2月, 2016 7 次提交
  19. 25 2月, 2016 4 次提交
  20. 20 2月, 2016 2 次提交
    • D
      docs: Move wiki docs into Documentation dir · 63a66082
      Derek Parker 提交于
      Going forward, all documentation should be placed in the Documentation
      directory in the root of the project. This switch allows maintainers to
      approve updates to documentation before they are committed, as opposed
      to the pre-existing wiki which anybody could modify.
      
      Currently the Documentation directory includes docs on building, usage,
      and minimal docs around the API. This is just the initial commit, and
      documentation will continue to improve over time.
      
      Some changes have been made (and will continue to be made) to `cmd/dlv` to
      ensure we can auto-generate documentation for all commands from the
      newly provided script `scripts/gen-usage-docs.go`, which can be invoked
      via `go run scripts/gen-usage-docs.go`.
      
      Additionally, version has been split into its own package. This was a
      bit of housekeeping related to the changes made the `cmd/dlv`.
      63a66082
    • D
      vendor: Update cobra and vendor cobra/doc · 460f0c91
      Derek Parker 提交于
      460f0c91
  21. 19 2月, 2016 1 次提交
    • A
      proc: replace cgo with syscalls on windows · 8d4d0871
      Alex Brainman 提交于
      Unrelated to conversion, I have also changed (*Thread).readMemory
      to return only first count bytes of memory just as advised
      by ReadProcessMemory.
      
      Fixes #409
      Fixes #412
      Fixes #416
      8d4d0871