comparison src/share/vm/oops/objArrayKlass.hpp @ 10408:836a62f43af9

Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
author Doug Simon <doug.simon@oracle.com>
date Wed, 19 Jun 2013 10:45:56 +0200
parents 6bd680e9ea35
children e0c9a1d29eb4
comparison
equal deleted inserted replaced
10086:e0fb8a213650 10408:836a62f43af9
73 73
74 // Copying 74 // Copying
75 void copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS); 75 void copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS);
76 76
77 // Compute protection domain 77 // Compute protection domain
78 oop protection_domain() { return bottom_klass()->protection_domain(); } 78 oop protection_domain() const { return bottom_klass()->protection_domain(); }
79 79
80 private: 80 private:
81 // Either oop or narrowOop depending on UseCompressedOops. 81 // Either oop or narrowOop depending on UseCompressedOops.
82 // must be called from within ObjArrayKlass.cpp 82 // must be called from within ObjArrayKlass.cpp
83 template <class T> void do_copy(arrayOop s, T* src, arrayOop d, 83 template <class T> void do_copy(arrayOop s, T* src, arrayOop d,