LLVM 19.0.0git
IPDBSourceFile.cpp
Go to the documentation of this file.
1//===- IPDBSourceFile.cpp - base interface for a PDB source file ----------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
12#include "llvm/Support/Format.h"
14#include <cstdint>
15#include <string>
16
17using namespace llvm;
18using namespace llvm::pdb;
19
21
22void 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";
34}
raw_pwrite_stream & OS
virtual std::string getFileName() const =0
virtual PDB_Checksum getChecksumType() const =0
void dump(raw_ostream &OS, int Indent) const
virtual std::string getChecksum() const =0
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
raw_ostream & indent(unsigned NumSpaces)
indent - Insert 'NumSpaces' spaces.
PDB_Checksum
Specifies the hash algorithm that a source file from a PDB was hashed with.
Definition: PDBTypes.h:119
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
FormattedNumber format_hex_no_prefix(uint64_t N, unsigned Width, bool Upper=false)
format_hex_no_prefix - Output N as a fixed width hexadecimal.
Definition: Format.h:200