Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [msf] Create LLVMDebugInfoMsf | Zachary Turner | 2016-07-22 | 1 | -78/+0 |
| | | | | | | | | | | | | | | This provides a better layering of responsibilities among different aspects of PDB writing code. Some of the MSF related code was contained in CodeView, and some was in PDB prior to this. Further, we were often saying PDB when we meant MSF, and the two are actually independent of each other since in theory you can have other types of data besides PDB data in an MSF. So, this patch separates the MSF specific code into its own library, with no dependencies on anything else, and DebugInfoCodeView and DebugInfoPDB take dependencies on DebugInfoMsf. llvm-svn: 276458 | ||||
* | [pdb] Round-trip module & file info to/from YAML. | Zachary Turner | 2016-07-22 | 1 | -1/+2 |
| | | | | | | | | | | This implements support for writing compiland and compiland source file info to a binary PDB. This is tested by adding support for dumping these fields from an existing PDB to yaml, reading them back in, and dumping them again and verifying the values are as expected. llvm-svn: 276426 | ||||
* | Add support for writing through StreamInterface. | Zachary Turner | 2016-06-10 | 1 | -0/+77 |
This adds method and tests for writing to a PDB stream. With this, even a PDB stream which is discontiguous can be treated as a sequential stream of bytes for the purposes of writing. Reviewed By: ruiu Differential Revision: http://reviews.llvm.org/D21157 llvm-svn: 272369 |