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 RUN_T_H_ 00030 #define RUN_T_H_ 00031 00032 #include "intmap_t.h" 00033 #include "list_t.h" 00034 00041 typedef struct run_block_ar { 00043 intmap_t vars; /* of rdata_var_t */ 00044 } run_block_ar_t; 00045 00046 00053 typedef struct run_proc_ar { 00055 struct rdata_var *obj; 00056 00058 struct stree_proc *proc; 00059 00061 list_t block_ar; /* of run_block_ar_t */ 00062 00064 struct rdata_item *retval; 00065 } run_proc_ar_t; 00066 00071 typedef enum { 00073 bm_none, 00074 00076 bm_stat, 00077 00079 bm_proc, 00080 00082 bm_exc, 00083 00085 bm_error 00086 } run_bailout_mode_t; 00087 00092 typedef struct run_thread_ar { 00094 list_t proc_ar; /* of run_proc_ar_t */ 00095 00097 run_bailout_mode_t bo_mode; 00098 00100 struct cspan *exc_cspan; 00101 00103 struct rdata_value *exc_payload; 00104 00106 bool_t error; 00107 } run_thread_ar_t; 00108 00110 typedef struct run { 00112 struct stree_program *program; 00113 00115 run_thread_ar_t *thread_ar; 00116 00118 struct rdata_var *gdata; 00119 } run_t; 00120 00121 #endif