Lines Matching refs:prevRop
1353 for j, prevRop in self.getKindOfOps(rewrites, ReplaceOp, i):
1354 if (prevRop.index >= rop.index
1355 and prevRop.lastIndex <= rop.lastIndex):
1361 disjoint = (prevRop.lastIndex < rop.index
1362 or prevRop.index > rop.lastIndex)
1363 same = (prevRop.index == rop.index
1364 and prevRop.lastIndex == rop.lastIndex)
1369 if prevRop.text is None and rop.text is None and not disjoint:
1371 rewrites[prevRop.instructionIndex] = None
1373 rop.index = min(prevRop.index, rop.index)
1374 rop.lastIndex = max(prevRop.lastIndex, rop.lastIndex)
1379 .format(rop, prevRop))