Searched refs:VectorList (Results 1 – 3 of 3) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/Target/ARM/AsmParser/ |
| H A D | ARMAsmParser.cpp | 1721 return VectorList.Count == 1 && VectorList.LaneIndex <= 7; in isVecListOneDByteIndexed() 1726 return VectorList.Count == 1 && VectorList.LaneIndex <= 3; in isVecListOneDHWordIndexed() 1731 return VectorList.Count == 1 && VectorList.LaneIndex <= 1; in isVecListOneDWordIndexed() 1736 return VectorList.Count == 2 && VectorList.LaneIndex <= 7; in isVecListTwoDByteIndexed() 1741 return VectorList.Count == 2 && VectorList.LaneIndex <= 3; in isVecListTwoDHWordIndexed() 1746 return VectorList.Count == 2 && VectorList.LaneIndex <= 1; in isVecListTwoQWordIndexed() 1751 return VectorList.Count == 2 && VectorList.LaneIndex <= 3; in isVecListTwoQHWordIndexed() 1756 return VectorList.Count == 2 && VectorList.LaneIndex <= 1; in isVecListTwoDWordIndexed() 1761 return VectorList.Count == 3 && VectorList.LaneIndex <= 7; in isVecListThreeDByteIndexed() 1766 return VectorList.Count == 3 && VectorList.LaneIndex <= 3; in isVecListThreeDHWordIndexed() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/AsmParser/ |
| H A D | AArch64AsmParser.cpp | 407 struct VectorListOp VectorList; member 456 VectorList = o.VectorList; in AArch64Operand() 549 return VectorList.RegNum; in getVectorListStart() 554 return VectorList.Count; in getVectorListCount() 1180 VectorList.NumElements == 0 && in isImplicitlyTypedVectorList() 1189 if (VectorList.Count != NumRegs) in isTypedVectorList() 1191 if (VectorList.RegisterKind != VectorKind) in isTypedVectorList() 1863 Op->VectorList.RegNum = RegNum; in CreateVectorList() 1864 Op->VectorList.Count = Count; in CreateVectorList() 1865 Op->VectorList.NumElements = NumElements; in CreateVectorList() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/ |
| H A D | AArch64RegisterInfo.td | 515 multiclass VectorList<int count, RegisterClass Reg64, RegisterClass Reg128> { 616 defm VecListOne : VectorList<1, FPR64, FPR128>; 617 defm VecListTwo : VectorList<2, DD, QQ>; 618 defm VecListThree : VectorList<3, DDD, QQQ>; 619 defm VecListFour : VectorList<4, DDDD, QQQQ>;
|