diff src/share/vm/gc_interface/collectedHeap.hpp @ 7176:59c790074993

8003635: NPG: AsynchGetCallTrace broken by Method* virtual call Summary: Make metaspace::contains be lock free and used to see if something is in metaspace, also compare Method* with vtbl pointer. Reviewed-by: dholmes, sspitsyn, dcubed, jmasa
author coleenp
date Wed, 28 Nov 2012 17:50:21 -0500
parents da91efe96a93
children ff4fa8b0516e 7b835924c31c
line wrap: on
line diff
--- a/src/share/vm/gc_interface/collectedHeap.hpp	Wed Nov 28 08:43:26 2012 -0800
+++ b/src/share/vm/gc_interface/collectedHeap.hpp	Wed Nov 28 17:50:21 2012 -0500
@@ -289,11 +289,6 @@
   // (A scavenge is a GC which is not a full GC.)
   virtual bool is_scavengable(const void *p) = 0;
 
-  // Returns "TRUE" if "p" is a method oop in the
-  // current heap, with high probability. This predicate
-  // is not stable, in general.
-  bool is_valid_method(Method* p) const;
-
   void set_gc_cause(GCCause::Cause v) {
      if (UsePerfData) {
        _gc_lastcause = _gc_cause;