diff src/share/vm/ci/ciInstanceKlass.hpp @ 10278:6f3fd5150b67

6934604: enable parts of EliminateAutoBox by default Summary: Resurrected autobox elimination code and enabled part of it by default. Reviewed-by: roland, twisti
author kvn
date Wed, 08 May 2013 15:08:01 -0700
parents bd7a7ce2e264
children 836a62f43af9 d13d7aba8c12
line wrap: on
line diff
--- a/src/share/vm/ci/ciInstanceKlass.hpp	Mon May 06 19:49:23 2013 -0700
+++ b/src/share/vm/ci/ciInstanceKlass.hpp	Wed May 08 15:08:01 2013 -0700
@@ -217,10 +217,14 @@
   ciInstanceKlass* implementor();
 
   // Is the defining class loader of this class the default loader?
-  bool uses_default_loader();
+  bool uses_default_loader() const;
 
   bool is_java_lang_Object() const;
 
+  BasicType box_klass_type() const;
+  bool is_box_klass() const;
+  bool is_boxed_value_offset(int offset) const;
+
   // Is this klass in the given package?
   bool is_in_package(const char* packagename) {
     return is_in_package(packagename, (int) strlen(packagename));