--- old/src/hotspot/cpu/x86/assembler_x86.cpp 2018-05-16 09:39:13.219445782 +0200 +++ new/src/hotspot/cpu/x86/assembler_x86.cpp 2018-05-16 09:39:01.959478461 +0200 @@ -3338,6 +3338,14 @@ emit_operand(src, dst); } +void Assembler::orb(Address dst, int imm8) { + InstructionMark im(this); + prefix(dst); + emit_int8((unsigned char)0x80); + emit_operand(rcx, dst, 1); + emit_int8(imm8); +} + void Assembler::packuswb(XMMRegister dst, Address src) { NOT_LP64(assert(VM_Version::supports_sse2(), "")); assert((UseAVX > 0), "SSE mode requires address alignment 16 bytes");