Searched refs:SrcEVT (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCFastISel.cpp | 821 EVT SrcEVT = TLI.getValueType(DL, Ty, true); in PPCEmitCmp() local 822 if (!SrcEVT.isSimple()) in PPCEmitCmp() 824 MVT SrcVT = SrcEVT.getSimpleVT(); in PPCEmitCmp() 1072 EVT SrcEVT = TLI.getValueType(DL, Src->getType(), true); in SelectIToFP() local 1073 if (!SrcEVT.isSimple()) in SelectIToFP() 1076 MVT SrcVT = SrcEVT.getSimpleVT(); in SelectIToFP() 1907 EVT SrcEVT, DestEVT; in SelectIntExt() local 1908 SrcEVT = TLI.getValueType(DL, SrcTy, true); in SelectIntExt() 1910 if (!SrcEVT.isSimple()) in SelectIntExt() 1915 MVT SrcVT = SrcEVT.getSimpleVT(); in SelectIntExt()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMFastISel.cpp | 1340 EVT SrcEVT = TLI.getValueType(DL, Ty, true); in ARMEmitCmp() local 1341 if (!SrcEVT.isSimple()) return false; in ARMEmitCmp() 1342 MVT SrcVT = SrcEVT.getSimpleVT(); in ARMEmitCmp() 1534 EVT SrcEVT = TLI.getValueType(DL, Src->getType(), true); in SelectIToFP() local 1535 if (!SrcEVT.isSimple()) in SelectIToFP() 1537 MVT SrcVT = SrcEVT.getSimpleVT(); in SelectIToFP() 2756 EVT SrcEVT, DestEVT; in SelectIntExt() local 2757 SrcEVT = TLI.getValueType(DL, SrcTy, true); in SelectIntExt() 2759 if (!SrcEVT.isSimple()) return false; in SelectIntExt() 2762 MVT SrcVT = SrcEVT.getSimpleVT(); in SelectIntExt()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsFastISel.cpp | 1805 EVT SrcEVT, DestEVT; in selectIntExt() local 1806 SrcEVT = TLI.getValueType(DL, SrcTy, true); in selectIntExt() 1808 if (!SrcEVT.isSimple()) in selectIntExt() 1813 MVT SrcVT = SrcEVT.getSimpleVT(); in selectIntExt()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | FastISel.cpp | 1533 EVT SrcEVT = TLI.getValueType(DL, I->getOperand(0)->getType()); in selectBitCast() local 1535 if (SrcEVT == MVT::Other || DstEVT == MVT::Other || in selectBitCast() 1536 !TLI.isTypeLegal(SrcEVT) || !TLI.isTypeLegal(DstEVT)) in selectBitCast() 1540 MVT SrcVT = SrcEVT.getSimpleVT(); in selectBitCast()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64FastISel.cpp | 3954 EVT SrcEVT = TLI.getValueType(DL, SrcTy, true); in selectTrunc() local 3956 if (!SrcEVT.isSimple()) in selectTrunc() 3961 MVT SrcVT = SrcEVT.getSimpleVT(); in selectTrunc()
|