Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3782 APInt ConstValue1; in visitMUL() local
3789 N1IsConst = ISD::isConstantSplatVector(N1.getNode(), ConstValue1); in visitMUL()
3791 ConstValue1.getBitWidth() == VT.getScalarSizeInBits()) && in visitMUL()
3796 ConstValue1 = cast<ConstantSDNode>(N1)->getAPIntValue(); in visitMUL()
3811 if (N1IsConst && ConstValue1.isNullValue()) in visitMUL()
3815 if (N1IsConst && ConstValue1.isOneValue()) in visitMUL()
3822 if (N1IsConst && ConstValue1.isAllOnesValue()) { in visitMUL()
3840 if (N1IsConst && !N1IsOpaqueConst && (-ConstValue1).isPowerOf2()) { in visitMUL()
3841 unsigned Log2Val = (-ConstValue1).logBase2(); in visitMUL()
3872 APInt MulC = ConstValue1.abs(); in visitMUL()
[all …]