]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-122985: add SYMBOL_TO_SCOPE macro in symtable (#122986)
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>
Wed, 14 Aug 2024 05:17:04 +0000 (06:17 +0100)
committerGitHub <noreply@github.com>
Wed, 14 Aug 2024 05:17:04 +0000 (06:17 +0100)
Include/internal/pycore_symtable.h
Python/compile.c
Python/symtable.c

index b449e8b9dcd91f34139d9f7117176bce6b5f5f9e..7e3d45adcecc1aa02c750738c8fbe4a40ef9417b 100644 (file)
@@ -171,6 +171,7 @@ extern PyObject* _Py_Mangle(PyObject *p, PyObject *name);
 */
 #define SCOPE_OFFSET 12
 #define SCOPE_MASK (DEF_GLOBAL | DEF_LOCAL | DEF_PARAM | DEF_NONLOCAL)
+#define SYMBOL_TO_SCOPE(S) (((S) >> SCOPE_OFFSET) & SCOPE_MASK)
 
 #define LOCAL 1
 #define GLOBAL_EXPLICIT 2
index 0efa7470da4b042e75fc634832b0ec10cca88a2d..237b5dba0497fd8b7c7082222470f2ea4fd77906 100644 (file)
@@ -491,7 +491,7 @@ each key.
 static PyObject *
 dictbytype(PyObject *src, int scope_type, int flag, Py_ssize_t offset)
 {
-    Py_ssize_t i = offset, scope, num_keys, key_i;
+    Py_ssize_t i = offset, num_keys, key_i;
     PyObject *k, *v, *dest = PyDict_New();
     PyObject *sorted_keys;
 
@@ -533,10 +533,7 @@ dictbytype(PyObject *src, int scope_type, int flag, Py_ssize_t offset)
             Py_DECREF(dest);
             return NULL;
         }
-        /* XXX this should probably be a macro in symtable.h */
-        scope = (vi >> SCOPE_OFFSET) & SCOPE_MASK;
-
-        if (scope == scope_type || vi & flag) {
+        if (SYMBOL_TO_SCOPE(vi) == scope_type || vi & flag) {
             PyObject *item = PyLong_FromSsize_t(i);
             if (item == NULL) {
                 Py_DECREF(sorted_keys);
@@ -5393,7 +5390,7 @@ push_inlined_comprehension_state(struct compiler *c, location loc,
         if (symbol == -1 && PyErr_Occurred()) {
             return ERROR;
         }
-        long scope = (symbol >> SCOPE_OFFSET) & SCOPE_MASK;
+        long scope = SYMBOL_TO_SCOPE(symbol);
         PyObject *outv = PyDict_GetItemWithError(SYMTABLE_ENTRY(c)->ste_symbols, k);
         if (outv == NULL) {
             if (PyErr_Occurred()) {
@@ -5405,7 +5402,7 @@ push_inlined_comprehension_state(struct compiler *c, location loc,
         if (outsymbol == -1 && PyErr_Occurred()) {
             return ERROR;
         }
-        long outsc = (outsymbol >> SCOPE_OFFSET) & SCOPE_MASK;
+        long outsc = SYMBOL_TO_SCOPE(outsymbol);
         // If a name has different scope inside than outside the comprehension,
         // we need to temporarily handle it with the right scope while
         // compiling the comprehension. If it's free in the comprehension
index 527bc367e8ea6e436dbc89e67284ca98fad7381a..8bc9db6d7d681169f5ffc57c1ca2c2eda7bba6f3 100644 (file)
@@ -551,7 +551,7 @@ _PyST_GetScope(PySTEntryObject *ste, PyObject *name)
     if (symbol < 0) {
         return -1;
     }
-    return (symbol >> SCOPE_OFFSET) & SCOPE_MASK;
+    return SYMBOL_TO_SCOPE(symbol);
 }
 
 int
@@ -809,7 +809,7 @@ inline_comprehension(PySTEntryObject *ste, PySTEntryObject *comp,
             assert(_PyUnicode_EqualToASCIIString(k, ".0"));
             continue;
         }
-        int scope = (comp_flags >> SCOPE_OFFSET) & SCOPE_MASK;
+        int scope = SYMBOL_TO_SCOPE(comp_flags);
         int only_flags = comp_flags & ((1 << SCOPE_OFFSET) - 1);
         if (scope == CELL || only_flags & DEF_COMP_CELL) {
             if (PySet_Add(inlined_cells, k) < 0) {