comparison src/share/vm/oops/typeArrayKlass.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 de6a9e811145
comparison
equal deleted inserted replaced
10086:e0fb8a213650 10408:836a62f43af9
65 // Allocation 65 // Allocation
66 typeArrayOop allocate_common(int length, bool do_zero, TRAPS); 66 typeArrayOop allocate_common(int length, bool do_zero, TRAPS);
67 typeArrayOop allocate(int length, TRAPS) { return allocate_common(length, true, THREAD); } 67 typeArrayOop allocate(int length, TRAPS) { return allocate_common(length, true, THREAD); }
68 oop multi_allocate(int rank, jint* sizes, TRAPS); 68 oop multi_allocate(int rank, jint* sizes, TRAPS);
69 69
70 oop protection_domain() const { return NULL; }
71
70 // Copying 72 // Copying
71 void copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS); 73 void copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS);
72 74
73 // Iteration 75 // Iteration
74 int oop_oop_iterate(oop obj, ExtendedOopClosure* blk); 76 int oop_oop_iterate(oop obj, ExtendedOopClosure* blk);