Searched refs:IntInst (Results 1 – 1 of 1) sorted by relevance
924 inline bool isGather(IntrinsicInst *IntInst) { in isGather() argument925 if (IntInst == nullptr) in isGather()927 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isGather()938 inline bool isScatter(IntrinsicInst *IntInst) { in isScatter() argument939 if (IntInst == nullptr) in isScatter()941 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isScatter()952 inline bool isGatherScatter(IntrinsicInst *IntInst) { in isGatherScatter() argument953 if (IntInst == nullptr) in isGatherScatter()955 return isGather(IntInst) || isScatter(IntInst); in isGatherScatter()