|
|
@ -33,7 +33,7 @@ static void extend_u0(RTLIL::Const &arg, int width, bool is_signed)
|
|
|
|
if (arg.size() > 0 && is_signed)
|
|
|
|
if (arg.size() > 0 && is_signed)
|
|
|
|
padding = arg.back();
|
|
|
|
padding = arg.back();
|
|
|
|
|
|
|
|
|
|
|
|
while (int(arg.size()) < width)
|
|
|
|
while (GetSize(arg) < width)
|
|
|
|
arg.bits().push_back(padding);
|
|
|
|
arg.bits().push_back(padding);
|
|
|
|
|
|
|
|
|
|
|
|
arg.bits().resize(width);
|
|
|
|
arg.bits().resize(width);
|
|
|
@ -45,7 +45,7 @@ static BigInteger const2big(const RTLIL::Const &val, bool as_signed, int &undef_
|
|
|
|
|
|
|
|
|
|
|
|
BigInteger::Sign sign = BigInteger::positive;
|
|
|
|
BigInteger::Sign sign = BigInteger::positive;
|
|
|
|
State inv_sign_bit = RTLIL::State::S1;
|
|
|
|
State inv_sign_bit = RTLIL::State::S1;
|
|
|
|
size_t num_bits = val.size();
|
|
|
|
auto num_bits = val.size();
|
|
|
|
|
|
|
|
|
|
|
|
if (as_signed && num_bits && val[num_bits-1] == RTLIL::State::S1) {
|
|
|
|
if (as_signed && num_bits && val[num_bits-1] == RTLIL::State::S1) {
|
|
|
|
inv_sign_bit = RTLIL::State::S0;
|
|
|
|
inv_sign_bit = RTLIL::State::S0;
|
|
|
@ -53,7 +53,7 @@ static BigInteger const2big(const RTLIL::Const &val, bool as_signed, int &undef_
|
|
|
|
num_bits--;
|
|
|
|
num_bits--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for (size_t i = 0; i < num_bits; i++)
|
|
|
|
for (auto i = 0; i < num_bits; i++)
|
|
|
|
if (val[i] == RTLIL::State::S0 || val[i] == RTLIL::State::S1)
|
|
|
|
if (val[i] == RTLIL::State::S0 || val[i] == RTLIL::State::S1)
|
|
|
|
mag.setBit(i, val[i] == inv_sign_bit);
|
|
|
|
mag.setBit(i, val[i] == inv_sign_bit);
|
|
|
|
else if (undef_bit_pos < 0)
|
|
|
|
else if (undef_bit_pos < 0)
|
|
|
@ -78,12 +78,12 @@ static RTLIL::Const big2const(const BigInteger &val, int result_len, int undef_b
|
|
|
|
if (val.getSign() < 0)
|
|
|
|
if (val.getSign() < 0)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
mag--;
|
|
|
|
mag--;
|
|
|
|
for (int i = 0; i < result_len; i++)
|
|
|
|
for (auto i = 0; i < result_len; i++)
|
|
|
|
result.bits()[i] = mag.getBit(i) ? RTLIL::State::S0 : RTLIL::State::S1;
|
|
|
|
result.bits()[i] = mag.getBit(i) ? RTLIL::State::S0 : RTLIL::State::S1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
else
|
|
|
|
{
|
|
|
|
{
|
|
|
|
for (int i = 0; i < result_len; i++)
|
|
|
|
for (auto i = 0; i < result_len; i++)
|
|
|
|
result.bits()[i] = mag.getBit(i) ? RTLIL::State::S1 : RTLIL::State::S0;
|
|
|
|
result.bits()[i] = mag.getBit(i) ? RTLIL::State::S1 : RTLIL::State::S0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -132,14 +132,14 @@ static RTLIL::State logic_xnor(RTLIL::State a, RTLIL::State b)
|
|
|
|
RTLIL::Const RTLIL::const_not(const RTLIL::Const &arg1, const RTLIL::Const&, bool signed1, bool, int result_len)
|
|
|
|
RTLIL::Const RTLIL::const_not(const RTLIL::Const &arg1, const RTLIL::Const&, bool signed1, bool, int result_len)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (result_len < 0)
|
|
|
|
if (result_len < 0)
|
|
|
|
result_len = arg1.size();
|
|
|
|
result_len = GetSize(arg1);
|
|
|
|
|
|
|
|
|
|
|
|
RTLIL::Const arg1_ext = arg1;
|
|
|
|
RTLIL::Const arg1_ext = arg1;
|
|
|
|
extend_u0(arg1_ext, result_len, signed1);
|
|
|
|
extend_u0(arg1_ext, result_len, signed1);
|
|
|
|
|
|
|
|
|
|
|
|
RTLIL::Const result(RTLIL::State::Sx, result_len);
|
|
|
|
RTLIL::Const result(RTLIL::State::Sx, result_len);
|
|
|
|
for (size_t i = 0; i < size_t(result_len); i++) {
|
|
|
|
for (auto i = 0; i < result_len; i++) {
|
|
|
|
if (i >= arg1_ext.size())
|
|
|
|
if (i >= GetSize(arg1_ext))
|
|
|
|
result.bits()[i] = RTLIL::State::S0;
|
|
|
|
result.bits()[i] = RTLIL::State::S0;
|
|
|
|
else if (arg1_ext.bits()[i] == RTLIL::State::S0)
|
|
|
|
else if (arg1_ext.bits()[i] == RTLIL::State::S0)
|
|
|
|
result.bits()[i] = RTLIL::State::S1;
|
|
|
|
result.bits()[i] = RTLIL::State::S1;
|
|
|
@ -154,15 +154,15 @@ static RTLIL::Const logic_wrapper(RTLIL::State(*logic_func)(RTLIL::State, RTLIL:
|
|
|
|
RTLIL::Const arg1, RTLIL::Const arg2, bool signed1, bool signed2, int result_len = -1)
|
|
|
|
RTLIL::Const arg1, RTLIL::Const arg2, bool signed1, bool signed2, int result_len = -1)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (result_len < 0)
|
|
|
|
if (result_len < 0)
|
|
|
|
result_len = max(arg1.size(), arg2.size());
|
|
|
|
result_len = max(GetSize(arg1), GetSize(arg2));
|
|
|
|
|
|
|
|
|
|
|
|
extend_u0(arg1, result_len, signed1);
|
|
|
|
extend_u0(arg1, result_len, signed1);
|
|
|
|
extend_u0(arg2, result_len, signed2);
|
|
|
|
extend_u0(arg2, result_len, signed2);
|
|
|
|
|
|
|
|
|
|
|
|
RTLIL::Const result(RTLIL::State::Sx, result_len);
|
|
|
|
RTLIL::Const result(RTLIL::State::Sx, result_len);
|
|
|
|
for (size_t i = 0; i < size_t(result_len); i++) {
|
|
|
|
for (auto i = 0; i < result_len; i++) {
|
|
|
|
RTLIL::State a = i < arg1.size() ? arg1.bits()[i] : RTLIL::State::S0;
|
|
|
|
RTLIL::State a = i < GetSize(arg1) ? arg1.bits()[i] : RTLIL::State::S0;
|
|
|
|
RTLIL::State b = i < arg2.size() ? arg2.bits()[i] : RTLIL::State::S0;
|
|
|
|
RTLIL::State b = i < GetSize(arg2) ? arg2.bits()[i] : RTLIL::State::S0;
|
|
|
|
result.bits()[i] = logic_func(a, b);
|
|
|
|
result.bits()[i] = logic_func(a, b);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -193,11 +193,11 @@ static RTLIL::Const logic_reduce_wrapper(RTLIL::State initial, RTLIL::State(*log
|
|
|
|
{
|
|
|
|
{
|
|
|
|
RTLIL::State temp = initial;
|
|
|
|
RTLIL::State temp = initial;
|
|
|
|
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arg1.size(); i++)
|
|
|
|
for (auto i = 0; i < arg1.size(); i++)
|
|
|
|
temp = logic_func(temp, arg1[i]);
|
|
|
|
temp = logic_func(temp, arg1[i]);
|
|
|
|
|
|
|
|
|
|
|
|
RTLIL::Const result(temp);
|
|
|
|
RTLIL::Const result(temp);
|
|
|
|
while (int(result.size()) < result_len)
|
|
|
|
while (GetSize(result) < result_len)
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
return result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -240,7 +240,7 @@ RTLIL::Const RTLIL::const_logic_not(const RTLIL::Const &arg1, const RTLIL::Const
|
|
|
|
BigInteger a = const2big(arg1, signed1, undef_bit_pos_a);
|
|
|
|
BigInteger a = const2big(arg1, signed1, undef_bit_pos_a);
|
|
|
|
RTLIL::Const result(a.isZero() ? undef_bit_pos_a >= 0 ? RTLIL::State::Sx : RTLIL::State::S1 : RTLIL::State::S0);
|
|
|
|
RTLIL::Const result(a.isZero() ? undef_bit_pos_a >= 0 ? RTLIL::State::Sx : RTLIL::State::S1 : RTLIL::State::S0);
|
|
|
|
|
|
|
|
|
|
|
|
while (int(result.size()) < result_len)
|
|
|
|
while (GetSize(result) < result_len)
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
return result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -255,7 +255,7 @@ RTLIL::Const RTLIL::const_logic_and(const RTLIL::Const &arg1, const RTLIL::Const
|
|
|
|
RTLIL::State bit_b = b.isZero() ? undef_bit_pos_b >= 0 ? RTLIL::State::Sx : RTLIL::State::S0 : RTLIL::State::S1;
|
|
|
|
RTLIL::State bit_b = b.isZero() ? undef_bit_pos_b >= 0 ? RTLIL::State::Sx : RTLIL::State::S0 : RTLIL::State::S1;
|
|
|
|
RTLIL::Const result(logic_and(bit_a, bit_b));
|
|
|
|
RTLIL::Const result(logic_and(bit_a, bit_b));
|
|
|
|
|
|
|
|
|
|
|
|
while (int(result.size()) < result_len)
|
|
|
|
while (GetSize(result) < result_len)
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
return result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -270,7 +270,7 @@ RTLIL::Const RTLIL::const_logic_or(const RTLIL::Const &arg1, const RTLIL::Const
|
|
|
|
RTLIL::State bit_b = b.isZero() ? undef_bit_pos_b >= 0 ? RTLIL::State::Sx : RTLIL::State::S0 : RTLIL::State::S1;
|
|
|
|
RTLIL::State bit_b = b.isZero() ? undef_bit_pos_b >= 0 ? RTLIL::State::Sx : RTLIL::State::S0 : RTLIL::State::S1;
|
|
|
|
RTLIL::Const result(logic_or(bit_a, bit_b));
|
|
|
|
RTLIL::Const result(logic_or(bit_a, bit_b));
|
|
|
|
|
|
|
|
|
|
|
|
while (int(result.size()) < result_len)
|
|
|
|
while (GetSize(result) < result_len)
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
return result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -286,7 +286,7 @@ static RTLIL::Const const_shift_worker(const RTLIL::Const &arg1, const RTLIL::Co
|
|
|
|
BigInteger offset = const2big(arg2, signed2, undef_bit_pos) * direction;
|
|
|
|
BigInteger offset = const2big(arg2, signed2, undef_bit_pos) * direction;
|
|
|
|
|
|
|
|
|
|
|
|
if (result_len < 0)
|
|
|
|
if (result_len < 0)
|
|
|
|
result_len = arg1.size();
|
|
|
|
result_len = GetSize(arg1);
|
|
|
|
|
|
|
|
|
|
|
|
RTLIL::Const result(RTLIL::State::Sx, result_len);
|
|
|
|
RTLIL::Const result(RTLIL::State::Sx, result_len);
|
|
|
|
if (undef_bit_pos >= 0)
|
|
|
|
if (undef_bit_pos >= 0)
|
|
|
@ -296,7 +296,7 @@ static RTLIL::Const const_shift_worker(const RTLIL::Const &arg1, const RTLIL::Co
|
|
|
|
BigInteger pos = BigInteger(i) + offset;
|
|
|
|
BigInteger pos = BigInteger(i) + offset;
|
|
|
|
if (pos < 0)
|
|
|
|
if (pos < 0)
|
|
|
|
result.bits()[i] = vacant_bits;
|
|
|
|
result.bits()[i] = vacant_bits;
|
|
|
|
else if (pos >= BigInteger(int(arg1.size())))
|
|
|
|
else if (pos >= BigInteger(GetSize(arg1)))
|
|
|
|
result.bits()[i] = sign_ext ? arg1.back() : vacant_bits;
|
|
|
|
result.bits()[i] = sign_ext ? arg1.back() : vacant_bits;
|
|
|
|
else
|
|
|
|
else
|
|
|
|
result.bits()[i] = arg1[pos.toInt()];
|
|
|
|
result.bits()[i] = arg1[pos.toInt()];
|
|
|
@ -347,7 +347,7 @@ RTLIL::Const RTLIL::const_lt(const RTLIL::Const &arg1, const RTLIL::Const &arg2,
|
|
|
|
bool y = const2big(arg1, signed1, undef_bit_pos) < const2big(arg2, signed2, undef_bit_pos);
|
|
|
|
bool y = const2big(arg1, signed1, undef_bit_pos) < const2big(arg2, signed2, undef_bit_pos);
|
|
|
|
RTLIL::Const result(undef_bit_pos >= 0 ? RTLIL::State::Sx : y ? RTLIL::State::S1 : RTLIL::State::S0);
|
|
|
|
RTLIL::Const result(undef_bit_pos >= 0 ? RTLIL::State::Sx : y ? RTLIL::State::S1 : RTLIL::State::S0);
|
|
|
|
|
|
|
|
|
|
|
|
while (int(result.size()) < result_len)
|
|
|
|
while (GetSize(result) < result_len)
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
return result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -358,7 +358,7 @@ RTLIL::Const RTLIL::const_le(const RTLIL::Const &arg1, const RTLIL::Const &arg2,
|
|
|
|
bool y = const2big(arg1, signed1, undef_bit_pos) <= const2big(arg2, signed2, undef_bit_pos);
|
|
|
|
bool y = const2big(arg1, signed1, undef_bit_pos) <= const2big(arg2, signed2, undef_bit_pos);
|
|
|
|
RTLIL::Const result(undef_bit_pos >= 0 ? RTLIL::State::Sx : y ? RTLIL::State::S1 : RTLIL::State::S0);
|
|
|
|
RTLIL::Const result(undef_bit_pos >= 0 ? RTLIL::State::Sx : y ? RTLIL::State::S1 : RTLIL::State::S0);
|
|
|
|
|
|
|
|
|
|
|
|
while (int(result.size()) < result_len)
|
|
|
|
while (GetSize(result) < result_len)
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
return result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -369,12 +369,12 @@ RTLIL::Const RTLIL::const_eq(const RTLIL::Const &arg1, const RTLIL::Const &arg2,
|
|
|
|
RTLIL::Const arg2_ext = arg2;
|
|
|
|
RTLIL::Const arg2_ext = arg2;
|
|
|
|
RTLIL::Const result(RTLIL::State::S0, result_len);
|
|
|
|
RTLIL::Const result(RTLIL::State::S0, result_len);
|
|
|
|
|
|
|
|
|
|
|
|
int width = max(arg1_ext.size(), arg2_ext.size());
|
|
|
|
int width = max(GetSize(arg1_ext), GetSize(arg2_ext));
|
|
|
|
extend_u0(arg1_ext, width, signed1 && signed2);
|
|
|
|
extend_u0(arg1_ext, width, signed1 && signed2);
|
|
|
|
extend_u0(arg2_ext, width, signed1 && signed2);
|
|
|
|
extend_u0(arg2_ext, width, signed1 && signed2);
|
|
|
|
|
|
|
|
|
|
|
|
RTLIL::State matched_status = RTLIL::State::S1;
|
|
|
|
RTLIL::State matched_status = RTLIL::State::S1;
|
|
|
|
for (size_t i = 0; i < arg1_ext.size(); i++) {
|
|
|
|
for (auto i = 0; i < arg1_ext.size(); i++) {
|
|
|
|
if (arg1_ext.at(i) == RTLIL::State::S0 && arg2_ext.at(i) == RTLIL::State::S1)
|
|
|
|
if (arg1_ext.at(i) == RTLIL::State::S0 && arg2_ext.at(i) == RTLIL::State::S1)
|
|
|
|
return result;
|
|
|
|
return result;
|
|
|
|
if (arg1_ext.at(i) == RTLIL::State::S1 && arg2_ext.at(i) == RTLIL::State::S0)
|
|
|
|
if (arg1_ext.at(i) == RTLIL::State::S1 && arg2_ext.at(i) == RTLIL::State::S0)
|
|
|
@ -403,11 +403,11 @@ RTLIL::Const RTLIL::const_eqx(const RTLIL::Const &arg1, const RTLIL::Const &arg2
|
|
|
|
RTLIL::Const arg2_ext = arg2;
|
|
|
|
RTLIL::Const arg2_ext = arg2;
|
|
|
|
RTLIL::Const result(RTLIL::State::S0, result_len);
|
|
|
|
RTLIL::Const result(RTLIL::State::S0, result_len);
|
|
|
|
|
|
|
|
|
|
|
|
int width = max(arg1_ext.size(), arg2_ext.size());
|
|
|
|
int width = max(GetSize(arg1_ext), GetSize(arg2_ext));
|
|
|
|
extend_u0(arg1_ext, width, signed1 && signed2);
|
|
|
|
extend_u0(arg1_ext, width, signed1 && signed2);
|
|
|
|
extend_u0(arg2_ext, width, signed1 && signed2);
|
|
|
|
extend_u0(arg2_ext, width, signed1 && signed2);
|
|
|
|
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arg1_ext.size(); i++) {
|
|
|
|
for (auto i = 0; i < arg1_ext.size(); i++) {
|
|
|
|
if (arg1_ext.at(i) != arg2_ext.at(i))
|
|
|
|
if (arg1_ext.at(i) != arg2_ext.at(i))
|
|
|
|
return result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -432,7 +432,7 @@ RTLIL::Const RTLIL::const_ge(const RTLIL::Const &arg1, const RTLIL::Const &arg2,
|
|
|
|
bool y = const2big(arg1, signed1, undef_bit_pos) >= const2big(arg2, signed2, undef_bit_pos);
|
|
|
|
bool y = const2big(arg1, signed1, undef_bit_pos) >= const2big(arg2, signed2, undef_bit_pos);
|
|
|
|
RTLIL::Const result(undef_bit_pos >= 0 ? RTLIL::State::Sx : y ? RTLIL::State::S1 : RTLIL::State::S0);
|
|
|
|
RTLIL::Const result(undef_bit_pos >= 0 ? RTLIL::State::Sx : y ? RTLIL::State::S1 : RTLIL::State::S0);
|
|
|
|
|
|
|
|
|
|
|
|
while (int(result.size()) < result_len)
|
|
|
|
while (GetSize(result) < result_len)
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
return result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -443,7 +443,7 @@ RTLIL::Const RTLIL::const_gt(const RTLIL::Const &arg1, const RTLIL::Const &arg2,
|
|
|
|
bool y = const2big(arg1, signed1, undef_bit_pos) > const2big(arg2, signed2, undef_bit_pos);
|
|
|
|
bool y = const2big(arg1, signed1, undef_bit_pos) > const2big(arg2, signed2, undef_bit_pos);
|
|
|
|
RTLIL::Const result(undef_bit_pos >= 0 ? RTLIL::State::Sx : y ? RTLIL::State::S1 : RTLIL::State::S0);
|
|
|
|
RTLIL::Const result(undef_bit_pos >= 0 ? RTLIL::State::Sx : y ? RTLIL::State::S1 : RTLIL::State::S0);
|
|
|
|
|
|
|
|
|
|
|
|
while (int(result.size()) < result_len)
|
|
|
|
while (GetSize(result) < result_len)
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
result.bits().push_back(RTLIL::State::S0);
|
|
|
|
return result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -452,21 +452,21 @@ RTLIL::Const RTLIL::const_add(const RTLIL::Const &arg1, const RTLIL::Const &arg2
|
|
|
|
{
|
|
|
|
{
|
|
|
|
int undef_bit_pos = -1;
|
|
|
|
int undef_bit_pos = -1;
|
|
|
|
BigInteger y = const2big(arg1, signed1, undef_bit_pos) + const2big(arg2, signed2, undef_bit_pos);
|
|
|
|
BigInteger y = const2big(arg1, signed1, undef_bit_pos) + const2big(arg2, signed2, undef_bit_pos);
|
|
|
|
return big2const(y, result_len >= 0 ? result_len : max(arg1.size(), arg2.size()), undef_bit_pos);
|
|
|
|
return big2const(y, result_len >= 0 ? result_len : max(GetSize(arg1), GetSize(arg2)), undef_bit_pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RTLIL::Const RTLIL::const_sub(const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len)
|
|
|
|
RTLIL::Const RTLIL::const_sub(const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
int undef_bit_pos = -1;
|
|
|
|
int undef_bit_pos = -1;
|
|
|
|
BigInteger y = const2big(arg1, signed1, undef_bit_pos) - const2big(arg2, signed2, undef_bit_pos);
|
|
|
|
BigInteger y = const2big(arg1, signed1, undef_bit_pos) - const2big(arg2, signed2, undef_bit_pos);
|
|
|
|
return big2const(y, result_len >= 0 ? result_len : max(arg1.size(), arg2.size()), undef_bit_pos);
|
|
|
|
return big2const(y, result_len >= 0 ? result_len : max(GetSize(arg1), GetSize(arg2)), undef_bit_pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RTLIL::Const RTLIL::const_mul(const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len)
|
|
|
|
RTLIL::Const RTLIL::const_mul(const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
int undef_bit_pos = -1;
|
|
|
|
int undef_bit_pos = -1;
|
|
|
|
BigInteger y = const2big(arg1, signed1, undef_bit_pos) * const2big(arg2, signed2, undef_bit_pos);
|
|
|
|
BigInteger y = const2big(arg1, signed1, undef_bit_pos) * const2big(arg2, signed2, undef_bit_pos);
|
|
|
|
return big2const(y, result_len >= 0 ? result_len : max(arg1.size(), arg2.size()), min(undef_bit_pos, 0));
|
|
|
|
return big2const(y, result_len >= 0 ? result_len : max(GetSize(arg1), GetSize(arg2)), min(undef_bit_pos, 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// truncating division
|
|
|
|
// truncating division
|
|
|
@ -480,7 +480,7 @@ RTLIL::Const RTLIL::const_div(const RTLIL::Const &arg1, const RTLIL::Const &arg2
|
|
|
|
bool result_neg = (a.getSign() == BigInteger::negative) != (b.getSign() == BigInteger::negative);
|
|
|
|
bool result_neg = (a.getSign() == BigInteger::negative) != (b.getSign() == BigInteger::negative);
|
|
|
|
a = a.getSign() == BigInteger::negative ? -a : a;
|
|
|
|
a = a.getSign() == BigInteger::negative ? -a : a;
|
|
|
|
b = b.getSign() == BigInteger::negative ? -b : b;
|
|
|
|
b = b.getSign() == BigInteger::negative ? -b : b;
|
|
|
|
return big2const(result_neg ? -(a / b) : (a / b), result_len >= 0 ? result_len : max(arg1.size(), arg2.size()), min(undef_bit_pos, 0));
|
|
|
|
return big2const(result_neg ? -(a / b) : (a / b), result_len >= 0 ? result_len : max(GetSize(arg1), GetSize(arg2)), min(undef_bit_pos, 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// truncating modulo
|
|
|
|
// truncating modulo
|
|
|
@ -494,7 +494,7 @@ RTLIL::Const RTLIL::const_mod(const RTLIL::Const &arg1, const RTLIL::Const &arg2
|
|
|
|
bool result_neg = a.getSign() == BigInteger::negative;
|
|
|
|
bool result_neg = a.getSign() == BigInteger::negative;
|
|
|
|
a = a.getSign() == BigInteger::negative ? -a : a;
|
|
|
|
a = a.getSign() == BigInteger::negative ? -a : a;
|
|
|
|
b = b.getSign() == BigInteger::negative ? -b : b;
|
|
|
|
b = b.getSign() == BigInteger::negative ? -b : b;
|
|
|
|
return big2const(result_neg ? -(a % b) : (a % b), result_len >= 0 ? result_len : max(arg1.size(), arg2.size()), min(undef_bit_pos, 0));
|
|
|
|
return big2const(result_neg ? -(a % b) : (a % b), result_len >= 0 ? result_len : max(GetSize(arg1), GetSize(arg2)), min(undef_bit_pos, 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RTLIL::Const RTLIL::const_divfloor(const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len)
|
|
|
|
RTLIL::Const RTLIL::const_divfloor(const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len)
|
|
|
@ -516,7 +516,7 @@ RTLIL::Const RTLIL::const_divfloor(const RTLIL::Const &arg1, const RTLIL::Const
|
|
|
|
// bigint division with negative numbers is wonky, make sure we only negate at the very end
|
|
|
|
// bigint division with negative numbers is wonky, make sure we only negate at the very end
|
|
|
|
result = -((a + b - 1) / b);
|
|
|
|
result = -((a + b - 1) / b);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return big2const(result, result_len >= 0 ? result_len : max(arg1.size(), arg2.size()), min(undef_bit_pos, 0));
|
|
|
|
return big2const(result, result_len >= 0 ? result_len : max(GetSize(arg1), GetSize(arg2)), min(undef_bit_pos, 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RTLIL::Const RTLIL::const_modfloor(const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len)
|
|
|
|
RTLIL::Const RTLIL::const_modfloor(const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len)
|
|
|
@ -539,7 +539,7 @@ RTLIL::Const RTLIL::const_modfloor(const RTLIL::Const &arg1, const RTLIL::Const
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
modulo = b_sign == BigInteger::negative ? truncated - b : truncated + b;
|
|
|
|
modulo = b_sign == BigInteger::negative ? truncated - b : truncated + b;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return big2const(modulo, result_len >= 0 ? result_len : max(arg1.size(), arg2.size()), min(undef_bit_pos, 0));
|
|
|
|
return big2const(modulo, result_len >= 0 ? result_len : max(GetSize(arg1), GetSize(arg2)), min(undef_bit_pos, 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RTLIL::Const RTLIL::const_pow(const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len)
|
|
|
|
RTLIL::Const RTLIL::const_pow(const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len)
|
|
|
@ -590,7 +590,7 @@ RTLIL::Const RTLIL::const_pow(const RTLIL::Const &arg1, const RTLIL::Const &arg2
|
|
|
|
y *= -1;
|
|
|
|
y *= -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return big2const(y, result_len >= 0 ? result_len : max(arg1.size(), arg2.size()), min(undef_bit_pos, 0));
|
|
|
|
return big2const(y, result_len >= 0 ? result_len : max(GetSize(arg1), GetSize(arg2)), min(undef_bit_pos, 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RTLIL::Const RTLIL::const_pos(const RTLIL::Const &arg1, const RTLIL::Const&, bool signed1, bool, int result_len)
|
|
|
|
RTLIL::Const RTLIL::const_pos(const RTLIL::Const &arg1, const RTLIL::Const&, bool signed1, bool, int result_len)
|
|
|
@ -626,7 +626,7 @@ RTLIL::Const RTLIL::const_mux(const RTLIL::Const &arg1, const RTLIL::Const &arg2
|
|
|
|
return arg2;
|
|
|
|
return arg2;
|
|
|
|
|
|
|
|
|
|
|
|
RTLIL::Const ret = arg1;
|
|
|
|
RTLIL::Const ret = arg1;
|
|
|
|
for (int i = 0; i < ret.size(); i++)
|
|
|
|
for (auto i = 0; i < ret.size(); i++)
|
|
|
|
if (ret[i] != arg2[i])
|
|
|
|
if (ret[i] != arg2[i])
|
|
|
|
ret.bits()[i] = State::Sx;
|
|
|
|
ret.bits()[i] = State::Sx;
|
|
|
|
return ret;
|
|
|
|
return ret;
|
|
|
@ -640,7 +640,7 @@ RTLIL::Const RTLIL::const_pmux(const RTLIL::Const &arg1, const RTLIL::Const &arg
|
|
|
|
if (!arg3.is_onehot())
|
|
|
|
if (!arg3.is_onehot())
|
|
|
|
return RTLIL::Const(State::Sx, arg1.size());
|
|
|
|
return RTLIL::Const(State::Sx, arg1.size());
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < arg3.size(); i++)
|
|
|
|
for (auto i = 0; i < arg3.size(); i++)
|
|
|
|
if (arg3[i] == State::S1)
|
|
|
|
if (arg3[i] == State::S1)
|
|
|
|
return RTLIL::Const(std::vector<RTLIL::State>(arg2.begin() + i*arg1.size(), arg2.begin() + (i+1)*arg1.size()));
|
|
|
|
return RTLIL::Const(std::vector<RTLIL::State>(arg2.begin() + i*arg1.size(), arg2.begin() + (i+1)*arg1.size()));
|
|
|
|
|
|
|
|
|
|
|
@ -702,7 +702,7 @@ RTLIL::Const RTLIL::const_bweqx(const RTLIL::Const &arg1, const RTLIL::Const &ar
|
|
|
|
{
|
|
|
|
{
|
|
|
|
log_assert(arg2.size() == arg1.size());
|
|
|
|
log_assert(arg2.size() == arg1.size());
|
|
|
|
RTLIL::Const result(RTLIL::State::S0, arg1.size());
|
|
|
|
RTLIL::Const result(RTLIL::State::S0, arg1.size());
|
|
|
|
for (int i = 0; i < arg1.size(); i++)
|
|
|
|
for (auto i = 0; i < arg1.size(); i++)
|
|
|
|
result.bits()[i] = arg1[i] == arg2[i] ? State::S1 : State::S0;
|
|
|
|
result.bits()[i] = arg1[i] == arg2[i] ? State::S1 : State::S0;
|
|
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
return result;
|
|
|
@ -713,7 +713,7 @@ RTLIL::Const RTLIL::const_bwmux(const RTLIL::Const &arg1, const RTLIL::Const &ar
|
|
|
|
log_assert(arg2.size() == arg1.size());
|
|
|
|
log_assert(arg2.size() == arg1.size());
|
|
|
|
log_assert(arg3.size() == arg1.size());
|
|
|
|
log_assert(arg3.size() == arg1.size());
|
|
|
|
RTLIL::Const result(RTLIL::State::Sx, arg1.size());
|
|
|
|
RTLIL::Const result(RTLIL::State::Sx, arg1.size());
|
|
|
|
for (int i = 0; i < arg1.size(); i++) {
|
|
|
|
for (auto i = 0; i < arg1.size(); i++) {
|
|
|
|
if (arg3[i] != State::Sx || arg1[i] == arg2[i])
|
|
|
|
if (arg3[i] != State::Sx || arg1[i] == arg2[i])
|
|
|
|
result.bits()[i] = arg3[i] == State::S1 ? arg2[i] : arg1[i];
|
|
|
|
result.bits()[i] = arg3[i] == State::S1 ? arg2[i] : arg1[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|