[multiple changes]
2006-05-04 Andrew Haley <aph@redhat.com> * class.c (make_field_value): Always build_address_of fdecl if there is an initializer. 2006-05-03 Andrew Haley <aph@redhat.com> PR libgcj/27352 * expr.c (maybe_rewrite_invocation): New function. (rewrite_arglist_getclass): Likewise. (rules): New. (expand_invoke): Call maybe_rewrite_invocation. * parse.y (patch_invoke): Likewise. * java-tree.h: (maybe_rewrite_invocation): New function. 2006-05-03 Andrew Haley <aph@redhat.com> PR libgcj/27352 * java/lang/Class.java (getClassLoader(Class)): New. forName(String, Class): New. * java/lang/natClass.cc (getClassLoader(Class)): New. 2006-05-02 Andrew Haley <aph@redhat.com> * prims.cc (_Jv_NewMultiArray): Check for phantom class. From-SVN: r113532
This commit is contained in:
committed by
Andrew Haley
parent
a7285117b4
commit
b2ed63b4aa
@@ -115,9 +115,19 @@ java::lang::Class::getClassLoader (void)
|
||||
if (s != NULL)
|
||||
{
|
||||
jclass caller = _Jv_StackTrace::GetCallingClass (&Class::class$);
|
||||
ClassLoader *caller_loader = NULL;
|
||||
if (caller)
|
||||
caller_loader = caller->getClassLoaderInternal();
|
||||
return getClassLoader (caller);
|
||||
}
|
||||
|
||||
return loader;
|
||||
}
|
||||
|
||||
java::lang::ClassLoader *
|
||||
java::lang::Class::getClassLoader (jclass caller)
|
||||
{
|
||||
java::lang::SecurityManager *s = java::lang::System::getSecurityManager();
|
||||
if (s != NULL)
|
||||
{
|
||||
ClassLoader *caller_loader = caller->getClassLoaderInternal();
|
||||
|
||||
// If the caller has a non-null class loader, and that loader
|
||||
// is not this class' loader or an ancestor thereof, then do a
|
||||
|
||||
Reference in New Issue
Block a user