HomeSort by relevance Sort by last modified time
    Searched refs:Op1C (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 686 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(I.getOperand(1))) {
687 unsigned ShAmt = Op1C->getZExtValue();
692 APInt::getHighBitsSet(Op1C->getBitWidth(), ShAmt))) {
725 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
726 unsigned ShAmt = Op1C->getZExtValue();
746 MaskedValueIsZero(Op0,APInt::getLowBitsSet(Op1C->getBitWidth(),ShAmt))){
765 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
766 unsigned ShAmt = Op1C->getZExtValue();
785 if (Op1C->getZExtValue() == DestBits-SrcBits)
792 MaskedValueIsZero(Op0,APInt::getLowBitsSet(Op1C->getBitWidth(),ShAmt)))
    [all...]
InstCombineMulDivRem.cpp 181 Value *Op1C = Op1;
186 Op1C = Op0;
189 Value *Neg = dyn_castNegVal(Op1C);
191 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) &&
199 if (Op1BO == Op1C)
211 if (Op1BO == Op1C)
853 if (ConstantFP *Op1C = dyn_cast<ConstantFP>(Op1)) {
856 ConstantFP *C2 = Op1C;
887 if (Instruction *T = CvtFDivConstToReciprocal(Op0, Op1C, AllowReciprocal))
    [all...]
InstCombineCasts.cpp 515 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(ICI->getOperand(1))) {
516 const APInt &Op1CV = Op1C->getValue();
550 // If Op1C some other power of two, convert:
551 uint32_t BitWidth = Op1C->getType()->getBitWidth();
    [all...]
InstCombineAndOrXor.cpp     [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 909 if (const ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
910 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
913 .addImm(Op1C->getSExtValue());
    [all...]

Completed in 275 milliseconds