1 // resolve.cc - Code for linking and resolving classes and pool entries.
3 /* Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation
5 This file is part of libgcj.
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
11 /* Author: Kresten Krab Thorup <krab@gnu.org> */
16 #include <java-interp.h>
21 #include <java-cpool.h>
22 #include <java/lang/Class.h>
23 #include <java/lang/String.h>
24 #include <java/lang/StringBuffer.h>
25 #include <java/lang/Thread.h>
26 #include <java/lang/InternalError.h>
27 #include <java/lang/VirtualMachineError.h>
28 #include <java/lang/NoSuchFieldError.h>
29 #include <java/lang/NoSuchMethodError.h>
30 #include <java/lang/ClassFormatError.h>
31 #include <java/lang/IllegalAccessError.h>
32 #include <java/lang/AbstractMethodError.h>
33 #include <java/lang/NoClassDefFoundError.h>
34 #include <java/lang/IncompatibleClassChangeError.h>
35 #include <java/lang/reflect/Modifier.h>
40 _Jv_ResolveField (_Jv_Field
*field
, java::lang::ClassLoader
*loader
)
42 if (! field
->isResolved ())
44 _Jv_Utf8Const
*sig
= (_Jv_Utf8Const
*)field
->type
;
45 field
->type
= _Jv_FindClassFromSignature (sig
->data
, loader
);
46 field
->flags
&= ~_Jv_FIELD_UNRESOLVED_FLAG
;
52 static void throw_internal_error (char *msg
)
53 __attribute__ ((__noreturn__
));
54 static void throw_class_format_error (jstring msg
)
55 __attribute__ ((__noreturn__
));
56 static void throw_class_format_error (char *msg
)
57 __attribute__ ((__noreturn__
));
59 static int get_alignment_from_class (jclass
);
61 static _Jv_ResolvedMethod
*
62 _Jv_BuildResolvedMethod (_Jv_Method
*,
68 static void throw_incompatible_class_change_error (jstring msg
)
70 throw new java::lang::IncompatibleClassChangeError (msg
);
74 _Jv_ResolvePoolEntry (jclass klass
, int index
)
76 using namespace java::lang::reflect
;
78 _Jv_Constants
*pool
= &klass
->constants
;
80 if ((pool
->tags
[index
] & JV_CONSTANT_ResolvedFlag
) != 0)
81 return pool
->data
[index
];
83 switch (pool
->tags
[index
]) {
84 case JV_CONSTANT_Class
:
86 _Jv_Utf8Const
*name
= pool
->data
[index
].utf8
;
89 if (name
->data
[0] == '[')
90 found
= _Jv_FindClassFromSignature (&name
->data
[0],
93 found
= _Jv_FindClass (name
, klass
->loader
);
97 jstring str
= _Jv_NewStringUTF (name
->data
);
98 // This exception is specified in JLS 2nd Ed, section 5.1.
99 throw new java::lang::NoClassDefFoundError (str
);
102 if ((found
->accflags
& Modifier::PUBLIC
) == Modifier::PUBLIC
103 || (_Jv_ClassNameSamePackage (found
->name
,
106 pool
->data
[index
].clazz
= found
;
107 pool
->tags
[index
] |= JV_CONSTANT_ResolvedFlag
;
111 throw new java::lang::IllegalAccessError (found
->getName());
116 case JV_CONSTANT_String
:
119 str
= _Jv_NewStringUtf8Const (pool
->data
[index
].utf8
);
120 pool
->data
[index
].o
= str
;
121 pool
->tags
[index
] |= JV_CONSTANT_ResolvedFlag
;
126 case JV_CONSTANT_Fieldref
:
128 _Jv_ushort class_index
, name_and_type_index
;
129 _Jv_loadIndexes (&pool
->data
[index
],
131 name_and_type_index
);
132 jclass owner
= (_Jv_ResolvePoolEntry (klass
, class_index
)).clazz
;
135 _Jv_InitClass (owner
);
137 _Jv_ushort name_index
, type_index
;
138 _Jv_loadIndexes (&pool
->data
[name_and_type_index
],
142 _Jv_Utf8Const
*field_name
= pool
->data
[name_index
].utf8
;
143 _Jv_Utf8Const
*field_type_name
= pool
->data
[type_index
].utf8
;
145 // FIXME: The implementation of this function
146 // (_Jv_FindClassFromSignature) will generate an instance of
147 // _Jv_Utf8Const for each call if the field type is a class name
148 // (Lxx.yy.Z;). This may be too expensive to do for each and
149 // every fieldref being resolved. For now, we fix the problem by
150 // only doing it when we have a loader different from the class
151 // declaring the field.
153 jclass field_type
= 0;
155 if (owner
->loader
!= klass
->loader
)
156 field_type
= _Jv_FindClassFromSignature (field_type_name
->data
,
159 _Jv_Field
* the_field
= 0;
161 for (jclass cls
= owner
; cls
!= 0; cls
= cls
->getSuperclass ())
163 for (int i
= 0; i
< cls
->field_count
; i
++)
165 _Jv_Field
*field
= &cls
->fields
[i
];
166 if (! _Jv_equalUtf8Consts (field
->name
, field_name
))
169 if (_Jv_CheckAccess (klass
, cls
, field
->flags
))
171 /* resove the field using the class' own loader
174 if (!field
->isResolved ())
175 _Jv_ResolveField (field
, cls
->loader
);
177 if (field_type
!= 0 && field
->type
!= field_type
)
178 throw new java::lang::LinkageError
180 ("field type mismatch with different loaders"));
183 goto end_of_field_search
;
187 throw new java::lang::IllegalAccessError
;
195 java::lang::StringBuffer
*sb
= new java::lang::StringBuffer();
196 sb
->append(JvNewStringLatin1("field "));
197 sb
->append(owner
->getName());
198 sb
->append(JvNewStringLatin1("."));
199 sb
->append(_Jv_NewStringUTF(field_name
->data
));
200 sb
->append(JvNewStringLatin1(" was not found."));
201 throw_incompatible_class_change_error(sb
->toString());
204 pool
->data
[index
].field
= the_field
;
205 pool
->tags
[index
] |= JV_CONSTANT_ResolvedFlag
;
209 case JV_CONSTANT_Methodref
:
210 case JV_CONSTANT_InterfaceMethodref
:
212 _Jv_ushort class_index
, name_and_type_index
;
213 _Jv_loadIndexes (&pool
->data
[index
],
215 name_and_type_index
);
216 jclass owner
= (_Jv_ResolvePoolEntry (klass
, class_index
)).clazz
;
219 _Jv_InitClass (owner
);
221 _Jv_ushort name_index
, type_index
;
222 _Jv_loadIndexes (&pool
->data
[name_and_type_index
],
226 _Jv_Utf8Const
*method_name
= pool
->data
[name_index
].utf8
;
227 _Jv_Utf8Const
*method_signature
= pool
->data
[type_index
].utf8
;
229 _Jv_Method
*the_method
= 0;
230 jclass found_class
= 0;
232 // First search the class itself.
233 the_method
= _Jv_SearchMethodInClass (owner
, klass
,
234 method_name
, method_signature
);
239 goto end_of_method_search
;
242 // If we are resolving an interface method, search the
243 // interface's superinterfaces (A superinterface is not an
244 // interface's superclass - a superinterface is implemented by
246 if (pool
->tags
[index
] == JV_CONSTANT_InterfaceMethodref
)
251 ifaces
.list
= (jclass
*) _Jv_Malloc (ifaces
.len
* sizeof (jclass
*));
253 _Jv_GetInterfaces (owner
, &ifaces
);
255 for (int i
= 0; i
< ifaces
.count
; i
++)
257 jclass cls
= ifaces
.list
[i
];
258 the_method
= _Jv_SearchMethodInClass (cls
, klass
, method_name
,
267 _Jv_Free (ifaces
.list
);
270 goto end_of_method_search
;
273 // Finally, search superclasses.
274 for (jclass cls
= owner
->getSuperclass (); cls
!= 0;
275 cls
= cls
->getSuperclass ())
277 the_method
= _Jv_SearchMethodInClass (cls
, klass
,
278 method_name
, method_signature
);
286 end_of_method_search
:
288 // FIXME: if (cls->loader != klass->loader), then we
289 // must actually check that the types of arguments
290 // correspond. That is, for each argument type, and
291 // the return type, doing _Jv_FindClassFromSignature
292 // with either loader should produce the same result,
293 // i.e., exactly the same jclass object. JVMS 5.4.3.3
297 java::lang::StringBuffer
*sb
= new java::lang::StringBuffer();
298 sb
->append(JvNewStringLatin1("method "));
299 sb
->append(owner
->getName());
300 sb
->append(JvNewStringLatin1("."));
301 sb
->append(_Jv_NewStringUTF(method_name
->data
));
302 sb
->append(JvNewStringLatin1(" was not found."));
303 throw new java::lang::NoSuchMethodError (sb
->toString());
306 int vtable_index
= -1;
307 if (pool
->tags
[index
] != JV_CONSTANT_InterfaceMethodref
)
308 vtable_index
= (jshort
)the_method
->index
;
310 pool
->data
[index
].rmethod
=
311 _Jv_BuildResolvedMethod(the_method
,
313 (the_method
->accflags
& Modifier::STATIC
) != 0,
315 pool
->tags
[index
] |= JV_CONSTANT_ResolvedFlag
;
321 return pool
->data
[index
];
324 // Find a method declared in the cls that is referenced from klass and
325 // perform access checks.
327 _Jv_SearchMethodInClass (jclass cls
, jclass klass
,
328 _Jv_Utf8Const
*method_name
,
329 _Jv_Utf8Const
*method_signature
)
331 using namespace java::lang::reflect
;
333 for (int i
= 0; i
< cls
->method_count
; i
++)
335 _Jv_Method
*method
= &cls
->methods
[i
];
336 if ( (!_Jv_equalUtf8Consts (method
->name
,
338 || (!_Jv_equalUtf8Consts (method
->signature
,
342 if (_Jv_CheckAccess (klass
, cls
, method
->accflags
))
345 throw new java::lang::IllegalAccessError
;
350 // A helper for _Jv_PrepareClass. This adds missing `Miranda methods'
353 _Jv_PrepareMissingMethods (jclass base2
, jclass iface_class
)
355 _Jv_InterpClass
*base
= reinterpret_cast<_Jv_InterpClass
*> (base2
);
356 for (int i
= 0; i
< iface_class
->interface_count
; ++i
)
358 for (int j
= 0; j
< iface_class
->interfaces
[i
]->method_count
; ++j
)
360 _Jv_Method
*meth
= &iface_class
->interfaces
[i
]->methods
[j
];
361 // Don't bother with <clinit>.
362 if (meth
->name
->data
[0] == '<')
364 _Jv_Method
*new_meth
= _Jv_LookupDeclaredMethod (base
, meth
->name
,
368 // We assume that such methods are very unlikely, so we
369 // just reallocate the method array each time one is
370 // found. This greatly simplifies the searching --
371 // otherwise we have to make sure that each such method
372 // found is really unique among all superinterfaces.
373 int new_count
= base
->method_count
+ 1;
375 = (_Jv_Method
*) _Jv_AllocBytes (sizeof (_Jv_Method
)
377 memcpy (new_m
, base
->methods
,
378 sizeof (_Jv_Method
) * base
->method_count
);
381 new_m
[base
->method_count
] = *meth
;
382 new_m
[base
->method_count
].index
= (_Jv_ushort
) -1;
383 new_m
[base
->method_count
].accflags
384 |= java::lang::reflect::Modifier::INVISIBLE
;
386 _Jv_MethodBase
**new_im
387 = (_Jv_MethodBase
**) _Jv_AllocBytes (sizeof (_Jv_MethodBase
*)
389 memcpy (new_im
, base
->interpreted_methods
,
390 sizeof (_Jv_MethodBase
*) * base
->method_count
);
392 base
->methods
= new_m
;
393 base
->interpreted_methods
= new_im
;
394 base
->method_count
= new_count
;
398 _Jv_PrepareMissingMethods (base
, iface_class
->interfaces
[i
]);
403 _Jv_PrepareClass(jclass klass
)
405 using namespace java::lang::reflect
;
408 * The job of this function is to: 1) assign storage to fields, and 2)
409 * build the vtable. static fields are assigned real memory, instance
410 * fields are assigned offsets.
412 * NOTE: we have a contract with the garbage collector here. Static
413 * reference fields must not be resolved, until after they have storage
414 * assigned which is the check used by the collector to see if it
415 * should indirect the static field reference and mark the object
418 * Most fields are resolved lazily (i.e. have their class-type
419 * assigned) when they are accessed the first time by calling as part
420 * of _Jv_ResolveField, which is allways called after _Jv_PrepareClass.
421 * Static fields with initializers are resolved as part of this
422 * function, as are fields with primitive types.
425 if (! _Jv_IsInterpretedClass (klass
))
428 if (klass
->state
>= JV_STATE_PREPARED
)
431 // Make sure super-class is linked. This involves taking a lock on
432 // the super class, so we use the Java method resolveClass, which
433 // will unlock it properly, should an exception happen. If there's
434 // no superclass, do nothing -- Object will already have been
437 if (klass
->superclass
)
438 java::lang::ClassLoader::resolveClass0 (klass
->superclass
);
440 _Jv_InterpClass
*clz
= (_Jv_InterpClass
*)klass
;
442 /************ PART ONE: OBJECT LAYOUT ***************/
444 // Compute the alignment for this type by searching through the
445 // superclasses and finding the maximum required alignment. We
446 // could consider caching this in the Class.
447 int max_align
= __alignof__ (java::lang::Object
);
448 jclass super
= clz
->superclass
;
449 while (super
!= NULL
)
451 int num
= JvNumInstanceFields (super
);
452 _Jv_Field
*field
= JvGetFirstInstanceField (super
);
455 int field_align
= get_alignment_from_class (field
->type
);
456 if (field_align
> max_align
)
457 max_align
= field_align
;
461 super
= super
->superclass
;
467 // Although java.lang.Object is never interpreted, an interface can
468 // have a null superclass. Note that we have to lay out an
469 // interface because it might have static fields.
471 instance_size
= clz
->superclass
->size();
473 instance_size
= java::lang::Object::class$
.size();
475 for (int i
= 0; i
< clz
->field_count
; i
++)
480 _Jv_Field
*field
= &clz
->fields
[i
];
482 if (! field
->isRef ())
484 // it's safe to resolve the field here, since it's
485 // a primitive class, which does not cause loading to happen.
486 _Jv_ResolveField (field
, clz
->loader
);
488 field_size
= field
->type
->size ();
489 field_align
= get_alignment_from_class (field
->type
);
493 field_size
= sizeof (jobject
);
494 field_align
= __alignof__ (jobject
);
497 #ifndef COMPACT_FIELDS
498 field
->bsize
= field_size
;
501 if (field
->flags
& Modifier::STATIC
)
503 /* this computes an offset into a region we'll allocate
504 shortly, and then add this offset to the start address */
506 static_size
= ROUND (static_size
, field_align
);
507 field
->u
.boffset
= static_size
;
508 static_size
+= field_size
;
512 instance_size
= ROUND (instance_size
, field_align
);
513 field
->u
.boffset
= instance_size
;
514 instance_size
+= field_size
;
515 if (field_align
> max_align
)
516 max_align
= field_align
;
520 // Set the instance size for the class. Note that first we round it
521 // to the alignment required for this object; this keeps us in sync
522 // with our current ABI.
523 instance_size
= ROUND (instance_size
, max_align
);
524 clz
->size_in_bytes
= instance_size
;
526 // allocate static memory
527 if (static_size
!= 0)
529 char *static_data
= (char*)_Jv_AllocBytes (static_size
);
531 memset (static_data
, 0, static_size
);
533 for (int i
= 0; i
< clz
->field_count
; i
++)
535 _Jv_Field
*field
= &clz
->fields
[i
];
537 if ((field
->flags
& Modifier::STATIC
) != 0)
539 field
->u
.addr
= static_data
+ field
->u
.boffset
;
541 if (clz
->field_initializers
[i
] != 0)
543 _Jv_ResolveField (field
, clz
->loader
);
544 _Jv_InitField (0, clz
, i
);
549 // now we don't need the field_initializers anymore, so let the
550 // collector get rid of it!
552 clz
->field_initializers
= 0;
555 /************ PART TWO: VTABLE LAYOUT ***************/
557 /* preparation: build the vtable stubs (even interfaces can)
558 have code -- for static constructors. */
559 for (int i
= 0; i
< clz
->method_count
; i
++)
561 _Jv_MethodBase
*imeth
= clz
->interpreted_methods
[i
];
563 if ((clz
->methods
[i
].accflags
& Modifier::NATIVE
) != 0)
565 // You might think we could use a virtual `ncode' method in
566 // the _Jv_MethodBase and unify the native and non-native
567 // cases. Well, we can't, because we don't allocate these
568 // objects using `new', and thus they don't get a vtable.
569 _Jv_JNIMethod
*jnim
= reinterpret_cast<_Jv_JNIMethod
*> (imeth
);
570 clz
->methods
[i
].ncode
= jnim
->ncode ();
572 else if (imeth
!= 0) // it could be abstract
574 _Jv_InterpMethod
*im
= reinterpret_cast<_Jv_InterpMethod
*> (imeth
);
575 _Jv_VerifyMethod (im
);
576 clz
->methods
[i
].ncode
= im
->ncode ();
580 if ((clz
->accflags
& Modifier::INTERFACE
))
582 clz
->state
= JV_STATE_PREPARED
;
587 // A class might have so-called "Miranda methods". This is a method
588 // that is declared in an interface and not re-declared in an
589 // abstract class. Some compilers don't emit declarations for such
590 // methods in the class; this will give us problems since we expect
591 // a declaration for any method requiring a vtable entry. We handle
592 // this here by searching for such methods and constructing new
593 // internal declarations for them. We only need to do this for
595 if ((clz
->accflags
& Modifier::ABSTRACT
))
596 _Jv_PrepareMissingMethods (clz
, clz
);
598 clz
->vtable_method_count
= -1;
599 _Jv_MakeVTable (clz
);
601 /* wooha! we're done. */
602 clz
->state
= JV_STATE_PREPARED
;
606 /** Do static initialization for fields with a constant initializer */
608 _Jv_InitField (jobject obj
, jclass klass
, int index
)
610 using namespace java::lang::reflect
;
612 if (obj
!= 0 && klass
== 0)
613 klass
= obj
->getClass ();
615 if (!_Jv_IsInterpretedClass (klass
))
618 _Jv_InterpClass
*clz
= (_Jv_InterpClass
*)klass
;
620 _Jv_Field
* field
= (&clz
->fields
[0]) + index
;
622 if (index
> clz
->field_count
)
623 throw_internal_error ("field out of range");
625 int init
= clz
->field_initializers
[index
];
629 _Jv_Constants
*pool
= &clz
->constants
;
630 int tag
= pool
->tags
[init
];
632 if (! field
->isResolved ())
633 throw_internal_error ("initializing unresolved field");
635 if (obj
==0 && ((field
->flags
& Modifier::STATIC
) == 0))
636 throw_internal_error ("initializing non-static field with no object");
640 if ((field
->flags
& Modifier::STATIC
) != 0)
641 addr
= (void*) field
->u
.addr
;
643 addr
= (void*) (((char*)obj
) + field
->u
.boffset
);
647 case JV_CONSTANT_String
:
649 _Jv_MonitorEnter (clz
);
651 str
= _Jv_NewStringUtf8Const (pool
->data
[init
].utf8
);
652 pool
->data
[init
].string
= str
;
653 pool
->tags
[init
] = JV_CONSTANT_ResolvedString
;
654 _Jv_MonitorExit (clz
);
658 case JV_CONSTANT_ResolvedString
:
659 if (! (field
->type
== &StringClass
660 || field
->type
== &java::lang::Class::class$
))
661 throw_class_format_error ("string initialiser to non-string field");
663 *(jstring
*)addr
= pool
->data
[init
].string
;
666 case JV_CONSTANT_Integer
:
668 int value
= pool
->data
[init
].i
;
670 if (field
->type
== JvPrimClass (boolean
))
671 *(jboolean
*)addr
= (jboolean
)value
;
673 else if (field
->type
== JvPrimClass (byte
))
674 *(jbyte
*)addr
= (jbyte
)value
;
676 else if (field
->type
== JvPrimClass (char))
677 *(jchar
*)addr
= (jchar
)value
;
679 else if (field
->type
== JvPrimClass (short))
680 *(jshort
*)addr
= (jshort
)value
;
682 else if (field
->type
== JvPrimClass (int))
683 *(jint
*)addr
= (jint
)value
;
686 throw_class_format_error ("erroneous field initializer");
690 case JV_CONSTANT_Long
:
691 if (field
->type
!= JvPrimClass (long))
692 throw_class_format_error ("erroneous field initializer");
694 *(jlong
*)addr
= _Jv_loadLong (&pool
->data
[init
]);
697 case JV_CONSTANT_Float
:
698 if (field
->type
!= JvPrimClass (float))
699 throw_class_format_error ("erroneous field initializer");
701 *(jfloat
*)addr
= pool
->data
[init
].f
;
704 case JV_CONSTANT_Double
:
705 if (field
->type
!= JvPrimClass (double))
706 throw_class_format_error ("erroneous field initializer");
708 *(jdouble
*)addr
= _Jv_loadDouble (&pool
->data
[init
]);
712 throw_class_format_error ("erroneous field initializer");
722 #define ALIGNOF(TYPE) (__alignof__ (((aligner<TYPE> *) 0)->field))
724 // This returns the alignment of a type as it would appear in a
725 // structure. This can be different from the alignment of the type
726 // itself. For instance on x86 double is 8-aligned but struct{double}
729 get_alignment_from_class (jclass klass
)
731 if (klass
== JvPrimClass (byte
))
732 return ALIGNOF (jbyte
);
733 else if (klass
== JvPrimClass (short))
734 return ALIGNOF (jshort
);
735 else if (klass
== JvPrimClass (int))
736 return ALIGNOF (jint
);
737 else if (klass
== JvPrimClass (long))
738 return ALIGNOF (jlong
);
739 else if (klass
== JvPrimClass (boolean
))
740 return ALIGNOF (jboolean
);
741 else if (klass
== JvPrimClass (char))
742 return ALIGNOF (jchar
);
743 else if (klass
== JvPrimClass (float))
744 return ALIGNOF (jfloat
);
745 else if (klass
== JvPrimClass (double))
746 return ALIGNOF (jdouble
);
748 return ALIGNOF (jobject
);
752 inline static unsigned char*
753 skip_one_type (unsigned char* ptr
)
764 do { ch
= *ptr
++; } while (ch
!= ';');
771 get_ffi_type_from_signature (unsigned char* ptr
)
777 return &ffi_type_pointer
;
781 // On some platforms a bool is a byte, on others an int.
782 if (sizeof (jboolean
) == sizeof (jbyte
))
783 return &ffi_type_sint8
;
786 JvAssert (sizeof (jbyte
) == sizeof (jint
));
787 return &ffi_type_sint32
;
792 return &ffi_type_sint8
;
796 return &ffi_type_uint16
;
800 return &ffi_type_sint16
;
804 return &ffi_type_sint32
;
808 return &ffi_type_sint64
;
812 return &ffi_type_float
;
816 return &ffi_type_double
;
820 return &ffi_type_void
;
824 throw_internal_error ("unknown type in signature");
827 /* this function yields the number of actual arguments, that is, if the
828 * function is non-static, then one is added to the number of elements
829 * found in the signature */
832 _Jv_count_arguments (_Jv_Utf8Const
*signature
,
835 unsigned char *ptr
= (unsigned char*) signature
->data
;
836 int arg_count
= staticp
? 0 : 1;
838 /* first, count number of arguments */
846 ptr
= skip_one_type (ptr
);
853 /* This beast will build a cif, given the signature. Memory for
854 * the cif itself and for the argument types must be allocated by the
859 init_cif (_Jv_Utf8Const
* signature
,
863 ffi_type
**arg_types
,
866 unsigned char *ptr
= (unsigned char*) signature
->data
;
868 int arg_index
= 0; // arg number
869 int item_count
= 0; // stack-item count
874 arg_types
[arg_index
++] = &ffi_type_pointer
;
884 arg_types
[arg_index
++] = get_ffi_type_from_signature (ptr
);
886 if (*ptr
== 'J' || *ptr
== 'D')
891 ptr
= skip_one_type (ptr
);
896 ffi_type
*rtype
= get_ffi_type_from_signature (ptr
);
898 ptr
= skip_one_type (ptr
);
899 if (ptr
!= (unsigned char*)signature
->data
+ signature
->length
)
900 throw_internal_error ("did not find end of signature");
902 if (ffi_prep_cif (cif
, FFI_DEFAULT_ABI
,
903 arg_count
, rtype
, arg_types
) != FFI_OK
)
904 throw_internal_error ("ffi_prep_cif failed");
912 #if FFI_NATIVE_RAW_API
913 # define FFI_PREP_RAW_CLOSURE ffi_prep_raw_closure
914 # define FFI_RAW_SIZE ffi_raw_size
916 # define FFI_PREP_RAW_CLOSURE ffi_prep_java_raw_closure
917 # define FFI_RAW_SIZE ffi_java_raw_size
920 /* we put this one here, and not in interpret.cc because it
921 * calls the utility routines _Jv_count_arguments
922 * which are static to this module. The following struct defines the
923 * layout we use for the stubs, it's only used in the ncode method. */
926 ffi_raw_closure closure
;
928 ffi_type
*arg_types
[0];
931 typedef void (*ffi_closure_fun
) (ffi_cif
*,void*,ffi_raw
*,void*);
934 _Jv_InterpMethod::ncode ()
936 using namespace java::lang::reflect
;
938 if (self
->ncode
!= 0)
941 jboolean staticp
= (self
->accflags
& Modifier::STATIC
) != 0;
942 int arg_count
= _Jv_count_arguments (self
->signature
, staticp
);
944 ncode_closure
*closure
=
945 (ncode_closure
*)_Jv_AllocBytes (sizeof (ncode_closure
)
946 + arg_count
* sizeof (ffi_type
*));
948 init_cif (self
->signature
,
952 &closure
->arg_types
[0],
957 args_raw_size
= FFI_RAW_SIZE (&closure
->cif
);
959 JvAssert ((self
->accflags
& Modifier::NATIVE
) == 0);
961 if ((self
->accflags
& Modifier::SYNCHRONIZED
) != 0)
964 fun
= (ffi_closure_fun
)&_Jv_InterpMethod::run_synch_class
;
966 fun
= (ffi_closure_fun
)&_Jv_InterpMethod::run_synch_object
;
971 fun
= (ffi_closure_fun
)&_Jv_InterpMethod::run_class
;
973 fun
= (ffi_closure_fun
)&_Jv_InterpMethod::run_normal
;
976 FFI_PREP_RAW_CLOSURE (&closure
->closure
,
981 self
->ncode
= (void*)closure
;
986 _Jv_JNIMethod::ncode ()
988 using namespace java::lang::reflect
;
990 if (self
->ncode
!= 0)
993 jboolean staticp
= (self
->accflags
& Modifier::STATIC
) != 0;
994 int arg_count
= _Jv_count_arguments (self
->signature
, staticp
);
996 ncode_closure
*closure
=
997 (ncode_closure
*)_Jv_AllocBytes (sizeof (ncode_closure
)
998 + arg_count
* sizeof (ffi_type
*));
1001 init_cif (self
->signature
,
1005 &closure
->arg_types
[0],
1008 ffi_closure_fun fun
;
1010 args_raw_size
= FFI_RAW_SIZE (&closure
->cif
);
1012 // Initialize the argument types and CIF that represent the actual
1013 // underlying JNI function.
1015 if ((self
->accflags
& Modifier::STATIC
))
1017 jni_arg_types
= (ffi_type
**) _Jv_Malloc ((extra_args
+ arg_count
)
1018 * sizeof (ffi_type
*));
1020 jni_arg_types
[offset
++] = &ffi_type_pointer
;
1021 if ((self
->accflags
& Modifier::STATIC
))
1022 jni_arg_types
[offset
++] = &ffi_type_pointer
;
1023 memcpy (&jni_arg_types
[offset
], &closure
->arg_types
[0],
1024 arg_count
* sizeof (ffi_type
*));
1026 if (ffi_prep_cif (&jni_cif
, _Jv_platform_ffi_abi
,
1027 extra_args
+ arg_count
, rtype
,
1028 jni_arg_types
) != FFI_OK
)
1029 throw_internal_error ("ffi_prep_cif failed for JNI function");
1031 JvAssert ((self
->accflags
& Modifier::NATIVE
) != 0);
1033 // FIXME: for now we assume that all native methods for
1034 // interpreted code use JNI.
1035 fun
= (ffi_closure_fun
) &_Jv_JNIMethod::call
;
1037 FFI_PREP_RAW_CLOSURE (&closure
->closure
,
1042 self
->ncode
= (void *) closure
;
1047 /* A _Jv_ResolvedMethod is what is put in the constant pool for a
1048 * MethodRef or InterfacemethodRef. */
1049 static _Jv_ResolvedMethod
*
1050 _Jv_BuildResolvedMethod (_Jv_Method
* method
,
1055 int arg_count
= _Jv_count_arguments (method
->signature
, staticp
);
1057 _Jv_ResolvedMethod
* result
= (_Jv_ResolvedMethod
*)
1058 _Jv_AllocBytes (sizeof (_Jv_ResolvedMethod
)
1059 + arg_count
*sizeof (ffi_type
*));
1061 result
->stack_item_count
1062 = init_cif (method
->signature
,
1066 &result
->arg_types
[0],
1069 result
->vtable_index
= vtable_index
;
1070 result
->method
= method
;
1071 result
->klass
= klass
;
1078 throw_class_format_error (jstring msg
)
1081 ? new java::lang::ClassFormatError (msg
)
1082 : new java::lang::ClassFormatError
);
1086 throw_class_format_error (char *msg
)
1088 throw_class_format_error (JvNewStringLatin1 (msg
));
1092 throw_internal_error (char *msg
)
1094 throw new java::lang::InternalError (JvNewStringLatin1 (msg
));
1098 #endif /* INTERPRETER */