Searched refs:InOp (Results 1 – 8 of 8) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeVectorTypes.cpp | 312 return InOp; in ScalarizeVecRes_BUILD_VECTOR() 437 return InOp; in ScalarizeVecRes_SCALAR_TO_VECTOR() 3543 InOp = ZExtPromotedInteger(InOp); in WidenVecRes_Convert() 3690 InOp = GetWidenedVector(InOp); in WidenVecRes_EXTEND_VECTOR_INREG() 3820 InOp = GetWidenedVector(InOp); in WidenVecRes_BITCAST() 3954 InOp = GetWidenedVector(InOp); in WidenVecRes_CONCAT_VECTORS() 3973 InOp = GetWidenedVector(InOp); in WidenVecRes_EXTRACT_SUBVECTOR() 4011 InOp.getValueType(), InOp, in WidenVecRes_INSERT_VECTOR_ELT() 4627 InOp = GetWidenedVector(InOp); in WidenVecOp_EXTEND() 4695 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 | 339 SDValue InOp = N->getOperand(0); in PromoteIntRes_BITCAST() local 340 EVT InVT = InOp.getValueType(); in PromoteIntRes_BITCAST() 389 InOp = DAG.getNode(ISD::ANY_EXTEND, dl, in PromoteIntRes_BITCAST() 428 InOp = DAG.getBitcast(WideOutVT, GetWidenedVector(InOp)); in PromoteIntRes_BITCAST() 429 InOp = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, OutVT, InOp, in PromoteIntRes_BITCAST() 1230 SDValue InOp = N->getOperand(0); in PromoteIntRes_TRUNCATE() local 1237 Res = InOp; in PromoteIntRes_TRUNCATE() 1240 Res = GetPromotedInteger(InOp); in PromoteIntRes_TRUNCATE() 1243 EVT InVT = InOp.getValueType(); in PromoteIntRes_TRUNCATE() 1252 GetSplitVector(InOp, EOp1, EOp2); in PromoteIntRes_TRUNCATE() [all …]
|
| H A D | LegalizeTypes.h | 984 SDValue ModifyToType(SDValue InOp, EVT NVT, bool FillWithZeroes = false);
|
| H A D | DAGCombiner.cpp | 18730 SDValue InOp = VecOp.getOperand(0); in visitEXTRACT_VECTOR_ELT() local 18731 if (InOp.getValueType() != ScalarVT) { in visitEXTRACT_VECTOR_ELT() 18732 assert(InOp.getValueType().isInteger() && ScalarVT.isInteger()); in visitEXTRACT_VECTOR_ELT() 18733 return DAG.getSExtOrTrunc(InOp, DL, ScalarVT); in visitEXTRACT_VECTOR_ELT() 18735 return InOp; in visitEXTRACT_VECTOR_ELT() 18838 SDValue InOp = SVInVec.getOperand(OrigElt); in visitEXTRACT_VECTOR_ELT() local 18839 if (InOp.getValueType() != ScalarVT) { in visitEXTRACT_VECTOR_ELT() 18840 assert(InOp.getValueType().isInteger() && ScalarVT.isInteger()); in visitEXTRACT_VECTOR_ELT() 18841 InOp = DAG.getSExtOrTrunc(InOp, DL, ScalarVT); in visitEXTRACT_VECTOR_ELT() 18844 return InOp; in visitEXTRACT_VECTOR_ELT()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 3833 SDValue InOp = Op.getOperand(1); in lowerConvertToSVBool() local 3834 EVT InVT = InOp.getValueType(); in lowerConvertToSVBool() 3839 return InOp; in lowerConvertToSVBool() 3842 DAG.getNode(AArch64ISD::REINTERPRET_CAST, DL, OutVT, InOp); in lowerConvertToSVBool() 3846 switch (InOp.getOpcode()) { in lowerConvertToSVBool() 3850 if (InOp.getConstantOperandVal(0) == Intrinsic::aarch64_sve_ptrue) in lowerConvertToSVBool()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 30109 MVT InVT = InOp.getSimpleValueType(); in ExtendToType() 30111 return InOp; in ExtendToType() 30113 if (InOp.isUndef()) in ExtendToType() 30124 SDLoc dl(InOp); in ExtendToType() 30125 if (InOp.getOpcode() == ISD::CONCAT_VECTORS && in ExtendToType() 30126 InOp.getNumOperands() == 2) { in ExtendToType() 30127 SDValue N1 = InOp.getOperand(1); in ExtendToType() 30130 InOp = InOp.getOperand(0); in ExtendToType() 30131 InVT = InOp.getSimpleValueType(); in ExtendToType() 30139 Ops.push_back(InOp.getOperand(i)); in ExtendToType() [all …]
|