Lines Matching defs:Invocation
46 auto Invocation = std::make_shared<CompilerInvocation>();
47 Invocation->getPreprocessorOpts().addRemappedFile(
50 Invocation->getFrontendOpts().Inputs.push_back(
52 Invocation->getFrontendOpts().ProgramAction = EmitLLVM;
53 Invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu";
55 Compiler.setInvocation(std::move(Invocation));
65 auto Invocation = std::make_shared<CompilerInvocation>();
68 Invocation->getFrontendOpts().Inputs.push_back(
70 Invocation->getFrontendOpts().ProgramAction = frontend::EmitLLVMOnly;
71 Invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu";
73 Compiler.setInvocation(std::move(Invocation));
94 auto Invocation = std::make_shared<CompilerInvocation>();
95 Invocation->getFrontendOpts().Inputs.push_back(
97 Invocation->getFrontendOpts().ProgramAction = EmitLLVM;
98 Invocation->getTargetOpts().Triple = "x86_64-unknown-linux-gnu";
99 Invocation->getCodeGenOpts().setDebugInfo(codegenoptions::FullDebugInfo);
104 Compiler.setInvocation(std::move(Invocation));