HomeSort by relevance Sort by last modified time
    Searched defs:ShiftOp (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 542 BinaryOperator *ShiftOp = dyn_cast<BinaryOperator>(Op0);
543 if (ShiftOp && !ShiftOp->isShift())
544 ShiftOp = nullptr;
546 if (ShiftOp && isa<ConstantInt>(ShiftOp->getOperand(1))) {
560 ConstantInt *ShiftAmt1C = cast<ConstantInt>(ShiftOp->getOperand(1));
565 Value *X = ShiftOp->getOperand(0);
570 if (I.getOpcode() == ShiftOp->getOpcode()) {
587 ShiftOp->getOpcode() == Instruction::Shl)
    [all...]
  /external/v8/src/arm/
constants-arm.h 240 enum ShiftOp {
247 // Use a special code to make the distinction. The RRX ShiftOp is only used
570 inline int ShiftValue() const { return static_cast<ShiftOp>(Bits(6, 5)); }
571 inline ShiftOp ShiftField() const {
572 return static_cast<ShiftOp>(BitField(6, 5));
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp     [all...]

Completed in 352 milliseconds