29
29
#include " code/nmethod.hpp"
30
30
#include " code/pcDesc.hpp"
31
31
#include " code/scopeDesc.hpp"
32
+ #include " gc/shared/oopStorageSet.hpp"
32
33
#include " interpreter/interpreter.hpp"
33
34
#include " jvmtifiles/jvmtiEnv.hpp"
34
35
#include " logging/log.hpp"
39
40
#include " oops/objArrayKlass.hpp"
40
41
#include " oops/objArrayOop.hpp"
41
42
#include " oops/oop.inline.hpp"
43
+ #include " oops/oopHandle.inline.hpp"
42
44
#include " prims/jvmtiCodeBlobEvents.hpp"
43
45
#include " prims/jvmtiEventController.hpp"
44
46
#include " prims/jvmtiEventController.inline.hpp"
@@ -2599,10 +2601,6 @@ void JvmtiExport::clear_detected_exception(JavaThread* thread) {
2599
2601
}
2600
2602
}
2601
2603
2602
- void JvmtiExport::oops_do (OopClosure* f) {
2603
- JvmtiObjectAllocEventCollector::oops_do_for_all_threads (f);
2604
- }
2605
-
2606
2604
void JvmtiExport::weak_oops_do (BoolObjectClosure* is_alive, OopClosure* f) {
2607
2605
JvmtiTagMap::weak_oops_do (is_alive, f);
2608
2606
}
@@ -2828,8 +2826,11 @@ void JvmtiObjectAllocEventCollector::generate_call_for_allocated() {
2828
2826
if (_allocated) {
2829
2827
set_enabled (false );
2830
2828
for (int i = 0 ; i < _allocated->length (); i++) {
2831
- oop obj = _allocated->at (i);
2829
+ oop obj = _allocated->at (i). resolve () ;
2832
2830
_post_callback (JavaThread::current (), obj);
2831
+ // Release OopHandle
2832
+ _allocated->at (i).release (OopStorageSet::vm_global ());
2833
+
2833
2834
}
2834
2835
delete _allocated, _allocated = NULL ;
2835
2836
}
@@ -2838,48 +2839,11 @@ void JvmtiObjectAllocEventCollector::generate_call_for_allocated() {
2838
2839
void JvmtiObjectAllocEventCollector::record_allocation (oop obj) {
2839
2840
assert (is_enabled (), " Object alloc event collector is not enabled" );
2840
2841
if (_allocated == NULL ) {
2841
- _allocated = new (ResourceObj::C_HEAP, mtServiceability) GrowableArray<oop>(1 , mtServiceability);
2842
- }
2843
- _allocated->push (obj);
2844
- }
2845
-
2846
- // GC support.
2847
- void JvmtiObjectAllocEventCollector::oops_do (OopClosure* f) {
2848
- if (_allocated) {
2849
- for (int i = _allocated->length () - 1 ; i >= 0 ; i--) {
2850
- if (_allocated->at (i) != NULL ) {
2851
- f->do_oop (_allocated->adr_at (i));
2852
- }
2853
- }
2854
- }
2855
- }
2856
-
2857
- void JvmtiObjectAllocEventCollector::oops_do_for_all_threads (OopClosure* f) {
2858
- // no-op if jvmti not enabled
2859
- if (!JvmtiEnv::environments_might_exist ()) {
2860
- return ;
2861
- }
2862
-
2863
- for (JavaThreadIteratorWithHandle jtiwh; JavaThread *jthr = jtiwh.next (); ) {
2864
- JvmtiThreadState *state = jthr->jvmti_thread_state ();
2865
- if (state != NULL ) {
2866
- JvmtiObjectAllocEventCollector *collector;
2867
- collector = state->get_vm_object_alloc_event_collector ();
2868
- while (collector != NULL ) {
2869
- collector->oops_do (f);
2870
- collector = (JvmtiObjectAllocEventCollector*) collector->get_prev ();
2871
- }
2872
-
2873
- collector = state->get_sampled_object_alloc_event_collector ();
2874
- while (collector != NULL ) {
2875
- collector->oops_do (f);
2876
- collector = (JvmtiObjectAllocEventCollector*) collector->get_prev ();
2877
- }
2878
- }
2842
+ _allocated = new (ResourceObj::C_HEAP, mtServiceability) GrowableArray<OopHandle>(1 , mtServiceability);
2879
2843
}
2844
+ _allocated->push (OopHandle (OopStorageSet::vm_global (), obj));
2880
2845
}
2881
2846
2882
-
2883
2847
// Disable collection of VMObjectAlloc events
2884
2848
NoJvmtiVMObjectAllocMark::NoJvmtiVMObjectAllocMark () : _collector(NULL ) {
2885
2849
// a no-op if VMObjectAlloc event is not enabled
0 commit comments