Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dlv cannot attach to process spawned with go run #2844

Closed
1ma opened this issue Dec 28, 2021 · 10 comments
Closed

dlv cannot attach to process spawned with go run #2844

1ma opened this issue Dec 28, 2021 · 10 comments

Comments

@1ma
Copy link

1ma commented Dec 28, 2021

  1. What version of Delve are you using (dlv version)?

Both installed recently in $GOPATH/bin via the Go: Install/Update Tools dialog of the VS Code Go extension:

$ dlv version
Delve Debugger
Version: 1.8.0
Build: $Id: 6a6c9c332d5354ddf1f8a2da3cc477bd18d2be53 $
$ dlv-dap version
Delve Debugger
Version: 1.7.3
Build: $Id: c532746bc713b05a49680bc8c36b27c72c391a6b $
  1. What version of Go are you using? (go version)?

go version go1.17.5 linux/amd64, installed from https://go.dev/dl/

  1. What operating system and processor architecture are you using?

Ubuntu 18.04.6 LTS, amd64

  1. What did you do?

Given this simple program:

package main

import (
	"fmt"
	"time"
)

func main() {
	for {
		fmt.Println("brrrrrr")
		time.Sleep(3 * time.Second)
	}
}

I can compile it with go build main.go, run it in a terminal with ./main, add a breakpoint on the Println line and then click "Attach to process" in the Debug dialog of VS Code. In a few seconds, the breakpoint triggers as expected:

ok

However, if I directly go for go run main.go and follow the same process I get what seems like a Delve error.

  1. What did you expect to see?

I expected to be able to attach to a Go process spawned with go run and debug it.

  1. What did you see instead?

ko

Starting: /home/socialpoint/go/bin/dlv-dap dap --check-go-version=false --listen=127.0.0.1:43111 --log-dest=3 from /home/socialpoint/delve
DAP server listening at: 127.0.0.1:43111
2021-12-28T19:39:32+01:00 error layer=debugger error loading binary "/lib/x86_64-linux-gnu/libpthread.so.0": could not parse .eh_frame section: unknown CIE_id 0x9daad7e4 at 0x0
Type 'dlv help' for list of commands.
@1ma
Copy link
Author

1ma commented Dec 28, 2021

I can also reproduce on Ubuntu 20.04.3 LTS, same setup.

/lib/x86_64-linux-gnu/libpthread.so.0 is part of the libc6 package, version 2.31 on 20.04 and 2.27 on 18.04.

@polinasok
Copy link
Collaborator

For dlv to work correctly, you must build your program with debugging symbols and with optimizations and inlining turned off. go run doesn't include debug info. go build does, but you still need -gcflags='all=-N -l' to avoid the warning: optimized function in the VARIABLES pane. If you use dlv debug, dlv will take care of all this for you.

@aarzilli
Copy link
Member

Closing, see also: golang/go#24833. Quod Go non dat, Delve non præstat.

@1ma
Copy link
Author

1ma commented Dec 29, 2021

Bummer. I don't think the Go team will change this behaviour, but is it known why go run always uses -s -w? I never expected that.

@aarzilli
Copy link
Member

AFAIK go run is meant to run thing quickly so it doesn't bother building and writing debug info. And besides that to use go run you have to have the source available so you could just use 'dlv debug main.go' instead.

@polinasok
Copy link
Collaborator

polinasok commented Dec 29, 2021

@1ma Would you please kindly rerun your attach attempt with "go run" with logging enabled in launch.json and share the results:

"showLog": true,
"logOutput": "dap,debugger"

Looking more closely at your report, it doesn't look like Debugger.Attach returned an error that got logged, so the dlv server didn't exit after trying to attach to an unusable binary. @aarzilli That doesn't seem right, does it?

@1ma
Copy link
Author

1ma commented Dec 29, 2021

Here you go.

