gh-108216: Cleanup #include in internal header files (#108228)

* Add missing includes.
* Remove unused includes.
* Update old include/symbol names to newer names.
* Mention at least one included symbol.
* Sort includes.
* Update Tools/cases_generator/generate_cases.py used to generated
  pycore_opcode_metadata.h.
* Update Parser/asdl_c.py used to generate pycore_ast.h.
* Cleanup also includes in _testcapimodule.c and _testinternalcapi.c.
This commit is contained in:
Victor Stinner 2023-08-21 20:05:59 +02:00 committed by GitHub
parent b16ecb88e7
commit 0dd3fc2a64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
32 changed files with 91 additions and 94 deletions

View file

@ -8,19 +8,19 @@ extern "C" {
# error "this header requires Py_BUILD_CORE define"
#endif
#include "dynamic_annotations.h" /* _Py_ANNOTATE_MEMORY_ORDER */
#include "pyconfig.h"
#include "pyconfig.h" // HAVE_STD_ATOMIC
#include "dynamic_annotations.h" // _Py_ANNOTATE_MEMORY_ORDER
#ifdef HAVE_STD_ATOMIC
# include <stdatomic.h>
# include <stdatomic.h> // atomic_store_explicit()
#endif
#if defined(_MSC_VER)
#include <intrin.h>
#if defined(_M_IX86) || defined(_M_X64)
# include <immintrin.h>
#endif
# include <intrin.h> // _InterlockedExchange64()
# if defined(_M_IX86) || defined(_M_X64)
# include <immintrin.h> // _InterlockedExchange_HLEAcquire()
# endif
#endif
/* This is modeled after the atomics interface from C1x, according to