Searched refs:shift_op (Results 1 – 10 of 10) sorted by relevance
/external/v8/src/compiler/ |
D | js-typed-lowering.h | 92 const Operator* shift_op);
|
D | js-typed-lowering.cc | 534 const Operator* shift_op) { in ReduceUI32Shift() argument 541 return r.ChangeToPureOperator(shift_op); in ReduceUI32Shift() 548 return r.ChangeToPureOperator(shift_op); in ReduceUI32Shift()
|
/external/v8/src/arm/ |
D | assembler-arm.cc | 277 Operand::Operand(Register rm, ShiftOp shift_op, int shift_imm) { in Operand() argument 282 shift_op_ = shift_op; in Operand() 285 if ((shift_op == ROR) && (shift_imm == 0)) { in Operand() 288 shift_op = LSL; in Operand() 289 } else if (shift_op == RRX) { in Operand() 298 Operand::Operand(Register rm, ShiftOp shift_op, Register rs) { in Operand() argument 299 DCHECK(shift_op != RRX); in Operand() 302 shift_op_ = shift_op; in Operand() 332 ShiftOp shift_op, int shift_imm, AddrMode am) { in MemOperand() argument 336 shift_op_ = shift_op; in MemOperand() [all …]
|
D | assembler-arm.h | 464 explicit Operand(Register rm, ShiftOp shift_op, int shift_imm); 478 explicit Operand(Register rm, ShiftOp shift_op, Register rs); 504 ShiftOp shift_op() const { return shift_op_; } in shift_op() function 537 ShiftOp shift_op, int shift_imm, AddrMode am = Offset);
|
D | macro-assembler-arm.cc | 363 DCHECK((src.shift_op() == ASR) || (src.shift_op() == LSL)); in Usat()
|
/external/v8/src/crankshaft/arm64/ |
D | lithium-arm64.cc | 2156 Shift shift_op; in DoShiftedBinaryOp() local 2158 case HValue::kShl: shift_op = LSL; break; in DoShiftedBinaryOp() 2159 case HValue::kShr: shift_op = LSR; break; in DoShiftedBinaryOp() 2160 case HValue::kSar: shift_op = ASR; break; in DoShiftedBinaryOp() 2161 default: UNREACHABLE(); shift_op = NO_SHIFT; in DoShiftedBinaryOp() 2165 res = new(zone()) LBitI(left, right, shift_op, shift_amount); in DoShiftedBinaryOp() 2167 res = new(zone()) LAddI(left, right, shift_op, shift_amount); in DoShiftedBinaryOp() 2170 res = new(zone()) LSubI(left, right, shift_op, shift_amount); in DoShiftedBinaryOp()
|
/external/opencv3/modules/hal/include/opencv2/hal/ |
D | intrin_cpp.hpp | 336 #define OPENCV_HAL_IMPL_SHIFT_OP(shift_op) \ argument 337 template<typename _Tp, int n> inline v_reg<_Tp, n> operator shift_op(const v_reg<_Tp, n>& a, int im… 341 c.s[i] = (_Tp)(a.s[i] shift_op imm); \
|
/external/v8/src/arm64/ |
D | simulator-arm64.cc | 2008 Shift shift_op = NO_SHIFT; in DataProcessing2Source() local 2039 case LSLV_x: shift_op = LSL; break; in DataProcessing2Source() 2041 case LSRV_x: shift_op = LSR; break; in DataProcessing2Source() 2043 case ASRV_x: shift_op = ASR; break; in DataProcessing2Source() 2045 case RORV_x: shift_op = ROR; break; in DataProcessing2Source() 2049 if (shift_op != NO_SHIFT) { in DataProcessing2Source() 2058 result = ShiftOperand(reg<T>(instr->Rn()), shift_op, shift); in DataProcessing2Source()
|
/external/vixl/src/vixl/a64/ |
D | simulator-a64.cc | 1647 Shift shift_op = NO_SHIFT; in VisitDataProcessing2Source() local 1701 case LSLV_x: shift_op = LSL; break; in VisitDataProcessing2Source() 1703 case LSRV_x: shift_op = LSR; break; in VisitDataProcessing2Source() 1705 case ASRV_x: shift_op = ASR; break; in VisitDataProcessing2Source() 1707 case RORV_x: shift_op = ROR; break; in VisitDataProcessing2Source() 1761 if (shift_op != NO_SHIFT) { in VisitDataProcessing2Source() 1766 result = ShiftOperand(reg_size, reg(reg_size, instr->Rn()), shift_op, in VisitDataProcessing2Source()
|
/external/valgrind/VEX/priv/ |
D | guest_arm_toIR.c | 3209 IROp shift_op, add_op; in dis_neon_data_3same() local 3223 shift_op = U ? Iop_ShrN8x16 : Iop_SarN8x16; in dis_neon_data_3same() 3227 shift_op = U ? Iop_ShrN16x8 : Iop_SarN16x8; in dis_neon_data_3same() 3231 shift_op = U ? Iop_ShrN32x4 : Iop_SarN32x4; in dis_neon_data_3same() 3242 shift_op = U ? Iop_ShrN8x8 : Iop_SarN8x8; in dis_neon_data_3same() 3246 shift_op = U ? Iop_ShrN16x4 : Iop_SarN16x4; in dis_neon_data_3same() 3250 shift_op = U ? Iop_ShrN32x2 : Iop_SarN32x2; in dis_neon_data_3same() 3261 assign(cc, binop(shift_op, in dis_neon_data_3same() 3280 binop(shift_op, in dis_neon_data_3same() 3283 binop(shift_op, in dis_neon_data_3same() [all …]
|