
* tests: misc test fixes for go1.14 - math.go is now ambiguous due to changes to the go runtime so specify that we mean our own math.go in _fixtures - go list -m requires vendor-mode to be disabled so pass '-mod=' to it in case user has GOFLAGS=-mod=vendor - update version of go/packages, required to work with go 1.14 (and executed go mod vendor) - Increased goroutine migration in one development version of Go 1.14 revealed a problem with TestCheckpoints in command_test.go and rr_test.go. The tests were always wrong because Restart(checkpoint) doesn't change the current thread but we can't assume that when the checkpoint was taken the current goroutine was running on the same thread. * goversion: update maximum supported version * Makefile: disable testing lldb-server backend on linux with Go 1.14 There seems to be some incompatibility with lldb-server version 6.0.0 on linux and Go 1.14. * proc/gdbserial: better handling of signals - if multiple signals are received simultaneously propagate all of them to the target threads instead of only one. - debugserver will drop an interrupt request if a target thread simultaneously receives a signal, handle this situation. * dwarf/line: normalize backslashes for windows executables Starting with Go 1.14 the compiler sometimes emits backslashes as well as forward slashes in debug_line, normalize everything to / for conformity with the behavior of previous versions. * proc/native: partial support for Windows async preempt mechanism See https://github.com/golang/go/issues/36494 for a description of why full support for 1.14 under windows is problematic. * proc/native: disable Go 1.14 async preemption on Windows See https://github.com/golang/go/issues/36494
162 lines
4.3 KiB
Go
162 lines
4.3 KiB
Go
package line
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/binary"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/go-delve/delve/pkg/dwarf/util"
|
|
)
|
|
|
|
type DebugLinePrologue struct {
|
|
UnitLength uint32
|
|
Version uint16
|
|
Length uint32
|
|
MinInstrLength uint8
|
|
InitialIsStmt uint8
|
|
LineBase int8
|
|
LineRange uint8
|
|
OpcodeBase uint8
|
|
StdOpLengths []uint8
|
|
}
|
|
|
|
type DebugLineInfo struct {
|
|
Prologue *DebugLinePrologue
|
|
IncludeDirs []string
|
|
FileNames []*FileEntry
|
|
Instructions []byte
|
|
Lookup map[string]*FileEntry
|
|
|
|
Logf func(string, ...interface{})
|
|
|
|
// stateMachineCache[pc] is a state machine stopped at pc
|
|
stateMachineCache map[uint64]*StateMachine
|
|
|
|
// lastMachineCache[pc] is a state machine stopped at an address after pc
|
|
lastMachineCache map[uint64]*StateMachine
|
|
|
|
// staticBase is the address at which the executable is loaded, 0 for non-PIEs
|
|
staticBase uint64
|
|
|
|
// if normalizeBackslash is true all backslashes (\) will be converted into forward slashes (/)
|
|
normalizeBackslash bool
|
|
}
|
|
|
|
type FileEntry struct {
|
|
Path string
|
|
DirIdx uint64
|
|
LastModTime uint64
|
|
Length uint64
|
|
}
|
|
|
|
type DebugLines []*DebugLineInfo
|
|
|
|
// ParseAll parses all debug_line segments found in data
|
|
func ParseAll(data []byte, logfn func(string, ...interface{}), staticBase uint64, normalizeBackslash bool) DebugLines {
|
|
var (
|
|
lines = make(DebugLines, 0)
|
|
buf = bytes.NewBuffer(data)
|
|
)
|
|
|
|
// We have to parse multiple file name tables here.
|
|
for buf.Len() > 0 {
|
|
lines = append(lines, Parse("", buf, logfn, staticBase, normalizeBackslash))
|
|
}
|
|
|
|
return lines
|
|
}
|
|
|
|
// Parse parses a single debug_line segment from buf. Compdir is the
|
|
// DW_AT_comp_dir attribute of the associated compile unit.
|
|
func Parse(compdir string, buf *bytes.Buffer, logfn func(string, ...interface{}), staticBase uint64, normalizeBackslash bool) *DebugLineInfo {
|
|
dbl := new(DebugLineInfo)
|
|
dbl.Logf = logfn
|
|
dbl.staticBase = staticBase
|
|
dbl.Lookup = make(map[string]*FileEntry)
|
|
if compdir != "" {
|
|
dbl.IncludeDirs = append(dbl.IncludeDirs, compdir)
|
|
}
|
|
|
|
dbl.stateMachineCache = make(map[uint64]*StateMachine)
|
|
dbl.lastMachineCache = make(map[uint64]*StateMachine)
|
|
dbl.normalizeBackslash = normalizeBackslash
|
|
|
|
parseDebugLinePrologue(dbl, buf)
|
|
parseIncludeDirs(dbl, buf)
|
|
parseFileEntries(dbl, buf)
|
|
|
|
// Instructions size calculation breakdown:
|
|
// - dbl.Prologue.UnitLength is the length of the entire unit, not including the 4 bytes to represent that length.
|
|
// - dbl.Prologue.Length is the length of the prologue not including unit length, version or prologue length itself.
|
|
// - So you have UnitLength - PrologueLength - (version_length_bytes(2) + prologue_length_bytes(4)).
|
|
dbl.Instructions = buf.Next(int(dbl.Prologue.UnitLength - dbl.Prologue.Length - 6))
|
|
|
|
return dbl
|
|
}
|
|
|
|
func parseDebugLinePrologue(dbl *DebugLineInfo, buf *bytes.Buffer) {
|
|
p := new(DebugLinePrologue)
|
|
|
|
p.UnitLength = binary.LittleEndian.Uint32(buf.Next(4))
|
|
p.Version = binary.LittleEndian.Uint16(buf.Next(2))
|
|
p.Length = binary.LittleEndian.Uint32(buf.Next(4))
|
|
p.MinInstrLength = uint8(buf.Next(1)[0])
|
|
p.InitialIsStmt = uint8(buf.Next(1)[0])
|
|
p.LineBase = int8(buf.Next(1)[0])
|
|
p.LineRange = uint8(buf.Next(1)[0])
|
|
p.OpcodeBase = uint8(buf.Next(1)[0])
|
|
|
|
p.StdOpLengths = make([]uint8, p.OpcodeBase-1)
|
|
binary.Read(buf, binary.LittleEndian, &p.StdOpLengths)
|
|
|
|
dbl.Prologue = p
|
|
}
|
|
|
|
func parseIncludeDirs(info *DebugLineInfo, buf *bytes.Buffer) {
|
|
for {
|
|
str, _ := util.ParseString(buf)
|
|
if str == "" {
|
|
break
|
|
}
|
|
|
|
info.IncludeDirs = append(info.IncludeDirs, str)
|
|
}
|
|
}
|
|
|
|
func parseFileEntries(info *DebugLineInfo, buf *bytes.Buffer) {
|
|
for {
|
|
entry := readFileEntry(info, buf, true)
|
|
if entry.Path == "" {
|
|
break
|
|
}
|
|
|
|
info.FileNames = append(info.FileNames, entry)
|
|
info.Lookup[entry.Path] = entry
|
|
}
|
|
}
|
|
|
|
func readFileEntry(info *DebugLineInfo, buf *bytes.Buffer, exitOnEmptyPath bool) *FileEntry {
|
|
entry := new(FileEntry)
|
|
|
|
entry.Path, _ = util.ParseString(buf)
|
|
if entry.Path == "" && exitOnEmptyPath {
|
|
return entry
|
|
}
|
|
|
|
if info.normalizeBackslash {
|
|
entry.Path = strings.Replace(entry.Path, "\\", "/", -1)
|
|
}
|
|
|
|
entry.DirIdx, _ = util.DecodeULEB128(buf)
|
|
entry.LastModTime, _ = util.DecodeULEB128(buf)
|
|
entry.Length, _ = util.DecodeULEB128(buf)
|
|
if !filepath.IsAbs(entry.Path) {
|
|
if entry.DirIdx >= 0 && entry.DirIdx < uint64(len(info.IncludeDirs)) {
|
|
entry.Path = filepath.Join(info.IncludeDirs[entry.DirIdx], entry.Path)
|
|
}
|
|
}
|
|
|
|
return entry
|
|
}
|