Searched refs:UpperBits (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.cpp | 4024 SDValue UpperBits = DAG.getConstant(0xFFFFFFFF00000000, DL, MVT::i64); in getAArch64XALUOOp() local 4026 DAG.getNode(AArch64ISD::ANDS, DL, VTs, Mul, UpperBits).getValue(1); in getAArch64XALUOOp() 4034 SDValue UpperBits = DAG.getNode(ISD::MULHS, DL, MVT::i64, LHS, RHS); in getAArch64XALUOOp() local 4040 Overflow = DAG.getNode(AArch64ISD::SUBS, DL, VTs, UpperBits, LowerBits) in getAArch64XALUOOp() 4043 SDValue UpperBits = DAG.getNode(ISD::MULHU, DL, MVT::i64, LHS, RHS); in getAArch64XALUOOp() local 4048 UpperBits).getValue(1); in getAArch64XALUOOp()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZISelLowering.cpp | 865 unsigned UpperBits = llvm::countl_zero(SplatBitsZ); in isVectorConstantLegal() local 867 uint64_t Upper = SplatUndefZ & maskLeadingOnes<uint64_t>(UpperBits); in isVectorConstantLegal()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | TargetLowering.cpp | 3994 APInt UpperBits = APInt::getHighBitsSet(NumEltBits, NumEltBits - 1); in foldSetCCWithAnd() local 3995 if (DAG.MaskedValueIsZero(N0, UpperBits)) in foldSetCCWithAnd()
|
H A D | DAGCombiner.cpp | 3721 APInt UpperBits = APInt::getBitsSetFrom(SrcVT.getScalarSizeInBits(), in getTruncatedUSUBSAT() local 3723 if (!DAG.MaskedValueIsZero(LHS, UpperBits)) in getTruncatedUSUBSAT() 11209 APInt UpperBits = APInt::getHighBitsSet(NumBits, NumBits / 2); in visitCTPOP() local 11210 if (DAG.MaskedValueIsZero(N0, UpperBits)) { in visitCTPOP()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 54270 APInt UpperBits = APInt::getBitsSetFrom(SrcVT.getScalarSizeInBits(), in combineSetCC() local 54273 if (DAG.MaskedValueIsZero(LHS.getOperand(0), UpperBits) && in combineSetCC() 55240 APInt UpperBits = in combineCMP() local 55242 if (OpVT == MVT::i32 && DAG.MaskedValueIsZero(Op, UpperBits) && in combineCMP()
|