Searched refs:IntInst (Results 1 – 1 of 1) sorted by relevance
900 inline bool isGather(IntrinsicInst *IntInst) { in isGather() argument901 if (IntInst == nullptr) in isGather()903 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isGather()914 inline bool isScatter(IntrinsicInst *IntInst) { in isScatter() argument915 if (IntInst == nullptr) in isScatter()917 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isScatter()928 inline bool isGatherScatter(IntrinsicInst *IntInst) { in isGatherScatter() argument929 if (IntInst == nullptr) in isGatherScatter()931 return isGather(IntInst) || isScatter(IntInst); in isGatherScatter()