f65adb551f4264ae7fb93bc408f8533ea503535f
[cacao.git] / src / native / vm / cldc1.1 / java_lang_Math.cpp
1 /* src/native/vm/cldc1.1/java_lang_Math.cpp
2
3    Copyright (C) 2006, 2007, 2008
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 "fdlibm/fdlibm.h"
31
32 #include "native/jni.h"
33 #include "native/native.h"
34
35 #if defined(ENABLE_JNI_HEADERS)
36 # include "native/include/java_lang_Math.h"
37 #endif
38
39
40 // Native functions are exported as C functions.
41 extern "C" {
42
43 /*
44  * Class:     java/lang/Math
45  * Method:    ceil
46  * Signature: (D)D
47  */
48 JNIEXPORT jdouble JNICALL Java_java_lang_Math_ceil(JNIEnv *env, jclass clazz, jdouble a)
49 {
50         return ceil(a);
51 }
52
53
54 /*
55  * Class:     java/lang/Math
56  * Method:    cos
57  * Signature: (D)D
58  */
59 JNIEXPORT jdouble JNICALL Java_java_lang_Math_cos(JNIEnv *env, jclass clazz, jdouble a)
60 {
61         return cos(a);
62 }
63
64
65 /*
66  * Class:     java/lang/Math
67  * Method:    floor
68  * Signature: (D)D
69  */
70 JNIEXPORT jdouble JNICALL Java_java_lang_Math_floor(JNIEnv *env, jclass clazz, jdouble a)
71 {
72         return floor(a);
73 }
74
75
76 /*
77  * Class:     java/lang/Math
78  * Method:    sin
79  * Signature: (D)D
80  */
81 JNIEXPORT jdouble JNICALL Java_java_lang_Math_sin(JNIEnv *env, jclass clazz, jdouble a)
82 {
83         return sin(a);
84 }
85
86
87 /*
88  * Class:     java/lang/Math
89  * Method:    sqrt
90  * Signature: (D)D
91  */
92 JNIEXPORT jdouble JNICALL Java_java_lang_Math_sqrt(JNIEnv *env, jclass clazz, jdouble a)
93 {
94         return sqrt(a);
95 }
96
97
98 /*
99  * Class:     java/lang/Math
100  * Method:    tan
101  * Signature: (D)D
102  */
103 JNIEXPORT jdouble JNICALL Java_java_lang_Math_tan(JNIEnv *env, jclass clazz, jdouble a)
104 {
105         return tan(a);
106 }
107
108 } // extern "C"
109
110
111 /* native methods implemented by this file ************************************/
112  
113 static JNINativeMethod methods[] = {
114         { (char*) "ceil",  (char*) "(D)D", (void*) (uintptr_t) &Java_java_lang_Math_ceil  },
115         { (char*) "cos",   (char*) "(D)D", (void*) (uintptr_t) &Java_java_lang_Math_cos   },
116         { (char*) "floor", (char*) "(D)D", (void*) (uintptr_t) &Java_java_lang_Math_floor },
117         { (char*) "sin",   (char*) "(D)D", (void*) (uintptr_t) &Java_java_lang_Math_sin   },
118         { (char*) "sqrt",  (char*) "(D)D", (void*) (uintptr_t) &Java_java_lang_Math_sqrt  },
119         { (char*) "tan",   (char*) "(D)D", (void*) (uintptr_t) &Java_java_lang_Math_tan   },
120 };
121  
122  
123 /* _Jv_java_lang_Math_init *****************************************************
124  
125    Register native functions.
126  
127 *******************************************************************************/
128
129 // FIXME
130 extern "C" { 
131 void _Jv_java_lang_Math_init(void)
132 {
133         utf *u;
134  
135         u = utf_new_char("java/lang/Math");
136  
137         native_method_register(u, methods, NATIVE_METHODS_COUNT);
138 }
139 }
140
141
142 /*
143  * These are local overrides for various environment variables in Emacs.
144  * Please do not remove this and leave it at the end of the file, where
145  * Emacs will automagically detect them.
146  * ---------------------------------------------------------------------
147  * Local variables:
148  * mode: c++
149  * indent-tabs-mode: t
150  * c-basic-offset: 4
151  * tab-width: 4
152  * End:
153  * vim:noexpandtab:sw=4:ts=4:
154  */