aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compute/hs/gen/target_debug.c
blob: 1481ca804126832b394b625432aea3de7302c290 (plain)
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
/*
 * Copyright 2018 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can
 * be found in the LICENSE file.
 *
 */

#include <stdio.h>
#include <stdlib.h>

//
//
//

#include "gen.h"

//
//
//

#define HSG_INDENT  2

//
//
//

struct hsg_target_state
{
  FILE * txt;
};

//
//
//

void
hsg_target_indent(struct hsg_target * const target, uint32_t const depth)
{
  fprintf(target->state->txt,
          "%*s",
          depth*HSG_INDENT,"");
}

void
hsg_target_debug(struct hsg_target       * const target,
                 struct hsg_config const * const config,
                 struct hsg_merge  const * const merge,
                 struct hsg_op     const * const ops,
                 uint32_t                  const depth)
{
  if (ops->type == HSG_OP_TYPE_TARGET_BEGIN)
    {
      target->state = malloc(sizeof(*target->state));
      fopen_s(&target->state->txt,"hs_debug.txt","wb");
    }

  hsg_target_indent(target,depth);

  fprintf(target->state->txt,
          "%s\n",
          hsg_op_type_string[ops->type]);

  if (ops->type == HSG_OP_TYPE_TARGET_END)
    {
      fclose(target->state->txt);
      free(target->state);
    }
}

//
//
//