• Home
  • Raw
  • Download

Lines Matching refs:cl

50   cl::opt<std::string>
51 InputFile(cl::desc("<input bitcode>"), cl::Positional, cl::init("-"));
53 cl::list<std::string>
54 InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
56 cl::opt<bool> ForceInterpreter("force-interpreter",
57 cl::desc("Force interpretation: disable JIT"),
58 cl::init(false));
60 cl::opt<bool> UseMCJIT(
61 "use-mcjit", cl::desc("Enable use of the MC-based JIT (if available)"),
62 cl::init(false));
65 cl::opt<char>
67 cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] "
69 cl::Prefix,
70 cl::ZeroOrMore,
71 cl::init(' '));
73 cl::opt<std::string>
74 TargetTriple("mtriple", cl::desc("Override target triple for module"));
76 cl::opt<std::string>
78 cl::desc("Architecture to generate assembly for (see --version)"));
80 cl::opt<std::string>
82 cl::desc("Target a specific cpu type (-mcpu=help for details)"),
83 cl::value_desc("cpu-name"),
84 cl::init(""));
86 cl::list<std::string>
88 cl::CommaSeparated,
89 cl::desc("Target specific attributes (-mattr=help for details)"),
90 cl::value_desc("a1,+a2,-a3,..."));
92 cl::opt<std::string>
94 cl::desc("Specify the entry function (default = 'main') "
96 cl::value_desc("function"),
97 cl::init("main"));
99 cl::opt<std::string>
101 cl::desc("Override the 'argv[0]' value passed into the executing"
102 " program"), cl::value_desc("executable"));
104 cl::opt<bool>
105 DisableCoreFiles("disable-core-files", cl::Hidden,
106 cl::desc("Disable emission of core files if possible"));
108 cl::opt<bool>
110 cl::desc("Disable JIT lazy compilation"),
111 cl::init(false));
113 cl::opt<Reloc::Model>
115 cl::desc("Choose relocation model"),
116 cl::init(Reloc::Default),
117 cl::values(
128 cl::opt<llvm::CodeModel::Model>
130 cl::desc("Choose code model"),
131 cl::init(CodeModel::JITDefault),
132 cl::values(clEnumValN(CodeModel::JITDefault, "default",
144 cl::opt<bool>
146 cl::desc("Emit exception handling information"),
147 cl::init(false));
149 cl::opt<bool>
157 cl::desc("Emit debug information to debugger"),
158 cl::init(EMIT_DEBUG));
161 static cl::opt<bool>
163 cl::Hidden,
164 cl::desc("Emit debug info objfiles to disk"),
165 cl::init(false));
193 cl::ParseCommandLineOptions(argc, argv, in main()