hotspot/src/share/vm/oops/arrayKlass.hpp
changeset 8076 96d498ec7ae1
parent 7890 7d1d76674e2e
child 11430 718fc06da49a
equal deleted inserted replaced
8075:582dd25571b2 8076:96d498ec7ae1
    82   // are always in higher memory.  The callers of these set that up.
    82   // are always in higher memory.  The callers of these set that up.
    83   virtual oop multi_allocate(int rank, jint* sizes, TRAPS);
    83   virtual oop multi_allocate(int rank, jint* sizes, TRAPS);
    84   objArrayOop allocate_arrayArray(int n, int length, TRAPS);
    84   objArrayOop allocate_arrayArray(int n, int length, TRAPS);
    85 
    85 
    86   // Lookup operations
    86   // Lookup operations
    87   methodOop uncached_lookup_method(symbolOop name, symbolOop signature) const;
    87   methodOop uncached_lookup_method(Symbol* name, Symbol* signature) const;
    88 
    88 
    89   // Casting from klassOop
    89   // Casting from klassOop
    90   static arrayKlass* cast(klassOop k) {
    90   static arrayKlass* cast(klassOop k) {
    91     Klass* kp = k->klass_part();
    91     Klass* kp = k->klass_part();
    92     assert(kp->null_vtbl() || kp->oop_is_array(), "cast to arrayKlass");
    92     assert(kp->null_vtbl() || kp->oop_is_array(), "cast to arrayKlass");