-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Setting breakpoint in managed function using lldb #10438
Comments
cc @mikem8361 |
The managed assemblies are not modules recognized by Linux. They are not loaded using the platform loader. They are not ELF files, but rather Windows style PE files.
The right syntax is |
Yes, the managed assemblies don’t show in the lldb modules command unlike on Windows. And yes you need usually need to add the .dll extension depending on how the assembly was loaded. The “sos DumpDomain” command displays all the loaded assemblies. The “soshelp bpmd” has some more details on the command.
(lldb) sos DumpDomain
--------------------------------------
System Domain: 00007ffff6d965f0
LowFrequencyHeap: 00007FFFF6D974C8
HighFrequencyHeap: 00007FFFF6D97578
StubHeap: 00007FFFF6D97628
Stage: OPEN
Name: None
--------------------------------------
Shared Domain: 00007ffff6d95600
LowFrequencyHeap: 00007FFFF6D974C8
HighFrequencyHeap: 00007FFFF6D97578
StubHeap: 00007FFFF6D97628
Stage: OPEN
Name: None
Assembly: 000000000069eed0 [/home/mikem/coreclr/bin/Product/Linux.x64.Debug/System.Private.CoreLib.dll]
ClassLoader: 000000000069EF90
Module Name
00007fff7c190400 /home/mikem/coreclr/bin/Product/Linux.x64.Debug/System.Private.CoreLib.dll
…--------------------------------------
Domain 1: 0000000000657a60
LowFrequencyHeap: 0000000000658B50
HighFrequencyHeap: 0000000000658C00
StubHeap: 0000000000658CB0
Stage: OPEN
Name: unixcorerun
…
Assembly: 00000000006b86a0 [/home/mikem/coreclr/bin/Product/Linux.x64.Debug/SymbolTestApp2.dll]
ClassLoader: 00000000006B8760
Module Name
00007fff7c073d20 /home/mikem/coreclr/bin/Product/Linux.x64.Debug/SymbolTestApp2.dll
Assembly: 00000000006c8140 [/home/mikem/coreclr/bin/Product/Linux.x64.Debug/System.Runtime.dll]
ClassLoader: 00000000006BA3F0
Module Name
00007fff7c074978 /home/mikem/coreclr/bin/Product/Linux.x64.Debug/System.Runtime.dll
…
Assembly: 0000000000782920 [SymbolTestDll, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]
ClassLoader: 00000000007829E0
Module Name
00007fff7d9aab58 SymbolTestDll, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
For the first module, the command would be:
bpmd SymbolTestApp2.dll SymbolTestApp.Program.Foo4
The second module was loaded with LoadAssembly and DumpDomain displays no .dll (just SymbolTestDll):
bpmd SymbolTestDll SymbolTestDll.TestClass.Foo7
|
Thanks @janvorli @mikem8361 for useful comments. I can attach to the function now. |
@ashishnegi |
I want to set breakpoint on my function
Foo
in below program.I can see managed stack trace. But I am not able to set the breakpoints on function.
I tried command
bpmd
. I don't totally understand what should be next argument tobpmd
on Linux.bpmd <module_name> <Fully_qualified_funciton>
.If my executable name is X and code is in X.dll on linux, Is
module_name
in above commandX.dll
orX
?Here is a sample lldb session of what I tried.
Here
From foo
comes fromFoo
function.Q1. Why does not
target modules list
does not havelldblivedebug.dll
in its list ?Is
[vdso] (0x00007ffff7ffa000)
in abovetarget modules list
actuallylldblivedebug.dll
?Q2. I think I don't understand how to use
bpmd
command in lldb on Linux. Can you please explain how to pass right module name tobpmd
?Other info :
The text was updated successfully, but these errors were encountered: