1998-11-04 00:28:49 +01:00
|
|
|
/*
|
2000-02-23 03:56:53 +01:00
|
|
|
* Copyright (c) 1998-2000 Stephen Williams (steve@icarus.com)
|
1998-11-04 00:28:49 +01:00
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
|
|
|
* General Public License as published by the Free Software
|
|
|
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
* any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
|
*/
|
2000-02-23 03:56:53 +01:00
|
|
|
#if !defined(WINNT) && !defined(macintosh)
|
2001-02-07 22:47:13 +01:00
|
|
|
#ident "$Id: verinum.cc,v 1.24 2001/02/07 21:47:13 steve Exp $"
|
1998-11-04 00:28:49 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
# include "verinum.h"
|
|
|
|
|
# include <iostream>
|
|
|
|
|
# include <cassert>
|
|
|
|
|
|
|
|
|
|
verinum::verinum()
|
2000-01-07 04:45:49 +01:00
|
|
|
: bits_(0), nbits_(0), has_len_(false), has_sign_(false), string_flag_(false)
|
1998-11-04 00:28:49 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-13 06:02:09 +02:00
|
|
|
verinum::verinum(const V*bits, unsigned nbits, bool has_len)
|
2000-01-07 04:45:49 +01:00
|
|
|
: has_len_(has_len), has_sign_(false), string_flag_(false)
|
1998-11-04 00:28:49 +01:00
|
|
|
{
|
|
|
|
|
nbits_ = nbits;
|
|
|
|
|
bits_ = new V [nbits];
|
|
|
|
|
for (unsigned idx = 0 ; idx < nbits ; idx += 1) {
|
|
|
|
|
bits_[idx] = bits[idx];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
verinum::verinum(const string&str)
|
2000-01-07 04:45:49 +01:00
|
|
|
: has_len_(true), has_sign_(false), string_flag_(true)
|
1998-11-04 00:28:49 +01:00
|
|
|
{
|
|
|
|
|
nbits_ = str.length() * 8;
|
|
|
|
|
bits_ = new V [nbits_];
|
|
|
|
|
|
|
|
|
|
unsigned idx, cp;
|
|
|
|
|
V*bp = bits_+nbits_;
|
|
|
|
|
for (idx = nbits_, cp = 0 ; idx > 0 ; idx -= 8, cp += 1) {
|
|
|
|
|
char ch = str[cp];
|
|
|
|
|
*(--bp) = (ch&0x80) ? V1 : V0;
|
|
|
|
|
*(--bp) = (ch&0x40) ? V1 : V0;
|
|
|
|
|
*(--bp) = (ch&0x20) ? V1 : V0;
|
|
|
|
|
*(--bp) = (ch&0x10) ? V1 : V0;
|
|
|
|
|
*(--bp) = (ch&0x08) ? V1 : V0;
|
|
|
|
|
*(--bp) = (ch&0x04) ? V1 : V0;
|
|
|
|
|
*(--bp) = (ch&0x02) ? V1 : V0;
|
|
|
|
|
*(--bp) = (ch&0x01) ? V1 : V0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-02-07 03:46:31 +01:00
|
|
|
verinum::verinum(verinum::V val, unsigned n, bool h)
|
|
|
|
|
: has_len_(h), has_sign_(false), string_flag_(false)
|
1998-12-20 03:05:41 +01:00
|
|
|
{
|
|
|
|
|
nbits_ = n;
|
|
|
|
|
bits_ = new V[nbits_];
|
|
|
|
|
for (unsigned idx = 0 ; idx < nbits_ ; idx += 1)
|
|
|
|
|
bits_[idx] = val;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-09 03:38:33 +02:00
|
|
|
verinum::verinum(unsigned long val, unsigned n)
|
2000-01-07 04:45:49 +01:00
|
|
|
: has_len_(true), has_sign_(false), string_flag_(false)
|
1999-05-09 03:38:33 +02:00
|
|
|
{
|
|
|
|
|
nbits_ = n;
|
|
|
|
|
bits_ = new V[nbits_];
|
|
|
|
|
for (unsigned idx = 0 ; idx < nbits_ ; idx += 1) {
|
|
|
|
|
bits_[idx] = (val&1) ? V1 : V0;
|
|
|
|
|
val >>= 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1998-11-04 00:28:49 +01:00
|
|
|
verinum::verinum(const verinum&that)
|
|
|
|
|
{
|
|
|
|
|
string_flag_ = that.string_flag_;
|
|
|
|
|
nbits_ = that.nbits_;
|
|
|
|
|
bits_ = new V[nbits_];
|
1999-05-13 06:02:09 +02:00
|
|
|
has_len_ = that.has_len_;
|
2000-01-07 04:45:49 +01:00
|
|
|
has_sign_ = that.has_sign_;
|
1999-05-13 06:02:09 +02:00
|
|
|
for (unsigned idx = 0 ; idx < nbits_ ; idx += 1)
|
|
|
|
|
bits_[idx] = that.bits_[idx];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
verinum::verinum(const verinum&that, unsigned nbits)
|
|
|
|
|
{
|
|
|
|
|
assert(nbits <= that.nbits_);
|
|
|
|
|
string_flag_ = false;
|
|
|
|
|
nbits_ = nbits;
|
|
|
|
|
bits_ = new V[nbits_];
|
|
|
|
|
has_len_ = true;
|
2000-01-07 04:45:49 +01:00
|
|
|
has_sign_ = false;
|
1998-11-04 00:28:49 +01:00
|
|
|
for (unsigned idx = 0 ; idx < nbits_ ; idx += 1)
|
|
|
|
|
bits_[idx] = that.bits_[idx];
|
|
|
|
|
}
|
|
|
|
|
|
2000-12-10 23:01:35 +01:00
|
|
|
verinum::verinum(long that)
|
|
|
|
|
: has_len_(false), has_sign_(true), string_flag_(false)
|
|
|
|
|
{
|
|
|
|
|
long tmp;
|
|
|
|
|
|
|
|
|
|
tmp = that/2;
|
|
|
|
|
nbits_ = 1;
|
|
|
|
|
while ((tmp != 0) && (tmp != -1)) {
|
|
|
|
|
nbits_ += 1;
|
|
|
|
|
tmp /= 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bits_ = new V[nbits_];
|
|
|
|
|
for (unsigned idx = 0 ; idx < nbits_ ; idx += 1) {
|
|
|
|
|
bits_[idx] = (that & 1)? V1 : V0;
|
|
|
|
|
that /= 2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1998-11-04 00:28:49 +01:00
|
|
|
verinum::~verinum()
|
|
|
|
|
{
|
|
|
|
|
delete[]bits_;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-13 06:02:09 +02:00
|
|
|
verinum& verinum::operator= (const verinum&that)
|
|
|
|
|
{
|
|
|
|
|
if (this == &that) return *this;
|
|
|
|
|
delete[]bits_;
|
|
|
|
|
nbits_ = that.nbits_;
|
|
|
|
|
bits_ = new V[that.nbits_];
|
|
|
|
|
for (unsigned idx = 0 ; idx < nbits_ ; idx += 1)
|
|
|
|
|
bits_[idx] = that.bits_[idx];
|
|
|
|
|
|
|
|
|
|
has_len_ = that.has_len_;
|
2000-01-07 04:45:49 +01:00
|
|
|
has_sign_ = that.has_sign_;
|
1999-05-13 06:02:09 +02:00
|
|
|
string_flag_ = that.string_flag_;
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
1998-11-04 00:28:49 +01:00
|
|
|
verinum::V verinum::get(unsigned idx) const
|
|
|
|
|
{
|
2001-02-07 22:47:13 +01:00
|
|
|
assert(idx < nbits_);
|
1998-11-04 00:28:49 +01:00
|
|
|
return bits_[idx];
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-20 07:12:22 +02:00
|
|
|
verinum::V verinum::set(unsigned idx, verinum::V val)
|
|
|
|
|
{
|
2001-02-07 22:47:13 +01:00
|
|
|
assert(idx < nbits_);
|
1999-07-20 07:12:22 +02:00
|
|
|
return bits_[idx] = val;
|
|
|
|
|
}
|
|
|
|
|
|
1998-11-04 00:28:49 +01:00
|
|
|
unsigned long verinum::as_ulong() const
|
|
|
|
|
{
|
|
|
|
|
if (nbits_ == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2000-09-28 05:55:55 +02:00
|
|
|
if (!is_defined())
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
unsigned top = nbits_;
|
|
|
|
|
if (top >= (8 * sizeof(unsigned long)))
|
|
|
|
|
top = 8 * sizeof(unsigned long);
|
|
|
|
|
|
1998-11-04 00:28:49 +01:00
|
|
|
unsigned long val = 0;
|
2000-09-28 05:55:55 +02:00
|
|
|
unsigned long mask = 1;
|
|
|
|
|
for (unsigned idx = 0 ; idx < top ; idx += 1, mask <<= 1)
|
|
|
|
|
if (bits_[idx] == V1)
|
|
|
|
|
val |= mask;
|
|
|
|
|
|
1998-11-04 00:28:49 +01:00
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-28 05:55:55 +02:00
|
|
|
/*
|
|
|
|
|
* This function returns the native long integer that represents the
|
|
|
|
|
* value of this object. It accounts for sign extension if the value
|
|
|
|
|
* is signed.
|
|
|
|
|
*
|
|
|
|
|
* If the value is undefined, return 0.
|
|
|
|
|
*
|
|
|
|
|
* This function presumes that the native format is 2s compliment
|
|
|
|
|
* (pretty safe these days) and masks/sets bits accordingly. If the
|
|
|
|
|
* value is too large for the lative form, it truncates the high bits.
|
|
|
|
|
*/
|
1998-11-04 00:28:49 +01:00
|
|
|
signed long verinum::as_long() const
|
|
|
|
|
{
|
|
|
|
|
if (nbits_ == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2000-09-28 05:55:55 +02:00
|
|
|
if (!is_defined())
|
|
|
|
|
return 0;
|
|
|
|
|
|
1998-11-04 00:28:49 +01:00
|
|
|
signed long val = 0;
|
|
|
|
|
|
2000-09-28 05:55:55 +02:00
|
|
|
if (has_sign_ && (bits_[nbits_-1] == V1)) {
|
|
|
|
|
unsigned top = nbits_;
|
|
|
|
|
if (top > (8 * sizeof(long) - 1))
|
|
|
|
|
top = 8 * sizeof(long) - 1;
|
|
|
|
|
|
1998-11-04 00:28:49 +01:00
|
|
|
val = -1;
|
2000-09-28 05:55:55 +02:00
|
|
|
signed long mask = ~1L;
|
|
|
|
|
for (unsigned idx = 0 ; idx < top ; idx += 1, mask <<= 1)
|
|
|
|
|
if (bits_[idx] == V0)
|
|
|
|
|
val &= mask;
|
1998-11-04 00:28:49 +01:00
|
|
|
|
2000-09-28 05:55:55 +02:00
|
|
|
} else {
|
|
|
|
|
unsigned top = nbits_;
|
|
|
|
|
if (top > (8 * sizeof(long) - 1))
|
|
|
|
|
top = 8 * sizeof(long) - 1;
|
|
|
|
|
|
|
|
|
|
signed long mask = 1;
|
|
|
|
|
for (unsigned idx = 0 ; idx < top ; idx += 1, mask <<= 1)
|
|
|
|
|
if (bits_[idx] == V1)
|
|
|
|
|
val |= mask;
|
1998-11-04 00:28:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string verinum::as_string() const
|
|
|
|
|
{
|
|
|
|
|
assert( nbits_%8 == 0 );
|
|
|
|
|
if (nbits_ == 0)
|
|
|
|
|
return "";
|
|
|
|
|
|
|
|
|
|
char*tmp = new char[nbits_/8+1];
|
|
|
|
|
char*cp = tmp;
|
|
|
|
|
for (unsigned idx = nbits_ ; idx > 0 ; idx -= 8, cp += 1) {
|
|
|
|
|
V*bp = bits_+idx;
|
|
|
|
|
*cp = 0;
|
|
|
|
|
if (*(--bp) == V1) *cp |= 0x80;
|
|
|
|
|
if (*(--bp) == V1) *cp |= 0x40;
|
|
|
|
|
if (*(--bp) == V1) *cp |= 0x20;
|
|
|
|
|
if (*(--bp) == V1) *cp |= 0x10;
|
|
|
|
|
if (*(--bp) == V1) *cp |= 0x08;
|
|
|
|
|
if (*(--bp) == V1) *cp |= 0x04;
|
|
|
|
|
if (*(--bp) == V1) *cp |= 0x02;
|
|
|
|
|
if (*(--bp) == V1) *cp |= 0x01;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tmp[nbits_/8] = 0;
|
|
|
|
|
string result = string(tmp);
|
|
|
|
|
delete[]tmp;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-06 17:00:17 +01:00
|
|
|
bool verinum::is_before(const verinum&that) const
|
|
|
|
|
{
|
|
|
|
|
if (that.nbits_ > nbits_) return true;
|
|
|
|
|
if (that.nbits_ < nbits_) return false;
|
|
|
|
|
|
|
|
|
|
for (unsigned idx = nbits_ ; idx > 0 ; idx -= 1) {
|
|
|
|
|
if (bits_[idx-1] < that.bits_[idx-1]) return true;
|
|
|
|
|
if (bits_[idx-1] > that.bits_[idx-1]) return false;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-13 06:02:09 +02:00
|
|
|
bool verinum::is_defined() const
|
|
|
|
|
{
|
|
|
|
|
for (unsigned idx = 0 ; idx < nbits_ ; idx += 1) {
|
|
|
|
|
if (bits_[idx] == Vx) return false;
|
|
|
|
|
if (bits_[idx] == Vz) return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
1998-11-09 19:55:33 +01:00
|
|
|
ostream& operator<< (ostream&o, verinum::V v)
|
|
|
|
|
{
|
|
|
|
|
switch (v) {
|
|
|
|
|
case verinum::V0:
|
|
|
|
|
o << "0";
|
|
|
|
|
break;
|
|
|
|
|
case verinum::V1:
|
|
|
|
|
o << "1";
|
|
|
|
|
break;
|
|
|
|
|
case verinum::Vx:
|
|
|
|
|
o << "x";
|
|
|
|
|
break;
|
|
|
|
|
case verinum::Vz:
|
|
|
|
|
o << "z";
|
|
|
|
|
break;
|
|
|
|
|
}
|
1998-11-09 20:03:26 +01:00
|
|
|
return o;
|
1998-11-09 19:55:33 +01:00
|
|
|
}
|
|
|
|
|
|
1999-05-13 06:02:09 +02:00
|
|
|
/*
|
|
|
|
|
* This operator is used by various dumpers to write the verilog
|
|
|
|
|
* number in a Verilog format.
|
|
|
|
|
*/
|
1998-11-04 00:28:49 +01:00
|
|
|
ostream& operator<< (ostream&o, const verinum&v)
|
|
|
|
|
{
|
2000-09-08 00:37:10 +02:00
|
|
|
if (v.has_sign()) {
|
|
|
|
|
o << "+";
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-13 06:02:09 +02:00
|
|
|
/* If the verinum number has a fixed length, dump all the bits
|
|
|
|
|
literally. This is how we express the fixed length in the
|
|
|
|
|
output. */
|
|
|
|
|
if (v.has_len()) {
|
|
|
|
|
o << v.len() << "'b";
|
|
|
|
|
if (v.len() == 0) {
|
|
|
|
|
o << "0";
|
|
|
|
|
return o;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (unsigned idx = v.len() ; idx > 0 ; idx -= 1)
|
|
|
|
|
o << v[idx-1];
|
|
|
|
|
|
|
|
|
|
return o;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If the number is fully defined (no x or z) then print it
|
|
|
|
|
out as a decimal number. */
|
|
|
|
|
if (v.is_defined()) {
|
|
|
|
|
o << "'d" << v.as_ulong();
|
|
|
|
|
return o;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Oh, well. Print the minimum to get the value properly
|
|
|
|
|
displayed. */
|
|
|
|
|
o << "'b";
|
1998-11-04 00:28:49 +01:00
|
|
|
|
1998-11-07 18:04:48 +01:00
|
|
|
if (v.len() == 0) {
|
|
|
|
|
o << "0";
|
|
|
|
|
return o;
|
|
|
|
|
}
|
1998-11-04 00:28:49 +01:00
|
|
|
|
|
|
|
|
verinum::V trim_left = v.get(v.len()-1);
|
|
|
|
|
unsigned idx;
|
|
|
|
|
|
|
|
|
|
for (idx = v.len()-1; idx > 0; idx -= 1)
|
|
|
|
|
if (trim_left != v.get(idx-1))
|
|
|
|
|
break;
|
|
|
|
|
|
1998-11-09 19:55:33 +01:00
|
|
|
o << trim_left;
|
1998-11-04 00:28:49 +01:00
|
|
|
|
|
|
|
|
while (idx > 0) {
|
1998-11-09 19:55:33 +01:00
|
|
|
o << v.get(idx-1);
|
1998-11-04 00:28:49 +01:00
|
|
|
idx -= 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return o;
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-23 01:57:53 +02:00
|
|
|
verinum::V operator == (const verinum&left, const verinum&right)
|
1998-11-11 01:01:51 +01:00
|
|
|
{
|
|
|
|
|
if (left.len() != right.len())
|
1999-10-23 01:57:53 +02:00
|
|
|
return verinum::V0;
|
1998-11-11 01:01:51 +01:00
|
|
|
|
|
|
|
|
for (unsigned idx = 0 ; idx < left.len() ; idx += 1)
|
|
|
|
|
if (left[idx] != right[idx])
|
1999-10-23 01:57:53 +02:00
|
|
|
return verinum::V0;
|
1998-11-11 01:01:51 +01:00
|
|
|
|
1999-10-23 01:57:53 +02:00
|
|
|
return verinum::V1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
verinum::V operator <= (const verinum&left, const verinum&right)
|
|
|
|
|
{
|
|
|
|
|
unsigned idx;
|
|
|
|
|
for (idx = left.len() ; idx > right.len() ; idx -= 1) {
|
|
|
|
|
if (left[idx-1] != verinum::V0) return verinum::V0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (idx = right.len() ; idx > left.len() ; idx -= 1) {
|
|
|
|
|
if (right[idx-1] != verinum::V0) return verinum::V0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (idx > 0) {
|
|
|
|
|
if (left[idx-1] == verinum::Vx) return verinum::Vx;
|
|
|
|
|
if (left[idx-1] == verinum::Vz) return verinum::Vx;
|
|
|
|
|
if (right[idx-1] == verinum::Vx) return verinum::Vx;
|
|
|
|
|
if (right[idx-1] == verinum::Vz) return verinum::Vx;
|
|
|
|
|
if (left[idx-1] > right[idx-1]) return verinum::V0;
|
|
|
|
|
idx -= 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return verinum::V1;
|
1998-11-11 01:01:51 +01:00
|
|
|
}
|
|
|
|
|
|
1999-10-11 01:29:37 +02:00
|
|
|
static verinum::V add_with_carry(verinum::V l, verinum::V r, verinum::V&c)
|
|
|
|
|
{
|
|
|
|
|
unsigned sum = 0;
|
|
|
|
|
switch (c) {
|
|
|
|
|
case verinum::Vx:
|
|
|
|
|
case verinum::Vz:
|
|
|
|
|
c = verinum::Vx;
|
|
|
|
|
return verinum::Vx;
|
|
|
|
|
case verinum::V0:
|
|
|
|
|
break;
|
|
|
|
|
case verinum::V1:
|
|
|
|
|
sum += 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (l) {
|
|
|
|
|
case verinum::Vx:
|
|
|
|
|
case verinum::Vz:
|
|
|
|
|
c = verinum::Vx;
|
|
|
|
|
return verinum::Vx;
|
|
|
|
|
case verinum::V0:
|
|
|
|
|
break;
|
|
|
|
|
case verinum::V1:
|
|
|
|
|
sum += 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (r) {
|
|
|
|
|
case verinum::Vx:
|
|
|
|
|
case verinum::Vz:
|
|
|
|
|
c = verinum::Vx;
|
|
|
|
|
return verinum::Vx;
|
|
|
|
|
case verinum::V0:
|
|
|
|
|
break;
|
|
|
|
|
case verinum::V1:
|
|
|
|
|
sum += 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sum & 2)
|
|
|
|
|
c = verinum::V1;
|
|
|
|
|
else
|
|
|
|
|
c = verinum::V0;
|
|
|
|
|
if (sum & 1)
|
|
|
|
|
return verinum::V1;
|
|
|
|
|
else
|
|
|
|
|
return verinum::V0;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-23 05:43:43 +01:00
|
|
|
verinum v_not(const verinum&left)
|
1999-10-11 01:29:37 +02:00
|
|
|
{
|
|
|
|
|
verinum val = left;
|
|
|
|
|
for (unsigned idx = 0 ; idx < val.len() ; idx += 1)
|
|
|
|
|
switch (val[idx]) {
|
|
|
|
|
case verinum::V0:
|
|
|
|
|
val.set(idx, verinum::V1);
|
|
|
|
|
break;
|
|
|
|
|
case verinum::V1:
|
|
|
|
|
val.set(idx, verinum::V0);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
val.set(idx, verinum::Vx);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Addition works a bit at a time, from the least significant up to
|
2000-09-08 00:37:10 +02:00
|
|
|
* the most significant. The result is signed only if either of the
|
|
|
|
|
* operands is signed.
|
1999-10-11 01:29:37 +02:00
|
|
|
*/
|
|
|
|
|
verinum operator + (const verinum&left, const verinum&right)
|
|
|
|
|
{
|
|
|
|
|
unsigned min = left.len();
|
|
|
|
|
if (right.len() < min) min = right.len();
|
|
|
|
|
|
|
|
|
|
unsigned max = left.len();
|
|
|
|
|
if (right.len() > max) max = right.len();
|
|
|
|
|
|
|
|
|
|
verinum val (verinum::V0, max);
|
2000-09-08 00:37:10 +02:00
|
|
|
val.has_sign( left.has_sign() || right.has_sign() );
|
1999-10-11 01:29:37 +02:00
|
|
|
|
|
|
|
|
verinum::V carry = verinum::V0;
|
|
|
|
|
for (unsigned idx = 0 ; idx < min ; idx += 1)
|
|
|
|
|
val.set(idx, add_with_carry(left[idx], right[idx], carry));
|
|
|
|
|
|
|
|
|
|
if (left.len() > right.len()) {
|
|
|
|
|
for (unsigned idx = min ; idx < max ; idx += 1)
|
|
|
|
|
val.set(idx,add_with_carry(left[idx], verinum::V0, carry));
|
|
|
|
|
} else {
|
|
|
|
|
for (unsigned idx = min ; idx < max ; idx += 1)
|
|
|
|
|
val.set(idx, add_with_carry(verinum::V0, right[idx], carry));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
verinum operator - (const verinum&left, const verinum&r)
|
|
|
|
|
{
|
2000-06-12 05:56:51 +02:00
|
|
|
verinum right;
|
1999-10-11 01:29:37 +02:00
|
|
|
unsigned min = left.len();
|
2000-06-12 05:56:51 +02:00
|
|
|
if (r.len() < min) {
|
|
|
|
|
right = verinum(verinum::V0, min);
|
|
|
|
|
for (unsigned idx = 0 ; idx < r.len() ; idx += 1)
|
|
|
|
|
right.set(idx, r[idx]);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
right = r;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
right = v_not(right);
|
1999-10-11 01:29:37 +02:00
|
|
|
|
|
|
|
|
unsigned max = left.len();
|
|
|
|
|
if (right.len() > max) max = right.len();
|
|
|
|
|
|
|
|
|
|
verinum val (verinum::V0, max);
|
|
|
|
|
|
|
|
|
|
verinum::V carry = verinum::V1;
|
|
|
|
|
for (unsigned idx = 0 ; idx < min ; idx += 1)
|
|
|
|
|
val.set(idx, add_with_carry(left[idx], right[idx], carry));
|
|
|
|
|
|
2000-06-12 05:56:51 +02:00
|
|
|
assert(left.len() <= right.len());
|
|
|
|
|
for (unsigned idx = min ; idx < max ; idx += 1)
|
|
|
|
|
val.set(idx, add_with_carry(verinum::V0, right[idx], carry));
|
|
|
|
|
|
1999-10-11 01:29:37 +02:00
|
|
|
|
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-27 20:28:37 +02:00
|
|
|
/*
|
|
|
|
|
* This multiplies two verinum numbers together into a verinum
|
|
|
|
|
* result. The resulting number is as large as the sum of the sizes of
|
|
|
|
|
* the operand.
|
|
|
|
|
*
|
|
|
|
|
* The algorithm used is sucessive shift and add operations,
|
|
|
|
|
* implemented as the nested loops.
|
|
|
|
|
*
|
|
|
|
|
* If either value is not completely defined, then the result is not
|
|
|
|
|
* defined either.
|
|
|
|
|
*/
|
|
|
|
|
verinum operator * (const verinum&left, const verinum&right)
|
|
|
|
|
{
|
2001-02-07 03:46:31 +01:00
|
|
|
const bool has_len_flag = left.has_len() && right.has_len();
|
|
|
|
|
|
|
|
|
|
/* If either operand is not fully defined, then the entire
|
|
|
|
|
result is undefined. Create a result that is the right size
|
|
|
|
|
and is filled with 'bx bits. */
|
2000-09-27 20:28:37 +02:00
|
|
|
if (! (left.is_defined() && right.is_defined())) {
|
2001-02-07 03:46:31 +01:00
|
|
|
verinum result (verinum::Vx, left.len()+right.len(), has_len_flag);
|
2000-09-27 20:28:37 +02:00
|
|
|
result.has_sign(left.has_sign() || right.has_sign());
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2001-02-07 03:46:31 +01:00
|
|
|
verinum result(verinum::V0, left.len() + right.len(), has_len_flag);
|
2000-09-27 20:28:37 +02:00
|
|
|
|
|
|
|
|
for (unsigned rdx = 0 ; rdx < right.len() ; rdx += 1) {
|
|
|
|
|
|
|
|
|
|
if (right.get(rdx) == verinum::V0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
verinum::V carry = verinum::V0;
|
|
|
|
|
for (unsigned ldx = 0 ; ldx < left.len() ; ldx += 1) {
|
|
|
|
|
result.set(ldx+rdx, add_with_carry(left[ldx],
|
|
|
|
|
result[rdx+ldx],
|
|
|
|
|
carry));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
result.has_sign(left.has_sign() || right.has_sign());
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2001-02-07 03:46:31 +01:00
|
|
|
/*
|
|
|
|
|
* This operator divides the left number by the right number. If
|
|
|
|
|
* either value is signed, the result is signed. If both values have a
|
|
|
|
|
* defined length, then the result has a defined length.
|
|
|
|
|
*/
|
|
|
|
|
verinum operator / (const verinum&left, const verinum&right)
|
|
|
|
|
{
|
|
|
|
|
const bool has_len_flag = left.has_len() && right.has_len();
|
|
|
|
|
|
|
|
|
|
unsigned use_len = left.len();
|
|
|
|
|
|
|
|
|
|
/* If either operand is not fully defined, then the entire
|
|
|
|
|
result is undefined. Create a result that is the right size
|
|
|
|
|
and is filled with 'bx bits. */
|
|
|
|
|
if (! (left.is_defined() && right.is_defined())) {
|
|
|
|
|
verinum result (verinum::Vx, use_len, has_len_flag);
|
|
|
|
|
result.has_sign(left.has_sign() || right.has_sign());
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
verinum result(verinum::Vz, use_len, has_len_flag);
|
|
|
|
|
result.has_sign(left.has_sign() || right.has_sign());
|
|
|
|
|
|
|
|
|
|
/* do the operation differently, depending on whether the
|
|
|
|
|
result is signed or not. */
|
|
|
|
|
if (result.has_sign()) {
|
|
|
|
|
|
|
|
|
|
/* XXXX FIXME XXXX Use native unsigned division to do
|
|
|
|
|
the work. This does not work if the result is too
|
|
|
|
|
large for the native integer. */
|
|
|
|
|
assert(use_len <= 8*sizeof(long));
|
|
|
|
|
long l = left.as_long();
|
|
|
|
|
long r = right.as_long();
|
|
|
|
|
long v = l / r;
|
|
|
|
|
for (unsigned idx = 0 ; idx < use_len ; idx += 1) {
|
|
|
|
|
result.set(idx, (v & 1)? verinum::V1 : verinum::V0);
|
|
|
|
|
v >>= 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
/* XXXX FIXME XXXX Use native unsigned division to do
|
|
|
|
|
the work. This does not work if the result is too
|
|
|
|
|
large for the native integer. */
|
|
|
|
|
assert(use_len <= 8*sizeof(unsigned long));
|
|
|
|
|
unsigned long l = left.as_ulong();
|
|
|
|
|
unsigned long r = right.as_ulong();
|
|
|
|
|
unsigned long v = l / r;
|
|
|
|
|
for (unsigned idx = 0 ; idx < use_len ; idx += 1) {
|
|
|
|
|
result.set(idx, (v & 1)? verinum::V1 : verinum::V0);
|
|
|
|
|
v >>= 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
verinum operator % (const verinum&left, const verinum&right)
|
|
|
|
|
{
|
|
|
|
|
const bool has_len_flag = left.has_len() && right.has_len();
|
|
|
|
|
|
|
|
|
|
unsigned use_len = left.len();
|
|
|
|
|
|
|
|
|
|
/* If either operand is not fully defined, then the entire
|
|
|
|
|
result is undefined. Create a result that is the right size
|
|
|
|
|
and is filled with 'bx bits. */
|
|
|
|
|
if (! (left.is_defined() && right.is_defined())) {
|
|
|
|
|
verinum result (verinum::Vx, use_len, has_len_flag);
|
|
|
|
|
result.has_sign(left.has_sign() || right.has_sign());
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
verinum result(verinum::Vz, use_len, has_len_flag);
|
|
|
|
|
result.has_sign(left.has_sign() || right.has_sign());
|
|
|
|
|
|
|
|
|
|
if (result.has_sign()) {
|
|
|
|
|
|
|
|
|
|
/* XXXX FIXME XXXX Use native unsigned division to do
|
|
|
|
|
the work. This does not work if the result is too
|
|
|
|
|
large for the native integer. */
|
|
|
|
|
assert(use_len <= 8*sizeof(long));
|
|
|
|
|
long l = left.as_long();
|
|
|
|
|
long r = right.as_long();
|
|
|
|
|
long v = l % r;
|
|
|
|
|
for (unsigned idx = 0 ; idx < use_len ; idx += 1) {
|
|
|
|
|
result.set(idx, (v & 1)? verinum::V1 : verinum::V0);
|
|
|
|
|
v >>= 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
/* XXXX FIXME XXXX Use native unsigned division to do
|
|
|
|
|
the work. This does not work if the result is too
|
|
|
|
|
large for the native integer. */
|
|
|
|
|
assert(use_len <= 8*sizeof(unsigned long));
|
|
|
|
|
unsigned long l = left.as_ulong();
|
|
|
|
|
unsigned long r = right.as_ulong();
|
|
|
|
|
unsigned long v = l % r;
|
|
|
|
|
for (unsigned idx = 0 ; idx < use_len ; idx += 1) {
|
|
|
|
|
result.set(idx, (v & 1)? verinum::V1 : verinum::V0);
|
|
|
|
|
v >>= 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2001-01-02 04:23:40 +01:00
|
|
|
verinum::V operator | (verinum::V l, verinum::V r)
|
|
|
|
|
{
|
|
|
|
|
if (l == verinum::V1)
|
|
|
|
|
return verinum::V1;
|
|
|
|
|
if (r == verinum::V1)
|
|
|
|
|
return verinum::V1;
|
|
|
|
|
if (l != verinum::V0)
|
|
|
|
|
return verinum::Vx;
|
|
|
|
|
if (r != verinum::V0)
|
|
|
|
|
return verinum::Vx;
|
|
|
|
|
return verinum::V0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
verinum::V operator & (verinum::V l, verinum::V r)
|
|
|
|
|
{
|
|
|
|
|
if (l == verinum::V0)
|
|
|
|
|
return verinum::V0;
|
|
|
|
|
if (r == verinum::V0)
|
|
|
|
|
return verinum::V0;
|
|
|
|
|
if (l != verinum::V1)
|
|
|
|
|
return verinum::Vx;
|
|
|
|
|
if (r != verinum::V1)
|
|
|
|
|
return verinum::Vx;
|
|
|
|
|
return verinum::V1;
|
|
|
|
|
}
|
|
|
|
|
|
1998-11-04 00:28:49 +01:00
|
|
|
/*
|
|
|
|
|
* $Log: verinum.cc,v $
|
2001-02-07 22:47:13 +01:00
|
|
|
* Revision 1.24 2001/02/07 21:47:13 steve
|
|
|
|
|
* Fix expression widths for rvalues and parameters (PR#131,132)
|
|
|
|
|
*
|
2001-02-07 03:46:31 +01:00
|
|
|
* Revision 1.23 2001/02/07 02:46:31 steve
|
|
|
|
|
* Support constant evaluation of / and % (PR#124)
|
|
|
|
|
*
|
2001-01-02 04:23:40 +01:00
|
|
|
* Revision 1.22 2001/01/02 03:23:40 steve
|
|
|
|
|
* Evaluate constant &, | and unary ~.
|
|
|
|
|
*
|
2000-12-10 23:01:35 +01:00
|
|
|
* Revision 1.21 2000/12/10 22:01:36 steve
|
|
|
|
|
* Support decimal constants in behavioral delays.
|
|
|
|
|
*
|
2000-09-28 05:55:55 +02:00
|
|
|
* Revision 1.20 2000/09/28 03:55:55 steve
|
|
|
|
|
* handel, by truncation, verinums that are to long for long integers.
|
|
|
|
|
*
|
2000-09-27 20:28:37 +02:00
|
|
|
* Revision 1.19 2000/09/27 18:28:37 steve
|
|
|
|
|
* multiply in parameter expressions.
|
|
|
|
|
*
|
2000-09-08 00:37:10 +02:00
|
|
|
* Revision 1.18 2000/09/07 22:37:10 steve
|
|
|
|
|
* The + operator now preserves signedness.
|
|
|
|
|
*
|
2000-06-12 05:56:51 +02:00
|
|
|
* Revision 1.17 2000/06/12 03:56:51 steve
|
|
|
|
|
* Fix subract of short value form long one.
|
|
|
|
|
*
|
2000-02-23 05:43:43 +01:00
|
|
|
* Revision 1.16 2000/02/23 04:43:43 steve
|
|
|
|
|
* Some compilers do not accept the not symbol.
|
|
|
|
|
*
|
2000-02-23 03:56:53 +01:00
|
|
|
* Revision 1.15 2000/02/23 02:56:56 steve
|
|
|
|
|
* Macintosh compilers do not support ident.
|
|
|
|
|
*
|
2000-01-07 04:45:49 +01:00
|
|
|
* Revision 1.14 2000/01/07 03:45:49 steve
|
|
|
|
|
* Initial support for signed constants.
|
|
|
|
|
*
|
2000-01-06 06:57:06 +01:00
|
|
|
* Revision 1.13 2000/01/06 05:57:06 steve
|
|
|
|
|
* Only sign-extend unsized numbers.
|
|
|
|
|
*
|
1999-11-06 17:00:17 +01:00
|
|
|
* Revision 1.12 1999/11/06 16:00:17 steve
|
|
|
|
|
* Put number constants into a static table.
|
|
|
|
|
*
|
1999-10-23 01:57:53 +02:00
|
|
|
* Revision 1.11 1999/10/22 23:57:53 steve
|
|
|
|
|
* do the <= in bits, not numbers.
|
|
|
|
|
*
|
1999-10-11 01:29:37 +02:00
|
|
|
* Revision 1.10 1999/10/10 23:29:37 steve
|
|
|
|
|
* Support evaluating + operator at compile time.
|
1998-11-04 00:28:49 +01:00
|
|
|
*/
|
|
|
|
|
|