@@ -1405,12 +1405,6 @@ void Assembler::addb(Register dst, int imm8) {
14051405 emit_arith_b(0x80, 0xC0, dst, imm8);
14061406}
14071407
1408- void Assembler::addw(Register dst, Register src) {
1409- emit_int8(0x66);
1410- (void)prefix_and_encode(dst->encoding(), src->encoding());
1411- emit_arith(0x03, 0xC0, dst, src);
1412- }
1413-
14141408void Assembler::addw(Address dst, int imm16) {
14151409 InstructionMark im(this);
14161410 emit_int8(0x66);
@@ -1632,11 +1626,6 @@ void Assembler::andb(Address dst, Register src) {
16321626 emit_operand(src, dst, 0);
16331627}
16341628
1635- void Assembler::andw(Register dst, Register src) {
1636- (void)prefix_and_encode(dst->encoding(), src->encoding());
1637- emit_arith(0x23, 0xC0, dst, src);
1638- }
1639-
16401629void Assembler::andl(Address dst, int32_t imm32) {
16411630 InstructionMark im(this);
16421631 prefix(dst);
@@ -4230,11 +4219,6 @@ void Assembler::notl(Register dst) {
42304219 emit_int16((unsigned char)0xF7, (0xD0 | encode));
42314220}
42324221
4233- void Assembler::orw(Register dst, Register src) {
4234- (void)prefix_and_encode(dst->encoding(), src->encoding());
4235- emit_arith(0x0B, 0xC0, dst, src);
4236- }
4237-
42384222void Assembler::orl(Address dst, int32_t imm32) {
42394223 InstructionMark im(this);
42404224 prefix(dst);
@@ -6803,11 +6787,6 @@ void Assembler::xorb(Address dst, Register src) {
68036787 emit_operand(src, dst, 0);
68046788}
68056789
6806- void Assembler::xorw(Register dst, Register src) {
6807- (void)prefix_and_encode(dst->encoding(), src->encoding());
6808- emit_arith(0x33, 0xC0, dst, src);
6809- }
6810-
68116790void Assembler::xorw(Register dst, Address src) {
68126791 InstructionMark im(this);
68136792 emit_int8(0x66);
0 commit comments