Add more cases to lladdsub_e.c
Add cases with long long a, b in hexadecimal, where it is more obvious whether or not a + b or a - b carries to or borrows from bit 32. Add failure codes to identify each case.
This commit is contained in:
parent
485faa2944
commit
6f84bc1dcf
|
@ -1,37 +1,59 @@
|
|||
#include "test.h"
|
||||
|
||||
/*
|
||||
* Failure code will look like
|
||||
* - 0x3e = id 0x3, 'e' or 'f' for negation
|
||||
* - 0x43a = id 0x43, 'a' for addition
|
||||
* - 0x43b = id 0x43, 'b' for subtraction
|
||||
*/
|
||||
|
||||
struct neg {
|
||||
unsigned int id;
|
||||
long long a;
|
||||
long long neg_a; /* -a */
|
||||
} negations[] = {
|
||||
{0LL, 0LL},
|
||||
{2LL, -2LL},
|
||||
{-446020022096LL, 446020022096LL},
|
||||
{0x1, 0LL, 0LL},
|
||||
{0x2, 2LL, -2LL},
|
||||
{0x3, -446020022096LL, 446020022096LL},
|
||||
};
|
||||
|
||||
struct s_addsub {
|
||||
unsigned int id;
|
||||
long long a;
|
||||
long long b;
|
||||
long long a_add_b; /* a + b */
|
||||
long long a_sub_b; /* a - b */
|
||||
} s_cases[] = {
|
||||
{2LL, 1LL, 3LL, 1LL},
|
||||
{2LL, -1LL, 1LL, 3LL},
|
||||
{0x41, 2LL, 1LL, 3LL, 1LL},
|
||||
{0x42, 2LL, -1LL, 1LL, 3LL},
|
||||
{0x43, 1LL, 2LL, 3LL, -1LL},
|
||||
/* a + b overflows 32 bits */
|
||||
{1930610480LL, 842500503LL, 2773110983LL, 1088109977LL},
|
||||
{-446020022096LL, 1037107331549LL, 591087309453LL, -1483127353645LL},
|
||||
{-737537585551LL, -847060446507LL, -1584598032058LL, 109522860956LL},
|
||||
{0x44, 0xa0000000LL, 0x60000000LL, 0x100000000LL, 0x40000000LL},
|
||||
{0x45, 1930610480LL, 842500503LL, 2773110983LL, 1088109977LL},
|
||||
/* a + b doesn't carry to bit 32; a - b does borrow from bit 32 */
|
||||
{0x51, 0x100000000LL, 0x50000000LL, 0x150000000LL, 0xb0000000LL},
|
||||
{0x52, -446020022096LL, 1037107331549LL,
|
||||
591087309453LL, -1483127353645LL},
|
||||
/* a + b does carry to bit 32; a - b doesn't borrow from bit 32 */
|
||||
{0x53, 0x3e0000000LL, 0x20000000LL, 0x400000000LL, 0x3c0000000LL},
|
||||
{0x54, -180587215220LL, 249361198573LL,
|
||||
68773983353LL, -429948413793LL},
|
||||
/* a + b does carry to bit 32; a - b does borrow from bit 32 */
|
||||
{0x55, 0x370000000LL, 0x90000000LL, 0x400000000LL, 0x2e0000000LL},
|
||||
{0x56, -737537585551LL, -847060446507LL,
|
||||
-1584598032058LL, 109522860956LL},
|
||||
};
|
||||
|
||||
struct u_addsub {
|
||||
unsigned int id;
|
||||
unsigned long long a;
|
||||
unsigned long long b;
|
||||
unsigned long long a_add_b;
|
||||
unsigned long long a_sub_b;
|
||||
} u_cases[] = {
|
||||
{2ULL, 1ULL, 3ULL, 1ULL},
|
||||
{0x81, 2ULL, 1ULL, 3ULL, 1ULL},
|
||||
/* a + b overflows 63 bits */
|
||||
{6092994517831567942ULL, 3716888886436146324ULL,
|
||||
{0x82, 6092994517831567942ULL, 3716888886436146324ULL,
|
||||
9809883404267714266ULL, 2376105631395421618ULL},
|
||||
};
|
||||
|
||||
|
@ -42,18 +64,24 @@ void _m_a_i_n(void) {
|
|||
|
||||
for (i = 0; i < LEN(negations); i++) {
|
||||
struct neg *n = &negations[i];
|
||||
ASSERT(n->a == -n->neg_a);
|
||||
ASSERT(-n->a == n->neg_a);
|
||||
if (n->a != -n->neg_a)
|
||||
fail((n->id << 4) | 0xe);
|
||||
if (-n->a != n->neg_a)
|
||||
fail((n->id << 4) | 0xf);
|
||||
}
|
||||
for (i = 0; i < LEN(s_cases); i++) {
|
||||
struct s_addsub *s = &s_cases[i];
|
||||
ASSERT(s->a + s->b == s->a_add_b);
|
||||
ASSERT(s->a - s->b == s->a_sub_b);
|
||||
if (s->a + s->b != s->a_add_b)
|
||||
fail((s->id << 4) | 0xa);
|
||||
if (s->a - s->b != s->a_sub_b)
|
||||
fail((s->id << 4) | 0xb);
|
||||
}
|
||||
for (i = 0; i < LEN(u_cases); i++) {
|
||||
struct u_addsub *u = &u_cases[i];
|
||||
ASSERT(u->a + u->b == u->a_add_b);
|
||||
ASSERT(u->a - u->b == u->a_sub_b);
|
||||
if (u->a + u->b != u->a_add_b)
|
||||
fail((u->id << 4) | 0xa);
|
||||
if (u->a - u->b != u->a_sub_b)
|
||||
fail((u->id << 4) | 0xb);
|
||||
}
|
||||
finished();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue