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
;
86 #define Bstack_ref 0 /* Actually, Bstack_ref+0 is not implemented: use dup. */
111 #define Bsymbol_value 0112
112 #define Bsymbol_function 0113
116 #define Bsubstring 0117
117 #define Bconcat2 0120
118 #define Bconcat3 0121
119 #define Bconcat4 0122
122 #define Beqlsign 0125
135 /* Was Bmark in v17. */
136 #define Bsave_current_buffer 0141 /* Obsolete. */
137 #define Bgoto_char 0142
139 #define Bpoint_max 0144
140 #define Bpoint_min 0145
141 #define Bchar_after 0146
142 #define Bfollowing_char 0147
143 #define Bpreceding_char 0150
144 #define Bcurrent_column 0151
145 #define Bindent_to 0152
146 #ifdef BYTE_CODE_SAFE
147 #define Bscan_buffer 0153 /* No longer generated as of v18 */
153 #define Bcurrent_buffer 0160
154 #define Bset_buffer 0161
155 #define Bsave_current_buffer_1 0162 /* Replacing Bsave_current_buffer. */
157 #define Bread_char 0162 /* No longer generated as of v19 */
159 #ifdef BYTE_CODE_SAFE
160 #define Bset_mark 0163 /* this loser is no longer generated as of v18 */
162 #define Binteractive_p 0164 /* Obsolete since Emacs-24.1. */
164 #define Bforward_char 0165
165 #define Bforward_word 0166
166 #define Bskip_chars_forward 0167
167 #define Bskip_chars_backward 0170
168 #define Bforward_line 0171
169 #define Bchar_syntax 0172
170 #define Bbuffer_substring 0173
171 #define Bdelete_region 0174
172 #define Bnarrow_to_region 0175
174 #define Bend_of_line 0177
176 #define Bconstant2 0201
178 #define Bgotoifnil 0203
179 #define Bgotoifnonnil 0204
180 #define Bgotoifnilelsepop 0205
181 #define Bgotoifnonnilelsepop 0206
183 #define Bdiscard 0210
186 #define Bsave_excursion 0212
187 #define Bsave_window_excursion 0213 /* Obsolete since Emacs-24.1. */
188 #define Bsave_restriction 0214
191 #define Bunwind_protect 0216
192 #define Bcondition_case 0217
193 #define Btemp_output_buffer_setup 0220 /* Obsolete since Emacs-24.1. */
194 #define Btemp_output_buffer_show 0221 /* Obsolete since Emacs-24.1. */
196 #define Bunbind_all 0222 /* Obsolete. Never used. */
198 #define Bset_marker 0223
199 #define Bmatch_beginning 0224
200 #define Bmatch_end 0225
202 #define Bdowncase 0227
204 #define Bstringeqlsign 0230
205 #define Bstringlss 0231
211 #define Bnreverse 0237
214 #define Bcar_safe 0242
215 #define Bcdr_safe 0243
219 #define Bnumberp 0247
220 #define Bintegerp 0250
223 #define BRgotoifnil 0253
224 #define BRgotoifnonnil 0254
225 #define BRgotoifnilelsepop 0255
226 #define BRgotoifnonnilelsepop 0256
229 #define BconcatN 0260
230 #define BinsertN 0261
232 /* Bstack_ref is code 0. */
233 #define Bstack_set 0262
234 #define Bstack_set2 0263
235 #define BdiscardN 0266
237 #define Bconstant 0300
239 /* Whether to maintain a `top' and `bottom' field in the stack frame. */
240 #define BYTE_MAINTAIN_TOP (BYTE_CODE_SAFE || BYTE_MARK_STACK)
242 /* Structure describing a value stack used during byte-code execution
247 /* Program counter. This points into the byte_string below
248 and is relocated when that string is relocated. */
249 const unsigned char *pc
;
251 /* Top and bottom of stack. The bottom points to an area of memory
252 allocated with alloca in Fbyte_code. */
253 #if BYTE_MAINTAIN_TOP
254 Lisp_Object
*top
, *bottom
;
257 /* The string containing the byte-code, and its current address.
258 Storing this here protects it from GC because mark_byte_stack
260 Lisp_Object byte_string
;
261 const unsigned char *byte_string_start
;
263 /* The vector of constants used during byte-code execution. Storing
264 this here protects it from GC because mark_byte_stack marks it. */
265 Lisp_Object constants
;
267 /* Next entry in byte_stack_list. */
268 struct byte_stack
*next
;
271 /* A list of currently active byte-code execution value stacks.
272 Fbyte_code adds an entry to the head of this list before it starts
273 processing byte-code, and it removed the entry again when it is
274 done. Signalling an error truncates the list analoguous to
277 struct byte_stack
*byte_stack_list
;
280 /* Mark objects on byte_stack_list. Called during GC. */
284 mark_byte_stack (void)
286 struct byte_stack
*stack
;
289 for (stack
= byte_stack_list
; stack
; stack
= stack
->next
)
291 /* If STACK->top is null here, this means there's an opcode in
292 Fbyte_code that wasn't expected to GC, but did. To find out
293 which opcode this is, record the value of `stack', and walk
294 up the stack in a debugger, stopping in frames of Fbyte_code.
295 The culprit is found in the frame of Fbyte_code where the
296 address of its local variable `stack' is equal to the
297 recorded value of `stack' here. */
298 eassert (stack
->top
);
300 for (obj
= stack
->bottom
; obj
<= stack
->top
; ++obj
)
303 mark_object (stack
->byte_string
);
304 mark_object (stack
->constants
);
309 /* Unmark objects in the stacks on byte_stack_list. Relocate program
310 counters. Called when GC has completed. */
313 unmark_byte_stack (void)
315 struct byte_stack
*stack
;
317 for (stack
= byte_stack_list
; stack
; stack
= stack
->next
)
319 if (stack
->byte_string_start
!= SDATA (stack
->byte_string
))
321 int offset
= stack
->pc
- stack
->byte_string_start
;
322 stack
->byte_string_start
= SDATA (stack
->byte_string
);
323 stack
->pc
= stack
->byte_string_start
+ offset
;
329 /* Fetch the next byte from the bytecode stream */
331 #define FETCH *stack.pc++
333 /* Fetch two bytes from the bytecode stream and make a 16-bit number
336 #define FETCH2 (op = FETCH, op + (FETCH << 8))
338 /* Push x onto the execution stack. This used to be #define PUSH(x)
339 (*++stackp = (x)) This oddity is necessary because Alliant can't be
340 bothered to compile the preincrement operator properly, as of 4/91.
343 #define PUSH(x) (top++, *top = (x))
345 /* Pop a value off the execution stack. */
349 /* Discard n values from the execution stack. */
351 #define DISCARD(n) (top -= (n))
353 /* Get the value which is at the top of the execution stack, but don't
358 /* Actions that must be performed before and after calling a function
361 #if !BYTE_MAINTAIN_TOP
362 #define BEFORE_POTENTIAL_GC() ((void)0)
363 #define AFTER_POTENTIAL_GC() ((void)0)
365 #define BEFORE_POTENTIAL_GC() stack.top = top
366 #define AFTER_POTENTIAL_GC() stack.top = NULL
369 /* Garbage collect if we have consed enough since the last time.
370 We do this at every branch, to avoid loops that never GC. */
374 if (consing_since_gc > gc_cons_threshold \
375 && consing_since_gc > gc_relative_threshold) \
377 BEFORE_POTENTIAL_GC (); \
378 Fgarbage_collect (); \
379 AFTER_POTENTIAL_GC (); \
383 /* Check for jumping out of range. */
385 #ifdef BYTE_CODE_SAFE
387 #define CHECK_RANGE(ARG) \
388 if (ARG >= bytestr_length) abort ()
390 #else /* not BYTE_CODE_SAFE */
392 #define CHECK_RANGE(ARG)
394 #endif /* not BYTE_CODE_SAFE */
396 /* A version of the QUIT macro which makes sure that the stack top is
397 set before signaling `quit'. */
399 #define BYTE_CODE_QUIT \
401 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) \
403 Lisp_Object flag = Vquit_flag; \
405 BEFORE_POTENTIAL_GC (); \
406 if (EQ (Vthrow_on_input, flag)) \
407 Fthrow (Vthrow_on_input, Qt); \
408 Fsignal (Qquit, Qnil); \
409 AFTER_POTENTIAL_GC (); \
411 ELSE_PENDING_SIGNALS \
415 DEFUN ("byte-code", Fbyte_code
, Sbyte_code
, 3, 3, 0,
416 doc
: /* Function used internally in byte-compiled code.
417 The first argument, BYTESTR, is a string of byte code;
418 the second, VECTOR, a vector of constants;
419 the third, MAXDEPTH, the maximum stack depth used in this function.
420 If the third argument is incorrect, Emacs may crash. */)
421 (Lisp_Object bytestr
, Lisp_Object vector
, Lisp_Object maxdepth
)
423 return exec_byte_code (bytestr
, vector
, maxdepth
, Qnil
, 0, NULL
);
426 /* Execute the byte-code in BYTESTR. VECTOR is the constant vector, and
427 MAXDEPTH is the maximum stack depth used (if MAXDEPTH is incorrect,
428 emacs may crash!). If ARGS_TEMPLATE is non-nil, it should be a lisp
429 argument list (including &rest, &optional, etc.), and ARGS, of size
430 NARGS, should be a vector of the actual arguments. The arguments in
431 ARGS are pushed on the stack according to ARGS_TEMPLATE before
432 executing BYTESTR. */
435 exec_byte_code (Lisp_Object bytestr
, Lisp_Object vector
, Lisp_Object maxdepth
,
436 Lisp_Object args_template
, int nargs
, Lisp_Object
*args
)
438 int count
= SPECPDL_INDEX ();
439 #ifdef BYTE_CODE_METER
444 /* Lisp_Object v1, v2; */
445 Lisp_Object
*vectorp
;
446 #ifdef BYTE_CODE_SAFE
451 struct byte_stack stack
;
455 #if 0 /* CHECK_FRAME_FONT */
457 struct frame
*f
= SELECTED_FRAME ();
459 && FRAME_FONT (f
)->direction
!= 0
460 && FRAME_FONT (f
)->direction
!= 1)
465 CHECK_STRING (bytestr
);
466 CHECK_VECTOR (vector
);
467 CHECK_NUMBER (maxdepth
);
469 #ifdef BYTE_CODE_SAFE
470 const_length
= ASIZE (vector
);
473 if (STRING_MULTIBYTE (bytestr
))
474 /* BYTESTR must have been produced by Emacs 20.2 or the earlier
475 because they produced a raw 8-bit string for byte-code and now
476 such a byte-code string is loaded as multibyte while raw 8-bit
477 characters converted to multibyte form. Thus, now we must
478 convert them back to the originally intended unibyte form. */
479 bytestr
= Fstring_as_unibyte (bytestr
);
481 #ifdef BYTE_CODE_SAFE
482 bytestr_length
= SBYTES (bytestr
);
484 vectorp
= XVECTOR (vector
)->contents
;
486 stack
.byte_string
= bytestr
;
487 stack
.pc
= stack
.byte_string_start
= SDATA (bytestr
);
488 stack
.constants
= vector
;
489 top
= (Lisp_Object
*) alloca (XFASTINT (maxdepth
)
490 * sizeof (Lisp_Object
));
491 #if BYTE_MAINTAIN_TOP
496 stack
.next
= byte_stack_list
;
497 byte_stack_list
= &stack
;
499 #ifdef BYTE_CODE_SAFE
500 stacke
= stack
.bottom
- 1 + XFASTINT (maxdepth
);
503 if (INTEGERP (args_template
))
505 int at
= XINT (args_template
);
507 int mandatory
= at
& 127;
508 int nonrest
= at
>> 8;
509 eassert (mandatory
<= nonrest
);
510 if (nargs
<= nonrest
)
513 for (i
= 0 ; i
< nargs
; i
++, args
++)
515 if (nargs
< mandatory
)
516 /* Too few arguments. */
517 Fsignal (Qwrong_number_of_arguments
,
518 Fcons (Fcons (make_number (mandatory
),
519 rest
? Qand_rest
: make_number (nonrest
)),
520 Fcons (make_number (nargs
), Qnil
)));
523 for (; i
< nonrest
; i
++)
532 for (i
= 0 ; i
< nonrest
; i
++, args
++)
534 PUSH (Flist (nargs
- nonrest
, args
));
537 /* Too many arguments. */
538 Fsignal (Qwrong_number_of_arguments
,
539 Fcons (Fcons (make_number (mandatory
),
540 make_number (nonrest
)),
541 Fcons (make_number (nargs
), Qnil
)));
543 else if (! NILP (args_template
))
544 /* We should push some arguments on the stack. */
546 error ("Unknown args template!");
551 #ifdef BYTE_CODE_SAFE
554 else if (top
< stack
.bottom
- 1)
558 #ifdef BYTE_CODE_METER
560 this_op
= op
= FETCH
;
561 METER_CODE (prev_op
, op
);
581 /* This seems to be the most frequently executed byte-code
582 among the Bvarref's, so avoid a goto here. */
592 if (XSYMBOL (v1
)->redirect
!= SYMBOL_PLAINVAL
593 || (v2
= SYMBOL_VAL (XSYMBOL (v1
)),
596 BEFORE_POTENTIAL_GC ();
597 v2
= Fsymbol_value (v1
);
598 AFTER_POTENTIAL_GC ();
603 BEFORE_POTENTIAL_GC ();
604 v2
= Fsymbol_value (v1
);
605 AFTER_POTENTIAL_GC ();
621 stack
.pc
= stack
.byte_string_start
+ op
;
636 BEFORE_POTENTIAL_GC ();
637 wrong_type_argument (Qlistp
, v1
);
638 AFTER_POTENTIAL_GC ();
647 TOP
= EQ (v1
, TOP
) ? Qt
: Qnil
;
654 BEFORE_POTENTIAL_GC ();
656 TOP
= Fmemq (TOP
, v1
);
657 AFTER_POTENTIAL_GC ();
671 BEFORE_POTENTIAL_GC ();
672 wrong_type_argument (Qlistp
, v1
);
673 AFTER_POTENTIAL_GC ();
696 Lisp_Object sym
, val
;
701 /* Inline the most common case. */
703 && !EQ (val
, Qunbound
)
704 && !XSYMBOL (sym
)->redirect
705 && !SYMBOL_CONSTANT_P (sym
))
706 XSYMBOL (sym
)->val
.value
= val
;
709 BEFORE_POTENTIAL_GC ();
710 set_internal (sym
, val
, Qnil
, 0);
711 AFTER_POTENTIAL_GC ();
725 /* ------------------ */
743 /* Specbind can signal and thus GC. */
744 BEFORE_POTENTIAL_GC ();
745 specbind (vectorp
[op
], POP
);
746 AFTER_POTENTIAL_GC ();
766 BEFORE_POTENTIAL_GC ();
768 #ifdef BYTE_CODE_METER
769 if (byte_metering_on
&& SYMBOLP (TOP
))
774 v2
= Fget (v1
, Qbyte_code_meter
);
776 && XINT (v2
) < MOST_POSITIVE_FIXNUM
)
778 XSETINT (v2
, XINT (v2
) + 1);
779 Fput (v1
, Qbyte_code_meter
, v2
);
783 TOP
= Ffuncall (op
+ 1, &TOP
);
784 AFTER_POTENTIAL_GC ();
804 BEFORE_POTENTIAL_GC ();
805 unbind_to (SPECPDL_INDEX () - op
, Qnil
);
806 AFTER_POTENTIAL_GC ();
809 case Bunbind_all
: /* Obsolete. Never used. */
810 /* To unbind back to the beginning of this frame. Not used yet,
811 but will be needed for tail-recursion elimination. */
812 BEFORE_POTENTIAL_GC ();
813 unbind_to (count
, Qnil
);
814 AFTER_POTENTIAL_GC ();
820 op
= FETCH2
; /* pc = FETCH2 loses since FETCH2 contains pc++ */
822 stack
.pc
= stack
.byte_string_start
+ op
;
835 stack
.pc
= stack
.byte_string_start
+ op
;
840 case Bgotoifnilelsepop
:
847 stack
.pc
= stack
.byte_string_start
+ op
;
852 case Bgotoifnonnilelsepop
:
859 stack
.pc
= stack
.byte_string_start
+ op
;
867 stack
.pc
+= (int) *stack
.pc
- 127;
878 stack
.pc
+= (int) *stack
.pc
- 128;
892 stack
.pc
+= (int) *stack
.pc
- 128;
898 case BRgotoifnilelsepop
:
904 stack
.pc
+= op
- 128;
909 case BRgotoifnonnilelsepop
:
915 stack
.pc
+= op
- 128;
929 PUSH (vectorp
[FETCH2
]);
932 case Bsave_excursion
:
933 record_unwind_protect (save_excursion_restore
,
934 save_excursion_save ());
937 case Bsave_current_buffer
: /* Obsolete since ??. */
938 case Bsave_current_buffer_1
:
939 record_unwind_protect (set_buffer_if_live
, Fcurrent_buffer ());
942 case Bsave_window_excursion
: /* Obsolete since 24.1. */
944 register int count1
= SPECPDL_INDEX ();
945 record_unwind_protect (Fset_window_configuration
,
946 Fcurrent_window_configuration (Qnil
));
947 BEFORE_POTENTIAL_GC ();
949 unbind_to (count1
, TOP
);
950 AFTER_POTENTIAL_GC ();
954 case Bsave_restriction
:
955 record_unwind_protect (save_restriction_restore
,
956 save_restriction_save ());
959 case Bcatch
: /* FIXME: ill-suited for lexbind */
962 BEFORE_POTENTIAL_GC ();
964 TOP
= internal_catch (TOP
, eval_sub
, v1
);
965 AFTER_POTENTIAL_GC ();
969 case Bunwind_protect
: /* FIXME: avoid closure for lexbind */
970 record_unwind_protect (Fprogn
, POP
);
973 case Bcondition_case
: /* FIXME: ill-suited for lexbind */
975 Lisp_Object handlers
, body
;
978 BEFORE_POTENTIAL_GC ();
979 TOP
= internal_lisp_condition_case (TOP
, body
, handlers
);
980 AFTER_POTENTIAL_GC ();
984 case Btemp_output_buffer_setup
: /* Obsolete since 24.1. */
985 BEFORE_POTENTIAL_GC ();
987 temp_output_buffer_setup (SSDATA (TOP
));
988 AFTER_POTENTIAL_GC ();
989 TOP
= Vstandard_output
;
992 case Btemp_output_buffer_show
: /* Obsolete since 24.1. */
995 BEFORE_POTENTIAL_GC ();
997 temp_output_buffer_show (TOP
);
999 /* pop binding of standard-output */
1000 unbind_to (SPECPDL_INDEX () - 1, Qnil
);
1001 AFTER_POTENTIAL_GC ();
1008 BEFORE_POTENTIAL_GC ();
1014 while (--op
>= 0 && CONSP (v1
))
1018 AFTER_POTENTIAL_GC ();
1023 TOP
= SYMBOLP (TOP
) ? Qt
: Qnil
;
1027 TOP
= CONSP (TOP
) ? Qt
: Qnil
;
1031 TOP
= STRINGP (TOP
) ? Qt
: Qnil
;
1035 TOP
= CONSP (TOP
) || NILP (TOP
) ? Qt
: Qnil
;
1039 TOP
= NILP (TOP
) ? Qt
: Qnil
;
1046 TOP
= Fcons (TOP
, v1
);
1051 TOP
= Fcons (TOP
, Qnil
);
1058 TOP
= Fcons (TOP
, Fcons (v1
, Qnil
));
1064 TOP
= Flist (3, &TOP
);
1069 TOP
= Flist (4, &TOP
);
1075 TOP
= Flist (op
, &TOP
);
1079 BEFORE_POTENTIAL_GC ();
1080 TOP
= Flength (TOP
);
1081 AFTER_POTENTIAL_GC ();
1087 BEFORE_POTENTIAL_GC ();
1089 TOP
= Faref (TOP
, v1
);
1090 AFTER_POTENTIAL_GC ();
1097 BEFORE_POTENTIAL_GC ();
1099 TOP
= Faset (TOP
, v1
, v2
);
1100 AFTER_POTENTIAL_GC ();
1105 BEFORE_POTENTIAL_GC ();
1106 TOP
= Fsymbol_value (TOP
);
1107 AFTER_POTENTIAL_GC ();
1110 case Bsymbol_function
:
1111 BEFORE_POTENTIAL_GC ();
1112 TOP
= Fsymbol_function (TOP
);
1113 AFTER_POTENTIAL_GC ();
1119 BEFORE_POTENTIAL_GC ();
1121 TOP
= Fset (TOP
, v1
);
1122 AFTER_POTENTIAL_GC ();
1129 BEFORE_POTENTIAL_GC ();
1131 TOP
= Ffset (TOP
, v1
);
1132 AFTER_POTENTIAL_GC ();
1139 BEFORE_POTENTIAL_GC ();
1141 TOP
= Fget (TOP
, v1
);
1142 AFTER_POTENTIAL_GC ();
1149 BEFORE_POTENTIAL_GC ();
1151 TOP
= Fsubstring (TOP
, v1
, v2
);
1152 AFTER_POTENTIAL_GC ();
1157 BEFORE_POTENTIAL_GC ();
1159 TOP
= Fconcat (2, &TOP
);
1160 AFTER_POTENTIAL_GC ();
1164 BEFORE_POTENTIAL_GC ();
1166 TOP
= Fconcat (3, &TOP
);
1167 AFTER_POTENTIAL_GC ();
1171 BEFORE_POTENTIAL_GC ();
1173 TOP
= Fconcat (4, &TOP
);
1174 AFTER_POTENTIAL_GC ();
1179 BEFORE_POTENTIAL_GC ();
1181 TOP
= Fconcat (op
, &TOP
);
1182 AFTER_POTENTIAL_GC ();
1191 XSETINT (v1
, XINT (v1
) - 1);
1196 BEFORE_POTENTIAL_GC ();
1198 AFTER_POTENTIAL_GC ();
1209 XSETINT (v1
, XINT (v1
) + 1);
1214 BEFORE_POTENTIAL_GC ();
1216 AFTER_POTENTIAL_GC ();
1224 BEFORE_POTENTIAL_GC ();
1226 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (v1
);
1227 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (v2
);
1228 AFTER_POTENTIAL_GC ();
1229 if (FLOATP (v1
) || FLOATP (v2
))
1233 f1
= (FLOATP (v1
) ? XFLOAT_DATA (v1
) : XINT (v1
));
1234 f2
= (FLOATP (v2
) ? XFLOAT_DATA (v2
) : XINT (v2
));
1235 TOP
= (f1
== f2
? Qt
: Qnil
);
1238 TOP
= (XINT (v1
) == XINT (v2
) ? Qt
: Qnil
);
1245 BEFORE_POTENTIAL_GC ();
1247 TOP
= Fgtr (TOP
, v1
);
1248 AFTER_POTENTIAL_GC ();
1255 BEFORE_POTENTIAL_GC ();
1257 TOP
= Flss (TOP
, v1
);
1258 AFTER_POTENTIAL_GC ();
1265 BEFORE_POTENTIAL_GC ();
1267 TOP
= Fleq (TOP
, v1
);
1268 AFTER_POTENTIAL_GC ();
1275 BEFORE_POTENTIAL_GC ();
1277 TOP
= Fgeq (TOP
, v1
);
1278 AFTER_POTENTIAL_GC ();
1283 BEFORE_POTENTIAL_GC ();
1285 TOP
= Fminus (2, &TOP
);
1286 AFTER_POTENTIAL_GC ();
1295 XSETINT (v1
, - XINT (v1
));
1300 BEFORE_POTENTIAL_GC ();
1301 TOP
= Fminus (1, &TOP
);
1302 AFTER_POTENTIAL_GC ();
1308 BEFORE_POTENTIAL_GC ();
1310 TOP
= Fplus (2, &TOP
);
1311 AFTER_POTENTIAL_GC ();
1315 BEFORE_POTENTIAL_GC ();
1317 TOP
= Fmax (2, &TOP
);
1318 AFTER_POTENTIAL_GC ();
1322 BEFORE_POTENTIAL_GC ();
1324 TOP
= Fmin (2, &TOP
);
1325 AFTER_POTENTIAL_GC ();
1329 BEFORE_POTENTIAL_GC ();
1331 TOP
= Ftimes (2, &TOP
);
1332 AFTER_POTENTIAL_GC ();
1336 BEFORE_POTENTIAL_GC ();
1338 TOP
= Fquo (2, &TOP
);
1339 AFTER_POTENTIAL_GC ();
1345 BEFORE_POTENTIAL_GC ();
1347 TOP
= Frem (TOP
, v1
);
1348 AFTER_POTENTIAL_GC ();
1355 XSETFASTINT (v1
, PT
);
1361 BEFORE_POTENTIAL_GC ();
1362 TOP
= Fgoto_char (TOP
);
1363 AFTER_POTENTIAL_GC ();
1367 BEFORE_POTENTIAL_GC ();
1368 TOP
= Finsert (1, &TOP
);
1369 AFTER_POTENTIAL_GC ();
1374 BEFORE_POTENTIAL_GC ();
1376 TOP
= Finsert (op
, &TOP
);
1377 AFTER_POTENTIAL_GC ();
1383 XSETFASTINT (v1
, ZV
);
1391 XSETFASTINT (v1
, BEGV
);
1397 BEFORE_POTENTIAL_GC ();
1398 TOP
= Fchar_after (TOP
);
1399 AFTER_POTENTIAL_GC ();
1402 case Bfollowing_char
:
1405 BEFORE_POTENTIAL_GC ();
1406 v1
= Ffollowing_char ();
1407 AFTER_POTENTIAL_GC ();
1412 case Bpreceding_char
:
1415 BEFORE_POTENTIAL_GC ();
1416 v1
= Fprevious_char ();
1417 AFTER_POTENTIAL_GC ();
1422 case Bcurrent_column
:
1425 BEFORE_POTENTIAL_GC ();
1426 XSETFASTINT (v1
, current_column ());
1427 AFTER_POTENTIAL_GC ();
1433 BEFORE_POTENTIAL_GC ();
1434 TOP
= Findent_to (TOP
, Qnil
);
1435 AFTER_POTENTIAL_GC ();
1454 case Bcurrent_buffer
:
1455 PUSH (Fcurrent_buffer ());
1459 BEFORE_POTENTIAL_GC ();
1460 TOP
= Fset_buffer (TOP
);
1461 AFTER_POTENTIAL_GC ();
1464 case Binteractive_p
: /* Obsolete since 24.1. */
1465 PUSH (Finteractive_p ());
1469 BEFORE_POTENTIAL_GC ();
1470 TOP
= Fforward_char (TOP
);
1471 AFTER_POTENTIAL_GC ();
1475 BEFORE_POTENTIAL_GC ();
1476 TOP
= Fforward_word (TOP
);
1477 AFTER_POTENTIAL_GC ();
1480 case Bskip_chars_forward
:
1483 BEFORE_POTENTIAL_GC ();
1485 TOP
= Fskip_chars_forward (TOP
, v1
);
1486 AFTER_POTENTIAL_GC ();
1490 case Bskip_chars_backward
:
1493 BEFORE_POTENTIAL_GC ();
1495 TOP
= Fskip_chars_backward (TOP
, v1
);
1496 AFTER_POTENTIAL_GC ();
1501 BEFORE_POTENTIAL_GC ();
1502 TOP
= Fforward_line (TOP
);
1503 AFTER_POTENTIAL_GC ();
1510 BEFORE_POTENTIAL_GC ();
1511 CHECK_CHARACTER (TOP
);
1512 AFTER_POTENTIAL_GC ();
1514 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
1515 MAKE_CHAR_MULTIBYTE (c
);
1516 XSETFASTINT (TOP
, syntax_code_spec
[(int) SYNTAX (c
)]);
1520 case Bbuffer_substring
:
1523 BEFORE_POTENTIAL_GC ();
1525 TOP
= Fbuffer_substring (TOP
, v1
);
1526 AFTER_POTENTIAL_GC ();
1530 case Bdelete_region
:
1533 BEFORE_POTENTIAL_GC ();
1535 TOP
= Fdelete_region (TOP
, v1
);
1536 AFTER_POTENTIAL_GC ();
1540 case Bnarrow_to_region
:
1543 BEFORE_POTENTIAL_GC ();
1545 TOP
= Fnarrow_to_region (TOP
, v1
);
1546 AFTER_POTENTIAL_GC ();
1551 BEFORE_POTENTIAL_GC ();
1553 AFTER_POTENTIAL_GC ();
1557 BEFORE_POTENTIAL_GC ();
1558 TOP
= Fend_of_line (TOP
);
1559 AFTER_POTENTIAL_GC ();
1565 BEFORE_POTENTIAL_GC ();
1568 TOP
= Fset_marker (TOP
, v2
, v1
);
1569 AFTER_POTENTIAL_GC ();
1573 case Bmatch_beginning
:
1574 BEFORE_POTENTIAL_GC ();
1575 TOP
= Fmatch_beginning (TOP
);
1576 AFTER_POTENTIAL_GC ();
1580 BEFORE_POTENTIAL_GC ();
1581 TOP
= Fmatch_end (TOP
);
1582 AFTER_POTENTIAL_GC ();
1586 BEFORE_POTENTIAL_GC ();
1587 TOP
= Fupcase (TOP
);
1588 AFTER_POTENTIAL_GC ();
1592 BEFORE_POTENTIAL_GC ();
1593 TOP
= Fdowncase (TOP
);
1594 AFTER_POTENTIAL_GC ();
1597 case Bstringeqlsign
:
1600 BEFORE_POTENTIAL_GC ();
1602 TOP
= Fstring_equal (TOP
, v1
);
1603 AFTER_POTENTIAL_GC ();
1610 BEFORE_POTENTIAL_GC ();
1612 TOP
= Fstring_lessp (TOP
, v1
);
1613 AFTER_POTENTIAL_GC ();
1621 TOP
= Fequal (TOP
, v1
);
1628 BEFORE_POTENTIAL_GC ();
1630 TOP
= Fnthcdr (TOP
, v1
);
1631 AFTER_POTENTIAL_GC ();
1640 /* Exchange args and then do nth. */
1641 BEFORE_POTENTIAL_GC ();
1645 AFTER_POTENTIAL_GC ();
1648 while (--op
>= 0 && CONSP (v1
))
1655 BEFORE_POTENTIAL_GC ();
1657 TOP
= Felt (TOP
, v1
);
1658 AFTER_POTENTIAL_GC ();
1666 BEFORE_POTENTIAL_GC ();
1668 TOP
= Fmember (TOP
, v1
);
1669 AFTER_POTENTIAL_GC ();
1676 BEFORE_POTENTIAL_GC ();
1678 TOP
= Fassq (TOP
, v1
);
1679 AFTER_POTENTIAL_GC ();
1684 BEFORE_POTENTIAL_GC ();
1685 TOP
= Fnreverse (TOP
);
1686 AFTER_POTENTIAL_GC ();
1692 BEFORE_POTENTIAL_GC ();
1694 TOP
= Fsetcar (TOP
, v1
);
1695 AFTER_POTENTIAL_GC ();
1702 BEFORE_POTENTIAL_GC ();
1704 TOP
= Fsetcdr (TOP
, v1
);
1705 AFTER_POTENTIAL_GC ();
1713 TOP
= CAR_SAFE (v1
);
1721 TOP
= CDR_SAFE (v1
);
1726 BEFORE_POTENTIAL_GC ();
1728 TOP
= Fnconc (2, &TOP
);
1729 AFTER_POTENTIAL_GC ();
1733 TOP
= (NUMBERP (TOP
) ? Qt
: Qnil
);
1737 TOP
= INTEGERP (TOP
) ? Qt
: Qnil
;
1740 #ifdef BYTE_CODE_SAFE
1742 BEFORE_POTENTIAL_GC ();
1743 error ("set-mark is an obsolete bytecode");
1744 AFTER_POTENTIAL_GC ();
1747 BEFORE_POTENTIAL_GC ();
1748 error ("scan-buffer is an obsolete bytecode");
1749 AFTER_POTENTIAL_GC ();
1754 /* Actually this is Bstack_ref with offset 0, but we use Bdup
1755 for that instead. */
1756 /* case Bstack_ref: */
1759 /* Handy byte-codes for lexical binding. */
1766 Lisp_Object
*ptr
= top
- (op
- Bstack_ref
);
1772 Lisp_Object
*ptr
= top
- (FETCH
);
1778 Lisp_Object
*ptr
= top
- (FETCH2
);
1782 /* stack-set-0 = discard; stack-set-1 = discard-1-preserve-tos. */
1785 Lisp_Object
*ptr
= top
- (FETCH
);
1791 Lisp_Object
*ptr
= top
- (FETCH2
);
1807 #ifdef BYTE_CODE_SAFE
1812 if ((op
-= Bconstant
) >= const_length
)
1818 PUSH (vectorp
[op
- Bconstant
]);
1825 byte_stack_list
= byte_stack_list
->next
;
1827 /* Binds and unbinds are supposed to be compiled balanced. */
1828 if (SPECPDL_INDEX () != count
)
1829 #ifdef BYTE_CODE_SAFE
1830 error ("binding stack not balanced (serious byte compiler bug)");
1839 syms_of_bytecode (void)
1841 Qbytecode
= intern_c_string ("byte-code");
1842 staticpro (&Qbytecode
);
1844 defsubr (&Sbyte_code
);
1846 #ifdef BYTE_CODE_METER
1848 DEFVAR_LISP ("byte-code-meter", Vbyte_code_meter
,
1849 doc
: /* A vector of vectors which holds a histogram of byte-code usage.
1850 \(aref (aref byte-code-meter 0) CODE) indicates how many times the byte
1851 opcode CODE has been executed.
1852 \(aref (aref byte-code-meter CODE1) CODE2), where CODE1 is not 0,
1853 indicates how many times the byte opcodes CODE1 and CODE2 have been
1854 executed in succession. */);
1856 DEFVAR_BOOL ("byte-metering-on", byte_metering_on
,
1857 doc
: /* If non-nil, keep profiling information on byte code usage.
1858 The variable byte-code-meter indicates how often each byte opcode is used.
1859 If a symbol has a property named `byte-code-meter' whose value is an
1860 integer, it is incremented each time that symbol's function is called. */);
1862 byte_metering_on
= 0;
1863 Vbyte_code_meter
= Fmake_vector (make_number (256), make_number (0));
1864 Qbyte_code_meter
= intern_c_string ("byte-code-meter");
1865 staticpro (&Qbyte_code_meter
);
1869 XVECTOR (Vbyte_code_meter
)->contents
[i
] =
1870 Fmake_vector (make_number (256), make_number (0));