changeset 5585:acfa2cc19146

8016444: Duplicate zombie check in safe_for_sender Reviewed-by: dholmes, sla
author rbackman
date Wed, 12 Jun 2013 09:49:42 +0200
parents 068b406e307f
children 993dfb57c575
files src/cpu/sparc/vm/frame_sparc.cpp src/share/vm/memory/referenceProcessorStats.hpp
diffstat 2 files changed, 1 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/src/cpu/sparc/vm/frame_sparc.cpp	Mon Jul 01 09:13:19 2013 +0000
+++ b/src/cpu/sparc/vm/frame_sparc.cpp	Wed Jun 12 09:49:42 2013 +0200
@@ -257,11 +257,6 @@
       return false;
     }
 
-    // Could be a zombie method
-    if (sender_blob->is_zombie() || sender_blob->is_unloaded()) {
-      return false;
-    }
-
     // It should be safe to construct the sender though it might not be valid
 
     frame sender(_SENDER_SP, younger_sp, adjusted_stack);
--- a/src/share/vm/memory/referenceProcessorStats.hpp	Mon Jul 01 09:13:19 2013 +0000
+++ b/src/share/vm/memory/referenceProcessorStats.hpp	Wed Jun 12 09:49:42 2013 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it