* Removed all Id tags.
[cacao.git] / src / native / vm / cldc1.1 / java_lang_Math.c
1 /* src/native/vm/cldc1.1/java_lang_Math.c
2
3    Copyright (C) 2006, 2007 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25 */
26
27
28 #include "config.h"
29 #include "vm/types.h"
30
31 #include "fdlibm/fdlibm.h"
32
33 #include "native/jni.h"
34 #include "native/native.h"
35
36 #include "native/include/java_lang_Math.h"
37
38
39 /* native methods implemented by this file ************************************/
40  
41 static JNINativeMethod methods[] = {
42         { "ceil",  "(D)D", (void *) (ptrint) &Java_java_lang_Math_ceil  },
43         { "cos",   "(D)D", (void *) (ptrint) &Java_java_lang_Math_cos   },
44         { "floor", "(D)D", (void *) (ptrint) &Java_java_lang_Math_floor },
45         { "sin",   "(D)D", (void *) (ptrint) &Java_java_lang_Math_sin   },
46         { "sqrt",  "(D)D", (void *) (ptrint) &Java_java_lang_Math_sqrt  },
47         { "tan",   "(D)D", (void *) (ptrint) &Java_java_lang_Math_tan   },
48 };
49  
50  
51 /* _Jv_java_lang_Math_init *****************************************************
52  
53    Register native functions.
54  
55 *******************************************************************************/
56  
57 void _Jv_java_lang_Math_init(void)
58 {
59         utf *u;
60  
61         u = utf_new_char("java/lang/Math");
62  
63         native_method_register(u, methods, NATIVE_METHODS_COUNT);
64 }
65
66
67 /*
68  * Class:     java/lang/Math
69  * Method:    ceil
70  * Signature: (D)D
71  */
72 JNIEXPORT double JNICALL Java_java_lang_Math_ceil(JNIEnv *env, jclass clazz, double a)
73 {
74         return ceil(a);
75 }
76
77
78 /*
79  * Class:     java/lang/Math
80  * Method:    cos
81  * Signature: (D)D
82  */
83 JNIEXPORT double JNICALL Java_java_lang_Math_cos(JNIEnv *env, jclass clazz, double a)
84 {
85         return cos(a);
86 }
87
88
89 /*
90  * Class:     java/lang/Math
91  * Method:    floor
92  * Signature: (D)D
93  */
94 JNIEXPORT double JNICALL Java_java_lang_Math_floor(JNIEnv *env, jclass clazz, double a)
95 {
96         return floor(a);
97 }
98
99
100 /*
101  * Class:     java/lang/Math
102  * Method:    sin
103  * Signature: (D)D
104  */
105 JNIEXPORT double JNICALL Java_java_lang_Math_sin(JNIEnv *env, jclass clazz, double a)
106 {
107         return sin(a);
108 }
109
110
111 /*
112  * Class:     java/lang/Math
113  * Method:    sqrt
114  * Signature: (D)D
115  */
116 JNIEXPORT double JNICALL Java_java_lang_Math_sqrt(JNIEnv *env, jclass clazz, double a)
117 {
118         return sqrt(a);
119 }
120
121
122 /*
123  * Class:     java/lang/Math
124  * Method:    tan
125  * Signature: (D)D
126  */
127 JNIEXPORT double JNICALL Java_java_lang_Math_tan(JNIEnv *env, jclass clazz, double a)
128 {
129         return tan(a);
130 }
131
132
133 /*
134  * These are local overrides for various environment variables in Emacs.
135  * Please do not remove this and leave it at the end of the file, where
136  * Emacs will automagically detect them.
137  * ---------------------------------------------------------------------
138  * Local variables:
139  * mode: c
140  * indent-tabs-mode: t
141  * c-basic-offset: 4
142  * tab-width: 4
143  * End:
144  * vim:noexpandtab:sw=4:ts=4:
145  */