| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/objc/ |
| H A D | nsinvocation-argument-lifetime.m | 8 - (void)getArgument:(void *)Arg atIndex:(int)Index; 13 - (void)getArgument:(void *)Arg atIndex:(int)Index; 38 [Invocation getArgument:&Arg2 atIndex:2]; 39 [Invocation getArgument:&IntVar atIndex:2]; 41 [Invocation getArgument:&Arg3 atIndex:3]; 44 [Invocation getArgument:&Arg4 atIndex:4]; 47 [Invocation getArgument:&Arg5 atIndex:5]; 50 [Invocation getArgument:&BlockArg1 atIndex:6]; 53 [Invocation getArgument:&BlockArg2 atIndex:6]; 58 [Invocation getArgument:(void *)0 atIndex:6]; [all …]
|
| /llvm-project-15.0.7/mlir/tools/mlir-tblgen/ |
| H A D | PassDocGen.cpp | 24 os << llvm::formatv("### `-{0}`: {1}\n", pass.getArgument(), in emitDoc() 34 longestOption = std::max(option.getArgument().size(), longestOption); in emitDoc() 36 os << "-" << option.getArgument(); in emitDoc() 37 os.indent(longestOption - option.getArgument().size()) in emitDoc() 68 return (*lhs)->getArgument().compare( in emitDocs() 69 (*rhs)->getArgument()); in emitDocs()
|
| H A D | PassGen.cpp | 104 opt.getArgument(), opt.getDescription()); in emitPassOptionDecls() 132 pass.getArgument(), pass.getSummary(), in emitPassDecl()
|
| /llvm-project-15.0.7/mlir/test/lib/Pass/ |
| H A D | TestPassManager.cpp | 23 StringRef getArgument() const final { return "test-module-pass"; } in getArgument() function 33 StringRef getArgument() const final { return "test-function-pass"; } in getArgument() function 46 StringRef getArgument() const final { return "test-interface-pass"; } in getArgument() function 73 StringRef getArgument() const final { return "test-options-pass"; } in getArgument() function 93 StringRef getArgument() const final { return "test-pass-crash"; } in getArgument() function 105 StringRef getArgument() const final { return "test-pass-failure"; } in getArgument() function 120 StringRef getArgument() const final { return "test-pass-create-invalid-ir"; } in getArgument() function 149 StringRef getArgument() const final { return "test-pass-invalid-parent"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 172 StringRef getArgument() const final { return "test-stats-pass"; } in getArgument() function
|
| /llvm-project-15.0.7/clang/test/ARCMT/ |
| H A D | check-api.m | 9 - (void)getArgument:(void *)argumentLocation atIndex:(int)idx; 33 …[invok getArgument:&strong_id atIndex:0]; // expected-error {{NSInvocation's getArgument is not sa… 34 …[invok getArgument:&weak_id atIndex:0]; // expected-error {{NSInvocation's getArgument is not safe… 35 [invok getArgument:&unsafe_id atIndex:0]; 36 [invok getArgument:&arg atIndex:0];
|
| /llvm-project-15.0.7/mlir/test/lib/IR/ |
| H A D | TestFunc.cpp | 22 StringRef getArgument() const final { return "test-func-insert-arg"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 59 StringRef getArgument() const final { return "test-func-insert-result"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 93 StringRef getArgument() const final { return "test-func-erase-arg"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 113 StringRef getArgument() const final { return "test-func-erase-result"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 135 StringRef getArgument() const final { return "test-func-set-type"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID()
|
| H A D | TestMatchers.cpp | 24 StringRef getArgument() const final { return "test-matchers"; } in getArgument() function 47 auto a = m_Val(f.getArgument(0)); in test1() 48 auto b = m_Val(f.getArgument(1)); in test1() 49 auto c = m_Val(f.getArgument(2)); in test1() 136 auto a = m_Val(f.getArgument(0)); in test2()
|
| H A D | TestVisitorsGeneric.cpp | 29 StringRef getArgument() const final { return "test-generic-ir-visitors"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 55 StringRef getArgument() const final { in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 122 StringRef getArgument() const final { in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 153 StringRef getArgument() const final { in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID()
|
| H A D | TestSlicing.cpp | 37 mapper.map(arg.value(), clonedFuncOp.getArgument(arg.index())); in createBackwardSliceFunction() 52 StringRef getArgument() const final { return "slice-analysis-test"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID()
|
| H A D | TestSymbolUses.cpp | 22 StringRef getArgument() const final { return "test-symbol-uses"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 100 StringRef getArgument() const final { return "test-symbol-rauw"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID()
|
| /llvm-project-15.0.7/mlir/test/lib/Dialect/Vector/ |
| H A D | TestVectorTransforms.cpp | 43 StringRef getArgument() const final { in getArgument() function 116 StringRef getArgument() const final { in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 205 StringRef getArgument() const final { in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 280 StringRef getArgument() const final { in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 372 StringRef getArgument() const final { in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 501 StringRef getArgument() const final { in getArgument() function 549 StringRef getArgument() const final { in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 604 StringRef getArgument() const final { in getArgument() function 631 StringRef getArgument() const final { in getArgument() function 666 StringRef getArgument() const final { in getArgument() function [all …]
|
| /llvm-project-15.0.7/mlir/lib/Dialect/Math/Transforms/ |
| H A D | ExpandPatterns.cpp | 83 Value input = before->getArgument(0); in convertCtlzOp() 84 Value zero = before->getArgument(2); in convertCtlzOp() 95 Value input = after->getArgument(0); in convertCtlzOp() 96 Value leadingZeros = after->getArgument(1); in convertCtlzOp() 106 ValueRange({shifted, leadingZerosMinusOne, after->getArgument(2)})); in convertCtlzOp()
|
| /llvm-project-15.0.7/mlir/lib/Dialect/SparseTensor/Transforms/ |
| H A D | SparseTensorRewriting.cpp | 58 Value s1 = op.getBlock()->getArgument(0); in isSampling() 59 Value s2 = op.getBlock()->getArgument(1); in isSampling() 166 addArg(mapper, fusedBlock, prodBlock.getArgument(i)); in matchAndRewrite() 167 addArg(mapper, fusedBlock, consBlock.getArgument(1 - other)); in matchAndRewrite() 168 addArg(mapper, fusedBlock, prodBlock.getArgument(num - 1)); in matchAndRewrite() 179 mapper.map(consBlock.getArgument(other), fusedBlock->back().getResult(0)); in matchAndRewrite()
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/objc/ |
| H A D | nsinvocation-argument-lifetime.rst | 8 to the ``NSInvocation`` methods ``getArgument:atIndex:`` and 18 [invocation getArgument:&arg atIndex:2]; 28 [invocation getArgument:&arg atIndex:2];
|
| /llvm-project-15.0.7/mlir/lib/Dialect/SCF/Transforms/ |
| H A D | ForToWhile.cpp | 58 beforeBlock->getArgument(0), forOp.getUpperBound()); in matchAndRewrite() 71 whileOp.getLoc(), afterBlock->getArgument(0), forOp.getStep()); in matchAndRewrite() 76 barg.value().replaceAllUsesWith(afterBlock->getArgument(barg.index())); in matchAndRewrite()
|
| /llvm-project-15.0.7/mlir/lib/Dialect/Tosa/Transforms/ |
| H A D | TosaInferShapes.cpp | 49 auto blockArg = frontBlock.getArgument(i - 1); in propagateShapesToTosaIf() 62 frontBlock.getArgument(i).getType()); in propagateShapesToTosaIf() 67 frontBlock.getArgument(i).setType(joinedKnowledge.getType()); in propagateShapesToTosaIf() 112 block.getArgument(i).setType(argTypes[i]); in propagateShapesToTosaWhile() 174 region.front().getArgument(i).setType(argTypes[i]); in propagateShapesToTosaWhile()
|
| /llvm-project-15.0.7/mlir/include/mlir/TableGen/ |
| H A D | Pass.h | 32 StringRef getArgument() const; 83 StringRef getArgument() const;
|
| /llvm-project-15.0.7/mlir/lib/Dialect/Shape/Transforms/ |
| H A D | ShapeToShapeLowering.cpp | 46 Value product = b.create<MulOp>(loc, valueType, body->getArgument(1), in matchAndRewrite() 47 body->getArgument(2)); in matchAndRewrite()
|
| /llvm-project-15.0.7/mlir/lib/TableGen/ |
| H A D | Pass.cpp | 23 StringRef PassOption::getArgument() const { in getArgument() function in PassOption 76 StringRef Pass::getArgument() const { in getArgument() function in Pass
|
| /llvm-project-15.0.7/mlir/test/lib/Dialect/Test/ |
| H A D | TestPatterns.cpp | 157 StringRef getArgument() const final { return "test-patterns"; } in getArgument() function 284 std::array<Value, 2> values = {{fop.getArgument(i), fop.getArgument(j)}}; in invokeCreateWithInferredReturnType() 320 StringRef getArgument() const final { return "test-return-type"; } in getArgument() function 360 StringRef getArgument() const final { return "test-derived-attr"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 487 rewriter.replaceUsesOfBlockArgument(op->getRegion(0).getArgument(0), in matchAndRewrite() 974 StringRef getArgument() const final { return "test-remapped-value"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 1035 StringRef getArgument() const final { in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 1213 StringRef getArgument() const final { in getArgument() function 1349 StringRef getArgument() const final { in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 1457 StringRef getArgument() const final { return "test-merge-blocks"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() [all …]
|
| /llvm-project-15.0.7/mlir/unittests/Interfaces/ |
| H A D | InferTypeOpInterfaceTest.cpp | 70 if (val == mapFn.getArgument(0)) in TEST_F() 90 if (val == mapFn.getArgument(0)) in TEST_F()
|
| /llvm-project-15.0.7/mlir/test/lib/Dialect/SCF/ |
| H A D | TestSCFUtils.cpp | 32 StringRef getArgument() const final { return "test-scf-for-utils"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 76 StringRef getArgument() const final { return "test-scf-if-utils"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 118 StringRef getArgument() const final { return "test-scf-pipelining"; } in getArgument() function
|
| /llvm-project-15.0.7/clang/unittests/AST/ |
| H A D | TemplateNameTest.cpp | 46 TemplateName TN = Template->getArgument().getAsTemplate(); in TEST() 78 TemplateName TN = TAL->getArgument().getAsTemplate(); in TEST()
|
| /llvm-project-15.0.7/mlir/lib/Pass/ |
| H A D | IRPrinting.cpp | 130 << pass->getArgument() << ")"; in runBeforePass() 161 << pass->getArgument() << ")"; in runAfterPass() 176 pass->getArgument()); in runAfterPassFailed()
|
| /llvm-project-15.0.7/mlir/test/lib/Analysis/ |
| H A D | TestAliasAnalysis.cpp | 51 StringRef getArgument() const final { return "test-alias-analysis"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID() 95 StringRef getArgument() const final { return "test-alias-analysis-modref"; } in MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID()
|