index
:
forks/emacs.git
local/emacs-29
local/emacs30
master
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
bytecode.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
; Add 2022 to copyright years.
Eli Zaretskii
2022-01-01
1
-1
/
+1
*
Update copyright year to 2021
Paul Eggert
2021-01-01
1
-1
/
+1
*
Rehash hash tables eagerly after loading a dump
Pip Cet
2020-08-11
1
-1
/
+0
*
Drop support for -fcheck-pointer-bounds
Paul Eggert
2020-08-04
1
-7
/
+4
*
Hoist some byte-code checking out of eval
Paul Eggert
2020-05-19
1
-13
/
+15
*
Prefer more inline functions in character.h
Paul Eggert
2020-04-17
1
-1
/
+1
*
Mark 'catch' and 'condition-case' bytecodes as obsolete
Mattias Engdegård
2020-01-05
1
-4
/
+4
*
Update copyright year to 2020
Paul Eggert
2020-01-01
1
-1
/
+1
*
Avoid overexposing fixnums for hash codes
Paul Eggert
2019-07-22
1
-10
/
+4
*
Fix crash if user test munges hash table
Paul Eggert
2019-07-20
1
-3
/
+2
*
Simplify hashfn/cmpfn calling convention
Paul Eggert
2019-07-20
1
-4
/
+4
*
src/bytecode.c (exec_byte_code) Unroll Blist3 and Blist4
Alexander Gramiak
2019-06-23
1
-2
/
+2
*
Fix bytecode optimization typo
Paul Eggert
2019-05-04
1
-1
/
+1
*
Add portable dumper
Daniel Colascione
2019-01-15
1
-1
/
+2
*
Merge from origin/emacs-26
Paul Eggert
2018-12-31
1
-1
/
+1
|
\
|
*
Update copyright year to 2019
Paul Eggert
2019-01-01
1
-1
/
+1
|
*
Refer to bytecode constant vectors (Bug#33014)
Paul Eggert
2018-10-30
1
-0
/
+1
*
|
Add make_vector and make_nil_vector
Paul Eggert
2018-12-09
1
-7
/
+3
*
|
Improve fix for Bug#33014
Paul Eggert
2018-10-30
1
-0
/
+1
*
|
Fix bignum bugs with nth, elt, =
Paul Eggert
2018-08-21
1
-26
/
+13
*
|
More macro renamings for bignum
Tom Tromey
2018-08-07
1
-19
/
+19
*
|
Bignum fixes for byte-compiler and bytecode interpreter
Tom Tromey
2018-07-12
1
-5
/
+11
*
|
Rename integerp->fixnum, etc, in preparation for bignums
Tom Tromey
2018-07-12
1
-24
/
+24
*
|
New function record_unwind_protect_excursion
Paul Eggert
2018-06-07
1
-2
/
+1
*
|
Merge from origin/emacs-26
Paul Eggert
2018-01-01
1
-1
/
+1
|
\
|
|
*
Update copyright year to 2018
Paul Eggert
2018-01-01
1
-1
/
+1
*
|
Narrow pointer bounds when appropriate
Paul Eggert
2017-12-12
1
-6
/
+9
|
/
*
Harden exec_byte_code against redefining 'error'
Paul Eggert
2017-11-26
1
-4
/
+2
*
Use alignas to fix GCALIGN-related bugs
Paul Eggert
2017-11-13
1
-2
/
+2
*
Prefer HTTPS to FTP and HTTP in documentation
Paul Eggert
2017-09-13
1
-1
/
+1
*
Don’t use -Woverride-init
Paul Eggert
2017-07-05
1
-12
/
+0
*
Fix rounding errors in <, =, etc.
Paul Eggert
2017-03-02
1
-9
/
+5
*
Add sanity checks for Bswitch hash tables
Paul Eggert
2017-02-16
1
-12
/
+17
*
src/bytecode.c (exec_byte_code): Make hash_code a Lisp_Object.
Vibhav Pant
2017-02-11
1
-2
/
+4
*
src/bytecode.c (exec_byte_code): Remove unnecessary (e)assert.
Vibhav Pant
2017-02-11
1
-4
/
+2
*
; src/bytecode.c (exec_byte_code): Refactor byte-switch code.
Vibhav Pant
2017-02-11
1
-21
/
+14
*
src/bytecode.c: Add optional sanity check for jump tables.
Vibhav Pant
2017-02-11
1
-3
/
+4
*
* src/bytecode.c: Refactor to follow GNU coding standards
Vibhav Pant
2017-02-11
1
-14
/
+10
*
src/bytecode.c: Avoid comparing values unnecessarily in Bswitch
Vibhav Pant
2017-02-10
1
-2
/
+4
*
src/bytecode.c (exec_byte_code): Remove unneeded assert.
Vibhav Pant
2017-02-09
1
-6
/
+4
*
bytecode.c (exec_byte_code): Use h->count instead of HASH_TABLE_SIZE
Vibhav Pant
2017-02-09
1
-2
/
+9
*
bytecode.c (exec_byte_code): don't check hash code in linear search.
Vibhav Pant
2017-02-09
1
-2
/
+4
*
Improve byte-switch execution.
Vibhav Pant
2017-02-09
1
-8
/
+27
*
Merge remote-tracking branch 'origin/master' into feature/byte-switch
Vibhav Pant
2017-02-05
1
-10
/
+10
|
\
|
*
Revamp quitting and fix infloops
Paul Eggert
2017-02-01
1
-6
/
+10
|
*
Remove immediate_quit.
Paul Eggert
2017-02-01
1
-4
/
+0
*
|
Merge remote-tracking branch 'origin/master' into feature/byte-switch
Vibhav Pant
2017-01-30
1
-1
/
+1
|
\
|
|
*
Replace QUIT with maybe_quit
Paul Eggert
2017-01-25
1
-1
/
+1
*
|
Add type checking for Bswitch, when enabled at compile time.
Vibhav Pant
2017-01-19
1
-0
/
+3
*
|
* src/bytecode.c: (exec_byte_code) Use hash_lookup for Bswitch
Vibhav Pant
2017-01-18
1
-2
/
+4
[next]