| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86TargetTransformInfo.cpp | 2394 { ISD::CTPOP, MVT::v8i64, 7 }, in getTypeBasedIntrinsicInstrCost() 2395 { ISD::CTPOP, MVT::v16i32, 11 }, in getTypeBasedIntrinsicInstrCost() 2396 { ISD::CTPOP, MVT::v32i16, 9 }, in getTypeBasedIntrinsicInstrCost() 2397 { ISD::CTPOP, MVT::v64i8, 6 }, in getTypeBasedIntrinsicInstrCost() 2434 { ISD::CTPOP, MVT::v8i64, 16 }, in getTypeBasedIntrinsicInstrCost() 2435 { ISD::CTPOP, MVT::v16i32, 24 }, in getTypeBasedIntrinsicInstrCost() 2436 { ISD::CTPOP, MVT::v32i16, 18 }, in getTypeBasedIntrinsicInstrCost() 2437 { ISD::CTPOP, MVT::v64i8, 12 }, in getTypeBasedIntrinsicInstrCost() 2521 { ISD::CTPOP, MVT::v4i64, 7 }, in getTypeBasedIntrinsicInstrCost() 2522 { ISD::CTPOP, MVT::v8i32, 11 }, in getTypeBasedIntrinsicInstrCost() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | ISDOpcodes.h | 659 CTPOP, enumerator
|
| H A D | BasicTTIImpl.h | 1827 ISDs.push_back(ISD::CTPOP); in getTypeBasedIntrinsicInstrCost()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64LegalizerInfo.cpp | 1054 auto CTPOP = MIRBuilder.buildCTPOP(V8S8, Val); in legalizeCTPOP() local 1059 .addUse(CTPOP.getReg(0)); in legalizeCTPOP()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | TargetLowering.cpp | 1789 case ISD::CTPOP: { in SimplifyDemandedBits() 3418 SDValue CTPOP = N0; in simplifySetCCWithCTPOP() local 3421 CTPOP = N0.getOperand(0); in simplifySetCCWithCTPOP() 3423 if (CTPOP.getOpcode() != ISD::CTPOP || !CTPOP.hasOneUse()) in simplifySetCCWithCTPOP() 3426 EVT CTVT = CTPOP.getValueType(); in simplifySetCCWithCTPOP() 3427 SDValue CTOp = CTPOP.getOperand(0); in simplifySetCCWithCTPOP() 3431 if (VT.isVector() && TLI.isOperationLegal(ISD::CTPOP, CTVT)) in simplifySetCCWithCTPOP() 3458 if (!VT.isVector() && TLI.isOperationLegalOrCustom(ISD::CTPOP, CTVT)) in simplifySetCCWithCTPOP() 7033 !isOperationLegalOrCustom(ISD::CTPOP, VT) || in expandCTLZ() 7053 Result = DAG.getNode(ISD::CTPOP, dl, VT, Op); in expandCTLZ() [all …]
|
| H A D | LegalizeVectorOps.cpp | 396 case ISD::CTPOP: in LegalizeOp() 784 case ISD::CTPOP: in Expand()
|
| H A D | SelectionDAGDumper.cpp | 424 case ISD::CTPOP: return "ctpop"; in getOperationName()
|
| H A D | LegalizeDAG.cpp | 2652 if (TLI.isOperationLegal(ISD::CTPOP, VT)) { in ExpandPARITY() 2653 Result = DAG.getNode(ISD::CTPOP, dl, VT, Op); in ExpandPARITY() 2677 case ISD::CTPOP: in ExpandNode() 4398 case ISD::CTPOP: in PromoteNode()
|
| H A D | LegalizeIntegerTypes.cpp | 66 case ISD::CTPOP: Res = PromoteIntRes_CTPOP_PARITY(N); break; in PromoteIntegerResult() 2080 case ISD::CTPOP: ExpandIntRes_CTPOP(N, Lo, Hi); break; in ExpandIntegerResult() 2995 Lo = DAG.getNode(ISD::ADD, dl, NVT, DAG.getNode(ISD::CTPOP, dl, NVT, Lo), in ExpandIntRes_CTPOP() 2996 DAG.getNode(ISD::CTPOP, dl, NVT, Hi)); in ExpandIntRes_CTPOP()
|
| H A D | LegalizeVectorTypes.cpp | 78 case ISD::CTPOP: in ScalarizeVectorResult() 973 case ISD::CTPOP: in SplitVectorResult() 3144 case ISD::CTPOP: in WidenVectorResult()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | HexagonISelLowering.cpp | 1568 setOperationAction(ISD::CTPOP, MVT::i8, Promote); in HexagonTargetLowering() 1569 setOperationAction(ISD::CTPOP, MVT::i16, Promote); in HexagonTargetLowering() 1570 setOperationAction(ISD::CTPOP, MVT::i32, Promote); in HexagonTargetLowering() 1571 setOperationAction(ISD::CTPOP, MVT::i64, Legal); in HexagonTargetLowering() 1635 ISD::CTPOP, ISD::CTLZ, ISD::CTTZ, in HexagonTargetLowering()
|
| H A D | HexagonISelLoweringHVX.cpp | 95 setOperationAction(ISD::CTPOP, T, Legal); in initializeHVXLowering() 173 setOperationAction(ISD::CTPOP, T, Custom); in initializeHVXLowering() 2071 case ISD::CTPOP: in LowerHvxOperation()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/ |
| H A D | MSP430ISelLowering.cpp | 108 setOperationAction(ISD::CTPOP, MVT::i8, Expand); in MSP430TargetLowering() 109 setOperationAction(ISD::CTPOP, MVT::i16, Expand); in MSP430TargetLowering()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| H A D | BPFISelLowering.cpp | 116 setOperationAction(ISD::CTPOP, VT, Expand); in BPFTargetLowering()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.cpp | 200 setOperationAction(ISD::CTPOP, VT, Custom); in SystemZTargetLowering() 202 setOperationAction(ISD::CTPOP, VT, Expand); in SystemZTargetLowering() 281 setOperationAction(ISD::CTPOP, MVT::i32, Promote); in SystemZTargetLowering() 282 setOperationAction(ISD::CTPOP, MVT::i64, Legal); in SystemZTargetLowering() 371 setOperationAction(ISD::CTPOP, VT, Legal); in SystemZTargetLowering() 373 setOperationAction(ISD::CTPOP, VT, Custom); in SystemZTargetLowering() 5423 case ISD::CTPOP: in LowerOperation()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | R600ISelLowering.cpp | 212 setOperationAction(ISD::CTPOP, MVT::i32, Expand); in R600TargetLowering() 215 setOperationAction(ISD::CTPOP, MVT::i64, Expand); in R600TargetLowering()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | MipsISelLowering.cpp | 414 setOperationAction(ISD::CTPOP, MVT::i32, Legal); in MipsTargetLowering() 415 setOperationAction(ISD::CTPOP, MVT::i64, Legal); in MipsTargetLowering() 417 setOperationAction(ISD::CTPOP, MVT::i32, Expand); in MipsTargetLowering() 418 setOperationAction(ISD::CTPOP, MVT::i64, Expand); in MipsTargetLowering()
|
| H A D | MipsSEISelLowering.cpp | 336 setOperationAction(ISD::CTPOP, Ty, Legal); in addMSAIntType() 2118 return DAG.getNode(ISD::CTPOP, DL, Op->getValueType(0), Op->getOperand(1)); in lowerINTRINSIC_WO_CHAIN()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
| H A D | WritingAnLLVMBackend.rst | 1463 is rarely used. In ``SparcISelLowering.cpp``, the action for ``CTPOP`` (an 1470 setOperationAction(ISD::CTPOP, MVT::i32, Expand); 1473 setOperationAction(ISD::CTPOP, MVT::i32, Legal);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/ |
| H A D | LanaiISelLowering.cpp | 126 setOperationAction(ISD::CTPOP, MVT::i32, Legal); in LanaiTargetLowering()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 526 setOperationAction(ISD::CTPOP, MVT::i32, Custom); in AArch64TargetLowering() 527 setOperationAction(ISD::CTPOP, MVT::i64, Custom); in AArch64TargetLowering() 528 setOperationAction(ISD::CTPOP, MVT::i128, Custom); in AArch64TargetLowering() 1127 setOperationAction(ISD::CTPOP, VT, Custom); in AArch64TargetLowering() 1397 setOperationAction(ISD::CTPOP, VT, Custom); in addTypeForNEON() 1466 setOperationAction(ISD::CTPOP, VT, Custom); in addTypeForFixedLengthSVE() 4591 case ISD::CTPOP: in LowerOperation() 6821 SDValue CtPop = DAG.getNode(ISD::CTPOP, DL, MVT::v8i8, Val); in LowerCTPOP() 6832 SDValue CtPop = DAG.getNode(ISD::CTPOP, DL, MVT::v16i8, Val); in LowerCTPOP() 6849 Val = DAG.getNode(ISD::CTPOP, DL, VT8Bit, Val); in LowerCTPOP() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 292 setOperationAction(ISD::CTPOP, VT, Expand); in addMVEVectorTypes() 922 setOperationAction(ISD::CTPOP, MVT::v2i32, Custom); in ARMTargetLowering() 923 setOperationAction(ISD::CTPOP, MVT::v4i32, Custom); in ARMTargetLowering() 924 setOperationAction(ISD::CTPOP, MVT::v4i16, Custom); in ARMTargetLowering() 925 setOperationAction(ISD::CTPOP, MVT::v8i16, Custom); in ARMTargetLowering() 926 setOperationAction(ISD::CTPOP, MVT::v1i64, Custom); in ARMTargetLowering() 927 setOperationAction(ISD::CTPOP, MVT::v2i64, Custom); in ARMTargetLowering() 1159 setOperationAction(ISD::CTPOP, MVT::i32, Expand); in ARMTargetLowering() 6178 return DAG.getNode(ISD::CTPOP, dl, VT, Bits); in LowerCTTZ() 6206 return DAG.getNode(ISD::CTPOP, dl, VT, Bits); in LowerCTTZ() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/ |
| H A D | SparcISelLowering.cpp | 1574 setOperationAction(ISD::CTPOP, MVT::i64, in SparcTargetLowering() 1708 setOperationAction(ISD::CTPOP, MVT::i32, in SparcTargetLowering()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AVR/ |
| H A D | AVRISelLowering.cpp | 183 setOperationAction(ISD::CTPOP, VT, Expand); in AVRTargetLowering()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyISelLowering.cpp | 199 for (auto Op : {ISD::CTLZ, ISD::CTTZ, ISD::CTPOP, ISD::SDIV, ISD::UDIV, in WebAssemblyTargetLowering()
|