This is an archive of the discontinued LLVM Phabricator instance.

Move the minidump parser into the Formats module
AbandonedPublic

Authored by labath on Mar 5 2019, 8:24 AM.

Details

Summary

the parser was already independent from the lldb Process classes, but it
was living in source/Plugins/Process/minidump, because we did not have a
good place to put it. Now that we have the new Formats module, it can be
moved there. This enables writing new interesting tools (such as
yaml2core), which process minidump files independently of lldb.

Event Timeline

labath created this revision.Mar 5 2019, 8:24 AM
zturner accepted this revision.Mar 5 2019, 11:13 AM
This revision is now accepted and ready to land.Mar 5 2019, 11:13 AM
JDevlieghere accepted this revision.Mar 5 2019, 12:23 PM
labath abandoned this revision.Mar 21 2019, 3:55 AM

minidump parser will go into llvm/Object instead.