comparison src/share/vm/oops/arrayKlass.hpp @ 17891:b6a2ba7d3ea7 hs25.20-b11

Merge
author amurillo
date Thu, 17 Apr 2014 16:09:07 -0700
parents 386dd1c71858
children 52b4284cb496 54bc75c144b0 6e0cb14ce59b
comparison
equal deleted inserted replaced
17862:70dc2c030c69 17891:b6a2ba7d3ea7
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;