Searched refs:IntInst (Results 1 – 1 of 1) sorted by relevance
905 inline bool isGather(IntrinsicInst *IntInst) { in isGather() argument906 if (IntInst == nullptr) in isGather()908 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isGather()919 inline bool isScatter(IntrinsicInst *IntInst) { in isScatter() argument920 if (IntInst == nullptr) in isScatter()922 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isScatter()933 inline bool isGatherScatter(IntrinsicInst *IntInst) { in isGatherScatter() argument934 if (IntInst == nullptr) in isGatherScatter()936 return isGather(IntInst) || isScatter(IntInst); in isGatherScatter()