LLVM  8.0.1
InfoStreamBuilder.h
Go to the documentation of this file.
1 //===- InfoStreamBuilder.h - PDB Info Stream Creation -----------*- 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 #ifndef LLVM_DEBUGINFO_PDB_RAW_PDBINFOSTREAMBUILDER_H
11 #define LLVM_DEBUGINFO_PDB_RAW_PDBINFOSTREAMBUILDER_H
12 
13 #include "llvm/ADT/Optional.h"
14 #include "llvm/Support/Error.h"
15 
20 
21 namespace llvm {
22 class WritableBinaryStreamRef;
23 
24 namespace msf {
25 class MSFBuilder;
26 }
27 namespace pdb {
28 class PDBFile;
29 class NamedStreamMap;
30 
32 public:
34  InfoStreamBuilder(const InfoStreamBuilder &) = delete;
35  InfoStreamBuilder &operator=(const InfoStreamBuilder &) = delete;
36 
37  void setVersion(PdbRaw_ImplVer V);
38  void addFeature(PdbRaw_FeatureSig Sig);
39 
40  // If this is true, the PDB contents are hashed and this hash is used as
41  // PDB GUID and as Signature. The age is always 1.
42  void setHashPDBContentsToGUID(bool B);
43 
44  // These only have an effect if hashPDBContentsToGUID() is false.
45  void setSignature(uint32_t S);
46  void setAge(uint32_t A);
47  void setGuid(codeview::GUID G);
48 
49  bool hashPDBContentsToGUID() const { return HashPDBContentsToGUID; }
50  uint32_t getAge() const { return Age; }
51  codeview::GUID getGuid() const { return Guid; }
52  Optional<uint32_t> getSignature() const { return Signature; }
53 
55 
56  Error finalizeMsfLayout();
57 
58  Error commit(const msf::MSFLayout &Layout,
59  WritableBinaryStreamRef Buffer) const;
60 
61 private:
62  msf::MSFBuilder &Msf;
63 
64  std::vector<PdbRaw_FeatureSig> Features;
65  PdbRaw_ImplVer Ver;
66  uint32_t Age;
67  Optional<uint32_t> Signature;
68  codeview::GUID Guid;
69 
70  bool HashPDBContentsToGUID = false;
71 
72  NamedStreamMap &NamedStreams;
73 };
74 }
75 }
76 
77 #endif
This class represents lattice values for constants.
Definition: AllocatorList.h:24
arc branch finalize
Optional< uint32_t > getSignature() const
const FeatureBitset Features
This represents the &#39;GUID&#39; type from windows.h.
Definition: GUID.h:22
codeview::GUID getGuid() const
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
const DataFlowGraph & G
Definition: RDFGraph.cpp:211
Lightweight error class with error context and mandatory checking.
Definition: Error.h:158