mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-18 01:54:47 +02:00
8204240: Extend MDO to allow more reasons to be recorded per bci
Reviewed-by: kvn, neliasso
This commit is contained in:
parent
65a85be9c7
commit
724e41cbb6
11 changed files with 80 additions and 71 deletions
|
@ -3338,6 +3338,14 @@ void Assembler::orl(Address dst, Register src) {
|
|||
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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue