Searched defs:ShAmtVal (Results 1 - 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp910 uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits); local
911 if (ShAmtVal >= TypeBits || ShAmtVal == 0)
924 (!Shr->isExact() || ShAmtVal == TypeBits - 1))
931 ConstantInt::get(Shr->getType(), APInt::getOneBitSet(TypeBits, ShAmtVal));
957 APInt Comp = CmpRHSV << ShAmtVal;
960 Comp = Comp.lshr(ShAmtVal);
962 Comp = Comp.ashr(ShAmtVal);
979 APInt Val(APInt::getHighBitsSet(TypeBits, TypeBits - ShAmtVal));
1137 int ShAmtVal local
1272 uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits); local
[all...]
H A DInstructionCombining.cpp997 uint32_t ShAmtVal = ShAmt->getLimitedValue(64); local
999 1ULL << ShAmtVal);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1350 uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits); local
1351 if (ShAmtVal >= TypeBits || ShAmtVal == 0)
1364 (!Shr->isExact() || ShAmtVal == TypeBits - 1))
1371 ConstantInt::get(Shr->getType(), APInt::getOneBitSet(TypeBits, ShAmtVal));
1396 APInt Comp = CmpRHSV << ShAmtVal;
1399 Comp = Comp.lshr(ShAmtVal);
1401 Comp = Comp.ashr(ShAmtVal);
1417 APInt Val(APInt::getHighBitsSet(TypeBits, TypeBits - ShAmtVal));
2019 uint32_t ShAmtVal local
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp4386 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue(); local
4393 if (ShAmtVal > KnownZeroBits)
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6545 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue(); local
6552 if (ShAmtVal > KnownZeroBits)

Completed in 232 milliseconds