Zachary Turner | 7120a47 | 2016-06-06 20:37:05 +0000 | [diff] [blame] | 1 | //===- YAMLOutputStyle.cpp ------------------------------------ *- C++ --*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "YAMLOutputStyle.h" |
| 11 | |
| 12 | #include "PdbYaml.h" |
Zachary Turner | bd336e4 | 2017-06-09 20:46:17 +0000 | [diff] [blame] | 13 | #include "llvm-pdbutil.h" |
Zachary Turner | 7120a47 | 2016-06-06 20:37:05 +0000 | [diff] [blame] | 14 | |
Zachary Turner | 8c099fe | 2017-05-30 16:36:15 +0000 | [diff] [blame] | 15 | #include "llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h" |
Zachary Turner | 8c099fe | 2017-05-30 16:36:15 +0000 | [diff] [blame] | 16 | #include "llvm/DebugInfo/CodeView/DebugSubsection.h" |
Zachary Turner | 8c099fe | 2017-05-30 16:36:15 +0000 | [diff] [blame] | 17 | #include "llvm/DebugInfo/CodeView/DebugUnknownSubsection.h" |
Zachary Turner | a8cfc29 | 2017-06-14 15:59:27 +0000 | [diff] [blame] | 18 | #include "llvm/DebugInfo/CodeView/StringsAndChecksums.h" |
Zachary Turner | 3b14764 | 2016-10-08 01:12:01 +0000 | [diff] [blame] | 19 | #include "llvm/DebugInfo/MSF/MappedBlockStream.h" |
Adrian McCarthy | 6b6b8c4 | 2017-01-25 22:38:55 +0000 | [diff] [blame] | 20 | #include "llvm/DebugInfo/PDB/Native/DbiStream.h" |
| 21 | #include "llvm/DebugInfo/PDB/Native/InfoStream.h" |
Zachary Turner | 67c5601 | 2017-04-27 16:11:19 +0000 | [diff] [blame] | 22 | #include "llvm/DebugInfo/PDB/Native/ModuleDebugStream.h" |
Adrian McCarthy | 6b6b8c4 | 2017-01-25 22:38:55 +0000 | [diff] [blame] | 23 | #include "llvm/DebugInfo/PDB/Native/PDBFile.h" |
| 24 | #include "llvm/DebugInfo/PDB/Native/RawConstants.h" |
| 25 | #include "llvm/DebugInfo/PDB/Native/TpiStream.h" |
Zachary Turner | 7120a47 | 2016-06-06 20:37:05 +0000 | [diff] [blame] | 26 | |
| 27 | using namespace llvm; |
Zachary Turner | c37cb0c | 2017-04-27 16:12:16 +0000 | [diff] [blame] | 28 | using namespace llvm::codeview; |
Zachary Turner | 7120a47 | 2016-06-06 20:37:05 +0000 | [diff] [blame] | 29 | using namespace llvm::pdb; |
| 30 | |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 31 | static bool checkModuleSubsection(opts::ModuleSubsection MS) { |
| 32 | return any_of(opts::pdb2yaml::DumpModuleSubsections, |
| 33 | [=](opts::ModuleSubsection M) { |
| 34 | return M == MS || M == opts::ModuleSubsection::All; |
| 35 | }); |
| 36 | } |
| 37 | |
Zachary Turner | c6d54da | 2016-09-09 17:46:17 +0000 | [diff] [blame] | 38 | YAMLOutputStyle::YAMLOutputStyle(PDBFile &File) |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 39 | : File(File), Out(outs()), Obj(File.getAllocator()) { |
| 40 | Out.setWriteDefaultValues(!opts::pdb2yaml::Minimal); |
| 41 | } |
Zachary Turner | 7120a47 | 2016-06-06 20:37:05 +0000 | [diff] [blame] | 42 | |
Zachary Turner | a30bd1a | 2016-06-30 17:42:48 +0000 | [diff] [blame] | 43 | Error YAMLOutputStyle::dump() { |
Zachary Turner | faa554b | 2016-07-15 22:16:56 +0000 | [diff] [blame] | 44 | if (opts::pdb2yaml::StreamDirectory) |
Zachary Turner | 8848a7a | 2016-07-06 18:05:57 +0000 | [diff] [blame] | 45 | opts::pdb2yaml::StreamMetadata = true; |
Zachary Turner | 5b6e4e0 | 2017-04-29 01:13:21 +0000 | [diff] [blame] | 46 | |
Zachary Turner | a30bd1a | 2016-06-30 17:42:48 +0000 | [diff] [blame] | 47 | if (auto EC = dumpFileHeaders()) |
| 48 | return EC; |
Zachary Turner | 7120a47 | 2016-06-06 20:37:05 +0000 | [diff] [blame] | 49 | |
Zachary Turner | a30bd1a | 2016-06-30 17:42:48 +0000 | [diff] [blame] | 50 | if (auto EC = dumpStreamMetadata()) |
| 51 | return EC; |
| 52 | |
| 53 | if (auto EC = dumpStreamDirectory()) |
| 54 | return EC; |
| 55 | |
Zachary Turner | 760ad4d | 2017-01-20 22:42:09 +0000 | [diff] [blame] | 56 | if (auto EC = dumpStringTable()) |
| 57 | return EC; |
| 58 | |
Zachary Turner | 8848a7a | 2016-07-06 18:05:57 +0000 | [diff] [blame] | 59 | if (auto EC = dumpPDBStream()) |
| 60 | return EC; |
| 61 | |
Zachary Turner | dbeaea7 | 2016-07-11 21:45:26 +0000 | [diff] [blame] | 62 | if (auto EC = dumpDbiStream()) |
| 63 | return EC; |
| 64 | |
Zachary Turner | ac5763e | 2016-08-18 16:49:29 +0000 | [diff] [blame] | 65 | if (auto EC = dumpTpiStream()) |
| 66 | return EC; |
| 67 | |
Zachary Turner | de9ba15 | 2016-09-15 18:22:31 +0000 | [diff] [blame] | 68 | if (auto EC = dumpIpiStream()) |
| 69 | return EC; |
| 70 | |
Zachary Turner | a30bd1a | 2016-06-30 17:42:48 +0000 | [diff] [blame] | 71 | flush(); |
| 72 | return Error::success(); |
| 73 | } |
| 74 | |
Zachary Turner | ee3b9c2 | 2017-04-25 20:22:02 +0000 | [diff] [blame] | 75 | |
Zachary Turner | a30bd1a | 2016-06-30 17:42:48 +0000 | [diff] [blame] | 76 | Error YAMLOutputStyle::dumpFileHeaders() { |
Zachary Turner | f6b9382 | 2016-07-11 21:45:09 +0000 | [diff] [blame] | 77 | if (opts::pdb2yaml::NoFileHeaders) |
| 78 | return Error::success(); |
| 79 | |
Zachary Turner | a3225b0 | 2016-07-29 20:56:36 +0000 | [diff] [blame] | 80 | yaml::MSFHeaders Headers; |
Zachary Turner | f6b9382 | 2016-07-11 21:45:09 +0000 | [diff] [blame] | 81 | Obj.Headers.emplace(); |
| 82 | Obj.Headers->SuperBlock.NumBlocks = File.getBlockCount(); |
| 83 | Obj.Headers->SuperBlock.BlockMapAddr = File.getBlockMapIndex(); |
Zachary Turner | f6b9382 | 2016-07-11 21:45:09 +0000 | [diff] [blame] | 84 | Obj.Headers->SuperBlock.BlockSize = File.getBlockSize(); |
Zachary Turner | 7120a47 | 2016-06-06 20:37:05 +0000 | [diff] [blame] | 85 | auto Blocks = File.getDirectoryBlockArray(); |
Zachary Turner | f6b9382 | 2016-07-11 21:45:09 +0000 | [diff] [blame] | 86 | Obj.Headers->DirectoryBlocks.assign(Blocks.begin(), Blocks.end()); |
| 87 | Obj.Headers->NumDirectoryBlocks = File.getNumDirectoryBlocks(); |
| 88 | Obj.Headers->SuperBlock.NumDirectoryBytes = File.getNumDirectoryBytes(); |
| 89 | Obj.Headers->NumStreams = |
Zachary Turner | ab58ae8 | 2016-06-30 17:43:00 +0000 | [diff] [blame] | 90 | opts::pdb2yaml::StreamMetadata ? File.getNumStreams() : 0; |
Zachary Turner | b927e02 | 2016-07-15 22:17:19 +0000 | [diff] [blame] | 91 | Obj.Headers->SuperBlock.FreeBlockMapBlock = File.getFreeBlockMapBlock(); |
Zachary Turner | f6b9382 | 2016-07-11 21:45:09 +0000 | [diff] [blame] | 92 | Obj.Headers->SuperBlock.Unknown1 = File.getUnknown1(); |
| 93 | Obj.Headers->FileSize = File.getFileSize(); |
Zachary Turner | 7120a47 | 2016-06-06 20:37:05 +0000 | [diff] [blame] | 94 | |
| 95 | return Error::success(); |
| 96 | } |
| 97 | |
Zachary Turner | 760ad4d | 2017-01-20 22:42:09 +0000 | [diff] [blame] | 98 | Error YAMLOutputStyle::dumpStringTable() { |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 99 | bool RequiresStringTable = opts::pdb2yaml::DumpModuleFiles || |
| 100 | !opts::pdb2yaml::DumpModuleSubsections.empty(); |
Zachary Turner | 92dcdda | 2017-06-02 19:49:14 +0000 | [diff] [blame] | 101 | bool RequestedStringTable = opts::pdb2yaml::StringTable; |
| 102 | if (!RequiresStringTable && !RequestedStringTable) |
Zachary Turner | 760ad4d | 2017-01-20 22:42:09 +0000 | [diff] [blame] | 103 | return Error::success(); |
| 104 | |
Zachary Turner | 760ad4d | 2017-01-20 22:42:09 +0000 | [diff] [blame] | 105 | auto ExpectedST = File.getStringTable(); |
| 106 | if (!ExpectedST) |
| 107 | return ExpectedST.takeError(); |
| 108 | |
Zachary Turner | 92dcdda | 2017-06-02 19:49:14 +0000 | [diff] [blame] | 109 | Obj.StringTable.emplace(); |
Zachary Turner | 760ad4d | 2017-01-20 22:42:09 +0000 | [diff] [blame] | 110 | const auto &ST = ExpectedST.get(); |
| 111 | for (auto ID : ST.name_ids()) { |
Zachary Turner | 2d5c2cd | 2017-05-03 17:11:11 +0000 | [diff] [blame] | 112 | auto S = ST.getStringForID(ID); |
| 113 | if (!S) |
| 114 | return S.takeError(); |
| 115 | if (S->empty()) |
| 116 | continue; |
| 117 | Obj.StringTable->push_back(*S); |
Zachary Turner | 760ad4d | 2017-01-20 22:42:09 +0000 | [diff] [blame] | 118 | } |
| 119 | return Error::success(); |
| 120 | } |
| 121 | |
Zachary Turner | a30bd1a | 2016-06-30 17:42:48 +0000 | [diff] [blame] | 122 | Error YAMLOutputStyle::dumpStreamMetadata() { |
| 123 | if (!opts::pdb2yaml::StreamMetadata) |
Zachary Turner | 7120a47 | 2016-06-06 20:37:05 +0000 | [diff] [blame] | 124 | return Error::success(); |
| 125 | |
Zachary Turner | faa554b | 2016-07-15 22:16:56 +0000 | [diff] [blame] | 126 | Obj.StreamSizes.emplace(); |
| 127 | Obj.StreamSizes->assign(File.getStreamSizes().begin(), |
| 128 | File.getStreamSizes().end()); |
Zachary Turner | 7120a47 | 2016-06-06 20:37:05 +0000 | [diff] [blame] | 129 | return Error::success(); |
| 130 | } |
| 131 | |
Zachary Turner | a30bd1a | 2016-06-30 17:42:48 +0000 | [diff] [blame] | 132 | Error YAMLOutputStyle::dumpStreamDirectory() { |
| 133 | if (!opts::pdb2yaml::StreamDirectory) |
Zachary Turner | 7120a47 | 2016-06-06 20:37:05 +0000 | [diff] [blame] | 134 | return Error::success(); |
| 135 | |
Zachary Turner | 1dc9fd3 | 2016-06-14 20:48:36 +0000 | [diff] [blame] | 136 | auto StreamMap = File.getStreamMap(); |
| 137 | Obj.StreamMap.emplace(); |
| 138 | for (auto &Stream : StreamMap) { |
| 139 | pdb::yaml::StreamBlockList BlockList; |
Zachary Turner | faa554b | 2016-07-15 22:16:56 +0000 | [diff] [blame] | 140 | BlockList.Blocks.assign(Stream.begin(), Stream.end()); |
Zachary Turner | 1dc9fd3 | 2016-06-14 20:48:36 +0000 | [diff] [blame] | 141 | Obj.StreamMap->push_back(BlockList); |
Zachary Turner | 25e8b05 | 2016-06-06 20:37:17 +0000 | [diff] [blame] | 142 | } |
Zachary Turner | 25e8b05 | 2016-06-06 20:37:17 +0000 | [diff] [blame] | 143 | |
Zachary Turner | 7120a47 | 2016-06-06 20:37:05 +0000 | [diff] [blame] | 144 | return Error::success(); |
| 145 | } |
| 146 | |
Zachary Turner | 8848a7a | 2016-07-06 18:05:57 +0000 | [diff] [blame] | 147 | Error YAMLOutputStyle::dumpPDBStream() { |
| 148 | if (!opts::pdb2yaml::PdbStream) |
| 149 | return Error::success(); |
| 150 | |
| 151 | auto IS = File.getPDBInfoStream(); |
| 152 | if (!IS) |
| 153 | return IS.takeError(); |
| 154 | |
| 155 | auto &InfoS = IS.get(); |
| 156 | Obj.PdbStream.emplace(); |
| 157 | Obj.PdbStream->Age = InfoS.getAge(); |
| 158 | Obj.PdbStream->Guid = InfoS.getGuid(); |
| 159 | Obj.PdbStream->Signature = InfoS.getSignature(); |
| 160 | Obj.PdbStream->Version = InfoS.getVersion(); |
Zachary Turner | 05d5e61 | 2017-03-16 20:19:11 +0000 | [diff] [blame] | 161 | Obj.PdbStream->Features = InfoS.getFeatureSignatures(); |
Zachary Turner | 8848a7a | 2016-07-06 18:05:57 +0000 | [diff] [blame] | 162 | |
| 163 | return Error::success(); |
| 164 | } |
| 165 | |
Zachary Turner | 3eedd16 | 2017-06-08 23:39:33 +0000 | [diff] [blame] | 166 | static opts::ModuleSubsection convertSubsectionKind(DebugSubsectionKind K) { |
| 167 | switch (K) { |
| 168 | case DebugSubsectionKind::CrossScopeExports: |
| 169 | return opts::ModuleSubsection::CrossScopeExports; |
| 170 | case DebugSubsectionKind::CrossScopeImports: |
| 171 | return opts::ModuleSubsection::CrossScopeImports; |
| 172 | case DebugSubsectionKind::FileChecksums: |
| 173 | return opts::ModuleSubsection::FileChecksums; |
| 174 | case DebugSubsectionKind::InlineeLines: |
| 175 | return opts::ModuleSubsection::InlineeLines; |
| 176 | case DebugSubsectionKind::Lines: |
| 177 | return opts::ModuleSubsection::Lines; |
Zachary Turner | deb3913 | 2017-06-09 00:28:08 +0000 | [diff] [blame] | 178 | case DebugSubsectionKind::Symbols: |
| 179 | return opts::ModuleSubsection::Symbols; |
| 180 | case DebugSubsectionKind::StringTable: |
| 181 | return opts::ModuleSubsection::StringTable; |
| 182 | case DebugSubsectionKind::FrameData: |
| 183 | return opts::ModuleSubsection::FrameData; |
Zachary Turner | 3eedd16 | 2017-06-08 23:39:33 +0000 | [diff] [blame] | 184 | default: |
| 185 | return opts::ModuleSubsection::Unknown; |
| 186 | } |
| 187 | llvm_unreachable("Unreachable!"); |
| 188 | } |
| 189 | |
Zachary Turner | dbeaea7 | 2016-07-11 21:45:26 +0000 | [diff] [blame] | 190 | Error YAMLOutputStyle::dumpDbiStream() { |
| 191 | if (!opts::pdb2yaml::DbiStream) |
| 192 | return Error::success(); |
| 193 | |
| 194 | auto DbiS = File.getPDBDbiStream(); |
| 195 | if (!DbiS) |
| 196 | return DbiS.takeError(); |
| 197 | |
| 198 | auto &DS = DbiS.get(); |
| 199 | Obj.DbiStream.emplace(); |
| 200 | Obj.DbiStream->Age = DS.getAge(); |
| 201 | Obj.DbiStream->BuildNumber = DS.getBuildNumber(); |
| 202 | Obj.DbiStream->Flags = DS.getFlags(); |
| 203 | Obj.DbiStream->MachineType = DS.getMachineType(); |
| 204 | Obj.DbiStream->PdbDllRbld = DS.getPdbDllRbld(); |
| 205 | Obj.DbiStream->PdbDllVersion = DS.getPdbDllVersion(); |
| 206 | Obj.DbiStream->VerHeader = DS.getDbiVersion(); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 207 | if (opts::pdb2yaml::DumpModules) { |
Zachary Turner | 1eb9a02 | 2017-05-04 23:53:29 +0000 | [diff] [blame] | 208 | const auto &Modules = DS.modules(); |
| 209 | for (uint32_t I = 0; I < Modules.getModuleCount(); ++I) { |
| 210 | DbiModuleDescriptor MI = Modules.getModuleDescriptor(I); |
| 211 | |
Zachary Turner | 5b6e4e0 | 2017-04-29 01:13:21 +0000 | [diff] [blame] | 212 | Obj.DbiStream->ModInfos.emplace_back(); |
| 213 | yaml::PdbDbiModuleInfo &DMI = Obj.DbiStream->ModInfos.back(); |
| 214 | |
Zachary Turner | 1eb9a02 | 2017-05-04 23:53:29 +0000 | [diff] [blame] | 215 | DMI.Mod = MI.getModuleName(); |
| 216 | DMI.Obj = MI.getObjFileName(); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 217 | if (opts::pdb2yaml::DumpModuleFiles) { |
Zachary Turner | 1eb9a02 | 2017-05-04 23:53:29 +0000 | [diff] [blame] | 218 | auto Files = Modules.source_files(I); |
| 219 | DMI.SourceFiles.assign(Files.begin(), Files.end()); |
| 220 | } |
Zachary Turner | 3b14764 | 2016-10-08 01:12:01 +0000 | [diff] [blame] | 221 | |
Zachary Turner | 1eb9a02 | 2017-05-04 23:53:29 +0000 | [diff] [blame] | 222 | uint16_t ModiStream = MI.getModuleStreamIndex(); |
Zachary Turner | 5b6e4e0 | 2017-04-29 01:13:21 +0000 | [diff] [blame] | 223 | if (ModiStream == kInvalidStreamIndex) |
| 224 | continue; |
| 225 | |
Zachary Turner | ee3b9c2 | 2017-04-25 20:22:02 +0000 | [diff] [blame] | 226 | auto ModStreamData = msf::MappedBlockStream::createIndexedStream( |
Zachary Turner | 5b74ff3 | 2017-06-03 00:33:35 +0000 | [diff] [blame] | 227 | File.getMsfLayout(), File.getMsfBuffer(), ModiStream, |
| 228 | File.getAllocator()); |
Zachary Turner | ee3b9c2 | 2017-04-25 20:22:02 +0000 | [diff] [blame] | 229 | |
Zachary Turner | 1eb9a02 | 2017-05-04 23:53:29 +0000 | [diff] [blame] | 230 | pdb::ModuleDebugStreamRef ModS(MI, std::move(ModStreamData)); |
Zachary Turner | ee3b9c2 | 2017-04-25 20:22:02 +0000 | [diff] [blame] | 231 | if (auto EC = ModS.reload()) |
| 232 | return EC; |
| 233 | |
Zachary Turner | 92dcdda | 2017-06-02 19:49:14 +0000 | [diff] [blame] | 234 | auto ExpectedST = File.getStringTable(); |
| 235 | if (!ExpectedST) |
| 236 | return ExpectedST.takeError(); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 237 | if (!opts::pdb2yaml::DumpModuleSubsections.empty() && |
Zachary Turner | 92dcdda | 2017-06-02 19:49:14 +0000 | [diff] [blame] | 238 | ModS.hasDebugSubsections()) { |
| 239 | auto ExpectedChecksums = ModS.findChecksumsSubsection(); |
| 240 | if (!ExpectedChecksums) |
| 241 | return ExpectedChecksums.takeError(); |
| 242 | |
Zachary Turner | a8cfc29 | 2017-06-14 15:59:27 +0000 | [diff] [blame] | 243 | StringsAndChecksumsRef SC(ExpectedST->getStringTable(), |
| 244 | *ExpectedChecksums); |
| 245 | |
Zachary Turner | 92dcdda | 2017-06-02 19:49:14 +0000 | [diff] [blame] | 246 | for (const auto &SS : ModS.subsections()) { |
Zachary Turner | 3eedd16 | 2017-06-08 23:39:33 +0000 | [diff] [blame] | 247 | opts::ModuleSubsection OptionKind = convertSubsectionKind(SS.kind()); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 248 | if (!checkModuleSubsection(OptionKind)) |
Zachary Turner | 3eedd16 | 2017-06-08 23:39:33 +0000 | [diff] [blame] | 249 | continue; |
| 250 | |
Zachary Turner | 92dcdda | 2017-06-02 19:49:14 +0000 | [diff] [blame] | 251 | auto Converted = |
Zachary Turner | a8cfc29 | 2017-06-14 15:59:27 +0000 | [diff] [blame] | 252 | CodeViewYAML::YAMLDebugSubsection::fromCodeViewSubection(SC, SS); |
Zachary Turner | 92dcdda | 2017-06-02 19:49:14 +0000 | [diff] [blame] | 253 | if (!Converted) |
| 254 | return Converted.takeError(); |
| 255 | DMI.Subsections.push_back(*Converted); |
| 256 | } |
Zachary Turner | ee3b9c2 | 2017-04-25 20:22:02 +0000 | [diff] [blame] | 257 | } |
| 258 | |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 259 | if (opts::pdb2yaml::DumpModuleSyms) { |
Zachary Turner | 3b14764 | 2016-10-08 01:12:01 +0000 | [diff] [blame] | 260 | DMI.Modi.emplace(); |
Zachary Turner | 3b14764 | 2016-10-08 01:12:01 +0000 | [diff] [blame] | 261 | |
| 262 | DMI.Modi->Signature = ModS.signature(); |
| 263 | bool HadError = false; |
| 264 | for (auto &Sym : ModS.symbols(&HadError)) { |
Zachary Turner | 1e4d369 | 2017-05-30 23:50:44 +0000 | [diff] [blame] | 265 | auto ES = CodeViewYAML::SymbolRecord::fromCodeViewSymbol(Sym); |
| 266 | if (!ES) |
| 267 | return ES.takeError(); |
| 268 | |
| 269 | DMI.Modi->Symbols.push_back(*ES); |
Zachary Turner | 3b14764 | 2016-10-08 01:12:01 +0000 | [diff] [blame] | 270 | } |
| 271 | } |
Zachary Turner | d218c26 | 2016-07-22 15:46:37 +0000 | [diff] [blame] | 272 | } |
| 273 | } |
Zachary Turner | dbeaea7 | 2016-07-11 21:45:26 +0000 | [diff] [blame] | 274 | return Error::success(); |
| 275 | } |
| 276 | |
Zachary Turner | ac5763e | 2016-08-18 16:49:29 +0000 | [diff] [blame] | 277 | Error YAMLOutputStyle::dumpTpiStream() { |
| 278 | if (!opts::pdb2yaml::TpiStream) |
| 279 | return Error::success(); |
| 280 | |
| 281 | auto TpiS = File.getPDBTpiStream(); |
| 282 | if (!TpiS) |
| 283 | return TpiS.takeError(); |
| 284 | |
| 285 | auto &TS = TpiS.get(); |
| 286 | Obj.TpiStream.emplace(); |
| 287 | Obj.TpiStream->Version = TS.getTpiVersion(); |
| 288 | for (auto &Record : TS.types(nullptr)) { |
Zachary Turner | d427383 | 2017-05-30 21:53:05 +0000 | [diff] [blame] | 289 | auto ExpectedRecord = CodeViewYAML::LeafRecord::fromCodeViewRecord(Record); |
| 290 | if (!ExpectedRecord) |
| 291 | return ExpectedRecord.takeError(); |
| 292 | Obj.TpiStream->Records.push_back(*ExpectedRecord); |
Zachary Turner | ac5763e | 2016-08-18 16:49:29 +0000 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | return Error::success(); |
| 296 | } |
| 297 | |
Zachary Turner | de9ba15 | 2016-09-15 18:22:31 +0000 | [diff] [blame] | 298 | Error YAMLOutputStyle::dumpIpiStream() { |
| 299 | if (!opts::pdb2yaml::IpiStream) |
| 300 | return Error::success(); |
| 301 | |
Zachary Turner | 990d0c8 | 2017-06-12 21:34:53 +0000 | [diff] [blame] | 302 | auto InfoS = File.getPDBInfoStream(); |
| 303 | if (!InfoS) |
| 304 | return InfoS.takeError(); |
| 305 | if (!InfoS->containsIdStream()) |
| 306 | return Error::success(); |
| 307 | |
Zachary Turner | de9ba15 | 2016-09-15 18:22:31 +0000 | [diff] [blame] | 308 | auto IpiS = File.getPDBIpiStream(); |
| 309 | if (!IpiS) |
| 310 | return IpiS.takeError(); |
| 311 | |
| 312 | auto &IS = IpiS.get(); |
| 313 | Obj.IpiStream.emplace(); |
| 314 | Obj.IpiStream->Version = IS.getTpiVersion(); |
| 315 | for (auto &Record : IS.types(nullptr)) { |
Zachary Turner | d427383 | 2017-05-30 21:53:05 +0000 | [diff] [blame] | 316 | auto ExpectedRecord = CodeViewYAML::LeafRecord::fromCodeViewRecord(Record); |
| 317 | if (!ExpectedRecord) |
| 318 | return ExpectedRecord.takeError(); |
| 319 | |
| 320 | Obj.IpiStream->Records.push_back(*ExpectedRecord); |
Zachary Turner | de9ba15 | 2016-09-15 18:22:31 +0000 | [diff] [blame] | 321 | } |
| 322 | |
| 323 | return Error::success(); |
| 324 | } |
| 325 | |
Zachary Turner | 7120a47 | 2016-06-06 20:37:05 +0000 | [diff] [blame] | 326 | void YAMLOutputStyle::flush() { |
| 327 | Out << Obj; |
| 328 | outs().flush(); |
| 329 | } |