File tree 2 files changed +0
-3
lines changed 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,6 @@ typedef struct _gc_stats {
98
98
99
99
typedef struct _uop_stats {
100
100
uint64_t execution_count ;
101
- uint64_t miss ;
102
101
} UOpStats ;
103
102
104
103
typedef struct _optimization_stats {
Original file line number Diff line number Diff line change @@ -284,7 +284,6 @@ extern int _PyStaticCode_Init(PyCodeObject *co);
284
284
#define GC_STAT_ADD (gen , name , n ) do { if (_Py_stats) _Py_stats->gc_stats[(gen)].name += (n); } while (0)
285
285
#define OPTIMIZATION_STAT_INC (name ) do { if (_Py_stats) _Py_stats->optimization_stats.name++; } while (0)
286
286
#define UOP_EXE_INC (opname ) do { if (_Py_stats) _Py_stats->optimization_stats.opcode[opname].execution_count++; } while (0)
287
- #define UOP_STAT_INC (opname , name ) do { if (_Py_stats) _Py_stats->optimization_stats.opcode[opname].name++; } while (0)
288
287
289
288
// Export for '_opcode' shared extension
290
289
PyAPI_FUNC (PyObject * ) _Py_GetSpecializationStats (void );
@@ -301,7 +300,6 @@ PyAPI_FUNC(PyObject*) _Py_GetSpecializationStats(void);
301
300
#define GC_STAT_ADD (gen , name , n ) ((void)0)
302
301
#define OPTIMIZATION_STAT_INC (name ) ((void)0)
303
302
#define UOP_EXE_INC (opname ) ((void)0)
304
- #define UOP_STAT_INC (opname , name ) ((void)0)
305
303
#endif // !Py_STATS
306
304
307
305
// Utility functions for reading/writing 32/64-bit values in the inline caches.
You can’t perform that action at this time.
0 commit comments