Searched refs:IntInst (Results 1 – 1 of 1) sorted by relevance
925 inline bool isGather(IntrinsicInst *IntInst) { in isGather() argument926 if (IntInst == nullptr) in isGather()928 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isGather()939 inline bool isScatter(IntrinsicInst *IntInst) { in isScatter() argument940 if (IntInst == nullptr) in isScatter()942 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isScatter()953 inline bool isGatherScatter(IntrinsicInst *IntInst) { in isGatherScatter() argument954 if (IntInst == nullptr) in isGatherScatter()956 return isGather(IntInst) || isScatter(IntInst); in isGatherScatter()