#include <classfile.h>
Uses LOCAL_ as a prefix to signify an item that is not part of the JVM spec itself, but an implementation detail.
Definition at line 355 of file classfile.h.
Data Fields | |
jvm_attribute_index | codeatridxJVM |
JVM method attribute table index of the code for this method. | |
jvm_attribute_index | excpatridxJVM |
JVM method attribute table index of the exceptions for this method A valid attribute index here is optional. | |
jvm_native_method_ordinal | nmordJVM |
JVM local native method ordinal number of this method if it is a native method. |
|
JVM method attribute table index of the code for this method. It is required to have a valid attribute index here. Definition at line 357 of file classfile.h. Referenced by class_load_from_prchar(), classfile_loadclassdata(), object_run_method(), and opcode_run(). |
|
JVM method attribute table index of the exceptions for this method A valid attribute index here is optional. Methods are not required to use exceptions. Definition at line 363 of file classfile.h. Referenced by classfile_loadclassdata(), object_run_method(), and opcode_run(). |
|
JVM local native method ordinal number of this method if it is a native method. Not applicable otherwise. If the native method is not a local one, that is, not implemented within the core JVM code, then this value must be set to JVMCFG_JLOBJECT_NMO_NULL (as known to the JVM core code), which is the same as JLOBJECT_NMO_NULL (as known to the outside world throught the JNI interface). Definition at line 369 of file classfile.h. Referenced by classfile_loadclassdata(). |