Skip to content

Commit 8fc8d3f

Browse files
committed
[Reproducer] Implement dumping packets.
This patch completes the dump functionality by adding support for dumping a reproducer's GDB remote packets. Differential revision: https://reviews.llvm.org/D67636 llvm-svn: 372046
1 parent 3cabfb3 commit 8fc8d3f

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

lldb/lit/Reproducer/TestDump.test

+4
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,8 @@
1818
# COMMANDS: target create
1919
# COMMANDS: command source
2020

21+
# RUN: %lldb -b -o 'reproducer dump -p gdb -f %t.repro' | FileCheck %s --check-prefix GDB
22+
# GDB: send packet: $QStartNoAckMode#b0
23+
# GDB: read packet: $OK#9a
24+
2125
# RUN: %lldb --replay %t.repro | FileCheck %s --check-prefix FILES

lldb/source/Commands/CommandObjectReproducer.cpp

+21-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#include "lldb/Host/OptionParser.h"
1212
#include "lldb/Utility/Reproducer.h"
13+
#include "lldb/Utility/GDBRemote.h"
1314

1415
#include "lldb/Interpreter/CommandInterpreter.h"
1516
#include "lldb/Interpreter/CommandReturnObject.h"
@@ -310,9 +311,26 @@ class CommandObjectReproducerDump : public CommandObjectParsed {
310311
return true;
311312
}
312313
case eReproducerProviderGDB: {
313-
// FIXME: Dumping the GDB remote packets means moving the
314-
// (de)serialization code out of the GDB-remote plugin.
315-
result.AppendMessage("Dumping GDB remote packets isn't implemented yet.");
314+
FileSpec gdb_file = loader->GetFile<ProcessGDBRemoteProvider::Info>();
315+
auto error_or_file = MemoryBuffer::getFile(gdb_file.GetPath());
316+
if (auto err = error_or_file.getError()) {
317+
SetError(result, errorCodeToError(err));
318+
return false;
319+
}
320+
321+
std::vector<GDBRemotePacket> packets;
322+
yaml::Input yin((*error_or_file)->getBuffer());
323+
yin >> packets;
324+
325+
if (auto err = yin.error()) {
326+
SetError(result, errorCodeToError(err));
327+
return false;
328+
}
329+
330+
for (GDBRemotePacket& packet : packets) {
331+
packet.Dump(result.GetOutputStream());
332+
}
333+
316334
result.SetStatus(eReturnStatusSuccessFinishResult);
317335
return true;
318336
}

0 commit comments

Comments
 (0)