Searched refs:IntInst (Results 1 – 1 of 1) sorted by relevance
927 inline bool isGather(IntrinsicInst *IntInst) { in isGather() argument928 if (IntInst == nullptr) in isGather()930 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isGather()941 inline bool isScatter(IntrinsicInst *IntInst) { in isScatter() argument942 if (IntInst == nullptr) in isScatter()944 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isScatter()955 inline bool isGatherScatter(IntrinsicInst *IntInst) { in isGatherScatter() argument956 if (IntInst == nullptr) in isGatherScatter()958 return isGather(IntInst) || isScatter(IntInst); in isGatherScatter()