1 /* Execution of byte code produced by bytecomp.el.
2 Copyright (C) 1985-1988, 1993, 2000-2011 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
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
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
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.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 hacked on by jwz@lucid.com 17-jun-91
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;
25 o made temp_output_buffer_show be called with the right number
27 o made the new bytecodes be called with args in the right order;
28 o added metering support.
31 o added relative jump instructions;
32 o all conditionals now only do QUIT if they jump.
39 #include "character.h"
43 #ifdef CHECK_FRAME_FONT
49 * define BYTE_CODE_SAFE to enable some minor sanity checking (useful for
50 * debugging the byte compiler...)
52 * define BYTE_CODE_METER to enable generation of a byte-op usage histogram.
54 /* #define BYTE_CODE_SAFE */
55 /* #define BYTE_CODE_METER */
58 #ifdef BYTE_CODE_METER
60 Lisp_Object Qbyte_code_meter
;
61 #define METER_2(code1, code2) \
62 XFASTINT (XVECTOR (XVECTOR (Vbyte_code_meter)->contents[(code1)]) \
65 #define METER_1(code) METER_2 (0, (code))
67 #define METER_CODE(last_code, this_code) \
69 if (byte_metering_on) \
71 if (METER_1 (this_code) < MOST_POSITIVE_FIXNUM) \
72 METER_1 (this_code)++; \
74 && METER_2 (last_code, this_code) < MOST_POSITIVE_FIXNUM) \
75 METER_2 (last_code, this_code)++; \
79 #endif /* BYTE_CODE_METER */
82 Lisp_Object Qbytecode
;
110 #define Bsymbol_value 0112
111 #define Bsymbol_function 0113
115 #define Bsubstring 0117
116 #define Bconcat2 0120
117 #define Bconcat3 0121
118 #define Bconcat4 0122
121 #define Beqlsign 0125
134 /* Was Bmark in v17. */
135 #define Bsave_current_buffer 0141
136 #define Bgoto_char 0142
138 #define Bpoint_max 0144
139 #define Bpoint_min 0145
140 #define Bchar_after 0146
141 #define Bfollowing_char 0147
142 #define Bpreceding_char 0150
143 #define Bcurrent_column 0151
144 #define Bindent_to 0152
145 #ifdef BYTE_CODE_SAFE
146 #define Bscan_buffer 0153 /* No longer generated as of v18 */
152 #define Bcurrent_buffer 0160
153 #define Bset_buffer 0161
154 #define Bsave_current_buffer_1 0162 /* Replacing Bsave_current_buffer. */
156 #define Bread_char 0162 /* No longer generated as of v19 */
158 #ifdef BYTE_CODE_SAFE
159 #define Bset_mark 0163 /* this loser is no longer generated as of v18 */
161 #define Binteractive_p 0164 /* Needed since interactive-p takes unevalled args */
163 #define Bforward_char 0165
164 #define Bforward_word 0166
165 #define Bskip_chars_forward 0167
166 #define Bskip_chars_backward 0170
167 #define Bforward_line 0171
168 #define Bchar_syntax 0172
169 #define Bbuffer_substring 0173
170 #define Bdelete_region 0174
171 #define Bnarrow_to_region 0175
173 #define Bend_of_line 0177
175 #define Bconstant2 0201
177 #define Bgotoifnil 0203
178 #define Bgotoifnonnil 0204
179 #define Bgotoifnilelsepop 0205
180 #define Bgotoifnonnilelsepop 0206
182 #define Bdiscard 0210
185 #define Bsave_excursion 0212
186 #define Bsave_window_excursion 0213
187 #define Bsave_restriction 0214
190 #define Bunwind_protect 0216
191 #define Bcondition_case 0217
192 #define Btemp_output_buffer_setup 0220
193 #define Btemp_output_buffer_show 0221
195 #define Bunbind_all 0222
197 #define Bset_marker 0223
198 #define Bmatch_beginning 0224
199 #define Bmatch_end 0225
201 #define Bdowncase 0227
203 #define Bstringeqlsign 0230
204 #define Bstringlss 0231
210 #define Bnreverse 0237
213 #define Bcar_safe 0242
214 #define Bcdr_safe 0243
218 #define Bnumberp 0247
219 #define Bintegerp 0250
222 #define BRgotoifnil 0253
223 #define BRgotoifnonnil 0254
224 #define BRgotoifnilelsepop 0255
225 #define BRgotoifnonnilelsepop 0256
228 #define BconcatN 0260
229 #define BinsertN 0261
231 #define Bconstant 0300
233 /* Whether to maintain a `top' and `bottom' field in the stack frame. */
234 #define BYTE_MAINTAIN_TOP (BYTE_CODE_SAFE || BYTE_MARK_STACK)
236 /* Structure describing a value stack used during byte-code execution
241 /* Program counter. This points into the byte_string below
242 and is relocated when that string is relocated. */
243 const unsigned char *pc
;
245 /* Top and bottom of stack. The bottom points to an area of memory
246 allocated with alloca in Fbyte_code. */
247 #if BYTE_MAINTAIN_TOP
248 Lisp_Object
*top
, *bottom
;
251 /* The string containing the byte-code, and its current address.
252 Storing this here protects it from GC because mark_byte_stack
254 Lisp_Object byte_string
;
255 const unsigned char *byte_string_start
;
257 /* The vector of constants used during byte-code execution. Storing
258 this here protects it from GC because mark_byte_stack marks it. */
259 Lisp_Object constants
;
261 /* Next entry in byte_stack_list. */
262 struct byte_stack
*next
;
265 /* A list of currently active byte-code execution value stacks.
266 Fbyte_code adds an entry to the head of this list before it starts
267 processing byte-code, and it removed the entry again when it is
268 done. Signalling an error truncates the list analoguous to
271 struct byte_stack
*byte_stack_list
;
274 /* Mark objects on byte_stack_list. Called during GC. */
278 mark_byte_stack (void)
280 struct byte_stack
*stack
;
283 for (stack
= byte_stack_list
; stack
; stack
= stack
->next
)
285 /* If STACK->top is null here, this means there's an opcode in
286 Fbyte_code that wasn't expected to GC, but did. To find out
287 which opcode this is, record the value of `stack', and walk
288 up the stack in a debugger, stopping in frames of Fbyte_code.
289 The culprit is found in the frame of Fbyte_code where the
290 address of its local variable `stack' is equal to the
291 recorded value of `stack' here. */
292 eassert (stack
->top
);
294 for (obj
= stack
->bottom
; obj
<= stack
->top
; ++obj
)
297 mark_object (stack
->byte_string
);
298 mark_object (stack
->constants
);
303 /* Unmark objects in the stacks on byte_stack_list. Relocate program
304 counters. Called when GC has completed. */
307 unmark_byte_stack (void)
309 struct byte_stack
*stack
;
311 for (stack
= byte_stack_list
; stack
; stack
= stack
->next
)
313 if (stack
->byte_string_start
!= SDATA (stack
->byte_string
))
315 int offset
= stack
->pc
- stack
->byte_string_start
;
316 stack
->byte_string_start
= SDATA (stack
->byte_string
);
317 stack
->pc
= stack
->byte_string_start
+ offset
;
323 /* Fetch the next byte from the bytecode stream */
325 #define FETCH *stack.pc++
327 /* Fetch two bytes from the bytecode stream and make a 16-bit number
330 #define FETCH2 (op = FETCH, op + (FETCH << 8))
332 /* Push x onto the execution stack. This used to be #define PUSH(x)
333 (*++stackp = (x)) This oddity is necessary because Alliant can't be
334 bothered to compile the preincrement operator properly, as of 4/91.
337 #define PUSH(x) (top++, *top = (x))
339 /* Pop a value off the execution stack. */
343 /* Discard n values from the execution stack. */
345 #define DISCARD(n) (top -= (n))
347 /* Get the value which is at the top of the execution stack, but don't
352 /* Actions that must be performed before and after calling a function
355 #if !BYTE_MAINTAIN_TOP
356 #define BEFORE_POTENTIAL_GC() ((void)0)
357 #define AFTER_POTENTIAL_GC() ((void)0)
359 #define BEFORE_POTENTIAL_GC() stack.top = top
360 #define AFTER_POTENTIAL_GC() stack.top = NULL
363 /* Garbage collect if we have consed enough since the last time.
364 We do this at every branch, to avoid loops that never GC. */
368 if (consing_since_gc > gc_cons_threshold \
369 && consing_since_gc > gc_relative_threshold) \
371 BEFORE_POTENTIAL_GC (); \
372 Fgarbage_collect (); \
373 AFTER_POTENTIAL_GC (); \
377 /* Check for jumping out of range. */
379 #ifdef BYTE_CODE_SAFE
381 #define CHECK_RANGE(ARG) \
382 if (ARG >= bytestr_length) abort ()
384 #else /* not BYTE_CODE_SAFE */
386 #define CHECK_RANGE(ARG)
388 #endif /* not BYTE_CODE_SAFE */
390 /* A version of the QUIT macro which makes sure that the stack top is
391 set before signaling `quit'. */
393 #define BYTE_CODE_QUIT \
395 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) \
397 Lisp_Object flag = Vquit_flag; \
399 BEFORE_POTENTIAL_GC (); \
400 if (EQ (Vthrow_on_input, flag)) \
401 Fthrow (Vthrow_on_input, Qt); \
402 Fsignal (Qquit, Qnil); \
403 AFTER_POTENTIAL_GC (); \
405 ELSE_PENDING_SIGNALS \
409 DEFUN ("byte-code", Fbyte_code
, Sbyte_code
, 3, 3, 0,
410 doc
: /* Function used internally in byte-compiled code.
411 The first argument, BYTESTR, is a string of byte code;
412 the second, VECTOR, a vector of constants;
413 the third, MAXDEPTH, the maximum stack depth used in this function.
414 If the third argument is incorrect, Emacs may crash. */)
415 (Lisp_Object bytestr
, Lisp_Object vector
, Lisp_Object maxdepth
)
417 int count
= SPECPDL_INDEX ();
418 #ifdef BYTE_CODE_METER
423 /* Lisp_Object v1, v2; */
424 Lisp_Object
*vectorp
;
425 #ifdef BYTE_CODE_SAFE
426 int const_length
= XVECTOR (vector
)->size
;
430 struct byte_stack stack
;
434 #if 0 /* CHECK_FRAME_FONT */
436 struct frame
*f
= SELECTED_FRAME ();
438 && FRAME_FONT (f
)->direction
!= 0
439 && FRAME_FONT (f
)->direction
!= 1)
444 CHECK_STRING (bytestr
);
445 CHECK_VECTOR (vector
);
446 CHECK_NUMBER (maxdepth
);
448 if (STRING_MULTIBYTE (bytestr
))
449 /* BYTESTR must have been produced by Emacs 20.2 or the earlier
450 because they produced a raw 8-bit string for byte-code and now
451 such a byte-code string is loaded as multibyte while raw 8-bit
452 characters converted to multibyte form. Thus, now we must
453 convert them back to the originally intended unibyte form. */
454 bytestr
= Fstring_as_unibyte (bytestr
);
456 bytestr_length
= SBYTES (bytestr
);
457 vectorp
= XVECTOR (vector
)->contents
;
459 stack
.byte_string
= bytestr
;
460 stack
.pc
= stack
.byte_string_start
= SDATA (bytestr
);
461 stack
.constants
= vector
;
462 top
= (Lisp_Object
*) alloca (XFASTINT (maxdepth
)
463 * sizeof (Lisp_Object
));
464 #if BYTE_MAINTAIN_TOP
469 stack
.next
= byte_stack_list
;
470 byte_stack_list
= &stack
;
472 #ifdef BYTE_CODE_SAFE
473 stacke
= stack
.bottom
- 1 + XFASTINT (maxdepth
);
478 #ifdef BYTE_CODE_SAFE
481 else if (top
< stack
.bottom
- 1)
485 #ifdef BYTE_CODE_METER
487 this_op
= op
= FETCH
;
488 METER_CODE (prev_op
, op
);
508 /* This seems to be the most frequently executed byte-code
509 among the Bvarref's, so avoid a goto here. */
519 if (XSYMBOL (v1
)->redirect
!= SYMBOL_PLAINVAL
520 || (v2
= SYMBOL_VAL (XSYMBOL (v1
)),
523 BEFORE_POTENTIAL_GC ();
524 v2
= Fsymbol_value (v1
);
525 AFTER_POTENTIAL_GC ();
530 BEFORE_POTENTIAL_GC ();
531 v2
= Fsymbol_value (v1
);
532 AFTER_POTENTIAL_GC ();
548 stack
.pc
= stack
.byte_string_start
+ op
;
565 TOP
= EQ (v1
, TOP
) ? Qt
: Qnil
;
572 BEFORE_POTENTIAL_GC ();
574 TOP
= Fmemq (TOP
, v1
);
575 AFTER_POTENTIAL_GC ();
604 Lisp_Object sym
, val
;
609 /* Inline the most common case. */
611 && !EQ (val
, Qunbound
)
612 && !XSYMBOL (sym
)->redirect
613 && !SYMBOL_CONSTANT_P (sym
))
614 XSYMBOL (sym
)->val
.value
= val
;
617 BEFORE_POTENTIAL_GC ();
618 set_internal (sym
, val
, Qnil
, 0);
619 AFTER_POTENTIAL_GC ();
633 /* ------------------ */
651 /* Specbind can signal and thus GC. */
652 BEFORE_POTENTIAL_GC ();
653 specbind (vectorp
[op
], POP
);
654 AFTER_POTENTIAL_GC ();
674 BEFORE_POTENTIAL_GC ();
676 #ifdef BYTE_CODE_METER
677 if (byte_metering_on
&& SYMBOLP (TOP
))
682 v2
= Fget (v1
, Qbyte_code_meter
);
684 && XINT (v2
) < MOST_POSITIVE_FIXNUM
)
686 XSETINT (v2
, XINT (v2
) + 1);
687 Fput (v1
, Qbyte_code_meter
, v2
);
691 TOP
= Ffuncall (op
+ 1, &TOP
);
692 AFTER_POTENTIAL_GC ();
712 BEFORE_POTENTIAL_GC ();
713 unbind_to (SPECPDL_INDEX () - op
, Qnil
);
714 AFTER_POTENTIAL_GC ();
718 /* To unbind back to the beginning of this frame. Not used yet,
719 but will be needed for tail-recursion elimination. */
720 BEFORE_POTENTIAL_GC ();
721 unbind_to (count
, Qnil
);
722 AFTER_POTENTIAL_GC ();
728 op
= FETCH2
; /* pc = FETCH2 loses since FETCH2 contains pc++ */
730 stack
.pc
= stack
.byte_string_start
+ op
;
743 stack
.pc
= stack
.byte_string_start
+ op
;
748 case Bgotoifnilelsepop
:
755 stack
.pc
= stack
.byte_string_start
+ op
;
760 case Bgotoifnonnilelsepop
:
767 stack
.pc
= stack
.byte_string_start
+ op
;
775 stack
.pc
+= (int) *stack
.pc
- 127;
786 stack
.pc
+= (int) *stack
.pc
- 128;
800 stack
.pc
+= (int) *stack
.pc
- 128;
806 case BRgotoifnilelsepop
:
812 stack
.pc
+= op
- 128;
817 case BRgotoifnonnilelsepop
:
823 stack
.pc
+= op
- 128;
837 PUSH (vectorp
[FETCH2
]);
840 case Bsave_excursion
:
841 record_unwind_protect (save_excursion_restore
,
842 save_excursion_save ());
845 case Bsave_current_buffer
:
846 case Bsave_current_buffer_1
:
847 record_unwind_protect (set_buffer_if_live
, Fcurrent_buffer ());
850 case Bsave_window_excursion
:
851 BEFORE_POTENTIAL_GC ();
852 TOP
= Fsave_window_excursion (TOP
);
853 AFTER_POTENTIAL_GC ();
856 case Bsave_restriction
:
857 record_unwind_protect (save_restriction_restore
,
858 save_restriction_save ());
864 BEFORE_POTENTIAL_GC ();
866 TOP
= internal_catch (TOP
, Feval
, v1
);
867 AFTER_POTENTIAL_GC ();
871 case Bunwind_protect
:
872 record_unwind_protect (Fprogn
, POP
);
875 case Bcondition_case
:
877 Lisp_Object handlers
, body
;
880 BEFORE_POTENTIAL_GC ();
881 TOP
= internal_lisp_condition_case (TOP
, body
, handlers
);
882 AFTER_POTENTIAL_GC ();
886 case Btemp_output_buffer_setup
:
887 BEFORE_POTENTIAL_GC ();
889 temp_output_buffer_setup (SSDATA (TOP
));
890 AFTER_POTENTIAL_GC ();
891 TOP
= Vstandard_output
;
894 case Btemp_output_buffer_show
:
897 BEFORE_POTENTIAL_GC ();
899 temp_output_buffer_show (TOP
);
901 /* pop binding of standard-output */
902 unbind_to (SPECPDL_INDEX () - 1, Qnil
);
903 AFTER_POTENTIAL_GC ();
910 BEFORE_POTENTIAL_GC ();
914 AFTER_POTENTIAL_GC ();
917 while (--op
>= 0 && CONSP (v1
))
925 TOP
= SYMBOLP (TOP
) ? Qt
: Qnil
;
929 TOP
= CONSP (TOP
) ? Qt
: Qnil
;
933 TOP
= STRINGP (TOP
) ? Qt
: Qnil
;
937 TOP
= CONSP (TOP
) || NILP (TOP
) ? Qt
: Qnil
;
941 TOP
= NILP (TOP
) ? Qt
: Qnil
;
948 TOP
= Fcons (TOP
, v1
);
953 TOP
= Fcons (TOP
, Qnil
);
960 TOP
= Fcons (TOP
, Fcons (v1
, Qnil
));
966 TOP
= Flist (3, &TOP
);
971 TOP
= Flist (4, &TOP
);
977 TOP
= Flist (op
, &TOP
);
981 BEFORE_POTENTIAL_GC ();
983 AFTER_POTENTIAL_GC ();
989 BEFORE_POTENTIAL_GC ();
991 TOP
= Faref (TOP
, v1
);
992 AFTER_POTENTIAL_GC ();
999 BEFORE_POTENTIAL_GC ();
1001 TOP
= Faset (TOP
, v1
, v2
);
1002 AFTER_POTENTIAL_GC ();
1007 BEFORE_POTENTIAL_GC ();
1008 TOP
= Fsymbol_value (TOP
);
1009 AFTER_POTENTIAL_GC ();
1012 case Bsymbol_function
:
1013 BEFORE_POTENTIAL_GC ();
1014 TOP
= Fsymbol_function (TOP
);
1015 AFTER_POTENTIAL_GC ();
1021 BEFORE_POTENTIAL_GC ();
1023 TOP
= Fset (TOP
, v1
);
1024 AFTER_POTENTIAL_GC ();
1031 BEFORE_POTENTIAL_GC ();
1033 TOP
= Ffset (TOP
, v1
);
1034 AFTER_POTENTIAL_GC ();
1041 BEFORE_POTENTIAL_GC ();
1043 TOP
= Fget (TOP
, v1
);
1044 AFTER_POTENTIAL_GC ();
1051 BEFORE_POTENTIAL_GC ();
1053 TOP
= Fsubstring (TOP
, v1
, v2
);
1054 AFTER_POTENTIAL_GC ();
1059 BEFORE_POTENTIAL_GC ();
1061 TOP
= Fconcat (2, &TOP
);
1062 AFTER_POTENTIAL_GC ();
1066 BEFORE_POTENTIAL_GC ();
1068 TOP
= Fconcat (3, &TOP
);
1069 AFTER_POTENTIAL_GC ();
1073 BEFORE_POTENTIAL_GC ();
1075 TOP
= Fconcat (4, &TOP
);
1076 AFTER_POTENTIAL_GC ();
1081 BEFORE_POTENTIAL_GC ();
1083 TOP
= Fconcat (op
, &TOP
);
1084 AFTER_POTENTIAL_GC ();
1093 XSETINT (v1
, XINT (v1
) - 1);
1098 BEFORE_POTENTIAL_GC ();
1100 AFTER_POTENTIAL_GC ();
1111 XSETINT (v1
, XINT (v1
) + 1);
1116 BEFORE_POTENTIAL_GC ();
1118 AFTER_POTENTIAL_GC ();
1126 BEFORE_POTENTIAL_GC ();
1128 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (v1
);
1129 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (v2
);
1130 AFTER_POTENTIAL_GC ();
1131 if (FLOATP (v1
) || FLOATP (v2
))
1135 f1
= (FLOATP (v1
) ? XFLOAT_DATA (v1
) : XINT (v1
));
1136 f2
= (FLOATP (v2
) ? XFLOAT_DATA (v2
) : XINT (v2
));
1137 TOP
= (f1
== f2
? Qt
: Qnil
);
1140 TOP
= (XINT (v1
) == XINT (v2
) ? Qt
: Qnil
);
1147 BEFORE_POTENTIAL_GC ();
1149 TOP
= Fgtr (TOP
, v1
);
1150 AFTER_POTENTIAL_GC ();
1157 BEFORE_POTENTIAL_GC ();
1159 TOP
= Flss (TOP
, v1
);
1160 AFTER_POTENTIAL_GC ();
1167 BEFORE_POTENTIAL_GC ();
1169 TOP
= Fleq (TOP
, v1
);
1170 AFTER_POTENTIAL_GC ();
1177 BEFORE_POTENTIAL_GC ();
1179 TOP
= Fgeq (TOP
, v1
);
1180 AFTER_POTENTIAL_GC ();
1185 BEFORE_POTENTIAL_GC ();
1187 TOP
= Fminus (2, &TOP
);
1188 AFTER_POTENTIAL_GC ();
1197 XSETINT (v1
, - XINT (v1
));
1202 BEFORE_POTENTIAL_GC ();
1203 TOP
= Fminus (1, &TOP
);
1204 AFTER_POTENTIAL_GC ();
1210 BEFORE_POTENTIAL_GC ();
1212 TOP
= Fplus (2, &TOP
);
1213 AFTER_POTENTIAL_GC ();
1217 BEFORE_POTENTIAL_GC ();
1219 TOP
= Fmax (2, &TOP
);
1220 AFTER_POTENTIAL_GC ();
1224 BEFORE_POTENTIAL_GC ();
1226 TOP
= Fmin (2, &TOP
);
1227 AFTER_POTENTIAL_GC ();
1231 BEFORE_POTENTIAL_GC ();
1233 TOP
= Ftimes (2, &TOP
);
1234 AFTER_POTENTIAL_GC ();
1238 BEFORE_POTENTIAL_GC ();
1240 TOP
= Fquo (2, &TOP
);
1241 AFTER_POTENTIAL_GC ();
1247 BEFORE_POTENTIAL_GC ();
1249 TOP
= Frem (TOP
, v1
);
1250 AFTER_POTENTIAL_GC ();
1257 XSETFASTINT (v1
, PT
);
1263 BEFORE_POTENTIAL_GC ();
1264 TOP
= Fgoto_char (TOP
);
1265 AFTER_POTENTIAL_GC ();
1269 BEFORE_POTENTIAL_GC ();
1270 TOP
= Finsert (1, &TOP
);
1271 AFTER_POTENTIAL_GC ();
1276 BEFORE_POTENTIAL_GC ();
1278 TOP
= Finsert (op
, &TOP
);
1279 AFTER_POTENTIAL_GC ();
1285 XSETFASTINT (v1
, ZV
);
1293 XSETFASTINT (v1
, BEGV
);
1299 BEFORE_POTENTIAL_GC ();
1300 TOP
= Fchar_after (TOP
);
1301 AFTER_POTENTIAL_GC ();
1304 case Bfollowing_char
:
1307 BEFORE_POTENTIAL_GC ();
1308 v1
= Ffollowing_char ();
1309 AFTER_POTENTIAL_GC ();
1314 case Bpreceding_char
:
1317 BEFORE_POTENTIAL_GC ();
1318 v1
= Fprevious_char ();
1319 AFTER_POTENTIAL_GC ();
1324 case Bcurrent_column
:
1327 BEFORE_POTENTIAL_GC ();
1328 XSETFASTINT (v1
, current_column ());
1329 AFTER_POTENTIAL_GC ();
1335 BEFORE_POTENTIAL_GC ();
1336 TOP
= Findent_to (TOP
, Qnil
);
1337 AFTER_POTENTIAL_GC ();
1356 case Bcurrent_buffer
:
1357 PUSH (Fcurrent_buffer ());
1361 BEFORE_POTENTIAL_GC ();
1362 TOP
= Fset_buffer (TOP
);
1363 AFTER_POTENTIAL_GC ();
1366 case Binteractive_p
:
1367 PUSH (Finteractive_p ());
1371 BEFORE_POTENTIAL_GC ();
1372 TOP
= Fforward_char (TOP
);
1373 AFTER_POTENTIAL_GC ();
1377 BEFORE_POTENTIAL_GC ();
1378 TOP
= Fforward_word (TOP
);
1379 AFTER_POTENTIAL_GC ();
1382 case Bskip_chars_forward
:
1385 BEFORE_POTENTIAL_GC ();
1387 TOP
= Fskip_chars_forward (TOP
, v1
);
1388 AFTER_POTENTIAL_GC ();
1392 case Bskip_chars_backward
:
1395 BEFORE_POTENTIAL_GC ();
1397 TOP
= Fskip_chars_backward (TOP
, v1
);
1398 AFTER_POTENTIAL_GC ();
1403 BEFORE_POTENTIAL_GC ();
1404 TOP
= Fforward_line (TOP
);
1405 AFTER_POTENTIAL_GC ();
1412 BEFORE_POTENTIAL_GC ();
1413 CHECK_CHARACTER (TOP
);
1414 AFTER_POTENTIAL_GC ();
1416 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
1417 MAKE_CHAR_MULTIBYTE (c
);
1418 XSETFASTINT (TOP
, syntax_code_spec
[(int) SYNTAX (c
)]);
1422 case Bbuffer_substring
:
1425 BEFORE_POTENTIAL_GC ();
1427 TOP
= Fbuffer_substring (TOP
, v1
);
1428 AFTER_POTENTIAL_GC ();
1432 case Bdelete_region
:
1435 BEFORE_POTENTIAL_GC ();
1437 TOP
= Fdelete_region (TOP
, v1
);
1438 AFTER_POTENTIAL_GC ();
1442 case Bnarrow_to_region
:
1445 BEFORE_POTENTIAL_GC ();
1447 TOP
= Fnarrow_to_region (TOP
, v1
);
1448 AFTER_POTENTIAL_GC ();
1453 BEFORE_POTENTIAL_GC ();
1455 AFTER_POTENTIAL_GC ();
1459 BEFORE_POTENTIAL_GC ();
1460 TOP
= Fend_of_line (TOP
);
1461 AFTER_POTENTIAL_GC ();
1467 BEFORE_POTENTIAL_GC ();
1470 TOP
= Fset_marker (TOP
, v2
, v1
);
1471 AFTER_POTENTIAL_GC ();
1475 case Bmatch_beginning
:
1476 BEFORE_POTENTIAL_GC ();
1477 TOP
= Fmatch_beginning (TOP
);
1478 AFTER_POTENTIAL_GC ();
1482 BEFORE_POTENTIAL_GC ();
1483 TOP
= Fmatch_end (TOP
);
1484 AFTER_POTENTIAL_GC ();
1488 BEFORE_POTENTIAL_GC ();
1489 TOP
= Fupcase (TOP
);
1490 AFTER_POTENTIAL_GC ();
1494 BEFORE_POTENTIAL_GC ();
1495 TOP
= Fdowncase (TOP
);
1496 AFTER_POTENTIAL_GC ();
1499 case Bstringeqlsign
:
1502 BEFORE_POTENTIAL_GC ();
1504 TOP
= Fstring_equal (TOP
, v1
);
1505 AFTER_POTENTIAL_GC ();
1512 BEFORE_POTENTIAL_GC ();
1514 TOP
= Fstring_lessp (TOP
, v1
);
1515 AFTER_POTENTIAL_GC ();
1523 TOP
= Fequal (TOP
, v1
);
1530 BEFORE_POTENTIAL_GC ();
1532 TOP
= Fnthcdr (TOP
, v1
);
1533 AFTER_POTENTIAL_GC ();
1542 /* Exchange args and then do nth. */
1543 BEFORE_POTENTIAL_GC ();
1547 AFTER_POTENTIAL_GC ();
1550 while (--op
>= 0 && CONSP (v1
))
1557 BEFORE_POTENTIAL_GC ();
1559 TOP
= Felt (TOP
, v1
);
1560 AFTER_POTENTIAL_GC ();
1568 BEFORE_POTENTIAL_GC ();
1570 TOP
= Fmember (TOP
, v1
);
1571 AFTER_POTENTIAL_GC ();
1578 BEFORE_POTENTIAL_GC ();
1580 TOP
= Fassq (TOP
, v1
);
1581 AFTER_POTENTIAL_GC ();
1586 BEFORE_POTENTIAL_GC ();
1587 TOP
= Fnreverse (TOP
);
1588 AFTER_POTENTIAL_GC ();
1594 BEFORE_POTENTIAL_GC ();
1596 TOP
= Fsetcar (TOP
, v1
);
1597 AFTER_POTENTIAL_GC ();
1604 BEFORE_POTENTIAL_GC ();
1606 TOP
= Fsetcdr (TOP
, v1
);
1607 AFTER_POTENTIAL_GC ();
1615 TOP
= CAR_SAFE (v1
);
1623 TOP
= CDR_SAFE (v1
);
1628 BEFORE_POTENTIAL_GC ();
1630 TOP
= Fnconc (2, &TOP
);
1631 AFTER_POTENTIAL_GC ();
1635 TOP
= (NUMBERP (TOP
) ? Qt
: Qnil
);
1639 TOP
= INTEGERP (TOP
) ? Qt
: Qnil
;
1642 #ifdef BYTE_CODE_SAFE
1644 BEFORE_POTENTIAL_GC ();
1645 error ("set-mark is an obsolete bytecode");
1646 AFTER_POTENTIAL_GC ();
1649 BEFORE_POTENTIAL_GC ();
1650 error ("scan-buffer is an obsolete bytecode");
1651 AFTER_POTENTIAL_GC ();
1660 #ifdef BYTE_CODE_SAFE
1665 if ((op
-= Bconstant
) >= const_length
)
1671 PUSH (vectorp
[op
- Bconstant
]);
1678 byte_stack_list
= byte_stack_list
->next
;
1680 /* Binds and unbinds are supposed to be compiled balanced. */
1681 if (SPECPDL_INDEX () != count
)
1682 #ifdef BYTE_CODE_SAFE
1683 error ("binding stack not balanced (serious byte compiler bug)");
1692 syms_of_bytecode (void)
1694 Qbytecode
= intern_c_string ("byte-code");
1695 staticpro (&Qbytecode
);
1697 defsubr (&Sbyte_code
);
1699 #ifdef BYTE_CODE_METER
1701 DEFVAR_LISP ("byte-code-meter", Vbyte_code_meter
,
1702 doc
: /* A vector of vectors which holds a histogram of byte-code usage.
1703 \(aref (aref byte-code-meter 0) CODE) indicates how many times the byte
1704 opcode CODE has been executed.
1705 \(aref (aref byte-code-meter CODE1) CODE2), where CODE1 is not 0,
1706 indicates how many times the byte opcodes CODE1 and CODE2 have been
1707 executed in succession. */);
1709 DEFVAR_BOOL ("byte-metering-on", byte_metering_on
,
1710 doc
: /* If non-nil, keep profiling information on byte code usage.
1711 The variable byte-code-meter indicates how often each byte opcode is used.
1712 If a symbol has a property named `byte-code-meter' whose value is an
1713 integer, it is incremented each time that symbol's function is called. */);
1715 byte_metering_on
= 0;
1716 Vbyte_code_meter
= Fmake_vector (make_number (256), make_number (0));
1717 Qbyte_code_meter
= intern_c_string ("byte-code-meter");
1718 staticpro (&Qbyte_code_meter
);
1722 XVECTOR (Vbyte_code_meter
)->contents
[i
] =
1723 Fmake_vector (make_number (256), make_number (0));