Skip to content

[lldb] Claim to support swbreak and hwbreak packets when debugging a gdbremote #102873

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

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,11 @@ void GDBRemoteCommunicationClient::GetRemoteQSupported() {

// build the qSupported packet
std::vector<std::string> features = {"xmlRegisters=i386,arm,mips,arc",
"multiprocess+", "fork-events+",
"vfork-events+"};
"multiprocess+",
"fork-events+",
"vfork-events+",
"swbreak+",
"hwbreak+"};
StreamString packet;
packet.PutCString("qSupported");
for (uint32_t i = 0; i < features.size(); ++i) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4245,6 +4245,10 @@ std::vector<std::string> GDBRemoteCommunicationServerLLGS::HandleFeatures(
.Case("vfork-events+", Extension::vfork)
.Default({});

// We consume lldb's swbreak/hwbreak feature, but it doesn't change the
// behaviour of lldb-server. We always adjust the program counter for targets
// like x86
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please end the comment with a period.


m_extensions_supported &= plugin_features;

// fork & vfork require multiprocess
Expand Down
3 changes: 3 additions & 0 deletions lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2354,6 +2354,9 @@ StateType ProcessGDBRemote::SetThreadStopInfo(StringExtractor &stop_packet) {
if (!key.getAsInteger(16, reg))
expedited_register_map[reg] = std::string(std::move(value));
}
// swbreak and hwbreak are also expected keys, but we don't need to
// change our behaviour for them because lldb always expects the remote
// to adjust the program counter (if relevant, e.g., for x86 targets)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please end the comment with a period.

}

if (stop_pid != LLDB_INVALID_PROCESS_ID && stop_pid != pid) {
Expand Down
15 changes: 11 additions & 4 deletions lldb/test/API/functionalities/gdb_remote_client/TestStopPCs.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,17 @@ class TestStopPCs(GDBRemoteTestBase):
def test(self):
class MyResponder(MockGDBServerResponder):
def haltReason(self):
return "T02thread:1ff0d;threads:1ff0d,2ff0d;thread-pcs:10001bc00,10002bc00;"
# lldb should treat the default halt reason, hwbreak and swbreak in the same way. Which is that it
# expects the stub to have corrected the PC already, so lldb should not modify it further.
return "T02thread:1ff0d;threads:1ff0d,2ff0d,3ff0d;thread-pcs:10001bc00,10002bc00,10003bc00;"

def threadStopInfo(self, threadnum):
if threadnum == 0x1FF0D:
return "T02thread:1ff0d;threads:1ff0d,2ff0d;thread-pcs:10001bc00,10002bc00;"
return "T02thread:1ff0d;threads:1ff0d,2ff0d,3ff0d;thread-pcs:10001bc00,10002bc00,10003bc00;"
if threadnum == 0x2FF0D:
return "T00thread:2ff0d;threads:1ff0d,2ff0d;thread-pcs:10001bc00,10002bc00;"
return "T00swbreak:;thread:2ff0d;threads:1ff0d,2ff0d,3ff0d;thread-pcs:10001bc00,10002bc00,10003bc00;"
if threadnum == 0x3FF0D:
return "T00hwbreak:;thread:3ff0d;threads:1ff0d,2ff0d,3ff0d;thread-pcs:10001bc00,10002bc00,10003bc00;"

def qXferRead(self, obj, annex, offset, length):
if annex == "target.xml":
Expand All @@ -40,10 +44,13 @@ def qXferRead(self, obj, annex, offset, length):
self.addTearDownHook(lambda: self.runCmd("log disable gdb-remote packets"))
process = self.connect(target)

self.assertEqual(process.GetNumThreads(), 2)
self.assertEqual(process.GetNumThreads(), 3)
th0 = process.GetThreadAtIndex(0)
th1 = process.GetThreadAtIndex(1)
th2 = process.GetThreadAtIndex(2)
self.assertEqual(th0.GetThreadID(), 0x1FF0D)
self.assertEqual(th1.GetThreadID(), 0x2FF0D)
self.assertEqual(th2.GetThreadID(), 0x3FF0D)
self.assertEqual(th0.GetFrameAtIndex(0).GetPC(), 0x10001BC00)
self.assertEqual(th1.GetFrameAtIndex(0).GetPC(), 0x10002BC00)
self.assertEqual(th2.GetFrameAtIndex(0).GetPC(), 0x10003BC00)
Loading