HomeSort by: relevance | last modified time | path
    Searched refs:Compiler (Results 1 - 25 of 73) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
DependencyScanningWorker.cpp 48 /// dependency scanning for the given compiler invocation.
64 // Create a compiler instance to handle the actual work.
65 CompilerInstance Compiler(std::move(PCHContainerOps));
66 Compiler.setInvocation(std::move(Invocation));
69 Compiler.getDiagnosticOpts().ShowCarets = false;
70 // Create the compiler's actual diagnostics engine.
71 Compiler.createDiagnostics(DiagConsumer, /*ShouldOwnClient=*/false);
72 if (!Compiler.hasDiagnostics())
77 const CompilerInvocation &CI = Compiler.getInvocation();
90 CI, Compiler.getDiagnostics(), DepFS))
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
compiler.h 2 /* Compiler implementation of the D programming language
8 * https://github.com/dlang/dmd/blob/master/src/dmd/compiler.h
16 // This file contains a data structure that describes a back-end compiler
17 // and implements compiler-specific actions.
30 struct Compiler
compiler.d 2 * Describes a back-end compiler and implements compiler-specific actions.
7 * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/compiler.d, _compiler.d)
9 * Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/compiler.d
12 module dmd.compiler;
31 * A data structure that describes a back-end compiler and implements
32 * compiler-specific actions.
34 extern (C++) struct Compiler
45 * Certain compiler backends (ie: GDC) have special placeholder
dmodule.d 23 import dmd.compiler;
336 * Deinitializes the global state of the compiler.
595 * special handling to avoid exposing the compiler's internals.
946 if (!this.isRoot() && Compiler.onImport(this))
1107 Compiler.onParseModule(this);
1133 // If it isn't there, some compiler rewrites, like
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/
ClangSrcLocDump.cpp 57 CreateASTConsumer(clang::CompilerInstance &Compiler,
59 return Processor.createASTConsumer(Compiler, File);
141 CompilerInstance Compiler(std::make_shared<clang::PCHContainerOperations>());
142 Compiler.setInvocation(std::move(Invocation));
144 Compiler.createDiagnostics(&DiagnosticPrinter, false);
145 if (!Compiler.hasDiagnostics())
149 Compiler.getDiagnosticOpts().ShowCarets = false;
150 Compiler.createSourceManager(*Files);
151 Compiler.setFileManager(Files.get());
154 Compiler.ExecuteAction(ScopedToolAction);
    [all...]
ASTSrcLocProcessor.h 29 std::unique_ptr<ASTConsumer> createASTConsumer(CompilerInstance &Compiler,
ASTSrcLocProcessor.cpp 47 ASTSrcLocProcessor::createASTConsumer(clang::CompilerInstance &Compiler,
  /src/external/apache2/llvm/dist/clang/tools/scan-build/libexec/
ccc-analyzer 51 # Compiler command setup.
54 # Search in the PATH if the compiler exists
65 my $Compiler;
89 $Compiler = $ENV{'CCC_CXX'};
90 if (!defined $Compiler || (! -x $Compiler && ! SearchInPath($Compiler))) { $Compiler = $DefaultCXXCompiler; }
98 $Compiler = $ENV{'CCC_CC'};
99 if (!defined $Compiler || (! -x $Compiler && ! SearchInPath($Compiler))) { $Compiler = $DefaultCCompiler;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Myriad.h 22 class LLVM_LIBRARY_VISIBILITY Compiler : public Tool {
24 Compiler(const ToolChain &TC) : Tool("moviCompile", "movicompile", TC) {}
48 /// The Compiler and Assembler as defined above are in the SHAVE namespace,
67 /// MyriadToolChain - A tool chain using either clang or the external compiler
95 mutable std::unique_ptr<Tool> Compiler;
MinGW.h 104 mutable std::unique_ptr<tools::gcc::Compiler> Compiler;
Myriad.cpp 24 void tools::SHAVE::Compiler::ConstructJob(Compilation &C, const JobAction &JA,
275 if (!Compiler)
276 Compiler.reset(new tools::SHAVE::Compiler(*this));
277 return Compiler.get();
Gnu.h 115 class LLVM_LIBRARY_VISIBILITY Compiler : public Common {
117 Compiler(const ToolChain &TC) : Common("gcc::Compiler", "gcc frontend", TC) {}
359 mutable std::unique_ptr<tools::gcc::Compiler> Compile;
MinGW.cpp 67 // Make use of compiler-rt if --rtlib option is used
168 // GCC used to do this only when the compiler itself runs on windows, but
201 // Add the compiler-rt library directories if they exist to help
441 if (!Compiler)
442 Compiler.reset(new tools::gcc::Compiler(*this));
443 return Compiler.get();
  /src/external/gpl3/gcc.old/dist/gcc/d/
d-compiler.cc 1 /* d-compiler.cc -- D frontend interface to the gcc back-end.
22 #include "dmd/compiler.h"
34 /* Implements the Compiler interface used by the frontend. */
41 Compiler::paintAsType (UnionExp *, Expression *expr, Type *type)
125 Compiler::onParseModule (Module *m)
154 Compiler::onImport (Module *)
  /src/external/apache2/llvm/dist/clang/tools/clang-format-vs/ClangFormat/
