From handles.hpp:
// A handle is a ValueObj, so it can be passed around as a value, can
// be used as a parameter w/o using &-passing, and can be returned as a
// return value.
In the jvmci code, there are a few functions that use &-passing for Handle. This should be converted to by-value-passing.
// A handle is a ValueObj, so it can be passed around as a value, can
// be used as a parameter w/o using &-passing, and can be returned as a
// return value.
In the jvmci code, there are a few functions that use &-passing for Handle. This should be converted to by-value-passing.