2015-02-22 22:03:38 +00:00
|
|
|
//===- llvm-pdbdump.h ----------------------------------------- *- 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_LLVMPDBDUMP_H
|
|
|
|
#define LLVM_TOOLS_LLVMPDBDUMP_LLVMPDBDUMP_H
|
|
|
|
|
2015-03-02 04:39:56 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2015-02-22 22:03:38 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
|
2015-03-02 04:39:56 +00:00
|
|
|
namespace opts {
|
|
|
|
extern llvm::cl::opt<bool> Compilands;
|
|
|
|
extern llvm::cl::opt<bool> Symbols;
|
|
|
|
extern llvm::cl::opt<bool> Globals;
|
|
|
|
extern llvm::cl::opt<bool> Types;
|
|
|
|
extern llvm::cl::opt<bool> All;
|
2015-02-22 22:03:38 +00:00
|
|
|
|
2015-03-02 04:39:56 +00:00
|
|
|
extern llvm::cl::opt<bool> ExcludeCompilerGenerated;
|
|
|
|
|
2015-03-04 06:09:53 +00:00
|
|
|
extern llvm::cl::opt<bool> NoClassDefs;
|
|
|
|
extern llvm::cl::opt<bool> NoEnumDefs;
|
2015-03-02 04:39:56 +00:00
|
|
|
extern llvm::cl::list<std::string> ExcludeTypes;
|
|
|
|
extern llvm::cl::list<std::string> ExcludeSymbols;
|
|
|
|
extern llvm::cl::list<std::string> ExcludeCompilands;
|
2015-09-29 19:49:06 +00:00
|
|
|
extern llvm::cl::list<std::string> IncludeTypes;
|
|
|
|
extern llvm::cl::list<std::string> IncludeSymbols;
|
|
|
|
extern llvm::cl::list<std::string> IncludeCompilands;
|
2015-02-22 22:03:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|