comparison tango/lib/compiler/llvmdc/typeinfo/ti_float.d @ 132:1700239cab2e trunk

[svn r136] MAJOR UNSTABLE UPDATE!!! Initial commit after moving to Tango instead of Phobos. Lots of bugfixes... This build is not suitable for most things.
author lindquist
date Fri, 11 Jan 2008 17:57:40 +0100
parents
children
comparison
equal deleted inserted replaced
131:5825d48b27d1 132:1700239cab2e
1
2 // float
3
4 module typeinfo.ti_float;
5
6 class TypeInfo_f : TypeInfo
7 {
8 char[] toString() { return "float"; }
9
10 hash_t getHash(void *p)
11 {
12 return *cast(uint *)p;
13 }
14
15 static int _equals(float f1, float f2)
16 {
17 return f1 == f2 ||
18 (f1 !<>= f1 && f2 !<>= f2);
19 }
20
21 static int _compare(float d1, float d2)
22 {
23 if (d1 !<>= d2) // if either are NaN
24 {
25 if (d1 !<>= d1)
26 { if (d2 !<>= d2)
27 return 0;
28 return -1;
29 }
30 return 1;
31 }
32 return (d1 == d2) ? 0 : ((d1 < d2) ? -1 : 1);
33 }
34
35 int equals(void *p1, void *p2)
36 {
37 return _equals(*cast(float *)p1, *cast(float *)p2);
38 }
39
40 int compare(void *p1, void *p2)
41 {
42 return _compare(*cast(float *)p1, *cast(float *)p2);
43 }
44
45 size_t tsize()
46 {
47 return float.sizeof;
48 }
49
50 void swap(void *p1, void *p2)
51 {
52 float t;
53
54 t = *cast(float *)p1;
55 *cast(float *)p1 = *cast(float *)p2;
56 *cast(float *)p2 = t;
57 }
58
59 void[] init()
60 { static float r;
61
62 return (cast(float *)&r)[0 .. 1];
63 }
64 }