Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-117581: Specialize binary operators by refcount as well as type. #117627

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
8183250
Experimentally specialize BINARY_OP by refcount
markshannon Mar 27, 2024
198ceb6
Get better type information for stats on binary ops
markshannon Apr 3, 2024
3b3c8ce
Specialize binary op by refcount and type
markshannon Apr 3, 2024
7eefd3e
Merge branch 'main' into specialize-binary-op-refcount
markshannon Apr 4, 2024
4baa860
Use the right version numbers
markshannon Apr 4, 2024
24d57df
Gather better stats
markshannon Apr 4, 2024
accc60a
Add percentages to summary
markshannon Apr 4, 2024
23cf5de
Fix stats again
markshannon Apr 4, 2024
daa2733
Handle errors
markshannon Apr 4, 2024
67bbc52
Improve BINARY_OP specializations
markshannon Apr 5, 2024
2c964fa
Add back BINARY_OP_INPLACE_ADD_UNICODE and fix up dis test
markshannon Apr 5, 2024
4c084f8
Add more BINARY_OP specializations
markshannon Apr 6, 2024
cd8bea7
Add back BINARY_OP_INPLACE_ADD_UNICODE specialization
markshannon Apr 6, 2024
627f373
Merge branch 'main' into specialize-binary-op-refcount
markshannon Apr 8, 2024
a964a49
Restore BINARY_OP_INPLACE_ADD_UNICODE uop code.
markshannon Apr 8, 2024
11ac97f
Fix up test_dis again
markshannon Apr 8, 2024
2d3fa14
Mostly fix test_capi.test_opt
markshannon Apr 8, 2024
a327a4c
Perform tier 2 optimization on type version guards
markshannon Apr 8, 2024
a14d631
Explain _BINARY_OP_TABLE suffixes
markshannon Apr 8, 2024
ffbc9e7
Export symbol for JIT
markshannon Apr 9, 2024
d9acedb
Make things const
markshannon Apr 9, 2024
dc7092b
Merge branch 'main' into specialize-binary-op-refcount
markshannon May 21, 2024
48e287c
Add news
markshannon May 21, 2024
8708306
Merge branch 'main' into specialize-binary-op-refcount
markshannon May 22, 2024
8b4a480
Fix test_dis
markshannon May 22, 2024
28c384c
Restore constant propagation in binary op optimizer
markshannon May 23, 2024
881df50
Workaround false positive in check-c-globals.py
markshannon May 23, 2024
5386b2d
Merge branch 'main' into specialize-binary-op-refcount
markshannon May 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Include/cpython/pystats.h
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,9 @@ typedef struct _stats {
OptimizationStats optimization_stats;
RareEventStats rare_event_stats;
GCStats *gc_stats;
uint64_t binary_specialization_failure[1<<15];
} PyStats;


// Export for shared extensions like 'math'
PyAPI_DATA(PyStats*) _Py_stats;

