* src/native/vm/cldc1.1/java_lang_Float.cpp (Java_java_lang_Float_intBitsToFloat...
[cacao.git] / src / native / vm / cldc1.1 / java_lang_Float.cpp
1 /* src/native/vm/cldc1.1/java_lang_Float.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 "native/jni.hpp"
31 #include "native/native.hpp"
32
33 #if defined(ENABLE_JNI_HEADERS)
34 # include "native/include/java_lang_Float.h"
35 #endif
36
37 #include "vm/vm.hpp"
38
39 #include "vm/jit/builtin.hpp"
40
41
42 // Native functions are exported as C functions.
43 extern "C" {
44
45 /*
46  * Class:     java/lang/Float
47  * Method:    floatToIntBits
48  * Signature: (F)I
49  */
50 JNIEXPORT jint JNICALL Java_java_lang_Float_floatToIntBits(JNIEnv *env, jclass clazz, jfloat value)
51 {
52         imm_union val;
53         int e, f;
54
55         val.f = value;
56
57         e = val.i & 0x7f800000;
58         f = val.i & 0x007fffff;
59
60         if (e == FLT_POSINF && f != 0)
61                 return FLT_NAN;
62
63         return val.i;
64 }
65
66 /*
67  * Class:     java/lang/Float
68  * Method:    intBitsToFloat
69  * Signature: (I)F
70  */
71 JNIEXPORT jfloat JNICALL Java_java_lang_Float_intBitsToFloat(JNIEnv *env, jclass clazz, jint value)
72 {
73         imm_union val;
74         val.i = value;
75         return val.f;
76 }
77
78 } // extern "C"
79
80
81 /* native methods implemented by this file ************************************/
82  
83 static JNINativeMethod methods[] = {
84         { (char*) "floatToIntBits", (char*) "(F)I", (void*) (uintptr_t) &Java_java_lang_Float_floatToIntBits },
85         { (char*) "intBitsToFloat", (char*) "(I)F", (void*) (uintptr_t) &Java_java_lang_Float_intBitsToFloat }
86 };
87  
88  
89 /* _Jv_java_lang_Float_init ****************************************************
90  
91    Register native functions.
92  
93 *******************************************************************************/
94
95 void _Jv_java_lang_Float_init(void)
96 {
97         utf* u = utf_new_char("java/lang/Float");
98  
99         NativeMethods& nm = VM::get_current()->get_nativemethods();
100         nm.register_methods(u, methods, NATIVE_METHODS_COUNT);
101 }
102
103
104 /*
105  * These are local overrides for various environment variables in Emacs.
106  * Please do not remove this and leave it at the end of the file, where
107  * Emacs will automagically detect them.
108  * ---------------------------------------------------------------------
109  * Local variables:
110  * mode: c++
111  * indent-tabs-mode: t
112  * c-basic-offset: 4
113  * tab-width: 4
114  * End:
115  */