Home
last modified time | relevance | path

Searched refs:RVT (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp330 EVT RVT = RHS.getValueType(); in SoftenFloatRes_FCOPYSIGN() local
333 unsigned RSize = RVT.getSizeInBits(); in SoftenFloatRes_FCOPYSIGN()
337 ISD::SHL, dl, RVT, DAG.getConstant(1, dl, RVT), in SoftenFloatRes_FCOPYSIGN()
339 TLI.getShiftAmountTy(RVT, DAG.getDataLayout()))); in SoftenFloatRes_FCOPYSIGN()
340 SignBit = DAG.getNode(ISD::AND, dl, RVT, RHS, SignBit); in SoftenFloatRes_FCOPYSIGN()
343 int SizeDiff = RVT.getSizeInBits() - LVT.getSizeInBits(); in SoftenFloatRes_FCOPYSIGN()
346 DAG.getNode(ISD::SRL, dl, RVT, SignBit, in SoftenFloatRes_FCOPYSIGN()
772 EVT RVT = N->getValueType(0); in SoftenFloatRes_XINT_TO_FP() local
785 LC = Signed ? RTLIB::getSINTTOFP(NVT, RVT):RTLIB::getUINTTOFP (NVT, RVT); in SoftenFloatRes_XINT_TO_FP()
795 CallOptions.setTypeListBeforeSoften(SVT, RVT, true); in SoftenFloatRes_XINT_TO_FP()
[all …]
H A DLegalizeDAG.cpp4281 EVT RVT = Node->getValueType(0); in ConvertNodeToLibcall() local
4295 LC = Signed ? RTLIB::getSINTTOFP(NVT, RVT) in ConvertNodeToLibcall()
4296 : RTLIB::getUINTTOFP(NVT, RVT); in ConvertNodeToLibcall()
4307 TLI.makeLibCall(DAG, LC, RVT, Op, CallOptions, dl, Chain); in ConvertNodeToLibcall()
4324 EVT RVT = Node->getValueType(0); in ConvertNodeToLibcall() local
4337 if (NVT.bitsGE(RVT)) in ConvertNodeToLibcall()
4349 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, RVT, Tmp.first)); in ConvertNodeToLibcall()
H A DDAGCombiner.cpp24838 EVT RVT = RHS.getValueType(); in XformToShuffleWithZero() local
24846 int NumSubBits = RVT.getScalarSizeInBits() / Split; in XformToShuffleWithZero()
24896 if (RVT.getScalarSizeInBits() % 8 == 0) in XformToShuffleWithZero()
24897 MaxSplit = RVT.getScalarSizeInBits() / 8; in XformToShuffleWithZero()
24900 if (RVT.getScalarSizeInBits() % Split == 0) in XformToShuffleWithZero()
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmTypeCheck.cpp211 for (auto RVT : llvm::reverse(ReturnTypes)) { in endOfFunction() local
212 if (popType(ErrorLoc, RVT)) in endOfFunction()