8053886: assert(false) failed: Should not allocate with exception pending
authorzmajo
Fri, 05 Sep 2014 16:07:22 +0200
changeset 26578 1cb9e59a06ab
parent 26577 84fbba16cb3b
child 26579 522d6486f410
8053886: assert(false) failed: Should not allocate with exception pending Summary: Failure caused by allocating method counters. Changed the way counters are allocated (use get_method_counters() instead of build_method_counters()) Reviewed-by: kvn, thartmann, anoll
hotspot/src/share/vm/runtime/sweeper.cpp
--- a/hotspot/src/share/vm/runtime/sweeper.cpp	Thu Sep 04 23:49:17 2014 -0700
+++ b/hotspot/src/share/vm/runtime/sweeper.cpp	Fri Sep 05 16:07:22 2014 +0200
@@ -618,7 +618,7 @@
         if (mc == NULL) {
           // Sometimes we can get here without MethodCounters. For example if we run with -Xcomp.
           // Try to allocate them.
-          mc = Method::build_method_counters(nm->method(), Thread::current());
+          mc = nm->method()->get_method_counters(Thread::current());
         }
         if (mc != NULL) {
           // Snapshot the value as it's changed concurrently