diff options
| author | Stefan Monnier | 2013-10-03 00:58:56 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2013-10-03 00:58:56 -0400 |
| commit | adf2aa61404305e58e71cde0193bb650aff2c4b3 (patch) | |
| tree | d6e6b4e5ab3b144a94daed2232cab798aadeb20a /src/alloc.c | |
| parent | 328a8179fec33f5a75e2cfe22e43f4ec0df770b7 (diff) | |
| download | emacs-adf2aa61404305e58e71cde0193bb650aff2c4b3.tar.gz emacs-adf2aa61404305e58e71cde0193bb650aff2c4b3.zip | |
Introduce new bytecodes for efficient catch/condition-case in lexbind.
* lisp/emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
Optimize under `condition-case' and `catch' if
byte-compile--use-old-handlers is nil.
(disassemble-offset): Handle new bytecodes.
* lisp/emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
(byte-pophandler): New byte codes.
(byte-goto-ops): Adjust accordingly.
(byte-compile--use-old-handlers): New var.
(byte-compile-catch): Use new byte codes depending on
byte-compile--use-old-handlers.
(byte-compile-condition-case--old): Rename from
byte-compile-condition-case.
(byte-compile-condition-case--new): New function.
(byte-compile-condition-case): New function that dispatches depending
on byte-compile--use-old-handlers.
(byte-compile-unwind-protect): Pass a function to byte-unwind-protect
when we can.
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
the new compilation scheme using the new byte-codes.
* src/alloc.c (Fgarbage_collect): Merge scans of handlerlist and catchlist,
and make them unconditional now that they're heap-allocated.
* src/bytecode.c (BYTE_CODES): Add Bpushcatch, Bpushconditioncase
and Bpophandler.
(bcall0): New function.
(exec_byte_code): Add corresponding cases. Improve error message when
encountering an invalid byte-code. Let Bunwind_protect accept
a function (rather than a list of expressions) as argument.
* src/eval.c (catchlist): Remove (merge with handlerlist).
(handlerlist, lisp_eval_depth): Not static any more.
(internal_catch, internal_condition_case, internal_condition_case_1)
(internal_condition_case_2, internal_condition_case_n):
Use PUSH_HANDLER.
(unwind_to_catch, Fthrow, Fsignal): Adjust to merged
handlerlist/catchlist.
(internal_lisp_condition_case): Use PUSH_HANDLER. Adjust to new
handlerlist which can only handle a single condition-case handler at
a time.
(find_handler_clause): Simplify since we only a single branch here
any more.
* src/lisp.h (struct handler): Merge struct handler and struct catchtag.
(PUSH_HANDLER): New macro.
(catchlist): Remove.
(handlerlist): Always declare.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/src/alloc.c b/src/alloc.c index 2d9828ffa79..6b07f0bd7b1 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -5370,23 +5370,15 @@ See Info node `(elisp)Garbage Collection'. */) | |||
| 5370 | mark_object (tail->var[i]); | 5370 | mark_object (tail->var[i]); |
| 5371 | } | 5371 | } |
| 5372 | mark_byte_stack (); | 5372 | mark_byte_stack (); |
| 5373 | #endif | ||
| 5373 | { | 5374 | { |
| 5374 | struct catchtag *catch; | ||
| 5375 | struct handler *handler; | 5375 | struct handler *handler; |
| 5376 | 5376 | for (handler = handlerlist; handler; handler = handler->next) | |
| 5377 | for (catch = catchlist; catch; catch = catch->next) | 5377 | { |
| 5378 | { | 5378 | mark_object (handler->tag_or_ch); |
| 5379 | mark_object (catch->tag); | 5379 | mark_object (handler->val); |
| 5380 | mark_object (catch->val); | 5380 | } |
| 5381 | } | ||
| 5382 | for (handler = handlerlist; handler; handler = handler->next) | ||
| 5383 | { | ||
| 5384 | mark_object (handler->handler); | ||
| 5385 | mark_object (handler->var); | ||
| 5386 | } | ||
| 5387 | } | 5381 | } |
| 5388 | #endif | ||
| 5389 | |||
| 5390 | #ifdef HAVE_WINDOW_SYSTEM | 5382 | #ifdef HAVE_WINDOW_SYSTEM |
| 5391 | mark_fringe_data (); | 5383 | mark_fringe_data (); |
| 5392 | #endif | 5384 | #endif |