summaryrefslogtreecommitdiff
path: root/src/expr/mkkind
blob: cffdc0caa62aa1d7f6acbb07df8d6aaac785f0da (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
#!/bin/bash
#
# mkkind
# Morgan Deters <mdeters@cs.nyu.edu> for CVC4
# Copyright (c) 2010  The CVC4 Project
#
# The purpose of this script is to create kind.h from a prologue,
# middle, epilogue, and a list of theory kinds.
#
# Invocation:
#
#   mkkind prologue-file middle-file epilogue-file theory-kind-files...
#
# Output is to standard out.
#

cat <<EOF
/*********************                                           -*- C++ -*-  */
/** kind.h
 **
 ** Copyright 2010  The AcSys Group, New York University, and as below.
 **
 ** This header file automatically generated by:
 **
 **     $0 $@
 **
 ** for the CVC4 project.
 **/

EOF

prologue=$1; shift
middle=$1; shift
epilogue=$1; shift

cases=

function special {
  r=$1
  comment=$2

  echo "  $r, /*! $comment */"
  cases="$cases  case $r: out << \"$r\"; break;
"
}

function operator {
  special "$1" "$2"
}

function parameterized {
  special "$1" "$2"
}

function constant {
  special "$1" "$3"
}

cat "$prologue"
while [ $# -gt 0 ]; do
  b=$(basename $(dirname "$1"))
  echo
  echo "  /* from $b */"
  cases="$cases
  /* from $b */
"
  source "$1"
  shift
done
cat "$middle"
echo "$cases"
cat "$epilogue"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback