mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-14 17:57:39 +01:00
* these are dependencies for gcc 4 Graphite engine build. * CLooG 0.18.0 includes ISL 0.11.1 which is the backend that the build script enables. * PPL is needed by GCC build even if it isn't the chosen backend.
627 lines
14 KiB
C++
627 lines
14 KiB
C++
/* Test Polyhedron::wrap_assign().
|
|
Copyright (C) 2001-2010 Roberto Bagnara <bagnara@cs.unipr.it>
|
|
Copyright (C) 2010-2011 BUGSENG srl (http://bugseng.com)
|
|
|
|
This file is part of the Parma Polyhedra Library (PPL).
|
|
|
|
The PPL is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by the
|
|
Free Software Foundation; either version 3 of the License, or (at your
|
|
option) any later version.
|
|
|
|
The PPL 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., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA.
|
|
|
|
For the most up-to-date information see the Parma Polyhedra Library
|
|
site: http://www.cs.unipr.it/ppl/ . */
|
|
|
|
#include "ppl_test.hh"
|
|
|
|
namespace {
|
|
|
|
bool
|
|
test01() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x + 1024 == 8*y);
|
|
ph.add_constraint(-64 <= x);
|
|
ph.add_constraint(x <= 448);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x >= 0);
|
|
known_result.add_constraint(x <= 255);
|
|
known_result.add_constraint(x + 24*y >= 3072);
|
|
known_result.add_constraint(193*x + 504*y <= 129792);
|
|
known_result.add_constraint(x - 8*y >= -1280);
|
|
known_result.add_constraint(x - 8*y <= -768);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test02() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x + 1024 == 8*y);
|
|
ph.add_constraint(-64 <= x);
|
|
ph.add_constraint(x <= 448);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
Constraint_System cs;
|
|
cs.insert(x <= y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS, &cs);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x >= 0);
|
|
known_result.add_constraint(x <= y);
|
|
known_result.add_constraint(x - 8*y >= -1280);
|
|
known_result.add_constraint(x - 8*y <= -1024);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test03() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x + 1024 == 8*y);
|
|
ph.add_constraint(-64 <= x);
|
|
ph.add_constraint(x <= 448);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_UNDEFINED);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x >= 0);
|
|
known_result.add_constraint(x <= 255);
|
|
known_result.add_constraint(y >= 120);
|
|
known_result.add_constraint(y <= 184);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test04() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x + 1024 == 8*y);
|
|
ph.add_constraint(-64 <= x);
|
|
ph.add_constraint(x <= 448);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
Constraint_System cs;
|
|
cs.insert(x <= y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_UNDEFINED, &cs);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x >= 0);
|
|
known_result.add_constraint(y >= 120);
|
|
known_result.add_constraint(y <= 184);
|
|
known_result.add_constraint(x <= y);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test05() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x + 1024 == 8*y);
|
|
ph.add_constraint(-64 <= x);
|
|
ph.add_constraint(x <= 448);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_IMPOSSIBLE);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x >= 0);
|
|
known_result.add_constraint(x <= 255);
|
|
known_result.add_constraint(x + 1024 == 8*y);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test06() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x + 1024 == 8*y);
|
|
ph.add_constraint(-64 <= x);
|
|
ph.add_constraint(x <= 448);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
Constraint_System cs;
|
|
cs.insert(x <= y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_IMPOSSIBLE, &cs);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x >= 0);
|
|
known_result.add_constraint(7*x <= 1024);
|
|
known_result.add_constraint(x + 1024 == 8*y);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test07() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x + 1024 == 8*y);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x >= 0);
|
|
known_result.add_constraint(x <= 255);
|
|
known_result.add_constraint(y >= 0);
|
|
known_result.add_constraint(y <= 255);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test08() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x + 1024 == 8*y);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
Constraint_System cs;
|
|
cs.insert(x <= y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS, &cs);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x >= 0);
|
|
known_result.add_constraint(y <= 255);
|
|
known_result.add_constraint(x <= y);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test09() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x + 1024 == 8*y);
|
|
ph.add_constraint(-64 <= x);
|
|
ph.add_constraint(x <= 448);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS, 0, 32, false);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x >= 0);
|
|
known_result.add_constraint(x <= 255);
|
|
known_result.add_constraint(x + 24*y >= 3072);
|
|
known_result.add_constraint(193*x + 504*y <= 129792);
|
|
known_result.add_constraint(x - 8*y >= -1280);
|
|
known_result.add_constraint(x - 8*y <= -768);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test10() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x + 1024 == 8*y);
|
|
ph.add_constraint(-64 <= x);
|
|
ph.add_constraint(x <= 448);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
Constraint_System cs;
|
|
cs.insert(x <= y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS, &cs, 32, false);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x >= 0);
|
|
known_result.add_constraint(x <= y);
|
|
known_result.add_constraint(x - 8*y >= -1280);
|
|
known_result.add_constraint(x - 8*y <= -1024);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test11() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x + 1024 == 8*y);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS, 0, 32, false);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x >= 0);
|
|
known_result.add_constraint(x <= 255);
|
|
known_result.add_constraint(y >= 0);
|
|
known_result.add_constraint(y <= 255);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test12() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x + 1024 == 8*y);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
Constraint_System cs;
|
|
cs.insert(x <= y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS, &cs, 32, false);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x >= 0);
|
|
known_result.add_constraint(y <= 255);
|
|
known_result.add_constraint(x <= y);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test13() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x >= 224);
|
|
ph.add_constraint(x-y <= 160);
|
|
ph.add_constraint(x+y <= 416);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x >= 0);
|
|
known_result.add_constraint(x <= 255);
|
|
known_result.add_constraint(+x-y <= 160);
|
|
known_result.add_constraint(+x+y <= 416);
|
|
known_result.add_constraint(x + 7*y >= 672);
|
|
known_result.add_constraint(x - 7*y >= -1120);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test14() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x >= 224);
|
|
ph.add_constraint(x-y <= 160);
|
|
ph.add_constraint(x+y <= 416);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
Constraint_System cs;
|
|
cs.insert(x <= y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS, &cs);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x >= 0);
|
|
known_result.add_constraint(y >= 96);
|
|
known_result.add_constraint(-x+y >= 96);
|
|
known_result.add_constraint(+x+y <= 160);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test15() {
|
|
C_Polyhedron ph(1);
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars;
|
|
|
|
Variable x(0);
|
|
Constraint_System cs;
|
|
cs.insert(x == 10);
|
|
|
|
try {
|
|
// This is an invalid use of wrap_assign(): since `vars' is empty,
|
|
// `cs' can only contain 0-dimensional constraints.
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS, &cs);
|
|
}
|
|
catch (std::invalid_argument& e) {
|
|
nout << "invalid_argument: " << e.what() << endl << endl;
|
|
return true;
|
|
}
|
|
catch (...) {
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
test16() {
|
|
C_Polyhedron ph(1);
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars;
|
|
|
|
Variable x(0);
|
|
Constraint_System cs;
|
|
cs.insert(Linear_Expression(0) == 1);
|
|
cs.insert(Linear_Expression(0) == 0);
|
|
|
|
try {
|
|
// This is a valid use of wrap_assign(): `vars' is empty,
|
|
// but `cs' only contains 0-dimensional constraints.
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS, &cs);
|
|
}
|
|
catch (std::invalid_argument& e) {
|
|
nout << "unexpected exception thrown: " << e.what() << endl << endl;
|
|
return false;
|
|
}
|
|
catch (...) {
|
|
return false;
|
|
}
|
|
|
|
return ph.is_empty();
|
|
}
|
|
|
|
bool
|
|
test17() {
|
|
C_Polyhedron ph(1);
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars;
|
|
|
|
Variable x(0);
|
|
Constraint_System cs;
|
|
cs.insert(Linear_Expression(0) == 0);
|
|
|
|
try {
|
|
// This is a valid use of wrap_assign(): `vars' is empty,
|
|
// but `cs' only contains 0-dimensional constraints.
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS, &cs);
|
|
}
|
|
catch (std::invalid_argument& e) {
|
|
nout << "unexpected exception thrown: " << e.what() << endl << endl;
|
|
return false;
|
|
}
|
|
catch (...) {
|
|
return false;
|
|
}
|
|
|
|
return ph.is_universe();
|
|
}
|
|
|
|
bool
|
|
test18() {
|
|
C_Polyhedron ph(1);
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variable x(0);
|
|
Variable y(1);
|
|
Variables_Set vars(x, y);
|
|
|
|
Constraint_System cs;
|
|
cs.insert(x == 10);
|
|
|
|
try {
|
|
// This is an invalid use of wrap_assign(): the space dimension
|
|
// of `vars' is higher than the space dimension of `ph'.
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS, &cs);
|
|
}
|
|
catch (std::invalid_argument& e) {
|
|
nout << "invalid_argument: " << e.what() << endl << endl;
|
|
return true;
|
|
}
|
|
catch (...) {
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
test19() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(x == 256);
|
|
ph.add_constraint(y == 256 + 256 + 1);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
Constraint_System cs;
|
|
cs.insert(x + 1 == y);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS, &cs);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(x == 0);
|
|
known_result.add_constraint(y == 1);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool
|
|
test20() {
|
|
Variable x(0);
|
|
Variable y(1);
|
|
|
|
C_Polyhedron ph(2);
|
|
ph.add_constraint(2*x >= 1);
|
|
ph.add_constraint(3*x <= 2);
|
|
ph.add_constraint(y >= 255);
|
|
ph.add_constraint(y <= 257);
|
|
|
|
print_constraints(ph, "*** ph ***");
|
|
|
|
Variables_Set vars(x, y);
|
|
|
|
Constraint_System cs;
|
|
cs.insert(x + y <= 100);
|
|
|
|
ph.wrap_assign(vars, BITS_8, UNSIGNED, OVERFLOW_WRAPS, &cs, 16, false);
|
|
|
|
C_Polyhedron known_result(2);
|
|
known_result.add_constraint(2*x >= 1);
|
|
known_result.add_constraint(3*x <= 2);
|
|
known_result.add_constraint(y >= 0);
|
|
known_result.add_constraint(y <= 1);
|
|
|
|
bool ok = (ph == known_result);
|
|
|
|
print_constraints(ph, "*** ph.wrap_assign(...) ***");
|
|
|
|
return ok;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
BEGIN_MAIN
|
|
DO_TEST_F16(test01);
|
|
DO_TEST_F16(test02);
|
|
DO_TEST_F16A(test03);
|
|
DO_TEST_F8(test04);
|
|
DO_TEST_F16(test05);
|
|
DO_TEST_F16(test06);
|
|
DO_TEST_F8(test07);
|
|
DO_TEST_F8(test08);
|
|
DO_TEST_F16(test09);
|
|
DO_TEST_F16(test10);
|
|
DO_TEST_F8(test11);
|
|
DO_TEST_F8(test12);
|
|
DO_TEST_F16(test13);
|
|
DO_TEST_F8(test14);
|
|
DO_TEST(test15);
|
|
DO_TEST(test16);
|
|
DO_TEST(test17);
|
|
DO_TEST(test18);
|
|
DO_TEST_F8(test19);
|
|
DO_TEST_F8(test20);
|
|
END_MAIN
|