Home
last modified time | relevance | path

Searched refs:IndexVar (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/
H A DLoopConvertUtils.cpp263 areSameVariable(IndexVar, Idx->getDecl()); in isIndexInSubscriptExpr()
333 const VarDecl *IndexVar) { in isDereferenceOfUop() argument
356 const VarDecl *IndexVar) { in isAliasDecl() argument
390 return isIndexInSubscriptExpr(E->getIdx(), IndexVar); in isAliasDecl()
399 return isDereferenceOfOpCall(OpCall, IndexVar); in isAliasDecl()
461 : Context(Context), IndexVar(IndexVar), EndVar(EndVar), in ForLoopIndexUseVisitor()
513 if (isDereferenceOfUop(Uop, IndexVar)) { in TraverseUnaryOperator()
569 if (Obj && exprReferencesVariable(IndexVar, Obj)) { in TraverseMemberExpr()
654 if (isDereferenceOfOpCall(OpCall, IndexVar)) { in TraverseCXXOperatorCallExpr()
698 if (!isIndexInSubscriptExpr(E->getIdx(), IndexVar)) in TraverseArraySubscriptExpr()
[all …]
H A DLoopConvertUtils.h291 ForLoopIndexUseVisitor(ASTContext *Context, const VarDecl *IndexVar,
366 const VarDecl *IndexVar; variable
H A DLoopConvertCheck.h45 void doConversion(ASTContext *Context, const VarDecl *IndexVar,
H A DLoopConvertCheck.cpp536 ASTContext *Context, const VarDecl *IndexVar, in doConversion() argument
583 Loop, IndexVar, MaybeContainer, Context, NamingStyle); in doConversion()
621 TUInfo->getReplacedVars().insert(std::make_pair(Loop, IndexVar)); in doConversion()
/llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/taco/
H A Dunit_test_tensor_core.py116 i = mlir_pytaco.IndexVar()
117 j = mlir_pytaco.IndexVar()
328 i = mlir_pytaco.IndexVar()
349 i = mlir_pytaco.IndexVar()
350 j = mlir_pytaco.IndexVar()
374 i = mlir_pytaco.IndexVar()
375 j = mlir_pytaco.IndexVar()
399 i = mlir_pytaco.IndexVar()
400 j = mlir_pytaco.IndexVar()
421 i = mlir_pytaco.IndexVar()
[all …]
/llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/taco/tools/
H A Dmlir_pytaco.py765 class IndexVar(IndexExpr): class
836 return [IndexVar() for i in range(n)]
887 dst_indices: Tuple[IndexVar, ...]
1339 if isinstance(indices, IndexVar):
1603 src_indices: Tuple[IndexVar, ...]
1633 indices: Tuple[IndexVar, ...]
1820 indices: Tuple[IndexVar, ...], argument
1885 if isinstance(expr, IndexVar):
1927 reduce_index: IndexVar, argument
1958 elif isinstance(expr, IndexVar):
[all …]
H A Dmlir_pytaco_api.py32 index_var = mlir_pytaco.IndexVar