Home
last modified time | relevance | path

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

/external/llvm-project/mlir/lib/Analysis/
DNestedMatcher.cpp26 ArrayRef<NestedMatch> nestedMatches) { in build() argument
28 auto *children = allocator()->Allocate<NestedMatch>(nestedMatches.size()); in build()
29 std::uninitialized_copy(nestedMatches.begin(), nestedMatches.end(), children); in build()
33 ArrayRef<NestedMatch>(children, nestedMatches.size()); in build()
84 SmallVector<NestedMatch, 8> nestedMatches; in matchOne() local
85 matches->push_back(NestedMatch::build(op, nestedMatches)); in matchOne()
90 SmallVector<NestedMatch, 8> nestedMatches; in matchOne() local
94 nestedPattern.match(op, &nestedMatches); in matchOne()
97 if (nestedMatches.empty()) { in matchOne()
100 matches->push_back(NestedMatch::build(op, nestedMatches)); in matchOne()
/external/llvm-project/mlir/include/mlir/Analysis/
DNestedMatcher.h49 ArrayRef<NestedMatch> nestedMatches);