summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [CodeView] Fix some Clang-tidy modernize-use-using and Include What You Use ↵Eugene Zelenko2017-06-291-4/+10
| | | | | | warnings; other minor fixes (NFC). llvm-svn: 306616
* Allow VarStreamArray to use stateful extractors.Zachary Turner2017-06-091-3/+3
| | | | | | | | | | | Previously extractors tried to be stateless with any additional context information needed in order to parse items being passed in via the extraction method. This led to quite cumbersome implementation challenges and awkwardness of use. This patch brings back support for stateful extractors, making the implementation and usage simpler. llvm-svn: 305093
* [CodeView] Handle Cross Module Imports and Exports.Zachary Turner2017-06-051-0/+91
While it's not entirely clear why a compiler or linker might put this information into an object or PDB file, one has been spotted in the wild which was causing llvm-pdbdump to crash. This patch adds support for reading-writing these sections. Since I don't know how to get one of the native tools to generate this kind of debug info, the only test here is one in which we feed YAML into the tool to produce a PDB and then spit out YAML from the resulting PDB and make sure that it matches. llvm-svn: 304738
OpenPOWER on IntegriCloud