Searched refs:ExpectedVT (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SDNodeInfo.cpp | 24 unsigned ResIdx, EVT ExpectedVT) { in checkResultType() argument 26 if (ActualVT != ExpectedVT) in checkResultType() 30 ExpectedVT.getEVTString() + ", got " + ActualVT.getEVTString()); in checkResultType() 34 unsigned OpIdx, EVT ExpectedVT) { in checkOperandType() argument 36 if (ActualVT != ExpectedVT) in checkOperandType() 40 ExpectedVT.getEVTString() + ", got " + ActualVT.getEVTString()); in checkOperandType()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXISelLowering.cpp | 1453 static SDValue correctParamType(SDValue V, EVT ExpectedVT, in correctParamType() argument 1457 assert((ActualVT == ExpectedVT || in correctParamType() 1458 (ExpectedVT.isInteger() && ActualVT.isInteger())) && in correctParamType() 1460 if (ExpectedVT.bitsGT(ActualVT)) in correctParamType() 1461 return DAG.getNode(getExtOpcode(Flags), dl, ExpectedVT, V); in correctParamType() 1462 if (ExpectedVT.bitsLT(ActualVT)) in correctParamType() 1463 return DAG.getNode(ISD::TRUNCATE, dl, ExpectedVT, V); in correctParamType() 1935 const EVT ExpectedVT = Ins[I].VT; in LowerCall() local 1936 if (!Ret.getValueType().bitsEq(ExpectedVT)) { in LowerCall() 1937 Ret = DAG.getNode(ISD::TRUNCATE, dl, ExpectedVT, Ret); in LowerCall()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMFastISel.cpp | 2973 uint8_t ExpectedVT : 7; member 3006 MVT((MVT::SimpleValueType)FLE.ExpectedVT) == VT) { in tryToFoldLoadIntoMI()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 9799 EVT ExpectedVT = ExpectedOp.getValueType(); in IsElementEquivalent() local 9802 if (!VT.isVector() || !ExpectedVT.isVector() || in IsElementEquivalent() 9804 (int)ExpectedVT.getVectorNumElements() != MaskSize) in IsElementEquivalent()
|