Searched refs:Shr (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/MC/
H A DMCExpr.h331 Shr, ///< Shift right (arithmetic or logical, depending on target) enumerator in enum:llvm::MCBinaryExpr::Opcode
411 return Create(Shr, LHS, RHS, Ctx);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp930 Instruction *InstCombiner::FoldICmpShrCst(ICmpInst &ICI, BinaryOperator *Shr, argument
945 if (ICI.isSigned() != (Shr->getOpcode() == Instruction::AShr))
951 if (Shr->getOpcode() == Instruction::AShr &&
952 (!Shr->isExact() || ShAmtVal == TypeBits - 1))
956 Worklist.Add(Shr);
959 ConstantInt::get(Shr->getType(), APInt::getOneBitSet(TypeBits, ShAmtVal));
962 Shr->getOpcode() == Instruction::AShr ?
963 Builder->CreateSDiv(Shr->getOperand(0), DivCst, "", Shr->isExact()) :
964 Builder->CreateUDiv(Shr
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/MC/
H A DMCExpr.cpp121 case MCBinaryExpr::Shr: OS << ">>"; break;
583 case MCBinaryExpr::Shr: Result = LHS >> RHS; break;
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp2198 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2201 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
H A DDAGCombiner.cpp9223 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt); local
9225 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
/macosx-10.9.5/llvmCore-3425.0.33/lib/MC/MCParser/
H A DAsmParser.cpp1023 Kind = MCBinaryExpr::Shr;

Completed in 243 milliseconds