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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 524 BinaryOperator *ShiftOp = dyn_cast<BinaryOperator>(Op0);
525 if (ShiftOp && !ShiftOp->isShift())
526 ShiftOp = 0;
528 if (ShiftOp && isa<ConstantInt>(ShiftOp->getOperand(1))) {
542 ConstantInt *ShiftAmt1C = cast<ConstantInt>(ShiftOp->getOperand(1));
547 Value *X = ShiftOp->getOperand(0);
552 if (I.getOpcode() == ShiftOp->getOpcode()) {
569 ShiftOp->getOpcode() == Instruction::Shl)
    [all...]
  /external/llvm/lib/Target/ARM/InstPrinter/
ARMInstPrinter.cpp 676 unsigned ShiftOp = MI->getOperand(OpNum).getImm();
677 bool isASR = (ShiftOp & (1 << 5)) != 0;
678 unsigned Amt = ShiftOp & 0x1f;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/v8/src/arm/
constants-arm.h 286 enum ShiftOp {
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));

Completed in 481 milliseconds