Lines Matching defs:Compiler
33 CompilerInstance Compiler;
39 Compiler.setOutputStream(std::move(IRStream));
40 Compiler.setInvocation(std::move(Invocation));
41 Compiler.createDiagnostics(*llvm::vfs::getRealFileSystem());
43 bool Success = ExecuteCompilerInvocation(&Compiler);
57 CompilerInstance Compiler;
62 Compiler.setOutputStream(std::make_unique<raw_null_ostream>());
63 Compiler.setInvocation(std::move(Invocation));
65 Compiler.createDiagnostics(
68 Compiler.setVerboseOutputStream(VerboseStream);
70 bool Success = ExecuteCompilerInvocation(&Compiler);
87 CompilerInstance Compiler;
92 Compiler.setOutputStream(std::make_unique<raw_null_ostream>());
93 Compiler.setInvocation(std::move(Invocation));
95 Compiler.createDiagnostics(
98 Compiler.setVerboseOutputStream(std::move(VerboseStream));
100 Success = ExecuteCompilerInvocation(&Compiler);
108 CompilerInstance Compiler;
109 Compiler.setVerboseOutputStream(std::make_unique<raw_null_ostream>());
112 Compiler.setVerboseOutputStream(llvm::nulls());