Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.h924 inline bool isGather(IntrinsicInst *IntInst) { in isGather() argument
925 if (IntInst == nullptr) in isGather()
927 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isGather()
938 inline bool isScatter(IntrinsicInst *IntInst) { in isScatter() argument
939 if (IntInst == nullptr) in isScatter()
941 unsigned IntrinsicID = IntInst->getIntrinsicID(); in isScatter()
952 inline bool isGatherScatter(IntrinsicInst *IntInst) { in isGatherScatter() argument
953 if (IntInst == nullptr) in isGatherScatter()
955 return isGather(IntInst) || isScatter(IntInst); in isGatherScatter()
/llvm-project-15.0.7/llvm/test/TableGen/
H A Dcast.td84 class IntInst<bits<8> opcode, string asmstr, Intrinsic Intr> :
91 def PS_Int : IntInst<opcode, asmstr, !cast<Intrinsic>(!strconcat(Intr, "_ps"))>;
93 def PD_Int : IntInst<opcode, asmstr, !cast<Intrinsic>(!strconcat(Intr, "_pd"))>;