dwarf/op: use readMemory function (#3391)
dwarf/op gained the ability to execute DW_OP_deref opcodes a while ago but because we didn't save the readMemory function in the context structure it never worked.
This commit is contained in:
parent
c2bfdfc76b
commit
47989248ed
@ -7,8 +7,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
|
|
||||||
"github.com/go-delve/delve/pkg/dwarf/leb128"
|
|
||||||
"github.com/go-delve/delve/pkg/dwarf"
|
"github.com/go-delve/delve/pkg/dwarf"
|
||||||
|
"github.com/go-delve/delve/pkg/dwarf/leb128"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Opcode represent a DWARF stack program instruction.
|
// Opcode represent a DWARF stack program instruction.
|
||||||
@ -67,6 +67,7 @@ func ExecuteStackProgram(regs DwarfRegisters, instructions []byte, ptrSize int,
|
|||||||
stack: make([]int64, 0, 3),
|
stack: make([]int64, 0, 3),
|
||||||
DwarfRegisters: regs,
|
DwarfRegisters: regs,
|
||||||
ptrSize: ptrSize,
|
ptrSize: ptrSize,
|
||||||
|
readMemory: readMemory,
|
||||||
}
|
}
|
||||||
|
|
||||||
for tick := 0; tick < len(instructions)*arbitraryExecutionLimitFactor; tick++ {
|
for tick := 0; tick < len(instructions)*arbitraryExecutionLimitFactor; tick++ {
|
||||||
|
Loading…
Reference in New Issue
Block a user