本文整理汇总了Golang中github.com/derekparker/delve/dwarf/frame.FrameDescriptionEntry类的典型用法代码示例。如果您正苦于以下问题:Golang FrameDescriptionEntry类的具体用法?Golang FrameDescriptionEntry怎么用?Golang FrameDescriptionEntry使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了FrameDescriptionEntry类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: cnext
// Set a breakpoint at every reachable location, as well as the return address. Without
// the benefit of an AST we can't be sure we're not at a branching statement and thus
// cannot accurately predict where we may end up.
func (thread *Thread) cnext(curpc uint64, fde *frame.FrameDescriptionEntry) error {
pcs := thread.dbp.lineInfo.AllPCsBetween(fde.Begin(), fde.End())
ret, err := thread.ReturnAddress()
if err != nil {
return err
}
pcs = append(pcs, ret)
return thread.setNextTempBreakpoints(curpc, pcs)
}
示例2: next
// Use the AST to determine potential next lines.
func (thread *Thread) next(curpc uint64, fde *frame.FrameDescriptionEntry, file string, line int) error {
lines, err := thread.dbp.ast.NextLines(file, line)
if err != nil {
if _, ok := err.(source.NoNodeError); !ok {
return err
}
}
ret, err := thread.ReturnAddress()
if err != nil {
return err
}
pcs := make([]uint64, 0, len(lines))
for i := range lines {
pcs = append(pcs, thread.dbp.lineInfo.AllPCsForFileLine(file, lines[i])...)
}
var covered bool
for i := range pcs {
if fde.Cover(pcs[i]) {
covered = true
break
}
}
if !covered {
fn := thread.dbp.goSymTable.PCToFunc(ret)
if fn != nil && fn.Name == "runtime.goexit" {
g, err := thread.getG()
if err != nil {
return err
}
return GoroutineExitingError{goid: g.Id}
}
}
pcs = append(pcs, ret)
return thread.setNextTempBreakpoints(curpc, pcs)
}
示例3: next
// Set breakpoints at every line, and the return address. Also look for
// a deferred function and set a breakpoint there too.
func (thread *Thread) next(curpc uint64, fde *frame.FrameDescriptionEntry, file string, line int) error {
pcs := thread.dbp.lineInfo.AllPCsBetween(fde.Begin(), fde.End(), file)
g, err := thread.GetG()
if err != nil {
return err
}
if g.DeferPC != 0 {
f, lineno, _ := thread.dbp.goSymTable.PCToLine(g.DeferPC)
for {
lineno++
dpc, _, err := thread.dbp.goSymTable.LineToPC(f, lineno)
if err == nil {
// We want to avoid setting an actual breakpoint on the
// entry point of the deferred function so instead create
// a fake breakpoint which will be cleaned up later.
thread.dbp.Breakpoints[g.DeferPC] = new(Breakpoint)
defer func() { delete(thread.dbp.Breakpoints, g.DeferPC) }()
if _, err = thread.dbp.SetTempBreakpoint(dpc); err != nil {
return err
}
break
}
}
}
ret, err := thread.ReturnAddress()
if err != nil {
return err
}
var covered bool
for i := range pcs {
if fde.Cover(pcs[i]) {
covered = true
break
}
}
if !covered {
fn := thread.dbp.goSymTable.PCToFunc(ret)
if fn != nil && fn.Name == "runtime.goexit" {
g, err := thread.GetG()
if err != nil {
return err
}
return GoroutineExitingError{goid: g.Id}
}
}
pcs = append(pcs, ret)
return thread.setNextTempBreakpoints(curpc, pcs)
}