Mercurial > hg > CbC > CbC_llvm
view tools/llvm-pdbdump/CompilandDumper.h @ 108:1881386f7909
use llvm.setjmp and llvm.longjmp
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 01 Feb 2016 02:57:01 +0900 |
parents | afa8332a0e37 |
children | 1172e4bd9c6f |
line wrap: on
line source
//===- CompilandDumper.h - llvm-pdbdump compiland symbol dumper *- C++ --*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef LLVM_TOOLS_LLVMPDBDUMP_COMPILANDDUMPER_H #define LLVM_TOOLS_LLVMPDBDUMP_COMPILANDDUMPER_H #include "llvm/DebugInfo/PDB/PDBSymDumper.h" namespace llvm { class LinePrinter; class CompilandDumper : public PDBSymDumper { public: CompilandDumper(LinePrinter &P); void start(const PDBSymbolCompiland &Symbol, bool Children); void dump(const PDBSymbolCompilandDetails &Symbol) override; void dump(const PDBSymbolCompilandEnv &Symbol) override; void dump(const PDBSymbolData &Symbol) override; void dump(const PDBSymbolFunc &Symbol) override; void dump(const PDBSymbolLabel &Symbol) override; void dump(const PDBSymbolThunk &Symbol) override; void dump(const PDBSymbolTypeTypedef &Symbol) override; void dump(const PDBSymbolUnknown &Symbol) override; private: LinePrinter &Printer; }; } #endif