Merge branch 'hamed' into brian
[satune.git] / src / Collections / structs.c
1 #include "structs.h"
2 #include "mymemory.h"
3 #include "orderpair.h"
4
5 VectorImpl(Table, Table *, 4);
6 VectorImpl(Set, Set *, 4);
7 VectorImpl(Boolean, Boolean *, 4);
8 VectorImpl(Constraint, Constraint *, 4);
9 VectorImpl(Function, Function *, 4);
10 VectorImpl(Predicate, Predicate *, 4);
11 VectorImpl(Element, Element *, 4);
12 VectorImpl(Order, Order *, 4);
13 VectorImpl(TableEntry, TableEntry *, 4);
14 VectorImpl(ASTNode, ASTNode *, 4);
15 VectorImpl(Int, uint64_t, 4);
16
17 inline unsigned int Ptr_hash_function(void * hash) {
18         return (unsigned int)((uint64_t)hash >> 4);
19 }
20
21 inline bool Ptr_equals(void * key1, void * key2) {
22         return key1 == key2;
23 }
24
25 static inline unsigned int order_pair_hash_Function(OrderPair* This){
26         return (uint) (This->first << 2) ^ This->second;
27 }
28
29 static inline unsigned int order_pair_equals(OrderPair* key1, OrderPair* key2){
30         return key1->first== key2->first && key1->second == key2->second;
31 }
32
33 HashTableImpl(BoolConst, OrderPair *, OrderPair *, order_pair_hash_Function, order_pair_equals, ourfree);