diff options
Diffstat (limited to 'libjava/include/java-interp.h')
-rw-r--r-- | libjava/include/java-interp.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libjava/include/java-interp.h b/libjava/include/java-interp.h index de1d88f452e..e3f96713ce7 100644 --- a/libjava/include/java-interp.h +++ b/libjava/include/java-interp.h @@ -13,6 +13,7 @@ details. */ #include <jvm.h> #include <java-cpool.h> +#include <gnu/gcj/runtime/NameFinder.h> #ifdef INTERPRETER @@ -138,6 +139,7 @@ class _Jv_InterpMethod : public _Jv_MethodBase friend class _Jv_ClassReader; friend class _Jv_BytecodeVerifier; + friend class gnu::gcj::runtime::NameFinder; friend void _Jv_PrepareClass(jclass); }; @@ -205,6 +207,28 @@ public: } }; +// A structure of this type is used to link together interpreter +// invocations on the stack. +struct _Jv_MethodChain +{ + const _Jv_InterpMethod *self; + _Jv_MethodChain **ptr; + _Jv_MethodChain *next; + + _Jv_MethodChain (const _Jv_InterpMethod *s, _Jv_MethodChain **n) + { + self = s; + ptr = n; + next = *n; + *n = this; + } + + ~_Jv_MethodChain () + { + *ptr = next; + } +}; + #endif /* INTERPRETER */ #endif /* __JAVA_INTERP_H__ */ |