comparison src/share/vm/memory/oopFactory.hpp @ 2267:02f78cfa4656

7020992: jmm_DumpThreads should not allocate system object arrays outside the perm gen Summary: Allocate ordinary object arrays Reviewed-by: ysr, never, mchung
author stefank
date Mon, 21 Feb 2011 11:26:45 +0100
parents 55cc33cf55bc
children c7f3d0b4570f
comparison
equal deleted inserted replaced
2231:f7702f8c0e25 2267:02f78cfa4656
100 // Method Data containers 100 // Method Data containers
101 static methodDataOop new_methodData(methodHandle method, TRAPS); 101 static methodDataOop new_methodData(methodHandle method, TRAPS);
102 102
103 // System object arrays 103 // System object arrays
104 static objArrayOop new_system_objArray(int length, TRAPS); 104 static objArrayOop new_system_objArray(int length, TRAPS);
105 static objArrayOop new_system_objArray(int length, bool in_perm_gen, TRAPS);
106 105
107 // Regular object arrays 106 // Regular object arrays
108 static objArrayOop new_objArray(klassOop klass, int length, TRAPS); 107 static objArrayOop new_objArray(klassOop klass, int length, TRAPS);
109 108
110 // For compiled ICs 109 // For compiled ICs