a469b93af99936c2528ed1042359fff2620f75c1
[fw/sdcc] / support / regression / tests / libmullong.c
1 /* Test _mullong.c from library
2
3     type: asm, c
4  */
5 #include <testfwk.h>
6
7 #define type_{type}
8
9 #if defined(PORT_HOST)
10 #  include "sdccconf.h"
11 #  define mullong(a,b) mullong_wrapper(a,b)
12 #  if defined(type_c) && !defined(WORDS_BIGENDIAN)
13 #    define _SDCC_NO_ASM_LIB_FUNCS 1
14 #    define near
15 #    define long int
16 #    include "device/lib/_mullong.c"
17 #  endif
18 #else
19 #  if defined(type_c)
20 #    define _SDCC_NO_ASM_LIB_FUNCS 1
21 #  endif
22 #  include "device/lib/_mullong.c"
23 #  define mullong _mullong
24 #endif
25
26 /* gcc 2.95.2 on usf-cf-x86-linux-1 (debian 2.2) has a bug with
27  * packing structs
28  */
29 #if defined(PORT_HOST)
30
31 #if defined(type_c) && !defined(WORDS_BIGENDIAN)
32 struct
33 {
34   char c1;
35   short i;
36   char c2;
37 } pack_test;
38
39 TYPE_DWORD
40 mullong_wrapper (TYPE_DWORD a, TYPE_DWORD b)
41 {
42   if (sizeof(pack_test) == 4)
43     /* length of struct ok: use SDCC library */
44     return _mullong (a, b);
45   else
46     {
47       /* buggy gcc: use generic multiplication */
48       return a * b;
49     }
50 }
51
52 #else
53
54 TYPE_DWORD
55 mullong_wrapper (TYPE_DWORD a, TYPE_DWORD b)
56 {
57     return a * b;
58 }
59
60 #endif
61
62 #endif
63
64 void
65 testlibmullong(void)
66 {
67   ASSERT(mullong (         0,          0) ==          0);
68   ASSERT(mullong (     0x100,      0x100) ==    0x10000);
69   ASSERT(mullong (0x01020304,          3) == 0x0306090c);
70   ASSERT(mullong (         3, 0x01020304) == 0x0306090c);
71   ASSERT(mullong (0x000000ff,          2) == 0x000001fe);
72   ASSERT(mullong (         2, 0x000000ff) == 0x000001fe);
73   ASSERT(mullong (0x00007fff,          4) == 0x0001fffc);
74   ASSERT(mullong (         4, 0x00007fff) == 0x0001fffc);
75   ASSERT(mullong (0x003fffff,          8) == 0x01fffff8);
76   ASSERT(mullong (         8, 0x003fffff) == 0x01fffff8);
77
78   ASSERT(mullong (      0x33,       0x34) == 0x00000a5c);
79   ASSERT(mullong (      0x34,       0x33) == 0x00000a5c);
80   ASSERT(mullong (    0x3334,     0x3536) == 0x0aa490f8);
81   ASSERT(mullong (    0x3536,     0x3334) == 0x0aa490f8);
82   ASSERT(mullong (  0x333435,   0x363738) == 0x0e98ce98);
83   ASSERT(mullong (  0x363738,   0x333435) == 0x0e98ce98);
84   ASSERT(mullong (0x33343536, 0x3738393a) == 0x777d143c);
85   ASSERT(mullong (0x3738393a, 0x33343536) == 0x777d143c);
86
87   ASSERT(mullong (      0xff,       0xfe) == 0x0000fd02);
88   ASSERT(mullong (      0xfe,       0xff) == 0x0000fd02);
89   ASSERT(mullong (    0xfffe,     0xfdfc) == 0xfdfa0408);
90   ASSERT(mullong (    0xfdfc,     0xfffe) == 0xfdfa0408);
91   ASSERT(mullong (  0xfffefd,   0xfcfbfa) == 0xfa0d1212);
92   ASSERT(mullong (  0xfcfbfa,   0xfffefd) == 0xfa0d1212);
93   ASSERT(mullong (0xfffefdfc, 0xfbfaf9f8) == 0x20282820);
94   ASSERT(mullong (0xfbfaf9f8, 0xfffefdfc) == 0x20282820);
95
96   ASSERT(mullong (0xff000000, 0xff000000) ==          0);
97   ASSERT(mullong (0xffff0000, 0xffff0000) ==          0);
98   ASSERT(mullong (0xfffffe00, 0xfffffd00) == 0x00060000);
99   ASSERT(mullong (0xfffffd00, 0xfffffe00) == 0x00060000);
100   ASSERT(mullong (0xfffffefd, 0xfffffcfb) == 0x00030e0f);
101   ASSERT(mullong (0xfffffcfb, 0xfffffefd) == 0x00030e0f);
102
103   ASSERT(mullong (0xffffffff, 0xffffffff) ==          1);
104 }