Home
last modified time | relevance | path

Searched refs:OldVT (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypesGeneric.cpp218 EVT OldVT = N->getValueType(0); in ExpandRes_EXTRACT_VECTOR_ELT() local
219 EVT NewVT = TLI.getTypeToTransformTo(*DAG.getContext(), OldVT); in ExpandRes_EXTRACT_VECTOR_ELT()
221 if (OldVT != OldEltVT) { in ExpandRes_EXTRACT_VECTOR_ELT()
225 assert(OldEltVT.bitsLT(OldVT) && "Result type smaller then element type!"); in ExpandRes_EXTRACT_VECTOR_ELT()
226 EVT NVecVT = EVT::getVectorVT(*DAG.getContext(), OldVT, OldElts); in ExpandRes_EXTRACT_VECTOR_ELT()
375 EVT OldVT = N->getOperand(0).getValueType(); in ExpandOp_BUILD_VECTOR() local
376 EVT NewVT = TLI.getTypeToTransformTo(*DAG.getContext(), OldVT); in ExpandOp_BUILD_VECTOR()
379 assert(OldVT == VecVT.getVectorElementType() && in ExpandOp_BUILD_VECTOR()
H A DLegalizeTypes.h263 EVT OldVT = Op.getValueType(); in SExtPromotedInteger() local
267 DAG.getValueType(OldVT)); in SExtPromotedInteger()
272 EVT OldVT = Op.getValueType(); in ZExtPromotedInteger() local
275 return DAG.getZeroExtendInReg(Op, dl, OldVT); in ZExtPromotedInteger()
283 EVT OldVT = Op.getValueType(); in SExtOrZExtPromotedInteger() local
286 if (TLI.isSExtCheaperThanZExt(OldVT, Op.getValueType())) in SExtOrZExtPromotedInteger()
288 DAG.getValueType(OldVT)); in SExtOrZExtPromotedInteger()
289 return DAG.getZeroExtendInReg(Op, DL, OldVT); in SExtOrZExtPromotedInteger()
H A DLegalizeIntegerTypes.cpp1183 EVT OldVT = N->getOperand(0).getValueType(); in PromoteIntRes_FunnelShift() local
1187 unsigned OldBits = OldVT.getScalarSizeInBits(); in PromoteIntRes_FunnelShift()
1203 Lo = DAG.getZeroExtendInReg(Lo, DL, OldVT); in PromoteIntRes_FunnelShift()
H A DDAGCombiner.cpp1247 EVT OldVT = Op.getValueType(); in SExtPromoteOperand() local
1258 DAG.getValueType(OldVT)); in SExtPromoteOperand()
1262 EVT OldVT = Op.getValueType(); in ZExtPromoteOperand() local
1272 return DAG.getZeroExtendInReg(NewOp, DL, OldVT); in ZExtPromoteOperand()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclAttr.cpp4265 } else if (const auto *OldVT = OldTy->getAs<VectorType>()) { in AddModeAttr() local
4272 OldVT->getNumElements() / in AddModeAttr()
4275 Context.getVectorType(NewElemTy, NumElements, OldVT->getVectorKind()); in AddModeAttr()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp734 EVT OldVT = N->getValueType(0); in shouldReduceLoadWidth() local
735 unsigned OldSize = OldVT.getStoreSizeInBits(); in shouldReduceLoadWidth()