82fe3aa13bce9b039b865e8afd9c5ce72d5aae95
[libfirm] / ir / tv / strcalc.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief    Provides basic mathematical operations on values represented as strings.
23  * @date     2003
24  * @author   Mathias Heil
25  * @version  $Id$
26  */
27
28 #include "config.h"
29
30 #include <stdlib.h>
31 #include <string.h>   /* memset/memcmp */
32 #include <assert.h>   /* assertions */
33 #include <stdio.h>    /* output for error messages */
34 #include <limits.h>   /* definition of LONG_MIN, used in sc_get_val_from_long */
35
36 #include "strcalc.h"
37 #include "xmalloc.h"
38 #include "error.h"
39
40 /*
41  * local definitions and macros
42  */
43 #define CLEAR_BUFFER(b) assert(b); memset(b, SC_0, calc_buffer_size)
44 #define _val(a) ((a)-SC_0)
45 #define _digit(a) ((a)+SC_0)
46 #define _bitisset(digit, pos) (and_table[_val(digit)][_val(shift_table[pos])] != SC_0)
47
48 #define fail_char(a, b, c, d) _fail_char((a), (b), (c), (d), __FILE__,  __LINE__)
49
50 /* shortcut output for debugging */
51 #  define sc_print_hex(a) sc_print((a), 0, SC_HEX, 0)
52 #  define sc_print_dec(a) sc_print((a), 0, SC_DEC, 1)
53 #  define sc_print_oct(a) sc_print((a), 0, SC_OCT, 0)
54 #  define sc_print_bin(a) sc_print((a), 0, SC_BIN, 0)
55
56 #ifdef STRCALC_DEBUG_PRINTCOMP
57 #  define DEBUGPRINTF_COMPUTATION(x) printf x
58 #else
59 #  define DEBUGPRINTF_COMPUTATION(x) ((void)0)
60 #endif
61 #ifdef STRCALC_DEBUG
62 #  define DEBUGPRINTF(x) printf x
63 #else
64 #  define DEBUGPRINTF(x) ((void)0)
65 #endif
66
67
68 /*
69  * private variables
70  */
71 static char *calc_buffer = NULL;    /* buffer holding all results */
72 static char *output_buffer = NULL;  /* buffer for output */
73 static int bit_pattern_size;        /* maximum number of bits */
74 static int calc_buffer_size;        /* size of internally stored values */
75 static int max_value_size;          /* maximum size of values */
76
77 static int carry_flag;              /**< some computation set the carry_flag:
78                                          - right shift if bits were lost due to shifting
79                                          - division if there was a remainder
80                                          However, the meaning of carry is machine dependent
81                                          and often defined in other ways! */
82
83 static const char sex_digit[4] = { SC_E, SC_C, SC_8, SC_0 };
84 static const char zex_digit[4] = { SC_1, SC_3, SC_7, SC_F };
85 static const char max_digit[4] = { SC_0, SC_1, SC_3, SC_7 };
86 static const char min_digit[4] = { SC_F, SC_E, SC_C, SC_8 };
87
88 static const char not_table[16] = { SC_F, SC_E, SC_D, SC_C, SC_B, SC_A, SC_9, SC_8,
89                               SC_7, SC_6, SC_5, SC_4, SC_3, SC_2, SC_1, SC_0 };
90
91 static const char shift_table[4] = { SC_1, SC_2, SC_4, SC_8 };
92
93 static const char and_table[16][16] = {
94                             { SC_0, SC_0, SC_0, SC_0, SC_0, SC_0, SC_0, SC_0,
95                               SC_0, SC_0, SC_0, SC_0, SC_0, SC_0, SC_0, SC_0 },
96
97                             { SC_0, SC_1, SC_0, SC_1, SC_0, SC_1, SC_0, SC_1,
98                               SC_0, SC_1, SC_0, SC_1, SC_0, SC_1, SC_0, SC_1 },
99
100                             { SC_0, SC_0, SC_2, SC_2, SC_0, SC_0, SC_2, SC_2,
101                               SC_0, SC_0, SC_2, SC_2, SC_0, SC_0, SC_2, SC_2 },
102
103                             { SC_0, SC_1, SC_2, SC_3, SC_0, SC_1, SC_2, SC_3,
104                               SC_0, SC_1, SC_2, SC_3, SC_0, SC_1, SC_2, SC_3 },
105
106                             { SC_0, SC_0, SC_0, SC_0, SC_4, SC_4, SC_4, SC_4,
107                               SC_0, SC_0, SC_0, SC_0, SC_4, SC_4, SC_4, SC_4 },
108
109                             { SC_0, SC_1, SC_0, SC_1, SC_4, SC_5, SC_4, SC_5,
110                               SC_0, SC_1, SC_0, SC_1, SC_4, SC_5, SC_4, SC_5 },
111
112                             { SC_0, SC_0, SC_2, SC_2, SC_4, SC_4, SC_6, SC_6,
113                               SC_0, SC_0, SC_2, SC_2, SC_4, SC_4, SC_6, SC_6 },
114
115                             { SC_0, SC_1, SC_2, SC_3, SC_4, SC_5, SC_6, SC_7,
116                               SC_0, SC_1, SC_2, SC_3, SC_4, SC_5, SC_6, SC_7 },
117
118                             { SC_0, SC_0, SC_0, SC_0, SC_0, SC_0, SC_0, SC_0,
119                               SC_8, SC_8, SC_8, SC_8, SC_8, SC_8, SC_8, SC_8 },
120
121                             { SC_0, SC_1, SC_0, SC_1, SC_0, SC_1, SC_0, SC_1,
122                               SC_8, SC_9, SC_8, SC_9, SC_8, SC_9, SC_8, SC_9 },
123
124                             { SC_0, SC_0, SC_2, SC_2, SC_0, SC_0, SC_2, SC_2,
125                               SC_8, SC_8, SC_A, SC_A, SC_8, SC_8, SC_A, SC_A },
126
127                             { SC_0, SC_1, SC_2, SC_3, SC_0, SC_1, SC_2, SC_3,
128                               SC_8, SC_9, SC_A, SC_B, SC_8, SC_9, SC_A, SC_B },
129
130                             { SC_0, SC_0, SC_0, SC_0, SC_4, SC_4, SC_4, SC_4,
131                               SC_8, SC_8, SC_8, SC_8, SC_C, SC_C, SC_C, SC_C },
132
133                             { SC_0, SC_1, SC_0, SC_1, SC_4, SC_5, SC_4, SC_5,
134                               SC_8, SC_9, SC_8, SC_9, SC_C, SC_D, SC_C, SC_D },
135
136                             { SC_0, SC_0, SC_2, SC_2, SC_4, SC_4, SC_6, SC_6,
137                               SC_8, SC_8, SC_A, SC_A, SC_C, SC_C, SC_E, SC_E },
138
139                             { SC_0, SC_1, SC_2, SC_3, SC_4, SC_5, SC_6, SC_7,
140                               SC_8, SC_9, SC_A, SC_B, SC_C, SC_D, SC_E, SC_F } };
141
142 static const char or_table[16][16] = {
143                             { SC_0, SC_1, SC_2, SC_3, SC_4, SC_5, SC_6, SC_7,
144                               SC_8, SC_9, SC_A, SC_B, SC_C, SC_D, SC_E, SC_F },
145
146                             { SC_1, SC_1, SC_3, SC_3, SC_5, SC_5, SC_7, SC_7,
147                               SC_9, SC_9, SC_B, SC_B, SC_D, SC_D, SC_F, SC_F },
148
149                             { SC_2, SC_3, SC_2, SC_3, SC_6, SC_7, SC_6, SC_7,
150                               SC_A, SC_B, SC_A, SC_B, SC_E, SC_F, SC_E, SC_F },
151
152                             { SC_3, SC_3, SC_3, SC_3, SC_7, SC_7, SC_7, SC_7,
153                               SC_B, SC_B, SC_B, SC_B, SC_F, SC_F, SC_F, SC_F },
154
155                             { SC_4, SC_5, SC_6, SC_7, SC_4, SC_5, SC_6, SC_7,
156                               SC_C, SC_D, SC_E, SC_F, SC_C, SC_D, SC_E, SC_F },
157
158                             { SC_5, SC_5, SC_7, SC_7, SC_5, SC_5, SC_7, SC_7,
159                               SC_D, SC_D, SC_F, SC_F, SC_D, SC_D, SC_F, SC_F },
160
161                             { SC_6, SC_7, SC_6, SC_7, SC_6, SC_7, SC_6, SC_7,
162                               SC_E, SC_F, SC_E, SC_F, SC_E, SC_F, SC_E, SC_F },
163
164                             { SC_7, SC_7, SC_7, SC_7, SC_7, SC_7, SC_7, SC_7,
165                               SC_F, SC_F, SC_F, SC_F, SC_F, SC_F, SC_F, SC_F },
166
167                             { SC_8, SC_9, SC_A, SC_B, SC_C, SC_D, SC_E, SC_F,
168                               SC_8, SC_9, SC_A, SC_B, SC_C, SC_D, SC_E, SC_F },
169
170                             { SC_9, SC_9, SC_B, SC_B, SC_D, SC_D, SC_F, SC_F,
171                               SC_9, SC_9, SC_B, SC_B, SC_D, SC_D, SC_F, SC_F },
172
173                             { SC_A, SC_B, SC_A, SC_B, SC_E, SC_F, SC_E, SC_F,
174                               SC_A, SC_B, SC_A, SC_B, SC_E, SC_F, SC_E, SC_F },
175
176                             { SC_B, SC_B, SC_B, SC_B, SC_F, SC_F, SC_F, SC_F,
177                               SC_B, SC_B, SC_B, SC_B, SC_F, SC_F, SC_F, SC_F },
178
179                             { SC_C, SC_D, SC_E, SC_F, SC_C, SC_D, SC_E, SC_F,
180                               SC_C, SC_D, SC_E, SC_F, SC_C, SC_D, SC_E, SC_F },
181
182                             { SC_D, SC_D, SC_F, SC_F, SC_D, SC_D, SC_F, SC_F,
183                               SC_D, SC_D, SC_F, SC_F, SC_D, SC_D, SC_F, SC_F },
184
185                             { SC_E, SC_F, SC_E, SC_F, SC_E, SC_F, SC_E, SC_F,
186                               SC_E, SC_F, SC_E, SC_F, SC_E, SC_F, SC_E, SC_F },
187
188                             { SC_F, SC_F, SC_F, SC_F, SC_F, SC_F, SC_F, SC_F,
189                               SC_F, SC_F, SC_F, SC_F, SC_F, SC_F, SC_F, SC_F } };
190
191 static char const xor_table[16][16] = {
192                              { SC_0, SC_1, SC_2, SC_3, SC_4, SC_5, SC_6, SC_7,
193                                SC_8, SC_9, SC_A, SC_B, SC_C, SC_D, SC_E, SC_F },
194
195                              { SC_1, SC_0, SC_3, SC_2, SC_5, SC_4, SC_7, SC_6,
196                                SC_9, SC_8, SC_B, SC_A, SC_D, SC_C, SC_F, SC_E },
197
198                              { SC_2, SC_3, SC_0, SC_1, SC_6, SC_7, SC_4, SC_5,
199                                SC_A, SC_B, SC_8, SC_9, SC_E, SC_F, SC_C, SC_D },
200
201                              { SC_3, SC_2, SC_1, SC_0, SC_7, SC_6, SC_5, SC_4,
202                                SC_B, SC_A, SC_9, SC_8, SC_F, SC_E, SC_D, SC_C },
203
204                              { SC_4, SC_5, SC_6, SC_7, SC_0, SC_1, SC_2, SC_3,
205                                SC_C, SC_D, SC_E, SC_F, SC_8, SC_9, SC_A, SC_B },
206
207                              { SC_5, SC_4, SC_7, SC_6, SC_1, SC_0, SC_3, SC_2,
208                                SC_D, SC_C, SC_F, SC_E, SC_9, SC_8, SC_B, SC_A },
209
210                              { SC_6, SC_7, SC_4, SC_5, SC_2, SC_3, SC_0, SC_1,
211                                SC_E, SC_F, SC_C, SC_D, SC_A, SC_B, SC_8, SC_9 },
212
213                              { SC_7, SC_6, SC_5, SC_4, SC_3, SC_2, SC_1, SC_0,
214                                SC_F, SC_E, SC_D, SC_C, SC_B, SC_A, SC_9, SC_8 },
215
216                              { SC_8, SC_9, SC_A, SC_B, SC_C, SC_D, SC_E, SC_F,
217                                SC_0, SC_1, SC_2, SC_3, SC_4, SC_5, SC_6, SC_7 },
218
219                              { SC_9, SC_8, SC_B, SC_A, SC_D, SC_C, SC_F, SC_E,
220                                SC_1, SC_0, SC_3, SC_2, SC_5, SC_4, SC_7, SC_6 },
221
222                              { SC_A, SC_B, SC_8, SC_9, SC_E, SC_F, SC_C, SC_D,
223                                SC_2, SC_3, SC_0, SC_1, SC_6, SC_7, SC_4, SC_5 },
224
225                              { SC_B, SC_A, SC_9, SC_8, SC_F, SC_E, SC_D, SC_C,
226                                SC_3, SC_2, SC_1, SC_0, SC_7, SC_6, SC_5, SC_4 },
227
228                              { SC_C, SC_D, SC_E, SC_F, SC_8, SC_9, SC_A, SC_B,
229                                SC_4, SC_5, SC_6, SC_7, SC_0, SC_1, SC_2, SC_3 },
230
231                              { SC_D, SC_C, SC_F, SC_E, SC_9, SC_8, SC_B, SC_A,
232                                SC_5, SC_4, SC_7, SC_6, SC_1, SC_0, SC_3, SC_2 },
233
234                              { SC_E, SC_F, SC_C, SC_D, SC_A, SC_B, SC_8, SC_9,
235                                SC_6, SC_7, SC_4, SC_5, SC_2, SC_3, SC_0, SC_1 },
236
237                              { SC_F, SC_E, SC_D, SC_C, SC_B, SC_A, SC_9, SC_8,
238                                SC_7, SC_6, SC_5, SC_4, SC_3, SC_2, SC_1, SC_0 }
239                                 };
240
241 static char const add_table[16][16][2] = {
242                        { {SC_0, SC_0}, {SC_1, SC_0}, {SC_2, SC_0}, {SC_3, SC_0},
243                          {SC_4, SC_0}, {SC_5, SC_0}, {SC_6, SC_0}, {SC_7, SC_0},
244                          {SC_8, SC_0}, {SC_9, SC_0}, {SC_A, SC_0}, {SC_B, SC_0},
245                          {SC_C, SC_0}, {SC_D, SC_0}, {SC_E, SC_0}, {SC_F, SC_0} },
246
247                        { {SC_1, SC_0}, {SC_2, SC_0}, {SC_3, SC_0}, {SC_4, SC_0},
248                          {SC_5, SC_0}, {SC_6, SC_0}, {SC_7, SC_0}, {SC_8, SC_0},
249                          {SC_9, SC_0}, {SC_A, SC_0}, {SC_B, SC_0}, {SC_C, SC_0},
250                          {SC_D, SC_0}, {SC_E, SC_0}, {SC_F, SC_0}, {SC_0, SC_1} },
251
252                        { {SC_2, SC_0}, {SC_3, SC_0}, {SC_4, SC_0}, {SC_5, SC_0},
253                          {SC_6, SC_0}, {SC_7, SC_0}, {SC_8, SC_0}, {SC_9, SC_0},
254                          {SC_A, SC_0}, {SC_B, SC_0}, {SC_C, SC_0}, {SC_D, SC_0},
255                          {SC_E, SC_0}, {SC_F, SC_0}, {SC_0, SC_1}, {SC_1, SC_1} },
256
257                        { {SC_3, SC_0}, {SC_4, SC_0}, {SC_5, SC_0}, {SC_6, SC_0},
258                          {SC_7, SC_0}, {SC_8, SC_0}, {SC_9, SC_0}, {SC_A, SC_0},
259                          {SC_B, SC_0}, {SC_C, SC_0}, {SC_D, SC_0}, {SC_E, SC_0},
260                          {SC_F, SC_0}, {SC_0, SC_1}, {SC_1, SC_1}, {SC_2, SC_1} },
261
262                        { {SC_4, SC_0}, {SC_5, SC_0}, {SC_6, SC_0}, {SC_7, SC_0},
263                          {SC_8, SC_0}, {SC_9, SC_0}, {SC_A, SC_0}, {SC_B, SC_0},
264                          {SC_C, SC_0}, {SC_D, SC_0}, {SC_E, SC_0}, {SC_F, SC_0},
265                          {SC_0, SC_1}, {SC_1, SC_1}, {SC_2, SC_1}, {SC_3, SC_1} },
266
267                        { {SC_5, SC_0}, {SC_6, SC_0}, {SC_7, SC_0}, {SC_8, SC_0},
268                          {SC_9, SC_0}, {SC_A, SC_0}, {SC_B, SC_0}, {SC_C, SC_0},
269                          {SC_D, SC_0}, {SC_E, SC_0}, {SC_F, SC_0}, {SC_0, SC_1},
270                          {SC_1, SC_1}, {SC_2, SC_1}, {SC_3, SC_1}, {SC_4, SC_1} },
271
272                        { {SC_6, SC_0}, {SC_7, SC_0}, {SC_8, SC_0}, {SC_9, SC_0},
273                          {SC_A, SC_0}, {SC_B, SC_0}, {SC_C, SC_0}, {SC_D, SC_0},
274                          {SC_E, SC_0}, {SC_F, SC_0}, {SC_0, SC_1}, {SC_1, SC_1},
275                          {SC_2, SC_1}, {SC_3, SC_1}, {SC_4, SC_1}, {SC_5, SC_1} },
276
277                        { {SC_7, SC_0}, {SC_8, SC_0}, {SC_9, SC_0}, {SC_A, SC_0},
278                          {SC_B, SC_0}, {SC_C, SC_0}, {SC_D, SC_0}, {SC_E, SC_0},
279                          {SC_F, SC_0}, {SC_0, SC_1}, {SC_1, SC_1}, {SC_2, SC_1},
280                          {SC_3, SC_1}, {SC_4, SC_1}, {SC_5, SC_1}, {SC_6, SC_1} },
281
282                        { {SC_8, SC_0}, {SC_9, SC_0}, {SC_A, SC_0}, {SC_B, SC_0},
283                          {SC_C, SC_0}, {SC_D, SC_0}, {SC_E, SC_0}, {SC_F, SC_0},
284                          {SC_0, SC_1}, {SC_1, SC_1}, {SC_2, SC_1}, {SC_3, SC_1},
285                          {SC_4, SC_1}, {SC_5, SC_1}, {SC_6, SC_1}, {SC_7, SC_1} },
286
287                        { {SC_9, SC_0}, {SC_A, SC_0}, {SC_B, SC_0}, {SC_C, SC_0},
288                          {SC_D, SC_0}, {SC_E, SC_0}, {SC_F, SC_0}, {SC_0, SC_1},
289                          {SC_1, SC_1}, {SC_2, SC_1}, {SC_3, SC_1}, {SC_4, SC_1},
290                          {SC_5, SC_1}, {SC_6, SC_1}, {SC_7, SC_1}, {SC_8, SC_1} },
291
292                        { {SC_A, SC_0}, {SC_B, SC_0}, {SC_C, SC_0}, {SC_D, SC_0},
293                          {SC_E, SC_0}, {SC_F, SC_0}, {SC_0, SC_1}, {SC_1, SC_1},
294                          {SC_2, SC_1}, {SC_3, SC_1}, {SC_4, SC_1}, {SC_5, SC_1},
295                          {SC_6, SC_1}, {SC_7, SC_1}, {SC_8, SC_1}, {SC_9, SC_1} },
296
297                        { {SC_B, SC_0}, {SC_C, SC_0}, {SC_D, SC_0}, {SC_E, SC_0},
298                          {SC_F, SC_0}, {SC_0, SC_1}, {SC_1, SC_1}, {SC_2, SC_1},
299                          {SC_3, SC_1}, {SC_4, SC_1}, {SC_5, SC_1}, {SC_6, SC_1},
300                          {SC_7, SC_1}, {SC_8, SC_1}, {SC_9, SC_1}, {SC_A, SC_1} },
301
302                        { {SC_C, SC_0}, {SC_D, SC_0}, {SC_E, SC_0}, {SC_F, SC_0},
303                          {SC_0, SC_1}, {SC_1, SC_1}, {SC_2, SC_1}, {SC_3, SC_1},
304                          {SC_4, SC_1}, {SC_5, SC_1}, {SC_6, SC_1}, {SC_7, SC_1},
305                          {SC_8, SC_1}, {SC_9, SC_1}, {SC_A, SC_1}, {SC_B, SC_1} },
306
307                        { {SC_D, SC_0}, {SC_E, SC_0}, {SC_F, SC_0}, {SC_0, SC_1},
308                          {SC_1, SC_1}, {SC_2, SC_1}, {SC_3, SC_1}, {SC_4, SC_1},
309                          {SC_5, SC_1}, {SC_6, SC_1}, {SC_7, SC_1}, {SC_8, SC_1},
310                          {SC_9, SC_1}, {SC_A, SC_1}, {SC_B, SC_1}, {SC_C, SC_1} },
311
312                        { {SC_E, SC_0}, {SC_F, SC_0}, {SC_0, SC_1}, {SC_1, SC_1},
313                          {SC_2, SC_1}, {SC_3, SC_1}, {SC_4, SC_1}, {SC_5, SC_1},
314                          {SC_6, SC_1}, {SC_7, SC_1}, {SC_8, SC_1}, {SC_9, SC_1},
315                          {SC_A, SC_1}, {SC_B, SC_1}, {SC_C, SC_1}, {SC_D, SC_1} },
316
317                        { {SC_F, SC_0}, {SC_0, SC_1}, {SC_1, SC_1}, {SC_2, SC_1},
318                          {SC_3, SC_1}, {SC_4, SC_1}, {SC_5, SC_1}, {SC_6, SC_1},
319                          {SC_7, SC_1}, {SC_8, SC_1}, {SC_9, SC_1}, {SC_A, SC_1},
320                          {SC_B, SC_1}, {SC_C, SC_1}, {SC_D, SC_1}, {SC_E, SC_1} }
321                              };
322
323 static char const mul_table[16][16][2] = {
324                        { {SC_0, SC_0}, {SC_0, SC_0}, {SC_0, SC_0}, {SC_0, SC_0},
325                          {SC_0, SC_0}, {SC_0, SC_0}, {SC_0, SC_0}, {SC_0, SC_0},
326                          {SC_0, SC_0}, {SC_0, SC_0}, {SC_0, SC_0}, {SC_0, SC_0},
327                          {SC_0, SC_0}, {SC_0, SC_0}, {SC_0, SC_0}, {SC_0, SC_0} },
328
329                        { {SC_0, SC_0}, {SC_1, SC_0}, {SC_2, SC_0}, {SC_3, SC_0},
330                          {SC_4, SC_0}, {SC_5, SC_0}, {SC_6, SC_0}, {SC_7, SC_0},
331                          {SC_8, SC_0}, {SC_9, SC_0}, {SC_A, SC_0}, {SC_B, SC_0},
332                          {SC_C, SC_0}, {SC_D, SC_0}, {SC_E, SC_0}, {SC_F, SC_0} },
333
334                        { {SC_0, SC_0}, {SC_2, SC_0}, {SC_4, SC_0}, {SC_6, SC_0},
335                          {SC_8, SC_0}, {SC_A, SC_0}, {SC_C, SC_0}, {SC_E, SC_0},
336                          {SC_0, SC_1}, {SC_2, SC_1}, {SC_4, SC_1}, {SC_6, SC_1},
337                          {SC_8, SC_1}, {SC_A, SC_1}, {SC_C, SC_1}, {SC_E, SC_1} },
338
339                        { {SC_0, SC_0}, {SC_3, SC_0}, {SC_6, SC_0}, {SC_9, SC_0},
340                          {SC_C, SC_0}, {SC_F, SC_0}, {SC_2, SC_1}, {SC_5, SC_1},
341                          {SC_8, SC_1}, {SC_B, SC_1}, {SC_E, SC_1}, {SC_1, SC_2},
342                          {SC_4, SC_2}, {SC_7, SC_2}, {SC_A, SC_2}, {SC_D, SC_2} },
343
344                        { {SC_0, SC_0}, {SC_4, SC_0}, {SC_8, SC_0}, {SC_C, SC_0},
345                          {SC_0, SC_1}, {SC_4, SC_1}, {SC_8, SC_1}, {SC_C, SC_1},
346                          {SC_0, SC_2}, {SC_4, SC_2}, {SC_8, SC_2}, {SC_C, SC_2},
347                          {SC_0, SC_3}, {SC_4, SC_3}, {SC_8, SC_3}, {SC_C, SC_3} },
348
349                        { {SC_0, SC_0}, {SC_5, SC_0}, {SC_A, SC_0}, {SC_F, SC_0},
350                          {SC_4, SC_1}, {SC_9, SC_1}, {SC_E, SC_1}, {SC_3, SC_2},
351                          {SC_8, SC_2}, {SC_D, SC_2}, {SC_2, SC_3}, {SC_7, SC_3},
352                          {SC_C, SC_3}, {SC_1, SC_4}, {SC_6, SC_4}, {SC_B, SC_4} },
353
354                        { {SC_0, SC_0}, {SC_6, SC_0}, {SC_C, SC_0}, {SC_2, SC_1},
355                          {SC_8, SC_1}, {SC_E, SC_1}, {SC_4, SC_2}, {SC_A, SC_2},
356                          {SC_0, SC_3}, {SC_6, SC_3}, {SC_C, SC_3}, {SC_2, SC_4},
357                          {SC_8, SC_4}, {SC_E, SC_4}, {SC_4, SC_5}, {SC_A, SC_5} },
358
359                        { {SC_0, SC_0}, {SC_7, SC_0}, {SC_E, SC_0}, {SC_5, SC_1},
360                          {SC_C, SC_1}, {SC_3, SC_2}, {SC_A, SC_2}, {SC_1, SC_3},
361                          {SC_8, SC_3}, {SC_F, SC_3}, {SC_6, SC_4}, {SC_D, SC_4},
362                          {SC_4, SC_5}, {SC_B, SC_5}, {SC_2, SC_6}, {SC_9, SC_6} },
363
364                        { {SC_0, SC_0}, {SC_8, SC_0}, {SC_0, SC_1}, {SC_8, SC_1},
365                          {SC_0, SC_2}, {SC_8, SC_2}, {SC_0, SC_3}, {SC_8, SC_3},
366                          {SC_0, SC_4}, {SC_8, SC_4}, {SC_0, SC_5}, {SC_8, SC_5},
367                          {SC_0, SC_6}, {SC_8, SC_6}, {SC_0, SC_7}, {SC_8, SC_7} },
368
369                        { {SC_0, SC_0}, {SC_9, SC_0}, {SC_2, SC_1}, {SC_B, SC_1},
370                          {SC_4, SC_2}, {SC_D, SC_2}, {SC_6, SC_3}, {SC_F, SC_3},
371                          {SC_8, SC_4}, {SC_1, SC_5}, {SC_A, SC_5}, {SC_3, SC_6},
372                          {SC_C, SC_6}, {SC_5, SC_7}, {SC_E, SC_7}, {SC_7, SC_8} },
373
374                        { {SC_0, SC_0}, {SC_A, SC_0}, {SC_4, SC_1}, {SC_E, SC_1},
375                          {SC_8, SC_2}, {SC_2, SC_3}, {SC_C, SC_3}, {SC_6, SC_4},
376                          {SC_0, SC_5}, {SC_A, SC_5}, {SC_4, SC_6}, {SC_E, SC_6},
377                          {SC_8, SC_7}, {SC_2, SC_8}, {SC_C, SC_8}, {SC_6, SC_9} },
378
379                        { {SC_0, SC_0}, {SC_B, SC_0}, {SC_6, SC_1}, {SC_1, SC_2},
380                          {SC_C, SC_2}, {SC_7, SC_3}, {SC_2, SC_4}, {SC_D, SC_4},
381                          {SC_8, SC_5}, {SC_3, SC_6}, {SC_E, SC_6}, {SC_9, SC_7},
382                          {SC_4, SC_8}, {SC_F, SC_8}, {SC_A, SC_9}, {SC_5, SC_A} },
383
384                        { {SC_0, SC_0}, {SC_C, SC_0}, {SC_8, SC_1}, {SC_4, SC_2},
385                          {SC_0, SC_3}, {SC_C, SC_3}, {SC_8, SC_4}, {SC_4, SC_5},
386                          {SC_0, SC_6}, {SC_C, SC_6}, {SC_8, SC_7}, {SC_4, SC_8},
387                          {SC_0, SC_9}, {SC_C, SC_9}, {SC_8, SC_A}, {SC_4, SC_B} },
388
389                        { {SC_0, SC_0}, {SC_D, SC_0}, {SC_A, SC_1}, {SC_7, SC_2},
390                          {SC_4, SC_3}, {SC_1, SC_4}, {SC_E, SC_4}, {SC_B, SC_5},
391                          {SC_8, SC_6}, {SC_5, SC_7}, {SC_2, SC_8}, {SC_F, SC_8},
392                          {SC_C, SC_9}, {SC_9, SC_A}, {SC_6, SC_B}, {SC_3, SC_C} },
393
394                        { {SC_0, SC_0}, {SC_E, SC_0}, {SC_C, SC_1}, {SC_A, SC_2},
395                          {SC_8, SC_3}, {SC_6, SC_4}, {SC_4, SC_5}, {SC_2, SC_6},
396                          {SC_0, SC_7}, {SC_E, SC_7}, {SC_C, SC_8}, {SC_A, SC_9},
397                          {SC_8, SC_A}, {SC_6, SC_B}, {SC_4, SC_C}, {SC_2, SC_D} },
398
399                        { {SC_0, SC_0}, {SC_F, SC_0}, {SC_E, SC_1}, {SC_D, SC_2},
400                          {SC_C, SC_3}, {SC_B, SC_4}, {SC_A, SC_5}, {SC_9, SC_6},
401                          {SC_8, SC_7}, {SC_7, SC_8}, {SC_6, SC_9}, {SC_5, SC_A},
402                          {SC_4, SC_B}, {SC_3, SC_C}, {SC_2, SC_D}, {SC_1, SC_E} }
403                              };
404
405 static char const shrs_table[16][4][2] = {
406                        { {SC_0, SC_0}, {SC_0, SC_0}, {SC_0, SC_0}, {SC_0, SC_0} },
407                        { {SC_1, SC_0}, {SC_0, SC_8}, {SC_0, SC_4}, {SC_0, SC_2} },
408                        { {SC_2, SC_0}, {SC_1, SC_0}, {SC_0, SC_8}, {SC_0, SC_4} },
409                        { {SC_3, SC_0}, {SC_1, SC_8}, {SC_0, SC_C}, {SC_0, SC_6} },
410                        { {SC_4, SC_0}, {SC_2, SC_0}, {SC_1, SC_0}, {SC_0, SC_8} },
411                        { {SC_5, SC_0}, {SC_2, SC_8}, {SC_1, SC_4}, {SC_0, SC_A} },
412                        { {SC_6, SC_0}, {SC_3, SC_0}, {SC_1, SC_8}, {SC_0, SC_C} },
413                        { {SC_7, SC_0}, {SC_3, SC_8}, {SC_1, SC_C}, {SC_0, SC_E} },
414                        { {SC_8, SC_0}, {SC_4, SC_0}, {SC_2, SC_0}, {SC_1, SC_0} },
415                        { {SC_9, SC_0}, {SC_4, SC_8}, {SC_2, SC_4}, {SC_1, SC_2} },
416                        { {SC_A, SC_0}, {SC_5, SC_0}, {SC_2, SC_8}, {SC_1, SC_4} },
417                        { {SC_B, SC_0}, {SC_5, SC_8}, {SC_2, SC_C}, {SC_1, SC_6} },
418                        { {SC_C, SC_0}, {SC_6, SC_0}, {SC_3, SC_0}, {SC_1, SC_8} },
419                        { {SC_D, SC_0}, {SC_6, SC_8}, {SC_3, SC_4}, {SC_1, SC_A} },
420                        { {SC_E, SC_0}, {SC_7, SC_0}, {SC_3, SC_8}, {SC_1, SC_C} },
421                        { {SC_F, SC_0}, {SC_7, SC_8}, {SC_3, SC_C}, {SC_1, SC_E} }
422                                    };
423
424 /** converting a digit to a binary string */
425 static const char *binary_table[16] = {
426         "0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111",
427         "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"
428 };
429
430 /*****************************************************************************
431  * private functions
432  *****************************************************************************/
433 static void _fail_char(const char *str, size_t len, const char fchar, int pos,
434                        const char *file, int line) {
435         printf("ERROR:\n");
436         printf("Unexpected character '%c' in %s:%d\n", fchar, file, line);
437         while (len-- && *str) printf("%c", *str++); printf("\n");
438         while (--pos) printf(" "); printf("^\n");
439         exit(-1);
440 }
441
442 /**
443  * implements the bitwise NOT operation
444  */
445 static void do_bitnot(const char *val, char *buffer) {
446         int counter;
447
448         for (counter = 0; counter<calc_buffer_size; counter++)
449                 buffer[counter] = not_table[_val(val[counter])];
450 }
451
452 /**
453  * implements the bitwise OR operation
454  */
455 static void do_bitor(const char *val1, const char *val2, char *buffer) {
456         int counter;
457
458         for (counter = 0; counter<calc_buffer_size; counter++)
459                 buffer[counter] = or_table[_val(val1[counter])][_val(val2[counter])];
460 }
461
462 /**
463  * implements the bitwise eXclusive OR operation
464  */
465 static void do_bitxor(const char *val1, const char *val2, char *buffer) {
466         int counter;
467
468         for (counter = 0; counter<calc_buffer_size; counter++)
469                 buffer[counter] = xor_table[_val(val1[counter])][_val(val2[counter])];
470 }
471
472 /**
473  * implements the bitwise AND operation
474  */
475 static void do_bitand(const char *val1, const char *val2, char *buffer) {
476         int counter;
477
478         for (counter = 0; counter<calc_buffer_size; counter++)
479                 buffer[counter] = and_table[_val(val1[counter])][_val(val2[counter])];
480 }
481
482 /**
483  * returns the sign bit.
484  *
485  * @todo This implementation is wrong, as it returns the highest bit of the buffer
486  *       NOT the highest bit depending on the real mode
487  */
488 static int do_sign(const char *val) {
489         return (val[calc_buffer_size-1] <= SC_7) ? (1) : (-1);
490 }
491
492 /**
493  * returns non-zero if bit at position pos is set
494  */
495 static int do_bit(const char *val, int pos) {
496         int bit    = pos & 3;
497         int nibble = pos >> 2;
498
499         return _bitisset(val[nibble], bit);
500 }
501
502 /**
503  * Implements a fast ADD + 1
504  */
505 static void do_inc(const char *val, char *buffer) {
506         int counter = 0;
507
508         while (counter++ < calc_buffer_size) {
509                 if (*val == SC_F) {
510                         *buffer++ = SC_0;
511                         val++;
512                 } else {
513                         /* No carry here, *val != SC_F */
514                         *buffer = add_table[_val(*val)][SC_1][0];
515                         return;
516                 }
517         }
518         /* here a carry could be lost, this is intended because this should
519          * happen only when a value changes sign. */
520 }
521
522 /**
523  * Implements a unary MINUS
524  */
525 static void do_negate(const char *val, char *buffer) {
526         do_bitnot(val, buffer);
527         do_inc(buffer, buffer);
528 }
529
530 /**
531  * Implements a binary ADD
532  *
533  * @todo The implementation of carry is wrong, as it is the
534  *       calc_buffer_size carry, not the mode depending
535  */
536 static void do_add(const char *val1, const char *val2, char *buffer) {
537         int counter;
538         const char *add1, *add2;
539         char carry = SC_0;
540
541         for (counter = 0; counter < calc_buffer_size; counter++)   {
542                 add1 = add_table[_val(val1[counter])][_val(val2[counter])];
543                 add2 = add_table[_val(add1[0])][_val(carry)];
544                 /* carry might be zero */
545                 buffer[counter] = add2[0];
546                 carry = add_table[_val(add1[1])][_val(add2[1])][0];
547         }
548         carry_flag = carry != SC_0;
549 }
550
551 /**
552  * Implements a binary SUB
553  */
554 static void do_sub(const char *val1, const char *val2, char *buffer) {
555         char *temp_buffer = alloca(calc_buffer_size); /* intermediate buffer to hold -val2 */
556
557         do_negate(val2, temp_buffer);
558         do_add(val1, temp_buffer, buffer);
559 }
560
561 /**
562  * Implements a binary MUL
563  */
564 static void do_mul(const char *val1, const char *val2, char *buffer) {
565         char *temp_buffer; /* result buffer */
566         char *neg_val1;    /* abs of val1 */
567         char *neg_val2;    /* abs of val2 */
568
569         const char *mul, *add1, *add2;      /* intermediate result containers */
570         char carry = SC_0;                  /* container for carries */
571         char sign = 0;                      /* marks result sign */
572         int c_inner, c_outer;               /* loop counters */
573
574         temp_buffer = alloca(calc_buffer_size);
575         neg_val1 = alloca(calc_buffer_size);
576         neg_val2 = alloca(calc_buffer_size);
577
578         /* init result buffer to zeros */
579         memset(temp_buffer, SC_0, calc_buffer_size);
580
581         /* the multiplication works only for positive values, for negative values *
582          * it is necessary to negate them and adjust the result accordingly       */
583         if (do_sign(val1) == -1) {
584                 do_negate(val1, neg_val1);
585                 val1 = neg_val1;
586                 sign ^= 1;
587         }
588         if (do_sign(val2) == -1) {
589                 do_negate(val2, neg_val2);
590                 val2 = neg_val2;
591                 sign ^= 1;
592         }
593
594         for (c_outer = 0; c_outer < max_value_size; c_outer++) {
595                 if (val2[c_outer] != SC_0) {
596                         for (c_inner = 0; c_inner < max_value_size; c_inner++) {
597                                 /* do the following calculation:                                    *
598                                  * Add the current carry, the value at position c_outer+c_inner     *
599                                  * and the result of the multiplication of val1[c_inner] and        *
600                                  * val2[c_outer]. This is the usual pen-and-paper multiplication.   */
601
602                                 /* multiplicate the two digits */
603                                 mul = mul_table[_val(val1[c_inner])][_val(val2[c_outer])];
604                                 /* add old value to result of multiplication */
605                                 add1 = add_table[_val(temp_buffer[c_inner + c_outer])][_val(mul[0])];
606                                 /* add carry to the sum */
607                                 add2 = add_table[_val(add1[0])][_val(carry)];
608
609                                 /* all carries together result in new carry. This is always smaller *
610                                  * than the base b:                                                 *
611                                  * Both multiplicands, the carry and the value already in the temp  *
612                                  * buffer are single digits and their value is therefore at most    *
613                                  * equal to (b-1).                                                  *
614                                  * This leads to:                                                   *
615                                  * (b-1)(b-1)+(b-1)+(b-1) = b*b-1                                   *
616                                  * The tables list all operations rem b, so the carry is at most    *
617                                  * (b*b-1)rem b = -1rem b = b-1                                     */
618                                 carry = add_table[_val(mul[1])][_val(add1[1])][0];
619                                 carry = add_table[_val(carry)][_val(add2[1])][0];
620
621                                 temp_buffer[c_inner + c_outer] = add2[0];
622                         }
623
624                         /* A carry may hang over */
625                         /* c_outer is always smaller than max_value_size! */
626                         temp_buffer[max_value_size + c_outer] = carry;
627                         carry = SC_0;
628                 }
629         }
630
631         if (sign)
632                 do_negate(temp_buffer, buffer);
633         else
634                 memcpy(buffer, temp_buffer, calc_buffer_size);
635 }
636
637 /**
638  * Shift the buffer to left and add a 4 bit digit
639  */
640 static void do_push(const char digit, char *buffer) {
641         int counter;
642
643         for (counter = calc_buffer_size - 2; counter >= 0; counter--) {
644                 buffer[counter+1] = buffer[counter];
645         }
646         buffer[0] = digit;
647 }
648
649 /**
650  * Implements truncating integer division and remainder.
651  *
652  * Note: This is MOST slow
653  */
654 static void do_divmod(const char *rDividend, const char *divisor, char *quot, char *rem) {
655         const char *dividend = rDividend;
656         const char *minus_divisor;
657         char *neg_val1;
658         char *neg_val2;
659
660         char div_sign = 0;     /* remember division result sign */
661         char rem_sign = 0;     /* remember remainder result sign */
662
663         int c_dividend;      /* loop counters */
664
665         neg_val1 = alloca(calc_buffer_size);
666         neg_val2 = alloca(calc_buffer_size);
667
668         /* clear result buffer */
669         memset(quot, SC_0, calc_buffer_size);
670         memset(rem, SC_0, calc_buffer_size);
671
672         /* if the divisor is zero this won't work (quot is zero) */
673         if (sc_comp(divisor, quot) == 0) assert(0 && "division by zero!");
674
675         /* if the dividend is zero result is zero (quot is zero) */
676         if (sc_comp(dividend, quot) == 0)
677                 return;
678
679         if (do_sign(dividend) == -1) {
680                 do_negate(dividend, neg_val1);
681                 div_sign ^= 1;
682                 rem_sign ^= 1;
683                 dividend = neg_val1;
684         }
685
686         do_negate(divisor, neg_val2);
687         if (do_sign(divisor) == -1) {
688                 div_sign ^= 1;
689                 minus_divisor = divisor;
690                 divisor = neg_val2;
691         } else
692                 minus_divisor = neg_val2;
693
694         /* if divisor >= dividend division is easy
695          * (remember these are absolute values) */
696         switch (sc_comp(dividend, divisor)) {
697         case 0: /* dividend == divisor */
698                 quot[0] = SC_1;
699                 goto end;
700
701         case -1: /* dividend < divisor */
702                 memcpy(rem, rDividend, calc_buffer_size);
703                 goto end;
704
705         default: /* unluckily division is necessary :( */
706                 break;
707         }
708
709         for (c_dividend = calc_buffer_size - 1; c_dividend >= 0; c_dividend--) {
710                 do_push(dividend[c_dividend], rem);
711                 do_push(SC_0, quot);
712
713                 if (sc_comp(rem, divisor) != -1) {  /* remainder >= divisor */
714                         /* subtract until the remainder becomes negative, this should
715                          * be faster than comparing remainder with divisor  */
716                         do_add(rem, minus_divisor, rem);
717
718                         while (do_sign(rem) == 1) {
719                                 quot[0] = add_table[_val(quot[0])][SC_1][0];
720                                 do_add(rem, minus_divisor, rem);
721                         }
722
723                         /* subtracted one too much */
724                         do_add(rem, divisor, rem);
725                 }
726         }
727 end:
728         /* sets carry if remainder is non-zero ??? */
729         carry_flag = !sc_is_zero(rem);
730
731         if (div_sign)
732                 do_negate(quot, quot);
733
734         if (rem_sign)
735                 do_negate(rem, rem);
736 }
737
738 /**
739  * Implements a Shift Left, which can either preserve the sign bit
740  * or not.
741  *
742  * @todo Assertions seems to be wrong
743  */
744 static void do_shl(const char *val1, char *buffer, long shift_cnt, int bitsize, unsigned is_signed) {
745         const char *shl;
746         char shift;
747         char carry = SC_0;
748
749         int counter;
750         int bitoffset = 0;
751
752         assert((shift_cnt >= 0) || (0 && "negative leftshift"));
753         assert(((do_sign(val1) != -1) || is_signed) || (0 && "unsigned mode and negative value"));
754         assert(((!_bitisset(val1[(bitsize-1)/4], (bitsize-1)%4)) || !is_signed || (do_sign(val1) == -1)) || (0 && "value is positive, should be negative"));
755         assert(((_bitisset(val1[(bitsize-1)/4], (bitsize-1)%4)) || !is_signed || (do_sign(val1) == 1)) || (0 && "value is negative, should be positive"));
756
757         /* if shifting far enough the result is zero */
758         if (shift_cnt >= bitsize) {
759                 memset(buffer, SC_0, calc_buffer_size);
760                 return;
761         }
762
763         shift = shift_table[_val(shift_cnt%4)];      /* this is 2 ** (offset % 4) */
764         shift_cnt = shift_cnt / 4;
765
766         /* shift the single digits some bytes (offset) and some bits (table)
767          * to the left */
768         for (counter = 0; counter < bitsize/4 - shift_cnt; counter++) {
769                 shl = mul_table[_val(val1[counter])][_val(shift)];
770                 buffer[counter + shift_cnt] = or_table[_val(shl[0])][_val(carry)];
771                 carry = shl[1];
772         }
773         if (bitsize%4 > 0) {
774                 shl = mul_table[_val(val1[counter])][_val(shift)];
775                 buffer[counter + shift_cnt] = or_table[_val(shl[0])][_val(carry)];
776                 bitoffset = counter;
777         } else {
778                 bitoffset = counter - 1;
779         }
780
781         /* fill with zeroes */
782         for (counter = 0; counter < shift_cnt; counter++)
783                 buffer[counter] = SC_0;
784
785         /* if the mode was signed, change sign when the mode's msb is now 1 */
786         shift_cnt = bitoffset + shift_cnt;
787         bitoffset = (bitsize-1) % 4;
788         if (is_signed && _bitisset(buffer[shift_cnt], bitoffset)) {
789                 /* this sets the upper bits of the leftmost digit */
790                 buffer[shift_cnt] = or_table[_val(buffer[shift_cnt])][_val(min_digit[bitoffset])];
791                 for (counter = shift_cnt+1; counter < calc_buffer_size; counter++) {
792                         buffer[counter] = SC_F;
793                 }
794         } else if (is_signed && !_bitisset(buffer[shift_cnt], bitoffset)) {
795                 /* this clears the upper bits of the leftmost digit */
796                 buffer[shift_cnt] = and_table[_val(buffer[shift_cnt])][_val(max_digit[bitoffset])];
797                 for (counter = shift_cnt+1; counter < calc_buffer_size; counter++) {
798                         buffer[counter] = SC_0;
799                 }
800         }
801 }
802
803 /**
804  * Implements a Shift Right, which can either preserve the sign bit
805  * or not.
806  *
807  * @param bitsize   bitsize of the value to be shifted
808  *
809  * @todo Assertions seems to be wrong
810  */
811 static void do_shr(const char *val1, char *buffer, long shift_cnt, int bitsize, unsigned is_signed, int signed_shift) {
812         const char *shrs;
813         char sign;
814         char msd;
815
816         int shift_mod, shift_nib;
817
818         int counter;
819         int bitoffset = 0;
820
821         assert((shift_cnt >= 0) || (0 && "negative rightshift"));
822         assert(((!_bitisset(val1[(bitsize-1)/4], (bitsize-1)%4)) || !is_signed || (do_sign(val1) == -1)) || (0 && "value is positive, should be negative"));
823         assert(((_bitisset(val1[(bitsize-1)/4], (bitsize-1)%4)) || !is_signed || (do_sign(val1) == 1)) || (0 && "value is negative, should be positive"));
824
825         sign = signed_shift && do_bit(val1, bitsize - 1) ? SC_F : SC_0;
826
827         /* if shifting far enough the result is either 0 or -1 */
828         if (shift_cnt >= bitsize) {
829                 if (!sc_is_zero(val1)) {
830                         carry_flag = 1;
831                 }
832                 memset(buffer, sign, calc_buffer_size);
833                 return;
834         }
835
836         shift_mod = shift_cnt &  3;
837         shift_nib = shift_cnt >> 2;
838
839         /* check if any bits are lost, and set carry_flag if so */
840         for (counter = 0; counter < shift_nib; ++counter) {
841                 if (val1[counter] != 0) {
842                         carry_flag = 1;
843                         break;
844                 }
845         }
846         if ((_val(val1[counter]) & ((1<<shift_mod)-1)) != 0)
847                 carry_flag = 1;
848
849         /* shift digits to the right with offset, carry and all */
850         counter = 0;
851         if ((bitsize >> 2) > shift_nib) {
852                 buffer[counter] = shrs_table[_val(val1[shift_nib])][shift_mod][0];
853                 counter = 1;
854         }
855         for (; counter < bitsize/4 - shift_nib; counter++) {
856                 shrs = shrs_table[_val(val1[counter + shift_nib])][shift_mod];
857                 buffer[counter] = shrs[0];
858                 buffer[counter-1] = or_table[_val(buffer[counter-1])][_val(shrs[1])];
859         }
860
861         /* the last digit is special in regard of signed/unsigned shift */
862         bitoffset = bitsize & 3;
863         msd = sign;  /* most significant digit */
864
865         /* remove sign bits if mode was signed and this is an unsigned shift */
866         if (!signed_shift && is_signed) {
867                 msd = and_table[_val(msd)][_val(max_digit[bitoffset])];
868         }
869
870         shrs = shrs_table[_val(msd)][shift_mod];
871
872         /* signed shift and signed mode and negative value means all bits to the left are set */
873         if (signed_shift && sign == SC_F) {
874                 buffer[counter] = or_table[_val(shrs[0])][_val(min_digit[bitoffset])];
875         } else {
876                 buffer[counter] = shrs[0];
877         }
878
879         if (counter > 0)
880                 buffer[counter - 1] = or_table[_val(buffer[counter-1])][_val(shrs[1])];
881
882         /* fill with SC_F or SC_0 depending on sign */
883         for (counter++; counter < calc_buffer_size; counter++) {
884                 buffer[counter] = sign;
885         }
886 }
887
888 /**
889  * Implements a Rotate Left.
890  * positive: low-order -> high order, negative other direction
891  */
892 static void do_rotl(const char *val1, char *buffer, long offset, int radius, unsigned is_signed) {
893         char *temp1, *temp2;
894         temp1 = alloca(calc_buffer_size);
895         temp2 = alloca(calc_buffer_size);
896
897         offset = offset % radius;
898
899         /* rotation by multiples of the type length is identity */
900         if (offset == 0) {
901                 memmove(buffer, val1, calc_buffer_size);
902                 return;
903         }
904
905         do_shl(val1, temp1, offset, radius, is_signed);
906         do_shr(val1, temp2, radius - offset, radius, is_signed, 0);
907         do_bitor(temp1, temp2, buffer);
908         carry_flag = 0; /* set by shr, but due to rot this is false */
909 }
910
911 /*****************************************************************************
912  * public functions, declared in strcalc.h
913  *****************************************************************************/
914 const void *sc_get_buffer(void) {
915         return (void*)calc_buffer;
916 }
917
918 int sc_get_buffer_length(void) {
919         return calc_buffer_size;
920 }
921
922 /**
923  * Do sign extension if the mode is signed, otherwise to zero extension.
924  */
925 void sign_extend(void *buffer, ir_mode *mode) {
926         char *calc_buffer = buffer;
927         int bits          = get_mode_size_bits(mode) - 1;
928         int nibble        = bits >> 2;
929         int max           = max_digit[bits & 3];
930         int i;
931
932         if (mode_is_signed(mode)) {
933                 if (calc_buffer[nibble] > max) {
934                         /* sign bit is set, we need sign expansion */
935
936                         for (i = nibble + 1; i < calc_buffer_size; ++i)
937                                 calc_buffer[i] = SC_F;
938                         calc_buffer[nibble] = or_table[(int)calc_buffer[nibble]][(int)sex_digit[bits & 3]];
939                 } else {
940                         /* set all bits to zero */
941                         for (i = nibble + 1; i < calc_buffer_size; ++i)
942                                 calc_buffer[i] = SC_0;
943                         calc_buffer[nibble] = and_table[(int)calc_buffer[nibble]][(int)zex_digit[bits & 3]];
944                 }
945         } else {
946                 /* do zero extension */
947                 for (i = nibble + 1; i < calc_buffer_size; ++i)
948                         calc_buffer[i] = SC_0;
949                 calc_buffer[nibble] = and_table[(int)calc_buffer[nibble]][(int)zex_digit[bits & 3]];
950         }
951 }
952
953 /* FIXME doesn't check for overflows */
954 void sc_val_from_str(const char *str, unsigned int len, void *buffer, ir_mode *mode) {
955         const char *orig_str = str;
956         unsigned int orig_len = len;
957
958         char sign = 0;
959         char *base, *val;
960
961         base = alloca(calc_buffer_size);
962         val = alloca(calc_buffer_size);
963
964         /* verify valid pointers (not null) */
965         assert(str);
966         /* a string no characters long is an error */
967         assert(len);
968
969         if (buffer == NULL) buffer = calc_buffer;
970
971         CLEAR_BUFFER(buffer);
972         CLEAR_BUFFER(base);
973         CLEAR_BUFFER(val);
974
975         /* strip leading spaces */
976         while ((len > 0) && (*str == ' ')) { len--; str++; }
977
978         /* if the first two characters are 0x or 0X -> hex
979          * if the first is a 0 -> oct
980          * else dec, strip leading -/+ and remember sign
981          *
982          * only a + or - sign is no number resulting in an error */
983         if (len >= 2) {
984                 switch (str[0]) {
985                 case '0':
986                         if (str[1] == 'x' || str[1] == 'X') { /* hex */
987                                 str += 2;
988                                 len -= 2;
989                                 base[1] = SC_1; base[0] = SC_0;
990                         } else { /* oct */
991                                 str += 1;
992                                 len -= 1;
993                                 base[1] = SC_0; base[0] = SC_8;
994                         }
995                         break;
996
997                 case '+':
998                         str += 1;
999                         len -= 1;
1000                         base[1] = SC_0; base[0] = SC_A;
1001                         break;
1002
1003                 case '-':
1004                         str += 1;
1005                         len -= 1;
1006                         sign = 1;
1007                         base[1] = SC_0; base[0] = SC_A;
1008                         break;
1009
1010                 default: /* dec, else would have begun with 0x or 0 */
1011                         base[1] = SC_0; base[0] = SC_A;
1012                 }
1013         } else { /* dec, else would have begun with 0x or 0 */
1014                 base[1] = SC_0; base[0] = SC_A;
1015         }
1016
1017         /* BEGIN string evaluation, from left to right */
1018         while (len > 0) {
1019                 switch (*str) {
1020                 case 'f':
1021                 case 'e':
1022                 case 'd':
1023                 case 'c':
1024                 case 'b':
1025                 case 'a':
1026                         if (base[0] > SC_9 || base[1] > SC_0) { /* (base > 10) */
1027                                 val[0] = _digit((*str)-'a'+10);
1028                         }
1029                         else
1030                                 fail_char(orig_str, orig_len, *str, str-orig_str+1);
1031                         break;
1032
1033                 case 'F':
1034                 case 'E':
1035                 case 'D':
1036                 case 'C':
1037                 case 'B':
1038                 case 'A':
1039                         if (base[0] > SC_9 || base[1] > SC_0) { /* (base > 10) */
1040                                 val[0] = _digit((*str)-'A'+10);
1041                         }
1042                         else
1043                                 fail_char(orig_str, orig_len, *str, str-orig_str+1);
1044                         break;
1045
1046                 case '9':
1047                 case '8':
1048                         if (base[0] > SC_7 || base[1] > SC_0) { /* (base > 8) */
1049                                 val[0] = _digit((*str)-'0');
1050                         }
1051                         else
1052                                 fail_char(orig_str, orig_len, *str, str-orig_str+1);
1053                         break;
1054
1055                 case '7':
1056                 case '6':
1057                 case '5':
1058                 case '4':
1059                 case '3':
1060                 case '2':
1061                 case '1':
1062                 case '0':
1063                         val[0] = _digit((*str)-'0');
1064                         break;
1065
1066                 default:
1067                         fail_char(orig_str, orig_len, *str, str-orig_str+1);
1068                 } /* switch(*str) */
1069
1070                 /* Radix conversion from base b to base B:
1071                  *  (UnUn-1...U1U0)b == ((((Un*b + Un-1)*b + ...)*b + U1)*b + U0)B */
1072                 do_mul(base, calc_buffer, calc_buffer); /* multiply current value with base */
1073                 do_add(val, calc_buffer, calc_buffer);  /* add next digit to current value  */
1074
1075                 /* get ready for the next letter */
1076                 str++;
1077                 len--;
1078         } /* while (len > 0 ) */
1079
1080         if (sign)
1081                 do_negate(calc_buffer, calc_buffer);
1082
1083         /* beware: even if hex numbers have no sign, we need sign extension here */
1084         sign_extend(calc_buffer, mode);
1085 }
1086
1087 void sc_val_from_long(long value, void *buffer) {
1088         char *pos;
1089         char sign, is_minlong;
1090
1091         if (buffer == NULL) buffer = calc_buffer;
1092         pos = buffer;
1093
1094         sign = (value < 0);
1095         is_minlong = value == LONG_MIN;
1096
1097         /* use absolute value, special treatment of MIN_LONG to avoid overflow */
1098         if (sign) {
1099                 if (is_minlong)
1100                         value = -(value+1);
1101                 else
1102                         value = -value;
1103         }
1104
1105         CLEAR_BUFFER(buffer);
1106
1107         while ((value != 0) && (pos < (char*)buffer + calc_buffer_size)) {
1108                 *pos++ = _digit(value & 0xf);
1109                 value >>= 4;
1110         }
1111
1112         if (sign) {
1113                 if (is_minlong)
1114                         do_inc(buffer, buffer);
1115
1116                 do_negate(buffer, buffer);
1117         }
1118 }
1119
1120 void sc_val_from_ulong(unsigned long value, void *buffer) {
1121         unsigned char *pos;
1122
1123         if (buffer == NULL) buffer = calc_buffer;
1124         pos = buffer;
1125
1126         while (pos < (unsigned char *)buffer + calc_buffer_size) {
1127                 *pos++ = (unsigned char)_digit(value & 0xf);
1128                 value >>= 4;
1129         }
1130 }
1131
1132 long sc_val_to_long(const void *val) {
1133         int i;
1134         long l = 0;
1135
1136         for (i = calc_buffer_size - 1; i >= 0; i--) {
1137                 l = (l << 4) + _val(((char *)val)[i]);
1138         }
1139         return l;
1140 }
1141
1142 void sc_min_from_bits(unsigned int num_bits, unsigned int sign, void *buffer) {
1143         char *pos;
1144         int i, bits;
1145
1146         if (buffer == NULL) buffer = calc_buffer;
1147         CLEAR_BUFFER(buffer);
1148
1149         if (!sign) return;  /* unsigned means minimum is 0(zero) */
1150
1151         pos = buffer;
1152
1153         bits = num_bits - 1;
1154         for (i = 0; i < bits/4; i++)
1155                 *pos++ = SC_0;
1156
1157         *pos++ = min_digit[bits%4];
1158
1159         for (i++; i <= calc_buffer_size - 1; i++)
1160                 *pos++ = SC_F;
1161 }
1162
1163 void sc_max_from_bits(unsigned int num_bits, unsigned int sign, void *buffer) {
1164         char* pos;
1165         int i, bits;
1166
1167         if (buffer == NULL) buffer = calc_buffer;
1168         CLEAR_BUFFER(buffer);
1169         pos = buffer;
1170
1171         bits = num_bits - sign;
1172         for (i = 0; i < bits/4; i++)
1173                 *pos++ = SC_F;
1174
1175         *pos++ = max_digit[bits%4];
1176
1177         for (i++; i <= calc_buffer_size - 1; i++)
1178                 *pos++ = SC_0;
1179 }
1180
1181 void sc_truncate(unsigned int num_bits, void *buffer) {
1182         char *cbuffer = buffer;
1183         char *pos = cbuffer + (num_bits / 4);
1184         char *end = cbuffer + calc_buffer_size;
1185
1186         assert(pos < end);
1187
1188         switch(num_bits % 4) {
1189         case 0: /* nothing to do */ break;
1190         case 1: *pos = and_table[_val(*pos)][SC_1]; pos++; break;
1191         case 2: *pos = and_table[_val(*pos)][SC_3]; pos++; break;
1192         case 3: *pos = and_table[_val(*pos)][SC_7]; pos++; break;
1193         }
1194
1195         for( ; pos < end; ++pos)
1196                 *pos = SC_0;
1197 }
1198
1199 int sc_comp(const void* value1, const void* value2) {
1200         int counter = calc_buffer_size - 1;
1201         const char *val1 = (const char *)value1;
1202         const char *val2 = (const char *)value2;
1203
1204         /* compare signs first:
1205          * the loop below can only compare values of the same sign! */
1206         if (do_sign(val1) != do_sign(val2))
1207                 return (do_sign(val1) == 1)?(1):(-1);
1208
1209         /* loop until two digits differ, the values are equal if there
1210          * are no such two digits */
1211         while (val1[counter] == val2[counter]) {
1212                 counter--;
1213                 if (counter < 0) return 0;
1214         }
1215
1216         /* the leftmost digit is the most significant, so this returns
1217          * the correct result.
1218          * This implies the digit enum is ordered */
1219         return (val1[counter] > val2[counter]) ? (1) : (-1);
1220 }
1221
1222 int sc_get_highest_set_bit(const void *value) {
1223         const char *val = (const char*)value;
1224         int high, counter;
1225
1226         high = calc_buffer_size * 4 - 1;
1227
1228         for (counter = calc_buffer_size-1; counter >= 0; counter--) {
1229                 if (val[counter] == SC_0)
1230                         high -= 4;
1231                 else {
1232                         if (val[counter] > SC_7) return high;
1233                         else if (val[counter] > SC_3) return high - 1;
1234                         else if (val[counter] > SC_1) return high - 2;
1235                         else return high - 3;
1236                 }
1237         }
1238         return high;
1239 }
1240
1241 int sc_get_lowest_set_bit(const void *value) {
1242         const char *val = (const char*)value;
1243         int low, counter;
1244
1245         low = 0;
1246         for (counter = 0; counter < calc_buffer_size; counter++) {
1247                 switch (val[counter]) {
1248                 case SC_1:
1249                 case SC_3:
1250                 case SC_5:
1251                 case SC_7:
1252                 case SC_9:
1253                 case SC_B:
1254                 case SC_D:
1255                 case SC_F:
1256                         return low;
1257                 case SC_2:
1258                 case SC_6:
1259                 case SC_A:
1260                 case SC_E:
1261                         return low + 1;
1262                 case SC_4:
1263                 case SC_C:
1264                         return low + 2;
1265                 case SC_8:
1266                         return low + 3;
1267                 default:
1268                         low += 4;
1269                 }
1270         }
1271         return -1;
1272 }
1273
1274 int sc_get_bit_at(const void *value, unsigned pos) {
1275         const char *val = value;
1276         unsigned nibble = pos >> 2;
1277
1278         if (and_table[(int) val[nibble]][(int) shift_table[pos & 3]] != SC_0)
1279                 return 1;
1280         return 0;
1281 }
1282
1283 int sc_is_zero(const void *value) {
1284         const char* val = (const char *)value;
1285         int counter;
1286
1287         for (counter = 0; counter < calc_buffer_size; ++counter) {
1288                 if (val[counter] != SC_0)
1289                         return 0;
1290         }
1291         return 1;
1292 }
1293
1294 int sc_is_negative(const void *value) {
1295         return do_sign(value) == -1;
1296 }
1297
1298 int sc_had_carry(void) {
1299         return carry_flag;
1300 }
1301
1302 unsigned char sc_sub_bits(const void *value, int len, unsigned byte_ofs) {
1303         const char *val = (const char *)value;
1304         int nibble_ofs  = 2 * byte_ofs;
1305         unsigned char res;
1306
1307         /* the current scheme uses one byte to store a nibble */
1308         if (4 * nibble_ofs >= len)
1309                 return 0;
1310
1311         res = _val(val[nibble_ofs]);
1312         if (len > 4 * (nibble_ofs + 1))
1313                 res |= _val(val[nibble_ofs + 1]) << 4;
1314
1315         /* kick bits outsize */
1316         if (len - 8 * byte_ofs < 8) {
1317                 res &= (1 << (len - 8 * byte_ofs)) - 1;
1318         }
1319         return res;
1320 }
1321
1322 /*
1323  * convert to a string
1324  * FIXME: Doesn't check buffer bounds
1325  */
1326 const char *sc_print(const void *value, unsigned bits, enum base_t base, int signed_mode) {
1327         static const char big_digits[]   = "0123456789ABCDEF";
1328         static const char small_digits[] = "0123456789abcdef";
1329
1330         char *base_val, *div1_res, *div2_res, *rem_res;
1331         int counter, nibbles, i, sign, mask;
1332         char x;
1333
1334         const char *val = (const char *)value;
1335         const char *p;
1336         char *m, *n, *t;
1337         char *pos;
1338         const char *digits = small_digits;
1339
1340         base_val = alloca(calc_buffer_size);
1341         div1_res = alloca(calc_buffer_size);
1342         div2_res = alloca(calc_buffer_size);
1343         rem_res  = alloca(calc_buffer_size);
1344
1345         pos = output_buffer + bit_pattern_size;
1346         *(--pos) = '\0';
1347
1348         /* special case */
1349         if (bits == 0) {
1350                 bits = bit_pattern_size;
1351 #ifdef STRCALC_DEBUG_FULLPRINT
1352                 bits <<= 1;
1353 #endif
1354         }
1355         nibbles = bits >> 2;
1356         switch (base) {
1357
1358         case SC_HEX:
1359                 digits = big_digits;
1360         case SC_hex:
1361                 for (counter = 0; counter < nibbles; ++counter) {
1362                         *(--pos) = digits[_val(val[counter])];
1363 #ifdef STRCALC_DEBUG_GROUPPRINT
1364                         if ((counter+1)%8 == 0)
1365                                 *(--pos) = ' ';
1366 #endif
1367                 }
1368
1369                 /* last nibble must be masked */
1370                 if (bits & 3) {
1371                         mask = zex_digit[bits & 3];
1372                         x = and_table[_val(val[counter++])][mask];
1373                         *(--pos) = digits[_val(x)];
1374                 }
1375
1376                 /* now kill zeros */
1377                 for (; counter > 1; --counter, ++pos) {
1378 #ifdef STRCALC_DEBUG_GROUPPRINT
1379                         if (pos[0] == ' ') ++pos;
1380 #endif
1381                         if (pos[0] != '0')
1382                                 break;
1383                 }
1384                 break;
1385
1386         case SC_BIN:
1387                 for (counter = 0; counter < nibbles; ++counter) {
1388                         pos -= 4;
1389                         p = binary_table[_val(val[counter])];
1390                         pos[0] = p[0];
1391                         pos[1] = p[1];
1392                         pos[2] = p[2];
1393                         pos[3] = p[3];
1394                 }
1395
1396                 /* last nibble must be masked */
1397                 if (bits & 3) {
1398                         mask = zex_digit[bits & 3];
1399                         x = and_table[_val(val[counter++])][mask];
1400
1401                         pos -= 4;
1402                         p = binary_table[_val(x)];
1403                         pos[0] = p[0];
1404                         pos[1] = p[1];
1405                         pos[2] = p[2];
1406                         pos[3] = p[3];
1407                 }
1408
1409                 /* now kill zeros */
1410                 for (counter <<= 2; counter > 1; --counter, ++pos)
1411                         if (pos[0] != '0')
1412                                 break;
1413                         break;
1414
1415         case SC_DEC:
1416         case SC_OCT:
1417                 memset(base_val, SC_0, calc_buffer_size);
1418                 base_val[0] = base == SC_DEC ? SC_A : SC_8;
1419
1420                 p    = val;
1421                 sign = 0;
1422                 if (signed_mode && base == SC_DEC) {
1423                         /* check for negative values */
1424                         if (do_bit(val, bits - 1)) {
1425                                 do_negate(val, div2_res);
1426                                 sign = 1;
1427                                 p = div2_res;
1428                         }
1429                 }
1430
1431                 /* transfer data into oscillating buffers */
1432                 memset(div1_res, SC_0, calc_buffer_size);
1433                 for (counter = 0; counter < nibbles; ++counter)
1434                         div1_res[counter] = p[counter];
1435
1436                 /* last nibble must be masked */
1437                 if (bits & 3) {
1438                         mask = zex_digit[bits & 3];
1439                         div1_res[counter] = and_table[_val(p[counter])][mask];
1440                         ++counter;
1441                 }
1442
1443                 m = div1_res;
1444                 n = div2_res;
1445                 for (;;) {
1446                         do_divmod(m, base_val, n, rem_res);
1447                         t = m;
1448                         m = n;
1449                         n = t;
1450                         *(--pos) = digits[_val(rem_res[0])];
1451
1452                         x = 0;
1453                         for (i = 0; i < calc_buffer_size; ++i)
1454                                 x |= _val(m[i]);
1455
1456                         if (x == 0)
1457                                 break;
1458                 }
1459                 if (sign)
1460                         *(--pos) = '-';
1461                 break;
1462
1463         default:
1464                 panic("Unsupported base %d", base);
1465         }
1466         return pos;
1467 }
1468
1469 void init_strcalc(int precision) {
1470         if (calc_buffer == NULL) {
1471                 if (precision <= 0) precision = SC_DEFAULT_PRECISION;
1472
1473                 /* round up to multiple of 4 */
1474                 precision = (precision + 3) & ~3;
1475
1476                 bit_pattern_size = (precision);
1477                 calc_buffer_size = (precision / 2);
1478                 max_value_size   = (precision / 4);
1479
1480                 calc_buffer   = XMALLOCN(char, calc_buffer_size + 1);
1481                 output_buffer = XMALLOCN(char, bit_pattern_size + 1);
1482
1483                 DEBUGPRINTF(("init strcalc: \n\tPRECISION: %d\n\tCALC_BUFFER_SIZE = %d\n\tMAX_VALUE_SIZE = %d\n\tbuffer pointer: %p\n", precision, calc_buffer_size, max_value_size, calc_buffer));
1484         }
1485 }
1486
1487
1488 void finish_strcalc(void) {
1489         free(calc_buffer);   calc_buffer   = NULL;
1490         free(output_buffer); output_buffer = NULL;
1491 }
1492
1493 int sc_get_precision(void) {
1494         return bit_pattern_size;
1495 }
1496
1497
1498 void sc_add(const void *value1, const void *value2, void *buffer) {
1499         CLEAR_BUFFER(calc_buffer);
1500         carry_flag = 0;
1501
1502         DEBUGPRINTF_COMPUTATION(("%s + ", sc_print_hex(value1)));
1503         DEBUGPRINTF_COMPUTATION(("%s -> ", sc_print_hex(value2)));
1504
1505         do_add(value1, value2, calc_buffer);
1506
1507         DEBUGPRINTF_COMPUTATION(("%s\n", sc_print_hex(calc_buffer)));
1508
1509         if ((buffer != NULL) && (buffer != calc_buffer)) {
1510                 memcpy(buffer, calc_buffer, calc_buffer_size);
1511         }
1512 }
1513
1514 void sc_sub(const void *value1, const void *value2, void *buffer) {
1515         CLEAR_BUFFER(calc_buffer);
1516         carry_flag = 0;
1517
1518         DEBUGPRINTF_COMPUTATION(("%s - ", sc_print_hex(value1)));
1519         DEBUGPRINTF_COMPUTATION(("%s -> ", sc_print_hex(value2)));
1520
1521         do_sub(value1, value2, calc_buffer);
1522
1523         DEBUGPRINTF_COMPUTATION(("%s\n", sc_print_hex(calc_buffer)));
1524
1525         if ((buffer != NULL) && (buffer != calc_buffer)) {
1526                 memcpy(buffer, calc_buffer, calc_buffer_size);
1527         }
1528 }
1529
1530 void sc_neg(const void *value1, void *buffer) {
1531         carry_flag = 0;
1532
1533         DEBUGPRINTF_COMPUTATION(("- %s ->", sc_print_hex(value1)));
1534
1535         do_negate(value1, calc_buffer);
1536
1537         DEBUGPRINTF_COMPUTATION(("%s\n", sc_print_hex(calc_buffer)));
1538
1539         if ((buffer != NULL) && (buffer != calc_buffer)) {
1540                 memcpy(buffer, calc_buffer, calc_buffer_size);
1541         }
1542 }
1543
1544 void sc_and(const void *value1, const void *value2, void *buffer) {
1545         CLEAR_BUFFER(calc_buffer);
1546         carry_flag = 0;
1547
1548         DEBUGPRINTF_COMPUTATION(("%s & ", sc_print_hex(value1)));
1549         DEBUGPRINTF_COMPUTATION(("%s -> ", sc_print_hex(value2)));
1550
1551         do_bitand(value1, value2, calc_buffer);
1552
1553         DEBUGPRINTF_COMPUTATION(("%s\n", sc_print_hex(calc_buffer)));
1554
1555         if ((buffer != NULL) && (buffer != calc_buffer)) {
1556                 memcpy(buffer, calc_buffer, calc_buffer_size);
1557         }
1558 }
1559
1560 void sc_or(const void *value1, const void *value2, void *buffer) {
1561         CLEAR_BUFFER(calc_buffer);
1562         carry_flag = 0;
1563
1564         DEBUGPRINTF_COMPUTATION(("%s | ", sc_print_hex(value1)));
1565         DEBUGPRINTF_COMPUTATION(("%s -> ", sc_print_hex(value2)));
1566
1567         do_bitor(value1, value2, calc_buffer);
1568
1569         DEBUGPRINTF_COMPUTATION(("%s\n", sc_print_hex(calc_buffer)));
1570
1571         if ((buffer != NULL) && (buffer != calc_buffer)) {
1572                 memcpy(buffer, calc_buffer, calc_buffer_size);
1573         }
1574 }
1575
1576 void sc_xor(const void *value1, const void *value2, void *buffer) {
1577         CLEAR_BUFFER(calc_buffer);
1578         carry_flag = 0;
1579
1580         DEBUGPRINTF_COMPUTATION(("%s ^ ", sc_print_hex(value1)));
1581         DEBUGPRINTF_COMPUTATION(("%s -> ", sc_print_hex(value2)));
1582
1583         do_bitxor(value1, value2, calc_buffer);
1584
1585         DEBUGPRINTF_COMPUTATION(("%s\n", sc_print_hex(calc_buffer)));
1586
1587         if ((buffer != NULL) && (buffer != calc_buffer)) {
1588                 memcpy(buffer, calc_buffer, calc_buffer_size);
1589         }
1590 }
1591
1592 void sc_not(const void *value1, void *buffer) {
1593         CLEAR_BUFFER(calc_buffer);
1594         carry_flag = 0;
1595
1596         DEBUGPRINTF_COMPUTATION(("~ %s ->", sc_print_hex(value1)));
1597
1598         do_bitnot(value1, calc_buffer);
1599
1600         DEBUGPRINTF_COMPUTATION(("%s\n", sc_print_hex(calc_buffer)));
1601
1602         if ((buffer != NULL) && (buffer != calc_buffer)) {
1603                 memcpy(buffer, calc_buffer, calc_buffer_size);
1604         }
1605 }
1606
1607 void sc_mul(const void *value1, const void *value2, void *buffer) {
1608         CLEAR_BUFFER(calc_buffer);
1609         carry_flag = 0;
1610
1611         DEBUGPRINTF_COMPUTATION(("%s * ", sc_print_hex(value1)));
1612         DEBUGPRINTF_COMPUTATION(("%s -> ", sc_print_hex(value2)));
1613
1614         do_mul(value1, value2, calc_buffer);
1615
1616         DEBUGPRINTF_COMPUTATION(("%s\n", sc_print_hex(calc_buffer)));
1617
1618         if ((buffer != NULL) && (buffer != calc_buffer)) {
1619                 memcpy(buffer, calc_buffer, calc_buffer_size);
1620         }
1621 }
1622
1623 void sc_div(const void *value1, const void *value2, void *buffer) {
1624         /* temp buffer holding unused result of divmod */
1625         char *unused_res = alloca(calc_buffer_size);
1626
1627         CLEAR_BUFFER(calc_buffer);
1628         carry_flag = 0;
1629
1630         DEBUGPRINTF_COMPUTATION(("%s / ", sc_print_hex(value1)));
1631         DEBUGPRINTF_COMPUTATION(("%s -> ", sc_print_hex(value2)));
1632
1633         do_divmod(value1, value2, calc_buffer, unused_res);
1634
1635         DEBUGPRINTF_COMPUTATION(("%s\n", sc_print_hex(calc_buffer)));
1636
1637         if ((buffer != NULL) && (buffer != calc_buffer)) {
1638                 memcpy(buffer, calc_buffer, calc_buffer_size);
1639         }
1640 }
1641
1642 void sc_mod(const void *value1, const void *value2, void *buffer) {
1643         /* temp buffer holding unused result of divmod */
1644         char *unused_res = alloca(calc_buffer_size);
1645
1646         CLEAR_BUFFER(calc_buffer);
1647         carry_flag = 0;
1648
1649         DEBUGPRINTF_COMPUTATION(("%s %% ", sc_print_hex(value1)));
1650         DEBUGPRINTF_COMPUTATION(("%s -> ", sc_print_hex(value2)));
1651
1652         do_divmod(value1, value2, unused_res, calc_buffer);
1653
1654         DEBUGPRINTF_COMPUTATION(("%s\n", sc_print_hex(calc_buffer)));
1655
1656         if ((buffer != NULL) && (buffer != calc_buffer)) {
1657                 memcpy(buffer, calc_buffer, calc_buffer_size);
1658         }
1659 }
1660
1661 void sc_divmod(const void *value1, const void *value2, void *div_buffer, void *mod_buffer) {
1662         CLEAR_BUFFER(calc_buffer);
1663         carry_flag = 0;
1664
1665         DEBUGPRINTF_COMPUTATION(("%s %% ", sc_print_hex(value1)));
1666         DEBUGPRINTF_COMPUTATION(("%s -> ", sc_print_hex(value2)));
1667
1668         do_divmod(value1, value2, div_buffer, mod_buffer);
1669
1670         DEBUGPRINTF_COMPUTATION(("%s:%s\n", sc_print_hex(div_buffer), sc_print_hex(mod_buffer)));
1671 }
1672
1673
1674 void sc_shlI(const void *val1, long shift_cnt, int bitsize, int sign, void *buffer) {
1675         carry_flag = 0;
1676
1677         DEBUGPRINTF_COMPUTATION(("%s << %ld ", sc_print_hex(value1), shift_cnt));
1678         do_shl(val1, calc_buffer, shift_cnt, bitsize, sign);
1679
1680         DEBUGPRINTF_COMPUTATION(("-> %s\n", sc_print_hex(calc_buffer)));
1681
1682         if ((buffer != NULL) && (buffer != calc_buffer)) {
1683                 memmove(buffer, calc_buffer, calc_buffer_size);
1684         }
1685 }
1686
1687 void sc_shl(const void *val1, const void *val2, int bitsize, int sign, void *buffer) {
1688         long offset = sc_val_to_long(val2);
1689
1690         sc_shlI(val1, offset, bitsize, sign, buffer);
1691 }
1692
1693 void sc_shrI(const void *val1, long shift_cnt, int bitsize, int sign, void *buffer) {
1694         carry_flag = 0;
1695
1696         DEBUGPRINTF_COMPUTATION(("%s >>u %ld ", sc_print_hex(value1), shift_cnt));
1697         do_shr(val1, calc_buffer, shift_cnt, bitsize, sign, 0);
1698
1699         DEBUGPRINTF_COMPUTATION(("-> %s\n", sc_print_hex(calc_buffer)));
1700
1701         if ((buffer != NULL) && (buffer != calc_buffer)) {
1702                 memmove(buffer, calc_buffer, calc_buffer_size);
1703         }
1704 }
1705
1706 void sc_shr(const void *val1, const void *val2, int bitsize, int sign, void *buffer) {
1707         long shift_cnt = sc_val_to_long(val2);
1708
1709         sc_shrI(val1, shift_cnt, bitsize, sign, buffer);
1710 }
1711
1712 void sc_shrs(const void *val1, const void *val2, int bitsize, int sign, void *buffer) {
1713         long offset = sc_val_to_long(val2);
1714
1715         carry_flag = 0;
1716
1717         DEBUGPRINTF_COMPUTATION(("%s >>s %ld ", sc_print_hex(value1), offset));
1718         do_shr(val1, calc_buffer, offset, bitsize, sign, 1);
1719
1720         DEBUGPRINTF_COMPUTATION(("-> %s\n", sc_print_hex(calc_buffer)));
1721
1722         if ((buffer != NULL) && (buffer != calc_buffer)) {
1723                 memmove(buffer, calc_buffer, calc_buffer_size);
1724         }
1725 }
1726
1727 void sc_rotl(const void *val1, const void *val2, int bitsize, int sign, void *buffer) {
1728         long offset = sc_val_to_long(val2);
1729
1730         carry_flag = 0;
1731
1732         DEBUGPRINTF_COMPUTATION(("%s <<>> %ld ", sc_print_hex(value1), offset));
1733         do_rotl(val1, calc_buffer, offset, bitsize, sign);
1734
1735         DEBUGPRINTF_COMPUTATION(("-> %s\n", sc_print_hex(calc_buffer)));
1736
1737         if ((buffer != NULL) && (buffer != calc_buffer)) {
1738                 memmove(buffer, calc_buffer, calc_buffer_size);
1739         }
1740 }
1741
1742 void sc_zero(void *buffer) {
1743         if (buffer == NULL)
1744                 buffer = calc_buffer;
1745         CLEAR_BUFFER(buffer);
1746         carry_flag = 0;
1747 }