File hashtable.c changed (mode: 100644) (index 42cca35..2893edb) |
6 |
6 |
|
|
7 |
7 |
static uint32_t hashfunc(const char *key) |
static uint32_t hashfunc(const char *key) |
8 |
8 |
{ |
{ |
9 |
|
//murmur3_32 |
|
10 |
|
static const uint32_t c1 = 0xcc9e2d51; |
|
11 |
|
static const uint32_t c2 = 0x1b873593; |
|
12 |
|
static const uint32_t r1 = 15; |
|
13 |
|
static const uint32_t r2 = 13; |
|
14 |
|
static const uint32_t m = 5; |
|
15 |
|
static const uint32_t n = 0xe6546b64; |
|
16 |
|
|
|
17 |
|
uint32_t len = strlen(key); |
|
18 |
|
uint32_t hash = 0; |
|
19 |
|
|
|
20 |
|
const int nblocks = len / 4; |
|
21 |
|
const uint32_t *blocks = (const uint32_t *) key; |
|
22 |
|
int i; |
|
23 |
|
for (i = 0; i < nblocks; i++) { |
|
24 |
|
uint32_t k = blocks[i]; |
|
25 |
|
k *= c1; |
|
26 |
|
k = (k << r1) | (k >> (32 - r1)); |
|
27 |
|
k *= c2; |
|
28 |
|
|
|
29 |
|
hash ^= k; |
|
30 |
|
hash = ((hash << r2) | (hash >> (32 - r2))) * m + n; |
|
31 |
|
} |
|
32 |
|
|
|
33 |
|
const uint8_t *tail = (const uint8_t *) (key + nblocks * 4); |
|
34 |
|
uint32_t k1 = 0; |
|
35 |
|
|
|
36 |
|
switch (len & 3) { |
|
37 |
|
case 3: |
|
38 |
|
k1 ^= tail[2] << 16; |
|
39 |
|
case 2: |
|
40 |
|
k1 ^= tail[1] << 8; |
|
41 |
|
case 1: |
|
42 |
|
k1 ^= tail[0]; |
|
43 |
|
|
|
44 |
|
k1 *= c1; |
|
45 |
|
k1 = (k1 << r1) | (k1 >> (32 - r1)); |
|
46 |
|
k1 *= c2; |
|
47 |
|
hash ^= k1; |
|
48 |
|
} |
|
49 |
|
|
|
50 |
|
hash ^= len; |
|
51 |
|
hash ^= (hash >> 16); |
|
52 |
|
hash *= 0x85ebca6b; |
|
53 |
|
hash ^= (hash >> 13); |
|
54 |
|
hash *= 0xc2b2ae35; |
|
55 |
|
hash ^= (hash >> 16); |
|
56 |
|
|
|
57 |
|
return hash; |
|
|
9 |
|
// fnv |
|
10 |
|
uint32_t hash = 2166136261; |
|
11 |
|
while(*key) |
|
12 |
|
hash = (hash ^ *key++) * 16777619; |
|
13 |
|
return hash; |
58 |
14 |
} |
} |
59 |
15 |
|
|
60 |
16 |
void ht_init(struct hashtable *h, size_t size) |
void ht_init(struct hashtable *h, size_t size) |
|
... |
... |
void * ht_lookup(struct hashtable *h, const char *name) |
70 |
26 |
size_t idx = (start + 1) % h->size; |
size_t idx = (start + 1) % h->size; |
71 |
27 |
for(; idx != start; idx = (idx + 1) % h->size){ |
for(; idx != start; idx = (idx + 1) % h->size){ |
72 |
28 |
if(h->bucket[idx].name){ |
if(h->bucket[idx].name){ |
73 |
|
if(!strcmp(h->bucket[idx].name, name)){ |
|
|
29 |
|
if( !strcmp(h->bucket[idx].name, name)){ |
74 |
30 |
return h->bucket[idx].val; |
return h->bucket[idx].val; |
75 |
31 |
} |
} |
76 |
32 |
}else{ |
}else{ |
|
... |
... |
static void resize(struct hashtable *h) |
98 |
54 |
|
|
99 |
55 |
bool ht_put(struct hashtable *h, const char *name, void *val) |
bool ht_put(struct hashtable *h, const char *name, void *val) |
100 |
56 |
{ |
{ |
101 |
|
if (ht_lookup(h, name) != NULL) { |
|
102 |
|
return false; |
|
103 |
|
} |
|
104 |
|
|
|
105 |
57 |
size_t start = hashfunc(name); |
size_t start = hashfunc(name); |
106 |
58 |
size_t idx = (start + 1) % h->size; |
size_t idx = (start + 1) % h->size; |
107 |
59 |
for(; /*idx != start*/; idx = (idx + 1) % h->size){ |
for(; /*idx != start*/; idx = (idx + 1) % h->size){ |
|
... |
... |
bool ht_put(struct hashtable *h, const char *name, void *val) |
109 |
61 |
h->bucket[idx].name = name; |
h->bucket[idx].name = name; |
110 |
62 |
h->bucket[idx].val = val; |
h->bucket[idx].val = val; |
111 |
63 |
break; |
break; |
|
64 |
|
}else if( !strcmp(h->bucket[idx].name, name)){ |
|
65 |
|
return false; |
112 |
66 |
} |
} |
113 |
67 |
} |
} |
114 |
68 |
h->count++; |
h->count++; |
File main.c changed (mode: 100644) (index ee39349..9eeed2a) |
... |
... |
static struct typenode* addPrimitiveType(const char *name) |
17 |
17 |
|
|
18 |
18 |
static void init() |
static void init() |
19 |
19 |
{ |
{ |
20 |
|
ht_init(&functions, 8191); |
|
|
20 |
|
ht_init(&functions, 10009); |
21 |
21 |
ht_init(&globals, 8191); |
ht_init(&globals, 8191); |
22 |
|
ht_init(&locals, 23); |
|
23 |
|
ht_init(¶ms, 11); |
|
24 |
|
ht_init(&types, 511); |
|
25 |
|
ht_init(&initialized, 23); |
|
|
22 |
|
ht_init(&locals, 27); |
|
23 |
|
ht_init(¶ms, 23); |
|
24 |
|
ht_init(&types, 149); |
|
25 |
|
ht_init(&initialized, 2047); |
26 |
26 |
|
|
27 |
27 |
ht_init(&bad_natives_in_globals, 17); |
ht_init(&bad_natives_in_globals, 17); |
28 |
28 |
ht_init(&shadowed_variables, 17); |
ht_init(&shadowed_variables, 17); |
29 |
29 |
|
|
30 |
|
ht_init(&uninitialized_globals, 511); |
|
|
30 |
|
ht_init(&uninitialized_globals, 2047); |
31 |
31 |
|
|
32 |
32 |
gHandle = addPrimitiveType("handle"); |
gHandle = addPrimitiveType("handle"); |
33 |
33 |
gInteger = addPrimitiveType("integer"); |
gInteger = addPrimitiveType("integer"); |
|
... |
... |
printf( |
176 |
176 |
dofile(stdin, "<stdin>"); |
dofile(stdin, "<stdin>"); |
177 |
177 |
} |
} |
178 |
178 |
} |
} |
|
179 |
|
|
179 |
180 |
int main(int argc, char **argv) |
int main(int argc, char **argv) |
180 |
181 |
{ |
{ |
181 |
182 |
init(); |
init(); |
|
... |
... |
int main(int argc, char **argv) |
186 |
187 |
if (ignorederrors) { |
if (ignorederrors) { |
187 |
188 |
printf("%d errors ignored\n", ignorederrors); |
printf("%d errors ignored\n", ignorederrors); |
188 |
189 |
} |
} |
189 |
|
|
|
190 |
190 |
return 0; |
return 0; |
191 |
191 |
} else { |
} else { |
192 |
192 |
if (haderrors) { |
if (haderrors) { |
File misc.c changed (mode: 100644) (index 1fb8d1e..4b22c86) |
... |
... |
void checkmodulo(const struct typenode *a, const struct typenode *b) |
500 |
500 |
bool snd = typeeq(pb, gInteger); |
bool snd = typeeq(pb, gInteger); |
501 |
501 |
|
|
502 |
502 |
if(! fst && ! snd){ |
if(! fst && ! snd){ |
503 |
|
yyerrorex(semanticerror, "Both arguments of the modulo-operator must be integers"); |
|
|
503 |
|
yyerrorex(semanticerror, "Both arguments of the modulo-operator must be integers"); |
504 |
504 |
}else if(! fst){ |
}else if(! fst){ |
505 |
|
yyerrorex(semanticerror, "First argument of the modulo-operator must be an integer"); |
|
|
505 |
|
yyerrorex(semanticerror, "First argument of the modulo-operator must be an integer"); |
506 |
506 |
}else if(! snd){ |
}else if(! snd){ |
507 |
|
yyerrorex(semanticerror, "Second argument of the modulo-operator must be an integer"); |
|
|
507 |
|
yyerrorex(semanticerror, "Second argument of the modulo-operator must be an integer"); |
508 |
508 |
} |
} |
509 |
509 |
|
|
510 |
510 |
|
|