Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8343554: [lworld] VM crashes when running runtime/valhalla/inlinetypes/InlineOops.java with ZGC in interpreted mode #1313

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 41 additions & 21 deletions src/hotspot/share/prims/whitebox.cpp
Original file line number Diff line number Diff line change
@@ -22,6 +22,7 @@
*
*/

#include "oops/access.hpp"
#include "precompiled.hpp"
#include "cds.h"
#include "cds/archiveHeapLoader.hpp"
@@ -90,6 +91,7 @@
#include "runtime/javaCalls.hpp"
#include "runtime/javaThread.inline.hpp"
#include "runtime/jniHandles.inline.hpp"
#include "runtime/keepStackGCProcessed.hpp"
#include "runtime/lockStack.hpp"
#include "runtime/os.hpp"
#include "runtime/stackFrameStream.inline.hpp"
@@ -1938,49 +1940,67 @@ WB_ENTRY(jobjectArray, WB_getObjectsViaKlassOopMaps(JNIEnv* env, jobject wb, job
return (jobjectArray)JNIHandles::make_local(THREAD, result_array());
WB_END

class CollectOops : public BasicOopIterateClosure {
public:
GrowableArray<Handle>* array;
// Collect Object oops but not value objects...loaded from heap
class CollectObjectOops : public BasicOopIterateClosure {
public:
GrowableArray<Handle>* _array;

jobjectArray create_jni_result(JNIEnv* env, TRAPS) {
objArrayHandle result_array =
oopFactory::new_objArray_handle(vmClasses::Object_klass(), array->length(), CHECK_NULL);
for (int i = 0 ; i < array->length(); i++) {
result_array->obj_at_put(i, array->at(i)());
}
return (jobjectArray)JNIHandles::make_local(THREAD, result_array());
CollectObjectOops() {
_array = new GrowableArray<Handle>(128);
}

void add_oop(oop o) {
Handle oh = Handle(Thread::current(), o);
// Value might be oop, but JLS can't see as Object, just iterate through it...
if (oh != nullptr && oh->is_inline_type()) {
oh->oop_iterate(this);
} else {
array->append(oh);
_array->append(oh);
}
}

void do_oop(oop* o) { add_oop(HeapAccess<>::oop_load(o)); }
void do_oop(narrowOop* v) { add_oop(HeapAccess<>::oop_load(v)); }
template <class T> inline void add_oop(T* p) { add_oop(HeapAccess<>::oop_load(p)); }
void do_oop(oop* o) { add_oop(o); }
void do_oop(narrowOop* v) { add_oop(v); }

jobjectArray create_jni_result(JNIEnv* env, TRAPS) {
objArrayHandle result_array =
oopFactory::new_objArray_handle(vmClasses::Object_klass(), _array->length(), CHECK_NULL);
for (int i = 0 ; i < _array->length(); i++) {
result_array->obj_at_put(i, _array->at(i)());
}
return (jobjectArray)JNIHandles::make_local(THREAD, result_array());
}
};

// Collect Object oops but not value objects...loaded from frames
class CollectFrameObjectOops : public BasicOopIterateClosure {
public:
CollectObjectOops _collect;

template <class T> inline void add_oop(T* p) { _collect.add_oop(RawAccess<>::oop_load(p)); }
void do_oop(oop* o) { add_oop(o); }
void do_oop(narrowOop* v) { add_oop(v); }

jobjectArray create_jni_result(JNIEnv* env, TRAPS) {
return _collect.create_jni_result(env, THREAD);
}
};

// Collect Object oops for the given oop, iterate through value objects
WB_ENTRY(jobjectArray, WB_getObjectsViaOopIterator(JNIEnv* env, jobject wb, jobject thing))
ResourceMark rm(thread);
Handle objh(thread, JNIHandles::resolve(thing));
GrowableArray<Handle>* array = new GrowableArray<Handle>(128);
CollectOops collectOops;
collectOops.array = array;
CollectObjectOops collectOops;
objh->oop_iterate(&collectOops);
return collectOops.create_jni_result(env, THREAD);
WB_END

// Collect Object oops for the given frame deep, iterate through value objects
WB_ENTRY(jobjectArray, WB_getObjectsViaFrameOopIterator(JNIEnv* env, jobject wb, jint depth))
KeepStackGCProcessedMark ksgcpm(THREAD);
ResourceMark rm(THREAD);
GrowableArray<Handle>* array = new GrowableArray<Handle>(128);
CollectOops collectOops;
collectOops.array = array;
StackFrameStream sfs(thread, false /* update */, true /* process_frames */);
CollectFrameObjectOops collectOops;
StackFrameStream sfs(thread, true /* update */, true /* process_frames */);
while (depth > 0) { // Skip the native WB API frame
sfs.next();
frame* f = sfs.current();