comparison src/share/vm/classfile/javaClasses.hpp @ 11099:ba9dacff9c9d

8014399: Remove JVM_SetProtectionDomain from hotspot Summary: JVM_SetProtectionDomain has been deprecated since 1.5 and is being removed Reviewed-by: coleenp, hseigel Contributed-by: eric.mccorkle@oracle.com
author hseigel
date Mon, 08 Jul 2013 19:36:22 -0400
parents eaf3742822ec
children 6b0fd0964b87 ca0165daa6ec
comparison
equal deleted inserted replaced
11094:cc5b7915104e 11099:ba9dacff9c9d
232 static bool offsets_computed; 232 static bool offsets_computed;
233 static int classRedefinedCount_offset; 233 static int classRedefinedCount_offset;
234 static GrowableArray<Klass*>* _fixup_mirror_list; 234 static GrowableArray<Klass*>* _fixup_mirror_list;
235 235
236 static void set_init_lock(oop java_class, oop init_lock); 236 static void set_init_lock(oop java_class, oop init_lock);
237 static void set_protection_domain(oop java_class, oop protection_domain);
237 public: 238 public:
238 static void compute_offsets(); 239 static void compute_offsets();
239 240
240 // Instance creation 241 // Instance creation
241 static oop create_mirror(KlassHandle k, Handle protection_domain, TRAPS); 242 static oop create_mirror(KlassHandle k, Handle protection_domain, TRAPS);
270 static int classRedefinedCount(oop the_class_mirror); 271 static int classRedefinedCount(oop the_class_mirror);
271 static void set_classRedefinedCount(oop the_class_mirror, int value); 272 static void set_classRedefinedCount(oop the_class_mirror, int value);
272 273
273 // Support for embedded per-class oops 274 // Support for embedded per-class oops
274 static oop protection_domain(oop java_class); 275 static oop protection_domain(oop java_class);
275 static void set_protection_domain(oop java_class, oop protection_domain);
276 static oop init_lock(oop java_class); 276 static oop init_lock(oop java_class);
277 static objArrayOop signers(oop java_class); 277 static objArrayOop signers(oop java_class);
278 static void set_signers(oop java_class, objArrayOop signers); 278 static void set_signers(oop java_class, objArrayOop signers);
279 279
280 static int oop_size(oop java_class); 280 static int oop_size(oop java_class);