Searched refs:IntInst (Results 1 – 1 of 1) sorted by relevance
946 inline bool isGather(IntrinsicInst *IntInst) { in isGather() argument947 if (IntInst == nullptr) in isGather()949 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isGather()960 inline bool isScatter(IntrinsicInst *IntInst) { in isScatter() argument961 if (IntInst == nullptr) in isScatter()963 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isScatter()974 inline bool isGatherScatter(IntrinsicInst *IntInst) { in isGatherScatter() argument975 if (IntInst == nullptr) in isGatherScatter()977 return isGather(IntInst) || isScatter(IntInst); in isGatherScatter()