Searched refs:NewL (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/IR/ |
D | ConstantRange.cpp | 696 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/ |
D | LegalizeFloatTypes.cpp | 617 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()
|