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

src/share/vm/ci/ciKlass.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:

*** 39,48 **** --- 39,49 ---- class ciKlass : public ciType { CI_PACKAGE_ACCESS friend class ciEnv; friend class ciField; friend class ciMethod; + friend class ciMethodData; friend class ciObjArrayKlass; private: ciSymbol* _name; jint _layout_helper;
*** 119,127 **** --- 120,130 ---- jint access_flags(); // What kind of ciObject is this? bool is_klass() const { return true; } + virtual ciKlass* exact_klass() = 0; + void print_name_on(outputStream* st); }; #endif // SHARE_VM_CI_CIKLASS_HPP
src/share/vm/ci/ciKlass.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File