Home
last modified time | relevance | path

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

/external/llvm/lib/IR/
DConstantRange.cpp749 APInt NewL = APIntOps::smax(getSignedMin(), Other.getSignedMin()); in smax() local
751 if (NewU == NewL) in smax()
753 return ConstantRange(NewL, NewU); in smax()
762 APInt NewL = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin()); in umax() local
764 if (NewU == NewL) in umax()
766 return ConstantRange(NewL, NewU); in umax()
775 APInt NewL = APIntOps::smin(getSignedMin(), Other.getSignedMin()); in smin() local
777 if (NewU == NewL) in smin()
779 return ConstantRange(NewL, NewU); in smin()
788 APInt NewL = APIntOps::umin(getUnsignedMin(), Other.getUnsignedMin()); in umin() local
[all …]
/external/swiftshader/third_party/LLVM/lib/Support/
DConstantRange.cpp572 APInt NewL = APIntOps::smax(getSignedMin(), Other.getSignedMin()); in smax() local
574 if (NewU == NewL) in smax()
576 return ConstantRange(NewL, NewU); in smax()
585 APInt NewL = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin()); in umax() local
587 if (NewU == NewL) in umax()
589 return ConstantRange(NewL, NewU); in umax()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DLegalizeFloatTypes.cpp478 SDValue NewL; in SoftenFloatRes_LOAD() local
480 NewL = DAG.getLoad(L->getAddressingMode(), L->getExtensionType(), in SoftenFloatRes_LOAD()
486 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD()
487 return NewL; in SoftenFloatRes_LOAD()
491 NewL = DAG.getLoad(L->getAddressingMode(), ISD::NON_EXTLOAD, in SoftenFloatRes_LOAD()
498 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD()
499 return BitConvertToInteger(DAG.getNode(ISD::FP_EXTEND, dl, VT, NewL)); in SoftenFloatRes_LOAD()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeFloatTypes.cpp634 SDValue NewL; in SoftenFloatRes_LOAD() local
636 NewL = DAG.getLoad(L->getAddressingMode(), L->getExtensionType(), in SoftenFloatRes_LOAD()
643 if (N != NewL.getValue(1).getNode()) in SoftenFloatRes_LOAD()
644 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD()
645 return NewL; in SoftenFloatRes_LOAD()
649 NewL = DAG.getLoad(L->getAddressingMode(), ISD::NON_EXTLOAD, in SoftenFloatRes_LOAD()
657 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD()
658 auto ExtendNode = DAG.getNode(ISD::FP_EXTEND, dl, VT, NewL); in SoftenFloatRes_LOAD()