Home | History | Annotate | Download | only in x87

Lines Matching refs:imm8

609   void mov_b(Register dst, int8_t imm8) { mov_b(Operand(dst), imm8); }
610 void mov_b(const Operand& dst, int8_t imm8);
680 void cmpb(Register reg, Immediate imm8) { cmpb(Operand(reg), imm8); }
681 void cmpb(const Operand& op, Immediate imm8);
742 void rcl(Register dst, uint8_t imm8);
743 void rcr(Register dst, uint8_t imm8);
745 void ror(Register dst, uint8_t imm8) { ror(Operand(dst), imm8); }
746 void ror(const Operand& dst, uint8_t imm8);
750 void sar(Register dst, uint8_t imm8) { sar(Operand(dst), imm8); }
751 void sar(const Operand& dst, uint8_t imm8);
757 void shl(Register dst, uint8_t imm8) { shl(Operand(dst), imm8); }
758 void shl(const Operand& dst, uint8_t imm8);
764 void shr(Register dst, uint8_t imm8) { shr(Operand(dst), imm8); }
765 void shr(const Operand& dst, uint8_t imm8);
784 void test_b(Register reg, Immediate imm8);
785 void test_b(const Operand& op, Immediate imm8);
1043 void emit_arith_b(int op1, int op2, Register dst, int imm8);