src/share/vm/ci/ciTypeArrayKlass.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/ci/ciTypeArrayKlass.hpp

src/share/vm/ci/ciTypeArrayKlass.hpp

Print this page
rev 5240 : 8023657: New type profiling points: arguments to call
Summary: x86 interpreter and c1 type profiling for arguments at calls
Reviewed-by:

*** 55,62 **** --- 55,66 ---- // What kind of ciObject is this? bool is_type_array_klass() const { return true; } // Make an array klass corresponding to the specified primitive type. static ciTypeArrayKlass* make(BasicType type); + + virtual ciKlass* exact_klass() { + return this; + } }; #endif // SHARE_VM_CI_CITYPEARRAYKLASS_HPP
src/share/vm/ci/ciTypeArrayKlass.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File