HomeSort by relevance Sort by last modified time
    Searched full:shiftop (Results 1 - 7 of 7) sorted by null

  /external/qemu/target-arm/
neon_helper.c 407 uint64_t HELPER(neon_shl_u64)(uint64_t val, uint64_t shiftop)
409 int8_t shift = (int8_t)shiftop;
437 uint64_t HELPER(neon_shl_s64)(uint64_t valop, uint64_t shiftop)
439 int8_t shift = (int8_t)shiftop;
474 uint64_t HELPER(neon_rshl_s64)(uint64_t valop, uint64_t shiftop)
476 int8_t shift = (int8_t)shiftop;
511 uint64_t HELPER(neon_rshl_u64)(uint64_t val, uint64_t shiftop)
513 int8_t shift = (uint8_t)shiftop;
554 uint64_t HELPER(neon_qshl_u64)(CPUState *env, uint64_t val, uint64_t shiftop)
556 int8_t shift = (int8_t)shiftop;
    [all...]
translate.c 542 static inline void gen_arm_shift_im(TCGv var, int shiftop, int shift, int flags)
544 switch (shiftop) {
591 static inline void gen_arm_shift_reg(TCGv var, int shiftop,
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
7154 int shiftop; local
    [all...]
  /external/v8/src/arm/
assembler-arm.h 318 enum ShiftOp {
408 explicit Operand(Register rm, ShiftOp shift_op, int shift_imm);
411 explicit Operand(Register rm, ShiftOp shift_op, Register rs);
421 ShiftOp shift_op_;
449 ShiftOp shift_op, int shift_imm, AddrMode am = Offset);
455 ShiftOp shift_op_;
    [all...]
assembler-thumb2.h 318 enum ShiftOp {
408 explicit Operand(Register rm, ShiftOp shift_op, int shift_imm);
411 explicit Operand(Register rm, ShiftOp shift_op, Register rs);
421 ShiftOp shift_op_;
449 ShiftOp shift_op, int shift_imm, AddrMode am = Offset);
455 ShiftOp shift_op_;
    [all...]
assembler-arm.cc 244 Operand::Operand(Register rm, ShiftOp shift_op, int shift_imm) {
260 Operand::Operand(Register rm, ShiftOp shift_op, Register rs) {
286 ShiftOp shift_op, int shift_imm, AddrMode am) {
    [all...]
assembler-thumb2.cc 224 Operand::Operand(Register rm, ShiftOp shift_op, int shift_imm) {
240 Operand::Operand(Register rm, ShiftOp shift_op, Register rs) {
266 ShiftOp shift_op, int shift_imm, AddrMode am) {
    [all...]
  /dalvik/vm/compiler/codegen/arm/
CodegenDriver.c 728 bool shiftOp = false;
780 shiftOp = true;
785 shiftOp = true;
790 shiftOp = true;
806 if (shiftOp) {
    [all...]

Completed in 54 milliseconds