source: mainline/uspace/app/sbi/src/run.h@ d0febca

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since d0febca was d0febca, checked in by Jiri Svoboda <jiri@…>, 15 years ago

Update SBI to rev. 100.

  • Property mode set to 100644
File size: 2.8 KB
Line 
1/*
2 * Copyright (c) 2010 Jiri Svoboda
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef RUN_H_
30#define RUN_H_
31
32#include "mytypes.h"
33
34void run_init(run_t *run);
35void run_program(run_t *run, stree_program_t *prog);
36void run_proc(run_t *run, run_proc_ar_t *proc_ar, rdata_item_t **res);
37
38void run_print_fun_bt(run_t *run);
39
40rdata_var_t *run_local_vars_lookup(run_t *run, sid_t name);
41run_proc_ar_t *run_get_current_proc_ar(run_t *run);
42run_block_ar_t *run_get_current_block_ar(run_t *run);
43stree_csi_t *run_get_current_csi(run_t *run);
44
45void run_value_item_to_var(rdata_item_t *item, rdata_var_t **var);
46void run_proc_ar_set_args(run_t *run, run_proc_ar_t *proc_ar,
47 list_t *arg_vals);
48void run_proc_ar_set_setter_arg(run_t *run, run_proc_ar_t *proc_ar,
49 rdata_item_t *arg_val);
50void run_proc_ar_create(run_t *run, rdata_var_t *obj, stree_symbol_t *proc_sym,
51 stree_block_t *proc_block, run_proc_ar_t **rproc_ar);
52
53void run_cvt_value_item(run_t *run, rdata_item_t *item, rdata_item_t **ritem);
54void run_address_read(run_t *run, rdata_address_t *address,
55 rdata_item_t **ritem);
56void run_address_write(run_t *run, rdata_address_t *address,
57 rdata_value_t *value);
58void run_reference(run_t *run, rdata_var_t *var, rdata_item_t **res);
59void run_dereference(run_t *run, rdata_item_t *ref, rdata_item_t **ritem);
60
61run_thread_ar_t *run_thread_ar_new(void);
62run_proc_ar_t *run_proc_ar_new(void);
63run_block_ar_t *run_block_ar_new(void);
64
65#endif
Note: See TracBrowser for help on using the repository browser.