Home | History | Annotate | Download | only in ia32

Lines Matching refs:imm8

611   void mov_b(Register dst, int8_t imm8) { mov_b(Operand(dst), imm8); }
687 void cmpb(Register reg, Immediate imm8) { cmpb(Operand(reg), imm8); }
688 void cmpb(const Operand& op, Immediate imm8);
749 void rcl(Register dst, uint8_t imm8);
750 void rcr(Register dst, uint8_t imm8);
752 void ror(Register dst, uint8_t imm8) { ror(Operand(dst), imm8); }
753 void ror(const Operand& dst, uint8_t imm8);
757 void sar(Register dst, uint8_t imm8) { sar(Operand(dst), imm8); }
758 void sar(const Operand& dst, uint8_t imm8);
764 void shl(Register dst, uint8_t imm8) { shl(Operand(dst), imm8); }
765 void shl(const Operand& dst, uint8_t imm8);
771 void shr(Register dst, uint8_t imm8) { shr(Operand(dst), imm8); }
772 void shr(const Operand& dst, uint8_t imm8);
791 void test_b(Register reg, Immediate imm8);
792 void test_b(const Operand& op, Immediate imm8);
965 void shufps(XMMRegister dst, XMMRegister src, byte imm8);
1070 void extractps(Register dst, XMMRegister src, byte imm8);
1397 void rorx(Register dst, Register src, byte imm8) {
1398 rorx(dst, Operand(src), imm8);
1400 void rorx(Register dst, const Operand& src, byte imm8);
1525 void emit_arith_b(int op1, int op2, Register dst, int imm8);