00001 /* 00002 * Copyright (c) 2010 Jiri Svoboda 00003 * All rights reserved. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions 00007 * are met: 00008 * 00009 * - Redistributions of source code must retain the above copyright 00010 * notice, this list of conditions and the following disclaimer. 00011 * - Redistributions in binary form must reproduce the above copyright 00012 * notice, this list of conditions and the following disclaimer in the 00013 * documentation and/or other materials provided with the distribution. 00014 * - The name of the author may not be used to endorse or promote products 00015 * derived from this software without specific prior written permission. 00016 * 00017 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 00018 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 00019 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 00020 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 00021 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 00022 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 00023 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 00024 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00025 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 00026 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00027 */ 00028 00029 #ifndef BUILTIN_H_ 00030 #define BUILTIN_H_ 00031 00032 #include "mytypes.h" 00033 00034 void builtin_declare(stree_program_t *program); 00035 void builtin_bind(builtin_t *bi); 00036 void builtin_code_snippet(builtin_t *bi, const char *snippet); 00037 00038 stree_csi_t *builtin_get_gf_class(builtin_t *builtin); 00039 void builtin_run_proc(run_t *run, stree_proc_t *proc); 00040 00041 rdata_var_t *builtin_get_self_mbr_var(run_t *run, const char *mbr_name); 00042 void builtin_return_string(run_t *run, const char *str); 00043 00044 stree_symbol_t *builtin_declare_fun(stree_csi_t *csi, const char *name); 00045 void builtin_fun_add_arg(stree_symbol_t *fun_sym, const char *name); 00046 00047 stree_symbol_t *builtin_find_lvl0(builtin_t *bi, const char *sym_name); 00048 stree_symbol_t *builtin_find_lvl1(builtin_t *bi, const char *csi_name, 00049 const char *sym_name); 00050 00051 void builtin_fun_bind(builtin_t *bi, const char *csi_name, 00052 const char *sym_name, builtin_proc_t bproc); 00053 00054 #endif