aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-04-25 00:14:46 -0700
committerPaul Eggert2011-04-25 00:14:46 -0700
commiteab3844f965646b62e242aa622754b86d1fd3444 (patch)
tree10246105e5facc5d61ccf797dfa05debdb1877c1 /src/ChangeLog
parent0df1eac54fdf82a80a7611fe421d94a23ebd4a0a (diff)
downloademacs-eab3844f965646b62e242aa622754b86d1fd3444.tar.gz
emacs-eab3844f965646b62e242aa622754b86d1fd3444.zip
lisp.h: Fix a problem with aliasing and vector headers.
GCC 4.6.0 optimizes based on type-based alias analysis. For example, if b is of type struct buffer * and v of type struct Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size != &v->size, and therefore "v->size = 1; b->size = 2; return v->size;" must therefore return 1. This assumption is incorrect for Emacs, since it type-puns struct Lisp_Vector * with many other types. To fix this problem, this patch adds a new type struct vector_header that documents the constraints on layout of vectors and pseudovectors, and helps optimizing compilers not get fooled by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons. * lisp.h (XVECTOR_SIZE): New convenience macro. All previous uses of XVECTOR (foo)->size replaced to use this macro, to avoid the hassle of writing XVECTOR (foo)->header.size. (XVECTOR_HEADER_SIZE): New macro, for use in XSETPSEUDOVECTOR. (XSETTYPED_PVECTYPE): New macro, specifying the name of the size member. (XSETPVECTYPE): Rewrite in terms of new macro. (XSETPVECTYPESIZE): New macro, specifying both type and size. This is a bit clearer, and further avoids the possibility of undesirable aliasing. (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size. (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XVECTOR_HEADER_SIZE. (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE, since Lisp_Subr is a special case (no "next" field). (ASIZE): Rewrite in terms of XVECTOR_SIZE. (struct vector_header): New type. (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the object, to help avoid aliasing. (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP. (SUBRP): Likewise, since Lisp_Subr is a special case. * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table): (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector): (struct Lisp_Hash_Table): Combine first two members into a single struct vector_header member. All uses of "size" and "next" members changed to be "header.size" and "header.next". * buffer.h (struct buffer): Likewise. * font.h (struct font_spec, struct font_entity, struct font): Likewise. * frame.h (struct frame): Likewise. * process.h (struct Lisp_Process): Likewise. * termhooks.h (struct terminal): Likewise. * window.c (struct save_window_data, struct saved_window): Likewise. * window.h (struct window): Likewise. * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector): Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems. * buffer.c (init_buffer_once): Likewise. * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a special case. * process.c (Fformat_network_address): Use local var for size, for brevity.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e6a9f9c69fb..e1548e9a094 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,58 @@
12011-04-25 Paul Eggert <eggert@cs.ucla.edu>
2
3 lisp.h: Fix a problem with aliasing and vector headers.
4 GCC 4.6.0 optimizes based on type-based alias analysis. For
5 example, if b is of type struct buffer * and v of type struct
6 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
7 != &v->size, and therefore "v->size = 1; b->size = 2; return
8 v->size;" must therefore return 1. This assumption is incorrect
9 for Emacs, since it type-puns struct Lisp_Vector * with many other
10 types. To fix this problem, this patch adds a new type struct
11 vector_header that documents the constraints on layout of vectors
12 and pseudovectors, and helps optimizing compilers not get fooled
13 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
14 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
15 * lisp.h (XVECTOR_SIZE): New convenience macro. All previous uses of
16 XVECTOR (foo)->size replaced to use this macro, to avoid the hassle
17 of writing XVECTOR (foo)->header.size.
18 (XVECTOR_HEADER_SIZE): New macro, for use in XSETPSEUDOVECTOR.
19 (XSETTYPED_PVECTYPE): New macro, specifying the name of the size
20 member.
21 (XSETPVECTYPE): Rewrite in terms of new macro.
22 (XSETPVECTYPESIZE): New macro, specifying both type and size.
23 This is a bit clearer, and further avoids the possibility of
24 undesirable aliasing.
25 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
26 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR
27 and XVECTOR_HEADER_SIZE.
28 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
29 since Lisp_Subr is a special case (no "next" field).
30 (ASIZE): Rewrite in terms of XVECTOR_SIZE.
31 (struct vector_header): New type.
32 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
33 object, to help avoid aliasing.
34 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
35 (SUBRP): Likewise, since Lisp_Subr is a special case.
36 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
37 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
38 (struct Lisp_Hash_Table): Combine first two members into a single
39 struct vector_header member. All uses of "size" and "next" members
40 changed to be "header.size" and "header.next".
41 * buffer.h (struct buffer): Likewise.
42 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
43 * frame.h (struct frame): Likewise.
44 * process.h (struct Lisp_Process): Likewise.
45 * termhooks.h (struct terminal): Likewise.
46 * window.c (struct save_window_data, struct saved_window): Likewise.
47 * window.h (struct window): Likewise.
48 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
49 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
50 * buffer.c (init_buffer_once): Likewise.
51 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
52 special case.
53 * process.c (Fformat_network_address): Use local var for size,
54 for brevity.
55
12011-04-24 Paul Eggert <eggert@cs.ucla.edu> 562011-04-24 Paul Eggert <eggert@cs.ucla.edu>
2 57
3 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR. 58 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.