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
|
/* Copyright 2016-2017 Tobias Grosser
*
* Use of this software is governed by the MIT license
*
* Written by Tobias Grosser, Weststrasse 47, CH-8003, Zurich
*/
#include <vector>
#include <string>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <isl/options.h>
#include <isl/cpp-checked.h>
namespace isl { using namespace checked; }
static void assert_impl(bool condition, const char *file, int line,
const char *message)
{
if (condition)
return;
fprintf(stderr, "Assertion failed in %s:%d %s\n", file, line, message);
exit(EXIT_FAILURE);
}
static void assert_impl(isl::boolean condition, const char *file, int line,
const char *message)
{
assert_impl(bool(condition), file, line, message);
}
/* Return the value encapsulated by "s".
*/
static int size_val(isl::size s)
{
return s.is_error() ? -1 : unsigned(s);
}
#undef assert
#define assert(exp) assert_impl(exp, __FILE__, __LINE__, #exp)
#define IS_TRUE(b) (b).is_true()
#define SIZE_VAL(s) size_val(s)
#include "isl_test_cpp-generic.cc"
/* Test that isl_bool values are returned correctly.
*
* We check in detail the following parts of the isl::boolean class:
* - The is_true, is_false, and is_error functions return true in case they
* are called on a true, false, or error instance of isl::boolean,
* respectively
* - Explicit conversion to 'bool'
* - Implicit conversion to 'bool'
* - The complement operator
* - Explicit construction from 'true' and 'false'
* - Explicit construction form isl_bool
*/
void test_return_bool(isl::ctx ctx)
{
isl::set empty(ctx, "{ : false }");
isl::set univ(ctx, "{ : }");
isl::set null;
isl::boolean b_true = empty.is_empty();
isl::boolean b_false = univ.is_empty();
isl::boolean b_error = null.is_empty();
assert(b_true.is_true());
assert(!b_true.is_false());
assert(!b_true.is_error());
assert(!b_false.is_true());
assert(b_false.is_false());
assert(!b_false.is_error());
assert(!b_error.is_true());
assert(!b_error.is_false());
assert(b_error.is_error());
assert(bool(b_true) == true);
assert(bool(b_false) == false);
assert(b_true);
assert((!b_false).is_true());
assert((!b_true).is_false());
assert((!b_error).is_error());
assert(isl::boolean(true).is_true());
assert(!isl::boolean(true).is_false());
assert(!isl::boolean(true).is_error());
assert(isl::boolean(false).is_false());
assert(!isl::boolean(false).is_true());
assert(!isl::boolean(false).is_error());
assert(isl::manage(isl_bool_true).is_true());
assert(!isl::manage(isl_bool_true).is_false());
assert(!isl::manage(isl_bool_true).is_error());
assert(isl::manage(isl_bool_false).is_false());
assert(!isl::manage(isl_bool_false).is_true());
assert(!isl::manage(isl_bool_false).is_error());
assert(isl::manage(isl_bool_error).is_error());
assert(!isl::manage(isl_bool_error).is_true());
assert(!isl::manage(isl_bool_error).is_false());
}
/* Test that return values are handled correctly.
*
* Test that isl C++ objects, integers, boolean values, and strings are
* returned correctly.
*/
void test_return(isl::ctx ctx)
{
test_return_obj(ctx);
test_return_int(ctx);
test_return_bool(ctx);
test_return_string(ctx);
}
/* Test that foreach functions are modeled correctly.
*
* Verify that lambdas are correctly called as callback of a 'foreach'
* function and that variables captured by the lambda work correctly. Also
* check that the foreach function takes account of the return value of the
* lambda and aborts in case isl::stat::error is returned and then returns
* isl::stat::error itself.
*/
void test_foreach(isl::ctx ctx)
{
isl::set s(ctx, "{ [0]; [1]; [2] }");
std::vector<isl::basic_set> basic_sets;
auto add_to_vector = [&] (isl::basic_set bs) {
basic_sets.push_back(bs);
return isl::stat::ok();
};
isl::stat ret1 = s.foreach_basic_set(add_to_vector);
assert(ret1.is_ok());
assert(basic_sets.size() == 3);
assert(isl::set(basic_sets[0]).is_subset(s).is_true());
assert(isl::set(basic_sets[1]).is_subset(s).is_true());
assert(isl::set(basic_sets[2]).is_subset(s).is_true());
assert(!basic_sets[0].is_equal(basic_sets[1]).is_true());
auto fail = [&] (isl::basic_set bs) {
return isl::stat::error();
};
isl::stat ret2 = s.foreach_basic_set(fail);
assert(ret2.is_error());
}
/* Test the functionality of "every" functions.
*
* In particular, test the generic functionality and
* test that error conditions are properly propagated.
*/
static void test_every(isl::ctx ctx)
{
isl::union_set us(ctx, "{ A[i]; B[j] }");
test_every_generic(ctx);
auto fail = [] (isl::set s){
return isl::boolean::error();
};
assert(us.every_set(fail).is_error());
}
/* Test basic schedule tree functionality.
*
* In particular, create a simple schedule tree and
* - perform some generic tests
* - test map_descendant_bottom_up in the failing case
* - test foreach_descendant_top_down
* - test every_descendant
*/
static void test_schedule_tree(isl::ctx ctx)
{
auto root = test_schedule_tree_generic(ctx);
auto fail_map = [](isl::schedule_node node) {
return isl::schedule_node();
};
assert(root.map_descendant_bottom_up(fail_map).is_null());
int count = 0;
auto inc_count = [&count](isl::schedule_node node) {
count++;
return isl::boolean(true);
};
assert(root.foreach_descendant_top_down(inc_count).is_ok());
assert(count == 8);
count = 0;
auto inc_count_once = [&count](isl::schedule_node node) {
count++;
return isl::boolean(false);
};
assert(root.foreach_descendant_top_down(inc_count_once).is_ok());
assert(count == 1);
auto is_not_domain = [](isl::schedule_node node) {
return !node.isa<isl::schedule_node_domain>();
};
assert(root.child(0).every_descendant(is_not_domain).is_true());
assert(root.every_descendant(is_not_domain).is_false());
auto fail = [](isl::schedule_node node) {
return isl::boolean();
};
assert(root.every_descendant(fail).is_error());
auto domain = root.as<isl::schedule_node_domain>().domain();
auto filters = isl::union_set(ctx, "{}");
auto collect_filters = [&filters](isl::schedule_node node) {
if (node.isa<isl::schedule_node_filter>().is_true()) {
auto filter = node.as<isl::schedule_node_filter>();
filters = filters.unite(filter.filter());
}
return isl::boolean(true);
};
assert(!root.every_descendant(collect_filters).is_error());
assert(domain.is_equal(filters).is_true());
}
/* Test basic AST generation from a schedule tree.
*
* In particular, create a simple schedule tree and
* - perform some generic tests
* - test at_each_domain in the failing case
*/
static void test_ast_build(isl::ctx ctx)
{
auto schedule = test_ast_build_generic(ctx);
bool do_fail = true;
int count_ast_fail = 0;
auto fail_inc_count_ast =
[&count_ast_fail, &do_fail](isl::ast_node node,
isl::ast_build build) {
count_ast_fail++;
return do_fail ? isl::ast_node() : node;
};
auto build = isl::ast_build(ctx);
build = build.set_at_each_domain(fail_inc_count_ast);
auto ast = build.node_from(schedule);
assert(ast.is_null());
assert(count_ast_fail > 0);
auto build_copy = build;
int count_ast = 0;
auto inc_count_ast =
[&count_ast](isl::ast_node node, isl::ast_build build) {
count_ast++;
return node;
};
build_copy = build_copy.set_at_each_domain(inc_count_ast);
ast = build_copy.node_from(schedule);
assert(!ast.is_null());
assert(count_ast == 2);
count_ast_fail = 0;
do_fail = false;
ast = build.node_from(schedule);
assert(!ast.is_null());
assert(count_ast_fail == 2);
}
/* Test the isl checked C++ interface
*
* This includes:
* - The isl C <-> C++ pointer interface
* - Object construction
* - Different parameter types
* - Different return types
* - Foreach functions
* - Every functions
* - Spaces
* - Schedule trees
* - AST generation
* - AST expression generation
*/
int main()
{
isl_ctx *ctx = isl_ctx_alloc();
isl_options_set_on_error(ctx, ISL_ON_ERROR_ABORT);
test_pointer(ctx);
test_constructors(ctx);
test_parameters(ctx);
test_return(ctx);
test_foreach(ctx);
test_every(ctx);
test_space(ctx);
test_schedule_tree(ctx);
test_ast_build(ctx);
test_ast_build_expr(ctx);
isl_ctx_free(ctx);
return EXIT_SUCCESS;
}
|