Commit b28f36db1889d3b8d01566edf576039e413589ed

Thomas de Grivel 2024-03-07T09:33:30

wip tag_mul

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
diff --git a/libc3/tag_mul.c b/libc3/tag_mul.c
index 03f0e4b..7403294 100644
--- a/libc3/tag_mul.c
+++ b/libc3/tag_mul.c
@@ -312,12 +312,24 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       }
       complex_clean(&c);
       return dest;
+    case TAG_INTEGER:
+      goto ko;
     case TAG_RATIO:
       if (! ratio_mul(&a->data.ratio, &b->data.ratio,
                       &dest->data.ratio))
         return NULL;
       dest->type = TAG_RATIO;
       return dest;
+    case TAG_S8:
+    case TAG_S16:
+    case TAG_S32:
+    case TAG_S64:
+    case TAG_SW:
+    case TAG_U8:
+    case TAG_U16:
+    case TAG_U32:
+    case TAG_U64:
+    case TAG_UW:
     default:
       goto ko;
     }
@@ -418,6 +430,14 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       integer_clean(&tmp);
       integer_clean(&tmp2);
       return dest;
+    case TAG_SW:
+      integer_init_s16(&tmp, a->data.s16);
+      integer_init_sw(&tmp2, b->data.sw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
     case TAG_U8:
       return tag_init_s32(dest, (s32) a->data.s16 * (s32) b->data.u8);
     case TAG_U16:
@@ -432,6 +452,14 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       integer_clean(&tmp);
       integer_clean(&tmp2);
       return dest;
+    case TAG_UW:
+      integer_init_s16(&tmp, a->data.s16);
+      integer_init_uw(&tmp2, b->data.uw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
     default:
       goto ko;
   }
@@ -467,6 +495,14 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       integer_clean(&tmp);
       integer_clean(&tmp2);
       return dest;
+    case TAG_SW:
+      integer_init_s32(&tmp, a->data.s32);
+      integer_init_sw(&tmp2, b->data.sw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
     case TAG_U8:
       return tag_init_s64(dest, (s64) a->data.s32 * (s64) b->data.u8);
     case TAG_U16:
@@ -481,6 +517,14 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       integer_clean(&tmp);
       integer_clean(&tmp2);
       return dest;
+    case TAG_UW:
+      integer_init_s32(&tmp, a->data.s32);
+      integer_init_uw(&tmp2, b->data.uw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
     default:
       goto ko;
   }
@@ -494,6 +538,8 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       return tag_init_f32(dest, (f32) a->data.s64 * b->data.f32);
     case TAG_F64:
       return tag_init_f64(dest, (f64) a->data.s64 * b->data.f64);
+    case TAG_F128:
+      return tag_init_f128(dest, (f128) a->data.s64 * b->data.f128);
     case TAG_INTEGER:
       integer_init_s64(&tmp, a->data.s64);
       dest->type = TAG_INTEGER;
@@ -532,6 +578,14 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       integer_clean(&tmp);
       integer_clean(&tmp2);
       return dest;
+    case TAG_SW:
+      integer_init_s64(&tmp, a->data.s64);
+      integer_init_sw(&tmp2, b->data.sw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
     case TAG_U8:
       integer_init_s64(&tmp, a->data.s64);
       integer_init_u8(&tmp2, b->data.u8);
@@ -564,6 +618,14 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       integer_clean(&tmp);
       integer_clean(&tmp2);
       return dest;
+    case TAG_UW:
+      integer_init_s64(&tmp, a->data.s64);
+      integer_init_uw(&tmp2, b->data.uw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
     default:
       goto ko;
   }
@@ -577,6 +639,8 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       return tag_init_f32(dest, (f32) a->data.sw * b->data.f32);
     case TAG_F64:
       return tag_init_f64(dest, (f64) a->data.sw * b->data.f64);
+    case TAG_F128:
+      return tag_init_f128(dest, (f128) a->data.sw * b->data.f128);
     case TAG_INTEGER:
       integer_init_sw(&tmp, a->data.sw);
       dest->type = TAG_INTEGER;
@@ -668,10 +732,16 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
   }
   case TAG_U8:
     switch (b->type) {
+    case TAG_COMPLEX:
+      complex_init_u8(&c, a->data.u8);
+      return tag_init_complex(dest, complex_new_mul(&c,
+                                                    b->data.complex));
     case TAG_F32:
       return tag_init_f32(dest, (f32) a->data.u8 * b->data.f32);
     case TAG_F64:
       return tag_init_f64(dest, (f64) a->data.u8 * b->data.f64);
+    case TAG_F128:
+      return tag_init_f128(dest, (f128) a->data.u8 * b->data.f128);
     case TAG_INTEGER:
       integer_init_u8(&tmp, a->data.u8);
       dest->type = TAG_INTEGER;
@@ -692,6 +762,14 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       integer_clean(&tmp);
       integer_clean(&tmp2);
       return dest;
+    case TAG_SW:
+      integer_init_u8(&tmp, a->data.u8);
+      integer_init_sw(&tmp2, b->data.sw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
     case TAG_U8:
       return tag_init_u16(dest, (u16) a->data.u8 * (u16) b->data.u8);
     case TAG_U16:
@@ -706,15 +784,29 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       integer_clean(&tmp);
       integer_clean(&tmp2);
       return dest;
+    case TAG_UW:
+      integer_init_u8(&tmp, a->data.u8);
+      integer_init_uw(&tmp2, b->data.uw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
     default:
       goto ko;
   }
   case TAG_U16:
     switch (b->type) {
+    case TAG_COMPLEX:
+      complex_init_u16(&c, a->data.u16);
+      return tag_init_complex(dest, complex_new_mul(&c,
+                                                    b->data.complex));
     case TAG_F32:
       return tag_init_f32(dest, (f32) a->data.u16 * b->data.f32);
     case TAG_F64:
       return tag_init_f64(dest, (f64) a->data.u16 * b->data.f64);
+    case TAG_F128:
+      return tag_init_f128(dest, (f128) a->data.u16 * b->data.f128);
     case TAG_INTEGER:
       integer_init_u16(&tmp, a->data.u16);
       dest->type = TAG_INTEGER;
@@ -735,6 +827,14 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       integer_clean(&tmp);
       integer_clean(&tmp2);
       return dest;
+    case TAG_SW:
+      integer_init_u16(&tmp, a->data.u16);
+      integer_init_sw(&tmp2, b->data.sw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
     case TAG_U8:
       return tag_init_u32(dest, (u32) a->data.u16 * (u32) b->data.u8);
     case TAG_U16:
@@ -749,15 +849,29 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       integer_clean(&tmp);
       integer_clean(&tmp2);
       return dest;
+    case TAG_UW:
+      integer_init_u16(&tmp, a->data.u16);
+      integer_init_uw(&tmp2, b->data.uw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
     default:
       goto ko;
   }
   case TAG_U32:
     switch (b->type) {
+    case TAG_COMPLEX:
+      complex_init_u32(&c, a->data.u32);
+      return tag_init_complex(dest, complex_new_mul(&c,
+                                                    b->data.complex));
     case TAG_F32:
       return tag_init_f32(dest, (f32) a->data.u32 * b->data.f32);
     case TAG_F64:
       return tag_init_f64(dest, (f64) a->data.u32 * b->data.f64);
+    case TAG_F128:
+      return tag_init_f128(dest, (f128) a->data.u32 * b->data.f128);
     case TAG_INTEGER:
       integer_init_u32(&tmp, a->data.u32);
       dest->type = TAG_INTEGER;
@@ -778,6 +892,14 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       integer_clean(&tmp);
       integer_clean(&tmp2);
       return dest;
+    case TAG_SW:
+      integer_init_u32(&tmp, a->data.u32);
+      integer_init_sw(&tmp2, b->data.sw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
     case TAG_U8:
       return tag_init_u64(dest, (u64) a->data.u32 * (u64) b->data.u8);
     case TAG_U16:
@@ -792,15 +914,29 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       integer_clean(&tmp);
       integer_clean(&tmp2);
       return dest;
+    case TAG_UW:
+      integer_init_u32(&tmp, a->data.u32);
+      integer_init_uw(&tmp2, b->data.uw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
     default:
       goto ko;
   }
   case TAG_U64:
     switch (b->type) {
+    case TAG_COMPLEX:
+      complex_init_u64(&c, a->data.u64);
+      return tag_init_complex(dest, complex_new_mul(&c,
+                                                    b->data.complex));
     case TAG_F32:
       return tag_init_f32(dest, (f32) a->data.u64 * b->data.f32);
     case TAG_F64:
       return tag_init_f64(dest, (f64) a->data.u64 * b->data.f64);
+    case TAG_F128:
+      return tag_init_f128(dest, (f128) a->data.u64 * b->data.f128);
     case TAG_INTEGER:
       integer_init_u64(&tmp, a->data.u64);
       dest->type = TAG_INTEGER;
@@ -839,6 +975,14 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       integer_clean(&tmp);
       integer_clean(&tmp2);
       return dest;
+    case TAG_SW:
+      integer_init_u64(&tmp, a->data.u64);
+      integer_init_sw(&tmp2, b->data.sw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
     case TAG_U8:
       integer_init_u64(&tmp, a->data.u64);
       integer_init_u8(&tmp2, b->data.u8);
@@ -871,6 +1015,115 @@ s_tag * tag_mul (const s_tag *a, const s_tag *b, s_tag *dest)
       integer_clean(&tmp);
       integer_clean(&tmp2);
       return dest;
+    case TAG_UW:
+      integer_init_u64(&tmp, a->data.u64);
+      integer_init_uw(&tmp2, b->data.uw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
+    default:
+      goto ko;
+    }
+  case TAG_UW:
+    switch (b->type) {
+    case TAG_COMPLEX:
+      complex_init_uw(&c, a->data.uw);
+      return tag_init_complex(dest, complex_new_mul(&c,
+                                                    b->data.complex));
+    case TAG_F32:
+      return tag_init_f32(dest, (f32) a->data.uw * b->data.f32);
+    case TAG_F64:
+      return tag_init_f64(dest, (f64) a->data.uw * b->data.f64);
+    case TAG_F128:
+      return tag_init_f128(dest, (f128) a->data.uw * b->data.f128);
+    case TAG_INTEGER:
+      integer_init_uw(&tmp, a->data.uw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &b->data.integer, &dest->data.integer);
+      integer_clean(&tmp);
+      return dest;
+    case TAG_S8:
+      integer_init_uw(&tmp, a->data.uw);
+      integer_init_s8(&tmp2, b->data.s8);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
+    case TAG_S16:
+      integer_init_uw(&tmp, a->data.uw);
+      integer_init_s16(&tmp2, b->data.s16);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
+    case TAG_S32:
+      integer_init_uw(&tmp, a->data.uw);
+      integer_init_s32(&tmp2, b->data.s32);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
+    case TAG_S64:
+      integer_init_uw(&tmp, a->data.uw);
+      integer_init_s64(&tmp2, b->data.s64);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
+    case TAG_SW:
+      integer_init_uw(&tmp, a->data.uw);
+      integer_init_sw(&tmp2, b->data.sw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
+    case TAG_U8:
+      integer_init_uw(&tmp, a->data.uw);
+      integer_init_u8(&tmp2, b->data.u8);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
+    case TAG_U16:
+      integer_init_uw(&tmp, a->data.uw);
+      integer_init_u16(&tmp2, b->data.u16);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
+    case TAG_U32:
+      integer_init_uw(&tmp, a->data.uw);
+      integer_init_u32(&tmp2, b->data.u32);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
+    case TAG_U64:
+      integer_init_uw(&tmp, a->data.uw);
+      integer_init_u64(&tmp2, b->data.u64);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
+    case TAG_UW:
+      integer_init_uw(&tmp, a->data.uw);
+      integer_init_uw(&tmp2, b->data.uw);
+      dest->type = TAG_INTEGER;
+      integer_mul(&tmp, &tmp2, &dest->data.integer);
+      integer_clean(&tmp);
+      integer_clean(&tmp2);
+      return dest;
     default:
       goto ko;
     }