/Users/buildslave/jenkins/workspace/clang-stage2-coverage-R/llvm/tools/polly/lib/External/isl/isl_multi_gist.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 2011 Sven Verdoolaege |
3 | | * Copyright 2012-2013 Ecole Normale Superieure |
4 | | * |
5 | | * Use of this software is governed by the MIT license |
6 | | * |
7 | | * Written by Sven Verdoolaege, |
8 | | * Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France |
9 | | */ |
10 | | |
11 | | #include <isl_multi_macro.h> |
12 | | |
13 | | /* Compute the gist of "multi" with respect to the domain constraints |
14 | | * of "context". |
15 | | */ |
16 | | __isl_give MULTI(BASE) *FN(MULTI(BASE),gist)(__isl_take MULTI(BASE) *multi, |
17 | | __isl_take DOM *context) |
18 | 3.33k | { |
19 | 3.33k | return FN(FN(MULTI(BASE),apply),DOMBASE)(multi, context, &FN(EL,gist)); |
20 | 3.33k | } Line | Count | Source | 18 | 3.02k | { | 19 | 3.02k | return FN(FN(MULTI(BASE),apply),DOMBASE)(multi, context, &FN(EL,gist)); | 20 | 3.02k | } |
Unexecuted instantiation: isl_multi_pw_aff_gist isl_multi_union_pw_aff_gist Line | Count | Source | 18 | 315 | { | 19 | 315 | return FN(FN(MULTI(BASE),apply),DOMBASE)(multi, context, &FN(EL,gist)); | 20 | 315 | } |
|
21 | | |
22 | | /* Compute the gist of "multi" with respect to the parameter constraints |
23 | | * of "context". |
24 | | */ |
25 | | __isl_give MULTI(BASE) *FN(MULTI(BASE),gist_params)( |
26 | | __isl_take MULTI(BASE) *multi, __isl_take isl_set *context) |
27 | 0 | { |
28 | 0 | return FN(MULTI(BASE),apply_set)(multi, context, &FN(EL,gist_params)); |
29 | 0 | } Unexecuted instantiation: isl_multi_aff_gist_params Unexecuted instantiation: isl_multi_pw_aff_gist_params Unexecuted instantiation: isl_multi_union_pw_aff_gist_params |