Lines Matching refs:imm8
604 void mov_b(Register dst, int8_t imm8) { mov_b(Operand(dst), imm8); } in mov_b() argument
605 void mov_b(const Operand& dst, int8_t imm8);
675 void cmpb(Register reg, Immediate imm8) { cmpb(Operand(reg), imm8); } in cmpb() argument
676 void cmpb(const Operand& op, Immediate imm8);
737 void rcl(Register dst, uint8_t imm8);
738 void rcr(Register dst, uint8_t imm8);
740 void ror(Register dst, uint8_t imm8) { ror(Operand(dst), imm8); } in ror() argument
741 void ror(const Operand& dst, uint8_t imm8);
745 void sar(Register dst, uint8_t imm8) { sar(Operand(dst), imm8); } in sar() argument
746 void sar(const Operand& dst, uint8_t imm8);
752 void shl(Register dst, uint8_t imm8) { shl(Operand(dst), imm8); } in shl() argument
753 void shl(const Operand& dst, uint8_t imm8);
759 void shr(Register dst, uint8_t imm8) { shr(Operand(dst), imm8); } in shr() argument
760 void shr(const Operand& dst, uint8_t imm8);
779 void test_b(Register reg, Immediate imm8);
780 void test_b(const Operand& op, Immediate imm8);
1035 void emit_arith_b(int op1, int op2, Register dst, int imm8);