Skip to content

Commit 61bb6ec

Browse files
committedMay 5, 2021
8266453: Shenandoah: Disable write protections before patching nmethod in nmethod_barrier on MacOSX/AArch64
Reviewed-by: rkennke
1 parent a05e8e2 commit 61bb6ec

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/hotspot/share/gc/shenandoah/shenandoahBarrierSetNMethod.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
2+
* Copyright (c) 2019, 2021, Red Hat, Inc. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -33,6 +33,7 @@
3333
#include "gc/shenandoah/shenandoahThreadLocalData.hpp"
3434
#include "memory/iterator.hpp"
3535
#include "memory/resourceArea.hpp"
36+
#include "runtime/threadWXSetters.inline.hpp"
3637

3738
bool ShenandoahBarrierSetNMethod::nmethod_entry_barrier(nmethod* nm) {
3839
ShenandoahReentrantLock* lock = ShenandoahNMethod::lock_for_nmethod(nm);
@@ -45,6 +46,8 @@ bool ShenandoahBarrierSetNMethod::nmethod_entry_barrier(nmethod* nm) {
4546
return true;
4647
}
4748

49+
MACOS_AARCH64_ONLY(ThreadWXEnable wx(WXWrite, Thread::current());)
50+
4851
if (nm->is_unloading()) {
4952
// We don't need to take the lock when unlinking nmethods from
5053
// the Method, because it is only concurrently unlinked by

0 commit comments

Comments
 (0)
Please sign in to comment.