< prev index next >

src/hotspot/share/ci/ciArrayKlass.hpp

Print this page

        

*** 54,62 **** --- 54,67 ---- // What kind of vmObject is this? bool is_array_klass() const { return true; } bool is_java_klass() const { return true; } + // The one-level type of the array elements. + virtual ciKlass* element_klass() { return NULL; } + static ciArrayKlass* make(ciType* element_type); + + int array_header_in_bytes(); }; #endif // SHARE_CI_CIARRAYKLASS_HPP
< prev index next >