Searched refs:opsA (Results 1 – 4 of 4) sorted by relevance
/external/antlr/tool/src/main/java/org/antlr/analysis/ |
D | SemanticContext.java | 736 HashSet<SemanticContext> opsA = new HashSet<SemanticContext>(getAndOperands(a)); in factorAnd() local 739 HashSet<SemanticContext> result = new HashSet<SemanticContext>(opsA); in factorAnd() 744 opsA.removeAll(result); in factorAnd() 745 if (opsA.isEmpty()) in factorAnd() 747 else if (opsA.size() == 1) in factorAnd() 748 a = opsA.iterator().next(); in factorAnd() 750 a = new AND(opsA); in factorAnd() 769 HashSet<SemanticContext> opsA = new HashSet<SemanticContext>(getOrOperands(a)); in factorOr() local 772 HashSet<SemanticContext> result = new HashSet<SemanticContext>(opsA); in factorOr() 777 opsA.removeAll(result); in factorOr() [all …]
|
/external/llvm-project/mlir/lib/Transforms/Utils/ |
D | LoopFusionUtils.cpp | 294 SmallVector<Operation *, 4> opsA; in canFuseLoops() local 295 if (!gatherLoadsAndStores(forOpA, opsA)) { in canFuseLoops() 331 strategyOpsA.append(opsA.begin(), opsA.end()); in canFuseLoops() 336 for (Operation *op : opsA) { in canFuseLoops() 345 for (Operation *op : opsA) { in canFuseLoops()
|
/external/llvm-project/mlir/lib/Analysis/ |
D | Utils.cpp | 598 LogicalResult mlir::computeSliceUnion(ArrayRef<Operation *> opsA, in computeSliceUnion() argument 609 for (unsigned i = 0, numOpsA = opsA.size(); i < numOpsA; ++i) { in computeSliceUnion() 610 MemRefAccess srcAccess(opsA[i]); in computeSliceUnion() 616 if ((!isBackwardSlice && loopDepth > getNestingDepth(opsA[i])) || in computeSliceUnion() 636 dependentOpPairs.push_back({opsA[i], opsB[j]}); in computeSliceUnion() 640 mlir::getComputationSliceState(opsA[i], opsB[j], &dependenceConstraints, in computeSliceUnion() 726 opsA[0]->getContext(), &sliceUnion->lbs, in computeSliceUnion()
|
/external/llvm-project/mlir/include/mlir/Analysis/ |
D | Utils.h | 150 LogicalResult computeSliceUnion(ArrayRef<Operation *> opsA,
|