Eugene Zelenko | 570e39a | 2016-11-23 23:16:32 +0000 | [diff] [blame] | 1 | //===- IPDBSourceFile.cpp - base interface for a PDB source file ----------===// |
Zachary Turner | a554917 | 2015-02-10 22:43:25 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Zachary Turner | a554917 | 2015-02-10 22:43:25 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #include "llvm/DebugInfo/PDB/IPDBSourceFile.h" |
Zachary Turner | a554917 | 2015-02-10 22:43:25 +0000 | [diff] [blame] | 10 | #include "llvm/DebugInfo/PDB/PDBExtras.h" |
Eugene Zelenko | 570e39a | 2016-11-23 23:16:32 +0000 | [diff] [blame] | 11 | #include "llvm/DebugInfo/PDB/PDBTypes.h" |
Zachary Turner | a554917 | 2015-02-10 22:43:25 +0000 | [diff] [blame] | 12 | #include "llvm/Support/Format.h" |
| 13 | #include "llvm/Support/raw_ostream.h" |
Eugene Zelenko | 570e39a | 2016-11-23 23:16:32 +0000 | [diff] [blame] | 14 | #include <cstdint> |
| 15 | #include <string> |
Zachary Turner | a554917 | 2015-02-10 22:43:25 +0000 | [diff] [blame] | 16 | |
| 17 | using namespace llvm; |
Zachary Turner | ec28fc3 | 2016-05-04 20:32:13 +0000 | [diff] [blame] | 18 | using namespace llvm::pdb; |
Zachary Turner | a554917 | 2015-02-10 22:43:25 +0000 | [diff] [blame] | 19 | |
Eugene Zelenko | 570e39a | 2016-11-23 23:16:32 +0000 | [diff] [blame] | 20 | IPDBSourceFile::~IPDBSourceFile() = default; |
Zachary Turner | a554917 | 2015-02-10 22:43:25 +0000 | [diff] [blame] | 21 | |
Zachary Turner | bc42da0 | 2015-02-23 05:59:14 +0000 | [diff] [blame] | 22 | void IPDBSourceFile::dump(raw_ostream &OS, int Indent) const { |
| 23 | OS.indent(Indent); |
| 24 | PDB_Checksum ChecksumType = getChecksumType(); |
| 25 | OS << "["; |
| 26 | if (ChecksumType != PDB_Checksum::None) { |
| 27 | OS << ChecksumType << ": "; |
| 28 | std::string Checksum = getChecksum(); |
| 29 | for (uint8_t c : Checksum) |
| 30 | OS << format_hex_no_prefix(c, 2, true); |
| 31 | } else |
| 32 | OS << "No checksum"; |
| 33 | OS << "] " << getFileName() << "\n"; |
Zachary Turner | a554917 | 2015-02-10 22:43:25 +0000 | [diff] [blame] | 34 | } |