@@ -555,7 +555,6 @@ void MacroAssembler::emit_static_call_stub() {
555
555
// CompiledDirectStaticCall::set_to_interpreted knows the
556
556
// exact layout of this stub.
557
557
558
- ifence ();
559
558
mov_metadata (xmethod, (Metadata*)NULL );
560
559
561
560
// Jump to the entry point of the i2c stub.
@@ -1668,7 +1667,6 @@ void MacroAssembler::movoop(Register dst, jobject obj, bool immediate) {
1668
1667
1669
1668
// nmethod entry barrier necessitate using the constant pool. They have to be
1670
1669
// ordered with respected to oop access.
1671
- // Using immediate literals would necessitate fence.i.
1672
1670
if (BarrierSet::barrier_set ()->barrier_set_nmethod () != NULL || !immediate) {
1673
1671
address dummy = address (uintptr_t (pc ()) & -wordSize); // A nearby aligned address
1674
1672
ld_constant (dst, Address (dummy, rspec));
@@ -2746,7 +2744,6 @@ void MacroAssembler::build_frame(int framesize) {
2746
2744
sd (fp, Address (sp, framesize - 2 * wordSize));
2747
2745
sd (ra, Address (sp, framesize - wordSize));
2748
2746
if (PreserveFramePointer) { add (fp, sp, framesize); }
2749
- verify_cross_modify_fence_not_required ();
2750
2747
}
2751
2748
2752
2749
void MacroAssembler::remove_frame (int framesize) {
@@ -2797,7 +2794,6 @@ address MacroAssembler::read_polling_page(Register r, int32_t offset, relocInfo:
2797
2794
lwu (zr, Address (r, offset));
2798
2795
mark = inst_mark ();
2799
2796
}
2800
- verify_cross_modify_fence_not_required ();
2801
2797
return mark;
2802
2798
}
2803
2799
@@ -3981,29 +3977,3 @@ void MacroAssembler::cmp_l2i(Register dst, Register src1, Register src2, Registe
3981
3977
neg (dst, dst);
3982
3978
bind (done);
3983
3979
}
3984
-
3985
- void MacroAssembler::safepoint_ifence () {
3986
- ifence ();
3987
- #ifndef PRODUCT
3988
- if (VerifyCrossModifyFence) {
3989
- // Clear the thread state.
3990
- sb (zr, Address (xthread, in_bytes (JavaThread::requires_cross_modify_fence_offset ())));
3991
- }
3992
- #endif
3993
- }
3994
-
3995
- #ifndef PRODUCT
3996
- void MacroAssembler::verify_cross_modify_fence_not_required () {
3997
- if (VerifyCrossModifyFence) {
3998
- // Check if thread needs a cross modify fence.
3999
- lbu (t0, Address (xthread, in_bytes (JavaThread::requires_cross_modify_fence_offset ())));
4000
- Label fence_not_required;
4001
- beqz (t0, fence_not_required);
4002
- // If it does then fail.
4003
- la (t0, RuntimeAddress (CAST_FROM_FN_PTR (address, JavaThread::verify_cross_modify_fence_failure)));
4004
- mv (c_rarg0, xthread);
4005
- jalr (t0);
4006
- bind (fence_not_required);
4007
- }
4008
- }
4009
- #endif
0 commit comments