Declaration scope lookup
[babeltrace.git] / types / float.c
1 /*
2 * float.c
3 *
4 * BabelTrace - Float Type Converter
5 *
6 * Copyright 2010, 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 */
18
19 #include <babeltrace/compiler.h>
20 #include <babeltrace/format.h>
21
22 static
23 struct declaration *_float_declaration_new(struct type *type,
24 struct declaration_scope *parent_scope);
25 static
26 void _float_declaration_free(struct declaration *declaration);
27
28 void float_copy(struct stream_pos *destp,
29 const struct format *fdest,
30 struct stream_pos *srcp,
31 const struct format *fsrc,
32 struct declaration *declaration)
33 {
34 struct declaration_float *_float =
35 container_of(declaration, struct declaration_float, p);
36 struct type_float *float_type = _float->type;
37
38 if (fsrc->float_copy == fdest->float_copy) {
39 fsrc->float_copy(destp, srcp, float_type);
40 } else {
41 double v;
42
43 v = fsrc->double_read(srcp, float_type);
44 fdest->double_write(destp, float_type, v);
45 }
46 }
47
48 static
49 void _float_type_free(struct type *type)
50 {
51 struct type_float *float_type =
52 container_of(type, struct type_float, p);
53
54 type_unref(&float_type->exp->p);
55 type_unref(&float_type->mantissa->p);
56 type_unref(&float_type->sign->p);
57 g_free(float_type);
58 }
59
60 struct type_float *
61 float_type_new(const char *name, size_t mantissa_len,
62 size_t exp_len, int byte_order, size_t alignment)
63 {
64 struct type_float *float_type;
65 struct type *type;
66
67 float_type = g_new(struct type_float, 1);
68 type = &float_type->p;
69 type->name = g_quark_from_string(name);
70 type->alignment = alignment;
71 type->copy = float_copy;
72 type->type_free = _float_type_free;
73 type->declaration_new = _float_declaration_new;
74 type->declaration_free = _float_declaration_free;
75 type->ref = 1;
76 float_type->byte_order = byte_order;
77
78 float_type->sign = integer_type_new(NULL, 1,
79 byte_order, false, 1);
80 float_type->mantissa = integer_type_new(NULL, mantissa_len - 1,
81 byte_order, false, 1);
82 float_type->exp = integer_type_new(NULL, exp_len,
83 byte_order, true, 1);
84 return float_type;
85 }
86
87 static
88 struct declaration *
89 _float_declaration_new(struct type *type,
90 struct declaration_scope *parent_scope)
91 {
92 struct type_float *float_type =
93 container_of(type, struct type_float, p);
94 struct declaration_float *_float;
95
96 _float = g_new(struct declaration_float, 1);
97 type_ref(&float_type->p);
98 _float->p.type= type;
99 _float->type= float_type;
100 _float->p.ref = 1;
101 _float->value = 0.0;
102 return &_float->p;
103 }
104
105 static
106 void _float_declaration_free(struct declaration *declaration)
107 {
108 struct declaration_float *_float =
109 container_of(declaration, struct declaration_float, p);
110
111 type_unref(_float->p.type);
112 g_free(_float);
113 }
This page took 0.030511 seconds and 4 git commands to generate.