Searched refs:InOp (Results 1 – 7 of 7) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXProxyRegErasure.cpp | 96 auto &InOp = *MI.uses().begin(); in replaceMachineInstructionUsage() local 99 assert(InOp.isReg() && "ProxyReg input operand should be a register."); in replaceMachineInstructionUsage() 104 replaceRegisterUsage(I, OutOp, InOp); in replaceMachineInstructionUsage()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeVectorTypes.cpp | 322 return InOp; in ScalarizeVecRes_BUILD_VECTOR() 447 return InOp; in ScalarizeVecRes_SCALAR_TO_VECTOR() 4278 InOp = ZExtPromotedInteger(InOp); in WidenVecRes_Convert() 4432 InOp = GetWidenedVector(InOp); in WidenVecRes_EXTEND_VECTOR_INREG() 4578 InOp = GetWidenedVector(InOp); in WidenVecRes_BITCAST() 4712 InOp = GetWidenedVector(InOp); in WidenVecRes_CONCAT_VECTORS() 4743 InOp = GetWidenedVector(InOp); in WidenVecRes_EXTRACT_SUBVECTOR() 4811 InOp.getValueType(), InOp, in WidenVecRes_INSERT_VECTOR_ELT() 5539 InOp = GetWidenedVector(InOp); in WidenVecOp_EXTEND() 5634 InOp = GetWidenedVector(InOp); in WidenVecOp_Convert() [all …]
|
| H A D | LegalizeTypesGeneric.cpp | 43 SDValue InOp = N->getOperand(0); in ExpandRes_BITCAST() local 44 EVT InVT = InOp.getValueType(); in ExpandRes_BITCAST() 57 SplitInteger(GetSoftenedFloat(InOp), Lo, Hi); in ExpandRes_BITCAST() 65 GetExpandedOp(InOp, Lo, Hi); in ExpandRes_BITCAST() 74 GetSplitVector(InOp, Lo, Hi); in ExpandRes_BITCAST() 82 SplitInteger(BitConvertToInteger(GetScalarizedVector(InOp)), Lo, Hi); in ExpandRes_BITCAST() 90 InOp = GetWidenedVector(InOp); in ExpandRes_BITCAST() 93 std::tie(Lo, Hi) = DAG.SplitVector(InOp, dl, LoVT, HiVT); in ExpandRes_BITCAST() 121 SDValue CastInOp = DAG.getNode(ISD::BITCAST, dl, NVT, InOp); in ExpandRes_BITCAST() 171 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, InOp, StackPtr, PtrInfo); in ExpandRes_BITCAST()
|
| H A D | LegalizeIntegerTypes.cpp | 378 SDValue InOp = N->getOperand(0); in PromoteIntRes_BITCAST() local 379 EVT InVT = InOp.getValueType(); in PromoteIntRes_BITCAST() 428 InOp = DAG.getNode(ISD::ANY_EXTEND, dl, in PromoteIntRes_BITCAST() 466 InOp = DAG.getBitcast(WideOutVT, GetWidenedVector(InOp)); in PromoteIntRes_BITCAST() 467 InOp = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, OutVT, InOp, in PromoteIntRes_BITCAST() 1343 SDValue InOp = N->getOperand(0); in PromoteIntRes_TRUNCATE() local 1350 Res = InOp; in PromoteIntRes_TRUNCATE() 1353 Res = GetPromotedInteger(InOp); in PromoteIntRes_TRUNCATE() 1356 EVT InVT = InOp.getValueType(); in PromoteIntRes_TRUNCATE() 1365 GetSplitVector(InOp, EOp1, EOp2); in PromoteIntRes_TRUNCATE() [all …]
|
| H A D | LegalizeTypes.h | 1037 SDValue ModifyToType(SDValue InOp, EVT NVT, bool FillWithZeroes = false);
|
| H A D | DAGCombiner.cpp | 19788 SDValue InOp = VecOp.getOperand(0); in visitEXTRACT_VECTOR_ELT() local 19789 if (InOp.getValueType() != ScalarVT) { in visitEXTRACT_VECTOR_ELT() 19790 assert(InOp.getValueType().isInteger() && ScalarVT.isInteger() && in visitEXTRACT_VECTOR_ELT() 19791 InOp.getValueType().bitsGT(ScalarVT)); in visitEXTRACT_VECTOR_ELT() 19792 return DAG.getNode(ISD::TRUNCATE, DL, ScalarVT, InOp); in visitEXTRACT_VECTOR_ELT() 19794 return InOp; in visitEXTRACT_VECTOR_ELT() 19897 SDValue InOp = SVInVec.getOperand(OrigElt); in visitEXTRACT_VECTOR_ELT() local 19898 if (InOp.getValueType() != ScalarVT) { in visitEXTRACT_VECTOR_ELT() 19899 assert(InOp.getValueType().isInteger() && ScalarVT.isInteger()); in visitEXTRACT_VECTOR_ELT() 19900 InOp = DAG.getSExtOrTrunc(InOp, DL, ScalarVT); in visitEXTRACT_VECTOR_ELT() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 31888 MVT InVT = InOp.getSimpleValueType(); in ExtendToType() 31890 return InOp; in ExtendToType() 31892 if (InOp.isUndef()) in ExtendToType() 31903 SDLoc dl(InOp); in ExtendToType() 31904 if (InOp.getOpcode() == ISD::CONCAT_VECTORS && in ExtendToType() 31905 InOp.getNumOperands() == 2) { in ExtendToType() 31906 SDValue N1 = InOp.getOperand(1); in ExtendToType() 31909 InOp = InOp.getOperand(0); in ExtendToType() 31910 InVT = InOp.getSimpleValueType(); in ExtendToType() 31918 Ops.push_back(InOp.getOperand(i)); in ExtendToType() [all …]
|