Lines Matching refs:aT
569 auto aT = a.dyn_cast<MemRefType>(); in areCastCompatible() local
575 if (aT && bT) { in areCastCompatible()
576 if (aT.getElementType() != bT.getElementType()) in areCastCompatible()
578 if (aT.getLayout() != bT.getLayout()) { in areCastCompatible()
581 if (failed(getStridesAndOffset(aT, aStrides, aOffset)) || in areCastCompatible()
600 if (aT.getMemorySpace() != bT.getMemorySpace()) in areCastCompatible()
604 if (aT.getRank() != bT.getRank()) in areCastCompatible()
607 for (unsigned i = 0, e = aT.getRank(); i != e; ++i) { in areCastCompatible()
608 int64_t aDim = aT.getDimSize(i), bDim = bT.getDimSize(i); in areCastCompatible()
614 if (!aT && !uaT) in areCastCompatible()
622 auto aEltType = (aT) ? aT.getElementType() : uaT.getElementType(); in areCastCompatible()
627 auto aMemSpace = (aT) ? aT.getMemorySpace() : uaT.getMemorySpace(); in areCastCompatible()