Home
last modified time | relevance | path

Searched refs:shift_type (Results 1 – 10 of 10) sorted by relevance

/external/gemmlowp/meta/generators/
Dneon_emitter.py323 def EmitVShl(self, shift_type, destination, source, shift): argument
324 self.EmitOp3('vshl.%s' % shift_type, destination, source, shift)
/external/v8/src/arm64/
Dsimulator-arm64.cc913 T Simulator::ShiftOperand(T value, Shift shift_type, unsigned amount) { in ShiftOperand() argument
920 switch (shift_type) { in ShiftOperand()
1417 Shift shift_type = static_cast<Shift>(instr->ShiftDP()); in VisitAddSubShifted() local
1421 int64_t op2 = ShiftOperand(xreg(instr->Rm()), shift_type, shift_amount); in VisitAddSubShifted()
1425 ShiftOperand(wreg(instr->Rm()), shift_type, shift_amount)); in VisitAddSubShifted()
1464 Shift shift_type = static_cast<Shift>(instr->ShiftDP()); in VisitLogicalShifted() local
1468 int64_t op2 = ShiftOperand(xreg(instr->Rm()), shift_type, shift_amount); in VisitLogicalShifted()
1472 int32_t op2 = ShiftOperand(wreg(instr->Rm()), shift_type, shift_amount); in VisitLogicalShifted()
Ddisasm-arm64.cc1522 const char* shift_type[] = {"lsl", "lsr", "asr", "ror"}; in SubstituteShiftField() local
1523 AppendToOutput(", %s #%" PRId32, shift_type[instr->ShiftDP()], in SubstituteShiftField()
Dsimulator-arm64.h697 Shift shift_type,
/external/vixl/src/vixl/a64/
Dsimulator-a64.cc317 Shift shift_type, in ShiftOperand() argument
323 switch (shift_type) { in ShiftOperand()
966 Shift shift_type = static_cast<Shift>(instr->ShiftDP()); in VisitLogicalShifted() local
968 int64_t op2 = ShiftOperand(reg_size, reg(reg_size, instr->Rm()), shift_type, in VisitLogicalShifted()
Dsimulator-a64.h1315 Shift shift_type,
1319 Shift shift_type,
Ddisasm-a64.cc3247 const char* shift_type[] = {"lsl", "lsr", "asr", "ror"}; in SubstituteShiftField() local
3248 AppendToOutput(", %s #%" PRId32, shift_type[instr->ShiftDP()], in SubstituteShiftField()
/external/valgrind/VEX/priv/
Dguest_arm_toIR.c9066 UInt regD = 99, regN = 99, regM = 99, imm5 = 99, shift_type = 99; in decode_V6MEDIA_instruction() local
9077 shift_type = (INSNT1(5,5) << 1) | 0; in decode_V6MEDIA_instruction()
9090 shift_type = (INSNA(6,6) << 1) | 0; in decode_V6MEDIA_instruction()
9102 dis_buf, &irt_regM_shift, NULL, irt_regM, shift_type, imm5, regM ); in decode_V6MEDIA_instruction()
9126 UInt regD = 99, regN = 99, shift_type = 99, imm5 = 99, sat_imm = 99; in decode_V6MEDIA_instruction() local
9135 shift_type = (INSNT0(5,5) << 1) | 0; in decode_V6MEDIA_instruction()
9140 if (shift_type == BITS2(1,0) && imm5 == 0) in decode_V6MEDIA_instruction()
9148 shift_type = (INSNA(6,6) << 1) | 0; in decode_V6MEDIA_instruction()
9165 irt_regN, shift_type, imm5, regN ); in decode_V6MEDIA_instruction()
9184 UInt regD = 99, regN = 99, shift_type = 99, imm5 = 99, sat_imm = 99; in decode_V6MEDIA_instruction() local
[all …]
/external/v8/src/arm/
Dsimulator-arm.cc2672 int32_t shift_type = instr->Bit(6); in DecodeType3() local
2674 if (shift_type == 0) { // LSL in DecodeType3()
/external/llvm/lib/Target/AArch64/
DAArch64InstrFormats.td1399 class BaseShift<bits<2> shift_type, RegisterClass regtype, string asm,
1403 let Inst{11-10} = shift_type;
1406 multiclass Shift<bits<2> shift_type, string asm, SDNode OpNode> {
1407 def Wr : BaseShift<shift_type, GPR32, asm> {
1411 def Xr : BaseShift<shift_type, GPR64, asm, OpNode> {