Searched refs:Opts (Results 151 - 175 of 217) sorted by relevance

123456789

/openbsd-current/gnu/llvm/llvm/include/llvm/LTO/legacy/
H A DLTOCodeGenerator.h134 void setCodeGenDebugOptions(ArrayRef<StringRef> Opts);
/openbsd-current/gnu/llvm/llvm/include/llvm/Passes/
H A DStandardInstrumentations.h100 PrintPassInstrumentation(bool Enabled, PrintPassOptions Opts) argument
101 : Enabled(Enabled), Opts(Opts) {}
106 PrintPassOptions Opts; member in class:llvm::PrintPassInstrumentation
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DLoads.cpp128 ObjectSizeOpts Opts;
132 Opts.RoundToAlign = false;
133 Opts.NullIsUnknownSize = true;
135 if (getObjectSize(V, ObjSize, DL, TLI, Opts)) {
/openbsd-current/gnu/llvm/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h597 EngineBuilder &setTargetOptions(const TargetOptions &Opts) { argument
598 Options = Opts;
/openbsd-current/gnu/llvm/clang/lib/Frontend/
H A DCompilerInstance.cpp342 CompilerInstance::createDiagnostics(DiagnosticOptions *Opts, argument
348 Diags(new DiagnosticsEngine(DiagID, Opts));
354 } else if (Opts->getFormat() == DiagnosticOptions::SARIF) {
355 Diags->setClient(new SARIFDiagnosticPrinter(llvm::errs(), Opts));
357 Diags->setClient(new TextDiagnosticPrinter(llvm::errs(), Opts));
360 if (Opts->VerifyDiagnostics)
364 if (!Opts->DiagnosticLogFile.empty())
365 SetUpDiagnosticLog(Opts, CodeGenOpts, *Diags);
367 if (!Opts->DiagnosticSerializationFile.empty())
368 SetupSerializedDiagnostics(Opts, *Diag
740 createCodeCompletionConsumer(Preprocessor &PP, StringRef Filename, unsigned Line, unsigned Column, const CodeCompleteOptions &Opts, raw_ostream &OS) argument
[all...]
H A DFrontendActions.cpp105 const FrontendOptions &Opts = CI.getFrontendOpts(); local
106 return CreateASTDumper(nullptr /*Dump to stdout.*/, Opts.ASTDumpFilter,
107 Opts.ASTDumpDecls, Opts.ASTDumpAll,
108 Opts.ASTDumpLookups, Opts.ASTDumpDeclTypes,
109 Opts.ASTDumpFormat);
/openbsd-current/gnu/llvm/clang/lib/Driver/ToolChains/
H A DCuda.cpp725 const OptTable &Opts = getDriver().getOpts(); local
732 DAL->AddJoinedArg(nullptr, Opts.getOption(options::OPT_march_EQ),
885 const OptTable &Opts = getDriver().getOpts(); local
909 DAL->AddJoinedArg(nullptr, Opts.getOption(options::OPT_march_EQ), Arch);
921 DAL->AddJoinedArg(nullptr, Opts.getOption(options::OPT_march_EQ),
H A DHIPAMD.cpp270 const OptTable &Opts = getDriver().getOpts(); local
280 DAL->AddJoinedArg(nullptr, Opts.getOption(options::OPT_mcpu_EQ), BoundArch);
/openbsd-current/gnu/llvm/clang/tools/libclang/
H A DIndexing.cpp337 IndexingOptions Opts; member in class:__anon1174::IndexingFrontendAction
344 const IndexingOptions &Opts,
346 : DataConsumer(std::move(dataConsumer)), Opts(Opts), SKData(skData) {}
374 DataConsumer, Opts, CI.getPreprocessorPtr(),
343 IndexingFrontendAction(std::shared_ptr<CXIndexDataConsumer> dataConsumer, const IndexingOptions &Opts, ThreadSafeParsedRegions *skData) argument
/openbsd-current/gnu/llvm/clang/lib/Driver/ToolChains/Arch/
H A DAArch64.cpp309 SmallVector<StringRef, 4> Opts; local
310 Scope.split(Opts, ",");
311 for (auto Opt : Opts) {
/openbsd-current/gnu/llvm/clang/lib/Frontend/Rewrite/
H A DInclusionRewriter.cpp519 const PreprocessorOutputOptions &Opts) {
522 PP, *OS, Opts.ShowLineMarkers, Opts.UseLineDirectives);
518 RewriteIncludesInInput(Preprocessor &PP, raw_ostream *OS, const PreprocessorOutputOptions &Opts) argument
/openbsd-current/gnu/llvm/clang/tools/driver/
H A Ddriver.cpp240 SmallVectorImpl<const char *> &Opts) {
241 llvm::cl::TokenizeWindowsCommandLine(EnvValue, Saver, Opts);
243 for (const char *Opt : Opts)
239 getCLEnvVarOptions(std::string &EnvValue, llvm::StringSaver &Saver, SmallVectorImpl<const char *> &Opts) argument
/openbsd-current/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DNativeSession.cpp173 NativeSession::searchForPdb(const PdbSearchOptions &Opts) { argument
174 Expected<std::string> PathOrErr = getPdbPathFromExe(Opts.ExePath);
184 SmallString<128> PdbPath = StringRef(Opts.ExePath);
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp559 AnalyzerOptions &Opts = Engine.getAnalysisManager().options; local
563 if (Opts.IsNaiveCTUEnabled && CTUCtx.isImportedAsNew(Decl)) {
573 if (!Opts.IsNaiveCTUEnabled)
577 CTUCtx.getCrossTUDefinition(FD, Opts.CTUDir, Opts.CTUIndexName,
578 Opts.DisplayCTUProgress);
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DSimplifyCFGPass.cpp332 SimplifyCFGPass::SimplifyCFGPass(const SimplifyCFGOptions &Opts) argument
333 : Options(Opts) {
H A DLICM.cpp276 LoopInvariantCodeMotion LICM(Opts.MssaOptCap, Opts.MssaNoAccForPromotionCap,
277 Opts.AllowSpeculation);
297 OS << (Opts.AllowSpeculation ? "" : "no-") << "allowspeculation";
313 LoopInvariantCodeMotion LICM(Opts.MssaOptCap, Opts.MssaNoAccForPromotionCap,
314 Opts.AllowSpeculation);
338 OS << (Opts.AllowSpeculation ? "" : "no-") << "allowspeculation";
/openbsd-current/gnu/llvm/clang/include/clang/Frontend/
H A DCompilerInstance.h619 /// \param Opts - The diagnostic options; note that the created text
631 createDiagnostics(DiagnosticOptions *Opts,
687 const CodeCompleteOptions &Opts, raw_ostream &OS);
/openbsd-current/gnu/llvm/clang/lib/Basic/Targets/
H A DMips.h191 void getTargetDefines(const LangOptions &Opts,
H A DRISCV.cpp125 void RISCVTargetInfo::getTargetDefines(const LangOptions &Opts, argument
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedPointee.cpp156 if (!Opts.CheckPointeeInitialization) {
/openbsd-current/gnu/llvm/clang/include/clang/Basic/
H A DTargetInfo.h271 /// \param Opts - The options to use to initialize the target. The target may
276 const std::shared_ptr<TargetOptions> &Opts);
945 virtual void getTargetDefines(const LangOptions &Opts,
1252 virtual void adjust(DiagnosticsEngine &Diags, LangOptions &Opts);
1686 virtual bool validateOpenCLTarget(const LangOptions &Opts,
/openbsd-current/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeSession.h49 static Expected<std::string> searchForPdb(const PdbSearchOptions &Opts);
/openbsd-current/gnu/llvm/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h177 const TargetLibraryInfo *TLI, ObjectSizeOpts Opts = {});
/openbsd-current/gnu/llvm/clang/lib/ARCMigrate/
H A DARCMT.cpp108 void BeginSourceFile(const LangOptions &Opts,
114 DiagClient.BeginSourceFile(Opts, PP);
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DExprInspectionChecker.cpp434 const LangOptions &Opts = C.getLangOpts(); local
439 C.getLocationContext()->getDecl(), Opts);

Completed in 404 milliseconds

123456789