Mercurial > emacs
annotate src/bytecode.c @ 13583:8ee401a7aeec
(Fset_window_redisplay_end_trigger): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 18 Nov 1995 16:00:22 +0000 |
parents | ab0ac0e12203 |
children | bf43ef5a139c |
rev | line source |
---|---|
310 | 1 /* Execution of byte code produced by bytecomp.el. |
2961 | 2 Copyright (C) 1985, 1986, 1987, 1988, 1993 Free Software Foundation, Inc. |
310 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
310 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
19 | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
20 hacked on by jwz@lucid.com 17-jun-91 |
310 | 21 o added a compile-time switch to turn on simple sanity checking; |
22 o put back the obsolete byte-codes for error-detection; | |
23 o added a new instruction, unbind_all, which I will use for | |
24 tail-recursion elimination; | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
25 o made temp_output_buffer_show be called with the right number |
310 | 26 of args; |
27 o made the new bytecodes be called with args in the right order; | |
28 o added metering support. | |
29 | |
30 by Hallvard: | |
435
43e88c4db330
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
396
diff
changeset
|
31 o added relative jump instructions; |
310 | 32 o all conditionals now only do QUIT if they jump. |
33 */ | |
34 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
2961
diff
changeset
|
35 #include <config.h> |
310 | 36 #include "lisp.h" |
37 #include "buffer.h" | |
38 #include "syntax.h" | |
39 | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
40 /* |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
41 * define BYTE_CODE_SAFE to enable some minor sanity checking (useful for |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
42 * debugging the byte compiler...) |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
43 * |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
44 * define BYTE_CODE_METER to enable generation of a byte-op usage histogram. |
310 | 45 */ |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
46 /* #define BYTE_CODE_SAFE */ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
47 /* #define BYTE_CODE_METER */ |
310 | 48 |
49 | |
50 #ifdef BYTE_CODE_METER | |
51 | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
52 Lisp_Object Vbyte_code_meter, Qbyte_code_meter; |
310 | 53 int byte_metering_on; |
54 | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
55 #define METER_2(code1, code2) \ |
310 | 56 XFASTINT (XVECTOR (XVECTOR (Vbyte_code_meter)->contents[(code1)]) \ |
57 ->contents[(code2)]) | |
58 | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
59 #define METER_1(code) METER_2 (0, (code)) |
310 | 60 |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
61 #define METER_CODE(last_code, this_code) \ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
62 { \ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
63 if (byte_metering_on) \ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
64 { \ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
65 if (METER_1 (this_code) != ((1<<VALBITS)-1)) \ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
66 METER_1 (this_code)++; \ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
67 if (last_code \ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
68 && METER_2 (last_code, this_code) != ((1<<VALBITS)-1))\ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
69 METER_2 (last_code, this_code)++; \ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
70 } \ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
71 } |
310 | 72 |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
73 #else /* no BYTE_CODE_METER */ |
310 | 74 |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
75 #define METER_CODE(last_code, this_code) |
310 | 76 |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
77 #endif /* no BYTE_CODE_METER */ |
310 | 78 |
79 | |
80 Lisp_Object Qbytecode; | |
81 | |
82 /* Byte codes: */ | |
83 | |
84 #define Bvarref 010 | |
85 #define Bvarset 020 | |
86 #define Bvarbind 030 | |
87 #define Bcall 040 | |
88 #define Bunbind 050 | |
89 | |
90 #define Bnth 070 | |
91 #define Bsymbolp 071 | |
92 #define Bconsp 072 | |
93 #define Bstringp 073 | |
94 #define Blistp 074 | |
95 #define Beq 075 | |
96 #define Bmemq 076 | |
97 #define Bnot 077 | |
98 #define Bcar 0100 | |
99 #define Bcdr 0101 | |
100 #define Bcons 0102 | |
101 #define Blist1 0103 | |
102 #define Blist2 0104 | |
103 #define Blist3 0105 | |
104 #define Blist4 0106 | |
105 #define Blength 0107 | |
106 #define Baref 0110 | |
107 #define Baset 0111 | |
108 #define Bsymbol_value 0112 | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
109 #define Bsymbol_function 0113 |
310 | 110 #define Bset 0114 |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
111 #define Bfset 0115 |
310 | 112 #define Bget 0116 |
113 #define Bsubstring 0117 | |
114 #define Bconcat2 0120 | |
115 #define Bconcat3 0121 | |
116 #define Bconcat4 0122 | |
117 #define Bsub1 0123 | |
118 #define Badd1 0124 | |
119 #define Beqlsign 0125 | |
120 #define Bgtr 0126 | |
121 #define Blss 0127 | |
122 #define Bleq 0130 | |
123 #define Bgeq 0131 | |
124 #define Bdiff 0132 | |
125 #define Bnegate 0133 | |
126 #define Bplus 0134 | |
127 #define Bmax 0135 | |
128 #define Bmin 0136 | |
129 #define Bmult 0137 | |
130 | |
131 #define Bpoint 0140 | |
132 #define Bmark 0141 /* no longer generated as of v18 */ | |
133 #define Bgoto_char 0142 | |
134 #define Binsert 0143 | |
135 #define Bpoint_max 0144 | |
136 #define Bpoint_min 0145 | |
137 #define Bchar_after 0146 | |
138 #define Bfollowing_char 0147 | |
139 #define Bpreceding_char 0150 | |
140 #define Bcurrent_column 0151 | |
141 #define Bindent_to 0152 | |
142 #define Bscan_buffer 0153 /* No longer generated as of v18 */ | |
143 #define Beolp 0154 | |
144 #define Beobp 0155 | |
145 #define Bbolp 0156 | |
146 #define Bbobp 0157 | |
147 #define Bcurrent_buffer 0160 | |
148 #define Bset_buffer 0161 | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
149 #define Bread_char 0162 /* No longer generated as of v19 */ |
310 | 150 #define Bset_mark 0163 /* this loser is no longer generated as of v18 */ |
151 #define Binteractive_p 0164 /* Needed since interactive-p takes unevalled args */ | |
152 | |
153 #define Bforward_char 0165 | |
154 #define Bforward_word 0166 | |
155 #define Bskip_chars_forward 0167 | |
156 #define Bskip_chars_backward 0170 | |
157 #define Bforward_line 0171 | |
158 #define Bchar_syntax 0172 | |
159 #define Bbuffer_substring 0173 | |
160 #define Bdelete_region 0174 | |
161 #define Bnarrow_to_region 0175 | |
162 #define Bwiden 0176 | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
163 #define Bend_of_line 0177 |
310 | 164 |
165 #define Bconstant2 0201 | |
166 #define Bgoto 0202 | |
167 #define Bgotoifnil 0203 | |
168 #define Bgotoifnonnil 0204 | |
169 #define Bgotoifnilelsepop 0205 | |
170 #define Bgotoifnonnilelsepop 0206 | |
171 #define Breturn 0207 | |
172 #define Bdiscard 0210 | |
173 #define Bdup 0211 | |
174 | |
175 #define Bsave_excursion 0212 | |
176 #define Bsave_window_excursion 0213 | |
177 #define Bsave_restriction 0214 | |
178 #define Bcatch 0215 | |
179 | |
180 #define Bunwind_protect 0216 | |
181 #define Bcondition_case 0217 | |
182 #define Btemp_output_buffer_setup 0220 | |
183 #define Btemp_output_buffer_show 0221 | |
184 | |
185 #define Bunbind_all 0222 | |
186 | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
187 #define Bset_marker 0223 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
188 #define Bmatch_beginning 0224 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
189 #define Bmatch_end 0225 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
190 #define Bupcase 0226 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
191 #define Bdowncase 0227 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
192 |
310 | 193 #define Bstringeqlsign 0230 |
194 #define Bstringlss 0231 | |
195 #define Bequal 0232 | |
196 #define Bnthcdr 0233 | |
197 #define Belt 0234 | |
198 #define Bmember 0235 | |
199 #define Bassq 0236 | |
200 #define Bnreverse 0237 | |
201 #define Bsetcar 0240 | |
202 #define Bsetcdr 0241 | |
203 #define Bcar_safe 0242 | |
204 #define Bcdr_safe 0243 | |
205 #define Bnconc 0244 | |
206 #define Bquo 0245 | |
207 #define Brem 0246 | |
208 #define Bnumberp 0247 | |
209 #define Bintegerp 0250 | |
210 | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
211 #define BRgoto 0252 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
212 #define BRgotoifnil 0253 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
213 #define BRgotoifnonnil 0254 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
214 #define BRgotoifnilelsepop 0255 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
215 #define BRgotoifnonnilelsepop 0256 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
216 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
217 #define BlistN 0257 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
218 #define BconcatN 0260 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
219 #define BinsertN 0261 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
220 |
310 | 221 #define Bconstant 0300 |
222 #define CONSTANTLIM 0100 | |
223 | |
224 /* Fetch the next byte from the bytecode stream */ | |
225 | |
226 #define FETCH *pc++ | |
227 | |
228 /* Fetch two bytes from the bytecode stream | |
229 and make a 16-bit number out of them */ | |
230 | |
231 #define FETCH2 (op = FETCH, op + (FETCH << 8)) | |
232 | |
233 /* Push x onto the execution stack. */ | |
234 | |
235 /* This used to be #define PUSH(x) (*++stackp = (x)) | |
236 This oddity is necessary because Alliant can't be bothered to | |
237 compile the preincrement operator properly, as of 4/91. -JimB */ | |
238 #define PUSH(x) (stackp++, *stackp = (x)) | |
239 | |
240 /* Pop a value off the execution stack. */ | |
241 | |
242 #define POP (*stackp--) | |
243 | |
244 /* Discard n values from the execution stack. */ | |
245 | |
246 #define DISCARD(n) (stackp -= (n)) | |
247 | |
248 /* Get the value which is at the top of the execution stack, but don't pop it. */ | |
249 | |
250 #define TOP (*stackp) | |
251 | |
252 DEFUN ("byte-code", Fbyte_code, Sbyte_code, 3, 3, 0, | |
253 "Function used internally in byte-compiled code.\n\ | |
254 The first argument is a string of byte code; the second, a vector of constants;\n\ | |
255 the third, the maximum stack depth used in this function.\n\ | |
256 If the third argument is incorrect, Emacs may crash.") | |
257 (bytestr, vector, maxdepth) | |
258 Lisp_Object bytestr, vector, maxdepth; | |
259 { | |
260 struct gcpro gcpro1, gcpro2, gcpro3; | |
261 int count = specpdl_ptr - specpdl; | |
262 #ifdef BYTE_CODE_METER | |
263 int this_op = 0; | |
264 int prev_op; | |
265 #endif | |
266 register int op; | |
267 unsigned char *pc; | |
268 Lisp_Object *stack; | |
269 register Lisp_Object *stackp; | |
270 Lisp_Object *stacke; | |
271 register Lisp_Object v1, v2; | |
272 register Lisp_Object *vectorp = XVECTOR (vector)->contents; | |
273 #ifdef BYTE_CODE_SAFE | |
274 register int const_length = XVECTOR (vector)->size; | |
275 #endif | |
276 /* Copy of BYTESTR, saved so we can tell if BYTESTR was relocated. */ | |
277 Lisp_Object string_saved; | |
278 /* Cached address of beginning of string, | |
279 valid if BYTESTR equals STRING_SAVED. */ | |
280 register unsigned char *strbeg; | |
281 | |
282 CHECK_STRING (bytestr, 0); | |
9139
127823d9444d
(Fbyte_code): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
283 if (!VECTORP (vector)) |
310 | 284 vector = wrong_type_argument (Qvectorp, vector); |
285 CHECK_NUMBER (maxdepth, 2); | |
286 | |
287 stackp = (Lisp_Object *) alloca (XFASTINT (maxdepth) * sizeof (Lisp_Object)); | |
288 bzero (stackp, XFASTINT (maxdepth) * sizeof (Lisp_Object)); | |
289 GCPRO3 (bytestr, vector, *stackp); | |
290 gcpro3.nvars = XFASTINT (maxdepth); | |
291 | |
292 --stackp; | |
293 stack = stackp; | |
294 stacke = stackp + XFASTINT (maxdepth); | |
295 | |
296 /* Initialize the saved pc-pointer for fetching from the string. */ | |
297 string_saved = bytestr; | |
298 pc = XSTRING (string_saved)->data; | |
299 | |
300 while (1) | |
301 { | |
302 #ifdef BYTE_CODE_SAFE | |
303 if (stackp > stacke) | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
304 error ("Byte code stack overflow (byte compiler bug), pc %d, depth %d", |
310 | 305 pc - XSTRING (string_saved)->data, stacke - stackp); |
306 if (stackp < stack) | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
307 error ("Byte code stack underflow (byte compiler bug), pc %d", |
310 | 308 pc - XSTRING (string_saved)->data); |
309 #endif | |
310 | |
1503
3ad82148830b
* bytecode.c (Fbyte_code): Use EQ to compare string_saved with
Jim Blandy <jimb@redhat.com>
parents:
959
diff
changeset
|
311 if (! EQ (string_saved, bytestr)) |
310 | 312 { |
313 pc = pc - XSTRING (string_saved)->data + XSTRING (bytestr)->data; | |
314 string_saved = bytestr; | |
315 } | |
316 | |
317 #ifdef BYTE_CODE_METER | |
318 prev_op = this_op; | |
319 this_op = op = FETCH; | |
320 METER_CODE (prev_op, op); | |
321 switch (op) | |
322 #else | |
323 switch (op = FETCH) | |
324 #endif | |
325 { | |
326 case Bvarref+6: | |
327 op = FETCH; | |
328 goto varref; | |
329 | |
330 case Bvarref+7: | |
331 op = FETCH2; | |
332 goto varref; | |
333 | |
334 case Bvarref: case Bvarref+1: case Bvarref+2: case Bvarref+3: | |
335 case Bvarref+4: case Bvarref+5: | |
336 op = op - Bvarref; | |
337 varref: | |
338 v1 = vectorp[op]; | |
9139
127823d9444d
(Fbyte_code): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
339 if (!SYMBOLP (v1)) |
310 | 340 v2 = Fsymbol_value (v1); |
341 else | |
342 { | |
343 v2 = XSYMBOL (v1)->value; | |
9894
a541739a1ba8
(Fbyte_code): Special case for buffer-local objects is now handled by the more
Karl Heuer <kwzh@gnu.org>
parents:
9467
diff
changeset
|
344 if (MISCP (v2) || EQ (v2, Qunbound)) |
a541739a1ba8
(Fbyte_code): Special case for buffer-local objects is now handled by the more
Karl Heuer <kwzh@gnu.org>
parents:
9467
diff
changeset
|
345 v2 = Fsymbol_value (v1); |
310 | 346 } |
347 PUSH (v2); | |
348 break; | |
349 | |
350 case Bvarset+6: | |
351 op = FETCH; | |
352 goto varset; | |
353 | |
354 case Bvarset+7: | |
355 op = FETCH2; | |
356 goto varset; | |
357 | |
358 case Bvarset: case Bvarset+1: case Bvarset+2: case Bvarset+3: | |
359 case Bvarset+4: case Bvarset+5: | |
360 op -= Bvarset; | |
361 varset: | |
362 Fset (vectorp[op], POP); | |
363 break; | |
364 | |
365 case Bvarbind+6: | |
366 op = FETCH; | |
367 goto varbind; | |
368 | |
369 case Bvarbind+7: | |
370 op = FETCH2; | |
371 goto varbind; | |
372 | |
373 case Bvarbind: case Bvarbind+1: case Bvarbind+2: case Bvarbind+3: | |
374 case Bvarbind+4: case Bvarbind+5: | |
375 op -= Bvarbind; | |
376 varbind: | |
377 specbind (vectorp[op], POP); | |
378 break; | |
379 | |
380 case Bcall+6: | |
381 op = FETCH; | |
382 goto docall; | |
383 | |
384 case Bcall+7: | |
385 op = FETCH2; | |
386 goto docall; | |
387 | |
388 case Bcall: case Bcall+1: case Bcall+2: case Bcall+3: | |
389 case Bcall+4: case Bcall+5: | |
390 op -= Bcall; | |
391 docall: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
392 DISCARD (op); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
393 #ifdef BYTE_CODE_METER |
9139
127823d9444d
(Fbyte_code): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
394 if (byte_metering_on && SYMBOLP (TOP)) |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
395 { |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
396 v1 = TOP; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
397 v2 = Fget (v1, Qbyte_code_meter); |
9139
127823d9444d
(Fbyte_code): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
398 if (INTEGERP (v2) |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
399 && XINT (v2) != ((1<<VALBITS)-1)) |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
400 { |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
401 XSETINT (v2, XINT (v2) + 1); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
402 Fput (v1, Qbyte_code_meter, v2); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
403 } |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
404 } |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
405 #endif |
310 | 406 TOP = Ffuncall (op + 1, &TOP); |
407 break; | |
408 | |
409 case Bunbind+6: | |
410 op = FETCH; | |
411 goto dounbind; | |
412 | |
413 case Bunbind+7: | |
414 op = FETCH2; | |
415 goto dounbind; | |
416 | |
417 case Bunbind: case Bunbind+1: case Bunbind+2: case Bunbind+3: | |
418 case Bunbind+4: case Bunbind+5: | |
419 op -= Bunbind; | |
420 dounbind: | |
421 unbind_to (specpdl_ptr - specpdl - op, Qnil); | |
422 break; | |
423 | |
424 case Bunbind_all: | |
425 /* To unbind back to the beginning of this frame. Not used yet, | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
426 but will be needed for tail-recursion elimination. */ |
310 | 427 unbind_to (count, Qnil); |
428 break; | |
429 | |
430 case Bgoto: | |
431 QUIT; | |
432 op = FETCH2; /* pc = FETCH2 loses since FETCH2 contains pc++ */ | |
433 pc = XSTRING (string_saved)->data + op; | |
434 break; | |
435 | |
436 case Bgotoifnil: | |
437 op = FETCH2; | |
944 | 438 if (NILP (POP)) |
310 | 439 { |
440 QUIT; | |
441 pc = XSTRING (string_saved)->data + op; | |
442 } | |
443 break; | |
444 | |
445 case Bgotoifnonnil: | |
446 op = FETCH2; | |
944 | 447 if (!NILP (POP)) |
310 | 448 { |
449 QUIT; | |
450 pc = XSTRING (string_saved)->data + op; | |
451 } | |
452 break; | |
453 | |
454 case Bgotoifnilelsepop: | |
455 op = FETCH2; | |
944 | 456 if (NILP (TOP)) |
310 | 457 { |
458 QUIT; | |
459 pc = XSTRING (string_saved)->data + op; | |
460 } | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
461 else DISCARD (1); |
396 | 462 break; |
463 | |
934 | 464 case Bgotoifnonnilelsepop: |
465 op = FETCH2; | |
944 | 466 if (!NILP (TOP)) |
396 | 467 { |
468 QUIT; | |
934 | 469 pc = XSTRING (string_saved)->data + op; |
396 | 470 } |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
471 else DISCARD (1); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
472 break; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
473 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
474 case BRgoto: |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
475 QUIT; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
476 pc += *pc - 127; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
477 break; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
478 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
479 case BRgotoifnil: |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
480 if (NILP (POP)) |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
481 { |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
482 QUIT; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
483 pc += *pc - 128; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
484 } |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
485 pc++; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
486 break; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
487 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
488 case BRgotoifnonnil: |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
489 if (!NILP (POP)) |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
490 { |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
491 QUIT; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
492 pc += *pc - 128; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
493 } |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
494 pc++; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
495 break; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
496 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
497 case BRgotoifnilelsepop: |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
498 op = *pc++; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
499 if (NILP (TOP)) |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
500 { |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
501 QUIT; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
502 pc += op - 128; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
503 } |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
504 else DISCARD (1); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
505 break; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
506 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
507 case BRgotoifnonnilelsepop: |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
508 op = *pc++; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
509 if (!NILP (TOP)) |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
510 { |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
511 QUIT; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
512 pc += op - 128; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
513 } |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
514 else DISCARD (1); |
396 | 515 break; |
516 | |
310 | 517 case Breturn: |
518 v1 = POP; | |
519 goto exit; | |
520 | |
521 case Bdiscard: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
522 DISCARD (1); |
310 | 523 break; |
524 | |
525 case Bdup: | |
526 v1 = TOP; | |
527 PUSH (v1); | |
528 break; | |
529 | |
530 case Bconstant2: | |
531 PUSH (vectorp[FETCH2]); | |
532 break; | |
533 | |
534 case Bsave_excursion: | |
535 record_unwind_protect (save_excursion_restore, save_excursion_save ()); | |
536 break; | |
537 | |
538 case Bsave_window_excursion: | |
539 TOP = Fsave_window_excursion (TOP); | |
540 break; | |
541 | |
542 case Bsave_restriction: | |
543 record_unwind_protect (save_restriction_restore, save_restriction_save ()); | |
544 break; | |
545 | |
546 case Bcatch: | |
547 v1 = POP; | |
548 TOP = internal_catch (TOP, Feval, v1); | |
549 break; | |
550 | |
551 case Bunwind_protect: | |
552 record_unwind_protect (0, POP); | |
553 (specpdl_ptr - 1)->symbol = Qnil; | |
554 break; | |
555 | |
556 case Bcondition_case: | |
557 v1 = POP; | |
558 v1 = Fcons (POP, v1); | |
559 TOP = Fcondition_case (Fcons (TOP, v1)); | |
560 break; | |
561 | |
562 case Btemp_output_buffer_setup: | |
563 temp_output_buffer_setup (XSTRING (TOP)->data); | |
564 TOP = Vstandard_output; | |
565 break; | |
566 | |
567 case Btemp_output_buffer_show: | |
568 v1 = POP; | |
1911
d9fc49956cd8
* bytecode.c (Fbyte_code): Pass the correct number of arguments to
Jim Blandy <jimb@redhat.com>
parents:
1503
diff
changeset
|
569 temp_output_buffer_show (TOP); |
310 | 570 TOP = v1; |
571 /* pop binding of standard-output */ | |
572 unbind_to (specpdl_ptr - specpdl - 1, Qnil); | |
573 break; | |
574 | |
575 case Bnth: | |
576 v1 = POP; | |
577 v2 = TOP; | |
578 nth_entry: | |
579 CHECK_NUMBER (v2, 0); | |
580 op = XINT (v2); | |
581 immediate_quit = 1; | |
582 while (--op >= 0) | |
583 { | |
584 if (CONSP (v1)) | |
585 v1 = XCONS (v1)->cdr; | |
944 | 586 else if (!NILP (v1)) |
310 | 587 { |
588 immediate_quit = 0; | |
589 v1 = wrong_type_argument (Qlistp, v1); | |
590 immediate_quit = 1; | |
591 op++; | |
592 } | |
593 } | |
594 immediate_quit = 0; | |
595 goto docar; | |
596 | |
597 case Bsymbolp: | |
9139
127823d9444d
(Fbyte_code): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
598 TOP = SYMBOLP (TOP) ? Qt : Qnil; |
310 | 599 break; |
600 | |
601 case Bconsp: | |
602 TOP = CONSP (TOP) ? Qt : Qnil; | |
603 break; | |
604 | |
605 case Bstringp: | |
9139
127823d9444d
(Fbyte_code): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
606 TOP = STRINGP (TOP) ? Qt : Qnil; |
310 | 607 break; |
608 | |
609 case Blistp: | |
944 | 610 TOP = CONSP (TOP) || NILP (TOP) ? Qt : Qnil; |
310 | 611 break; |
612 | |
613 case Beq: | |
614 v1 = POP; | |
615 TOP = EQ (v1, TOP) ? Qt : Qnil; | |
616 break; | |
617 | |
618 case Bmemq: | |
619 v1 = POP; | |
620 TOP = Fmemq (TOP, v1); | |
621 break; | |
622 | |
623 case Bnot: | |
944 | 624 TOP = NILP (TOP) ? Qt : Qnil; |
310 | 625 break; |
626 | |
627 case Bcar: | |
628 v1 = TOP; | |
629 docar: | |
630 if (CONSP (v1)) TOP = XCONS (v1)->car; | |
944 | 631 else if (NILP (v1)) TOP = Qnil; |
310 | 632 else Fcar (wrong_type_argument (Qlistp, v1)); |
633 break; | |
634 | |
635 case Bcdr: | |
636 v1 = TOP; | |
637 if (CONSP (v1)) TOP = XCONS (v1)->cdr; | |
944 | 638 else if (NILP (v1)) TOP = Qnil; |
310 | 639 else Fcdr (wrong_type_argument (Qlistp, v1)); |
640 break; | |
641 | |
642 case Bcons: | |
643 v1 = POP; | |
644 TOP = Fcons (TOP, v1); | |
645 break; | |
646 | |
647 case Blist1: | |
648 TOP = Fcons (TOP, Qnil); | |
649 break; | |
650 | |
651 case Blist2: | |
652 v1 = POP; | |
653 TOP = Fcons (TOP, Fcons (v1, Qnil)); | |
654 break; | |
655 | |
656 case Blist3: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
657 DISCARD (2); |
310 | 658 TOP = Flist (3, &TOP); |
659 break; | |
660 | |
661 case Blist4: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
662 DISCARD (3); |
310 | 663 TOP = Flist (4, &TOP); |
664 break; | |
665 | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
666 case BlistN: |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
667 op = FETCH; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
668 DISCARD (op - 1); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
669 TOP = Flist (op, &TOP); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
670 break; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
671 |
310 | 672 case Blength: |
673 TOP = Flength (TOP); | |
674 break; | |
675 | |
676 case Baref: | |
677 v1 = POP; | |
678 TOP = Faref (TOP, v1); | |
679 break; | |
680 | |
681 case Baset: | |
682 v2 = POP; v1 = POP; | |
683 TOP = Faset (TOP, v1, v2); | |
684 break; | |
685 | |
686 case Bsymbol_value: | |
687 TOP = Fsymbol_value (TOP); | |
688 break; | |
689 | |
690 case Bsymbol_function: | |
691 TOP = Fsymbol_function (TOP); | |
692 break; | |
693 | |
694 case Bset: | |
695 v1 = POP; | |
696 TOP = Fset (TOP, v1); | |
697 break; | |
698 | |
699 case Bfset: | |
700 v1 = POP; | |
701 TOP = Ffset (TOP, v1); | |
702 break; | |
703 | |
704 case Bget: | |
705 v1 = POP; | |
706 TOP = Fget (TOP, v1); | |
707 break; | |
708 | |
709 case Bsubstring: | |
710 v2 = POP; v1 = POP; | |
711 TOP = Fsubstring (TOP, v1, v2); | |
712 break; | |
713 | |
714 case Bconcat2: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
715 DISCARD (1); |
310 | 716 TOP = Fconcat (2, &TOP); |
717 break; | |
718 | |
719 case Bconcat3: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
720 DISCARD (2); |
310 | 721 TOP = Fconcat (3, &TOP); |
722 break; | |
723 | |
724 case Bconcat4: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
725 DISCARD (3); |
310 | 726 TOP = Fconcat (4, &TOP); |
727 break; | |
728 | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
729 case BconcatN: |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
730 op = FETCH; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
731 DISCARD (op - 1); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
732 TOP = Fconcat (op, &TOP); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
733 break; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
734 |
310 | 735 case Bsub1: |
736 v1 = TOP; | |
9139
127823d9444d
(Fbyte_code): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
737 if (INTEGERP (v1)) |
310 | 738 { |
739 XSETINT (v1, XINT (v1) - 1); | |
740 TOP = v1; | |
741 } | |
742 else | |
743 TOP = Fsub1 (v1); | |
744 break; | |
745 | |
746 case Badd1: | |
747 v1 = TOP; | |
9139
127823d9444d
(Fbyte_code): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
748 if (INTEGERP (v1)) |
310 | 749 { |
750 XSETINT (v1, XINT (v1) + 1); | |
751 TOP = v1; | |
752 } | |
753 else | |
754 TOP = Fadd1 (v1); | |
755 break; | |
756 | |
757 case Beqlsign: | |
758 v2 = POP; v1 = TOP; | |
759 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (v1, 0); | |
760 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (v2, 0); | |
12527
ebaf016075f1
(Fbyte_code): For Beqlsign, if both args are ints,
Karl Heuer <kwzh@gnu.org>
parents:
10134
diff
changeset
|
761 #ifdef LISP_FLOAT_TYPE |
12574
bbd93011edef
(Fbyte_code): Fix variable names in previous change.
Karl Heuer <kwzh@gnu.org>
parents:
12527
diff
changeset
|
762 if (FLOATP (v1) || FLOATP (v2)) |
12527
ebaf016075f1
(Fbyte_code): For Beqlsign, if both args are ints,
Karl Heuer <kwzh@gnu.org>
parents:
10134
diff
changeset
|
763 { |
ebaf016075f1
(Fbyte_code): For Beqlsign, if both args are ints,
Karl Heuer <kwzh@gnu.org>
parents:
10134
diff
changeset
|
764 double f1, f2; |
ebaf016075f1
(Fbyte_code): For Beqlsign, if both args are ints,
Karl Heuer <kwzh@gnu.org>
parents:
10134
diff
changeset
|
765 |
ebaf016075f1
(Fbyte_code): For Beqlsign, if both args are ints,
Karl Heuer <kwzh@gnu.org>
parents:
10134
diff
changeset
|
766 f1 = (FLOATP (v1) ? XFLOAT (v1)->data : XINT (v1)); |
ebaf016075f1
(Fbyte_code): For Beqlsign, if both args are ints,
Karl Heuer <kwzh@gnu.org>
parents:
10134
diff
changeset
|
767 f2 = (FLOATP (v2) ? XFLOAT (v2)->data : XINT (v2)); |
ebaf016075f1
(Fbyte_code): For Beqlsign, if both args are ints,
Karl Heuer <kwzh@gnu.org>
parents:
10134
diff
changeset
|
768 TOP = (f1 == f2 ? Qt : Qnil); |
ebaf016075f1
(Fbyte_code): For Beqlsign, if both args are ints,
Karl Heuer <kwzh@gnu.org>
parents:
10134
diff
changeset
|
769 } |
ebaf016075f1
(Fbyte_code): For Beqlsign, if both args are ints,
Karl Heuer <kwzh@gnu.org>
parents:
10134
diff
changeset
|
770 else |
ebaf016075f1
(Fbyte_code): For Beqlsign, if both args are ints,
Karl Heuer <kwzh@gnu.org>
parents:
10134
diff
changeset
|
771 #endif |
12575 | 772 TOP = (XINT (v1) == XINT (v2) ? Qt : Qnil); |
310 | 773 break; |
774 | |
775 case Bgtr: | |
776 v1 = POP; | |
777 TOP = Fgtr (TOP, v1); | |
778 break; | |
779 | |
780 case Blss: | |
781 v1 = POP; | |
782 TOP = Flss (TOP, v1); | |
783 break; | |
784 | |
785 case Bleq: | |
786 v1 = POP; | |
787 TOP = Fleq (TOP, v1); | |
788 break; | |
789 | |
790 case Bgeq: | |
791 v1 = POP; | |
792 TOP = Fgeq (TOP, v1); | |
793 break; | |
794 | |
795 case Bdiff: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
796 DISCARD (1); |
310 | 797 TOP = Fminus (2, &TOP); |
798 break; | |
799 | |
800 case Bnegate: | |
801 v1 = TOP; | |
9139
127823d9444d
(Fbyte_code): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
802 if (INTEGERP (v1)) |
310 | 803 { |
804 XSETINT (v1, - XINT (v1)); | |
805 TOP = v1; | |
806 } | |
807 else | |
808 TOP = Fminus (1, &TOP); | |
809 break; | |
810 | |
811 case Bplus: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
812 DISCARD (1); |
310 | 813 TOP = Fplus (2, &TOP); |
814 break; | |
815 | |
816 case Bmax: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
817 DISCARD (1); |
310 | 818 TOP = Fmax (2, &TOP); |
819 break; | |
820 | |
821 case Bmin: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
822 DISCARD (1); |
310 | 823 TOP = Fmin (2, &TOP); |
824 break; | |
825 | |
826 case Bmult: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
827 DISCARD (1); |
310 | 828 TOP = Ftimes (2, &TOP); |
829 break; | |
830 | |
831 case Bquo: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
832 DISCARD (1); |
310 | 833 TOP = Fquo (2, &TOP); |
834 break; | |
835 | |
836 case Brem: | |
837 v1 = POP; | |
838 TOP = Frem (TOP, v1); | |
839 break; | |
840 | |
841 case Bpoint: | |
9297
5151ce5ab25a
(Fbyte_code): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9139
diff
changeset
|
842 XSETFASTINT (v1, point); |
310 | 843 PUSH (v1); |
844 break; | |
845 | |
846 case Bgoto_char: | |
847 TOP = Fgoto_char (TOP); | |
848 break; | |
849 | |
850 case Binsert: | |
851 TOP = Finsert (1, &TOP); | |
852 break; | |
853 | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
854 case BinsertN: |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
855 op = FETCH; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
856 DISCARD (op - 1); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
857 TOP = Finsert (op, &TOP); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
858 break; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
859 |
310 | 860 case Bpoint_max: |
9297
5151ce5ab25a
(Fbyte_code): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9139
diff
changeset
|
861 XSETFASTINT (v1, ZV); |
310 | 862 PUSH (v1); |
863 break; | |
864 | |
865 case Bpoint_min: | |
9297
5151ce5ab25a
(Fbyte_code): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9139
diff
changeset
|
866 XSETFASTINT (v1, BEGV); |
310 | 867 PUSH (v1); |
868 break; | |
869 | |
870 case Bchar_after: | |
871 TOP = Fchar_after (TOP); | |
872 break; | |
873 | |
874 case Bfollowing_char: | |
10134
c681703f7ce3
(Fbyte_code): Call Ffollowing_char and Fprevious_char
Richard M. Stallman <rms@gnu.org>
parents:
9894
diff
changeset
|
875 v1 = Ffollowing_char (); |
310 | 876 PUSH (v1); |
877 break; | |
878 | |
879 case Bpreceding_char: | |
10134
c681703f7ce3
(Fbyte_code): Call Ffollowing_char and Fprevious_char
Richard M. Stallman <rms@gnu.org>
parents:
9894
diff
changeset
|
880 v1 = Fprevious_char (); |
310 | 881 PUSH (v1); |
882 break; | |
883 | |
884 case Bcurrent_column: | |
9297
5151ce5ab25a
(Fbyte_code): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9139
diff
changeset
|
885 XSETFASTINT (v1, current_column ()); |
310 | 886 PUSH (v1); |
887 break; | |
888 | |
889 case Bindent_to: | |
890 TOP = Findent_to (TOP, Qnil); | |
891 break; | |
892 | |
893 case Beolp: | |
894 PUSH (Feolp ()); | |
895 break; | |
896 | |
897 case Beobp: | |
898 PUSH (Feobp ()); | |
899 break; | |
900 | |
901 case Bbolp: | |
902 PUSH (Fbolp ()); | |
903 break; | |
904 | |
905 case Bbobp: | |
906 PUSH (Fbobp ()); | |
907 break; | |
908 | |
909 case Bcurrent_buffer: | |
910 PUSH (Fcurrent_buffer ()); | |
911 break; | |
912 | |
913 case Bset_buffer: | |
914 TOP = Fset_buffer (TOP); | |
915 break; | |
916 | |
917 case Bread_char: | |
918 PUSH (Fread_char ()); | |
919 QUIT; | |
920 break; | |
921 | |
922 case Binteractive_p: | |
923 PUSH (Finteractive_p ()); | |
924 break; | |
925 | |
926 case Bforward_char: | |
927 TOP = Fforward_char (TOP); | |
928 break; | |
929 | |
930 case Bforward_word: | |
931 TOP = Fforward_word (TOP); | |
932 break; | |
933 | |
934 case Bskip_chars_forward: | |
935 v1 = POP; | |
936 TOP = Fskip_chars_forward (TOP, v1); | |
937 break; | |
938 | |
939 case Bskip_chars_backward: | |
940 v1 = POP; | |
941 TOP = Fskip_chars_backward (TOP, v1); | |
942 break; | |
943 | |
944 case Bforward_line: | |
945 TOP = Fforward_line (TOP); | |
946 break; | |
947 | |
948 case Bchar_syntax: | |
949 CHECK_NUMBER (TOP, 0); | |
9297
5151ce5ab25a
(Fbyte_code): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9139
diff
changeset
|
950 XSETFASTINT (TOP, |
10134
c681703f7ce3
(Fbyte_code): Call Ffollowing_char and Fprevious_char
Richard M. Stallman <rms@gnu.org>
parents:
9894
diff
changeset
|
951 syntax_code_spec[(int) SYNTAX (XINT (TOP))]); |
310 | 952 break; |
953 | |
954 case Bbuffer_substring: | |
955 v1 = POP; | |
956 TOP = Fbuffer_substring (TOP, v1); | |
957 break; | |
958 | |
959 case Bdelete_region: | |
960 v1 = POP; | |
961 TOP = Fdelete_region (TOP, v1); | |
962 break; | |
963 | |
964 case Bnarrow_to_region: | |
965 v1 = POP; | |
966 TOP = Fnarrow_to_region (TOP, v1); | |
967 break; | |
968 | |
969 case Bwiden: | |
970 PUSH (Fwiden ()); | |
971 break; | |
972 | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
973 case Bend_of_line: |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
974 TOP = Fend_of_line (TOP); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
975 break; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
976 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
977 case Bset_marker: |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
978 v1 = POP; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
979 v2 = POP; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
980 TOP = Fset_marker (TOP, v2, v1); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
981 break; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
982 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
983 case Bmatch_beginning: |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
984 TOP = Fmatch_beginning (TOP); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
985 break; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
986 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
987 case Bmatch_end: |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
988 TOP = Fmatch_end (TOP); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
989 break; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
990 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
991 case Bupcase: |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
992 TOP = Fupcase (TOP); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
993 break; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
994 |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
995 case Bdowncase: |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
996 TOP = Fdowncase (TOP); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
997 break; |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
998 |
310 | 999 case Bstringeqlsign: |
1000 v1 = POP; | |
1001 TOP = Fstring_equal (TOP, v1); | |
1002 break; | |
1003 | |
1004 case Bstringlss: | |
1005 v1 = POP; | |
1006 TOP = Fstring_lessp (TOP, v1); | |
1007 break; | |
1008 | |
1009 case Bequal: | |
1010 v1 = POP; | |
1011 TOP = Fequal (TOP, v1); | |
1012 break; | |
1013 | |
1014 case Bnthcdr: | |
1015 v1 = POP; | |
1016 TOP = Fnthcdr (TOP, v1); | |
1017 break; | |
1018 | |
1019 case Belt: | |
9139
127823d9444d
(Fbyte_code): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
1020 if (CONSP (TOP)) |
310 | 1021 { |
1022 /* Exchange args and then do nth. */ | |
1023 v2 = POP; | |
1024 v1 = TOP; | |
1025 goto nth_entry; | |
1026 } | |
1027 v1 = POP; | |
1028 TOP = Felt (TOP, v1); | |
1029 break; | |
1030 | |
1031 case Bmember: | |
1032 v1 = POP; | |
1033 TOP = Fmember (TOP, v1); | |
1034 break; | |
1035 | |
1036 case Bassq: | |
1037 v1 = POP; | |
1038 TOP = Fassq (TOP, v1); | |
1039 break; | |
1040 | |
1041 case Bnreverse: | |
1042 TOP = Fnreverse (TOP); | |
1043 break; | |
1044 | |
1045 case Bsetcar: | |
1046 v1 = POP; | |
1047 TOP = Fsetcar (TOP, v1); | |
1048 break; | |
1049 | |
1050 case Bsetcdr: | |
1051 v1 = POP; | |
1052 TOP = Fsetcdr (TOP, v1); | |
1053 break; | |
1054 | |
1055 case Bcar_safe: | |
1056 v1 = TOP; | |
9139
127823d9444d
(Fbyte_code): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
1057 if (CONSP (v1)) |
310 | 1058 TOP = XCONS (v1)->car; |
1059 else | |
1060 TOP = Qnil; | |
1061 break; | |
1062 | |
1063 case Bcdr_safe: | |
1064 v1 = TOP; | |
9139
127823d9444d
(Fbyte_code): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
1065 if (CONSP (v1)) |
310 | 1066 TOP = XCONS (v1)->cdr; |
1067 else | |
1068 TOP = Qnil; | |
1069 break; | |
1070 | |
1071 case Bnconc: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1072 DISCARD (1); |
310 | 1073 TOP = Fnconc (2, &TOP); |
1074 break; | |
1075 | |
1076 case Bnumberp: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1077 TOP = (NUMBERP (TOP) ? Qt : Qnil); |
310 | 1078 break; |
1079 | |
1080 case Bintegerp: | |
9139
127823d9444d
(Fbyte_code): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
4696
diff
changeset
|
1081 TOP = INTEGERP (TOP) ? Qt : Qnil; |
310 | 1082 break; |
1083 | |
1084 #ifdef BYTE_CODE_SAFE | |
1085 case Bset_mark: | |
1086 error ("set-mark is an obsolete bytecode"); | |
1087 break; | |
1088 case Bscan_buffer: | |
1089 error ("scan-buffer is an obsolete bytecode"); | |
1090 break; | |
1091 case Bmark: | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1092 error ("mark is an obsolete bytecode"); |
310 | 1093 break; |
1094 #endif | |
1095 | |
1096 default: | |
1097 #ifdef BYTE_CODE_SAFE | |
1098 if (op < Bconstant) | |
1099 error ("unknown bytecode %d (byte compiler bug)", op); | |
1100 if ((op -= Bconstant) >= const_length) | |
1101 error ("no constant number %d (byte compiler bug)", op); | |
1102 PUSH (vectorp[op]); | |
1103 #else | |
1104 PUSH (vectorp[op - Bconstant]); | |
1105 #endif | |
1106 } | |
1107 } | |
1108 | |
1109 exit: | |
1110 UNGCPRO; | |
1111 /* Binds and unbinds are supposed to be compiled balanced. */ | |
1112 if (specpdl_ptr - specpdl != count) | |
1113 #ifdef BYTE_CODE_SAFE | |
1114 error ("binding stack not balanced (serious byte compiler bug)"); | |
1115 #else | |
1116 abort (); | |
1117 #endif | |
1118 return v1; | |
1119 } | |
1120 | |
1121 syms_of_bytecode () | |
1122 { | |
1123 Qbytecode = intern ("byte-code"); | |
1124 staticpro (&Qbytecode); | |
1125 | |
1126 defsubr (&Sbyte_code); | |
1127 | |
1128 #ifdef BYTE_CODE_METER | |
1129 | |
1130 DEFVAR_LISP ("byte-code-meter", &Vbyte_code_meter, | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1131 "A vector of vectors which holds a histogram of byte-code usage.\n\ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1132 (aref (aref byte-code-meter 0) CODE) indicates how many times the byte\n\ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1133 opcode CODE has been executed.\n\ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1134 (aref (aref byte-code-meter CODE1) CODE2), where CODE1 is not 0,\n\ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1135 indicates how many times the byte opcodes CODE1 and CODE2 have been\n\ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1136 executed in succession."); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1137 DEFVAR_BOOL ("byte-metering-on", &byte_metering_on, |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1138 "If non-nil, keep profiling information on byte code usage.\n\ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1139 The variable byte-code-meter indicates how often each byte opcode is used.\n\ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1140 If a symbol has a property named `byte-code-meter' whose value is an\n\ |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1141 integer, it is incremented each time that symbol's function is called."); |
310 | 1142 |
1143 byte_metering_on = 0; | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1144 Vbyte_code_meter = Fmake_vector (make_number (256), make_number (0)); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1145 Qbyte_code_meter = intern ("byte-code-meter"); |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1146 staticpro (&Qbyte_code_meter); |
310 | 1147 { |
1148 int i = 256; | |
1149 while (i--) | |
959
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1150 XVECTOR (Vbyte_code_meter)->contents[i] = |
c1fc76b79275
* bytecode.c (Fbyte_code): When metering the Bcall opcodes, make
Jim Blandy <jimb@redhat.com>
parents:
944
diff
changeset
|
1151 Fmake_vector (make_number (256), make_number (0)); |
310 | 1152 } |
1153 #endif | |
1154 } |