Home
last modified time | relevance | path

Searched refs:KeptBits (Results 1 – 5 of 5) sorted by relevance

/openbsd/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h804 unsigned KeptBits) const override { in shouldTransformSignedTruncationCheck() argument
816 MVT KeptBitsVT = MVT::getIntegerVT(KeptBits); in shouldTransformSignedTruncationCheck()
/openbsd/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.h1131 unsigned KeptBits) const override { in shouldTransformSignedTruncationCheck() argument
1143 MVT KeptBitsVT = MVT::getIntegerVT(KeptBits); in shouldTransformSignedTruncationCheck()
/openbsd/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp3743 const APInt KeptBits = BitWidth - MaskedBits; in foldICmpWithTruncSignExtendedVal() local
3744 assert(KeptBits.ugt(0) && KeptBits.ult(BitWidth) && "unreachable"); in foldICmpWithTruncSignExtendedVal()
3746 const APInt ICmpCst = APInt(XBitWidth, 1).shl(KeptBits); in foldICmpWithTruncSignExtendedVal()
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp3883 const unsigned KeptBits = I1.logBase2(); in optimizeSetCCOfSignedTruncationCheck() local
3887 if (KeptBits != (KeptBitsMinusOne + 1)) in optimizeSetCCOfSignedTruncationCheck()
3889 assert(KeptBits > 0 && KeptBits < XVT.getSizeInBits() && "unreachable"); in optimizeSetCCOfSignedTruncationCheck()
3894 XVT, KeptBits)) in optimizeSetCCOfSignedTruncationCheck()
3897 const unsigned MaskedBits = XVT.getSizeInBits() - KeptBits; in optimizeSetCCOfSignedTruncationCheck()
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/
H A DTargetLowering.h745 unsigned KeptBits) const { in shouldTransformSignedTruncationCheck() argument