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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 182 Value *Op1C = Op1;
187 Op1C = Op0;
190 Value *Neg = dyn_castNegVal(Op1C);
192 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) &&
200 if (Op1BO == Op1C)
212 if (Op1BO == Op1C)
260 if (Constant *Op1C = dyn_cast<Constant>(Op1)) {
261 if (ConstantFP *Op1F = dyn_cast<ConstantFP>(Op1C)) {
266 } else if (ConstantDataVector *Op1V = dyn_cast<ConstantDataVector>(Op1C)) {
562 if (ConstantFP *Op1C = dyn_cast<ConstantFP>(Op1))
    [all...]
InstCombineShifts.cpp 693 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(I.getOperand(1))) {
694 unsigned ShAmt = Op1C->getZExtValue();
699 APInt::getHighBitsSet(Op1C->getBitWidth(), ShAmt))) {
732 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
733 unsigned ShAmt = Op1C->getZExtValue();
753 MaskedValueIsZero(Op0,APInt::getLowBitsSet(Op1C->getBitWidth(),ShAmt))){
772 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
773 unsigned ShAmt = Op1C->getZExtValue();
792 if (Op1C->getZExtValue() == DestBits-SrcBits
    [all...]
InstCombineCasts.cpp 506 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(ICI->getOperand(1))) {
507 const APInt &Op1CV = Op1C->getValue();
541 // If Op1C some other power of two, convert:
542 uint32_t BitWidth = Op1C->getType()->getBitWidth();
    [all...]
InstCombineAndOrXor.cpp     [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 881 if (ConstantFP *Op1C = dyn_cast<ConstantFP>(Op1)) {
882 if (Op1C->isExactlyValue(1.0)) // pow(1.0, x) -> 1.0
883 return Op1C;
884 if (Op1C->isExactlyValue(2.0)) // pow(2.0, x) -> exp2(x)
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 887 if (const ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
888 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
891 .addImm(Op1C->getSExtValue());
    [all...]

Completed in 120 milliseconds