@@ -276,25 +276,33 @@ get_dict_freelist(void)
276
276
struct _Py_object_freelists * freelists = _Py_object_freelists_GET ();
277
277
return & freelists -> dicts ;
278
278
}
279
+
280
+ static struct _Py_dictkeys_freelist *
281
+ get_dictkeys_freelist (void )
282
+ {
283
+ struct _Py_object_freelists * freelists = _Py_object_freelists_GET ();
284
+ return & freelists -> dictkeys ;
285
+ }
279
286
#endif
280
287
281
288
282
289
void
283
290
_PyDict_ClearFreeList (struct _Py_object_freelists * freelists , int is_finalization )
284
291
{
285
292
#ifdef WITH_FREELISTS
286
- struct _Py_dict_freelist * state = & freelists -> dicts ;
287
- while (state -> numfree > 0 ) {
288
- PyDictObject * op = state -> free_list [-- state -> numfree ];
293
+ struct _Py_dict_freelist * freelist = & freelists -> dicts ;
294
+ while (freelist -> numfree > 0 ) {
295
+ PyDictObject * op = freelist -> items [-- freelist -> numfree ];
289
296
assert (PyDict_CheckExact (op ));
290
297
PyObject_GC_Del (op );
291
298
}
292
- while (state -> keys_numfree > 0 ) {
293
- PyMem_Free (state -> keys_free_list [-- state -> keys_numfree ]);
299
+ struct _Py_dictkeys_freelist * keys_freelist = & freelists -> dictkeys ;
300
+ while (keys_freelist -> numfree > 0 ) {
301
+ PyMem_Free (keys_freelist -> items [-- keys_freelist -> numfree ]);
294
302
}
295
303
if (is_finalization ) {
296
- state -> numfree = -1 ;
297
- state -> keys_numfree = -1 ;
304
+ freelist -> numfree = -1 ;
305
+ keys_freelist -> numfree = -1 ;
298
306
}
299
307
#endif
300
308
}
@@ -314,6 +322,9 @@ _PyDict_DebugMallocStats(FILE *out)
314
322
struct _Py_dict_freelist * dict_freelist = get_dict_freelist ();
315
323
_PyDebugAllocatorStats (out , "free PyDictObject" ,
316
324
dict_freelist -> numfree , sizeof (PyDictObject ));
325
+ struct _Py_dictkeys_freelist * dictkeys_freelist = get_dictkeys_freelist ();
326
+ _PyDebugAllocatorStats (out , "free PyDictKeysObject" ,
327
+ dictkeys_freelist -> numfree , sizeof (PyDictKeysObject ));
317
328
#endif
318
329
}
319
330
@@ -663,9 +674,9 @@ new_keys_object(PyInterpreterState *interp, uint8_t log2_size, bool unicode)
663
674
}
664
675
665
676
#ifdef WITH_FREELISTS
666
- struct _Py_dict_freelist * dict_freelist = get_dict_freelist ();
667
- if (log2_size == PyDict_LOG_MINSIZE && unicode && dict_freelist -> keys_numfree > 0 ) {
668
- dk = dict_freelist -> keys_free_list [-- dict_freelist -> keys_numfree ];
677
+ struct _Py_dictkeys_freelist * freelist = get_dictkeys_freelist ();
678
+ if (log2_size == PyDict_LOG_MINSIZE && unicode && freelist -> numfree > 0 ) {
679
+ dk = freelist -> items [-- freelist -> numfree ];
669
680
OBJECT_STAT_INC (from_freelist );
670
681
}
671
682
else
@@ -698,12 +709,12 @@ static void
698
709
free_keys_object (PyDictKeysObject * keys )
699
710
{
700
711
#ifdef WITH_FREELISTS
701
- struct _Py_dict_freelist * dict_freelist = get_dict_freelist ();
712
+ struct _Py_dictkeys_freelist * freelist = get_dictkeys_freelist ();
702
713
if (DK_LOG_SIZE (keys ) == PyDict_LOG_MINSIZE
703
- && dict_freelist -> keys_numfree < PyDict_MAXFREELIST
704
- && dict_freelist -> keys_numfree >= 0
714
+ && freelist -> numfree < PyDict_MAXFREELIST
715
+ && freelist -> numfree >= 0
705
716
&& DK_IS_UNICODE (keys )) {
706
- dict_freelist -> keys_free_list [ dict_freelist -> keys_numfree ++ ] = keys ;
717
+ freelist -> items [ freelist -> numfree ++ ] = keys ;
707
718
OBJECT_STAT_INC (to_freelist );
708
719
return ;
709
720
}
@@ -743,9 +754,9 @@ new_dict(PyInterpreterState *interp,
743
754
PyDictObject * mp ;
744
755
assert (keys != NULL );
745
756
#ifdef WITH_FREELISTS
746
- struct _Py_dict_freelist * dict_freelist = get_dict_freelist ();
747
- if (dict_freelist -> numfree > 0 ) {
748
- mp = dict_freelist -> free_list [-- dict_freelist -> numfree ];
757
+ struct _Py_dict_freelist * freelist = get_dict_freelist ();
758
+ if (freelist -> numfree > 0 ) {
759
+ mp = freelist -> items [-- freelist -> numfree ];
749
760
assert (mp != NULL );
750
761
assert (Py_IS_TYPE (mp , & PyDict_Type ));
751
762
OBJECT_STAT_INC (from_freelist );
@@ -2593,10 +2604,10 @@ dict_dealloc(PyObject *self)
2593
2604
dictkeys_decref (interp , keys );
2594
2605
}
2595
2606
#ifdef WITH_FREELISTS
2596
- struct _Py_dict_freelist * dict_freelist = get_dict_freelist ();
2597
- if (dict_freelist -> numfree < PyDict_MAXFREELIST && dict_freelist -> numfree >=0 &&
2607
+ struct _Py_dict_freelist * freelist = get_dict_freelist ();
2608
+ if (freelist -> numfree < PyDict_MAXFREELIST && freelist -> numfree >=0 &&
2598
2609
Py_IS_TYPE (mp , & PyDict_Type )) {
2599
- dict_freelist -> free_list [ dict_freelist -> numfree ++ ] = mp ;
2610
+ freelist -> items [ freelist -> numfree ++ ] = mp ;
2600
2611
OBJECT_STAT_INC (to_freelist );
2601
2612
}
2602
2613
else
0 commit comments