Searched defs:shiftop (Results 1 - 2 of 2) sorted by relevance

/external/qemu/target-arm/
H A Dneon_helper.c407 uint64_t HELPER(neon_shl_u64)(uint64_t val, uint64_t shiftop) argument
409 int8_t shift = (int8_t)shiftop;
437 uint64_t HELPER(neon_shl_s64)(uint64_t valop, uint64_t shiftop) argument
439 int8_t shift = (int8_t)shiftop;
474 uint64_t HELPER(neon_rshl_s64)(uint64_t valop, uint64_t shiftop) argument
476 int8_t shift = (int8_t)shiftop;
511 uint64_t HELPER(neon_rshl_u64)(uint64_t val, uint64_t shiftop) argument
513 int8_t shift = (uint8_t)shiftop;
554 uint64_t HELPER(neon_qshl_u64)(CPUState *env, uint64_t val, uint64_t shiftop) argument
556 int8_t shift = (int8_t)shiftop;
602 neon_qshl_s64(CPUState *env, uint64_t valop, uint64_t shiftop) argument
645 neon_qrshl_u64(CPUState *env, uint64_t val, uint64_t shiftop) argument
678 neon_qrshl_s64(CPUState *env, uint64_t valop, uint64_t shiftop) argument
[all...]
H A Dtranslate.c542 static inline void gen_arm_shift_im(TCGv var, int shiftop, int shift, int flags) argument
544 switch (shiftop) {
591 static inline void gen_arm_shift_reg(TCGv var, int shiftop, argument
595 switch (shiftop) {
602 switch (shiftop) {
973 int val, rm, shift, shiftop; local
987 shiftop = (insn >> 5) & 3;
989 gen_arm_shift_im(offset, shiftop, shift, 0);
6220 int set_cc, logic_cc, shiftop; local
6243 shiftop
7154 int shiftop; local
[all...]

Completed in 63 milliseconds