/usr/include/cvc4/util/bitvector.h is in libcvc4-dev 1.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 | /********************* */
/*! \file bitvector.h
** \verbatim
** Top contributors (to current version):
** Liana Hadarean, Dejan Jovanovic, Morgan Deters
** This file is part of the CVC4 project.
** Copyright (c) 2009-2017 by the authors listed in the file AUTHORS
** in the top-level source directory) and their institutional affiliations.
** All rights reserved. See the file COPYING in the top-level source
** directory for licensing information.\endverbatim
**
** \brief [[ Add one-line brief description here ]]
**
** [[ Add lengthier description here ]]
** \todo document this file
**/
#include <cvc4/cvc4_public.h>
#ifndef __CVC4__BITVECTOR_H
#define __CVC4__BITVECTOR_H
#include <iosfwd>
#include <cvc4/base/exception.h>
#include <cvc4/util/integer.h>
namespace CVC4 {
class CVC4_PUBLIC BitVector {
public:
BitVector(unsigned size, const Integer& val):
d_size(size),
d_value(val.modByPow2(size))
{}
BitVector(unsigned size = 0)
: d_size(size), d_value(0) {}
BitVector(unsigned size, unsigned int z)
: d_size(size), d_value(z) {
d_value = d_value.modByPow2(size);
}
BitVector(unsigned size, unsigned long int z)
: d_size(size), d_value(z) {
d_value = d_value.modByPow2(size);
}
BitVector(unsigned size, const BitVector& q)
: d_size(size), d_value(q.d_value) {}
BitVector(const std::string& num, unsigned base = 2);
~BitVector() {}
Integer toInteger() const {
return d_value;
}
BitVector& operator =(const BitVector& x) {
if(this == &x)
return *this;
d_size = x.d_size;
d_value = x.d_value;
return *this;
}
bool operator ==(const BitVector& y) const {
if (d_size != y.d_size) return false;
return d_value == y.d_value;
}
bool operator !=(const BitVector& y) const {
if (d_size != y.d_size) return true;
return d_value != y.d_value;
}
BitVector concat (const BitVector& other) const {
return BitVector(d_size + other.d_size, (d_value.multiplyByPow2(other.d_size)) + other.d_value);
}
BitVector extract(unsigned high, unsigned low) const {
return BitVector(high - low + 1, d_value.extractBitRange(high - low + 1, low));
}
/*
Bitwise operations on BitVectors
*/
// xor
BitVector operator ^(const BitVector& y) const {
CheckArgument(d_size == y.d_size, y);
return BitVector(d_size, d_value.bitwiseXor(y.d_value));
}
// or
BitVector operator |(const BitVector& y) const {
CheckArgument(d_size == y.d_size, y);
return BitVector(d_size, d_value.bitwiseOr(y.d_value));
}
// and
BitVector operator &(const BitVector& y) const {
CheckArgument(d_size == y.d_size, y);
return BitVector(d_size, d_value.bitwiseAnd(y.d_value));
}
// not
BitVector operator ~() const {
return BitVector(d_size, d_value.bitwiseNot());
}
/*
Arithmetic operations on BitVectors
*/
bool operator <(const BitVector& y) const {
return d_value < y.d_value;
}
bool operator >(const BitVector& y) const {
return d_value > y.d_value ;
}
bool operator <=(const BitVector& y) const {
return d_value <= y.d_value;
}
bool operator >=(const BitVector& y) const {
return d_value >= y.d_value ;
}
BitVector operator +(const BitVector& y) const {
CheckArgument(d_size == y.d_size, y);
Integer sum = d_value + y.d_value;
return BitVector(d_size, sum);
}
BitVector operator -(const BitVector& y) const {
CheckArgument(d_size == y.d_size, y);
// to maintain the invariant that we are only adding BitVectors of the
// same size
BitVector one(d_size, Integer(1));
return *this + ~y + one;
}
BitVector operator -() const {
BitVector one(d_size, Integer(1));
return ~(*this) + one;
}
BitVector operator *(const BitVector& y) const {
CheckArgument(d_size == y.d_size, y);
Integer prod = d_value * y.d_value;
return BitVector(d_size, prod);
}
BitVector setBit(uint32_t i) const {
CheckArgument(i < d_size, i);
Integer res = d_value.setBit(i);
return BitVector(d_size, res);
}
bool isBitSet(uint32_t i) const {
CheckArgument(i < d_size, i);
return d_value.isBitSet(i);
}
/**
* Total division function that returns 0 when the denominator is 0.
*/
BitVector unsignedDivTotal (const BitVector& y) const {
CheckArgument(d_size == y.d_size, y);
if (y.d_value == 0) {
// under division by zero return -1
return BitVector(d_size, Integer(1).oneExtend(1, d_size - 1));
}
CheckArgument(d_value >= 0, this);
CheckArgument(y.d_value > 0, y);
return BitVector(d_size, d_value.floorDivideQuotient(y.d_value));
}
/**
* Total division function that returns 0 when the denominator is 0.
*/
BitVector unsignedRemTotal(const BitVector& y) const {
CheckArgument(d_size == y.d_size, y);
if (y.d_value == 0) {
return BitVector(d_size, d_value);
}
CheckArgument(d_value >= 0, this);
CheckArgument(y.d_value > 0, y);
return BitVector(d_size, d_value.floorDivideRemainder(y.d_value));
}
bool signedLessThan(const BitVector& y) const {
CheckArgument(d_size == y.d_size, y);
CheckArgument(d_value >= 0, this);
CheckArgument(y.d_value >= 0, y);
Integer a = (*this).toSignedInt();
Integer b = y.toSignedInt();
return a < b;
}
bool unsignedLessThan(const BitVector& y) const {
CheckArgument(d_size == y.d_size, y);
CheckArgument(d_value >= 0, this);
CheckArgument(y.d_value >= 0, y);
return d_value < y.d_value;
}
bool signedLessThanEq(const BitVector& y) const {
CheckArgument(d_size == y.d_size, y);
CheckArgument(d_value >= 0, this);
CheckArgument(y.d_value >= 0, y);
Integer a = (*this).toSignedInt();
Integer b = y.toSignedInt();
return a <= b;
}
bool unsignedLessThanEq(const BitVector& y) const {
CheckArgument(d_size == y.d_size, this);
CheckArgument(d_value >= 0, this);
CheckArgument(y.d_value >= 0, y);
return d_value <= y.d_value;
}
/*
Extend operations
*/
BitVector zeroExtend(unsigned amount) const {
return BitVector(d_size + amount, d_value);
}
BitVector signExtend(unsigned amount) const {
Integer sign_bit = d_value.extractBitRange(1, d_size -1);
if(sign_bit == Integer(0)) {
return BitVector(d_size + amount, d_value);
} else {
Integer val = d_value.oneExtend(d_size, amount);
return BitVector(d_size+ amount, val);
}
}
/*
Shifts on BitVectors
*/
BitVector leftShift(const BitVector& y) const {
if (y.d_value > Integer(d_size)) {
return BitVector(d_size, Integer(0));
}
if (y.d_value == 0) {
return *this;
}
// making sure we don't lose information casting
CheckArgument(y.d_value < Integer(1).multiplyByPow2(32), y);
uint32_t amount = y.d_value.toUnsignedInt();
Integer res = d_value.multiplyByPow2(amount);
return BitVector(d_size, res);
}
BitVector logicalRightShift(const BitVector& y) const {
if(y.d_value > Integer(d_size)) {
return BitVector(d_size, Integer(0));
}
// making sure we don't lose information casting
CheckArgument(y.d_value < Integer(1).multiplyByPow2(32), y);
uint32_t amount = y.d_value.toUnsignedInt();
Integer res = d_value.divByPow2(amount);
return BitVector(d_size, res);
}
BitVector arithRightShift(const BitVector& y) const {
Integer sign_bit = d_value.extractBitRange(1, d_size - 1);
if(y.d_value > Integer(d_size)) {
if(sign_bit == Integer(0)) {
return BitVector(d_size, Integer(0));
} else {
return BitVector(d_size, Integer(d_size).multiplyByPow2(d_size) -1 );
}
}
if (y.d_value == 0) {
return *this;
}
// making sure we don't lose information casting
CheckArgument(y.d_value < Integer(1).multiplyByPow2(32), y);
uint32_t amount = y.d_value.toUnsignedInt();
Integer rest = d_value.divByPow2(amount);
if(sign_bit == Integer(0)) {
return BitVector(d_size, rest);
}
Integer res = rest.oneExtend(d_size - amount, amount);
return BitVector(d_size, res);
}
/*
Convenience functions
*/
size_t hash() const {
return d_value.hash() + d_size;
}
std::string toString(unsigned int base = 2) const {
std::string str = d_value.toString(base);
if( base == 2 && d_size > str.size() ) {
std::string zeroes;
for( unsigned int i=0; i < d_size - str.size(); ++i ) {
zeroes.append("0");
}
return zeroes + str;
} else {
return str;
}
}
unsigned getSize() const {
return d_size;
}
const Integer& getValue() const {
return d_value;
}
Integer toSignedInt() const {
// returns Integer corresponding to two's complement interpretation of bv
unsigned size = d_size;
Integer sign_bit = d_value.extractBitRange(1,size-1);
Integer val = d_value.extractBitRange(size-1, 0);
Integer res = Integer(-1) * sign_bit.multiplyByPow2(size - 1) + val;
return res;
}
/**
Returns k is the integer is equal to 2^{k-1} and zero
otherwise
@return k if the integer is equal to 2^{k-1} and zero otherwise
*/
unsigned isPow2() {
return d_value.isPow2();
}
private:
/*
Class invariants:
* no overflows: 2^d_size < d_value
* no negative numbers: d_value >= 0
*/
unsigned d_size;
Integer d_value;
};/* class BitVector */
inline BitVector::BitVector(const std::string& num, unsigned base) {
CheckArgument(base == 2 || base == 16, base);
if( base == 2 ) {
d_size = num.size();
} else {
d_size = num.size() * 4;
}
d_value = Integer(num, base);
}/* BitVector::BitVector() */
/**
* Hash function for the BitVector constants.
*/
struct CVC4_PUBLIC BitVectorHashFunction {
inline size_t operator()(const BitVector& bv) const {
return bv.hash();
}
};/* struct BitVectorHashFunction */
/**
* The structure representing the extraction operation for bit-vectors. The
* operation maps bit-vectors to bit-vector of size <code>high - low + 1</code>
* by taking the bits at indices <code>high ... low</code>
*/
struct CVC4_PUBLIC BitVectorExtract {
/** The high bit of the range for this extract */
unsigned high;
/** The low bit of the range for this extract */
unsigned low;
BitVectorExtract(unsigned high, unsigned low)
: high(high), low(low) {}
bool operator == (const BitVectorExtract& extract) const {
return high == extract.high && low == extract.low;
}
};/* struct BitVectorExtract */
/**
* Hash function for the BitVectorExtract objects.
*/
struct CVC4_PUBLIC BitVectorExtractHashFunction {
size_t operator()(const BitVectorExtract& extract) const {
size_t hash = extract.low;
hash ^= extract.high + 0x9e3779b9 + (hash << 6) + (hash >> 2);
return hash;
}
};/* struct BitVectorExtractHashFunction */
/**
* The structure representing the extraction of one Boolean bit.
*/
struct CVC4_PUBLIC BitVectorBitOf {
/** The index of the bit */
unsigned bitIndex;
BitVectorBitOf(unsigned i)
: bitIndex(i) {}
bool operator == (const BitVectorBitOf& other) const {
return bitIndex == other.bitIndex;
}
};/* struct BitVectorBitOf */
/**
* Hash function for the BitVectorBitOf objects.
*/
struct CVC4_PUBLIC BitVectorBitOfHashFunction {
size_t operator()(const BitVectorBitOf& b) const {
return b.bitIndex;
}
};/* struct BitVectorBitOfHashFunction */
struct CVC4_PUBLIC BitVectorSize {
unsigned size;
BitVectorSize(unsigned size)
: size(size) {}
operator unsigned () const { return size; }
};/* struct BitVectorSize */
struct CVC4_PUBLIC BitVectorRepeat {
unsigned repeatAmount;
BitVectorRepeat(unsigned repeatAmount)
: repeatAmount(repeatAmount) {}
operator unsigned () const { return repeatAmount; }
};/* struct BitVectorRepeat */
struct CVC4_PUBLIC BitVectorZeroExtend {
unsigned zeroExtendAmount;
BitVectorZeroExtend(unsigned zeroExtendAmount)
: zeroExtendAmount(zeroExtendAmount) {}
operator unsigned () const { return zeroExtendAmount; }
};/* struct BitVectorZeroExtend */
struct CVC4_PUBLIC BitVectorSignExtend {
unsigned signExtendAmount;
BitVectorSignExtend(unsigned signExtendAmount)
: signExtendAmount(signExtendAmount) {}
operator unsigned () const { return signExtendAmount; }
};/* struct BitVectorSignExtend */
struct CVC4_PUBLIC BitVectorRotateLeft {
unsigned rotateLeftAmount;
BitVectorRotateLeft(unsigned rotateLeftAmount)
: rotateLeftAmount(rotateLeftAmount) {}
operator unsigned () const { return rotateLeftAmount; }
};/* struct BitVectorRotateLeft */
struct CVC4_PUBLIC BitVectorRotateRight {
unsigned rotateRightAmount;
BitVectorRotateRight(unsigned rotateRightAmount)
: rotateRightAmount(rotateRightAmount) {}
operator unsigned () const { return rotateRightAmount; }
};/* struct BitVectorRotateRight */
struct CVC4_PUBLIC IntToBitVector {
unsigned size;
IntToBitVector(unsigned size)
: size(size) {}
operator unsigned () const { return size; }
};/* struct IntToBitVector */
template <typename T>
struct CVC4_PUBLIC UnsignedHashFunction {
inline size_t operator()(const T& x) const {
return (size_t)x;
}
};/* struct UnsignedHashFunction */
inline std::ostream& operator <<(std::ostream& os, const BitVector& bv) CVC4_PUBLIC;
inline std::ostream& operator <<(std::ostream& os, const BitVector& bv) {
return os << bv.toString();
}
inline std::ostream& operator <<(std::ostream& os, const BitVectorExtract& bv) CVC4_PUBLIC;
inline std::ostream& operator <<(std::ostream& os, const BitVectorExtract& bv) {
return os << "[" << bv.high << ":" << bv.low << "]";
}
inline std::ostream& operator <<(std::ostream& os, const BitVectorBitOf& bv) CVC4_PUBLIC;
inline std::ostream& operator <<(std::ostream& os, const BitVectorBitOf& bv) {
return os << "[" << bv.bitIndex << "]";
}
inline std::ostream& operator <<(std::ostream& os, const IntToBitVector& bv) CVC4_PUBLIC;
inline std::ostream& operator <<(std::ostream& os, const IntToBitVector& bv) {
return os << "[" << bv.size << "]";
}
}/* CVC4 namespace */
#endif /* __CVC4__BITVECTOR_H */
|