Searched refs:TmpVT (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64FastISel.cpp | 4740 MVT TmpVT; in selectShift() local 4741 if (isValueAvailable(ZExt) && isTypeSupported(ZExt->getSrcTy(), TmpVT)) { in selectShift() 4742 SrcVT = TmpVT; in selectShift() 4749 MVT TmpVT; in selectShift() local 4750 if (isValueAvailable(SExt) && isTypeSupported(SExt->getSrcTy(), TmpVT)) { in selectShift() 4751 SrcVT = TmpVT; in selectShift()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeIntegerTypes.cpp | 4723 for (EVT TmpVT = NVT;;) { in ExpandIntRes_Shift() local 4724 EVT NewTMPVT = TLI.getTypeToTransformTo(*DAG.getContext(), TmpVT); in ExpandIntRes_Shift() 4725 if (NewTMPVT == TmpVT) in ExpandIntRes_Shift() 4727 TmpVT = NewTMPVT; in ExpandIntRes_Shift()
|
H A D | DAGCombiner.cpp | 15813 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits()); in ConstantFoldBITCASTofBUILD_VECTOR() local 15814 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode(); in ConstantFoldBITCASTofBUILD_VECTOR()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 21296 EVT TmpVT = DstVT; in LowerFP_TO_INT_SAT() local 21306 unsigned TmpWidth = TmpVT.getScalarSizeInBits(); in LowerFP_TO_INT_SAT() 21312 TmpVT = MVT::i32; in LowerFP_TO_INT_SAT() 21319 TmpVT = MVT::i64; in LowerFP_TO_INT_SAT() 21355 if (DstVT != TmpVT) { in LowerFP_TO_INT_SAT() 21363 SDValue FpToInt = DAG.getNode(FpToIntOpcode, dl, TmpVT, BothClamped); in LowerFP_TO_INT_SAT() 21395 SDValue FpToInt = DAG.getNode(FpToIntOpcode, dl, TmpVT, Src); in LowerFP_TO_INT_SAT() 21397 if (DstVT != TmpVT) { in LowerFP_TO_INT_SAT() 21407 if (!IsSigned || SatWidth != TmpVT.getScalarSizeInBits()) { in LowerFP_TO_INT_SAT() 21420 if (!IsSigned || DstVT != TmpVT) { in LowerFP_TO_INT_SAT() [all …]
|