LLVM  8.0.1
TypeSymbolEmitter.h
Go to the documentation of this file.
1 //===- TypeSymbolEmitter.h --------------------------------------*- 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_CODEVIEW_TYPESYMBOLEMITTER_H
11 #define LLVM_DEBUGINFO_CODEVIEW_TYPESYMBOLEMITTER_H
12 
15 
16 namespace llvm {
17 class StringRef;
18 
19 namespace codeview {
20 
22 private:
23  TypeSymbolEmitter(const TypeSymbolEmitter &) = delete;
24  TypeSymbolEmitter &operator=(const TypeSymbolEmitter &) = delete;
25 
26 protected:
28 
29 public:
30  virtual ~TypeSymbolEmitter() {}
31 
32 public:
33  virtual void writeUserDefinedType(TypeIndex TI, StringRef Name) = 0;
34 };
35 }
36 }
37 
38 #endif
This class represents lattice values for constants.
Definition: AllocatorList.h:24
amdgpu Simplify well known AMD library false Value Value const Twine & Name
A 32-bit type reference.
Definition: TypeIndex.h:96
virtual void writeUserDefinedType(TypeIndex TI, StringRef Name)=0
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49