Expand Down
3 changes: 3 additions & 0 deletions Include/internal/pycore_code.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ typedef struct {

typedef struct {
_Py_BackoffCounter counter;
uint16_t type_versions;
} _PyBinaryOpCache;

#define INLINE_CACHE_ENTRIES_BINARY_OP CACHE_ENTRIES(_PyBinaryOpCache)
Expand Down Expand Up @@ -298,6 +299,8 @@ extern void _Py_Specialize_Send(PyObject *receiver, _Py_CODEUNIT *instr);
extern void _Py_Specialize_ToBool(PyObject *value, _Py_CODEUNIT *instr);
extern void _Py_Specialize_ContainsOp(PyObject *value, _Py_CODEUNIT *instr);


PyAPI_DATA(const binaryfunc) _Py_BinaryFunctionTable[];
#ifdef Py_STATS

#include "pycore_bitutils.h" // _Py_bit_length
Expand Down
2 changes: 2 additions & 0 deletions Include/internal/pycore_list.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ typedef struct {

PyAPI_FUNC(PyObject *)_PyList_FromArraySteal(PyObject *const *src, Py_ssize_t n);

extern PyObject *_PyList_Concat(PyListObject *a, PyListObject *b);

#ifdef __cplusplus
}
#endif
Expand Down
10 changes: 10 additions & 0 deletions Include/internal/pycore_long.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,17 @@ PyAPI_DATA(PyObject*) _PyLong_Rshift(PyObject *, size_t);
// Export for 'math' shared extension
PyAPI_DATA(PyObject*) _PyLong_Lshift(PyObject *, size_t);

PyAPI_FUNC(PyObject*) _PyLong_Add_1X(PyLongObject *left, PyLongObject *right);
PyAPI_FUNC(PyObject*) _PyLong_Add_X1(PyLongObject *left, PyLongObject *right);
PyAPI_FUNC(PyObject*) _PyLong_Add(PyLongObject *left, PyLongObject *right);
PyAPI_FUNC(PyObject*) _PyLong_Multiply(PyLongObject *left, PyLongObject *right);
PyAPI_FUNC(PyObject*) _PyLong_Subtract(PyLongObject *left, PyLongObject *right);
PyObject* _PyLong_And(PyLongObject *left, PyLongObject *right);
PyObject* _PyLong_Or(PyLongObject *left, PyLongObject *right);
PyObject* _PyLong_Xor(PyLongObject *left, PyLongObject *right);
PyObject* _PyLong_FloorDiv(PyLongObject *left, PyLongObject *right);
PyObject* _PyLong_LShiftObject(PyLongObject *left, PyLongObject *right);
PyObject* _PyLong_RShiftObject(PyLongObject *left, PyLongObject *right);

// Export for 'binascii' shared extension.
PyAPI_DATA(unsigned char) _PyLong_DigitValue[256];
Expand Down Expand Up @@ -311,6 +319,8 @@ _PyLong_FlipSign(PyLongObject *op) {
#define _PyLong_FALSE_TAG TAG_FROM_SIGN_AND_SIZE(0, 0)
#define _PyLong_TRUE_TAG TAG_FROM_SIGN_AND_SIZE(1, 1)

extern double _PyLong_AsDouble(PyLongObject *l);

#ifdef __cplusplus
}
#endif
Expand Down
115 changes: 62 additions & 53 deletions Include/internal/pycore_opcode_metadata.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Include/internal/pycore_optimizer.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ extern _Py_UopsSymbol *_Py_uop_sym_new_type(
extern _Py_UopsSymbol *_Py_uop_sym_new_const(_Py_UOpsContext *ctx, PyObject *const_val);
extern _Py_UopsSymbol *_Py_uop_sym_new_null(_Py_UOpsContext *ctx);
extern bool _Py_uop_sym_has_type(_Py_UopsSymbol *sym);
extern PyTypeObject *_Py_uop_sym_get_type(_Py_UopsSymbol *sym);
extern bool _Py_uop_sym_matches_type(_Py_UopsSymbol *sym, PyTypeObject *typ);
extern void _Py_uop_sym_set_null(_Py_UOpsContext *ctx, _Py_UopsSymbol *sym);
extern void _Py_uop_sym_set_non_null(_Py_UOpsContext *ctx, _Py_UopsSymbol *sym);
Expand All @@ -131,7 +132,6 @@ extern bool _Py_uop_sym_is_bottom(_Py_UopsSymbol *sym);
extern int _Py_uop_sym_truthiness(_Py_UopsSymbol *sym);
extern PyTypeObject *_Py_uop_sym_get_type(_Py_UopsSymbol *sym);


extern void _Py_uop_abstractcontext_init(_Py_UOpsContext *ctx);
extern void _Py_uop_abstractcontext_fini(_Py_UOpsContext *ctx);

Expand Down
2 changes: 1 addition & 1 deletion Include/internal/pycore_runtime_init.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ extern PyTypeObject _PyExc_MemoryError;
.double_format = _py_float_format_unknown, \
}, \
.types = { \
.next_version_tag = 1, \
.next_version_tag = _Py_TYPE_VERSIONS_PREALLOCATED, \
}, \
.static_objects = { \
.singletons = { \
Expand Down
18 changes: 18 additions & 0 deletions Include/internal/pycore_typeobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,24 @@ extern "C" {

/* state */

#define _Py_TYPE_VERSION_INT 1
#define _Py_TYPE_VERSION_FLOAT 2
#define _Py_TYPE_VERSION_LIST 3
#define _Py_TYPE_VERSION_TUPLE 4
#define _Py_TYPE_VERSION_STR 5
#define _Py_TYPE_VERSION_SET 6
#define _Py_TYPE_VERSION_FROZEN_SET 7
#define _Py_TYPE_VERSION_ARRAY 8
#define _Py_TYPE_VERSION_DICT 9
#define _Py_TYPE_VERSION_BYTES 10
#define _Py_TYPE_VERSION_COMPLEX 11
#define _Py_TYPE_VERSION_DICTITEMS 12
#define _Py_TYPE_VERSION_BYTEARRAY 13

#define _Py_TYPE_VERSIONS_PREALLOCATED 16

extern PyTypeObject *const _Py_PreAllocatedTypes[_Py_TYPE_VERSIONS_PREALLOCATED];

#define _Py_TYPE_BASE_VERSION_TAG (2<<16)
#define _Py_MAX_GLOBAL_TYPE_VERSION_TAG (_Py_TYPE_BASE_VERSION_TAG - 1)

Expand Down
Loading
Loading