Searched refs:getOperationAction (Results 1 – 12 of 12) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeVectorOps.cpp | 320 Action = TLI.getOperationAction(Node->getOpcode(), OpVT); in LegalizeOp() 322 Action = TLI.getOperationAction(Node->getOpcode(), ValVT); in LegalizeOp() 333 if (TLI.getOperationAction(Node->getOpcode(), EltVT) in LegalizeOp() 475 Action = TLI.getOperationAction(Node->getOpcode(), in LegalizeOp() 480 Action = TLI.getOperationAction(Node->getOpcode(), in LegalizeOp() 488 Action = TLI.getOperationAction(Node->getOpcode(), OpVT); in LegalizeOp() 1171 if (TLI.getOperationAction(ISD::AND, VT) == TargetLowering::Expand || in ExpandSELECT() 1173 TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand || in ExpandSELECT() 1210 TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Expand) in ExpandSEXTINREG() 1435 TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand) in ExpandVSELECT() [all …]
|
| H A D | LegalizeDAG.cpp | 516 switch (TLI.getOperationAction(ISD::STORE, VT)) { in LegalizeStoreOps() 1009 Action = TLI.getOperationAction(Node->getOpcode(), in LegalizeOp() 1013 Action = TLI.getOperationAction(Node->getOpcode(), in LegalizeOp() 1020 Action = TLI.getOperationAction(Node->getOpcode(), in LegalizeOp() 1032 Action = TLI.getOperationAction(Node->getOpcode(), in LegalizeOp() 1045 Action = TLI.getOperationAction(Node->getOpcode(), in LegalizeOp() 1196 Action = TLI.getOperationAction( in LegalizeOp() 1201 Action = TLI.getOperationAction( in LegalizeOp() 1206 Action = TLI.getOperationAction( in LegalizeOp() 1226 Action = TLI.getOperationAction( in LegalizeOp() [all …]
|
| H A D | LegalizeTypes.cpp | 925 if (TLI.getOperationAction(N->getOpcode(), VT) != TargetLowering::Custom) in CustomLowerNode() 952 if (TLI.getOperationAction(N->getOpcode(), VT) != TargetLowering::Custom) in CustomWidenLowerNode()
|
| H A D | LegalizeIntegerTypes.cpp | 4396 if (TLI.getOperationAction(ISD::SDIVREM, VT) == TargetLowering::Custom) { in ExpandIntRes_SDIV() 4553 TargetLowering::LegalizeAction Action = TLI.getOperationAction(PartsOpc, NVT); in ExpandIntRes_Shift() 4709 if (TLI.getOperationAction(ISD::SDIVREM, VT) == TargetLowering::Custom) { in ExpandIntRes_SREM() 4887 if (TLI.getOperationAction(ISD::UDIVREM, VT) == TargetLowering::Custom) { in ExpandIntRes_UDIV() 4930 if (TLI.getOperationAction(ISD::UDIVREM, VT) == TargetLowering::Custom) { in ExpandIntRes_UREM()
|
| H A D | SelectionDAGISel.cpp | 1207 if (TLI->getOperationAction(Node->getOpcode(), ActionVT) in DoInstructionSelection()
|
| H A D | DAGCombiner.cpp | 8410 HasROTL |= TLI.getOperationAction(ISD::ROTL, VT) == TargetLowering::Custom; in MatchRotate() 8411 HasROTR |= TLI.getOperationAction(ISD::ROTR, VT) == TargetLowering::Custom; in MatchRotate() 12709 TLI.getOperationAction(ISD::VSELECT, VT) != TargetLowering::Legal)) in tryToFoldExtendSelectLoad() 17643 TLI.getOperationAction(ISD::FP16_TO_FP, VT) == TargetLowering::Legal) in visitFP_EXTEND() 23462 if (TLI.getOperationAction(ISD::SPLAT_VECTOR, VT) != TargetLowering::Expand) in visitBUILD_VECTOR() 27227 if (TLI.getOperationAction(ISD::ConstantFP, VT) == TargetLowering::Legal || in convertSelectOfFPConstantsToLoadOffset()
|
| H A D | TargetLowering.cpp | 2032 getOperationAction(ISD::SIGN_EXTEND_INREG, ExtVT) == Legal) in SimplifyDemandedBits()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TargetLowering.h | 1231 auto Action = getOperationAction(Op, VT); in getFixedPointOperationAction() 1269 return getOperationAction(EqOpc, VT); in getStrictFPOperationAction() 1282 (getOperationAction(Op, VT) == Legal || 1283 getOperationAction(Op, VT) == Custom); 1296 (getOperationAction(Op, VT) == Legal || 1297 getOperationAction(Op, VT) == Promote); 1310 (getOperationAction(Op, VT) == Legal || 1311 getOperationAction(Op, VT) == Custom || 1312 getOperationAction(Op, VT) == Promote); 1318 return getOperationAction(Op, VT) == Custom; in isOperationCustom() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXISelLowering.cpp | 503 if (getOperationAction(ISD::SETCC, MVT::bf16) == Promote) in NVPTXTargetLowering() 746 if (getOperationAction(Op, MVT::bf16) == Promote) in NVPTXTargetLowering() 771 if (getOperationAction(Op, MVT::bf16) == Promote) in NVPTXTargetLowering() 822 if (getOperationAction(Op, MVT::bf16) == Promote) in NVPTXTargetLowering() 838 if (getOperationAction(Op, MVT::bf16) == Promote) in NVPTXTargetLowering()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TargetLoweringBase.cpp | 2284 if (getOperationAction(ISD::LOAD, LoadMVT) == Promote && in isLoadBitCastBeneficial()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMTargetTransformInfo.cpp | 2046 if (TLI->getOperationAction(ISD, VT) == TargetLowering::LibCall) in maybeLoweredToCall()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.cpp | 383 if (getOperationAction(Opcode, VT) == Legal) in SystemZTargetLowering()
|