Starting: /home/marcel/go/bin/dlv-dap dap --check-go-version=false --listen=127.0.0.1:39329 --log=true --log-output=dap,debugger --log-dest=3 from /home/marcel/dlv_repro
DAP server listening at: 127.0.0.1:39329
2021-12-29T22:15:47+01:00 debug layer=dap DAP server pid = 5622
2021-12-29T22:15:47+01:00 debug layer=dap DAP connection 1 started
2021-12-29T22:15:47+01:00 debug layer=dap [<- from client]{"seq":1,"type":"request","command":"initialize","arguments":{"clientID":"vscode","clientName":"Visual Studio Code","adapterID":"go","locale":"en-us","linesStartAt1":true,"columnsStartAt1":true,"pathFormat":"path","supportsVariableType":true,"supportsVariablePaging":true,"supportsRunInTerminalRequest":true,"supportsMemoryReferences":true,"supportsProgressReporting":true,"supportsInvalidatedEvent":true}}
2021-12-29T22:15:47+01:00 debug layer=dap [-> to client]{"seq":0,"type":"response","request_seq":1,"success":true,"command":"initialize","body":{"supportsConfigurationDoneRequest":true,"supportsFunctionBreakpoints":true,"supportsConditionalBreakpoints":true,"supportsEvaluateForHovers":true,"supportsSetVariable":true,"supportsExceptionInfoRequest":true,"supportTerminateDebuggee":true,"supportsDelayedStackTraceLoading":true,"supportsLogPoints":true,"supportsDisassembleRequest":true,"supportsClipboardContext":true,"supportsSteppingGranularity":true,"supportsInstructionBreakpoints":true}}
2021-12-29T22:15:47+01:00 debug layer=dap [<- from client]{"seq":2,"type":"request","command":"attach","arguments":{"name":"Attach to Process","type":"go","request":"attach","mode":"local","processId":5415,"showLog":true,"logOutput":"dap,debugger","__configurationTarget":5,"packagePathToGoModPathMap":{},"debugAdapter":"dlv-dap","dlvToolPath":"/home/marcel/go/bin/dlv-dap","env":{},"__sessionId":"74a2607f-a049-41b5-a501-f2c7705bb2f8"}}
2021-12-29T22:15:47+01:00 debug layer=dap parsed launch config: {
	"mode": "local",
	"processId": 5415,
	"backend": "default",
	"stackTraceDepth": 50
}
2021-12-29T22:15:47+01:00 debug layer=dap attaching to pid 5415
2021-12-29T22:15:47+01:00 info layer=debugger attaching to pid 5415
2021-12-29T22:15:48+01:00 error layer=debugger error loading binary "/lib/x86_64-linux-gnu/libpthread.so.0": could not parse .eh_frame section: unknown CIE_id 0x2 at 0x0
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x52ef
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x532e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x53f7
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5400
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x540d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5439
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x59fa
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5a06
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5a12
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5a1f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5a2b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5a38
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5a45
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5a51
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5a5b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5a68
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5a74
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5a80
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7a0d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7a1a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7a27
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xb9b4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xc19a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xc1a6
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x146de
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15d55
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15df4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15e55
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15ee1
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16278
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1629e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x162b8
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x162de
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16305
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x163ce
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1640e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x164cc
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16557
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1658c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16cf8
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16d04
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16d10
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16d1b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16d28
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16d35
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16d40
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16d4d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16d59
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16d65
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16d72
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16d7e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16d8b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16d97
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16da3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16daf
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16dbc
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16dc9
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16dd3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16de0
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16ded
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16dfa
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e06
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e12
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e1e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e2a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e36
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e43
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e4f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e5b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e66
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e73
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x18e9b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x18ed9
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1ae8a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1ce4d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1ee23
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x20dfc
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x22e03
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x25325
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x25344
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x25351
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x2535e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x2536a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x25377
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x25384
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x25391
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x2559b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x2b646
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x2b652
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x2b65e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x2d806
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x2d812
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x2d81e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x2f99d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x2f9a9
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x2f9b5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x37820
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x418b6
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4387f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x477cf
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4c324
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4c342
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4c34e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4c35a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4c367
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4c374
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4c380
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4c38c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4c398
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4c3a5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4c3b2
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4ed14
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4edd4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4eddd
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4ede9
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x4edf5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x54520
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x545e0
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x546ad
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x546b6
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x546c3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x546cf
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x546db
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x546e7
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x546f3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x546ff
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x54708
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x54714
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x577a4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x57864
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5786d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x57879
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x57885
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x57891
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5789d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5b0ff
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5b1bf
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5b28c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5b295
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5b2a2
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5b2c1
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5b2cd
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5b2d9
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5b2e5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5b2f1
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5b2fd
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5b309
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5b315
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5e3b5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5e475
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5e62e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5e63a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5e646
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x5e652
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x61f25
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x61fe5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x620b2
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x620bb
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x620c8
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x620d4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x620e0
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x620ec
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x620f8
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x62104
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x6210d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x6a6e5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x75379
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x75458
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x75521
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x75666
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x75686
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7568f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x756ad
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x78233
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x78312
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x783db
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x78520
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x78540
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x78549
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x78568
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7b173
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7b252
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7b31b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7b460
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7b480
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7b489
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7b4a8
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7e2d3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7e42e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7e4f7
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7e63c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7e65c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7e665
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x7e683
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x8147f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x815da
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x816a3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x817e8
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x81808
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x81811
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x81830
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x846ed
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x84848
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x84911
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x84a56
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x84a76
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x84a7f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x84a9e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x87131
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x871fa
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x873a3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x8bed3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x8bf2a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x8bf84
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x8c04d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x8c056
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x94731
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x9cf0a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x9cf4a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x9d008
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x9d011
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa0c48
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa174d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa1816
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa1968
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa1988
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa1a52
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa1a92
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa1b50
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa1b59
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa27ae
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa27bb
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa27c8
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa27d5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa27e2
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa27ee
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa27fb
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa2808
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa2811
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa281e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa5715
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa57de
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa581e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa58dc
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa58e5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa88b7
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa8980
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa89c0
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa8a7e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xa8a87
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xac9bf
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xae9c7
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xae9d4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xae9e1
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xb09e4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xb09f1
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xb09fe
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xb29de
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xb29eb
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xb29f8
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xb49d8
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xb49e5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xb49f2
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xbcf63
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xc860b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xc864b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xc8709
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xc8712
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xcb2e1
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xcb3aa
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xcb3ea
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xcb4a8
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xcb4b1
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xd3aca
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xdbadb
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xddc08
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xdfcfc
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xe215b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xe2168
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xe2175
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xe42b8
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xe42c4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xe625d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xe63b4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xe83a5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xe858c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xea59d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xea780
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xed2b3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xed37c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xed3bc
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xed47a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xed483
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xed490
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xed49d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xed4a9
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xef498
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xf3f2b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xf3f38
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xf3f45
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xf3f50
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xf3f5c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xf3f69
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xf3f76
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xf3f82
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xf3f8e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xf3f9a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xf66d4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfb9d5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbaa3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbaaf
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbaba
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbac6
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbad2
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbade
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbaeb
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbaf7
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbb04
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbb10
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbb1c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbb29
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbb35
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbb40
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbb4d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbb56
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbb62
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbb6f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbb7b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbb88
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbb94
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfbba1
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfdf25
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfdf31
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfdf3d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfdf49
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfdf55
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0xfdf62
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10006a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x100076
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x100083
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10008f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10009a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1000a5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1000b2
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1049cd
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x104b1f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x104ded
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x104dfa
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x104e06
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x104e13
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x104e20
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x104e2d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x104e3a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1076f5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x107847
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x107850
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x107b5d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x107b6a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x107b76
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x107b83
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x107b90
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x107b9d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x107baa
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10a754
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10a8a6
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10a8c6
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10a8cf
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10a8ee
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10a8fb
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10a908
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10a911
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10a91d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10a92a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10b8f4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10b9c3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10b9cc
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10fc81
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x10fcbf
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x113eb0
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1140be
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x116b2f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x116b58
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x116b64
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x116b71
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x116b7d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x116b89
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x118b6d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11abf0
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11be21
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11be40
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11be4c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11bf79
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11c101
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11c10d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11cb7f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11cb8b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11d5fb
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11d607
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11deae
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11deba
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11e7cc
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11e7d8
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11f0e4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11f0f0
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11fc21
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x11fc2d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12067c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x120688
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1211be
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1211ca
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x121c0c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x121c18
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1224b3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1224bf
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x123cff
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x123d0b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x124da4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x124db0
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x124dbc
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x125609
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x125615
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x126828
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x126834
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x127a4c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x127a58
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x128313
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12831f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x128e18
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x128e24
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x129767
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x129773
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12a1f4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12a200
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12aabf
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12aacb
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12b590
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12b59c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12c066
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12c072
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12cbdb
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12cc69
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12cd03
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12cd55
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12cef6
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x12f5bd
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1350a9
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x135227
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x13901b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x139027
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x139033
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x13b154
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x13f2cc
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x13f2d8
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x13f2e3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1413e9
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1413f6
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x141403
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x14a50b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x14a517
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x14a523
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x14a52f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1504a9
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x152482
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x154b1c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x154b28
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x154b34
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x154b40
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x154b4c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x154b58
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x154b65
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x154b71
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x154b7a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x158e50
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x158e5c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15b6f0
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15b709
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15b715
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15b721
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15b72e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15b73b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15b747
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15b753
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15dfd2
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15dfeb
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15dff7
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15e003
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15e010
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15e01c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x15e028
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x160306
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x160325
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16036b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16038b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x160397
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1603a4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1603af
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1603bb
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1603c7
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1624bb
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x164524
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x164542
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x166549
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x166567
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1684fc
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16a54c
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16a56a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16a577
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16c536
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e674
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e692
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e69f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e6ac
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x16e6b9
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1706e4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x170702
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x172756
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x172774
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1747a3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1747c1
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1767f0
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x17680e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1787e1
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x17a810
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x17a82e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x17c7f1
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x17e825
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x17e843
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x180872
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x180890
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x182938
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x182956
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1849d4
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1849f2
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x186a26
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x186a44
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1889df
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x18a97e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x18c9a0
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x18c9be
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x190a9e
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x190aaa
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x194fd1
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x19505b
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1950e5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x19516f
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1951af
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1951c9
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1951e3
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1952a5
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1952b1
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1952bd
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x1973d6
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x199553
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x19956d
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x19957a
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x19b639
2021-12-29T22:15:48+01:00 warning layer=debugger reading debug_info: concrete subprogram without address range at 0x19b653
2021-12-29T22:15:48+01:00 debug layer=dap [-> to client]{"seq":0,"type":"event","event":"initialized"}
2021-12-29T22:15:48+01:00 debug layer=dap [-> to client]{"seq":0,"type":"response","request_seq":2,"success":true,"command":"attach"}
2021-12-29T22:15:48+01:00 debug layer=dap [<- from client]{"seq":3,"type":"request","command":"setFunctionBreakpoints","arguments":{"breakpoints":[]}}
2021-12-29T22:15:48+01:00 debug layer=dap [-> to client]{"seq":0,"type":"response","request_seq":3,"success":true,"command":"setFunctionBreakpoints","body":{"breakpoints":[]}}
2021-12-29T22:15:48+01:00 debug layer=dap [<- from client]{"seq":4,"type":"request","command":"setInstructionBreakpoints","arguments":{"breakpoints":[]}}
2021-12-29T22:15:48+01:00 debug layer=dap [-> to client]{"seq":0,"type":"response","request_seq":4,"success":true,"command":"setInstructionBreakpoints","body":{"breakpoints":[]}}
2021-12-29T22:15:48+01:00 debug layer=dap [<- from client]{"seq":5,"type":"request","command":"configurationDone","arguments":{}}
2021-12-29T22:15:48+01:00 debug layer=dap [-> to client]{"seq":0,"type":"event","event":"output","body":{"category":"console","output":"Type 'dlv help' for list of commands.\n","source":{}}}
2021-12-29T22:15:48+01:00 debug layer=dap [-> to client]{"seq":0,"type":"response","request_seq":5,"success":true,"command":"configurationDone"}
2021-12-29T22:15:48+01:00 debug layer=debugger continuing
Type 'dlv help' for list of commands.
2021-12-29T22:15:48+01:00 debug layer=dap [<- from client]{"seq":6,"type":"request","command":"threads"}
2021-12-29T22:15:48+01:00 debug layer=dap [-> to client]{"seq":0,"type":"response","request_seq":6,"success":true,"command":"threads","body":{"threads":[{"id":-1,"name":"Current"}]}}

