REPL Server: Don't establish a SIGINT handler.
[bpt/guile.git] / libguile / instructions.c
CommitLineData
4b69f6ad 1/* Copyright (C) 2001, 2009, 2010, 2011 Free Software Foundation, Inc.
17e90c5e 2 *
560b9c25 3 * This library is free software; you can redistribute it and/or
53befeb7
NJ
4 * modify it under the terms of the GNU Lesser General Public License
5 * as published by the Free Software Foundation; either version 3 of
6 * the License, or (at your option) any later version.
17e90c5e 7 *
53befeb7
NJ
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
560b9c25
AW
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
17e90c5e 12 *
560b9c25
AW
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
53befeb7
NJ
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
560b9c25 17 */
17e90c5e 18
13c47753
AW
19#if HAVE_CONFIG_H
20# include <config.h>
21#endif
22
17e90c5e 23#include <string.h>
560b9c25
AW
24
25#include "_scm.h"
4b69f6ad 26#include "threads.h"
17e90c5e
KN
27#include "instructions.h"
28
4b69f6ad 29
53e28ed9
AW
30struct scm_instruction {
31 enum scm_opcode opcode; /* opcode */
32 const char *name; /* instruction name */
33 signed char len; /* Instruction length. This may be -1 for
34 the loader (see the `VM_LOADER'
35 macro). */
36 signed char npop; /* The number of values popped. This may be
37 -1 for insns like `call' which can take
38 any number of arguments. */
39 char npush; /* the number of values pushed */
f775e51b 40 SCM symname; /* filled in later */
17e90c5e
KN
41};
42
53e28ed9
AW
43#define SCM_VALIDATE_LOOKUP_INSTRUCTION(pos, var, cvar) \
44 do { \
45 cvar = scm_lookup_instruction_by_name (var); \
46 SCM_ASSERT_TYPE (cvar, var, pos, FUNC_NAME, "INSTRUCTION_P"); \
47 } while (0)
17e90c5e 48
53e28ed9 49
4b69f6ad
AW
50static scm_i_pthread_mutex_t itable_lock = SCM_I_PTHREAD_MUTEX_INITIALIZER;
51
52
f775e51b
AW
53static struct scm_instruction*
54fetch_instruction_table ()
55{
56 static struct scm_instruction *table = NULL;
57
4b69f6ad 58 scm_i_pthread_mutex_lock (&itable_lock);
f775e51b
AW
59 if (SCM_UNLIKELY (!table))
60 {
ad47e359 61 size_t bytes = SCM_VM_NUM_INSTRUCTIONS * sizeof(struct scm_instruction);
f775e51b
AW
62 int i;
63 table = malloc (bytes);
64 memset (table, 0, bytes);
65#define VM_INSTRUCTION_TO_TABLE 1
aeeff258
AW
66#include <libguile/vm-expand.h>
67#include <libguile/vm-i-system.i>
68#include <libguile/vm-i-scheme.i>
69#include <libguile/vm-i-loader.i>
f775e51b 70#undef VM_INSTRUCTION_TO_TABLE
ad47e359 71 for (i = 0; i < SCM_VM_NUM_INSTRUCTIONS; i++)
f775e51b
AW
72 {
73 table[i].opcode = i;
74 if (table[i].name)
f39448c5 75 table[i].symname = scm_from_locale_symbol (table[i].name);
f775e51b
AW
76 else
77 table[i].symname = SCM_BOOL_F;
78 }
79 }
4b69f6ad
AW
80 scm_i_pthread_mutex_unlock (&itable_lock);
81
f775e51b
AW
82 return table;
83}
84
53e28ed9
AW
85static struct scm_instruction *
86scm_lookup_instruction_by_name (SCM name)
17e90c5e 87{
f775e51b
AW
88 static SCM instructions_by_name = SCM_BOOL_F;
89 struct scm_instruction *table = fetch_instruction_table ();
90 SCM op;
91
5c8cefe5
LC
92 if (SCM_UNLIKELY (scm_is_false (instructions_by_name)))
93 {
94 unsigned int i;
95
96 instructions_by_name =
97 scm_make_hash_table (SCM_I_MAKINUM (SCM_VM_NUM_INSTRUCTIONS));
98
ad47e359 99 for (i = 0; i < SCM_VM_NUM_INSTRUCTIONS; i++)
f775e51b
AW
100 if (scm_is_true (table[i].symname))
101 scm_hashq_set_x (instructions_by_name, table[i].symname,
102 SCM_I_MAKINUM (i));
f775e51b 103 }
5c8cefe5 104
f775e51b
AW
105 op = scm_hashq_ref (instructions_by_name, name, SCM_UNDEFINED);
106 if (SCM_I_INUMP (op))
107 return &table[SCM_I_INUM (op)];
108
109 return NULL;
17e90c5e
KN
110}
111
53e28ed9 112
17e90c5e
KN
113/* Scheme interface */
114
115SCM_DEFINE (scm_instruction_list, "instruction-list", 0, 0, 0,
116 (void),
117 "")
118#define FUNC_NAME s_scm_instruction_list
119{
120 SCM list = SCM_EOL;
39141c87
AW
121 int i;
122 struct scm_instruction *ip = fetch_instruction_table ();
ad47e359 123 for (i = 0; i < SCM_VM_NUM_INSTRUCTIONS; i++)
39141c87
AW
124 if (ip[i].name)
125 list = scm_cons (ip[i].symname, list);
17e90c5e
KN
126 return scm_reverse_x (list, SCM_EOL);
127}
128#undef FUNC_NAME
129
130SCM_DEFINE (scm_instruction_p, "instruction?", 1, 0, 0,
131 (SCM obj),
132 "")
133#define FUNC_NAME s_scm_instruction_p
134{
5c8cefe5 135 return scm_from_bool (scm_lookup_instruction_by_name (obj) != NULL);
17e90c5e
KN
136}
137#undef FUNC_NAME
138
139SCM_DEFINE (scm_instruction_length, "instruction-length", 1, 0, 0,
140 (SCM inst),
141 "")
142#define FUNC_NAME s_scm_instruction_length
143{
53e28ed9
AW
144 struct scm_instruction *ip;
145 SCM_VALIDATE_LOOKUP_INSTRUCTION (1, inst, ip);
146 return SCM_I_MAKINUM (ip->len);
46cd9a34
KN
147}
148#undef FUNC_NAME
149
150SCM_DEFINE (scm_instruction_pops, "instruction-pops", 1, 0, 0,
151 (SCM inst),
152 "")
153#define FUNC_NAME s_scm_instruction_pops
154{
53e28ed9
AW
155 struct scm_instruction *ip;
156 SCM_VALIDATE_LOOKUP_INSTRUCTION (1, inst, ip);
157 return SCM_I_MAKINUM (ip->npop);
46cd9a34
KN
158}
159#undef FUNC_NAME
160
161SCM_DEFINE (scm_instruction_pushes, "instruction-pushes", 1, 0, 0,
162 (SCM inst),
163 "")
164#define FUNC_NAME s_scm_instruction_pushes
165{
53e28ed9
AW
166 struct scm_instruction *ip;
167 SCM_VALIDATE_LOOKUP_INSTRUCTION (1, inst, ip);
168 return SCM_I_MAKINUM (ip->npush);
17e90c5e
KN
169}
170#undef FUNC_NAME
171
172SCM_DEFINE (scm_instruction_to_opcode, "instruction->opcode", 1, 0, 0,
173 (SCM inst),
174 "")
175#define FUNC_NAME s_scm_instruction_to_opcode
176{
53e28ed9
AW
177 struct scm_instruction *ip;
178 SCM_VALIDATE_LOOKUP_INSTRUCTION (1, inst, ip);
179 return SCM_I_MAKINUM (ip->opcode);
17e90c5e
KN
180}
181#undef FUNC_NAME
182
183SCM_DEFINE (scm_opcode_to_instruction, "opcode->instruction", 1, 0, 0,
184 (SCM op),
185 "")
186#define FUNC_NAME s_scm_opcode_to_instruction
187{
e25f3727 188 scm_t_signed_bits opcode;
f775e51b 189 SCM ret = SCM_BOOL_F;
53e28ed9 190
62082959 191 SCM_MAKE_VALIDATE (1, op, I_INUMP);
53e28ed9
AW
192 opcode = SCM_I_INUM (op);
193
ad47e359 194 if (opcode >= 0 && opcode < SCM_VM_NUM_INSTRUCTIONS)
f775e51b
AW
195 ret = fetch_instruction_table ()[opcode].symname;
196
197 if (scm_is_false (ret))
198 scm_wrong_type_arg_msg (FUNC_NAME, 1, op, "INSTRUCTION_P");
53e28ed9 199
f775e51b 200 return ret;
17e90c5e
KN
201}
202#undef FUNC_NAME
203
07e56b27
AW
204void
205scm_bootstrap_instructions (void)
206{
44602b08
AW
207 scm_c_register_extension ("libguile-" SCM_EFFECTIVE_VERSION,
208 "scm_init_instructions",
60ae5ca2
AW
209 (scm_t_extension_init_func)scm_init_instructions,
210 NULL);
07e56b27
AW
211}
212
17e90c5e
KN
213void
214scm_init_instructions (void)
215{
216#ifndef SCM_MAGIC_SNARFER
aeeff258 217#include "libguile/instructions.x"
17e90c5e
KN
218#endif
219}
220
221/*
222 Local Variables:
223 c-file-style: "gnu"
224 End:
225*/