Home
last modified time | relevance | path

Searched refs:NewL (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/IR/
DConstantRange.cpp696 APInt NewL = APIntOps::smax(getSignedMin(), Other.getSignedMin()); in smax() local
698 if (NewU == NewL) in smax()
700 return ConstantRange(NewL, NewU); in smax()
709 APInt NewL = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin()); in umax() local
711 if (NewU == NewL) in umax()
713 return ConstantRange(NewL, NewU); in umax()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeFloatTypes.cpp617 SDValue NewL; in SoftenFloatRes_LOAD() local
619 NewL = DAG.getLoad(L->getAddressingMode(), L->getExtensionType(), in SoftenFloatRes_LOAD()
626 if (N != NewL.getValue(1).getNode()) in SoftenFloatRes_LOAD()
627 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD()
628 return NewL; in SoftenFloatRes_LOAD()
632 NewL = DAG.getLoad(L->getAddressingMode(), ISD::NON_EXTLOAD, in SoftenFloatRes_LOAD()
640 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD()
641 auto ExtendNode = DAG.getNode(ISD::FP_EXTEND, dl, VT, NewL); in SoftenFloatRes_LOAD()