Resources.Designer.cs 22 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
  /src/external/mit/expat/dist/lib/
internal.h 77 the compiler cannot perform stack optimizations for call clusters.
126 # error Compiler did not define ULONG_MAX for us
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
Tooling.cpp 72 // code that sets up a compiler to run tools on it, and we should refactor
81 *Diagnostics, "clang LLVM compiler", std::move(VFS));
383 // Create a compiler instance to handle the actual work.
384 CompilerInstance Compiler(std::move(PCHContainerOps));
385 Compiler.setInvocation(std::move(Invocation));
386 Compiler.setFileManager(Files);
388 // The FrontendAction can have lifetime requirements for Compiler or its
389 // members, and we need to ensure it's deleted earlier than Compiler. So we
390 // pass it to an std::unique_ptr declared after the Compiler variable.
393 // Create the compiler's actual diagnostics engine
    [all...]
  /src/external/apache2/llvm/dist/libcxx/
appveyor-reqs-install.cmd 9 :: Setup Compiler
  /src/sys/external/bsd/acpica/dist/tools/acpiexec/
aetables.h 425 [01Ch 0028 4] Asl Compiler ID : "INTL"
426 [020h 0032 4] Asl Compiler Revision : 20110316
457 [0004] Asl Compiler ID : "INTL"
458 [0004] Asl Compiler Revision : 20100528
471 [004] Asl Compiler ID : "INTL"
472 [004] Asl Compiler Revision : 20100528
  /src/sys/external/bsd/acpica/dist/tools/examples/
extables.c 273 [0004] Asl Compiler ID : "INTL"
274 [0004] Asl Compiler Revision : 20100528
288 [0004] Asl Compiler ID : "INTL"
289 [0004] Asl Compiler Revision : 20100528
303 [0004] Asl Compiler ID : "INTL"
304 [0004] Asl Compiler Revision : 20111123
  /src/external/lgpl3/gmp/dist/mpn/arm64/
invert_limb.asm 39 C Compiler generated, mildly edited. Could surely be further optimised.
  /src/sys/external/bsd/gnu-efi/dist/inc/x86_64/
efibind.h 33 #error Compiler is too old for GNU_EFI_USE_MS_ABI
47 // Use Microsoft C compiler integer width declarations
193 #ifndef EFIAPI // Forces EFI calling conventions reguardless of compiler options
195 #define EFIAPI __cdecl // Force C calling convention for Microsoft C compiler
352 /* Front-ends to efi_callX to avoid compiler warnings */
  /src/external/bsd/pcc/dist/pcc/
configure 3 # Generated by GNU Autoconf 2.69 for Portable C Compiler 1.2.0.DEVEL.
581 PACKAGE_NAME='Portable C Compiler'
584 PACKAGE_STRING='Portable C Compiler 1.2.0.DEVEL'
1275 \`configure' configures Portable C Compiler 1.2.0.DEVEL to adapt to many kinds of systems.
1341 short | recursive ) echo "Configuration of Portable C Compiler 1.2.0.DEVEL:";;
1352 --enable-Werror Enable use of compiler -Werror flag
1355 --enable-twopass Link PCC as a two-pass compiler
1357 --enable-native Build the compiler as a native rather than
1358 cross-build compiler
1370 CC C compiler comman
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/bn/asm/
bn-c64xplus.asm 15 ;; Compiler-generated multiply-n-add SPLOOP runs at 12*n cycles, n
  /src/crypto/external/bsd/openssl/dist/crypto/bn/asm/
bn-c64xplus.asm 15 ;; Compiler-generated multiply-n-add SPLOOP runs at 12*n cycles, n

Completed in 50 milliseconds

1 2 3