summaryrefslogtreecommitdiff
path: root/src/expr/expr_attribute.h
blob: 3525a83709f08c326e9cc91be81faae1eba4fe80 (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
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
/*********************                                           -*- C++ -*-  */
/** expr_attribute.h
 ** This file is part of the CVC4 prototype.
 ** Copyright (c) 2009 The Analysis of Computer Systems Group (ACSys)
 ** Courant Institute of Mathematical Sciences
 ** New York University
 ** See the file COPYING in the top-level source directory for licensing
 ** information.
 **
 **/

#ifndef __CVC4_EXPR_ATTRIBUTE_H
#define __CVC4_EXPR_ATTRIBUTE_H

// TODO WARNING this file needs work !

#include <stdint.h>
#include "config.h"
#include "context/context.h"
#include "cvc4_expr.h"

namespace CVC4 {

template <class value_type>
class AttrTables;

// global (or TSS)
extern CDMap<uint64_t> g_hash_bool;
extern CDMap<uint64_t> g_hash_int;
extern CDMap<Expr>     g_hash_expr;
extern CDMap<void*>    g_hash_ptr;

template <class T>
class AttrTable;

template <>
class AttrTable<bool> {
public:
  class BitAccessor {
    uint64_t& d_word;
    unsigned d_bit;
  public:
    BitAccessor& operator=(bool b);
    // continue...
  };

  // bool specialization
  static CDMap<uint64_t> *s_hash;

  template <class Attr>
  BitAccessor& find(Expr e, const Attr&);

  template <class Attr>
  bool find(Expr e, const Attr&) const;
};

template <>
class AttrTable<uint64_t> {
public:  
  // int(egral) specialization
  static CDMap<uint64_t> *s_hash;
  uint64_t& find(Expr);
  uint64_t& find(Expr) const;
};

template <class T>
class AttrTable<T*> {
  // pointer specialization
  static CDMap<void*> *s_hash;
public:
};

template <>
class AttrTable<Expr> {
public:
  // Expr specialization
  static CDMap<Expr> *s_hash;
  Expr find(Expr);
};

CDMap<uint64_t>* AttrTable<bool>::s_hash     = &g_hash_bool;
CDMap<uint64_t>* AttrTable<uint64_t>::s_hash = &g_hash_int;
CDMap<Expr>*     AttrTable<Expr>::s_hash     = &g_hash_expr;

template <class T>
CDMap<void*>*    AttrTable<T*>::s_hash       = &g_hash_ptr;

template <class Attr>
class AttributeTable {
  typedef typename Attr::value_type value_type;

  AttrTable<value_type>& d_table;
  
};

} /* CVC4 namespace */

#endif /* __CVC4_EXPR_ATTRIBUTE_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback