2 * Copyright (C) 2008 The Android Open Source Project
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 * JNI innards, common to the regular and "checked" interfaces.
19 #ifndef _DALVIK_JNIINTERNAL
20 #define _DALVIK_JNIINTERNAL
24 /* system init/shutdown */
25 bool dvmJniStartup(void);
26 void dvmJniShutdown(void);
29 * Our data structures for JNIEnv and JavaVM.
31 * Native code thinks it has a pointer to a pointer. We know better.
35 typedef struct JNIEnvExt {
36 const struct JNINativeInterface* funcTable; /* must be first */
38 const struct JNINativeInterface* baseFuncTable;
40 /* pointer to the VM we are a part of */
46 /* if nonzero, we are in a "critical" JNI call */
49 /* keep a copy of this here for speed */
52 struct JNIEnvExt* prev;
53 struct JNIEnvExt* next;
56 typedef struct JavaVMExt {
57 const struct JNIInvokeInterface* funcTable; /* must be first */
59 const struct JNIInvokeInterface* baseFuncTable;
61 /* if multiple VMs are desired, add doubly-linked list stuff here */
63 /* per-VM feature flags */
68 /* head of list of JNIEnvs associated with this VM */
70 pthread_mutex_t envListLock;
74 * Native function return type; used by dvmPlatformInvoke().
76 * This is part of Method.jniArgInfo, and must fit in 3 bits.
77 * Note: Assembly code in arch/<arch>/Call<arch>.S relies on
78 * the enum values defined here.
80 typedef enum DalvikJniReturnType {
81 DALVIK_JNI_RETURN_VOID = 0, /* must be zero */
82 DALVIK_JNI_RETURN_FLOAT = 1,
83 DALVIK_JNI_RETURN_DOUBLE = 2,
84 DALVIK_JNI_RETURN_S8 = 3,
85 DALVIK_JNI_RETURN_S4 = 4,
86 DALVIK_JNI_RETURN_S2 = 5,
87 DALVIK_JNI_RETURN_U2 = 6,
88 DALVIK_JNI_RETURN_S1 = 7
89 } DalvikJniReturnType;
91 #define DALVIK_JNI_NO_ARG_INFO 0x80000000
92 #define DALVIK_JNI_RETURN_MASK 0x70000000
93 #define DALVIK_JNI_RETURN_SHIFT 28
94 #define DALVIK_JNI_COUNT_MASK 0x0f000000
95 #define DALVIK_JNI_COUNT_SHIFT 24
99 * Pop the JNI local stack when we return from a native method. "saveArea"
100 * points to the StackSaveArea for the method we're leaving.
102 * (This may be implemented directly in assembly in mterp, so changes here
103 * may only affect the portable interpreter.)
105 INLINE void dvmPopJniLocals(Thread* self, StackSaveArea* saveArea)
107 #ifdef USE_INDIRECT_REF
108 self->jniLocalRefTable.segmentState.all = saveArea->xtra.localRefCookie;
110 self->jniLocalRefTable.nextEntry = saveArea->xtra.localRefCookie;
115 * Set the envThreadId field.
117 INLINE void dvmSetJniEnvThreadId(JNIEnv* pEnv, Thread* self)
119 ((JNIEnvExt*)pEnv)->envThreadId = self->threadId;
120 ((JNIEnvExt*)pEnv)->self = self;
124 * JNI call bridges. Not called directly.
126 * The "Check" versions are used when CheckJNI is enabled.
128 void dvmCallJNIMethod_general(const u4* args, JValue* pResult,
129 const Method* method, Thread* self);
130 void dvmCallJNIMethod_synchronized(const u4* args, JValue* pResult,
131 const Method* method, Thread* self);
132 void dvmCallJNIMethod_virtualNoRef(const u4* args, JValue* pResult,
133 const Method* method, Thread* self);
134 void dvmCallJNIMethod_staticNoRef(const u4* args, JValue* pResult,
135 const Method* method, Thread* self);
136 void dvmCheckCallJNIMethod_general(const u4* args, JValue* pResult,
137 const Method* method, Thread* self);
138 void dvmCheckCallJNIMethod_synchronized(const u4* args, JValue* pResult,
139 const Method* method, Thread* self);
140 void dvmCheckCallJNIMethod_virtualNoRef(const u4* args, JValue* pResult,
141 const Method* method, Thread* self);
142 void dvmCheckCallJNIMethod_staticNoRef(const u4* args, JValue* pResult,
143 const Method* method, Thread* self);
146 * Configure "method" to use the JNI bridge to call "func".
148 void dvmUseJNIBridge(Method* method, void* func);
152 * Enable the "checked" versions.
154 void dvmUseCheckedJniEnv(JNIEnvExt* pEnv);
155 void dvmUseCheckedJniVm(JavaVMExt* pVm);
156 void dvmLateEnableCheckedJni(void);
159 * Decode a local, global, or weak-global reference.
161 #ifdef USE_INDIRECT_REF
162 Object* dvmDecodeIndirectRef(JNIEnv* env, jobject jobj);
164 /* use an inline to ensure this is a no-op */
165 INLINE Object* dvmDecodeIndirectRef(JNIEnv* env, jobject jobj) {
166 return (Object*) jobj;
171 * Verify that a reference passed in from native code is valid. Returns
172 * an indication of local/global/invalid.
174 jobjectRefType dvmGetJNIRefType(JNIEnv* env, jobject jobj);
177 * Get the last method called on the interp stack. This is the method
178 * "responsible" for calling into JNI.
180 const Method* dvmGetCurrentJNIMethod(void);
183 * Create/destroy a JNIEnv for the current thread.
185 JNIEnv* dvmCreateJNIEnv(Thread* self);
186 void dvmDestroyJNIEnv(JNIEnv* env);
189 * Find the JNIEnv associated with the current thread.
191 JNIEnvExt* dvmGetJNIEnvForThread(void);
194 * Extract the return type enum from the "jniArgInfo" value.
196 DalvikJniReturnType dvmGetArgInfoReturnType(int jniArgInfo);
199 * Release all MonitorEnter-acquired locks that are still held. Called at
200 * DetachCurrentThread time.
202 void dvmReleaseJniMonitors(Thread* self);
204 #endif /*_DALVIK_JNIINTERNAL*/