refactor of files and headers lots of compiler errors to fix now
[official-gcc.git] / gcc / python / runtime.h
blobb1bbbbba4205ff8180d48e3058a5c7a4ccd6ee7d
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 tree gpy_builtin_get_init_call( void );
22 extern tree gpy_builtin_get_cleanup_final_call( void );
24 extern tree gpy_builtin_get_push_context_call( void);
26 extern tree gpy_builtin_get_pop_context_call( void );
28 extern tree gpy_builtin_get_fold_int_call( int );
30 extern tree gpy_builtin_get_eval_accessor_call( tree , tree );
32 extern tree gpy_builtin_get_incr_ref_call( tree );
34 extern tree gpy_builtin_get_decr_ref_call( tree );
36 extern tree gpy_builtin_get_print_call( int , tree * );
38 extern tree gpy_builtin_get_finalize_block_call( int , tree * );
40 extern tree gpy_builtin_get_eval_expression_call( tree , tree , gpy_opcode_t );
42 #endif /* __RUNTIME_H__ */