@@ -455,31 +455,35 @@ class NativeLoadGot: public NativeInstruction {
455
455
static const bool has_rex = false ;
456
456
static const int rex_size = 0 ;
457
457
#endif
458
- public:
458
+
459
459
enum Intel_specific_constants {
460
460
rex_prefix = 0x48 ,
461
+ rex_b_prefix = 0x49 ,
461
462
instruction_code = 0x8b ,
462
463
modrm_rbx_code = 0x1d ,
463
464
modrm_rax_code = 0x05 ,
464
465
instruction_length = 6 + rex_size,
465
466
offset_offset = 2 + rex_size
466
467
};
467
468
468
- address instruction_address () const { return addr_at (0 ); }
469
- address rip_offset_address () const { return addr_at (offset_offset); }
470
469
int rip_offset () const { return int_at (offset_offset); }
471
470
address return_address () const { return addr_at (instruction_length); }
472
471
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:
473
479
address next_instruction_address () const { return return_address (); }
474
480
intptr_t data () const ;
475
481
void set_data (intptr_t data) {
476
482
intptr_t *addr = (intptr_t *) got_address ();
477
483
*addr = data;
478
484
}
479
485
480
- void verify () const ;
481
- private:
482
- void report_and_fail () const ;
486
+ DEBUG_ONLY ( void verify () const );
483
487
};
484
488
485
489
inline NativeLoadGot* nativeLoadGot_at (address addr) {
@@ -607,27 +611,37 @@ inline NativeGeneralJump* nativeGeneralJump_at(address address) {
607
611
}
608
612
609
613
class NativeGotJump : public NativeInstruction {
610
- public:
611
614
enum Intel_specific_constants {
615
+ rex_prefix = 0x41 ,
612
616
instruction_code = 0xff ,
613
- instruction_offset = 0 ,
617
+ modrm_code = 0x25 ,
614
618
instruction_size = 6 ,
615
619
rip_offset = 2
616
620
};
617
621
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:
623
634
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; }
626
637
638
+ address destination () const ;
627
639
void set_jump_destination (address dest) {
628
640
address *got_entry = (address *) got_address ();
629
641
*got_entry = dest;
630
642
}
643
+
644
+ DEBUG_ONLY ( void verify () const ; )
631
645
};
632
646
633
647
inline NativeGotJump* nativeGotJump_at (address addr) {
0 commit comments