1a3471
commit 0b91f8a668201fc58fa732b8acc496caedfdbae0
1a3471
Author: Florian Weimer <fw@deneb.enyo.de>
1a3471
Date:   Sun Apr 29 12:18:33 2018 -0700
1a3471
1a3471
    Indicate that _PyGC_Head is only 8-byte aligned. (closes bpo-33374)
1a3471
1a3471
    By spec, the "long double" in _PyGC_Head requires the union to always be 16-byte
1a3471
    aligned. However, obmalloc only yields 8-byte alignment. Compilers including GCC
1a3471
    8 are starting to use alignment information to do store-merging. So, the "long
1a3471
    double" needs to be changed to a simple "double" as was long ago done in Python
1a3471
    3 by e348c8d154cf6342c79d627ebfe89dfe9de23817. For 2.7, we need to add some
1a3471
    dummy padding to make sure _PyGC_Head stays the same size.
1a3471
1a3471
diff --git a/Include/objimpl.h b/Include/objimpl.h
1a3471
index 5f28683329..cbf6bc3f87 100644
1a3471
--- Python-2.7.13/Include/objimpl.h
1a3471
+++ Python-2.7.13/Include/objimpl.h
1a3471
@@ -248,6 +248,20 @@ PyAPI_FUNC(PyVarObject *) _PyObject_GC_Resize(PyVarObject *, Py_ssize_t);
1a3471
 /* for source compatibility with 2.2 */
1a3471
 #define _PyObject_GC_Del PyObject_GC_Del
1a3471
1a3471
+/*
1a3471
+ * Former over-aligned definition of PyGC_Head, used to compute the size of the
1a3471
+ * padding for the new version below.
1a3471
+ */
1a3471
+union _gc_head;
1a3471
+union _gc_head_old {
1a3471
+    struct {
1a3471
+        union _gc_head_old *gc_next;
1a3471
+        union _gc_head_old *gc_prev;
1a3471
+        Py_ssize_t gc_refs;
1a3471
+    } gc;
1a3471
+    long double dummy;
1a3471
+};
1a3471
+
1a3471
 /* GC information is stored BEFORE the object structure. */
1a3471
 typedef union _gc_head {
1a3471
     struct {
1a3471
@@ -255,7 +269,8 @@ typedef union _gc_head {
1a3471
         union _gc_head *gc_prev;
1a3471
         Py_ssize_t gc_refs;
1a3471
     } gc;
1a3471
-    long double dummy;  /* force worst-case alignment */
1a3471
+    double dummy; /* Force at least 8-byte alignment. */
1a3471
+    char dummy_padding[sizeof(union _gc_head_old)];
1a3471
 } PyGC_Head;
1a3471
1a3471
 extern PyGC_Head *_PyGC_generation0;
1a3471
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-04-29-12-07-00.bpo-33374.-xegL6.rst b/Misc/NEWS.d/next/Core and Builtins/2018-04-29-12-07-00.bpo-33374.-xegL6.rst
1a3471
new file mode 100644
1a3471
index 0000000000..9ec1a605c8
1a3471
--- /dev/null
1a3471
+++ Python-2.7.13/Misc/NEWS.d/next/Core and Builtins/2018-04-29-12-07-00.bpo-33374.-xegL6.rst
1a3471
@@ -0,0 +1,3 @@
1a3471
+Tweak the definition of PyGC_Head, so compilers do not believe it is always
1a3471
+16-byte aligned on x86. This prevents crashes with more aggressive
1a3471
+optimizations present in GCC 8.