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
|
/* This file is part of GCC.
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
#ifndef __PYVEC_H__
#define __PYVEC_H__
typedef struct gpy_vector_t {
void ** vector;
signed long size, length;
} gpy_ident_vector_t;
typedef unsigned long gpy_hashval_t;
typedef struct gpy_hash_entry {
gpy_hashval_t hash;
void * data;
} gpy_hash_entry_t ;
typedef struct GTY(()) gpy_hash_table_t {
signed long size, length;
gpy_hash_entry_t * array;
} gpy_hash_tab_t ;
typedef gpy_dot_tree_t * gpydot;
typedef gpy_hash_tab_t * gpy_ctx_t;
typedef int gpy_int;
DEF_VEC_I (gpy_int);
DEF_VEC_ALLOC_I (gpy_int,gc);
DEF_VEC_P (gpydot);
DEF_VEC_ALLOC_P (gpydot,gc);
DEF_VEC_P (gpy_ctx_t);
DEF_VEC_ALLOC_P (gpy_ctx_t, gc);
extern VEC(gpy_ctx_t,gc) * gpy_ctx_table;
extern gpy_hashval_t gpy_dd_hash_string (const char *);
extern gpy_hash_entry_t * gpy_dd_hash_lookup_table (gpy_hash_tab_t *, gpy_hashval_t);
extern void ** gpy_dd_hash_insert (gpy_hashval_t, void *, gpy_hash_tab_t *);
extern void gpy_dd_hash_grow_table (gpy_hash_tab_t *);
extern void gpy_dd_hash_init_table (gpy_hash_tab_t *);
extern bool gpy_ctx_push_decl (tree, const char *, gpy_hash_tab_t *);
extern tree gpy_ctx_lookup_decl (VEC(gpy_ctx_t,gc) *, const char *);
#endif /*__PY_VEC_H__*/
|