Home | History | Annotate | Download | only in Frontend

Lines Matching refs:Invocation

442 static bool FixupInvocation(CompilerInvocation &Invocation,
447 LangOptions &LangOpts = *Invocation.getLangOpts();
448 CodeGenOptions &CodeGenOpts = Invocation.getCodeGenOpts();
449 TargetOptions &TargetOpts = Invocation.getTargetOpts();
450 FrontendOptions &FrontendOpts = Invocation.getFrontendOpts();
639 // invocation diagnostics.
659 // Run the first parse on the original arguments with the dummy invocation and
666 // invocation and diagnostics, so all side-effects of parsing are visible.
687 // Generate arguments from the dummy invocation. If Generate is the
694 // invocation and diagnostics. The result is what we will end up using for the
4448 bool CompilerInvocation::CreateFromArgs(CompilerInvocation &Invocation,
4455 [](CompilerInvocation &Invocation, ArrayRef<const char *> CommandLineArgs,
4457 return CreateFromArgsImpl(Invocation, CommandLineArgs, Diags, Argv0);
4459 [](CompilerInvocation &Invocation, SmallVectorImpl<const char *> &Args,
4460 StringAllocator SA) { Invocation.generateCC1CommandLine(Args, SA); },
4461 Invocation, DummyInvocation, CommandLineArgs, Diags, Argv0);