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 535 BinaryOperator *ShiftOp = dyn_cast<BinaryOperator>(Op0);
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->getOpcode() == Instruction::Shl)
    [all...]
  /external/chromium_org/v8/src/arm/
constants-arm.h 228 enum ShiftOp {
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/
LegalizeIntegerTypes.cpp     [all...]

Completed in 351 milliseconds