| 1 | //===-- Options.h -----------------------------------------------*- C++ -*-===// |
| 2 | // |
| 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | #ifndef LLVM_TOOLS_LLVM_PROFGEN_OPTIONS_H |
| 9 | #define LLVM_TOOLS_LLVM_PROFGEN_OPTIONS_H |
| 10 | |
| 11 | #include "llvm/Support/CommandLine.h" |
| 12 | |
| 13 | namespace llvm { |
| 14 | |
| 15 | extern cl::OptionCategory ProfGenCategory; |
| 16 | |
| 17 | extern cl::opt<std::string> OutputFilename; |
| 18 | extern cl::opt<bool> ShowDisassemblyOnly; |
| 19 | extern cl::opt<bool> ShowSourceLocations; |
| 20 | extern cl::opt<bool> SkipSymbolization; |
| 21 | extern cl::opt<bool> ShowDetailedWarning; |
| 22 | extern cl::opt<bool> InferMissingFrames; |
| 23 | extern cl::opt<bool> EnableCSPreInliner; |
| 24 | extern cl::opt<bool> UseContextCostForPreInliner; |
| 25 | extern cl::opt<bool> LoadFunctionFromSymbol; |
| 26 | |
| 27 | } // end namespace llvm |
| 28 | |
| 29 | #endif |
| 30 | |