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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 527 BinaryOperator *ShiftOp = dyn_cast<BinaryOperator>(Op0);
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->getOpcode() == Instruction::Shl)
    [all...]
  /external/llvm/lib/Target/ARM/InstPrinter/
ARMInstPrinter.cpp 599 unsigned ShiftOp = MI->getOperand(OpNum).getImm();
600 bool isASR = (ShiftOp & (1 << 5)) != 0;
601 unsigned Amt = ShiftOp & 0x1f;
    [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));
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 158 milliseconds