gh-111968: Unify freelist naming schema to Eric's suggestion (gh-114581)

This commit is contained in:
Donghee Na 2024-01-27 00:25:16 +09:00 committed by GitHub
parent 504334c7be
commit 699779256e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 25 additions and 25 deletions

View File

@ -103,13 +103,13 @@ struct _Py_object_stack_state {
}; };
typedef struct _Py_freelist_state { typedef struct _Py_freelist_state {
struct _Py_float_state float_state; struct _Py_float_state floats;
struct _Py_tuple_state tuple_state; struct _Py_tuple_state tuples;
struct _Py_list_state list_state; struct _Py_list_state lists;
struct _Py_slice_state slice_state; struct _Py_slice_state slices;
struct _Py_context_state context_state; struct _Py_context_state contexts;
struct _Py_async_gen_state async_gen_state; struct _Py_async_gen_state async_gens;
struct _Py_object_stack_state object_stack_state; struct _Py_object_stack_state object_stacks;
} _PyFreeListState; } _PyFreeListState;
#ifdef __cplusplus #ifdef __cplusplus

View File

@ -32,7 +32,7 @@ get_float_state(void)
{ {
_PyFreeListState *state = _PyFreeListState_GET(); _PyFreeListState *state = _PyFreeListState_GET();
assert(state != NULL); assert(state != NULL);
return &state->float_state; return &state->floats;
} }
#endif #endif
@ -1993,7 +1993,7 @@ void
_PyFloat_ClearFreeList(_PyFreeListState *freelist_state, int is_finalization) _PyFloat_ClearFreeList(_PyFreeListState *freelist_state, int is_finalization)
{ {
#ifdef WITH_FREELISTS #ifdef WITH_FREELISTS
struct _Py_float_state *state = &freelist_state->float_state; struct _Py_float_state *state = &freelist_state->floats;
PyFloatObject *f = state->free_list; PyFloatObject *f = state->free_list;
while (f != NULL) { while (f != NULL) {
PyFloatObject *next = (PyFloatObject*) Py_TYPE(f); PyFloatObject *next = (PyFloatObject*) Py_TYPE(f);

View File

@ -1633,7 +1633,7 @@ static struct _Py_async_gen_state *
get_async_gen_state(void) get_async_gen_state(void)
{ {
_PyFreeListState *state = _PyFreeListState_GET(); _PyFreeListState *state = _PyFreeListState_GET();
return &state->async_gen_state; return &state->async_gens;
} }
#endif #endif
@ -1659,7 +1659,7 @@ void
_PyAsyncGen_ClearFreeLists(_PyFreeListState *freelist_state, int is_finalization) _PyAsyncGen_ClearFreeLists(_PyFreeListState *freelist_state, int is_finalization)
{ {
#ifdef WITH_FREELISTS #ifdef WITH_FREELISTS
struct _Py_async_gen_state *state = &freelist_state->async_gen_state; struct _Py_async_gen_state *state = &freelist_state->async_gens;
while (state->value_numfree > 0) { while (state->value_numfree > 0) {
_PyAsyncGenWrappedValue *o; _PyAsyncGenWrappedValue *o;

View File

@ -26,7 +26,7 @@ get_list_state(void)
{ {
_PyFreeListState *state = _PyFreeListState_GET(); _PyFreeListState *state = _PyFreeListState_GET();
assert(state != NULL); assert(state != NULL);
return &state->list_state; return &state->lists;
} }
#endif #endif
@ -124,7 +124,7 @@ void
_PyList_ClearFreeList(_PyFreeListState *freelist_state, int is_finalization) _PyList_ClearFreeList(_PyFreeListState *freelist_state, int is_finalization)
{ {
#ifdef WITH_FREELISTS #ifdef WITH_FREELISTS
struct _Py_list_state *state = &freelist_state->list_state; struct _Py_list_state *state = &freelist_state->lists;
while (state->numfree > 0) { while (state->numfree > 0) {
PyListObject *op = state->free_list[--state->numfree]; PyListObject *op = state->free_list[--state->numfree];
assert(PyList_CheckExact(op)); assert(PyList_CheckExact(op));

View File

@ -106,9 +106,9 @@ PyObject _Py_EllipsisObject = _PyObject_HEAD_INIT(&PyEllipsis_Type);
void _PySlice_ClearCache(_PyFreeListState *state) void _PySlice_ClearCache(_PyFreeListState *state)
{ {
#ifdef WITH_FREELISTS #ifdef WITH_FREELISTS
PySliceObject *obj = state->slice_state.slice_cache; PySliceObject *obj = state->slices.slice_cache;
if (obj != NULL) { if (obj != NULL) {
state->slice_state.slice_cache = NULL; state->slices.slice_cache = NULL;
PyObject_GC_Del(obj); PyObject_GC_Del(obj);
} }
#endif #endif
@ -132,9 +132,9 @@ _PyBuildSlice_Consume2(PyObject *start, PyObject *stop, PyObject *step)
PySliceObject *obj; PySliceObject *obj;
#ifdef WITH_FREELISTS #ifdef WITH_FREELISTS
_PyFreeListState *state = _PyFreeListState_GET(); _PyFreeListState *state = _PyFreeListState_GET();
if (state->slice_state.slice_cache != NULL) { if (state->slices.slice_cache != NULL) {
obj = state->slice_state.slice_cache; obj = state->slices.slice_cache;
state->slice_state.slice_cache = NULL; state->slices.slice_cache = NULL;
_Py_NewReference((PyObject *)obj); _Py_NewReference((PyObject *)obj);
} }
else else
@ -370,8 +370,8 @@ slice_dealloc(PySliceObject *r)
Py_DECREF(r->stop); Py_DECREF(r->stop);
#ifdef WITH_FREELISTS #ifdef WITH_FREELISTS
_PyFreeListState *state = _PyFreeListState_GET(); _PyFreeListState *state = _PyFreeListState_GET();
if (state->slice_state.slice_cache == NULL) { if (state->slices.slice_cache == NULL) {
state->slice_state.slice_cache = r; state->slices.slice_cache = r;
} }
else else
#endif #endif

View File

@ -1125,7 +1125,7 @@ tuple_iter(PyObject *seq)
* freelists * * freelists *
*************/ *************/
#define STATE (state->tuple_state) #define STATE (state->tuples)
#define FREELIST_FINALIZED (STATE.numfree[0] < 0) #define FREELIST_FINALIZED (STATE.numfree[0] < 0)
static inline PyTupleObject * static inline PyTupleObject *

View File

@ -69,7 +69,7 @@ static struct _Py_context_state *
get_context_state(void) get_context_state(void)
{ {
_PyFreeListState *state = _PyFreeListState_GET(); _PyFreeListState *state = _PyFreeListState_GET();
return &state->context_state; return &state->contexts;
} }
#endif #endif
@ -1270,7 +1270,7 @@ void
_PyContext_ClearFreeList(_PyFreeListState *freelist_state, int is_finalization) _PyContext_ClearFreeList(_PyFreeListState *freelist_state, int is_finalization)
{ {
#ifdef WITH_FREELISTS #ifdef WITH_FREELISTS
struct _Py_context_state *state = &freelist_state->context_state; struct _Py_context_state *state = &freelist_state->contexts;
for (; state->numfree > 0; state->numfree--) { for (; state->numfree > 0; state->numfree--) {
PyContext *ctx = state->freelist; PyContext *ctx = state->freelist;
state->freelist = (PyContext *)ctx->ctx_weakreflist; state->freelist = (PyContext *)ctx->ctx_weakreflist;

View File

@ -12,7 +12,7 @@ static struct _Py_object_stack_state *
get_state(void) get_state(void)
{ {
_PyFreeListState *state = _PyFreeListState_GET(); _PyFreeListState *state = _PyFreeListState_GET();
return &state->object_stack_state; return &state->object_stacks;
} }
_PyObjectStackChunk * _PyObjectStackChunk *
@ -76,7 +76,7 @@ _PyObjectStackChunk_ClearFreeList(_PyFreeListState *free_lists, int is_finalizat
return; return;
} }
struct _Py_object_stack_state *state = &free_lists->object_stack_state; struct _Py_object_stack_state *state = &free_lists->object_stacks;
while (state->numfree > 0) { while (state->numfree > 0) {
_PyObjectStackChunk *buf = state->free_list; _PyObjectStackChunk *buf = state->free_list;
state->free_list = buf->prev; state->free_list = buf->prev;