MWCC/compiler_and_linker/unsorted/CInt64.c

893 lines
20 KiB
C
Raw Normal View History

2022-10-25 19:30:28 +00:00
#include "compiler/CInt64.h"
2022-10-07 19:02:27 +00:00
const CInt64 cint64_negone = {0xFFFFFFFF, 0xFFFFFFFF};
const CInt64 cint64_zero = {0, 0};
const CInt64 cint64_one = {0, 1};
const CInt64 cint64_max = {0x7FFFFFFF, 0xFFFFFFFF};
const CInt64 cint64_min = {0x80000000, 0};
#define SHIFT_LEFT_ONE(a, b) do { a <<= 1; if (b & 0x80000000) { a |= 1; } b <<= 1; } while(0)
2023-01-11 22:29:53 +00:00
void CInt64_Init(void) {
2022-10-07 19:02:27 +00:00
}
CInt64 CInt64_Not(CInt64 input) {
CInt64 output;
2022-10-25 19:30:28 +00:00
Boolean c;
2022-10-07 19:02:27 +00:00
2022-10-25 19:30:28 +00:00
c = (input.hi == 0 && input.lo == 0);
2022-10-07 19:02:27 +00:00
CInt64_SetLong(&output, c);
return output;
}
CInt64 CInt64_Inv(CInt64 input) {
CInt64 output;
2022-10-25 19:30:28 +00:00
output.hi = ~input.hi;
output.lo = ~input.lo;
2022-10-07 19:02:27 +00:00
return output;
}
CInt64 CInt64_Add(CInt64 lhs, CInt64 rhs) {
2022-10-25 19:30:28 +00:00
if (lhs.lo & 0x80000000) {
if (rhs.lo & 0x80000000) {
lhs.lo += rhs.lo;
lhs.hi += 1;
2022-10-07 19:02:27 +00:00
} else {
2022-10-25 19:30:28 +00:00
lhs.lo += rhs.lo;
if (!(lhs.lo & 0x80000000))
lhs.hi += 1;
2022-10-07 19:02:27 +00:00
}
} else {
2022-10-25 19:30:28 +00:00
if (rhs.lo & 0x80000000) {
lhs.lo += rhs.lo;
if (!(lhs.lo & 0x80000000))
lhs.hi += 1;
2022-10-07 19:02:27 +00:00
} else {
2022-10-25 19:30:28 +00:00
lhs.lo += rhs.lo;
2022-10-07 19:02:27 +00:00
}
}
2022-10-25 19:30:28 +00:00
lhs.hi += rhs.hi;
2022-10-07 19:02:27 +00:00
return lhs;
}
CInt64 CInt64_Neg(CInt64 input) {
CInt64 result;
result = CInt64_Add(CInt64_Inv(input), cint64_one);
return result;
}
CInt64 CInt64_Sub(CInt64 lhs, CInt64 rhs) {
lhs = CInt64_Add(lhs, CInt64_Neg(rhs));
return lhs;
}
CInt64 CInt64_MulU(CInt64 lhs, CInt64 rhs) {
CInt64 result;
CInt64 work1;
2022-10-25 19:30:28 +00:00
UInt32 aaaa;
UInt32 bbbb;
UInt32 cccc;
UInt32 dddd;
UInt32 eeee;
aaaa = rhs.lo;
result.hi = result.lo = 0;
bbbb = lhs.lo;
cccc = rhs.hi;
dddd = rhs.lo;
2022-10-07 19:02:27 +00:00
while (bbbb != 0) {
if (bbbb & 1) {
2022-10-25 19:30:28 +00:00
work1.hi = cccc;
work1.lo = dddd;
2022-10-07 19:02:27 +00:00
result = CInt64_Add(result, work1);
}
cccc <<= 1;
if (dddd & 0x80000000)
cccc |= 1;
dddd <<= 1;
bbbb >>= 1;
}
2022-10-25 19:30:28 +00:00
eeee = lhs.hi;
2022-10-07 19:02:27 +00:00
while (eeee != 0 && aaaa != 0) {
if (eeee & 1)
2022-10-25 19:30:28 +00:00
result.hi += aaaa;
2022-10-07 19:02:27 +00:00
aaaa <<= 1;
eeee >>= 1;
}
return result;
}
CInt64 CInt64_Mul(CInt64 lhs, CInt64 rhs) {
if (CInt64_IsNegative(&rhs)) {
if (CInt64_IsNegative(&lhs)) {
return CInt64_MulU(CInt64_Neg(lhs), CInt64_Neg(rhs));
}
return CInt64_Neg(CInt64_MulU(lhs, CInt64_Neg(rhs)));
}
if (CInt64_IsNegative(&lhs)) {
return CInt64_Neg(CInt64_MulU(CInt64_Neg(lhs), rhs));
}
return CInt64_MulU(lhs, rhs);
}
void CInt64_DivMod(const CInt64 *lhs, const CInt64 *rhs, CInt64 *pDiv, CInt64 *pMod) {
2022-10-25 19:30:28 +00:00
Boolean bad;
UInt32 workA;
UInt32 workB;
UInt32 leftA;
UInt32 leftB;
UInt32 rightA;
UInt32 rightB;
UInt32 outA;
UInt32 outB;
2022-10-07 19:02:27 +00:00
CInt64 work;
int counter;
2022-10-25 19:30:28 +00:00
bad = (rhs->hi == 0) && (rhs->lo == 0);
2022-10-07 19:02:27 +00:00
if (!bad) {
workA = 0;
workB = 0;
2022-10-25 19:30:28 +00:00
leftA = lhs->hi;
leftB = lhs->lo;
rightA = rhs->hi;
rightB = rhs->lo;
2022-10-07 19:02:27 +00:00
outA = 0;
outB = 0;
counter = 0;
do {
workA <<= 1;
if (workB & 0x80000000)
workA |= 1;
workB <<= 1;
if (leftA & 0x80000000)
workB |= 1;
leftA <<= 1;
if (leftB & 0x80000000)
leftA |= 1;
leftB <<= 1;
outA <<= 1;
if (outB & 0x80000000)
outA |= 1;
outB <<= 1;
if (workA <= rightA) {
if (workA != rightA)
continue;
if (workB < rightB)
continue;
}
outB |= 1;
2022-10-25 19:30:28 +00:00
work.hi = workA;
work.lo = workB;
2022-10-07 19:02:27 +00:00
work = CInt64_Sub(work, *rhs);
2022-10-25 19:30:28 +00:00
workA = work.hi;
workB = work.lo;
2022-10-07 19:02:27 +00:00
} while (++counter < 64);
if (pDiv) {
2022-10-25 19:30:28 +00:00
pDiv->hi = outA;
pDiv->lo = outB;
2022-10-07 19:02:27 +00:00
}
if (pMod) {
2022-10-25 19:30:28 +00:00
pMod->hi = workA;
pMod->lo = workB;
2022-10-07 19:02:27 +00:00
}
}
}
CInt64 CInt64_Div(CInt64 lhs, CInt64 rhs) {
CInt64 result;
if (CInt64_IsNegative(&rhs)) {
rhs = CInt64_Neg(rhs);
if (CInt64_IsNegative(&lhs)) {
lhs = CInt64_Neg(lhs);
CInt64_DivMod(&lhs, &rhs, &result, 0);
return result;
} else {
CInt64_DivMod(&lhs, &rhs, &result, 0);
return CInt64_Neg(result);
}
} else {
if (CInt64_IsNegative(&lhs)) {
lhs = CInt64_Neg(lhs);
CInt64_DivMod(&lhs, &rhs, &result, 0);
return CInt64_Neg(result);
} else {
CInt64_DivMod(&lhs, &rhs, &result, 0);
return result;
}
}
}
CInt64 CInt64_DivU(CInt64 lhs, CInt64 rhs) {
CInt64 result;
CInt64_DivMod(&lhs, &rhs, &result, 0);
return result;
}
CInt64 CInt64_Mod(CInt64 lhs, CInt64 rhs) {
CInt64 result;
if (CInt64_IsNegative(&lhs)) {
lhs = CInt64_Neg(lhs);
if (CInt64_IsNegative(&rhs))
rhs = CInt64_Neg(rhs);
CInt64_DivMod(&lhs, &rhs, 0, &result);
return CInt64_Neg(result);
} else {
if (CInt64_IsNegative(&rhs))
rhs = CInt64_Neg(rhs);
CInt64_DivMod(&lhs, &rhs, 0, &result);
return result;
}
}
CInt64 CInt64_ModU(CInt64 lhs, CInt64 rhs) {
CInt64 result;
CInt64_DivMod(&lhs, &rhs, 0, &result);
return result;
}
CInt64 CInt64_Shl(CInt64 lhs, CInt64 rhs) {
int counter;
2022-10-25 19:30:28 +00:00
UInt32 a;
UInt32 b;
2022-10-07 19:02:27 +00:00
2022-10-25 19:30:28 +00:00
if (rhs.hi == 0 && rhs.lo < 64) {
a = lhs.hi;
b = lhs.lo;
for (counter = rhs.lo; counter != 0; --counter) {
2022-10-07 19:02:27 +00:00
a <<= 1;
if (b & 0x80000000)
a |= 1;
b <<= 1;
}
2022-10-25 19:30:28 +00:00
lhs.hi = a;
lhs.lo = b;
2022-10-07 19:02:27 +00:00
} else {
2022-10-25 19:30:28 +00:00
lhs.hi = 0;
lhs.lo = 0;
2022-10-07 19:02:27 +00:00
}
return lhs;
}
CInt64 CInt64_Shr(CInt64 lhs, CInt64 rhs) {
int counter;
2022-10-25 19:30:28 +00:00
SInt32 a;
UInt32 b;
2022-10-07 19:02:27 +00:00
2022-10-25 19:30:28 +00:00
if (rhs.hi == 0 && rhs.lo < 64) {
a = lhs.hi;
b = lhs.lo;
for (counter = rhs.lo; counter != 0; --counter) {
2022-10-07 19:02:27 +00:00
b >>= 1;
if (a & 1)
b |= 0x80000000;
a >>= 1;
}
2022-10-25 19:30:28 +00:00
lhs.hi = a;
lhs.lo = b;
2022-10-07 19:02:27 +00:00
} else {
2022-10-25 19:30:28 +00:00
if (lhs.hi & 0x80000000) {
lhs.hi = 0xFFFFFFFF;
lhs.lo = 0xFFFFFFFF;
2022-10-07 19:02:27 +00:00
} else {
2022-10-25 19:30:28 +00:00
lhs.hi = 0;
lhs.lo = 0;
2022-10-07 19:02:27 +00:00
}
}
return lhs;
}
CInt64 CInt64_ShrU(CInt64 lhs, CInt64 rhs) {
int counter;
2022-10-25 19:30:28 +00:00
UInt32 a;
UInt32 b;
2022-10-07 19:02:27 +00:00
2022-10-25 19:30:28 +00:00
if (rhs.hi == 0 && rhs.lo < 64) {
a = lhs.hi;
b = lhs.lo;
for (counter = rhs.lo; counter != 0; --counter) {
2022-10-07 19:02:27 +00:00
b >>= 1;
if (a & 1)
b |= 0x80000000;
a >>= 1;
}
2022-10-25 19:30:28 +00:00
lhs.hi = a;
lhs.lo = b;
2022-10-07 19:02:27 +00:00
} else {
2022-10-25 19:30:28 +00:00
lhs.hi = 0;
lhs.lo = 0;
2022-10-07 19:02:27 +00:00
}
return lhs;
}
int CInt64_UnsignedCompare(const CInt64 *lhs, const CInt64 *rhs) {
2022-10-25 19:30:28 +00:00
if (lhs->hi == rhs->hi) {
if (lhs->lo < rhs->lo)
2022-10-07 19:02:27 +00:00
return -1;
else
2022-10-25 19:30:28 +00:00
return lhs->lo > rhs->lo;
2022-10-07 19:02:27 +00:00
} else {
2022-10-25 19:30:28 +00:00
return ((UInt32) lhs->hi < rhs->hi) ? -1 : 1;
2022-10-07 19:02:27 +00:00
}
}
int CInt64_SignedCompare(const CInt64 *lhs, const CInt64 *rhs) {
CInt64 lhs_;
CInt64 rhs_;
lhs_ = CInt64_Xor(*lhs, cint64_min);
rhs_ = CInt64_Xor(*rhs, cint64_min);
return CInt64_UnsignedCompare(&lhs_, &rhs_);
}
2022-10-25 19:30:28 +00:00
Boolean CInt64_Less(CInt64 lhs, CInt64 rhs) {
2022-10-07 19:02:27 +00:00
return CInt64_SignedCompare(&lhs, &rhs) < 0;
}
2022-10-25 19:30:28 +00:00
Boolean CInt64_LessU(CInt64 lhs, CInt64 rhs) {
2022-10-07 19:02:27 +00:00
return CInt64_UnsignedCompare(&lhs, &rhs) < 0;
}
2022-10-25 19:30:28 +00:00
Boolean CInt64_Greater(CInt64 lhs, CInt64 rhs) {
2022-10-07 19:02:27 +00:00
return CInt64_SignedCompare(&lhs, &rhs) > 0;
}
2022-10-25 19:30:28 +00:00
Boolean CInt64_GreaterU(CInt64 lhs, CInt64 rhs) {
2022-10-07 19:02:27 +00:00
return CInt64_UnsignedCompare(&lhs, &rhs) > 0;
}
2022-10-25 19:30:28 +00:00
Boolean CInt64_LessEqual(CInt64 lhs, CInt64 rhs) {
2022-10-07 19:02:27 +00:00
return CInt64_SignedCompare(&lhs, &rhs) <= 0;
}
2022-10-25 19:30:28 +00:00
Boolean CInt64_LessEqualU(CInt64 lhs, CInt64 rhs) {
2022-10-07 19:02:27 +00:00
return CInt64_UnsignedCompare(&lhs, &rhs) <= 0;
}
2022-10-25 19:30:28 +00:00
Boolean CInt64_GreaterEqual(CInt64 lhs, CInt64 rhs) {
2022-10-07 19:02:27 +00:00
return CInt64_SignedCompare(&lhs, &rhs) >= 0;
}
2022-10-25 19:30:28 +00:00
Boolean CInt64_GreaterEqualU(CInt64 lhs, CInt64 rhs) {
2022-10-07 19:02:27 +00:00
return CInt64_UnsignedCompare(&lhs, &rhs) >= 0;
}
2022-10-25 19:30:28 +00:00
Boolean CInt64_Equal(CInt64 lhs, CInt64 rhs) {
return lhs.hi == rhs.hi && lhs.lo == rhs.lo;
2022-10-07 19:02:27 +00:00
}
2022-10-25 19:30:28 +00:00
Boolean CInt64_NotEqual(CInt64 lhs, CInt64 rhs) {
return lhs.hi != rhs.hi || lhs.lo != rhs.lo;
2022-10-07 19:02:27 +00:00
}
2022-10-25 19:30:28 +00:00
Boolean CInt64_IsInRange(CInt64 value, short len) {
2022-10-07 19:02:27 +00:00
CInt64 bound;
2022-10-25 19:30:28 +00:00
if (value.hi & 0x80000000) {
2022-10-07 19:02:27 +00:00
switch (len) {
case 1:
2022-10-25 19:30:28 +00:00
bound.lo = 0xFFFFFF80;
bound.hi = 0xFFFFFFFF;
2022-10-07 19:02:27 +00:00
break;
case 2:
2022-10-25 19:30:28 +00:00
bound.lo = 0xFFFF8000;
bound.hi = 0xFFFFFFFF;
2022-10-07 19:02:27 +00:00
break;
case 4:
2022-10-25 19:30:28 +00:00
bound.lo = 0x80000000;
bound.hi = 0xFFFFFFFF;
2022-10-07 19:02:27 +00:00
break;
case 8:
return 1;
default:
return 0;
}
return CInt64_GreaterEqual(value, bound);
} else {
switch (len) {
case 1:
2022-10-25 19:30:28 +00:00
bound.lo = 0x7F;
bound.hi = 0;
2022-10-07 19:02:27 +00:00
break;
case 2:
2022-10-25 19:30:28 +00:00
bound.lo = 0x7FFF;
bound.hi = 0;
2022-10-07 19:02:27 +00:00
break;
case 4:
2022-10-25 19:30:28 +00:00
bound.lo = 0x7FFFFFFF;
bound.hi = 0;
2022-10-07 19:02:27 +00:00
break;
case 8:
return 1;
default:
return 0;
}
return CInt64_LessEqual(value, bound);
}
}
2022-10-25 19:30:28 +00:00
Boolean CInt64_IsInURange(CInt64 value, short len) {
2022-10-07 19:02:27 +00:00
switch (len) {
case 1:
2022-10-25 19:30:28 +00:00
return value.hi == 0 && (value.lo & 0xFFFFFF00) == 0;
2022-10-07 19:02:27 +00:00
case 2:
2022-10-25 19:30:28 +00:00
return value.hi == 0 && (value.lo & 0xFFFF0000) == 0;
2022-10-07 19:02:27 +00:00
case 4:
2022-10-25 19:30:28 +00:00
return value.hi == 0;
2022-10-07 19:02:27 +00:00
case 8:
return 1;
default:
return 0;
}
}
CInt64 CInt64_And(CInt64 lhs, CInt64 rhs) {
2022-10-25 19:30:28 +00:00
lhs.hi &= rhs.hi;
lhs.lo &= rhs.lo;
2022-10-07 19:02:27 +00:00
return lhs;
}
CInt64 CInt64_Xor(CInt64 lhs, CInt64 rhs) {
2022-10-25 19:30:28 +00:00
lhs.hi ^= rhs.hi;
lhs.lo ^= rhs.lo;
2022-10-07 19:02:27 +00:00
return lhs;
}
CInt64 CInt64_Or(CInt64 lhs, CInt64 rhs) {
2022-10-25 19:30:28 +00:00
lhs.hi |= rhs.hi;
lhs.lo |= rhs.lo;
2022-10-07 19:02:27 +00:00
return lhs;
}
void CInt64_ConvertInt32(CInt64 *i) {
CInt64_Extend32(i);
}
void CInt64_ConvertUInt32(CInt64 *i) {
2022-10-25 19:30:28 +00:00
CInt64_SetULong(i, (UInt32) i->lo);
2022-10-07 19:02:27 +00:00
}
void CInt64_ConvertInt16(CInt64 *i) {
2022-10-25 19:30:28 +00:00
i->lo = (SInt32) i->lo;
2022-10-07 19:02:27 +00:00
CInt64_Extend32(i);
}
void CInt64_ConvertUInt16(CInt64 *i) {
2022-10-25 19:30:28 +00:00
CInt64_SetULong(i, (UInt16) i->lo);
2022-10-07 19:02:27 +00:00
}
void CInt64_ConvertInt8(CInt64 *i) {
2022-10-25 19:30:28 +00:00
i->lo = (SInt8) i->lo;
2022-10-07 19:02:27 +00:00
CInt64_Extend32(i);
}
void CInt64_ConvertUInt8(CInt64 *i) {
2022-10-25 19:30:28 +00:00
CInt64_SetULong(i, (UInt8) i->lo);
2022-10-07 19:02:27 +00:00
}
void CInt64_ConvertUFromLongDouble(CInt64 *pResult, double value) {
2022-10-25 19:30:28 +00:00
union { float f; UInt32 l; } cvt;
UInt32 a, b;
2022-10-07 19:02:27 +00:00
float threshold;
int bits;
if (value <= 0.0) {
2022-10-25 19:30:28 +00:00
pResult->hi = 0;
pResult->lo = 0;
2022-10-07 19:02:27 +00:00
return;
}
cvt.l = 0x5F800000;
if (value >= cvt.f) {
2022-10-25 19:30:28 +00:00
pResult->hi = 0xFFFFFFFF;
pResult->lo = 0xFFFFFFFF;
2022-10-07 19:02:27 +00:00
return;
}
a = b = 0;
for (bits = 63; bits >= 0; bits--) {
a <<= 1;
if (b & 0x80000000)
a |= 1;
b <<= 1;
if ((short) bits == 0) {
threshold = 1.0f;
} else {
cvt.l = (((short) bits + 127) & 255) << 23;
threshold = cvt.f;
}
if (threshold <= value) {
b |= 1;
value -= threshold;
}
}
2022-10-25 19:30:28 +00:00
pResult->hi = a;
pResult->lo = b;
2022-10-07 19:02:27 +00:00
}
void CInt64_ConvertFromLongDouble(CInt64 *pResult, double value) {
if (value < 0.0) {
CInt64_ConvertUFromLongDouble(pResult, -value);
*pResult = CInt64_Neg(*pResult);
} else {
CInt64_ConvertUFromLongDouble(pResult, value);
}
}
double CInt64_ConvertUToLongDouble(const CInt64 *value) {
2022-10-25 19:30:28 +00:00
Boolean bad;
UInt32 work;
2022-10-07 19:02:27 +00:00
int counter;
double result;
2022-10-25 19:30:28 +00:00
bad = (value->hi == 0) && (value->lo == 0);
2022-10-07 19:02:27 +00:00
if (bad) {
return 0.0;
} else {
result = 0.0;
2022-10-25 19:30:28 +00:00
work = value->hi;
2022-10-07 19:02:27 +00:00
if (work != 0) {
for (counter = 0; counter < 32; counter++) {
result += result;
if (work & 0x80000000)
result += 1.0;
work <<= 1;
}
}
counter = 0;
2022-10-25 19:30:28 +00:00
work = value->lo;
2022-10-07 19:02:27 +00:00
for (; counter < 32; counter++) {
result += result;
if (work & 0x80000000)
result += 1.0;
work <<= 1;
}
return result;
}
}
double CInt64_ConvertToLongDouble(const CInt64 *value) {
CInt64 tmp;
2022-10-25 19:30:28 +00:00
if (value->hi & 0x80000000) {
2022-10-07 19:02:27 +00:00
tmp = CInt64_Neg(*value);
return -CInt64_ConvertUToLongDouble(&tmp);
} else {
return CInt64_ConvertUToLongDouble(value);
}
}
2022-10-25 19:30:28 +00:00
char *CInt64_ScanOctString(CInt64 *pResult, char *str, Boolean *pFail) {
2022-10-07 19:02:27 +00:00
int ch;
CInt64 tmp;
2022-10-25 19:30:28 +00:00
UInt32 a;
UInt32 b;
2022-10-07 19:02:27 +00:00
*pFail = 0;
2022-10-25 19:30:28 +00:00
pResult->hi = pResult->lo = 0;
2022-10-07 19:02:27 +00:00
while ((ch = *str) >= '0' && *str <= '7') {
2022-10-25 19:30:28 +00:00
a = pResult->hi;
b = pResult->lo;
2022-10-07 19:02:27 +00:00
if (a & 0xE0000000)
*pFail = 1;
SHIFT_LEFT_ONE(a, b);
SHIFT_LEFT_ONE(a, b);
SHIFT_LEFT_ONE(a, b);
2022-10-25 19:30:28 +00:00
pResult->hi = a;
pResult->lo = b;
2022-10-07 19:02:27 +00:00
CInt64_SetLong(&tmp, ch - '0');
*pResult = CInt64_Add(*pResult, tmp);
++str;
}
return str;
}
2022-10-25 19:30:28 +00:00
char *CInt64_ScanDecString(CInt64 *pResult, char *str, Boolean *pFail) {
2022-10-07 19:02:27 +00:00
int ch;
CInt64 tmp;
2022-10-25 19:30:28 +00:00
UInt32 a;
UInt32 b;
2022-10-07 19:02:27 +00:00
*pFail = 0;
2022-10-25 19:30:28 +00:00
pResult->hi = pResult->lo = 0;
2022-10-07 19:02:27 +00:00
while ((ch = *str) >= '0' && *str <= '9') {
2022-10-25 19:30:28 +00:00
a = pResult->hi;
b = pResult->lo;
2022-10-07 19:02:27 +00:00
if (a & 0xE0000000)
*pFail = 1;
SHIFT_LEFT_ONE(a, b);
2022-10-25 19:30:28 +00:00
tmp.hi = a;
tmp.lo = b;
2022-10-07 19:02:27 +00:00
SHIFT_LEFT_ONE(a, b);
SHIFT_LEFT_ONE(a, b);
2022-10-25 19:30:28 +00:00
pResult->hi = a;
pResult->lo = b;
2022-10-07 19:02:27 +00:00
if (CInt64_IsNegative(pResult)) {
*pResult = CInt64_Add(*pResult, tmp);
if (!CInt64_IsNegative(pResult))
*pFail = 1;
} else {
*pResult = CInt64_Add(*pResult, tmp);
}
CInt64_SetLong(&tmp, ch - '0');
if (CInt64_IsNegative(pResult)) {
*pResult = CInt64_Add(*pResult, tmp);
if (!CInt64_IsNegative(pResult))
*pFail = 1;
} else {
*pResult = CInt64_Add(*pResult, tmp);
}
++str;
}
return str;
}
2022-10-25 19:30:28 +00:00
char *CInt64_ScanHexString(CInt64 *pResult, char *str, Boolean *pFail) {
2022-10-07 19:02:27 +00:00
/* NOT MATCHING */
int digit;
CInt64 tmp;
2022-10-25 19:30:28 +00:00
UInt32 a;
UInt32 b;
2022-10-07 19:02:27 +00:00
*pFail = 0;
2022-10-25 19:30:28 +00:00
pResult->hi = pResult->lo = 0;
2022-10-07 19:02:27 +00:00
for (;;) {
if ((digit = str[0]) >= '0' && digit <= '9')
digit = digit - '0';
else if (digit >= 'A' && digit <= 'F')
digit = digit - 'A' + 10;
else if (digit >= 'a' && digit <= 'f')
digit = digit - 'a' + 10;
else
break;
2022-10-25 19:30:28 +00:00
a = pResult->hi;
b = pResult->lo;
2022-10-07 19:02:27 +00:00
++str;
if (a & 0xF0000000)
*pFail = 1;
SHIFT_LEFT_ONE(a, b);
SHIFT_LEFT_ONE(a, b);
SHIFT_LEFT_ONE(a, b);
SHIFT_LEFT_ONE(a, b);
2022-10-25 19:30:28 +00:00
pResult->hi = a;
pResult->lo = b;
2022-10-07 19:02:27 +00:00
CInt64_SetLong(&tmp, (char) digit);
*pResult = CInt64_Add(*pResult, tmp);
}
return str;
}
2022-10-25 19:30:28 +00:00
char *CInt64_ScanBinString(CInt64 *pResult, char *str, Boolean *pFail) {
2022-10-07 19:02:27 +00:00
char digit;
2022-10-25 19:30:28 +00:00
UInt32 a;
UInt32 b;
2022-10-07 19:02:27 +00:00
*pFail = 0;
2022-10-25 19:30:28 +00:00
pResult->hi = pResult->lo = 0;
2022-10-07 19:02:27 +00:00
for (;;) {
if (*str == '0')
digit = 0;
else if (*str == '1')
digit = 1;
else
break;
2022-10-25 19:30:28 +00:00
a = pResult->hi;
b = pResult->lo;
2022-10-07 19:02:27 +00:00
++str;
if (a & 0x80000000)
*pFail = 1;
SHIFT_LEFT_ONE(a, b);
2022-10-25 19:30:28 +00:00
pResult->hi = a;
pResult->lo = b;
2022-10-07 19:02:27 +00:00
if (digit == 1)
*pResult = CInt64_Add(*pResult, cint64_one);
}
return str;
}
2022-10-25 19:30:28 +00:00
char *CInt64_ScanAsmNumber(CInt64 *pResult, char *str, Boolean *pFail) {
Boolean isMaybeBin;
Boolean isOct;
Boolean isMaybeDec;
Boolean isBin;
2022-10-07 19:02:27 +00:00
char *p;
isMaybeBin = 1;
isOct = *str == '0';
isMaybeDec = 1;
isBin = 0;
p = str;
for (;;) {
if (*p == 0)
break;
if (strchr("01", p[0])) {
if (isBin)
isMaybeBin = 0;
} else if (strchr("bB", p[0])) {
isBin = 1;
isMaybeDec = 0;
isOct = 0;
} else if (strchr("234567", p[0])) {
isMaybeBin = 0;
} else if (strchr("89", p[0])) {
isOct = 0;
isMaybeBin = 0;
} else if (strchr("acdefACEDF", p[0])) {
isMaybeDec = 0;
isMaybeBin = 0;
} else {
break;
}
++p;
}
if (isMaybeBin && isBin) {
return CInt64_ScanBinString(pResult, str, pFail) + 1;
} else if (p[0] == 'h' || p[0] == 'H') {
return CInt64_ScanHexString(pResult, str, pFail) + 1;
} else if (isOct) {
return CInt64_ScanOctString(pResult, str, pFail);
} else if (isMaybeDec) {
return CInt64_ScanDecString(pResult, str, pFail);
} else {
*pFail = 1;
return p;
}
}
int CInt64_PrintDec(char *output, CInt64 value) {
int length;
CInt64 rem;
CInt64 divisor;
char buf[40];
char *bufp;
length = 0;
if (CInt64_IsNegative(&value)) {
value = CInt64_Neg(value);
*output = '-';
length++;
output++;
}
if (!CInt64_IsZero(&value)) {
2022-10-25 19:30:28 +00:00
divisor.lo = 10;
divisor.hi = 0;
2022-10-07 19:02:27 +00:00
bufp = buf;
for (;;) {
rem = CInt64_ModU(value, divisor);
2022-10-25 19:30:28 +00:00
*(bufp++) = rem.lo + '0';
2022-10-07 19:02:27 +00:00
value = CInt64_DivU(value, divisor);
if (CInt64_IsZero(&value) != 0)
break;
}
while (--bufp >= buf) {
*(output++) = *bufp;
length++;
}
} else {
*(output++) = '0';
length++;
}
*output = 0;
return length;
}
int CInt64_PrintHex(char *output, CInt64 value) {
int length;
CInt64 rem;
CInt64 shift;
CInt64 mask;
char buf[32];
char *bufp;
length = 0;
if (!CInt64_IsZero(&value)) {
2022-10-25 19:30:28 +00:00
shift.lo = 4;
shift.hi = 0;
mask.lo = 0xF;
mask.hi = 0;
2022-10-07 19:02:27 +00:00
bufp = buf;
for (;;) {
rem = CInt64_And(value, mask);
2022-10-25 19:30:28 +00:00
if ((SInt32) rem.lo >= 10)
*(bufp++) = rem.lo + 'A';
2022-10-07 19:02:27 +00:00
else
2022-10-25 19:30:28 +00:00
*(bufp++) = rem.lo + '0';
2022-10-07 19:02:27 +00:00
value = CInt64_ShrU(value, shift);
if (CInt64_IsZero(&value) != 0)
break;
}
while (--bufp >= buf) {
*(output++) = *bufp;
length++;
}
} else {
*(output++) = '0';
length++;
}
*output = 0;
return length;
}
int CInt64_PrintBin(char *output, CInt64 value) {
int length;
CInt64 rem;
char buf[64];
char *bufp;
length = 0;
if (!CInt64_IsZero(&value)) {
bufp = buf;
for (;;) {
rem = CInt64_And(value, cint64_one);
if (CInt64_Equal(rem, cint64_one))
*(bufp++) = '1';
else
*(bufp++) = '0';
value = CInt64_ShrU(value, cint64_one);
if (CInt64_IsZero(&value) != 0)
break;
}
while (--bufp >= buf) {
*(output++) = *bufp;
length++;
}
} else {
*(output++) = '0';
length++;
}
*output = 0;
return length;
}