CACAO
java_security_VMAccessController.cpp
Go to the documentation of this file.
1 /* src/native/vm/gnuclasspath/java_security_VMAccessController.cpp
2 
3  Copyright (C) 1996-2013
4  CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5 
6  This file is part of CACAO.
7 
8  This program is free software; you can redistribute it and/or
9  modify it under the terms of the GNU General Public License as
10  published by the Free Software Foundation; either version 2, or (at
11  your option) any later version.
12 
13  This program is distributed in the hope that it will be useful, but
14  WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  General Public License for more details.
17 
18  You should have received a copy of the GNU General Public License
19  along with this program; if not, write to the Free Software
20  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  02110-1301, USA.
22 
23 */
24 
25 
26 #include "config.h"
27 
28 #include <stdint.h>
29 
30 #include "native/jni.hpp"
31 #include "native/native.hpp"
32 
33 #if defined(ENABLE_JNI_HEADERS)
34 # include "native/vm/include/java_security_VMAccessController.h"
35 #endif
36 
37 #include "vm/global.hpp"
38 #include "vm/utf8.hpp"
39 #include "vm/vm.hpp"
40 
41 #include "vm/jit/stacktrace.hpp"
42 
43 
44 // Native functions are exported as C functions.
45 extern "C" {
46 
47 /*
48  * Class: java/security/VMAccessController
49  * Method: getStack
50  * Signature: ()[[Ljava/lang/Object;
51  */
53 {
55 }
56 
57 } // extern "C"
58 
59 
60 /* native methods implemented by this file ************************************/
61 
62 static JNINativeMethod methods[] = {
63  { (char*) "getStack", (char*) "()[[Ljava/lang/Object;", (void*) (uintptr_t) &Java_java_security_VMAccessController_getStack },
64 };
65 
66 
67 /* _Jv_java_security_VMAccessController_init ***********************************
68 
69  Register native functions.
70 
71 *******************************************************************************/
72 
74 {
75  Utf8String u = Utf8String::from_utf8("java/security/VMAccessController");
76 
79 }
80 
81 
82 /*
83  * These are local overrides for various environment variables in Emacs.
84  * Please do not remove this and leave it at the end of the file, where
85  * Emacs will automagically detect them.
86  * ---------------------------------------------------------------------
87  * Local variables:
88  * mode: c++
89  * indent-tabs-mode: t
90  * c-basic-offset: 4
91  * tab-width: 4
92  * End:
93  */
Table containing all native methods registered with the VM.
Definition: native.hpp:132
NativeMethods & get_nativemethods()
Definition: vm.hpp:128
void register_methods(Utf8String classname, const JNINativeMethod *methods, size_t count)
Register native methods with the VM.
Definition: native.cpp:242
_Jv_JNIEnv JNIEnv
Definition: jni.hpp:112
#define NATIVE_METHODS_COUNT
Definition: native.hpp:45
void _Jv_java_security_VMAccessController_init(void)
static Utf8String from_utf8(const char *, size_t)
Definition: utf8.cpp:335
static JNINativeMethod methods[]
java_handle_objectarray_t * stacktrace_get_stack(void)
JNIEXPORT jobjectArray JNICALL Java_java_security_VMAccessController_getStack(JNIEnv *env, jclass clazz)
static VM * get_current()
Definition: vm.hpp:99