Home
last modified time | relevance | path

Searched refs:IsCLMode (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DCompilation.cpp256 if (TheDriver.IsCLMode()) in ExecuteJobs()
H A DDriver.cpp295 if (!IsCLMode() && in ParseArgStrings()
301 DiagID = IsCLMode() ? diag::warn_drv_unknown_argument_clang_cl in ParseArgStrings()
306 DiagID = IsCLMode() in ParseArgStrings()
1230 if (IsCLMode() && !ContainsError) { in BuildCompilation()
1291 if (IsCLMode()) { in BuildCompilation()
2627 if (!IsCLMode() || ValidXArgs.contains(LastXArg)) { in BuildInputs()
3965 if (IsCLMode() && LTOMode != LTOK_None && in handleArguments()
5950 if (IsCLMode()) { in GetNamedOutputPath()
5975 } else if (JA.getType() == types::TY_PCH && IsCLMode()) { in GetNamedOutputPath()
6055 if (JA.getType() == types::TY_PCH && !IsCLMode()) { in GetNamedOutputPath()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMSVC.cpp83 !C.getDriver().IsCLMode() && !C.getDriver().IsFlangMode()) { in ConstructJob()
152 if (!C.getDriver().IsCLMode() && Args.hasArg(options::OPT_L)) in ConstructJob()
H A DClang.cpp80 << (D.IsCLMode() ? "/E, /P or /EP" : "-E"); in CheckPreprocessingOptions()
1155 if (getToolChain().getDriver().IsCLMode()) { in AddPreprocessingOptions()
2236 } else if (D.IsCLMode()) { in AddX86TargetArgs()
4560 if (TC.getTriple().isOSBinFormatELF() || D.IsCLMode()) { in renderDebugOptions()
4563 else if (D.IsCLMode()) in renderDebugOptions()
5542 bool TBAAOnByDefault = !D.IsCLMode(); in ConstructJob()
5676 Triple.isX86() && D.IsCLMode())) in ConstructJob()
5851 if (D.IsCLMode()) in ConstructJob()
6872 if (Triple.isWindowsMSVCEnvironment() && !D.IsCLMode() && in ConstructJob()
7045 if (!C.getDriver().IsCLMode()) in ConstructJob()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DDriver.h225 bool IsCLMode() const { return Mode == CLMode; } in IsCLMode() function