blob: 56e85d1faecdf85a6bcb05bb36382b78a2fdd9b3 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- IPDBInjectedSource.h - base class for PDB injected file --*- C++ -*-===//
2//
Andrew Walbran16937d02019-10-22 13:54:20 +01003// 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
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01006//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_DEBUGINFO_PDB_IPDBINJECTEDSOURCE_H
10#define LLVM_DEBUGINFO_PDB_IPDBINJECTEDSOURCE_H
11
12#include "PDBTypes.h"
13#include "llvm/Support/raw_ostream.h"
14#include <memory>
15#include <string>
16
17namespace llvm {
18class raw_ostream;
19
20namespace pdb {
21
22/// IPDBInjectedSource defines an interface used to represent source files
23/// which were injected directly into the PDB file during the compilation
24/// process. This is used, for example, to add natvis files to a PDB, but
25/// in theory could be used to add arbitrary source code.
26class IPDBInjectedSource {
27public:
28 virtual ~IPDBInjectedSource();
29
30 virtual uint32_t getCrc32() const = 0;
31 virtual uint64_t getCodeByteSize() const = 0;
32 virtual std::string getFileName() const = 0;
33 virtual std::string getObjectFileName() const = 0;
34 virtual std::string getVirtualFileName() const = 0;
35 virtual PDB_SourceCompression getCompression() const = 0;
36 virtual std::string getCode() const = 0;
37};
38} // namespace pdb
39} // namespace llvm
40
41#endif // LLVM_DEBUGINFO_PDB_IPDBINJECTEDSOURCE_H