src/share/vm/oops/arrayKlass.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File bug_jdk8033150.1 Cdiff src/share/vm/oops/arrayKlass.hpp

src/share/vm/oops/arrayKlass.hpp

Print this page

        

*** 84,94 **** // are always in higher memory. The callers of these set that up. virtual oop multi_allocate(int rank, jint* sizes, TRAPS); objArrayOop allocate_arrayArray(int n, int length, TRAPS); // Lookup operations ! Method* uncached_lookup_method(Symbol* name, Symbol* signature) const; // Casting from Klass* static ArrayKlass* cast(Klass* k) { assert(k->oop_is_array(), "cast to ArrayKlass"); return (ArrayKlass*) k; --- 84,94 ---- // are always in higher memory. The callers of these set that up. virtual oop multi_allocate(int rank, jint* sizes, TRAPS); objArrayOop allocate_arrayArray(int n, int length, TRAPS); // Lookup operations ! Method* uncached_lookup_method(Symbol* name, Symbol* signature, MethodLookupMode mode) const; // Casting from Klass* static ArrayKlass* cast(Klass* k) { assert(k->oop_is_array(), "cast to ArrayKlass"); return (ArrayKlass*) k;
src/share/vm/oops/arrayKlass.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File