Go to the source code of this file.
|
| cacao |
| This file contains the Instruction class.
|
|
|
static bool | method_is_builtin (methodinfo *m) |
|
void | method_init (void) |
|
bool | method_load (cacao::ClassBuffer &cb, methodinfo *m, cacao::DescriptorPool &descpool) |
|
void | method_free (methodinfo *m) |
|
bool | method_canoverwrite (methodinfo *m, methodinfo *old) |
|
methodinfo * | method_new_builtin (builtintable_entry *bte) |
|
methodinfo * | method_vftbl_lookup (vftbl_t *vftbl, methodinfo *m) |
|
int32_t | method_get_parametercount (methodinfo *m) |
|
java_handle_objectarray_t * | method_get_parametertypearray (methodinfo *m) |
|
java_handle_objectarray_t * | method_get_exceptionarray (methodinfo *m) |
|
classinfo * | method_returntype_get (methodinfo *m) |
|
void | method_add_assumption_monomorphic (methodinfo *m, methodinfo *caller) |
|
void | method_break_assumption_monomorphic (methodinfo *m, method_worklist **wl) |
|
s4 | method_count_implementations (methodinfo *m, classinfo *c, methodinfo **found) |
|
java_handle_bytearray_t * | method_get_annotations (methodinfo *m) |
|
java_handle_bytearray_t * | method_get_parameterannotations (methodinfo *m) |
|
java_handle_bytearray_t * | method_get_annotationdefault (methodinfo *m) |
|
void | method_printflags (methodinfo *m) |
|
void | method_print (methodinfo *m) |
|
void | method_println (methodinfo *m) |
|
void | method_methodref_print (constant_FMIref *mr) |
|
void | method_methodref_println (constant_FMIref *mr) |
|
bool | method_matches (methodinfo *m, const char *name) |
|
OStream & | cacao::operator<< (OStream &OS, const struct methodinfo &m) |
|
int32_t method_get_parametercount |
( |
methodinfo * |
m | ) |
|
bool method_matches |
( |
methodinfo * |
m, |
|
|
const char * |
name |
|
) |
| |
methodinfo* method_java_lang_reflect_Method_invoke |