Home
last modified time | relevance | path

Searched refs:IntInst (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.h925 inline bool isGather(IntrinsicInst *IntInst) { in isGather() argument
926 if (IntInst == nullptr) in isGather()
928 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isGather()
939 inline bool isScatter(IntrinsicInst *IntInst) { in isScatter() argument
940 if (IntInst == nullptr) in isScatter()
942 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isScatter()
953 inline bool isGatherScatter(IntrinsicInst *IntInst) { in isGatherScatter() argument
954 if (IntInst == nullptr) in isGatherScatter()
956 return isGather(IntInst) || isScatter(IntInst); in isGatherScatter()