Searched defs:ShiftOp (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp535 BinaryOperator *ShiftOp = dyn_cast<BinaryOperator>(Op0); local
536 if (ShiftOp && !ShiftOp->isShift())
537 ShiftOp = nullptr;
539 if (ShiftOp && isa<ConstantInt>(ShiftOp->getOperand(1))) {
553 ConstantInt *ShiftAmt1C = cast<ConstantInt>(ShiftOp->getOperand(1));
558 Value *X = ShiftOp->getOperand(0);
563 if (I.getOpcode() == ShiftOp->getOpcode()) {
580 ShiftOp
[all...]
/external/chromium_org/v8/src/arm/
H A Dconstants-arm.h228 enum ShiftOp { enum in namespace:v8::internal
235 // Use a special code to make the distinction. The RRX ShiftOp is only used
558 inline int ShiftValue() const { return static_cast<ShiftOp>(Bits(6, 5)); }
559 inline ShiftOp ShiftField() const {
560 return static_cast<ShiftOp>(BitField(6, 5));
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp2106 SDValue ShiftOp = N->getOperand(1); local
2111 if (ShiftOp.getValueType() != ShiftTy)
2112 ShiftOp = DAG.getZExtOrTrunc(ShiftOp, dl, ShiftTy);
2114 SDValue Ops[] = { LHSL, LHSH, ShiftOp };

Completed in 384 milliseconds