1 /* Execution of byte code produced by bytecomp.el.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993 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 2, or (at your option)
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; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.
21 hacked on by jwz@lucid.com 17-jun-91
22 o added a compile-time switch to turn on simple sanity checking;
23 o put back the obsolete byte-codes for error-detection;
24 o added a new instruction, unbind_all, which I will use for
25 tail-recursion elimination;
26 o made temp_output_buffer_show be called with the right number
28 o made the new bytecodes be called with args in the right order;
29 o added metering support.
32 o added relative jump instructions;
33 o all conditionals now only do QUIT if they jump.
42 * define BYTE_CODE_SAFE to enable some minor sanity checking (useful for
43 * debugging the byte compiler...)
45 * define BYTE_CODE_METER to enable generation of a byte-op usage histogram.
47 /* #define BYTE_CODE_SAFE */
48 /* #define BYTE_CODE_METER */
51 #ifdef BYTE_CODE_METER
53 Lisp_Object Vbyte_code_meter
, Qbyte_code_meter
;
56 #define METER_2(code1, code2) \
57 XFASTINT (XVECTOR (XVECTOR (Vbyte_code_meter)->contents[(code1)]) \
60 #define METER_1(code) METER_2 (0, (code))
62 #define METER_CODE(last_code, this_code) \
64 if (byte_metering_on) \
66 if (METER_1 (this_code) != ((1<<VALBITS)-1)) \
67 METER_1 (this_code)++; \
69 && METER_2 (last_code, this_code) != ((1<<VALBITS)-1))\
70 METER_2 (last_code, this_code)++; \
74 #else /* no BYTE_CODE_METER */
76 #define METER_CODE(last_code, this_code)
78 #endif /* no BYTE_CODE_METER */
81 Lisp_Object Qbytecode
;
109 #define Bsymbol_value 0112
110 #define Bsymbol_function 0113
114 #define Bsubstring 0117
115 #define Bconcat2 0120
116 #define Bconcat3 0121
117 #define Bconcat4 0122
120 #define Beqlsign 0125
133 /* Was Bmark in v17. */
134 #define Bsave_current_buffer 0141
135 #define Bgoto_char 0142
137 #define Bpoint_max 0144
138 #define Bpoint_min 0145
139 #define Bchar_after 0146
140 #define Bfollowing_char 0147
141 #define Bpreceding_char 0150
142 #define Bcurrent_column 0151
143 #define Bindent_to 0152
144 #define Bscan_buffer 0153 /* No longer generated as of v18 */
149 #define Bcurrent_buffer 0160
150 #define Bset_buffer 0161
151 #define Bread_char 0162 /* No longer generated as of v19 */
152 #define Bset_mark 0163 /* this loser is no longer generated as of v18 */
153 #define Binteractive_p 0164 /* Needed since interactive-p takes unevalled args */
155 #define Bforward_char 0165
156 #define Bforward_word 0166
157 #define Bskip_chars_forward 0167
158 #define Bskip_chars_backward 0170
159 #define Bforward_line 0171
160 #define Bchar_syntax 0172
161 #define Bbuffer_substring 0173
162 #define Bdelete_region 0174
163 #define Bnarrow_to_region 0175
165 #define Bend_of_line 0177
167 #define Bconstant2 0201
169 #define Bgotoifnil 0203
170 #define Bgotoifnonnil 0204
171 #define Bgotoifnilelsepop 0205
172 #define Bgotoifnonnilelsepop 0206
174 #define Bdiscard 0210
177 #define Bsave_excursion 0212
178 #define Bsave_window_excursion 0213
179 #define Bsave_restriction 0214
182 #define Bunwind_protect 0216
183 #define Bcondition_case 0217
184 #define Btemp_output_buffer_setup 0220
185 #define Btemp_output_buffer_show 0221
187 #define Bunbind_all 0222
189 #define Bset_marker 0223
190 #define Bmatch_beginning 0224
191 #define Bmatch_end 0225
193 #define Bdowncase 0227
195 #define Bstringeqlsign 0230
196 #define Bstringlss 0231
202 #define Bnreverse 0237
205 #define Bcar_safe 0242
206 #define Bcdr_safe 0243
210 #define Bnumberp 0247
211 #define Bintegerp 0250
214 #define BRgotoifnil 0253
215 #define BRgotoifnonnil 0254
216 #define BRgotoifnilelsepop 0255
217 #define BRgotoifnonnilelsepop 0256
220 #define BconcatN 0260
221 #define BinsertN 0261
223 #define Bconstant 0300
224 #define CONSTANTLIM 0100
226 /* Fetch the next byte from the bytecode stream */
230 /* Fetch two bytes from the bytecode stream
231 and make a 16-bit number out of them */
233 #define FETCH2 (op = FETCH, op + (FETCH << 8))
235 /* Push x onto the execution stack. */
237 /* This used to be #define PUSH(x) (*++stackp = (x))
238 This oddity is necessary because Alliant can't be bothered to
239 compile the preincrement operator properly, as of 4/91. -JimB */
240 #define PUSH(x) (stackp++, *stackp = (x))
242 /* Pop a value off the execution stack. */
244 #define POP (*stackp--)
246 /* Discard n values from the execution stack. */
248 #define DISCARD(n) (stackp -= (n))
250 /* Get the value which is at the top of the execution stack, but don't pop it. */
252 #define TOP (*stackp)
254 /* Garbage collect if we have consed enough since the last time.
255 We do this at every branch, to avoid loops that never GC. */
258 if (consing_since_gc > gc_cons_threshold) \
260 Fgarbage_collect (); \
261 HANDLE_RELOCATION (); \
265 /* Relocate BYTESTR if there has been a GC recently. */
266 #define HANDLE_RELOCATION() \
267 if (! EQ (string_saved, bytestr)) \
269 pc = pc - XSTRING (string_saved)->data + XSTRING (bytestr)->data; \
270 string_saved = bytestr; \
274 /* Check for jumping out of range. */
275 #define CHECK_RANGE(ARG) \
276 if (ARG >= bytestr_length) abort ()
278 DEFUN ("byte-code", Fbyte_code
, Sbyte_code
, 3, 3, 0,
279 "Function used internally in byte-compiled code.\n\
280 The first argument, BYTESTR, is a string of byte code;\n\
281 the second, VECTOR, a vector of constants;\n\
282 the third, MAXDEPTH, the maximum stack depth used in this function.\n\
283 If the third argument is incorrect, Emacs may crash.")
284 (bytestr
, vector
, maxdepth
)
285 Lisp_Object bytestr
, vector
, maxdepth
;
287 struct gcpro gcpro1
, gcpro2
, gcpro3
;
288 int count
= specpdl_ptr
- specpdl
;
289 #ifdef BYTE_CODE_METER
296 register Lisp_Object
*stackp
;
298 register Lisp_Object v1
, v2
;
299 register Lisp_Object
*vectorp
= XVECTOR (vector
)->contents
;
300 #ifdef BYTE_CODE_SAFE
301 register int const_length
= XVECTOR (vector
)->size
;
303 /* Copy of BYTESTR, saved so we can tell if BYTESTR was relocated. */
304 Lisp_Object string_saved
;
305 /* Cached address of beginning of string,
306 valid if BYTESTR equals STRING_SAVED. */
307 register unsigned char *strbeg
;
308 int bytestr_length
= XSTRING (bytestr
)->size
;
310 CHECK_STRING (bytestr
, 0);
311 if (!VECTORP (vector
))
312 vector
= wrong_type_argument (Qvectorp
, vector
);
313 CHECK_NUMBER (maxdepth
, 2);
315 stackp
= (Lisp_Object
*) alloca (XFASTINT (maxdepth
) * sizeof (Lisp_Object
));
316 bzero (stackp
, XFASTINT (maxdepth
) * sizeof (Lisp_Object
));
317 GCPRO3 (bytestr
, vector
, *stackp
);
318 gcpro3
.nvars
= XFASTINT (maxdepth
);
322 stacke
= stackp
+ XFASTINT (maxdepth
);
324 /* Initialize the saved pc-pointer for fetching from the string. */
325 string_saved
= bytestr
;
326 pc
= XSTRING (string_saved
)->data
;
330 #ifdef BYTE_CODE_SAFE
332 error ("Byte code stack overflow (byte compiler bug), pc %d, depth %d",
333 pc
- XSTRING (string_saved
)->data
, stacke
- stackp
);
335 error ("Byte code stack underflow (byte compiler bug), pc %d",
336 pc
- XSTRING (string_saved
)->data
);
339 /* Update BYTESTR if we had a garbage collection. */
340 HANDLE_RELOCATION ();
342 #ifdef BYTE_CODE_METER
344 this_op
= op
= FETCH
;
345 METER_CODE (prev_op
, op
);
359 case Bvarref
: case Bvarref
+1: case Bvarref
+2: case Bvarref
+3:
360 case Bvarref
+4: case Bvarref
+5:
365 v2
= Fsymbol_value (v1
);
368 v2
= XSYMBOL (v1
)->value
;
369 if (MISCP (v2
) || EQ (v2
, Qunbound
))
370 v2
= Fsymbol_value (v1
);
383 case Bvarset
: case Bvarset
+1: case Bvarset
+2: case Bvarset
+3:
384 case Bvarset
+4: case Bvarset
+5:
387 Fset (vectorp
[op
], POP
);
398 case Bvarbind
: case Bvarbind
+1: case Bvarbind
+2: case Bvarbind
+3:
399 case Bvarbind
+4: case Bvarbind
+5:
402 specbind (vectorp
[op
], POP
);
413 case Bcall
: case Bcall
+1: case Bcall
+2: case Bcall
+3:
414 case Bcall
+4: case Bcall
+5:
418 #ifdef BYTE_CODE_METER
419 if (byte_metering_on
&& SYMBOLP (TOP
))
422 v2
= Fget (v1
, Qbyte_code_meter
);
424 && XINT (v2
) != ((1<<VALBITS
)-1))
426 XSETINT (v2
, XINT (v2
) + 1);
427 Fput (v1
, Qbyte_code_meter
, v2
);
431 TOP
= Ffuncall (op
+ 1, &TOP
);
442 case Bunbind
: case Bunbind
+1: case Bunbind
+2: case Bunbind
+3:
443 case Bunbind
+4: case Bunbind
+5:
446 unbind_to (specpdl_ptr
- specpdl
- op
, Qnil
);
450 /* To unbind back to the beginning of this frame. Not used yet,
451 but will be needed for tail-recursion elimination. */
452 unbind_to (count
, Qnil
);
458 op
= FETCH2
; /* pc = FETCH2 loses since FETCH2 contains pc++ */
460 pc
= XSTRING (string_saved
)->data
+ op
;
470 pc
= XSTRING (string_saved
)->data
+ op
;
481 pc
= XSTRING (string_saved
)->data
+ op
;
485 case Bgotoifnilelsepop
:
492 pc
= XSTRING (string_saved
)->data
+ op
;
497 case Bgotoifnonnilelsepop
:
504 pc
= XSTRING (string_saved
)->data
+ op
;
512 pc
+= (int) *pc
- 127;
520 pc
+= (int) *pc
- 128;
530 pc
+= (int) *pc
- 128;
535 case BRgotoifnilelsepop
:
546 case BRgotoifnonnilelsepop
:
571 PUSH (vectorp
[FETCH2
]);
574 case Bsave_excursion
:
575 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
578 case Bsave_current_buffer
:
579 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
582 case Bsave_window_excursion
:
583 TOP
= Fsave_window_excursion (TOP
);
586 case Bsave_restriction
:
587 record_unwind_protect (save_restriction_restore
, save_restriction_save ());
592 TOP
= internal_catch (TOP
, Feval
, v1
);
595 case Bunwind_protect
:
596 record_unwind_protect (0, POP
);
597 (specpdl_ptr
- 1)->symbol
= Qnil
;
600 case Bcondition_case
:
602 v1
= Fcons (POP
, v1
);
603 TOP
= Fcondition_case (Fcons (TOP
, v1
));
606 case Btemp_output_buffer_setup
:
607 temp_output_buffer_setup (XSTRING (TOP
)->data
);
608 TOP
= Vstandard_output
;
611 case Btemp_output_buffer_show
:
613 temp_output_buffer_show (TOP
);
615 /* pop binding of standard-output */
616 unbind_to (specpdl_ptr
- specpdl
- 1, Qnil
);
623 CHECK_NUMBER (v2
, 0);
629 v1
= XCONS (v1
)->cdr
;
633 v1
= wrong_type_argument (Qlistp
, v1
);
642 TOP
= SYMBOLP (TOP
) ? Qt
: Qnil
;
646 TOP
= CONSP (TOP
) ? Qt
: Qnil
;
650 TOP
= STRINGP (TOP
) ? Qt
: Qnil
;
654 TOP
= CONSP (TOP
) || NILP (TOP
) ? Qt
: Qnil
;
659 TOP
= EQ (v1
, TOP
) ? Qt
: Qnil
;
664 TOP
= Fmemq (TOP
, v1
);
668 TOP
= NILP (TOP
) ? Qt
: Qnil
;
674 if (CONSP (v1
)) TOP
= XCONS (v1
)->car
;
675 else if (NILP (v1
)) TOP
= Qnil
;
676 else Fcar (wrong_type_argument (Qlistp
, v1
));
681 if (CONSP (v1
)) TOP
= XCONS (v1
)->cdr
;
682 else if (NILP (v1
)) TOP
= Qnil
;
683 else Fcdr (wrong_type_argument (Qlistp
, v1
));
688 TOP
= Fcons (TOP
, v1
);
692 TOP
= Fcons (TOP
, Qnil
);
697 TOP
= Fcons (TOP
, Fcons (v1
, Qnil
));
702 TOP
= Flist (3, &TOP
);
707 TOP
= Flist (4, &TOP
);
713 TOP
= Flist (op
, &TOP
);
722 TOP
= Faref (TOP
, v1
);
727 TOP
= Faset (TOP
, v1
, v2
);
731 TOP
= Fsymbol_value (TOP
);
734 case Bsymbol_function
:
735 TOP
= Fsymbol_function (TOP
);
740 TOP
= Fset (TOP
, v1
);
745 TOP
= Ffset (TOP
, v1
);
750 TOP
= Fget (TOP
, v1
);
755 TOP
= Fsubstring (TOP
, v1
, v2
);
760 TOP
= Fconcat (2, &TOP
);
765 TOP
= Fconcat (3, &TOP
);
770 TOP
= Fconcat (4, &TOP
);
776 TOP
= Fconcat (op
, &TOP
);
783 XSETINT (v1
, XINT (v1
) - 1);
794 XSETINT (v1
, XINT (v1
) + 1);
803 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (v1
, 0);
804 CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (v2
, 0);
805 #ifdef LISP_FLOAT_TYPE
806 if (FLOATP (v1
) || FLOATP (v2
))
810 f1
= (FLOATP (v1
) ? XFLOAT (v1
)->data
: XINT (v1
));
811 f2
= (FLOATP (v2
) ? XFLOAT (v2
)->data
: XINT (v2
));
812 TOP
= (f1
== f2
? Qt
: Qnil
);
816 TOP
= (XINT (v1
) == XINT (v2
) ? Qt
: Qnil
);
821 TOP
= Fgtr (TOP
, v1
);
826 TOP
= Flss (TOP
, v1
);
831 TOP
= Fleq (TOP
, v1
);
836 TOP
= Fgeq (TOP
, v1
);
841 TOP
= Fminus (2, &TOP
);
848 XSETINT (v1
, - XINT (v1
));
852 TOP
= Fminus (1, &TOP
);
857 TOP
= Fplus (2, &TOP
);
862 TOP
= Fmax (2, &TOP
);
867 TOP
= Fmin (2, &TOP
);
872 TOP
= Ftimes (2, &TOP
);
877 TOP
= Fquo (2, &TOP
);
882 TOP
= Frem (TOP
, v1
);
886 XSETFASTINT (v1
, PT
);
891 TOP
= Fgoto_char (TOP
);
895 TOP
= Finsert (1, &TOP
);
901 TOP
= Finsert (op
, &TOP
);
905 XSETFASTINT (v1
, ZV
);
910 XSETFASTINT (v1
, BEGV
);
915 TOP
= Fchar_after (TOP
);
918 case Bfollowing_char
:
919 v1
= Ffollowing_char ();
923 case Bpreceding_char
:
924 v1
= Fprevious_char ();
928 case Bcurrent_column
:
929 XSETFASTINT (v1
, current_column ());
934 TOP
= Findent_to (TOP
, Qnil
);
953 case Bcurrent_buffer
:
954 PUSH (Fcurrent_buffer ());
958 TOP
= Fset_buffer (TOP
);
962 PUSH (Fread_char ());
967 PUSH (Finteractive_p ());
971 TOP
= Fforward_char (TOP
);
975 TOP
= Fforward_word (TOP
);
978 case Bskip_chars_forward
:
980 TOP
= Fskip_chars_forward (TOP
, v1
);
983 case Bskip_chars_backward
:
985 TOP
= Fskip_chars_backward (TOP
, v1
);
989 TOP
= Fforward_line (TOP
);
993 CHECK_NUMBER (TOP
, 0);
995 syntax_code_spec
[(int) SYNTAX (XINT (TOP
))]);
998 case Bbuffer_substring
:
1000 TOP
= Fbuffer_substring (TOP
, v1
);
1003 case Bdelete_region
:
1005 TOP
= Fdelete_region (TOP
, v1
);
1008 case Bnarrow_to_region
:
1010 TOP
= Fnarrow_to_region (TOP
, v1
);
1018 TOP
= Fend_of_line (TOP
);
1024 TOP
= Fset_marker (TOP
, v2
, v1
);
1027 case Bmatch_beginning
:
1028 TOP
= Fmatch_beginning (TOP
);
1032 TOP
= Fmatch_end (TOP
);
1036 TOP
= Fupcase (TOP
);
1040 TOP
= Fdowncase (TOP
);
1043 case Bstringeqlsign
:
1045 TOP
= Fstring_equal (TOP
, v1
);
1050 TOP
= Fstring_lessp (TOP
, v1
);
1055 TOP
= Fequal (TOP
, v1
);
1060 TOP
= Fnthcdr (TOP
, v1
);
1066 /* Exchange args and then do nth. */
1072 TOP
= Felt (TOP
, v1
);
1077 TOP
= Fmember (TOP
, v1
);
1082 TOP
= Fassq (TOP
, v1
);
1086 TOP
= Fnreverse (TOP
);
1091 TOP
= Fsetcar (TOP
, v1
);
1096 TOP
= Fsetcdr (TOP
, v1
);
1102 TOP
= XCONS (v1
)->car
;
1110 TOP
= XCONS (v1
)->cdr
;
1117 TOP
= Fnconc (2, &TOP
);
1121 TOP
= (NUMBERP (TOP
) ? Qt
: Qnil
);
1125 TOP
= INTEGERP (TOP
) ? Qt
: Qnil
;
1128 #ifdef BYTE_CODE_SAFE
1130 error ("set-mark is an obsolete bytecode");
1133 error ("scan-buffer is an obsolete bytecode");
1136 error ("mark is an obsolete bytecode");
1141 #ifdef BYTE_CODE_SAFE
1143 error ("unknown bytecode %d (byte compiler bug)", op
);
1144 if ((op
-= Bconstant
) >= const_length
)
1145 error ("no constant number %d (byte compiler bug)", op
);
1148 PUSH (vectorp
[op
- Bconstant
]);
1155 /* Binds and unbinds are supposed to be compiled balanced. */
1156 if (specpdl_ptr
- specpdl
!= count
)
1157 #ifdef BYTE_CODE_SAFE
1158 error ("binding stack not balanced (serious byte compiler bug)");
1167 Qbytecode
= intern ("byte-code");
1168 staticpro (&Qbytecode
);
1170 defsubr (&Sbyte_code
);
1172 #ifdef BYTE_CODE_METER
1174 DEFVAR_LISP ("byte-code-meter", &Vbyte_code_meter
,
1175 "A vector of vectors which holds a histogram of byte-code usage.\n\
1176 (aref (aref byte-code-meter 0) CODE) indicates how many times the byte\n\
1177 opcode CODE has been executed.\n\
1178 (aref (aref byte-code-meter CODE1) CODE2), where CODE1 is not 0,\n\
1179 indicates how many times the byte opcodes CODE1 and CODE2 have been\n\
1180 executed in succession.");
1181 DEFVAR_BOOL ("byte-metering-on", &byte_metering_on
,
1182 "If non-nil, keep profiling information on byte code usage.\n\
1183 The variable byte-code-meter indicates how often each byte opcode is used.\n\
1184 If a symbol has a property named `byte-code-meter' whose value is an\n\
1185 integer, it is incremented each time that symbol's function is called.");
1187 byte_metering_on
= 0;
1188 Vbyte_code_meter
= Fmake_vector (make_number (256), make_number (0));
1189 Qbyte_code_meter
= intern ("byte-code-meter");
1190 staticpro (&Qbyte_code_meter
);
1194 XVECTOR (Vbyte_code_meter
)->contents
[i
] =
1195 Fmake_vector (make_number (256), make_number (0));