Create MCTargetOptions.
[oota-llvm.git] / include / llvm / MC / MCTargetOptionsCommandFlags.h
1 //===-- MCTargetOptionsCommandFlags.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 // This file contains machine code-specific flags that are shared between
11 // different command line tools.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_MC_MCTARGETOPTIONSCOMMANDFLAGS_H
16 #define LLVM_MC_MCTARGETOPTIONSCOMMANDFLAGS_H
17
18 #include "llvm/Support/CommandLine.h"
19 #include "llvm/MC/MCTargetOptions.h"
20 using namespace llvm;
21
22 cl::opt<MCTargetOptions::AsmInstrumentation> AsmInstrumentation(
23     "asm-instrumentation",
24     cl::desc("Instrumentation of inline assembly and "
25              "assembly source files"),
26     cl::init(MCTargetOptions::AsmInstrumentationNone),
27     cl::values(clEnumValN(MCTargetOptions::AsmInstrumentationNone,
28                           "none",
29                           "no instrumentation at all"),
30                clEnumValN(MCTargetOptions::AsmInstrumentationAddress,
31                           "address",
32                           "instrument instructions with memory arguments"),
33                clEnumValEnd));
34
35 static inline MCTargetOptions InitMCTargetOptionsFromFlags() {
36   MCTargetOptions Options;
37   Options.SanitizeAddress =
38       (AsmInstrumentation == MCTargetOptions::AsmInstrumentationAddress);
39   return Options;
40 }
41
42 #endif