bringing things together again
[official-gcc.git] / gcc / python / py-builtins.h
blob8f2331fc2a366418c1c9bb5cea1678a26e1b2537
1 /* This file is part of GCC.
3 GCC is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 3, or (at your option)
6 any later version.
8 GCC is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with GCC; see the file COPYING3. If not see
15 <http://www.gnu.org/licenses/>. */
17 #ifndef __RUNTIME_H__
18 #define __RUNTIME_H__
20 extern VEC(tree,gc) * gpy_builtin_get_init_call (void);
22 extern VEC(tree,gc) * gpy_builtin_get_cleanup_final_call (void);
24 extern VEC(tree,gc) * gpy_builtin_get_push_context_call (void);
26 extern VEC(tree,gc) * gpy_builtin_get_pop_context_call (void);
28 extern VEC(tree,gc) * gpy_builtin_get_fold_int_call (int);
30 extern VEC(tree,gc) * gpy_builtin_get_eval_accessor_call (tree, tree);
32 extern VEC(tree,gc) * gpy_builtin_get_incr_ref_call (tree);
34 extern VEC(tree,gc) * gpy_builtin_get_decr_ref_call (tree);
36 extern VEC(tree,gc) * gpy_builtin_get_set_callable_call (tree);
38 extern VEC(tree,gc) * gpy_builtin_get_print_call (int, tree *);
40 extern VEC(tree,gc) * gpy_builtin_get_finalize_block_call (int, tree *);
42 extern VEC(tree,gc) * gpy_builtin_get_eval_expression_call (tree, tree, gpy_opcode_t);
44 extern VEC(tree,gc) * gpy_builtin_get_fold_call_call (const char *, int, tree *);
46 extern VEC(tree,gc) * gpy_builtin_get_set_decl_call (tree);
48 extern VEC(tree,gc) * gpy_builtin_get_register_decl_call (tree);
50 extern VEC(tree,gc) * gpy_builtin_get_register_callable_call (tree, int);
52 #endif /* __RUNTIME_H__ */