Home | History | Annotate | Download | only in llvm-pdbdump
      1 //===- BuiltinDumper.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_TOOLS_LLVMPDBDUMP_BUILTINDUMPER_H
     11 #define LLVM_TOOLS_LLVMPDBDUMP_BUILTINDUMPER_H
     12 
     13 #include "llvm/DebugInfo/PDB/PDBSymDumper.h"
     14 
     15 namespace llvm {
     16 
     17 class LinePrinter;
     18 
     19 class BuiltinDumper : public PDBSymDumper {
     20 public:
     21   BuiltinDumper(LinePrinter &P);
     22 
     23   void start(const PDBSymbolTypeBuiltin &Symbol);
     24 
     25 private:
     26   StringRef getTypeName(const PDBSymbolTypeBuiltin &Symbol);
     27 
     28   LinePrinter &Printer;
     29 };
     30 }
     31 
     32 #endif
     33