@aarzilli
Copy link
Member

On the command line I get this:

% dlv attach 1760771
could not attach to pid 1760771: could not open debug info

for the given reproducer. That said, something doesn't add up, the reproducer is a simple go program, it wouldn't link to libpthread.so, on the other hand something that does link to libpthread.so could go through the system linker, get linked to a bunch of C object files and end up containing a valid debug_info section for something (just not the go code).

gopherbot pushed a commit to golang/vscode-go that referenced this issue Dec 29, 2021
Updates go-delve/delve#2844

Change-Id: I1886c63e5eb1acc7ac48072b68239770367acf87
GitHub-Last-Rev: a64cb34
GitHub-Pull-Request: #1982
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/374674
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
Trust: Ian Lance Taylor <iant@golang.org>
@1ma
Copy link
Author

1ma commented Dec 29, 2021

FTR. Might have something to do with Linux or Ubuntu.

marcel@x360:~$ dlv attach 8132
2021-12-29T22:34:06+01:00 error layer=debugger error loading binary "/lib/x86_64-linux-gnu/libpthread.so.0": could not parse .eh_frame section: unknown CIE_id 0x2 at 0x0
Type 'help' for list of commands.
(dlv)

@polinasok
Copy link
Collaborator

I got could not open debug info too with my Linux environment.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants