hotspot/src/share/vm/oops/arrayKlass.hpp
changeset 23999 22eb7be3d99d
parent 22794 f1c014ad3754
child 26135 82b516c550f7
equal deleted inserted replaced
23998:418ac4fe9834 23999:22eb7be3d99d
    84   // are always in higher memory.  The callers of these set that up.
    84   // are always in higher memory.  The callers of these set that up.
    85   virtual oop multi_allocate(int rank, jint* sizes, TRAPS);
    85   virtual oop multi_allocate(int rank, jint* sizes, TRAPS);
    86   objArrayOop allocate_arrayArray(int n, int length, TRAPS);
    86   objArrayOop allocate_arrayArray(int n, int length, TRAPS);
    87 
    87 
    88   // Lookup operations
    88   // Lookup operations
    89   Method* uncached_lookup_method(Symbol* name, Symbol* signature) const;
    89   Method* uncached_lookup_method(Symbol* name, Symbol* signature, MethodLookupMode mode) const;
    90 
    90 
    91   // Casting from Klass*
    91   // Casting from Klass*
    92   static ArrayKlass* cast(Klass* k) {
    92   static ArrayKlass* cast(Klass* k) {
    93     assert(k->oop_is_array(), "cast to ArrayKlass");
    93     assert(k->oop_is_array(), "cast to ArrayKlass");
    94     return (ArrayKlass*) k;
    94     return (ArrayKlass*) k;