Skip to content

Commit 23458bf

Browse files
author
Igor Veresov
committedFeb 20, 2020
8238355: Update Graal
Reviewed-by: kvn
1 parent 2d93a28 commit 23458bf

File tree

375 files changed

+8538
-3576
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

375 files changed

+8538
-3576
lines changed
 

‎src/hotspot/cpu/x86/nativeInst_x86.cpp

+25-6
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,17 @@ void NativeInstruction::wrote(int offset) {
4040
ICache::invalidate_word(addr_at(offset));
4141
}
4242

43+
#ifdef ASSERT
4344
void NativeLoadGot::report_and_fail() const {
44-
tty->print_cr("Addr: " INTPTR_FORMAT, p2i(instruction_address()));
45+
tty->print_cr("Addr: " INTPTR_FORMAT " Code: %x %x %x", p2i(instruction_address()),
46+
(has_rex ? ubyte_at(0) : 0), ubyte_at(rex_size), ubyte_at(rex_size + 1));
4547
fatal("not a indirect rip mov to rbx");
4648
}
4749

4850
void NativeLoadGot::verify() const {
4951
if (has_rex) {
5052
int rex = ubyte_at(0);
51-
if (rex != rex_prefix) {
53+
if (rex != rex_prefix && rex != rex_b_prefix) {
5254
report_and_fail();
5355
}
5456
}
@@ -62,6 +64,7 @@ void NativeLoadGot::verify() const {
6264
report_and_fail();
6365
}
6466
}
67+
#endif
6568

6669
intptr_t NativeLoadGot::data() const {
6770
return *(intptr_t *) got_address();
@@ -149,14 +152,30 @@ address NativeGotJump::destination() const {
149152
return *got_entry;
150153
}
151154

155+
#ifdef ASSERT
156+
void NativeGotJump::report_and_fail() const {
157+
tty->print_cr("Addr: " INTPTR_FORMAT " Code: %x %x %x", p2i(instruction_address()),
158+
(has_rex() ? ubyte_at(0) : 0), ubyte_at(rex_size()), ubyte_at(rex_size() + 1));
159+
fatal("not a indirect rip jump");
160+
}
161+
152162
void NativeGotJump::verify() const {
153-
int inst = ubyte_at(0);
163+
if (has_rex()) {
164+
int rex = ubyte_at(0);
165+
if (rex != rex_prefix) {
166+
report_and_fail();
167+
}
168+
}
169+
int inst = ubyte_at(rex_size());
154170
if (inst != instruction_code) {
155-
tty->print_cr("Addr: " INTPTR_FORMAT " Code: 0x%x", p2i(instruction_address()),
156-
inst);
157-
fatal("not a indirect rip jump");
171+
report_and_fail();
172+
}
173+
int modrm = ubyte_at(rex_size() + 1);
174+
if (modrm != modrm_code) {
175+
report_and_fail();
158176
}
159177
}
178+
#endif
160179

161180
void NativeCall::verify() {
162181
// Make sure code pattern is actually a call imm32 instruction.

‎src/hotspot/cpu/x86/nativeInst_x86.hpp

+29-15
Original file line numberDiff line numberDiff line change
@@ -455,31 +455,35 @@ class NativeLoadGot: public NativeInstruction {
455455
static const bool has_rex = false;
456456
static const int rex_size = 0;
457457
#endif
458-
public:
458+
459459
enum Intel_specific_constants {
460460
rex_prefix = 0x48,
461+
rex_b_prefix = 0x49,
461462
instruction_code = 0x8b,
462463
modrm_rbx_code = 0x1d,
463464
modrm_rax_code = 0x05,
464465
instruction_length = 6 + rex_size,
465466
offset_offset = 2 + rex_size
466467
};
467468

468-
address instruction_address() const { return addr_at(0); }
469-
address rip_offset_address() const { return addr_at(offset_offset); }
470469
int rip_offset() const { return int_at(offset_offset); }
471470
address return_address() const { return addr_at(instruction_length); }
472471
address got_address() const { return return_address() + rip_offset(); }
472+
473+
#ifdef ASSERT
474+
void report_and_fail() const;
475+
address instruction_address() const { return addr_at(0); }
476+
#endif
477+
478+
public:
473479
address next_instruction_address() const { return return_address(); }
474480
intptr_t data() const;
475481
void set_data(intptr_t data) {
476482
intptr_t *addr = (intptr_t *) got_address();
477483
*addr = data;
478484
}
479485

480-
void verify() const;
481-
private:
482-
void report_and_fail() const;
486+
DEBUG_ONLY( void verify() const );
483487
};
484488

485489
inline NativeLoadGot* nativeLoadGot_at(address addr) {
@@ -607,27 +611,37 @@ inline NativeGeneralJump* nativeGeneralJump_at(address address) {
607611
}
608612

609613
class NativeGotJump: public NativeInstruction {
610-
public:
611614
enum Intel_specific_constants {
615+
rex_prefix = 0x41,
612616
instruction_code = 0xff,
613-
instruction_offset = 0,
617+
modrm_code = 0x25,
614618
instruction_size = 6,
615619
rip_offset = 2
616620
};
617621

618-
void verify() const;
619-
address instruction_address() const { return addr_at(instruction_offset); }
620-
address destination() const;
621-
address return_address() const { return addr_at(instruction_size); }
622-
int got_offset() const { return (jint) int_at(rip_offset); }
622+
bool has_rex() const { return ubyte_at(0) == rex_prefix; }
623+
int rex_size() const { return has_rex() ? 1 : 0; }
624+
625+
address return_address() const { return addr_at(instruction_size + rex_size()); }
626+
int got_offset() const { return (jint) int_at(rip_offset + rex_size()); }
627+
628+
#ifdef ASSERT
629+
void report_and_fail() const;
630+
address instruction_address() const { return addr_at(0); }
631+
#endif
632+
633+
public:
623634
address got_address() const { return return_address() + got_offset(); }
624-
address next_instruction_address() const { return addr_at(instruction_size); }
625-
bool is_GotJump() const { return ubyte_at(0) == instruction_code; }
635+
address next_instruction_address() const { return return_address(); }
636+
bool is_GotJump() const { return ubyte_at(rex_size()) == instruction_code; }
626637

638+
address destination() const;
627639
void set_jump_destination(address dest) {
628640
address *got_entry = (address *) got_address();
629641
*got_entry = dest;
630642
}
643+
644+
DEBUG_ONLY( void verify() const; )
631645
};
632646

633647
inline NativeGotJump* nativeGotJump_at(address addr) {

0 commit comments

Comments
 (0)
Please sign in to comment.