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