Home
last modified time | relevance | path

Searched refs:nestedMatches (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Dialect/Affine/Analysis/
H A DNestedMatcher.cpp27 ArrayRef<NestedMatch> nestedMatches) { in build() argument
29 auto *children = allocator()->Allocate<NestedMatch>(nestedMatches.size()); in build()
30 std::uninitialized_copy(nestedMatches.begin(), nestedMatches.end(), children); in build()
34 ArrayRef<NestedMatch>(children, nestedMatches.size()); in build()
108 SmallVector<NestedMatch, 8> nestedMatches; in matchOne() local
109 matches->push_back(NestedMatch::build(op, nestedMatches)); in matchOne()
114 SmallVector<NestedMatch, 8> nestedMatches; in matchOne() local
118 nestedPattern.match(op, &nestedMatches); in matchOne()
121 if (nestedMatches.empty()) { in matchOne()
124 matches->push_back(NestedMatch::build(op, nestedMatches)); in matchOne()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Affine/Analysis/
H A DNestedMatcher.h49 ArrayRef<NestedMatch> nestedMatches);