Coverage Report

Created: 2019-07-24 05:18

/Users/buildslave/jenkins/workspace/clang-stage2-coverage-R/llvm/tools/polly/lib/External/isl/read_in_string_templ.c
Line
Count
Source (jump to first uncovered line)
1
#include <isl/stream.h>
2
3
0
#define xCAT(A,B) A ## B
4
0
#define CAT(A,B) xCAT(A,B)
5
#undef TYPE
6
0
#define TYPE CAT(isl_,BASE)
7
0
#define xFN(TYPE,NAME) TYPE ## _ ## NAME
8
0
#define FN(TYPE,NAME) xFN(TYPE,NAME)
9
10
/* Read an object of type TYPE from "s", where the object may
11
 * either be specified directly or as a string.
12
 *
13
 * First check if the next token in "s" is a string.  If so, try and
14
 * extract the object from the string.
15
 * Otherwise, try and read the object directly from "s".
16
 */
17
static __isl_give TYPE *FN(read,BASE)(__isl_keep isl_stream *s)
18
0
{
19
0
  struct isl_token *tok;
20
0
  int type;
21
0
22
0
  tok = isl_stream_next_token(s);
23
0
  type = isl_token_get_type(tok);
24
0
  if (type == ISL_TOKEN_STRING) {
25
0
    char *str;
26
0
    isl_ctx *ctx;
27
0
    TYPE *res;
28
0
29
0
    ctx = isl_stream_get_ctx(s);
30
0
    str = isl_token_get_str(ctx, tok);
31
0
    res = FN(TYPE,read_from_str)(ctx, str);
32
0
    free(str);
33
0
    isl_token_free(tok);
34
0
    return res;
35
0
  }
36
0
  isl_stream_push_token(s, tok);
37
0
  return FN(isl_stream_read,BASE)(s);
38
0
}
Unexecuted instantiation: isl_flow.c:read_union_map
Unexecuted instantiation: isl_schedule_constraints.c:read_union_set
Unexecuted instantiation: isl_schedule_constraints.c:read_set
Unexecuted instantiation: isl_schedule_constraints.c:read_union_map