@@ -601,7 +601,6 @@ void NativeMovConstReg::set_pcrel_data(intptr_t newData, CompiledMethod *passed_
601
601
602
602
void NativeMovRegMem::verify () {
603
603
address l1 = addr_at (0 );
604
- address l2 = addr_at (MacroAssembler::load_const_size ());
605
604
606
605
if (!MacroAssembler::is_load_const (l1)) {
607
606
tty->cr ();
@@ -610,32 +609,6 @@ void NativeMovRegMem::verify() {
610
609
((NativeMovRegMem*)l1)->dump (64 , " NativeMovConstReg::verify()" );
611
610
fatal (" this is not a `NativeMovRegMem' site" );
612
611
}
613
-
614
- unsigned long inst1;
615
- Assembler::get_instruction (l2, &inst1);
616
-
617
- if (!Assembler::is_z_lb (inst1) &&
618
- !Assembler::is_z_llgh (inst1) &&
619
- !Assembler::is_z_lh (inst1) &&
620
- !Assembler::is_z_l (inst1) &&
621
- !Assembler::is_z_llgf (inst1) &&
622
- !Assembler::is_z_lg (inst1) &&
623
- !Assembler::is_z_le (inst1) &&
624
- !Assembler::is_z_ld (inst1) &&
625
- !Assembler::is_z_stc (inst1) &&
626
- !Assembler::is_z_sth (inst1) &&
627
- !Assembler::is_z_st (inst1) &&
628
- !UseCompressedOops &&
629
- !Assembler::is_z_stg (inst1) &&
630
- !Assembler::is_z_ste (inst1) &&
631
- !Assembler::is_z_std (inst1)) {
632
- tty->cr ();
633
- tty->print_cr (" NativeMovRegMem::verify(): verifying addr " PTR_FORMAT
634
- " : wrong or missing load or store at " PTR_FORMAT, p2i (l1), p2i (l2));
635
- tty->cr ();
636
- ((NativeMovRegMem*)l1)->dump (64 , " NativeMovConstReg::verify()" );
637
- fatal (" this is not a `NativeMovRegMem' site" );
638
- }
639
612
}
640
613
#endif // COMPILER1
641
614
0 commit comments