Home
last modified time | relevance | path

Searched refs:invocation (Results 1 – 25 of 159) sorted by relevance

1234567

/llvm-project-15.0.7/clang/unittests/Frontend/
H A DFrontendActionTest.cpp83 auto invocation = std::make_shared<CompilerInvocation>(); in TEST() local
84 invocation->getPreprocessorOpts().addRemappedFile( in TEST()
87 invocation->getFrontendOpts().Inputs.push_back( in TEST()
92 compiler.setInvocation(std::move(invocation)); in TEST()
104 invocation->getPreprocessorOpts().addRemappedFile( in TEST()
107 invocation->getFrontendOpts().Inputs.push_back( in TEST()
112 compiler.setInvocation(std::move(invocation)); in TEST()
124 invocation->getLangOpts()->CPlusPlus = true; in TEST()
126 invocation->getPreprocessorOpts().addRemappedFile( in TEST()
134 invocation->getFrontendOpts().Inputs.push_back( in TEST()
[all …]
/llvm-project-15.0.7/flang/include/flang/Frontend/
H A DCompilerInstance.h45 std::shared_ptr<CompilerInvocation> invocation; variable
92 assert(invocation && "Compiler instance has no invocation!"); in getInvocation()
93 return *invocation; in getInvocation()
167 return invocation->getDiagnosticOpts(); in getDiagnosticOpts()
170 return invocation->getDiagnosticOpts(); in getDiagnosticOpts()
173 FrontendOptions &getFrontendOpts() { return invocation->getFrontendOpts(); } in getFrontendOpts()
175 return invocation->getFrontendOpts(); in getFrontendOpts()
179 return invocation->getPreprocessorOpts(); in preprocessorOpts()
182 return invocation->getPreprocessorOpts(); in preprocessorOpts()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/tool/
H A Drun-clang-tidy.py182 invocation = [clang_apply_replacements_binary]
183 invocation.append('-ignore-insert-conflict')
185 invocation.append('-format')
187 invocation.append('-style=' + args.style)
188 invocation.append(tmpdir)
189 subprocess.call(invocation)
310 invocation = get_tidy_invocation("", clang_tidy_binary, args.checks,
317 invocation.append('-list-checks')
318 invocation.append('-')
322 subprocess.check_call(invocation, stdout=dev_null)
[all …]
/llvm-project-15.0.7/polly/lib/External/isl/interface/
H A Dextract_interface.cc220 static void create_from_args(CompilerInvocation &invocation, in create_from_args() argument
231 static void create_from_args(CompilerInvocation &invocation, in create_from_args() argument
285 CompilerInvocation *invocation = new CompilerInvocation; in construct_invocation() local
286 create_from_args(*invocation, &args, Diags); in construct_invocation()
287 return invocation; in construct_invocation()
449 CompilerInvocation *invocation) in set_invocation() argument
457 CompilerInvocation *invocation) in set_invocation() argument
459 Clang->setInvocation(invocation); in set_invocation()
545 CompilerInvocation *invocation = in main() local
547 if (invocation) in main()
[all …]
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/objc/
H A Dnsinvocation-argument-lifetime.rst18 [invocation getArgument:&arg atIndex:2];
21 [invocation getReturnValue:&returnValue];
28 [invocation getArgument:&arg atIndex:2];
31 [invocation getReturnValue:&returnValue];
39 [invocation getReturnValue:&self->_returnValue];
/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/find-all-symbols/tool/
H A Drun-find-all-symbols.py50 invocation = [args.binary, '-merge-dir='+directory, args.saving_path]
51 subprocess.call(invocation)
59 invocation = [args.binary, name, '-output-dir='+tmpdir, '-p='+build_path]
60 sys.stdout.write(' '.join(invocation) + '\n')
61 subprocess.call(invocation)
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/objc/
H A Dsuper-self.m15 // CHECK-MESSAGES: :[[@LINE-1]]:10: warning: suspicious invocation of 'self' in initializer; did yo…
21 // CHECK-MESSAGES: :[[@LINE-1]]:10: warning: suspicious invocation of 'self' in initializer; did yo…
33 // CHECK-MESSAGES: :[[@LINE-1]]:10: warning: suspicious invocation of 'self' in initializer; did yo…
41 // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: suspicious invocation of 'self' in initializer; did you…
49 // CHECK-MESSAGES: :[[@LINE-1]]:10: warning: suspicious invocation of 'self' in initializer; did yo…
57 // CHECK-MESSAGES: :[[@LINE-1]]:10: warning: suspicious invocation of 'self' in initializer; did yo…
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVBarrierOps.td29 point of execution before any invocation will proceed beyond it.
50 variables performed by any invocation executed prior to a
51 OpControlBarrier will be visible to any other invocation after return
95 control is ensured only for memory accesses issued by this invocation
96 and observed by another invocation executing within Memory scope. If the
H A DSPIRVGroupOps.td23 Broadcast the Value of the invocation identified by the local id LocalId
101 instruction. The bit is set to one if the corresponding invocation is active
108 Result is a set of bitfields where the first invocation is represented in bit
153 Reads one or more components of Result data for each invocation in the
204 Writes one or more components of Data for each invocation in the subgroup
/llvm-project-15.0.7/llvm/utils/
H A Dprepare-code-coverage-artifact.py47 invocation = [host_llvm_cov, 'show'] + objects + ['-format', 'html',
52 invocation += ['-compilation-dir=' + compilation_dir]
53 subprocess.check_call(invocation)
/llvm-project-15.0.7/lldb/source/Plugins/Platform/Windows/
H A DPlatformWindows.cpp189 FunctionCaller *invocation = loader->GetFunctionCaller(); in DoLoadImage() local
190 if (!invocation) { in DoLoadImage()
324 ValueList parameters = invocation->GetArgumentValues(); in DoLoadImage()
331 if (!invocation->WriteFunctionArguments(context, injected_parameters, in DoLoadImage()
338 auto parameter_cleanup = llvm::make_scope_exit([invocation, &context, injected_parameters]() { in DoLoadImage()
339 invocation->DeallocateFunctionResults(context, injected_parameters); in DoLoadImage()
369 invocation->ExecuteFunction(context, &injected_parameters, options, in DoLoadImage()
/llvm-project-15.0.7/llvm/test/tools/UpdateTestChecks/update_test_checks/
H A Dbasic.test13 ## an UTC_ARGS: comment in the first line (from the invocation above) which is
14 ## added to the update invocation below.
H A Dvarious_ir_values.test12 ## an UTC_ARGS: comment in the first line (from the invocation above) which is
13 ## added to the update invocation below.
/llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/
H A Dtripcount.ll35 ; The loop has a same invocation count with the function, but has a low
36 ; trip_count per invocation and not worth to vectorize.
60 ; The loop has low invocation count compare to the function invocation count,
61 ; but has a high trip count per invocation. Vectorize it.
217 ; loop invocation weights of 10 are the above {10, 2490} and {10, 0}.
/llvm-project-15.0.7/mlir/lib/Conversion/LinalgToSPIRV/
H A DLinalgToSPIRV.cpp31 Value invocation = spirv::getBuiltinVariableValue( in getLocalInvocationDimSize() local
33 Type xType = invocation.getType().cast<ShapedType>().getElementType(); in getLocalInvocationDimSize()
35 loc, xType, invocation, builder->getI32ArrayAttr({dim})); in getLocalInvocationDimSize()
/llvm-project-15.0.7/clang/cmake/caches/
H A DREADME.txt7 You can use the caches files with the following CMake invocation:
22 the clang shipped with Xcode. The build files generated from this invocation has
32 You can configure your build directory with the following invocation of CMake:
/llvm-project-15.0.7/llvm/docs/
H A DOptBisect.rst55 clang, the "-mllvm" prefix must be used. A typical clang invocation would look
76 passed to the driver-invoked LLVM invocation via '-mllvm'.
88 if an invocation of the pass is not skipped individual transformations within
89 that invocation may still be skipped.
97 When an opt-bisect index value refers to an entire invocation of the run
99 each time it is invoked and each invocation will be assigned a unique value.
/llvm-project-15.0.7/llvm/test/tools/llvm-cxxfilt/
H A Dinvalid.test6 CHECK-NEXT: invocation function for block in std::f(float)
/llvm-project-15.0.7/clang/docs/analyzer/user-docs/
H A DCrossTranslationUnit.rst30 The analysis invocation must be provided with the directory which contains the dumps and the mappin…
210 The compiler invocation is a shell command that could be used to compile the TU-s main source file.
212 compile said TU are given in YAML format referred to as `invocation list`, and must be passed as an
219 The analysis invocation must be provided with the directory which contains the mapping
220 files, and the `invocation list` which is used to determine compiler flags.
261 The `invocation list`:
299 -Xclang -analyzer-config -Xclang ctu-invocation-list=invocations.yaml \
/llvm-project-15.0.7/polly/docs/
H A DTipsAndTricks.rst13 If you know the ``opt`` invocation and have a large ``.ll`` file that causes
20 An example invocation is:
/llvm-project-15.0.7/flang/lib/Frontend/
H A DCompilerInstance.cpp29 : invocation(new CompilerInvocation()), in CompilerInstance()
44 invocation = std::move(value); in setInvocation()
/llvm-project-15.0.7/clang/tools/clang-linker-wrapper/
H A DLinkerWrapperOpts.td30 HelpText<"Arguments to pass to the device linker invocation">;
42 HelpText<"Argument to pass to the 'ptxas' invocation">;
82 MetaVarName<"<arg>">, HelpText<"Arguments passed to the LLVM invocation">;
/llvm-project-15.0.7/openmp/tools/
H A DCMakeLists.txt2 # Note that explicit cmake invocation is required every time a new tool
/llvm-project-15.0.7/lld/test/ELF/
H A Dgdb-index-noranges.s4 ## Input is reduced from following code and invocation:
/llvm-project-15.0.7/clang/test/Parser/
H A Dobjcxx11-messaging-and-lambda.mm8 …ASS( alloc] init] autorelease]; // expected-error {{unterminated function-like macro invocation}} \

1234567