Searched refs:ShiftOp (Results 1 - 9 of 9) sorted by relevance

/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))) {
532 ConstantInt *ShiftAmt1C = cast<ConstantInt>(ShiftOp->getOperand(1));
537 Value *X = ShiftOp->getOperand(0);
542 if (I.getOpcode() == ShiftOp->getOpcode()) {
559 ShiftOp
[all...]
/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));
H A Dassembler-arm.h414 explicit Operand(Register rm, ShiftOp shift_op, int shift_imm);
417 explicit Operand(Register rm, ShiftOp shift_op, Register rs);
437 ShiftOp shift_op() const { return shift_op_; }
442 ShiftOp shift_op_;
470 ShiftOp shift_op, int shift_imm, AddrMode am = Offset);
494 ShiftOp shift_op_;
H A Ddisasm-arm.cc211 ShiftOp shift = instr->ShiftField();
H A Dassembler-arm.cc183 Operand::Operand(Register rm, ShiftOp shift_op, int shift_imm) {
199 Operand::Operand(Register rm, ShiftOp shift_op, Register rs) {
225 ShiftOp shift_op, int shift_imm, AddrMode am) {
H A Dsimulator-arm.cc1416 ShiftOp shift = instr->ShiftField();
/external/llvm/lib/Target/ARM/InstPrinter/
H A DARMInstPrinter.cpp574 unsigned ShiftOp = MI->getOperand(OpNum).getImm(); local
575 bool isASR = (ShiftOp & (1 << 5)) != 0;
576 unsigned Amt = ShiftOp & 0x1f;
/external/llvm/lib/Target/ARM/
H A DARMCodeEmitter.cpp1552 unsigned ShiftOp = MI.getOperand(3).getImm();
1553 ARM_AM::ShiftOpc Opc = ARM_AM::getSORegShOp(ShiftOp);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1767 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), local
1776 ShiftOp,
1783 ShiftOp,
1789 DAG.getConstant(1, VT), ShiftOp);

Completed in 128 milliseconds