Home
last modified time | relevance | path

Searched refs:captures (Results 1 – 25 of 101) sorted by relevance

12345

/llvm-project-15.0.7/llvm/test/Analysis/BasicAA/
H A Dnoalias-param.ll3 declare i32* @captures(i32* %cap) nounwind readonly
10 %cap = call i32* @captures(i32* %a) nounwind readonly
20 %cap = call i32* @captures(i32* %c) nounwind readonly
31 %cap = call i32* @captures(i32* %a) nounwind readonly
/llvm-project-15.0.7/mlir/lib/Dialect/Async/Transforms/
H A DPassDetail.cpp23 llvm::SetVector<Value> captures; in cloneConstantsIntoTheRegion() local
24 getUsedValuesDefinedAbove(region, region, captures); in cloneConstantsIntoTheRegion()
30 for (Value capture : captures) { in cloneConstantsIntoTheRegion()
H A DAsyncParallelFor.cpp130 SmallVector<Value> captures; member
141 ArrayRef<BlockArgument> captures();
157 llvm::SmallVector<Value> captures; member
181 ArrayRef<BlockArgument> ParallelComputeFunctionArgs::captures() { in captures() function in ParallelComputeFunctionArgs
214 llvm::SetVector<Value> captures; in getParallelComputeFunctionType() local
218 inputs.reserve(2 + 4 * op.getNumLoops() + captures.size()); in getParallelComputeFunctionType()
240 for (Value capture : captures) in getParallelComputeFunctionType()
244 SmallVector<Value> capturesVector(captures.begin(), captures.end()); in getParallelComputeFunctionType()
307 ArrayRef<BlockArgument> captures = args.captures(); in createParallelComputeFunction() local
425 mapping.map(computeFuncType.captures, captures); in createParallelComputeFunction()
[all …]
/llvm-project-15.0.7/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dtemplates.cpp19 T captures(T x, T y) { in captures() function
35 template int captures(int, int);
36 template X captures(X, X);
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Darc-jump-block.m22 …eLeft]; }); // expected-note 3 {{jump enters lifetime of block which strongly captures a variable}}
25 …Right]; }); // expected-note 2 {{jump enters lifetime of block which strongly captures a variable}}
H A Dstrong-in-c-struct.m39 …Strong x; // expected-note {{jump enters lifetime of block which captures a C struct that is non-t…
53 …trivial destructor}} expected-note {{jump exits lifetime of block which captures a C struct that i…
H A Darc.m829 …(void)*b; // expected-warning {{block captures an autoreleasing out-parameter, which may result in…
830 …(void)*c; // expected-warning {{block captures an autoreleasing out-parameter, which may result in…
832 …(void)*e; // expected-warning {{block captures an autoreleasing out-parameter, which may result in…
835 …(void)*h; // expected-warning {{block captures an autoreleasing out-parameter, which may result in…
836 …(void)*i; // expected-warning {{block captures an autoreleasing out-parameter, which may result in…
838 …(void)*k; // expected-warning {{block captures an autoreleasing out-parameter, which may result in…
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Dredundant-void-arg.cpp461 #define LAMBDA3(captures, args, body) captures args body argument
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DNoEscapeCheck.cpp34 for (const BlockDecl::Capture &CapturedVar : EscapingBlockDecl->captures()) { in check()
/llvm-project-15.0.7/lldb/test/Shell/Reproducer/
H A DTestDSYM.test2 # Ensure that the reproducers captures the whole dSYM bundle.
/llvm-project-15.0.7/llvm/utils/vscode/llvm/syntaxes/
H A Dll.tmLanguage.yaml34 captures:
314 captures:
318 captures:
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DUncountedLambdaCapturesChecker.cpp58 for (const LambdaCapture &C : L->captures()) { in visitLambdaExpr()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/utils/
H A DAliasing.cpp27 return llvm::any_of(RD->captures(), [Var](const LambdaCapture &C) { in capturesByRef()
/llvm-project-15.0.7/clang/test/Frontend/
H A Dembed-bitcode-noopt.ll8 ; Also check that the .llvmcmd section captures the optimization options.
/llvm-project-15.0.7/mlir/test/mlir-tblgen/
H A Dattr-or-type-format-invalid.td22 // Test format has duplicate parameter captures.
68 // CHECK: `params` captures duplicate parameter: v0
/llvm-project-15.0.7/mlir/docs/Rationale/
H A D_index.md13 : Introduces the motivation for MLIR and captures design discussions and
/llvm-project-15.0.7/clang/lib/ARCMigrate/
H A DTransBlockObjCVariable.cpp80 for (const auto &I : block->captures()) { in VisitBlockDecl()
/llvm-project-15.0.7/llvm/test/CodeGen/DirectX/
H A Dembed-dxil.ll30 ; In verifying the DXIL part, this test captures the size of the part, and
/llvm-project-15.0.7/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp153 for (const auto &I : BD->captures()) { in getSelfDecl()
168 for (const auto &LC : parent->captures()) { in getSelfDecl()
651 for (const auto &CI : BD->captures()) { in LazyInitializeReferencedDecls()
/llvm-project-15.0.7/clang/test/Analysis/
H A Dlambdas.mm28 // Make sure to properly handle super-calls when a block captures
H A Dblocks.m225 // Make sure to properly handle super-calls when a block captures
/llvm-project-15.0.7/llvm/test/Transforms/MemCpyOpt/
H A Dcallslot.ll240 ; CHECK: captures:
252 br i1 %cond, label %captures, label %nocaptures
254 captures:
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtDataCollectors.td199 for (const LambdaCapture &C : S->captures()) {
/llvm-project-15.0.7/mlir/lib/Dialect/SCF/Utils/
H A DUtils.cpp155 SetVector<Value> captures; in outlineSingleBlockRegion() local
156 getUsedValuesDefinedAbove(region, captures); in outlineSingleBlockRegion()
158 ValueRange outlinedValues(captures.getArrayRef()); in outlineSingleBlockRegion()
/llvm-project-15.0.7/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl02.rst29 The AST for a program captures its behavior in such a way that it is
54 about this code is that the NumberExprAST class captures the numeric
99 expressions. One thing that is nice about our AST is that it captures
113 /// which captures its name, and its argument names (thus implicitly the number

12345