8342715: x86 unused orw instruction encoding could be removed
Reviewed-by: sviswanathan, jbhateja, kvn
This commit is contained in:
parent
5a4b180965
commit
8276a41958
@ -4439,11 +4439,6 @@ void Assembler::enotl(Register dst, Register src) {
|
||||
emit_int16((unsigned char)0xF7, (0xD0 | encode));
|
||||
}
|
||||
|
||||
void Assembler::orw(Register dst, Register src) {
|
||||
(void)prefix_and_encode(dst->encoding(), src->encoding());
|
||||
emit_arith(0x0B, 0xC0, dst, src);
|
||||
}
|
||||
|
||||
void Assembler::eorw(Register dst, Register src1, Register src2, bool no_flags) {
|
||||
InstructionAttr attributes(AVX_128bit, /* vex_w */ false, /* legacy_mode */ false, /* no_mask_reg */ true, /* uses_vl */ false);
|
||||
(void) evex_prefix_and_encode_ndd(src1->encoding(), dst->encoding(), src2->encoding(), VEX_SIMD_NONE, VEX_OPCODE_0F_3C, &attributes, no_flags);
|
||||
|
@ -1901,7 +1901,6 @@ private:
|
||||
#endif
|
||||
void btq(Register dst, Register src);
|
||||
|
||||
void orw(Register dst, Register src);
|
||||
void eorw(Register dst, Register src1, Register src2, bool no_flags);
|
||||
|
||||
void orl(Address dst, int32_t imm32);
|
||||
|
Loading…
Reference in New Issue
Block a user