< prev index next >

src/hotspot/share/ci/ciValueKlass.cpp

Print this page

        

@@ -84,10 +84,15 @@
 // Can this value type be returned as multiple values?
 bool ciValueKlass::is_bufferable() const {
   GUARDED_VM_ENTRY(return ValueKlass::cast(get_Klass())->is_bufferable();)
 }
 
+// TODO
+bool ciValueKlass::is_scalarizable() const {
+  return ScalarizeValueTypes;
+}
+
 // When passing a value type's fields as arguments, count the number
 // of argument slots that are needed
 int ciValueKlass::value_arg_slots() {
   int slots = nof_nonstatic_fields();
   for (int j = 0; j < nof_nonstatic_fields(); j++) {
< prev index next >