Home
last modified time | relevance | path

Searched refs:Invocation (Results 1 – 25 of 36) sorted by relevance

12

/minix3/external/bsd/llvm/dist/clang/include/clang/Frontend/
H A DCompilerInstance.h71 IntrusiveRefCntPtr<CompilerInvocation> Invocation; variable
205 bool hasInvocation() const { return Invocation != nullptr; } in hasInvocation()
208 assert(Invocation && "Compiler instance has no invocation!"); in getInvocation()
209 return *Invocation; in getInvocation()
229 return Invocation->getAnalyzerOpts(); in getAnalyzerOpts()
233 return Invocation->getCodeGenOpts(); in getCodeGenOpts()
236 return Invocation->getCodeGenOpts(); in getCodeGenOpts()
240 return Invocation->getDependencyOutputOpts(); in getDependencyOutputOpts()
243 return Invocation->getDependencyOutputOpts(); in getDependencyOutputOpts()
247 return Invocation->getDiagnosticOpts(); in getDiagnosticOpts()
[all …]
H A DASTUnit.h114 IntrusiveRefCntPtr<CompilerInvocation> Invocation; variable
441 ComputedPreamble ComputePreamble(CompilerInvocation &Invocation,
/minix3/external/bsd/llvm/dist/clang/lib/Tooling/
H A DTooling.cpp97 clang::CompilerInvocation *Invocation = new clang::CompilerInvocation; in newInvocation() local
99 *Invocation, CC1Args.data() + 1, CC1Args.data() + CC1Args.size(), in newInvocation()
101 Invocation->getFrontendOpts().DisableFree = false; in newInvocation()
102 Invocation->getCodeGenOpts().DisableFree = false; in newInvocation()
103 Invocation->getDependencyOutputOpts() = DependencyOutputOptions(); in newInvocation()
104 return Invocation; in newInvocation()
133 ToolInvocation Invocation(getSyntaxOnlyToolArgs(Args, FileNameRef), in runToolOnCodeWithArgs() local
137 Invocation.mapVirtualFile(FileNameRef, in runToolOnCodeWithArgs()
141 Invocation.mapVirtualFile(FilenameWithContent.first, in runToolOnCodeWithArgs()
145 return Invocation.run(); in runToolOnCodeWithArgs()
[all …]
/minix3/external/bsd/llvm/dist/clang/unittests/AST/
H A DExternalASTSourceTest.cpp51 CompilerInvocation *Invocation = new CompilerInvocation; in testExternalASTSource() local
52 Invocation->getPreprocessorOpts().addRemappedFile( in testExternalASTSource()
55 CompilerInvocation::CreateFromArgs(*Invocation, Args, in testExternalASTSource()
58 Compiler.setInvocation(Invocation); in testExternalASTSource()
/minix3/external/bsd/llvm/dist/clang/unittests/Frontend/
H A DFrontendActionTest.cpp172 CompilerInvocation *Invocation = new CompilerInvocation; in TEST() local
173 Invocation->getPreprocessorOpts().addRemappedFile( in TEST()
176 Invocation->getFrontendOpts().Inputs.push_back( in TEST()
178 Invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly; in TEST()
179 Invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu"; in TEST()
181 Compiler.setInvocation(Invocation); in TEST()
/minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp66 IntrusiveRefCntPtr<CompilerInvocation> Invocation( in onBodySynthesis() local
69 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts(); in onBodySynthesis()
75 Invocation->getDiagnosticOpts().VerifyDiagnostics = 0; in onBodySynthesis()
80 Instance.setInvocation(&*Invocation); in onBodySynthesis()
/minix3/external/bsd/llvm/dist/clang/unittests/Tooling/
H A DToolingTest.cpp156 clang::tooling::ToolInvocation Invocation(Args, new SyntaxOnlyAction, in TEST() local
158 Invocation.mapVirtualFile("test.cpp", "#include <abc>\n"); in TEST()
159 Invocation.mapVirtualFile("def/abc", "\n"); in TEST()
160 EXPECT_TRUE(Invocation.run()); in TEST()
175 clang::tooling::ToolInvocation Invocation(Args, new SyntaxOnlyAction, in TEST() local
177 Invocation.mapVirtualFile("test.cpp", "#include <abc>\n"); in TEST()
178 Invocation.mapVirtualFile("def/abc", "\n"); in TEST()
181 Invocation.mapVirtualFile("def/module.map", "\n"); in TEST()
182 EXPECT_TRUE(Invocation.run()); in TEST()
/minix3/external/bsd/llvm/dist/clang/tools/diagtool/
H A DShowEnabledWarnings.cpp67 std::unique_ptr<CompilerInvocation> Invocation( in createDiagnostics() local
70 if (!Invocation) in createDiagnostics()
75 CompilerInstance::createDiagnostics(&Invocation->getDiagnosticOpts()); in createDiagnostics()
/minix3/external/bsd/llvm/dist/llvm/tools/llvm-cov/
H A Dllvm-cov.cpp58 std::string Invocation = std::string(argv[0]) + " " + argv[1]; in main() local
59 argv[1] = Invocation.c_str(); in main()
/minix3/external/bsd/llvm/dist/clang/include/clang/Tooling/
H A DTooling.h68 virtual bool runInvocation(clang::CompilerInvocation *Invocation,
84 bool runInvocation(clang::CompilerInvocation *Invocation, FileManager *Files,
231 clang::CompilerInvocation *Invocation);
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/
H A DASTUnit.cpp255 if (Invocation.get() && OwnsRemappedFileBuffers) { in ~ASTUnit()
256 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in ~ASTUnit()
1034 if (!Invocation) in Parse()
1045 CCInvocation(new CompilerInvocation(*Invocation)); in Parse()
1186 ASTUnit::ComputePreamble(CompilerInvocation &Invocation, unsigned MaxLines) { in ComputePreamble() argument
1187 FrontendOptions &FrontendOpts = Invocation.getFrontendOpts(); in ComputePreamble()
1188 PreprocessorOptions &PreprocessorOpts = Invocation.getPreprocessorOpts(); in ComputePreamble()
1237 *Invocation.getLangOpts(), MaxLines); in ComputePreamble()
1674 if (Invocation && !Invocation->getFrontendOpts().Inputs.empty()) { in getMainFileName()
1675 const FrontendInputFile &Input = Invocation->getFrontendOpts().Inputs[0]; in getMainFileName()
[all …]
H A DCompilerInstance.cpp56 Invocation(new CompilerInvocation()), ModuleManager(nullptr), in CompilerInstance()
66 Invocation = Value; in setInvocation()
866 IntrusiveRefCntPtr<CompilerInvocation> Invocation in compileModuleImpl() local
869 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in compileModuleImpl()
873 Invocation->getLangOpts()->resetNonModularOptions(); in compileModuleImpl()
878 const HeaderSearchOptions &HSOpts = Invocation->getHeaderSearchOpts(); in compileModuleImpl()
888 Invocation->getLangOpts()->CurrentModule = Module->getTopLevelModuleName(); in compileModuleImpl()
902 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts(); in compileModuleImpl()
907 InputKind IK = getSourceInputKindFromOptions(*Invocation->getLangOpts()); in compileModuleImpl()
912 Invocation->getDiagnosticOpts().VerifyDiagnostics = 0; in compileModuleImpl()
[all …]
/minix3/external/bsd/llvm/dist/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp259 std::string Invocation(ProgName.str() + " " + argv[1]); in main() local
260 argv[1] = Invocation.c_str(); in main()
/minix3/minix/drivers/power/acpi/include/
H A Dacdebug.h60 char *Invocation; /* Command Invocation */ member
/minix3/external/bsd/file/dist/
H A DINSTALL248 `configure' Invocation
/minix3/external/bsd/bind/dist/contrib/perftcpdns/
H A Dconfigure1466 generated by GNU Autoconf 2.69. Invocation command line was
3731 generated by GNU Autoconf 2.69. Invocation command line was
/minix3/external/bsd/bind/dist/contrib/queryperf/
H A Dconfigure1473 generated by GNU Autoconf 2.68. Invocation command line was
3509 generated by GNU Autoconf 2.68. Invocation command line was
/minix3/external/bsd/nvi/dist/dist/
H A DINSTALL317 `configure' Invocation
/minix3/external/bsd/flex/dist/
H A DINSTALL316 `configure' Invocation
/minix3/external/bsd/bind/dist/contrib/zkt-1.1.3/
H A Dconfigure1832 generated by GNU Autoconf 2.69. Invocation command line was
5314 generated by GNU Autoconf 2.69. Invocation command line was
/minix3/external/bsd/less/dist/
H A Dconfigure1791 generated by GNU Autoconf 2.68. Invocation command line was
5977 generated by GNU Autoconf 2.68. Invocation command line was
/minix3/external/bsd/dhcp/dist/
H A Dconfigure2328 generated by GNU Autoconf 2.69. Invocation command line was
7309 generated by GNU Autoconf 2.69. Invocation command line was
/minix3/external/bsd/libpcap/dist/
H A Dconfigure1963 generated by GNU Autoconf 2.69. Invocation command line was
9084 generated by GNU Autoconf 2.69. Invocation command line was
/minix3/external/bsd/bind/dist/contrib/nslint-3.0a2/
H A Dconfigure6229 generated by GNU Autoconf 2.62. Invocation command line was
/minix3/external/bsd/libevent/dist/
H A Dconfigure2245 generated by GNU Autoconf 2.69. Invocation command line was
15776 generated by GNU Autoconf 2.69. Invocation command line was

12