a617d92a5d92e9e0cf0df9b39d379676e7585968
[cacao.git] / src / native / vm / cldc1.1 / java_lang_Double.c
1 /* src/native/vm/cldc1.1/java_lang_Double.c
2
3    Copyright (C) 2006 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    Contact: cacao@cacaojvm.org
26
27    Authors: Phil Tomsich
28             Christian Thalinger
29
30    $Id: java_lang_VMRuntime.c 5900 2006-11-04 17:30:44Z michi $
31
32 */
33
34
35 #include "config.h"
36 #include "vm/types.h"
37
38 #include "native/jni.h"
39 #include "vm/builtin.h"
40
41
42 /*
43  * Class:     java/lang/Double
44  * Method:    doubleToLongBits
45  * Signature: (D)J
46  */
47 JNIEXPORT s8 JNICALL Java_java_lang_Double_doubleToLongBits(jclass clazz, double doubleValue)
48 {
49         jvalue val;
50         s8  e, f;
51         val.d = doubleValue;
52
53 #if defined(__IEEE_BYTES_LITTLE_ENDIAN)
54         /* On little endian ARM processors when using FPA, word order of
55            doubles is still big endian. So take that into account here. When
56            using VFP, word order of doubles follows byte order. */
57
58 #define SWAP_DOUBLE(a)    (((a) << 32) | (((a) >> 32) & 0x00000000ffffffff))
59
60         val.j = SWAP_DOUBLE(val.j);
61 #endif
62
63         e = val.j & 0x7ff0000000000000LL;
64         f = val.j & 0x000fffffffffffffLL;
65
66         if (e == DBL_POSINF && f != 0L)
67                 val.j = DBL_NAN;
68
69         return val.j;
70 }
71
72
73 /*
74  * Class:     java/lang/Double
75  * Method:    longBitsToDouble
76  * Signature: (J)D
77  */
78 JNIEXPORT s8 JNICALL Java_java_lang_Double_longBitsToDouble(JNIEnv *env, jclass clazz, s8 longValue)
79 {
80         jvalue val;
81         val.j = longValue;
82
83 #if defined(__IEEE_BYTES_LITTLE_ENDIAN)
84         val.j = SWAP_DOUBLE(val.j);
85 #endif
86
87         return val.d;
88 }
89
90
91 /*
92  * These are local overrides for various environment variables in Emacs.
93  * Please do not remove this and leave it at the end of the file, where
94  * Emacs will automagically detect them.
95  * ---------------------------------------------------------------------
96  * Local variables:
97  * mode: c
98  * indent-tabs-mode: t
99  * c-basic-offset: 4
100  * tab-width: 4
101  * End:
102  */