Searched refs:Clang (Results 1 - 22 of 22) sorted by relevance

/freebsd-12-stable/share/doc/psd/06.Clang/
H A DMakefile4 VOLUME= psd/06.Clang
5 SRCS= Clang.ms
/freebsd-12-stable/contrib/llvm-project/clang/tools/driver/
H A Dcc1_main.cpp1 //===-- cc1_main.cpp - Clang CC1 Compiler Frontend ------------------------===//
187 std::unique_ptr<CompilerInstance> Clang(new CompilerInstance());
190 // Register the support for object-file-wrapped Clang modules.
191 auto PCHOps = Clang->getPCHContainerOperations();
207 CompilerInvocation::CreateFromArgs(Clang->getInvocation(), Argv, Diags);
209 if (Clang->getFrontendOpts().TimeTrace) {
211 Clang->getFrontendOpts().TimeTraceGranularity, Argv0);
214 if (Clang->getFrontendOpts().PrintSupportedCPUs)
215 return PrintSupportedCPUs(Clang->getTargetOpts().Triple);
218 if (Clang
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DChainedIncludesSource.cpp147 std::unique_ptr<CompilerInstance> Clang(
149 Clang->setInvocation(std::move(CInvok));
150 Clang->setDiagnostics(Diags.get());
151 Clang->setTarget(TargetInfo::CreateTargetInfo(
152 Clang->getDiagnostics(), Clang->getInvocation().TargetOpts));
153 Clang->createFileManager();
154 Clang->createSourceManager(Clang->getFileManager());
155 Clang
[all...]
H A DASTUnit.cpp1118 std::unique_ptr<CompilerInstance> Clang(
1121 // Ensure that Clang has a FileManager with the right VFS, which may have
1125 Clang->setFileManager(&*FileMgr);
1127 FileMgr = Clang->createFileManager(std::move(VFS));
1131 CICleanup(Clang.get());
1133 Clang->setInvocation(CCInvocation);
1134 OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].getFile();
1138 Clang->setDiagnostics(&getDiagnostics());
1141 Clang->setTarget(TargetInfo::CreateTargetInfo(
1142 Clang
[all...]
H A DPrecompiledPreamble.cpp280 std::unique_ptr<CompilerInstance> Clang(
285 Clang.get());
287 Clang->setInvocation(std::move(PreambleInvocation));
288 Clang->setDiagnostics(&Diagnostics);
291 Clang->setTarget(TargetInfo::CreateTargetInfo(
292 Clang->getDiagnostics(), Clang->getInvocation().TargetOpts));
293 if (!Clang->hasTarget())
300 Clang->getTarget().adjust(Clang
[all...]
H A DCompilerInvocation.cpp650 // In error, return silently and let Clang PGOUse report the error message.
887 // TODO: This should be merged into getFramePointerKind in Clang.cpp.
1608 Opts.setFormat(DiagnosticOptions::Clang);
2544 // '-fgnu-keywords'. Clang conflates the two for simplicity under the single
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/FrontendTool/
H A DUtils.h34 bool ExecuteCompilerInvocation(CompilerInstance *Clang);
/freebsd-12-stable/contrib/llvm-project/clang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp10 // minimize the impact of pulling in essentially everything else in Clang.
185 bool ExecuteCompilerInvocation(CompilerInstance *Clang) { argument
187 if (Clang->getFrontendOpts().ShowHelp) {
190 "LLVM 'Clang' Compiler: http://clang.llvm.org",
199 if (Clang->getFrontendOpts().ShowVersion) {
206 e = Clang->getFrontendOpts().Plugins.size(); i != e; ++i) {
207 const std::string &Path = Clang->getFrontendOpts().Plugins[i];
210 Clang->getDiagnostics().Report(diag::err_fe_unable_to_load_plugin)
220 Clang->getFrontendOpts().ProgramAction = clang::frontend::PluginAction;
221 Clang
[all...]
/freebsd-12-stable/share/doc/psd/
H A DMakefile21 06.Clang \
/freebsd-12-stable/share/mk/
H A Dbsd.clang-analyze.mk3 # Support Clang static analyzer on SRCS.
25 # Run the Clang static analyzer against all sources and present
34 .error Clang static analyzer requires clang but found that compiler '${CC}' is ${COMPILER_TYPE}
H A Dlocal.gendirdeps.mk22 # Clang has nested directories in its OBJDIR.
H A Dsrc.opts.mk298 # If the compiler is not C++11 capable, disable Clang and use GCC instead.
300 # build Clang without using an external compiler.
305 # Clang is enabled, and will be installed as the default /usr/bin/cc.
309 # If an external compiler that supports C++11 is used as ${CC} and Clang
310 # supports the target, then Clang is enabled but GCC is installed as the
315 # Everything else disables Clang, and uses GCC instead.
H A Dlocal.dirdeps.mk179 # XXX: Clang and GCC always adds -lm currently, even when not needed.
H A Dbsd.sys.mk80 # Clang has more warnings enabled by default, and when using -Wall, so if WARNS
/freebsd-12-stable/release/packages/
H A DMakefile.package25 clang_COMMENT= Clang Utilities
26 clang_DESC= Clang Utilities
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.h1 //===--- Clang.h - Clang Tool and ToolChain Implementations ====-*- C++ -*-===//
27 /// Clang compiler tool.
28 class LLVM_LIBRARY_VISIBILITY Clang : public Tool { class in namespace:clang::driver::tools
103 Clang(const ToolChain &TC);
104 ~Clang() override;
117 /// Clang integrated assembler tool.
H A DClang.cpp1 //===-- Clang.cpp - Clang+LLVM ToolChain Implementations --------*- C++ -*-===//
9 #include "Clang.h"
807 // The default is to use Clang Instrumentation.
1093 void Clang::AddPreprocessingOptions(Compilation &C, const JobAction &JA,
1550 void Clang::AddARMTargetArgs(const llvm::Triple &Triple, const ArgList &Args,
1591 void Clang::RenderTargetOptions(const llvm::Triple &EffectiveTriple,
1684 void Clang::AddAArch64TargetArgs(const ArgList &Args,
1759 void Clang::AddMIPSTargetArgs(const ArgList &Args,
1902 void Clang
6100 Clang::Clang(const ToolChain &TC) function in class:Clang
[all...]
/freebsd-12-stable/lib/clang/liblldb/
H A DMakefile316 SRCS+= Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
317 SRCS+= Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp
318 SRCS+= Plugins/ExpressionParser/Clang/ASTUtils.cpp
319 SRCS+= Plugins/ExpressionParser/Clang/ClangASTSource.cpp
320 SRCS+= Plugins/ExpressionParser/Clang/ClangDeclVendor.cpp
321 SRCS+= Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
322 SRCS+= Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
323 SRCS+= Plugins/ExpressionParser/Clang/ClangExpressionSourceCode.cpp
324 SRCS+= Plugins/ExpressionParser/Clang/ClangExpressionVariable.cpp
325 SRCS+= Plugins/ExpressionParser/Clang/ClangFunctionCalle
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticOptions.h65 enum TextDiagnosticFormat { Clang, MSVC, Vi }; enumerator in enum:clang::DiagnosticLevelMask::DiagnosticOptions::TextDiagnosticFormat
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp12 #include "ToolChains/Clang.h"
254 if (!Clang)
255 Clang.reset(new tools::Clang(*this));
256 return Clang.get();
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DToolChain.h136 mutable std::unique_ptr<Tool> Clang; member in class:clang::driver::ToolChain
267 /// \param ProgName The name the Clang driver was invoked with (from,
299 /// a compiler other than Clang.
494 /// ComputeEffectiveClangTriple - Return the Clang triple to use for this
498 /// Clang.
/freebsd-12-stable/lib/clang/libclang/
H A DMakefile308 SRCS_MIN+= Driver/ToolChains/Clang.cpp

Completed in 371 milliseconds