blob: f83bf72bb94304acb75c0f85fd25ffa9740cd7ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/* -*-c-*- ---------------- xmix_vm_command.h :
* Private type declarations form mix_vm_command
* ------------------------------------------------------------------
* Last change: Time-stamp: <01/08/26 21:52:31 jao>
* ------------------------------------------------------------------
* Copyright (C) 2001 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#ifndef XMIX_VM_COMMAND_H
#define XMIX_VM_COMMAND_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include "mix_device.h"
#include "mix_vm.h"
#include "mix_vm_dump.h"
#include "mix_eval.h"
#include "mix_predicate.h"
#include "mix_vm_command.h"
/* configuration keys */
extern const gchar *TRACING_KEY_;
extern const gchar *TIMING_KEY_;
extern const gchar *EDITOR_KEY_;
extern const gchar *ASM_KEY_;
/* hooks */
typedef struct
{
mix_vm_cmd_hook_t func;
gpointer data;
} hook_;
typedef struct
{
mix_vm_cmd_global_hook_t func;
gpointer data;
} global_hook_;
#define PRNO_ MIX_PRED_MEM
struct mix_vm_cmd_dispatcher_t
{
mix_vm_t *vm; /* the virtual machine */
gboolean result; /* last command's outcome */
gchar *program; /* the name of the last loaded program */
gchar *editor; /* edit command line template */
gchar *assembler; /* compile command line template */
FILE *out; /* message output file */
FILE *err; /* error output file */
mix_dump_context_t *dump; /* dump context for output */
mix_eval_t *eval; /* evaluator for w-expressions */
gboolean trace; /* tracing flag */
gboolean printtime; /* printing times flag */
mix_time_t uptime; /* total running time */
mix_time_t laptime; /* last run time */
mix_time_t progtime; /* current program running time */
GHashTable *commands; /* local commands */
GCompletion *completions; /* command completion list */
GSList *pre_hooks[MIX_CMD_INVALID]; /* Pre-command hooks */
GSList *post_hooks[MIX_CMD_INVALID]; /* Post-command hooks */
GSList *global_pre; /* global pre-command hook */
GSList *global_post; /* global post-command hook */
mix_config_t *config; /* externally provided configuration */
mix_predicate_t *preds[PRNO_]; /* predicates for conditional breakpoints */
GHashTable *mem_preds; /* predicates for memory conditional bps */
};
#endif /* XMIX_VM_COMMAND_H */
|