1. 20 3月, 2020 7 次提交
  2. 19 3月, 2020 3 次提交
  3. 18 3月, 2020 1 次提交
  4. 17 3月, 2020 2 次提交
  5. 15 3月, 2020 1 次提交
  6. 13 3月, 2020 1 次提交
    • D
      *: Remove appveyor, use travis windows support (#1919) · 15509d4d
      Derek Parker 提交于
      * *: Remove appveyor, use travis windows support
      
      * cmd/dlv: Update TestOutput for Travis on Windows
      
      * cmd/dlv: Skip TestGeneratedDoc in Travis on Windows
      
      * Reduce number of jobs in matrix
      
      We only really want to test the full arch/go matrix on Linux.
      For every other os/arch/go combination, only run Go tip and the latest
      supported version.
      15509d4d
  7. 12 3月, 2020 2 次提交
    • A
      proc,terminal: Implement reverse step, next and stepout (#1785) · 1a9e38aa
      Alessandro Arzilli 提交于
      * proc: move defer breakpoint code into a function
      
      Moves the code that sets a breakpoint on the first deferred function,
      used by both next and StepOut, to its function.
      
      * proc: implement reverse step/next/stepout
      
      When the direction of execution is reversed (on a recording) Step, Next and
      StepOut will behave similarly to their forward version. However there are
      some subtle interactions between their behavior, prologue skipping, deferred
      calls and normal calls. Specifically:
      
      - when stepping backwards we need to set a breakpoint on the first
        instruction after each CALL instruction, once this breakpoint is reached we
        need to execute a single StepInstruction operation to reverse step into the
        CALL.
      - to insure that the prologue is skipped reverse next needs to check if it
        is on the first instruction after the prologue, and if it is behave like
        reverse stepout.
      - there is no reason to set breakpoints on deferred calls when reverse
        nexting or reverse stepping out, they will never be hit.
      - reverse step out should generally place its breakpoint on the CALL
        instruction that created the current stack frame (which will be the CALL
        instruction immediately preceding the instruction at the return address).
      - reverse step out needs to treat panic calls and deferreturn calls
        specially.
      
      * service,terminal: implement reverse step, next, stepout
      1a9e38aa
    • C
      terminal: add `-l` prompt on goroutines help (#1922) · e90a5b48
      chainhelen 提交于
      Update: #1879
      e90a5b48
  8. 11 3月, 2020 4 次提交
    • A
      proc: cache result of GetG (#1921) · 134fcb18
      Alessandro Arzilli 提交于
      Benchmark before:
      
      BenchmarkConditionalBreakpoints-4   	       1	7031242832 ns/op
      
      Benchmark after:
      
      BenchmarkConditionalBreakpoints-4   	       1	5282482841 ns/op
      
      Conditional breakpoint evaluation latency: 0.70ms -> 0.52ms
      
      Updates #1549
      134fcb18
    • P
      service/dap: Add support for threads request (#1914) · 5613cf15
      polinasok 提交于
      * Add support for threads request
      
      * Address review comments
      
      * Relax threads test condition
      
      * Address review comments
      
      * Clean up unnecessary newline
      
      * Respond to review comment
      Co-authored-by: NPolina Sokolova <polinasok@users.noreply.github.com>
      5613cf15
    • A
      proc,proc/*: add StopReason field to Target (#1877) · 9f97edb0
      Alessandro Arzilli 提交于
      * proc,proc/*: move SelectedGoroutine to proc.Target, remove PostInitializationSetup
      
      moves SelectedGoroutine, SwitchThread and SwitchGoroutine to
      proc.Target, merges PostInitializationSetup with NewTarget.
      
      * proc,proc/*: add StopReason field to Target
      
      Adds a StopReason field to the Target object describing why the target
      process is currently stopped. This will be useful for the DAP server
      (which needs to report this reason in one of its requests) as well as
      making pull request #1785 (reverse step) conformant to the new
      architecture.
      
      * proc: collect NewTarget arguments into a struct
      9f97edb0
    • C
      pkg/proc,service: support linux/386 (#1884) · f3a191cd
      chainhelen 提交于
      Implement debugging function for 386 on linux with reference to AMD64.
      There are a few remaining problems that need to be solved in another time.
      
      1. The stacktrace of cgo are not exactly as expected.
      2. Not implement `core` for now.
      3. Not implement `call` for now. Can't not find `runtime·debugCallV1` or
         similar function in $GOROOT/src/runtime/asm_386.s.
      
      Update #20
      f3a191cd
  9. 10 3月, 2020 3 次提交
  10. 06 3月, 2020 1 次提交
  11. 05 3月, 2020 1 次提交
  12. 04 3月, 2020 1 次提交
  13. 03 3月, 2020 1 次提交
  14. 01 3月, 2020 3 次提交
    • D
      service/api: Refactor examine memory pretty printer · 241f2422
      Derek Parker 提交于
      Use strings.Builder and tabwriter to format the output of the examine
      memory command instead of doing direct string manipulation and
      allocating.
      241f2422
    • D
      *: Add Go 1.14 to test matrix · 6319d50e
      Derek Parker 提交于
      This also removes Go 1.11 from the test matrix.
      
      Now that 1.14 has been released, as always it should be included in the
      test matrix.
      6319d50e
    • J
      proc/native/linux: try to use process_vm_readv/writev · d0d2d478
      Josh Stone 提交于
      This change adds `ProcessVmRead` and `ProcessVmWrite` wrappers around
      the syscalls `process_vm_readv` and `process_vm_writev`, available since
      Linux 3.2. These follow the same permission model as `ptrace`, but they
      don't actually require being attached, which means they can be called
      directly from any thread in the debugger. They also use `iovec` to write
      entire blocks at once, rather than having to peek/poke each `uintptr`.
      
      These wrappers are used in `Thread.ReadMemory` and `WriteMemory`, still
      falling back to `ptrace` if that fails for any reason.  Notably,
      `process_vm_writev` respects memory protection, so it can't modify
      read-only memory like `ptrace`. This frequently occurs when writing
      breakpoints in read-only `.text`, so to avoid a lot of wasted `EFAULT`
      calls, we only try `process_vm_writev` for larger writes.
      d0d2d478
  15. 29 2月, 2020 2 次提交
  16. 27 2月, 2020 3 次提交
  17. 26 2月, 2020 3 次提交
  18. 25 2月, 2020 1 次提交