Searched defs:ShiftOp (Results 1 - 4 of 4) sorted by last modified time

/external/v8/src/arm/
H A Dconstants-arm.h286 enum ShiftOp { enum in namespace:v8::internal
293 // Use a special code to make the distinction. The RRX ShiftOp is only used
643 inline int ShiftValue() const { return static_cast<ShiftOp>(Bits(6, 5)); }
644 inline ShiftOp ShiftField() const {
645 return static_cast<ShiftOp>(BitField(6, 5));
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1775 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), local
1784 ShiftOp,
1791 ShiftOp,
1797 DAG.getConstant(1, VT), ShiftOp);
/external/llvm/lib/Target/ARM/InstPrinter/
H A DARMInstPrinter.cpp599 unsigned ShiftOp = MI->getOperand(OpNum).getImm(); local
600 bool isASR = (ShiftOp & (1 << 5)) != 0;
601 unsigned Amt = ShiftOp & 0x1f;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp527 BinaryOperator *ShiftOp = dyn_cast<BinaryOperator>(Op0); local
528 if (ShiftOp && !ShiftOp->isShift())
529 ShiftOp = 0;
531 if (ShiftOp && isa<ConstantInt>(ShiftOp->getOperand(1))) {
545 ConstantInt *ShiftAmt1C = cast<ConstantInt>(ShiftOp->getOperand(1));
550 Value *X = ShiftOp->getOperand(0);
555 if (I.getOpcode() == ShiftOp->getOpcode()) {
572 ShiftOp
[all...]

Completed in 163 milliseconds