mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-18 01:54:47 +02:00
Merge
This commit is contained in:
commit
e051932425
57 changed files with 389 additions and 378 deletions
|
@ -2649,20 +2649,6 @@ void JavaThread::deoptimized_wrt_marked_nmethods() {
|
|||
}
|
||||
|
||||
|
||||
// GC support
|
||||
static void frame_gc_epilogue(frame* f, const RegisterMap* map) { f->gc_epilogue(); }
|
||||
|
||||
void JavaThread::gc_epilogue() {
|
||||
frames_do(frame_gc_epilogue);
|
||||
}
|
||||
|
||||
|
||||
static void frame_gc_prologue(frame* f, const RegisterMap* map) { f->gc_prologue(); }
|
||||
|
||||
void JavaThread::gc_prologue() {
|
||||
frames_do(frame_gc_prologue);
|
||||
}
|
||||
|
||||
// If the caller is a NamedThread, then remember, in the current scope,
|
||||
// the given JavaThread in its _processed_thread field.
|
||||
class RememberProcessedThread: public StackObj {
|
||||
|
@ -4151,18 +4137,6 @@ void Threads::metadata_do(void f(Metadata*)) {
|
|||
}
|
||||
}
|
||||
|
||||
void Threads::gc_epilogue() {
|
||||
ALL_JAVA_THREADS(p) {
|
||||
p->gc_epilogue();
|
||||
}
|
||||
}
|
||||
|
||||
void Threads::gc_prologue() {
|
||||
ALL_JAVA_THREADS(p) {
|
||||
p->gc_prologue();
|
||||
}
|
||||
}
|
||||
|
||||
void Threads::deoptimized_wrt_marked_nmethods() {
|
||||
ALL_JAVA_THREADS(p) {
|
||||
p->deoptimized_wrt_marked_nmethods();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue